@bizdoc/core 1.17.1 → 1.17.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/assets/themes/brown.min.css +1 -1
  2. package/assets/themes/dark.min.css +1 -1
  3. package/assets/themes/deep-purple-light-blue.min.css +1 -1
  4. package/assets/themes/deep-purple-teal.min.css +1 -1
  5. package/assets/themes/default.min.css +1 -1
  6. package/assets/themes/green.min.css +1 -1
  7. package/assets/themes/indigo.min.css +1 -1
  8. package/esm2020/lib/admin/architecture/cube-axes-filter.component.mjs +3 -3
  9. package/esm2020/lib/admin/architecture/declarations.mjs +11 -4
  10. package/esm2020/lib/admin/architecture/designer-element.component.mjs +3 -3
  11. package/esm2020/lib/admin/architecture/designer-privileges.component.mjs +12 -8
  12. package/esm2020/lib/admin/architecture/designer.base.mjs +2 -1
  13. package/esm2020/lib/admin/architecture/designer.component.mjs +12 -6
  14. package/esm2020/lib/admin/architecture/elements/action.component.mjs +2 -2
  15. package/esm2020/lib/admin/architecture/elements/analysis-view.component.mjs +5 -4
  16. package/esm2020/lib/admin/architecture/elements/analysis-widget.component.mjs +5 -4
  17. package/esm2020/lib/admin/architecture/elements/attribute.component.mjs +5 -4
  18. package/esm2020/lib/admin/architecture/elements/control.component.mjs +7 -5
  19. package/esm2020/lib/admin/architecture/elements/cube-index-utility.component.mjs +5 -4
  20. package/esm2020/lib/admin/architecture/elements/cube-view.component.mjs +5 -4
  21. package/esm2020/lib/admin/architecture/elements/cube.component.mjs +3 -3
  22. package/esm2020/lib/admin/architecture/elements/documents-report.component.mjs +5 -4
  23. package/esm2020/lib/admin/architecture/elements/documents-widget.component.mjs +5 -4
  24. package/esm2020/lib/admin/architecture/elements/explore-view.component.mjs +5 -4
  25. package/esm2020/lib/admin/architecture/elements/feedback-widget.component.mjs +7 -6
  26. package/esm2020/lib/admin/architecture/elements/folder.component.mjs +5 -4
  27. package/esm2020/lib/admin/architecture/elements/form-invite.dialog.mjs +44 -33
  28. package/esm2020/lib/admin/architecture/elements/form.component.mjs +10 -8
  29. package/esm2020/lib/admin/architecture/elements/matrix-view.component.mjs +5 -4
  30. package/esm2020/lib/admin/architecture/elements/parallel-view.component.mjs +5 -4
  31. package/esm2020/lib/admin/architecture/elements/performance-report.component.mjs +5 -4
  32. package/esm2020/lib/admin/architecture/elements/performance-widget.component.mjs +5 -4
  33. package/esm2020/lib/admin/architecture/elements/pivot-view.component.mjs +5 -4
  34. package/esm2020/lib/admin/architecture/elements/report.component.mjs +5 -4
  35. package/esm2020/lib/admin/architecture/elements/rule.component.mjs +1 -1
  36. package/esm2020/lib/admin/architecture/elements/state.component.mjs +2 -2
  37. package/esm2020/lib/admin/architecture/elements/sum-view.component.mjs +5 -4
  38. package/esm2020/lib/admin/architecture/elements/tasks-report.component.mjs +5 -4
  39. package/esm2020/lib/admin/architecture/elements/usage-report.component.mjs +5 -4
  40. package/esm2020/lib/admin/architecture/elements/widget.component.mjs +5 -4
  41. package/esm2020/lib/admin/core/localized-string.component.mjs +1 -1
  42. package/esm2020/lib/admin/form/designer/box-designer.component.mjs +4 -5
  43. package/esm2020/lib/admin/form/designer/properties.component.mjs +3 -2
  44. package/esm2020/lib/admin/form/designer/section.component.mjs +3 -3
  45. package/esm2020/lib/admin/patterns/patterns.component.mjs +3 -3
  46. package/esm2020/lib/admin/system.service.mjs +1 -1
  47. package/esm2020/lib/compose/box/box.component.mjs +5 -5
  48. package/esm2020/lib/core/fields/autocomplete.field.mjs +4 -4
  49. package/esm2020/lib/core/fields/checklist.designer.mjs +11 -11
  50. package/esm2020/lib/core/fields/checklist.field.mjs +17 -24
  51. package/esm2020/lib/core/fields/localized-string.field.mjs +21 -0
  52. package/esm2020/lib/core/fields/options.base.mjs +41 -0
  53. package/esm2020/lib/core/fields/options.component.mjs +3 -3
  54. package/esm2020/lib/core/fields/radio-button.designer.mjs +13 -10
  55. package/esm2020/lib/core/fields/radio-button.field.mjs +16 -23
  56. package/esm2020/lib/core/fields/select.designer.mjs +16 -15
  57. package/esm2020/lib/core/fields/select.field.mjs +18 -31
  58. package/esm2020/lib/core/fields/signature.designer.mjs +3 -1
  59. package/esm2020/lib/core/fields/signature.field.mjs +3 -3
  60. package/esm2020/lib/core/fields/yesno.designer.mjs +6 -5
  61. package/esm2020/lib/core/layout.component.mjs +5 -1
  62. package/esm2020/lib/core/models.mjs +2 -1
  63. package/esm2020/lib/core/slots/slots.component.mjs +3 -3
  64. package/esm2020/lib/core/translations.mjs +28 -108
  65. package/esm2020/lib/cube/filter/filter.component.mjs +3 -3
  66. package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +36 -13
  67. package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +1 -1
  68. package/esm2020/lib/notifications/types/commented.notification.mjs +1 -1
  69. package/esm2020/lib/notifications/types/escalated.notification.mjs +1 -1
  70. package/esm2020/lib/notifications/types/invite.notification.mjs +11 -3
  71. package/esm2020/lib/notifications/types/liked.notification.mjs +1 -1
  72. package/esm2020/lib/notifications/types/long-running-task.notification.mjs +3 -3
  73. package/esm2020/lib/notifications/types/nudge.notification.mjs +1 -1
  74. package/esm2020/lib/notifications/types/state-changed.notification.mjs +2 -2
  75. package/esm2020/lib/notifications/types/tagged.notification.mjs +2 -2
  76. package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +1 -1
  77. package/esm2020/lib/reports/arguments-component.mjs +1 -1
  78. package/esm2020/lib/reports/report-ref.mjs +4 -2
  79. package/esm2020/lib/reports/report-viewer.component.mjs +4 -2
  80. package/esm2020/lib/system.module.mjs +110 -9
  81. package/fesm2015/bizdoc-core.mjs +1133 -1016
  82. package/fesm2015/bizdoc-core.mjs.map +1 -1
  83. package/fesm2020/bizdoc-core.mjs +1127 -1010
  84. package/fesm2020/bizdoc-core.mjs.map +1 -1
  85. package/lib/admin/architecture/declarations.d.ts +4 -3
  86. package/lib/admin/architecture/designer.component.d.ts +1 -0
  87. package/lib/admin/architecture/elements/control.component.d.ts +1 -0
  88. package/lib/admin/architecture/elements/cube.component.d.ts +1 -1
  89. package/lib/admin/architecture/elements/form-invite.dialog.d.ts +6 -5
  90. package/lib/admin/architecture/elements/rule.component.d.ts +1 -2
  91. package/lib/admin/core/localized-string.component.d.ts +2 -2
  92. package/lib/admin/system.service.d.ts +7 -1
  93. package/lib/core/fields/checklist.designer.d.ts +7 -10
  94. package/lib/core/fields/checklist.field.d.ts +2 -13
  95. package/lib/core/fields/localized-string.field.d.ts +16 -0
  96. package/lib/core/fields/options.base.d.ts +28 -0
  97. package/lib/core/fields/radio-button.designer.d.ts +6 -6
  98. package/lib/core/fields/radio-button.field.d.ts +2 -13
  99. package/lib/core/fields/select.designer.d.ts +5 -6
  100. package/lib/core/fields/select.field.d.ts +2 -16
  101. package/lib/core/models.d.ts +4 -0
  102. package/lib/core/translations.d.ts +19 -99
  103. package/lib/dashboard/cube/cube-analysis.widget.d.ts +2 -1
  104. package/lib/notifications/types/commented.notification.d.ts +0 -1
  105. package/lib/notifications/types/escalated.notification.d.ts +0 -1
  106. package/lib/notifications/types/invite.notification.d.ts +4 -5
  107. package/lib/notifications/types/liked.notification.d.ts +0 -1
  108. package/lib/notifications/types/long-running-task.notification.d.ts +1 -1
  109. package/lib/notifications/types/nudge.notification.d.ts +0 -1
  110. package/lib/notifications/types/state-changed.notification.d.ts +0 -2
  111. package/lib/notifications/types/tagged.notification.d.ts +0 -2
  112. package/lib/notifications/types/upcoming-event.notification.d.ts +0 -1
  113. package/lib/reports/report-ref.d.ts +3 -1
  114. package/lib/system.module.d.ts +35 -34
  115. package/package.json +1 -1
@@ -80,4 +80,4 @@
80
80
  /*! splitbutton layout */
81
81
  .e-split-btn-wrapper{display:inline-flex;white-space:nowrap;width:min-content}.e-split-btn-wrapper .e-split-btn{border-bottom-right-radius:0;border-top-right-radius:0;text-transform:none;z-index:1;padding-left:10px;padding-right:10px}.e-split-btn-wrapper .e-split-btn:focus{outline-offset:0}.e-split-btn-wrapper .e-split-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-split-btn:focus{box-shadow:none}.e-split-btn-wrapper .e-split-btn:active{box-shadow:none;z-index:0}.e-split-btn-wrapper .e-split-btn.e-top-icon-btn{padding-bottom:10px;padding-top:10px}.e-split-btn-wrapper .e-split-btn .e-btn-icon{font-size:14px;margin-left:0;padding-right:8px;width:auto}.e-split-btn-wrapper .e-split-btn .e-icon-top{padding-bottom:4px;padding-right:0}.e-split-btn-wrapper .e-split-btn.e-icon-btn{padding-left:6px;padding-right:6px}.e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon{padding-right:0}.e-split-btn-wrapper .e-dropdown-btn{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:0;padding-left:4px;padding-right:4px}.e-split-btn-wrapper .e-dropdown-btn:focus,.e-split-btn-wrapper .e-dropdown-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-dropdown-btn:active{box-shadow:none;z-index:0}.e-split-btn-wrapper .e-dropdown-btn:disabled:active,.e-split-btn-wrapper .e-dropdown-btn:disabled:focus,.e-split-btn-wrapper .e-dropdown-btn:disabled:hover{z-index:0}.e-split-btn-wrapper .e-dropdown-btn:focus{outline-offset:0}.e-split-btn-wrapper .e-btn,.e-split-btn-wrapper .e-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-btn:focus{box-shadow:none}.e-split-btn-wrapper .e-btn:active{box-shadow:none}.e-split-btn-wrapper .e-btn:disabled{box-shadow:none}.e-split-btn-wrapper.e-rtl .e-split-btn{border-bottom-left-radius:0;border-bottom-right-radius:2px;border-top-left-radius:0;border-top-right-radius:2px;margin-left:0;padding-left:4px;padding-right:10px}.e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon{margin-right:0;padding-left:8px;padding-right:0}.e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon{padding-left:0}.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn{padding-left:6px;padding-right:6px}.e-split-btn-wrapper.e-rtl .e-dropdown-btn{border-bottom-left-radius:2px;border-bottom-right-radius:0;border-top-left-radius:2px;border-top-right-radius:0;margin-left:0}.e-split-btn-wrapper.e-vertical{display:inline-block}.e-split-btn-wrapper.e-vertical .e-dropdown-btn,.e-split-btn-wrapper.e-vertical .e-split-btn{display:block;width:100%}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-left-radius:0;border-top-right-radius:2px;line-height:1;padding-bottom:4px;padding-right:10px}.e-split-btn-wrapper.e-vertical .e-split-btn .e-icon-top{padding-bottom:4px}.e-split-btn-wrapper.e-vertical .e-dropdown-btn{border-bottom-left-radius:2px;border-top-right-radius:0;line-height:.417em;margin-left:0;margin-top:0;padding-bottom:4px;padding-top:4px}.e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom{padding-top:0}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-bottom-right-radius:0;border-top-left-radius:2px;margin-left:0}.e-split-btn-wrapper.e-vertical.e-rtl .e-dropdown-btn{border-bottom-right-radius:2px;border-top-left-radius:0}.e-bigger .e-split-btn-wrapper .e-split-btn,.e-bigger.e-split-btn-wrapper .e-split-btn{padding-left:12px;padding-right:6px}.e-bigger .e-split-btn-wrapper .e-split-btn.e-top-icon-btn,.e-bigger.e-split-btn-wrapper .e-split-btn.e-top-icon-btn{padding-bottom:12px;padding-top:12px}.e-bigger .e-split-btn-wrapper .e-split-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper .e-split-btn .e-btn-icon{font-size:16px;margin-left:0;padding-right:10px;width:auto}.e-bigger .e-split-btn-wrapper .e-split-btn .e-icon-top,.e-bigger.e-split-btn-wrapper .e-split-btn .e-icon-top{padding-bottom:6px;padding-right:0}.e-bigger .e-split-btn-wrapper .e-split-btn.e-icon-btn,.e-bigger.e-split-btn-wrapper .e-split-btn.e-icon-btn{padding-left:9px;padding-right:9px}.e-bigger .e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon{padding-right:0}.e-bigger .e-split-btn-wrapper .e-dropdown-btn,.e-bigger.e-split-btn-wrapper .e-dropdown-btn{padding-left:4px;padding-right:4px}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn{padding-left:6px;padding-right:12px}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon{padding-left:10px;padding-right:0}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon{padding-left:0}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn{padding-left:9px;padding-right:9px}.e-bigger .e-split-btn-wrapper.e-vertical .e-split-btn,.e-bigger.e-split-btn-wrapper.e-vertical .e-split-btn{padding-bottom:6px;padding-right:12px}.e-bigger .e-split-btn-wrapper.e-vertical .e-dropdown-btn,.e-bigger.e-split-btn-wrapper.e-vertical .e-dropdown-btn{padding-bottom:4px;padding-top:4px}.e-bigger .e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom,.e-bigger.e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom{padding-top:0}
82
82
  /*! splitbutton theme */
83
- @keyframes loading{0%{background-position:0 0}to{background-position:100em 0}}@-webkit-keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.e-split-btn-wrapper .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:focus{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:active{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:focus{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:active{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:disabled{border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active){border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active):disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:focus{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:active{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:disabled{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled{border-bottom-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:active{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn{border-left-color:transparent}.e-bigger .e-listview .e-list-item,.e-listview.e-bigger .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-bigger .e-listview:not(.e-list-template) .e-list-item,.e-listview.e-bigger:not(.e-list-template) .e-list-item{height:48px;line-height:45px;position:relative}.e-bigger .e-listview .e-text-content,.e-listview,.e-listview.e-bigger .e-text-content{font-size:15px}.e-bigger .e-listview .e-list-group-item,.e-listview.e-bigger .e-list-group-item{height:48px;line-height:45px}.e-bigger .e-listview .e-list-header,.e-listview.e-bigger .e-list-header{align-items:center;display:flex;font-weight:700;height:64px}.e-bigger .e-listview .e-list-header .e-headertemplate-text.nested-header,.e-bigger .e-listview .e-list-header .e-text.header,.e-listview.e-bigger .e-list-header .e-headertemplate-text.nested-header,.e-listview.e-bigger .e-list-header .e-text.header{display:none}.e-bigger .e-listview .e-list-header .e-text,.e-listview.e-bigger .e-list-header .e-text{font-size:20px}.e-bigger .e-listview .e-text-content.e-checkbox .e-list-text,.e-listview.e-bigger .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview{-webkit-overflow-scrolling:touch;border:0 solid;border-radius:0;display:block;overflow:auto;position:relative;width:100%;border-color:#000;font-family:Roboto,monospace,sans-serif}.e-listview:not(.e-list-template) .e-list-item{height:36px;line-height:36px;padding:0 16px;position:relative}.e-listview .e-list-item{cursor:pointer}.e-listview .e-list-parent{margin:0;padding:0}.e-listview .e-list-header .e-headertemplate-text.nested-header,.e-listview .e-list-header .e-text.header{display:none}.e-listview .e-icon-back{margin-top:2px}.e-listview .e-list-header{align-items:center;display:flex;font-weight:700;height:48px;border-bottom:1px solid;padding:0 16px}.e-listview .e-has-header>.e-view{top:45px}.e-listview .e-back-button{cursor:pointer;padding-right:30px}.e-listview .e-list-group-item:first-child{border:0;border-bottom:0 solid transparent}.e-listview .e-list-group-item{border-bottom:0 solid transparent;border-top:1px solid;height:36px;line-height:36px;font-weight:600;padding:0 16px}.e-listview .e-list-group-item .e-list-text{cursor:default}.e-listview .e-icon-collapsible{cursor:pointer;font-size:12px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.e-listview .e-text-content{height:100%;position:relative;vertical-align:middle}.e-listview .e-list-text,.e-listview .e-text-content *{display:inline-block;vertical-align:middle}.e-listview .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview .e-text-content.e-checkbox.e-checkbox-left .e-list-icon+.e-list-text{width:calc(100% - 90px)}.e-listview .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 80px)}.e-listview .e-list-item.e-checklist.e-has-child .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 92px)}.e-listview .e-checkbox .e-checkbox-left{margin:-2px 10px 0 0}.e-listview .e-checkbox .e-checkbox-right{margin:-2px 0 0 10px}.e-listview .e-list-text{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.e-listview .e-icon-wrapper .e-list-text,.e-listview .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,.e-listview .e-list-icon+.e-list-text{width:calc(100% - 60px)}.e-listview .e-list-icon{margin-right:16px;height:30px;width:30px}.e-listview .e-content{overflow:hidden;position:relative}.e-listview .e-list-header.e-list-navigation .e-text,.e-listview.e-rtl .e-list-header .e-text{cursor:pointer}.e-listview .e-list-header .e-text{cursor:default;text-indent:0}.e-listview .e-text .e-headertext{display:inline-block;line-height:inherit}.e-listview.e-rtl{direction:rtl}.e-listview.e-rtl .e-list-icon{margin-left:16px;margin-right:0}.e-listview.e-rtl .e-icon-collapsible{left:0;right:initial;top:50%;transform:translateY(-50%) rotate(180deg)}.e-listview.e-rtl .e-back-button{transform:rotate(180deg)}.e-listview.e-rtl .e-icon-back{margin-top:-2px}.e-listview.e-rtl .e-checkbox .e-checkbox-left{margin:-2px 0 0 10px}.e-listview.e-rtl .e-checkbox .e-checkbox-right{margin:-2px 10px 0 0}.e-listview .e-list-header{background-color:#fff;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.87);font-size:20px}.e-listview .e-icons{color:rgba(0,0,0,.54)}.e-listview .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-listview .e-list-item.e-hover,.e-listview .e-list-item.e-hover.e-active.e-checklist{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-active,.e-listview .e-list-item.e-focused,.e-listview .e-list-item.e-focused.e-active.e-checklist{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.e-listview .e-list-item,.e-listview .e-list-item.e-active.e-checklist{background-color:#fff;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-focused .e-checkbox-wrapper .e-frame.e-check,.e-listview .e-list-item.e-focused .e-css.e-checkbox-wrapper .e-frame.e-check{background-color:#ffd740;border-color:transparent;color:#fff}.e-listview .e-list-group-item{background-color:#fafafa;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.54);font-size:15px}.e-listview.e-list-template .e-list-wrapper{height:inherit;position:relative}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line){padding:.2667em 1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line{padding:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-item-header{color:rgba(0,0,0,.87);display:block;font-size:15px;font-weight:500;margin:0;overflow:hidden;padding:.115em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content{color:rgba(0,0,0,.54);display:block;font-size:13px;margin:0;padding:.115em 0;word-wrap:break-word}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content:not(.e-text-overflow){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{height:2.6667em;left:1.0667em;position:absolute;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{height:2.6667em;position:absolute;right:1.0667em;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-badge .e-badge{font-size:12px;height:1.6666em;line-height:1.8666em;padding:0;position:absolute;right:1.33em;top:50%;transform:translateY(-50%);width:2.5em}.e-listview.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.8em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:1.0666em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line) .e-list-content{display:block;margin:0;overflow:hidden;padding:.72em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-item.e-active .e-list-content,.e-listview.e-list-template .e-list-item.e-active .e-list-item-header,.e-listview.e-list-template .e-list-item.e-hover .e-list-content,.e-listview.e-list-template .e-list-item.e-hover .e-list-item-header{color:rgba(0,0,0,.87)}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{left:inherit;right:1.0667em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{left:1.0667em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge .e-badge{left:1.33em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.1333em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:4.1333em;padding-right:1.0666em}.e-pivotview .e-expand::before{content:""}.e-pivotview .e-collapse::before{content:""}.e-pivotview.e-rtl .e-expand::before{content:""}.e-pivotview .e-sort::before{content:""}.e-pivotview .e-pv-filter::before{content:""}.e-pivotview .e-pv-filtered::before{color:#ffd740;content:""}.e-pivotview .e-remove::before{content:""}.e-pivotview .e-selected-option-icon::before{content:""}.e-pivotview .e-clear-filter-icon::before{content:""}.e-pivotview .e-dropdown-icon::before{content:""}.e-pivotview .e-export::before{content:""}.e-pivotview .e-new-report::before{content:""}.e-pivotview .e-save-report::before{content:""}.e-pivotview .e-saveas-report::before{content:""}.e-pivotview .e-rename-report::before{content:""}.e-pivotview .e-remove-report::before{content:""}.e-pivotview .e-sub-total::before{content:""}.e-pivotview .e-grand-total::before{content:""}.e-pivotview .e-toolbar-fieldlist::before{content:""}.e-pivotview .e-toolbar-grid::before{content:""}.e-pivotview .e-toolbar-chart::before{content:""}.e-pivotview .e-toolbar-formatting::before{content:""}.e-pivotview .e-pivot-button .e-edit::before{content:""}.e-pivotview .e-sort-ascend-icon::before{content:""}.e-pivotview .e-sort-descend-icon::before{content:""}.e-pivotview-pdf-export::before{content:""}.e-pivotview-excel-export::before{content:""}.e-pivotview-csv-export::before{content:""}.e-pivotview-png-export::before{content:""}.e-pivotview-jpeg-export::before{content:""}.e-pivotview-svg-export::before{content:""}.e-mdx::before{content:""}.e-level-options .e-selected-level-icon::before,.e-pivotview-select-icon::before{content:""}.e-pivotview-export::before{content:""}.e-pivotview-grid::before{content:""}.e-pivotview-expand::before{content:""}.e-pivotview-collapse::before{content:""}.e-pivot-format-menu::before{content:""}.e-pivot-number-format-menu::before{content:""}.e-pivot-conditional-format-menu::before{content:""}.e-pivot-format-toolbar::before{content:""}.e-pivotview-group::before{content:""}.e-pivotview-ungroup::before{content:""}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before,.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before{content:""}.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-bigger .e-splitter .e-split-bar .e-resize-handler::before,.e-bigger.e-splitter .e-split-bar .e-resize-handler::before{font-size:16px}.cube-table{background:0 0!important}.cube-table .figure{text-align:right;direction:ltr;border-left-width:2px;border-left-style:dotted;border-left-color:transparent}.cube-table thead{background:#fff}.cube-table thead th{text-align:right;border-bottom:1px solid rgba(0,0,0,.12)}.cube-table tfoot td,.cube-table tfoot th{font-weight:500;border-top:1px solid rgba(0,0,0,.12)}.cube-table .mat-row:hover{background-color:unset}.cube-table .figure,.cube-table tbody th{border-bottom-width:2px;border-bottom-style:double;border-bottom-color:transparent}.cube-table .cube-index td,.cube-table .cube-index th{border-bottom-width:2px;border-bottom-color:rgba(0,0,0,.12);border-bottom-style:dotted}.cube-table .cell-x{border-left-color:#ffca28!important}.cube-table .cell-y{border-bottom-style:solid!important;border-bottom-color:#ffca28!important}[dir=rtl] .figure{border-right-width:2px;border-left-width:0;border-right-style:dotted;border-right-color:transparent}[dir=rtl] .cell-x{border-left-color:unset;border-right-color:#ffca28}.avatar{margin:1px;font-size:small;width:30px;height:30px;line-height:30px;color:#fff;border:4px solid;display:inline-block;text-align:center}.avatar.interactive{cursor:pointer}.avatar.dense{width:22px;height:22px;line-height:22px}.avatar .initials{vertical-align:middle}.avatar .mode{font-size:11px;position:relative;top:-15px;left:13px;color:#fff;border:2px solid #fff;border-radius:9px;padding:2px}[dir=rtl] .avatar .mode{left:unset;right:13px}.form-container{color:rgba(0,0,0,.87)}.form-header{padding:4px}.compose-note{padding:5px;margin:5px}.compose-note .mat-icon{vertical-align:middle;padding:0 4px}.compose-note span{vertical-align:text-top}[dir=rtl] .compose-note{border-left:none}.file-upload{cursor:default}.file-dropable.drag{opacity:.5;overflow:hidden;margin:8px;border-style:dashed;border-color:#777;border-width:5px;background-color:#f5f5f5;z-index:2;top:0;left:0;right:0;bottom:0}input.search-box{border:solid 1px #e0e0e0;border-radius:2px;padding:2px 5px;height:28px;width:320px;font-weight:400;background:#eee;font-size:medium}input.search-box:hover{background:#e0e0e0}input.search-box::-webkit-input-placeholder{font-weight:100}input.search-box::placeholder{font-weight:100}input.search-box~.mat-icon{position:relative;left:-30px;color:#bdbdbd}[dir=rtl] input.search-box~.mat-icon{right:-30px;left:auto}.small-chip{border-radius:5px;font-size:11px;padding:3px 5px;line-height:18px;margin:2px}.selecteded-row .mat-cell:last-child{border-right:4px solid #ffc107;padding-right:20px}[dir=rtl] .selecteded-row .mat-cell:last-child{border-right:none;border-left:4px solid #ffc107;padding-left:20px;padding-right:24px}.element-row{border-bottom-width:0}.data-table{width:100%}.data-table .odd-row{background-color:#fafafa}.panes .panes-title{color:rgba(0,0,0,.87)}.panes .backdrop{position:absolute;z-index:200;width:100%;height:100%;display:block;background:#424242;opacity:.8}.panes .pane-content.active{border-left-color:#4caf50;box-shadow:rgba(0,0,0,.09)0 3px 12px}.panes .pane-content:not(.active) .mat-toolbar{background-color:transparent}.pane{height:100%;display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;overflow-x:hidden}.pane .mat-toolbar>*{opacity:.1}.pane.active .mat-toolbar>*,.pane:hover .mat-toolbar>*,.tabs .tab:hover .nav-toolbar{opacity:1}.tabs{color:rgba(0,0,0,.87);background:#fff}.tabs .tabs-title{height:60px;padding:0 8px}.tabs .mat-tab-link-container{overflow-x:auto;border-bottom:1px solid #d3d3d3;-ms-overflow-style:none;scrollbar-width:none}.tabs .mat-tab-link-container::-webkit-scrollbar{display:none}.tabs .tab:not(:hover) .nav-toolbar{opacity:.1;background-color:transparent}.tabs .tab .pane{-webkit-flex-grow:1;flex-grow:1}[dir=rtl] .panes .pane-content{border-left:none;border-right-width:1px;border-right-style:double;border-right-color:transparent}[dir=rtl] .panes .pane-content.active{border-right-color:#4caf50}[dir=rtl] .panes .scroll-arrow:last-child{right:auto!important;left:0!important}[dir=rtl] .panes .breadcrumbs{transform:rotateX(180deg);display:inline-block}.e-signature{border-radius:3px 3px;border-width:1px;border-style:dashed;border-color:#bdbdbd}.popup-panel>*{flex-direction:inherit;display:inherit}.popup-panel .popup-content{display:inline-table;color:rgba(0,0,0,.87);min-width:52px;background:#fff;border-radius:2px;border:2px solid rgba(0,0,0,.12);box-shadow:0 0 10px 2px rgba(0,0,0,.1)}.popup-panel .popup-content>*{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-ms-flex:1 auto 1;-webkit-flex:1 auto 1}.popup-panel .popup-content .mat-nav-list,.popup-panel .popup-content form,.popup-panel .popup-content p{z-index:1}.popup-panel .tooltip-container{display:none}.popup-panel .tooltip-container .tooltip{display:block;position:relative;width:0;height:0;border:8px solid transparent}.popup-panel .tooltip-container .tooltip:after{content:" ";position:absolute;width:0;height:0;border:8px solid transparent}.popup-panel.center .tooltip-container,.popup-panel.end .tooltip-container,.popup-panel.start .tooltip-container{display:flex}.popup-panel.center .tooltip-container{align-self:center;align-items:center}.popup-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.popup-panel.after.start .tooltip,.popup-panel.before.start .tooltip{margin-top:4px}.popup-panel.after.end .tooltip,.popup-panel.before.end .tooltip{margin-bottom:19px}.popup-panel.above,.popup-panel.below{margin-left:0;margin-right:0}.popup-panel.above.start .tooltip,.popup-panel.below.start .tooltip{margin-left:19px}.popup-panel.above.end .tooltip,.popup-panel.below.end .tooltip{margin-right:6px}.popup-panel.before{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.popup-panel.before .tooltip{border-left-color:rgba(0,0,0,.12)}.popup-panel.before .tooltip:after{border-left-color:#fff;left:-11px;top:-8px}.popup-panel.after{margin-left:0;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.popup-panel.after .tooltip{border-right-color:rgba(0,0,0,.12)}.popup-panel.after .tooltip:after{border-right-color:#fff;left:-6px;top:-8px}.popup-panel.above{margin-top:0;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.popup-panel.above .tooltip{border-top-color:rgba(0,0,0,.12)}.popup-panel.above .tooltip:after{left:-8px;top:-11px;border-top-color:#fff}.popup-panel.below{margin-bottom:0;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.popup-panel.below .tooltip{border-bottom-color:rgba(0,0,0,.12)}.popup-panel.below .tooltip:after{left:-8px;top:-6px;border-bottom-color:#fff}[dir=rtl] .popup-panel.above.start .tooltip,[dir=rtl] .popup-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .popup-panel.above.end .tooltip,[dir=rtl] .popup-panel.below.end .tooltip{margin-left:19px}[dir=rtl] .popup-panel.before{margin-right:-14px}[dir=rtl] .popup-panel.before .tooltip{border-left-color:transparent!important;border-right-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.before .tooltip:after{left:-6px;border-left-color:transparent!important;border-right-color:#fff}[dir=rtl] .popup-panel.after{margin-left:unset;margin-right:0}[dir=rtl] .popup-panel.after .tooltip{border-right-color:transparent!important;border-left-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.after .tooltip:after{left:-11px;border-right-color:transparent!important;border-left-color:#fff}.tooltip-panel .popup-content{min-width:auto!important;background-color:rgba(97,97,97,.9);color:#fff;border:0;padding:4px 8px;cursor:default;font-size:small;display:inline-block}.tooltip-panel .tooltip-container .tooltip:after{display:none}.tooltip-panel.before .tooltip,.tooltip-panel.before .tooltip:after{border-left-color:rgba(97,97,97,.9)}.tooltip-panel.after .tooltip,.tooltip-panel.after .tooltip:after{border-right-color:rgba(97,97,97,.9)}.tooltip-panel.above .tooltip,.tooltip-panel.above .tooltip:after{border-top-color:rgba(97,97,97,.9)}.tooltip-panel.below .tooltip,.tooltip-panel.below .tooltip:after{border-bottom-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.before .tooltip,[dir=rtl] .tooltip-panel.before .tooltip:after{border-left-color:transparent!important;border-right-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.after .tooltip,[dir=rtl] .tooltip-panel.after .tooltip:after{border-right-color:transparent!important;border-left-color:rgba(97,97,97,.9)}.chat-conversation .chat-item{position:relative}.chat-conversation .chat-item img{max-width:310px;cursor:pointer}.chat-conversation .chat-item .chat-text{padding:9px;overflow-wrap:break-word}.chat-conversation .chat-item .chat-time,.chat-typing{font-size:small}.chat-conversation .chat-item .chat-info{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.chat-conversation .chat-watermark{place-content:center flex-end;text-align:end;width:100%}.chat-conversation .chat-watermark .mat-icon{font-size:21px;width:21px;height:21px}.chat-typing{margin-left:2px;margin-right:2px;text-transform:lowercase}.chat-item:not(.you) .chat-text{color:rgba(0,0,0,.87);background-color:#fafafa;border-radius:5px 5px;margin:5px 0 0}.chat-item:not(.you) .chat-text:after{content:"";position:absolute;bottom:0;left:50%;width:0;height:0;border:15px solid transparent;border-top-color:#fafafa;border-bottom:0;border-left:0;margin-bottom:1px}[dir=rtl] .chat-item:not(.you) .chat-text:after{left:auto;right:50%;border-right:0;border-left:15px solid transparent}.compare.added,tr.compare.added td{color:#2e7d32}.compare.added .label{border-color:#2e7d32}.compare.added .label>span{background-color:#e8f5e9}.compare.added .label>span:before{border-top-color:#2e7d32}.compare.modified{color:#ff8f00}.compare.modified .original{font-variant-caps:normal;font-weight:100;padding-left:2px}.compare.modified .label{border-color:#ff8f00}.compare.modified .label>span{background-color:#fff8e1}.compare.modified .label>span:before{border-top-color:#ff8f00}.compare.removed,tr.compare.removed td{color:#c62828}.compare.removed .label{border-color:#c62828}.compare.removed .label>span{text-decoration:none;background-color:#ffebee}.compare.removed .label>span:before{border-top-color:#c62828}.compare .label{border-top:1px dotted;display:flex;flex-direction:row-reverse;font-size:small}.compare .label>span{font-variant-caps:all-small-caps;padding-right:4px;padding-left:4px;position:relative}.compare .label>span:after,.compare .label>span:before{content:"";position:absolute;width:0;height:0}.compare .label>span:before{right:0;border:8px solid transparent;border-right:0}.compare .label>span:after{left:0;bottom:0;border:5px solid transparent;border-bottom-color:#fff;border-left:0}tr.compare.modified td{color:#ff8f00}[dir=rtl] .compare.modified .original{padding-left:0;padding-right:2px}[dir=rtl] .compare .label>span:before{left:0;right:auto;border-right:8px solid transparent;border-left:0}[dir=rtl] .compare .label>span:after{left:auto;right:0;border-left:5px solid transparent;border-right:0}.guide-panel .container{display:flex}.guide-panel .container .content{padding:8px;display:block;min-width:250px;color:rgba(0,0,0,.87);background:#fff;border-radius:5px;border:3px solid #ffd54f}.guide-panel .container .tooltip-container{display:none}.guide-panel .container .tooltip-container .tooltip{display:block;position:relative;transform:translate(-50%,50%) rotate(45deg);width:9px;height:9px;background:#fff;border:3px solid #ffd54f;border-radius:1px}.guide-panel .container .tooltip-container .tooltip:after{content:" ";position:absolute;background:#fff;width:15px;height:15px}.guide-panel.center .tooltip-container,.guide-panel.end .tooltip-container,.guide-panel.start .tooltip-container{display:flex}.guide-panel.center .tooltip-container{align-self:center;align-items:center}.guide-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.guide-panel.after.start .tooltip,.guide-panel.before.start .tooltip{margin-top:4px}.guide-panel.after.center .tooltip,.guide-panel.before.center .tooltip{margin-bottom:17px}.guide-panel.after.end .tooltip,.guide-panel.before.end .tooltip{margin-bottom:20px}.guide-panel.above .container,.guide-panel.below .container{margin-left:8px;margin-right:8px}.guide-panel.above.start .tooltip,.guide-panel.below.start .tooltip{margin-left:20px}.guide-panel.above.end .tooltip,.guide-panel.below.end .tooltip{margin-right:4px}.guide-panel.above .tooltip,.guide-panel.after .tooltip{position:absolute!important}.guide-panel.before .container{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.guide-panel.before .tooltip:after{left:-5px;top:0}.guide-panel.after .container{margin-left:12px;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.guide-panel.after .tooltip:after{top:-5px;left:0}.guide-panel.above .container,.timeline .item{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.guide-panel.above .container{margin-top:8px}.guide-panel.above .tooltip{margin-top:-17px}.guide-panel.above .tooltip:after{left:-5px;top:-5px}.guide-panel.below .container{margin-bottom:8px;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}[dir=rtl] .guide-panel.above.start .tooltip,[dir=rtl] .guide-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .guide-panel.above.end .tooltip,[dir=rtl] .guide-panel.below.end .tooltip{margin-left:20px}[dir=rtl] .guide-panel.below .tooltip:after{top:0;right:-5px}[dir=rtl] .guide-panel.before .tooltip{margin-right:-17px}[dir=rtl] .guide-panel.above .tooltip,[dir=rtl] .guide-panel.after .tooltip{position:relative!important}[dir=rtl] .guide-panel.after .container{margin-left:unset;margin-right:12px}[dir=rtl] .guide-panel.after .tooltip:after,[dir=rtl] .guide-panel.before .tooltip:after{left:-5px;top:0}.timeline{width:120px}.timeline .item{font-size:12px!important;display:flex;text-align:center;align-items:center;height:auto;padding:10px;color:rgba(0,0,0,.87);cursor:pointer}.timeline .item:focus,.timeline .item:hover{background:rgba(0,0,0,.04)}.timeline .item .title span{-ms-word-break:keep-all;word-break:keep-all}.timeline .item .title span.time{font-size:12px}.timeline .item.active{border-left-color:#ffc107;border-left-width:1px;border-left-style:dotted}.configuration-diff{padding:8px;direction:ltr}.configuration-diff .scope .scope-content{margin-left:8px}.configuration-diff .scope .alternate,.configuration-diff .scope .brackets{cursor:pointer}.configuration-diff .scope.collapse .alternate{display:inline}.configuration-diff .scope .alternate,.configuration-diff .scope.collapse .scope-content{display:none}.configuration-diff .scope .structure{font-weight:500}.configuration-diff .scope .color{width:10px;height:10px;display:inline-block}.configuration-diff .scope .value:hover{-moz-text-decoration-line:underline;text-decoration-line:underline;-moz-text-decoration-style:dotted;text-decoration-style:dotted}.configuration-diff .scope.focus>.brackets{border:1px solid #000}.timeline{border-right:1px solid #d3d3d3}.timeline .mat-list-item.active:after{content:" ";background:#ffd740;width:6px;height:100%;top:0;position:absolute;right:0}body[dir=rtl].timeline{border-right:none;border-left:1px solid #d3d3d3}.nav-menu{background:#616161}.nav-menu,.nav-menu .mat-list-item,.nav-menu .mat-list-item .mat-icon{color:#fff}.nav-menu .mat-list-item.active:after{content:" ";border-right:12px solid #fafafa;border-top:28px solid transparent;border-bottom:28px solid transparent;width:0;height:0;right:0;top:0;position:absolute;box-sizing:border-box}.nav-menu.dialog{background:#424242}.nav-menu.dialog .mat-list-item.active:after{border-right-color:#424242}.nav-menu.nav-open .mat-list-item.active:after{border-right-color:#f5f5f5}[dir=rtl] .nav-menu.nav-open .mat-list-item.active:after{border-left-color:#f5f5f5}.sub-menu{background:#f5f5f5;border-right:2px solid #d3d3d3}.sub-menu .mat-list-item{color:#212121!important}.sub-menu .mat-list-item.active:after{background:#ffd740;border:0;width:6px;height:100%}.sub-menu,.sub-menu .mat-list-item .mat-icon{color:#212121}[dir=rtl] .nav-menu .mat-list-item.active:after{border-right:none;border-left:12px solid #fafafa;right:auto;left:0}[dir=rtl] .nav-menu .sub-menu{border-left:2px solid #d3d3d3;border-right:none}[dir=rtl] .nav-menu .sub-menu .mat-list-item.active:after{border:0}.mat-toolbar.nav-toolbar{border-radius:4px 4px 0 0}.loading{background:linear-gradient(to left,rgba(0,0,0,.42) 71%,rgba(0,0,0,.53) 14%,rgba(0,0,0,.57) 53%);-webkit-backface-visibility:hidden;animation:loading 20s linear infinite}[dir=rtl] .loading:before{left:unset;right:-200px;-moz-animation-fill-mode:backwards;-o-animation-fill-mode:backwards;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}@media (max-width:599px){.loading:before{height:58px}}.profile-name{color:#000}.comment{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.comment .comment-body{flex:1 1 0%;margin:8px 0}.comment .comment-body img{max-width:350px;cursor:zoom-in}.comment .tool{opacity:0}.comment:hover .tool{opacity:1}.comment .modification{font-variant:all-small-caps}.comment .comment-actions{place-content:flex-end;align-items:flex-end;flex-direction:row;align-self:flex-end;box-sizing:border-box;display:flex;flex:1}.comment .comment-actions .mat-icon-button{line-height:22px;width:22px;height:22px}.comment .comment-actions .mat-icon-button .mat-icon{font-size:13px}.comment-score{font-size:small;align-self:center;padding:3px;color:#388e3c}.voted-true{color:#388e3c}.comment-score.score-negative,.voted-false{color:#d32f2f}.level{cursor:default;border-color:#9e9e9e;color:#000}.level.current-level{color:#4caf50;border-color:#4caf50}.level:hover{background:#fafafa}.level .bar .value{background:#43a047}.level .bar .overflow{border-color:#bdbdbd}.level .bar:not(.available) .overflow{background:#b71c1c}.view{color:#000}.view .nav-toolbar{opacity:.1}.view:hover .nav-toolbar{opacity:1}.mat-primary-text{color:#4caf50}.mat-primary-container{background-color:#4caf50}.mat-accent-text{color:#ffd740}.mat-accent-container{background-color:#ffd740}.document-state{border-radius:2px 3px;padding:4px;border-width:1px;border-style:solid}.column,.row{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.column{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex{flex:1}.outline{border-color:rgba(0,0,0,.12)}.mat-radio-button~.mat-radio-button{margin-left:16px;margin-right:16px}em{font-weight:500;font-style:normal}.mat-row.mat-warn .mat-cell{color:#d32f2f}.negative-figure{color:#f44336}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop{background:#000;opacity:.85!important}.home-panel,.info-panel{display:block;overflow:auto;color:rgba(0,0,0,.87);background:#fff;box-shadow:0 0 5px 5px rgba(0,0,0,.1)}.home-panel{max-width:300px}.home-panel .mat-list-base .mat-list-item{overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.info-panel{min-width:65%;-webkit-animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both;animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both}.divider{flex:1 1 auto}body,html{height:100%;overflow:hidden}body{font-family:Roboto,monospace,sans-serif;margin:0}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#555}a{color:#4caf50;text-decoration:none;cursor:pointer}.mat-nav-list a{color:#4caf50!important}.mat-row:hover{background:rgba(0,0,0,.04)}
83
+ @keyframes loading{0%{background-position:0 0}to{background-position:100em 0}}@-webkit-keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.e-split-btn-wrapper .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:focus{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:active{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:focus{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:active{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:disabled{border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active){border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active):disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:focus{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:active{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:disabled{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled{border-bottom-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:active{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn{border-left-color:transparent}.e-bigger .e-listview .e-list-item,.e-listview.e-bigger .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-bigger .e-listview:not(.e-list-template) .e-list-item,.e-listview.e-bigger:not(.e-list-template) .e-list-item{height:48px;line-height:45px;position:relative}.e-bigger .e-listview .e-text-content,.e-listview,.e-listview.e-bigger .e-text-content{font-size:15px}.e-bigger .e-listview .e-list-group-item,.e-listview.e-bigger .e-list-group-item{height:48px;line-height:45px}.e-bigger .e-listview .e-list-header,.e-listview.e-bigger .e-list-header{align-items:center;display:flex;font-weight:700;height:64px}.e-bigger .e-listview .e-list-header .e-headertemplate-text.nested-header,.e-bigger .e-listview .e-list-header .e-text.header,.e-listview.e-bigger .e-list-header .e-headertemplate-text.nested-header,.e-listview.e-bigger .e-list-header .e-text.header{display:none}.e-bigger .e-listview .e-list-header .e-text,.e-listview.e-bigger .e-list-header .e-text{font-size:20px}.e-bigger .e-listview .e-text-content.e-checkbox .e-list-text,.e-listview.e-bigger .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview{-webkit-overflow-scrolling:touch;border:0 solid;border-radius:0;display:block;overflow:auto;position:relative;width:100%;border-color:#000;font-family:Roboto,monospace,sans-serif}.e-listview:not(.e-list-template) .e-list-item{height:36px;line-height:36px;padding:0 16px;position:relative}.e-listview .e-list-item{cursor:pointer}.e-listview .e-list-parent{margin:0;padding:0}.e-listview .e-list-header .e-headertemplate-text.nested-header,.e-listview .e-list-header .e-text.header{display:none}.e-listview .e-icon-back{margin-top:2px}.e-listview .e-list-header{align-items:center;display:flex;font-weight:700;height:48px;border-bottom:1px solid;padding:0 16px}.e-listview .e-has-header>.e-view{top:45px}.e-listview .e-back-button{cursor:pointer;padding-right:30px}.e-listview .e-list-group-item:first-child{border:0;border-bottom:0 solid transparent}.e-listview .e-list-group-item{border-bottom:0 solid transparent;border-top:1px solid;height:36px;line-height:36px;font-weight:600;padding:0 16px}.e-listview .e-list-group-item .e-list-text{cursor:default}.e-listview .e-icon-collapsible{cursor:pointer;font-size:12px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.e-listview .e-text-content{height:100%;position:relative;vertical-align:middle}.e-listview .e-list-text,.e-listview .e-text-content *{display:inline-block;vertical-align:middle}.e-listview .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview .e-text-content.e-checkbox.e-checkbox-left .e-list-icon+.e-list-text{width:calc(100% - 90px)}.e-listview .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 80px)}.e-listview .e-list-item.e-checklist.e-has-child .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 92px)}.e-listview .e-checkbox .e-checkbox-left{margin:-2px 10px 0 0}.e-listview .e-checkbox .e-checkbox-right{margin:-2px 0 0 10px}.e-listview .e-list-text{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.e-listview .e-icon-wrapper .e-list-text,.e-listview .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,.e-listview .e-list-icon+.e-list-text{width:calc(100% - 60px)}.e-listview .e-list-icon{margin-right:16px;height:30px;width:30px}.e-listview .e-content{overflow:hidden;position:relative}.e-listview .e-list-header.e-list-navigation .e-text,.e-listview.e-rtl .e-list-header .e-text{cursor:pointer}.e-listview .e-list-header .e-text{cursor:default;text-indent:0}.e-listview .e-text .e-headertext{display:inline-block;line-height:inherit}.e-listview.e-rtl{direction:rtl}.e-listview.e-rtl .e-list-icon{margin-left:16px;margin-right:0}.e-listview.e-rtl .e-icon-collapsible{left:0;right:initial;top:50%;transform:translateY(-50%) rotate(180deg)}.e-listview.e-rtl .e-back-button{transform:rotate(180deg)}.e-listview.e-rtl .e-icon-back{margin-top:-2px}.e-listview.e-rtl .e-checkbox .e-checkbox-left{margin:-2px 0 0 10px}.e-listview.e-rtl .e-checkbox .e-checkbox-right{margin:-2px 10px 0 0}.e-listview .e-list-header{background-color:#fff;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.87);font-size:20px}.e-listview .e-icons{color:rgba(0,0,0,.54)}.e-listview .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-listview .e-list-item.e-hover,.e-listview .e-list-item.e-hover.e-active.e-checklist{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-active,.e-listview .e-list-item.e-focused,.e-listview .e-list-item.e-focused.e-active.e-checklist{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.e-listview .e-list-item,.e-listview .e-list-item.e-active.e-checklist{background-color:#fff;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-focused .e-checkbox-wrapper .e-frame.e-check,.e-listview .e-list-item.e-focused .e-css.e-checkbox-wrapper .e-frame.e-check{background-color:#ffd740;border-color:transparent;color:#fff}.e-listview .e-list-group-item{background-color:#fafafa;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.54);font-size:15px}.e-listview.e-list-template .e-list-wrapper{height:inherit;position:relative}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line){padding:.2667em 1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line{padding:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-item-header{color:rgba(0,0,0,.87);display:block;font-size:15px;font-weight:500;margin:0;overflow:hidden;padding:.115em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content{color:rgba(0,0,0,.54);display:block;font-size:13px;margin:0;padding:.115em 0;word-wrap:break-word}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content:not(.e-text-overflow){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{height:2.6667em;left:1.0667em;position:absolute;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{height:2.6667em;position:absolute;right:1.0667em;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-badge .e-badge{font-size:12px;height:1.6666em;line-height:1.8666em;padding:0;position:absolute;right:1.33em;top:50%;transform:translateY(-50%);width:2.5em}.e-listview.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.8em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:1.0666em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line) .e-list-content{display:block;margin:0;overflow:hidden;padding:.72em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-item.e-active .e-list-content,.e-listview.e-list-template .e-list-item.e-active .e-list-item-header,.e-listview.e-list-template .e-list-item.e-hover .e-list-content,.e-listview.e-list-template .e-list-item.e-hover .e-list-item-header{color:rgba(0,0,0,.87)}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{left:inherit;right:1.0667em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{left:1.0667em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge .e-badge{left:1.33em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.1333em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:4.1333em;padding-right:1.0666em}.e-pivotview .e-expand::before{content:""}.e-pivotview .e-collapse::before{content:""}.e-pivotview.e-rtl .e-expand::before{content:""}.e-pivotview .e-sort::before{content:""}.e-pivotview .e-pv-filter::before{content:""}.e-pivotview .e-pv-filtered::before{color:#ffd740;content:""}.e-pivotview .e-remove::before{content:""}.e-pivotview .e-selected-option-icon::before{content:""}.e-pivotview .e-clear-filter-icon::before{content:""}.e-pivotview .e-dropdown-icon::before{content:""}.e-pivotview .e-export::before{content:""}.e-pivotview .e-new-report::before{content:""}.e-pivotview .e-save-report::before{content:""}.e-pivotview .e-saveas-report::before{content:""}.e-pivotview .e-rename-report::before{content:""}.e-pivotview .e-remove-report::before{content:""}.e-pivotview .e-sub-total::before{content:""}.e-pivotview .e-grand-total::before{content:""}.e-pivotview .e-toolbar-fieldlist::before{content:""}.e-pivotview .e-toolbar-grid::before{content:""}.e-pivotview .e-toolbar-chart::before{content:""}.e-pivotview .e-toolbar-formatting::before{content:""}.e-pivotview .e-pivot-button .e-edit::before{content:""}.e-pivotview .e-sort-ascend-icon::before{content:""}.e-pivotview .e-sort-descend-icon::before{content:""}.e-pivotview-pdf-export::before{content:""}.e-pivotview-excel-export::before{content:""}.e-pivotview-csv-export::before{content:""}.e-pivotview-png-export::before{content:""}.e-pivotview-jpeg-export::before{content:""}.e-pivotview-svg-export::before{content:""}.e-mdx::before{content:""}.e-level-options .e-selected-level-icon::before,.e-pivotview-select-icon::before{content:""}.e-pivotview-export::before{content:""}.e-pivotview-grid::before{content:""}.e-pivotview-expand::before{content:""}.e-pivotview-collapse::before{content:""}.e-pivot-format-menu::before{content:""}.e-pivot-number-format-menu::before{content:""}.e-pivot-conditional-format-menu::before{content:""}.e-pivot-format-toolbar::before{content:""}.e-pivotview-group::before{content:""}.e-pivotview-ungroup::before{content:""}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before,.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before{content:""}.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-bigger .e-splitter .e-split-bar .e-resize-handler::before,.e-bigger.e-splitter .e-split-bar .e-resize-handler::before{font-size:16px}.cube-table{background:0 0!important}.cube-table .figure{text-align:right;direction:ltr;border-left-width:2px;border-left-style:dotted;border-left-color:transparent}.cube-table thead{background:#fff}.cube-table thead th{text-align:right;border-bottom:1px solid rgba(0,0,0,.12)}.cube-table tfoot td,.cube-table tfoot th{font-weight:500;border-top:1px solid rgba(0,0,0,.12)}.cube-table .mat-row:hover{background-color:unset}.cube-table .figure,.cube-table tbody th{border-bottom-width:2px;border-bottom-style:double;border-bottom-color:transparent}.cube-table .cube-index td,.cube-table .cube-index th{border-bottom-width:2px;border-bottom-color:rgba(0,0,0,.12);border-bottom-style:dotted}.cube-table .cell-x{border-left-color:#ffca28!important}.cube-table .cell-y{border-bottom-style:solid!important;border-bottom-color:#ffca28!important}[dir=rtl] .figure{border-right-width:2px;border-left-width:0;border-right-style:dotted;border-right-color:transparent}[dir=rtl] .cell-x{border-left-color:unset;border-right-color:#ffca28}.avatar{margin:1px;font-size:small;width:30px;height:30px;line-height:30px;color:#fff;border:4px solid;display:inline-block;text-align:center}.avatar.interactive{cursor:pointer}.avatar.dense{width:22px;height:22px;line-height:22px}.avatar .initials{vertical-align:middle}.avatar .mode{font-size:11px;position:relative;top:-15px;left:13px;color:#fff;border:2px solid #fff;border-radius:9px;padding:2px}[dir=rtl] .avatar .mode{left:unset;right:13px}.form-container{color:rgba(0,0,0,.87)}.form-header{padding:4px}.compose-note{padding:5px;margin:5px}.compose-note .mat-icon{vertical-align:middle;padding:0 4px}.compose-note span{vertical-align:text-top}[dir=rtl] .compose-note{border-left:none}.file-upload{cursor:default}.file-dropable.drag{opacity:.5;overflow:hidden;margin:8px;border-style:dashed;border-color:#777;border-width:5px;background-color:#f5f5f5;z-index:2;top:0;left:0;right:0;bottom:0}input.search-box{border:solid 1px #e0e0e0;border-radius:2px;padding:2px 5px;height:28px;width:320px;font-weight:400;background:#eee;font-size:medium}input.search-box:hover{background:#e0e0e0}input.search-box::-webkit-input-placeholder{font-weight:100}input.search-box::placeholder{font-weight:100}input.search-box~.mat-icon{position:relative;left:-30px;color:#bdbdbd}[dir=rtl] input.search-box~.mat-icon{right:-30px;left:auto}.small-chip{border-radius:5px;font-size:11px;padding:3px 5px;line-height:18px;margin:2px}.selecteded-row .mat-cell:last-child{border-right:4px solid #ffc107;padding-right:20px}[dir=rtl] .selecteded-row .mat-cell:last-child{border-right:none;border-left:4px solid #ffc107;padding-left:20px;padding-right:24px}.element-row{border-bottom-width:0}.data-table{width:100%}.data-table .odd-row{background-color:#fafafa}.panes .panes-title{color:rgba(0,0,0,.87)}.panes .backdrop{position:absolute;z-index:200;width:100%;height:100%;display:block;background:#424242;opacity:.8}.panes .pane-content{border-left-width:1px;border-left-style:double;border-left-color:transparent}.panes .pane-content:not(.active) .mat-toolbar{background-color:transparent}.pane{height:100%;display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;overflow-x:hidden}.pane .mat-toolbar>*{opacity:.1}.pane.active .mat-toolbar>*,.pane:hover .mat-toolbar>*,.tabs .tab:hover .nav-toolbar{opacity:1}.tabs{color:rgba(0,0,0,.87);background:#fff}.tabs .tabs-title{height:60px;padding:0 8px}.tabs .mat-tab-link-container{overflow-x:auto;border-bottom:1px solid #d3d3d3;-ms-overflow-style:none;scrollbar-width:none}.tabs .mat-tab-link-container::-webkit-scrollbar{display:none}.tabs .tab:not(:hover) .nav-toolbar{opacity:.1;background-color:transparent}.tabs .tab .pane{-webkit-flex-grow:1;flex-grow:1}[dir=rtl] .panes .pane-content{border-left:none;border-right-width:1px;border-right-style:double;border-right-color:transparent}[dir=rtl] .panes .scroll-arrow:last-child{right:auto!important;left:0!important}[dir=rtl] .panes .breadcrumbs{transform:rotateX(180deg);display:inline-block}.e-signature{border-radius:3px 3px;border-width:1px;border-style:dashed;border-color:#bdbdbd}.popup-panel>*{flex-direction:inherit;display:inherit}.popup-panel .popup-content{display:inline-table;color:rgba(0,0,0,.87);min-width:52px;background:#fff;border-radius:2px;border:2px solid rgba(0,0,0,.12);box-shadow:0 0 10px 2px rgba(0,0,0,.1)}.popup-panel .popup-content>*{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-ms-flex:1 auto 1;-webkit-flex:1 auto 1}.popup-panel .popup-content .mat-nav-list,.popup-panel .popup-content form,.popup-panel .popup-content p{z-index:1}.popup-panel .tooltip-container{display:none}.popup-panel .tooltip-container .tooltip{display:block;position:relative;width:0;height:0;border:8px solid transparent}.popup-panel .tooltip-container .tooltip:after{content:" ";position:absolute;width:0;height:0;border:8px solid transparent}.popup-panel.center .tooltip-container,.popup-panel.end .tooltip-container,.popup-panel.start .tooltip-container{display:flex}.popup-panel.center .tooltip-container{align-self:center;align-items:center}.popup-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.popup-panel.after.start .tooltip,.popup-panel.before.start .tooltip{margin-top:4px}.popup-panel.after.end .tooltip,.popup-panel.before.end .tooltip{margin-bottom:19px}.popup-panel.above,.popup-panel.below{margin-left:0;margin-right:0}.popup-panel.above.start .tooltip,.popup-panel.below.start .tooltip{margin-left:19px}.popup-panel.above.end .tooltip,.popup-panel.below.end .tooltip{margin-right:6px}.popup-panel.before{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.popup-panel.before .tooltip{border-left-color:rgba(0,0,0,.12)}.popup-panel.before .tooltip:after{border-left-color:#fff;left:-11px;top:-8px}.popup-panel.after{margin-left:0;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.popup-panel.after .tooltip{border-right-color:rgba(0,0,0,.12)}.popup-panel.after .tooltip:after{border-right-color:#fff;left:-6px;top:-8px}.popup-panel.above{margin-top:0;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.popup-panel.above .tooltip{border-top-color:rgba(0,0,0,.12)}.popup-panel.above .tooltip:after{left:-8px;top:-11px;border-top-color:#fff}.popup-panel.below{margin-bottom:0;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.popup-panel.below .tooltip{border-bottom-color:rgba(0,0,0,.12)}.popup-panel.below .tooltip:after{left:-8px;top:-6px;border-bottom-color:#fff}[dir=rtl] .popup-panel.above.start .tooltip,[dir=rtl] .popup-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .popup-panel.above.end .tooltip,[dir=rtl] .popup-panel.below.end .tooltip{margin-left:19px}[dir=rtl] .popup-panel.before{margin-right:-14px}[dir=rtl] .popup-panel.before .tooltip{border-left-color:transparent!important;border-right-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.before .tooltip:after{left:-6px;border-left-color:transparent!important;border-right-color:#fff}[dir=rtl] .popup-panel.after{margin-left:unset;margin-right:0}[dir=rtl] .popup-panel.after .tooltip{border-right-color:transparent!important;border-left-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.after .tooltip:after{left:-11px;border-right-color:transparent!important;border-left-color:#fff}.tooltip-panel .popup-content{min-width:auto!important;background-color:rgba(97,97,97,.9);color:#fff;border:0;padding:4px 8px;cursor:default;font-size:small;display:inline-block}.tooltip-panel .tooltip-container .tooltip:after{display:none}.tooltip-panel.before .tooltip,.tooltip-panel.before .tooltip:after{border-left-color:rgba(97,97,97,.9)}.tooltip-panel.after .tooltip,.tooltip-panel.after .tooltip:after{border-right-color:rgba(97,97,97,.9)}.tooltip-panel.above .tooltip,.tooltip-panel.above .tooltip:after{border-top-color:rgba(97,97,97,.9)}.tooltip-panel.below .tooltip,.tooltip-panel.below .tooltip:after{border-bottom-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.before .tooltip,[dir=rtl] .tooltip-panel.before .tooltip:after{border-left-color:transparent!important;border-right-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.after .tooltip,[dir=rtl] .tooltip-panel.after .tooltip:after{border-right-color:transparent!important;border-left-color:rgba(97,97,97,.9)}.chat-conversation .chat-item{position:relative}.chat-conversation .chat-item img{max-width:310px;cursor:pointer}.chat-conversation .chat-item .chat-text{padding:9px;overflow-wrap:break-word}.chat-conversation .chat-item .chat-time,.chat-typing{font-size:small}.chat-conversation .chat-item .chat-info{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.chat-conversation .chat-watermark{place-content:center flex-end;text-align:end;width:100%}.chat-conversation .chat-watermark .mat-icon{font-size:21px;width:21px;height:21px}.chat-typing{margin-left:2px;margin-right:2px;text-transform:lowercase}.chat-item:not(.you) .chat-text{color:rgba(0,0,0,.87);background-color:#fafafa;border-radius:5px 5px;margin:5px 0 0}.chat-item:not(.you) .chat-text:after{content:"";position:absolute;bottom:0;left:50%;width:0;height:0;border:15px solid transparent;border-top-color:#fafafa;border-bottom:0;border-left:0;margin-bottom:1px}[dir=rtl] .chat-item:not(.you) .chat-text:after{left:auto;right:50%;border-right:0;border-left:15px solid transparent}.compare.added,tr.compare.added td{color:#2e7d32}.compare.added .label{border-color:#2e7d32}.compare.added .label>span{background-color:#e8f5e9}.compare.added .label>span:before{border-top-color:#2e7d32}.compare.modified{color:#ff8f00}.compare.modified .original{font-variant-caps:normal;font-weight:100;padding-left:2px}.compare.modified .label{border-color:#ff8f00}.compare.modified .label>span{background-color:#fff8e1}.compare.modified .label>span:before{border-top-color:#ff8f00}.compare.removed,tr.compare.removed td{color:#c62828}.compare.removed .label{border-color:#c62828}.compare.removed .label>span{text-decoration:none;background-color:#ffebee}.compare.removed .label>span:before{border-top-color:#c62828}.compare .label{border-top:1px dotted;display:flex;flex-direction:row-reverse;font-size:small}.compare .label>span{font-variant-caps:all-small-caps;padding-right:4px;padding-left:4px;position:relative}.compare .label>span:after,.compare .label>span:before{content:"";position:absolute;width:0;height:0}.compare .label>span:before{right:0;border:8px solid transparent;border-right:0}.compare .label>span:after{left:0;bottom:0;border:5px solid transparent;border-bottom-color:#fff;border-left:0}tr.compare.modified td{color:#ff8f00}[dir=rtl] .compare.modified .original{padding-left:0;padding-right:2px}[dir=rtl] .compare .label>span:before{left:0;right:auto;border-right:8px solid transparent;border-left:0}[dir=rtl] .compare .label>span:after{left:auto;right:0;border-left:5px solid transparent;border-right:0}.guide-panel .container{display:flex}.guide-panel .container .content{padding:8px;display:block;min-width:250px;color:rgba(0,0,0,.87);background:#fff;border-radius:5px;border:3px solid #ffd54f}.guide-panel .container .tooltip-container{display:none}.guide-panel .container .tooltip-container .tooltip{display:block;position:relative;transform:translate(-50%,50%) rotate(45deg);width:9px;height:9px;background:#fff;border:3px solid #ffd54f;border-radius:1px}.guide-panel .container .tooltip-container .tooltip:after{content:" ";position:absolute;background:#fff;width:15px;height:15px}.guide-panel.center .tooltip-container,.guide-panel.end .tooltip-container,.guide-panel.start .tooltip-container{display:flex}.guide-panel.center .tooltip-container{align-self:center;align-items:center}.guide-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.guide-panel.after.start .tooltip,.guide-panel.before.start .tooltip{margin-top:4px}.guide-panel.after.center .tooltip,.guide-panel.before.center .tooltip{margin-bottom:17px}.guide-panel.after.end .tooltip,.guide-panel.before.end .tooltip{margin-bottom:20px}.guide-panel.above .container,.guide-panel.below .container{margin-left:8px;margin-right:8px}.guide-panel.above.start .tooltip,.guide-panel.below.start .tooltip{margin-left:20px}.guide-panel.above.end .tooltip,.guide-panel.below.end .tooltip{margin-right:4px}.guide-panel.above .tooltip,.guide-panel.after .tooltip{position:absolute!important}.guide-panel.before .container{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.guide-panel.before .tooltip:after{left:-5px;top:0}.guide-panel.after .container{margin-left:12px;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.guide-panel.after .tooltip:after{top:-5px;left:0}.guide-panel.above .container,.timeline .item{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.guide-panel.above .container{margin-top:8px}.guide-panel.above .tooltip{margin-top:-17px}.guide-panel.above .tooltip:after{left:-5px;top:-5px}.guide-panel.below .container{margin-bottom:8px;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}[dir=rtl] .guide-panel.above.start .tooltip,[dir=rtl] .guide-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .guide-panel.above.end .tooltip,[dir=rtl] .guide-panel.below.end .tooltip{margin-left:20px}[dir=rtl] .guide-panel.below .tooltip:after{top:0;right:-5px}[dir=rtl] .guide-panel.before .tooltip{margin-right:-17px}[dir=rtl] .guide-panel.above .tooltip,[dir=rtl] .guide-panel.after .tooltip{position:relative!important}[dir=rtl] .guide-panel.after .container{margin-left:unset;margin-right:12px}[dir=rtl] .guide-panel.after .tooltip:after,[dir=rtl] .guide-panel.before .tooltip:after{left:-5px;top:0}.timeline{width:120px}.timeline .item{font-size:12px!important;display:flex;text-align:center;align-items:center;height:auto;padding:10px;color:rgba(0,0,0,.87);cursor:pointer}.timeline .item:focus,.timeline .item:hover{background:rgba(0,0,0,.04)}.timeline .item .title span{-ms-word-break:keep-all;word-break:keep-all}.timeline .item .title span.time{font-size:12px}.timeline .item.active{border-left-color:#ffc107;border-left-width:1px;border-left-style:dotted}.configuration-diff{padding:8px;direction:ltr}.configuration-diff .scope .scope-content{margin-left:8px}.configuration-diff .scope .alternate,.configuration-diff .scope .brackets{cursor:pointer}.configuration-diff .scope.collapse .alternate{display:inline}.configuration-diff .scope .alternate,.configuration-diff .scope.collapse .scope-content{display:none}.configuration-diff .scope .structure{font-weight:500}.configuration-diff .scope .color{width:10px;height:10px;display:inline-block}.configuration-diff .scope .value:hover{-moz-text-decoration-line:underline;text-decoration-line:underline;-moz-text-decoration-style:dotted;text-decoration-style:dotted}.configuration-diff .scope.focus>.brackets{border:1px solid #000}.timeline{border-right:1px solid #d3d3d3}.timeline .mat-list-item.active:after{content:" ";background:#ffd740;width:6px;height:100%;top:0;position:absolute;right:0}body[dir=rtl].timeline{border-right:none;border-left:1px solid #d3d3d3}.nav-menu{background:#616161}.nav-menu,.nav-menu .mat-list-item,.nav-menu .mat-list-item .mat-icon{color:#fff}.nav-menu .mat-list-item.active:after{content:" ";border-right:12px solid #fafafa;border-top:28px solid transparent;border-bottom:28px solid transparent;width:0;height:0;right:0;top:0;position:absolute;box-sizing:border-box}.nav-menu.dialog{background:#424242}.nav-menu.dialog .mat-list-item.active:after{border-right-color:#424242}.nav-menu.nav-open .mat-list-item.active:after{border-right-color:#f5f5f5}[dir=rtl] .nav-menu.nav-open .mat-list-item.active:after{border-left-color:#f5f5f5}.sub-menu{background:#f5f5f5;border-right:2px solid #d3d3d3}.sub-menu .mat-list-item{color:#212121!important}.sub-menu .mat-list-item.active:after{background:#ffd740;border:0;width:6px;height:100%}.sub-menu,.sub-menu .mat-list-item .mat-icon{color:#212121}[dir=rtl] .nav-menu .mat-list-item.active:after{border-right:none;border-left:12px solid #fafafa;right:auto;left:0}[dir=rtl] .nav-menu .sub-menu{border-left:2px solid #d3d3d3;border-right:none}[dir=rtl] .nav-menu .sub-menu .mat-list-item.active:after{border:0}.mat-toolbar.nav-toolbar{border-radius:4px 4px 0 0}.loading{background:linear-gradient(to left,rgba(0,0,0,.42) 71%,rgba(0,0,0,.53) 14%,rgba(0,0,0,.57) 53%);-webkit-backface-visibility:hidden;animation:loading 20s linear infinite}[dir=rtl] .loading:before{left:unset;right:-200px;-moz-animation-fill-mode:backwards;-o-animation-fill-mode:backwards;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}@media (max-width:599px){.loading:before{height:58px}}.profile-name{color:#000}.comment{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.comment .comment-body{flex:1 1 0%;margin:8px 0}.comment .comment-body img{max-width:350px;cursor:zoom-in}.comment .tool{opacity:0}.comment:hover .tool{opacity:1}.comment .modification{font-variant:all-small-caps}.comment .comment-actions{place-content:flex-end;align-items:flex-end;flex-direction:row;align-self:flex-end;box-sizing:border-box;display:flex;flex:1}.comment .comment-actions .mat-icon-button{line-height:22px;width:22px;height:22px}.comment .comment-actions .mat-icon-button .mat-icon{font-size:13px}.comment-score{font-size:small;align-self:center;padding:3px;color:#388e3c}.voted-true{color:#388e3c}.comment-score.score-negative,.voted-false{color:#d32f2f}.level{cursor:default;border-color:#9e9e9e;color:#000}.level.current-level{color:#4caf50;border-color:#4caf50}.level:hover{background:#fafafa}.level .bar .value{background:#43a047}.level .bar .overflow{border-color:#bdbdbd}.level .bar:not(.available) .overflow{background:#b71c1c}.view{color:#000}.view .nav-toolbar{opacity:.1}.view:hover .nav-toolbar{opacity:1}.mat-primary-text{color:#4caf50}.mat-primary-container{background-color:#4caf50}.mat-accent-text{color:#ffd740}.mat-accent-container{background-color:#ffd740}.document-state{border-radius:2px 3px;padding:4px;border-width:1px;border-style:solid}.column,.row{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.column{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex{flex:1}.outline{border-color:rgba(0,0,0,.12)}.mat-radio-button~.mat-radio-button{margin-left:16px;margin-right:16px}em{font-weight:500;font-style:normal}.mat-row.mat-warn .mat-cell{color:#d32f2f}.negative-figure{color:#f44336}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop{background:#000;opacity:.85!important}.home-panel,.info-panel{display:block;overflow:auto;color:rgba(0,0,0,.87);background:#fff;box-shadow:0 0 5px 5px rgba(0,0,0,.1)}.home-panel{max-width:300px}.home-panel .mat-list-base .mat-list-item{overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.info-panel{min-width:65%;-webkit-animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both;animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both}.divider{flex:1 1 auto}body,html{height:100%;overflow:hidden}body{font-family:Roboto,monospace,sans-serif;margin:0}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#555}a{color:#4caf50;text-decoration:none;cursor:pointer}.mat-nav-list a{color:#4caf50!important}.mat-row:hover{background:rgba(0,0,0,.04)}
@@ -80,4 +80,4 @@
80
80
  /*! splitbutton layout */
81
81
  .e-split-btn-wrapper{display:inline-flex;white-space:nowrap;width:min-content}.e-split-btn-wrapper .e-split-btn{border-bottom-right-radius:0;border-top-right-radius:0;text-transform:none;z-index:1;padding-left:10px;padding-right:10px}.e-split-btn-wrapper .e-split-btn:focus{outline-offset:0}.e-split-btn-wrapper .e-split-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-split-btn:focus{box-shadow:none}.e-split-btn-wrapper .e-split-btn:active{box-shadow:none;z-index:0}.e-split-btn-wrapper .e-split-btn.e-top-icon-btn{padding-bottom:10px;padding-top:10px}.e-split-btn-wrapper .e-split-btn .e-btn-icon{font-size:14px;margin-left:0;padding-right:8px;width:auto}.e-split-btn-wrapper .e-split-btn .e-icon-top{padding-bottom:4px;padding-right:0}.e-split-btn-wrapper .e-split-btn.e-icon-btn{padding-left:6px;padding-right:6px}.e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon{padding-right:0}.e-split-btn-wrapper .e-dropdown-btn{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:0;padding-left:4px;padding-right:4px}.e-split-btn-wrapper .e-dropdown-btn:focus,.e-split-btn-wrapper .e-dropdown-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-dropdown-btn:active{box-shadow:none;z-index:0}.e-split-btn-wrapper .e-dropdown-btn:disabled:active,.e-split-btn-wrapper .e-dropdown-btn:disabled:focus,.e-split-btn-wrapper .e-dropdown-btn:disabled:hover{z-index:0}.e-split-btn-wrapper .e-dropdown-btn:focus{outline-offset:0}.e-split-btn-wrapper .e-btn,.e-split-btn-wrapper .e-btn:hover{box-shadow:none}.e-split-btn-wrapper .e-btn:focus{box-shadow:none}.e-split-btn-wrapper .e-btn:active{box-shadow:none}.e-split-btn-wrapper .e-btn:disabled{box-shadow:none}.e-split-btn-wrapper.e-rtl .e-split-btn{border-bottom-left-radius:0;border-bottom-right-radius:2px;border-top-left-radius:0;border-top-right-radius:2px;margin-left:0;padding-left:4px;padding-right:10px}.e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon{margin-right:0;padding-left:8px;padding-right:0}.e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon{padding-left:0}.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn{padding-left:6px;padding-right:6px}.e-split-btn-wrapper.e-rtl .e-dropdown-btn{border-bottom-left-radius:2px;border-bottom-right-radius:0;border-top-left-radius:2px;border-top-right-radius:0;margin-left:0}.e-split-btn-wrapper.e-vertical{display:inline-block}.e-split-btn-wrapper.e-vertical .e-dropdown-btn,.e-split-btn-wrapper.e-vertical .e-split-btn{display:block;width:100%}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-left-radius:0;border-top-right-radius:2px;line-height:1;padding-bottom:4px;padding-right:10px}.e-split-btn-wrapper.e-vertical .e-split-btn .e-icon-top{padding-bottom:4px}.e-split-btn-wrapper.e-vertical .e-dropdown-btn{border-bottom-left-radius:2px;border-top-right-radius:0;line-height:.417em;margin-left:0;margin-top:0;padding-bottom:4px;padding-top:4px}.e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom{padding-top:0}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-bottom-right-radius:0;border-top-left-radius:2px;margin-left:0}.e-split-btn-wrapper.e-vertical.e-rtl .e-dropdown-btn{border-bottom-right-radius:2px;border-top-left-radius:0}.e-bigger .e-split-btn-wrapper .e-split-btn,.e-bigger.e-split-btn-wrapper .e-split-btn{padding-left:12px;padding-right:6px}.e-bigger .e-split-btn-wrapper .e-split-btn.e-top-icon-btn,.e-bigger.e-split-btn-wrapper .e-split-btn.e-top-icon-btn{padding-bottom:12px;padding-top:12px}.e-bigger .e-split-btn-wrapper .e-split-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper .e-split-btn .e-btn-icon{font-size:16px;margin-left:0;padding-right:10px;width:auto}.e-bigger .e-split-btn-wrapper .e-split-btn .e-icon-top,.e-bigger.e-split-btn-wrapper .e-split-btn .e-icon-top{padding-bottom:6px;padding-right:0}.e-bigger .e-split-btn-wrapper .e-split-btn.e-icon-btn,.e-bigger.e-split-btn-wrapper .e-split-btn.e-icon-btn{padding-left:9px;padding-right:9px}.e-bigger .e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper .e-split-btn.e-icon-btn .e-btn-icon{padding-right:0}.e-bigger .e-split-btn-wrapper .e-dropdown-btn,.e-bigger.e-split-btn-wrapper .e-dropdown-btn{padding-left:4px;padding-right:4px}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn{padding-left:6px;padding-right:12px}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn .e-btn-icon{padding-left:10px;padding-right:0}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn .e-icon-top,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn .e-btn-icon{padding-left:0}.e-bigger .e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn,.e-bigger.e-split-btn-wrapper.e-rtl .e-split-btn.e-icon-btn{padding-left:9px;padding-right:9px}.e-bigger .e-split-btn-wrapper.e-vertical .e-split-btn,.e-bigger.e-split-btn-wrapper.e-vertical .e-split-btn{padding-bottom:6px;padding-right:12px}.e-bigger .e-split-btn-wrapper.e-vertical .e-dropdown-btn,.e-bigger.e-split-btn-wrapper.e-vertical .e-dropdown-btn{padding-bottom:4px;padding-top:4px}.e-bigger .e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom,.e-bigger.e-split-btn-wrapper.e-vertical .e-dropdown-btn .e-icon-bottom{padding-top:0}
82
82
  /*! splitbutton theme */
83
- @keyframes loading{0%{background-position:0 0}to{background-position:100em 0}}@-webkit-keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.e-split-btn-wrapper .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:focus{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:active{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:focus{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:active{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:disabled{border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active){border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active):disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:focus{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:active{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:disabled{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled{border-bottom-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:active{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn{border-left-color:transparent}.e-bigger .e-listview .e-list-item,.e-listview.e-bigger .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-bigger .e-listview:not(.e-list-template) .e-list-item,.e-listview.e-bigger:not(.e-list-template) .e-list-item{height:48px;line-height:45px;position:relative}.e-bigger .e-listview .e-text-content,.e-listview,.e-listview.e-bigger .e-text-content{font-size:15px}.e-bigger .e-listview .e-list-group-item,.e-listview.e-bigger .e-list-group-item{height:48px;line-height:45px}.e-bigger .e-listview .e-list-header,.e-listview.e-bigger .e-list-header{align-items:center;display:flex;font-weight:700;height:64px}.e-bigger .e-listview .e-list-header .e-headertemplate-text.nested-header,.e-bigger .e-listview .e-list-header .e-text.header,.e-listview.e-bigger .e-list-header .e-headertemplate-text.nested-header,.e-listview.e-bigger .e-list-header .e-text.header{display:none}.e-bigger .e-listview .e-list-header .e-text,.e-listview.e-bigger .e-list-header .e-text{font-size:20px}.e-bigger .e-listview .e-text-content.e-checkbox .e-list-text,.e-listview.e-bigger .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview{-webkit-overflow-scrolling:touch;border:0 solid;border-radius:0;display:block;overflow:auto;position:relative;width:100%;border-color:#000;font-family:Roboto,monospace,sans-serif}.e-listview:not(.e-list-template) .e-list-item{height:36px;line-height:36px;padding:0 16px;position:relative}.e-listview .e-list-item{cursor:pointer}.e-listview .e-list-parent{margin:0;padding:0}.e-listview .e-list-header .e-headertemplate-text.nested-header,.e-listview .e-list-header .e-text.header{display:none}.e-listview .e-icon-back{margin-top:2px}.e-listview .e-list-header{align-items:center;display:flex;font-weight:700;height:48px;border-bottom:1px solid;padding:0 16px}.e-listview .e-has-header>.e-view{top:45px}.e-listview .e-back-button{cursor:pointer;padding-right:30px}.e-listview .e-list-group-item:first-child{border:0;border-bottom:0 solid transparent}.e-listview .e-list-group-item{border-bottom:0 solid transparent;border-top:1px solid;height:36px;line-height:36px;font-weight:600;padding:0 16px}.e-listview .e-list-group-item .e-list-text{cursor:default}.e-listview .e-icon-collapsible{cursor:pointer;font-size:12px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.e-listview .e-text-content{height:100%;position:relative;vertical-align:middle}.e-listview .e-list-text,.e-listview .e-text-content *{display:inline-block;vertical-align:middle}.e-listview .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview .e-text-content.e-checkbox.e-checkbox-left .e-list-icon+.e-list-text{width:calc(100% - 90px)}.e-listview .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 80px)}.e-listview .e-list-item.e-checklist.e-has-child .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 92px)}.e-listview .e-checkbox .e-checkbox-left{margin:-2px 10px 0 0}.e-listview .e-checkbox .e-checkbox-right{margin:-2px 0 0 10px}.e-listview .e-list-text{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.e-listview .e-icon-wrapper .e-list-text,.e-listview .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,.e-listview .e-list-icon+.e-list-text{width:calc(100% - 60px)}.e-listview .e-list-icon{margin-right:16px;height:30px;width:30px}.e-listview .e-content{overflow:hidden;position:relative}.e-listview .e-list-header.e-list-navigation .e-text,.e-listview.e-rtl .e-list-header .e-text{cursor:pointer}.e-listview .e-list-header .e-text{cursor:default;text-indent:0}.e-listview .e-text .e-headertext{display:inline-block;line-height:inherit}.e-listview.e-rtl{direction:rtl}.e-listview.e-rtl .e-list-icon{margin-left:16px;margin-right:0}.e-listview.e-rtl .e-icon-collapsible{left:0;right:initial;top:50%;transform:translateY(-50%) rotate(180deg)}.e-listview.e-rtl .e-back-button{transform:rotate(180deg)}.e-listview.e-rtl .e-icon-back{margin-top:-2px}.e-listview.e-rtl .e-checkbox .e-checkbox-left{margin:-2px 0 0 10px}.e-listview.e-rtl .e-checkbox .e-checkbox-right{margin:-2px 10px 0 0}.e-listview .e-list-header{background-color:#fff;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.87);font-size:20px}.e-listview .e-icons{color:rgba(0,0,0,.54)}.e-listview .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-listview .e-list-item.e-hover,.e-listview .e-list-item.e-hover.e-active.e-checklist{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-active,.e-listview .e-list-item.e-focused,.e-listview .e-list-item.e-focused.e-active.e-checklist{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.e-listview .e-list-item,.e-listview .e-list-item.e-active.e-checklist{background-color:#fff;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-focused .e-checkbox-wrapper .e-frame.e-check,.e-listview .e-list-item.e-focused .e-css.e-checkbox-wrapper .e-frame.e-check{background-color:#ff4081;border-color:transparent;color:#fff}.e-listview .e-list-group-item{background-color:#fafafa;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.54);font-size:15px}.e-listview.e-list-template .e-list-wrapper{height:inherit;position:relative}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line){padding:.2667em 1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line{padding:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-item-header{color:rgba(0,0,0,.87);display:block;font-size:15px;font-weight:500;margin:0;overflow:hidden;padding:.115em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content{color:rgba(0,0,0,.54);display:block;font-size:13px;margin:0;padding:.115em 0;word-wrap:break-word}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content:not(.e-text-overflow){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{height:2.6667em;left:1.0667em;position:absolute;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{height:2.6667em;position:absolute;right:1.0667em;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-badge .e-badge{font-size:12px;height:1.6666em;line-height:1.8666em;padding:0;position:absolute;right:1.33em;top:50%;transform:translateY(-50%);width:2.5em}.e-listview.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.8em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:1.0666em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line) .e-list-content{display:block;margin:0;overflow:hidden;padding:.72em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-item.e-active .e-list-content,.e-listview.e-list-template .e-list-item.e-active .e-list-item-header,.e-listview.e-list-template .e-list-item.e-hover .e-list-content,.e-listview.e-list-template .e-list-item.e-hover .e-list-item-header{color:rgba(0,0,0,.87)}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{left:inherit;right:1.0667em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{left:1.0667em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge .e-badge{left:1.33em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.1333em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:4.1333em;padding-right:1.0666em}.e-pivotview .e-expand::before{content:""}.e-pivotview .e-collapse::before{content:""}.e-pivotview.e-rtl .e-expand::before{content:""}.e-pivotview .e-sort::before{content:""}.e-pivotview .e-pv-filter::before{content:""}.e-pivotview .e-pv-filtered::before{color:#ff4081;content:""}.e-pivotview .e-remove::before{content:""}.e-pivotview .e-selected-option-icon::before{content:""}.e-pivotview .e-clear-filter-icon::before{content:""}.e-pivotview .e-dropdown-icon::before{content:""}.e-pivotview .e-export::before{content:""}.e-pivotview .e-new-report::before{content:""}.e-pivotview .e-save-report::before{content:""}.e-pivotview .e-saveas-report::before{content:""}.e-pivotview .e-rename-report::before{content:""}.e-pivotview .e-remove-report::before{content:""}.e-pivotview .e-sub-total::before{content:""}.e-pivotview .e-grand-total::before{content:""}.e-pivotview .e-toolbar-fieldlist::before{content:""}.e-pivotview .e-toolbar-grid::before{content:""}.e-pivotview .e-toolbar-chart::before{content:""}.e-pivotview .e-toolbar-formatting::before{content:""}.e-pivotview .e-pivot-button .e-edit::before{content:""}.e-pivotview .e-sort-ascend-icon::before{content:""}.e-pivotview .e-sort-descend-icon::before{content:""}.e-pivotview-pdf-export::before{content:""}.e-pivotview-excel-export::before{content:""}.e-pivotview-csv-export::before{content:""}.e-pivotview-png-export::before{content:""}.e-pivotview-jpeg-export::before{content:""}.e-pivotview-svg-export::before{content:""}.e-mdx::before{content:""}.e-level-options .e-selected-level-icon::before,.e-pivotview-select-icon::before{content:""}.e-pivotview-export::before{content:""}.e-pivotview-grid::before{content:""}.e-pivotview-expand::before{content:""}.e-pivotview-collapse::before{content:""}.e-pivot-format-menu::before{content:""}.e-pivot-number-format-menu::before{content:""}.e-pivot-conditional-format-menu::before{content:""}.e-pivot-format-toolbar::before{content:""}.e-pivotview-group::before{content:""}.e-pivotview-ungroup::before{content:""}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before,.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before{content:""}.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-bigger .e-splitter .e-split-bar .e-resize-handler::before,.e-bigger.e-splitter .e-split-bar .e-resize-handler::before{font-size:16px}.cube-table{background:0 0!important}.cube-table .figure{text-align:right;direction:ltr;border-left-width:2px;border-left-style:dotted;border-left-color:transparent}.cube-table thead{background:#fff}.cube-table thead th{text-align:right;border-bottom:1px solid rgba(0,0,0,.12)}.cube-table tfoot td,.cube-table tfoot th{font-weight:500;border-top:1px solid rgba(0,0,0,.12)}.cube-table .mat-row:hover{background-color:unset}.cube-table .figure,.cube-table tbody th{border-bottom-width:2px;border-bottom-style:double;border-bottom-color:transparent}.cube-table .cube-index td,.cube-table .cube-index th{border-bottom-width:2px;border-bottom-color:rgba(0,0,0,.12);border-bottom-style:dotted}.cube-table .cell-x{border-left-color:#ec407a!important}.cube-table .cell-y{border-bottom-style:solid!important;border-bottom-color:#ec407a!important}[dir=rtl] .figure{border-right-width:2px;border-left-width:0;border-right-style:dotted;border-right-color:transparent}[dir=rtl] .cell-x{border-left-color:unset;border-right-color:#ec407a}.avatar{margin:1px;font-size:small;width:30px;height:30px;line-height:30px;color:#fff;border:4px solid;display:inline-block;text-align:center}.avatar.interactive{cursor:pointer}.avatar.dense{width:22px;height:22px;line-height:22px}.avatar .initials{vertical-align:middle}.avatar .mode{font-size:11px;position:relative;top:-15px;left:13px;color:#fff;border:2px solid #fff;border-radius:9px;padding:2px}[dir=rtl] .avatar .mode{left:unset;right:13px}.form-container{color:rgba(0,0,0,.87)}.form-header{padding:4px}.compose-note{padding:5px;margin:5px}.compose-note .mat-icon{vertical-align:middle;padding:0 4px}.compose-note span{vertical-align:text-top}[dir=rtl] .compose-note{border-left:none}.file-upload{cursor:default}.file-dropable.drag{opacity:.5;overflow:hidden;margin:8px;border-style:dashed;border-color:#777;border-width:5px;background-color:#f5f5f5;z-index:2;top:0;left:0;right:0;bottom:0}input.search-box{border:solid 1px #e0e0e0;border-radius:2px;padding:2px 5px;height:28px;width:320px;font-weight:400;background:#eee;font-size:medium}input.search-box:hover{background:#e0e0e0}input.search-box::-webkit-input-placeholder{font-weight:100}input.search-box::placeholder{font-weight:100}input.search-box~.mat-icon{position:relative;left:-30px;color:#bdbdbd}[dir=rtl] input.search-box~.mat-icon{right:-30px;left:auto}.small-chip{border-radius:5px;font-size:11px;padding:3px 5px;line-height:18px;margin:2px}.selecteded-row .mat-cell:last-child{border-right:4px solid #e91e63;padding-right:20px}[dir=rtl] .selecteded-row .mat-cell:last-child{border-right:none;border-left:4px solid #e91e63;padding-left:20px;padding-right:24px}.element-row{border-bottom-width:0}.data-table{width:100%}.data-table .odd-row{background-color:#fafafa}.panes .panes-title{color:rgba(0,0,0,.87)}.panes .backdrop{position:absolute;z-index:200;width:100%;height:100%;display:block;background:#424242;opacity:.8}.panes .pane-content.active{border-left-color:#3f51b5;box-shadow:rgba(0,0,0,.09)0 3px 12px}.panes .pane-content:not(.active) .mat-toolbar{background-color:transparent}.pane{height:100%;display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;overflow-x:hidden}.pane .mat-toolbar>*{opacity:.1}.pane.active .mat-toolbar>*,.pane:hover .mat-toolbar>*,.tabs .tab:hover .nav-toolbar{opacity:1}.tabs{color:rgba(0,0,0,.87);background:#fff}.tabs .tabs-title{height:60px;padding:0 8px}.tabs .mat-tab-link-container{overflow-x:auto;border-bottom:1px solid #d3d3d3;-ms-overflow-style:none;scrollbar-width:none}.tabs .mat-tab-link-container::-webkit-scrollbar{display:none}.tabs .tab:not(:hover) .nav-toolbar{opacity:.1;background-color:transparent}.tabs .tab .pane{-webkit-flex-grow:1;flex-grow:1}[dir=rtl] .panes .pane-content{border-left:none;border-right-width:1px;border-right-style:double;border-right-color:transparent}[dir=rtl] .panes .pane-content.active{border-right-color:#3f51b5}[dir=rtl] .panes .scroll-arrow:last-child{right:auto!important;left:0!important}[dir=rtl] .panes .breadcrumbs{transform:rotateX(180deg);display:inline-block}.e-signature{border-radius:3px 3px;border-width:1px;border-style:dashed;border-color:#bdbdbd}.popup-panel>*{flex-direction:inherit;display:inherit}.popup-panel .popup-content{display:inline-table;color:rgba(0,0,0,.87);min-width:52px;background:#fff;border-radius:2px;border:2px solid rgba(0,0,0,.12);box-shadow:0 0 10px 2px rgba(0,0,0,.1)}.popup-panel .popup-content>*{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-ms-flex:1 auto 1;-webkit-flex:1 auto 1}.popup-panel .popup-content .mat-nav-list,.popup-panel .popup-content form,.popup-panel .popup-content p{z-index:1}.popup-panel .tooltip-container{display:none}.popup-panel .tooltip-container .tooltip{display:block;position:relative;width:0;height:0;border:8px solid transparent}.popup-panel .tooltip-container .tooltip:after{content:" ";position:absolute;width:0;height:0;border:8px solid transparent}.popup-panel.center .tooltip-container,.popup-panel.end .tooltip-container,.popup-panel.start .tooltip-container{display:flex}.popup-panel.center .tooltip-container{align-self:center;align-items:center}.popup-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.popup-panel.after.start .tooltip,.popup-panel.before.start .tooltip{margin-top:4px}.popup-panel.after.end .tooltip,.popup-panel.before.end .tooltip{margin-bottom:19px}.popup-panel.above,.popup-panel.below{margin-left:0;margin-right:0}.popup-panel.above.start .tooltip,.popup-panel.below.start .tooltip{margin-left:19px}.popup-panel.above.end .tooltip,.popup-panel.below.end .tooltip{margin-right:6px}.popup-panel.before{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.popup-panel.before .tooltip{border-left-color:rgba(0,0,0,.12)}.popup-panel.before .tooltip:after{border-left-color:#fff;left:-11px;top:-8px}.popup-panel.after{margin-left:0;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.popup-panel.after .tooltip{border-right-color:rgba(0,0,0,.12)}.popup-panel.after .tooltip:after{border-right-color:#fff;left:-6px;top:-8px}.popup-panel.above{margin-top:0;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.popup-panel.above .tooltip{border-top-color:rgba(0,0,0,.12)}.popup-panel.above .tooltip:after{left:-8px;top:-11px;border-top-color:#fff}.popup-panel.below{margin-bottom:0;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.popup-panel.below .tooltip{border-bottom-color:rgba(0,0,0,.12)}.popup-panel.below .tooltip:after{left:-8px;top:-6px;border-bottom-color:#fff}[dir=rtl] .popup-panel.above.start .tooltip,[dir=rtl] .popup-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .popup-panel.above.end .tooltip,[dir=rtl] .popup-panel.below.end .tooltip{margin-left:19px}[dir=rtl] .popup-panel.before{margin-right:-14px}[dir=rtl] .popup-panel.before .tooltip{border-left-color:transparent!important;border-right-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.before .tooltip:after{left:-6px;border-left-color:transparent!important;border-right-color:#fff}[dir=rtl] .popup-panel.after{margin-left:unset;margin-right:0}[dir=rtl] .popup-panel.after .tooltip{border-right-color:transparent!important;border-left-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.after .tooltip:after{left:-11px;border-right-color:transparent!important;border-left-color:#fff}.tooltip-panel .popup-content{min-width:auto!important;background-color:rgba(97,97,97,.9);color:#fff;border:0;padding:4px 8px;cursor:default;font-size:small;display:inline-block}.tooltip-panel .tooltip-container .tooltip:after{display:none}.tooltip-panel.before .tooltip,.tooltip-panel.before .tooltip:after{border-left-color:rgba(97,97,97,.9)}.tooltip-panel.after .tooltip,.tooltip-panel.after .tooltip:after{border-right-color:rgba(97,97,97,.9)}.tooltip-panel.above .tooltip,.tooltip-panel.above .tooltip:after{border-top-color:rgba(97,97,97,.9)}.tooltip-panel.below .tooltip,.tooltip-panel.below .tooltip:after{border-bottom-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.before .tooltip,[dir=rtl] .tooltip-panel.before .tooltip:after{border-left-color:transparent!important;border-right-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.after .tooltip,[dir=rtl] .tooltip-panel.after .tooltip:after{border-right-color:transparent!important;border-left-color:rgba(97,97,97,.9)}.chat-conversation .chat-item{position:relative}.chat-conversation .chat-item img{max-width:310px;cursor:pointer}.chat-conversation .chat-item .chat-text{padding:9px;overflow-wrap:break-word}.chat-conversation .chat-item .chat-time,.chat-typing{font-size:small}.chat-conversation .chat-item .chat-info{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.chat-conversation .chat-watermark{place-content:center flex-end;text-align:end;width:100%}.chat-conversation .chat-watermark .mat-icon{font-size:21px;width:21px;height:21px}.chat-typing{margin-left:2px;margin-right:2px;text-transform:lowercase}.chat-item:not(.you) .chat-text{color:rgba(0,0,0,.87);background-color:#fafafa;border-radius:5px 5px;margin:5px 0 0}.chat-item:not(.you) .chat-text:after{content:"";position:absolute;bottom:0;left:50%;width:0;height:0;border:15px solid transparent;border-top-color:#fafafa;border-bottom:0;border-left:0;margin-bottom:1px}[dir=rtl] .chat-item:not(.you) .chat-text:after{left:auto;right:50%;border-right:0;border-left:15px solid transparent}.compare.added,tr.compare.added td{color:#2e7d32}.compare.added .label{border-color:#2e7d32}.compare.added .label>span{background-color:#e8f5e9}.compare.added .label>span:before{border-top-color:#2e7d32}.compare.modified{color:#ad1457}.compare.modified .original{font-variant-caps:normal;font-weight:100;padding-left:2px}.compare.modified .label{border-color:#ad1457}.compare.modified .label>span{background-color:#fce4ec}.compare.modified .label>span:before{border-top-color:#ad1457}.compare.removed,tr.compare.removed td{color:#c62828}.compare.removed .label{border-color:#c62828}.compare.removed .label>span{text-decoration:none;background-color:#ffebee}.compare.removed .label>span:before{border-top-color:#c62828}.compare .label{border-top:1px dotted;display:flex;flex-direction:row-reverse;font-size:small}.compare .label>span{font-variant-caps:all-small-caps;padding-right:4px;padding-left:4px;position:relative}.compare .label>span:after,.compare .label>span:before{content:"";position:absolute;width:0;height:0}.compare .label>span:before{right:0;border:8px solid transparent;border-right:0}.compare .label>span:after{left:0;bottom:0;border:5px solid transparent;border-bottom-color:#fff;border-left:0}tr.compare.modified td{color:#ad1457}[dir=rtl] .compare.modified .original{padding-left:0;padding-right:2px}[dir=rtl] .compare .label>span:before{left:0;right:auto;border-right:8px solid transparent;border-left:0}[dir=rtl] .compare .label>span:after{left:auto;right:0;border-left:5px solid transparent;border-right:0}.guide-panel .container{display:flex}.guide-panel .container .content{padding:8px;display:block;min-width:250px;color:rgba(0,0,0,.87);background:#fff;border-radius:5px;border:3px solid #f06292}.guide-panel .container .tooltip-container{display:none}.guide-panel .container .tooltip-container .tooltip{display:block;position:relative;transform:translate(-50%,50%) rotate(45deg);width:9px;height:9px;background:#fff;border:3px solid #f06292;border-radius:1px}.guide-panel .container .tooltip-container .tooltip:after{content:" ";position:absolute;background:#fff;width:15px;height:15px}.guide-panel.center .tooltip-container,.guide-panel.end .tooltip-container,.guide-panel.start .tooltip-container{display:flex}.guide-panel.center .tooltip-container{align-self:center;align-items:center}.guide-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.guide-panel.after.start .tooltip,.guide-panel.before.start .tooltip{margin-top:4px}.guide-panel.after.center .tooltip,.guide-panel.before.center .tooltip{margin-bottom:17px}.guide-panel.after.end .tooltip,.guide-panel.before.end .tooltip{margin-bottom:20px}.guide-panel.above .container,.guide-panel.below .container{margin-left:8px;margin-right:8px}.guide-panel.above.start .tooltip,.guide-panel.below.start .tooltip{margin-left:20px}.guide-panel.above.end .tooltip,.guide-panel.below.end .tooltip{margin-right:4px}.guide-panel.above .tooltip,.guide-panel.after .tooltip{position:absolute!important}.guide-panel.before .container{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.guide-panel.before .tooltip:after{left:-5px;top:0}.guide-panel.after .container{margin-left:12px;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.guide-panel.after .tooltip:after{top:-5px;left:0}.guide-panel.above .container,.timeline .item{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.guide-panel.above .container{margin-top:8px}.guide-panel.above .tooltip{margin-top:-17px}.guide-panel.above .tooltip:after{left:-5px;top:-5px}.guide-panel.below .container{margin-bottom:8px;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}[dir=rtl] .guide-panel.above.start .tooltip,[dir=rtl] .guide-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .guide-panel.above.end .tooltip,[dir=rtl] .guide-panel.below.end .tooltip{margin-left:20px}[dir=rtl] .guide-panel.below .tooltip:after{top:0;right:-5px}[dir=rtl] .guide-panel.before .tooltip{margin-right:-17px}[dir=rtl] .guide-panel.above .tooltip,[dir=rtl] .guide-panel.after .tooltip{position:relative!important}[dir=rtl] .guide-panel.after .container{margin-left:unset;margin-right:12px}[dir=rtl] .guide-panel.after .tooltip:after,[dir=rtl] .guide-panel.before .tooltip:after{left:-5px;top:0}.timeline{width:120px}.timeline .item{font-size:12px!important;display:flex;text-align:center;align-items:center;height:auto;padding:10px;color:rgba(0,0,0,.87);cursor:pointer}.timeline .item:focus,.timeline .item:hover{background:rgba(0,0,0,.04)}.timeline .item .title span{-ms-word-break:keep-all;word-break:keep-all}.timeline .item .title span.time{font-size:12px}.timeline .item.active{border-left-color:#e91e63;border-left-width:1px;border-left-style:dotted}.configuration-diff{padding:8px;direction:ltr}.configuration-diff .scope .scope-content{margin-left:8px}.configuration-diff .scope .alternate,.configuration-diff .scope .brackets{cursor:pointer}.configuration-diff .scope.collapse .alternate{display:inline}.configuration-diff .scope .alternate,.configuration-diff .scope.collapse .scope-content{display:none}.configuration-diff .scope .structure{font-weight:500}.configuration-diff .scope .color{width:10px;height:10px;display:inline-block}.configuration-diff .scope .value:hover{-moz-text-decoration-line:underline;text-decoration-line:underline;-moz-text-decoration-style:dotted;text-decoration-style:dotted}.configuration-diff .scope.focus>.brackets{border:1px solid #000}.timeline{border-right:1px solid #d3d3d3}.timeline .mat-list-item.active:after{content:" ";background:#ff4081;width:6px;height:100%;top:0;position:absolute;right:0}body[dir=rtl].timeline{border-right:none;border-left:1px solid #d3d3d3}.nav-menu{background:#616161}.nav-menu,.nav-menu .mat-list-item,.nav-menu .mat-list-item .mat-icon{color:#fff}.nav-menu .mat-list-item.active:after{content:" ";border-right:12px solid #fafafa;border-top:28px solid transparent;border-bottom:28px solid transparent;width:0;height:0;right:0;top:0;position:absolute;box-sizing:border-box}.nav-menu.dialog{background:#424242}.nav-menu.dialog .mat-list-item.active:after{border-right-color:#424242}.nav-menu.nav-open .mat-list-item.active:after{border-right-color:#f5f5f5}[dir=rtl] .nav-menu.nav-open .mat-list-item.active:after{border-left-color:#f5f5f5}.sub-menu{background:#f5f5f5;border-right:2px solid #d3d3d3}.sub-menu .mat-list-item{color:#212121!important}.sub-menu .mat-list-item.active:after{background:#ff4081;border:0;width:6px;height:100%}.sub-menu,.sub-menu .mat-list-item .mat-icon{color:#212121}[dir=rtl] .nav-menu .mat-list-item.active:after{border-right:none;border-left:12px solid #fafafa;right:auto;left:0}[dir=rtl] .nav-menu .sub-menu{border-left:2px solid #d3d3d3;border-right:none}[dir=rtl] .nav-menu .sub-menu .mat-list-item.active:after{border:0}.mat-toolbar.nav-toolbar{border-radius:4px 4px 0 0}.loading{background:linear-gradient(to left,rgba(0,0,0,.42) 71%,rgba(0,0,0,.53) 14%,rgba(0,0,0,.57) 53%);-webkit-backface-visibility:hidden;animation:loading 20s linear infinite}[dir=rtl] .loading:before{left:unset;right:-200px;-moz-animation-fill-mode:backwards;-o-animation-fill-mode:backwards;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}@media (max-width:599px){.loading:before{height:58px}}.profile-name{color:#000}.comment{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.comment .comment-body{flex:1 1 0%;margin:8px 0}.comment .comment-body img{max-width:350px;cursor:zoom-in}.comment .tool{opacity:0}.comment:hover .tool{opacity:1}.comment .modification{font-variant:all-small-caps}.comment .comment-actions{place-content:flex-end;align-items:flex-end;flex-direction:row;align-self:flex-end;box-sizing:border-box;display:flex;flex:1}.comment .comment-actions .mat-icon-button{line-height:22px;width:22px;height:22px}.comment .comment-actions .mat-icon-button .mat-icon{font-size:13px}.comment-score{font-size:small;align-self:center;padding:3px;color:#303f9f}.voted-true{color:#303f9f}.comment-score.score-negative,.voted-false{color:#d32f2f}.level{cursor:default;border-color:#9e9e9e;color:#000}.level.current-level{color:#3f51b5;border-color:#3f51b5}.level:hover{background:#fafafa}.level .bar .value{background:#43a047}.level .bar .overflow{border-color:#bdbdbd}.level .bar:not(.available) .overflow{background:#b71c1c}.view{color:#000}.view .nav-toolbar{opacity:.1}.view:hover .nav-toolbar{opacity:1}.mat-primary-text{color:#3f51b5}.mat-primary-container{background-color:#3f51b5}.mat-accent-text{color:#ff4081}.mat-accent-container{background-color:#ff4081}.document-state{border-radius:2px 3px;padding:4px;border-width:1px;border-style:solid}.column,.row{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.column{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex{flex:1}.outline{border-color:rgba(0,0,0,.12)}.mat-radio-button~.mat-radio-button{margin-left:16px;margin-right:16px}em{font-weight:500;font-style:normal}.mat-row.mat-warn .mat-cell{color:#d32f2f}.negative-figure{color:#f44336}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop{background:#000;opacity:.85!important}.home-panel,.info-panel{display:block;overflow:auto;color:rgba(0,0,0,.87);background:#fff;box-shadow:0 0 5px 5px rgba(0,0,0,.1)}.home-panel{max-width:300px}.home-panel .mat-list-base .mat-list-item{overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.info-panel{min-width:65%;-webkit-animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both;animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both}.divider{flex:1 1 auto}body,html{height:100%;overflow:hidden}body{font-family:Roboto,monospace,sans-serif;margin:0}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#555}a{color:#3f51b5;text-decoration:none;cursor:pointer}.mat-nav-list a{color:#3f51b5!important}.mat-row:hover{background:rgba(0,0,0,.04)}
83
+ @keyframes loading{0%{background-position:0 0}to{background-position:100em 0}}@-webkit-keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes scale-up-ver-center{0%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-up-center{0%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.e-split-btn-wrapper .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:focus{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:active{border-right-color:transparent}.e-split-btn-wrapper .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn{border-right-color:transparent}.e-split-btn-wrapper:hover :not(e-active) .e-split-btn:disabled{border-right-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:focus{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:active{border-color:transparent}.e-split-btn-wrapper.e-rtl .e-split-btn:disabled{border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active){border-left-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active):disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:focus{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:active{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical .e-split-btn:disabled{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn{border-bottom-color:transparent;border-right-color:transparent}.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled{border-bottom-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:active{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:disabled{border-left-color:transparent}.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn{border-left-color:transparent}.e-bigger .e-listview .e-list-item,.e-listview.e-bigger .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-bigger .e-listview:not(.e-list-template) .e-list-item,.e-listview.e-bigger:not(.e-list-template) .e-list-item{height:48px;line-height:45px;position:relative}.e-bigger .e-listview .e-text-content,.e-listview,.e-listview.e-bigger .e-text-content{font-size:15px}.e-bigger .e-listview .e-list-group-item,.e-listview.e-bigger .e-list-group-item{height:48px;line-height:45px}.e-bigger .e-listview .e-list-header,.e-listview.e-bigger .e-list-header{align-items:center;display:flex;font-weight:700;height:64px}.e-bigger .e-listview .e-list-header .e-headertemplate-text.nested-header,.e-bigger .e-listview .e-list-header .e-text.header,.e-listview.e-bigger .e-list-header .e-headertemplate-text.nested-header,.e-listview.e-bigger .e-list-header .e-text.header{display:none}.e-bigger .e-listview .e-list-header .e-text,.e-listview.e-bigger .e-list-header .e-text{font-size:20px}.e-bigger .e-listview .e-text-content.e-checkbox .e-list-text,.e-listview.e-bigger .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview{-webkit-overflow-scrolling:touch;border:0 solid;border-radius:0;display:block;overflow:auto;position:relative;width:100%;border-color:#000;font-family:Roboto,monospace,sans-serif}.e-listview:not(.e-list-template) .e-list-item{height:36px;line-height:36px;padding:0 16px;position:relative}.e-listview .e-list-item{cursor:pointer}.e-listview .e-list-parent{margin:0;padding:0}.e-listview .e-list-header .e-headertemplate-text.nested-header,.e-listview .e-list-header .e-text.header{display:none}.e-listview .e-icon-back{margin-top:2px}.e-listview .e-list-header{align-items:center;display:flex;font-weight:700;height:48px;border-bottom:1px solid;padding:0 16px}.e-listview .e-has-header>.e-view{top:45px}.e-listview .e-back-button{cursor:pointer;padding-right:30px}.e-listview .e-list-group-item:first-child{border:0;border-bottom:0 solid transparent}.e-listview .e-list-group-item{border-bottom:0 solid transparent;border-top:1px solid;height:36px;line-height:36px;font-weight:600;padding:0 16px}.e-listview .e-list-group-item .e-list-text{cursor:default}.e-listview .e-icon-collapsible{cursor:pointer;font-size:12px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.e-listview .e-text-content{height:100%;position:relative;vertical-align:middle}.e-listview .e-list-text,.e-listview .e-text-content *{display:inline-block;vertical-align:middle}.e-listview .e-text-content.e-checkbox .e-list-text{width:calc(100% - 40px)}.e-listview .e-text-content.e-checkbox.e-checkbox-left .e-list-icon+.e-list-text{width:calc(100% - 90px)}.e-listview .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 80px)}.e-listview .e-list-item.e-checklist.e-has-child .e-text-content.e-checkbox.e-checkbox-right .e-list-icon+.e-list-text{width:calc(100% - 92px)}.e-listview .e-checkbox .e-checkbox-left{margin:-2px 10px 0 0}.e-listview .e-checkbox .e-checkbox-right{margin:-2px 0 0 10px}.e-listview .e-list-text{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.e-listview .e-icon-wrapper .e-list-text,.e-listview .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,.e-listview .e-list-icon+.e-list-text{width:calc(100% - 60px)}.e-listview .e-list-icon{margin-right:16px;height:30px;width:30px}.e-listview .e-content{overflow:hidden;position:relative}.e-listview .e-list-header.e-list-navigation .e-text,.e-listview.e-rtl .e-list-header .e-text{cursor:pointer}.e-listview .e-list-header .e-text{cursor:default;text-indent:0}.e-listview .e-text .e-headertext{display:inline-block;line-height:inherit}.e-listview.e-rtl{direction:rtl}.e-listview.e-rtl .e-list-icon{margin-left:16px;margin-right:0}.e-listview.e-rtl .e-icon-collapsible{left:0;right:initial;top:50%;transform:translateY(-50%) rotate(180deg)}.e-listview.e-rtl .e-back-button{transform:rotate(180deg)}.e-listview.e-rtl .e-icon-back{margin-top:-2px}.e-listview.e-rtl .e-checkbox .e-checkbox-left{margin:-2px 0 0 10px}.e-listview.e-rtl .e-checkbox .e-checkbox-right{margin:-2px 10px 0 0}.e-listview .e-list-header{background-color:#fff;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.87);font-size:20px}.e-listview .e-icons{color:rgba(0,0,0,.54)}.e-listview .e-list-item{border-bottom:0 solid transparent;border-left:0 solid transparent;border-right:0 solid transparent;border-top:0 solid transparent}.e-listview .e-list-item.e-hover,.e-listview .e-list-item.e-hover.e-active.e-checklist{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-active,.e-listview .e-list-item.e-focused,.e-listview .e-list-item.e-focused.e-active.e-checklist{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.e-listview .e-list-item,.e-listview .e-list-item.e-active.e-checklist{background-color:#fff;color:rgba(0,0,0,.87)}.e-listview .e-list-item.e-focused .e-checkbox-wrapper .e-frame.e-check,.e-listview .e-list-item.e-focused .e-css.e-checkbox-wrapper .e-frame.e-check{background-color:#ff4081;border-color:transparent;color:#fff}.e-listview .e-list-group-item{background-color:#fafafa;border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.54);font-size:15px}.e-listview.e-list-template .e-list-wrapper{height:inherit;position:relative}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line){padding:.2667em 1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line{padding:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-item-header{color:rgba(0,0,0,.87);display:block;font-size:15px;font-weight:500;margin:0;overflow:hidden;padding:.115em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content{color:rgba(0,0,0,.54);display:block;font-size:13px;margin:0;padding:.115em 0;word-wrap:break-word}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line .e-list-content:not(.e-text-overflow){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{height:2.6667em;left:1.0667em;position:absolute;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{height:2.6667em;position:absolute;right:1.0667em;top:.2666em;width:2.6667em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar{top:1.0666em}.e-listview.e-list-template .e-list-wrapper.e-list-badge .e-badge{font-size:12px;height:1.6666em;line-height:1.8666em;padding:0;position:absolute;right:1.33em;top:50%;transform:translateY(-50%);width:2.5em}.e-listview.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.8em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:1.0666em;padding-right:4.1333em}.e-listview.e-list-template .e-list-wrapper:not(.e-list-multi-line) .e-list-content{display:block;margin:0;overflow:hidden;padding:.72em 0;text-overflow:ellipsis;white-space:nowrap}.e-listview.e-list-template .e-list-item.e-active .e-list-content,.e-listview.e-list-template .e-list-item.e-active .e-list-item-header,.e-listview.e-list-template .e-list-item.e-hover .e-list-content,.e-listview.e-list-template .e-list-item.e-hover .e-list-item-header{color:rgba(0,0,0,.87)}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar .e-avatar{left:inherit;right:1.0667em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge){padding-left:1.0666em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge){padding-left:4.8em;padding-right:1.0666em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar{left:1.0667em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge .e-badge{left:1.33em;right:inherit}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar{padding-left:4.1333em;padding-right:4.8em}.e-listview.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar){padding-left:4.1333em;padding-right:1.0666em}.e-pivotview .e-expand::before{content:""}.e-pivotview .e-collapse::before{content:""}.e-pivotview.e-rtl .e-expand::before{content:""}.e-pivotview .e-sort::before{content:""}.e-pivotview .e-pv-filter::before{content:""}.e-pivotview .e-pv-filtered::before{color:#ff4081;content:""}.e-pivotview .e-remove::before{content:""}.e-pivotview .e-selected-option-icon::before{content:""}.e-pivotview .e-clear-filter-icon::before{content:""}.e-pivotview .e-dropdown-icon::before{content:""}.e-pivotview .e-export::before{content:""}.e-pivotview .e-new-report::before{content:""}.e-pivotview .e-save-report::before{content:""}.e-pivotview .e-saveas-report::before{content:""}.e-pivotview .e-rename-report::before{content:""}.e-pivotview .e-remove-report::before{content:""}.e-pivotview .e-sub-total::before{content:""}.e-pivotview .e-grand-total::before{content:""}.e-pivotview .e-toolbar-fieldlist::before{content:""}.e-pivotview .e-toolbar-grid::before{content:""}.e-pivotview .e-toolbar-chart::before{content:""}.e-pivotview .e-toolbar-formatting::before{content:""}.e-pivotview .e-pivot-button .e-edit::before{content:""}.e-pivotview .e-sort-ascend-icon::before{content:""}.e-pivotview .e-sort-descend-icon::before{content:""}.e-pivotview-pdf-export::before{content:""}.e-pivotview-excel-export::before{content:""}.e-pivotview-csv-export::before{content:""}.e-pivotview-png-export::before{content:""}.e-pivotview-jpeg-export::before{content:""}.e-pivotview-svg-export::before{content:""}.e-mdx::before{content:""}.e-level-options .e-selected-level-icon::before,.e-pivotview-select-icon::before{content:""}.e-pivotview-export::before{content:""}.e-pivotview-grid::before{content:""}.e-pivotview-expand::before{content:""}.e-pivotview-collapse::before{content:""}.e-pivot-format-menu::before{content:""}.e-pivot-number-format-menu::before{content:""}.e-pivot-conditional-format-menu::before{content:""}.e-pivot-format-toolbar::before{content:""}.e-pivotview-group::before{content:""}.e-pivotview-ungroup::before{content:""}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before,.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before{content:""}.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before{content:"";font-family:"e-icons";font-size:14px}.e-bigger .e-splitter .e-split-bar .e-resize-handler::before,.e-bigger.e-splitter .e-split-bar .e-resize-handler::before{font-size:16px}.cube-table{background:0 0!important}.cube-table .figure{text-align:right;direction:ltr;border-left-width:2px;border-left-style:dotted;border-left-color:transparent}.cube-table thead{background:#fff}.cube-table thead th{text-align:right;border-bottom:1px solid rgba(0,0,0,.12)}.cube-table tfoot td,.cube-table tfoot th{font-weight:500;border-top:1px solid rgba(0,0,0,.12)}.cube-table .mat-row:hover{background-color:unset}.cube-table .figure,.cube-table tbody th{border-bottom-width:2px;border-bottom-style:double;border-bottom-color:transparent}.cube-table .cube-index td,.cube-table .cube-index th{border-bottom-width:2px;border-bottom-color:rgba(0,0,0,.12);border-bottom-style:dotted}.cube-table .cell-x{border-left-color:#ec407a!important}.cube-table .cell-y{border-bottom-style:solid!important;border-bottom-color:#ec407a!important}[dir=rtl] .figure{border-right-width:2px;border-left-width:0;border-right-style:dotted;border-right-color:transparent}[dir=rtl] .cell-x{border-left-color:unset;border-right-color:#ec407a}.avatar{margin:1px;font-size:small;width:30px;height:30px;line-height:30px;color:#fff;border:4px solid;display:inline-block;text-align:center}.avatar.interactive{cursor:pointer}.avatar.dense{width:22px;height:22px;line-height:22px}.avatar .initials{vertical-align:middle}.avatar .mode{font-size:11px;position:relative;top:-15px;left:13px;color:#fff;border:2px solid #fff;border-radius:9px;padding:2px}[dir=rtl] .avatar .mode{left:unset;right:13px}.form-container{color:rgba(0,0,0,.87)}.form-header{padding:4px}.compose-note{padding:5px;margin:5px}.compose-note .mat-icon{vertical-align:middle;padding:0 4px}.compose-note span{vertical-align:text-top}[dir=rtl] .compose-note{border-left:none}.file-upload{cursor:default}.file-dropable.drag{opacity:.5;overflow:hidden;margin:8px;border-style:dashed;border-color:#777;border-width:5px;background-color:#f5f5f5;z-index:2;top:0;left:0;right:0;bottom:0}input.search-box{border:solid 1px #e0e0e0;border-radius:2px;padding:2px 5px;height:28px;width:320px;font-weight:400;background:#eee;font-size:medium}input.search-box:hover{background:#e0e0e0}input.search-box::-webkit-input-placeholder{font-weight:100}input.search-box::placeholder{font-weight:100}input.search-box~.mat-icon{position:relative;left:-30px;color:#bdbdbd}[dir=rtl] input.search-box~.mat-icon{right:-30px;left:auto}.small-chip{border-radius:5px;font-size:11px;padding:3px 5px;line-height:18px;margin:2px}.selecteded-row .mat-cell:last-child{border-right:4px solid #e91e63;padding-right:20px}[dir=rtl] .selecteded-row .mat-cell:last-child{border-right:none;border-left:4px solid #e91e63;padding-left:20px;padding-right:24px}.element-row{border-bottom-width:0}.data-table{width:100%}.data-table .odd-row{background-color:#fafafa}.panes .panes-title{color:rgba(0,0,0,.87)}.panes .backdrop{position:absolute;z-index:200;width:100%;height:100%;display:block;background:#424242;opacity:.8}.panes .pane-content{border-left-width:1px;border-left-style:double;border-left-color:transparent}.panes .pane-content:not(.active) .mat-toolbar{background-color:transparent}.pane{height:100%;display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;overflow-x:hidden}.pane .mat-toolbar>*{opacity:.1}.pane.active .mat-toolbar>*,.pane:hover .mat-toolbar>*,.tabs .tab:hover .nav-toolbar{opacity:1}.tabs{color:rgba(0,0,0,.87);background:#fff}.tabs .tabs-title{height:60px;padding:0 8px}.tabs .mat-tab-link-container{overflow-x:auto;border-bottom:1px solid #d3d3d3;-ms-overflow-style:none;scrollbar-width:none}.tabs .mat-tab-link-container::-webkit-scrollbar{display:none}.tabs .tab:not(:hover) .nav-toolbar{opacity:.1;background-color:transparent}.tabs .tab .pane{-webkit-flex-grow:1;flex-grow:1}[dir=rtl] .panes .pane-content{border-left:none;border-right-width:1px;border-right-style:double;border-right-color:transparent}[dir=rtl] .panes .scroll-arrow:last-child{right:auto!important;left:0!important}[dir=rtl] .panes .breadcrumbs{transform:rotateX(180deg);display:inline-block}.e-signature{border-radius:3px 3px;border-width:1px;border-style:dashed;border-color:#bdbdbd}.popup-panel>*{flex-direction:inherit;display:inherit}.popup-panel .popup-content{display:inline-table;color:rgba(0,0,0,.87);min-width:52px;background:#fff;border-radius:2px;border:2px solid rgba(0,0,0,.12);box-shadow:0 0 10px 2px rgba(0,0,0,.1)}.popup-panel .popup-content>*{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-ms-flex:1 auto 1;-webkit-flex:1 auto 1}.popup-panel .popup-content .mat-nav-list,.popup-panel .popup-content form,.popup-panel .popup-content p{z-index:1}.popup-panel .tooltip-container{display:none}.popup-panel .tooltip-container .tooltip{display:block;position:relative;width:0;height:0;border:8px solid transparent}.popup-panel .tooltip-container .tooltip:after{content:" ";position:absolute;width:0;height:0;border:8px solid transparent}.popup-panel.center .tooltip-container,.popup-panel.end .tooltip-container,.popup-panel.start .tooltip-container{display:flex}.popup-panel.center .tooltip-container{align-self:center;align-items:center}.popup-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.popup-panel.after.start .tooltip,.popup-panel.before.start .tooltip{margin-top:4px}.popup-panel.after.end .tooltip,.popup-panel.before.end .tooltip{margin-bottom:19px}.popup-panel.above,.popup-panel.below{margin-left:0;margin-right:0}.popup-panel.above.start .tooltip,.popup-panel.below.start .tooltip{margin-left:19px}.popup-panel.above.end .tooltip,.popup-panel.below.end .tooltip{margin-right:6px}.popup-panel.before{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.popup-panel.before .tooltip{border-left-color:rgba(0,0,0,.12)}.popup-panel.before .tooltip:after{border-left-color:#fff;left:-11px;top:-8px}.popup-panel.after{margin-left:0;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.popup-panel.after .tooltip{border-right-color:rgba(0,0,0,.12)}.popup-panel.after .tooltip:after{border-right-color:#fff;left:-6px;top:-8px}.popup-panel.above{margin-top:0;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.popup-panel.above .tooltip{border-top-color:rgba(0,0,0,.12)}.popup-panel.above .tooltip:after{left:-8px;top:-11px;border-top-color:#fff}.popup-panel.below{margin-bottom:0;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.popup-panel.below .tooltip{border-bottom-color:rgba(0,0,0,.12)}.popup-panel.below .tooltip:after{left:-8px;top:-6px;border-bottom-color:#fff}[dir=rtl] .popup-panel.above.start .tooltip,[dir=rtl] .popup-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .popup-panel.above.end .tooltip,[dir=rtl] .popup-panel.below.end .tooltip{margin-left:19px}[dir=rtl] .popup-panel.before{margin-right:-14px}[dir=rtl] .popup-panel.before .tooltip{border-left-color:transparent!important;border-right-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.before .tooltip:after{left:-6px;border-left-color:transparent!important;border-right-color:#fff}[dir=rtl] .popup-panel.after{margin-left:unset;margin-right:0}[dir=rtl] .popup-panel.after .tooltip{border-right-color:transparent!important;border-left-color:rgba(0,0,0,.12)}[dir=rtl] .popup-panel.after .tooltip:after{left:-11px;border-right-color:transparent!important;border-left-color:#fff}.tooltip-panel .popup-content{min-width:auto!important;background-color:rgba(97,97,97,.9);color:#fff;border:0;padding:4px 8px;cursor:default;font-size:small;display:inline-block}.tooltip-panel .tooltip-container .tooltip:after{display:none}.tooltip-panel.before .tooltip,.tooltip-panel.before .tooltip:after{border-left-color:rgba(97,97,97,.9)}.tooltip-panel.after .tooltip,.tooltip-panel.after .tooltip:after{border-right-color:rgba(97,97,97,.9)}.tooltip-panel.above .tooltip,.tooltip-panel.above .tooltip:after{border-top-color:rgba(97,97,97,.9)}.tooltip-panel.below .tooltip,.tooltip-panel.below .tooltip:after{border-bottom-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.before .tooltip,[dir=rtl] .tooltip-panel.before .tooltip:after{border-left-color:transparent!important;border-right-color:rgba(97,97,97,.9)}[dir=rtl] .tooltip-panel.after .tooltip,[dir=rtl] .tooltip-panel.after .tooltip:after{border-right-color:transparent!important;border-left-color:rgba(97,97,97,.9)}.chat-conversation .chat-item{position:relative}.chat-conversation .chat-item img{max-width:310px;cursor:pointer}.chat-conversation .chat-item .chat-text{padding:9px;overflow-wrap:break-word}.chat-conversation .chat-item .chat-time,.chat-typing{font-size:small}.chat-conversation .chat-item .chat-info{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.chat-conversation .chat-watermark{place-content:center flex-end;text-align:end;width:100%}.chat-conversation .chat-watermark .mat-icon{font-size:21px;width:21px;height:21px}.chat-typing{margin-left:2px;margin-right:2px;text-transform:lowercase}.chat-item:not(.you) .chat-text{color:rgba(0,0,0,.87);background-color:#fafafa;border-radius:5px 5px;margin:5px 0 0}.chat-item:not(.you) .chat-text:after{content:"";position:absolute;bottom:0;left:50%;width:0;height:0;border:15px solid transparent;border-top-color:#fafafa;border-bottom:0;border-left:0;margin-bottom:1px}[dir=rtl] .chat-item:not(.you) .chat-text:after{left:auto;right:50%;border-right:0;border-left:15px solid transparent}.compare.added,tr.compare.added td{color:#2e7d32}.compare.added .label{border-color:#2e7d32}.compare.added .label>span{background-color:#e8f5e9}.compare.added .label>span:before{border-top-color:#2e7d32}.compare.modified{color:#ad1457}.compare.modified .original{font-variant-caps:normal;font-weight:100;padding-left:2px}.compare.modified .label{border-color:#ad1457}.compare.modified .label>span{background-color:#fce4ec}.compare.modified .label>span:before{border-top-color:#ad1457}.compare.removed,tr.compare.removed td{color:#c62828}.compare.removed .label{border-color:#c62828}.compare.removed .label>span{text-decoration:none;background-color:#ffebee}.compare.removed .label>span:before{border-top-color:#c62828}.compare .label{border-top:1px dotted;display:flex;flex-direction:row-reverse;font-size:small}.compare .label>span{font-variant-caps:all-small-caps;padding-right:4px;padding-left:4px;position:relative}.compare .label>span:after,.compare .label>span:before{content:"";position:absolute;width:0;height:0}.compare .label>span:before{right:0;border:8px solid transparent;border-right:0}.compare .label>span:after{left:0;bottom:0;border:5px solid transparent;border-bottom-color:#fff;border-left:0}tr.compare.modified td{color:#ad1457}[dir=rtl] .compare.modified .original{padding-left:0;padding-right:2px}[dir=rtl] .compare .label>span:before{left:0;right:auto;border-right:8px solid transparent;border-left:0}[dir=rtl] .compare .label>span:after{left:auto;right:0;border-left:5px solid transparent;border-right:0}.guide-panel .container{display:flex}.guide-panel .container .content{padding:8px;display:block;min-width:250px;color:rgba(0,0,0,.87);background:#fff;border-radius:5px;border:3px solid #f06292}.guide-panel .container .tooltip-container{display:none}.guide-panel .container .tooltip-container .tooltip{display:block;position:relative;transform:translate(-50%,50%) rotate(45deg);width:9px;height:9px;background:#fff;border:3px solid #f06292;border-radius:1px}.guide-panel .container .tooltip-container .tooltip:after{content:" ";position:absolute;background:#fff;width:15px;height:15px}.guide-panel.center .tooltip-container,.guide-panel.end .tooltip-container,.guide-panel.start .tooltip-container{display:flex}.guide-panel.center .tooltip-container{align-self:center;align-items:center}.guide-panel.end .tooltip-container{align-self:flex-end;align-items:flex-end}.guide-panel.after.start .tooltip,.guide-panel.before.start .tooltip{margin-top:4px}.guide-panel.after.center .tooltip,.guide-panel.before.center .tooltip{margin-bottom:17px}.guide-panel.after.end .tooltip,.guide-panel.before.end .tooltip{margin-bottom:20px}.guide-panel.above .container,.guide-panel.below .container{margin-left:8px;margin-right:8px}.guide-panel.above.start .tooltip,.guide-panel.below.start .tooltip{margin-left:20px}.guide-panel.above.end .tooltip,.guide-panel.below.end .tooltip{margin-right:4px}.guide-panel.above .tooltip,.guide-panel.after .tooltip{position:absolute!important}.guide-panel.before .container{-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.guide-panel.before .tooltip:after{left:-5px;top:0}.guide-panel.after .container{margin-left:12px;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.guide-panel.after .tooltip:after{top:-5px;left:0}.guide-panel.above .container,.timeline .item{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.guide-panel.above .container{margin-top:8px}.guide-panel.above .tooltip{margin-top:-17px}.guide-panel.above .tooltip:after{left:-5px;top:-5px}.guide-panel.below .container{margin-bottom:8px;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}[dir=rtl] .guide-panel.above.start .tooltip,[dir=rtl] .guide-panel.below.start .tooltip{margin-right:8px;margin-left:unset}[dir=rtl] .guide-panel.above.end .tooltip,[dir=rtl] .guide-panel.below.end .tooltip{margin-left:20px}[dir=rtl] .guide-panel.below .tooltip:after{top:0;right:-5px}[dir=rtl] .guide-panel.before .tooltip{margin-right:-17px}[dir=rtl] .guide-panel.above .tooltip,[dir=rtl] .guide-panel.after .tooltip{position:relative!important}[dir=rtl] .guide-panel.after .container{margin-left:unset;margin-right:12px}[dir=rtl] .guide-panel.after .tooltip:after,[dir=rtl] .guide-panel.before .tooltip:after{left:-5px;top:0}.timeline{width:120px}.timeline .item{font-size:12px!important;display:flex;text-align:center;align-items:center;height:auto;padding:10px;color:rgba(0,0,0,.87);cursor:pointer}.timeline .item:focus,.timeline .item:hover{background:rgba(0,0,0,.04)}.timeline .item .title span{-ms-word-break:keep-all;word-break:keep-all}.timeline .item .title span.time{font-size:12px}.timeline .item.active{border-left-color:#e91e63;border-left-width:1px;border-left-style:dotted}.configuration-diff{padding:8px;direction:ltr}.configuration-diff .scope .scope-content{margin-left:8px}.configuration-diff .scope .alternate,.configuration-diff .scope .brackets{cursor:pointer}.configuration-diff .scope.collapse .alternate{display:inline}.configuration-diff .scope .alternate,.configuration-diff .scope.collapse .scope-content{display:none}.configuration-diff .scope .structure{font-weight:500}.configuration-diff .scope .color{width:10px;height:10px;display:inline-block}.configuration-diff .scope .value:hover{-moz-text-decoration-line:underline;text-decoration-line:underline;-moz-text-decoration-style:dotted;text-decoration-style:dotted}.configuration-diff .scope.focus>.brackets{border:1px solid #000}.timeline{border-right:1px solid #d3d3d3}.timeline .mat-list-item.active:after{content:" ";background:#ff4081;width:6px;height:100%;top:0;position:absolute;right:0}body[dir=rtl].timeline{border-right:none;border-left:1px solid #d3d3d3}.nav-menu{background:#616161}.nav-menu,.nav-menu .mat-list-item,.nav-menu .mat-list-item .mat-icon{color:#fff}.nav-menu .mat-list-item.active:after{content:" ";border-right:12px solid #fafafa;border-top:28px solid transparent;border-bottom:28px solid transparent;width:0;height:0;right:0;top:0;position:absolute;box-sizing:border-box}.nav-menu.dialog{background:#424242}.nav-menu.dialog .mat-list-item.active:after{border-right-color:#424242}.nav-menu.nav-open .mat-list-item.active:after{border-right-color:#f5f5f5}[dir=rtl] .nav-menu.nav-open .mat-list-item.active:after{border-left-color:#f5f5f5}.sub-menu{background:#f5f5f5;border-right:2px solid #d3d3d3}.sub-menu .mat-list-item{color:#212121!important}.sub-menu .mat-list-item.active:after{background:#ff4081;border:0;width:6px;height:100%}.sub-menu,.sub-menu .mat-list-item .mat-icon{color:#212121}[dir=rtl] .nav-menu .mat-list-item.active:after{border-right:none;border-left:12px solid #fafafa;right:auto;left:0}[dir=rtl] .nav-menu .sub-menu{border-left:2px solid #d3d3d3;border-right:none}[dir=rtl] .nav-menu .sub-menu .mat-list-item.active:after{border:0}.mat-toolbar.nav-toolbar{border-radius:4px 4px 0 0}.loading{background:linear-gradient(to left,rgba(0,0,0,.42) 71%,rgba(0,0,0,.53) 14%,rgba(0,0,0,.57) 53%);-webkit-backface-visibility:hidden;animation:loading 20s linear infinite}[dir=rtl] .loading:before{left:unset;right:-200px;-moz-animation-fill-mode:backwards;-o-animation-fill-mode:backwards;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}@media (max-width:599px){.loading:before{height:58px}}.profile-name{color:#000}.comment{display:flex;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.comment .comment-body{flex:1 1 0%;margin:8px 0}.comment .comment-body img{max-width:350px;cursor:zoom-in}.comment .tool{opacity:0}.comment:hover .tool{opacity:1}.comment .modification{font-variant:all-small-caps}.comment .comment-actions{place-content:flex-end;align-items:flex-end;flex-direction:row;align-self:flex-end;box-sizing:border-box;display:flex;flex:1}.comment .comment-actions .mat-icon-button{line-height:22px;width:22px;height:22px}.comment .comment-actions .mat-icon-button .mat-icon{font-size:13px}.comment-score{font-size:small;align-self:center;padding:3px;color:#303f9f}.voted-true{color:#303f9f}.comment-score.score-negative,.voted-false{color:#d32f2f}.level{cursor:default;border-color:#9e9e9e;color:#000}.level.current-level{color:#3f51b5;border-color:#3f51b5}.level:hover{background:#fafafa}.level .bar .value{background:#43a047}.level .bar .overflow{border-color:#bdbdbd}.level .bar:not(.available) .overflow{background:#b71c1c}.view{color:#000}.view .nav-toolbar{opacity:.1}.view:hover .nav-toolbar{opacity:1}.mat-primary-text{color:#3f51b5}.mat-primary-container{background-color:#3f51b5}.mat-accent-text{color:#ff4081}.mat-accent-container{background-color:#ff4081}.document-state{border-radius:2px 3px;padding:4px;border-width:1px;border-style:solid}.column,.row{display:flex;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.column{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex{flex:1}.outline{border-color:rgba(0,0,0,.12)}.mat-radio-button~.mat-radio-button{margin-left:16px;margin-right:16px}em{font-weight:500;font-style:normal}.mat-row.mat-warn .mat-cell{color:#d32f2f}.negative-figure{color:#f44336}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop{background:#000;opacity:.85!important}.home-panel,.info-panel{display:block;overflow:auto;color:rgba(0,0,0,.87);background:#fff;box-shadow:0 0 5px 5px rgba(0,0,0,.1)}.home-panel{max-width:300px}.home-panel .mat-list-base .mat-list-item{overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.info-panel{min-width:65%;-webkit-animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both;animation:scale-up-center .3s cubic-bezier(.39,.575,.565,1) both}.divider{flex:1 1 auto}body,html{height:100%;overflow:hidden}body{font-family:Roboto,monospace,sans-serif;margin:0}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#555}a{color:#3f51b5;text-decoration:none;cursor:pointer}.mat-nav-list a{color:#3f51b5!important}.mat-row:hover{background:rgba(0,0,0,.04)}
@@ -82,13 +82,13 @@ export class DesignerCubeFilterComponent {
82
82
  }
83
83
  }
84
84
  DesignerCubeFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.5", ngImport: i0, type: DesignerCubeFilterComponent, deps: [{ token: i1.CubeService }, { token: i2.DesignerRef }, { token: i3.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
85
- DesignerCubeFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.5", type: DesignerCubeFilterComponent, selector: "bizdoc-designer-cube-filter", inputs: { cube: "cube", form: "form" }, usesOnChanges: true, ngImport: i0, template: "<h2 class=\"mat-title\">{{'Filters'|translate}}</h2>\r\n<div [formGroup]=\"form\" fxLayout=\"column\">\r\n <mat-form-field *ngFor=\"let a of cube.axes\" [ngSwitch]=\"a.selectionMode\" [attr.data-help]=\"'axis-'+a.name\">\r\n <ng-container *ngSwitchCase=\"'Pattern'\">\r\n <input matInput autocomplete=\"off\"\r\n [pattern]=\"pattern\" [autofocus]\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'Search'\">\r\n <input matInput autocomplete=\"off\" type=\"search\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"display\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n <mat-option *ngFor=\"let r of sources[a.name] | async | filter : 'value' : inp.value | slice:0:50\" [value]=\"r\">{{r.value}}</mat-option>\r\n </mat-autocomplete>\r\n <button mat-icon-button *ngIf=\"inp.value\" matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\" *ngSwitchDefault>\r\n <mat-option *ngIf=\"a.selectionMode !== 'Multiple'\">{{'All' | translate}}</mat-option>\r\n <mat-option *ngFor=\"let r of sources[a.name] | async\" [value]=\"r.key\">{{r.value}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n</div>\r\n", styles: ["form{padding:8px}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i4.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "component", type: i6.MatAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i6.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "component", type: i7.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i8.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i8.MatSuffix, selector: "[matSuffix]" }, { kind: "component", type: i9.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i10.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i11.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i12.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.SlicePipe, name: "slice" }, { kind: "pipe", type: i13.FilterPipe, name: "filter" }, { kind: "pipe", type: i14.TranslatePipe, name: "translate" }] });
85
+ DesignerCubeFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.5", type: DesignerCubeFilterComponent, selector: "bizdoc-designer-cube-filter", inputs: { cube: "cube", form: "form" }, usesOnChanges: true, ngImport: i0, template: "<h2 class=\"mat-title\">{{'Filters'|translate}}</h2>\r\n<div [formGroup]=\"form\" fxLayout=\"column\">\r\n <mat-form-field *ngFor=\"let a of cube.axes\" [ngSwitch]=\"a.selectionMode\" [attr.data-help]=\"'axis-'+a.name\">\r\n <ng-container *ngSwitchCase=\"'Pattern'\">\r\n <input matInput autocomplete=\"off\"\r\n [pattern]=\"pattern\" [autofocus]\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'AxisPatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'Search'\">\r\n <input matInput autocomplete=\"off\" type=\"search\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"display\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n <mat-option *ngFor=\"let r of sources[a.name] | async | filter : 'value' : inp.value | slice:0:50\" [value]=\"r\">{{r.value}}</mat-option>\r\n </mat-autocomplete>\r\n <button mat-icon-button *ngIf=\"inp.value\" matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'AxisPatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\" *ngSwitchDefault>\r\n <mat-option *ngIf=\"a.selectionMode !== 'Multiple'\">{{'All' | translate}}</mat-option>\r\n <mat-option *ngFor=\"let r of sources[a.name] | async\" [value]=\"r.key\">{{r.value}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n</div>\r\n", styles: ["form{padding:8px}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i4.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "component", type: i6.MatAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i6.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "component", type: i7.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i8.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i8.MatSuffix, selector: "[matSuffix]" }, { kind: "component", type: i9.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i10.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i11.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i12.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.SlicePipe, name: "slice" }, { kind: "pipe", type: i13.FilterPipe, name: "filter" }, { kind: "pipe", type: i14.TranslatePipe, name: "translate" }] });
86
86
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.5", ngImport: i0, type: DesignerCubeFilterComponent, decorators: [{
87
87
  type: Component,
88
- args: [{ selector: 'bizdoc-designer-cube-filter', template: "<h2 class=\"mat-title\">{{'Filters'|translate}}</h2>\r\n<div [formGroup]=\"form\" fxLayout=\"column\">\r\n <mat-form-field *ngFor=\"let a of cube.axes\" [ngSwitch]=\"a.selectionMode\" [attr.data-help]=\"'axis-'+a.name\">\r\n <ng-container *ngSwitchCase=\"'Pattern'\">\r\n <input matInput autocomplete=\"off\"\r\n [pattern]=\"pattern\" [autofocus]\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'Search'\">\r\n <input matInput autocomplete=\"off\" type=\"search\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"display\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n <mat-option *ngFor=\"let r of sources[a.name] | async | filter : 'value' : inp.value | slice:0:50\" [value]=\"r\">{{r.value}}</mat-option>\r\n </mat-autocomplete>\r\n <button mat-icon-button *ngIf=\"inp.value\" matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\" *ngSwitchDefault>\r\n <mat-option *ngIf=\"a.selectionMode !== 'Multiple'\">{{'All' | translate}}</mat-option>\r\n <mat-option *ngFor=\"let r of sources[a.name] | async\" [value]=\"r.key\">{{r.value}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n</div>\r\n", styles: ["form{padding:8px}\n"] }]
88
+ args: [{ selector: 'bizdoc-designer-cube-filter', template: "<h2 class=\"mat-title\">{{'Filters'|translate}}</h2>\r\n<div [formGroup]=\"form\" fxLayout=\"column\">\r\n <mat-form-field *ngFor=\"let a of cube.axes\" [ngSwitch]=\"a.selectionMode\" [attr.data-help]=\"'axis-'+a.name\">\r\n <ng-container *ngSwitchCase=\"'Pattern'\">\r\n <input matInput autocomplete=\"off\"\r\n [pattern]=\"pattern\" [autofocus]\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'AxisPatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'Search'\">\r\n <input matInput autocomplete=\"off\" type=\"search\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"display\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n <mat-option *ngFor=\"let r of sources[a.name] | async | filter : 'value' : inp.value | slice:0:50\" [value]=\"r\">{{r.value}}</mat-option>\r\n </mat-autocomplete>\r\n <button mat-icon-button *ngIf=\"inp.value\" matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'AxisPatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\" *ngSwitchDefault>\r\n <mat-option *ngIf=\"a.selectionMode !== 'Multiple'\">{{'All' | translate}}</mat-option>\r\n <mat-option *ngFor=\"let r of sources[a.name] | async\" [value]=\"r.key\">{{r.value}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n</div>\r\n", styles: ["form{padding:8px}\n"] }]
89
89
  }], ctorParameters: function () { return [{ type: i1.CubeService }, { type: i2.DesignerRef }, { type: i3.FormBuilder }]; }, propDecorators: { cube: [{
90
90
  type: Input
91
91
  }], form: [{
92
92
  type: Input
93
93
  }] } });
94
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2FyY2hpdGVjdHVyZS9jdWJlLWF4ZXMtZmlsdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvYWRtaW4vYXJjaGl0ZWN0dXJlL2N1YmUtYXhlcy1maWx0ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQXVDLE1BQU0sZUFBZSxDQUFDO0FBRXRGLE9BQU8sRUFBRSxPQUFPLEVBQWMsTUFBTSxNQUFNLENBQUM7QUFDM0MsT0FBTyxFQUFFLFlBQVksRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3RFLE9BQU8sRUFBRSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFFM0QsT0FBTyxFQUFFLGtCQUFrQixFQUFlLE1BQU0seUJBQXlCLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7QUFRMUUsc0JBQXNCO0FBQ3RCLE1BQU0sT0FBTywyQkFBMkI7SUE2Q3RDLGtCQUFrQjtJQUNsQixZQUE2QixRQUFxQixFQUN4QyxJQUFpQixFQUNSLEdBQWdCO1FBRk4sYUFBUSxHQUFSLFFBQVEsQ0FBYTtRQUN4QyxTQUFJLEdBQUosSUFBSSxDQUFhO1FBQ1IsUUFBRyxHQUFILEdBQUcsQ0FBYTtRQS9DMUIsWUFBTyxHQUFHLGtCQUFrQixDQUFDO1FBRzdCLFlBQU8sR0FBMkQsRUFBRSxDQUFDO1FBQzdELGdCQUFXLEdBQUcsRUFBa0MsQ0FBQztRQUNqRCxlQUFVLEdBQUcsRUFBa0MsQ0FBQztRQUNoRCxhQUFRLEdBQUcsSUFBSSxPQUFPLEVBQVEsQ0FBQztJQTBDaEQsQ0FBQztJQXpDRCxXQUFXLENBQUMsUUFBdUI7UUFDakMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsRUFBRSxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUE7UUFDOUYsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ3pCLElBQUksQ0FBQyxDQUFDLGFBQWEsS0FBSyxNQUFNO2dCQUFFLE9BQU87WUFDdkMsSUFBSSxFQUFFLFlBQVksRUFBRSxHQUFHLENBQUMsQ0FBQztZQUN6QixJQUFJLFlBQVksRUFBRTtnQkFDaEIsSUFBSSxTQUFTLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFDO2dCQUM3QyxPQUFPLFlBQVksRUFBRTtvQkFDbkIsSUFBSSxJQUFJLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQztvQkFDN0QsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7b0JBQzFCLElBQUksQ0FBQyxDQUFDLGFBQWEsS0FBSyxTQUFTLEVBQUU7d0JBQ2pDLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQzs0QkFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDOzs0QkFDMUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDO3FCQUNsRDtvQkFDRCxZQUFZLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQztpQkFDbEM7YUFDRjtZQUNELElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxLQUFLLFNBQVMsRUFBRTtnQkFDMUQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQzthQUMzRjtZQUNELE1BQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ3BDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxJQUFJLEVBQUUsSUFBSSxFQUFFLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUM7WUFDekQsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsRUFBRSxZQUFZLENBQUMsR0FBRyxDQUFDLEVBQ2hFLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUU7Z0JBQ3RDLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO29CQUMxQixLQUFLLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxFQUFFO3dCQUN6QyxJQUFJLElBQUksR0FBRyxFQUFFLENBQUM7d0JBQ2QsS0FBSyxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQzs0QkFDcEMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBaUIsQ0FBQyxLQUFLLENBQUM7d0JBQzFELE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDZCxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLElBQUksRUFBRSxJQUFJLENBQUM7NEJBQ25FLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQztxQkFDekI7WUFDTCxDQUFDLENBQUMsQ0FBQztRQUNQLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDO0lBQ3pELENBQUM7SUFNRCxPQUFPLENBQUMsUUFBUTtRQUNkLE9BQU8sUUFBUSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDMUMsQ0FBQztJQUNELE1BQU0sQ0FBQyxJQUFZLEVBQUUsR0FBaUM7UUFDcEQsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzFELENBQUM7SUFDRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQzNCLENBQUM7O3dIQTNEVSwyQkFBMkI7NEdBQTNCLDJCQUEyQixnSUNmeEMsa3lEQTBCQTsyRkRYYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsNkJBQTZCO3NKQU85QixJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25EZXN0cm95LCBPbkNoYW5nZXMsIFNpbXBsZUNoYW5nZXMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybUdyb3VwLCBGb3JtQnVpbGRlciwgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IFN1YmplY3QsIE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgZGVib3VuY2VUaW1lLCB0YWtlVW50aWwsIGZpbHRlciwgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBjbGVhbnVwLCBtYXBUb0FycmF5IH0gZnJvbSAnLi4vLi4vY29yZS9mdW5jdGlvbnMnO1xyXG5pbXBvcnQgeyBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50IH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYXV0b2NvbXBsZXRlJztcclxuaW1wb3J0IHsgQVhJU19WQUxVRV9QQVRURVJOLCBDdWJlU2VydmljZSB9IGZyb20gJy4uLy4uL2N1YmUvY3ViZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGVzaWduZXJSZWYsIEVsZW1lbnRNb2RlbCB9IGZyb20gJy4vZGVjbGFyYXRpb25zJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLWRlc2lnbmVyLWN1YmUtZmlsdGVyJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbi8qKiBmaWx0ZXIgY29tcG9uZW50Ki9cclxuZXhwb3J0IGNsYXNzIERlc2lnbmVyQ3ViZUZpbHRlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcclxuICByZWFkb25seSBwYXR0ZXJuID0gQVhJU19WQUxVRV9QQVRURVJOO1xyXG4gIEBJbnB1dCgpIGN1YmUhOiBFbGVtZW50TW9kZWw7XHJcbiAgQElucHV0KCkgZm9ybSE6IEZvcm1Hcm91cDtcclxuICByZWFkb25seSBzb3VyY2VzOiB7IFtheGlzOiBzdHJpbmddOiBPYnNlcnZhYmxlPHsgW2tleTogc3RyaW5nXTogYW55IH0+IH0gPSB7fTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9kZWNlbmRlbnRzID0ge30gYXMgeyBbbmFtZTogc3RyaW5nXTogc3RyaW5nW10gfTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9hbmNlc3RvcnMgPSB7fSBhcyB7IFtuYW1lOiBzdHJpbmddOiBzdHJpbmdbXSB9O1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG4gIG5nT25DaGFuZ2VzKF9jaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICBPYmplY3Qua2V5cyh0aGlzLmZvcm0uY29udHJvbHMpLmZvckVhY2goayA9PiB0aGlzLmZvcm0ucmVtb3ZlQ29udHJvbChrLCB7IGVtaXRFdmVudDogZmFsc2UgfSkpXHJcbiAgICB0aGlzLmN1YmUuYXhlcy5mb3JFYWNoKGEgPT4ge1xyXG4gICAgICBpZiAoYS5zZWxlY3Rpb25Nb2RlID09PSAnTm9uZScpIHJldHVybjtcclxuICAgICAgbGV0IHsgZGVzY2VuZGVudE9mIH0gPSBhO1xyXG4gICAgICBpZiAoZGVzY2VuZGVudE9mKSB7XHJcbiAgICAgICAgbGV0IGFuY2VzdG9ycyA9IHRoaXMuX2FuY2VzdG9yc1thLm5hbWVdID0gW107XHJcbiAgICAgICAgd2hpbGUgKGRlc2NlbmRlbnRPZikge1xyXG4gICAgICAgICAgbGV0IGF4aXMgPSB0aGlzLmN1YmUuYXhlcy5maW5kKGEgPT4gYS5uYW1lID09PSBkZXNjZW5kZW50T2YpO1xyXG4gICAgICAgICAgYW5jZXN0b3JzLnB1c2goYXhpcy5uYW1lKTtcclxuICAgICAgICAgIGlmIChhLnNlbGVjdGlvbk1vZGUgIT09ICdQYXR0ZXJuJykge1xyXG4gICAgICAgICAgICBpZiAoIXRoaXMuX2RlY2VuZGVudHNbZGVzY2VuZGVudE9mXSkgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdID0gW2EubmFtZV07XHJcbiAgICAgICAgICAgIGVsc2UgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdLnB1c2goYS5uYW1lKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICAgIGRlc2NlbmRlbnRPZiA9IGF4aXMuZGVzY2VuZGVudE9mO1xyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgICBpZiAoIXRoaXMuc291cmNlc1thLm5hbWVdICYmIGEuc2VsZWN0aW9uTW9kZSAhPT0gJ1BhdHRlcm4nKSB7XHJcbiAgICAgICAgdGhpcy5zb3VyY2VzW2EubmFtZV0gPSB0aGlzLl9zZXJ2aWNlLnZhbHVlcyh0aGlzLmN1YmUubmFtZSwgYS5uYW1lKS5waXBlKG1hcChtYXBUb0FycmF5KSk7XHJcbiAgICAgIH1cclxuICAgICAgY29uc3QgY3RybCA9IHRoaXMuX2ZiLmNvbnRyb2wobnVsbCk7XHJcbiAgICAgIHRoaXMuZm9ybS5hZGRDb250cm9sKGEubmFtZSwgY3RybCwgeyBlbWl0RXZlbnQ6IGZhbHNlIH0pO1xyXG4gICAgICBjdHJsLnZhbHVlQ2hhbmdlcy5waXBlKGZpbHRlcigoKSA9PiBjdHJsLnZhbGlkKSwgZGVib3VuY2VUaW1lKDIwMCksXHJcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kpKS5zdWJzY3JpYmUodiA9PiB7XHJcbiAgICAgICAgICBpZiAodGhpcy5fZGVjZW5kZW50c1thLm5hbWVdKVxyXG4gICAgICAgICAgICBmb3IgKGxldCBheGlzIG9mIHRoaXMuX2RlY2VuZGVudHNbYS5uYW1lXSkge1xyXG4gICAgICAgICAgICAgIGxldCBkZXBzID0ge307XHJcbiAgICAgICAgICAgICAgZm9yIChsZXQgbmFtZSBvZiB0aGlzLl9hbmNlc3RvcnNbYXhpc10pXHJcbiAgICAgICAgICAgICAgICBkZXBzW25hbWVdID0gKHRoaXMuZm9ybS5nZXQobmFtZSkgYXMgRm9ybUNvbnRyb2wpLnZhbHVlO1xyXG4gICAgICAgICAgICAgIGNsZWFudXAoZGVwcyk7XHJcbiAgICAgICAgICAgICAgdGhpcy5zb3VyY2VzW2F4aXNdID0gdGhpcy5fc2VydmljZS52YWx1ZXModGhpcy5jdWJlLm5hbWUsIGF4aXMsIGRlcHMpLlxyXG4gICAgICAgICAgICAgICAgcGlwZShtYXAobWFwVG9BcnJheSkpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfSk7XHJcbiAgICB9KTtcclxuICAgIHRoaXMuZm9ybS51cGRhdGVWYWx1ZUFuZFZhbGlkaXR5KHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcclxuICB9XHJcbiAgLyoqIGZpbHRlciBjdG9yICovXHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBfc2VydmljZTogQ3ViZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9yZWY6IERlc2lnbmVyUmVmLFxyXG4gICAgcHJpdmF0ZSByZWFkb25seSBfZmI6IEZvcm1CdWlsZGVyKSB7XHJcbiAgfVxyXG4gIGRpc3BsYXkoa2V5VmFsdWUpIHtcclxuICAgIHJldHVybiBrZXlWYWx1ZSA/IGtleVZhbHVlLnZhbHVlIDogbnVsbDtcclxuICB9XHJcbiAgY2hhbmdlKGF4aXM6IHN0cmluZywgZXZ0OiBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50KSB7XHJcbiAgICB0aGlzLmZvcm0uY29udHJvbHNbYXhpc10uc2V0VmFsdWUoZXZ0Lm9wdGlvbi52YWx1ZS5rZXkpO1xyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuX2Rlc3Ryb3kubmV4dCgpO1xyXG4gICAgdGhpcy5fZGVzdHJveS5jb21wbGV0ZSgpO1xyXG4gIH1cclxufVxyXG4iLCI8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydGaWx0ZXJzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbjxkaXYgW2Zvcm1Hcm91cF09XCJmb3JtXCIgZnhMYXlvdXQ9XCJjb2x1bW5cIj5cclxuICA8bWF0LWZvcm0tZmllbGQgKm5nRm9yPVwibGV0IGEgb2YgY3ViZS5heGVzXCIgW25nU3dpdGNoXT1cImEuc2VsZWN0aW9uTW9kZVwiIFthdHRyLmRhdGEtaGVscF09XCInYXhpcy0nK2EubmFtZVwiPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ1BhdHRlcm4nXCI+XHJcbiAgICAgIDxpbnB1dCBtYXRJbnB1dCBhdXRvY29tcGxldGU9XCJvZmZcIlxyXG4gICAgICAgICAgICAgW3BhdHRlcm5dPVwicGF0dGVyblwiIFthdXRvZm9jdXNdXHJcbiAgICAgICAgICAgICBbZm9ybUNvbnRyb2xOYW1lXT1cImEubmFtZVwiIFtwbGFjZWhvbGRlcl09XCJhLnRpdGxlfHxhLm5hbWVcIiAvPlxyXG4gICAgICA8bWF0LWVycm9yICpuZ0lmPVwiZm9ybS5jb250cm9sc1thLm5hbWVdLmludmFsaWRcIj57eydTaW1wbGVQYXR0ZXJuRXJyJyB8dHJhbnNsYXRlfX08L21hdC1lcnJvcj5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ1NlYXJjaCdcIj5cclxuICAgICAgPGlucHV0IG1hdElucHV0IGF1dG9jb21wbGV0ZT1cIm9mZlwiIHR5cGU9XCJzZWFyY2hcIlxyXG4gICAgICAgICAgICAgW21hdEF1dG9jb21wbGV0ZV09XCJzZWdtZW50XCIgI2lucFxyXG4gICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cImEudGl0bGV8fGEubmFtZVwiIC8+XHJcbiAgICAgIDxtYXQtYXV0b2NvbXBsZXRlICNzZWdtZW50IFtkaXNwbGF5V2l0aF09XCJkaXNwbGF5XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgKG9wdGlvblNlbGVjdGVkKT1cImNoYW5nZShhLm5hbWUsICRldmVudClcIj5cclxuICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgciBvZiBzb3VyY2VzW2EubmFtZV0gfCBhc3luYyB8IGZpbHRlciA6ICd2YWx1ZScgOiBpbnAudmFsdWUgfCBzbGljZTowOjUwXCIgW3ZhbHVlXT1cInJcIj57e3IudmFsdWV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgPC9tYXQtYXV0b2NvbXBsZXRlPlxyXG4gICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAqbmdJZj1cImlucC52YWx1ZVwiIG1hdFN1ZmZpeCBhcmlhLWxhYmVsPVwiXCIgKGNsaWNrKT1cImlucC52YWx1ZSA9ICcnOyBmb3JtLmNvbnRyb2xzW2EubmFtZV0uc2V0VmFsdWUobnVsbClcIj48bWF0LWljb24+Y2xvc2U8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gICAgICA8bWF0LWVycm9yICpuZ0lmPVwiZm9ybS5jb250cm9sc1thLm5hbWVdLmludmFsaWRcIj57eydTaW1wbGVQYXR0ZXJuRXJyJyB8dHJhbnNsYXRlfX08L21hdC1lcnJvcj5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPG1hdC1zZWxlY3QgW2Zvcm1Db250cm9sTmFtZV09XCJhLm5hbWVcIiBbcGxhY2Vob2xkZXJdPVwiYS50aXRsZXx8YS5uYW1lXCIgW211bHRpcGxlXT1cImEuc2VsZWN0aW9uTW9kZSA9PT0gJ011bHRpcGxlJ1wiICpuZ1N3aXRjaERlZmF1bHQ+XHJcbiAgICAgIDxtYXQtb3B0aW9uICpuZ0lmPVwiYS5zZWxlY3Rpb25Nb2RlICE9PSAnTXVsdGlwbGUnXCI+e3snQWxsJyB8IHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgciBvZiBzb3VyY2VzW2EubmFtZV0gfCBhc3luY1wiIFt2YWx1ZV09XCJyLmtleVwiPnt7ci52YWx1ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgPC9tYXQtc2VsZWN0PlxyXG4gIDwvbWF0LWZvcm0tZmllbGQ+XHJcbjwvZGl2PlxyXG4iXX0=
94
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2FyY2hpdGVjdHVyZS9jdWJlLWF4ZXMtZmlsdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvYWRtaW4vYXJjaGl0ZWN0dXJlL2N1YmUtYXhlcy1maWx0ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQXVDLE1BQU0sZUFBZSxDQUFDO0FBRXRGLE9BQU8sRUFBRSxPQUFPLEVBQWMsTUFBTSxNQUFNLENBQUM7QUFDM0MsT0FBTyxFQUFFLFlBQVksRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3RFLE9BQU8sRUFBRSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFFM0QsT0FBTyxFQUFFLGtCQUFrQixFQUFlLE1BQU0seUJBQXlCLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7QUFRMUUsc0JBQXNCO0FBQ3RCLE1BQU0sT0FBTywyQkFBMkI7SUE2Q3RDLGtCQUFrQjtJQUNsQixZQUE2QixRQUFxQixFQUN4QyxJQUFpQixFQUNSLEdBQWdCO1FBRk4sYUFBUSxHQUFSLFFBQVEsQ0FBYTtRQUN4QyxTQUFJLEdBQUosSUFBSSxDQUFhO1FBQ1IsUUFBRyxHQUFILEdBQUcsQ0FBYTtRQS9DMUIsWUFBTyxHQUFHLGtCQUFrQixDQUFDO1FBRzdCLFlBQU8sR0FBMkQsRUFBRSxDQUFDO1FBQzdELGdCQUFXLEdBQUcsRUFBa0MsQ0FBQztRQUNqRCxlQUFVLEdBQUcsRUFBa0MsQ0FBQztRQUNoRCxhQUFRLEdBQUcsSUFBSSxPQUFPLEVBQVEsQ0FBQztJQTBDaEQsQ0FBQztJQXpDRCxXQUFXLENBQUMsUUFBdUI7UUFDakMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsRUFBRSxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUE7UUFDOUYsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ3pCLElBQUksQ0FBQyxDQUFDLGFBQWEsS0FBSyxNQUFNO2dCQUFFLE9BQU87WUFDdkMsSUFBSSxFQUFFLFlBQVksRUFBRSxHQUFHLENBQUMsQ0FBQztZQUN6QixJQUFJLFlBQVksRUFBRTtnQkFDaEIsSUFBSSxTQUFTLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFDO2dCQUM3QyxPQUFPLFlBQVksRUFBRTtvQkFDbkIsSUFBSSxJQUFJLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxZQUFZLENBQUMsQ0FBQztvQkFDN0QsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7b0JBQzFCLElBQUksQ0FBQyxDQUFDLGFBQWEsS0FBSyxTQUFTLEVBQUU7d0JBQ2pDLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQzs0QkFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDOzs0QkFDMUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDO3FCQUNsRDtvQkFDRCxZQUFZLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQztpQkFDbEM7YUFDRjtZQUNELElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxLQUFLLFNBQVMsRUFBRTtnQkFDMUQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQzthQUMzRjtZQUNELE1BQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ3BDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxJQUFJLEVBQUUsSUFBSSxFQUFFLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUM7WUFDekQsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsRUFBRSxZQUFZLENBQUMsR0FBRyxDQUFDLEVBQ2hFLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUU7Z0JBQ3RDLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO29CQUMxQixLQUFLLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxFQUFFO3dCQUN6QyxJQUFJLElBQUksR0FBRyxFQUFFLENBQUM7d0JBQ2QsS0FBSyxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQzs0QkFDcEMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBaUIsQ0FBQyxLQUFLLENBQUM7d0JBQzFELE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDZCxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLElBQUksRUFBRSxJQUFJLENBQUM7NEJBQ25FLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQztxQkFDekI7WUFDTCxDQUFDLENBQUMsQ0FBQztRQUNQLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDO0lBQ3pELENBQUM7SUFNRCxPQUFPLENBQUMsUUFBUTtRQUNkLE9BQU8sUUFBUSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDMUMsQ0FBQztJQUNELE1BQU0sQ0FBQyxJQUFZLEVBQUUsR0FBaUM7UUFDcEQsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzFELENBQUM7SUFDRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQzNCLENBQUM7O3dIQTNEVSwyQkFBMkI7NEdBQTNCLDJCQUEyQixnSUNmeEMsOHhEQTBCQTsyRkRYYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsNkJBQTZCO3NKQU85QixJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25EZXN0cm95LCBPbkNoYW5nZXMsIFNpbXBsZUNoYW5nZXMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybUdyb3VwLCBGb3JtQnVpbGRlciwgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IFN1YmplY3QsIE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgZGVib3VuY2VUaW1lLCB0YWtlVW50aWwsIGZpbHRlciwgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBjbGVhbnVwLCBtYXBUb0FycmF5IH0gZnJvbSAnLi4vLi4vY29yZS9mdW5jdGlvbnMnO1xyXG5pbXBvcnQgeyBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50IH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYXV0b2NvbXBsZXRlJztcclxuaW1wb3J0IHsgQVhJU19WQUxVRV9QQVRURVJOLCBDdWJlU2VydmljZSB9IGZyb20gJy4uLy4uL2N1YmUvY3ViZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGVzaWduZXJSZWYsIEVsZW1lbnRNb2RlbCB9IGZyb20gJy4vZGVjbGFyYXRpb25zJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLWRlc2lnbmVyLWN1YmUtZmlsdGVyJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbi8qKiBmaWx0ZXIgY29tcG9uZW50Ki9cclxuZXhwb3J0IGNsYXNzIERlc2lnbmVyQ3ViZUZpbHRlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcclxuICByZWFkb25seSBwYXR0ZXJuID0gQVhJU19WQUxVRV9QQVRURVJOO1xyXG4gIEBJbnB1dCgpIGN1YmUhOiBFbGVtZW50TW9kZWw7XHJcbiAgQElucHV0KCkgZm9ybSE6IEZvcm1Hcm91cDtcclxuICByZWFkb25seSBzb3VyY2VzOiB7IFtheGlzOiBzdHJpbmddOiBPYnNlcnZhYmxlPHsgW2tleTogc3RyaW5nXTogYW55IH0+IH0gPSB7fTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9kZWNlbmRlbnRzID0ge30gYXMgeyBbbmFtZTogc3RyaW5nXTogc3RyaW5nW10gfTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9hbmNlc3RvcnMgPSB7fSBhcyB7IFtuYW1lOiBzdHJpbmddOiBzdHJpbmdbXSB9O1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG4gIG5nT25DaGFuZ2VzKF9jaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICBPYmplY3Qua2V5cyh0aGlzLmZvcm0uY29udHJvbHMpLmZvckVhY2goayA9PiB0aGlzLmZvcm0ucmVtb3ZlQ29udHJvbChrLCB7IGVtaXRFdmVudDogZmFsc2UgfSkpXHJcbiAgICB0aGlzLmN1YmUuYXhlcy5mb3JFYWNoKGEgPT4ge1xyXG4gICAgICBpZiAoYS5zZWxlY3Rpb25Nb2RlID09PSAnTm9uZScpIHJldHVybjtcclxuICAgICAgbGV0IHsgZGVzY2VuZGVudE9mIH0gPSBhO1xyXG4gICAgICBpZiAoZGVzY2VuZGVudE9mKSB7XHJcbiAgICAgICAgbGV0IGFuY2VzdG9ycyA9IHRoaXMuX2FuY2VzdG9yc1thLm5hbWVdID0gW107XHJcbiAgICAgICAgd2hpbGUgKGRlc2NlbmRlbnRPZikge1xyXG4gICAgICAgICAgbGV0IGF4aXMgPSB0aGlzLmN1YmUuYXhlcy5maW5kKGEgPT4gYS5uYW1lID09PSBkZXNjZW5kZW50T2YpO1xyXG4gICAgICAgICAgYW5jZXN0b3JzLnB1c2goYXhpcy5uYW1lKTtcclxuICAgICAgICAgIGlmIChhLnNlbGVjdGlvbk1vZGUgIT09ICdQYXR0ZXJuJykge1xyXG4gICAgICAgICAgICBpZiAoIXRoaXMuX2RlY2VuZGVudHNbZGVzY2VuZGVudE9mXSkgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdID0gW2EubmFtZV07XHJcbiAgICAgICAgICAgIGVsc2UgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdLnB1c2goYS5uYW1lKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICAgIGRlc2NlbmRlbnRPZiA9IGF4aXMuZGVzY2VuZGVudE9mO1xyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgICBpZiAoIXRoaXMuc291cmNlc1thLm5hbWVdICYmIGEuc2VsZWN0aW9uTW9kZSAhPT0gJ1BhdHRlcm4nKSB7XHJcbiAgICAgICAgdGhpcy5zb3VyY2VzW2EubmFtZV0gPSB0aGlzLl9zZXJ2aWNlLnZhbHVlcyh0aGlzLmN1YmUubmFtZSwgYS5uYW1lKS5waXBlKG1hcChtYXBUb0FycmF5KSk7XHJcbiAgICAgIH1cclxuICAgICAgY29uc3QgY3RybCA9IHRoaXMuX2ZiLmNvbnRyb2wobnVsbCk7XHJcbiAgICAgIHRoaXMuZm9ybS5hZGRDb250cm9sKGEubmFtZSwgY3RybCwgeyBlbWl0RXZlbnQ6IGZhbHNlIH0pO1xyXG4gICAgICBjdHJsLnZhbHVlQ2hhbmdlcy5waXBlKGZpbHRlcigoKSA9PiBjdHJsLnZhbGlkKSwgZGVib3VuY2VUaW1lKDIwMCksXHJcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kpKS5zdWJzY3JpYmUodiA9PiB7XHJcbiAgICAgICAgICBpZiAodGhpcy5fZGVjZW5kZW50c1thLm5hbWVdKVxyXG4gICAgICAgICAgICBmb3IgKGxldCBheGlzIG9mIHRoaXMuX2RlY2VuZGVudHNbYS5uYW1lXSkge1xyXG4gICAgICAgICAgICAgIGxldCBkZXBzID0ge307XHJcbiAgICAgICAgICAgICAgZm9yIChsZXQgbmFtZSBvZiB0aGlzLl9hbmNlc3RvcnNbYXhpc10pXHJcbiAgICAgICAgICAgICAgICBkZXBzW25hbWVdID0gKHRoaXMuZm9ybS5nZXQobmFtZSkgYXMgRm9ybUNvbnRyb2wpLnZhbHVlO1xyXG4gICAgICAgICAgICAgIGNsZWFudXAoZGVwcyk7XHJcbiAgICAgICAgICAgICAgdGhpcy5zb3VyY2VzW2F4aXNdID0gdGhpcy5fc2VydmljZS52YWx1ZXModGhpcy5jdWJlLm5hbWUsIGF4aXMsIGRlcHMpLlxyXG4gICAgICAgICAgICAgICAgcGlwZShtYXAobWFwVG9BcnJheSkpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfSk7XHJcbiAgICB9KTtcclxuICAgIHRoaXMuZm9ybS51cGRhdGVWYWx1ZUFuZFZhbGlkaXR5KHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcclxuICB9XHJcbiAgLyoqIGZpbHRlciBjdG9yICovXHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBfc2VydmljZTogQ3ViZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9yZWY6IERlc2lnbmVyUmVmLFxyXG4gICAgcHJpdmF0ZSByZWFkb25seSBfZmI6IEZvcm1CdWlsZGVyKSB7XHJcbiAgfVxyXG4gIGRpc3BsYXkoa2V5VmFsdWUpIHtcclxuICAgIHJldHVybiBrZXlWYWx1ZSA/IGtleVZhbHVlLnZhbHVlIDogbnVsbDtcclxuICB9XHJcbiAgY2hhbmdlKGF4aXM6IHN0cmluZywgZXZ0OiBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50KSB7XHJcbiAgICB0aGlzLmZvcm0uY29udHJvbHNbYXhpc10uc2V0VmFsdWUoZXZ0Lm9wdGlvbi52YWx1ZS5rZXkpO1xyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuX2Rlc3Ryb3kubmV4dCgpO1xyXG4gICAgdGhpcy5fZGVzdHJveS5jb21wbGV0ZSgpO1xyXG4gIH1cclxufVxyXG4iLCI8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydGaWx0ZXJzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbjxkaXYgW2Zvcm1Hcm91cF09XCJmb3JtXCIgZnhMYXlvdXQ9XCJjb2x1bW5cIj5cclxuICA8bWF0LWZvcm0tZmllbGQgKm5nRm9yPVwibGV0IGEgb2YgY3ViZS5heGVzXCIgW25nU3dpdGNoXT1cImEuc2VsZWN0aW9uTW9kZVwiIFthdHRyLmRhdGEtaGVscF09XCInYXhpcy0nK2EubmFtZVwiPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ1BhdHRlcm4nXCI+XHJcbiAgICAgIDxpbnB1dCBtYXRJbnB1dCBhdXRvY29tcGxldGU9XCJvZmZcIlxyXG4gICAgICAgICAgICAgW3BhdHRlcm5dPVwicGF0dGVyblwiIFthdXRvZm9jdXNdXHJcbiAgICAgICAgICAgICBbZm9ybUNvbnRyb2xOYW1lXT1cImEubmFtZVwiIFtwbGFjZWhvbGRlcl09XCJhLnRpdGxlfHxhLm5hbWVcIiAvPlxyXG4gICAgICA8bWF0LWVycm9yICpuZ0lmPVwiZm9ybS5jb250cm9sc1thLm5hbWVdLmludmFsaWRcIj57eydBeGlzUGF0dGVybkVycicgfHRyYW5zbGF0ZX19PC9tYXQtZXJyb3I+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidTZWFyY2gnXCI+XHJcbiAgICAgIDxpbnB1dCBtYXRJbnB1dCBhdXRvY29tcGxldGU9XCJvZmZcIiB0eXBlPVwic2VhcmNoXCJcclxuICAgICAgICAgICAgIFttYXRBdXRvY29tcGxldGVdPVwic2VnbWVudFwiICNpbnBcclxuICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJhLnRpdGxlfHxhLm5hbWVcIiAvPlxyXG4gICAgICA8bWF0LWF1dG9jb21wbGV0ZSAjc2VnbWVudCBbZGlzcGxheVdpdGhdPVwiZGlzcGxheVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIChvcHRpb25TZWxlY3RlZCk9XCJjaGFuZ2UoYS5uYW1lLCAkZXZlbnQpXCI+XHJcbiAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHIgb2Ygc291cmNlc1thLm5hbWVdIHwgYXN5bmMgfCBmaWx0ZXIgOiAndmFsdWUnIDogaW5wLnZhbHVlIHwgc2xpY2U6MDo1MFwiIFt2YWx1ZV09XCJyXCI+e3tyLnZhbHVlfX08L21hdC1vcHRpb24+XHJcbiAgICAgIDwvbWF0LWF1dG9jb21wbGV0ZT5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKm5nSWY9XCJpbnAudmFsdWVcIiBtYXRTdWZmaXggYXJpYS1sYWJlbD1cIlwiIChjbGljayk9XCJpbnAudmFsdWUgPSAnJzsgZm9ybS5jb250cm9sc1thLm5hbWVdLnNldFZhbHVlKG51bGwpXCI+PG1hdC1pY29uPmNsb3NlPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICAgICAgPG1hdC1lcnJvciAqbmdJZj1cImZvcm0uY29udHJvbHNbYS5uYW1lXS5pbnZhbGlkXCI+e3snQXhpc1BhdHRlcm5FcnInIHx0cmFuc2xhdGV9fTwvbWF0LWVycm9yPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8bWF0LXNlbGVjdCBbZm9ybUNvbnRyb2xOYW1lXT1cImEubmFtZVwiIFtwbGFjZWhvbGRlcl09XCJhLnRpdGxlfHxhLm5hbWVcIiBbbXVsdGlwbGVdPVwiYS5zZWxlY3Rpb25Nb2RlID09PSAnTXVsdGlwbGUnXCIgKm5nU3dpdGNoRGVmYXVsdD5cclxuICAgICAgPG1hdC1vcHRpb24gKm5nSWY9XCJhLnNlbGVjdGlvbk1vZGUgIT09ICdNdWx0aXBsZSdcIj57eydBbGwnIHwgdHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCByIG9mIHNvdXJjZXNbYS5uYW1lXSB8IGFzeW5jXCIgW3ZhbHVlXT1cInIua2V5XCI+e3tyLnZhbHVlfX08L21hdC1vcHRpb24+XHJcbiAgICA8L21hdC1zZWxlY3Q+XHJcbiAgPC9tYXQtZm9ybS1maWVsZD5cclxuPC9kaXY+XHJcbiJdfQ==
@@ -41,7 +41,7 @@ export function arrayOf(val) {
41
41
  return [val];
42
42
  return val;
43
43
  }
44
- const NAME_CHAR = /[A-Z]+/g, NON_NAME_CHAR = /[^\w]+/g;
44
+ const CAP_NAME_CHAR = /[A-Z]+/g, NON_NAME_CHAR = /[^\w]+/g;
45
45
  /**
46
46
  *
47
47
  * @param name
@@ -49,7 +49,14 @@ const NAME_CHAR = /[A-Z]+/g, NON_NAME_CHAR = /[^\w]+/g;
49
49
  export function programName(name) {
50
50
  return name.
51
51
  replace(' ', '-').
52
- replace(NAME_CHAR, (c, i) => (i > 0 && name.charAt(i - 1) !== '-' ? '-' : '') + c.toLowerCase()).
53
- replace(NON_NAME_CHAR, '_');
52
+ replace(CAP_NAME_CHAR, (c, i) => (i > 0 && name.charAt(i - 1) !== '-' ? '-' : '') + c.toLowerCase()).
53
+ replace(NON_NAME_CHAR, '');
54
54
  }
55
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVjbGFyYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9hcmNoaXRlY3R1cmUvZGVjbGFyYXRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHekMsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBRWhELE9BQU8sRUFBbUIsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ2hELE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixPQUFPLEVBQUUsV0FBVztJQUNwQixLQUFLLEVBQUUsU0FBUztJQUNoQixLQUFLLEVBQUUsU0FBUztJQUNoQixVQUFVLEVBQUUsY0FBYztJQUMxQixrQkFBa0IsRUFBRSxhQUFhO0lBQ2pDLFFBQVEsRUFBRSxZQUFZO0lBQ3RCLFFBQVEsRUFBRSxZQUFZO0lBQ3RCLE1BQU0sRUFBRSxVQUFVO0NBQ25CLENBQUM7QUFDRixNQUFNO0FBQ04sTUFBTSxPQUFPLFdBQVc7SUFFdEIsWUFBb0IsU0FBd0IsRUFDbEMsUUFBc0IsRUFDdkIsSUFBZ0I7UUFGTCxjQUFTLEdBQVQsU0FBUyxDQUFlO1FBQ2xDLGFBQVEsR0FBUixRQUFRLENBQWM7UUFDdkIsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUh6QixhQUFRLEdBQUcsSUFBSSxPQUFPLEVBQVcsQ0FBQztJQUdMLENBQUM7SUFDOUIsSUFBSSxRQUFRLEtBQW1CLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7SUFDdkQsSUFBSSxLQUFLLEtBQXFCLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDckQsTUFBTSxLQUFLLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDakQsTUFBTSxDQUFDLE9BQW9CO1FBQ3pCLE1BQU0sR0FBRyxHQUFHLElBQUksV0FBVyxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsT0FBdUIsRUFBRSxRQUFRLENBQUMsQ0FBQztRQUMvRSxNQUFNLFFBQVEsR0FBRyxRQUFRLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQ2hDLE9BQU8sRUFBRSxXQUFXLEVBQUUsUUFBUSxFQUFFLEdBQUc7YUFDcEMsQ0FBQyxFQUFHLElBQUksQ0FBQyxRQUF5QixDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzdDLE9BQXdCLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQztRQUM5QyxPQUFPLE9BQU8sQ0FBQztJQUNqQixDQUFDO0NBQ0Y7QUFTRCxNQUFNLFVBQVUsS0FBSyxDQUFDLE9BQXFCO0lBQ3pDLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7QUFDN0MsQ0FBQztBQUNELE1BQU0sVUFBVSxPQUFPLENBQUMsR0FBc0I7SUFDNUMsSUFBSSxDQUFDLEdBQUc7UUFBRSxPQUFPLEVBQUUsQ0FBQztJQUNwQixJQUFJLFFBQVEsQ0FBQyxHQUFHLENBQUM7UUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDaEMsT0FBTyxHQUFHLENBQUM7QUFDYixDQUFDO0FBRUQsTUFBTSxTQUFTLEdBQUcsU0FBUyxFQUN6QixhQUFhLEdBQUcsU0FBUyxDQUFDO0FBQzVCOzs7R0FHRztBQUNILE1BQU0sVUFBVSxXQUFXLENBQUMsSUFBWTtJQUN0QyxPQUFPLElBQUk7UUFDVCxPQUFPLENBQUMsR0FBRyxFQUFFLEdBQUcsQ0FBQztRQUNqQixPQUFPLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsV0FBVyxFQUFFLENBQUM7UUFDaEcsT0FBTyxDQUFDLGFBQWEsRUFBRSxHQUFHLENBQUMsQ0FBQztBQUNoQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0b3IgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuaW1wb3J0IHsgU2NvcGVUeXBlIH0gZnJvbSBcIi4uLy4uL2NvcmUvY29uZmlndXJhdGlvblwiO1xyXG5pbXBvcnQgeyBpc1N0cmluZyB9IGZyb20gXCIuLi8uLi9jb3JlL2Z1bmN0aW9uc1wiO1xyXG5pbXBvcnQgeyBBeGVzTWFwLCBDaGFydFR5cGUsIEN1YmVGaWx0ZXIsIEZpZWxkSW5mbywgRm9sZGVyQ29sdW1uLCBHdWlkZVN0ZXAsIFBvc2l0aW9uUG9saWN5LCBWaWV3VHlwZSB9IGZyb20gXCIuLi8uLi9jb3JlL21vZGVsc1wiO1xyXG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QsIFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xyXG5leHBvcnQgY29uc3QgRkFNSUxZX1NWRyA9IHtcclxuICBcIkF6dXJlXCI6IGBhenVyZS5zdmdgLFxyXG4gICdTQVAnOiBgc2FwLnN2Z2AsXHJcbiAgJ01mZyc6IGBxYWQuc3ZnYCxcclxuICAnUHJpb3JpdHknOiBgcHJpb3JpdHkuc3ZnYCxcclxuICAnQWN0aXZlIERpcmVjdG9yeSc6IGB3aW5kb3dzLnN2Z2AsXHJcbiAgJ0FtYXpvbic6IGBhbWF6b24uc3ZnYCxcclxuICAnR29vZ2xlJzogYGdvb2dsZS5zdmdgLFxyXG4gICdPa3RhJzogYG9rdGEuc3ZnYFxyXG59O1xyXG4vKiogKi9cclxuZXhwb3J0IGNsYXNzIERlc2lnbmVyUmVmPE8gPSBhbnk+IHtcclxuICBfdW5sb2NrJCA9IG5ldyBTdWJqZWN0PGJvb2xlYW4+KCk7XHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBfZGVzaWduZXI6IERlc2lnbmVyTW9kZWwsXHJcbiAgICBwcml2YXRlIF9lbGVtZW50OiBFbGVtZW50TW9kZWwsXHJcbiAgICBwdWJsaWMgbW9kZTogRGVzaWduTW9kZSkgeyB9XHJcbiAgZ2V0IGRlc2lnbmVyKCk6IERlc2lnbmVySW5mbyB7IHJldHVybiB0aGlzLl9kZXNpZ25lcjsgfVxyXG4gIGdldCBtb2RlbCgpOiBFbGVtZW50SW5mbzxPPiB7IHJldHVybiB0aGlzLl9lbGVtZW50OyB9XHJcbiAgdW5sb2NrKCkgeyByZXR1cm4gdGhpcy5fdW5sb2NrJC5hc09ic2VydmFibGUoKTsgfVxyXG4gIGNyZWF0ZShlbGVtZW50OiBFbGVtZW50SW5mbykge1xyXG4gICAgY29uc3QgcmVmID0gbmV3IERlc2lnbmVyUmVmKHRoaXMuX2Rlc2lnbmVyLCBlbGVtZW50IGFzIEVsZW1lbnRNb2RlbCwgJ3dpZGdldCcpO1xyXG4gICAgY29uc3QgaW5qZWN0b3IgPSBJbmplY3Rvci5jcmVhdGUoW3tcclxuICAgICAgcHJvdmlkZTogRGVzaWduZXJSZWYsIHVzZVZhbHVlOiByZWZcclxuICAgIH1dLCAodGhpcy5fZWxlbWVudCBhcyBFbGVtZW50TW9kZWwpLmluamVjdG9yKTtcclxuICAgIChlbGVtZW50IGFzIEVsZW1lbnRNb2RlbCkuaW5qZWN0b3IgPSBpbmplY3RvcjtcclxuICAgIHJldHVybiBlbGVtZW50O1xyXG4gIH1cclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIERlc2lnbmVyRWxlbWVudENvbXBvbmVudDxUPiB7XHJcbiAgbW9kZWw6IEVsZW1lbnRJbmZvPFQ+O1xyXG4gIG1vZGU6IERlc2lnbk1vZGU7XHJcbiAgZm9ybTogRm9ybUdyb3VwO1xyXG4gIG9uQ29udGludWU/KCk7XHJcbiAgb25GaW5pc2g/KCk7XHJcbn1cclxuZXhwb3J0IGRlY2xhcmUgdHlwZSBEZXNpZ25Nb2RlID0gJ2FkZCcgfCAnZWRpdCcgfCAnd2lkZ2V0JztcclxuZXhwb3J0IGZ1bmN0aW9uIGNsb25lKGVsZW1lbnQ6IEVsZW1lbnRNb2RlbCkge1xyXG4gIHJldHVybiBKU09OLnBhcnNlKEpTT04uc3RyaW5naWZ5KGVsZW1lbnQpKTtcclxufVxyXG5leHBvcnQgZnVuY3Rpb24gYXJyYXlPZih2YWw6IHN0cmluZyB8IHN0cmluZ1tdKSB7XHJcbiAgaWYgKCF2YWwpIHJldHVybiBbXTtcclxuICBpZiAoaXNTdHJpbmcodmFsKSkgcmV0dXJuIFt2YWxdO1xyXG4gIHJldHVybiB2YWw7XHJcbn1cclxuXHJcbmNvbnN0IE5BTUVfQ0hBUiA9IC9bQS1aXSsvZyxcclxuICBOT05fTkFNRV9DSEFSID0gL1teXFx3XSsvZztcclxuLyoqXHJcbiAqIFxyXG4gKiBAcGFyYW0gbmFtZVxyXG4gKi9cclxuZXhwb3J0IGZ1bmN0aW9uIHByb2dyYW1OYW1lKG5hbWU6IHN0cmluZykge1xyXG4gIHJldHVybiBuYW1lLlxyXG4gICAgcmVwbGFjZSgnICcsICctJykuXHJcbiAgICByZXBsYWNlKE5BTUVfQ0hBUiwgKGMsIGkpID0+IChpID4gMCAmJiBuYW1lLmNoYXJBdChpIC0gMSkgIT09ICctJyA/ICctJyA6ICcnKSArIGMudG9Mb3dlckNhc2UoKSkuXHJcbiAgICByZXBsYWNlKE5PTl9OQU1FX0NIQVIsICdfJyk7XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBEZXNpZ25lck1vZGVsIHtcclxuICB0eXBlczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0VHlwZXM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIGd1aWRlczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICByZXBvcnRzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRSZXBvcnRzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBmb3JtczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0Rm9ybXM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIGN1YmVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRDdWJlczogVGVtcGxhdGVJbmZvW107XHJcbiAgdXRpbGl0aWVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRVdGlsaXRpZXM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIGZvbGRlcnM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgcm9sZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgcnVsZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgdFJ1bGVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBwb2xpY2llczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0UG9saWNpZXM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIHZpZXdzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRWaWV3czogVGVtcGxhdGVJbmZvW107XHJcbiAgbm9kZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgdE5vZGVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICB3aWRnZXRzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRXaWRnZXRzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBhY3Rpb25zOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRBY3Rpb25zOiBUZW1wbGF0ZUluZm9bXTtcclxuICBhdHRyaWJ1dGVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIGNvbnRyb2xzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRBdHRyaWJ1dGVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBzdGF0ZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBUZW1wbGF0ZUluZm8ge1xyXG4gIHRlbXBsYXRlPzogc3RyaW5nO1xyXG4gIHRpdGxlPzogc3RyaW5nO1xyXG4gIGtleT86IHN0cmluZztcclxuICBpY29uPzogc3RyaW5nO1xyXG4gIGZhbWlseT86IHN0cmluZztcclxuICBoZWxwPzogc3RyaW5nO1xyXG4gIHR5cGU/OiBzdHJpbmc7XHJcbiAgYXJndW1lbnRzPzogRmllbGRJbmZvW107XHJcbiAgY29uZmlndXJhdGlvbkZpbGU/OiBzdHJpbmc7XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBFbGVtZW50TW9kZWw8VCA9IGFueT4ge1xyXG4gIGdyb3VwczogYW55W107XHJcbiAga2V5Pzogc3RyaW5nO1xyXG4gIGZvcm1hdD86IHN0cmluZztcclxuICBpbmplY3RvcjogSW5qZWN0b3I7XHJcbiAgb3JkaW5hbD86IG51bWJlcjtcclxuICBoZWxwPzogc3RyaW5nO1xyXG4gIGNvbmZpZ3VyYXRpb25GaWxlPzogc3RyaW5nO1xyXG4gIHRlbXBsYXRlPzogc3RyaW5nO1xyXG4gIGljb24/OiBzdHJpbmc7XHJcbiAgcmVzb3VyY2U/OiBzdHJpbmc7XHJcbiAgY29weU9mPzogc3RyaW5nO1xyXG4gIGZhbWlseT86IHN0cmluZztcclxuICB0eXBlPzogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIGRpc2FibGVkPzogYm9vbGVhbjtcclxuICBkcmFmdD86IGJvb2xlYW47XHJcbiAgZW1wdHk/OiBib29sZWFuO1xyXG4gIG9wdGlvbnM/OiBUO1xyXG4gIGFyZ3VtZW50cz86IEZpZWxkSW5mb1tdO1xyXG4gIHByaXZpbGVnZXM/OiBQcml2aWxlZ2VzTW9kZWw7XHJcbiAgZmlsdGVycz86IEN1YmVGaWx0ZXI7XHJcbiAgY29sdW1ucz86IEZvbGRlckNvbHVtbltdO1xyXG4gIGFub21hbHk/OiBBbm9tYWx5UG9saWN5O1xyXG4gIHZlcmI/OiBzdHJpbmc7XHJcbiAgeW91Pzogc3RyaW5nO1xyXG4gIHlvdU1hbGU/OiBzdHJpbmc7XHJcbiAgeW91RmVtYWxlPzogc3RyaW5nO1xyXG4gIHBhc3Q/OiBzdHJpbmc7XHJcbiAgcGFzdE1hbGU/OiBzdHJpbmc7XHJcbiAgcGFzdEZlbWFsZT86IHN0cmluZztcclxuICBhZGplY3RpdmU/OiBzdHJpbmc7XHJcbiAgbG9nZ2FibGU/OiBib29sZWFuO1xyXG4gIGFkamVjdGl2ZVBsdXJhbD86IHN0cmluZztcclxuICBhc3NpZ25hYmxlPzogYm9vbGVhbjtcclxuICBwb3NpdGlvbj86IFBvc2l0aW9uUG9saWN5O1xyXG4gIG11bHRpcGxlPzogYm9vbGVhbjtcclxuICBzaGFwZT86IHN0cmluZztcclxuICBncm91cD86IG51bWJlcjtcclxuICBkYXRhVHlwZT86IHN0cmluZztcclxuICBzdGVwcz86IEd1aWRlU3RlcFtdO1xyXG4gIGN1cnJlbmN5Q29kZT86IHN0cmluZztcclxuICBheGVzPzogQ3ViZUF4aXNNb2RlbFtdO1xyXG4gIHZpZXdzPzogQ3ViZVZpZXdNb2RlbFtdO1xyXG4gIGluZGljZXM/OiBDdWJlSW5kZXhNb2RlbFtdO1xyXG4gIHNjb3BlPzogU2NvcGVUeXBlO1xyXG4gIGNvbG9yPzogc3RyaW5nO1xyXG4gIGJhY2tncm91bmRDb2xvcj86IHN0cmluZztcclxuICBydWxlcz86IFBlcm1pc3Npb25Nb2RlbFtdO1xyXG4gIHBvc2l0aW9ucz86IHsgW2tleTogc3RyaW5nXTogc3RyaW5nW10gfTtcclxuICBwYXR0ZXJucz86IFBhdHRlcm5Nb2RlbFtdO1xyXG4gIHByaW9yaXR5PzogbnVtYmVyO1xyXG4gIGN1YmVzPzogc3RyaW5nW107XHJcbiAgdmFsdWU/OiBzdHJpbmc7XHJcbiAgc2VxdWVuY2VQb2xpY3k/OiAnQm90aCcgfCAnRWl0aGVyJyB8ICdIaWdoZXInO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgQ3ViZUluZGV4TW9kZWwge1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBhY2N1bXVsYXRlPzogYm9vbGVhbjtcclxuICBoaWRkZW4/OiBib29sZWFuO1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBDdWJlVmlld01vZGVsIHtcclxuICBwcml2aWxlZ2VzPzogUHJpdmlsZWdlc01vZGVsO1xyXG4gIHhBeGlzOiBzdHJpbmdbXTtcclxuICBzZXJpZXM/OiBzdHJpbmdbXTtcclxuICBmaWx0ZXJzPzogQXhlc01hcDtcclxuICBpbmRpY2VzPzogc3RyaW5nW107XHJcbiAgaWNvbj86IHN0cmluZztcclxuICBndWlkZT86IHN0cmluZztcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICB0eXBlOiBWaWV3VHlwZTtcclxuICBjaGFydFR5cGU/OiBDaGFydFR5cGU7XHJcbiAgaW5kaWNlc0NoYXJ0VHlwZT86IENoYXJ0VHlwZTtcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIFBhdHRlcm5Nb2RlbCB7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBheGVzOiBBeGVzTWFwO1xyXG4gIGhpZGRlbj86IGJvb2xlYW47XHJcbiAgcnVsZT86IHN0cmluZztcclxuICByb2xlcz86IHN0cmluZ1tdO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgQ3ViZUF4aXNNb2RlbCB7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgZGF0YVR5cGU6IHN0cmluZztcclxuICBjb21iaW5hdGlvbj86IGJvb2xlYW47XHJcbiAgaW5kZXhhYmxlPzogYm9vbGVhbjtcclxuICBzZW5zaXRpdmU/OiBib29sZWFuO1xyXG4gIHJlc291cmNlVHlwZT86IHN0cmluZztcclxuICBzZWxlY3Rpb25Nb2RlPzogJ1NpbmdsZScgfCAnUGF0dGVybicgfCAnTXVsdGlwbGUnIHwgJ1NlYXJjaCcgfCAnTm9uZSc7XHJcbiAgZGVzY2VuZGVudE9mPzogc3RyaW5nO1xyXG59XHJcbmV4cG9ydCB0eXBlIEFub21hbHlQb2xpY3kgPSAnUG9zaXRpb25zJyB8ICdSZWNpcGllbnRzJztcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgUGF0dGVybk1vZGVsIHtcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIHJlc291cmNlVHlwZT86IHN0cmluZztcclxuICBheGVzOiBBeGVzTWFwO1xyXG4gIHJ1bGU/OiBzdHJpbmc7XHJcbiAgcm9sZXM/OiBzdHJpbmdbXTtcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIFBlcm1pc3Npb25Nb2RlbCB7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgcnVsZT86IHN0cmluZztcclxuICByb2xlcz86IHN0cmluZ1tdO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgUHJpdmlsZWdlc01vZGVsIHtcclxuICBydWxlPzogc3RyaW5nO1xyXG4gIHJvbGVzPzogc3RyaW5nW107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBEZXNpZ25lckluZm8ge1xyXG4gIHR5cGVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIGd1aWRlczogRWxlbWVudEluZm9bXTtcclxuICByZXBvcnRzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHRSZXBvcnRzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBmb3JtczogRWxlbWVudEluZm9bXTtcclxuICBjdWJlczogRWxlbWVudEluZm9bXTtcclxuICB1dGlsaXRpZXM6IEVsZW1lbnRJbmZvW107XHJcbiAgZm9sZGVyczogRWxlbWVudEluZm9bXTtcclxuICBub2RlczogRWxlbWVudEluZm9bXTtcclxuICByb2xlczogRWxlbWVudEluZm9bXTtcclxuICBydWxlczogRWxlbWVudEluZm9bXTtcclxuICBwb2xpY2llczogRWxlbWVudEluZm9bXTtcclxuICB2aWV3czogRWxlbWVudEluZm9bXTtcclxuICB3aWRnZXRzOiBFbGVtZW50SW5mb1tdO1xyXG4gIGFjdGlvbnM6IEVsZW1lbnRJbmZvW107XHJcbiAgc3RhdGVzOiBFbGVtZW50SW5mb1tdO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgRWxlbWVudEluZm88VCA9IGFueT4ge1xyXG4gIGZhbWlseT86IHN0cmluZztcclxuICB0eXBlPzogc3RyaW5nO1xyXG4gIGtleT86IHN0cmluZztcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBkaXNhYmxlZD86IGJvb2xlYW47XHJcbiAgZHJhZnQ/OiBib29sZWFuO1xyXG4gIGVtcHR5PzogYm9vbGVhbjtcclxuICBvcHRpb25zPzogVDtcclxufVxyXG4iXX0=
55
+ export function localizeString(value) {
56
+ if (!value)
57
+ return null;
58
+ if (isString(value))
59
+ return value;
60
+ return Object.values(value)[0];
61
+ }
62
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVjbGFyYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9hcmNoaXRlY3R1cmUvZGVjbGFyYXRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHekMsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBRWhELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDL0IsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLE9BQU8sRUFBRSxXQUFXO0lBQ3BCLEtBQUssRUFBRSxTQUFTO0lBQ2hCLEtBQUssRUFBRSxTQUFTO0lBQ2hCLFVBQVUsRUFBRSxjQUFjO0lBQzFCLGtCQUFrQixFQUFFLGFBQWE7SUFDakMsUUFBUSxFQUFFLFlBQVk7SUFDdEIsUUFBUSxFQUFFLFlBQVk7SUFDdEIsTUFBTSxFQUFFLFVBQVU7Q0FDbkIsQ0FBQztBQUNGLE1BQU07QUFDTixNQUFNLE9BQU8sV0FBVztJQUV0QixZQUFvQixTQUF3QixFQUNsQyxRQUFzQixFQUN2QixJQUFnQjtRQUZMLGNBQVMsR0FBVCxTQUFTLENBQWU7UUFDbEMsYUFBUSxHQUFSLFFBQVEsQ0FBYztRQUN2QixTQUFJLEdBQUosSUFBSSxDQUFZO1FBSHpCLGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBVyxDQUFDO0lBR0wsQ0FBQztJQUM5QixJQUFJLFFBQVEsS0FBbUIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztJQUN2RCxJQUFJLEtBQUssS0FBcUIsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztJQUNyRCxNQUFNLEtBQUssT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLFlBQVksRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNqRCxNQUFNLENBQUMsT0FBb0I7UUFDekIsTUFBTSxHQUFHLEdBQUcsSUFBSSxXQUFXLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxPQUF1QixFQUFFLFFBQVEsQ0FBQyxDQUFDO1FBQy9FLE1BQU0sUUFBUSxHQUFHLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFDaEMsT0FBTyxFQUFFLFdBQVcsRUFBRSxRQUFRLEVBQUUsR0FBRzthQUNwQyxDQUFDLEVBQUcsSUFBSSxDQUFDLFFBQXlCLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDN0MsT0FBd0IsQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1FBQzlDLE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7Q0FDRjtBQVNELE1BQU0sVUFBVSxLQUFLLENBQUMsT0FBcUI7SUFDekMsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztBQUM3QyxDQUFDO0FBQ0QsTUFBTSxVQUFVLE9BQU8sQ0FBQyxHQUFzQjtJQUM1QyxJQUFJLENBQUMsR0FBRztRQUFFLE9BQU8sRUFBRSxDQUFDO0lBQ3BCLElBQUksUUFBUSxDQUFDLEdBQUcsQ0FBQztRQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUNoQyxPQUFPLEdBQUcsQ0FBQztBQUNiLENBQUM7QUFFRCxNQUFNLGFBQWEsR0FBRyxTQUFTLEVBQzdCLGFBQWEsR0FBRyxTQUFTLENBQUM7QUFDNUI7OztHQUdHO0FBQ0gsTUFBTSxVQUFVLFdBQVcsQ0FBQyxJQUFZO0lBQ3RDLE9BQU8sSUFBSTtRQUNULE9BQU8sQ0FBQyxHQUFHLEVBQUUsR0FBRyxDQUFDO1FBQ2pCLE9BQU8sQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxXQUFXLEVBQUUsQ0FBQztRQUNwRyxPQUFPLENBQUMsYUFBYSxFQUFFLEVBQUUsQ0FBQyxDQUFDO0FBQy9CLENBQUM7QUEwTEQsTUFBTSxVQUFVLGNBQWMsQ0FBQyxLQUFzQjtJQUNuRCxJQUFJLENBQUMsS0FBSztRQUFFLE9BQU8sSUFBSSxDQUFDO0lBQ3hCLElBQUksUUFBUSxDQUFDLEtBQUssQ0FBQztRQUNqQixPQUFPLEtBQUssQ0FBQztJQUNmLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztBQUNqQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0b3IgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuaW1wb3J0IHsgU2NvcGVUeXBlIH0gZnJvbSBcIi4uLy4uL2NvcmUvY29uZmlndXJhdGlvblwiO1xyXG5pbXBvcnQgeyBpc1N0cmluZyB9IGZyb20gXCIuLi8uLi9jb3JlL2Z1bmN0aW9uc1wiO1xyXG5pbXBvcnQgeyBBeGVzTWFwLCBDaGFydFR5cGUsIEN1YmVGaWx0ZXIsIEZpZWxkSW5mbywgRm9sZGVyQ29sdW1uLCBHdWlkZVN0ZXAsIExvY2FsaXplZFN0cmluZywgUG9zaXRpb25Qb2xpY3ksIFZpZXdUeXBlIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xyXG5leHBvcnQgY29uc3QgRkFNSUxZX1NWRyA9IHtcclxuICBcIkF6dXJlXCI6IGBhenVyZS5zdmdgLFxyXG4gICdTQVAnOiBgc2FwLnN2Z2AsXHJcbiAgJ01mZyc6IGBxYWQuc3ZnYCxcclxuICAnUHJpb3JpdHknOiBgcHJpb3JpdHkuc3ZnYCxcclxuICAnQWN0aXZlIERpcmVjdG9yeSc6IGB3aW5kb3dzLnN2Z2AsXHJcbiAgJ0FtYXpvbic6IGBhbWF6b24uc3ZnYCxcclxuICAnR29vZ2xlJzogYGdvb2dsZS5zdmdgLFxyXG4gICdPa3RhJzogYG9rdGEuc3ZnYFxyXG59O1xyXG4vKiogKi9cclxuZXhwb3J0IGNsYXNzIERlc2lnbmVyUmVmPE8gPSBhbnk+IHtcclxuICBfdW5sb2NrJCA9IG5ldyBTdWJqZWN0PGJvb2xlYW4+KCk7XHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBfZGVzaWduZXI6IERlc2lnbmVyTW9kZWwsXHJcbiAgICBwcml2YXRlIF9lbGVtZW50OiBFbGVtZW50TW9kZWwsXHJcbiAgICBwdWJsaWMgbW9kZTogRGVzaWduTW9kZSkgeyB9XHJcbiAgZ2V0IGRlc2lnbmVyKCk6IERlc2lnbmVySW5mbyB7IHJldHVybiB0aGlzLl9kZXNpZ25lcjsgfVxyXG4gIGdldCBtb2RlbCgpOiBFbGVtZW50SW5mbzxPPiB7IHJldHVybiB0aGlzLl9lbGVtZW50OyB9XHJcbiAgdW5sb2NrKCkgeyByZXR1cm4gdGhpcy5fdW5sb2NrJC5hc09ic2VydmFibGUoKTsgfVxyXG4gIGNyZWF0ZShlbGVtZW50OiBFbGVtZW50SW5mbykge1xyXG4gICAgY29uc3QgcmVmID0gbmV3IERlc2lnbmVyUmVmKHRoaXMuX2Rlc2lnbmVyLCBlbGVtZW50IGFzIEVsZW1lbnRNb2RlbCwgJ3dpZGdldCcpO1xyXG4gICAgY29uc3QgaW5qZWN0b3IgPSBJbmplY3Rvci5jcmVhdGUoW3tcclxuICAgICAgcHJvdmlkZTogRGVzaWduZXJSZWYsIHVzZVZhbHVlOiByZWZcclxuICAgIH1dLCAodGhpcy5fZWxlbWVudCBhcyBFbGVtZW50TW9kZWwpLmluamVjdG9yKTtcclxuICAgIChlbGVtZW50IGFzIEVsZW1lbnRNb2RlbCkuaW5qZWN0b3IgPSBpbmplY3RvcjtcclxuICAgIHJldHVybiBlbGVtZW50O1xyXG4gIH1cclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIERlc2lnbmVyRWxlbWVudENvbXBvbmVudDxUPiB7XHJcbiAgbW9kZWw6IEVsZW1lbnRJbmZvPFQ+O1xyXG4gIG1vZGU6IERlc2lnbk1vZGU7XHJcbiAgZm9ybTogRm9ybUdyb3VwO1xyXG4gIG9uQ29udGludWU/KCk7XHJcbiAgb25GaW5pc2g/KCk7XHJcbn1cclxuZXhwb3J0IGRlY2xhcmUgdHlwZSBEZXNpZ25Nb2RlID0gJ2FkZCcgfCAnZWRpdCcgfCAnd2lkZ2V0JztcclxuZXhwb3J0IGZ1bmN0aW9uIGNsb25lKGVsZW1lbnQ6IEVsZW1lbnRNb2RlbCkge1xyXG4gIHJldHVybiBKU09OLnBhcnNlKEpTT04uc3RyaW5naWZ5KGVsZW1lbnQpKTtcclxufVxyXG5leHBvcnQgZnVuY3Rpb24gYXJyYXlPZih2YWw6IHN0cmluZyB8IHN0cmluZ1tdKSB7XHJcbiAgaWYgKCF2YWwpIHJldHVybiBbXTtcclxuICBpZiAoaXNTdHJpbmcodmFsKSkgcmV0dXJuIFt2YWxdO1xyXG4gIHJldHVybiB2YWw7XHJcbn1cclxuXHJcbmNvbnN0IENBUF9OQU1FX0NIQVIgPSAvW0EtWl0rL2csXHJcbiAgTk9OX05BTUVfQ0hBUiA9IC9bXlxcd10rL2c7XHJcbi8qKlxyXG4gKiBcclxuICogQHBhcmFtIG5hbWVcclxuICovXHJcbmV4cG9ydCBmdW5jdGlvbiBwcm9ncmFtTmFtZShuYW1lOiBzdHJpbmcpIHtcclxuICByZXR1cm4gbmFtZS5cclxuICAgIHJlcGxhY2UoJyAnLCAnLScpLlxyXG4gICAgcmVwbGFjZShDQVBfTkFNRV9DSEFSLCAoYywgaSkgPT4gKGkgPiAwICYmIG5hbWUuY2hhckF0KGkgLSAxKSAhPT0gJy0nID8gJy0nIDogJycpICsgYy50b0xvd2VyQ2FzZSgpKS5cclxuICAgIHJlcGxhY2UoTk9OX05BTUVfQ0hBUiwgJycpO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgRGVzaWduZXJNb2RlbCB7XHJcbiAgdHlwZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgdFR5cGVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBndWlkZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgcmVwb3J0czogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0UmVwb3J0czogVGVtcGxhdGVJbmZvW107XHJcbiAgZm9ybXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgdEZvcm1zOiBUZW1wbGF0ZUluZm9bXTtcclxuICBjdWJlczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0Q3ViZXM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIHV0aWxpdGllczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0VXRpbGl0aWVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICBmb2xkZXJzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHJvbGVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHJ1bGVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHRSdWxlczogVGVtcGxhdGVJbmZvW107XHJcbiAgcG9saWNpZXM6IEVsZW1lbnRNb2RlbDxhbnk+W107XHJcbiAgdFBvbGljaWVzOiBUZW1wbGF0ZUluZm9bXTtcclxuICB2aWV3czogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0Vmlld3M6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIG5vZGVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG4gIHROb2RlczogVGVtcGxhdGVJbmZvW107XHJcbiAgd2lkZ2V0czogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0V2lkZ2V0czogVGVtcGxhdGVJbmZvW107XHJcbiAgYWN0aW9uczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0QWN0aW9uczogVGVtcGxhdGVJbmZvW107XHJcbiAgYXR0cmlidXRlczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICBjb250cm9sczogRWxlbWVudE1vZGVsPGFueT5bXTtcclxuICB0QXR0cmlidXRlczogVGVtcGxhdGVJbmZvW107XHJcbiAgc3RhdGVzOiBFbGVtZW50TW9kZWw8YW55PltdO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgVGVtcGxhdGVJbmZvIHtcclxuICB0ZW1wbGF0ZT86IHN0cmluZztcclxuICB0aXRsZT86IHN0cmluZztcclxuICBrZXk/OiBzdHJpbmc7XHJcbiAgaWNvbj86IHN0cmluZztcclxuICBmYW1pbHk/OiBzdHJpbmc7XHJcbiAgaGVscD86IHN0cmluZztcclxuICB0eXBlPzogc3RyaW5nO1xyXG4gIGFyZ3VtZW50cz86IEZpZWxkSW5mb1tdO1xyXG4gIGNvbmZpZ3VyYXRpb25GaWxlPzogc3RyaW5nO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgRWxlbWVudE1vZGVsPFQgPSBhbnk+IHtcclxuICBncm91cHM6IGFueVtdO1xyXG4gIGtleT86IHN0cmluZztcclxuICBmb3JtYXQ/OiBzdHJpbmc7XHJcbiAgaW5qZWN0b3I6IEluamVjdG9yO1xyXG4gIG9yZGluYWw/OiBudW1iZXI7XHJcbiAgaGVscD86IHN0cmluZztcclxuICBjb25maWd1cmF0aW9uRmlsZT86IHN0cmluZztcclxuICB0ZW1wbGF0ZT86IHN0cmluZztcclxuICBpY29uPzogc3RyaW5nO1xyXG4gIHJlc291cmNlVHlwZT86IHN0cmluZztcclxuICBjb3B5T2Y/OiBzdHJpbmc7XHJcbiAgZmFtaWx5Pzogc3RyaW5nO1xyXG4gIHR5cGU/OiBzdHJpbmc7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgZGlzYWJsZWQ/OiBib29sZWFuO1xyXG4gIGRyYWZ0PzogYm9vbGVhbjtcclxuICBlbXB0eT86IGJvb2xlYW47XHJcbiAgb3B0aW9ucz86IFQ7XHJcbiAgYXJndW1lbnRzPzogRmllbGRJbmZvW107XHJcbiAgcHJpdmlsZWdlcz86IFByaXZpbGVnZXNNb2RlbDtcclxuICBmaWx0ZXJzPzogQ3ViZUZpbHRlcjtcclxuICBjb2x1bW5zPzogRm9sZGVyQ29sdW1uW107XHJcbiAgYW5vbWFseT86IEFub21hbHlQb2xpY3k7XHJcbiAgdmVyYj86IHN0cmluZztcclxuICB5b3U/OiBzdHJpbmc7XHJcbiAgeW91TWFsZT86IHN0cmluZztcclxuICB5b3VGZW1hbGU/OiBzdHJpbmc7XHJcbiAgcGFzdD86IHN0cmluZztcclxuICBwYXN0TWFsZT86IHN0cmluZztcclxuICBwYXN0RmVtYWxlPzogc3RyaW5nO1xyXG4gIGFkamVjdGl2ZT86IHN0cmluZztcclxuICBsb2dnYWJsZT86IGJvb2xlYW47XHJcbiAgYWRqZWN0aXZlUGx1cmFsPzogc3RyaW5nO1xyXG4gIGFzc2lnbmFibGU/OiBib29sZWFuO1xyXG4gIHBvc2l0aW9uPzogUG9zaXRpb25Qb2xpY3k7XHJcbiAgbXVsdGlwbGU/OiBib29sZWFuO1xyXG4gIHNoYXBlPzogc3RyaW5nO1xyXG4gIGdyb3VwPzogbnVtYmVyO1xyXG4gIGRhdGFUeXBlPzogc3RyaW5nO1xyXG4gIHN0ZXBzPzogR3VpZGVTdGVwW107XHJcbiAgY3VycmVuY3lDb2RlPzogc3RyaW5nO1xyXG4gIGF4ZXM/OiBDdWJlQXhpc01vZGVsW107XHJcbiAgdmlld3M/OiBDdWJlVmlld01vZGVsW107XHJcbiAgaW5kaWNlcz86IEN1YmVJbmRleE1vZGVsW107XHJcbiAgc2NvcGU/OiBTY29wZVR5cGU7XHJcbiAgY29sb3I/OiBzdHJpbmc7XHJcbiAgYmFja2dyb3VuZENvbG9yPzogc3RyaW5nO1xyXG4gIHJ1bGVzPzogUGVybWlzc2lvbk1vZGVsW107XHJcbiAgcG9zaXRpb25zPzogeyBba2V5OiBzdHJpbmddOiBzdHJpbmdbXSB9O1xyXG4gIHBhdHRlcm5zPzogUGF0dGVybk1vZGVsW107XHJcbiAgcHJpb3JpdHk/OiBudW1iZXI7XHJcbiAgY3ViZXM/OiBzdHJpbmdbXTtcclxuICB2YWx1ZT86IHN0cmluZztcclxuICBzZXF1ZW5jZVBvbGljeT86ICdCb3RoJyB8ICdFaXRoZXInIHwgJ0hpZ2hlcic7XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBDdWJlSW5kZXhNb2RlbCB7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIGFjY3VtdWxhdGU/OiBib29sZWFuO1xyXG4gIGhpZGRlbj86IGJvb2xlYW47XHJcbiAgdGl0bGU6IHN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIEN1YmVWaWV3TW9kZWwge1xyXG4gIHByaXZpbGVnZXM/OiBQcml2aWxlZ2VzTW9kZWw7XHJcbiAgeEF4aXM6IHN0cmluZ1tdO1xyXG4gIHNlcmllcz86IHN0cmluZ1tdO1xyXG4gIGZpbHRlcnM/OiBBeGVzTWFwO1xyXG4gIGluZGljZXM/OiBzdHJpbmdbXTtcclxuICBpY29uPzogc3RyaW5nO1xyXG4gIGd1aWRlPzogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIHR5cGU6IFZpZXdUeXBlO1xyXG4gIGNoYXJ0VHlwZT86IENoYXJ0VHlwZTtcclxuICBpbmRpY2VzQ2hhcnRUeXBlPzogQ2hhcnRUeXBlO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgUGF0dGVybk1vZGVsIHtcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIGF4ZXM6IEF4ZXNNYXA7XHJcbiAgaGlkZGVuPzogYm9vbGVhbjtcclxuICBydWxlPzogc3RyaW5nO1xyXG4gIHJvbGVzPzogc3RyaW5nW107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBDdWJlQXhpc01vZGVsIHtcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBkYXRhVHlwZTogc3RyaW5nO1xyXG4gIGNvbWJpbmF0aW9uPzogYm9vbGVhbjtcclxuICBpbmRleGFibGU/OiBib29sZWFuO1xyXG4gIHNlbnNpdGl2ZT86IGJvb2xlYW47XHJcbiAgcmVzb3VyY2VUeXBlPzogc3RyaW5nO1xyXG4gIHNlbGVjdGlvbk1vZGU/OiAnU2luZ2xlJyB8ICdQYXR0ZXJuJyB8ICdNdWx0aXBsZScgfCAnU2VhcmNoJyB8ICdOb25lJztcclxuICBkZXNjZW5kZW50T2Y/OiBzdHJpbmc7XHJcbn1cclxuZXhwb3J0IHR5cGUgQW5vbWFseVBvbGljeSA9ICdQb3NpdGlvbnMnIHwgJ1JlY2lwaWVudHMnO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQYXR0ZXJuTW9kZWwge1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgcmVzb3VyY2VUeXBlPzogc3RyaW5nO1xyXG4gIGF4ZXM6IEF4ZXNNYXA7XHJcbiAgcnVsZT86IHN0cmluZztcclxuICByb2xlcz86IHN0cmluZ1tdO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgUGVybWlzc2lvbk1vZGVsIHtcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBydWxlPzogc3RyaW5nO1xyXG4gIHJvbGVzPzogc3RyaW5nW107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBQcml2aWxlZ2VzTW9kZWwge1xyXG4gIHJ1bGU/OiBzdHJpbmc7XHJcbiAgcm9sZXM/OiBzdHJpbmdbXTtcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIERlc2lnbmVySW5mbyB7XHJcbiAgdHlwZXM6IEVsZW1lbnRJbmZvW107XHJcbiAgZ3VpZGVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHJlcG9ydHM6IEVsZW1lbnRJbmZvW107XHJcbiAgdFJlcG9ydHM6IFRlbXBsYXRlSW5mb1tdO1xyXG4gIGZvcm1zOiBFbGVtZW50SW5mb1tdO1xyXG4gIGN1YmVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHV0aWxpdGllczogRWxlbWVudEluZm9bXTtcclxuICBmb2xkZXJzOiBFbGVtZW50SW5mb1tdO1xyXG4gIG5vZGVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHJvbGVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHJ1bGVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHBvbGljaWVzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHZpZXdzOiBFbGVtZW50SW5mb1tdO1xyXG4gIHdpZGdldHM6IEVsZW1lbnRJbmZvW107XHJcbiAgYWN0aW9uczogRWxlbWVudEluZm9bXTtcclxuICBzdGF0ZXM6IEVsZW1lbnRJbmZvW107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBFbGVtZW50SW5mbzxUID0gYW55PiB7XHJcbiAgZmFtaWx5Pzogc3RyaW5nO1xyXG4gIHR5cGU/OiBzdHJpbmc7XHJcbiAga2V5Pzogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICB0aXRsZTogTG9jYWxpemVkU3RyaW5nO1xyXG4gIGRpc2FibGVkPzogYm9vbGVhbjtcclxuICBkcmFmdD86IGJvb2xlYW47XHJcbiAgZW1wdHk/OiBib29sZWFuO1xyXG4gIG9wdGlvbnM/OiBUO1xyXG59XHJcbmV4cG9ydCBmdW5jdGlvbiBsb2NhbGl6ZVN0cmluZyh2YWx1ZTogTG9jYWxpemVkU3RyaW5nKTogc3RyaW5nIHwgbnVsbCB7XHJcbiAgaWYgKCF2YWx1ZSkgcmV0dXJuIG51bGw7XHJcbiAgaWYgKGlzU3RyaW5nKHZhbHVlKSlcclxuICAgIHJldHVybiB2YWx1ZTtcclxuICByZXR1cm4gT2JqZWN0LnZhbHVlcyh2YWx1ZSlbMF07XHJcbn1cclxuIl19