@senior-gestao-empresarial/erpx-components 0.0.0-develop-3bab051d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-gestao-empresarial-erpx-components.umd.js +37665 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.js.map +1 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js +17 -0
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js.map +1 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +21 -0
- package/components/breadcrumb/breadcrumb.module.d.ts +2 -0
- package/components/breadcrumb/index.d.ts +2 -0
- package/components/focus/focus.service.d.ts +4 -0
- package/components/lote-serie/erp-lote-serie.component.d.ts +183 -0
- package/components/lote-serie/erp-lote-serie.module.d.ts +2 -0
- package/components/lote-serie/erp-lote-serie.service.d.ts +137 -0
- package/components/lote-serie/index.d.ts +2 -0
- package/components/rateio-editor/erp-rateio-editor.component.d.ts +202 -0
- package/components/rateio-editor/erp-rateio-editor.converter.d.ts +18 -0
- package/components/rateio-editor/erp-rateio-editor.module.d.ts +2 -0
- package/components/rateio-editor/erp-rateio-editor.service.d.ts +17 -0
- package/components/rateio-editor/erp-rateio-editor.types.d.ts +171 -0
- package/components/rateio-editor/index.d.ts +4 -0
- package/components/resumo/erp-resumo.component.d.ts +17 -0
- package/components/resumo/erp-resumo.module.d.ts +2 -0
- package/components/resumo/erp-resumo.service.d.ts +2 -0
- package/components/resumo/index.d.ts +2 -0
- package/components/tributos/calculators/effective-tax-rate-calculator.d.ts +34 -0
- package/components/tributos/calculators/gross-amount-calculator.d.ts +20 -0
- package/components/tributos/calculators/tax-amount-calculator.d.ts +54 -0
- package/components/tributos/erp-tributos.component.d.ts +215 -0
- package/components/tributos/erp-tributos.module.d.ts +2 -0
- package/components/tributos/erp-tributos.service.d.ts +10 -0
- package/components/tributos/erp-tributos.types.d.ts +286 -0
- package/components/tributos/index.d.ts +12 -0
- package/components/tributos/mappings/enum-tip-imp-cst-mapping.d.ts +2 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.d.ts +15 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.d.ts +28 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.d.ts +30 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.d.ts +6 -0
- package/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.d.ts +5 -0
- package/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.d.ts +8 -0
- package/components/tributos/rules/rules.service.d.ts +19 -0
- package/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.d.ts +16 -0
- package/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.d.ts +12 -0
- package/components/tributos/rules/status/registries/purchase-order-status-rules.registry.d.ts +12 -0
- package/components/tributos/rules/status/registries/sale-order-status-rules.registry.d.ts +8 -0
- package/components/tributos/rules/status/registries/status-rules.registry.d.ts +15 -0
- package/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/tax-classification-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/tax-rate-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/taxable-base-status-rule.d.ts +5 -0
- package/components/tributos/rules/types/available-fields.d.ts +2 -0
- package/components/tributos/rules/types/available-taxes.d.ts +1 -0
- package/components/tributos/rules/types/field-calculation-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/field-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/field-status-rule-mapping.d.ts +6 -0
- package/components/tributos/rules/types/rule-payload.d.ts +9 -0
- package/components/tributos/rules/types/schemas/incoming-invoice.schema.d.ts +235 -0
- package/components/tributos/rules/types/schemas/outgoing-invoice.schema.d.ts +349 -0
- package/components/tributos/rules/types/schemas/purchase-order.schema.d.ts +26 -0
- package/components/tributos/rules/types/schemas/sale-order.schema.d.ts +131 -0
- package/components/tributos/rules/types/strategies-by-document.d.ts +12 -0
- package/components/tributos/rules/types/strategies.d.ts +4 -0
- package/components/tributos/rules/types/tax-rule.d.ts +4 -0
- package/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.d.ts +20 -0
- package/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.d.ts +22 -0
- package/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.d.ts +14 -0
- package/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.d.ts +14 -0
- package/components/tributos/rules/validation/registries/validation-rules.registry.d.ts +15 -0
- package/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.d.ts +5 -0
- package/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.d.ts +6 -0
- package/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.d.ts +6 -0
- package/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.d.ts +6 -0
- package/components/tributos/services/tax-rounding.service.d.ts +5 -0
- package/components/tributos/stores/tax.store.d.ts +10 -0
- package/components/tributos/tax-reform-utilities.d.ts +36 -0
- package/components/tributos/types/context.d.ts +7 -0
- package/components/tributos/types/controllership-incoming-invoice-context.d.ts +5 -0
- package/components/tributos/types/controllership-incoming-invoice.d.ts +3 -0
- package/components/tributos/types/controllership-outgoing-invoice-context.d.ts +5 -0
- package/components/tributos/types/controllership-outgoing-invoice.d.ts +3 -0
- package/components/tributos/types/credit-invoice-type.d.ts +1 -0
- package/components/tributos/types/debit-invoice-type.d.ts +1 -0
- package/components/tributos/types/group.d.ts +6 -0
- package/components/tributos/types/incoming-invoice-context.d.ts +5 -0
- package/components/tributos/types/incoming-invoice-item.d.ts +4 -0
- package/components/tributos/types/incoming-invoice-type.d.ts +1 -0
- package/components/tributos/types/incoming-invoice.d.ts +11 -0
- package/components/tributos/types/item-type.d.ts +1 -0
- package/components/tributos/types/outgoing-Invoice.d.ts +11 -0
- package/components/tributos/types/outgoing-invoice-context.d.ts +5 -0
- package/components/tributos/types/outgoing-invoice-item.d.ts +4 -0
- package/components/tributos/types/outgoing-invoice-type.d.ts +1 -0
- package/components/tributos/types/purchase-order-context.d.ts +5 -0
- package/components/tributos/types/purchase-order-type.d.ts +1 -0
- package/components/tributos/types/purchase-order.d.ts +8 -0
- package/components/tributos/types/sale-order-context.d.ts +5 -0
- package/components/tributos/types/sale-order-type.d.ts +1 -0
- package/components/tributos/types/sale-order.d.ts +8 -0
- package/components/tributos/types/tax.d.ts +8 -0
- package/components/utils/breakpoints.d.ts +10 -0
- package/components/utils/export-utils.d.ts +6 -0
- package/components/utils/index.d.ts +3 -0
- package/components/utils/loading-context.d.ts +7 -0
- package/components/utils/utils.d.ts +4 -0
- package/core/entities/entity-service.d.ts +32 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.d.ts +36 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.d.ts +40 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.d.ts +2 -0
- package/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.d.ts +11 -0
- package/core/enums/enum-classificacao-tributaria.d.ts +4 -0
- package/core/enums/enum-tipo-calculo-imposto.d.ts +5 -0
- package/core/enums/enum-tipo-documento-parametros.d.ts +7 -0
- package/core/enums/enum-tipo-documento.d.ts +10 -0
- package/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.d.ts +5 -0
- package/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.d.ts +8 -0
- package/esm2015/components/breadcrumb/breadcrumb.component.js +86 -0
- package/esm2015/components/breadcrumb/breadcrumb.module.js +17 -0
- package/esm2015/components/breadcrumb/index.js +3 -0
- package/esm2015/components/focus/focus.service.js +32 -0
- package/esm2015/components/lote-serie/erp-lote-serie.component.js +1772 -0
- package/esm2015/components/lote-serie/erp-lote-serie.module.js +47 -0
- package/esm2015/components/lote-serie/erp-lote-serie.service.js +94 -0
- package/esm2015/components/lote-serie/index.js +3 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.component.js +794 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.converter.js +52 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.module.js +40 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.service.js +49 -0
- package/esm2015/components/rateio-editor/erp-rateio-editor.types.js +5 -0
- package/esm2015/components/rateio-editor/index.js +4 -0
- package/esm2015/components/resumo/erp-resumo.component.js +19 -0
- package/esm2015/components/resumo/erp-resumo.module.js +25 -0
- package/esm2015/components/resumo/erp-resumo.service.js +13 -0
- package/esm2015/components/resumo/index.js +2 -0
- package/esm2015/components/tributos/calculators/effective-tax-rate-calculator.js +53 -0
- package/esm2015/components/tributos/calculators/gross-amount-calculator.js +37 -0
- package/esm2015/components/tributos/calculators/tax-amount-calculator.js +87 -0
- package/esm2015/components/tributos/erp-tributos.component.js +5176 -0
- package/esm2015/components/tributos/erp-tributos.module.js +33 -0
- package/esm2015/components/tributos/erp-tributos.service.js +23 -0
- package/esm2015/components/tributos/erp-tributos.types.js +268 -0
- package/esm2015/components/tributos/index.js +4 -0
- package/esm2015/components/tributos/mappings/enum-tip-imp-cst-mapping.js +33 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +3102 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +4516 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +294 -0
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.js +1464 -0
- package/esm2015/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.js +48 -0
- package/esm2015/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.js +55 -0
- package/esm2015/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.js +83 -0
- package/esm2015/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.js +74 -0
- package/esm2015/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.js +72 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +244 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.js +74 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.js +170 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +100 -0
- package/esm2015/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.js +124 -0
- package/esm2015/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +292 -0
- package/esm2015/components/tributos/rules/rules.service.js +61 -0
- package/esm2015/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +1076 -0
- package/esm2015/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +1317 -0
- package/esm2015/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +62 -0
- package/esm2015/components/tributos/rules/status/registries/sale-order-status-rules.registry.js +18 -0
- package/esm2015/components/tributos/rules/status/registries/status-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +39 -0
- package/esm2015/components/tributos/rules/status/rules/tax-classification-status-rule.js +94 -0
- package/esm2015/components/tributos/rules/status/rules/tax-rate-status-rule.js +61 -0
- package/esm2015/components/tributos/rules/status/rules/taxable-base-status-rule.js +65 -0
- package/esm2015/components/tributos/rules/types/available-fields.js +1 -0
- package/esm2015/components/tributos/rules/types/available-taxes.js +1 -0
- package/esm2015/components/tributos/rules/types/field-calculation-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/field-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/field-status-rule-mapping.js +1 -0
- package/esm2015/components/tributos/rules/types/rule-payload.js +1 -0
- package/esm2015/components/tributos/rules/types/schemas/incoming-invoice.schema.js +1816 -0
- package/esm2015/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +2750 -0
- package/esm2015/components/tributos/rules/types/schemas/purchase-order.schema.js +150 -0
- package/esm2015/components/tributos/rules/types/schemas/sale-order.schema.js +879 -0
- package/esm2015/components/tributos/rules/types/strategies-by-document.js +1 -0
- package/esm2015/components/tributos/rules/types/strategies.js +1 -0
- package/esm2015/components/tributos/rules/types/tax-rule.js +1 -0
- package/esm2015/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +3606 -0
- package/esm2015/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +5452 -0
- package/esm2015/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +270 -0
- package/esm2015/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.js +1392 -0
- package/esm2015/components/tributos/rules/validation/registries/validation-rules.registry.js +45 -0
- package/esm2015/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +73 -0
- package/esm2015/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.js +78 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +902 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.js +401 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +719 -0
- package/esm2015/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.js +300 -0
- package/esm2015/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +717 -0
- package/esm2015/components/tributos/services/tax-rounding.service.js +18 -0
- package/esm2015/components/tributos/stores/tax.store.js +19 -0
- package/esm2015/components/tributos/tax-reform-utilities.js +243 -0
- package/esm2015/components/tributos/types/context.js +1 -0
- package/esm2015/components/tributos/types/controllership-incoming-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/controllership-incoming-invoice.js +1 -0
- package/esm2015/components/tributos/types/controllership-outgoing-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/controllership-outgoing-invoice.js +1 -0
- package/esm2015/components/tributos/types/credit-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/debit-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/group.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-item.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/incoming-invoice.js +1 -0
- package/esm2015/components/tributos/types/item-type.js +1 -0
- package/esm2015/components/tributos/types/outgoing-Invoice.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-context.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-item.js +1 -0
- package/esm2015/components/tributos/types/outgoing-invoice-type.js +1 -0
- package/esm2015/components/tributos/types/purchase-order-context.js +1 -0
- package/esm2015/components/tributos/types/purchase-order-type.js +1 -0
- package/esm2015/components/tributos/types/purchase-order.js +1 -0
- package/esm2015/components/tributos/types/sale-order-context.js +1 -0
- package/esm2015/components/tributos/types/sale-order-type.js +1 -0
- package/esm2015/components/tributos/types/sale-order.js +1 -0
- package/esm2015/components/tributos/types/tax.js +2 -0
- package/esm2015/components/utils/breakpoints.js +11 -0
- package/esm2015/components/utils/export-utils.js +71 -0
- package/esm2015/components/utils/index.js +4 -0
- package/esm2015/components/utils/loading-context.js +20 -0
- package/esm2015/components/utils/utils.js +18 -0
- package/esm2015/core/entities/entity-service.js +91 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.js +1 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.js +62 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.js +24 -0
- package/esm2015/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.js +24 -0
- package/esm2015/core/enums/enum-classificacao-tributaria.js +6 -0
- package/esm2015/core/enums/enum-tipo-calculo-imposto.js +7 -0
- package/esm2015/core/enums/enum-tipo-documento-parametros.js +9 -0
- package/esm2015/core/enums/enum-tipo-documento.js +12 -0
- package/esm2015/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.js +7 -0
- package/esm2015/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.js +10 -0
- package/esm2015/locale/fallback.js +56 -0
- package/esm2015/public-api.js +8 -0
- package/esm2015/senior-gestao-empresarial-erpx-components.js +58 -0
- package/esm5/components/breadcrumb/breadcrumb.component.js +91 -0
- package/esm5/components/breadcrumb/breadcrumb.module.js +20 -0
- package/esm5/components/breadcrumb/index.js +3 -0
- package/esm5/components/focus/focus.service.js +35 -0
- package/esm5/components/lote-serie/erp-lote-serie.component.js +1830 -0
- package/esm5/components/lote-serie/erp-lote-serie.module.js +50 -0
- package/esm5/components/lote-serie/erp-lote-serie.service.js +96 -0
- package/esm5/components/lote-serie/index.js +3 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.component.js +861 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.converter.js +68 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.module.js +43 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.service.js +51 -0
- package/esm5/components/rateio-editor/erp-rateio-editor.types.js +5 -0
- package/esm5/components/rateio-editor/index.js +4 -0
- package/esm5/components/resumo/erp-resumo.component.js +22 -0
- package/esm5/components/resumo/erp-resumo.module.js +28 -0
- package/esm5/components/resumo/erp-resumo.service.js +16 -0
- package/esm5/components/resumo/index.js +2 -0
- package/esm5/components/tributos/calculators/effective-tax-rate-calculator.js +58 -0
- package/esm5/components/tributos/calculators/gross-amount-calculator.js +39 -0
- package/esm5/components/tributos/calculators/tax-amount-calculator.js +91 -0
- package/esm5/components/tributos/erp-tributos.component.js +5296 -0
- package/esm5/components/tributos/erp-tributos.module.js +36 -0
- package/esm5/components/tributos/erp-tributos.service.js +24 -0
- package/esm5/components/tributos/erp-tributos.types.js +268 -0
- package/esm5/components/tributos/index.js +4 -0
- package/esm5/components/tributos/mappings/enum-tip-imp-cst-mapping.js +33 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +3104 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +4518 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +296 -0
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry.js +1466 -0
- package/esm5/components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule.js +60 -0
- package/esm5/components/tributos/rules/calculation/rules/assessment-period-calculation-rule.js +77 -0
- package/esm5/components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule.js +92 -0
- package/esm5/components/tributos/rules/calculation/rules/gross-amount-calculation-rule.js +83 -0
- package/esm5/components/tributos/rules/calculation/rules/manual-tax-calculation-rule.js +87 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +286 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule.js +89 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-classification-calculation-rule.js +241 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +118 -0
- package/esm5/components/tributos/rules/calculation/rules/tax-situation-calculation-rule.js +200 -0
- package/esm5/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +330 -0
- package/esm5/components/tributos/rules/rules.service.js +139 -0
- package/esm5/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +1078 -0
- package/esm5/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +1319 -0
- package/esm5/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +64 -0
- package/esm5/components/tributos/rules/status/registries/sale-order-status-rules.registry.js +19 -0
- package/esm5/components/tributos/rules/status/registries/status-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +43 -0
- package/esm5/components/tributos/rules/status/rules/tax-classification-status-rule.js +106 -0
- package/esm5/components/tributos/rules/status/rules/tax-rate-status-rule.js +68 -0
- package/esm5/components/tributos/rules/status/rules/taxable-base-status-rule.js +72 -0
- package/esm5/components/tributos/rules/types/available-fields.js +1 -0
- package/esm5/components/tributos/rules/types/available-taxes.js +1 -0
- package/esm5/components/tributos/rules/types/field-calculation-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/field-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/field-status-rule-mapping.js +1 -0
- package/esm5/components/tributos/rules/types/rule-payload.js +1 -0
- package/esm5/components/tributos/rules/types/schemas/incoming-invoice.schema.js +1817 -0
- package/esm5/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +2751 -0
- package/esm5/components/tributos/rules/types/schemas/purchase-order.schema.js +151 -0
- package/esm5/components/tributos/rules/types/schemas/sale-order.schema.js +880 -0
- package/esm5/components/tributos/rules/types/strategies-by-document.js +1 -0
- package/esm5/components/tributos/rules/types/strategies.js +1 -0
- package/esm5/components/tributos/rules/types/tax-rule.js +1 -0
- package/esm5/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +3608 -0
- package/esm5/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +5454 -0
- package/esm5/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +272 -0
- package/esm5/components/tributos/rules/validation/registries/sale-order-validation-rules.registry.js +1394 -0
- package/esm5/components/tributos/rules/validation/registries/validation-rules.registry.js +46 -0
- package/esm5/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +77 -0
- package/esm5/components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule.js +86 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +968 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule.js +433 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +774 -0
- package/esm5/components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule.js +323 -0
- package/esm5/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +772 -0
- package/esm5/components/tributos/services/tax-rounding.service.js +23 -0
- package/esm5/components/tributos/stores/tax.store.js +26 -0
- package/esm5/components/tributos/tax-reform-utilities.js +249 -0
- package/esm5/components/tributos/types/context.js +1 -0
- package/esm5/components/tributos/types/controllership-incoming-invoice-context.js +1 -0
- package/esm5/components/tributos/types/controllership-incoming-invoice.js +1 -0
- package/esm5/components/tributos/types/controllership-outgoing-invoice-context.js +1 -0
- package/esm5/components/tributos/types/controllership-outgoing-invoice.js +1 -0
- package/esm5/components/tributos/types/credit-invoice-type.js +1 -0
- package/esm5/components/tributos/types/debit-invoice-type.js +1 -0
- package/esm5/components/tributos/types/group.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-context.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-item.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice-type.js +1 -0
- package/esm5/components/tributos/types/incoming-invoice.js +1 -0
- package/esm5/components/tributos/types/item-type.js +1 -0
- package/esm5/components/tributos/types/outgoing-Invoice.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-context.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-item.js +1 -0
- package/esm5/components/tributos/types/outgoing-invoice-type.js +1 -0
- package/esm5/components/tributos/types/purchase-order-context.js +1 -0
- package/esm5/components/tributos/types/purchase-order-type.js +1 -0
- package/esm5/components/tributos/types/purchase-order.js +1 -0
- package/esm5/components/tributos/types/sale-order-context.js +1 -0
- package/esm5/components/tributos/types/sale-order-type.js +1 -0
- package/esm5/components/tributos/types/sale-order.js +1 -0
- package/esm5/components/tributos/types/tax.js +2 -0
- package/esm5/components/utils/breakpoints.js +11 -0
- package/esm5/components/utils/export-utils.js +78 -0
- package/esm5/components/utils/index.js +4 -0
- package/esm5/components/utils/loading-context.js +22 -0
- package/esm5/components/utils/utils.js +20 -0
- package/esm5/core/entities/entity-service.js +98 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda-dto.js +1 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.js +67 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module.js +27 -0
- package/esm5/core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service.js +27 -0
- package/esm5/core/enums/enum-classificacao-tributaria.js +6 -0
- package/esm5/core/enums/enum-tipo-calculo-imposto.js +7 -0
- package/esm5/core/enums/enum-tipo-documento-parametros.js +9 -0
- package/esm5/core/enums/enum-tipo-documento.js +12 -0
- package/esm5/core/enums/erpx-com-processo-faturamento-backend/enum-indicativo-padrao.js +7 -0
- package/esm5/core/enums/erpx-cpl-imp-cadastros-backend/enum-indicativo-padrao.js +10 -0
- package/esm5/locale/fallback.js +56 -0
- package/esm5/public-api.js +8 -0
- package/esm5/senior-gestao-empresarial-erpx-components.js +58 -0
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +36350 -0
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -0
- package/fesm5/senior-gestao-empresarial-erpx-components.js +37396 -0
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -0
- package/locale/fallback.d.ts +55 -0
- package/package.json +23 -0
- package/public-api.d.ts +7 -0
- package/senior-gestao-empresarial-erpx-components.d.ts +57 -0
- package/senior-gestao-empresarial-erpx-components.metadata.json +1 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { Injectable } from '@angular/core';
|
|
3
|
+
import { EnumCampoTributo, EnumTipoTributo } from '../../../erp-tributos.types';
|
|
4
|
+
import { TaxAmountRequiredValidationRule } from '../rules/required/tax-amount-required-validation-rule';
|
|
5
|
+
import { TaxRateRequiredValidationRule } from '../rules/required/tax-rate-required-validation-rule';
|
|
6
|
+
import { TaxableBaseRequiredValidationRule } from '../rules/required/taxable-base-required-validation-rule';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../rules/required/taxable-base-required-validation-rule";
|
|
9
|
+
import * as i2 from "../rules/required/tax-rate-required-validation-rule";
|
|
10
|
+
import * as i3 from "../rules/required/tax-amount-required-validation-rule";
|
|
11
|
+
var PurchaseOrderValidationRulesRegistry = /** @class */ (function () {
|
|
12
|
+
function PurchaseOrderValidationRulesRegistry(taxableBaseRequiredValidationRule, taxRateRequiredValidationRule, taxAmountRequiredValidationRule) {
|
|
13
|
+
var _a;
|
|
14
|
+
this.taxableBaseRequiredValidationRule = taxableBaseRequiredValidationRule;
|
|
15
|
+
this.taxRateRequiredValidationRule = taxRateRequiredValidationRule;
|
|
16
|
+
this.taxAmountRequiredValidationRule = taxAmountRequiredValidationRule;
|
|
17
|
+
this.strategies = {
|
|
18
|
+
'Purchase Order': (_a = {},
|
|
19
|
+
_a[EnumTipoTributo.CBS] = [
|
|
20
|
+
{
|
|
21
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
22
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
field: EnumCampoTributo.Aliquota,
|
|
26
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
field: EnumCampoTributo.Valor,
|
|
30
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
_a[EnumTipoTributo.CBS_A_APROPRIAR] = [
|
|
34
|
+
{
|
|
35
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
36
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
field: EnumCampoTributo.Aliquota,
|
|
40
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
field: EnumCampoTributo.Valor,
|
|
44
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
_a[EnumTipoTributo.CBS_DIFERIDO] = [
|
|
48
|
+
{
|
|
49
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
50
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
field: EnumCampoTributo.Aliquota,
|
|
54
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
field: EnumCampoTributo.Valor,
|
|
58
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
_a[EnumTipoTributo.CBS_CREDITO_PRESUMIDO] = [
|
|
62
|
+
{
|
|
63
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
64
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
field: EnumCampoTributo.Aliquota,
|
|
68
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
_a[EnumTipoTributo.CBS_TRIBUTACAO_REGULAR] = [
|
|
72
|
+
{
|
|
73
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
74
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
field: EnumCampoTributo.Aliquota,
|
|
78
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
field: EnumCampoTributo.Valor,
|
|
82
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
_a[EnumTipoTributo.CBS_GOVERNAMENTAL] = [
|
|
86
|
+
{
|
|
87
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
88
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
field: EnumCampoTributo.Aliquota,
|
|
92
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
_a[EnumTipoTributo.CBS_ALC_ZFM] = [
|
|
96
|
+
{
|
|
97
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
98
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
field: EnumCampoTributo.Aliquota,
|
|
102
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
_a[EnumTipoTributo.IBS_ESTADUAL] = [
|
|
106
|
+
{
|
|
107
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
108
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
field: EnumCampoTributo.Aliquota,
|
|
112
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
field: EnumCampoTributo.Valor,
|
|
116
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_A_APROPRIAR] = [
|
|
120
|
+
{
|
|
121
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
122
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
field: EnumCampoTributo.Aliquota,
|
|
126
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
field: EnumCampoTributo.Valor,
|
|
130
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
134
|
+
{
|
|
135
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
136
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
field: EnumCampoTributo.Aliquota,
|
|
140
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
field: EnumCampoTributo.Valor,
|
|
144
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
148
|
+
{
|
|
149
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
150
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
field: EnumCampoTributo.Aliquota,
|
|
154
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
_a[EnumTipoTributo.IBS_ESTADUAL_GOVERNAMENTAL] = [
|
|
158
|
+
{
|
|
159
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
160
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
field: EnumCampoTributo.Aliquota,
|
|
164
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL] = [
|
|
168
|
+
{
|
|
169
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
170
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
field: EnumCampoTributo.Aliquota,
|
|
174
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
field: EnumCampoTributo.Valor,
|
|
178
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_A_APROPRIAR] = [
|
|
182
|
+
{
|
|
183
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
184
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
field: EnumCampoTributo.Aliquota,
|
|
188
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
field: EnumCampoTributo.Valor,
|
|
192
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
196
|
+
{
|
|
197
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
198
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
field: EnumCampoTributo.Aliquota,
|
|
202
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
field: EnumCampoTributo.Valor,
|
|
206
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
210
|
+
{
|
|
211
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
212
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
field: EnumCampoTributo.Aliquota,
|
|
216
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
_a[EnumTipoTributo.IBS_MUNICIPAL_GOVERNAMENTAL] = [
|
|
220
|
+
{
|
|
221
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
222
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
field: EnumCampoTributo.Aliquota,
|
|
226
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
_a[EnumTipoTributo.IBS_CREDITO_PRESUMIDO] = [
|
|
230
|
+
{
|
|
231
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
232
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
field: EnumCampoTributo.Aliquota,
|
|
236
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
_a[EnumTipoTributo.IS] = [
|
|
240
|
+
{
|
|
241
|
+
field: EnumCampoTributo.BaseCalculo,
|
|
242
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
field: EnumCampoTributo.Aliquota,
|
|
246
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
field: EnumCampoTributo.Valor,
|
|
250
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
_a)
|
|
254
|
+
};
|
|
255
|
+
}
|
|
256
|
+
PurchaseOrderValidationRulesRegistry.prototype.get = function (type, taxType) {
|
|
257
|
+
var _a, _b;
|
|
258
|
+
return (_b = (_a = this.strategies[type]) === null || _a === void 0 ? void 0 : _a[taxType]) !== null && _b !== void 0 ? _b : [];
|
|
259
|
+
};
|
|
260
|
+
PurchaseOrderValidationRulesRegistry.ctorParameters = function () { return [
|
|
261
|
+
{ type: TaxableBaseRequiredValidationRule },
|
|
262
|
+
{ type: TaxRateRequiredValidationRule },
|
|
263
|
+
{ type: TaxAmountRequiredValidationRule }
|
|
264
|
+
]; };
|
|
265
|
+
PurchaseOrderValidationRulesRegistry.ɵprov = i0.ɵɵdefineInjectable({ factory: function PurchaseOrderValidationRulesRegistry_Factory() { return new PurchaseOrderValidationRulesRegistry(i0.ɵɵinject(i1.TaxableBaseRequiredValidationRule), i0.ɵɵinject(i2.TaxRateRequiredValidationRule), i0.ɵɵinject(i3.TaxAmountRequiredValidationRule)); }, token: PurchaseOrderValidationRulesRegistry, providedIn: "root" });
|
|
266
|
+
PurchaseOrderValidationRulesRegistry = __decorate([
|
|
267
|
+
Injectable({ providedIn: 'root' })
|
|
268
|
+
], PurchaseOrderValidationRulesRegistry);
|
|
269
|
+
return PurchaseOrderValidationRulesRegistry;
|
|
270
|
+
}());
|
|
271
|
+
export { PurchaseOrderValidationRulesRegistry };
|
|
272
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyY2hhc2Utb3JkZXItdmFsaWRhdGlvbi1ydWxlcy5yZWdpc3RyeS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BzZW5pb3ItZ2VzdGFvLWVtcHJlc2FyaWFsL2VycHgtY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvdHJpYnV0b3MvcnVsZXMvdmFsaWRhdGlvbi9yZWdpc3RyaWVzL3B1cmNoYXNlLW9yZGVyLXZhbGlkYXRpb24tcnVsZXMucmVnaXN0cnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBS2hGLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLHVEQUF1RCxDQUFDO0FBQ3hHLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHFEQUFxRCxDQUFDO0FBQ3BHLE9BQU8sRUFBRSxpQ0FBaUMsRUFBRSxNQUFNLHlEQUF5RCxDQUFDOzs7OztBQUc1RztJQWlQSSw4Q0FDcUIsaUNBQW9FLEVBQ3BFLDZCQUE0RCxFQUM1RCwrQkFBZ0U7O1FBRmhFLHNDQUFpQyxHQUFqQyxpQ0FBaUMsQ0FBbUM7UUFDcEUsa0NBQTZCLEdBQTdCLDZCQUE2QixDQUErQjtRQUM1RCxvQ0FBK0IsR0FBL0IsK0JBQStCLENBQWlDO1FBblBwRSxlQUFVLEdBQXVCO1lBQzlDLGdCQUFnQjtnQkFDWixHQUFDLGVBQWUsQ0FBQyxHQUFHLElBQUc7b0JBQ25CO3dCQUNJLEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxXQUFXO3dCQUNuQyxLQUFLLEVBQUUsQ0FBQyxJQUFJLENBQUMsaUNBQWlDLENBQUM7cUJBQ2xEO29CQUNEO3dCQUNJLEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxRQUFRO3dCQUNoQyxLQUFLLEVBQUUsQ0FBQyxJQUFJLENBQUMsNkJBQTZCLENBQUM7cUJBQzlDO29CQUNEO3dCQUNJLEtB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SSxDQUFDLGlDQUFpQyxDQUFDO3FCQUNsRDtvQkFDRDt3QkFDSSxLQUFLLEVBQUUsZ0JBQWdCLENBQUMsUUFBUTt3QkFDaEMsS0FBSyxFQUFFLENBQUMsSUFBSSxDQUFDLDZCQUE2QixDQUFDO3FCQUM5QztpQkFDSjtnQkFDRCxHQUFDLGVBQWUsQ0FBQyxFQUFFLElBQUc7b0JBQ2xCO3dCQUNJLEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxXQUFXO3dCQUNuQyxLQUFLLEVBQUUsQ0FBQyxJQUFJLENBQUMsaUNBQWlDLENBQUM7cUJBQ2xEO29CQUNEO3dCQUNJLEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxRQUFRO3dCQUNoQyxLQUFLLEVBQUUsQ0FBQyxJQUFJLENBQUMsNkJBQTZCLENBQUM7cUJBQzlDO29CQUNEO3dCQUNJLEtBQUssRUFBRSxnQkFBZ0IsQ0FBQyxLQUFLO3dCQUM3QixLQUFLLEVBQUUsQ0FBQyxJQUFJLENBQUMsK0JBQStCLENBQUM7cUJBQ2hEO2lCQUNKO21CQUNKO1NBQ0osQ0FBQztJQU1DLENBQUM7SUFFSixrREFBRyxHQUFILFVBQUksSUFBdUIsRUFBRSxPQUF3Qjs7UUFDakQsbUJBQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsMENBQUcsT0FBTyxvQ0FBSyxFQUFFLENBQUM7SUFDbEQsQ0FBQzs7Z0JBUHVELGlDQUFpQztnQkFDckMsNkJBQTZCO2dCQUMzQiwrQkFBK0I7OztJQXBQNUUsb0NBQW9DO1FBRGhELFVBQVUsQ0FBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsQ0FBQztPQUN0QixvQ0FBb0MsQ0EwUGhEOytDQXJRRDtDQXFRQyxBQTFQRCxJQTBQQztTQTFQWSxvQ0FBb0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBFbnVtQ2FtcG9UcmlidXRvLCBFbnVtVGlwb1RyaWJ1dG8gfSBmcm9tICcuLi8uLi8uLi9lcnAtdHJpYnV0b3MudHlwZXMnO1xuaW1wb3J0IHsgUHVyY2hhc2VPcmRlclR5cGUgfSBmcm9tICcuLi8uLi8uLi90eXBlcy9wdXJjaGFzZS1vcmRlci10eXBlJztcbmltcG9ydCB7IEZpZWxkUnVsZU1hcHBpbmcgfSBmcm9tICcuLi8uLi90eXBlcy9maWVsZC1ydWxlLW1hcHBpbmcnO1xuaW1wb3J0IHsgU2NoZW1hIH0gZnJvbSAnLi4vLi4vdHlwZXMvc2NoZW1hcy9wdXJjaGFzZS1vcmRlci5zY2hlbWEnO1xuaW1wb3J0IHsgU3RyYXRlZ2llcyB9IGZyb20gJy4uLy4uL3R5cGVzL3N0cmF0ZWdpZXMnO1xuaW1wb3J0IHsgVGF4QW1vdW50UmVxdWlyZWRWYWxpZGF0aW9uUnVsZSB9IGZyb20gJy4uL3J1bGVzL3JlcXVpcmVkL3RheC1hbW91bnQtcmVxdWlyZWQtdmFsaWRhdGlvbi1ydWxlJztcbmltcG9ydCB7IFRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlIH0gZnJvbSAnLi4vcnVsZXMvcmVxdWlyZWQvdGF4LXJhdGUtcmVxdWlyZWQtdmFsaWRhdGlvbi1ydWxlJztcbmltcG9ydCB7IFRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZSB9IGZyb20gJy4uL3J1bGVzL3JlcXVpcmVkL3RheGFibGUtYmFzZS1yZXF1aXJlZC12YWxpZGF0aW9uLXJ1bGUnO1xuXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIFB1cmNoYXNlT3JkZXJWYWxpZGF0aW9uUnVsZXNSZWdpc3RyeSB7XG4gICAgcHJpdmF0ZSByZWFkb25seSBzdHJhdGVnaWVzOiBTdHJhdGVnaWVzPFNjaGVtYT4gPSB7XG4gICAgICAgICdQdXJjaGFzZSBPcmRlcic6IHtcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uQ0JTXTogW1xuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhhYmxlQmFzZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4UmF0ZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4QW1vdW50UmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5DQlNfQV9BUFJPUFJJQVJdOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhBbW91bnRSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBbRW51bVRpcG9UcmlidXRvLkNCU19ESUZFUklET106IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uQ0JTX0NSRURJVE9fUFJFU1VNSURPXTogW1xuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhhYmxlQmFzZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4UmF0ZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uQ0JTX1RSSUJVVEFDQU9fUkVHVUxBUl06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uQ0JTX0dPVkVSTkFNRU5UQUxdOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5DQlNfQUxDX1pGTV06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19FU1RBRFVBTF06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG5cbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLlZhbG9yLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4QW1vdW50UmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfRVNUQURVQUxfQV9BUFJPUFJJQVJdOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uVmFsb3IsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhBbW91bnRSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19FU1RBRFVBTF9ESUZFUklET106IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX0VTVEFEVUFMX1RSSUJVVEFDQU9fUkVHVUxBUl06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBbRW51bVRpcG9UcmlidXRvLklCU19FU1RBRFVBTF9HT1ZFUk5BTUVOVEFMXTogW1xuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQmFzZUNhbGN1bG8sXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhhYmxlQmFzZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkFsaXF1b3RhLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4UmF0ZVJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX01VTklDSVBBTF06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX01VTklDSVBBTF9BX0FQUk9QUklBUl06IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX01VTklDSVBBTF9ESUZFUklET106IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIFtFbnVtVGlwb1RyaWJ1dG8uSUJTX01VTklDSVBBTF9UUklCVVRBQ0FPX1JFR1VMQVJdOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfTVVOSUNJUEFMX0dPVkVSTkFNRU5UQUxdOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JQlNfQ1JFRElUT19QUkVTVU1JRE9dOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5CYXNlQ2FsY3VsbyxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZmllbGQ6IEVudW1DYW1wb1RyaWJ1dG8uQWxpcXVvdGEsXG4gICAgICAgICAgICAgICAgICAgIHJ1bGVzOiBbdGhpcy50YXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZV1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdLFxuICAgICAgICAgICAgW0VudW1UaXBvVHJpYnV0by5JU106IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIGZpZWxkOiBFbnVtQ2FtcG9UcmlidXRvLkJhc2VDYWxjdWxvLFxuICAgICAgICAgICAgICAgICAgICBydWxlczogW3RoaXMudGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5BbGlxdW90YSxcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBmaWVsZDogRW51bUNhbXBvVHJpYnV0by5WYWxvcixcbiAgICAgICAgICAgICAgICAgICAgcnVsZXM6IFt0aGlzLnRheEFtb3VudFJlcXVpcmVkVmFsaWRhdGlvblJ1bGVdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgXVxuICAgICAgICB9XG4gICAgfTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHRheGFibGVCYXNlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZTogVGF4YWJsZUJhc2VSZXF1aXJlZFZhbGlkYXRpb25SdWxlLFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHRheFJhdGVSZXF1aXJlZFZhbGlkYXRpb25SdWxlOiBUYXhSYXRlUmVxdWlyZWRWYWxpZGF0aW9uUnVsZSxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSB0YXhBbW91bnRSZXF1aXJlZFZhbGlkYXRpb25SdWxlOiBUYXhBbW91bnRSZXF1aXJlZFZhbGlkYXRpb25SdWxlXG4gICAgKSB7fVxuXG4gICAgZ2V0KHR5cGU6IFB1cmNoYXNlT3JkZXJUeXBlLCB0YXhUeXBlOiBFbnVtVGlwb1RyaWJ1dG8pOiBGaWVsZFJ1bGVNYXBwaW5nW10ge1xuICAgICAgICByZXR1cm4gdGhpcy5zdHJhdGVnaWVzW3R5cGVdPy5bdGF4VHlwZV0gPz8gW107XG4gICAgfVxufVxuIl19
|