﻿body {
  background-color: var(--info-background-color);
  --background-color-1: #ffffff;
  --background-color-2: #222222;
  --color-brown-1: #C69F80;
  --color-brown-2: #4F593F;
  --color-brown-3: #725438;
  --color-brown-4: #ffffff;
  --color-brown-5: #81573A;
  --color-brown-6: #E1D7CE;
  --color-teal-1: #2D372F;
  --color-teal-2: #C6D0B6;
  --color-teal-3: #6D7C54;
  --color-teal-4: #C6D0B6;
  --color-red-1: #720E1A;
  --color-red-2: #B17777;
  --color-red-3: #ffffff;
  --color-red-4: #4D1D1D;
  --color-blue-1: #111E2E;
  --color-blue-2: #A77459;
  --color-blue-3: #ffffff;
  --color-olive-1: #2E2D11;
  --color-olive-2: #A79F59;
  --color-olive-3: #ffffff;
  --color-white-1: #ffffff;
  --color-white-2: #D9D9D9;
  --color-white-3: #666666;
  --color-black-1: #222222;
  --color-black-2: #666666;
  --color-black-3: #ffffff;
  --color-black-4: #d9d9d9;
  --info-bg-1: #EAEAEA;
  --contact-bg-1: #ffffff;
  --contact-bg-2: #222222;
  --about-text-color: var(--color-brown-1);
  --menu-background-color: var(--color-brown-1);
  --menu-scrolling-text-color: var(--color-brown-2);
  --menu-button-color: var(--color-brown-3);
  --menu-button-text-color: var(--color-brown-4);
  --info-background-color: var(--info-bg-1);
  --info-cuisines-color: var(--color-brown-6);
  --cuisines-text-color: var(--color-brown-5);
  --info-text-color: var(--color-brown-5);
  --info-icon-color: var(--color-brown-5);
  --facilities-background-color: var(--color-brown-5);
  --payment-background-color: var(--color-brown-6);
  --contact-background-color: var(--contact-bg-1);
  --payment-text-color: var(--color-brown-5);
  --contact-title-color: var(--color-brown-5);
  --contact-text-color: var(--color-brown-5);
  --contact-circle-color: var(--color-brown-6);
  --body-background-color: var(--background-color-1);
}

.theme-colors {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  padding: 8px;
  width: 100%;
  background-color: #ffffff;
  z-index: 512;
}
.theme-colors .miz-button {
  height: 32px;
  width: 32px;
  line-height: 32px;
  display: flex;
  padding: 0;
}

.menu {
  margin-top: 52px;
  margin-bottom: 196px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 120px;
  background: var(--menu-button-color);
  color: var(--menu-button-text-color);
  font-family: Judson;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  appearance: none;
  border: 0;
  outline: 0;
  white-space: nowrap;
}

.miz-button {
  height: 64px;
  line-height: 64px;
  appearance: none;
  outline: none;
  border: 0;
  border-radius: 64px;
  padding: 0 32px;
  font-size: 24px;
}
.miz-button:not(.miz-button-outline) {
  background-color: var(--menu-button-color);
  color: var(--menu-button-text-color);
}
.miz-button.miz-button-outline {
  border: 1px solid var(--miz-white-0);
  background-color: transparent;
  color: var(--miz-white-0);
}

.miz-section {
  margin: 0;
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .miz-section {
    margin: 0;
    max-width: 100%;
  }
}

.back-to-top:hover {
  cursor: pointer;
  background-color: #333;
}

.back-to-top:active {
  background-color: #555;
}

.back-to-top {
  background-color: rgba(79, 89, 63, 0.3);
  justify-content: center;
  padding: 12px;
  bottom: 64px;
  right: 64px;
  position: fixed;
  z-index: 99;
  border: none;
  border-radius: 100%;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 480px) {
  .back-to-top {
    background-color: rgba(79, 89, 63, 0.3);
    justify-content: center;
    padding: 12px;
    bottom: 34px;
    right: 34px;
    position: fixed;
    z-index: 99;
    border: none;
    border-radius: 100%;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
  }
}

.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.floating-contact .miz-button {
  width: 64px;
  height: 64px;
  line-height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-contact .miz-button i {
  font-size: 32px;
}
.floating-contact .miz-button svg {
  width: 30px;
  height: 30px;
}
.floating-contact .miz-button svg, .floating-contact .miz-button svg * {
  fill: var(--miz-white-0);
}

.restaurant-profile-about {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 992px) {
  .restaurant-profile-about {
    padding: 128px;
  }
}
.restaurant-profile-about:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--miz-black-a1);
  mix-blend-mode: multiply;
}
.restaurant-profile-about-brand, .restaurant-profile-about-info {
  position: relative;
  z-index: 5;
  color: var(--miz-white-0);
}
.restaurant-profile-about-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.restaurant-profile-about-brand .logo {
  width: 164px;
  height: 164px;
  object-fit: cover;
}
.restaurant-profile-about-brand .brand {
  display: flex;
  flex-direction: column;
  position: relative;
}
.restaurant-profile-about-brand .brand .tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--miz-white-0);
  z-index: 5;
  border-radius: 48px;
  padding: 4px 8px;
  text-transform: uppercase;
  color: var(--menu-button-color);
  font-size: 12px;
  font-weight: 600;
}
.restaurant-profile-about-brand h3 {
  font-size: 36px;
}
.restaurant-profile-about-brand .rating {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.restaurant-profile-about-brand .rating .star {
  color: var(--miz-second);
  font-size: 32px;
}
.restaurant-profile-about-brand .rating .review {
  font-size: 12px;
}
.restaurant-profile-about-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.restaurant-profile-about-info p {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
.restaurant-profile-about-info .actions {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .restaurant-profile-about-info .actions {
    flex-direction: row;
  }
}
.restaurant-profile-gallery {
  background-color: var(--menu-background-color);
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  max-width: 1366px;
}
@media (min-width: 992px) {
  .restaurant-profile-gallery {
    margin: -64px auto 0;
    border-radius: 4px;
  }
}
.restaurant-profile-gallery .swiper {
  margin: 8px;
  position: relative;
  overflow: hidden;
}
.restaurant-profile-gallery .swiper-slide {
  width: auto !important;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.restaurant-profile-gallery .swiper-slide img {
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.restaurant-profile-gallery .swiper .swiper-button-next, .restaurant-profile-gallery .swiper .swiper-button-prev {
  top: 0;
  bottom: 0;
  background-color: var(--miz-black-a3);
}
.restaurant-profile-gallery .swiper .swiper-button-next:after, .restaurant-profile-gallery .swiper .swiper-button-prev:after {
  font-family: "Material Design Icons";
  font-size: 48px;
  color: var(--miz-white-0);
}
.restaurant-profile-gallery .swiper .swiper-button-next {
  right: 0;
}
.restaurant-profile-gallery .swiper .swiper-button-next:after {
  content: "\f0142";
}
.restaurant-profile-gallery .swiper .swiper-button-prev {
  left: 0;
}
.restaurant-profile-gallery .swiper .swiper-button-prev:after {
  content: "\f0141";
}
.restaurant-profile-info {
  background-color: var(--info-background-color);
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 32px;
}
@media (min-width: 992px) {
  .restaurant-profile-info {
    padding: 64px;
  }
}
.restaurant-profile-info .title {
  color: var(--info-text-color);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media (min-width: 992px) {
  .restaurant-profile-info .title {
    color: var(--info-text-color);
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }
}
.restaurant-profile-info .seperator {
  fill: var(--info-text-color);
  max-width: 1200px;
  margin: 16px auto;
}
.restaurant-profile-info-cuisines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.restaurant-profile-info-cuisines .cuisines-icon {
  display: flex;
  width: 88px;
  height: 88px;
  fill: var(--info-icon-color) !important;
}
.restaurant-profile-info-cuisines .cuisines-title {
  color: var(--info-text-color);
  font-size: 36px;
}
.restaurant-profile-info-cuisines .cuisines-contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .restaurant-profile-info-cuisines .cuisines-contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .restaurant-profile-info-cuisines .cuisines-contents {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .restaurant-profile-info-cuisines .cuisines-contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.restaurant-profile-info-cuisines .cuisines-content {
  width: 100%;
  color: var(--cuisines-text-color);
  background-color: var(--info-cuisines-color);
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media (min-width: 992px) {
  .restaurant-profile-info-cuisines .cuisines-content {
    width: auto;
  }
}
.restaurant-profile-info-serving {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .restaurant-profile-info-serving {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .restaurant-profile-info-serving {
    grid-template-columns: repeat(6, 1fr);
  }
}
.restaurant-profile-info-serving .info-content-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.restaurant-profile-info-serving .info-content-details .info-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  fill: var(--info-icon-color);
}
.restaurant-profile-info-serving .info-content-details .info-icon * {
  fill: var(--info-icon-color);
}
.restaurant-profile-info-serving .info-content-details .info-text, .restaurant-profile-info-serving .info-content-details .info-content {
  color: var(--info-icon-color);
}
.restaurant-profile-info-serving .info-content-details .info-text {
  font-weight: 600;
}
.restaurant-profile-info-serving .info-content-details .info-content {
  padding: 0 16px;
  background-color: var(--info-cuisines-color);
  margin-top: 16px;
  border-radius: 48px;
  min-width: 64px;
  text-align: center;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 42px;
  height: 42px;
  font-size: 16px;
}
.restaurant-profile-info-serving .info-content-details .info-content i {
  font-size: 16px;
}
.restaurant-profile-facilities-amenities {
  background-color: var(--facilities-background-color);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.restaurant-profile-facilities-amenities-inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}
.restaurant-profile-facilities-amenities .facilities-content {
  margin-bottom: 60px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  color: var(--miz-white-0);
}
@media only screen and (max-width: 480px) {
  .restaurant-profile-facilities-amenities .facilities-content {
    position: absolute;
    visibility: hidden;
  }
}
.restaurant-profile-facilities-amenities .facilities-content-details {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
}
.restaurant-profile-facilities-amenities .facilities-icon-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 32px;
  max-height: 32px;
  fill: var(--miz-white-0);
}
.restaurant-profile-facilities-amenities .facilities-icon-img * {
  fill: var(--miz-white-0);
}
.restaurant-profile-facilities-amenities .small_title {
  margin-top: 60px;
  margin-bottom: 40px;
  color: var(--miz-white-0);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.restaurant-profile-facilities-amenities .facilities_text {
  color: var(--miz-white-0);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.restaurant-profile-payment-options {
  background-color: var(--payment-background-color);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.restaurant-profile-payment-options-inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}
.restaurant-profile-payment-options .payment-content {
  margin: 0 auto;
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .restaurant-profile-payment-options .payment-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .restaurant-profile-payment-options .payment-content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .restaurant-profile-payment-options .payment-content {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1400px) {
  .restaurant-profile-payment-options .payment-content {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1600px) {
  .restaurant-profile-payment-options .payment-content {
    grid-template-columns: repeat(12, 1fr);
  }
}
.restaurant-profile-payment-options .payment-content-details {
  padding: 8px;
  border-radius: 8px;
  background-color: var(--miz-white-0);
}
.restaurant-profile-payment-options .payment-content-details img {
  max-height: 34px;
}
.restaurant-profile-payment-options .small_title {
  margin-top: 60px;
  margin-bottom: 40px;
  color: var(--payment-text-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.restaurant-profile-payment-options .payment-icon-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.restaurant-profile-contact {
  display: grid;
}
@media (min-width: 992px) {
  .restaurant-profile-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
.restaurant-profile-contact-img {
  display: none;
}
@media (min-width: 992px) {
  .restaurant-profile-contact-img {
    display: flex;
  }
}
.restaurant-profile-contact-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.restaurant-profile-contact-content {
  padding: 32px 32px 184px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  .restaurant-profile-contact-content {
    padding: 64px;
  }
}
.restaurant-profile-contact-content .title {
  color: var(--contact-title-color);
  font-size: 32px;
  font-weight: 600;
}
.restaurant-profile-contact-content .rating {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.restaurant-profile-contact-content .rating .star {
  color: var(--miz-second);
  font-size: 32px;
}
.restaurant-profile-contact-content .rating .review {
  font-size: 12px;
}
.restaurant-profile-contact-content .business-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 4px;
}
.restaurant-profile-contact-content .business-info-title {
  font-weight: 500;
  color: var(--contact-title-color);
  text-transform: uppercase;
  font-size: 12px;
}
.restaurant-profile-contact-content .business-info-title:not(:first-child) {
  margin-top: 32px;
}
.restaurant-profile-contact-content .business-info-sm {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.restaurant-profile-contact-content .business-info-sm i {
  font-size: 24px;
}
.restaurant-profile-contact-content .business-info-sm .miz-button {
  padding: 0;
  padding: 0;
  font-size: 16px;
  border-radius: 50%;
  background-color: var(--contact-title-color);
  color: var(--miz-white-0);
  line-height: 48px;
  height: 48px;
  width: 48px;
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.restaurant-profile-contact-content .business-info-sm .miz-button img, .restaurant-profile-contact-content .business-info-sm .miz-button svg {
  width: 24px;
  height: 24px;
}
.restaurant-profile-contact-content .business-info-sm .miz-button svg, .restaurant-profile-contact-content .business-info-sm .miz-button svg * {
  fill: var(--miz-white-0);
}
.restaurant-profile-contact-content .business-info-sm .miz-button.is-share {
  border-radius: 48px;
  width: auto;
  padding: 0 16px;
}
.restaurant-profile-contact-content .business-info-sm .share-dropdown {
  position: relative;
}
.restaurant-profile-contact-content .business-info-sm .share-dropdown.shown ul {
  display: flex;
}
.restaurant-profile-contact-content .business-info-sm .share-dropdown.shown .miz-button {
  border-radius: 0 0 8px 8px;
  z-index: 24;
  position: relative;
}
.restaurant-profile-contact-content .business-info-sm .share-dropdown ul {
  display: none;
  flex-direction: column;
  background-color: var(--miz-white-0);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  border-radius: 8px 8px 8px 0;
  position: absolute;
  top: -200%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.restaurant-profile-contact-content .business-info-sm .share-dropdown ul li {
  padding: 0 16px;
  line-height: 40px;
  white-space: nowrap;
}
.restaurant-profile-contact-content .business-info-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .restaurant-profile-contact-content .business-info-action {
    flex-direction: row;
  }
}
.restaurant-profile-contact-content .business-info-action .miz-button {
  padding: 0;
  padding: 0 16px;
  font-size: 16px;
  border-radius: 8px;
  background-color: var(--miz-white-0);
  color: var(--contact-title-color);
  line-height: 48px;
  height: 48px;
  gap: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.restaurant-profile-contact-content .business-info-action .miz-button img {
  width: 32px;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) {
  font-weight: 500;
  color: var(--contact-title-color);
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .small {
  font-size: 12px;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .whatsapp, .restaurant-profile-contact-content .business-info li:not(.business-info-title) .call {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: var(--miz-white-0);
  color: var(--contact-title-color);
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: fit-content;
  align-items: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .whatsapp .mdi, .restaurant-profile-contact-content .business-info li:not(.business-info-title) .call .mdi {
  font-size: 24px;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours.expanded .seperated-day {
  display: grid;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours.expanded .today .miz-button {
  transform: rotate(180deg);
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours.expanded .today span {
  display: none;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li {
  display: grid;
  grid-template-columns: 108px 1fr;
  font-weight: 400;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.today {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.today .miz-button {
  height: 32px;
  width: 32px;
  line-height: 32px;
  color: var(--contact-title-color);
  background-color: var(--miz-white-0);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 250ms;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.today .status.closed {
  color: var(--miz-danger-primary);
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.today .status.opened {
  color: var(--miz-success-primary);
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.seperated-day {
  display: none;
}
.restaurant-profile-contact-content .business-info li:not(.business-info-title) .hours li.seperated-day.is-today {
  font-weight: 600;
}

footer {
  background-color: var(--facilities-background-color);
  padding: 16px;
  color: var(--miz-white-0);
  text-align: center;
  font-size: 12px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/Kelvin/Documents/Development/MenumizUi/MenumizUi/MenumizAppUi/Resources/_scss/pages/guest/guest-business-profile.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAQA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;EACA;EACA;;;AAIR;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;;AAGJ;EAEI;EACA;EACA;;;AAIR;EAEI;EACA;;AAEA;EALJ;IAOQ;IACA;;;;AAIR;EAEI;EACA;;;AAGJ;EAEI;;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAfJ;IAiBQ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;;AAIR;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;;AAGJ;EAEI;EACA;;AAGJ;EAEI;;;AAOR;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAbJ;IAeQ;;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;EACA;;AAEA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EAEI;;AAGJ;EAEI;EACA;EACA;EACA;;AAEA;EAEI;EACA;;AAGJ;E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%22%7D */