{"version":3,"file":"ApplicationsSettings.js","sources":["../../../vue-core/classes/Applications/ApplicationsSettings.js"],"sourcesContent":["import ENUMS from \"@core/classes/Enums\";\r\nimport { reactive } from 'vue';\r\n\r\nconst ApplicationsSettings = reactive({\r\n questionList: [\r\n // personalInformation Section\r\n {\r\n key: 'providePrefix',\r\n category: 'personal',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select your title.',\r\n Spanish: 'Por favor, seleccione su título.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"prefixList\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isFirstNameCorrect'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.prefix',\r\n prevQuestion: false,\r\n },\r\n {\r\n key: 'isFirstNameCorrect',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Is {namePrefilled} your first name on your driver's license?\",\r\n Spanish: \"¿Su nombre aparece en su licencia de conducir como {namePrefilled}?\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'preFilledData.firstName',\r\n type: 'path'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasMiddleName'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideFirstName'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.firstName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideFirstName',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validName'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please enter your first name as it appears on your driver's license.\",\r\n Spanish: \"Por favor, ingrese su nombre como aparece en su licencia de conducir.\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasMiddleName'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.firstName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'hasMiddleName',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Do you have a middle name or middle name initial on your driver's license?\",\r\n Spanish: \"¿Tiene segundo nombre o inicial de segundo nombre en su licencia de conducir?\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMiddleName'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.middleName',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isLastNameCorrect'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMiddleName',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validName'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please enter your middle name as it appears on your driver's license.\",\r\n Spanish: \"Por favor, ingrese su segundo nombre como aparece en su licencia de conducir.\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isLastNameCorrect'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.middleName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'isLastNameCorrect',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Is {lastnamePrefilled} your last name on your driver's license?\",\r\n Spanish: \"¿Su(s) apellido(s) aparece(n) en su licencia de conducir como {lastnamePrefilled}?\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'preFilledData.lastName',\r\n type: 'path'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasGenerationSuffix'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideLastName'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.lastName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideLastName',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validName'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please enter your last name as it appears on your driver's license.\",\r\n Spanish: \"Por favor, ingrese su(s) apellido(s) como aparece(n) en su licencia de conducir.\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasGenerationSuffix'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.lastName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'hasGenerationSuffix',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Do you have a generation suffix on your driver's license? (Ex: Jr, Sr, II, III, etc.)\",\r\n Spanish: \"¿Tiene sufijo de generación en su licencia de conducir? (Ej: Jr, Sr, II, III, etc.)\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'selectGenerationSuffix'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.generationSuffix',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isDateOfBirthCorrect'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'selectGenerationSuffix',\r\n category: 'personal',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select your generation suffix.',\r\n Spanish: 'Por favor, seleccione su sufijo de generación.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"suffixList\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isDateOfBirthCorrect',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.generationSuffix',\r\n comparisonType: 'equal',\r\n value: 'other',\r\n },\r\n ],\r\n goTo: 'provideGenerationSuffix',\r\n }\r\n ]\r\n },\r\n {\r\n action: 4,\r\n apiMethod: 'clearSuffixIfOther'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.generationSuffix',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideGenerationSuffix',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please enter your generation suffix as it appears on your driver's license.\",\r\n Spanish: \"Por favor, ingrese su sufijo de generación como aparece en su licencia de conducir.\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isDateOfBirthCorrect'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.generationSuffix',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'isDateOfBirthCorrect',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Were you born on
{dateOfBirthPrefilled}?',\r\n Spanish: '¿Usted nació el
{dateOfBirthPrefilled}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'preFilledData.dateOfBirth',\r\n type: 'path'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isEmailCorrect',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'isEmailVerified',\r\n comparisonType: 'equal',\r\n value: true,\r\n },\r\n ],\r\n goTo: 'liveInsideUS',\r\n }\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideDateOfBirth'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.dateOfBirth',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideDateOfBirth',\r\n category: 'personal',\r\n type: 'QuestionDate',\r\n dateType: 'day',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'day',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your date of birth.',\r\n Spanish: 'Por favor, ingrese su fecha de nacimiento.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'isEmailCorrect',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'isEmailVerified',\r\n comparisonType: 'equal',\r\n value: true,\r\n },\r\n ],\r\n goTo: 'liveInsideUS',\r\n }\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.dateOfBirth',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'isEmailCorrect',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Is
{emailPrefilled} your email address?\",\r\n Spanish: \"¿Su dirección de correo electrónico es
{emailPrefilled}?\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'preFilledData.emailAddress',\r\n type: 'path'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUS'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideEmail'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.emailAddress',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideEmail',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'email'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please enter your email address.\",\r\n Spanish: \"Por favor, ingrese su dirección de correo electronica.\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUS'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.emailAddress',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'liveInsideUS',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you live in the United States?',\r\n Spanish: '¿Vive en los Estados Unidos?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'clearAddress'\r\n },\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'US'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInApartment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'clearAddress'\r\n },\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n value: null\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n value: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n type: 'path'\r\n }\r\n ]\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideOutsideUSCountry'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideOutsideUSCountry',\r\n category: 'personal',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select the country you live in.',\r\n Spanish: 'Por favor, seleccione el país en el que vive.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"countries\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInApartment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'liveInApartment',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you live in an apartment or condo?',\r\n Spanish: '¿Vive en un apartamento o condominio?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideApartment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine2',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideZipCode'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideApartment',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your apartment or condo number.',\r\n Spanish: 'Por favor, ingrese el número de su apartamento o condominio.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideZipCode'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine2',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideZipCode',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n inputType: 'tel',\r\n onKeyPressMethod: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getOnkeypressNumbersOnlyFormat',\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getOnkeypressOutsideUSZipCodeFormat',\r\n }\r\n ],\r\n atInputMethod: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getAtInputMethodNumbersOnlyFormat',\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getAtInputMethodOutsideUSZipCodeFormat',\r\n }\r\n ],\r\n validation: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validZIPUS'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [5]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [5]\r\n },\r\n ]\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validZIPInternational'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the zip code where you live.',\r\n Spanish: 'Por favor, ingrese el código postal en el que vive.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideStreetAddress',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n goTo: 'provideOutsideUSStreetAddress',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.zipCode',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideStreetAddress',\r\n category: 'personal',\r\n type: 'QuestionAutoComplete',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine2',\r\n comparisonType: 'equal',\r\n value: null,\r\n },\r\n ],\r\n English: 'Please enter the house number and street address where you currently live.',\r\n Spanish: 'Por favor, ingrese el número de la casa y la dirección de la calle en la que vive actualmente.'\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine2',\r\n comparisonType: 'different',\r\n value: null,\r\n },\r\n ],\r\n English: 'Please enter the building number and street address where you live.',\r\n Spanish: 'Por favor, ingrese el número del edificio y la dirección de la calle en la que vive.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"addresses\",\r\n callMethodOnChange: true,\r\n onSelectApiMethod: \"updateSelectedAddress\"\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCity'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine1',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideOutsideUSStreetAddress',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your street address.',\r\n Spanish: 'Por favor, ingrese su dirección completa, incluyendo código postal, etc.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCity'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.addressLine1',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideCity',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [60]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the city or town where you live.',\r\n Spanish: 'Por favor, ingrese la ciudad o el pueblo en la que vive.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideState',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n goTo: 'provideOutsideUSState',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.city',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideState',\r\n category: 'personal',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select the state where you live.',\r\n Spanish: 'Por favor, seleccione el estado en el que vive.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"usStatesList\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCounty'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.state',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideOutsideUSState',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [60]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the state, province, or region where you live.',\r\n Spanish: 'Por favor, ingrese el estado, provincia o region en el que vive.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasHomePhone'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.state',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideCounty',\r\n category: 'personal',\r\n type: 'QuestionInputText',\r\n onKeyPressMethod: [\r\n {\r\n conditionToUse: null,\r\n methodName: 'getOnkeypressCountyFormat',\r\n }\r\n ],\r\n atInputMethod: [\r\n {\r\n conditionToUse: null,\r\n methodName: 'getAtInputMethodCountyFormat',\r\n }\r\n ],\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [60]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the county where you live.',\r\n Spanish: 'Por favor, ingrese el condado en el que vive.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hasHomePhone'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.county',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'hasHomePhone',\r\n category: 'personal',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you have a home phone?',\r\n Spanish: '¿Tiene teléfono en la casa?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideHomePhoneNumber'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'personalSummary'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideHomePhoneNumber',\r\n category: 'personal',\r\n type: 'QuestionInputPhone',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your home phone number.',\r\n Spanish: 'Por favor, ingrese el número de teléfono de su casa.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'personalSummary'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.homePhoneNumber',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'personalSummary',\r\n category: 'personal',\r\n type: 'QuestionSummary',\r\n triggerSave: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please review all the information below and confirm if it is correct.\",\r\n Spanish: \"Por favor, revise toda la siguiente información y confirme si esta correcta.\"\r\n },\r\n {\r\n conditionToShow: null,\r\n English: \"My full name is {provideFirstName} {provideMiddleName} {provideLastName} {provideGenerationSuffix}, and this is how it's displayed on my drivers license.\",\r\n Spanish: \"Mi nombre completo es {provideFirstName} {provideMiddleName} {provideLastName} {provideGenerationSuffix} y asi es como aparece en mi licencia de conducir.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideStreetAddress',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

My Date of Birth is {provideDateOfBirth}

I live at {provideStreetAddress} {provideApartment}, {provideCity}, {provideState} {provideZipCode}, {provideCounty}.\",\r\n Spanish: \"

Mi fecha de nacimiento es {provideDateOfBirth}

Vivo en {provideStreetAddress} {provideApartment}, {provideCity}, {provideState} {provideZipCode}, {provideCounty}.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideOutsideUSCountry',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

My Date of Birth is {provideDateOfBirth}

I live at {provideOutsideUSStreetAddress} {provideApartment}, {provideCity}, {provideOutsideUSState} {provideZipCode}, {provideOutsideUSCountry}.\",\r\n Spanish: \"

Mi fecha de nacimiento es {provideDateOfBirth}

Vivo en {provideOutsideUSStreetAddress} {provideApartment}, {provideCity}, {provideOutsideUSState} {provideZipCode}, {provideOutsideUSCountry} .\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideHomePhoneNumber',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

My home phone number is {provideHomePhoneNumber}.\",\r\n Spanish: \"

El número de teléfono de mi hogar es {provideHomePhoneNumber}.\",\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yesSummary',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'thankYouMessage', \r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'dateCompleted',\r\n comparisonType: 'different',\r\n value: null,\r\n },\r\n ],\r\n goTo: 'applicationUpdatedPersonal',\r\n },\r\n ]\r\n },\r\n {\r\n action: 5\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'noSummary',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'providePrefix'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n // redirectToCustomerPortal: true,\r\n },\r\n ////Plaid Question\r\n //{ //Plaid code\r\n // key: 'cashTransaction\r\n // category: 'quote',\r\n // type: 'QuestionPlaidLink',\r\n // isEndOfApp: true,\r\n // summaryDisplay: false,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: \"Almost there! To protect against fraud and ensure your identity is secure, we kindly ask you to take a photo of your driver's license. This step helps us confirm your identity and speed up the application process. It's just like showing your ID, but in a digital format. Rest assured, your information is securely stored and only used for the purpose of this application.\",\r\n // Spanish: \"Casi hemos terminado! Para proteger contra el fraude y asegurar que su identidad esté segura, le pedimos amablemente que tome una foto de su licencia de conducir. Este paso nos ayuda a confirmar su identidad y acelerar el proceso de la solicitud. Es como mostrar su identificación, pero en formato digital. Tenga la seguridad de que su información se almacena de manera segura y solo se utiliza para el propósito de esta solicitud.\"\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // //{\r\n // // label: 'procedeWithoutPlaidLink',\r\n // // actions: [\r\n // // {\r\n // // action: 2,\r\n // // nextQuestion: 'thankYouMessage',\r\n // // }\r\n // // ],\r\n // // style: {\r\n // // background: 'successButtonColor',\r\n // // text: 'successButtonTextColor'\r\n // // }\r\n // //},\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 4,\r\n // apiMethod: 'plaidInfo'\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'thankYouMessage',\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: '',\r\n // prevQuestion: true,\r\n //},\r\n {\r\n key: 'provideEstimateCreditScore',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select your estimated credit score.',\r\n Spanish: 'Por favor seleccione su puntuación de crédito estimada.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"estimatedCreditScore\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'wantAccureQuoteSSN',\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.estimateCreditScore',\r\n prevQuestion: true,\r\n isFirstInGroup: true,\r\n },\r\n {\r\n key: 'wantAccureQuoteSSN',\r\n category: 'creditApp',\r\n type: 'QuestionSocial',\r\n mask: 'XXX-XX-XXXX',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [9]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [9]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your Social Security Number.',\r\n Spanish: 'Por favor ingrese su Número de Seguro Social'\r\n },\r\n ],\r\n answerButtons: [\r\n //{\r\n // label: 'getEstimatedQuotePerson',\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // overrides: [\r\n // {\r\n // value: null\r\n // }\r\n // ],\r\n // },\r\n // //{\r\n // // action: 4,\r\n // // apiMethod: 'checkCredit'\r\n // //},\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'quoteSummary'\r\n // },\r\n // {\r\n // action: 3,\r\n // extraValuesToSave: [\r\n // {\r\n // type: \"value\",\r\n // savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.ssnHashed'\r\n // },\r\n // {\r\n // type: \"value\",\r\n // savePath: 'quoteAppData.applicationsDataAnswered.requestedInaccurateQuote',\r\n // override: {\r\n // value: true,\r\n // type: 'value'\r\n // }\r\n // },\r\n // ],\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n //},\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1\r\n },\r\n //{\r\n // action: 4,\r\n // apiMethod: 'checkCredit'\r\n //},\r\n {\r\n action: 4,\r\n apiMethod: 'encryptSsn'\r\n },\r\n {\r\n action: 5,\r\n conditionsToSave: [\r\n {\r\n dataPath: 'dateCompleted',\r\n comparisonType: 'different',\r\n value: null,\r\n },\r\n ]\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMovedInDate'\r\n },\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.ssnLast4',\r\n prevQuestion: true,\r\n },\r\n\r\n // **** Residence Related ****\r\n {\r\n key: 'provideMovedInDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideStreetAddress',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: 'When did you move to {provideStreetAddress} {provideApartment}, {provideCity}, {provideState} {provideZipCode}, {provideCounty}?',\r\n Spanish: '¿Cuándo se mudó a {provideStreetAddress} {provideApartment}, {provideCity}, {provideState} {provideZipCode}, {provideCounty}?'\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideOutsideUSCountry',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: 'When did you move to {provideOutsideUSStreetAddress} {provideApartment}, {provideCity}, {provideOutsideUSState} {provideZipCode}, {provideOutsideUSCountry}?',\r\n Spanish: '¿Cuándo se mudó a {provideOutsideUSStreetAddress} {provideApartment}, {provideCity}, {provideOutsideUSState} {provideZipCode}, {provideOutsideUSCountry}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'selectResidentStatus'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate',\r\n prevQuestion: true,\r\n isFirstInGroup: true,\r\n },\r\n {\r\n key: 'selectResidentStatus',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Your current residence status at your current address is:',\r\n Spanish: 'Su estatus actual de residencia en su dirección actual es:'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"residenceOwnershipStatus\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'creditAppSummary1',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n comparisonType: 'equal',\r\n value: 'mortgage',\r\n },\r\n ],\r\n goTo: 'provideMortgageMonthlyPayment',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n comparisonType: 'equal',\r\n value: 'rental',\r\n },\r\n ],\r\n goTo: 'provideRentalMonthlyPayment',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n comparisonType: 'equal',\r\n value: 'own',\r\n },\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'less',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'liveInsideUSPreviously',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n comparisonType: 'equal',\r\n value: 'familyOther',\r\n },\r\n ],\r\n goTo: 'withWhomYouLive',\r\n },\r\n ]\r\n },\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesInsurance',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMortgageMonthlyPayment',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your monthly payment amount.',\r\n Spanish: 'Por favor ingrese el monto de su pago mensual'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'AreInsurenceOrTaxesIncluded'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'AreInsurenceOrTaxesIncluded',\r\n category: 'creditApp',\r\n type: 'QuestionMultiButtons',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Does your monthly payment of {provideMortgageMonthlyPayment} include escrow for Insurance and/or Taxes?',\r\n Spanish: '¿Su pado mensual de {provideMortgageMonthlyPayment} incluye el seguro y/o los impuestos sobre la propiedad?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'both',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideInsurenceFrequency'\r\n },\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesInsurance',\r\n override: {\r\n value: true,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n override: {\r\n value: true,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n }\r\n ],\r\n style: {\r\n background: 'optionsButtonColor',\r\n text: 'optionsButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'neither', //was 'no' before checking for potencial issues\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUSPreviously',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'creditAppSummary1',\r\n },\r\n ]\r\n },\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesInsurance',\r\n override: {\r\n value: false,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n override: {\r\n value: false,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n }\r\n ],\r\n style: {\r\n background: 'optionsButtonColor',\r\n text: 'optionsButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'insurance',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideInsurenceFrequency'\r\n },\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesInsurance',\r\n override: {\r\n value: true,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n override: {\r\n value: false,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n }\r\n ],\r\n style: {\r\n background: 'optionsButtonColor',\r\n text: 'optionsButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'taxes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideTaxFrequency'\r\n },\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesInsurance',\r\n override: {\r\n value: false,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n override: {\r\n value: true,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n }\r\n ],\r\n style: {\r\n background: 'optionsButtonColor',\r\n text: 'optionsButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideInsurenceFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you pay the insurance?',\r\n Spanish: '¿Con qué frecuencia paga el seguro?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'monthlyAndAnnuallyFrequencies',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideInsurenceAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.insuranceFrequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideInsurenceAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter approximately the insurance amount you pay.',\r\n Spanish: 'Por favor ingrese el monto que paga de seguro aproximadamente.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUSPreviously',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentIncludesTax',\r\n comparisonType: 'equal',\r\n value: true,\r\n },\r\n ],\r\n goTo: 'provideTaxFrequency',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'creditAppSummary1',\r\n }\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.insuranceAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideTaxFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you pay the property taxes?',\r\n Spanish: '¿Con qué frecuencia paga los impuestos sobre la propiedad?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'monthlyAndAnnuallyFrequencies',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideTaxAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.taxFrequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideTaxAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter approximately the property taxes amount you pay.',\r\n Spanish: 'Por favor ingrese el monto que paga de impuestos sobre la propiedad aproximadamente.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUSPreviously',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'creditAppSummary1',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.taxAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideRentalMonthlyPayment',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your monthly payment amount.',\r\n Spanish: 'Por favor ingrese el monto de su pago mensual'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUSPreviously',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'creditAppSummary1',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'withWhomYouLive',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'With whom do you live?',\r\n Spanish: '¿Con quién usted vive?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"liveWithFamily\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMonthlyPayment',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.sharedWith',\r\n comparisonType: 'equal',\r\n value: 'other',\r\n },\r\n ],\r\n goTo: 'provideWithWhomYouLive',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.sharedWith',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideWithWhomYouLive',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please explain your living situation.',\r\n Spanish: 'Por favor explique su situación de vivienda'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMonthlyPayment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.sharedWith',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMonthlyPayment',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [0]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your monthly payment amount.',\r\n Spanish: 'Por favor ingrese el monto de su pago mensual'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInsideUSPreviously',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.movedInDate', // provideMovedInDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'creditAppSummary1',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.paymentAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'liveInsideUSPreviously',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Was your previous address in the United States?',\r\n Spanish: '¿Su dirección anterior fue en los Estados Unidos?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'clearAddress'\r\n },\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'US'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInApartmentPreviously'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'clearAddress'\r\n },\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n value: null\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n value: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n type: 'path'\r\n }\r\n ]\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousOutsideUSCountry'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousOutsideUSCountry',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select the country you previously live in.',\r\n Spanish: 'Por favor seleccione el país en el que vivío anteriormente.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"countries\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'liveInApartmentPreviously'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'liveInApartmentPreviously',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Did you previously live in an apartment or condo?',\r\n Spanish: '¿Anteriormente, vivió en un apartamento o condominio?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousApartment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousZipCode'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousApartment',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the previous apartment or condo number.',\r\n Spanish: 'Por favor ingrese el número anterior del apartamento o condominio.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousZipCode'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.addressLine2',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousZipCode',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n inputType: 'tel',\r\n onKeyPressMethod: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getOnkeypressNumbersOnlyFormat',\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getOnkeypressOutsideUSZipCodeFormat',\r\n }\r\n ],\r\n atInputMethod: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getAtInputMethodNumbersOnlyFormat',\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n methodName: 'getAtInputMethodOutsideUSZipCodeFormat',\r\n }\r\n ],\r\n validation: [\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'equal',\r\n value: 'US',\r\n },\r\n ],\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validZIPUS'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [5]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [5]\r\n },\r\n ]\r\n },\r\n {\r\n conditionToUse: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'validZIPInternational'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the previous zip code.',\r\n Spanish: 'Por favor ingrese el código postal anterior.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousStreetAddress',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n goTo: 'providePreviousOutsideUSStreetAddress',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.zipCode',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousStreetAddress',\r\n category: 'creditApp',\r\n type: 'QuestionAutoComplete',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter your previous street address.',\r\n Spanish: 'Por favor ingrese su dirección anterior.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"addresses\",\r\n callMethodOnChange: true,\r\n onSelectApiMethod: \"updateSelectedAddress\"\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousCity'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.addressLine1',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousOutsideUSStreetAddress',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the street previous address.',\r\n Spanish: 'Por ingrese su dirección anterior.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousCity'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.addressLine1',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousCity',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the city or town.',\r\n Spanish: 'Por favor ingrese la ciudad o el pueblo.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousState',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.country',\r\n comparisonType: 'different',\r\n value: 'US',\r\n },\r\n ],\r\n goTo: 'providePreviousOutsideUSState',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.city',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousState',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select the previous state.',\r\n Spanish: 'Por favor selecione el estado anterior.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"usStatesList\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousCounty'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.state',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousOutsideUSState',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [60]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the previous state, province, or region.',\r\n Spanish: 'Por favor ingrese el estado, provincia o region anterior.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousMovedInDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.state',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousCounty',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n onKeyPressMethod: [\r\n {\r\n conditionToUse: null,\r\n methodName: 'getOnkeypressCountyFormat',\r\n }\r\n ],\r\n atInputMethod: [\r\n {\r\n conditionToUse: null,\r\n methodName: 'getAtInputMethodCountyFormat',\r\n }\r\n ],\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the previous county.',\r\n Spanish: 'Por favor ingrese el condado anterior.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousMovedInDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.county',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousMovedInDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'When did you move to the previous address?',\r\n Spanish: '¿Cuando se mudó a la dirección anterior?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'creditAppSummary1'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousResidence.movedInDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'creditAppSummary1',\r\n category: 'creditApp',\r\n type: 'QuestionSummary',\r\n triggerSave: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please review all the information below and confirm if it is correct.\",\r\n Spanish: \"Por favor, revise toda la siguiente información y confirme si esta correcta.\"\r\n },\r\n {\r\n conditionToShow: null,\r\n English: \"My estimated credit score is {provideEstimateCreditScore} and my social security number ends with {wantAccureQuoteSSN}.\",\r\n Spanish: \"Mi puntuación de crédito estimada es {provideEstimateCreditScore} y mi número de seguro social termina en {wantAccureQuoteSSN}.\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideMortgageMonthlyPayment',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I pay {provideMortgageMonthlyPayment} for my {selectResidentStatus}\",\r\n Spanish: \"

Pago {provideMortgageMonthlyPayment} mesual por mi {selectResidentStatus}\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideInsurenceAmount',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" which includes {provideInsurenceAmount} {provideInsurenceFrequency} for insurance\",\r\n Spanish: \" el cual incluye {provideInsurenceAmount} {provideInsurenceFrequency} por el seguro\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideTaxAmount',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" and includes {provideTaxAmount} {provideTaxFrequency} for property taxes\",\r\n Spanish: \" e incluye {provideTaxAmount} {provideTaxFrequency} de los impuestos sobre la propiedad\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideRentalMonthlyPayment',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I pay {provideRentalMonthlyPayment} for my {selectResidentStatus}\",\r\n Spanish: \"

Pago {provideRentalMonthlyPayment} mesual por mi {selectResidentStatus}\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideMonthlyPayment',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I live with {withWhomYouLive} and my monthtly payment is {provideMonthlyPayment}\",\r\n Spanish: \"

Vivo con mi {withWhomYouLive} y pago {provideMonthlyPayment} mensuales\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentResidence.residenceStatus.status',\r\n comparisonType: 'equal',\r\n value: 'own',\r\n },\r\n ],\r\n English: \"

I pay $0.00 for my home because I {selectResidentStatus} it\",\r\n Spanish: \"

Pago $0.00 mesual por mi casa porque soy {selectResidentStatus}\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideMovedInDate',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \". I have lived here since {provideMovedInDate}.\",\r\n Spanish: \". Vivo aqui desde {provideMovedInDate}\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'providePreviousStreetAddress',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I previously lived at {providePreviousStreetAddress} {providePreviousApartment}, {providePreviousCity}, {providePreviousState} {providePreviousZipCode}, {providePreviousCounty} and I moved in on {providePreviousMovedInDate}.\",\r\n Spanish: \"

Viví anteriormente en {providePreviousStreetAddress} {providePreviousApartment}, {providePreviousCity}, {providePreviousState} {providePreviousZipCode}, {providePreviousCounty} y me mudé a esa dirección el {providePreviousMovedInDate}.\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'providePreviousOutsideUSCountry',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I previously lived at {providePreviousOutsideUSStreetAddress} {providePreviousApartment}, {providePreviousCity}, {providePreviousOutsideUSState} {providePreviousZipCode}, {providePreviousOutsideUSCountry} and I moved in on {providePreviousMovedInDate}.\",\r\n Spanish: \"

Viví anteriormente en {providePreviousOutsideUSStreetAddress} {providePreviousApartment}, {providePreviousCity}, {providePreviousOutsideUSState} {providePreviousZipCode}, {providePreviousOutsideUSCountry} y me mudé a esa dirección el {providePreviousMovedInDate}.\",\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yesSummary',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'currentlyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'dateCompleted',\r\n comparisonType: 'different',\r\n value: null,\r\n },\r\n ],\r\n goTo: 'applicationUpdatedCreditAppSummary1',\r\n },\r\n ]\r\n },\r\n {\r\n action: 5\r\n },\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'noSummary',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMovedInDate'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n\r\n // **** Income Related ****\r\n {\r\n key: 'currentlyEmployed',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Are you currently employed?',\r\n Spanish: '¿Tiene un empleo actualmente?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'resetDateCompleted'\r\n },\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: 'employed'\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'employedWithMilitary'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 4,\r\n apiMethod: 'resetDateCompleted'\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'noEmployedStatus'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n prevQuestion: true,\r\n isFirstInGroup: true,\r\n },\r\n {\r\n key: 'employedWithMilitary',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Are you employed by the Military?',\r\n Spanish: '¿Trabaja para las Fuerzas Armadas?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 1,\r\n overrides: [\r\n {\r\n value: ENUMS.CREDIT_APP_TYPE_EMPLOYEE.MILITARY\r\n }\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryCurrentEmployerName'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'employmentType'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.employeeType',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryCurrentEmployerName',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your current military branch?',\r\n Spanish: '¿En que rama de las fuerzas armadas trabaja actualmente?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'militaryBranch',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryCurrentEmployerPhoneNumber'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.employerName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryCurrentEmployerPhoneNumber',\r\n category: 'creditApp',\r\n type: 'QuestionInputPhone',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is the main phone number for {provideMilitaryCurrentEmployerName}?',\r\n Spanish: '¿Cual es el número de teléfono principal de {provideMilitaryCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryCurrentEmployerPosition'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.phone',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryCurrentEmployerPosition',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your position in the {provideMilitaryCurrentEmployerName}?',\r\n Spanish: '¿Cuál es su posición en el/la {provideMilitaryCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryCurrentEmployerStartedDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.position',\r\n prevQuestion: true,\r\n },\r\n // {\r\n // key: 'provideMilitaryCurrentEmployerSupervisorFirstName',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputText',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: 'What is the first of your immediate supervisor?',\r\n // Spanish: '¿Cuál es el nombre de su supervisor inmediato?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideMilitaryCurrentEmployerSupervisorLastName'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorFirstName',\r\n // prevQuestion: true,\r\n // },\r\n // {\r\n // key: 'provideMilitaryCurrentEmployerSupervisorLastName',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputText',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: 'What is the last name of your immediate supervisor?',\r\n // Spanish: '¿Cuál es el(los) apellido(s) de su supervisor inmediato?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideMilitaryCurrentEmployerSupervisorPhoneNumber'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorLastName',\r\n // prevQuestion: true,\r\n // },\r\n // {\r\n // key: 'provideMilitaryCurrentEmployerSupervisorPhoneNumber',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputPhone',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // {\r\n // type: 'maxLength',\r\n // params: [10]\r\n // },\r\n // {\r\n // type: 'minLength',\r\n // params: [10]\r\n // },\r\n // {\r\n // type: 'numeric',\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: \"What is {provideMilitaryCurrentEmployerSupervisorFirstName} {provideMilitaryCurrentEmployerSupervisorLastName}'s phone number?\",\r\n // Spanish: '¿Cuál es el número de teléfono de {provideMilitaryCurrentEmployerSupervisorFirstName[ {provideMilitaryCurrentEmployerSupervisorLastName}?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideMilitaryCurrentEmployerStartedDate'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorPhone',\r\n // prevQuestion: true,\r\n // },\r\n {\r\n key: 'provideMilitaryCurrentEmployerStartedDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'When did you start working at {provideMilitaryCurrentEmployerName}?',\r\n Spanish: '¿Cuándo empezó a trabajar en {provideMilitaryCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'howGetPay'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.startDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'employmentType',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Are you a employed under W2 or 1099?',\r\n Spanish: '¿Estás empleado bajo un W2 o un 1099?'\r\n },\r\n ],\r\n notesToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"W2: My employer takes out taxes and social security before paying me.\",\r\n Spanish: \"W2: My empleador retira mis impuestos y seguridad social antes de pagarme.\"\r\n },\r\n {\r\n conditionToShow: null,\r\n English: \"1099: My employer pays me and it's my responsibility to file and pay my taxes and social security\",\r\n Spanish: \"1099: My empleador me paga y es mi responsabilidad declarar y pagar mis impuestos y seguridad social\"\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"employmentFormType\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCurrentEmployerName',\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.employeeType',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideCurrentEmployerName',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"What is your employer's business name?\",\r\n Spanish: '¿Cuál es el nombre de la compañía en que trabaja?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCurrentEmployerPhoneNumber'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.employerName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideCurrentEmployerPhoneNumber',\r\n category: 'creditApp',\r\n type: 'QuestionInputPhone',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is the main phone number for {provideCurrentEmployerName}?',\r\n Spanish: '¿Cuál es el número de teléfono principal de {provideCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCurrentEmployerPosition'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.phone',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideCurrentEmployerPosition',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your position at {provideCurrentEmployerName}?',\r\n Spanish: '¿Cuál es su posición en {provideCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideCurrentEmployerStartedDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.position',\r\n prevQuestion: true,\r\n },\r\n // {\r\n // key: 'provideCurrentEmployerSupervisorFirstName',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputText',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: 'What is the first name of your immediate supervisor?',\r\n // Spanish: '¿Cuál es el nombre de su supervisor inmediato?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideCurrentEmployerSupervisorLastName'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorFirstName',\r\n // prevQuestion: true,\r\n // },\r\n // {\r\n // key: 'provideCurrentEmployerSupervisorLastName',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputText',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: 'What is the last name of your immediate supervisor?',\r\n // Spanish: '¿Cuál es el(los) apellido(s) de su supervisor inmediato?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideCurrentEmployerSupervisorPhoneNumber'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorLastName',\r\n // prevQuestion: true,\r\n // },\r\n // {\r\n // key: 'provideCurrentEmployerSupervisorPhoneNumber',\r\n // category: 'creditApp',\r\n // type: 'QuestionInputPhone',\r\n // validation: [\r\n // {\r\n // propertyName: 'textValue',\r\n // validators: [\r\n // {\r\n // type: 'required'\r\n // },\r\n // {\r\n // type: 'maxLength',\r\n // params: [10]\r\n // },\r\n // {\r\n // type: 'minLength',\r\n // params: [10]\r\n // },\r\n // {\r\n // type: 'numeric',\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // summaryDisplay: true,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: \"What is {provideMilitaryCurrentEmployerSupervisorFirstName} {provideMilitaryCurrentEmployerSupervisorLastName}'s phone number?\",\r\n // Spanish: '¿Cuál es el número de teléfono de {provideMilitaryCurrentEmployerSupervisorFirstName} {provideMilitaryCurrentEmployerSupervisorLastName}?'\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 1,\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'provideCurrentEmployerStartedDate'\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.supervisorPhone',\r\n // prevQuestion: true,\r\n // },\r\n {\r\n key: 'provideCurrentEmployerStartedDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'When did you start working at {provideCurrentEmployerName}?',\r\n Spanish: '¿Cuándo empezó a trabajar en {provideCurrentEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'howGetPay'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.startDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'howGetPay',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How do you get paid?',\r\n Spanish: '¿Cómo recibe su pago?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: \"paymentType\",\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'annualSalary',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.payType',\r\n comparisonType: 'equal',\r\n value: 'hourly',\r\n },\r\n ],\r\n goTo: 'getPaidOvertime',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.payType',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'getPaidOvertime',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you get paid overtime when working more that 40 hours a week?',\r\n Spanish: '¿Le pagan horas extras cuando trabaja mas de 40 horas a la semana?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'hourlyRate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'hourlyRate'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.getPaidOvertime',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'hourlyRate',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How much do you get paid an hour?',\r\n Spanish: '¿Cuánto le pagan por hora?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'hoursWorkedPerWeek'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.payAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'hoursWorkedPerWeek',\r\n category: 'creditApp',\r\n type: 'QuestionInputNumber',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How many hours per week you work on average?',\r\n Spanish: '¿Cuántas horas promedio trabaja en la semana?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'getCommissionsOrBonuses',\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.weeklyHours',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'annualSalary',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employeeType',\r\n comparisonType: 'equal',\r\n value: ENUMS.CREDIT_APP_TYPE_EMPLOYEE.MILITARY,\r\n },\r\n ],\r\n English: 'What is your annual salary without any deductions?',\r\n Spanish: '¿Cuál es su salario anual sin deducciones?'\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employeeType',\r\n comparisonType: 'equal',\r\n value: ENUMS.CREDIT_APP_TYPE_EMPLOYEE.W2,\r\n },\r\n ],\r\n English: 'What is your annual salary without any deductions?',\r\n Spanish: '¿Cuál es su salario anual sin deducciones?'\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employeeType',\r\n comparisonType: 'equal',\r\n value: ENUMS.CREDIT_APP_TYPE_EMPLOYEE.SE1099,\r\n },\r\n ],\r\n English: 'What is your annual salary?',\r\n Spanish: '¿Cuál es su salario anual?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'getCommissionsOrBonuses'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.payAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'getCommissionsOrBonuses',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you get paid any commissions and/or bonuses above your regular pay?',\r\n Spanish: '¿Le pagan comisiones y/o bonos ademas de su salario regular?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'commissionsOrBonusesFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.startDate', // provideCurrentEmployerStartedDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'commissionsOrBonusesFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you get commissions and/or bonuses?',\r\n Spanish: '¿Con qué frecuencia recibe comisiones y/o bonos ?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'frequenciesWithoutQuarterlyAndSemiAnnual',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'commissionsOrBonusesAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.commissionsAndBonusesFrequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'commissionsOrBonusesAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter amount of commissions and/or bonuses',\r\n Spanish: 'Por favor ingrese la cantidad de comisiones y/o bonos'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'commissionsOrBonusesDescription'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.commissionsAndBonusesAmount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'commissionsOrBonusesDescription',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter a brief description of your commissions and/or bonuses.',\r\n Spanish: 'Por favor describa brevemente sus comisiones y/o bonos.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.startDate', // provideCurrentEmployerStartedDate\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.currentEmployment.commissionsAndBonusesDescription',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'previouslyEmployed',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Were you previously employed?',\r\n Spanish: '¿Estuvo empleado anteriormente?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployedWithMilitary'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'receivePension'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'previouslyEmployedWithMilitary',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Were you previously employed by the Military?',\r\n Spanish: '¿Trabajó anteriormente para las Fuerzas Armadas?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryPreviousEmployerName'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousEmployerName'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryPreviousEmployerName',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your previous military branch?',\r\n Spanish: '¿En qué rama de las fuerzas armadas trabajó anteriormente?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'militaryBranch',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryPreviousEmployerPhoneNumber'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.employerName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryPreviousEmployerPhoneNumber',\r\n category: 'creditApp',\r\n type: 'QuestionInputPhone',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is the main phone number for {provideMilitaryPreviousEmployerName}?',\r\n Spanish: '¿Cuál es el número de teléfono principal de {provideMilitaryPreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryPreviousEmployerPosition'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.phone',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryPreviousEmployerPosition',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What was your position at {provideMilitaryPreviousEmployerName}?',\r\n Spanish: '¿Cuál fue su posición en {provideMilitaryPreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideMilitaryPreviousEmployerStartedDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.position',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideMilitaryPreviousEmployerStartedDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'When did you start working at {provideMilitaryPreviousEmployerName}?',\r\n Spanish: '¿Cuándo empezó a trabajar en {provideMilitaryPreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'receivePension'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.startDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousEmployerName',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your previous employer name?',\r\n Spanish: '¿Cuál es el nombre de su centro de trabajo anterior?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousEmployerPhoneNumber'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.employerName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousEmployerPhoneNumber',\r\n category: 'creditApp',\r\n type: 'QuestionInputPhone',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'maxLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'minLength',\r\n params: [10]\r\n },\r\n {\r\n type: 'numeric',\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is the main phone number for {providePreviousEmployerName}?',\r\n Spanish: '¿Cuál es el número de teléfono principal de {providePreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousEmployerPosition'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.phone',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousEmployerPosition',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is your position at {providePreviousEmployerName}?',\r\n Spanish: '¿Cuál es su posición en {providePreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'providePreviousEmployerStartedDate'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.position',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'providePreviousEmployerStartedDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'When did you start working at {providePreviousEmployerName}?',\r\n Spanish: '¿Cuándo empezó a trabajar en {providePreviousEmployerName}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'receivePension'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.previousEmployment.startDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'noEmployedStatus',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please select one of the following statuses.',\r\n Spanish: 'Por favor seleccione uno de los siguentes estados.'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'noEmployedStatus',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'provideNonEmployedStatusStartDate',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'other',\r\n },\r\n ],\r\n goTo: 'incomeSituationDescription',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'provideNonEmployedStatusStartDate',\r\n category: 'creditApp',\r\n type: 'QuestionDate',\r\n dateType: 'month',\r\n validation: [\r\n {\r\n propertyName: 'year',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n },\r\n {\r\n propertyName: 'month',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'different',\r\n value: 'other',\r\n },\r\n ],\r\n English: 'When did your status become {noEmployedStatus}?',\r\n Spanish: '¿Cuándo empezó su estado de {noEmployedStatus}?'\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'other',\r\n },\r\n ],\r\n English: 'When did your status become {incomeSituationDescription}?',\r\n Spanish: '¿Cuándo empezó su estado de {incomeSituationDescription}?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'receivePension',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'retired',\r\n },\r\n ],\r\n goTo: 'receiveSocialSecurity',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'disabled',\r\n },\r\n ],\r\n goTo: 'receiveSupplementalSecurity',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'student',\r\n },\r\n ],\r\n goTo: 'studentSchoolName'\r\n ,\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'receiveSocialSecurity',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you receive Social Security payments?',\r\n Spanish: '¿Recibe pagos de la Seguridad Social?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'socialSecurityFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.socialSecurity.frequency',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.socialSecurity.amount',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.socialSecurity.description',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'socialSecurityFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you receive your Social Security payment?',\r\n Spanish: '¿Con qué frecuencia recibe su pago de la Seguridad Social?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'frequenciesWithoutQuarterlyAndSemiAnnual',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'socialSecurityAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.socialSecurity.frequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'socialSecurityAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the amount you receive from Social Security.',\r\n Spanish: 'Por favor ingrese la cantidad que recibe de la Seguridad Social.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.socialSecurity.amount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'receiveSupplementalSecurity',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you receive Supplemental Security (disability) payments?',\r\n Spanish: '¿Recibe pagos de Segurida Suplementaria (discapacitado)?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'supplementalSecurityFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.supplementalSecurity.frequency',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.supplementalSecurity.amount',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.supplementalSecurity.description',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'supplementalSecurityFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you receive Supplemental Security?',\r\n Spanish: '¿Con qué frecuencia recibe Seguridad Suplementaria?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'frequenciesWithoutQuarterlyAndSemiAnnual',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'supplementalSecurityAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.supplementalSecurity.frequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'supplementalSecurityAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the amount you receive from Supplemental Security.',\r\n Spanish: 'Por favor ingrese la cantidad que recibe en Seguridad Suplementaria.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.supplementalSecurity.amount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'studentSchoolName',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'What is the name of the school you attend?',\r\n Spanish: '¿Cuál es el nombre de la escuela a la que asite?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'receivePension',\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.studentSchoolName',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'incomeSituationDescription',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please briefly describe your income situation.',\r\n Spanish: 'Por favor describa brevemente su situacion financiera.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'previouslyEmployed',\r\n conditions: [\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'equal',\r\n value: 'other',\r\n },\r\n ],\r\n goTo: 'provideNonEmployedStatusStartDate',\r\n },\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.nonEmployedStatusStartDate',\r\n comparisonType: 'greaterOrEqual',\r\n value: '24',\r\n dataPathType: 'date',\r\n },\r\n ],\r\n goTo: 'receivePension',\r\n },\r\n ]\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.incomeSituationDescription',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'receivePension',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you receive any pension payments?',\r\n Spanish: '¿Recibe pagos de pensión(es)?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'pensionFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.pension.frequency',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.pension.amount',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.pension.description',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'haveInvestment'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'pensionFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you receive pension(s)?',\r\n Spanish: '¿Con qué frecuencia recibe pensión(es)?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'frequenciesWithoutQuarterlyAndSemiAnnual',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'pensionAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.pension.frequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'pensionAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the amount you receive from your pension(s).',\r\n Spanish: 'Por favor ingrese la cantidad que recibe se su(s) pensión(es).'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'haveInvestment'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.pension.amount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'haveInvestment',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you have any income from investments?',\r\n Spanish: '¿Tiene algún ingreso por inversiones?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'investmentFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.frequency',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.amount',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.description',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'haveOtherIncome'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'investmentFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you receive income from your investment(s)?',\r\n Spanish: '¿Con qué frecuencia recibe ingresos de su(s) inversión(es)?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'allFrequencies',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'investmentAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.frequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'investmentAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter the income you receive from your investment(s).',\r\n Spanish: 'Por favor ingrese la cantidad que recibe por su(s) inversión(es).'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'investmentDescription'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.amount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'investmentDescription',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please briefly describe the investment(s).',\r\n Spanish: 'Por favor describa brevemente su(s) inversion(es).'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'haveOtherIncome'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.investment.description',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'haveOtherIncome',\r\n category: 'creditApp',\r\n type: 'QuestionYesNo',\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Do you have another source of income?',\r\n Spanish: '¿Tiene alguna otra fuente de ingresos?'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yes',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'otherIncomeFrequency'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'no',\r\n actions: [\r\n {\r\n action: 3,\r\n extraValuesToSave: [\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.frequency',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.amount',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n {\r\n type: \"value\",\r\n savePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.description',\r\n override: {\r\n value: null,\r\n type: 'value'\r\n }\r\n },\r\n ],\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'creditAppSummary2',\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'otherIncomeFrequency',\r\n category: 'creditApp',\r\n type: 'QuestionInputDropdown',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'How often do you receive additional income?',\r\n Spanish: '¿Con qué frecuencia recibe ingresos adicionales?'\r\n },\r\n ],\r\n dropdown: {\r\n listMethod: 'allFrequencies',\r\n keys: {\r\n text: 'text',\r\n value: 'value'\r\n },\r\n },\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'otherIncomeAmount'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.frequency',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'otherIncomeAmount',\r\n category: 'creditApp',\r\n type: 'QuestionInputCurrency',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n {\r\n type: 'minValue',\r\n params: [1]\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter amount of additional income.',\r\n Spanish: 'Por favor ingrese la cantidad de ingresos adicionales.'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'otherIncomeDescription'\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.amount',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'otherIncomeDescription',\r\n category: 'creditApp',\r\n type: 'QuestionInputText',\r\n validation: [\r\n {\r\n propertyName: 'textValue',\r\n validators: [\r\n {\r\n type: 'required'\r\n },\r\n ]\r\n }\r\n ],\r\n summaryDisplay: true,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: 'Please enter a brief description of your additional income',\r\n Spanish: 'Por favor describa brevemente sus incresos adicionales'\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'continue',\r\n isValidationRequired: true,\r\n actions: [\r\n {\r\n action: 1,\r\n },\r\n {\r\n action: 2,\r\n nextQuestion: 'creditAppSummary2',\r\n }\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: 'quoteAppData.applicationsDataAnswered.personalInfo.otherIncome.description',\r\n prevQuestion: true,\r\n },\r\n {\r\n key: 'creditAppSummary2',\r\n category: 'creditApp',\r\n type: 'QuestionSummary',\r\n triggerSave: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please review all the information below and confirm if it is correct.\",\r\n Spanish: \"Por favor, revise toda la siguiente información y confirme si esta correcta.\"\r\n },\r\n // Income Related\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.applicationsDataAnswered.personalInfo.employmentStatus',\r\n comparisonType: 'different',\r\n value: 'employed',\r\n },\r\n ],\r\n English: \"I am {currentlyEmployed} since {provideNonEmployedStatusStartDate}.\",\r\n Spanish: \"Yo estoy {currentlyEmployed} desde {provideNonEmployedStatusStartDate}.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideMilitaryCurrentEmployerName',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"I am {currentlyEmployed} as a(n) {provideMilitaryCurrentEmployerPosition} at the military branch {provideMilitaryCurrentEmployerName} since {provideMilitaryCurrentEmployerStartedDate}. Their main phone number is {provideMilitaryCurrentEmployerPhoneNumber}.\",\r\n Spanish: \"Yo estoy {currentlyEmployed} como un(a) {provideMilitaryCurrentEmployerPosition} en la rama {provideMilitaryCurrentEmployerName} de las Fuerzas Armadas desde {provideMilitaryCurrentEmployerStartedDate}. Su número de teléfono principal es {provideMilitaryCurrentEmployerPhoneNumber}.\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideCurrentEmployerName',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"I am {currentlyEmployed} as a(n) {provideCurrentEmployerPosition} at {provideCurrentEmployerName} since {provideCurrentEmployerStartedDate}. Their main phone number is {provideCurrentEmployerPhoneNumber}.\",\r\n Spanish: \"Yo estoy {currentlyEmployed} como un(a) {provideCurrentEmployerPosition} en {provideCurrentEmployerName} {provideCurrentEmployerStartedDate}. Su número de teléfono principal es {provideCurrentEmployerPhoneNumber}.\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'hourlyRate',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I get paid {hourlyRate}/hour and work approximately {hoursWorkedPerWeek} hours/week.\",\r\n Spanish: \" Me pagan {hourlyRate} por hora y trabajo aproximadamente {hoursWorkedPerWeek} horas a la semana.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'annualSalary',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I get paid {annualSalary} per year.\",\r\n Spanish: \" Me pagan {annualSalary} al año.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'commissionsOrBonusesFrequency',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" As well as {commissionsOrBonusesAmount} {commissionsOrBonusesFrequency} on {commissionsOrBonusesDescription}.\",\r\n Spanish: \" Tambien recibo {commissionsOrBonusesAmount} {commissionsOrBonusesFrequency} en {commissionsOrBonusesDescription}.\",\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'socialSecurityFrequency',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I receive social security payments of {socialSecurityAmount} {socialSecurityFrequency}.\",\r\n Spanish: \" Recibo un pago de seguro social de {socialSecurityAmount} {socialSecurityFrequency}.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'pensionFrequency',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I receive {pensionAmount} {pensionFrequency} from my pensions.\",\r\n Spanish: \" Recibo {pensionAmount} {pensionFrequency} de mis pensiones.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'supplementalSecurityFrequency',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I receive supplemental security (disability) payments of {supplementalSecurityAmount} {supplementalSecurityFrequency}.\",\r\n Spanish: \" Recibo pagos de seguridad suplementaria (por discapacidad) de {supplementalSecurityAmount} {supplementalSecurityFrequency}.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'investmentAmount',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I receive {investmentAmount} {investmentFrequency} in {investmentDescription} investments.\",\r\n Spanish: \" Recibo {investmentAmount} {investmentFrequency} en {investmentDescription} inversiones.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'otherIncomeAmount',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \" I also receive {otherIncomeAmount} {otherIncomeFrequency} on {otherIncomeDescription}.\",\r\n Spanish: \" Tambien recibo {otherIncomeAmount} {otherIncomeFrequency} por {otherIncomeDescription}.\"\r\n },\r\n {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'provideMilitaryPreviousEmployerName',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I was previously employed as a(n) {provideMilitaryPreviousEmployerPosition} for the {provideMilitaryPreviousEmployerName}. My employment began {provideMilitaryPreviousEmployerStartedDate}. Their main phone number is {provideMilitaryPreviousEmployerPhoneNumber}.\",\r\n Spanish: \"

Estuve empleado anteriormente como {provideMilitaryPreviousEmployerPosition} en el(la) {provideMilitaryPreviousEmployerName}. Mi empleo comenzó el {provideMilitaryPreviousEmployerStartedDate}. Su número de teléfono principal es {provideMilitaryPreviousEmployerPhoneNumber}.\"\r\n }, {\r\n conditionToShow: [\r\n {\r\n dataPath: 'quoteAppData.pathFollowed',\r\n comparisonType: 'equal',\r\n value: 'providePreviousEmployerName',\r\n dataPathType: 'array'\r\n },\r\n ],\r\n English: \"

I was previously employed as a(n) {providePreviousEmployerPosition} at {providePreviousEmployerName}. My employment began {providePreviousEmployerStartedDate}. Their main phone number is {providePreviousEmployerPhoneNumber}\",\r\n Spanish: \"

Estuve empleado anteriormente como {providePreviousEmployerPosition} en {providePreviousEmployerName}. Empecé a trabajar allí el {providePreviousEmployerStartedDate}. Su número de teléfono principal es {providePreviousEmployerPhoneNumber}\"\r\n },\r\n ],\r\n answerButtons: [\r\n {\r\n label: 'yesSummary',\r\n actions: [\r\n //{ //Plaid code \r\n // action: 4,\r\n // apiMethod: 'findPlaidCustomerRecord'\r\n //},\r\n {\r\n action: 2,\r\n nextQuestion: 'thankYouMessageCompleted',\r\n conditions: [\r\n //{ //Plaid code\r\n // conditionList: [\r\n // {\r\n // dataPath: 'plaidId',\r\n // comparisonType: 'equal',\r\n // value: null,\r\n // },\r\n // ],\r\n // goTo: 'wantPlaidVerification',\r\n //},\r\n {\r\n conditionList: [\r\n {\r\n dataPath: 'dateCompleted',\r\n comparisonType: 'different',\r\n value: null,\r\n },\r\n ],\r\n goTo: 'applicationUpdatedCreditAppSummary2',\r\n },\r\n ]\r\n },\r\n {\r\n action: 5\r\n },\r\n ],\r\n style: {\r\n background: 'successButtonColor',\r\n text: 'successButtonTextColor'\r\n }\r\n },\r\n {\r\n label: 'noSummary',\r\n actions: [\r\n {\r\n action: 2,\r\n nextQuestion: 'currentlyEmployed'\r\n }\r\n ],\r\n style: {\r\n background: 'errorButtonColor',\r\n text: 'errorButtonTextColor'\r\n }\r\n }\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: true,\r\n },\r\n\r\n ////Plaid Question\r\n //{ //Plaid code\r\n // key: 'wantPlaidVerification',\r\n // category: 'creditApp',\r\n // type: 'QuestionPlaidLink',\r\n // isEndOfApp: true,\r\n // summaryDisplay: false,\r\n // textsToShow: [\r\n // {\r\n // conditionToShow: null,\r\n // English: \"Almost there! To protect against fraud and ensure your identity is secure, we kindly ask you to take a photo of your driver's license. This step helps us confirm your identity and speed up the application process. It's just like showing your ID, but in a digital format. Rest assured, your information is securely stored and only used for the purpose of this application.\",\r\n // Spanish: \"Casi hemos terminado! Para proteger contra el fraude y asegurar que su identidad esté segura, le pedimos amablemente que tome una foto de su licencia de conducir. Este paso nos ayuda a confirmar su identidad y acelerar el proceso de la solicitud. Es como mostrar su identificación, pero en formato digital. Tenga la seguridad de que su información se almacena de manera segura y solo se utiliza para el propósito de esta solicitud.\"\r\n // },\r\n // ],\r\n // answerButtons: [\r\n // //{\r\n // // label: 'procedeWithoutPlaidLink',\r\n // // actions: [\r\n // // {\r\n // // action: 2,\r\n // // nextQuestion: 'thankYouMessageCompleted',\r\n // // }\r\n // // ],\r\n // // style: {\r\n // // background: 'successButtonColor',\r\n // // text: 'successButtonTextColor'\r\n // // }\r\n // //},\r\n // {\r\n // label: 'continue',\r\n // isValidationRequired: true,\r\n // actions: [\r\n // {\r\n // action: 4,\r\n // apiMethod: 'plaidInfo'\r\n // },\r\n // {\r\n // action: 2,\r\n // nextQuestion: 'thankYouMessageCompleted',\r\n // conditions: [\r\n // {\r\n // conditionList: [\r\n // {\r\n // dataPath: 'dateCompleted',\r\n // comparisonType: 'different',\r\n // value: null,\r\n // },\r\n // ],\r\n // goTo: 'applicationUpdatedCreditAppSummary2',\r\n // },\r\n // ]\r\n // }\r\n // ],\r\n // style: {\r\n // background: 'successButtonColor',\r\n // text: 'successButtonTextColor'\r\n // }\r\n // }\r\n // ],\r\n // savedAnswer: null,\r\n // dataStructurePath: '',\r\n // prevQuestion: true,\r\n //},\r\n {\r\n key: 'thankYouMessage',\r\n category: 'thankYou',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Thank you for providing your basic information!\",\r\n Spanish: \"¡Gracias por proveer su información básica!\"\r\n },\r\n ],\r\n notesToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Please wait while we redirect you to your portal.\",\r\n Spanish: \"Por favor espere mientras se le transfiere a su portal.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n {\r\n key: 'thankYouMessageCompleted',\r\n category: 'creditApp',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n isCompleted: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Congratulations!
Your application has been completed.\",\r\n Spanish: \"¡Felicidades!
Tu solicitud ha sido completada.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n {\r\n key: 'applicationUpdated',\r\n category: 'thankYou',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Your application has been successfully updated.\",\r\n Spanish: \"Su applicacion ha sido actualizada exitosamente.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n {\r\n key: 'applicationUpdatedPersonal',\r\n category: 'personal',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Your application has been successfully updated.\",\r\n Spanish: \"Su applicacion ha sido actualizada exitosamente.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n {\r\n key: 'applicationUpdatedCreditAppSummary1',\r\n category: 'creditApp',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Your application has been successfully updated.\",\r\n Spanish: \"Su applicacion ha sido actualizada exitosamente.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n {\r\n key: 'applicationUpdatedCreditAppSummary2',\r\n category: 'creditApp',\r\n type: 'QuestionTextMessage',\r\n isEndOfApp: true,\r\n summaryDisplay: false,\r\n textsToShow: [\r\n {\r\n conditionToShow: null,\r\n English: \"Your application has been successfully updated.\",\r\n Spanish: \"Su applicacion ha sido actualizada exitosamente.\"\r\n },\r\n ],\r\n answerButtons: [\r\n ],\r\n savedAnswer: null,\r\n dataStructurePath: '',\r\n prevQuestion: false,\r\n redirectToCustomerPortal: true,\r\n },\r\n ],\r\n theme: {\r\n mainTextColor: '#333',\r\n linkMainTextColor: '#005bff',\r\n altTextColor: '#fff',\r\n linkAltTextColor: '#00c2ec',\r\n lightMainTextColor: '#a7a7a7',\r\n secondaryTextColor: '#757575',\r\n linkSecondaryTextColor: '#3d8691',\r\n mainColor: '#61CC98',\r\n secondaryColor: '#ffffff',\r\n successButtonColor: '#61CC98',\r\n successButtonTextColor: '#ffffff',\r\n errorButtonColor: '#e16149',\r\n errorButtonTextColor: '#ffffff',\r\n categoryText: '#ffffff',\r\n categoryBulletBorderColor: '#ffffff',\r\n categoryBulletBackground: '0',\r\n categoryActiveText: '#ffffff',\r\n categoryActiveBulletBorderColor: '#ffffff',\r\n categoryActiveBulletBackground: '#ffffff',\r\n categorySuccessText: '#ffffff',\r\n categorySuccessBulletBorderColor: '#ffffff',\r\n categorySuccessBulletBackground: '#ffffff',\r\n optionsButtonColor: '#333',\r\n optionsButtonTextColor: '#ffffff',\r\n errorInputAccentColor: '#c11b1b',\r\n loginNoteBackground: '0',\r\n loginNoteTextColor: '#757575',\r\n appBackgroundColor: '#ecf2f9',\r\n primaryButtonColor: '#61CC98',\r\n secondaryButtonColor: '#e16149',\r\n tertiaryButtonColor: '#ceddfd',\r\n },\r\n prefilledReplacements: [\r\n {\r\n key: 'namePrefilled',\r\n prefilledPropertyName: 'firstName',\r\n useQuestionKey: 'isFirstNameCorrect',\r\n nextQuestionKey: 'provideFirstName',\r\n },\r\n {\r\n key: 'lastnamePrefilled',\r\n prefilledPropertyName: 'lastName',\r\n useQuestionKey: 'isLastNameCorrect',\r\n nextQuestionKey: 'provideLastName'\r\n },\r\n {\r\n key: 'dateOfBirthPrefilled',\r\n type: 'date',\r\n prefilledPropertyName: 'dateOfBirth',\r\n useQuestionKey: 'isDateOfBirthCorrect',\r\n nextQuestionKey: 'provideDateOfBirth'\r\n },\r\n {\r\n key: 'emailPrefilled',\r\n prefilledPropertyName: 'emailAddress',\r\n useQuestionKey: 'isEmailCorrect',\r\n nextQuestionKey: 'provideEmail'\r\n }\r\n ],\r\n storeInfo: [\r\n {\r\n key: 'storeName',\r\n prefilledPropertyName: 'storeName',\r\n },\r\n {\r\n key: 'storePhone',\r\n prefilledPropertyName: 'storePhone',\r\n }\r\n ]\r\n //localization: localization\r\n})\r\n\r\nexport default ApplicationsSettings"],"names":["ApplicationsSettings","reactive","ENUMS"],"mappings":"yCAGK,MAACA,EAAuBC,EAAS,CAClC,aAAc,CAEV,CACI,IAAK,gBACL,SAAU,WACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4BACT,QAAS,kCACZ,CACJ,EACD,SAAU,CACN,WAAY,aACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,oBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,4DACnB,aAAc,EACjB,EACD,CACI,IAAK,qBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uHACT,QAAS,6HACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,0BACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,eACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,kBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,+DACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uEACT,QAAS,uEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,eACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,+DACnB,aAAc,EACjB,EACD,CACI,IAAK,gBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,6EACT,QAAS,+EACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,gEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,oBACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wEACT,QAAS,+EACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,gEACnB,aAAc,EACjB,EACD,CACI,IAAK,oBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,0HACT,QAAS,4IACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,yBACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,qBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,iBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8DACnB,aAAc,EACjB,EACD,CACI,IAAK,kBACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,sEACT,QAAS,kFACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,qBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8DACnB,aAAc,EACjB,EACD,CACI,IAAK,sBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wFACT,QAAS,qFACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,wBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,sEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,WACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wCACT,QAAS,gDACZ,CACJ,EACD,SAAU,CACN,WAAY,aACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,OACV,CACJ,EACD,KAAM,yBACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,UAAW,oBACd,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,sEACnB,aAAc,EACjB,EACD,CACI,IAAK,0BACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,8EACT,QAAS,qFACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,sEACnB,aAAc,EACjB,EACD,CACI,IAAK,uBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uGACT,QAAS,qGACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,4BACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,iBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kBACV,eAAgB,QAChB,MAAO,EACV,CACJ,EACD,KAAM,cACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,oBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,iEACnB,aAAc,EACjB,EACD,CACI,IAAK,qBACL,SAAU,WACV,KAAM,eACN,SAAU,MACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,MACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,mCACT,QAAS,4CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,iBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kBACV,eAAgB,QAChB,MAAO,EACV,CACJ,EACD,KAAM,cACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,iEACnB,aAAc,EACjB,EACD,CACI,IAAK,iBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oIACT,QAAS,oJACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,6BACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,cACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,cACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,kEACnB,aAAc,EACjB,EACD,CACI,IAAK,eACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,OACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,mCACT,QAAS,wDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,cACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,kEACnB,aAAc,EACjB,EACD,CACI,IAAK,eACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oCACT,QAAS,8BACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,cACd,EACD,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,IACV,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,iBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,cACd,EACD,CACI,OAAQ,EACR,UAAW,CACP,CACI,cAAe,CACX,CACI,SAAU,8EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,MAAO,IACV,EACD,CACI,cAAe,CACX,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,MAAO,8EACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,yBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,0BACL,SAAU,WACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,yCACT,QAAS,+CACZ,CACJ,EACD,SAAU,CACN,WAAY,YACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,iBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,kBACL,SAAU,WACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wCACT,QAAS,uCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,kBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,mFACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,+CACT,QAAS,8DACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,mFACnB,aAAc,EACjB,EACD,CACI,IAAK,iBACL,SAAU,WACV,KAAM,oBACN,UAAW,MACX,iBAAkB,CACd,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,WAAY,gCACf,EACD,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,WAAY,qCACf,CACJ,EACD,cAAe,CACX,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,WAAY,mCACf,EACD,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,WAAY,wCACf,CACJ,EACD,WAAY,CACR,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,EACD,CACI,eAAgB,CACZ,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,uBACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,qDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,+BACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,uBACL,SAAU,WACV,KAAM,uBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,CACb,CACI,SAAU,mFACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,QAAS,mIACT,QAAS,sJACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,mFACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,QAAS,4HACT,QAAS,4IACZ,CACJ,EACD,SAAU,CACN,WAAY,YACZ,mBAAoB,GACpB,kBAAmB,uBACtB,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,aACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,mFACnB,aAAc,EACjB,EACD,CACI,IAAK,gCACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oCACT,QAAS,0EACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,aACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,mFACnB,aAAc,EACjB,EACD,CACI,IAAK,cACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,gDACT,QAAS,0DACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,eACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,8EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,uBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,2EACnB,aAAc,EACjB,EACD,CACI,IAAK,eACL,SAAU,WACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,0CACT,QAAS,iDACZ,CACJ,EACD,SAAU,CACN,WAAY,eACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,eACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,4EACnB,aAAc,EACjB,EACD,CACI,IAAK,wBACL,SAAU,WACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,8DACT,QAAS,kEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,cACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,4EACnB,aAAc,EACjB,EACD,CACI,IAAK,gBACL,SAAU,WACV,KAAM,oBACN,iBAAkB,CACd,CACI,eAAgB,KAChB,WAAY,2BACf,CACJ,EACD,cAAe,CACX,CACI,eAAgB,KAChB,WAAY,8BACf,CACJ,EACD,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBA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BACN,KAAM,cACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,EACD,CACI,KAAM,SACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,8CACZ,CACJ,EACD,cAAe,CA2CX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EAKD,CACI,OAAQ,EACR,UAAW,YACd,EACD,CACG,OAAQ,EACR,iBAAkB,CACd,CACI,SAAU,gBACV,eAAgB,YAChB,MAAO,IACV,CACJ,CACH,EACD,CACI,OAAQ,EACR,aAAc,oBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8DACnB,aAAc,EACjB,EAGD,CACI,IAAK,qBACL,SAAU,YACV,KAAM,eACN,SAAU,QACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,uBACP,aAAc,OACjB,CACJ,EACD,QAAS,2LACT,QAAS,uLACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,0BACP,aAAc,OACjB,CACJ,EACD,QAAS,uNACT,QAAS,mNACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,kFACnB,aAAc,GACd,eAAgB,EACnB,EACD,CACI,IAAK,uBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4DACT,QAAS,4DACZ,CACJ,EACD,SAAU,CACN,WAAY,2BACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,oBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,6FACV,eAAgB,QAChB,MAAO,UACV,CACJ,EACD,KAAM,+BACT,EACD,CACI,cAAe,CACX,CACI,SAAU,6FACV,eAAgB,QAChB,MAAO,QACV,CACJ,EACD,KAAM,6BACT,EACD,CACI,cAAe,CACX,CACI,SAAU,6FACV,eAAgB,QAChB,MAAO,KACV,EACD,CACI,SAAU,kFACV,eAAgB,OAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,wBACT,EACD,CACI,cAAe,CACX,CACI,SAAU,6FACV,eAAgB,QAChB,MAAO,aACV,CACJ,EACD,KAAM,iBACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,+GACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yGACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,6FACnB,aAAc,EACjB,EACD,CACI,IAAK,gCACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,+CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,6BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oGACnB,aAAc,EACjB,EACD,CACI,IAAK,8BACL,SAAU,YACV,KAAM,uBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,kKACT,QAAS,qKACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,OACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,2BACjB,EACD,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,+GACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yGACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,UACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,yBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,mBACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,+GACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yGACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,YACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,2BACjB,EACD,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,+GACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yGACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,QACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,qBACjB,EACD,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,+GACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yGACV,SAAU,CACN,MAAO,GACP,KAAM,OACT,CACJ,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,4BACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,sCACT,QAAS,qCACZ,CACJ,EACD,SAAU,CACN,WAAY,gCACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,wBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,yGACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,2DACT,QAAS,gEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,yBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,yGACV,eAAgB,QAChB,MAAO,EACV,CACJ,EACD,KAAM,qBACT,EACD,CACI,cAAe,CACX,CACI,SAAU,kFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,mBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,sGACnB,aAAc,EACjB,EACD,CACI,IAAK,sBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,2CACT,QAAS,4DACZ,CACJ,EACD,SAAU,CACN,WAAY,gCACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,kBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,mGACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,gEACT,QAAS,sFACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,yBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,mBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,gGACnB,aAAc,EACjB,EACD,CACI,IAAK,8BACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,+CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,yBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,mBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oGACnB,aAAc,EACjB,EACD,CACI,IAAK,kBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,yBACT,QAAS,wBACZ,CACJ,EACD,SAAU,CACN,WAAY,iBACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,wBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,iGACV,eAAgB,QAChB,MAAO,OACV,CACJ,EACD,KAAM,wBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,iGACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wCACT,QAAS,6CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,iGACnB,aAAc,EACjB,EACD,CACI,IAAK,wBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,+CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,yBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,kFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,mBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oGACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,kDACT,QAAS,mDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,cACd,EACD,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,IACV,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,2BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,cACd,EACD,CACI,OAAQ,EACR,UAAW,CACP,CACI,cAAe,CACX,CACI,SAAU,+EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,MAAO,IACV,EACD,CACI,cAAe,CACX,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,MAAO,+EACP,KAAM,MACT,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,iCACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,+EACnB,aAAc,EACjB,EACD,CACI,IAAK,kCACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oDACT,QAAS,6DACZ,CACJ,EACD,SAAU,CACN,WAAY,YACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,2BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,+EACnB,aAAc,EACjB,EACD,CACI,IAAK,4BACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oDACT,QAAS,uDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,0BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,wBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,2BACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uDACT,QAAS,oEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,wBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oFACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,YACV,KAAM,oBACN,UAAW,MACX,iBAAkB,CACd,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,WAAY,gCACf,EACD,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,WAAY,qCACf,CACJ,EACD,cAAe,CACX,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,WAAY,mCACf,EACD,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,WAAY,wCACf,CACJ,EACD,WAAY,CACR,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,QAChB,MAAO,IACV,CACJ,EACD,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,EACD,CACI,KAAM,YACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,EACD,CACI,eAAgB,CACZ,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,uBACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,sCACT,QAAS,8CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,+BACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,uCACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,+EACnB,aAAc,EACjB,EACD,CACI,IAAK,+BACL,SAAU,YACV,KAAM,uBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,6CACT,QAAS,0CACZ,CACJ,EACD,SAAU,CACN,WAAY,YACZ,mBAAoB,GACpB,kBAAmB,uBACtB,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,qBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oFACnB,aAAc,EACjB,EACD,CACI,IAAK,wCACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,oCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,qBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oFACnB,aAAc,EACjB,EACD,CACI,IAAK,sBACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,iCACT,QAAS,0CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,+EACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,+BACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,4EACnB,aAAc,EACjB,EACD,CACI,IAAK,uBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oCACT,QAAS,yCACZ,CACJ,EACD,SAAU,CACN,WAAY,eACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,6EACnB,aAAc,EACjB,EACD,CACI,IAAK,gCACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wDACT,QAAS,2DACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,4BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,6EACnB,aAAc,EACjB,EACD,CACI,IAAK,wBACL,SAAU,YACV,KAAM,oBACN,iBAAkB,CACd,CACI,eAAgB,KAChB,WAAY,2BACf,CACJ,EACD,cAAe,CACX,CACI,eAAgB,KAChB,WAAY,8BACf,CACJ,EACD,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,oCACT,QAAS,wCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,4BACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,6BACL,SAAU,YACV,KAAM,eACN,SAAU,QACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,8CACT,QAAS,0CACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,mFACnB,aAAc,EACjB,EACD,CACI,IAAK,oBACL,SAAU,YACV,KAAM,kBACN,YAAa,GACb,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wEACT,QAAS,8EACZ,EACD,CACI,gBAAiB,KACjB,QAAS,gLACT,QAAS,uLACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,gCACP,aAAc,OACjB,CACJ,EACD,QAAS,mKACT,QAAS,wKACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,yBACP,aAAc,OACjB,CACJ,EACD,QAAS,2IACT,QAAS,2IACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,mBACP,aAAc,OACjB,CACJ,EACD,QAAS,kIACT,QAAS,+IACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,8BACP,aAAc,OACjB,CACJ,EACD,QAAS,iKACT,QAAS,sKACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,wBACP,aAAc,OACjB,CACJ,EACD,QAAS,gLACT,QAAS,qKACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,6FACV,eAAgB,QAChB,MAAO,KACV,CACJ,EACD,QAAS,2JACT,QAAS,8JACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,qBACP,aAAc,OACjB,CACJ,EACD,QAAS,0GACT,QAAS,gGACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,+BACP,aAAc,OACjB,CACJ,EACD,QAAS,6VACT,QAAS,uWACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,kCACP,aAAc,OACjB,CACJ,EACD,QAAS,6VACT,QAAS,sWACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,aACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,oBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,gBACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,qCACT,CACJ,CACJ,EACD,CACI,OAAQ,CACX,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,YACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,oBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EAGD,CACI,IAAK,oBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,8BACT,QAAS,+BACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,UAAW,oBACd,EACD,CACI,OAAQ,EACR,UAAW,CACP,CACI,MAAO,UACV,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,q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QACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uEACT,QAAS,qEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,kFACnB,aAAc,EACjB,EACD,CACI,IAAK,8BACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uCACT,QAAS,sDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,oCACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,qFACnB,aAAc,EACjB,EACD,CACI,IAAK,qCACL,SAAU,YACV,KAAM,qBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,EACD,CACI,KAAM,YACN,OAAQ,CAAC,EAAE,CACd,EACD,CACI,KAAM,SACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,mEACT,QAAS,4EACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,iCACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,kCACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,0DACT,QAAS,wDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,oCACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,iFACnB,aAAc,EACjB,EACD,CACI,IAAK,qCACL,SAAU,YACV,KAAM,eACN,SAAU,QACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,+DACT,QAAS,6DACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,kFACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,+CACT,QAAS,oDACZ,CACJ,EACD,SAAU,CACN,WAAY,mBACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,oCACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,OACV,CACJ,EACD,KAAM,4BACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,sEACnB,aAAc,EACjB,EACD,CACI,IAAK,oCACL,SAAU,YACV,KAAM,eACN,SAAU,QACV,WAAY,CACR,CACI,aAAc,OACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,EACD,CACI,aAAc,QACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,CACb,CACI,SAAU,sEACV,eAAgB,YAChB,MAAO,OACV,CACJ,EACD,QAAS,kDACT,QAAS,iDACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,OACV,CACJ,EACD,QAAS,4DACT,QAAS,2DACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,iBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,SACV,CACJ,EACD,KAAM,uBACT,EACD,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,UACV,CACJ,EACD,KAAM,6BACT,EACD,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,SACV,CACJ,EACD,KAAM,mBAET,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,gFACnB,aAAc,EACjB,EACD,CACI,IAAK,wBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,2CACT,QAAS,uCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,yBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,8EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,2EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,gFACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,qBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,gFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EAED,KAAM,gBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,0BACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,yDACT,QAAS,4DACZ,CACJ,EACD,SAAU,CACN,WAAY,2CACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,8EACnB,aAAc,EACjB,EACD,CACI,IAAK,uBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4DACT,QAAS,kEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CAC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YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,iDACT,QAAS,wDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,qBACd,WAAY,CACR,CACI,cAAe,CACX,CACI,SAAU,sEACV,eAAgB,QAChB,MAAO,OACV,CACJ,EACD,KAAM,mCACT,EACD,CACI,cAAe,CACX,CACI,SAAU,gFACV,eAAgB,iBAChB,MAAO,KACP,aAAc,MACjB,CACJ,EACD,KAAM,gBACT,CACJ,CACJ,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,gFACnB,aAAc,EACjB,EACD,CACI,IAAK,iBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uCACT,QAAS,+BACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,kBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,uEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,oEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,yEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,uCACT,QAAS,yCACZ,CACJ,EACD,SAAU,CACN,WAAY,2CACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,eACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,uEACnB,aAAc,EACjB,EACD,CACI,IAAK,gBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4DACT,QAAS,gEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,gBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,oEACnB,aAAc,EACjB,EACD,CACI,IAAK,iBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,2CACT,QAAS,uCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,qBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,0EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,uEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,4EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,iBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,sBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,2DACT,QAAS,6DACZ,CACJ,EACD,SAAU,CACN,WAAY,iBACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,kBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,0EACnB,aAAc,EACjB,EACD,CACI,IAAK,mBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,+DACT,QAAS,mEACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,uBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,uEACnB,aAAc,EACjB,EACD,CACI,IAAK,wBACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,6CACT,QAAS,oDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,iBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,4EACnB,aAAc,EACjB,EACD,CACI,IAAK,kBACL,SAAU,YACV,KAAM,gBACN,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wCACT,QAAS,wCACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,MACP,QAAS,CACL,CACI,OAAQ,EACR,aAAc,sBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,EACD,CACI,MAAO,KACP,QAAS,CACL,CACI,OAAQ,EACR,kBAAmB,CACf,CACI,KAAM,QACN,SAAU,2EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,wEACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,EACD,CACI,KAAM,QACN,SAAU,6EACV,SAAU,CACN,MAAO,KACP,KAAM,OACT,CACJ,CACJ,CACJ,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,mBACZ,KAAM,sBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,GACnB,aAAc,EACjB,EACD,CACI,IAAK,uBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,8CACT,QAAS,kDACZ,CACJ,EACD,SAAU,CACN,WAAY,iBACZ,KAAM,CACF,KAAM,OACN,MAAO,OACV,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,2EACnB,aAAc,EACjB,EACD,CACI,IAAK,oBACL,SAAU,YACV,KAAM,wBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,EACD,CACI,KAAM,WACN,OAAQ,CAAC,CAAC,CACb,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,4CACT,QAAS,wDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,wBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,wEACnB,aAAc,EACjB,EACD,CACI,IAAK,yBACL,SAAU,YACV,KAAM,oBACN,WAAY,CACR,CACI,aAAc,YACd,WAAY,CACR,CACI,KAAM,UACT,CACJ,CACJ,CACJ,EACD,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,6DACT,QAAS,wDACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,WACP,qBAAsB,GACtB,QAAS,CACL,CACI,OAAQ,CACX,EACD,CACI,OAAQ,EACR,aAAc,mBACjB,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT,CACJ,CACJ,EACD,YAAa,KACb,kBAAmB,6EACnB,aAAc,EACjB,EACD,CACI,IAAK,oBACL,SAAU,YACV,KAAM,kBACN,YAAa,GACb,eAAgB,GAChB,YAAa,CACT,CACI,gBAAiB,KACjB,QAAS,wEACT,QAAS,8EACZ,EAED,CACI,gBAAiB,CACb,CACI,SAAU,sEACV,eAAgB,YAChB,MAAO,UACV,CACJ,EACD,QAAS,sLACT,QAAS,yLACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,qCACP,aAAc,OACjB,CACJ,EACD,QAAS,8fACT,QAAS,uhBACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,6BACP,aAAc,OACjB,CACJ,EACD,QAAS,0cACT,QAAS,kdACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,aACP,aAAc,OACjB,CACJ,EACD,QAAS,8IACT,QAAS,yJACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,eACP,aAAc,OACjB,CACJ,EACD,QAAS,kEACT,QAAS,6DACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,gCACP,aAAc,OACjB,CACJ,EACD,QAAS,kMACT,QAAS,sMACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,0BACP,aAAc,OACjB,CACJ,EACD,QAAS,iJACT,QAAS,6IACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,mBACP,aAAc,OACjB,CACJ,EACD,QAAS,wHACT,QAAS,oHACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,gCACP,aAAc,OACjB,CACJ,EACD,QAAS,gLACT,QAAS,oLACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,mBACP,aAAc,OACjB,CACJ,EACD,QAAS,+KACT,QAAS,2KACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,oBACP,aAAc,OACjB,CACJ,EACD,QAAS,2KACT,QAAS,2KACZ,EACD,CACI,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,sCACP,aAAc,OACjB,CACJ,EACD,QAAS,qdACT,QAAS,geAC7B,EAAmB,CACC,gBAAiB,CACb,CACI,SAAU,4BACV,eAAgB,QAChB,MAAO,8BACP,aAAc,OACjB,CACJ,EACD,QAAS,+aACT,QAAS,6bACZ,CACJ,EACD,cAAe,CACX,CACI,MAAO,aACP,QAAS,CAKL,CACI,OAAQ,EACR,aAAc,2BACd,WAAY,CAWR,CACI,cAAe,CACX,CACI,SAAU,gBACV,eAAgB,YAChB,MAAO,IACV,CACJ,EACD,KAAM,qCACT,CACJ,CACJ,EACD,CACI,OAAQ,CACX,CACJ,EACD,MAAO,CACH,WAAY,qBACZ,KAAM,wBACT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"}