@charset "UTF-8";
body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
.batcom-text {
  /* doc
  ---
  title: z-index
  name: nn-z-index
  category: functions
  ---

  Because z-indices can get tricky we manage them in the theme.scss globally.

  Always use this mixin to set set a z-index.

  Read the Best Practice to get an full documentation:
  https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

  ## Live Template abbreviations
  ---
  -z

  ## Parameters
  ---
  @parameter $element = Name of the element (normally this will be the module name for the main stack)
  @parameter $list = Name of the list (default $z-indices). Must be only set for stack context
  @parameter $min = Set a minimum z-index which will be added to the list.

  ## Dependencies
  ---
  $z-indices variable in the theme.scss

  ## Example
  ---

  ```html_example

  // In the SASS theme file

  $z-indices: slider, modal, dialog, navigation;

  // In the SASS module file

  .modal {
      &__base {
          position: absolute;
          z-index: nn-z-index(modal);
      }
  }
  ```

  ## Source
  ---
  http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
  */
  /*
  * Mixin used to create the arrows for the menu items.
  */
  /* doc
  ---
  title: Clearfix
  name: clearfix
  category: mixins
  ---

  Clears after floating element

  Use this mixin only inside media queries where you can't use the
  abstract/extends/utils/_clearfix version, which adds less code to css

  ## Live Template abbreviations
  ---

  ## Example
  ---

  ```html_example
  @include clearfix;
  ```

  ## Source
  ---
  <https://css-tricks.com/snippets/css/clear-fix/>
  */
  /* doc
  ---
  title: Component Normalize / item Normalize
  name: font
  category: mixins
  ---
  Use this mixing to regular AEM wrappers and normalization.
  */
  /* stylelint-disable max-nesting-depth */
  /* stylelint-disable media-feature-name-no-vendor-prefix */
  /* doc
  ---
  title: Font
  name: font
  category: mixins
  ---

  Use this mixing to add fonts and normalization.

  Documentation:

  - https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
  - https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

  ## Parameters
  ---
  @param $font-type
  @param $normalize

  ## Dependencies
  ---
  /abstract/functions/nn-px-to-em
  /abstract/functions/nn-px-to-rem
  /abstract/functions/nn-px-to-unitless
  /abstract/mixins/font-icon
  */
  /*
  * This mixin is used to style headings of any level in a responsive way.
  * It uses the variables defined in the typography map to style the headings so
  * the levels it can effectively style are 1 to 6.
  * It also styles the use of spans and links inside the headings.
  *
  * @param {number} $level - The heading level to style.
  * @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
  */
  /* doc
  ---
  title: Visibility
  name: visibility
  category: mixins
  ---

  Mixin to add visibility to control to elements

  ---

  ## Example
  ---

  ```html_example
  .container {
    &__base {
      @include visible;

      @include breakpoint($b-01) {
        @include hidden;
      }
    }
  }
  ```
  */
  /*
  lt0 = (default) 1 column at a 100%
  lt1 = 2 columns (50%, 50%)
  lt2 = 2 columns (33%, 66%)
  lt3 = 2 columns (66%, 33%)
  lt4 = 3 columns (33%, 33%, 33%)
  lt5 = 4 columns (25%, 25%, 25%, 25%)

  ## Parameters
  @parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
  */
  /**
  * Reverse container
  */
}
.batcom-text body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}
@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom-text .batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom-text .batcom--loading::before, .batcom-text .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom-text .batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom-text .batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}
.batcom-text .batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}
.batcom-text li {
  position: relative;
  padding: 4px 0 4px 23px;
  text-indent: -23px;
}
.batcom-text ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-text ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet);
}
.batcom-container--primary-dark .batcom-text ul li::marker, .batcom-container--secondary-dark .batcom-text ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet-inverted);
}
.batcom-text ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-text ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number);
}
.batcom-container--primary-dark .batcom-text ol li::marker, .batcom-container--secondary-dark .batcom-text ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number-inverted);
}
.batcom-text ol li ol li {
  text-indent: -18px;
}
.batcom-text ul:has(li .bullet-icon) {
  list-style-type: "→ ";
}
.batcom-text .color-1 {
  color: var(--batcom-color-palette-1);
}
.batcom-text .color-2 {
  color: var(--batcom-color-palette-2);
}
.batcom-text .color-3 {
  color: var(--batcom-color-palette-3);
}
.batcom-text .color-4 {
  color: var(--batcom-color-palette-4);
}
.batcom-text .color-5 {
  color: var(--batcom-color-palette-5);
}
.batcom-text .color-6 {
  color: var(--batcom-color-palette-6);
}
.batcom-text .color-7 {
  color: var(--batcom-color-palette-7);
}
.batcom-text .color-8 {
  color: var(--batcom-color-palette-8);
}
.batcom-text .color-9 {
  color: var(--batcom-color-palette-9);
}
.batcom-text .h1-style {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h1);
  font-weight: var(--batcom-typography-h1-weight);
}
.batcom-text .h1-style span {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
}
.batcom-text .h1-style a {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h1-style a:hover, .batcom-text .h1-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-tablet);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-desktop);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h1-style, .batcom-container--secondary-dark .batcom-text .h1-style {
  color: var(--batcom-color-heading-h1-inverted);
}
.batcom-text .h2-style {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h2);
  font-weight: var(--batcom-typography-h2-weight);
}
.batcom-text .h2-style span {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
}
.batcom-text .h2-style a {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h2-style a:hover, .batcom-text .h2-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-tablet);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-desktop);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h2-style, .batcom-container--secondary-dark .batcom-text .h2-style {
  color: var(--batcom-color-heading-h2-inverted);
}
.batcom-text .h3-style {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h3);
  font-weight: var(--batcom-typography-h3-weight);
}
.batcom-text .h3-style span {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
}
.batcom-text .h3-style a {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h3-style a:hover, .batcom-text .h3-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-tablet);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-desktop);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h3-style, .batcom-container--secondary-dark .batcom-text .h3-style {
  color: var(--batcom-color-heading-h3-inverted);
}
.batcom-text .h4-style {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h4);
  font-weight: var(--batcom-typography-h4-weight);
}
.batcom-text .h4-style span {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
}
.batcom-text .h4-style a {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h4-style a:hover, .batcom-text .h4-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-tablet);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-desktop);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h4-style, .batcom-container--secondary-dark .batcom-text .h4-style {
  color: var(--batcom-color-heading-h4-inverted);
}
@media only screen and (max-width: 479px) {
  .batcom-text table thead {
    display: none;
  }
  .batcom-text table tr {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .batcom-text table tr th[data-header],
  .batcom-text table tr td[data-header] {
    display: flex;
    justify-content: space-between;
  }
  .batcom-text table tr th[data-header]::before,
  .batcom-text table tr td[data-header]::before {
    content: attr(data-header);
  }
}
.batcom-text thead th {
  vertical-align: top;
}
.batcom-text--image-right img {
  width: 100%;
  padding-bottom: var(--batcom-layout-text-image-padding-right-bottom);
}
@media only screen and (min-width: 480px) {
  .batcom-text--image-right img {
    padding-top: var(--batcom-layout-text-image-padding-right-top);
    padding-right: var(--batcom-layout-text-image-padding-right-right);
    padding-left: var(--batcom-layout-text-image-padding-right-left);
    width: auto;
    float: right;
  }
}
.batcom-text--image-left img {
  width: 100%;
  padding-bottom: var(--batcom-layout-text-image-padding-left-bottom);
}
@media only screen and (min-width: 480px) {
  .batcom-text--image-left img {
    padding-top: var(--batcom-layout-text-image-padding-left-top);
    padding-right: var(--batcom-layout-text-image-padding-left-right);
    padding-left: var(--batcom-layout-text-image-padding-left-left);
    width: auto;
    float: left;
  }
}
.batcom-text--with-margin .cmp-text > p {
  margin-bottom: var(--batcom-layout-text-bottom-margin);
}
.batcom-text--with-margin .cmp-text > :where(ul, ol) {
  margin-bottom: var(--batcom-layout-text-list-bottom-margin);
}
.batcom-text--with-margin .cmp-text > :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: var(--batcom-layout-text-title-bottom-margin);
}
.batcom-text--with-padding {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  .batcom-text--with-padding {
    padding: 24px;
  }
}
.batcom-text .bottom-margin {
  display: inline-block;
  margin-bottom: var(--batcom-layout-text-bottom-margin);
}
.batcom-text .quote {
  position: relative;
  padding-top: 28px;
  margin-top: 12px;
}
.batcom-text .quote, .batcom-text .quote-author {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 7px;
  display: block;
}
.batcom-text .quote::after {
  content: "";
  height: 27px;
  width: 27px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quote.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quote.svg");
  background-color: var(--batcom-color-palette-1);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: absolute;
  top: -8px;
  left: 0;
}
.batcom-text .quote-author {
  margin-top: 5px;
}
@media only screen and (min-width: 480px) {
  .batcom-text .quote-author {
    font-size: var(--batcom-typography-x-x-small-size-desktop);
  }
}
.batcom-text .color-1 .quote::after {
  background-color: var(--batcom-color-palette-1);
}
.batcom-text .color-2 .quote::after {
  background-color: var(--batcom-color-palette-2);
}
.batcom-text .color-3 .quote::after {
  background-color: var(--batcom-color-palette-3);
}
.batcom-text .color-4 .quote::after {
  background-color: var(--batcom-color-palette-4);
}
.batcom-text .color-5 .quote::after {
  background-color: var(--batcom-color-palette-5);
}
.batcom-text .color-6 .quote::after {
  background-color: var(--batcom-color-palette-6);
}
.batcom-text .color-7 .quote::after {
  background-color: var(--batcom-color-palette-7);
}
.batcom-text .color-8 .quote::after {
  background-color: var(--batcom-color-palette-8);
}
.batcom-text .color-9 .quote::after {
  background-color: var(--batcom-color-palette-9);
}
.batcom-text--center-align {
  text-align: center;
}
.batcom-text.batcom-space--smallBottom {
  margin-bottom: 24px;
}
.batcom-text__heading-styles h1 {
  font-family: var(--batcom-font-face-2-name);
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  color: #2B2B2B;
}
.batcom-text__heading-styles h1 span {
  font-size: 44px;
}
.batcom-text__heading-styles p {
  font-family: var(--batcom-font-face-3-name);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #2B2B2B;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRleHQvYmF0Y29tLXRleHQuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRleHQvYmF0Y29tLXRleHQuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL3RoZW1lL2dsb2JhbHN0eWxlcy9nbG9iYWwtbGlzdC1lbGVtZW50cy1zdHlsZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC90aGVtZS9nbG9iYWxzdHlsZXMvZ2xvYmFsLWNvbG9ycy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxnQkFBZ0I7QUNNaEI7RUFDRSxnQkFBQTtFQUNBLGVBQUE7RUFDQSxRQUFBO0FESkY7O0FFQ0E7RUFDRTtJQUNFLHVDQUFBO0VGRUY7RUVDQTtJQUNFLHVDQUFBO0VGQ0Y7RUVFQTtJQUNFLHlCQUFBO0VGQUY7QUFDRjtBRUdBO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0Esc0JBQUE7RUFDQSxzQ0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7QUZERjtBRUdFO0VBRUUsa0JBQUE7RUFDQSxXQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EseUJBQUE7RUFDQSxzQ0FBQTtBRkZKO0FFS0U7RUFDRSxxQkFBQTtFQUNBLFdBQUE7QUZISjtBRU1FO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FGSko7O0FH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QUNBLGNBQUE7QWJzbkJOO0Fhbm5CSTtFQUNFLFdBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtFQUNBLG9HQUFBO1VBQUEsNEZBQUE7RUFDQSwrQ0FBQTtFQUNBLHVCQUFBO1VBQUEsZUFBQTtFQUNBLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLE9BQUE7QWJxbkJOO0FhbG5CSTtFQUNFLGVBQUE7QWJvbkJOO0FnQjlzQkU7RUh5RkU7SUFJSSwwREFBQTtFYnFuQk47QUFDRjtBYS9tQkk7RUFDRSwrQ0FBQTtBYmluQk47QWFsbkJJO0VBQ0UsK0NBQUE7QWJvbkJOO0Fhcm5CSTtFQUNFLCtDQUFBO0FidW5CTjtBYXhuQkk7RUFDRSwrQ0FBQTtBYjBuQk47QWEzbkJJO0VBQ0UsK0NBQUE7QWI2bkJOO0FhOW5CSTtFQUNFLCtDQUFBO0FiZ29CTjtBYWpvQkk7RUFDRSwrQ0FBQTtBYm1vQk47QWFwb0JJO0VBQ0UsK0NBQUE7QWJzb0JOO0Fhdm9CSTtFQUNFLCtDQUFBO0FieW9CTjtBYXJvQkU7RUFDRSxrQkFBQTtBYnVvQko7QWFwb0JFO0VBQ0UsbUJBQUE7QWJzb0JKO0FhbG9CSTtFQUNFLDJDQUFBO0VBQ0EsZUFBQTtFQUNBLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxjQS9JSztBYm14Qlg7QWFsb0JNO0VBQ0UsZUFBQTtBYm9vQlI7QWEvbkJJO0VBQ0UsMkNBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLGNBNUpLO0FiNnhCWCIsImZpbGUiOiIuLi9zcmMvbWFpbi9qY3Jfcm9vdC9hcHBzL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZXh0L2JhdGNvbS10ZXh0LmJ1bmRsZS5jc3MifQ== */