@charset "UTF-8";
/* =============================================================
 * BASE STYLES
 * ============================================================*/
.datepicker {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 260px;
  z-index: 1;
}
.datepicker--inline {
  position: relative;
}

.datepicker__inner {
  overflow: hidden;
}

.datepicker__month {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.datepicker__month--month2 {
  display: none;
}

.datepicker__month-day--valid {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

.datepicker__month-day--lastMonth,
.datepicker__month-day--nextMonth {
  visibility: hidden;
}

.datepicker__month-button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.datepicker__info--feedback {
  display: none;
}

.datepicker__info--error,
.datepicker__info--help {
  display: block;
}

.datepicker__buttons {
  -webkit-user-select: none;
          user-select: none;
}

.datepicker__close-button,
.datepicker__clear-button {
  cursor: pointer;
}

.datepicker__tooltip {
  position: absolute;
}

/* =============================================================
 * THEME
 * ============================================================*/
.datepicker {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
  color: #000;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 14px;
  line-height: 14px;
}

.datepicker__inner {
  padding: 20px;
}

.datepicker__month {
  font-size: 12px;
}

.datepicker__month-caption {
  border-bottom: 1px solid #dcdcdc;
  height: 2.5em;
  vertical-align: middle;
}

.datepicker__month-name {
  text-transform: uppercase;
}

.datepicker__week-days {
  height: 2em;
  vertical-align: middle;
}

.datepicker__week-name {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.datepicker__month-day {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  padding: 9px 7px;
  border: 1px solid transparent;
}
.datepicker__month-day:focus {
  outline: none;
  background-color: #ffe684;
}

.datepicker__month-day--no-checkin {
  position: relative;
}
.datepicker__month-day--no-checkin:before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-bottom: 8px solid red;
  border-right: 8px solid transparent;
}

.datepicker__month-day--no-checkout {
  position: relative;
}
.datepicker__month-day--no-checkout:before {
  top: 0;
  content: "";
  display: block;
  right: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 8px solid red;
  border-left: 8px solid transparent;
}

.datepicker__month-day--no-checkin.datepicker__month-day--no-checkout:before {
  content: none;
}

.datepicker__month-day--invalid {
  color: #e8ebf4;
}

.datepicker__month-day--disabled {
  color: #e8ebf4;
  position: relative;
}
.datepicker__month-day--disabled:after {
  content: "×";
  left: 50%;
  position: absolute;
  color: red;
  font-size: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.datepicker__month-day--no-checkin,
.datepicker__month-day--no-checkout,
.datepicker__month-day--day-of-week-disabled {
  background-color: rgba(232, 235, 244, 0.5);
}

.datepicker__month-day--selected {
  background-color: rgba(56, 88, 233, 0.2);
  color: #fff;
}
.datepicker__month-day--selected:after, .datepicker__month-day--selected:before {
  display: none;
}

.datepicker__month-day--hovering {
  background-color: rgba(56, 88, 233, 0.3);
  color: #fff;
}

.datepicker__month-day--today {
  background-color: #000;
  color: #fff;
}

.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
  background-color: #3858e9;
  color: #fff;
}

.datepicker__month-day--last-day-selected:after {
  content: none;
}

.datepicker__month-button {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-indent: -9999px;
  padding: 5px;
}
.datepicker__month-button:after {
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  text-indent: 0;
  content: "";
  width: 12px;
  height: 12px;
}

.datepicker__month-button--prev:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMTA5LjMgMjg4TDQ4MCAyODhjMTcuNyAwIDMyLTE0LjMgMzItMzJzLTE0LjMtMzItMzItMzJsLTM3MC43IDAgNzMuNC03My40YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zcy0zMi44LTEyLjUtNDUuMyAwbC0xMjggMTI4Yy0xMi41IDEyLjUtMTIuNSAzMi44IDAgNDUuM2wxMjggMTI4YzEyLjUgMTIuNSAzMi44IDEyLjUgNDUuMyAwczEyLjUtMzIuOCAwLTQ1LjNMMTA5LjMgMjg4eiIvPjwvc3ZnPgo=);
}

.datepicker__month-button--next:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTAyLjYgMjc4LjZjMTIuNS0xMi41IDEyLjUtMzIuOCAwLTQ1LjNsLTEyOC0xMjhjLTEyLjUtMTIuNS0zMi44LTEyLjUtNDUuMyAwcy0xMi41IDMyLjggMCA0NS4zTDQwMi43IDIyNCAzMiAyMjRjLTE3LjcgMC0zMiAxNC4zLTMyIDMyczE0LjMgMzIgMzIgMzJsMzcwLjcgMC03My40IDczLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTI4LTEyOHoiLz48L3N2Zz4K);
}

.datepicker__topbar {
  margin-bottom: 20px;
  position: relative;
}

.datepicker--topbar-bottom .datepicker__topbar {
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid #dcdcdc;
}

.datepicker__info-text {
  font-size: 13px;
}

.datepicker__info--selected {
  font-size: 11px;
  text-transform: uppercase;
}

.datepicker__info--selected-label {
  color: #333;
}

.datepicker__info-text--selected-days {
  font-size: 11px;
  font-style: normal;
}

.datepicker__info--error {
  color: red;
  font-size: 13px;
  font-style: italic;
}

.datepicker__info--help {
  color: #333;
  font-style: italic;
}

.datepicker__close-button,
.datepicker__clear-button,
.datepicker__submit-button {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #3858e9;
  border-radius: 2px;
  border: none;
  box-shadow: none;
  font-size: 10px;
  color: #ffffff;
  margin-top: 20px;
  padding: 7px 13px;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
}
.datepicker--topbar-top .datepicker__close-button,
.datepicker--topbar-top .datepicker__clear-button,
.datepicker--topbar-top .datepicker__submit-button {
  margin-top: 0;
}
.datepicker__close-button:hover,
.datepicker__clear-button:hover,
.datepicker__submit-button:hover {
  background-color: #213fd4;
  color: #ffffff;
}
.datepicker__close-button:disabled, .datepicker__close-button[disabled],
.datepicker__clear-button:disabled,
.datepicker__clear-button[disabled],
.datepicker__submit-button:disabled,
.datepicker__submit-button[disabled] {
  background-color: #c8c9d0;
  color: #ffffff;
  cursor: not-allowed;
}

.datepicker__clear-button + .datepicker__close-button {
  margin-left: 10px;
}

.datepicker__clear-button + .datepicker__submit-button {
  margin-left: 10px;
}

.datepicker__submit-button {
  width: auto;
}

.datepicker__tooltip {
  background-color: #ffe684;
  border-radius: 1px;
  font-size: 11px;
  margin-top: -5px;
  padding: 5px 10px;
}
.datepicker__tooltip:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ffe684;
  bottom: -4px;
  content: "";
  left: 50%;
  margin-left: -4px;
  position: absolute;
}
@media (min-width: 320px){
  .datepicker {
    width: 300px;
  }
}
@media (min-width: 480px){
  .datepicker {
    width: 460px;
  }
  .datepicker__months {
    overflow: hidden;
  }
  .datepicker__month {
    width: 200px;
  }
  .datepicker__month--month1 {
    float: left;
  }
  .datepicker__month--month2 {
    display: table;
    float: right;
  }
  .datepicker__month-button--disabled {
    visibility: hidden;
  }
  .datepicker__months {
    position: relative;
  }
  .datepicker__months:before {
    background: #dcdcdc;
    bottom: 0;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}
@media (min-width: 768px){
  .datepicker {
    width: 560px;
  }
  .datepicker__month {
    width: 240px;
  }
  .datepicker--topbar-has-close-button .datepicker__info,
  .datepicker--topbar-has-clear-button .datepicker__info,
  .datepicker--topbar-has-submit-button .datepicker__info {
    max-width: 325px;
  }
  .datepicker__buttons {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0px)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
@font-face{font-display:swap;font-family:Jost;font-style:normal;font-weight:400;src:url(../fonts/Jost-Regular.eot);src:url(../fonts/Jost-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/Jost-Regular.woff2) format("woff2"),url(../fonts/Jost-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Jost;font-style:normal;font-weight:700;src:url(../fonts/Jost-Bold.eot);src:url(../fonts/Jost-Bold.eot?#iefix) format("embedded-opentype"),url(../fonts/Jost-Bold.woff2) format("woff2"),url(../fonts/Jost-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Newsreader;font-style:normal;font-weight:400;src:url(../fonts/Newsreader-Regular.eot);src:url(../fonts/Newsreader-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/Newsreader-Regular.woff2) format("woff2"),url(../fonts/Newsreader-Regular.woff) format("woff")}html:root{--current-breakpoint:"sm"}@media(min-width:768px){html:root{--current-breakpoint:"md"}}@media(min-width:1023px){html:root{--current-breakpoint:"lg"}}@media(min-width:1200px){html:root{--current-breakpoint:"xl"}}@media(min-width:1460px){html:root{--current-breakpoint:"xxl"}}@media(min-width:1800px){html:root{--current-breakpoint:"wide"}}body,html{-webkit-font-smoothing:antialiased;background-color:#fdf7f1;color:#1b1b1b;font-family:Jost,sans-serif;margin:0;overflow-x:hidden;scroll-behavior:smooth;text-rendering:optimizelegibility}body.rtl,html.rtl{direction:rtl;unicode-bidi:embed}*{box-sizing:border-box}dd,dl,dt,h1,h2,h3,h4,h5,h6,ol,p,ul{margin:0;padding:0}p{font-size:1rem}@media(min-width:1023px){p{font-size:1.125rem}}ol,ul{list-style-type:none}address{font-style:normal}a{-webkit-text-decoration:none;text-decoration:none;transition:color .3s ease-in-out}a,a:hover{color:#1b1b1b}button{-webkit-tap-highlight-color:rgba(0,0,0,0);border:none;cursor:pointer}button:focus{outline:none}blockquote{margin:0}cite{font-style:inherit}img{display:block}.otgs-development-site-front-end{display:none}.nf-form-cont .checkbox-container .nf-field-element{pointer-events:none}@media(max-width:1022.98px){.cky-revisit-bottom-left{bottom:5rem!important}}.u-h{display:none!important}.u-tu{text-transform:uppercase}.u-vh{clip:rect(0 0 0 0);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.u-vh.focusable:active,.u-vh.focusable:focus{clip:auto;-webkit-clip-path:none;clip-path:none;height:auto;margin:0;overflow:visible;position:static;white-space:inherit;width:auto}.u-invisible{visibility:hidden}.l-container{margin:0 auto;max-width:110.625rem}.l-section{padding-left:1.25rem;padding-right:1.25rem}@media(min-width:1023px){.l-section{padding-left:4.6875rem;padding-right:4.6875rem}}@keyframes zoomBackground{0%{background-size:100%}to{background-size:105%}}@keyframes zoomImg{0%{transform:none}to{transform:scale(1.05)}}.a-button{align-items:center;background-color:transparent;border:.0625rem solid #49091e;border-radius:3rem;color:#49091e;cursor:pointer;display:flex;font-size:.875rem;font-weight:400;justify-content:center;min-height:3rem;overflow:hidden;padding:.3125rem 1.25rem;position:relative;transition:background-color .3s ease-in-out,color .3s ease-in-out;width:-moz-fit-content;width:fit-content}.a-button span{padding-right:1.875rem;position:relative;z-index:2}.a-button span:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2722%27 height=%2713%27 fill=%27none%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27m18.256 6.35-1.557-.715-.171-.08-.105-.134-2.946-3.79 1.332-.669 2.842 3.655L22 6.98l-4.35 2.364L14.81 13l-1.332-.67 2.946-3.789.105-.135.171-.079 1.557-.714H0V6.349h18.256Z%27 fill=%27%2349091E%27/%3E%3C/svg%3E");background-position:50%;background-size:contain;content:"";height:.8125rem;position:absolute;right:0;top:50%;transform:translateY(-50%);transition:background-image .3s ease;width:1.375rem}.a-button:before{background-color:#49091e;bottom:0;content:"";left:0;position:absolute;right:0;top:0;transform:translate3d(0,100%,0);transition:transform .3s cubic-bezier(.7,0,.2,1);z-index:1}.a-button:hover{color:#fdf7f1}.a-button:hover span:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2722%27 height=%2713%27 fill=%27none%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27m18.256 6.35-1.557-.715-.171-.08-.105-.134-2.946-3.79 1.332-.669 2.842 3.655L22 6.98l-4.35 2.364L14.81 13l-1.332-.67 2.946-3.789.105-.135.171-.079 1.557-.714H0V6.349h18.256Z%27 fill=%27%23BF9160%27/%3E%3C/svg%3E")}.a-button:hover:before{transform:none}.a-button--prim{transition:background-color .3s ease-in-out,color .3s ease-in-out}.a-button--prim:hover{background-color:#49091e}.a-button--prim:before{content:none!important}.a-button--2{border-color:#fdf7f1;color:#fdf7f1}.a-button--2:before{background:#fdf7f1}.a-button--2 span:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2722%27 height=%2713%27 fill=%27none%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27m18.256 6.35-1.557-.715-.171-.08-.105-.134-2.946-3.79 1.332-.669 2.842 3.655L22 6.98l-4.35 2.364L14.81 13l-1.332-.67 2.946-3.789.105-.135.171-.079 1.557-.714H0V6.349h18.256Z%27 fill=%27%23FDF7F1%27/%3E%3C/svg%3E")}.a-button--2:hover{color:#49091e}.a-button--2:hover span:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2722%27 height=%2713%27 fill=%27none%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27m18.256 6.35-1.557-.715-.171-.08-.105-.134-2.946-3.79 1.332-.669 2.842 3.655L22 6.98l-4.35 2.364L14.81 13l-1.332-.67 2.946-3.789.105-.135.171-.079 1.557-.714H0V6.349h18.256Z%27 fill=%27%23BF9160%27/%3E%3C/svg%3E")}.a-button--3{border-color:#bf9160;color:#fff}.a-button--3:before{background-color:#bf9160;transform:none}.a-button--3 span{padding:0}.a-button--3 span:after{content:none}.a-button--3:hover:before{transform:translate3d(0,100%,0)}.a-title--h1{font-size:4rem}.a-title--h1,.a-title--h2{font-family:Newsreader,serif;font-weight:400}.a-title--h2{font-size:2.25rem}.a-title--h3{font-size:2rem}.a-title--h3,.a-title--h4{font-family:Newsreader,serif;font-weight:400}.a-title--h4{font-size:1.5rem;line-height:1.16}.a-title--h5{font-family:Newsreader,serif;font-size:1.25rem;font-weight:400;line-height:1.4}@media(min-width:1023px){.a-title--h1{font-size:4.875rem}.a-title--h2{font-size:3rem}.a-title--h3{font-size:2.25rem;line-height:1.1111}}@media(min-width:1200px){.a-title--h1{font-size:6rem}}.a-text{font-size:1rem;line-height:1.75}@media(min-width:1023px){.a-text{font-size:1.125rem;line-height:1.66667}}.a-toggle__label-checkbox{align-items:center;display:flex;font-size:1rem;gap:.625rem;margin-top:.875rem}.a-toggle__checkbox{clip:rect(1px,1px,1px,1px);border:0!important;height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;width:1px!important}.a-toggle__text{display:block}.a-toggle__slider-checkbox{background-color:#bbb;border-radius:.9375rem;cursor:pointer;display:block;flex-grow:0;flex-shrink:0;height:1.875rem;position:relative;transition:background-color .2s ease-in-out;width:3.75rem}.a-toggle__slider-checkbox:before{background-color:#fff;border-radius:1.25rem;content:"";height:1.5rem;left:.25rem;position:absolute;top:50%;transform:translateY(-50%);transition:right .2s ease-in-out,left .2s ease-in-out,background-color .2s ease-in-out;width:1.5rem}.a-toggle__checkbox:checked+.a-toggle__slider-checkbox{background-color:#bf9160}.a-toggle__checkbox:checked+.a-toggle__slider-checkbox:before{left:calc(100% - 28px)}.m-ap-tile{border-bottom:.0625rem solid #f2e8de;height:100%}.m-ap-tile__content{cursor:pointer;display:flex;flex-direction:column;padding-bottom:1.1875rem}.m-ap-tile__gallery{background-color:#49091e;height:15.625rem}.m-ap-tile__gallery:not(:last-child){margin-bottom:1.9375rem}.m-ap-tile__image{background-color:#49091e;height:15.625rem}.m-ap-tile__image img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-ap-tile__image:not(:last-child){margin-bottom:1.9375rem}.m-ap-tile__swiper{position:relative}.m-ap-tile__pag{bottom:1.25rem!important;color:#fdf7f1!important;font-size:1rem!important;left:1.25rem!important;position:absolute;width:-moz-fit-content!important;width:fit-content!important;z-index:2}.m-ap-tile__slide{height:15.625rem!important;overflow:hidden}.m-ap-tile__slide img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;transition:transform .2s ease-in-out;width:100%}.m-ap-tile__title:not(:last-child){margin-bottom:.9375rem}.m-ap-tile__units{align-items:center;display:flex;flex-wrap:wrap;gap:1.5rem}.m-ap-tile__units:not(:last-child){margin-bottom:1.0625rem}.m-ap-tile__unit{align-items:center;display:flex;flex-grow:0;flex-shrink:0;gap:.625rem}.m-ap-tile__icon{align-items:center;display:flex;height:1.5rem;justify-content:center;width:1.5rem}.m-ap-tile__price span{color:#bf9160}.m-ap-tile__content{height:calc(100% - 281px)}.m-ap-tile__wrapper{margin-top:auto}@media(max-width:1022.98px){.m-ap-tile__nav{display:none}}@media(min-width:1023px){.m-ap-tile__gallery,.m-ap-tile__image{height:15.625rem}.m-ap-tile__content{height:calc(100% - 281px)}.m-ap-tile__slide{height:15.625rem!important}.m-ap-tile__pag{display:none}.m-ap-tile__nav{align-items:center;display:flex;justify-content:space-between;opacity:0;padding:0 1.25rem;position:absolute;top:50%;transform:translateY(-50%);transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;width:100%;z-index:2}.m-ap-tile__arrow{align-items:center;background-color:rgba(27,27,27,.4);border-radius:2.5rem;cursor:pointer;display:flex;height:2.5rem;justify-content:center;width:2.5rem}.m-ap-tile__arrow--prev{transform:rotate(180deg)}.m-ap-tile:hover .m-ap-tile__nav{opacity:1;visibility:visible}.m-ap-tile:hover .m-ap-tile__slide img{transform:scale(1.1)}}.m-op-tile{background-color:#fff;padding:1.875rem}.m-op-tile__top{align-items:center;display:flex;gap:1.25rem}.m-op-tile__top:not(:last-child){margin-bottom:.875rem}.m-op-tile__top svg{flex-grow:0;flex-shrink:0}.m-op-tile__top span{background:linear-gradient(270deg,rgba(191,145,96,0),#bf9160);display:block;height:.125rem;width:100%}.m-op-tile__text:not(:last-child){margin-bottom:1.25rem}.m-op-tile__bottom{align-items:center;display:flex;gap:1.25rem}.m-op-tile__icon{flex-grow:0;flex-shrink:0;height:2.5rem;width:2.5rem}.m-op-tile__icon img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-form .nf-error.field-wrap .nf-field-element:after,.m-form .nf-form-fields-required,.m-form .nf-pass.field-wrap .nf-field-element:after{display:none}.m-form .nf-form-content{padding:0}.m-form .nf-form-content .nf-field-label label{font-size:1rem;font-weight:400;line-height:1.75}.m-form .nf-form-content input:not([type=button]):not([type=submit]),.m-form .nf-form-content textarea{background:#fff;border:.0625rem solid #f2e8de;color:#1b1b1b;font-family:Jost,sans-serif}.m-form .nf-form-content input:not([type=button]):not([type=submit])::-moz-placeholder,.m-form .nf-form-content textarea::-moz-placeholder{color:#787878}.m-form .nf-form-content input:not([type=button]):not([type=submit])::placeholder,.m-form .nf-form-content textarea::placeholder{color:#787878}.m-form .nf-form-content input:not([type=button]):not([type=submit]){border-radius:2.5rem;height:3rem;padding:.3125rem 1.875rem}.m-form .nf-form-content textarea{border-radius:1.25rem;height:7.5rem;padding:.875rem 1.875rem;resize:none}.m-form .nf-form-content input[type=button],.m-form .nf-form-content input[type=submit]{align-items:center;background-color:transparent;border:.0625rem solid #49091e;border-radius:3rem;color:#49091e;cursor:pointer;display:flex;font-size:.875rem;font-weight:400;height:3rem;justify-content:center;padding:.3125rem 1.875rem;text-transform:uppercase;transition:background-color .3s ease-in-out,color .3s ease-in-out;width:-moz-fit-content;width:fit-content}.m-form .nf-form-content input[type=button]:hover,.m-form .nf-form-content input[type=submit]:hover{background-color:#49091e;color:#fdf7f1}.m-form .nf-form-content .html-container .nf-field-element{font-size:.75rem}.m-form .nf-field-container{margin-bottom:.625rem}.m-nav{background-color:#f2e8de;bottom:0;display:flex;height:4.5rem;left:0;position:fixed;right:0;z-index:15}.m-nav__button{color:#49091e;cursor:pointer;flex-direction:column;flex-grow:1;flex-shrink:1;font-size:.875rem;gap:.3125rem;height:100%;text-transform:uppercase;transition:background-color .3s ease-in-out;width:25%}.m-nav__button,.m-nav__button span{align-items:center;display:flex;justify-content:center}.m-nav__button span{height:1.375rem;transition:transform .3s ease-in-out;width:1.375rem}.m-nav__button span svg{max-height:100%;max-width:100%}.m-nav__button.--open{background-color:#fdf7f1}.m-nav__button.--open span{transform:rotate(90deg)}.m-nav__button--big{background-color:#49091e;color:#f2e8de;flex-grow:2;flex-shrink:1;width:50%}@media(min-width:1023px){.m-nav{display:none!important}}.m-menu{background-color:#fdf7f1;bottom:4.5rem;left:0;max-height:calc(100vh - 72px);overflow:auto;padding:2.5rem 1.25rem;position:fixed;right:0;transform:translateY(calc(100% + 10px));transition:transform .3s ease-in-out;z-index:14}.m-menu.--open{transform:none}.m-menu__menu ul li{width:100%}.m-menu__menu ul li:not(:last-child){margin-bottom:1.8125rem}.m-menu__menu ul li a{color:#1b1b1b;font-size:1.5rem;font-weight:400;line-height:1.25;width:100%}.m-menu__menu ul li a:hover{color:#1b1b1b}.m-menu__menu:not(:last-child){margin-bottom:1.75rem}.m-menu__wpml .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer{border:none;margin:0;padding:0}.m-menu__wpml .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer ul{display:flex;flex-wrap:wrap;gap:.625rem;text-align:left}.m-menu__wpml .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer ul li{display:block}.m-menu__wpml .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer ul li a{align-items:center;background-color:transparent;border:.0625rem solid #66544c;border-radius:2.5rem;color:#66544c;cursor:pointer;display:flex;font-size:1rem;height:3rem;line-height:1.66667;padding:.3125rem 1.25rem;width:-moz-fit-content;width:fit-content}.m-menu__wpml .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer ul li a span{vertical-align:auto}@media(min-width:1023px){.m-menu{display:none!important}}.m-text h1{font-size:4rem}.m-text h1,.m-text h2{font-family:Newsreader,serif;font-weight:400}.m-text h2{font-size:2.25rem}.m-text h3{font-size:2rem}.m-text h3,.m-text h4{font-family:Newsreader,serif;font-weight:400}.m-text h4{font-size:1.5rem;line-height:1.16}.m-text h5{font-family:Newsreader,serif;font-size:1.25rem;font-weight:400;line-height:1.4}.m-text li,.m-text p{font-size:1rem;line-height:1.75}.m-text li img,.m-text p img{display:inline!important}.m-text a{color:#443833;cursor:pointer}.m-text a:hover{color:#66544c}.m-text .m-text__hidden-content:not(:last-child),.m-text .wp-block-gallery:not(:last-child),.m-text .wp-block-image:not(:last-child),.m-text figure:not(:last-child),.m-text h1:not(:last-child),.m-text h2:not(:last-child),.m-text h3:not(:last-child),.m-text h4:not(:last-child),.m-text h5:not(:last-child),.m-text h6:not(:last-child),.m-text li:not(:last-child),.m-text ol:not(:last-child),.m-text p:not(:last-child),.m-text ul:not(:last-child){margin-bottom:1.6875rem}.m-text ol,.m-text ul{padding-left:1.625rem}.m-text ul{list-style-type:disc}.m-text ol{list-style-type:decimal}.m-text--small li,.m-text--small p{font-size:1rem;line-height:1.2}.m-text--small li:not(:last-child){margin-bottom:0}.m-text--small h1:not(:last-child),.m-text--small h2:not(:last-child),.m-text--small h3:not(:last-child),.m-text--small h4:not(:last-child),.m-text--small h5:not(:last-child),.m-text--small h6:not(:last-child){margin-bottom:2.1875rem}@media(min-width:1023px){.m-text h1{font-size:6rem}.m-text h2{font-size:3rem}.m-text h3{font-size:2.25rem;line-height:1.1111}.m-text li,.m-text p{font-size:1.125rem;line-height:1.66667}.m-text .m-text__hidden-content:not(:last-child),.m-text .wp-block-gallery:not(:last-child),.m-text .wp-block-image:not(:last-child),.m-text figure:not(:last-child),.m-text h1:not(:last-child),.m-text h2:not(:last-child),.m-text h3:not(:last-child),.m-text h4:not(:last-child),.m-text h5:not(:last-child),.m-text h6:not(:last-child),.m-text ol:not(:last-child),.m-text p:not(:last-child),.m-text ul:not(:last-child){margin-bottom:1.875rem}.m-text--small li,.m-text--small p{font-size:1rem;line-height:1.2}.m-text--small h1:not(:last-child),.m-text--small h2:not(:last-child),.m-text--small h3:not(:last-child),.m-text--small h4:not(:last-child),.m-text--small h5:not(:last-child),.m-text--small h6:not(:last-child){margin-bottom:2.8125rem}.m-text--small li:not(:last-child){margin-bottom:0}}.m-filtering:not(:last-child){margin-bottom:2.5rem}.m-filtering__container{display:flex;justify-content:flex-end}.m-filtering__open span{align-items:center;display:flex;justify-content:center}.m-filtering__open span:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27%3E%3Cpath d=%27M11.25 20.75v-5.5h1.5v2h8v1.5h-8v2h-1.5Zm-8-2v-1.5h5.5v1.5h-5.5Zm4-4v-2h-4v-1.5h4v-2h1.5v5.5h-1.5Zm4-2v-1.5h9.5v1.5h-9.5Zm4-4v-5.5h1.5v2h4v1.5h-4v2h-1.5Zm-12-2v-1.5h9.5v1.5h-9.5Z%27 fill=%27%238E8E8E%27/%3E%3C/svg%3E")!important;height:1.5rem;width:1.5rem}.m-filtering__wrapper{background-color:#fff;border-top:.0625rem solid #66544c;bottom:0;display:block;left:0;max-height:80%;overflow-y:auto;padding-bottom:7.0625rem;position:fixed;right:0;transform:translateY(100%);transition:transform .5s ease-in-out;z-index:499}.m-filtering__wrapper--open{transform:none}.m-filtering__top{align-items:center;display:flex;justify-content:center;padding:1.25rem;position:relative}.m-filtering__close{background-color:transparent;border:none;cursor:pointer;height:.9375rem;position:absolute;right:1.875rem;top:50%;transform:translateY(-50%);width:.9375rem}.m-filtering__close:after,.m-filtering__close:before{background-color:#000;content:"";height:.0625rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(45deg);width:1.25rem}.m-filtering__close:before{transform:translate(-50%,-50%) rotate(-45deg)}.m-filtering__main{padding:1.25rem}.m-filtering__button{background-color:#fff;bottom:0;display:flex;height:7.0625rem;left:0;padding:1.875rem;position:fixed;right:0}.m-filtering__title{padding-bottom:1.6875rem}.m-filtering__list li:not(:last-child){margin-bottom:1.25rem}@media(min-width:768px){.m-filtering__list{display:flex;flex-wrap:wrap;gap:.625rem}.m-filtering__list li{width:calc(50% - 5px)}}@media(min-width:1023px){.m-filtering__main,.m-filtering__top{padding:1.875rem}}@media(min-width:1200px){.m-filtering__list{display:flex;flex-wrap:wrap;gap:.625rem}.m-filtering__list li{width:calc(33.33333% - 6.66667px)}}@media(min-width:1800px){.m-filtering__list li{width:calc(25% - 7.5px)}}.m-inv-tile{background-color:#fff;border:.0625rem solid #66544c;cursor:pointer;display:block;transition:color .3s ease-in-out;width:100%}.m-inv-tile:hover{color:#bf9160}.m-inv-tile__img{aspect-ratio:29/25;width:100%}.m-inv-tile__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-inv-tile__content{padding:1.25rem}.m-inv-tile__title{text-align:center}.m-inv-tile__button{border-top:.0625rem solid #66544c;margin-top:1.25rem;padding-top:1.25rem;text-align:center}.m-blog-tile{background-color:#fff;border:.0625rem solid #66544c;cursor:pointer;display:block;transition:color .3s ease-in-out;width:100%}.m-blog-tile:hover{color:#bf9160}.m-blog-tile__img{aspect-ratio:29/25;width:100%}.m-blog-tile__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-blog-tile__content{padding:1.25rem}.m-blog-tile__title{text-align:center}.m-blog-tile__button{border-top:.0625rem solid #66544c;margin-top:1.25rem;padding-top:1.25rem;text-align:center}.o-header{left:0;padding-bottom:2.5rem;padding-top:2.5rem;position:absolute;right:0;top:0;z-index:10}.o-header .l-container{display:flex;justify-content:center}@media(max-width:1022.98px){.o-header--ap,.o-header__right{display:none}}@media(min-width:1023px){.o-header{padding-bottom:3.1875rem;padding-top:3.1875rem}.o-header .l-container{align-items:flex-start;justify-content:space-between}.o-header__right{align-items:center;display:flex;gap:.5rem}.o-header__button{align-items:center;background:#49091e;border-radius:2.5rem;color:#f2e8de;cursor:pointer;display:flex;font-size:.875rem;font-weight:400;gap:.625rem;justify-content:center;line-height:1.66667;min-height:3.875rem;padding:1rem .9375rem;text-transform:uppercase;transition:background-color .3s ease}.o-header__button:hover{background-color:#7d0f34;color:#f2e8de}.o-header__menu ul{align-items:center;display:flex;gap:.5rem}.o-header__menu ul li a{color:#fdf7f1;cursor:pointer;font-size:.875rem;font-weight:400;line-height:1.66667;position:relative}.o-header__menu ul li a:after{background-color:#49091e;bottom:-.3125rem;content:"";height:.125rem;left:0;position:absolute;right:0;transform:scaleX(0);transform-origin:bottom right;transition:transform .3s ease-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:3}.o-header__menu ul li a:hover:after{transform:scaleX(1);transform-origin:bottom left}.o-header__wpml .wpml-ls-legacy-dropdown,.o-header__wpml .wpml-ls-legacy-dropdown-click{width:-moz-fit-content;width:fit-content}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li{border-radius:2.5rem 2.5rem 0 0;transition:background-color .3s ease-in-out}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li:hover,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li:hover{background-color:#fff}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li:hover>a,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li:hover>a{border-color:#49091e}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li:hover>ul.wpml-ls-sub-menu,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li:hover>ul.wpml-ls-sub-menu{opacity:1}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a{align-items:center;background-color:transparent;border:.0625rem solid #fdf7f1;border-radius:2.5rem;color:#fdf7f1;cursor:pointer;display:flex;font-size:1.125rem;height:3rem;line-height:1.66667;padding:.3125rem 1.25rem;transition:background-color .2s ease-in-out,color .2s ease-in-out,border .3s ease-in-out;width:-moz-fit-content;width:fit-content}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a:hover,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a:hover{background-color:#fff;color:#49091e}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a:after,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a:after{content:none!important}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>ul.wpml-ls-sub-menu,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>ul.wpml-ls-sub-menu{background-color:#fff;border:none;border-radius:0 0 3.75rem 3.75rem;opacity:0;transition:visibility .3s ease-in-out,opacity .3s ease-in-out}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>ul.wpml-ls-sub-menu>li>a,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>ul.wpml-ls-sub-menu>li>a{align-items:center;background-color:transparent;border:none;border-radius:2.5rem;color:#49091e;display:flex;font-size:1.125rem;justify-content:center;line-height:1.66667;padding:.3125rem;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>ul.wpml-ls-sub-menu>li>a:hover,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>ul.wpml-ls-sub-menu>li>a:hover{color:#7d0f34}.o-header--ap .o-header__menu ul li a,.o-header--ap .o-header__menu ul li a:hover{color:#1b1b1b}.o-header--ap .o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a,.o-header--ap .o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a{border-color:#1b1b1b;color:#1b1b1b}.o-header--ap .o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a:hover,.o-header--ap .o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a:hover{background-color:#1b1b1b;color:#fff}}@media(min-width:1023px)and (max-width:1459.98px){.o-header__logo{width:3.75rem}.o-header__logo svg{height:auto;width:100%}.o-header__button{font-size:.75rem}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>a,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>a{font-size:.9375rem;padding:.3125rem .625rem}.o-header__wpml .wpml-ls-legacy-dropdown-click>ul>li>ul.wpml-ls-sub-menu>li>a,.o-header__wpml .wpml-ls-legacy-dropdown>ul>li>ul.wpml-ls-sub-menu>li>a{font-size:.9375rem}}@media(min-width:1200px){.o-header__right{gap:1.25rem}.o-header__menu ul{gap:.625rem}.o-header__menu ul li a{font-size:1rem}.o-header__button{padding:1rem 1.875rem}}@media(min-width:1460px){.o-header__menu ul{gap:1.25rem}.o-header__button,.o-header__menu ul li a{font-size:1.125rem}}@media(min-width:1800px){.o-header__menu ul,.o-header__right{gap:1.875rem}.o-header__menu ul li a{font-size:1.25rem}}.o-icons{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-icons{padding-bottom:6.25rem;padding-top:6.25rem}}.o-icons+.o-cta,.o-icons+.o-gs:not(.o-gs--white),.o-icons+.o-icons,.o-icons+.o-opinions-section,.o-icons+.o-text{padding-top:0!important}.o-icons__row{display:flex;flex-wrap:wrap;gap:1.25rem}.o-icons__col{flex-direction:column;gap:.625rem;width:calc(50% - 10px)}.o-icons__col,.o-icons__img{align-items:center;display:flex}.o-icons__img{background-color:#f2e8de;border-radius:5rem;flex-grow:0;flex-shrink:0;height:5rem;justify-content:center;position:relative;width:5rem}.o-icons__img:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%2764%27 height=%2764%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2732%27 cy=%2732%27 r=%2731.5%27 stroke=%27url%28%23a%29%27/%3E%3Cdefs%3E%3ClinearGradient id=%27a%27 x1=%2732%27 y1=%270%27 x2=%2732%27 y2=%2764%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%23D4C5B6%27/%3E%3Cstop offset=%271%27 stop-color=%27%23D4C5B6%27 stop-opacity=%270%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-size:contain;content:"";height:4rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:4rem}.o-icons__img img{max-height:2.5rem;max-width:2.5rem}.o-icons__text{font-size:.875rem;font-weight:400;text-align:center}.o-icons .l-container{max-width:72.5rem}@media(min-width:1023px){.o-icons__row{gap:1.875rem}.o-icons__col{flex-direction:row;gap:.9375rem;width:calc(25% - 22.5px)}.o-icons__text{text-align:left}}@media(min-width:1460px){.o-icons__row{gap:3.125rem}.o-icons__col{width:calc(25% - 37.5px)}}.o-cta{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-cta{padding-bottom:6.25rem;padding-top:6.25rem}}.o-cta+.o-cta,.o-cta+.o-gs:not(.o-gs--white),.o-cta+.o-icons,.o-cta+.o-opinions-section,.o-cta+.o-text{padding-top:0!important}.o-cta__img{margin:0 -1.25rem;padding-bottom:1.875rem;padding-right:2.125rem;position:relative;width:100vw}.o-cta__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;position:relative;width:100%;z-index:2}.o-cta__img:after{background:linear-gradient(90deg,rgba(191,145,96,0),#bf9160);content:"";height:.125rem;left:50%;position:absolute;top:1.25rem;transform:translateX(-50%);width:calc(100% - 40px);z-index:3}.o-cta__img:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%27812%27 height=%27687%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23a%29%27 fill=%27%23F2E8DE%27%3E%3Cpath d=%27M132.939 709.649c-.154.774-.722 1.049-1.48 1.273-.43.103-.723.189-1.411.206-.62.017-1.222-.051-1.721-.103a5.159 5.159 0 0 1-.654-.103c-.103-.035-.258-.018-.31-.104l-.069-.292a9.583 9.583 0 0 1-.206-1.29c-.121-1.239-.035-1.6-.052-2.271v-.912l.034-.465.069-1.015.121-1.548c.103-1.032.224-2.048.378-3.063.293-2.03.689-4.06 1.171-6.038 1.927-7.983 5.112-15.502 8.571-22.779 3.511-7.312 7.642-14.297 12.237-20.972 2.324-3.373 4.905-6.521 7.504-9.601l3.941-4.559 4.079-4.439 16.299-17.737 16.936-17.153c2.823-2.891 5.68-5.575 8.382-8.499 2.719-2.891 5.387-5.884 8.106-8.843 2.703-2.96 5.491-5.919 8.4-8.723 2.857-2.804 5.696-5.609 8.433-8.482 2.719-2.873 5.335-5.849 7.711-8.963 2.478-3.269 5.18-6.263 7.745-9.308 1.273-1.514 2.53-3.045 3.683-4.611 1.204-1.583 2.134-3.131 3.356-4.92 2.375-3.39 5.043-6.383 7.005-9.618 3.924-6.882 8.037-13.815 11.256-20.989 3.218-7.192 5.593-14.831 8.382-22.383l4.285-11.269 2.134-5.609c.706-1.858 1.429-3.785 2.289-5.66 1.222-2.701 2.599-5.299 3.925-7.88l1.962-3.854a72.11 72.11 0 0 1 2.065-3.94c1.446-2.58 3.012-5.058 4.527-7.518 1.566-2.563 3.356-4.955 5.197-7.26 1.842-2.306 3.752-4.508 5.611-6.71 1.807-2.219 3.821-4.542 5.886-6.607 4.165-4.197 8.451-8.086 12.857-11.957a240.687 240.687 0 0 1 13.631-11.045c4.716-3.544 9.707-6.675 14.75-9.635 5.026-2.959 10.189-5.78 15.473-8.309 5.267-2.564 10.791-4.749 16.213-6.779l16.282-6.228 16.35-6.09a288.28 288.28 0 0 0 16.11-6.383c2.65-1.153 5.404-2.254 7.917-3.441a74.87 74.87 0 0 0 7.435-4.129c4.836-3.028 9.432-6.521 14.079-10.013l3.442-2.581c1.033-.826 1.996-1.789 2.909-2.821 1.841-2.065 3.476-4.439 5.284-6.779a82.665 82.665 0 0 0 9.345-14.297 97.946 97.946 0 0 0 1.876-3.837c.585-1.29 1.308-2.752 2.048-4.008 1.498-2.581 3.047-4.955 4.114-7.433.275-.653.464-1.187.723-1.926a28.12 28.12 0 0 1 .86-2.168c.637-1.428 1.394-2.805 2.375-4.095a15.074 15.074 0 0 1 1.635-1.858l1.532-1.531 3.047-3.063 6.092-6.142a251.555 251.555 0 0 0 5.8-6.434c3.787-4.353 7.418-8.809 10.723-13.488 1.669-2.323 3.201-4.732 4.716-7.209l4.561-7.364c1.532-2.408 2.977-5.006 4.578-7.484a150.082 150.082 0 0 1 4.922-7.294c1.704-2.375 3.443-4.766 5.387-7.037a107.652 107.652 0 0 1 6.007-6.486c2.048-2.082 4.251-4.095 6.248-6.073 2.031-2.013 3.993-4.129 6.024-6.245 2.013-2.099 4.096-4.216 6.333-6.194l6.575-5.764c8.623-7.707 17.71-15.071 25.369-23.518 1.911-2.134 3.7-4.301 5.387-6.607 1.739-2.34 3.477-4.645 5.077-6.985 3.219-4.662 5.852-9.669 6.988-15.054 1.188-5.368.878-10.993-.516-16.413-1.291-5.35-4.182-10.237-7.16-15.209-1.497-2.511-2.909-5.04-4.423-7.432-1.48-2.357-3.27-4.714-4.819-7.278-1.567-2.511-2.995-5.178-4.251-7.81l-3.839-7.828-3.631-7.45c-1.222-2.46-2.53-4.955-3.666-7.604a46.335 46.335 0 0 1-1.532-4.078c-.206-.705-.413-1.41-.585-2.133-.103-.361-.155-.723-.241-1.084l-.103-.516s-.035-.19-.086-.31c-.155-.482-.431-1.084-.723-1.755-.31-.636-.603-1.772-.706-2.27-.31-1.274-.723-2.581-1.119-3.923-.395-1.36-.791-2.753-1.049-4.25-.259-1.497-.362-2.925-.482-4.301-.121-1.376-.241-2.701-.482-3.94a13.047 13.047 0 0 0-.448-1.755c-.155-.447-.533-1.342-.723-2.03-.912-2.959-1.05-5.867-1.428-8.499-.189-1.324-.43-2.58-.792-3.768a27.847 27.847 0 0 1-1.015-4.335c-.431-2.908-.499-5.66-.93-8.224a21.152 21.152 0 0 0-.964-3.699 75.512 75.512 0 0 1-1.308-4.077c-.791-2.719-1.445-5.385-2.237-7.983-.775-2.65-1.669-4.92-3.098-7.157a39.753 39.753 0 0 0-2.272-3.27c-.396-.515-.843-1.1-1.239-1.565-.396-.464-.792-.929-1.257-1.342-1.772-1.703-3.992-2.907-6.436-3.768-2.444-.877-5.095-1.41-7.797-1.96l-3.752-.775s-.207 0-.809.413c-.293.19-.654.447-1.17.67a3.905 3.905 0 0 1-1.928.328c-3.718-.344-7.504.86-11.394 2.288-3.958 1.394-7.728 2.839-11.342 4.714-1.79.946-3.528 1.961-5.198 3.097-1.618 1.118-3.321 2.426-4.991 3.647-3.339 2.478-6.626 4.972-9.655 7.708-6.041 5.402-10.843 12.18-15.456 19.062-2.272 3.476-4.613 6.95-6.626 10.495-2.048 3.561-3.787 7.243-5.387 11.063-1.618 3.819-3.133 7.724-4.871 11.578-1.721 3.75-3.15 7.57-4.509 11.51-1.36 3.923-2.685 7.914-4.217 11.854-1.497 3.905-3.012 7.742-4.096 11.665-.586 1.978-.895 3.853-1.377 6.038-.499 2.1-1.119 4.147-1.773 6.16-1.36 4.025-2.702 7.862-3.838 11.87-1.17 3.992-2.289 8.035-3.58 12.044l-.998 3.011c-.19.55-.293.86-.396 1.307-.103.43-.172.912-.224 1.411-.138 1.015-.224 2.116-.637 3.389a42.772 42.772 0 0 0-1.015 2.925c-.534 1.703-1.016 3.475-1.549 5.282l-.413 1.359-.224.671c-.052.189-.12.361-.155.551-.206.757-.31 1.6-.413 2.477-.086.895-.155 1.824-.292 2.804-.069.499-.173.998-.293 1.514-.121.482-.344 1.119-.465 1.48-.585 1.634-.998 3.355-1.377 5.127-.378 1.772-.688 3.596-1.118 5.454-.19.911-.517 1.944-.62 2.598-.12.757-.155 1.6-.155 2.511 0 .895 0 1.876-.103 2.925-.069.516-.138 1.067-.293 1.617-.12.465-.189.757-.258 1.17-.241 1.566-.103 3.355-.138 5.317-.034.98-.12 2.03-.395 3.096a8.466 8.466 0 0 1-.551 1.566c-.121.241-.241.533-.379.723-.051.086-.069.086-.069.137l.069.998.052 1.411c.034.946.034 1.875.034 2.821 0 3.734-.155 7.415-.103 11.046.052 3.647.344 7.139 1.136 10.701.757 3.768.998 7.535 1.119 11.269l.275 11.062.034 11.132c.052 4.094-1.566 8.172-4.302 11.183-1.377 1.514-3.03 2.804-4.888 3.681-.93.43-1.911.809-2.909 1.05-1.205.275-1.48.292-2.324.722-.774.362-1.858.929-3.132 1.05-1.101.086-1.979.086-2.978.069a44.328 44.328 0 0 1-5.714-.551c-1.876-.292-3.7-.654-5.507-1.015-.516-.103-.757-.155-1.17-.189-.396-.035-.878-.035-1.429-.103-.551-.052-1.188-.155-1.859-.482l-1.222-.568c-3.253-1.428-6.747-2.46-10.275-3.63-1.773-.585-3.545-1.204-5.318-1.927l-5.146-2.064-10.619-4.267c-3.425-1.359-7.246-2.426-10.775-4.233-1.514-.739-3.304-1.169-5.197-1.737-.947-.293-1.945-.637-2.892-1.067l-2.599-1.17c-1.721-.757-3.425-1.445-5.146-1.909-.43-.121-.86-.224-1.291-.31l-1.445-.258c-1.102-.241-2.066-.62-2.978-.981-1.842-.74-3.563-1.583-5.266-2.254a24.291 24.291 0 0 0-2.531-.843c-.843-.223-1.617-.292-2.684-.464-4.028-.654-7.659-2.202-11.239-3.407-3.632-1.187-7.109-2.374-10.878-3.561a57.387 57.387 0 0 1-5.49-2.151c-1.807-.791-3.528-1.72-5.215-2.546-3.408-1.669-6.919-3.303-10.31-5.264-3.373-1.927-6.609-4.044-9.793-6.194l-18.898-13.024c-3.132-2.168-6.264-4.284-9.517-6.142-3.253-1.824-6.678-3.355-10.206-4.645-3.529-1.29-7.16-2.374-10.826-3.407l-5.525-1.514c-1.859-.481-3.7-1.049-5.473-1.428-3.563-.722-7.263-.98-11.015-1.307-1.876-.172-3.787-.361-5.68-.637a73.684 73.684 0 0 0-5.49-.602c-7.384-.533-14.905-.292-22.409-.378h-5.628c-1.911-.052-3.683.051-5.749-.104-3.993-.395-7.469-1.737-11.032-1.737-1.962-.052-4.114-.448-5.955-1.497a41.6 41.6 0 0 1-4.836-3.234c-3.064-2.392-5.714-5.386-7.625-8.809-1.893-3.424-3.098-7.054-4.372-10.547-.636-1.754-1.308-3.475-2.065-5.127-.843-1.806-1.36-3.647-2.065-5.264-.327-.792-.792-1.583-1.222-2.443l-1.291-2.495a78.257 78.257 0 0 0-2.719-4.834 34.46 34.46 0 0 0-1.515-2.271l-1.635-2.323-3.132-4.697c-2.083-3.13-4.2-6.107-6.73-8.826-2.496-2.787-5.026-5.522-7.71-8.086-2.686-2.563-5.525-4.886-8.64-6.985-3.099-2.168-6.076-4.421-9.243-6.314-5.473-3.32-11.686-5.402-18.089-5.712-3.167-.172-6.35.12-9.26 1.256-1.445.534-2.822 1.36-4.25 2.15a52.47 52.47 0 0 0-4.062 2.599c-5.267 3.647-9.208 8.877-12.306 14.537-3.047 5.678-5.267 11.837-6.644 18.134a59.652 59.652 0 0 0-1.256 9.566c-.155 3.2.069 6.451.172 9.737.224 6.538.878 12.938 2.564 19.235l2.152 9.635c.62 3.165 1.48 6.297 2.444 9.393l1.48 4.663c.24.722.55 1.651.654 2.529.138.86.172 1.686.293 2.443.103.757.275 1.445.602 1.944.465.723.878 1.566 1.17 2.374.603 1.652.86 3.321 1.188 4.886.137.671.292 1.308.499 1.927.172.568.499 1.291.671 2.03.396 1.463.5 2.925.534 4.37.034 2.908-.207 5.54.034 8.327.293 5.815-1.48 11.476-3.82 16.568-2.393 5.093-4.975 10.099-8.33 14.693l-5.113 6.641c-1.704 2.219-3.442 4.439-5.387 6.52l-23.579 23.777c-3.941 3.94-7.866 7.966-11.807 11.819-1.945 1.962-3.872 3.992-5.886 5.953a61.884 61.884 0 0 1-3.15 2.856c-1.067.946-2.272 1.772-3.235 2.615-2.72 2.374-5.026 5.334-7.556 8.155-2.53 2.822-5.146 5.523-7.728 8.241s-5.146 5.437-7.538 8.275l-7.522 8.413c-10.05 11.166-20.343 22.229-32.098 31.777-5.56 4.456-11.36 8.671-17.711 12.061-6.282 3.268-12.409 6.864-19.018 9.668a145.927 145.927 0 0 1-9.982 3.872l-10.103 3.389c-3.391 1.066-6.833 1.927-10.258 2.907l-2.565.706c-.895.223-1.617.516-2.736.671-1.016.12-1.928.051-2.719.103-.396.017-.74.086-.964.172-.121.034-.603.361-1.033.602-1.755.964-3.769 1.29-5.611 1.342-1.876.052-3.597-.103-5.318-.034l-10.636.189c-7.109.034-14.268-.155-21.359-1.187-1.773-.224-3.563-.602-5.233-.826-1.704-.241-3.442-.361-5.197-.464-3.511-.19-7.091-.259-10.689-.809a37.274 37.274 0 0 1-2.684-.499 15.553 15.553 0 0 0-2.479-.396c-1.687-.137-3.442-.069-5.284-.172-1.893-.103-3.58-.447-5.318-.568a133.732 133.732 0 0 0-5.249-.361c-4.699-.241-9.484-.413-14.217-1.118l-14.044-1.703-7.022-.861c-2.324-.275-4.75-.533-7.091-.997-4.716-.878-9.346-2.271-13.752-4.216-4.423-1.944-8.588-4.645-11.944-8.206-3.374-3.561-5.887-7.828-7.556-12.405-1.67-4.576-2.358-9.393-2.84-14.107l-.344-3.544a32.498 32.498 0 0 1-.086-3.665c.069-2.426.344-4.817.602-7.14.379-3.613.482-7.363 1.188-11.114a33.01 33.01 0 0 1 .654-2.804l.705-2.65 1.326-5.385c.912-3.664 2.203-7.174 3.459-10.667 1.291-3.492 2.72-6.95 4.355-10.34.809-1.703 1.738-3.337 2.495-4.937.775-1.635 1.48-3.338 2.169-5.041 1.394-3.407 2.771-6.934 4.733-10.22 2.031-3.096 3.442-6.331 4.974-9.772 1.549-3.32 2.788-6.847 4.888-10.15 2.151-3.011 3.717-6.194 5.387-9.532.826-1.651 1.687-3.32 2.633-4.955.999-1.651 1.911-3.114 2.788-4.748 1.756-3.2 3.271-6.503 4.888-9.875 1.601-3.338 3.546-6.641 5.353-9.738 1.721-3.149 3.098-6.555 4.699-9.927.413-.843.826-1.686 1.273-2.512.482-.946 1.171-1.738 1.687-2.426.551-.688.998-1.359 1.188-1.996.12-.309.12-.636.12-.946a5.59 5.59 0 0 0-.189-.895c-.035-.172-.104-.361-.138-.533.103-.138.241-.275.361-.396l.706-.774.396-.482c.258-.344.499-.67.723-1.032.465-.705.86-1.479 1.222-2.288.74-1.6 1.308-3.32 1.979-5.058.637-1.755 1.515-3.493 2.358-5.075.809-1.635 1.549-3.304 2.324-4.955 3.012-6.383 5.851-12.904 8.674-19.39 1.411-3.252 2.874-6.486 4.234-9.755l3.855-9.858c2.582-6.572 5.078-13.161 7.9-19.699 1.257-3.114 1.807-6.779 3.408-10.048 1.377-3.182 2.392-6.537 3.391-9.927l1.497-5.058c.447-1.651.74-3.389 1.136-5.144.826-3.527 2.1-6.83 2.96-10.202.981-3.269.551-6.796 1.532-10.495.275-.963.654-1.703.86-2.512.224-.808.379-1.634.482-2.477.207-1.686.207-3.424.241-5.213 0-1.79.259-3.648.396-5.334.121-1.737.138-3.475.069-5.212-.138-3.476-.62-6.951-1.274-10.41a303.717 303.717 0 0 1-1.944-10.46c-.31-1.737-.654-3.458-1.085-5.144-.396-1.703-.981-3.303-1.531-5.058-1.291-4.353-2.152-8.654-3.615-12.852-1.342-4.284-2.427-8.62-3.562-12.92-1.102-4.301-2.479-8.516-3.735-12.818l-3.546-12.92-7.229-25.738c-1.256-4.267-2.323-8.62-3.425-12.955-.533-2.202-1.118-4.284-1.617-6.555-.379-2.374-.086-4.662-.74-6.434-.086-.224-.173-.396-.276-.637l-.396-.809a15.163 15.163 0 0 1-.619-1.686c-.344-1.135-.534-2.305-.689-3.423-.292-2.254-.413-4.456-.981-6.452-.275-.929-.74-2.116-.981-3.252a26.794 26.794 0 0 1-.516-3.441c-.19-2.305-.138-4.559-.103-6.778a70.72 70.72 0 0 0-.138-6.607 213.867 213.867 0 0 1-.258-6.727c-.086-4.473 0-8.963.206-13.437.121-2.236.258-4.473.448-6.709l.155-1.669c.051-.568.137-1.187.241-1.738.206-1.118.413-2.15.413-3.131 0-.533.034-1.411.43-2.133.103-.19.224-.362.361-.534l.069-.086.035-.034.137-.138c.086-.086.19-.172.276-.241a3.72 3.72 0 0 1 1.256-.619c.809-.241 1.601-.189 2.134-.361.844-.224 1.584-.104 2.375.206.689.258 1.412.413 2.117.637.224.069.603.137.654.447.121.877-1.256.981-1.996 1.17-.878.224-1.756.413-2.651.533-.447.052-.895.086-1.342.138-.31.034-.551.103-.688.138-.104.034-.138.051-.155.068 0 .052 0-.137-.104.258-.017.121-.034.207-.034.431 0 .326 0 .636-.034.946a16.097 16.097 0 0 1-.241 1.72c-.207 1.119-.379 1.927-.448 2.942l-.258 3.097c-.31 4.129-.516 8.275-.568 12.404-.052 4.147.017 8.276.258 12.405.361 4.267-.086 8.602.155 12.525.12 1.978.43 3.888 1.067 5.643.809 2.237 1.033 4.49 1.256 6.555.224 2.064.465 3.991 1.171 5.643.069.206.172.413.275.619l.362.775a9.33 9.33 0 0 1 .568 1.875c.206 1.221.241 2.322.275 3.355.052 1.05.086 1.927.327 2.821l.757 3.028 1.515 6.039c.964 4.043 2.1 8.052 3.236 12.078l6.712 24.19 1.669 6.055c.517 2.013 1.016 3.992 1.618 5.987 1.153 3.975 2.444 8 3.511 12.078 1.085 4.06 2.066 8.103 3.253 12.06l.912 2.96c.327 1.032.62 2.047.895 3.079l1.584 6.073c.361 1.36.757 2.684 1.187 4.009.465 1.41.861 2.839 1.188 4.25.671 2.855 1.119 5.694 1.601 8.481.447 2.77 1.118 5.54 1.583 8.413.482 2.856.826 5.764.947 8.689a54.358 54.358 0 0 1 0 4.404c-.052 1.445-.259 3.028-.362 4.3-.206 2.685.017 5.644-.551 8.69-.137.756-.344 1.513-.568 2.27l-.395 1.084a7.064 7.064 0 0 0-.276.86c-.327 1.205-.464 2.547-.568 3.957-.12 1.411-.206 2.873-.464 4.387-.293 1.549-.672 2.908-1.085 4.319-.809 2.77-1.772 5.454-2.358 8.103-.292 1.36-.55 2.77-.912 4.215-.361 1.497-.809 2.805-1.205 4.181-.791 2.736-1.583 5.505-2.564 8.24a62.478 62.478 0 0 1-1.601 4.096c-.568 1.238-.981 2.477-1.377 3.836-.396 1.342-.757 2.736-1.222 4.164a31.317 31.317 0 0 1-.809 2.116l-.808 1.944c-1.085 2.581-2.169 5.196-3.185 7.88l-6.23 16c-.62 1.548-1.188 3.131-1.842 4.645l-1.996 4.576-3.976 9.136c-2.599 6.108-5.456 12.164-8.244 18.237-.723 1.514-1.583 2.976-2.169 4.404-.619 1.48-1.153 3.045-1.772 4.628-.62 1.583-1.343 3.2-2.341 4.731-.258.379-.516.757-.809 1.102l-.43.533-.121.12s-.069.086-.034.138v.086l.052.189c.068.568 0 1.153-.121 1.703-.585 2.22-2.1 3.459-2.823 4.628-.722 1.205-1.48 2.822-2.151 4.267-1.394 2.977-2.685 6.091-4.354 9.084-1.739 2.942-3.357 5.695-4.82 8.671-1.445 2.925-2.822 6.022-4.406 8.981a74.075 74.075 0 0 1-2.478 4.422c-.912 1.462-1.704 2.769-2.461 4.249-1.532 2.89-2.926 5.936-4.647 8.895-.826 1.479-1.911 2.925-2.685 4.215-.809 1.359-1.497 2.821-2.169 4.318a425.816 425.816 0 0 1-4.096 9.136c-.723 1.531-1.515 3.045-2.444 4.507a40.774 40.774 0 0 0-2.358 4.233c-1.411 2.924-2.582 6.021-3.89 9.118-.688 1.617-1.411 3.217-2.254 4.8a87.689 87.689 0 0 0-2.289 4.594c-1.429 3.097-2.702 6.297-3.873 9.514a236.748 236.748 0 0 0-1.704 4.886 64.582 64.582 0 0 0-1.411 4.903l-1.239 5.041-.671 2.546c-.224.809-.414 1.6-.568 2.426-.654 3.286-.792 6.71-1.119 10.203-.344 3.492-.809 6.864-.671 10.185.55 6.744 1.17 13.729 3.786 19.854 2.582 6.176 6.971 11.509 12.702 14.968 5.697 3.475 12.323 5.574 18.984 6.744 1.669.292 3.356.499 5.06.688l5.18.619 10.344 1.256 10.275 1.239c3.391.344 6.833.447 10.31.636 3.115.155 6.385.396 9.431.826 1.446.155 2.978.121 4.579.155a30.24 30.24 0 0 1 2.461.138c.809.069 1.79.292 2.461.43 5.869 1.307 12.151.809 18.571 1.72 12.271 2.34 24.646 1.996 37.21 1.686 3.305 0 6.248.344 8.606-.825.292-.138.568-.293.843-.482l.327-.207c.155-.086.293-.154.448-.206.292-.12.568-.189.843-.241 1.05-.189 1.876-.138 2.616-.172.362 0 .706-.034.998-.069.293-.034.517-.103.947-.223l2.255-.637 9.001-2.512c3.012-.826 5.921-1.944 8.881-2.89 5.938-1.927 11.704-4.129 17.297-6.779 2.788-1.29 5.525-2.787 8.279-4.267l8.244-4.421c10.654-6.125 20.223-14.228 29.104-22.899 4.44-4.353 8.743-8.861 12.994-13.454l12.53-13.884c4.079-4.869 8.537-9.342 12.805-13.867 2.151-2.271 4.165-4.542 6.23-6.951 1.05-1.187 2.117-2.391 3.288-3.527a28.84 28.84 0 0 1 1.841-1.668c.672-.568 1.291-1.016 1.876-1.463 4.665-3.785 8.778-8.602 13.373-12.955l13.219-13.282 12.77-12.869c2.1-2.15 4.337-4.301 6.282-6.383 1.962-2.167 3.77-4.524 5.594-6.933l2.805-3.613a51.615 51.615 0 0 0 2.6-3.527c1.634-2.426 3.097-5.006 4.457-7.656 2.754-5.299 5.25-10.684 5.852-16.361.155-1.411.206-2.822.103-4.233a47.122 47.122 0 0 1-.069-4.679c.086-3.045.19-5.833-.792-8.293-1.153-3.252-1.17-6.297-2.375-8.499a4.866 4.866 0 0 0-.224-.413l-.292-.499a6.657 6.657 0 0 1-.602-1.428c-.276-.946-.328-1.772-.414-2.529-.069-.757-.154-1.428-.292-2.013a2.916 2.916 0 0 0-.12-.413l-.173-.533-.344-1.084c-.93-2.873-1.859-5.781-2.65-8.757a78.66 78.66 0 0 1-1.05-4.525l-.981-4.387c-.672-2.942-1.257-5.798-1.98-8.826-.688-3.045-1.136-6.107-1.41-9.17-.276-3.062-.414-6.107-.517-9.135-.104-2.977-.276-6.125-.035-9.222.396-6.211 1.807-12.318 3.907-18.133 2.066-5.799 4.87-11.442 8.606-16.448 1.841-2.512 4.044-4.886 6.488-6.882 2.444-2.013 5.095-3.699 7.797-5.178 2.685-1.6 6.007-2.702 9.208-2.977 3.253-.31 6.385-.034 9.5.5 6.23 1.1 12.1 3.836 17.194 7.328 2.565 1.72 4.992 3.527 7.436 5.213 2.564 1.772 4.974 3.75 7.245 5.832 2.272 2.1 4.407 4.302 6.472 6.538l3.063 3.372a53.6 53.6 0 0 1 2.961 3.63c2.513 3.373 4.664 6.865 6.97 10.151.568.809 1.188 1.635 1.79 2.546.585.878 1.153 1.79 1.67 2.701 1.05 1.824 2.013 3.665 2.96 5.472.482.946.929 1.72 1.446 2.804.464 1.015.826 2.03 1.17 2.976.344.964.671 1.824 1.102 2.701.447.964.86 1.945 1.239 2.908 1.532 3.888 2.702 7.776 4.457 11.269a26.362 26.362 0 0 0 7.246 8.86 37.094 37.094 0 0 0 4.837 3.235c1.514.808 3.184 1.049 5.215 1.066 4.509.207 8.381 1.824 12.047 1.755h12.289c8.158.052 16.42-.275 24.75.826 4.027.637 8.003.826 12.168 1.256 2.065.224 4.165.499 6.248.981 2.134.499 3.993 1.066 6.006 1.582 7.883 2.117 15.972 4.302 23.511 8.069 7.573 3.82 13.992 8.947 20.825 13.403 7.814 5.333 15.335 10.959 23.545 15.208 2.065 1.067 4.182 2.065 6.299 3.097 2.169 1.05 4.183 2.151 6.3 3.028a56.563 56.563 0 0 0 6.454 2.34l6.781 2.237c4.578 1.393 8.846 3.423 13.218 4.043.499.069 1.188.155 1.824.292.637.138 1.257.293 1.876.482 1.222.378 2.358.86 3.46 1.325l3.201 1.393c1.067.448 2.117.86 3.047 1.05l.826.137c.309.052.619.121.929.19.62.137 1.222.292 1.824.481 1.205.362 2.358.792 3.477 1.273 1.119.465 2.203.964 3.27 1.463 1.119.533 1.962.86 3.098 1.204 1.085.327 2.238.62 3.425 1.015.585.189 1.188.413 1.79.688.293.121.603.293.878.413l.757.362c2.031.946 4.217 1.686 6.454 2.477 5.405 1.996 10.534 4.181 15.817 6.263 2.668 1.066 5.112 2.098 7.797 2.959 2.651.877 5.37 1.686 8.072 2.701a45.305 45.305 0 0 1 4.027 1.703c.31.172.775.224 1.463.258.345.017.723.035 1.136.086.207.017.431.052.654.103l.534.104c2.771.55 5.49 1.101 8.192 1.359 1.343.137 2.703.189 4.028.155l.964-.052c.223 0 .464-.069.705-.138.482-.137 1.033-.43 1.756-.774.361-.155.757-.327 1.187-.447.207-.069.465-.121.672-.155l.447-.103c.62-.121 1.205-.327 1.79-.534 1.17-.447 2.255-1.118 3.236-1.892 1.979-1.566 3.459-3.751 4.285-6.125.431-1.187.637-2.443.689-3.699.051-1.29 0-2.77 0-4.146v-8.413l-.224-8.482c-.069-2.804-.172-5.574-.482-8.31a45.047 45.047 0 0 0-.602-4.043 60.513 60.513 0 0 1-.74-4.267c-.723-5.797-.379-11.527-.345-17.101 0-1.393 0-2.787-.051-4.163l-.035-1.033-.068-1.204c.034-.31-.155-.654.086-.912l.43-.705c.138-.241.258-.499.361-.757.861-2.116.345-4.903.603-7.983.051-.757.241-1.617.43-2.34.155-.533.224-1.135.258-1.772.069-1.29-.017-2.735.155-4.301.069-.757.31-1.686.465-2.271a36.9 36.9 0 0 0 .464-1.996l.844-4.129c.292-1.393.602-2.821 1.015-4.232.207-.706.448-1.411.689-2.116.189-.534.327-1.136.43-1.755.206-1.273.258-2.684.465-4.181.103-.74.258-1.514.516-2.288l.637-1.996c.792-2.649 1.48-5.436 2.547-8.189.396-.981.465-2.357.706-3.837.103-.722.327-1.617.568-2.288l.671-1.978c1.738-5.299 3.184-10.753 4.836-16.173 1.635-5.47 3.821-10.684 4.905-16.034 1.016-5.66 3.098-11.114 5.112-16.345 2.048-5.212 3.718-10.563 5.663-15.914 1.118-3.13 2.461-6.314 3.82-9.29 1.326-3.011 2.548-6.09 3.839-9.17 2.512-6.177 5.576-12.267 9.276-17.859 3.597-5.574 7.263-11.182 11.463-16.413 2.082-2.615 4.337-5.178 6.798-7.484 2.462-2.322 5.06-4.438 7.728-6.468a460.531 460.531 0 0 1 8.038-5.953c2.788-1.944 5.765-3.579 8.846-4.99 3.064-1.41 6.248-2.546 9.363-3.664 3.132-1.118 6.454-2.22 9.983-2.323.447-.017.877 0 1.325 0 .396.017 1.015.07 1.067.052.327 0 .912-.482 1.841-.998.465-.24 1.102-.447 1.722-.413.688.035 1.032.172 1.428.241l2.427.516c3.236.671 6.574 1.325 9.793 2.615 3.218 1.239 6.23 3.407 8.313 6.194 2.065 2.632 4.062 5.47 5.353 8.688 1.549 3.974 2.409 7.983 3.562 11.889.534 1.995 1.274 3.75 1.859 5.9.516 2.082.723 4.199.912 6.246.19 2.047.362 4.06.792 5.97.189.946.551 1.84.826 2.942.276 1.05.465 2.099.603 3.131.292 2.082.447 4.112.808 6.056.19.963.431 1.91.758 2.822.155.43.361.929.533 1.48.172.532.31 1.066.413 1.582.431 2.116.517 4.215.723 6.228.155 2.03.568 3.888 1.136 5.85l.878 2.959.413 1.514.189.774c.052.206.104.396.19.602.327.877.843 1.79 1.136 3.01.206 1.033.413 1.962.705 2.926 1.102 3.836 2.978 7.45 4.819 11.131l5.405 11.097c1.841 3.682 3.493 7.432 5.559 10.907a89.077 89.077 0 0 0 3.27 5.145 90.234 90.234 0 0 1 3.408 5.195c2.117 3.579 4.182 7.054 6.247 10.667 2.014 3.596 3.856 7.45 4.819 11.579 1.016 4.06 1.498 8.292 1.188 12.508-.293 4.215-1.394 8.361-3.115 12.198-1.704 3.853-3.993 7.38-6.403 10.735-2.461 3.321-4.802 6.675-7.521 9.858-5.576 6.538-11.962 12.25-18.347 17.841l-9.587 8.413-4.784 4.216a77.325 77.325 0 0 0-4.613 4.266c-2.995 2.959-5.834 6.125-8.864 9.153-3.08 2.994-6.144 5.85-9.018 8.946-2.909 3.063-5.508 6.314-7.952 9.773a152.946 152.946 0 0 0-6.97 10.563c-2.134 3.63-4.458 7.243-6.678 10.873-2.203 3.631-4.527 7.243-7.074 10.667-5.112 6.865-10.671 13.334-16.591 19.458l-9.002 9.084c-1.48 1.36-2.564 3.011-3.442 4.835-.43.912-.809 1.858-1.136 2.821a23.915 23.915 0 0 1-1.256 3.063c-.964 1.978-2.1 3.802-3.167 5.609-1.102 1.823-1.945 3.578-2.857 5.574-1.842 3.871-3.925 7.639-6.3 11.217a80.579 80.579 0 0 1-3.184 4.473 150.733 150.733 0 0 0-3.287 4.284c-2.151 2.873-4.372 5.901-7.435 8.241-5.783 4.301-11.446 8.792-17.642 12.663-3.08 1.944-6.316 3.699-9.69 5.161l-9.948 4.25a213.304 213.304 0 0 1-10.12 3.974l-10.12 3.802a1692.93 1692.93 0 0 0-20.188 7.69l-10.069 3.889a154.369 154.369 0 0 0-9.81 4.301c-6.454 3.079-12.685 6.624-18.829 10.34-3.064 1.858-6.059 3.802-8.95 5.884-2.874 2.081-5.731 4.301-8.52 6.537a234.124 234.124 0 0 0-10.877 9.325c-3.528 3.235-7.074 6.469-10.309 9.91-1.636 1.72-3.098 3.51-4.665 5.402l-4.612 5.506c-1.498 1.841-2.943 3.716-4.251 5.66-1.274 1.927-2.53 4.043-3.77 6.056-1.239 2.047-2.426 4.095-3.459 6.194-1.05 2.15-2.186 4.318-3.287 6.451-1.102 2.134-2.186 4.25-3.15 6.4-.964 2.116-1.756 4.387-2.633 6.641l-5.129 13.454c-1.687 4.456-3.219 9.015-4.854 13.557-1.635 4.542-3.373 9.102-5.507 13.489-2.1 4.387-4.458 8.619-6.833 12.8-1.222 2.116-2.324 4.146-3.614 6.297-1.326 2.133-2.84 4.06-4.303 5.97-1.498 1.909-2.84 3.716-4.114 5.78-1.359 2.082-2.857 4.009-4.389 5.902-3.098 3.767-6.333 7.26-9.19 11.045-2.978 3.871-6.265 7.484-9.639 10.942-3.356 3.475-6.884 6.796-10.188 10.185-3.305 3.424-6.489 7.002-9.742 10.564-2.771 3.028-5.594 6.038-8.571 8.929l-8.623 8.705-8.606 8.706c-2.908 2.873-5.559 5.987-8.347 8.963-10.877 12.164-22.822 23.605-30.842 37.678-4.217 6.916-7.762 14.211-10.826 21.695-3.029 7.467-5.301 15.226-5.817 23.14l-.052.912v.378l.034.431.052.877c.017.258.017.516 0 .74 0 .034-.034 0-.086.051-.086.052-.207.207-.138.293a.674.674 0 0 0 .104.172c.051.051.086.12.378.172l1.515.327c.224.051.671.172.619.413l-.155.069Z%27/%3E%3Cpath d=%27M890.436 39.1c.774.137 1.067.705 1.29 1.48a5.04 5.04 0 0 1 .087 1.774c-.035.293-.104.568-.173.861 0 .19-.12.207-.223.241-.104.052-.19.086-.276.12a8.83 8.83 0 0 1-2.133.724l-1.825.172-.894.069-.448.034-2.185.138-2.616.12-5.197.19c-3.459.12-6.883.241-10.291.5-1.703.137-3.39.292-5.076.516-1.687.224-3.476.448-5.214.603-7.004.637-13.956.637-20.823.93-1.755.069-3.355.138-4.99.396l-5.094.878c-1.755.293-3.596.483-5.489.43a20.623 20.623 0 0 1-1.429-.103l-.705-.103h-.172c.499-3.03.137-.81.258-1.446 0 .069.052.155.103.258.017 0 .929 1.808.482 1.068l-.12.086c-.087.051-.173.103-.259.137-.361.19-.774.19-1.17.173h-.654c-.378 0-.757.051-1.153.086-1.548.19-3.183.637-4.921 1.016-.878.19-1.79.361-2.736.465-.912.12-2.048.103-2.719.103-1.566.052-3.201.327-4.905.62l-1.308.224c-.533.086-1.049.103-1.531.12l-2.599-.051c-.774 0-1.342.12-1.721.31-.877.465-1.772.86-2.701 1.154-1.842.568-3.683.81-5.404 1.033-1.721.207-3.355.413-4.853.827l-1.273.378c-.465.121-.946.224-1.411.293-.929.155-1.841.241-2.736.327-1.773.138-3.459.207-4.956.517-.757.155-1.343.379-2.323.689-.895.276-1.807.482-2.719.654-3.683.655-7.211.465-10.618.586-6.883.19-13.853.602-20.891.224-3.528-.19-7.056-.586-10.549-1.31-.878-.171-1.738-.395-2.616-.585a62.127 62.127 0 0 0-2.443-.55c-1.652-.328-3.339-.569-5.059-.827-1.721-.259-3.477-.551-5.232-.965l-5.076-1.274c-3.373-.861-6.763-1.791-10.102-3.014-3.338-1.257-6.539-2.652-9.688-4.374-3.132-1.705-6.144-3.823-8.742-6.355-5.214-4.925-9.207-11.245-11.478-18.03-1.17-3.341-2.134-6.768-2.771-10.281-.688-3.496-.774-7.216-.826-10.609-.206-10.057-.292-20.131.035-30.223.086-2.514.189-5.046.344-7.56l.12-1.894.052-.947.034-.465v-.259c-.086-.585-.034-1.205.293-1.705l.344-.55c.069-.104.121-.225.172-.328.241-.448.413-.947.568-1.447.62-2.066.585-4.58 1.119-7.284.137-.672.309-1.36.55-2.05.241-.688.379-1.084.551-1.67.293-1.102.499-2.273.671-3.479.344-2.428.568-5.045 1.394-7.68.224-.706.396-1.171.551-1.757.155-.55.292-1.136.413-1.705.241-1.17.43-2.376.619-3.616.189-1.24.379-2.514.637-3.789.12-.637.275-1.291.447-1.929l.465-1.79a78.47 78.47 0 0 0 1.411-7.216c.74-4.84.86-9.8 1.015-14.81.121-4.977.035-9.92-.671-14.742a49.03 49.03 0 0 0-1.549-7.095l-2.168-7.181c-.74-2.36-1.549-4.667-2.564-6.837a30.81 30.81 0 0 0-1.686-3.152l-1.997-3.186c-1.307-2.135-2.598-4.184-4.13-5.924a16.555 16.555 0 0 0-2.478-2.324 11.849 11.849 0 0 0-1.393-.896 21.268 21.268 0 0 1-1.721-1.05c-2.22-1.533-4.01-3.152-5.937-3.772-.43-.155-1.033-.275-1.635-.413a64.437 64.437 0 0 0-1.773-.345 42.003 42.003 0 0 0-3.562-.447c-2.374-.173-4.766-.104-7.072.31-2.289.378-4.578 1.171-6.849 2.066-4.509 1.808-8.725 4.271-12.58 7.267-1.962 1.516-3.923 3.118-5.971 4.633-1.015.758-2.151 1.515-3.149 2.187a44.232 44.232 0 0 0-2.926 2.153c-3.854 3.031-7.468 6.578-11.719 9.592-1.118.775-2.013 1.36-2.96 2.153-.946.757-1.875 1.567-2.822 2.376a66.96 66.96 0 0 1-6.04 4.753c-2.065 1.481-4.113 2.876-5.988 4.392-.895.723-1.945 1.636-2.978 2.393a55.533 55.533 0 0 1-3.2 2.205c-2.151 1.395-4.337 2.652-6.454 3.943l-6.367 3.996c-4.285 2.634-8.587 5.183-12.665 7.973-2.082 1.481-4.337 2.773-6.402 4.064a36.876 36.876 0 0 0-2.994 2.05l-2.994 2.256c-1.979 1.515-3.907 3.048-5.748 4.666-.929.81-1.772 1.654-2.719 2.498l-2.839 2.514-2.874 2.549c-.946.809-1.824 1.584-2.512 2.41-.31.362-.723.93-1.119 1.447l-1.222 1.499c-.826.981-1.669 1.945-2.512 2.893-1.704 1.877-3.425 3.702-5.025 5.562-.809.93-1.583 1.86-2.34 2.824l-2.238 3.014-4.491 6.027-2.237 3.014a93.684 93.684 0 0 0-2.1 2.997c-2.701 4.098-5.076 8.541-7.898 12.812-5.679 8.25-10.17 16.98-14.61 26.073-2.306 4.495-4.698 8.87-6.608 13.381a58.296 58.296 0 0 0-1.343 3.41l-.602 1.722c-.206.62-.43 1.24-.654 1.86-.929 2.445-2.013 4.753-3.046 7.026a104.217 104.217 0 0 0-2.891 6.837l-2.736 6.992c-1.79 4.667-3.51 9.35-5.042 14.07a172.883 172.883 0 0 0-1.325 4.27 76.853 76.853 0 0 1-1.446 4.409c-1.049 2.876-2.133 5.614-2.805 8.352-.172.655-.309 1.464-.395 1.98v.156l.034.396c0 .19.017.379 0 .55-.017.363-.103.741-.275 1.069-.086.155-.19.344-.276.482l-.12.207c-.654 1.153-1.153 2.428-1.583 3.788-.43 1.36-.775 2.79-1.153 4.271l-.62 2.239c-.155.534-.258 1.223-.413 1.998-.137.757-.361 1.756-.791 2.634l-.912 1.998a51.045 51.045 0 0 0-1.584 4.064 44.118 44.118 0 0 0-1.204 4.15c-.155.655-.31 1.481-.534 2.274a38.72 38.72 0 0 1-.722 2.273l-3.149 8.49c-1.067 2.824-2.152 5.614-3.115 8.404-1.79 5.821-4.56 11.383-6.626 16.825l-.757 2.101a43.236 43.236 0 0 1-.894 2.222c-.637 1.446-1.36 2.807-2.083 4.15-.722 1.343-1.428 2.635-2.082 3.943l-1.962 4.047c-2.667 5.425-5.851 10.902-10.136 15.465-2.116 2.291-4.474 4.426-7.193 6.148a22.946 22.946 0 0 1-4.371 2.17 23.19 23.19 0 0 1-2.374.706c-.758.172-1.515.344-2.272.482-6.092 1.171-12.562 1.206-18.671-.465-3.08-.826-5.903-2.135-8.622-3.186-.688-.258-1.359-.516-2.03-.74-.706-.241-1.48-.5-2.203-.792a40.045 40.045 0 0 1-4.285-1.964c-2.788-1.429-5.386-3.444-7.64-5.441-2.306-2.015-4.492-4.134-6.626-6.269l-6.315-6.389c-2.117-2.118-4.44-4.34-6.023-7.371-2.685-5.252-5.92-10.298-8.811-15.671-1.445-2.721-2.702-5.356-4.182-7.939a122.43 122.43 0 0 0-4.611-7.595c-3.27-4.942-6.884-9.643-10.945-13.897a81.87 81.87 0 0 0-6.419-6.045c-2.254-1.928-4.56-3.564-7.107-4.977-5.386-2.996-11.426-4.873-17.466-6.974-1.515-.5-3.064-1.154-4.406-1.516-1.428-.379-2.925-.62-4.491-.844-1.566-.224-3.184-.43-4.836-.775-1.738-.396-3.046-.809-4.595-1.05-3.011-.534-6.16-.723-9.361-.999-3.252-.31-6.281-.62-9.482-.792-6.298-.345-12.803-.5-19.101-1.102-3.063-.19-6.35-.035-9.723-.637-.86-.138-1.687-.362-2.375-.5-.74-.138-1.48-.258-2.237-.344-1.514-.172-3.097-.276-4.698-.38-1.6-.12-3.252-.257-4.922-.567a26.133 26.133 0 0 1-2.495-.586 37.84 37.84 0 0 0-2.237-.637c-2.942-.74-6.092-1.068-9.327-1.688-6.591-1.222-12.493-4.253-18.189-7.009-5.834-2.841-11.375-6.268-16.538-10.16-2.701-2.015-5.231-4.202-7.761-6.338a195.25 195.25 0 0 1-7.434-6.682c-4.818-4.667-9.361-9.385-13.99-14.155-4.595-4.788-9.103-9.679-13.406-14.742-4.319-5.08-8.346-10.401-12.2-15.792a432.382 432.382 0 0 1-5.68-8.163c-1.91-2.738-3.665-5.596-5.437-8.352-1.79-2.79-3.597-5.338-5.748-7.87-2.1-2.566-4.13-5.149-6.28-7.594-2.152-2.446-4.423-4.736-6.919-6.734-2.564-2.015-5.18-4.03-7.847-5.89-2.667-1.86-5.42-3.599-8.277-5.08-1.428-.723-2.908-1.48-4.285-1.912-1.411-.43-2.805-.55-4.078-.172-1.257.397-2.685 1.189-3.786 2.067-.568.448-1.084.947-1.48 1.464a5.014 5.014 0 0 0-.5.792c-.137.31-.171.413-.292.895-.877 3.272-2.15 6.217-2.323 9.162-.034.723-.034 1.464.069 2.17.103.74.224 1.653.292 2.463l.396 4.856c.138 1.602.43 3.014.723 4.736.258 1.653.413 3.306.534 4.96.206 3.306.189 6.56.258 9.781.034 1.619.086 3.22.172 4.805.034.81.12 1.567.189 2.394.069.86.103 1.705.086 2.548C9-3.506 8.501-.303 8.294 2.9c-.24 3.22-.396 6.492-.895 9.782a40.961 40.961 0 0 1-1.067 4.908c-.464 1.532-.808 3.048-1.17 4.65-.361 1.584-.705 3.185-1.187 4.787-.448 1.601-1.153 3.238-1.807 4.667-2.616 5.924-5.3 11.814-7.864 17.79-1.308 2.979-2.65 5.958-4.113 8.868-1.515 2.945-3.046 5.718-4.371 8.663-1.36 2.927-2.599 5.906-3.786 8.903-1.153 3.03-2.392 6.027-3.287 9.076-1.583 5.338-2.392 10.9-2.684 16.48-.155 2.79-.19 5.614-.12 8.404.085 2.738.619 5.477 1.118 8.266.24 1.395.481 2.825.636 4.254.155 1.481.155 2.859.379 4.202.378 2.721 1.136 5.442 1.635 8.301.55 2.876.464 5.786 1.101 8.335.172.671.361 1.188.654 1.894.275.689.516 1.378.723 2.084.413 1.395.723 2.807.998 4.219.275 1.395.533 2.773.843 4.133.31 1.292.74 2.79.878 4.254.155 1.446.224 2.858.378 4.219.086.672.19 1.343.345 1.963.154.62.395 1.171.688 1.929.998 2.859 1.153 5.786 1.531 8.524.19 1.378.465 2.704.895 3.944.55 1.343.826 2.979.86 4.426.052 2.945-.068 5.666 0 8.507.052 2.825.138 5.649.138 8.508 0 2.858-.103 5.717-.464 8.576-.327 2.841-1.016 5.734-1.807 8.421-1.29 4.615-2.461 9.385-4.595 13.863-2.22 4.305-4.147 8.679-6.522 12.968-1.187 2.135-2.495 4.219-3.975 6.199l-4.405 5.752a382.202 382.202 0 0 1-9.07 11.297c-3.08 3.72-6.315 7.354-9.533 10.901-3.2 3.582-6.35 7.199-9.361 10.936a156.014 156.014 0 0 0-4.388 5.683 112.05 112.05 0 0 1-4.578 5.683c-3.115 3.702-6.556 7.181-9.62 10.763-2.082 2.445-4.13 5.011-6.453 7.388-1.17 1.205-2.426 2.273-3.579 3.375l-3.528 3.324c-4.663 4.477-9.516 8.989-14.988 12.64-5.404 3.72-11.048 6.958-16.865 9.989a70.985 70.985 0 0 1-9.12 3.771 92.999 92.999 0 0 1-4.715 1.447c-1.618.447-3.132.792-4.629 1.308-2.857.913-5.817 2.136-9.155 2.325-2.926.035-5.713 1.068-8.931 1.55-.809.104-1.618.19-2.444.19-.413 0-.826 0-1.256-.069l-1.136-.138c-1.394-.138-2.874-.034-4.44 0-.774.017-1.583.017-2.409-.034-.757-.052-1.48-.104-2.237-.121a133.895 133.895 0 0 0-4.526 0c-3.046.069-6.161.155-9.31-.189a30.499 30.499 0 0 1-4.663-.879c-1.411-.379-2.891-.637-4.371-.826-2.977-.414-6.058-.62-9.138-1.154l-9.017-1.86-9.017-1.86-4.509-.93c-1.497-.362-2.994-.74-4.474-1.154-2.977-.826-5.903-1.722-8.828-2.6l-4.388-1.292c-1.446-.396-3.012-.861-4.457-1.412-2.926-1.085-5.714-2.445-8.484-3.702-2.736-1.258-5.627-2.377-8.398-3.858a27.57 27.57 0 0 1-3.992-2.566 72.279 72.279 0 0 1-3.631-2.928 76.352 76.352 0 0 1-6.625-6.544 80.305 80.305 0 0 1-3.958-4.77c-1.274-1.601-2.496-3.427-3.408-5.338-1.876-3.824-2.805-8.008-3.149-12.176-.258-4.099-.619-8.163-.551-12.33.035-2.084.172-4.168.5-6.252.154-1.033.378-2.066.619-3.099l.413-1.516c.12-.43.224-.878.293-1.343.309-1.877.223-3.961.774-6.183.12-.533.361-1.136.568-1.601l.568-1.378c.378-.93.722-1.877 1.049-2.824 1.36-3.789 2.375-7.75 3.872-11.642 1.463-3.857 3.132-7.56 4.251-11.383.998-4.012 2.77-7.87 4.388-11.572.637-1.464 1.239-2.911 1.755-4.375.517-1.463 1.067-3.065 1.704-4.529 1.239-2.996 2.633-5.89 3.992-8.783 1.36-2.893 2.65-5.769 3.717-8.731 1.084-3.031 2.306-6.062 3.769-8.972.74-1.481 1.566-2.876 2.306-4.237a80.147 80.147 0 0 0 2.134-4.219 59.483 59.483 0 0 0 1.807-4.339l.206-.552c.086-.223.172-.447.275-.671.207-.431.448-.827.672-1.188.481-.724.946-1.326 1.273-1.929a4.83 4.83 0 0 0 .379-.879l.327-1.136c.24-.792.499-1.584.791-2.359a52.51 52.51 0 0 1 1.945-4.495c1.411-2.928 2.925-5.718 4.181-8.594.654-1.463 1.119-2.807 1.687-4.425.585-1.567 1.291-3.049 2.03-4.495 1.498-2.893 3.046-5.58 4.285-8.507 2.599-5.804 5.094-11.711 8.002-17.446 2.771-5.717 5.559-11.434 8.329-17.152 2.788-5.803 6.161-11.228 9.344-16.67 3.012-5.356 6.505-10.54 10.239-15.413a292.427 292.427 0 0 1 5.714-7.233c.963-1.17 1.893-2.41 3.046-3.565 1.118-1.119 2.306-2.1 3.407-3.117a19.2 19.2 0 0 0 1.566-1.567 72.412 72.412 0 0 1 1.583-1.705 59.153 59.153 0 0 1 3.407-3.186c2.323-2.032 4.733-3.909 6.97-5.924 4.405-4.322 9.826-7.508 13.302-12.296a38.057 38.057 0 0 0 4.422-7.766c.568-1.378 1.119-2.79 1.446-4.185.344-1.412.482-2.876.482-4.34s-.172-2.928-.465-4.374c-.292-1.412-.791-2.825-1.325-4.237-.533-1.412-1.118-2.841-1.618-4.322-.481-1.498-.929-2.876-1.479-4.305-1.067-2.825-2.341-5.58-3.683-8.318l-2.031-4.082c-.688-1.326-1.462-2.635-2.237-3.978-.757-1.326-1.531-2.686-2.185-4.133l-2.014-4.116-4.043-8.232c-1.635-3.461-3.494-6.853-5.232-10.315a195.417 195.417 0 0 1-4.853-10.557 154.354 154.354 0 0 1-7.417-21.991c-1.015-3.703-2.133-7.405-3.063-11.177a80.638 80.638 0 0 1-1.204-5.717c-.19-1.033-.19-2.067-.241-2.98-.035-.464-.069-.895-.155-1.291a2.705 2.705 0 0 0-.155-.568l-.241-.69c-1.291-3.736-1.996-7.594-2.719-11.365l-1.118-5.683a66.41 66.41 0 0 1-.723-5.821c-.671-7.767-.379-15.465-.465-23.197v-5.786c.017-1.946-.103-3.823.086-5.873.19-1.997.568-3.892.826-5.769.293-1.997.861-3.943 1.532-5.786.671-1.843 1.428-3.634 2.117-5.408l.636-1.704.189-.534.104-.259.051-.137H-191.961l.981-.035c.619-.017 1.256-.052 1.841-.207.843-.223 1.6-.103 2.375.19.688.258 1.428.413 2.134.637.223.069.619.138.654.448.12.878-1.257.981-1.979 1.171-.861.224-1.756.413-2.633.534-.912.12-1.859.189-2.788.172l-.929-.035h-4.354c-.034 0-.034.035-.052.052l-.877 2.222c-1.377 3.41-2.668 6.475-3.063 9.936-.293 1.809-.603 3.548-.74 5.236-.035.413-.052.826-.069 1.24v14.861c0 3.6-.069 7.216 0 10.798.103 3.582.292 7.147.74 10.643.223 1.774.55 3.392.929 5.235l1.015 5.321c.344 1.757.706 3.496 1.153 5.184.224.844.465 1.688.74 2.497l.448 1.326c.172.569.258 1.12.309 1.636.104 1.033.086 1.929.173 2.704.068.689.275 1.688.43 2.514.344 1.74.74 3.462 1.187 5.184.878 3.461 1.927 6.923 2.857 10.436a151.06 151.06 0 0 0 6.814 20.355 185.305 185.305 0 0 0 4.406 9.8c.774 1.618 1.583 3.22 2.409 4.804a105.744 105.744 0 0 1 2.443 4.84l6.522 13.363c.999 2.204 2.152 4.236 3.408 6.406a61.402 61.402 0 0 1 1.807 3.324l1.652 3.323c1.084 2.24 2.151 4.495 3.097 6.82a67.34 67.34 0 0 1 1.342 3.53l.603 1.809c.189.568.361 1.119.568 1.687.808 2.256 1.858 4.53 2.512 7.113.62 2.566.861 5.2.62 7.853a20.601 20.601 0 0 1-.775 3.926 39.224 39.224 0 0 1-1.342 3.616 38.69 38.69 0 0 1-3.683 6.734c-1.394 2.118-3.183 4.15-5.059 5.838-1.876 1.722-3.855 3.255-5.713 4.805a59.845 59.845 0 0 0-2.702 2.376 93.083 93.083 0 0 1-2.805 2.497c-1.893 1.619-3.803 3.169-5.61 4.77-.895.81-1.79 1.62-2.616 2.463-.843.827-1.566 1.722-2.529 2.704-1.842 1.843-3.803 3.306-5.249 5.028-3.596 4.392-7.21 8.887-10.497 13.52a120.825 120.825 0 0 0-4.698 7.111l-4.354 7.423c-2.925 4.942-5.782 9.868-8.157 15.034l-7.589 15.551c-2.581 5.08-4.835 10.35-7.193 15.602-1.135 2.618-2.443 5.339-3.82 7.836-1.359 2.531-2.65 4.994-3.51 7.629-1.945 5.666-5.163 10.539-7.211 15.723-.533 1.326-.895 2.531-1.325 4.03-.585 1.739-1.738 2.875-2.289 3.926a4.734 4.734 0 0 0-.361.792l-.379 1.033a42.968 42.968 0 0 1-.825 2.05 60.25 60.25 0 0 1-1.859 3.978 111.616 111.616 0 0 1-2.151 4.012 52.63 52.63 0 0 0-2.031 3.892c-1.256 2.67-2.288 5.391-3.321 8.232-2.168 5.718-5.059 11.005-7.314 16.446a79.444 79.444 0 0 0-1.566 4.134 57.63 57.63 0 0 1-1.669 4.27c-1.187 2.79-2.443 5.477-3.424 8.215-.516 1.395-.861 2.704-1.291 4.236-.447 1.481-.963 2.911-1.497 4.34-1.084 2.842-2.254 5.58-3.252 8.352-.964 2.739-1.79 5.666-2.754 8.525-.482 1.429-.981 2.876-1.548 4.288l-.861 2.084a8.77 8.77 0 0 0-.482 1.877c-.206 1.36-.241 2.859-.447 4.443-.086.775-.293 1.67-.517 2.394a28.748 28.748 0 0 0-.533 2.083c-.619 2.807-.826 5.701-.826 8.628 0 2.928.207 5.89.396 8.886.155 2.997.464 5.821 1.204 8.611.723 2.773 1.859 5.407 3.408 7.767 1.6 2.325 3.527 4.667 5.472 6.854 3.528 3.926 7.537 7.594 11.822 10.47 2.169 1.361 4.595 2.429 7.073 3.496 2.512 1.051 4.99 2.239 7.417 3.324 2.443 1.085 4.852 2.049 7.399 2.721 2.633.74 5.215 1.533 7.813 2.308 5.18 1.584 10.291 2.979 15.608 3.943l15.832 3.221c2.633.602 5.214.792 7.933 1.102 1.36.155 2.719.31 4.096.534 1.342.206 2.856.585 4.061.878 4.973 1.205 10.291.654 15.814.689.689 0 1.394.017 2.083.051l2.013.121c1.239.052 2.564-.052 3.975-.086.706 0 1.446 0 2.186.051.843.069 1.342.19 1.944.19 1.171.052 2.392-.103 3.666-.362l3.958-.861a36.262 36.262 0 0 1 2.133-.361c.689-.087 1.584-.121 2.1-.155 2.392-.173 4.853-1.068 7.434-1.946 1.273-.431 2.667-.879 3.992-1.206a74.388 74.388 0 0 0 3.838-1.085 75.132 75.132 0 0 0 7.451-2.704c2.444-1.033 4.75-2.221 7.125-3.53a176.229 176.229 0 0 0 6.969-4.012c4.56-2.808 9-5.77 13.01-9.231 4.044-3.462 7.847-7.285 11.873-10.987 4.062-3.444 7.142-7.681 10.842-11.848 3.7-4.03 7.33-7.939 10.669-12.107 1.652-2.049 3.218-4.288 4.939-6.423a184.306 184.306 0 0 1 5.197-6.321c3.39-4.012 6.97-7.87 10.394-11.744 3.424-3.892 6.728-7.905 9.98-11.969l4.82-6.148c1.565-2.067 3.234-4.151 4.628-6.183 2.805-4.184 4.939-8.886 7.262-13.604 1.222-2.411 2.323-4.53 3.15-6.941.86-2.376 1.548-4.856 2.236-7.37l1.067-3.789c.327-1.205.637-2.411.86-3.651.465-2.462.706-4.994.81-7.525.223-5.098-.104-10.299-.086-15.603 0-2.669.223-5.27-.31-7.353a6.134 6.134 0 0 0-.241-.741c-.12-.344-.258-.689-.361-1.033a22.645 22.645 0 0 1-.517-2.067c-.275-1.377-.43-2.721-.585-4.012-.155-1.292-.31-2.532-.55-3.72a18.05 18.05 0 0 0-.448-1.722c-.172-.568-.396-1.016-.671-1.843-.895-2.979-.706-5.666-1.084-8.025-.086-.62-.207-1.102-.362-1.722a47.091 47.091 0 0 1-.464-1.98l-.774-3.875c-.259-1.257-.534-2.48-.878-3.651-.327-1.223-.809-2.118-1.308-3.703-.809-2.876-.723-5.579-1.101-7.973-.362-2.445-1.033-4.96-1.515-7.629a35.06 35.06 0 0 1-.516-4.099 38.729 38.729 0 0 0-.379-3.737c-.378-2.497-.946-5.08-1.273-7.767a36.184 36.184 0 0 1-.293-4.098 153.344 153.344 0 0 1 0-3.978c.052-2.652.19-5.304.448-7.956.533-5.305 1.583-10.592 3.355-15.672 1.807-4.994 3.7-9.85 5.886-14.69a113.984 113.984 0 0 1 3.51-7.13c1.205-2.255 2.323-4.58 3.408-6.94l8.535-19.408 2.1-4.804c.602-1.516 1.032-3.152 1.428-4.84.396-1.687.74-3.444 1.204-5.217l.706-2.55c.206-.809.396-1.635.533-2.462.603-3.34.758-6.82.999-10.367.206-3.6.757-7.112.722-10.436 0-.861-.069-1.602-.155-2.514a72.235 72.235 0 0 1-.189-2.721 113.28 113.28 0 0 1-.155-5.373c-.051-3.548-.086-7.044-.447-10.454a42.529 42.529 0 0 0-.344-2.531l-.465-2.635c-.293-1.843-.413-3.65-.55-5.407a56.608 56.608 0 0 0-.242-2.566l-.172-1.292a14.64 14.64 0 0 1-.12-1.498c-.052-2.015.31-3.944.809-5.735.499-1.79 1.084-3.461 1.531-5.08l.155-.603c.086-.293.172-.62.31-.878.24-.569.533-1.033.86-1.481.654-.879 1.411-1.584 2.203-2.204a16.488 16.488 0 0 1 3.838-2.205c.498-.19 1.032-.379 1.565-.482 2.169-.465 4.337-.017 6.144.672 6.9 2.876 12.734 7.095 18.396 11.417 2.84 2.101 5.678 4.616 8.105 7.268 2.46 2.652 4.698 5.441 6.935 8.18l1.927 2.359c.671.81 1.308 1.653 1.928 2.497 1.221 1.688 2.357 3.427 3.459 5.15a210.27 210.27 0 0 0 6.71 10.125c4.613 6.665 9.38 13.226 14.542 19.426 5.18 6.2 10.704 12.14 16.348 17.979l8.536 8.697c2.822 2.875 5.764 5.614 8.81 8.283 3.666 3.186 7.331 6.355 11.203 9.144a96.081 96.081 0 0 0 12.218 7.56c4.285 2.119 8.708 4.375 13.096 6.028a40.436 40.436 0 0 0 6.78 1.894c2.323.448 4.749.758 7.21 1.24 1.222.241 2.478.534 3.7.93 1.136.362 2.185.62 3.338.81 2.272.378 4.681.482 7.142.671 1.239.103 2.495.241 3.769.465.619.104 1.325.276 1.858.396.551.138 1.119.224 1.669.31 2.272.345 4.647.327 7.125.413 2.547.087 4.921.397 7.331.517l7.279.38c4.852.206 9.809.464 14.644 1.015 2.392.224 4.836.379 7.314.654a46.08 46.08 0 0 1 3.717.552c.619.12 1.239.258 1.858.396l1.773.465c2.237.533 4.629.757 7.107 1.153 1.239.207 2.512.465 3.769.862 1.307.43 2.305.843 3.493 1.24 4.56 1.601 9.258 3.082 13.818 5.097 2.272.999 4.526 2.153 6.66 3.496 2.151 1.343 4.147 2.91 6.006 4.512 7.572 6.458 13.801 14.293 19.015 22.628 2.616 4.151 4.956 8.594 7.124 12.882 2.272 4.254 4.836 8.387 7.211 12.675.705 1.24 1.394 2.6 2.03 3.788.62 1.137 1.446 2.205 2.358 3.221 1.824 2.032 3.992 4.03 5.971 6.096 4.01 4.099 8.002 8.197 12.39 11.659 2.169 1.67 4.595 3.048 7.125 4.15 1.29.569 2.529.982 3.94 1.481 1.394.5 2.719 1.051 4.044 1.602 2.651 1.119 5.197 2.049 7.934 2.566 2.701.551 5.489.775 8.26.671 2.787-.069 5.558-.447 8.294-1.05 2.685-.534 5.146-1.671 7.4-3.238 2.254-1.55 4.302-3.496 6.178-5.562a47.018 47.018 0 0 0 5.059-6.716c1.497-2.377 2.839-4.891 4.113-7.44 1.239-2.532 2.495-5.218 3.906-7.715 1.377-2.532 2.616-4.96 3.493-7.681.999-2.738 2.151-5.39 3.287-8.025.981-2.307 1.945-4.598 2.754-6.94a159.37 159.37 0 0 1 2.529-7.13l2.65-7.043c.809-2.377 1.842-4.736 2.53-7.043.172-.586.31-1.154.447-1.757.138-.637.293-1.257.448-1.877.327-1.24.723-2.463 1.136-3.686.43-1.205.894-2.393 1.394-3.564l.774-1.74.396-.843c.103-.224.189-.483.258-.741.292-1.033.396-2.445.809-3.703.344-1.188.636-2.393.963-3.616.327-1.223.671-2.463 1.119-3.703a19.89 19.89 0 0 1 1.635-3.513c.241-.293-.018-.379.068-1.532.758-4.667 2.719-8.835 4.113-13.037 1.291-4.254 2.668-8.645 4.216-12.881 1.532-4.254 3.167-8.473 4.819-12.675.843-2.101 1.617-4.202 2.529-6.303l2.805-6.165a59.044 59.044 0 0 0 2.41-6.234c.757-2.17 1.634-4.271 2.581-6.355 1.91-4.133 4.078-8.111 6.109-12.107 3.923-8.076 8.105-16.188 13.147-23.748 4.182-5.975 7.348-12.64 11.908-18.581l6.574-8.835c2.1-2.98 4.578-5.855 7.073-8.542 2.512-2.72 4.904-5.338 7.141-8.317 1.291-1.516 2.788-2.67 4.113-3.858l4.079-3.634a98.776 98.776 0 0 1 8.449-7.215 174.68 174.68 0 0 1 4.44-3.324c1.548-1.085 3.132-2.05 4.698-2.996 1.583-.948 3.028-1.912 4.577-2.98a164.528 164.528 0 0 1 4.646-3.013l9.362-5.77c3.046-1.98 6.281-3.909 9.361-5.786 1.549-.964 3.063-1.946 4.492-3.014a46.78 46.78 0 0 0 2.099-1.67 51.144 51.144 0 0 1 2.203-1.739c2.977-2.239 6.04-4.22 8.793-6.527l4.199-3.582a38.513 38.513 0 0 1 2.255-1.722 55.766 55.766 0 0 0 2.219-1.568c2.891-2.152 5.576-4.615 8.398-6.991 1.411-1.189 2.857-2.36 4.388-3.462 1.566-1.102 3.029-2.032 4.475-3.151 2.478-1.843 4.818-3.858 7.416-5.735a55.26 55.26 0 0 1 8.209-4.856c2.891-1.361 5.816-2.515 8.983-3.307 3.166-.74 6.436-.895 9.636-.637 1.601.121 3.184.362 4.75.672.809.172 1.497.292 2.392.551.843.258 1.635.637 2.375 1.05 1.462.844 2.701 1.86 3.923 2.738.62.431 1.222.827 1.842 1.171.74.414 1.445.861 2.116 1.378 2.685 2.049 4.612 4.77 6.281 7.422l2.478 3.944a33.786 33.786 0 0 1 2.341 4.237c1.359 2.91 2.357 5.941 3.269 8.937l1.343 4.461a57.327 57.327 0 0 1 1.239 4.615c1.376 6.251 1.583 12.64 1.445 18.909-.086 3.151-.155 6.234-.379 9.403a82.78 82.78 0 0 1-1.204 9.42 83.552 83.552 0 0 1-1.015 4.65c-.431 1.584-.74 2.892-.998 4.442-.517 2.997-.809 6.235-1.911 9.386-1.342 3.737-1.032 8.163-2.529 12.658-.775 1.911-.93 3.788-1.17 6.01-.121 1.085-.259 2.221-.551 3.375a10.637 10.637 0 0 1-.568 1.722c-.103.293-.258.569-.396.844-.069.138-.137.276-.224.413l-.154.259s-.069.086-.052.155v.086l.017.172v.293c-.963 14.293-.843 28.604-.533 42.95-.035 7.026 1.738 13.897 4.302 20.441 2.581 6.44 6.883 12.176 12.252 16.515 2.702 2.153 5.731 3.875 8.914 5.356 3.201 1.498 6.471 2.79 9.844 3.789 3.372 1.016 6.849 1.86 10.325 2.738 3.355.827 6.9 1.17 10.514 1.86.912.172 1.807.361 2.719.602.86.19 1.704.414 2.547.586 1.721.344 3.442.637 5.18.827 3.493.413 7.021.55 10.566.568 3.545 0 7.107-.12 10.703-.241l10.721-.293c1.704-.086 3.373-.275 4.973-.672.396-.086.792-.206 1.188-.327l1.273-.43a15.836 15.836 0 0 1 2.857-.569c1.858-.223 3.631-.258 5.283-.482a16.32 16.32 0 0 0 2.357-.465c.792-.24 1.825-.55 2.719-.688 3.683-.672 7.159-.655 9.947-2.067l.533-.276c.293-.155.585-.275.878-.379a6.88 6.88 0 0 1 1.669-.31c1.05-.068 1.962 0 2.788 0 .413 0 .809 0 1.17-.034.327-.034.723-.103 1.188-.19l2.65-.447a29.368 29.368 0 0 1 2.787-.293c.465-.034.999-.017 1.412-.017.378 0 .774-.017 1.17-.052 1.583-.155 3.235-.585 5.007-.999a26.898 26.898 0 0 1 2.754-.516c.482-.052.963-.104 1.462-.12.241 0 .499-.018.74 0h.121l.051-.035s.276-.19.74-.241h.5l.068.017.585.086c.396.052.792.069 1.188.086.809.035 1.617 0 2.443-.086 3.322-.293 6.763-1.309 10.549-1.55 3.58-.19 7.107-.293 10.635-.396 3.528-.12 7.038-.241 10.514-.517 1.739-.137 3.477-.31 5.197-.533 1.704-.224 3.545-.465 5.318-.638 7.141-.671 14.231-.637 21.201-1.085l.809-.051h.051l.103-.018.224-.034.448-.069.877-.155c.258-.051.516-.069.775-.086.223 0 .585 0 .567.035.138.051.345.155.603.206.378 0 .533 0 .757-1.326.052-.224.172-.672.413-.637l-.086-.069Z%27/%3E%3Cpath d=%27M890.816 50.338c.378 0 .688.12.878.43.172.276.327.878-.207 1.498-.551.568-1.222.637-1.687.705-.482.052-.809.104-1.119.224-.482.172-1.016.293-1.515.276a47.124 47.124 0 0 0-2.204-.018h-.533l-.276.017-1.239.07c-.5.034-.964.103-1.498.172-1.033.137-2.066.31-3.099.481-4.149.723-8.418 1.67-12.894 1.86-4.046.102-8.057 1.307-12.429 2.03l-1.653.241c-.534.086-1.274.12-1.773.12-.534 0-1.033 0-1.412.07a1.962 1.962 0 0 0-.499.103c-.069.017-.121.051-.172.069l-.224.12c-2.083 1.17-4.373 1.807-6.542 2.22-2.186.413-4.304.654-6.301 1.067-1.032.207-1.876.448-2.978.775-1.05.292-2.1.568-3.15.843-2.083.534-4.149 1.016-6.146 1.6a53.2 53.2 0 0 0-2.944.947c-1.033.38-2.1.723-3.15 1.033l-6.163 1.704c-.999.293-1.963.62-2.91.981-.482.19-.912.379-1.411.585-.551.241-1.102.448-1.653.62-2.186.723-4.287 1.101-6.146 1.738-.465.155-.895.327-1.325.517l-1.464.688c-.998.448-1.979.878-2.978 1.29-3.994 1.67-8.057 3.099-12.085 4.51l-6.008 2.152c-1.98.705-3.891 1.531-5.905 2.34-2.014.81-4.097 1.601-6.335 2.1-1.154.258-2.186.43-3.495.516-.723 0-1.257-.051-1.67-.068h-.31c-.034 0-.051.017-.068.034-1.016.981-2.686 1.687-4.046 1.876-1.394.241-2.668.241-3.753.344a9.561 9.561 0 0 0-1.515.258c-.224.052-.43.138-.637.224l-.275.138s-.086.034-.155.086l-.31.206-.62.413c-.258.052-.568-.017-.843-.017l-1.085-.069c-.585-.051-1.188-.051-1.773-.086-4.734-.137-9.572.19-14.53.155-2.479-.017-4.975-.137-7.471-.482a54.185 54.185 0 0 1-3.719-.654 36.458 36.458 0 0 0-3.426-.55c-2.324-.276-4.734-.396-7.195-.603a57.052 57.052 0 0 1-3.719-.413c-1.239-.172-2.565-.465-3.632-.671-4.562-.826-9.486-.792-14.478-1.825-2.548-.516-4.855-1.36-7.128-1.996a35.461 35.461 0 0 0-3.374-.809c-.551-.103-1.119-.172-1.67-.24-.671-.07-1.463-.207-2.134-.431-2.772-.895-4.734-2.582-6.663-3.494-.843-.396-2.186-.843-3.322-1.36a34.802 34.802 0 0 1-3.392-1.72c-4.424-2.514-8.263-5.87-11.62-9.536-4.648-5.043-8.384-10.912-11.138-17.142-1.394-3.098-2.513-6.403-3.512-9.535-.516-1.601-1.033-3.288-1.326-5.078-.154-.86-.223-1.91-.223-2.72 0-.688-.121-1.393-.293-2.133-.327-1.48-.895-3.116-1.153-5.009a12.84 12.84 0 0 1-.121-1.445c0-.5.017-1.016.035-1.377l.12-2.462c.121-3.287.121-6.574.086-9.896-.086-6.626-.344-13.304-.12-20.034.103-3.373.327-6.747.74-10.12l.361-2.53c.121-.792.207-1.532.259-2.341.103-1.583.12-3.219.155-4.905.051-1.687.12-3.443.43-5.233.155-.912.43-1.824.602-2.53.19-.774.362-1.549.5-2.358.619-3.184 1.05-6.609 2.255-9.982.138-.43.31-.843.482-1.256l.448-1.12c.292-.74.55-1.497.809-2.271.516-1.532.981-3.115 1.463-4.716.482-1.6.981-3.218 1.567-4.836.292-.81.602-1.618.946-2.41l.947-2.272c2.428-6.058 4.252-12.46 6.37-18.794 0 .017.017-.138-.017-.74-.052-.517.034-1.532.499-2.272 1.412-2.358 1.825-5.302 2.135-8.417l.258-2.392c.103-.844.224-1.601.275-2.324.155-1.48.19-2.977.104-4.475-.155-2.994-.741-5.955-1.705-8.829-.929-2.857-2.255-5.559-4.028-7.883a20.68 20.68 0 0 0-6.611-5.645c-2.496-1.429-5.405-2.186-8.125-2.031-2.772.172-5.44 1.429-8.591 2.633-1.687.568-3.236.826-4.407 1.343-.293.12-.551.258-.792.413-.241.155-.396.292-.757.585-.62.534-1.24 1.033-1.877 1.532-5.044 4.027-10.415 7.418-15.304 11.239-4.872 3.89-9.658 8.089-14.633 12.048-4.975 4.01-10.209 7.676-15.511 11.204a157.583 157.583 0 0 1-8.177 5.043c-2.789 1.584-5.612 3.03-8.332 4.561a70.58 70.58 0 0 0-7.816 4.974c-2.548 1.825-5.079 3.787-7.919 5.49-5.526 3.047-10.433 6.713-15.236 10.758-2.392 2.013-4.751 4.096-7.109 6.196-2.342 2.03-4.459 4.217-6.508 6.574-2.048 2.341-4.011 4.785-6.042 7.246-2.083 2.479-4.012 4.768-5.836 7.332-1.825 2.513-3.581 5.13-5.371 7.745-1.808 2.651-3.616 5.164-5.303 7.797a166.933 166.933 0 0 0-9.244 16.316c-2.772 5.577-5.199 11.429-7.799 17.195-2.599 5.782-5.044 11.514-7.23 17.417l-2.996 8.176-2.685 8.278-2.651 8.296c-.896 2.754-1.791 5.525-2.548 8.313-3.116 11.136-6.456 22.323-9.847 33.51-.93 2.789-1.894 5.474-2.479 8.141-.276 1.257-.5 2.858-.878 4.321a69.516 69.516 0 0 1-1.223 4.319c-.912 2.84-1.807 5.474-2.651 8.279l-2.582 8.33-2.582 8.331c-.827 2.805-1.842 5.628-2.755 8.313-.929 2.736-1.687 5.318-2.083 8.141-.516 3.063-1.532 5.903-2.376 8.622a58.083 58.083 0 0 0-1.153 4.114 39.725 39.725 0 0 1-1.446 4.32c-1.102 2.788-2.359 5.422-3.443 8.038l-.775 1.962a32.98 32.98 0 0 1-.895 2.134 30.147 30.147 0 0 1-2.29 4.045c-1.738 2.564-3.839 4.801-6.077 6.798-.568.499-1.136.981-1.704 1.463-.62.516-1.308.998-1.997 1.411-1.377.844-2.84 1.463-4.321 1.962-1.48.499-3.013.844-4.562 1.05-1.515.207-3.03.31-4.545.345-3.03.068-6.025-.19-8.986-.637a73.073 73.073 0 0 1-4.39-.809l-2.169-.499c-.654-.172-1.085-.207-1.808-.241-.688-.035-1.515-.035-2.41-.19a5.454 5.454 0 0 1-.688-.155l-.534-.154-1.067-.31-4.184-1.308c-2.789-.895-5.44-1.704-8.315-2.479-2.909-.877-5.612-2.065-8.28-3.063-1.274-.482-2.772-.964-4.149-1.584-1.377-.602-2.72-1.273-4.029-1.945l-3.856-2.013c-1.239-.654-2.565-1.257-3.908-1.98a73.94 73.94 0 0 1-7.591-4.647c-4.872-3.373-9.348-7.125-13.738-11.067-9.279-8.536-16.338-18.932-23.31-29.069-3.512-5.147-6.696-10.448-10.071-15.559-1.687-2.565-3.408-5.078-5.25-7.487-1.773-2.393-3.839-4.51-6.112-6.455-2.272-1.944-4.734-3.683-7.282-5.369l-3.873-2.513c-.671-.431-1.274-.826-1.877-1.153-.602-.345-1.256-.637-1.928-.913-2.668-1.084-5.612-1.67-8.642-2.289-3.081-.602-6.094-1.445-9.02-2.048-2.979-.654-5.768-.878-8.884-.843-1.549 0-3.167-.035-4.82-.258-.809-.104-1.739-.31-2.376-.43a21.916 21.916 0 0 0-2.134-.293c-1.446-.138-2.927-.155-4.442-.12l-2.289.068c-.775.035-1.498.069-2.428.052-3.529-.155-6.438-1.48-9.124-1.55-.361-.017-.723 0-1.067 0l-1.205.121c-.895.103-1.791.12-2.669.138-1.773 0-3.494-.138-5.181-.293-1.687-.155-3.34-.344-4.958-.447a38.074 38.074 0 0 0-2.41-.086h-1.188s-.551.103-.878.069c-.379 0-.758-.138-1.085-.345-.31-.189-.379-.223-.516-.292-.138-.052-.259-.138-.379-.19a6.54 6.54 0 0 0-.809-.31 13.9 13.9 0 0 0-1.808-.412c-1.274-.207-2.651-.31-4.114-.534-2.892-.482-5.647-1.29-8.332-2.272-1.36-.516-2.617-.998-3.994-1.635-1.343-.637-2.565-1.377-3.77-2.065-1.205-.706-2.359-1.377-3.53-1.945-.602-.293-1.136-.5-1.79-.757a49.635 49.635 0 0 1-2.014-.827c-5.302-2.34-9.916-5.765-14.323-9.173-4.373-3.46-8.677-7.005-13.015-10.5L84.85 40.942l-13.376-9.862c-2.255-1.67-4.39-3.27-6.749-4.579-2.34-1.325-4.82-2.478-7.35-3.476a87.537 87.537 0 0 0-4.339-1.567 12.826 12.826 0 0 0-4.183-.602c-2.858.052-5.664 1.102-8.28 2.564C35.303 26.363 31 30.855 27.42 35.846c-3.615 4.991-6.662 10.516-9.882 15.869l-4.785 8.09a89.256 89.256 0 0 0-4.425 8.175c-1.342 2.805-2.565 5.662-3.787 8.553-.603 1.446-1.257 2.892-1.825 4.338l-1.67 4.354-.843 2.169-.413 1.084c-.121.327-.207.671-.293 1.016-.344 1.411-.465 2.943-.654 4.526a25.23 25.23 0 0 1-.379 2.427c-.172.843-.482 1.67-.671 2.34-.43 1.429-.706 2.927-.896 4.424-.344 3.012-.413 6.196-.533 9.294-.086 3.115-.07 6.213.155 9.311.206 3.098.602 6.162 1.24 9.191.774 3.012 1.221 6.334 1.187 9.518 0 1.36 0 2.685.19 3.941.103.62.24 1.222.464 1.687.293.603.62 1.291.86 1.962 1 2.737 1.258 5.559 1.602 8.227.31 2.651.998 5.301 1.463 8.021.5 2.702.964 5.404 1.343 8.141.413 2.736.534 5.49 1.016 8.106.447 2.668 1.067 5.353 1.36 8.141.155 1.394.206 2.84.155 4.217l-.086 4.096c-.052 2.737-.086 5.49-.276 8.244-.293 5.508-1.36 11.102-3.391 16.282-.982 2.599-2.1 5.112-3.254 7.607-1.17 2.479-2.204 4.992-3.512 7.47-2.582 4.923-5.819 9.432-9.175 13.786-3.357 4.338-6.8 8.623-10.433 12.737l-9.313 10.447-9.486 10.275c-3.133 3.408-6.043 7.022-9.124 10.551a336.304 336.304 0 0 1-9.4 10.395l-2.41 2.548-2.307 2.616-4.613 5.215-9.262 10.481c-6.318 6.885-12.929 13.597-20.435 19.294-10.053 7.625-20.933 14.303-32.812 18.846-2.978 1.068-5.973 1.997-8.969 2.995-2.961.981-6.008 2.014-9.072 2.788-1.515.396-3.013.809-4.494 1.257-1.428.482-3.116.964-4.699 1.222-3.22.551-6.439.602-9.589.585-11.775-.086-23.706.62-35.619-.878-2.961-.396-5.939-.877-8.848-1.566-2.789-.706-5.681-.895-8.694-1.394-1.515-.224-3.012-.671-4.372-.947-1.412-.292-2.858-.499-4.322-.705-2.909-.396-5.956-.809-8.865-1.704-2.703-.809-5.63-1.05-8.608-1.584a30.007 30.007 0 0 1-4.442-1.136c-1.377-.447-2.788-.86-4.2-1.256-5.647-1.532-11.551-2.892-17.095-5.198-5.577-2.255-10.863-4.905-16.079-7.917a45.117 45.117 0 0 1-13.221-12.306c-2.324-3.287-4.338-6.85-5.612-10.74a29.523 29.523 0 0 1-1.309-5.989c-.241-2.014-.189-4.148-.103-6.059.207-7.797-.31-15.851 1.377-23.786a45.73 45.73 0 0 1 1.601-5.834l2.066-5.56 4.028-11.135a153.337 153.337 0 0 1 2.17-5.542c.723-1.911 1.842-3.701 2.616-5.353.19-.43.362-.843.534-1.274l.517-1.411 1.084-2.788a192.19 192.19 0 0 1 2.359-5.473c2.547-5.663 5.336-11.188 7.798-16.816 1.239-2.823 2.445-5.697 3.891-8.502 1.515-2.754 2.771-5.422 3.994-8.296 1.222-2.823 2.496-5.731 3.994-8.485 1.463-2.754 3.029-5.422 4.321-8.158a34.735 34.735 0 0 0 1.704-4.166 40.85 40.85 0 0 1 1.756-4.423c1.325-2.874 2.858-5.576 4.252-8.313.671-1.325 1.412-2.805 1.876-4.027.207-.62.345-1.377.569-2.186.103-.413.241-.826.413-1.239.172-.431.413-.844.585-1.153 1.549-2.737 3.202-5.302 4.338-8.021 1.119-2.633 1.619-5.989 3.874-8.743l.396-.465s.137-.172.189-.293c.138-.223.224-.464.241-.619.103-.826.258-1.67.482-2.461.431-1.601 1.119-3.081 1.825-4.492l2.169-4.08c.689-1.325 1.24-2.667 1.842-4.113l3.564-8.502c2.375-5.663 4.889-11.308 7.333-16.954 2.496-5.318 4.545-10.894 7.162-16.299.637-1.342 1.394-2.702 2.031-3.958.654-1.291 1.257-2.634 1.842-3.976 1.188-2.685 2.376-5.473 3.874-8.09 1.429-2.564 2.789-5.163 3.976-7.83l3.461-8.124c1.153-2.72 2.358-5.439 3.477-8.175l3.306-8.21 1.652-4.097c.258-.688.603-1.394.723-1.944.138-.637.207-1.326.258-2.066.052-.723.087-1.497.241-2.306.069-.396.207-.843.345-1.222l.378-1.016a21.663 21.663 0 0 0 1.051-4.13c.223-1.412.241-2.788.189-4.269a123.78 123.78 0 0 0-.172-4.389c-.172-2.925-.482-5.834-.999-8.709-1.067-5.73-2.823-11.376-4.665-16.987-1.859-5.628-3.667-11.256-5.698-16.798a282.734 282.734 0 0 0-4.011-10.396c-1.412-3.408-2.91-6.901-4.098-10.447-2.41-7.108-4.407-14.251-6.748-21.325-1.119-3.563-2.203-7.16-3.03-10.826a72.624 72.624 0 0 1-.585-2.77c-.172-.982-.327-1.688-.654-2.565-.293-.86-.655-1.721-.913-2.702-.275-1.12-.31-1.825-.602-2.72-.482-1.704-1.257-3.442-1.687-5.387-.224-.947-.293-2.048-.327-2.943a69.106 69.106 0 0 0-.19-2.737c-.189-1.807-.482-3.528-1.239-5.094-.827-1.807-1.24-3.735-1.567-5.611-.31-1.876-.516-3.718-.878-5.473l-.654-2.72a38.093 38.093 0 0 1-.499-2.822c-.534-3.787-.603-7.556-.672-11.274-.206-7.435-.206-15.008.878-22.478a75.97 75.97 0 0 1 .999-5.576c.189-.929.43-1.842.654-2.754.103-.465.258-.912.379-1.377l.189-.688c.069-.276.069-.276.103-.465.035-.31-.017-.774 0-1.342 0-.138 0-.293.035-.448v-.292c.034-.104.069-.224.103-.345.138-.499.293-.774.465-1.153.327-.671.861-1.342 1.48-1.928.895-.843 2.066-.912 2.944-.654.792.224 1.515.414 2.186.672.207.086.586.137.655.447.155.895-1.326.964-1.997 1.136-.827.207-1.532.482-1.911.775-.379.309-.586.637-.878 1.239-.121.241-.138.258-.172.379 0 .068-.035-.259 0 .774 0 .43.051 1.102-.172 1.876l-.345 1.222a59.61 59.61 0 0 0-1.188 4.974c-.671 3.339-1.101 6.747-1.36 10.172-.516 6.816-.258 13.838-.12 20.757.12 3.425.447 6.798 1.291 9.999.947 3.667.981 7.195 1.928 10.224.121.379.241.757.379 1.119l.499 1.17c.396.947.637 1.893.826 2.84.362 1.876.465 3.683.534 5.456.035.947.069 1.532.241 2.34.155.758.396 1.532.672 2.324.275.81.568 1.635.843 2.53.138.448.258.913.362 1.377.051.241.103.465.137.723l.103.637c.259 1.342 1.119 2.977 1.533 5.008.31 1.721.654 3.356 1.067 5.043.809 3.34 1.808 6.644 2.858 9.966 2.169 6.626 4.063 13.442 6.232 19.982 1.101 3.304 2.341 6.42 3.718 9.69a281.69 281.69 0 0 1 3.805 9.827 361.147 361.147 0 0 1 4.665 13.563c1.481 4.51 3.013 9.053 4.338 13.683 1.309 4.613 2.411 9.415 2.858 14.268.241 2.427.379 4.837.43 7.246.018 1.188.069 2.41 0 3.718a21.663 21.663 0 0 1-.602 3.786c-.293 1.24-.706 2.427-1.153 3.597-.293.723-.345 1.86-.431 3.081-.052.62-.103 1.274-.241 1.98a7.646 7.646 0 0 1-.31 1.1l-.344.844-1.343 3.322c-1.807 4.423-3.512 8.916-5.405 13.27l-5.613 13.201a87.632 87.632 0 0 1-3.271 6.489c-1.204 2.117-2.203 4.079-3.15 6.265-1.119 2.512-2.186 5.129-3.529 7.659-1.308 2.426-2.445 4.888-3.546 7.418l-3.237 7.676-3.357 7.659c-2.186 5.077-4.424 10.103-6.559 15.266l-3.236 7.694c-1.05 2.685-2.565 5.163-3.77 7.555-.603 1.205-1.137 2.41-1.481 3.632-.172.62-.327 1.222-.396 1.842-.034.189-.103.912-.31 1.342-.206.465-.396.826-.757 1.257-1.739 1.824-2.393 4.302-3.323 7.022-.947 2.788-2.427 5.284-3.822 7.676-.654 1.17-1.532 2.444-1.842 3.425-.189.568-.327 1.205-.499 1.928-.155.688-.499 1.583-.775 2.168-2.358 5.198-5.457 9.828-7.178 14.905-1.773 5.491-4.941 10.275-7.386 15.112-1.291 2.53-2.375 5.18-3.563 7.848a92.196 92.196 0 0 1-1.859 3.993c-.672 1.343-1.395 2.582-2.015 3.855-1.274 2.548-2.393 5.198-3.563 7.866-1.171 2.668-2.427 5.301-3.65 7.917-2.479 5.232-4.958 10.43-7.024 15.783l-.757 2.014c-.241.654-.551 1.463-.878 2.134-.671 1.377-1.394 2.616-1.945 3.838-1.102 2.582-2.135 5.301-3.134 8.003l-5.887 16.282c-1.704 5.37-2.272 11.032-2.359 16.764l-.068 8.674-.104 4.372a27.396 27.396 0 0 0 .207 4.113c.671 5.474 3.185 10.62 6.473 15.181a43.151 43.151 0 0 0 10.828 10.533c2.083 1.411 4.338 2.599 6.662 3.804 2.307 1.187 4.631 2.341 6.99 3.39 4.717 2.135 9.537 3.787 14.581 5.061 2.514.671 5.061 1.308 7.609 2.03 1.257.362 2.6.809 3.753 1.171 1.171.361 2.393.602 3.65.809 2.513.43 5.182.671 7.867 1.411 2.496.775 4.872 1.17 7.489 1.532 2.565.361 5.25.688 7.884 1.377 2.376.602 4.941.809 7.592 1.187 1.291.172 2.772.5 3.96.775 1.239.292 2.513.533 3.77.757a87.09 87.09 0 0 0 7.643.998c5.131.482 10.33.568 15.529.568l15.7-.12c2.634 0 5.164 0 7.678-.241 1.239-.138 2.479-.31 3.667-.602a19.007 19.007 0 0 0 1.756-.482l1.911-.603c2.565-.757 5.113-1.359 7.557-2.1l7.385-2.426c2.445-.844 4.976-1.567 7.369-2.513a117.778 117.778 0 0 0 7.092-3.081c9.296-4.44 18.042-10.155 26.15-16.54 4.046-3.201 7.799-6.73 11.483-10.413a220.92 220.92 0 0 0 10.57-11.428L-66.8 308.18l2.53-2.84 2.6-2.736a316.572 316.572 0 0 0 5.096-5.56c3.374-3.752 6.576-7.538 9.899-11.428 3.357-3.855 6.851-7.521 10.26-11.204 6.731-7.47 13.617-14.871 19.78-22.771 3.133-3.941 6.163-7.9 8.78-12.1 1.308-2.099 2.496-4.251 3.512-6.454l3.133-6.867c2.066-4.561 3.856-9.139 4.7-13.924.878-4.802.998-9.759 1.084-14.802l.07-3.803c.05-1.326.05-2.393-.035-3.615-.172-2.375-.672-4.784-1.136-7.297-.517-2.479-.792-5.215-1.033-7.608a137.15 137.15 0 0 0-1.102-7.401 293.59 293.59 0 0 0-1.412-7.4c-.568-2.565-.74-5.198-1.136-7.539-.19-1.188-.448-2.341-.826-3.408a13.934 13.934 0 0 0-.637-1.549l-.19-.396a4.477 4.477 0 0 1-.258-.602 8.426 8.426 0 0 1-.344-1.136c-.327-1.463-.362-2.823-.379-4.131 0-1.325 0-2.444-.086-3.666a34.73 34.73 0 0 0-.448-3.562c-.206-1.119-.568-2.41-.792-3.684-.516-2.547-.826-5.111-1.05-7.693-.413-5.146-.31-10.31-.068-15.352.137-3.443.447-7.092 1.652-10.585.947-2.685.5-6.472 1.946-10.069a281.77 281.77 0 0 1 7.85-19.122 92.27 92.27 0 0 1 4.854-9.225l5.217-8.847c3.494-5.869 6.765-11.91 11.069-17.503 4.27-5.543 9.658-10.603 16.544-13.27 1.739-.637 3.598-1.067 5.509-1.17 1.91-.087 3.839.171 5.663.757 3.34 1.101 6.577 2.375 9.744 3.94a52.817 52.817 0 0 1 4.614 2.6c1.515.947 2.927 2.014 4.287 3.012l8.297 6.093 4.15 3.046 2.065 1.515 2.014 1.617 8.022 6.438 18.386 14.818c6.112 4.871 12.103 10.138 18.61 14.165 1.635.999 3.305 1.91 5.027 2.668.895.396 1.687.706 2.668 1.084.999.396 1.946.86 2.841 1.36 1.79.981 3.443 2.048 5.095 2.891 1.602.827 3.461 1.532 5.251 2.17a44.745 44.745 0 0 0 5.475 1.548c1.807.43 3.666.482 5.801.844 1.05.189 2.135.481 3.202.946.258.12.517.241.775.396.172.086.12.086.172.103h.069l.31-.034h.774c2.083-.052 4.098.12 6.077.31 2.359.24 4.649.481 6.904.499 1.136 0 2.169-.086 3.357-.207 1.36-.155 2.702-.034 3.959.172 2.496.448 4.7 1.205 6.766 1.308.947.052 2.22-.051 3.391-.086 1.188-.034 2.393-.069 3.615-.034 1.223.034 2.462.103 3.702.275.619.086 1.239.19 1.859.327.585.12 1.05.224 1.618.293 2.169.293 4.476.207 6.903.275 4.993.086 9.693 1.532 14.186 2.548 4.476 1.015 9.451 1.635 13.927 4.268 4.045 2.582 8.039 5.077 11.827 8.141 1.876 1.532 3.684 3.184 5.319 5.008 1.653 1.842 3.047 3.804 4.442 5.732 2.754 3.889 5.285 7.9 7.798 11.876 10.278 15.662 20.486 31.772 35.446 43.062 3.633 2.926 7.403 5.645 11.397 7.969 1.997 1.188 4.028 2.134 6.197 3.236 2.118 1.084 4.166 2.22 6.249 3.201 1.033.499 2.084.947 3.134 1.342 1.05.379 2.255.809 3.339 1.24 2.221.86 4.356 1.755 6.525 2.426 4.476 1.188 9.09 2.771 13.514 4.08l.964.275c.258.069.516.12.809.155.585.069 1.257.069 2.014.103.723.017 1.705.224 2.29.379l1.997.447c2.668.568 5.354.998 8.039 1.205 5.354.361 10.915.103 15.494-2.341 1.171-.602 2.083-1.308 3.151-2.237a45.121 45.121 0 0 0 2.961-2.754c1.876-1.91 3.511-4.027 4.768-6.351.637-1.17 1.136-2.341 1.636-3.632a113.108 113.108 0 0 1 1.618-3.889c1.119-2.548 2.272-5.043 3.167-7.59.465-1.309.775-2.479 1.137-3.907.378-1.377.809-2.72 1.239-4.028.878-2.65 1.636-5.163 2.032-7.883 1.015-5.714 3.391-10.757 4.889-16.041l4.958-15.886c1.549-5.369 3.718-10.516 4.596-15.851.637-3.511 1.859-6.781 2.927-10.017l2.961-9.845 2.961-9.845 2.84-9.913c1.791-6.644 3.994-13.167 6.094-19.707 1.085-3.27 2.049-6.558 3.22-9.794a457.51 457.51 0 0 1 3.598-9.672c2.444-6.455 5.336-12.72 8.108-18.984 2.772-6.265 5.543-12.616 8.866-18.675 3.271-6.075 6.955-11.961 10.932-17.572 3.856-5.611 7.695-11.48 12.274-16.626 2.255-2.72 4.476-5.508 6.869-8.176 2.341-2.685 5.027-5.215 7.695-7.504 5.32-4.698 10.76-9.397 16.819-13.27 1.481-.964 3.134-1.876 4.58-2.754 1.48-.894 2.909-1.91 4.338-2.925 2.84-2.066 5.733-4.252 8.849-6.076 3.081-1.842 6.266-3.46 9.347-5.164a141.357 141.357 0 0 0 9.038-5.473c5.905-3.907 11.655-7.986 17.112-12.478l8.178-6.798c2.702-2.272 5.491-4.578 8.383-6.661l8.642-6.213a126.718 126.718 0 0 0 4.167-3.219l.998-.843c.31-.258.792-.654 1.222-.895.896-.534 1.825-.843 2.72-1.102.896-.258 1.739-.447 2.531-.705.74-.241 1.601-.603 2.41-.93 1.653-.671 3.392-1.325 5.251-1.704 3.787-.774 7.695.069 11.018 1.756 2.788 1.446 5.371 3.39 7.402 5.817 2.066 2.41 3.598 5.198 4.7 8.107a36.976 36.976 0 0 1 2.238 9.036c.379 3.063.241 6.299-.207 9.277-.344 2.925-.447 6.04-1.446 9.139a15.201 15.201 0 0 1-.929 2.255c-.517.998-.465.67-.448 1.497.017.344.069.947-.121 1.549l-.361 1.084-.689 2.134c-1.842 5.715-3.563 11.532-5.922 17.177-1.205 2.737-2.066 5.49-2.926 8.4-.827 2.856-1.791 5.903-2.927 8.622-.998 2.668-1.463 5.577-1.997 8.554-.258 1.498-.551 3.012-.947 4.527-.396 1.394-.568 2.736-.671 4.2-.19 2.89-.017 5.937-.413 9.104-.431 3.03-.792 5.904-.964 8.898-.362 5.938-.276 11.928-.138 17.952.086 4.01.172 8.037.12 12.1-.017 2.03-.086 4.044-.189 6.075-.052 1.084-.12 1.824.017 2.736.121.878.345 1.79.62 2.754.258.964.551 1.98.706 3.081.086.55.138 1.119.155 1.687 0 .533.017.912.069 1.394.189 1.807.74 3.666 1.36 5.542 1.222 3.838 2.53 7.504 4.252 11.05 3.391 7.073 8.177 13.493 14.065 18.657 2.943 2.564 6.18 4.733 9.726 6.282.448.189.878.395 1.343.55l1.463.568c1.033.448 1.946.999 2.824 1.532 1.721 1.067 3.305 2.031 4.923 2.255l1.481.19c.533.068 1.05.171 1.566.275 1.033.206 2.049.481 3.03.757 1.963.55 3.891 1.205 5.733 1.67 3.736.929 7.695 1.1 11.758 1.531 1.016.103 2.031.241 3.064.413 1.033.155 2.083.396 2.978.568 1.894.344 3.857.534 5.836.689 1.98.154 4.011.275 6.06.499 2.032.19 4.183.688 6.008 1.032 7.678 1.291 15.683.207 23.895.534.516 0 1.033.052 1.532.086h.31s.172-.086.275-.155c1.016-.602 2.307-.93 3.375-1.05 2.186-.24 4.114-.137 5.457-.809.344-.155.654-.344.929-.602l.138-.12c.138-.104.172-.155.276-.224a1.87 1.87 0 0 1 .568-.327c.378-.172.912-.241 1.256-.258.672-.018 1.188.034 1.619.051.241 0 .327 0 .568-.017l.688-.069c1.842-.24 3.684-.757 5.509-1.428 3.082-1.136 6.301-2.634 9.555-3.735l9.675-3.46c3.202-1.17 6.352-2.375 9.434-3.769l2.358-1.084c.878-.379 1.756-.654 2.617-.895 1.704-.482 3.357-.844 4.872-1.36.74-.241 1.411-.55 2.289-.93a40.435 40.435 0 0 1 2.514-.912c1.687-.533 3.374-.98 5.009-1.428 1.636-.448 3.254-.895 4.786-1.446a56.464 56.464 0 0 1 5.01-1.583l4.992-1.274 2.445-.654 1.205-.344c.43-.12.878-.258 1.326-.362 3.529-.86 6.954-1.015 9.984-1.945.758-.24 1.481-.499 2.169-.826.362-.172.637-.327 1.051-.55a5.692 5.692 0 0 1 1.773-.568c1.084-.155 1.98-.086 2.703-.138.688-.052 1.583-.19 2.375-.327 3.254-.55 6.594-1.48 10.174-1.876a36.69 36.69 0 0 1 2.669-.19 39.01 39.01 0 0 0 2.444-.206c1.636-.172 3.289-.447 4.958-.757 3.357-.586 6.645-1.343 10.312-1.635l2.686-.19c1.119-.069 2.1.241 3.081.465l.741.172.43.138s.034-.035.121.137c.068.138.137.207.103.173-.224-.12 0-.018.034-.207.069-.12.138-.465.379-.482l.121.069Z%27/%3E%3Cpath d=%27M116.921 709.73c-.173.756-.724 1.048-1.5 1.254a7.214 7.214 0 0 1-1.776.138c-.603-.034-1.155-.155-1.655-.241a8.178 8.178 0 0 1-1.258-.343l-.328-.12-.207-.104a2.62 2.62 0 0 1-.379-.223c-.104-.017 0-.086.034-.154l.155-.207.328-.395.655-.79c.241-.275.397-.515.535-.773.155-.241.344-.55.379-.722.069-.206.121-.412.172-.635l.052-.344c.207-1.099-.035-3.917.293-5.858l.621-6.288a30.226 30.226 0 0 1 1.155-6.356c.569-2.079 1.258-4.054 1.896-6.013.31-.979.621-1.941.897-2.92l.379-1.461c.138-.532.276-1.065.431-1.597 1.276-4.226 3.379-7.937 4.965-11.648 1.62-3.951 3.844-7.662 6.034-11.201 2.155-3.522 4.448-7.164 6.999-10.514 2.534-3.384 5.207-6.614 7.965-9.792 5.62-6.374 11.964-11.871 17.929-17.609 3.017-2.869 6.052-5.789 9.31-8.504 1.603-1.391 3.448-2.628 4.844-3.865 1.483-1.306 2.862-2.817 4.362-4.312a40.967 40.967 0 0 1 2.345-2.233c.793-.722 1.758-1.444 2.517-2.028 1.568-1.237 3.068-2.594 4.551-4.02 2.914-2.834 5.775-5.944 8.758-8.881 8.585-8.556 17.515-16.664 25.153-25.838 3.793-4.742 8.034-9.14 11.74-13.761 3.758-4.656 7.31-9.466 10.482-14.499 6.361-10.067 11.275-21.028 14.964-32.383.931-2.852 1.776-5.67 2.483-8.573l2.086-8.796c.362-1.477.758-2.955 1.172-4.432l.31-1.048c.069-.275.121-.567.173-.876.086-.636.103-1.375.172-2.216.035-.413.104-.859.207-1.323.052-.224.103-.464.19-.687l.155-.55.62-2.165 1.242-4.312 1.241-4.312.621-2.164c.206-.688.327-1.306.448-2.062.12-.721.241-1.495.431-2.302.086-.412.207-.825.345-1.254l.362-1.082c.482-1.443 1-2.887 1.517-4.312a210.731 210.731 0 0 1 3.344-8.487c1.155-2.783 2.431-5.652 3.862-8.332 1.414-2.714 2.827-5.326 4.12-8.006a80.545 80.545 0 0 1 4.517-8.074c3.31-5.205 7.189-10.033 11.378-14.465 4.121-4.415 8.379-8.865 13.292-12.696 4.862-3.762 10.034-7.129 15.499-9.981l16.274-8.023 4.052-2.01a103.654 103.654 0 0 1 4.155-2.044c2.775-1.288 5.585-2.457 8.326-3.676 6.431-2.99 13.189-6.013 19.843-8.985l4.931-2.165a81.514 81.514 0 0 0 4.741-2.371c3.138-1.7 5.965-3.573 8.878-5.789 3-2.165 6-4.089 8.603-6.339 1.31-1.117 2.517-2.302 3.552-3.608a35.927 35.927 0 0 0 2.879-4.226c1.706-2.938 2.861-6.15 3.241-9.449a22.57 22.57 0 0 0-1.104-9.861c-1.086-3.212-2.792-6.098-4.965-8.933-2.155-2.938-4.206-5.858-6.447-8.573-2.242-2.731-4.638-5.188-7.414-7.335-2.896-2.302-5.585-4.742-8.275-7.147-2.689-2.422-5.361-4.741-8.171-6.975-2.793-2.25-5.586-4.277-8.689-6.15-6.138-3.9-12.051-7.902-18.533-10.789-3.431-1.563-6.999-2.92-10.585-4.329l-5.327-2.13c-1.638-.618-3.466-.996-5.379-1.443-3.896-.997-7.362-2.337-10.965-2.68-.879-.103-1.758-.086-2.81-.155-1-.051-1.982-.154-2.948-.257-1.965-.207-3.689-.361-5.655-.413-7.844-.326-15.429-1.769-22.928-1.838h-1.431c-.535 0-1.052-.034-1.569-.069a33.17 33.17 0 0 1-3-.395l-2.793-.446c-.776-.104-1.758-.069-2.862-.207a8.794 8.794 0 0 1-1.758-.395c-.672-.257-1.034-.446-1.483-.635l-2.603-1.169-5.241-2.336c-3.724-1.666-7.275-3.608-10.723-5.686-1.741-1.065-3.379-2.045-5.155-3.23-1.741-1.22-3.241-2.56-4.758-3.694-.758-.567-1.517-1.082-2.31-1.511l-1.293-.653a17.819 17.819 0 0 1-1.379-.773c-1.81-1.083-3.465-2.302-5.052-3.591-2.999-2.456-6.258-4.535-9.723-6.322-3.448-1.786-7.085-3.281-10.792-4.587-3.741-1.323-7.465-2.577-11.258-3.539-3.792-.945-7.62-1.58-11.464-1.615l-11.947-.309c-7.775-.154-15.551-.034-23.033 1.615-1.879.378-3.672.945-5.637 1.443l-5.689 1.392c-1.897.463-3.586 1.099-5.482 1.718l-5.586 1.855-11.154 3.711c-3.69 1.134-7.224 2.628-10.775 4.243-7.086 3.316-14.413 6.133-21.24 9.775-6.068 3.178-12.292 5.944-18.222 9.208-5.879 3.35-11.672 6.958-17.499 10.445-5.861 3.436-11.568 7.181-17.326 10.806l-4.292 2.749a129.528 129.528 0 0 0-4.138 2.938c-2.741 2.027-5.655 3.917-8.413 5.858-4.724 3.315-9.568 6.579-14.206 9.947-2.293 1.735-4.534 3.556-6.827 5.36-2.275 1.821-4.723 3.487-7.034 5.153-2.31 1.701-4.55 3.471-6.55 5.481-1.949 2.096-4.19 4.157-6.414 5.995l-3.344 2.783-3.224 2.887-6.43 5.806-4.328 3.917c-1.448 1.306-2.741 2.766-4.12 4.14l-8.138 8.367c-2.706 2.8-5.464 5.531-8.12 8.4a470.87 470.87 0 0 1-8.085 8.504c-5.155 5.274-10.395 10.463-15.654 15.616-5.292 5.223-11.05 9.947-17.033 14.294-6.171 4.088-12.223 8.28-18.498 12.266-6.344 3.899-13.033 7.095-19.653 10.342-2.224 1.065-4.31 2.199-6.517 3.384-2.155 1.168-4.569 2.268-6.862 3.006-2.12.808-4.137 2.268-6.533 3.316-2.397.945-4.655 1.735-7 2.56a224.85 224.85 0 0 1-14.136 4.449c-2.38.67-4.776 1.272-7.189 1.838-2.466.567-4.965.911-7.448 1.134-3.879.361-7.723.464-11.499.859-.948.103-1.879.224-2.81.361l-2.879.464c-1.983.258-3.965.343-5.931.361-3.913 0-7.689-.189-11.447.24-3.896.361-7.758.447-11.516.876-1.879.206-3.741.499-5.551.928l-5.603 1.357c-3.724.911-7.413 1.873-11.017 3.041-7.171 2.268-13.688 6.253-19.153 11.338-5.293 4.982-9.792 10.789-14.068 16.733-4.292 5.927-8.344 12.129-13.119 17.781-4.758 5.669-9.689 11.081-14.792 16.458a199.002 199.002 0 0 1-7.913 7.782c-2.707 2.542-5.551 4.896-8.327 7.336l-10.533 9.122c-3.604 2.92-7.224 5.824-10.913 8.658-3.69 2.835-7.448 5.601-11.344 8.178-3.931 2.508-7.913 4.879-11.878 7.318l-11.913 7.25c-4.051 2.353-8.223 4.432-12.292 6.597a129.057 129.057 0 0 0-6.017 3.384l-1.086.67-.207.137-1.172.808c-.379.24-.776.567-1.138.773-.362.206-.741.447-1.138.704a8.208 8.208 0 0 1-.81.481c-.086.069-.103 0-.138-.086l-.086-.206-.155-.429c-.173-.584-.293-1.168-.259-1.821.017-.567.086-1.134.19-1.667.103-.549.224-1.03.345-1.322.086-.207.12-.585.431-.653.896-.258.999 1.529 1.172 1.477.224.258.465.241.603.069.104-.138.138-.223.173-.275.034-.069.172-.172.275-.206l.104-.052.379-.206 2.052-1.22a97.139 97.139 0 0 1 2.879-1.632 318.397 318.397 0 0 1 5.81-3.058c3.879-1.992 7.671-3.951 11.343-6.218l11.155-6.735 5.568-3.367c1.862-1.117 3.724-2.233 5.5-3.436 3.585-2.388 7.068-4.93 10.499-7.559 3.43-2.628 6.827-5.325 10.24-8.04l9.879-8.452 6.723-5.772c2.207-1.942 4.344-3.969 6.448-6.03 4.206-4.106 8.171-8.47 12.137-12.885 3.948-4.398 7.775-8.864 11.24-13.589 3.448-4.758 6.758-9.689 10.292-14.499 4.155-5.601 8.568-11.081 13.947-15.754 5.362-4.638 11.706-8.246 18.481-10.359 3.345-1.082 6.724-1.976 10.103-2.8l5.068-1.203c1.655-.412 3.466-.807 5.207-1.048 3.517-.515 7.034-.652 10.464-.876 1.759-.103 3.345-.257 5.172-.412 1.776-.12 3.552-.12 5.293-.103 3.62.034 7.189.172 10.602-.361 3.552-.67 7.293-.979 10.879-1.203 3.603-.24 7.172-.446 10.637-1.047 3.413-.636 6.947-1.615 10.378-2.56a214.838 214.838 0 0 0 10.275-3.196l5.086-1.769 2.534-.928c.862-.326 1.69-.601 2.414-.945 1.517-.704 3.034-1.683 4.758-2.525.431-.206.879-.412 1.345-.601.465-.189.948-.344 1.327-.481a41.42 41.42 0 0 0 2.396-.962c3.138-1.443 6.293-3.385 9.586-4.931 5.844-2.886 11.688-5.721 17.24-8.967 2.792-1.598 5.447-3.402 8.137-5.24l8.068-5.429c5.482-3.504 10.516-7.542 15.378-11.768 2.43-2.13 4.724-4.329 7.034-6.648l6.913-6.889c9.24-9.14 17.895-18.76 27.136-28.071l6.844-7.027c2.31-2.319 4.827-4.432 7.223-6.648l7.293-6.58c2.448-2.199 5.034-4.174 7.378-6.322a64.153 64.153 0 0 0 3.293-3.23 43.402 43.402 0 0 1 3.62-3.281c2.483-2.061 5.172-3.882 7.655-5.669 2.482-1.821 4.896-3.797 7.396-5.738 2.465-1.976 5.155-3.831 7.723-5.6l15.482-10.72c2.517-1.787 5.103-3.763 7.792-5.395l7.982-5.051c5.276-3.418 10.706-6.648 16.12-9.895l8.12-4.879c2.672-1.632 5.464-3.247 8.292-4.69 5.654-2.92 11.309-5.514 16.86-8.486 5.655-2.921 11.568-5.292 17.206-7.92 3.861-1.787 7.792-3.608 11.93-5.017l12.102-4.071 6.034-2.027 3.086-1.065a54.758 54.758 0 0 1 3.172-.928c2.103-.55 4.172-1.014 6.172-1.563 1.982-.567 4.189-1.169 6.31-1.581 8.602-1.701 17.343-1.632 25.859-1.409l6.379.155c2.069.034 4.345.052 6.534.309 4.396.481 8.654 1.564 12.775 2.835 9.361 2.955 18.963 6.528 26.946 12.816 1.948 1.58 3.758 2.989 5.775 4.174.5.292 1 .567 1.517.808.552.275 1.207.601 1.758.945 1.138.687 2.173 1.477 3.138 2.267.966.773 1.897 1.546 2.827 2.234.897.687 1.914 1.288 2.966 1.941 2.068 1.288 4.137 2.542 6.258 3.711a90.517 90.517 0 0 0 7.758 3.848l7.964 3.556c.931.395 2.276.275 4 .464 1.569.223 2.948.515 4.362.687 1.431.206 2.62.206 4.206.206 1.5.035 3 .086 4.483.206 5.947.413 11.757 1.34 17.515 1.65 1.397.068 2.948.103 4.448.24l4.362.43c.724.051 1.362.085 2.138.103.793.017 1.568.103 2.344.206 1.552.206 3.034.55 4.5.945 1.465.395 2.879.824 4.275 1.254 1.328.395 2.741.687 4.207 1.048 1.431.343 3.017.824 4.396 1.426l4.069 1.614c5.447 2.131 11.033 4.227 16.291 7.113 5.258 2.851 10.12 6.184 15.085 9.259 5.103 3.23 9.603 7.061 14.051 10.944 2.603 2.302 5.137 4.638 7.74 6.837l4.017 3.299a45.631 45.631 0 0 1 3.81 3.728c2.379 2.611 4.465 5.428 6.5 8.228l3.034 4.192c1.034 1.443 2 2.955 2.81 4.553 1.638 3.178 2.724 6.683 3.017 10.29.293 3.591-.224 7.25-1.448 10.634-1.224 3.385-3.086 6.46-5.276 9.26-2.241 2.835-5.034 5.102-7.878 7.129l-5.241 3.694c-1.69 1.254-3.5 2.56-5.327 3.694-3.69 2.302-7.569 4.226-11.568 5.875l-23.395 10.514c-3.93 1.701-7.844 3.35-11.585 5.325l-11.551 5.67c-3.861 1.924-7.706 3.642-11.378 5.772a103.202 103.202 0 0 0-10.585 6.992c-3.5 2.594-6.706 5.583-9.775 8.71-3.052 3.161-6.12 6.339-8.896 9.689a86.6 86.6 0 0 0-7.585 10.651 73.882 73.882 0 0 0-3.121 5.738 187.972 187.972 0 0 1-3 5.927c-1.017 1.959-2.051 3.883-2.982 5.858-.914 1.959-1.758 4.003-2.603 6.03a176.912 176.912 0 0 0-4.569 12.335c-.31.945-.483 1.976-.672 3.075a26.686 26.686 0 0 1-.776 3.316l-1.81 6.373-1.81 6.374c-.276.859-.311 1.873-.397 3.024a14.407 14.407 0 0 1-.258 1.803c-.173.67-.311 1.083-.466 1.632-1.965 7.096-3.207 14.62-5.672 21.767-2.31 7.164-5.086 14.207-8.447 20.976-6.586 13.623-15.913 25.838-25.964 36.901-3.137 3.78-6.43 7.748-9.895 11.339-3.448 3.659-7.034 7.181-10.62 10.668-3.586 3.487-7.172 6.958-10.654 10.514-3.483 3.539-6.896 7.301-10.982 10.496-2.017 1.461-3.655 3.076-5.413 4.879-1.724 1.77-3.586 3.677-5.689 5.206-3.914 2.955-7.517 6.356-11.12 9.792-7.241 6.975-14.809 13.434-21.033 21.113-2.706 3.247-5.31 6.563-7.671 10.016-1.207 1.735-2.293 3.47-3.414 5.309-1.12 1.803-2.241 3.607-3.293 5.411-1.051 1.804-2.034 3.642-2.861 5.515a146.036 146.036 0 0 1-2.621 5.841c-.896 1.924-1.758 3.796-2.414 5.72a28.072 28.072 0 0 0-.844 2.904 56.283 56.283 0 0 1-.88 3.161c-1.275 4.157-2.792 7.971-3.154 12.025l-.587 6.254c-.086 1.013-.241 2.147-.258 3.058-.017.962.052 2.078-.052 3.298l-.121 1.065c-.017.189-.069.378-.103.567a6.493 6.493 0 0 1-.138.567c0 .034-.034.12-.034.12h.017s.017 0-.104.052c-.155.068-.241.172-.241.275.052.223.017.463 1.396.687.225.051.673.189.638.429l-.051.103Z%27/%3E%3Cpath d=%27M104.889 710.111c-.069.378-.275.636-.671.843-.379.189-.93.292-1.36-.035-.413-.326-.603-.894-.689-1.427-.069-.275-.12-.533-.189-.791-.052-.206-.121-.361-.19-.516-.223-.464-.396-1.014-.43-1.53l-.052-1.823V703.456l.035-1.29.069-1.53a46.4 46.4 0 0 1 .292-3.078c.138-1.032.293-2.047.517-3.061l.671-2.906c.396-1.875.706-3.835 1.068-5.813.361-1.977.809-4.041 1.463-5.984l1.842-5.658c.585-1.857 1.084-3.714 1.429-5.588.069-.413.189-1.084.361-1.617.155-.55.362-1.083.568-1.599.448-1.015.964-1.943 1.464-2.82.516-.877 1.015-1.703 1.446-2.528.224-.413.396-.808.585-1.221l.603-1.376c.792-1.84 1.618-3.663 2.496-5.485 1.756-3.629 3.718-7.206 6.077-10.576 2.393-3.302 4.872-6.414 7.489-9.492a117.798 117.798 0 0 1 8.332-8.753l8.642-8.255c2.927-2.734 5.922-5.416 9.056-7.961l9.175-7.636 18.318-15.27c4.493-3.646 8.659-7.326 12.67-11.521 4.201-4.11 8.505-7.825 12.43-11.969 3.96-4.11 7.747-8.409 11.448-12.811 3.736-4.385 7.334-8.805 10.64-13.448 6.714-9.217 11.844-19.397 15.976-30.076 1.101-2.7 1.962-5.211 2.668-8.014.74-2.751 1.394-5.588 2.324-8.426.947-2.734 1.67-5.331 1.98-8.048.12-1.255.241-2.94.516-4.367.241-1.479.551-2.907.844-4.317.292-1.41.585-2.786.792-4.144.103-.688.189-1.359.241-2.029l.103-1.152c.052-.413.121-.809.207-1.204.327-1.565.826-2.941 1.153-4.23.362-1.307.362-2.356.448-3.956.155-2.923.568-6.07 1.566-8.907.809-2.597 1.24-5.4 1.894-8.289.172-.722.344-1.444.551-2.184l.637-2.081c.379-1.306.688-2.682.998-4.075.603-2.769 1.205-5.778 2.342-8.598.964-2.476 1.48-5.279 2.255-8.151.396-1.445.878-2.906 1.532-4.334l.517-1.066c.137-.292.292-.567.413-.877.258-.602.499-1.221.723-1.857.861-2.545 1.532-5.554 2.72-8.289 1.05-2.614 1.962-5.331 2.961-8.065a112.28 112.28 0 0 1 1.601-4.11l1.721-3.989c1.188-2.666 2.48-5.365 4.184-7.911 1.704-2.51 3.581-4.763 5.492-6.964l2.892-3.267c1.016-1.135 2.135-2.167 3.271-3.164 4.631-3.956 10.105-6.587 15.545-8.702a118.146 118.146 0 0 1 9.985-3.405 86.965 86.965 0 0 1 5.131-1.307l1.291-.275c.43-.103.757-.154 1.153-.275a25.2 25.2 0 0 0 2.29-.739c1.532-.585 3.099-1.29 4.751-1.961 1.636-.688 3.529-1.221 5.096-1.668a102.004 102.004 0 0 0 9.606-3.336c6.232-2.545 12.223-5.847 17.526-9.905 2.599-2.029 5.13-4.368 7.041-6.827 1.876-2.51 3.081-5.554 3.994-8.753.499-1.651.74-2.992.723-4.557-.017-1.53-.293-3.061-.723-4.626-.878-3.164-2.152-6.225-3.77-9.148-1.601-2.906-3.512-5.778-5.44-8.512-1.929-2.648-4.253-5.039-6.801-7.154-1.273-1.066-2.616-2.012-4.045-3.043l-4.184-2.993c-2.788-1.943-5.629-3.783-8.607-5.262-2.979-1.565-6.043-2.476-9.417-3.439-3.288-.963-6.559-1.892-9.847-2.442-1.739-.292-3.495-.481-5.234-.516-1.756-.034-3.581 0-5.371.103-3.581.19-7.145.637-10.639 1.393-3.512.774-7.093 1.72-10.777 2.408l-10.915 1.737-5.423.877c-1.962.292-3.959.292-5.887.086-1.929-.19-3.822-.585-5.647-1.067a60.886 60.886 0 0 1-2.703-.773c-.516-.155-.689-.207-1.136-.293l-1.395-.24c-.499-.104-1.153-.276-1.721-.585l-1.24-.671a68.382 68.382 0 0 1-2.444-1.41 71.3 71.3 0 0 1-4.683-3.13 86.086 86.086 0 0 1-8.539-7.222c-2.789-2.648-5.423-5.469-7.971-8.289-2.513-2.751-5.199-5.365-7.988-7.893-2.789-2.493-5.698-5.004-8.59-7.291a72.43 72.43 0 0 0-9.297-6.156c-6.49-3.629-13.497-6.501-20.761-7.739a52.726 52.726 0 0 0-5.509-.619c-1.894-.12-3.771-.24-5.647-.326-3.753-.155-7.489-.155-11.173.206a51.268 51.268 0 0 0-5.371.825c-1.756.344-3.495.895-5.354 1.359-3.65.928-7.265 1.719-10.76 2.786-3.478 1.066-6.886 2.51-10.381 3.869-1.739.67-3.546 1.324-5.32 1.909a64.222 64.222 0 0 0-5.113 1.994c-3.374 1.479-6.679 3.164-10.105 4.729-1.704.791-3.495 1.496-5.182 2.184a132.79 132.79 0 0 0-5.061 2.236c-3.34 1.565-6.628 3.302-9.848 5.107-3.184 1.84-6.507 3.732-9.83 5.417-2.909 1.479-5.836 2.906-8.745 4.333-2.91 1.428-5.785 2.907-8.728 4.299-5.854 2.838-11.724 5.606-17.543 8.53-5.836 2.872-11.672 5.692-17.18 9.045-5.51 3.371-10.967 6.982-16.752 10.077-4.872 2.545-9.468 5.537-14.013 8.684l-6.817 4.729c-2.238 1.565-4.39 3.268-6.508 5.022l-6.352 5.33c-2.17 1.737-4.098 3.577-6.198 5.469-1.033.928-2.22 1.857-3.288 2.648a63.6 63.6 0 0 0-3.133 2.597c-2.05 1.805-3.994 3.748-5.991 5.674-1.343 1.29-2.703 2.597-4.115 3.852a92.382 92.382 0 0 0-3.977 3.818c-2.582 2.648-5.027 5.417-7.506 8.203-4.975 5.588-10.122 11.005-15.545 16.181-2.548 2.442-5.2 4.815-7.85 7.102l-7.989 6.913c-5.353 4.575-10.897 9.011-16.681 13.052-5.733 4.059-11.5 8.203-17.646 11.694l-18.369 10.455c-4.098 2.27-8.212 4.557-12.447 6.672-4.252 2.098-8.573 3.921-12.843 5.881-8.504 3.904-17.215 7.584-26.288 10.318-3.563 1.049-7.161 1.857-10.691 2.786-1.756.447-3.477 1.015-5.319 1.479-1.808.464-3.615.86-5.406 1.255-1.79.396-3.564.791-5.32 1.256-1.721.464-3.494 1.031-5.25 1.547-3.495 1.066-7.093 2.047-10.484 3.199-6.749 2.442-13.102 6.156-19.041 10.249-2.978 2.08-5.87 4.282-8.78 6.483-2.909 2.235-5.922 4.299-8.762 6.5-2.772 2.132-5.475 4.368-8.143 6.655-2.634 2.321-5.389 4.609-8.195 6.724-2.806 2.149-5.664 4.196-8.47 6.276l-8.487 6.225c-5.664 4.145-11.345 8.289-17.009 12.433l-1.067.774c-.276.241-.93.636-1.36.757-.465.172-.879.275-1.206.412-.378.19-.344.138-.688.568-1.119 1.393-2.445 2.7-3.822 3.835-2.772 2.321-5.819 4.161-8.711 6.104-1.825 1.204-3.512 2.563-5.302 3.921a197.444 197.444 0 0 1-5.389 3.921c-3.632 2.545-7.334 5.004-11.001 7.463l-11.018 7.412c-1.842 1.221-3.684 2.442-5.474 3.697-1.808 1.221-3.529 2.614-5.457 3.835-1.894 1.221-3.822 2.304-5.699 3.456-1.894 1.101-3.581 2.39-5.492 3.663-3.753 2.476-7.712 4.523-11.551 6.672a307.864 307.864 0 0 0-5.733 3.285l-1.05.636-.207.137-.826.534c-.516.326-1.033.687-1.446 1.134-.585.62-1.274.929-2.1 1.101-.723.155-1.412.43-2.118.619-.224.069-.585.241-.792 0-.602-.653.499-1.513 1.016-2.081a18.493 18.493 0 0 1 1.963-1.891 16.398 16.398 0 0 1 2.306-1.617l.81-.464 4.682-2.7 5.475-3.009c3.649-1.978 7.179-3.938 10.484-6.328 3.564-2.459 7.317-4.282 10.57-6.569 3.323-2.442 6.869-4.781 10.33-7.034l10.363-6.895c3.461-2.288 6.921-4.575 10.312-6.913a205.842 205.842 0 0 0 5.027-3.594l2.462-1.858a58.718 58.718 0 0 1 2.582-1.891c4.752-3.267 9.676-5.916 13.033-10.129l.154-.189s.224-.241.31-.344c.224-.206.5-.395.775-.55.499-.241.895-.361 1.222-.482.327-.103.603-.206.758-.275.052 0 .379-.258.671-.481l3.426-2.511 6.835-5.021 13.686-10.043c4.545-3.439 9.159-6.689 13.514-10.197 2.548-2.012 4.958-4.248 7.523-6.397a182.091 182.091 0 0 1 7.799-6.243c5.406-3.869 10.484-7.961 15.976-11.796 5.526-3.783 11.311-7.154 17.594-9.665 3.168-1.272 6.387-2.08 9.538-3.026 3.184-.911 6.301-1.926 9.589-2.751 3.391-.843 6.765-1.462 10.036-2.322 3.22-.946 6.697-1.857 9.985-2.665 6.645-1.582 13.05-3.887 19.385-6.466 6.352-2.545 12.567-5.537 18.851-8.323 6.266-2.7 12.206-6.036 18.231-9.389l16.131-9.235c5.475-2.958 10.502-6.448 15.58-10.008 5.079-3.594 10.088-7.171 14.84-11.109 4.786-3.903 9.434-7.996 14.1-12.106 9.348-8.082 17.766-17.093 25.995-26.431 2.1-2.321 4.252-4.626 6.542-6.809 1.153-1.118 2.358-2.133 3.443-3.165l3.34-3.198c2.22-2.167 4.493-4.368 6.972-6.397.62-.499 1.257-.997 1.894-1.479.62-.464 1.17-.894 1.756-1.376 1.136-.963 2.255-2.012 3.425-3.061 2.29-2.098 4.631-3.92 6.904-5.881 2.29-1.926 4.614-3.869 7.041-5.726 2.445-1.875 4.958-3.525 7.403-5.245 2.462-1.72 4.94-3.422 7.488-5.073 2.548-1.651 5.148-3.233 7.85-4.677 2.652-1.393 5.2-2.838 7.748-4.403 5.096-3.043 10.105-6.448 15.494-9.32 21.381-11.16 43.4-20.429 64.214-32.621a116.77 116.77 0 0 1 5.577-2.631c1.877-.843 3.822-1.582 5.613-2.373 3.649-1.6 7.247-3.491 11-5.194a63.565 63.565 0 0 1 5.802-2.338 95.713 95.713 0 0 0 5.647-2.064c3.735-1.479 7.557-3.113 11.586-4.265 3.976-1.152 7.97-1.994 11.81-3.095 4.045-1.169 8.246-1.754 12.395-1.96 4.166-.207 8.298-.035 12.36.206 2.015.12 4.115.241 6.215.55 2.083.293 4.132.723 6.163 1.273 4.649 1.238 9.125 3.044 13.377 5.176a79.056 79.056 0 0 1 12.171 7.515c3.822 2.94 7.3 5.984 10.812 9.165 1.738 1.6 3.443 3.25 5.095 4.953 1.67 1.719 3.202 3.491 4.786 5.159 3.788 4.041 7.764 7.876 12.12 11.212a64.438 64.438 0 0 0 6.8 4.574c.585.361 1.188.671 1.79.997.31.155.62.344.741.379.189.068.465.137.774.189.62.12 1.326.189 2.204.43l1.997.602c2.617.739 5.268 1.307 7.885 1.393a19.457 19.457 0 0 0 3.873-.241l4.184-.671 8.349-1.324c2.686-.327 5.389-.894 8.091-1.513 2.703-.619 5.44-1.342 8.281-1.823a74.648 74.648 0 0 1 8.522-.98c2.84-.138 5.698-.241 8.625.051 2.892.293 5.715.877 8.47 1.6 2.754.722 5.423 1.53 8.143 2.338 2.789.843 5.457 2.029 7.97 3.405 5.079 2.769 9.538 6.174 14.117 9.458 2.72 2.029 5.234 4.351 7.437 6.965 2.204 2.665 3.96 5.434 5.75 8.271 1.739 2.855 3.323 5.864 4.476 9.08 1.136 3.129 2.152 6.551 1.894 10.128-.086 1.806-.603 3.508-1.085 5.09-.499 1.617-1.084 3.216-1.824 4.764-.741 1.547-1.619 3.043-2.703 4.419-1.102 1.393-2.256 2.545-3.495 3.732-4.941 4.626-10.691 8.134-16.665 11.126-3.701 1.823-7.557 3.353-11.448 4.643-1.945.653-3.942 1.238-5.888 1.788-1.876.533-3.701 1.359-5.595 2.15-1.893.791-3.89 1.547-5.991 1.96-1.98.396-3.925.877-5.87 1.427-3.891 1.101-7.713 2.442-11.466 3.956-3.736 1.513-7.368 3.284-10.622 5.554a34.68 34.68 0 0 0-4.579 3.8c-1.377 1.376-2.72 2.958-4.063 4.471-2.651 3.079-5.216 6.157-7.058 9.682-.947 1.754-1.773 3.594-2.583 5.451-.809 1.874-1.618 3.714-2.324 5.606l-2.152 5.933c-.688 1.977-1.583 4.007-2.22 5.881-.655 1.943-1.154 4.007-1.877 6.053a21.133 21.133 0 0 1-1.308 3.009c-.465.877-.827 1.823-1.154 2.786-.654 1.926-1.101 3.955-1.618 6.036a42.327 42.327 0 0 1-.895 3.113c-.172.516-.379 1.031-.551 1.53-.189.464-.344.946-.517 1.427-1.239 3.852-1.704 8.169-3.081 12.227-1.136 3.886-1.584 8.237-2.978 12.261-.551 1.926-.827 3.955-.982 6.019l-.172 3.164c-.103 1.152-.379 2.252-.671 3.284-.293 1.032-.603 2.012-.827 2.975-.103.482-.189.963-.223 1.427-.052.465-.086 1.067-.155 1.6-.241 2.166-.689 4.264-1.119 6.311-.431 2.063-.827 4.075-.999 6.104-.138 2.133-.516 4.334-1.05 6.397-.448 1.789-1.102 3.509-1.584 5.159-.499 1.686-.929 3.405-1.377 5.142-.448 1.737-.895 3.491-1.446 5.228-.534 1.754-1.205 3.456-1.859 5.124-2.617 6.69-5.544 13.293-9.107 19.604-3.564 6.294-7.713 12.227-12.189 17.884-4.511 5.623-9.107 11.092-13.979 16.423a167.843 167.843 0 0 1-10.174 10.214c-1.739 1.634-3.495 3.25-5.182 4.901-1.653 1.634-3.34 3.422-5.113 5.056-3.529 3.319-7.3 6.294-10.949 9.355l-11.018 9.165-11.001 9.183c-3.684 3.027-7.282 6.019-10.742 9.286-3.478 3.233-6.887 6.569-10.33 9.871-3.391 3.267-6.542 6.775-9.52 10.438-2.513 3.147-5.027 6.294-7.041 9.681-2.049 3.405-3.805 6.999-5.423 10.679l-1.205 2.769c-.413.997-.947 1.995-1.463 2.889-1.051 1.806-2.066 3.439-2.531 5.09-.207.722-.362 1.892-.603 2.906a55.724 55.724 0 0 1-.774 3.044c-.568 1.995-1.223 3.938-1.842 5.864-1.343 3.749-1.808 7.549-2.583 11.676a71.38 71.38 0 0 1-.671 3.044 31.706 31.706 0 0 0-.534 2.837 46.95 46.95 0 0 0-.447 5.83v.619l.017.223.034.448.086.877c.121 1.031-.103 1.977-.223 2.975-.035.309-.069.378-.121.498l-.138.379c-.12.257-.017.567.207.636.086.034.31.155.293.395l-.035.069Z%27/%3E%3Cpath d=%27M93.622 710.057c.052.379-.069.706-.362.895-.258.189-.93.361-1.55-.224-.534-.585-.568-1.205-.655-1.635-.069-.447-.12-.809-.258-1.119-.19-.481-.327-1.015-.31-1.531v-1.773l.034-.895v-.448l.087-2.375.12-2.581c.172-3.46.483-6.936 1.068-10.396.62-3.459 1.292-6.747 1.964-10.137 1.395-6.712 2.929-13.562 5.685-20.034 1.344-3.218 2.86-6.333 4.376-9.414 1.498-3.029 3.014-6.248 4.909-9.208 1.844-2.978 3.876-5.8 5.978-8.554 2.085-2.737 4.255-5.49 6.598-8.055 4.738-5.18 9.923-9.69 15.108-14.216l7.839-6.678c2.618-2.272 5.409-4.372 8.148-6.42 3.945-2.943 7.821-6.11 11.732-9.156l5.857-4.613c1.929-1.445 3.807-3.029 5.736-4.612 1.895-1.601 3.963-3.184 5.892-4.664a218.57 218.57 0 0 0 5.754-4.613c3.79-3.149 7.373-6.437 10.784-9.999 1.723-1.773 3.446-3.563 5.254-5.336 1.844-1.773 3.515-3.39 5.169-5.232 3.255-3.597 6.339-7.452 9.044-11.497a101.664 101.664 0 0 1 2.188-3.115c.396-.517.792-1.033 1.223-1.532.379-.447.74-.895 1.085-1.36 1.395-1.876 2.584-3.975 3.79-6.127 1.154-2.168 2.584-4.423 3.738-6.437a53.316 53.316 0 0 0 3.032-6.523c1.688-4.457 2.843-9.397 4.565-14.096.758-2.185 1.189-4.561 1.689-7.005.241-1.221.499-2.478.844-3.734.189-.672.327-1.171.43-1.704.121-.534.19-1.102.259-1.687.293-2.323.241-4.871.896-7.607.086-.344.189-.689.31-1.033l.275-.843c.155-.534.293-1.067.397-1.618.223-1.102.31-2.272.396-3.459.103-2.358.207-5.095.672-7.59.413-2.513.947-4.923 1.257-7.264.345-2.323.207-4.664.431-7.349.103-1.29.344-2.736.723-3.993.293-1.05.466-2.168.586-3.356l.31-3.683c.104-1.274.31-2.616.517-3.804l1.24-7.331 2.412-14.682c.414-2.409.551-4.784.93-7.366.379-2.513.862-4.957 1.275-7.366.5-2.909.81-5.645.758-8.571 0-1.48 0-3.029.155-4.63.069-.792.19-1.618.362-2.427.138-.705.276-1.342.362-2.048.792-5.49-.293-11.617 1.188-17.934.207-.878.311-1.291.397-1.962.051-.637.086-1.274.069-1.945-.035-1.342-.259-2.736-.483-4.182-.224-1.446-.499-2.943-.654-4.527l-.379-4.44c-.534-5.852-1.31-11.652-2.722-17.28-1.413-5.611-3.497-11.084-6.047-16.316a100.323 100.323 0 0 0-4.186-7.676c-1.499-2.478-3.153-4.922-4.806-7.418-1.671-2.461-3.222-5.163-4.686-7.642-1.516-2.495-3.153-4.957-4.807-7.4l-10.129-14.664c-3.669-5.009-7.098-10.447-11.422-14.595-4.754-3.752-9.716-7.831-15.108-10.551-2.67-1.359-5.581-2.289-8.562-3.029-2.98-.723-6.012-1.17-9.078-1.411a71.056 71.056 0 0 0-18.416 1.084l-2.36.482c-.793.172-1.516.362-2.446.551-1.723.31-3.36.413-4.479.86-.138.052-.259.121-.379.173l-.569.309-1.137.585c-.758.379-1.533.723-2.308 1.05a85.843 85.843 0 0 1-4.669 1.79c-3.118 1.102-6.15 2.117-9.113 3.391-2.963 1.256-5.892 2.65-8.803 4.113-11.646 5.973-23.291 11.928-34.92 17.9-5.822 2.822-11.662 5.387-17.467 8.141-1.465.671-2.946 1.342-4.462 1.944-1.516.637-3.084 1.136-4.531 1.704-2.963 1.119-5.892 2.41-8.924 3.58-1.481.585-3.1 1.136-4.548 1.653-1.464.533-2.928 1.153-4.375 1.79-2.894 1.29-5.771 2.736-8.769 4.01-3.032 1.239-5.909 2.392-8.751 3.838-2.843 1.394-5.53 3.115-8.355 4.681-2.447 1.377-4.876 2.719-7.236 4.165-1.171.706-2.343 1.515-3.583 2.22l-3.652 2.083c-1.189.688-2.36 1.411-3.445 2.203l-3.29 2.564-6.616 5.164c-4.41 3.476-8.872 6.815-13.058 10.481-4.22 3.649-8.32 7.453-12.49 11.187-7.063 6.317-13.454 13.373-20.156 20.172-3.342 3.408-6.804 6.747-10.44 9.879-1.773 1.515-3.41 3.201-5.202 4.853-1.757 1.687-3.859 3.098-5.685 4.475-.62.482-1.206.964-1.74 1.48-.275.259-.534.534-.775.809-.275.31-.585.637-.878.93-1.24 1.205-2.636 2.134-3.945 3.046-.655.448-1.292.912-1.895 1.377l-1.895 1.48c-1.275.998-2.55 1.979-3.842 2.943a109.139 109.139 0 0 1-3.962 2.823c-1.344.929-2.722 1.755-3.997 2.65-2.584 1.808-5.134 3.821-7.959 5.525-2.722 1.566-5.375 2.857-7.838 4.492-1.258.809-2.326 1.687-3.566 2.668a79.144 79.144 0 0 1-3.738 2.702c-2.55 1.704-5.151 3.27-7.735 4.854l-7.701 4.767-15.47 9.535c-2.601 1.566-5.099 3.236-7.821 4.733-2.704 1.48-5.444 2.754-8.028 4.217-1.757.946-3.307 2.065-5.099 3.184-1.757 1.084-3.566 2.048-5.392 2.96-3.669 1.807-7.442 3.305-11.042 5.043l-10.94 5.077c-3.634 1.721-7.132 3.7-10.646 5.663-5.478 3.098-10.87 6.385-16.245 9.724-5.427 3.27-10.87 6.54-16.297 9.81-5.426 3.236-10.836 6.609-16.469 9.466-2.791 1.463-5.547 2.926-8.217 4.509-2.636 1.653-5.53 3.185-8.373 4.51-11.128 4.853-21.585 10.808-31.973 16.987-5.237 3.046-10.216 6.317-15.212 9.776-2.498 1.704-5.013 3.408-7.58 5.043l-7.545 5.043c-6.322 4.199-12.593 8.519-18.864 12.873-6.27 4.338-12.558 8.623-18.777 13.064-3.135 2.185-6.305 4.337-9.596 6.333l-4.926 2.909c-1.62.981-3.222 1.996-4.824 3.029a194.246 194.246 0 0 1-4.875 3.046l-1.155.689-.861.533c-.534.327-1.085.655-1.55 1.068-.586.568-1.172.791-1.878.981-.62.172-1.154.55-1.654.981-.155.137-.344.447-.655.378-.43-.086-.568-.482-.465-.998.086-.516.414-1.067.638-1.446.534-.912 1.309-1.686 2.101-2.272.845-.602 1.534-1.049 2.361-1.48l.792-.43 1.637-.964 2.256-1.394 4.548-2.857a127.295 127.295 0 0 1 4.669-2.771 122.803 122.803 0 0 0 4.531-2.719c2.997-1.876 5.926-3.873 8.854-5.904 5.806-4.13 11.783-8.072 17.675-12.116 5.892-4.028 11.801-8.055 17.813-12.014l12.214-8.054c4.031-2.685 8.028-5.508 12.162-8.176 8.355-5.197 16.711-10.171 25.376-14.801 2.532-1.343 5.065-2.651 7.683-3.873 2.584-1.222 5.185-2.375 7.701-3.614 2.549-1.222 4.823-2.616 7.356-4.113 2.497-1.446 5.03-2.771 7.545-4.097 2.515-1.325 5.03-2.616 7.459-4.061l7.322-4.338 14.643-8.708c10.112-6.145 20.19-12.53 30.922-17.728 5.392-2.495 10.802-5.094 16.194-7.487 2.687-1.187 5.34-2.409 7.89-3.803a57.141 57.141 0 0 0 3.704-2.238 54.106 54.106 0 0 1 3.858-2.409c2.378-1.343 4.807-2.513 7.133-3.752a54.657 54.657 0 0 0 3.393-1.945l3.411-2.117 13.627-8.468 13.644-8.502c2.274-1.394 4.513-2.805 6.632-4.32a52.721 52.721 0 0 0 3.118-2.358 36.149 36.149 0 0 1 3.394-2.461c2.326-1.497 4.789-2.754 7.011-4.01 2.205-1.291 4.307-2.875 6.478-4.458a73.123 73.123 0 0 1 3.376-2.341c1.12-.722 2.205-1.445 3.291-2.203a164.573 164.573 0 0 0 6.374-4.733c1.068-.809 2.05-1.652 3.221-2.495 1.137-.809 2.24-1.532 3.221-2.289a13.463 13.463 0 0 0 1.982-1.825c.224-.241.5-.55.758-.809 1.05-1.067 2.187-1.927 3.29-2.719 1.103-.809 2.153-1.549 3.1-2.358.983-.826 1.913-1.704 2.878-2.633.965-.912 1.93-1.876 2.98-2.788l2.998-2.634c7.58-6.815 14.436-14.543 21.826-21.858 3.687-3.7 7.632-7.108 11.422-10.567 3.824-3.477 7.7-6.936 11.749-10.241l12.23-9.569 6.117-4.75c2.187-1.722 4.547-2.995 6.77-4.252 1.12-.636 2.188-1.256 3.238-1.944a76.49 76.49 0 0 1 3.36-2.066l6.753-3.838c2.188-1.256 4.444-2.668 6.804-3.855a86.901 86.901 0 0 1 7.184-3.287c3.187-1.257 6.253-2.806 9.475-4.303 1.602-.74 3.222-1.48 4.91-2.134 1.722-.672 3.342-1.188 4.927-1.825 3.204-1.256 6.408-2.685 9.733-3.958 1.706-.637 3.256-1.171 4.84-1.859a127.87 127.87 0 0 0 4.721-2.134c6.322-3.029 12.73-5.869 18.915-9.002l18.588-9.689c7.201-3.666 14.23-7.522 21.741-10.826 3.738-1.67 7.683-2.926 11.387-4.268 1.86-.689 3.687-1.412 5.426-2.255.431-.207.862-.43 1.293-.654l.775-.396c.293-.138.603-.241.878-.327 1.155-.361 2.223-.482 3.205-.62 1.188-.137 2.153-.395 3.428-.688a68.225 68.225 0 0 1 3.617-.723 75.32 75.32 0 0 1 7.322-.929c4.91-.362 9.854-.276 14.764.396 4.909.722 9.733 1.893 14.315 4.061 4.548 2.186 8.476 5.129 12.335 8.124l2.928 2.22c.982.775 1.878 1.687 2.74 2.599 1.705 1.824 3.221 3.769 4.685 5.714 2.808 3.942 5.754 7.866 8.407 11.841l8.235 11.893a162.616 162.616 0 0 1 3.962 6.127c1.292 2.1 2.429 4.165 3.738 6.162l4.669 7.125a97.415 97.415 0 0 1 4.289 7.47 91.16 91.16 0 0 1 6.495 15.954c1.636 5.525 2.601 11.205 3.221 16.885a243.7 243.7 0 0 1 .758 8.502c.224 2.719.913 5.49 1.103 8.468.051.912.069 1.841-.035 2.788-.086.929-.344 1.945-.517 2.702-.379 1.635-.568 3.322-.654 5.043-.19 3.425.017 6.953-.276 10.55-.069.895-.189 1.79-.327 2.702l-.258 1.343c-.087.413-.173.809-.224 1.222-.242 1.652-.259 3.373-.276 5.111.069 3.546-.414 7.177-1.068 10.62-.655 3.493-1.258 6.815-1.585 10.361-.431 3.528-1.103 6.987-1.637 10.43l-1.757 10.378-.896 5.198c-.292 1.686-.396 3.39-.534 5.163-.137 1.807-.379 3.752-.913 5.525-.448 1.635-.551 3.373-.603 5.163-.034 1.773-.086 3.7-.361 5.525-.242 1.841-.603 3.631-.931 5.404-.327 1.773-.62 3.528-.74 5.284-.121 1.755-.138 3.597-.328 5.456a22.531 22.531 0 0 1-.448 2.805c-.189.912-.568 1.91-.792 2.651-.448 1.617-.551 3.39-.689 5.197-.138 1.807-.293 3.718-.827 5.577-.482 1.686-.81 3.442-1.154 5.232-.345 1.79-.724 3.597-1.275 5.404-.603 1.824-1.189 3.408-1.706 5.163-1.068 3.443-1.998 6.971-3.342 10.43-1.326 3.425-3.118 6.781-5.03 9.811-1.516 2.616-2.911 5.404-4.668 8.054a36.64 36.64 0 0 1-1.396 1.945l-1.447 1.79c-.913 1.171-1.757 2.427-2.618 3.701-3.498 5.18-7.391 10.016-11.784 14.508-4.496 4.252-8.493 8.83-13.075 13.132-4.548 4.234-9.423 8.159-14.316 11.876-3.17 2.496-6.253 5.267-9.612 7.762l-9.665 7.625a410.258 410.258 0 0 1-9.768 7.538c-1.619 1.239-3.221 2.496-4.754 3.804l-4.703 3.993c-6.219 5.318-12.507 10.671-18.037 16.54-2.756 2.96-5.254 6.144-7.701 9.414-2.446 3.253-4.737 6.592-6.684 10.103-1.602 2.96-3.135 6.213-4.651 9.311-1.499 3.133-2.911 6.282-4.066 9.501-2.256 6.437-3.617 13.287-4.926 20.119-.655 3.46-1.344 6.799-1.672 10.207-.344 3.407-.5 6.85-.568 10.326v1.257l.086.912c.07 1.067-.207 2.031-.413 3.029a18.739 18.739 0 0 1-.293 1.256c-.035.069-.017.086-.086.104-.224.103-.276.154-.293.189.017-.017 0-.017.034-.069.035-.052.052-.155.052-.103 0 .034.052.069.103.103.104.052.448.103.483.344l-.035-.103Z%27/%3E%3Cpath d=%27M-416.759 594.348c.569-.052.896.379 1.069.844.086.224.172.43.259.499.086.069.138.035.258.086l-.431-.137c.242-.086.121-.155.086-.31-.017-.207-.069-.707.69-1.568.19-.207.414-.362.656-.482.12-.086.241-.121.396-.19l.19-.086c.259-.12.5-.224.742-.361l.741-.379.362-.207.345-.19.518-.292 1.017-.62a69.25 69.25 0 0 0 2.018-1.344c2.638-1.86 5.38-3.996 8.347-5.684 2.828-1.671 5.57-3.479 8.278-5.357 5.415-3.755 10.658-7.837 16.073-11.781 2.69-1.964 5.363-3.91 7.933-5.96 1.311-1.034 2.5-2.05 3.811-3.17a49.357 49.357 0 0 1 4.156-3.048l16.625-11.058 4.174-2.756 4.259-2.653 8.52-5.322 4.26-2.653 4.346-2.515c2.914-1.636 5.88-3.238 8.898-4.736a111.204 111.204 0 0 1 6.692-3.049c1.121-.465 2.311-.93 3.397-1.344.19-.069.466-.275.931-.706.449-.413 1.19-1.068 2.173-1.343l.983-.242c.276-.051.552-.137.811-.206.552-.138 1.086-.328 1.621-.5 1.087-.361 2.156-.809 3.242-1.274l6.588-3.015c1.104-.499 2.363-.964 3.449-1.36a53.572 53.572 0 0 0 3.26-1.327c2.155-.947 4.311-1.998 6.45-3.066 4.294-2.187 8.709-4.306 13.003-6.407 4.311-2.119 8.726-4.203 12.934-6.356 2.087-1.102 4.139-2.343 6.295-3.531 2.173-1.206 4.312-2.256 6.45-3.393 2.121-1.12 4.225-2.239 6.277-3.445 2.053-1.189 3.984-2.498 6.054-3.841l12.227-7.751a199.295 199.295 0 0 0 5.967-3.996l2.897-2.085a95.369 95.369 0 0 1 3.001-2.135c4.036-2.774 8.209-5.254 12.245-7.838 4.052-2.497 7.864-5.443 11.761-8.285l11.658-8.543 23.489-16.932c.828-.568 1.535-.758 1.949-.964.207-.086.345-.173.379-.207h.018l.172-.189.345-.328a47.698 47.698 0 0 1 2.811-2.497c1.932-1.585 3.967-3.015 6.053-4.341 2.121-1.326 4.156-2.497 6.157-3.789a170.331 170.331 0 0 0 5.967-3.962c9.434-6.58 18.677-13.521 27.542-20.824 2.207-1.826 4.432-3.686 6.57-5.564 2.121-1.877 4.191-3.858 6.312-5.839 2.121-1.981 4.329-3.944 6.726-5.753 2.26-1.619 4.14-3.531 6.105-5.65 1.932-2.084 3.966-4.323 6.277-6.252 2.173-1.843 4.277-3.772 6.381-5.719 4.191-3.927 8.503-7.906 12.917-11.626a411.938 411.938 0 0 1 13.47-10.99l3.449-2.652a39.188 39.188 0 0 1 3.707-2.549c2.553-1.568 5.088-2.86 7.502-4.341l7.795-4.875c2.622-1.636 5.485-3.117 8.261-4.392a255.432 255.432 0 0 1 17.022-7.286c11.503-4.237 23.023-8.474 34.526-12.711a276.348 276.348 0 0 0 8.778-3.583c2.897-1.206 5.708-2.584 8.606-3.962a125.47 125.47 0 0 1 4.38-1.998l4.398-1.843c2.862-1.257 5.69-2.635 8.52-4.065 5.638-2.894 11.381-5.753 17.176-8.406a222.709 222.709 0 0 1 8.778-3.858 158.95 158.95 0 0 1 4.449-1.791c1.466-.569 3.036-1.189 4.622-1.619l4.519-1.206a28.104 28.104 0 0 0 2.121-.689l2.242-.792c3.018-1.017 6.105-1.843 9.278-2.343 3.156-.499 6.398-.723 9.606-.482 3.208.224 6.364.861 9.416 1.688 6.226 1.585 11.969 4.84 16.798 8.957 4.915 4.047 8.881 9.146 12.382 14.296 3.053 4.478 6.209 8.94 9.037 13.625 2.863 4.65 5.501 9.439 8.002 14.279 2.501 4.84 4.863 9.783 6.915 14.847 1.966 5.099 3.984 10.042 5.933 15.261 1.535 4.444 2.535 9.009 3.708 13.453l.914 3.324c.328 1.154.586 2.325.793 3.479.414 2.326.621 4.668.862 6.959.225 2.291.466 4.565.914 6.769.535 2.308.639 4.789.656 7.08l.069 3.445c.034 1.119.155 2.239.224 3.427.138 2.36.138 4.72 0 7.062a71.256 71.256 0 0 1-.431 4.72 29.027 29.027 0 0 0-.345 4.53c0 3.031.293 6.304-.552 9.577-.19.809-.535 1.653-.69 2.256-.189.672-.293 1.378-.362 2.102-.138 1.464-.086 2.979-.017 4.53.138 3.152 0 6.373-.328 9.49-.362 3.618-.931 7.183-1.328 10.748a69.438 69.438 0 0 0-.431 5.306c-.052.878-.052 1.757-.052 2.652l.035 1.327c0 .258 0 .361.034.637.035.31 0 .706-.103 1.033-1.173 3.721-.742 7.734-.983 11.92a28.96 28.96 0 0 1-.362 3.169c-.087.517-.224 1.068-.328 1.567-.121.466-.207.948-.31 1.43-.345 1.929-.483 3.927-.57 5.943l-.189 6.08c0 .982.052 2.015 0 3.1-.052 1.068-.155 2.257-.759 3.428-1.914 3.341-1.932 7.389-2.742 11.54-.811 3.928-2.087 7.717-3.57 11.386a168.22 168.22 0 0 1-4.846 10.817 97.983 97.983 0 0 1-13.107 19.774c-3.915 4.754-7.985 9.421-12.331 13.831-4.328 4.444-9.036 8.526-13.848 12.384-9.554 7.751-19.522 14.968-29.37 22.151l-7.26 5.047c-2.432 1.671-4.829 3.341-7.14 5.133a300.87 300.87 0 0 0-13.607 11.092c-4.346 3.876-8.364 8.148-12.417 12.402-4.156 4.134-7.622 8.767-10.778 13.728-4.105 6.115-6.95 12.867-9.865 19.688-.741 1.722-1.535 3.376-2.121 5.064-.604 1.705-1.087 3.462-1.518 5.236l-1.293 5.408c-.466 1.826-.949 3.566-1.363 5.357-.81 3.566-1.431 7.183-1.724 10.817-.293 3.669-.5 7.355-.638 11.024a197.075 197.075 0 0 0-.12 5.512V703.19l.034.982c.017.62.051 1.24.224 1.825.241.827.138 1.585-.155 2.377-.07.19-.121.328-.173.552-.052.241-.12.413-.172.568a1.634 1.634 0 0 1-.138.327c-.035.052-.104.052-.087.138 0 .103.345.189.414.5.052.378-.172.826-1.034.62-.483-.121-.863-.776-.914-1.137-.087-.379-.104-.638-.138-.81a18.58 18.58 0 0 1-.587-2.549c-.138-.93-.224-1.877-.19-2.808l.035-.93.086-4.53c.052-1.757.12-3.496.224-5.236.207-3.497.397-6.942.828-10.507.449-3.531 1.156-6.993 2.018-10.421l1.328-5.029 1.259-5.082c.448-1.705.966-3.427 1.62-5.133.674-1.739 1.432-3.255 2.105-4.84 2.76-6.304 5.553-12.884 9.485-18.774 2.57-4.031 5.329-7.993 8.571-11.627a513.529 513.529 0 0 1 9.865-10.352 127.744 127.744 0 0 1 10.623-9.646c3.656-3.031 7.347-6.046 11.193-8.888l13.572-9.576 13.279-9.836c4.45-3.221 8.813-6.666 13.142-10.059 4.328-3.41 8.554-6.907 12.486-10.713 4.104-3.962 7.967-8.182 11.675-12.54 3.691-4.392 7.381-8.767 10.417-13.538 3.087-4.772 5.708-9.801 8.002-15.037 2.328-5.219 4.432-10.507 5.536-15.985.379-1.895.551-3.91.914-5.994.344-2.067.948-4.289 2.035-6.218.293-.551.431-1.412.448-2.343.034-.93 0-1.929 0-2.997l.155-6.166c.086-2.067.207-4.168.586-6.287.104-.534.207-1.068.328-1.585.104-.516.224-.93.293-1.395.173-.93.259-1.895.311-2.859.103-1.946.069-3.979.12-6.08.052-2.067.294-4.341.914-6.391v-.103c0-.069-.034-.396-.034-.603l-.034-1.223c-.018-.809 0-1.636 0-2.446.051-1.619.155-3.238.327-4.823.311-3.203.759-6.338 1.138-9.439.363-3.1.673-6.2.656-9.249.034-3.015-.483-6.304.396-9.87.104-.413.311-.964.397-1.257.121-.328.224-.655.31-.999.19-.672.294-1.378.38-2.102.155-1.447.155-2.945.121-4.513-.035-1.567-.069-3.203.069-4.909.069-.878.189-1.67.293-2.411l.241-2.308c.276-3.066.345-6.149.138-9.198-.052-.741-.138-1.55-.172-2.394a57.855 57.855 0 0 1-.069-2.429c-.018-1.602 0-3.152-.104-4.65a21.44 21.44 0 0 0-.465-3.48 43.248 43.248 0 0 1-.621-3.841c-.328-2.549-.5-5.047-.794-7.493-.293-2.48-.707-4.702-1.448-7.096-.69-2.446-1.294-4.909-1.897-7.321-.621-2.411-1.242-4.805-2.001-7.13-.724-2.343-1.69-4.531-2.587-6.908-1.862-4.65-3.535-9.421-5.587-13.917-4.087-9.043-8.796-17.896-14.09-26.285a185.795 185.795 0 0 0-4.122-6.218l-4.259-6.183c-2.863-4.065-5.881-7.906-9.503-11.127-4.88-4.462-10.572-7.924-16.866-9.594-3.208-.862-6.45-1.516-9.692-1.688-3.225-.19-6.502.103-9.727.723-3.225.62-6.398 1.567-9.52 2.739-3.363 1.309-6.795 1.808-9.744 2.98-6.294 2.394-12.468 5.167-18.573 8.078-7.071 3.272-13.849 7.096-21.11 10.369-1.81.827-3.69 1.55-5.414 2.291-1.76.758-3.518 1.602-5.278 2.446a184.339 184.339 0 0 1-10.795 4.823c-4.346 1.808-8.761 3.513-13.228 5.046l-13.193 4.806-13.158 4.823c-4.364 1.654-8.675 3.41-12.918 5.322a210.688 210.688 0 0 0-6.329 2.946c-2.086.982-4.052 2.084-6.053 3.29-3.932 2.394-7.864 5.081-12.02 7.355-2.035 1.154-4.019 2.29-5.83 3.599-1.827 1.361-3.69 2.825-5.518 4.255a412.559 412.559 0 0 0-10.848 8.853 296.642 296.642 0 0 0-12.33 10.921c-2.018 1.877-4.053 3.755-6.14 5.58l-3.139 2.705c-1 .878-1.948 1.825-2.897 2.79-1.88 1.964-3.725 4.048-5.812 5.977-1.017.947-2.242 1.895-3.294 2.67a62.38 62.38 0 0 0-3.156 2.566c-4.104 3.548-8.019 7.545-12.313 11.058-10.468 8.819-21.385 17.053-32.681 24.821a175.558 175.558 0 0 1-8.674 5.529c-2.915 1.722-5.743 3.566-8.33 5.701-.656.534-1.276 1.086-1.897 1.637l-.914.861a9.36 9.36 0 0 1-.552.517c-.242.189-.483.31-.707.43-.466.224-.862.362-1.207.517-.173.069-.311.155-.432.224l-.5.344-2.086 1.499-8.313 5.977c-5.725 4.117-11.468 8.216-17.142 12.419l-8.537 6.27c-2.863 2.066-5.639 4.237-8.64 6.166-5.95 3.893-12.038 7.372-17.642 11.592-5.743 4.203-11.796 7.889-17.729 11.678l-7.571 4.892c-2.587 1.585-5.243 3.032-7.899 4.444-2.673 1.412-5.311 2.739-7.864 4.254-2.552 1.482-5.242 3.049-7.95 4.324l-16.125 7.958c-5.346 2.583-10.589 5.58-16.349 7.768-3.725 1.274-7.139 3.152-10.934 4.754-1.879.792-3.863 1.498-5.932 1.946-.397.086-.448.121-.776.362-.276.207-.621.568-1.121.964-.431.397-1.363.793-1.708.896l-1.379.534c-7.312 2.894-14.28 6.735-21.143 10.748l-10.124 6.304c-3.363 2.119-6.777 4.151-10.071 6.408l-9.968 6.631-5.002 3.359c-1.672 1.102-3.311 2.188-4.863 3.342-.655.499-1.293.999-1.914 1.533l-1.983 1.67c-1.328 1.103-2.691 2.154-4.053 3.204l-8.209 6.098c-5.433 4.065-10.848 8.233-16.573 12.04-1.432.947-2.88 1.877-4.346 2.79-1.518.913-2.846 1.705-4.208 2.67-2.708 1.895-5.398 4.082-8.52 5.873l-1.983 1.189-.379.189-.19.086-.104.035h.018s-.035-.052-.069-.069c0-.069-.156.086-.345.327-.207.224-.449.552-.863.862-.413.327-1.034.551-1.534.534-.138 0-.242 0-.362-.018h-.173l-.035-.034-.603-.19v-.017l-.069-.052c-.173-.155-.362-.327-.5-.551-.311-.448-.397-.999-.38-1.36.018-.379.121-.672.19-.913.069-.207.155-.483.397-.5v-.103Z%27/%3E%3Cpath d=%27M70.426 710.099c-.017.396-.172.671-.464.86a1.186 1.186 0 0 1-.601.172c-.258 0-.636-.121-.911-.396-.533-.55-.584-1.186-.688-1.581-.085-.396-.189-.774-.326-1.066a3.984 3.984 0 0 1-.412-1.531l-.052-1.805v-1.358l.052-2.27.103-2.458c.326-6.534 1.22-13.016 1.598-19.343.086-1.616.172-3.301.464-5.02.155-.86.36-1.737.67-2.613.327-.894.55-1.462.79-2.236.929-2.922 1.393-6.069 2.08-9.318 1.375-6.517 3.798-12.689 6.41-18.655 2.647-6.121 6.29-11.657 10.036-16.987 7.459-10.9 17.255-19.841 27.205-28.162 7.304-6.052 15.14-11.348 22.788-16.729l11.428-8.116a207.572 207.572 0 0 0 5.688-4.143l5.637-4.195c3.746-2.803 7.458-5.622 10.999-8.614 3.488-2.975 7.028-6.19 10.448-9.302 6.909-6.172 12.442-13.548 17.615-21.319 2.63-3.886 4.984-7.737 6.874-11.932a61.368 61.368 0 0 0 2.475-6.379l1.048-3.404c.464-1.29 1.031-2.339 1.392-3.284a7.13 7.13 0 0 0 .378-1.341l.189-1.702c.155-1.204.327-2.39.55-3.577.413-2.355.911-4.659 1.341-6.928.429-2.287.825-4.505.962-6.757.172-2.27.206-4.643.447-7.067.12-1.221.292-2.441.567-3.679.309-1.324.567-2.218.705-3.318.309-2.132.292-4.402.24-6.723-.051-2.321-.137-4.745 0-7.17.138-2.303.207-4.642.275-6.98.121-4.677.189-9.388.533-14.133.172-2.373.412-4.745.756-7.135.395-2.459.791-4.505.859-6.791.138-2.717.069-5.502.069-8.339l.12-8.459c.086-5.605.121-11.176-.343-16.643-.241-2.734-.602-5.45-1.134-8.133-.602-2.716-1.049-5.673-1.427-8.407-.395-2.768-.808-5.468-1.529-8.029-.774-2.545-1.736-5.279-2.595-7.892-1.822-5.278-3.369-10.677-5.534-15.766-2.114-5.124-4.485-10.144-7.166-14.993-2.664-4.831-5.671-9.594-8.593-14.339-2.973-4.711-6.049-9.353-9.469-13.686-3.626-4.59-7.751-8.562-12.889-11.261-5.035-2.854-10.5-4.832-16.154-4.522-3.008.103-5.964.086-8.833.361a34.24 34.24 0 0 0-4.211.653c-1.375.293-2.664.74-4.142 1.221l-8.506 2.682c-1.392.464-2.784.946-4.142 1.462-.67.257-1.375.533-1.942.79-.601.293-1.237.654-1.925 1.015-.721.378-1.495.756-2.388 1.031-.413.138-.98.258-1.341.31-.344.069-.687.12-1.031.206-1.358.327-2.715.843-4.056 1.462-2.663 1.22-5.396 2.871-8.283 4.126-5.568 2.579-11.136 5.364-16.996 7.634-2.922 1.066-5.671 2.252-8.593 3.421-2.87 1.169-5.98 2.218-9.005 2.906-1.495.361-2.956.739-4.33 1.203-.723.241-1.307.482-2.063.809-.756.326-1.512.584-2.269.842-3.041 1.014-6.1 1.616-8.987 2.442-1.375.395-2.905.928-4.4 1.272l-4.434 1.031c-1.46.344-2.852.723-4.21 1.238a107.637 107.637 0 0 1-4.348 1.479c-2.887.928-5.757 1.822-8.507 2.923-1.392.55-2.663 1.169-4.038 1.857-1.41.705-2.836 1.289-4.262 1.856-2.853 1.101-5.689 2.064-8.3 3.405-1.341.653-2.407 1.444-3.867 2.304-1.392.791-2.819 1.375-4.142 2.028-.67.327-1.306.671-1.908 1.032l-1.942 1.204c-1.323.79-2.646 1.547-3.952 2.286-2.63 1.496-5.225 2.992-7.579 4.797-8.404 6.344-16.601 13.015-24.438 20.047-7.836 7.05-15.294 14.563-23.217 21.612-3.368 2.992-6.616 6.138-10.088 9.027l-10.431 8.596-5.224 4.299c-1.805 1.444-3.712 2.699-5.551 3.971-3.626 2.562-7.235 5.313-10.861 7.961-4.864 3.61-9.762 7.169-14.591 10.849-2.423 1.822-4.829 3.748-7.269 5.502-2.441 1.736-4.829 3.576-7.184 5.467-8.764 7.324-18.182 13.944-26.912 21.234l-13.215 10.986-13.714 10.368c-12.322 9.112-25.194 17.33-38.53 24.861-2.595 1.479-5.138 3.06-7.802 4.488-2.664 1.409-5.362 2.733-8.06 4.023-5.43 2.596-10.861 5.003-16.292 7.444a101.084 101.084 0 0 1-8.352 3.525c-1.392.533-2.766 1.066-4.107 1.651-1.358.567-2.578 1.237-4.021 1.908-2.801 1.272-5.671 2.149-8.352 3.25a3511.147 3511.147 0 0 0-8.181 3.404c-2.646 1.1-5.31 2.201-7.956 3.284-2.63 1.066-5.156 2.286-7.699 3.593a317.491 317.491 0 0 1-7.665 3.817c-2.458 1.289-4.795 2.923-7.338 4.367-2.612 1.376-5.035 2.613-7.459 4.144-2.406 1.478-4.691 3.146-7.046 4.779-4.674 3.267-9.331 6.568-13.799 10.11-2.836 2.269-5.758 4.384-8.627 6.533-2.905 2.132-5.62 4.402-8.456 6.637l-16.944 13.428a129.621 129.621 0 0 1-8.816 6.379l-8.937 6.086-5.534 3.782a8.186 8.186 0 0 1-.996.568c-.619.309-1.238.533-1.736.877-.722.481-1.323.601-2.028.67-.618.069-1.168.344-1.684.757-.172.12-.361.43-.687.326-.43-.103-.516-.515-.396-1.031.121-.516.516-1.049.808-1.41.687-.877 1.616-1.496 2.475-1.926.876-.447 1.701-.791 2.32-1.083.223-.103.361-.172.653-.361l7.819-5.261 8.387-5.622c2.749-1.84 5.396-3.851 8.059-5.915l15.914-12.465c2.629-2.063 5.328-4.281 8.06-6.258 2.732-2.012 5.465-3.989 8.094-6.035 3.609-2.871 7.39-5.622 11.154-8.27 3.798-2.613 7.475-5.364 11.497-7.84 1.976-1.221 4.141-2.373 6.118-3.37 1.941-1.049 3.832-2.338 5.842-3.542a42.866 42.866 0 0 1 3.163-1.719l3.059-1.513 6.169-3.146c2.423-1.221 5.001-2.287 7.441-3.301l7.424-3.112 7.493-3.112c2.561-.98 5.087-1.806 7.442-2.872 1.117-.515 2.388-1.203 3.66-1.736a79.448 79.448 0 0 1 3.798-1.53c2.526-.963 5.018-1.874 7.355-2.992 4.881-2.201 9.865-4.35 14.711-6.619 5.052-2.373 10.088-4.711 14.865-7.583l14.436-8.441c9.521-5.812 18.852-11.984 27.771-18.638l12.03-9.164c4.039-3.06 7.63-6.413 11.635-9.628 7.733-6.637 15.844-12.654 23.767-18.913 3.918-3.163 7.802-6.43 11.926-9.473 4.228-2.975 8.009-6.104 12.099-9.095l12.202-9.027 6.1-4.504c1.994-1.513 4.194-3.026 6.239-4.402.98-.688 1.959-1.375 2.87-2.097l2.818-2.304 5.637-4.625 5.636-4.625c1.89-1.531 3.781-3.078 5.534-4.746l10.793-9.783 10.637-10.023a358.386 358.386 0 0 1 22.1-19.377c3.833-3.095 7.63-6.086 11.618-9.061 4.159-2.974 8.558-5.037 12.58-7.685 1.546-.963 3.127-1.634 4.554-2.339a20.272 20.272 0 0 0 2.027-1.1c.55-.344 1.393-.946 2.132-1.358 3.041-1.788 6.272-2.906 9.314-4.092 1.53-.585 3.007-1.204 4.4-1.909 1.426-.739 3.058-1.53 4.605-2.149 3.162-1.289 6.359-2.252 9.452-3.301l4.709-1.633c1.667-.533 3.317-.911 4.915-1.29 1.615-.378 3.18-.739 4.674-1.22a64.96 64.96 0 0 1 4.846-1.393c3.266-.825 6.239-1.547 9.229-2.923 3.3-1.341 6.685-1.84 9.64-2.802 3.507-1.118 6.927-2.683 10.518-4.092a133.532 133.532 0 0 0 10.45-4.35l10.327-4.832c3.3-1.513 6.582-3.679 10.501-4.917a20.807 20.807 0 0 1 1.787-.481l.911-.172c.24-.035.429-.086.653-.138.859-.24 1.77-.739 2.784-1.289.979-.568 2.251-1.101 3.282-1.496 1.083-.413 2.183-.808 3.265-1.186 2.183-.74 4.383-1.41 6.548-2.081l3.248-1.014c1.048-.327 2.165-.722 3.351-1.015 4.675-1.203 9.418-1.151 13.92-1.272 2.269-.103 4.812 0 7.132.499 2.355.464 4.623 1.238 6.806 2.183 2.165.946 4.227 2.063 6.221 3.267 2.028 1.186 3.97 2.631 5.722 4.195 3.523 3.147 6.462 6.809 9.16 10.522 2.715 3.714 5.207 7.565 7.63 11.451 2.389 3.903 4.812 7.737 7.081 11.743 5.31 9.422 9.641 19.463 12.665 29.744l2.509 7.669c.877 2.493 1.65 5.243 2.08 7.926.464 2.682.773 5.347 1.186 7.977.395 2.579 1.048 5.227 1.409 7.926.962 6.671 1.014 13.377.894 20.013l-.172 9.938c-.018 3.301.086 6.637-.189 10.024-.121 1.685-.43 3.421-.705 5.003a92.28 92.28 0 0 0-.636 4.883c-.326 3.266-.498 6.568-.601 9.869l-.292 9.955-.241 4.968c-.069 1.617-.034 3.25 0 4.918.069 3.404.206 6.98-.687 10.505-.877 3.215-.98 6.55-1.152 10.006-.258 7.049-2.509 13.686-3.11 20.357-.189 2.012-1.186 3.645-1.771 5.106-.154.379-.257.722-.378 1.118l-.36 1.255a60.917 60.917 0 0 1-.808 2.493 65.713 65.713 0 0 1-4.176 9.559c-1.616 3.095-3.54 6.001-5.431 8.855a169.829 169.829 0 0 1-5.963 8.442c-1.787 2.338-3.609 4.625-5.603 6.826-1.976 2.2-4.09 4.263-6.238 6.258l-6.479 5.88a141.276 141.276 0 0 1-6.668 5.743c-9.177 7.307-18.508 14.132-28.063 20.907-6.307 4.59-12.769 8.837-18.921 13.496-6.17 4.608-12.03 9.663-17.667 14.907-5.602 5.278-10.826 10.917-15.209 17.21-4.485 6.327-8.592 12.706-11.36 19.893-2.56 6.069-4.588 12.173-5.653 18.654-.31 1.634-.636 3.301-1.1 4.952a34.572 34.572 0 0 1-.774 2.493c-.326.894-.55 1.444-.721 2.201-.688 2.871-.533 6.258-.894 9.628-.567 6.619-1.323 13.153-1.358 19.617v.551l.018.223.034.447.086.877c.103 1.032-.12 1.994-.24 2.974-.052.447-.155 1.118-.224 1.324a.2.2 0 0 1-.052.121c-.137.051-.326.206-.309.189-.017.034.017-.017.034-.052.035-.069.052-.155.052-.103 0 .034.069.086.138.12.12.069.532.155.515.396l.206.034Z%27/%3E%3Cpath d=%27M46.52 709.963c.035.378-.086.686-.413.909-.31.224-.843.344-1.377.189-.551-.12-1.016-.566-1.274-1.098-.259-.515-.362-1.133-.483-1.562-.172-.6-.292-1.046-.258-1.561.035-.567.035-1.15.052-1.733v-3.364l-.035-2.248c-.12-6.006-.482-12.201.569-18.448.12-.772.31-1.561.447-2.316.155-.687.293-1.407.396-2.111.224-1.424.345-2.883.414-4.342.069-1.475.069-2.917.051-4.461 0-1.579.017-3.209.517-4.994.069-.223.138-.446.224-.686l.24-.584c.138-.309.259-.635.397-.961.24-.652.465-1.321.637-2.025.379-1.373.637-2.814.912-4.307.483-2.969 1.154-6.109 2.067-9.044.895-2.968 1.946-5.851 3.048-8.7l1.653-4.239a43.914 43.914 0 0 1 1.928-4.307c1.412-2.78 3.03-5.388 4.546-7.997l2.325-3.964c.843-1.321 1.722-2.625 2.686-3.861 3.77-4.994 8.3-9.215 12.57-13.471 1.567-1.527 3.013-3.106 4.7-4.702 1.654-1.562 3.41-2.986 5.184-4.342 3.547-2.728 7.18-5.199 10.572-7.859 3.616-2.609 7.095-5.2 10.814-7.808 1.894-1.253 3.805-2.386 5.648-3.518.93-.566 1.825-1.15 2.703-1.75l2.686-1.888 21.559-15.222c1.773-1.269 3.53-2.539 5.183-3.895 1.653-1.321 3.271-2.831 4.89-4.29l4.873-4.376c1.619-1.459 3.272-2.9 4.77-4.462a121.987 121.987 0 0 0 8.627-9.73c2.703-3.415 5.32-6.847 7.232-10.588.981-1.87 1.79-3.81 2.41-5.8.327-.995.517-1.939.913-3.192.379-1.15.844-2.214 1.291-3.226.448-1.013.879-1.974 1.223-2.917.361-.961.516-1.785.706-2.901.379-2.11.654-4.238.826-6.366.19-2.145.259-4.256.259-6.435v-6.59c.017-4.376-.035-8.718-.396-13.008-.81-8.94-.19-17.727-.241-26.496.086-5.371.602-10.656 1.067-15.89.465-5.2.792-10.468 1.068-15.668.241-5.199.241-10.348-.448-15.393-.31-2.522-.947-4.942-1.464-7.636-.499-2.626-.895-5.165-1.532-7.602a31.233 31.233 0 0 0-1.137-3.535 79 79 0 0 1-1.343-3.81c-.826-2.505-1.618-4.908-2.755-7.036-.551-1.064-1.239-2.025-1.997-3.175l-2.204-3.312-2.204-3.311c-.706-1.099-1.361-2.146-2.101-3.158a30.099 30.099 0 0 0-5.131-5.44c-1.981-1.699-3.961-3.363-6.044-4.822-2.067-1.459-4.253-2.729-6.544-3.672-1.136-.481-2.324-.841-3.616-1.253l-3.736-1.201c-2.617-.807-5.235-1.476-7.835-1.665a48.988 48.988 0 0 0-8.093.155c-2.703.274-5.321.806-8.007 1.544-2.927.755-5.768.927-8.403 1.407-1.326.206-2.514.601-4.029.927-1.446.309-2.858.515-4.253.721-2.79.377-5.476.72-7.955 1.51-2.945.961-5.89 1.046-8.524 1.458-1.343.172-2.48.515-3.995.858a41.68 41.68 0 0 1-4.304.687c-2.98.326-5.941.377-8.868.394-2.635-.068-5.252.841-8.317 1.373-1.481.275-3.238.344-4.718.189-1.412-.12-2.824-.189-3.616.12a.924.924 0 0 0-.224.103l-.104.069-.275.189c-.362.257-.74.48-1.136.686a9.53 9.53 0 0 1-2.48.807c-1.67.291-3.237.188-4.632.171-5.441-.086-10.883 2.094-16.754 3.175-2.79.532-5.545 1.218-8.214 2.128a42.806 42.806 0 0 0-3.891 1.561c-1.378.635-2.755 1.167-4.15 1.665-2.72.978-5.424 1.802-7.955 2.883-2.549 1.081-5.028 2.402-7.456 3.81-4.839 2.865-9.695 5.886-14.327 9.077a115.585 115.585 0 0 0-6.784 5.028c-2.187 1.734-4.288 3.656-6.526 5.458-4.425 3.62-9.006 7.001-13.345 10.622-3.771 3.157-7.439 6.504-11.244 9.713-3.823 3.209-7.714 6.281-11.554 9.421l-5.786 4.685c-1.928 1.561-3.926 3.037-5.889 4.547l-11.83 9.044c-6.663 5.217-13.568 10.056-20.06 15.393-3.254 2.625-6.388 5.474-9.66 8.168-3.237 2.712-6.474 5.389-9.47 8.289-.999.978-1.998 1.973-2.927 3.003-.947 1.03-1.963 2.128-2.997 3.123-2.066 2.008-4.253 3.861-6.388 5.732-2.152 1.87-4.167 3.741-6.13 5.8l-5.958 6.092c-1.859 1.888-3.754 3.895-5.82 5.68-2.032 1.802-4.098 3.484-5.94 5.32-.947.909-1.74 1.87-2.721 2.917a42.113 42.113 0 0 1-2.996 2.832c-2.066 1.784-4.202 3.415-6.182 5.148-.964.841-1.946 1.819-3.013 2.694a63.511 63.511 0 0 1-3.203 2.54c-2.187 1.63-4.425 3.123-6.629 4.65-4.374 3.003-8.679 6.315-13.19 9.267-2.996 1.991-6.061 3.895-9.23 5.646-3.168 1.767-6.388 3.277-9.315 5.182-3.083 1.957-6.337 3.57-9.557 5.148-1.601.79-3.203 1.579-4.77 2.403l-2.342 1.27c-.843.463-1.704.841-2.565 1.184-2.686 1.064-5.373 1.785-7.542 3.175-2.514 1.647-5.373 2.488-7.869 3.483-.637.258-1.257.515-1.843.807-.292.137-.585.309-.861.463l-.947.532a53.904 53.904 0 0 1-3.857 1.905c-2.6 1.167-5.234 2.179-7.835 3.209-2.617.995-5.01 2.179-7.559 3.449-2.497 1.236-5.269 2.437-7.99 3.106-2.565.772-5.062 1.905-7.455 3.192-2.377 1.304-4.787 2.78-7.181 4.153-4.666 2.728-9.333 5.337-13.758 8.306-4.442 2.934-8.782 6.092-13.018 9.301-.998.772-1.911 1.733-2.91 2.659-.499.464-1.033.927-1.636 1.339-.637.446-1.17.704-1.721 1.081-2.17 1.424-4.133 3.209-6.148 4.977-4.098 3.535-8.007 7.121-12.001 10.708-5.063 4.427-9.833 9.215-14.947 13.694-5.079 4.547-10.641 8.443-16.013 12.544-5.321 4.17-11.176 7.825-17.185 11a223.08 223.08 0 0 1-4.546 2.317l-.895.429-.224.12c-.276.154-.672.326-.982.463-.62.258-1.222.464-1.687.807-.672.463-1.257.6-1.963.703-.603.086-1.154.412-1.653.841-.155.12-.345.429-.672.361-.43-.086-.551-.498-.448-1.013.104-.515.465-1.064.741-1.441.637-.91 1.55-1.579 2.428-2.042.912-.481 1.808-.807 2.514-1.082l.775-.326 1.549-.737 2.101-1.047a119.26 119.26 0 0 0 4.15-2.18c5.527-2.968 10.659-6.418 15.687-10.279 5.062-3.792 10.228-7.396 14.894-11.549 4.753-4.101 9.23-8.563 14.068-12.733l9.729-8.649 4.856-4.256c1.653-1.441 3.392-2.883 5.355-4.067 1.705-.909 2.962-2.471 4.735-4.015 1.826-1.459 3.479-2.66 5.252-3.982 3.496-2.574 7.06-5.079 10.728-7.43 4.305-2.763 8.695-5.217 13.017-7.808 2.17-1.253 4.305-2.608 6.63-3.81 2.307-1.184 4.701-2.231 7.232-2.968 4.77-1.15 8.937-3.862 13.792-5.818 4.718-1.888 9.454-3.535 13.707-5.972 2.462-1.407 5.08-2.145 7.404-3.106 1.188-.497 2.221-.995 3.306-1.716 1.223-.755 2.514-1.321 3.771-1.802 2.549-.961 4.908-1.664 7.077-2.986 2.342-1.304 4.718-2.471 7.06-3.621 2.359-1.166 4.667-2.333 6.888-3.62 1.119-.635 2.152-1.339 3.34-2.06a79.093 79.093 0 0 1 3.496-1.956 131.489 131.489 0 0 0 13.448-7.928c3.943-2.609 7.663-5.406 11.571-8.203 3.909-2.746 7.869-5.302 11.348-8.323.861-.738 1.67-1.544 2.617-2.385.913-.807 1.842-1.579 2.755-2.334 1.843-1.51 3.651-2.986 5.286-4.565.844-.806 1.516-1.578 2.342-2.522a41.667 41.667 0 0 1 2.583-2.626c1.774-1.664 3.616-3.192 5.338-4.753a46.647 46.647 0 0 0 2.497-2.386l2.479-2.539 4.959-5.097c1.636-1.682 3.307-3.432 5.115-5.079 1.773-1.631 3.598-3.175 5.355-4.72 1.756-1.561 3.478-3.123 5.045-4.787 1.532-1.699 3.272-3.553 5.028-5.166 3.513-3.312 7.249-6.315 10.848-9.352 6.853-6.041 14.206-11.738 21.593-17.144l21.8-16.628c3.598-2.797 7.128-5.732 10.692-8.58 3.565-2.901 7.13-5.681 10.539-8.666 3.443-2.986 6.836-6.058 10.4-9.01 3.564-2.951 7.198-5.731 10.745-8.58 2.428-1.922 4.649-3.913 7.094-5.989a124.928 124.928 0 0 1 7.49-5.715 241.678 241.678 0 0 1 15.79-10.124c2.738-1.562 5.562-3.038 8.576-4.205 2.978-1.149 5.957-2.042 8.712-3.174 1.326-.549 2.79-1.287 4.322-1.854a49.075 49.075 0 0 1 4.563-1.51 61.107 61.107 0 0 1 4.65-1.115c1.601-.309 2.979-.584 4.477-.978 3.41-.841 6.922-1.905 10.693-2.317a26.337 26.337 0 0 1 2.858-.154c.947 0 1.808.051 2.617.017 1.636-.017 2.997-.361 4.099-1.184.482-.378 1.222-.721 1.773-.841a7.284 7.284 0 0 1 1.653-.223c1.033-.052 1.98.051 2.876.103 1.653.171 3.168-.017 4.873-.361 1.67-.343 3.444-.841 5.372-1.064 2.032-.24 3.737-.103 5.51-.188 2.101-.052 4.185-.172 6.234-.429 1.016-.138 2.032-.292 3.03-.515.5-.103.999-.223 1.481-.343a28.64 28.64 0 0 1 1.67-.378c2.239-.412 4.391-.549 6.389-.875a17.52 17.52 0 0 0 2.91-.687c1.085-.343 2.187-.6 3.289-.806 2.186-.412 4.339-.652 6.405-.961a43.84 43.84 0 0 0 3.048-.549c.93-.206 2.066-.549 3.168-.755 2.204-.429 4.357-.635 6.389-.961a30.282 30.282 0 0 0 2.996-.635 51.16 51.16 0 0 1 3.22-.755 50.591 50.591 0 0 1 13.172-.893c4.563.309 8.748 1.819 12.777 3.106 1.997.618 4.236 1.425 6.164 2.454a40.033 40.033 0 0 1 5.597 3.553c1.773 1.304 3.426 2.694 5.062 4.101 1.619 1.338 3.341 2.969 4.701 4.685 1.687 2.008 2.979 4.324 4.374 6.332l4.149 6.229c1.516 2.214 2.532 4.685 3.358 7.088.827 2.436 1.516 4.753 2.445 7.104 1.774 4.994 2.101 10.005 3.272 14.861 1.016 5.028 1.291 10.142 1.205 15.204-.137 6.281-.637 12.442-1.119 18.654-.551 6.195-1.222 12.355-1.274 18.516 0 6.229-.31 12.441-.172 18.602.034 3.089.361 6.109.551 9.267.172 3.123.206 6.246.224 9.369l-.035 9.645a73.294 73.294 0 0 1-.861 9.712l-.413 2.403a15.382 15.382 0 0 1-.672 2.471c-.568 1.596-1.291 3.037-1.894 4.479-.292.721-.568 1.441-.775 2.162-.189.687-.396 1.579-.637 2.334a39.273 39.273 0 0 1-1.756 4.616c-1.36 3.003-3.082 5.818-5.011 8.46a134.638 134.638 0 0 1-6.009 7.637 129.776 129.776 0 0 1-6.578 7.173c-2.273 2.317-4.753 4.376-7.129 6.572-2.049 1.837-4.046 3.69-6.13 5.509-2.118 1.802-4.322 3.466-6.56 5.062l-6.681 4.737a223.523 223.523 0 0 0-3.272 2.402l-3.358 2.385-6.698 4.754c-2.239 1.561-4.443 3.226-6.819 4.685-2.342 1.458-4.683 2.831-6.819 4.358l-6.577 4.805c-2.928 2.077-5.838 4.428-8.8 6.521-2.944 2.145-5.854 4.273-8.506 6.624-1.36 1.184-2.53 2.386-3.84 3.741l-3.891 3.861c-2.6 2.54-5.166 5.08-7.525 7.774s-4.477 5.526-6.216 8.598c-1.825 3.209-3.771 6.263-5.424 9.421-.827 1.578-1.567 3.14-2.204 4.805l-1.963 5.079c-1.274 3.381-2.462 6.761-3.34 10.194-.776 2.917-1.12 5.903-1.809 9.06-.344 1.562-.792 3.158-1.429 4.702l-.24.567c-.053.12-.104.257-.156.394a6.677 6.677 0 0 0-.224.927c-.12.652-.172 1.356-.19 2.094-.034 1.424.035 3.037 0 4.633a49.656 49.656 0 0 1-.326 4.77 38.512 38.512 0 0 1-.362 2.403l-.465 2.282c-.293 1.459-.465 2.935-.602 4.428-.517 5.989.051 12.115.034 18.396V703.974l.017.223.035.463.051.927c.035.549-.034 1.064-.137 1.579-.104.463-.259 1.132-.345 1.338-.086.138-.19.292-.172.532.017.223.19.412.448.532.086.052.413.103.447.361l.173.034Z%27/%3E%3Cpath d=%27M-415.224 678.07c-.774-.052-1.084-.706-1.256-1.514-.086-.396-.138-.826-.206-1.238-.035-.207-.069-.413-.104-.602-.034-.121-.086-.207-.154-.327a2.258 2.258 0 0 1-.31-.705c-.104-.43-.138-.946-.017-1.393a2.81 2.81 0 0 1 .774-1.376c.344-.379.963-.671 1.204-.774l5.025-2.477c5.317-2.769 10.944-4.782 15.418-8.067l14.334-10.354c4.663-3.509 9.12-7.31 13.474-11.232 4.37-3.939 8.672-7.929 12.871-12.057l12.63-12.418a272.464 272.464 0 0 1 6.487-6.089l1.67-1.497.808-.722c.138-.12.293-.31.499-.585.413-.516.809-1.324 1.945-2.081l.998-.568.895-.55c3.458-2.167 6.59-5.005 9.911-7.757 3.356-2.786 6.9-5.315 10.531-7.671 7.296-4.679 14.781-8.824 22.439-12.797 3.837-1.961 7.743-3.818 11.735-5.487a176.403 176.403 0 0 0 11.65-5.16c3.82-1.84 7.623-3.801 11.443-5.727l11.477-5.745c3.803-1.926 7.555-3.904 11.168-6.054 3.631-2.322 7.726-4.163 11.288-6.158 1.79-1.032 3.545-2.184 5.335-3.354 1.772-1.187 3.699-2.339 5.437-3.423 3.528-2.27 6.935-4.781 10.273-7.396 6.677-5.297 13.422-10.56 19.772-16.168 3.183-2.786 6.212-5.71 9.223-8.772l9.051-9.047c7.279-7.172 14.403-14.602 21.596-21.912l5.386-5.487a150.065 150.065 0 0 1 5.661-5.315c3.837-3.457 7.795-6.742 11.787-9.976l6.005-4.799c.964-.791 2.083-1.616 2.891-2.339.878-.791 1.773-1.737 2.891-2.649.551-.447 1.188-.911 1.841-1.272.534-.293 1.05-.602 1.566-.929a51.037 51.037 0 0 0 3.063-2.081c2.014-1.462 4.01-3.062 6.092-4.627 4.112-2.976 7.967-6.278 12.183-9.357 4.25-2.907 8.087-6.02 12.08-9.305 2.116-1.72 4.25-3.44 6.47-5.074 2.133-1.548 4.13-3.302 6.143-5.108 2.013-1.789 4.06-3.681 6.194-5.384l6.316-5.143 12.647-10.32c2.151-1.737 4.405-3.422 6.849-4.85l6.934-4.231c4.732-2.907 9.67-6.037 15.091-8.119 5.231-2.098 10.549-4.179 16.124-5.641 2.805-.74 5.575-1.204 8.346-1.806l4.164-.86a27.174 27.174 0 0 1 4.319-.637c1.428-.103 2.77-.189 4.044-.429.568-.104 1.394-.31 2.099-.413.74-.121 1.463-.207 2.185-.276l4.182-.378a25.628 25.628 0 0 0 1.996-.292 35.402 35.402 0 0 1 2.168-.344c2.89-.344 5.713-.275 8.466-.258 1.377 0 2.736 0 4.061-.052l4.164-.189c5.576-.189 11.117-.069 16.623-.052 5.506 0 10.996-.086 16.433-.67a67.72 67.72 0 0 1 16.795.103c2.426.309 4.818.843 7.158 1.29l7.107 1.393c2.374.482 4.732.997 7.089 1.617.551.154 1.153.241 1.859.516.722.309 1.135.584 1.703.894a58.605 58.605 0 0 1 3.149 1.909c4.096 2.701 7.812 6.02 10.824 9.959 2.994 3.973 5.007 8.566 6.453 13.21a91.372 91.372 0 0 1 1.686 5.985c.499 2.064.774 4.162.895 6.261.241 4.197-.086 8.325-.276 12.401-.12 1.961.138 3.99-.051 6.209a9.92 9.92 0 0 1-.293 1.686 6.472 6.472 0 0 1-.292.86l-.344.739a10.216 10.216 0 0 0-.826 2.666c-.344 1.875-.241 3.888-.31 5.986-.017 1.066-.155 2.133-.224 3.113-.069 1.015-.137 2.012-.172 3.027-.224 5.453.052 10.957.155 16.512.103 2.787-.138 5.607.465 7.981.068.292.172.568.275.826l.413.98c.258.688.499 1.393.688 2.098.379 1.411.602 2.821.809 4.197.189 1.307.344 2.58.568 3.818.103.62.241 1.222.396 1.824.154.636.327 1.307.464 1.96.568 2.632.826 5.298.964 7.93.138 2.631.172 5.263.206 7.86.052 2.563.155 5.263-.068 7.912-.396 5.315-1.652 10.561-3.631 15.497-1.979 4.936-4.612 9.563-7.658 13.898a86.864 86.864 0 0 1-6.642 8.204 94.827 94.827 0 0 1-3.665 3.784l-1.858 1.789c-.534.55-1.016 1.221-1.549 1.926-.534.705-1.119 1.479-1.996 2.133a5.261 5.261 0 0 1-.74.43l-.568.275c-.379.172-.723.378-1.084.568-1.428.825-2.753 1.84-4.061 2.941l-3.923 3.44c-1.343 1.169-2.788 2.219-4.182 3.251-2.202 1.616-4.405 3.182-6.453 4.884-2.082 1.772-4.302 3.458-6.556 5.04-4.525 3.148-9.12 6.02-13.611 9.099-4.525 3.027-9.034 6.054-13.542 9.064-1.101.688-1.962 1.565-3.115 2.494-1.239.946-2.323 1.531-3.459 2.322a97.31 97.31 0 0 0-6.504 4.678 68.264 68.264 0 0 0-5.799 5.092c-1.79 1.806-3.58 3.749-5.369 5.624l-5.351 5.676c-1.687 1.892-3.132 3.99-4.457 6.192a173.433 173.433 0 0 0-3.82 6.742c-1.188 2.288-2.271 4.627-3.321 7.001-2.203 4.73-3.906 9.546-5.42 14.551-.964 3.13-1.928 6.295-3.03 9.408-1.032 2.924-1.1 6.209-1.651 9.529-.138.825-.293 1.668-.534 2.494-.223.86-.498 1.599-.67 2.356-.38 1.514-.586 3.113-.74 4.73-.173 1.617-.293 3.268-.534 4.937-.275 1.702-.568 3.216-.757 4.85-.396 3.199-.55 6.433-.361 9.632.068 1.548.43 3.285.051 5.177a33.919 33.919 0 0 0-.62 4.73 33.878 33.878 0 0 0 .035 4.764l.086.929.035.241.154.946c.104.585.224 1.187.5 1.72.172.361.292.705.326 1.29.035.619-.103 1.342-.447 1.823-.55.929-1.72 1.307-2.633.998-.292-.069-.74-.207-.705-.516.017-.447.378-.619.585-.774.224-.138.43-.275.482-.465.051-.206-.035-.43-.12-.55-.052-.086-.087-.069-.139-.189-.051-.121-.12-.258-.189-.482-.31-.911-.55-1.875-.654-2.855l-.086-.963-.12-1.755a37.926 37.926 0 0 1-.034-2.425c.017-1.617.172-3.233.412-4.833.104-.774.276-1.634.413-2.339.104-.533.104-1.187.07-1.875-.104-1.41-.242-3.13-.242-4.696-.017-3.182.258-6.346.757-9.459l.396-2.322c.138-.706.241-1.445.327-2.185l.5-4.592c.189-1.565.447-3.182.911-4.782.258-.86.465-1.427.637-2.15.172-.688.31-1.41.43-2.133.482-2.906.602-6.106 1.686-9.322 1.05-2.924 1.962-5.779 2.891-8.737 1.257-4.008 2.547-8.067 4.233-12.006 1.687-3.87 3.373-7.74 5.37-11.541 2.064-3.715 4.043-7.448 6.71-10.939 1.36-1.772 2.856-3.234 4.267-4.782l4.32-4.609c1.669-1.772 3.355-3.647 5.214-5.332a76.24 76.24 0 0 1 5.73-4.816 113.797 113.797 0 0 1 6.091-4.283l1.566-1.015a13.25 13.25 0 0 0 1.342-.98l1.411-1.187a13.704 13.704 0 0 1 1.583-1.153c8.174-5.383 16.348-10.904 24.538-16.219 2.1-1.41 4.182-2.855 6.161-4.386 1.961-1.496 3.906-3.268 6.005-4.782 2.065-1.548 4.147-3.01 6.109-4.558 1.927-1.53 3.751-3.302 5.782-4.988a29.983 29.983 0 0 1 3.235-2.356c.585-.361 1.17-.688 1.789-.998.74-.361.947-.43 1.325-.774.723-.653 1.411-1.737 2.289-2.803.981-1.17 1.91-1.892 2.787-2.821 3.58-3.543 6.883-7.344 9.757-11.438 5.197-7.379 9.068-15.755 10.307-24.63.327-2.219.482-4.438.499-6.674l-.137-6.862c-.103-4.576-.258-9.116-1.256-13.416-.241-1.015-.585-2.254-.792-3.44-.224-1.187-.379-2.357-.533-3.475-.31-2.253-.689-4.386-1.515-6.295-.172-.378-.533-1.221-.671-1.84a16.378 16.378 0 0 1-.361-1.927c-.138-1.255-.155-2.459-.172-3.629 0-2.287-.069-4.575-.121-6.88-.12-4.609-.258-9.253 0-13.949.052-1.17.155-2.356.258-3.526.104-1.049.104-2.133.121-3.302 0-2.305.086-4.937 1.153-7.431.12-.292.275-.584.413-.877.086-.206.155-.344.224-.533a6.67 6.67 0 0 0 .275-1.273c.103-.946.086-1.995.069-3.096-.035-1.083-.052-2.322.017-3.457l.172-3.337c.241-4.403.361-8.755-.413-12.883-.396-1.995-1.032-4.213-1.635-6.26a55.543 55.543 0 0 0-2.185-6.089c-1.669-3.973-3.958-7.482-6.969-10.544-2.96-3.078-6.401-5.676-10.153-7.791l-1.359-.757c-.293-.138-.654-.241-1.239-.378l-3.218-.792c-2.134-.498-4.302-.928-6.47-1.358l-6.556-1.256c-2.203-.447-4.267-.808-6.453-1.049a62.855 62.855 0 0 0-12.974-.086c-5.971.739-12.166.997-18.189 1.015-6.057.034-12.062-.052-18.016.223-1.48.069-2.96.189-4.543.224-1.548.034-3.063.017-4.56.017-1.497 0-2.96 0-4.405.103-.723.052-1.428.121-2.134.207-.722.086-1.325.223-2.168.378-3.166.533-6.212.499-8.896 1.084-1.463.378-3.218.567-4.68.67-1.55.121-2.823.207-4.303.568l-10.118 2.116c-3.303.722-6.556 1.72-9.79 2.855-3.218 1.135-6.454 2.425-9.62 3.715-3.097 1.273-6.091 2.907-9.016 4.678l-10.652 6.519c-3.527 1.978-6.66 4.472-9.843 7.138-6.418 5.246-12.991 10.44-19.29 15.721-3.097 2.7-6.125 5.607-9.584 8.153-3.304 2.425-6.453 5.074-9.688 7.705a187.787 187.787 0 0 1-4.939 3.887l-5.041 3.647c-3.287 2.459-6.47 5.125-9.826 7.636-3.923 2.838-7.623 6.106-12.062 8.618-1.98.963-3.39 2.838-5.489 4.489l-5.765 4.523c-7.657 6.055-15.177 12.212-21.957 19.23-8.5 8.583-16.881 17.269-25.536 25.765-4.319 4.266-8.569 8.549-12.923 12.797-4.422 4.18-9.068 8.101-13.783 11.92-4.904 3.904-9.722 7.86-14.764 11.627-2.53 1.874-5.111 3.68-7.812 5.332-2.685 1.599-5.197 3.371-7.899 5.039-2.701 1.703-5.575 3.045-8.294 4.507-2.719 1.41-5.317 3.164-8.105 4.678-5.489 3.079-11.133 5.814-16.691 8.634-4.732 2.391-9.43 4.868-14.231 7.207a183.817 183.817 0 0 1-7.261 3.371c-2.478 1.067-4.904 2.03-7.296 3.131-9.568 4.386-18.825 9.597-27.825 15.084-2.977 1.858-5.902 3.801-8.707 5.865-2.839 2.047-5.437 4.317-8.191 6.622-1.376 1.135-2.787 2.27-4.267 3.337a40.462 40.462 0 0 1-2.272 1.531c-.395.24-.774.481-1.187.705l-.602.344s-.138.086-.224.172c-.396.361-.809 1.187-1.686 2.064l-2.013 1.806-3.889 3.577c-5.128 4.834-10.101 9.856-15.16 14.827-5.059 4.988-10.273 9.821-15.573 14.551-4.526 4.007-9.223 7.946-14.145 11.455l-7.313 5.315-3.648 2.666c-1.222.911-2.564 1.857-3.906 2.631-2.702 1.6-5.489 2.856-8.191 4.146-2.684 1.272-5.317 2.648-8.019 3.956l-.378.189-.103.051-.19.121-.395.223c-.207.138-.637.362-.603.379.035.051 0 0-.069 0h-.068c-.018-.035-.035.051-.052.189l-.069.877c0 .155-.051.447-.069.533l-.068.361-.173.723-.378 1.445c-.052.206-.155.602-.396.584l-.069-.154Z%27/%3E%3Cpath d=%27M-372.338 710.186c-.068.378-.155.67-.465.893-.051.017-.103.052-.206.052-.069 0-.156 0-.293-.138-.035-.034-.069-.086-.087-.103l-.034-.034c-.069-.052-.138-.103-.207-.172a2.987 2.987 0 0 1-.396-.412c-.517-.618-.982-1.409-1.464-1.872a3.785 3.785 0 0 1-.948-1.358 15.85 15.85 0 0 1-.62-1.872c-.069-.326-.155-.653-.207-.996l-.086-.516-.035-.412c-.017-.206-.017-.412-.034-.618 0-.413 0-.825.069-1.254.052-.447.138-.791.189-1.117l.224-1.031c.31-1.374.672-2.765 1.172-4.139a18.99 18.99 0 0 1 .879-2.045c.172-.343.344-.67.551-.996l.551-.859 4.462-6.888c1.482-2.285 2.947-4.638 4.652-6.837 1.672-2.216 3.412-4.329 5.152-6.425 6.788-8.228 13.215-17.384 20.089-25.664 3.377-4.26 6.771-8.572 10.458-12.66 3.67-3.968 7.081-8.228 11.199-12.059 1.481-1.409 3.118-2.663 4.583-3.882l4.462-3.831c2.963-2.594 5.978-5.222 9.217-7.627 6.565-4.621 13.026-9.018 19.779-13.279a317.298 317.298 0 0 1 5.1-3.092c1.706-1.048 3.618-1.975 5.393-2.8 1.792-.841 3.515-1.666 5.1-2.628.809-.481 1.464-.962 2.343-1.615a58.872 58.872 0 0 1 2.567-1.683c3.48-2.13 7.116-3.797 10.527-5.635 3.411-1.82 6.719-3.899 10.096-5.978 1.688-1.03 3.377-2.078 5.117-3.074l5.152-2.903c3.376-1.959 6.684-4.054 10.01-6.185 6.684-4.277 13.369-8.297 19.52-13.106l9.493-7.043c3.153-2.388 6.323-4.793 9.304-7.232 1.482-1.237 2.894-2.508 4.204-3.865a62.652 62.652 0 0 1 4.324-4.226c2.998-2.68 6.03-5.102 8.598-7.868.723-.79 1.585-1.786 2.429-2.645l2.533-2.543c1.688-1.683 3.152-3.229 4.565-5.119 3.05-3.899 6.633-7.129 9.924-10.41 1.637-1.649 3.239-3.315 4.669-5.067.672-.842 1.465-1.89 2.292-2.8.809-.928 1.671-1.804 2.515-2.646 1.706-1.7 3.342-3.298 4.962-4.998 1.62-1.701 3.239-3.419 4.962-5.119a88.625 88.625 0 0 1 2.636-2.491l2.722-2.354 5.341-4.638 5.341-4.638c1.809-1.546 3.687-3.023 5.565-4.483l5.565-4.346c1.81-1.443 3.635-3.006 5.548-4.432 3.79-2.903 7.684-5.617 11.492-8.366l11.991-8.95 6.013-4.5 5.858-4.656c1.964-1.546 3.876-3.109 5.892-4.741 2.016-1.58 4.066-3.04 6.082-4.518 4.049-2.868 7.667-6.166 11.647-9.379a60.228 60.228 0 0 1 6.53-4.569l6.633-4.123 6.633-4.123c2.205-1.374 4.41-2.782 6.805-3.985 4.721-2.439 9.649-4.346 14.628-6.012 2.48-.825 4.945-1.649 7.512-2.371a58.37 58.37 0 0 1 3.893-.945c1.327-.274 2.723-.395 3.86-.618 2.377-.447 4.824-1.271 7.529-1.649a20.04 20.04 0 0 1 2.067-.172h1.051l.948.034c1.258.069 2.515.086 3.79.121 5.066.086 10.165-.069 15.3-.017 5.134.051 10.303.274 15.42 1.15 2.584.413 5.065 1.066 7.529 1.598 2.48.533 4.962.996 7.443 1.271 2.136.292 4.376.155 6.77.808a6.892 6.892 0 0 1 1.758.79c.551.378.862.618 1.344.893.896.515 1.86.945 2.86 1.271 1.016.344 2.016.584 3.136.825 1.137.257 2.239.618 3.308 1.065 2.153.876 4.134 2.078 5.978 3.401a60.38 60.38 0 0 1 5.203 4.329 30.01 30.01 0 0 1 4.497 5.188c2.602 3.779 4.342 8.056 5.496 12.419.5 1.856.879 3.745 1.206 5.635.155.945.31 1.889.431 2.834.155.928.206 2.01.206 2.955 0 1.907-.137 3.813.362 5.308.052.189.138.343.224.532l.328.705c.189.481.361.962.499 1.46.276.996.414 1.992.483 2.972.155 1.975.051 3.865.241 5.634.224 1.769.586 3.676.913 5.514a113.402 113.402 0 0 0 2.584 10.943c1.379 4.895 2.791 9.757 4.652 14.429.448 1.151.982 2.336 1.413 3.573.448 1.22.844 2.439 1.24 3.642.397 1.202.793 2.405 1.224 3.573.413 1.134.965 2.336 1.378 3.607.793 2.354 1.327 4.759 1.74 7.146.396 2.388.844 4.742 1.034 7.25.189 2.473.121 4.964-.259 7.421-.344 2.473-1.102 4.861-1.809 7.146-1.43 4.603-3.17 9.259-5.926 13.416-2.809 4.019-5.772 7.816-9.046 11.44-2.188 2.405-4.496 4.69-6.977 6.803-2.481 2.147-5.1 4.002-7.633 5.961-5.117 3.882-10.165 7.764-15.368 11.629-8.236 5.909-16.988 10.891-25.034 16.817a256.56 256.56 0 0 0-11.853 9.156 529.617 529.617 0 0 0-5.738 4.776c-1.878 1.632-3.824 3.212-5.53 4.896-3.325 3.315-6.1 7.249-8.735 11.182-2.464 3.951-4.342 8.452-6.513 12.712-2.05 4.312-3.91 8.692-5.41 13.21-.792 2.25-1.326 4.535-2.067 6.854l-2.206 6.923c-.999 2.851-1.654 5.686-2.257 8.658-.31 1.477-.603 2.971-.982 4.466-.413 1.546-.775 2.817-.878 4.312-.155 1.46-.207 2.989-.448 4.552-.12.79-.293 1.58-.569 2.388-.31.824-.551 1.374-.775 2.095-.879 2.749-1.12 5.721-1.55 8.761-.207 1.529-.57 3.075-.845 4.501-.276 1.46-.5 2.937-.672 4.415-.344 2.954-.5 5.943-.534 8.932-.017 1.495 0 2.989.017 4.501v.893l.035.241.034.996c.017.618.052 1.254.207 1.838.224.842.103 1.597-.19 2.388-.258.687-.413 1.425-.637 2.13-.069.223-.12.618-.448.653-.879.12-.982-1.254-1.172-1.976a22.196 22.196 0 0 1-.534-2.628c-.12-.911-.19-1.838-.172-2.766v-4.655c0-1.443.052-2.869.103-4.312.121-2.886.38-5.772.827-8.64.224-1.443.5-2.869.827-4.295.293-1.288.5-2.645.69-4.037.378-2.783.758-5.754 1.843-8.657l.413-1.031a9.31 9.31 0 0 0 .276-.825c.155-.584.276-1.202.362-1.872.172-1.306.241-2.731.413-4.209a18.71 18.71 0 0 1 .397-2.284l.551-2.062c.345-1.34.638-2.697.93-4.088.586-2.766 1.207-5.652 2.189-8.4l1.774-5.446c.603-1.803 1.189-3.624 1.689-5.548 1.102-3.779 2.446-7.473 3.945-11.08 1.482-3.607 3.24-7.163 4.893-10.599 1.637-3.453 3.36-7.146 5.703-10.358 2.567-3.745 5.34-7.49 8.787-10.685a291.735 291.735 0 0 1 10.406-8.83c7.047-5.72 14.403-11.097 22.053-15.975 3.963-2.56 7.943-5.05 11.802-7.696 3.86-2.611 7.512-5.514 11.285-8.366l11.233-8.571c3.687-2.783 7.064-5.944 10.165-9.38 2.809-3.109 5.376-6.424 7.84-9.843 2.412-3.298 4.1-7.043 5.444-10.976.672-1.959 1.275-3.986 1.878-6.013a28.873 28.873 0 0 0 1.051-5.943 32.48 32.48 0 0 0-.155-6.064c-.241-1.976-.638-4.14-.999-6.167-.379-2.044-.845-4.054-1.482-5.961-.327-.996-.672-1.821-1.103-2.886a55.884 55.884 0 0 1-1.12-3.075c-.689-2.044-1.309-4.037-2.067-5.943-.758-1.873-1.62-3.986-2.309-5.996-1.43-4.071-2.601-8.193-3.739-12.282-1.171-4.157-2.05-8.383-2.791-12.609-.172-1.047-.344-1.975-.499-3.126-.138-1.116-.155-2.199-.173-3.229-.034-2.062-.068-3.934-.603-5.583a10.027 10.027 0 0 0-.482-1.203c-.241-.515-.517-1.237-.637-1.821-.259-1.236-.276-2.37-.276-3.435s.034-2.044 0-2.972c-.035-.859-.224-1.89-.345-2.886-1.171-7.867-3.618-15.718-8.924-21.421-.638-.739-1.344-1.374-2.051-2.044a78.586 78.586 0 0 0-2.274-1.976c-1.533-1.271-3.101-2.439-4.772-3.418a21.454 21.454 0 0 0-5.221-2.233c-.844-.224-1.964-.43-3.015-.739a22.559 22.559 0 0 1-3.153-1.168 14.249 14.249 0 0 1-1.516-.825c-.465-.274-1.068-.738-1.24-.824-.569-.326-1.396-.55-2.309-.67-1.792-.241-4.031-.258-6.116-.567-4.187-.515-8.287-1.563-12.198-2.37-10.665-2.096-21.778-1.031-33.011-1.203-1.379 0-2.86-.086-4.187-.12-1.206-.035-2.464.137-3.739.412-1.292.275-2.618.653-3.997.979-.689.172-1.395.327-2.136.464-.74.137-1.499.223-2.12.326-2.6.396-5.22 1.151-7.821 1.976-2.619.842-5.272 1.718-7.84 2.663-5.96 2.181-11.612 4.723-16.953 8.228l-16.212 10.1c-3.067 2.062-5.927 4.535-8.873 7.009-2.93 2.508-6.117 4.844-9.2 7.06-3.136 2.199-5.91 4.604-8.977 7.009-3.032 2.371-6.013 4.827-9.114 7.077-6.168 4.535-12.267 9.242-18.504 13.726-3.118 2.233-6.202 4.449-9.183 6.785-2.912 2.336-5.961 4.861-8.993 7.163-1.775 1.392-3.55 2.766-5.273 4.174-1.722 1.409-3.411 2.938-5.134 4.381l-10.199 8.795c-3.274 2.972-6.272 6.339-9.511 9.534-1.619 1.597-3.239 3.126-4.703 4.758-1.43 1.598-2.791 3.504-4.376 5.171-3.843 4.157-8.115 7.764-11.647 11.938-.448.516-.862 1.048-1.292 1.598a40.11 40.11 0 0 1-1.362 1.666 54.963 54.963 0 0 1-2.928 3.075c-1 .979-1.999 1.958-2.947 2.938-.947.962-1.826 2.044-2.86 3.074-4.031 4.055-8.58 7.25-12.284 11.355-3.997 4.089-8.632 7.301-13.008 10.719-18.021 14.464-38.455 25.922-58.079 37.809-4.29 2.508-8.804 4.484-12.87 7.009a38.107 38.107 0 0 0-2.946 2.01c-1.017.773-2.136 1.46-3.239 2.061-2.223 1.22-4.48 2.182-6.599 3.298-8.39 4.707-16.436 10.376-24.5 15.89-5.289 3.607-10.01 8.056-15.023 12.317l-3.773 3.126c-1.206 1.014-2.361 2.113-3.498 3.247-2.257 2.267-4.376 4.724-6.547 7.163-4.462 4.81-8.528 9.74-12.56 14.91l-6.116 7.679-5.91 7.73-5.065 6.648c-1.74 2.216-3.532 4.346-5.272 6.493-1.74 2.148-3.429 4.295-4.962 6.545l-4.48 6.94-2.222 3.47c-.362.567-.776 1.185-1.086 1.718a16.679 16.679 0 0 0-.792 1.683c-.465 1.168-.827 2.44-1.12 3.728l-.414 1.976a5.502 5.502 0 0 0-.068 1.597c.034.395.034.241.034.309v.086l.069.189c.034.12.052.241.103.361.069.24.155.481.259.721.344.842.431 1.752.689 2.697l.362 1.443.172.739.086.378.052.189v.086l.034.017c.155-.086-1.412.738-.741.395 0 0 .035-.034.052-.103.017-.086.052-.258.052-.498v-.189h.017c.052.017.121.034.172.068.138.052.293.138.276.258l.034.086ZM148.098 709.602c0 .773-.808 1.082-1.961 1.271-.568.086-1.187.155-1.824.206l-.481.052c-.052-.069 0-.241-.017-.344 0-.24 0-.481-.035-.687-.086-.636-.034-1.632.138-2.594l1.29-6.958c1.118-5.325 2.477-10.857 5.161-15.907 2.477-4.776 4.8-9.81 7.793-14.5 2.822-4.569 5.402-9.397 8.43-14.052 3.114-4.57 6.193-9.036 9.617-13.4 1.668-2.182 3.63-4.295 5.264-6.27 1.669-2.062 3.217-4.261 4.783-6.477 3.096-4.501 6.485-8.899 9.943-13.125 5.023-6.15 10.271-12.077 15.38-18.072l3.819-4.518a111.006 111.006 0 0 1 3.991-4.501l8.138-8.607c1.324-1.443 2.632-2.886 3.87-4.381 1.187-1.46 2.512-3.109 3.854-4.587 2.684-2.989 5.522-5.789 8.292-8.572 1.376-1.391 2.753-2.8 4.077-4.226l3.974-4.381c2.701-2.92 5.471-5.738 8.069-8.641l1.909-2.199c.637-.738 1.187-1.46 1.927-2.302 1.411-1.58 2.907-2.869 4.026-4.243l6.778-9.586c2.271-3.298 4.679-6.339 6.847-9.603a99.367 99.367 0 0 0 3.148-4.913l2.942-5.137 5.883-10.273c1.996-3.35 3.854-6.803 5.677-10.29 3.562-7.01 7.553-13.898 11.406-20.822l3.51-6.236c1.325-2.181 2.907-4.071 4.335-5.892a45.855 45.855 0 0 0 2.013-2.732c.568-.858 1.239-2.009 1.91-3.006 1.359-2.044 2.855-3.951 4.369-5.806l4.576-5.446 2.202-2.715 1.067-1.374c.379-.481.757-.979 1.17-1.443 3.182-3.779 6.795-6.889 9.961-10.239a52.677 52.677 0 0 0 2.271-2.559 42.014 42.014 0 0 1 2.511-2.749c1.755-1.735 3.613-3.281 5.454-4.793a469.844 469.844 0 0 0 5.453-4.484 109.174 109.174 0 0 1 5.677-4.415 131.18 131.18 0 0 1 12.06-7.782 148.663 148.663 0 0 1 6.314-3.401l3.217-1.598a55.927 55.927 0 0 1 3.354-1.46c2.375-.945 4.731-1.753 6.951-2.732 2.202-1.013 4.662-2.113 7.036-2.937 4.834-1.718 9.668-3.076 14.657-4.244 2.46-.567 4.92-1.082 7.312-1.683a59.654 59.654 0 0 0 3.544-.98 52.672 52.672 0 0 1 3.75-1.03c2.512-.584 5.006-.997 7.432-1.495 2.443-.464 4.679-1.134 7.156-1.872 2.529-.722 5.144-1.426 7.914-1.701l1.978-.155c.62-.051 1.256-.12 1.876-.189a56.087 56.087 0 0 0 3.75-.601 71.291 71.291 0 0 0 3.733-.825l1.858-.481a16.645 16.645 0 0 1 2.116-.429c1.428-.189 2.787-.172 4.06-.206 1.273 0 2.409-.12 3.664-.327 2.461-.395 5.007-1.082 7.69-1.46 1.342-.189 2.736-.309 4.146-.275 1.428 0 2.925.344 3.372.121 2.718-.911 5.591-1.066 8.292-.859 2.719.206 5.299.721 7.828 1.099 1.187.172 2.598.326 3.905.67 1.308.326 2.564.739 3.802 1.22a90.735 90.735 0 0 1 7.14 3.144c4.731 2.387 8.825 5.669 12.73 8.95 3.991 3.264 7.638 7.009 10.976 10.909 1.686 1.941 3.286 3.968 4.869 5.944l4.903 5.858c2.873 3.384 5.763 6.82 8.464 10.376 2.649 3.487 5.711 6.7 8.67 10.067 2.89 3.401 5.953 6.614 8.671 10.273 2.563 3.659 5.316 7.061 8.189 10.462 2.425 2.886 4.92 5.807 7.294 8.727 2.408 2.869 5.058 5.566 7.621 8.401 5.058 5.72 9.771 11.613 15.053 16.973 3.63 3.573 7.157 7.301 10.976 10.531 1.978 1.632 3.871 3.401 5.815 4.93 1.875 1.529 4.163 2.714 6.33 4.089l6.176 3.762c1.996 1.288 4.026 2.491 6.159 3.556 4.215 2.165 8.688 3.9 13.213 5.377 2.253.722 4.576 1.306 6.915 1.959 1.17.326 2.34.67 3.51 1.047 1.135.378 2.253.705 3.389.997 4.576 1.117 9.376 1.786 14.09 2.147 3.148.189 6.296.103 9.358-.446 2.994-.584 6.125-1.615 9.221-2.405l4.662-1.289c1.583-.429 3.028-.807 4.473-1.409 2.873-1.151 5.609-2.748 8.31-4.432 2.116-1.34 4.3-2.645 6.382-3.985 2.082-1.358 4.129-2.801 6.193-4.261 4.095-2.903 8.275-5.858 12.782-8.297 4.473-2.405 9.067-4.587 13.78-6.425 4.731-1.907 9.772-3.127 14.813-3.66 9.702-.876 19.663-.721 29.022 2.44 2.34.825 4.524 1.89 6.692 2.903a66.735 66.735 0 0 0 3.251 1.46c1.101.447 2.271.945 3.355 1.529 4.387 2.302 8.12 5.515 11.853 8.521 1.153.928 2.409 1.856 3.561 2.904a64.335 64.335 0 0 1 3.321 3.195c2.133 2.199 4.197 4.329 6.382 6.425l12.937 12.833c2.151 2.164 4.215 4.398 6.314 6.562 2.064 2.199 4.335 4.175 6.572 6.219l3.354 3.058.671.601.189.155.757.635c.482.413.912.756 1.532 1.134.842.533 1.359 1.426 1.462 2.44.086.876.086 1.769-.172 2.525-.069.24-.189.653-.499.636-.86-.052-.843-1.237-1.204-1.718-.379-.602-.861-1.031-1.394-1.478-.499-.395-1.359-1.013-2.013-1.666l-.671-.653-5.866-5.411c-4.301-3.797-7.982-8.298-11.939-12.198l-11.991-12.094c-4.215-4.02-7.724-8.417-12.163-11.733-3.045-2.457-5.952-4.982-9.083-7.026-1.566-1.031-3.183-1.942-4.869-2.663a103.697 103.697 0 0 1-5.367-2.371c-1.755-.824-3.475-1.615-5.23-2.25-1.721-.636-3.561-1.117-5.402-1.529-3.682-.808-7.466-1.203-11.268-1.306-4.422-.086-8.946.052-13.299.653-4.386.618-8.653 1.718-12.782 3.384a120.276 120.276 0 0 0-12.214 5.566c-3.991 2.027-7.69 4.467-11.389 7.044-3.836 2.68-7.707 5.497-11.784 7.937-3.974 2.456-7.965 5.188-12.593 6.94-2.357.876-4.645 1.374-6.899 2.027l-6.795 1.873c-1.118.292-2.305.652-3.51.91a37.197 37.197 0 0 1-3.647.584c-2.443.258-4.886.275-7.294.12a92.725 92.725 0 0 1-12.868-1.769c-2.099-.43-4.318-1.117-6.262-1.735-1.996-.601-4.043-1.117-6.125-1.684-8.326-2.319-16.463-5.6-23.775-10.359l-5.453-3.298-2.736-1.649c-.894-.55-1.823-1.065-2.77-1.753-1.84-1.305-3.457-2.765-5.057-4.157-1.549-1.357-3.286-2.731-4.852-4.226-3.182-2.989-6.09-5.978-9.152-9.036-3.011-3.11-5.815-6.339-8.602-9.586-2.683-3.144-5.264-6.253-8.068-9.225-1.394-1.512-2.804-3.007-4.181-4.587-.688-.791-1.376-1.581-2.03-2.405l-1.944-2.371c-2.614-3.144-5.298-6.253-7.896-9.483a108.531 108.531 0 0 1-3.785-4.965 72.418 72.418 0 0 0-3.664-4.793l-4.008-4.638a270.09 270.09 0 0 0-4.043-4.604c-1.377-1.529-2.753-3.058-4.112-4.656-1.359-1.563-2.666-3.298-3.871-4.879-2.494-3.195-5.161-6.304-7.827-9.431-2.684-3.092-5.316-6.373-7.897-9.483-3.561-4.209-7.311-8.16-11.56-11.596-4.25-3.539-8.533-6.923-13.385-9.173-2.477-1.134-5.023-2.268-7.535-3.093-1.256-.412-2.529-.756-3.767-.927a199.12 199.12 0 0 1-4.164-.602c-2.735-.429-5.401-.841-7.965-.721-1.273.051-2.529.24-3.716.584l-1.066.326c-.568.138-1.067.138-1.497.121l-2.099-.172c-2.89-.155-5.901.55-9.083 1.22-1.6.326-3.217.652-4.955.79-1.737.137-3.337.068-4.8.189-.722.068-1.428.172-2.081.343l-2.357.619a75.201 75.201 0 0 1-4.8 1.031 51.189 51.189 0 0 1-4.92.652c-.86.069-1.6.103-2.34.189-.739.086-1.496.206-2.253.361-3.596.67-7.191 2.113-11.114 2.921-3.836.824-7.604 1.322-11.13 2.387-3.716 1.169-7.57 1.959-11.286 2.783-3.699.825-7.38 1.821-10.993 2.938a77.566 77.566 0 0 0-10.563 4.089c-3.63 1.58-7.277 2.697-10.597 4.329-6.847 3.315-13.436 7.112-19.612 11.51-3.682 2.56-7.019 5.429-10.58 8.315-3.544 2.834-6.95 5.566-9.755 9.019-3.027 3.504-6.468 6.476-9.548 9.672-1.582 1.614-2.907 3.246-4.318 5.067-1.428 1.787-2.89 3.505-4.352 5.24-1.806 2.13-3.596 4.243-5.247 6.442a56.61 56.61 0 0 0-2.34 3.385c-.688 1.133-1.531 2.439-2.374 3.538-1.72 2.268-3.561 4.347-4.972 6.632l-4.111 7.249c-2.719 4.862-5.54 9.672-8.155 14.602-2.598 4.948-5.178 9.913-8.017 14.757l-8.619 15.032c-2.89 5.051-6.348 9.758-9.754 14.413l-4.955 7.044-2.511 3.59c-.929 1.254-1.996 2.302-3.011 3.316a29.223 29.223 0 0 0-2.804 3.161 105.573 105.573 0 0 1-2.856 3.315c-1.944 2.165-3.939 4.261-5.918 6.357-1.686 1.786-3.286 3.573-4.937 5.428-1.652 1.856-3.372 3.625-5.092 5.377-3.441 3.505-6.899 6.941-9.961 10.651-6.073 7.851-13.505 14.379-19.543 21.973-8.413 10.049-17.273 19.67-24.876 30.166-1.893 2.629-3.734 5.343-5.746 7.989a61.541 61.541 0 0 1-3.166 3.882 106.203 106.203 0 0 0-3.114 3.694c-2.013 2.525-3.922 5.136-5.797 7.799-1.875 2.68-3.768 5.308-5.437 8.057-2.838 4.655-5.591 9.655-8.481 14.327-1.359 2.354-2.615 4.81-3.853 7.301-1.187 2.491-2.615 5.017-3.63 7.388-1.996 4.947-3.166 10.341-4.095 15.804l-.069.378v.121l-.034.223-.052.447-.086.893a4.021 4.021 0 0 1-.137.773l-.103.361s-.035.137-.052.154h-.035s-.189.069-.309.224c-.017.051-.207.223-.121.257.052.052.104.103.19.172.154.12.361.241.653.361.121.051.396.154.379.395l-.052.086Z%27/%3E%3Cpath d=%27M170.202 711.114c-.12 1.55-2.563 1.24-3.767 1.756-.465.207-1.015.345-1.514.345h-3.131l-.826.017h-.413l.069-.413.912-5.924c.361-2.617 1.032-5.441 1.995-7.956l2.804-7.421c1.927-5.011 4.284-9.799 6.762-14.482 2.443-4.702 5.126-9.213 7.741-13.794l7.88-13.707c5.316-9.092 10.752-18.184 16.929-26.794l13.608-18.46c4.542-6.268 9.944-11.796 14.916-17.479 5.23-5.596 10.391-11.21 15.672-16.772 5.282-5.545 10.701-10.917 16.052-16.342 5.333-5.424 10.597-10.9 15.552-16.617l14.692-17.478c2.443-2.928 4.938-5.821 7.278-8.783 2.356-2.962 4.662-6.01 7.088-9.006a113.034 113.034 0 0 1 3.75-4.425 85.095 85.095 0 0 0 3.596-4.305c2.322-2.945 4.524-6.027 6.778-9.11a179.113 179.113 0 0 1 4.198-5.527c1.497-1.843 2.907-3.496 4.266-5.304 2.719-3.565 5.265-7.336 7.845-11.107 2.564-3.771 5.282-7.577 8.172-11.141 2.891-3.582 5.609-7.061 8.327-10.78 2.735-3.668 5.608-7.353 8.877-10.694 3.149-3.237 6.245-6.647 9.652-9.815 1.703-1.585 3.509-3.117 5.402-4.495 1.84-1.36 3.733-2.721 5.677-3.978 1.944-1.257 4.008-2.479 6.125-3.444l6.262-2.875 6.056-2.79a106.423 106.423 0 0 1 6.262-2.428c4.215-1.498 8.567-2.704 12.8-3.84 2.15-.586 4.352-1.154 6.675-1.464 1.221-.155 2.219-.207 3.268-.379 1.05-.155 2.099-.361 3.166-.568 2.133-.43 4.301-.947 6.572-1.309a32.479 32.479 0 0 1 3.441-.396c.602-.051 1.118-.051 1.823-.051l.774.068s.086 0 .121-.017c.774-.396 1.927-.757 2.89-.844.998-.12 1.961-.103 2.873 0 1.342.104 2.684.431 3.441.328.929-.069 1.978-.5 3.252-.93.636-.207 1.359-.413 2.133-.517.395-.051.791-.069 1.204-.051l.981.051c1.221.086 2.46.138 3.699.19 4.954.172 10.029.103 15.139.568 5.11.551 10.03 1.36 15.019 2.307a139.86 139.86 0 0 1 7.415 1.636c2.529.551 5.058 1.619 7.312 2.807 18.098 8.007 33.788 21.25 47.655 35.026 2.89 3.117 6.004 6.044 9.083 9.057l4.577 4.529c1.548 1.499 3.096 3.014 4.541 4.684a32.016 32.016 0 0 1 2.03 2.6 37.42 37.42 0 0 0 1.944 2.48c1.36 1.619 2.822 3.169 4.301 4.736 2.994 3.116 5.798 6.423 8.671 9.608l7.295 8.214c2.322 2.773 4.851 5.39 7.415 7.973 2.563 2.583 5.195 5.149 7.724 7.818l3.733 3.995a49.225 49.225 0 0 0 3.975 3.616c3.733 3.066 7.845 5.855 11.784 8.765 3.957 2.825 8.138 5.356 12.421 7.732 15.708 9.799 34.873 13.105 52.18 16.859 3.131.413 6.107.826 9.135.809 3.011 0 5.987-.379 8.792-1.36 3.114-1.12 6.296-1.275 9.152-2.032 2.873-.81 5.798-1.877 8.602-3.031a80.521 80.521 0 0 0 12.697-6.681c4.008-2.566 7.793-5.7 12.008-8.283 2.099-1.343 4.249-2.428 6.383-3.599l6.399-3.461c4.25-2.342 8.723-4.633 13.66-5.563a23.374 23.374 0 0 1 3.63-.413l3.493-.12c2.322-.086 4.662-.19 7.002-.19 4.679 0 9.531.517 13.987 2.291a127.009 127.009 0 0 1 12.696 5.958c4.181 2.169 7.983 5.062 11.63 7.938l6.95 5.356c2.306 1.842 4.542 3.736 6.762 5.648 2.219 1.911 4.421 3.823 6.658 5.682 2.219 1.86 4.576 3.599 6.847 5.476 4.542 3.72 8.946 7.612 13.367 11.4 1.084.913 2.271 1.774 3.424 2.824l.86.827c.241.258.499.516.74.809.43.534.86 1.119 1.29 1.705.637.809.74 1.842.499 2.772-.224.81-.43 1.619-.826 2.29-.12.207-.275.603-.585.552-.86-.138-.654-1.395-.826-2.015a8.64 8.64 0 0 0-.808-1.981c-.361-.602-.792-1.153-1.273-1.756a8.129 8.129 0 0 0-.516-.603l-.293-.292c-.241-.207-.447-.431-.705-.638a70.37 70.37 0 0 0-1.531-1.274 56.03 56.03 0 0 1-1.635-1.36l-1.548-1.361c-4.129-3.616-8.206-7.266-12.421-10.71-2.082-1.705-4.301-3.41-6.4-5.218l-6.228-5.407a221.32 221.32 0 0 0-6.228-5.287c-2.082-1.687-4.318-3.323-6.469-5.063-2.924-2.324-5.814-4.632-8.894-6.526-3.097-1.86-6.451-3.547-9.789-5.097a111.043 111.043 0 0 0-5.092-2.204 27.522 27.522 0 0 0-5.093-1.516c-3.492-.706-7.139-.792-10.838-.688l-6.538.258c-1.135.034-2.116.069-3.148.189-1.015.138-2.03.327-3.028.569-4.026 1.016-7.845 2.979-11.647 5.062-3.819 2.067-7.725 4.081-11.492 6.199-3.699 2.187-7.123 4.77-10.753 7.319-7.638 5.218-15.982 9.264-24.997 11.761-2.323.551-4.594.792-6.658 1.326-.516.121-1.015.293-1.514.465-.568.19-1.135.396-1.72.534-1.153.327-2.34.568-3.51.723-4.731.672-9.514.086-13.918-.516-3.922-.414-8.361-.379-12.524-2.291l-.757-.378c-.293-.138-.345-.173-.551-.259a7.35 7.35 0 0 0-1.221-.327c-.895-.172-1.876-.241-2.908-.327-1.015-.086-2.168-.207-3.251-.465-1.084-.258-2.134-.603-3.132-.964-1.995-.741-3.836-1.567-5.677-2.101-.86-.259-1.961-.482-2.959-.775a47.962 47.962 0 0 1-3.028-.947c-3.991-1.378-7.793-3.152-11.475-5.046-7.329-3.736-14.64-7.921-21.23-12.949-3.303-2.411-6.709-4.787-9.926-7.508-1.6-1.378-3.149-2.841-4.594-4.426a144.409 144.409 0 0 0-4.18-4.442l-8.361-8.473c-2.805-2.841-5.402-6.027-8.017-8.937l-7.88-8.886c-1.324-1.498-2.58-2.944-3.922-4.373-1.342-1.43-2.718-2.876-4.078-4.374-1.342-1.498-2.666-3.083-3.871-4.77-1.066-1.516-2.339-2.928-3.681-4.305l-8.447-8.318c-2.839-2.755-5.729-5.527-8.465-8.506-1.324-1.464-2.615-2.807-4.043-3.858-1.703-1.257-3.234-2.669-4.662-4.081-1.927-1.911-3.75-3.788-5.746-5.304l-6.417-4.856c-4.267-3.203-8.585-6.285-13.178-8.833-2.271-1.309-4.645-2.291-7.157-3.599-2.426-1.275-4.714-2.618-7.054-3.651-1.17-.517-2.339-.964-3.527-1.292a122.894 122.894 0 0 0-3.836-.929 148.8 148.8 0 0 0-7.811-1.533c-3.01-.517-6.055-.964-9.1-1.36-2.977-.397-6.005-.552-9.067-.638-3.062-.086-6.159-.103-9.29-.223l-2.34-.121-1.17-.086a6.972 6.972 0 0 0-.843 0c-1.152.12-2.494.809-4.266 1.257-.912.241-2.048.327-3.028.172-.826-.12-1.617-.241-2.357-.293-1.531-.12-2.787-.034-4.06.603a2.53 2.53 0 0 1-1.067.293 6.439 6.439 0 0 1-.929-.035c-.224-.017-.292-.034-.447-.034h-.585c-.774.017-1.548.086-2.323.172-1.565.172-3.131.465-4.731.792-1.6.328-3.217.689-4.868.982a39.92 39.92 0 0 1-2.512.396l-2.46.258c-3.08.379-6.194 1.343-9.394 2.187-3.148.844-6.262 1.774-9.324 2.841-3.063 1.068-6.056 2.256-9.015 3.686l-8.912 4.098c-2.976 1.309-5.643 2.996-8.327 4.839a120.511 120.511 0 0 0-3.956 2.858 56.416 56.416 0 0 0-3.716 3.048c-3.183 2.842-6.142 6.01-9.17 9.144-3.114 3.083-5.85 6.268-8.499 9.712-2.632 3.41-5.213 6.992-7.983 10.367-2.752 3.392-5.436 6.75-7.931 10.315-3.096 4.373-6.073 8.902-9.324 13.242-1.6 2.169-3.389 4.305-5.075 6.337-1.686 2.083-3.286 4.219-4.886 6.388-3.183 4.34-6.366 8.765-10.013 12.812-3.561 3.995-6.795 8.283-10.133 12.536-7.054 8.714-14.279 17.1-21.436 25.727-7.26 8.524-15.157 16.462-22.967 24.384-3.321 3.375-6.624 6.75-9.858 10.177l-9.6 10.401c-3.183 3.495-6.417 6.905-9.514 10.521-3.148 3.547-6.296 7.043-9.17 10.711l-11.199 15.188c-1.858 2.549-3.768 5.046-5.574 7.611a237.608 237.608 0 0 0-5.213 7.835c-6.761 10.591-12.938 21.612-19.183 32.529l-3.974 6.991c-1.273 2.36-2.546 4.719-3.75 7.095-2.443 4.77-4.576 9.54-6.331 14.62-.947 2.549-1.962 4.994-2.615 7.456-.327 1.206-.551 2.463-.74 3.771l-.275 1.964-.121.809v.086c0 .086.121-.017.155-.052.017-.017 0-.034 0 0v.035l.379.051 1.496.276c1.015.172 2.013.43 3.011.672.206.051.602.155.585.396l-.052.034Z%27/%3E%3Cpath d=%27M194.687 711.087c-.242 1.505-2.532 1.211-3.771 1.782a3.876 3.876 0 0 1-1.602.363h-.482l-.792-.069c-.533-.069-1.084-.121-1.584-.242l-1.515-.346-.775-.191s-.31-.069-.499-.155c.12-.243.293-.537.43-.796l.913-1.661c.275-.536.43-.986.654-1.488l.258-.796c.638-2.18.758-4.689 1.447-7.37.172-.658.396-1.35.671-2.007.224-.537.345-.952.465-1.505.241-1.09.345-2.336.62-3.703a10.65 10.65 0 0 1 .637-2.128l.413-.882c.121-.243.224-.519.328-.779.413-1.073.723-2.215 1.033-3.426.31-1.211.637-2.474 1.084-3.754.241-.64.482-1.28.792-1.92.293-.641.689-1.281.93-1.731 1.068-2.007 1.739-4.342 2.497-6.782.757-2.457 1.739-4.913 2.755-7.214 1.016-2.336 2.066-4.603 2.961-6.886a105.168 105.168 0 0 1 3.014-7.025c2.152-4.619 4.511-9.066 6.732-13.564 1.136-2.249 2.29-4.516 3.564-6.747a91.877 91.877 0 0 1 1.98-3.305c.689-1.107 1.447-2.163 2.101-3.166 1.945-2.976 3.788-6.229 6.095-9.222 2.256-2.976 4.563-5.675 6.56-8.65 2.135-3.097 4.546-5.935 6.939-8.686l3.582-4.117c1.153-1.35 2.393-2.821 3.684-4.153 2.566-2.699 5.252-5.173 7.731-7.733 2.48-2.561 4.839-5.347 7.353-8.046 1.274-1.349 2.582-2.681 3.977-3.944 1.36-1.281 2.996-2.457 4.305-3.512 2.737-2.215 5.286-4.758 7.92-7.302 5.338-5.173 11.054-9.654 16.443-14.481a132.994 132.994 0 0 0 3.995-3.65 166.08 166.08 0 0 1 4.064-3.72c2.755-2.44 5.596-4.758 8.402-7.077l8.472-6.92c2.841-2.301 5.94-4.481 8.936-6.505 3.013-2.059 6.009-4.153 9.039-6.177l9.178-5.9a296.591 296.591 0 0 0 10.796-7.301c1.842-1.28 3.684-2.422 5.355-3.65.843-.623 1.635-1.246 2.358-1.921.362-.346.706-.692 1.034-1.038l1.05-1.194c5.561-6.453 10.107-13.789 13.568-21.609 3.306-7.924 6.681-16.315 11.829-23.651 5.131-7.37 11.743-13.599 19.284-18.391 8.076-5.087 17.167-7.976 26.155-10.277 2.204-.589 4.614-1.16 6.973-1.436 2.359-.312 4.735-.45 7.077-.519l13.878-.087c4.804 0 9.642.035 14.481.467 4.838.381 9.728 1.315 14.377 2.578l6.973 1.747c2.325.606 4.649 1.073 7.008 1.921 4.666 1.644 8.971 3.945 13.172 6.211 4.098 2.232 8.368 4.308 12.415 6.834a111.56 111.56 0 0 1 11.674 8.184c1.859 1.47 3.65 3.079 5.406 4.602l5.372 4.55c3.616 3.011 7.232 6.073 10.658 9.377 5.889 5.727 11.743 11.506 17.322 17.579 5.493 6.107 11.209 12.041 16.323 18.512 2.152 2.63 4.735 4.948 7.283 7.388 2.583 2.422 4.89 5.104 7.301 7.56 2.427 2.475 4.924 4.81 7.765 6.713 2.91 2.007 5.665 4.187 8.454 6.263 1.877 1.402 3.771 2.751 5.717 3.962a260.312 260.312 0 0 0 6.026 3.582 201.707 201.707 0 0 0 12.38 6.574c3.96 1.938 7.989 3.634 12.139 5.243 4.132 1.643 8.213 3.322 12.38 4.671a67.88 67.88 0 0 0 6.302 1.73c.482.104 1.171.26 1.739.467.585.208 1.119.45 1.618.692 1.016.485 1.929.9 2.841 1.056 4.408.674 8.747 1.782 13.052 2.491 1.429.242 2.875.398 4.373.64l4.391.71c1.446.225 2.893.449 4.322.588 1.429.173 2.738.121 4.167-.087l4.373-.692c1.567-.207 2.979-.259 4.425-.467 2.893-.346 5.751-.882 8.609-1.522a150.31 150.31 0 0 0 6.681-1.679c1.24-.346 2.342-.432 3.168-.847a54.086 54.086 0 0 1 3.22-1.419c4.391-1.765 8.73-3.132 12.914-5.069 4.27-1.834 8.557-3.53 12.638-5.571 4.115-2.025 8.23-4.205 12.604-5.848 2.118-.796 4.322-1.454 6.56-1.886 1.119-.242 2.29-.346 3.254-.554 1.016-.225 2.066-.553 3.168-.865 1.102-.294 2.273-.553 3.513-.553.603-.018 1.257.069 1.808.155.516.087 1.05.156 1.584.208 2.135.19 4.391.156 6.681.554a19.65 19.65 0 0 1 1.704.38c.551.139 1.033.294 1.567.415 1.05.243 2.118.45 3.22.658 2.169.415 4.425.848 6.577 1.765a15.899 15.899 0 0 1 3.065 1.747l.345.277.172.138.086.069.051.035h.018c.12-.104-.965 1.159-.5.623 0 0 .018-.069.018-.156V534.786h.189c.103 0 .207 0 .293.017l.482.121c.568.122 1.119.312 1.67.485 2.204.744 4.201 1.851 6.147 2.976l3.599 2.128c1.188.692 2.393 1.263 3.684 1.938 2.514 1.349 4.856 2.975 7.129 4.584 4.528 3.236 9.211 6.298 13.757 9.568a189.807 189.807 0 0 1 6.767 5.017c2.221 1.731 4.373 3.53 6.56 5.277l3.254 2.63.655.519.189.156.792.605c.517.381 1.274 1.125 1.601 2.111.121.329.138.71.155.969v.588a3.996 3.996 0 0 1-.292 1.142c-.276.675-.414 1.402-.655 2.094-.069.207-.138.605-.447.657-.879.121-.982-1.28-1.154-2.024a21.306 21.306 0 0 1-.517-2.734c-.068-.173-.103-.104-.172-.173l-.689-.605-.705-.606-5.665-4.654c-3.995-3.374-8.058-6.505-12.311-9.55-4.219-3.045-8.592-5.969-12.828-9.066-2.118-1.523-4.218-2.993-6.405-4.204-.551-.312-1.085-.571-1.688-.883a43.14 43.14 0 0 1-1.79-.969c-1.171-.674-2.29-1.366-3.41-2.041-1.515-.917-3.013-1.782-4.545-2.474a16.493 16.493 0 0 0-2.325-.883c-.378-.121-.826-.225-1.136-.311h-.086c-.086-.035.275.104-.654-.104-.19-.034-.603-.363-.5-.294h-.034l-.052-.069-.465-.364c-2.514-1.92-5.854-2.577-9.384-3.2-.878-.173-1.773-.329-2.686-.554a40.452 40.452 0 0 1-1.36-.346c-.413-.104-.775-.208-1.188-.294-1.584-.329-3.289-.381-5.097-.467-.895-.052-1.825-.104-2.772-.208-1.05-.138-1.67-.277-2.428-.242-1.48.052-3.082.588-4.855 1.09-.534.138-1.068.277-1.636.398l-1.584.259a35.38 35.38 0 0 0-2.927.606c-1.929.502-3.84 1.159-5.734 1.92-3.771 1.54-7.438 3.478-11.209 5.312-3.788 1.868-7.696 3.426-11.519 5.035-1.894.778-3.822 1.661-5.802 2.404l-5.872 2.163c-1.016.381-1.997.761-2.996 1.159l-1.463.623c-.5.225-.896.433-1.55.692-1.257.467-2.342.554-3.272.831l-3.168.83c-4.235 1.073-8.54 1.99-12.931 2.509l-3.237.311c-1.016.121-2.066.312-3.151.502-1.084.173-2.186.363-3.357.45-1.137.104-2.411.017-3.478-.104-2.221-.225-4.374-.605-6.509-.952-2.135-.38-4.218-.588-6.439-.951-3.943-.64-7.749-1.575-11.537-2.197l-1.446-.225a8.35 8.35 0 0 1-1.687-.45c-1.051-.381-1.946-.865-2.755-1.194a7.27 7.27 0 0 0-1.171-.398l-1.412-.311a88.636 88.636 0 0 1-2.927-.727c-3.857-1.055-7.594-2.439-11.261-3.858-3.65-1.453-7.301-2.803-10.968-4.377-7.283-3.132-14.291-6.869-21.075-10.883-3.392-1.938-6.819-4.256-9.935-6.644l-4.684-3.546c-1.566-1.194-3.099-2.18-4.786-3.461-3.151-2.422-5.855-5.225-8.454-7.993-1.309-1.401-2.549-2.785-3.857-4.066l-4.081-3.91c-1.378-1.332-2.755-2.716-4.046-4.221l-3.616-4.412c-2.411-2.872-4.942-5.658-7.49-8.461-2.566-2.802-5.08-5.64-7.645-8.373-2.583-2.751-5.217-5.433-7.886-8.115a492.19 492.19 0 0 0-8.093-7.906c-2.72-2.561-5.578-4.983-8.488-7.388l-5.941-4.914c-1.997-1.678-3.874-3.373-5.854-4.913-3.943-3.149-8.127-5.987-12.483-8.564a129.658 129.658 0 0 0-6.646-3.651l-6.819-3.581c-4.511-2.371-8.988-4.603-13.792-5.848l-8.574-2.111-4.288-1.055a69.645 69.645 0 0 0-4.201-.952c-5.648-1.073-11.467-1.419-17.304-1.488-3.496-.052-7.025 0-10.555 0-3.564.035-7.06-.069-10.503.138-3.478.191-6.784.658-10.159 1.575-3.409.848-6.784 1.765-10.09 2.855-6.612 2.145-12.965 5-18.544 9.048a64.838 64.838 0 0 0-14.705 14.516c-4.821 6.592-8.213 14.153-11.381 21.834-3.271 7.769-7.507 15.156-12.776 21.765-1.67 2.025-3.22 4.066-5.286 5.883-2.032 1.765-4.253 3.149-6.371 4.567-4.184 2.924-8.505 5.848-12.844 8.617-4.322 2.802-8.73 5.449-12.931 8.425-4.236 2.942-8.558 5.692-12.535 8.859-4.133 3.287-8.248 6.712-12.346 10.069a192.671 192.671 0 0 0-6.026 5.173l-5.872 5.415c-3.977 3.582-8.058 7.007-12.053 10.485-4.046 3.408-7.61 7.284-11.656 10.9-1.688 1.557-3.616 2.924-5.252 4.308-1.653 1.453-3.22 3.028-4.735 4.671-3.013 3.288-5.94 6.817-9.194 10.018-3.238 3.218-6.406 6.263-9.229 9.775-2.962 3.46-5.992 6.782-8.661 10.329-.913 1.194-1.688 2.353-2.6 3.65a101.342 101.342 0 0 1-2.755 3.668c-1.877 2.405-3.737 4.672-5.321 7.163-1.601 2.474-3.185 5.139-4.907 7.63-1.636 2.44-3.099 5.035-4.477 7.682-2.703 5.329-5.492 10.779-8.075 16.142-1.291 2.716-2.411 5.398-3.53 8.253-1.171 2.837-2.462 5.571-3.581 8.322-.982 2.335-1.688 4.654-2.462 7.18-.396 1.245-.844 2.526-1.412 3.789a15.874 15.874 0 0 1-.964 1.851 15.823 15.823 0 0 0-.758 1.54c-.913 2.145-1.309 4.671-2.152 7.284a20.807 20.807 0 0 1-.758 1.955l-.379.83a7.202 7.202 0 0 0-.241.727c-.293 1.038-.396 2.284-.62 3.633-.12.675-.258 1.402-.499 2.128-.293.848-.465 1.177-.637 1.765-.344 1.09-.534 2.284-.723 3.547-.19 1.263-.379 2.578-.723 3.944-.086.346-.173.675-.293 1.021l-.224.675-.086.225a.279.279 0 0 0 .224-.104c0-.017 0-.017.017 0l.585.104 1.43.259c.998.156 2.031.346 3.082.641.223.069.637.19.585.432l.121-.017Z%27/%3E%3Cpath d=%27M890.129 59.682c.379.034.638.189.845.447.104.12.173.276.242.43.069.138.121.345.172.637.173.913.276 3.133.311 2.255-.155-.034-.293-.086-.449-.12l-.327-.086s-.087.068-.121.103l-.242.24c-.155.156-.224.242-.362.345-.259.19-.518.396-.811.5-.673.292-1.363.481-2.036.619-.327.051-.672.12-1 .155l-.483.051-.828.052-.932.034-1.76.087c-.552.051-1.087.103-1.587.223-.259.052-.5.12-.742.19l-.914.275c-1.259.362-2.519.62-3.744.844-2.449.43-4.83.74-7.038 1.342-1.346.396-2.812.465-3.951.516-.587.035-1.121.086-1.622.172a4.057 4.057 0 0 0-.69.173l-.845.258-6.97 2.169c-4.641 1.463-9.333 2.822-13.853 4.51-4.555 1.652-9.006 3.476-13.491 5.404-4.503 1.893-8.971 3.735-13.181 5.956-2.104 1.067-4.14 2.392-6.21 3.683L801.334 95c-12.042 7.213-23.29 15.681-32.969 25.699a105.718 105.718 0 0 0-6.831 7.866 94.302 94.302 0 0 0-3.106 4.182l-3.14 4.269-6.279 8.537c-2.122 2.841-4.175 5.681-6.09 8.589a163.069 163.069 0 0 0-5.504 8.899c-1.725 3.013-3.329 6.162-4.968 9.261-3.261 6.231-6.366 12.513-9.04 18.951a136.312 136.312 0 0 0-3.623 9.776c-.518 1.618-1.035 3.357-1.622 5.061a189.459 189.459 0 0 1-1.828 5.026c-1.243 3.304-2.467 6.558-3.399 9.845-.845 3.305-1.794 6.885-2.881 10.242a190.718 190.718 0 0 1-2.036 6.076l-1.915 5.99c-1.311 3.958-2.484 8.021-3.657 12.1a890.842 890.842 0 0 1-3.623 12.169c-1.259 4.045-2.881 8.262-5.038 11.963-1.949 3.614-3.622 7.556-6.038 11.274-1.19 1.859-2.605 3.666-4.175 5.215-1.518 1.567-3.157 3.012-4.83 4.389-6.78 5.508-14.889 9.226-23.221 11.395l-1.656.43c-.587.138-1.225.276-1.812.345-1.19.172-2.329.241-3.398.361-1.053.121-2.053.276-2.847.603l-.742.327c-.276.12-.552.241-.845.344-.569.224-1.139.413-1.708.585-2.295.689-4.606 1.033-6.815 1.377-2.191.327-4.399.74-6.607 1.119-4.399.774-8.747 1.601-12.853 3.012-4.295 1.48-8.591 2.72-12.628 4.372-2.088.861-4.123 1.825-6.038 2.961-.984.585-1.812 1.153-2.83 1.858l-2.932 1.928c-.932.62-1.829 1.257-2.571 1.945-.397.362-.621.637-.966 1.102l-1.087 1.411c-1.449 1.842-2.933 3.615-4.244 5.439-5.348 7.212-7.642 16.352-7.332 25.337 1.398 17.832 8.402 35.114 18.097 50.364 2.088 3.373 4.4 6.523 6.625 9.897 2.174 3.356 4.175 6.782 6.556 9.863l7.263 9.501c2.329 3.184 4.813 6.265 7.384 9.277 4.468 5.061 8.798 10.311 13.818 14.683 5.21 4.234 10.386 8.675 16.01 12.255 3.761 2.444 7.919 4.2 12.042 6.265l3.002 1.549c.914.414 1.932.654 3.036.878 1.087.207 2.26.396 3.468.775 1.276.43 2.156.895 3.226 1.256 3.933 1.412 8.108 2.031 12.352 2.204 4.244.206 8.488.086 12.559-.844 4.21-.964 8.437-1.756 12.37-3.201 3.882-1.55 7.746-3.512 11.473-5.56 5.003-2.754 9.816-5.818 14.612-8.985 4.865-3.167 10.006-5.887 15.268-8.279 2.035-.964 4.209-1.773 6.141-2.737 1.018-.499 2.14-1.015 3.382-1.308a42.035 42.035 0 0 0 3.226-.792c2.122-.602 4.278-1.342 6.573-1.842 1.138-.241 2.329-.43 3.536-.499a19.498 19.498 0 0 0 3.175-.361c2.122-.396 4.347-1.085 6.797-1.222a16.514 16.514 0 0 1 1.846.017l1.656.12a70.46 70.46 0 0 0 3.313.121c2.225.052 4.502.086 6.78.275 2.294.172 4.571.672 6.728 1.102 4.244.843 8.47 1.687 12.68 2.53 2.208.396 4.347 1.257 6.297 2.169 2.001.947 3.812 1.807 5.865 2.616 4.055 1.756 7.712 4.183 11.197 6.748l5.175 3.872c1.795 1.308 3.399 2.84 4.917 4.407 1.898 1.945 3.658 4.096 5.555 5.835.984.895 2.071 1.773 3.019 2.874a9.326 9.326 0 0 1 1.26 1.825c.31.551.655 1.084 1.035 1.6 1.535 2.066 3.606 3.822 5.4 6.008.448.533.88 1.136 1.276 1.704.363.533.742 1.067 1.156 1.583.811 1.05 1.674 2.048 2.571 3.064 3.726 3.976 6.797 8.589 10.523 12.272.466.465.932.896 1.45 1.36a16.04 16.04 0 0 1 1.518 1.532l.742.895c.224.276.431.568.638.878a72.66 72.66 0 0 1 1.104 1.756c.552.809.656 1.755.466 2.668-.173.791-.328 1.583-.621 2.289-.104.224-.207.62-.518.62-.88-.018-.811-1.309-1.052-1.945-.242-.775-.569-1.463-.897-2.118-.345-.688-.759-1.325-1.173-1.979-.121-.224-.294-.43-.449-.654-.656-.998-3.261-3.116-4.865-5.026-1.742-1.962-3.33-3.993-4.882-5.973-1.536-1.996-3.175-3.804-4.865-5.783-.828-.999-1.674-2.014-2.433-3.116l-1.069-1.549a20.304 20.304 0 0 0-1.105-1.377c-1.552-1.824-3.519-3.546-5.141-5.835a17.325 17.325 0 0 1-1.104-1.79 6.616 6.616 0 0 0-.897-1.274c-.707-.843-1.639-1.635-2.605-2.513-2.053-1.876-3.571-3.804-5.313-5.645-1.156-1.24-2.347-2.445-3.589-3.512-1.207-1.015-2.691-2.065-4.054-3.115-2.76-2.083-5.503-4.131-8.402-5.852a41.885 41.885 0 0 0-4.451-2.324c-1.466-.62-3.26-1.325-4.796-2.066-1.57-.74-3.105-1.463-4.64-1.979a19.07 19.07 0 0 0-2.295-.637l-2.553-.499-11.921-2.324c-3.899-.895-7.729-.981-11.835-1.067a185.35 185.35 0 0 1-3.071-.12c-1.052-.052-2.105-.207-2.933-.19-1.811 0-3.709.465-5.71.913-1.001.206-2.053.413-3.123.533-.517.069-1.138.086-1.604.103-.466 0-.932.069-1.397.121-1.881.241-3.779.792-5.711 1.36l-3.071.895c-.517.137-1.052.275-1.587.396-.552.12-1.087.223-1.483.327-.88.241-1.76.654-2.709 1.119-.949.481-2.018.929-2.933 1.308a132.848 132.848 0 0 0-11.265 5.456c-3.675 1.979-7.108 4.251-10.662 6.592-3.554 2.29-7.177 4.51-10.886 6.593-3.364 1.876-6.78 3.614-10.334 5.181-3.692 1.583-7.504 2.427-11.213 3.287l-2.778.637c-.966.224-1.949.413-2.916.568a45.308 45.308 0 0 1-5.882.499c-3.899.052-7.781-.086-11.697-.774a37.948 37.948 0 0 1-5.78-1.481c-.931-.309-1.915-.722-2.76-1.067-.707-.292-1.535-.482-2.45-.671-1.759-.344-3.985-.671-5.917-1.773-1.622-.878-3.312-1.704-5.02-2.53-3.416-1.618-6.987-3.357-10.231-5.525-3.26-2.135-6.314-4.51-9.298-6.92l-4.279-3.477a61.845 61.845 0 0 1-4.244-3.718c-2.726-2.599-5.21-5.37-7.642-8.141-2.416-2.737-4.883-5.542-7.212-8.417a169.348 169.348 0 0 1-3.433-4.389 185.233 185.233 0 0 0-3.312-4.424c-2.174-2.926-4.451-5.697-6.659-8.83-2.14-3.098-3.986-6.282-6.004-9.243-4.21-5.972-8.298-12.255-11.766-18.813-4.658-8.916-8.522-18.314-10.748-28.194-1.121-4.871-2.122-9.914-2.087-15.13.052-5.112.793-10.293 2.57-15.181 1.001-2.806 2.347-5.508 3.934-8.021 1.604-2.53 3.485-4.785 5.244-7.006l1.294-1.669.311-.413.414-.517a8.66 8.66 0 0 1 .88-.895c1.207-1.101 2.467-1.91 3.674-2.702l1.777-1.17 1.777-1.205a37.407 37.407 0 0 1 3.865-2.255c3.174-1.618 6.469-2.857 9.747-3.942l4.899-1.601c1.605-.516 3.244-1.118 4.969-1.583 3.399-.964 6.814-1.601 10.213-2.186l5.089-.861c1.726-.292 3.433-.499 5.072-.791 1.639-.293 3.227-.672 4.71-1.223.362-.137.742-.292 1.087-.447.328-.155.914-.413 1.363-.534.966-.292 1.898-.43 2.795-.533 1.794-.207 3.433-.258 4.917-.637 1.638-.413 3.26-.844 4.865-1.36 6.4-1.997 12.473-5.009 17.786-9.088 3.071-2.41 6.09-5.095 8.367-8.159 2.295-3.115 4.003-6.713 5.849-10.327.914-1.825 1.984-3.598 2.829-5.319.863-1.773 1.604-3.597 2.277-5.473 1.329-3.736 2.433-7.643 3.606-11.498a609.87 609.87 0 0 1 9.005-28.556c.742-2.358 1.432-4.75 2.036-7.143.604-2.444 1.38-4.871 2.226-7.229 1.708-4.751 3.588-9.295 4.985-14.08 3.158-9.914 7.609-19.33 12.336-28.521 2.398-4.579 4.727-9.191 7.401-13.65a160.306 160.306 0 0 1 8.591-12.96l7.729-10.621c2.588-3.494 5.055-7.212 7.884-10.62 5.59-6.885 12.076-12.995 18.942-18.555a162.84 162.84 0 0 1 14.354-10.327l14.923-9.312c5.141-3.064 10.644-5.319 16.01-7.59 5.365-2.29 10.834-4.562 16.389-6.507 4.744-1.687 9.506-3.047 14.25-4.596l3.571-1.119 1.794-.568a11.15 11.15 0 0 1 2.14-.413c1.362-.137 2.553-.12 3.571-.344.431-.086 1.138-.31 1.759-.448.639-.154 1.277-.275 1.898-.395 2.502-.482 4.969-.792 7.211-1.395l1.777-.533a11.71 11.71 0 0 1 2.088-.396c1.363-.155 2.639-.155 3.795-.241.397-.034.242-.017.328-.034h.103l.207-.052c.138-.017.259-.052.38-.086.259-.052.5-.138.725-.207.396-.137.759-.223 1.138-.31l.552-.137c.121-.052.156-.035.156 0 0 .017.051 0 .086.034.052.035.172.207.224.19a.449.449 0 0 0 .173-.121c.051-.052.12-.138.189-.24.069-.035.121-.431.19-.638.052-.206.155-.602.397-.585v-.034ZM250.622 711.232c-.258 1.479-2.479 1.255-3.805 1.788-.293.103-.465.189-.913.206-.465.018-.965 0-1.412-.103-.517-.103-1.016-.258-1.55-.378-.069 0-.138-.034-.19-.052-.051-.017 0-.12-.034-.189v-2.819l.069-3.886c0-1.186 0-2.355-.052-3.507-.051-1.101-.189-2.373-.206-3.611a61.687 61.687 0 0 1 .258-7.376c.224-2.441.534-4.831.878-7.203l.5-3.559c.137-1.066.172-2.235.292-3.508.052-.636.138-1.289.276-1.96.069-.326.155-.67.241-1.014l.241-.877.964-3.438 1.929-6.895a80.59 80.59 0 0 1 4.943-13.771c2.066-4.436 4.322-8.631 6.664-12.895 2.377-4.264 5.098-8.304 7.939-12.224 2.084-2.837 4.322-5.622 6.733-8.201a160.894 160.894 0 0 1 7.388-7.53c5.098-4.849 10.557-9.336 16.343-13.342a263.198 263.198 0 0 1 17.686-11.313c5.993-3.662 12.519-6.636 19.081-9.078 3.254-1.238 6.647-2.458 10.108-3.284 3.358-.859 6.768-1.753 10.281-2.389 1.722-.327 3.599-.568 5.27-.74 1.653-.189 3.324-.498 5.046-.808 1.705-.292 3.495-.602 5.321-.756 1.808-.155 3.565-.189 5.287-.258l10.401-.516c3.462-.155 6.906-.344 10.298-.688a81.502 81.502 0 0 0 5.063-.67l5.149-.86c3.445-.567 6.751-1.117 10.04-2.046 4.013-1.066 7.939-2.183 11.642-3.748a42.778 42.778 0 0 0 5.338-2.665c1.636-.997 3.462-2.252 5.149-3.352 3.427-2.287 6.751-4.642 9.661-7.376 2.91-2.785 5.683-5.846 8.283-8.992 2.601-3.163 5.063-6.447 7.457-9.817s4.753-6.826 7.353-10.161c2.601-3.335 5.494-6.533 8.818-9.284 3.289-2.751 7.163-5.124 11.503-6.241 4.598-1.204 9.265-.997 13.656-.843l3.358.121a21.9 21.9 0 0 1 3.514.498 20.83 20.83 0 0 1 3.427 1.066 12.27 12.27 0 0 1 1.653.791c.534.292.93.516 1.412.774 1.86.945 3.875 1.719 5.941 2.51 2.067.774 4.236 1.702 6.217 2.734 4.03 2.063 7.767 4.435 11.59 6.413 4.219 2.149 8.007 4.951 11.693 7.65l10.952 8.339 10.935 8.373c3.617 2.905 7.009 5.966 10.522 8.803 3.496 2.733 7.216 5.312 10.798 7.977 1.808 1.341 3.616 2.596 5.425 4.04 1.773 1.427 3.461 2.906 5.183 4.264a35.023 35.023 0 0 0 2.652 1.891c.878.568 1.877 1.084 2.876 1.668 1.963 1.135 3.875 2.338 5.769 3.559 3.806 2.441 7.508 4.917 11.366 7.204a50417.885 50417.885 0 0 1 40.418 24.018c2.893 1.685 5.7 3.456 8.593 5.021a83.089 83.089 0 0 0 8.972 4.16c6.131 2.373 12.588 3.972 19.132 4.539 8.783.757 17.704-.825 26.452-2.338 1.963-.413 3.961-1.186 6.199-1.565 2.308-.343 4.323-.309 6.389-.584 1.016-.12 2.015-.292 2.945-.55a13.5 13.5 0 0 0 1.395-.482c.517-.206 1.051-.378 1.584-.55 2.119-.653 4.237-1.031 6.286-1.478a35.189 35.189 0 0 0 2.997-.774c.447-.138 1.05-.344 1.601-.464a18.457 18.457 0 0 1 1.653-.31c1.085-.155 2.118-.275 3.1-.447a9.203 9.203 0 0 0 1.395-.361l1.533-.533c2.101-.67 4.219-1.1 6.303-1.513l3.082-.653c1.016-.206 1.98-.533 3.134-.757 1.481-.275 2.911-.361 4.254-.55.671-.103 1.326-.223 1.911-.395.31-.103.569-.189.861-.327.362-.137.706-.309 1.068-.43 2.876-1.031 5.838-1.134 8.559-1.478 1.36-.172 2.704-.396 3.944-.826.551-.189 1.412-.515 2.169-.653.775-.155 1.533-.206 2.274-.241 1.481-.068 2.893 0 4.219-.086 1.326-.103 2.858-.24 4.27-.24 4.53-.086 9.024.447 13.45 1.238 2.187.395 4.426.894 6.527 1.358 1.05.223 2.187.413 3.341.756 1.153.361 2.221.791 3.254 1.273 2.084.962 3.996 2.114 5.924 3.077a29.38 29.38 0 0 0 2.928 1.272c1.085.396 2.118.877 3.151 1.376 4.099 2.046 7.664 4.865 10.987 7.719 6.631 5.468 12.245 12.173 16.533 19.566a88.873 88.873 0 0 1 3.03 5.639c.93 1.891 1.878 3.8 2.704 5.811.81 1.995 1.498 4.092 1.791 6.293.293 2.252.138 4.315.19 6.447l.034 16.007v8.012c0 2.665.138 5.329-.207 8.08a40.859 40.859 0 0 1-1.739 7.995c-.913 2.545-1.619 5.003-2.428 7.599-.413 1.29-.844 2.579-1.361 3.851l-.465 1.152-.619 1.445c-.913.034-2.153.051-2.566.206-.844.223-1.602.103-2.377-.189-.689-.258-1.429-.413-2.135-.636-.224-.069-.62-.138-.655-.447-.12-.877 1.257-.98 1.981-1.17a24.067 24.067 0 0 1 2.635-.533l.688-.085c.207-.018.551-.052.465-.052.018-.034.035-.034.052-.052.017-.034 0 .035.069-.068l.172-.379.327-.825.62-1.702a105.79 105.79 0 0 0 1.137-3.507c.379-1.187.758-2.407 1.171-3.628.448-1.255.826-2.269 1.154-3.456a37.725 37.725 0 0 0 1.308-7.032c.224-2.321.104-4.917.155-7.393l.052-7.478.086-14.958v-5.089c-.017-1.548-.293-3.112-.74-4.642-.896-3.078-2.446-6.069-3.961-9.13-2.997-5.983-6.734-11.605-11.211-16.539-2.6-2.923-5.493-5.468-8.559-8.012-3.013-2.51-6.13-4.849-9.557-6.568-.861-.413-1.723-.825-2.618-1.152-.896-.344-1.946-.773-2.841-1.22-1.86-.912-3.582-1.926-5.305-2.803-1.739-.877-3.427-1.633-5.252-2.011l-5.821-1.273c-4.012-.842-8.059-1.478-12.123-1.65-2.032-.086-4.047-.069-6.062.103-2.101.241-4.34.103-6.234.223-.982.069-1.808.224-2.669.551-1.068.412-2.153.67-3.238.859-2.152.396-4.253.499-6.217.791-.981.155-1.945.327-2.841.602a12.14 12.14 0 0 0-1.326.481c-.362.155-1.068.464-1.602.602-2.29.636-4.391.619-6.268.997-.431.086-.792.172-1.257.292l-1.412.361-2.79.619c-1.843.379-3.651.74-5.39 1.221-.861.241-1.722.516-2.532.825-1.033.396-2.066.585-3.031.74-.964.137-1.877.258-2.738.412-.43.086-.844.155-1.24.275l-1.308.413c-3.806 1.135-7.509 1.479-10.729 2.837-1.998.791-4.013 1.049-5.924 1.238-1.912.206-3.84.189-5.425.533-1.687.344-3.427.98-5.39 1.427-1.997.412-3.737.67-5.631.997-3.72.619-7.474 1.169-11.297 1.444-3.806.31-7.681.327-11.538-.069-3.823-.412-7.612-1.1-11.314-2.114-7.147-1.943-13.966-4.969-20.287-8.752l-18.667-11.106-18.633-11.072-9.317-5.536c-3.134-1.857-6.199-3.852-9.23-5.777-2.067-1.307-4.116-2.596-6.2-3.817l-3.203-1.823a32.52 32.52 0 0 1-3.203-2.166c-2.032-1.53-3.875-3.146-5.752-4.625-1.842-1.444-3.943-2.871-5.907-4.298l-5.975-4.298-2.979-2.149c-.982-.757-1.946-1.548-2.911-2.321-3.84-3.147-7.422-6.379-11.331-9.267l-13.433-10.213c-4.477-3.387-8.937-6.928-13.57-9.851-1.412-.894-2.772-1.634-4.322-2.424a190.943 190.943 0 0 1-4.478-2.493c-2.927-1.685-5.803-3.37-8.782-4.728-2.928-1.359-6.217-2.339-9.386-3.92l-1.188-.619-1.068-.602a14.387 14.387 0 0 0-2.118-.877c-1.464-.499-3.031-.791-4.598-.928-6.63-.224-13.484-.98-19.287 1.616-2.928 1.255-5.597 3.112-8.06 5.261-2.462 2.132-4.701 4.573-6.768 7.152-4.873 6.103-9.127 12.912-14.207 19.101-2.514 3.112-5.149 6.138-7.973 8.992-2.79 2.906-5.993 5.485-9.282 7.754-2.032 1.427-4.116 2.768-6.165 4.109a42.36 42.36 0 0 1-6.596 3.645c-4.598 2.046-9.403 3.353-14.173 4.591-4.873 1.255-9.764 1.822-14.603 2.682-4.925.808-9.885 1.083-14.81 1.306l-15.224.705c-2.497.121-4.925.568-7.439 1.015-1.257.223-2.532.447-3.823.601-1.326.155-2.497.275-3.754.482-4.908.808-9.885 2.149-14.69 3.473-4.753 1.513-9.523 3.387-14.104 5.398-3.926 1.737-7.646 3.731-11.331 5.983a277.096 277.096 0 0 0-10.901 6.86c-3.565 2.373-7.112 4.831-10.505 7.393a135.286 135.286 0 0 0-9.816 8.236c-4.167 3.851-8.197 7.96-11.865 12.241-3.616 4.332-6.871 9.061-9.868 13.875-1.463 2.424-2.824 4.917-4.167 7.444-1.343 2.545-2.669 5.072-3.858 7.634-1.188 2.561-2.29 5.175-3.203 7.84-.93 2.647-1.619 5.381-2.411 8.166l-1.963 7.101-.499 1.771c-.155.55-.276 1.014-.345 1.581-.155 1.084-.189 2.27-.292 3.559-.586 5.038-1.395 9.732-1.602 14.528-.121 2.407-.052 4.677.155 7.153.172 2.544.103 5.037.086 7.461v.688c.017.223.035.103.052.138h.086c.052-.035 0 0 0 .068 0 .035-.035.086.069.138.206.051.43.12.654.155.93.171 1.981.343 3.031.619.224.051.637.189.603.429l.051-.034Z%27/%3E%3Cpath d=%27M215.368 711.118c-.12 1.547-2.569 1.237-3.775 1.753a5.464 5.464 0 0 1-.742.258c-.258.069-.448.103-1.017.103-.551 0-1.103 0-1.62-.051l-.397-.035c-.103-.051-.327.069-.327-.12l-.224-.774c-.138-.515-.311-1.014-.38-1.547l-.103-.808v-.962a9.94 9.94 0 0 1 .121-1.066c.12-.688.293-1.324.465-1.925.362-1.221.638-2.166.655-3.111.035-1.238.121-2.459.224-3.696a85.144 85.144 0 0 1 1-7.289c.862-4.83 2.086-9.505 3.362-14.146 1.258-4.642 2.448-9.369 3.775-13.958.656-2.321 1.345-4.71 2.345-7.048 1.034-2.303 1.965-4.349 2.896-6.601 1.828-4.4 3.741-9.007 6.121-13.235 2.275-4.246 4.603-8.509 7.137-12.652 1.844-3.008 3.793-5.965 5.913-8.818 2.121-2.785 4.12-5.587 6.293-8.406a77.934 77.934 0 0 1 7.016-8.01l7.155-7.632c2.413-2.544 5.051-5.071 7.758-7.288l7.913-6.824c5.258-4.59 10.809-9.059 16.498-13.133l8.431-6.171 4.137-3.18a59.762 59.762 0 0 1 4.431-3.077c3.017-1.908 6.103-3.61 9.085-5.346 2.966-1.856 6.31-3.489 9.499-4.865 3.19-1.426 6.448-2.767 9.672-4.142l4.844-2.063c1.621-.67 3.328-1.186 5-1.771l5.034-1.736c2-.584 3.845-.636 5.362-.928a7.888 7.888 0 0 0 1.051-.258c.155-.051.311-.103.449-.154l.534-.241a17.737 17.737 0 0 1 2.776-.963c1.827-.481 3.568-.722 5.12-1.134.465-.121.914-.258 1.344-.413.432-.154.776-.309 1.414-.567 1.138-.447 2.276-.705 3.362-.911 2.172-.413 4.155-.619 5.862-1.238.758-.257 1.81-.79 2.81-1.186 1-.395 1.999-.79 2.982-1.151 1.965-.722 3.896-1.427 5.707-2.252 1.827-.825 3.482-1.771 5.068-2.957a44.834 44.834 0 0 0 4.603-3.867c2.879-2.768 5.413-5.965 7.499-9.369 2.086-3.438 3.759-7.185 5.431-10.984 1.672-3.73 3.017-7.597 4.362-11.551 1.362-3.936 2.655-7.924 4.448-11.861a52.505 52.505 0 0 1 6.689-11.018 51.985 51.985 0 0 1 9.878-9.471 43.391 43.391 0 0 1 12.206-6.343c4.362-1.461 8.947-2.269 13.481-2.493 4.448-.258 8.931-.447 13.43-.378 4.672.086 9.362.43 13.999 1.289 4.672.877 9.103 2.218 13.533 3.696 4.414 1.495 8.775 3.352 12.861 5.569 1.931 1.015 4.052 1.84 6.189 2.802 1.069.482 2.155.997 3.207 1.599.534.292 1.052.636 1.569.997l1.414.997c3.654 2.578 7.447 5.054 11.136 7.701 3.707 2.63 7.258 5.535 10.655 8.543 3.396 3.008 6.672 6.102 9.982 9.162 1.655 1.53 3.31 3.042 4.999 4.538l2.534 2.2a22.802 22.802 0 0 1 2.483 2.51c2.655 3.111 4.586 6.377 7.654 8.766 1.518 1.358 2.845 2.837 4.207 4.246l4.138 4.177 8.344 8.371c2.706 2.819 5.672 5.312 8.671 7.89 1.276 1.1 2.552 2.235 3.759 3.387a84.903 84.903 0 0 0 3.741 3.283c2.551 2.08 5.206 4.263 7.827 6.171 2.689 1.891 5.568 3.541 8.482 5.191 2.93 1.599 5.844 3.403 8.706 5.019 7.809 4.349 16.102 7.976 24.325 11.637 3.896 1.685 7.81 3.301 11.792 4.745 1.983.722 3.983 1.392 6 2.028.982.31 2.051.619 3.086.997a101.8 101.8 0 0 1 3.017 1.169c1.965.791 3.896 1.564 5.861 1.994 1.931.481 4.017.292 6.396.911.293.086.603.189.914.327.31.12.655.361.81.447.397.257.828.464 1.259.636.879.361 1.844.584 2.844.739 2 .326 4.207.361 6.448 1.014 2.569 1.014 5.206.808 8.137.825.724 0 1.465.017 2.207.069l2.12.206c1.328.086 2.69.017 4.069-.103 2.758-.258 5.62-.791 8.637-.705l1.155.069.379.051s.156 0 .225-.017l.741-.412c.362-.155.707-.344 1.086-.482 1.465-.567 2.965-.825 4.413-1.014 2.242-.292 4.397-.447 6.276-1.169 2.155-.928 4.585-1.203 6.637-1.667 1.052-.224 2.034-.516 2.948-.928.965-.447 2.017-.98 3.103-1.41 1.069-.43 2.379-.773 3.569-.859a17.431 17.431 0 0 0 3.069-.568c4.085-1.1 7.913-3.523 12.43-4.761a18.028 18.028 0 0 1 3.482-.619c.81-.069.621.035.983-.206.482-.344.982-.636 1.5-.911 2.034-1.152 4.241-1.908 6.447-2.458 4.293-1.049 8.568-1.307 12.758-1.96a66.255 66.255 0 0 1 12.912-.498c2.155.12 4.293.361 6.431.704a65.23 65.23 0 0 1 3.172.602c1.069.224 2.103.533 3.086.688 1.017.172 2.086.292 3.207.55.551.137 1.12.292 1.689.567l1.431.756c1.862.946 3.81 1.736 5.793 2.544 2.465.98 5.034 2.097 7.395 3.318 2.397 1.186 4.81 2.406 7.189 3.696 4.776 2.544 9.241 5.689 13.551 8.887l12.809 9.712 1.638 1.203a7.473 7.473 0 0 1 1.603 1.684c.604.946.397.671.5.843.052.086.086.172.138.275.173.361.293.756.397 1.151.189.722.189 1.582.224 2.252.121.739 0 1.393-.293 2.166-.259.67-.362 1.41-.569 2.132-.069.223-.121.618-.431.67-.862.12-1-1.203-1.224-1.942-.259-.86-.483-1.805-.5-2.837v-.79c0-.155 0-.31-.017-.447a6.68 6.68 0 0 0-.156-.843 2.926 2.926 0 0 0-.189-.55c.069.103-.259-.515-.535-.79-.31-.361-.603-.619-1.103-.98l-3.034-2.286c-4.017-3.077-7.931-6.206-11.913-9.197-4.017-3.008-8.034-5.81-12.395-8.165-2.173-1.203-4.397-2.337-6.638-3.472a70.207 70.207 0 0 0-6.741-3.128c-1.568-.654-3.189-1.307-4.792-2.046a42.899 42.899 0 0 1-2.379-1.169l-.586-.326c-.173-.086-.259-.138-.431-.207a6.947 6.947 0 0 0-1-.309c-.724-.172-1.552-.292-2.414-.413-.827-.103-1.896-.343-2.638-.533a52.627 52.627 0 0 0-4.913-.962c-6.637-.997-13.344-.808-20.067.309-15.861.808-29.825 10.434-45.324 13.545-2.155.826-4.327 1.032-6.258 1.479-.483.103-.948.223-1.414.378-.482.155-.81.292-1.413.516a17.63 17.63 0 0 1-3.276.825c-2.155.344-4.224.447-6.051.928a9.61 9.61 0 0 0-2.569 1.049c-.396.24-.776.412-1.224.429-.224 0-.431 0-.655-.034l-.396-.052a13.114 13.114 0 0 0-1.431-.051c-3.914-.052-8.051 1.169-12.585.808l-1.552-.155c-.483-.034-.965-.069-1.483-.069h-3.086c-1.068 0-2.155 0-3.292-.137a12.542 12.542 0 0 1-1.724-.31c-.293-.069-.569-.154-.862-.24l-.69-.224c-1.603-.464-3.413-.567-5.362-.808-1.93-.24-4.085-.687-5.947-1.891-1-.687-2.914-.704-4.827-.893-2.018-.172-4.035-.705-5.845-1.358-1.844-.654-3.568-1.41-5.292-2.046-1.655-.619-3.5-1.083-5.328-1.702-3.62-1.169-7.189-2.492-10.723-3.902-7.051-2.853-13.895-5.982-20.739-9.213-3.414-1.65-6.81-3.369-10.12-5.26l-4.879-2.871-4.913-2.785c-3.172-1.822-6.379-3.781-9.293-6.136-2.844-2.252-5.723-4.521-8.482-7.013-2.672-2.544-5.31-4.796-8.12-7.22-1.379-1.203-2.758-2.458-4.068-3.782l-3.827-3.867-7.655-7.718a137.111 137.111 0 0 1-3.827-3.954 64.716 64.716 0 0 0-1.862-1.874c-.621-.601-1.241-1.082-2.034-1.804-2.897-2.734-4.759-5.948-7.086-8.406-.586-.636-1.155-1.152-1.845-1.736l-2.086-1.788-4.086-3.644c-7.309-6.652-14.343-13.391-22.377-18.874-3.982-2.767-8.189-5.483-12.171-8.302-1.845-1.238-4.069-2.132-6.344-3.095a73.673 73.673 0 0 1-3.466-1.547l-3.275-1.667c-4.983-2.424-10.258-4.28-15.637-5.81-5.361-1.616-10.775-2.527-16.36-2.836-6.638-.361-13.465-.103-20.102.378-6.551.619-12.982 2.578-18.55 5.982-5.569 3.472-10.448 8.079-14.154 13.511-1.862 2.716-3.431 5.621-4.741 8.646-1.293 3.025-2.379 6.223-3.483 9.42-1.293 3.764-2.568 7.58-4.154 11.31-1.621 3.679-3.224 7.34-5.19 10.898-3.948 7.151-9.568 13.339-16.55 17.74-4.431 2.647-9.361 3.833-13.74 5.81-2.431 1.134-5.051 1.392-7.413 1.822-1.19.206-2.328.481-3.362.928-1.172.516-2.465.894-3.707 1.169-2.499.533-4.827.825-6.947 1.891-2.672 1.083-5.224.808-7.362 1.513-4.637 1.615-9.326 3.042-13.826 5.105-4.672 1.994-9.43 3.936-13.981 6.102-2.293 1.066-4.397 2.355-6.638 3.679-2.224 1.289-4.431 2.527-6.586 3.85-2.154 1.324-4.24 2.716-6.206 4.28-2.017 1.599-4.068 3.129-6.12 4.659-4.12 3.042-8.275 5.999-12.258 9.11-6.775 5.294-13.136 11.242-19.705 16.846-3.172 2.819-6.068 5.999-8.982 9.179a232.1 232.1 0 0 1-4.465 4.761 61.979 61.979 0 0 0-4.241 4.762c-1.793 2.2-3.482 4.503-5.206 6.824-1.724 2.355-3.483 4.607-5.069 6.944-3.206 4.71-6.051 9.678-8.809 14.732-1.362 2.544-2.793 5.071-4 7.597-1.224 2.562-2.31 5.209-3.413 7.873l-1.707 4.005c-.586 1.358-1.242 2.647-1.724 3.902-1 2.579-1.724 5.329-2.5 8.131l-3.758 14.216c-1.276 4.727-2.345 9.488-3.034 14.25a67.339 67.339 0 0 0-.656 7.15l-.034.946c0 .395-.069.756-.121 1.117-.12.722-.31 1.358-.482 1.96-.345 1.186-.621 2.217-.587 3.128v.206l.018.018h.034c.017 0 .052 0 .069-.035.034-.051 0 0 0 .069.31.069.948.189 1.414.275 1.017.172 2.017.43 3.017.67.207.052.603.155.586.396l.103-.086ZM-2.47 709.744c-.138.758-.69 1.068-1.5 1.274-.328.104-1.122.155-1.69.069-.587-.086-1.19-.241-1.656-.361-.207-.241-.225-.706-.328-1.137-.07-.396-.12-.809-.19-1.205-.052-.586-.12-1.24-.103-1.964 0-.361.034-.74.12-1.153.035-.207.087-.414.156-.62.379-1.034.741-2.119 1-3.255.535-2.274.81-4.685 1.276-7.182.224-1.24.518-2.514.914-3.788l.259-.81c.069-.224.103-.465.138-.706.069-.516.103-1.102.172-1.756.07-.655.156-1.395.414-2.17l.535-1.774 1.052-3.513 2.087-7.027.259-.878c.051-.224.103-.448.138-.706.069-.517.103-1.085.155-1.722.051-.637.103-1.326.293-2.101.103-.396.224-.792.431-1.206.086-.206.242-.413.345-.602l.207-.328c1.121-1.791 1.673-4.012 2.121-6.389.897-4.925 2.415-9.764 3.933-14.431.758-2.342 1.517-4.667 2.207-6.992.656-2.308 1.345-4.753 2.087-7.113a198.74 198.74 0 0 1 4.967-14.018c2.622-6.682 5.553-13.329 9.313-19.564a215.391 215.391 0 0 1 5.916-9.058c1.052-1.481 2.139-2.962 3.328-4.374 1.156-1.412 2.518-2.807 3.708-4.03 9.124-11.246 22.525-18.272 33.649-26.831l8.9-5.941c1.465-.999 2.88-1.998 4.31-3.066l4.33-3.169c2.863-2.101 5.657-4.219 8.226-6.544 2.553-2.359 5.071-4.856 7.261-7.491a46.365 46.365 0 0 0 5.623-8.628c1.569-3.048 3.052-6.406 4.26-9.524a30.578 30.578 0 0 0 1.207-4.873c.138-.844.241-1.671.328-2.532l.103-1.274c0-.379.017-.741 0-1.12-.086-1.515-.535-3.099-1.018-4.856-.448-1.739-.983-3.72-.793-5.838.035-.465 0-.947 0-.844 0 0 .052.069.017.035l-.034-.052-.138-.19a7.576 7.576 0 0 1-.518-.775 17.474 17.474 0 0 1-1.569-3.237c-.81-2.187-1.242-4.305-1.88-6.2l-2.173-5.993-2.121-6.027a108.928 108.928 0 0 0-2.26-5.89c-.793-1.877-1.741-3.927-2.5-5.942-1.57-4.047-2.863-8.128-4.33-12.072l-4.432-11.986c-1.535-3.944-2.983-7.956-5.001-11.452a38.364 38.364 0 0 0-7.64-9.506c-3.036-2.79-6.485-4.96-10.245-6.906-3.932-2.067-8.003-3.772-12.262-4.702-1.104-.241-2.053-.379-3.294-.602a52.44 52.44 0 0 1-3.433-.793c-2.207-.585-4.328-1.171-6.38-1.36l-13.47-.155c-4.485-.017-8.934.138-13.263.913-4.415.826-8.9 2.359-13.332 3.823l-6.709 2.221-.845.276c-.293.086-.69.207-.983.258-.638.138-1.156.224-1.604.362-.448.138-.81.293-1.138.534-.259.172-.845.706-1.311 1.05-3.915 3.066-8.45 4.908-12.366 7.164-3.967 2.291-7.71 5.081-11.607 7.767-14.953 10.712-30.164 21.372-45.445 31.55l-9.951 6.802c-3.225 2.377-6.33 4.909-9.503 7.354-6.278 4.994-12.487 10.143-18.178 15.706-2.449 2.376-4.605 4.908-6.899 7.526-2.294 2.583-4.639 5.063-6.95 7.594-2.311 2.515-4.536 5.063-6.64 7.75a223.816 223.816 0 0 1-6.709 7.853c-6.209 6.871-12.556 13.536-19.058 20.132-6.157 6.182-12.504 12.193-19.264 17.755-6.847 5.494-13.712 10.764-20.559 16.154-9.037 7.267-18.505 14.07-27.629 21.165l-5.363 4.236c-1.829 1.395-3.674 2.721-5.502 4.065a112.843 112.843 0 0 0-5.364 4.133c-1.811 1.446-3.673 2.79-5.536 4.116-1.863 1.309-3.708 2.617-5.485 3.978-1.793 1.292-3.276 2.876-5.208 4.374-.483.362-1 .706-1.535 1.016-.517.293-.948.534-1.431.827a31.107 31.107 0 0 0-2.708 1.86c-1.777 1.309-3.484 2.772-5.226 4.202-3.466 2.721-6.743 5.442-9.848 8.456-3.07 3.031-6.209 6.079-9.072 9.265a58.628 58.628 0 0 0-4.018 4.994c-1.293 1.791-2.639 3.461-3.673 5.27-.535.912-.932 1.808-1.38 2.858a80.882 80.882 0 0 1-1.414 2.963c-.966 1.963-1.932 3.892-2.725 5.855a29.308 29.308 0 0 0-1.259 3.789l-.966 3.978c-.656 2.652-1.311 5.304-1.794 7.956l-.328 1.998a6.182 6.182 0 0 0-.051 1.773c.138 1.189.672 2.377 1.172 3.686 1.001 2.773 1.277 5.476 2.156 7.939.414 1.223.966 2.377 1.708 3.393l1.259 1.601c.431.568.828 1.154 1.207 1.757 1.397 2.445 2.811 4.563 4.622 6.544a36.023 36.023 0 0 0 2.829 2.807l.62.517.19.155c.242.206.518.379.759.585.483.362 1 .706 1.535.913.793.293 1.328.792 1.811 1.446.431.586.966 1.085 1.466 1.619.155.173.466.414.345.706-.311.827-1.587.259-2.329 0-.879-.275-1.759-.602-2.587-1.033a12.715 12.715 0 0 1-2.431-1.619c-.259-.206-.483-.43-.725-.637l-.362-.31-.741-.672c-.501-.447-.966-.929-1.449-1.412-.949-.964-1.811-1.997-2.639-3.065-.828-1.068-1.569-2.204-2.277-3.358l-.965-1.636c-.311-.5-.656-1.016-1.001-1.499-.603-.826-1.724-2.049-2.345-3.341a19.013 19.013 0 0 1-1.501-3.943c-.741-2.652-1-5.098-1.931-7.285-.449-1.205-.983-2.6-1.052-4.236-.035-.81.103-1.654.207-2.239l.362-1.946c.517-2.566 1.155-5.098 1.793-7.578l.932-3.719a31.235 31.235 0 0 1 1.224-3.858c1.328-3.41 3.087-6.493 4.502-9.592.327-.741.707-1.636 1.155-2.463.449-.827.949-1.619 1.466-2.377 1.035-1.515 2.087-2.858 3.105-4.288 2.121-2.927 4.535-5.58 6.985-8.111 2.466-2.514 4.88-5.029 7.485-7.474a116.21 116.21 0 0 1 4.656-4.116l4.743-3.875c1.569-1.309 3.173-2.635 4.881-3.875a39.203 39.203 0 0 1 2.656-1.756c1-.569 1.707-.948 2.466-1.533 1.501-1.137 2.967-2.669 4.691-3.944 1.656-1.274 3.346-2.462 5.019-3.633 1.673-1.172 3.346-2.325 4.95-3.548 1.586-1.188 3.156-2.532 4.829-3.772 3.449-2.583 6.933-4.959 10.193-7.646 3.328-2.669 6.726-5.27 10.123-7.836 6.83-5.132 13.574-10.212 20.231-15.568l18.074-14.294c5.933-4.787 11.573-9.954 17.04-15.327 5.45-5.373 10.745-10.918 16.04-16.498 5.277-5.58 10.399-11.211 15.177-17.204 4.811-5.855 10.106-10.987 14.883-16.636 5.019-5.7 10.728-10.608 16.437-15.379 1.431-1.188 2.845-2.376 4.311-3.547l4.433-3.462 4.432-3.461 2.208-1.723 2.293-1.567 18.42-12.623c4.19-2.842 8.227-5.752 12.349-8.628 4.104-2.859 8.192-5.804 12.262-8.766 4.087-2.927 8.158-5.941 12.245-8.817 4.07-2.893 8.244-5.941 12.866-8.301 2.587-1.326 5.122-2.617 7.416-4.133.57-.379 1.138-.775 1.673-1.188.57-.396.931-.827 1.828-1.43.81-.516 1.742-.826 2.536-.998l1.069-.224a7.13 7.13 0 0 0 .897-.241c5.467-1.722 10.934-3.737 16.591-5.305 6.916-1.98 14.16-2.101 21.075-1.963l5.192.086h2.57c.845.017 1.707 0 2.69.052 3.811.258 7.14 1.584 10.365 2.204l2.553.448c.88.172 1.759.362 2.638.603a43.239 43.239 0 0 1 5.105 1.67c3.33 1.292 6.485 2.911 9.538 4.65 6.209 3.53 11.624 8.576 15.367 14.707a43.105 43.105 0 0 1 2.914 5.597c.811 1.895 1.57 3.806 2.311 5.718 1.466 3.823 2.812 7.68 4.191 11.504 1.432 3.806 2.725 7.732 4.053 11.538.673 1.912 1.38 3.806 2.173 5.649.794 1.825 1.639 3.771 2.363 5.683 1.621 4.271 2.984 8.576 4.536 12.812 1.88 4.22 2.121 9.059 4.691 12.4.328.396.483.964.535 1.429.052.448.034.844 0 1.206-.052.74-.052 1.24.034 1.911.156 1.292.518 2.584.88 3.944.362 1.343.724 2.755.845 4.254.121 1.532-.069 2.945-.224 4.357-.362 2.824-1.001 5.631-2.122 8.3-1.069 2.584-2.207 5.15-3.466 7.664-2.346 4.736-5.433 9.196-9.124 12.985-1.828 1.912-3.69 3.754-5.691 5.494-2 1.739-4.087 3.358-6.174 4.925l-6.313 4.65c-2.121 1.567-4.294 3.031-6.467 4.495-4.38 2.91-8.64 5.7-12.763 8.937a40.062 40.062 0 0 1-2.81 1.929c-1.036.62-1.915 1.085-2.812 1.705-1.776 1.188-3.467 2.583-5.209 3.961-1.707 1.412-3.673 2.721-5.312 3.996-1.672 1.343-3.26 2.824-4.777 4.374-1.535 1.55-3.018 3.186-4.536 4.805l-2.294 2.411a47.274 47.274 0 0 0-2.138 2.411c-2.742 3.323-5.07 7.043-7.485 10.763-6.26 9.764-10.52 20.838-14.332 31.894a175.593 175.593 0 0 0-2.587 8.404c-.794 2.859-1.708 5.718-2.622 8.525-.914 2.807-1.828 5.597-2.587 8.387-.828 2.824-1.259 5.545-1.931 8.593-.31 1.274-.725 2.583-1.328 3.858-.294.602-.707 1.291-1.018 1.791-.172.258-.293.689-.38 1.205-.172 1.051-.103 2.342-.43 3.858-.363 1.326-.708 2.462-1.07 3.702l-2.138 7.285-.535 1.826-.259.878c-.069.224-.12.448-.155.706-.172.999-.103 2.394-.535 3.926-.793 2.343-1.12 4.616-1.5 7.147-.38 2.48-.793 5.115-1.777 7.681-.103.31-.051.155-.068.224v.052l-.018.12v.276c0 .206 0 .43.052.671.052.431.069.913.034 1.43-.069.103-.172.155-.241.327 0 .103.069.241.224.362.035.068.259.12.518.172l.776.172c.224.052.672.172.62.413l-.051-.017ZM583.888-167.253c.12-1.555 2.563-1.244 3.767-1.762.241-.104.482-.19.74-.242.086-.035.327-.052.585-.069.24-.018.481-.035.722-.035 1.084 0 2.236-.034 3.286 0l1.599.035h.809l.155.017-.241.346-.499.691-.98 1.399-2.013 2.748-.809 1.002a49.7 49.7 0 0 1-1.892 2.177c-.86.95-1.754 1.866-2.649 2.748-1.806 1.779-3.681 3.473-5.573 5.114l-5.608 4.907a192.914 192.914 0 0 1-5.729 4.89c-3.904 3.18-7.964 6.169-12.265 8.865l-12.729 7.775-6.331 3.871c-2.098 1.296-4.18 2.73-6.261 4.06-4.146 2.713-8.257 5.443-12.111 8.467-2.803 2.212-5.59 4.476-8.274 6.825-2.666 2.333-5.178 4.839-7.655 7.43-2.46 2.575-4.799 5.253-6.898 8.07l-6.382 8.76c-4.3 5.84-8.738 11.422-12.454 17.539l-11.095 18.54c-1.927 3.076-3.51 6.169-5.195 9.417-.843 1.607-1.686 3.232-2.598 4.839-.464.794-.929 1.607-1.411 2.384a52.592 52.592 0 0 0-1.341 2.264c-1.703 3.058-3.097 6.358-4.748 9.659l-5.006 9.624c-1.72 3.162-3.01 6.393-4.507 9.763-.74 1.676-1.514 3.352-2.408 5.01a113.651 113.651 0 0 0-2.477 4.753c-3.131 6.428-5.832 13.046-8.378 19.802a295.036 295.036 0 0 1-2.408 6.082l-1.29 3.024c-.43.967-.826 1.935-1.221 2.92-1.531 3.94-3.011 8.138-4.628 12.13l-4.73 12.026c-1.497 4.113-3.2 8.139-4.8 12.113-.843 1.987-1.428 3.94-2.408 6.117-.946 2.073-2.03 3.957-2.907 5.805-.43.934-.809 1.85-1.084 2.765a31.214 31.214 0 0 1-1.118 3.231c-.895 2.126-1.978 4.078-3.079 5.962-1.119 1.9-2.151 3.663-3.114 5.581a58.534 58.534 0 0 1-3.423 5.737c-2.494 3.68-5.402 7.067-8.618 10.125-3.355 3.197-7.243 6.255-11.836 7.983-1.135.432-2.287.812-3.56 1.054-1.239.242-2.477.328-3.682.346-1.204.017-2.373-.018-3.509-.052l-1.686-.035c-.619-.034-1.255-.034-1.875-.121-5.04-.535-9.409-3.144-13.159-5.875-.964-.708-1.841-1.347-2.821-2.142-.947-.778-1.824-1.624-2.65-2.454-1.651-1.693-3.13-3.421-4.713-4.959-3.475-3.387-6.588-7.205-9.272-11.214-2.649-3.871-5.591-7.568-8.515-11.318-2.907-3.784-5.814-7.43-9.031-10.851-3.217-3.404-6.606-6.67-10.373-9.28l-11.766-7.343c-3.853-2.28-8.326-3.905-12.437-6.065-1.961-.933-4.18-1.451-6.434-1.987a66.7 66.7 0 0 1-3.44-.864c-1.153-.31-2.323-.795-3.32-1.089-2.116-.621-4.404-.898-6.709-1.226-1.153-.173-2.34-.346-3.509-.588-1.187-.224-2.357-.622-3.406-.864-2.013-.466-4.146-.605-6.331-.864a36.88 36.88 0 0 1-3.285-.5c-1.153-.243-2.099-.536-3.131-.675-2.047-.31-4.18-.328-6.348-.345-1.083 0-2.167 0-3.268-.052-.619-.035-.963-.052-1.514 0-.533.034-1.204.138-2.013-.138-3.302-1.262-7.121-.674-11.043-1.21-.964-.12-2.013-.397-2.856-.605a34.304 34.304 0 0 0-2.718-.466c-1.84-.242-3.715-.363-5.608-.519-1.737-.155-3.492-.328-5.229-.656a92.317 92.317 0 0 0-5.058-.933c-3.388-.501-6.829-.847-10.286-1.434-6.864-1.245-13.659-3.059-20.11-5.789-4.352-1.797-8.566-3.87-12.695-6.082a79.593 79.593 0 0 1-11.869-7.672c-3.527-2.713-6.847-5.616-10.167-8.536-3.337-2.972-6.399-6.22-9.272-9.607A204.822 204.822 0 0 1 98.014-8.39c-3.2-4.958-6.141-10.108-9.014-15.205l-8.721-15.31c-2.288-4.008-4.593-7.878-7.346-11.524-2.7-3.715-5.47-7.361-8.394-10.852-2.925-3.49-6.038-6.808-9.376-9.832a284.563 284.563 0 0 1-10.149-9.227c-1.6-1.52-3.2-3.023-4.834-4.492-1.6-1.469-3.302-2.868-4.937-4.406-3.25-3.041-6.21-6.325-9.186-9.556-2.924-3.266-6.055-6.307-9.082-9.538a208.785 208.785 0 0 1-8.773-9.935c-1.772-2.16-3.51-4.303-5.161-6.601-1.617-2.298-3.08-4.7-4.438-7.136a216.195 216.195 0 0 1-3.905-7.413c-1.239-2.557-2.185-5.27-2.873-8.018-.688-2.747-1.1-5.546-1.41-8.328-.413-3.128.86-5.979 1.307-8.467.034-.311.103-.639.12-.933 0-.156.035-.311.035-.467v-.656a19.207 19.207 0 0 0-.258-1.694c-.035-.259-.155-.604-.103-.794.189-.052.516 0 .774-.035h1.685l1.308-.052c.62-.017 1.256-.052 1.84-.207.843-.225 1.6-.104 2.374.19.689.259 1.428.415 2.133.639.224.069.62.139.654.45.12.881-1.256.984-1.978 1.175a23.84 23.84 0 0 1-2.632.535c-.912.121-1.858.19-2.787.173-.034 0-.034-.017-.069-.035.018 0-.068-.017-.068 0v.432c-.086 1.556-.465 2.955-.809 4.217-.344 1.261-.67 2.419-.757 3.507a8.363 8.363 0 0 0 0 1.607l.207 1.901c.31 2.523.74 5.011 1.393 7.43a38.308 38.308 0 0 0 2.632 6.981c1.17 2.315 2.322 4.613 3.56 6.86 1.24 2.246 2.547 4.44 3.992 6.514 1.427 2.073 3.044 4.095 4.661 6.099 4.421 5.478 9.17 10.644 14.175 15.655 4.989 5.132 9.513 10.575 14.76 15.102 6.364 5.409 12.11 11.284 18.423 16.64 6.227 5.668 11.456 12.251 16.376 18.938 1.273 1.763 2.546 3.456 3.802 5.287a110.334 110.334 0 0 1 3.475 5.547c2.202 3.732 4.317 7.447 6.468 11.214 4.317 7.482 8.412 15.068 13.073 22.221 4.18 6.514 8.756 12.752 13.642 18.73 2.442 2.973 4.988 5.858 7.706 8.537 2.684 2.66 5.677 5.149 8.636 7.654 2.959 2.471 5.969 4.839 9.134 6.981 3.131 2.143 6.502 3.94 9.926 5.72 6.829 3.507 13.882 6.548 21.279 8.397 2.047.519 4.128 1.002 6.192 1.417 2.047.415 4.146.709 6.262.985 2.116.276 4.266.536 6.451.881 1.084.173 2.167.363 3.268.605 1.05.225 2.013.398 3.045.536 4.06.553 8.584.5 12.97 1.693 1.841.45 3.888.484 6.073.536 2.167.069 4.575.207 6.898 1.088 0 .052.705 0 1.754-.069l2.426.07c1.565.017 3.165 0 4.816.069 1.652.069 3.338.207 5.041.587.911.225 1.513.38 2.27.518.74.139 1.48.242 2.254.329 1.531.19 3.131.31 4.782.535a26.6 26.6 0 0 1 2.512.467c.412.086.877.242 1.238.328.361.104.705.19 1.067.277 2.907.69 6.089.846 9.392 1.537.654.139 1.325.312 1.978.502.671.207 1.325.449 1.858.622 1.118.38 2.305.673 3.526.95 2.426.57 5.041 1.071 7.604 2.16 1.342.587 2.305 1.14 3.475 1.659l3.457 1.537c2.34 1.037 4.714 2.143 6.984 3.525l6.537 4.01c2.168 1.382 4.369 2.556 6.503 4.198 4.197 3.197 7.826 6.877 11.284 10.713a132.885 132.885 0 0 1 5.66 6.843l5.401 6.929c1.789 2.332 3.561 4.734 5.212 7.17a66.606 66.606 0 0 0 5.299 6.757c1.152 1.296 2.305 2.471 3.578 3.732 1.273 1.296 2.442 2.609 3.612 3.853 1.187 1.244 2.374 2.419 3.664 3.404 1.376 1.054 2.752 2.091 4.163 3.024 2.804 1.866 5.814 3.3 8.98 3.767.808.104 1.548.155 2.425.173l2.632.069c1.72.052 3.372.034 4.937-.225 3.096-.57 6.21-2.056 8.928-3.939 2.718-1.918 5.264-4.286 7.62-6.757a57.036 57.036 0 0 0 6.331-8.052 53.802 53.802 0 0 0 2.58-4.423 81.946 81.946 0 0 1 2.563-4.666c1.05-1.797 2.082-3.525 2.942-5.322.43-.898.808-1.797 1.152-2.712.172-.45.31-.916.448-1.383.154-.535.344-1.071.533-1.59.791-2.056 1.823-3.887 2.769-5.701.981-1.832 1.669-3.543 2.409-5.547l4.661-11.474c1.445-3.818 3.045-7.689 4.542-11.525l2.821-7.136 2.718-7.17c.894-2.42 2.013-4.77 2.976-7.103.98-2.35 1.909-4.717 2.838-7.101a275.881 275.881 0 0 1 5.883-14.221 136.24 136.24 0 0 1 3.338-6.964c1.221-2.315 2.442-4.458 3.44-6.79 1.084-2.385 2.081-4.838 3.2-7.258 1.152-2.436 2.425-4.717 3.612-7.084 1.204-2.35 2.46-4.683 3.63-7.033 1.135-2.367 2.219-4.786 3.44-7.17a59.255 59.255 0 0 1 1.978-3.525 82.777 82.777 0 0 0 1.979-3.37c1.255-2.28 2.442-4.648 3.664-6.998 1.204-2.367 2.546-4.683 3.904-6.946l4.06-6.825 6.864-11.595c2.339-3.87 4.937-7.568 7.603-11.197 2.718-3.611 5.316-7.222 7.913-10.85 1.308-1.798 2.58-3.63 3.974-5.461a79.968 79.968 0 0 1 4.386-5.236c4.043-4.458 8.378-8.726 13.057-12.544 2.322-1.918 4.627-3.802 7.07-5.633 2.425-1.815 4.902-3.525 7.397-5.184l7.483-4.907c2.511-1.607 5.092-3.145 7.637-4.718 5.075-3.144 10.305-6.237 15.207-9.365 4.18-2.765 8.154-5.84 12.007-9.106 1.927-1.624 3.785-3.318 5.711-5.011 1.91-1.693 3.836-3.335 5.694-5.028 1.858-1.694 3.664-3.422 5.316-5.253.825-.916 1.651-1.832 2.408-2.799.155-.19.086-.104.12-.173l.052-.069.069-.138a.468.468 0 0 0-.293.138c-.051.052 0 0 0-.069v-.069a2.502 2.502 0 0 0-.326-.07l-.757-.138c-1.015-.173-2.013-.432-3.011-.674-.206-.052-.602-.155-.585-.397l-.051.086Z%27/%3E%3Cpath d=%27M234.218 711.117c-.121 1.548-2.567 1.238-3.772 1.754-.465.206-1.016.344-1.516.344h-1.912l-1.653.017h-.982c-.103-.034-.069-.241-.12-.361l-.155-.808-.293-1.617-.121-1.084c-.051-.309-.051-.636-.069-.945-.258-5.091 1.172-9.769 1.516-14.189.103-1.118.103-2.167.052-3.302-.052-1.187-.086-2.442.017-3.732a11.78 11.78 0 0 1 .327-1.995c.086-.344.19-.688.327-1.032l.311-.791c.378-.998.654-2.047.878-3.131.465-2.184.517-4.402.947-6.931.414-2.442 1.102-4.764 1.809-7.034 1.464-4.454 2.738-8.977 4.564-13.466 1.877-4.317 3.479-8.685 5.546-13.037a70.275 70.275 0 0 1 1.636-3.216l1.757-3.044 3.513-6.088c.862-1.445 1.688-3.01 2.618-4.506a58.048 58.048 0 0 1 2.98-4.317c2.084-2.786 4.323-5.4 6.545-7.98a181.402 181.402 0 0 1 14.175-14.945c4.995-4.713 10.265-9.167 15.811-13.243 2.738-2.047 5.701-3.99 8.526-5.796 1.395-.929 2.773-1.858 4.03-2.855 1.257-1.032 2.652-2.184 4.047-3.199a43.14 43.14 0 0 1 4.444-2.907c1.55-.911 3.272-1.599 4.754-2.27 3.048-1.376 6.045-2.906 9.008-4.523 6.028-3.491 12.71-5.744 19.066-8.014 1.894-.723 3.875-.774 5.425-.964.793-.086 1.499-.223 2.033-.43l1.068-.515c.447-.19.878-.379 1.343-.534 3.634-1.272 7.182-1.186 10.093-2.063 3.634-1.032 7.216-.998 10.575-1.136.81-.034 1.757-.068 2.635-.051l2.532.034c.81 0 1.567-.034 2.274-.137a5.9 5.9 0 0 0 .981-.224c.345-.103.483-.172.999-.395 4.341-1.824 8.715-1.514 12.298-2.391.448-.103.895-.224 1.326-.361l1.498-.465 2.997-.86c1.981-.55 3.944-1.049 5.856-1.616 3.858-1.118 7.337-2.563 10.558-4.799 1.619-1.083 3.169-2.304 4.702-3.577l2.274-1.96 1.119-1.015c.31-.275.551-.551.827-.894 1.085-1.325 1.843-3.268 3.548-5.16l1.085-1.084c.31-.326.603-.67.896-1.031a20.403 20.403 0 0 0 1.567-2.322c.965-1.634 1.826-3.492 2.652-5.332l2.532-5.52 5.081-11.042 1.344-2.889c.603-1.118 1.274-1.892 1.619-2.58.086-.172.172-.344.224-.499l.275-.705c.19-.499.362-.997.586-1.479a43.63 43.63 0 0 1 1.309-2.889c3.996-8.101 10.868-14.602 18.894-18.609 4.03-2.012 8.439-3.285 12.9-3.853 2.257-.275 4.409-.429 6.769-.343 2.325.137 4.444.567 6.407.619h1.481c.534 0 1.085.034 1.619.086 1.068.068 2.136.24 3.17.447 2.084.413 4.064 1.049 5.993 1.72l5.65 2.046c.93.327 1.86.619 2.773.895.465.12.93.275 1.395.361l.689.172.172.034h.051s.173.069.259.086c.155.069.275.138.362.207.172.137.258.223.327.309.12.138.051.069.103.103 3.565 2.786 8.319 4.523 12.763 7 4.443 2.477 8.491 5.452 12.469 8.41l5.322 3.956c1.775 1.376 3.462 2.838 5.116 4.299l4.926 4.369c1.636 1.393 3.376 2.82 5.012 4.334 3.289 2.992 6.39 6.122 9.524 9.184 3.118 3.044 6.442 5.968 9.577 9.098 5.477 5.4 10.868 10.749 16.965 15.41l8.904 7.24c2.997 2.391 6.132 4.558 9.266 6.742a249.025 249.025 0 0 0 16.552 10.353c2.825 1.6 5.701 3.113 8.612 4.592a188.064 188.064 0 0 0 8.801 4.266l11.936 5.555c3.979 1.857 7.94 3.749 12.005 5.4 3.823 1.6 7.647 3.13 11.557 4.42a88.69 88.69 0 0 0 5.89 1.772 95.497 95.497 0 0 1 6.045 1.685c1.981.602 3.945 1.187 5.908 1.531.999.189 1.912.258 3.031.361 1.068.12 2.119.292 3.152.481 2.067.379 4.065.792 6.063.998.999.103 1.981.138 2.962.12.483-.017.982-.051 1.464-.12.5-.052 1.068-.138 1.585-.172 2.859-.241 5.666-.069 8.37-.155a30.357 30.357 0 0 0 3.996-.344 17.057 17.057 0 0 0 1.912-.413c.655-.172 1.412-.378 2.101-.498 2.859-.533 5.632-.568 8.25-1.032a18.222 18.222 0 0 0 1.929-.413l1.964-.602c1.378-.413 2.756-.722 4.134-.997 2.152-.43 4.288-.774 6.372-1.239 2.084-.464 4.168-.997 6.252-1.582 4.168-1.152 8.319-2.459 12.608-3.474 4.202-.929 8.284-2.219 12.47-3.423 2.084-.584 4.202-1.169 6.372-1.582a92.861 92.861 0 0 1 6.459-.98l6.201-.74a60.162 60.162 0 0 1 6.321-.43 60.244 60.244 0 0 1 12.555 1.135c1.034.207 2.067.43 3.083.688.534.138.982.258 1.447.327.483.086.982.138 1.481.189 1.017.104 2.084.172 3.221.482.551.137 1.189.464 1.585.688.448.241.895.447 1.36.671 3.686 1.702 7.734 2.855 11.506 4.918 2.256 1.393 4.512 2.357 6.958 3.457 1.206.551 2.411 1.135 3.582 1.84 1.206.723 2.222 1.566 3.256 2.339 4.168 3.199 8.215 6.536 12.177 9.958 1.98 1.72 3.944 3.457 5.89 5.212 2.067 1.788 3.772 4.42 4.134 7.274.224 1.411.155 2.821.172 4.077V617.935l.034.981c.018.619.052 1.238.207 1.84.224.843.103 1.582-.207 2.373-.258.688-.413 1.428-.637 2.116-.069.223-.138.602-.448.653-.878.121-.981-1.255-1.171-1.977a23.395 23.395 0 0 1-.534-2.649 19.027 19.027 0 0 1-.172-2.786l.034-.929v-3.078c-.034-1.084-.206-2.099-.551-3.045-.344-.946-.878-1.805-1.55-2.614-.327-.413-.723-.791-1.119-1.169l-1.344-1.239a290.643 290.643 0 0 0-5.46-4.867 251.503 251.503 0 0 0-11.247-9.321l-1.446-1.118a15.005 15.005 0 0 0-1.378-.946c-.965-.602-1.998-1.118-3.083-1.634-2.153-1.015-4.547-1.995-6.717-3.354-2.704-1.616-5.805-2.7-8.939-3.955-1.568-.619-3.169-1.307-4.72-2.133-.981-.585-2.6-.602-4.34-.808-.844-.086-1.929-.327-2.635-.516a36.185 36.185 0 0 0-2.394-.533 51.035 51.035 0 0 0-4.823-.757 59.607 59.607 0 0 0-9.748-.292c-1.912.103-3.738.326-5.718.584l-5.787.723a69.803 69.803 0 0 0-11.247 2.356c-3.738 1.049-7.475 2.218-11.351 3.096-3.789.825-7.492 1.891-11.246 2.958-16.035 3.732-31.571 8.633-48.14 8.083-.448.034-.861.103-1.292.138-.499.051-.999.12-1.481.137-.999.069-1.981.035-2.945-.034-1.929-.138-3.807-.482-5.598-.809-1.808-.326-3.565-.636-5.287-.774-1.964-.154-3.858-.567-5.684-1.049l-5.305-1.53c-1.688-.482-3.531-.877-5.322-1.393-3.6-1.015-7.113-2.236-10.575-3.56-3.462-1.325-6.855-2.769-10.231-4.197l-10.024-4.661c-6.665-3.147-13.417-6.105-19.927-9.562-6.356-3.251-12.505-6.931-18.481-10.801a235.152 235.152 0 0 1-8.853-6.019 246.152 246.152 0 0 1-4.323-3.165c-1.412-1.1-2.773-2.235-4.151-3.371l-8.284-6.759c-2.791-2.201-5.495-4.609-8.061-7.068l-7.63-7.395c-2.515-2.477-5.133-4.764-7.751-7.241-3.513-3.319-6.872-6.707-10.403-9.872-1.756-1.599-3.565-3.027-5.442-4.626l-5.426-4.73c-1.791-1.548-3.599-3.061-5.494-4.42l-5.821-4.248c-3.858-2.803-7.734-5.504-11.867-7.636-3.858-2.012-8.095-3.612-12.005-6.622a1.774 1.774 0 0 1-.396-.412l-.035-.035.741-.636c.138-.12.241-.224.276-.275.051-.052.051-.103.068-.121.276-1.324-.378 1.789-.31 1.462H516.252l-.638-.154c-.43-.104-.843-.19-1.257-.31-.827-.224-1.636-.482-2.446-.74-1.601-.533-3.169-1.118-4.702-1.685-3.083-1.135-6.097-2.184-9.162-2.597a17.2 17.2 0 0 0-2.308-.189c-.707-.017-1.637 0-2.532-.052-1.774-.103-3.41-.395-4.978-.533a20.697 20.697 0 0 0-2.308-.086c-.809 0-1.602.052-2.394.103a44.26 44.26 0 0 0-4.736.602c-6.252 1.152-12.126 4.007-17.086 8.032-4.978 3.99-8.818 9.253-11.178 15.186-.155.361-.293.74-.431 1.118l-.206.568c-.069.189-.172.481-.276.705-.43.946-.999 1.668-1.412 2.287a5.28 5.28 0 0 0-.5.894l-.499 1.084-1.033 2.253-4.151 9.046c-1.654 3.543-3.204 7.103-4.978 10.629-.93 1.754-2.015 3.543-3.41 5.091-.345.395-.706.774-1.102 1.118-.362.344-.586.567-.862.928-.533.671-1.016 1.479-1.532 2.305-.517.843-1.086 1.72-1.809 2.545-.792.86-1.516 1.411-2.239 2.081-1.481 1.29-2.997 2.563-4.564 3.75-3.135 2.39-6.683 4.488-10.455 5.778-4.65 1.669-9.369 2.58-13.916 4.059-2.446.74-4.926.929-7.286 1.204-1.188.138-2.342.31-3.462.568-.551.137-1.102.292-1.636.481-.568.189-.965.396-1.671.671-2.635.86-5.15.516-7.492.533-2.342.069-4.822.103-7.148.258a29.013 29.013 0 0 0-3.462.464c-1.067.224-2.307.637-3.548.843-2.445.43-4.822.602-7.009 1.256-.569.154-1.103.361-1.637.602-.275.103-.517.257-.775.378a7.58 7.58 0 0 1-1.016.43c-1.378.43-2.67.481-3.892.602-1.241.12-2.308.275-3.411.722l-3.513 1.256c-4.668 1.668-9.301 3.422-13.59 5.778a151.613 151.613 0 0 1-13.399 6.673c-2.153 1.049-4.186 2.391-6.132 3.853a72.039 72.039 0 0 0-2.876 2.287c-.965.826-1.998 1.6-3.032 2.322-14.347 8.995-26.868 20.26-37.891 32.935-3.652 4.282-7.389 8.462-10.386 13.054a48.648 48.648 0 0 0-2.118 3.525l-2.119 3.664-4.237 7.309c-2.635 4.816-4.512 10.113-6.769 15.307-1.068 2.528-1.946 5.159-2.807 7.825-.827 2.666-1.74 5.383-2.515 8.014-.637 2.253-1.154 4.489-1.36 6.777-.224 2.407-.517 4.918-1.292 7.378-.19.602-.431 1.238-.655 1.806-.172.412-.275.894-.361 1.393-.155 1.014-.173 2.132-.121 3.285.052 1.1.121 2.476.052 3.732a43.2 43.2 0 0 1-.379 3.715c-.345 2.425-.792 4.764-.999 7.034-.121 1.135-.138 2.253-.121 3.371.035.55.052 1.1.138 1.633.052.379.035.258.052.31v.069s.103-.035.138-.052l.034-.034c.017 0-.034 0 .034-.017h.224c1.068-.121 2.05.137 3.049.309 1.016.172 2.015.43 3.014.671.207.052.603.155.586.396l-.138.017ZM889.954 70.189c.756.138 1.065.689 1.272 1.498.103.345.154 1.137.085 1.688-.068.586-.223 1.171-.343 1.67-.464.362-1.649.397-2.388.466-.567.034-1.117.069-1.684.137l-.842.104-.429.051-1.46.224-1.598.293c-2.113.413-4.244.999-6.443 1.533-2.164.534-4.329 1.05-6.459 1.619-4.227 1.12-8.453 2.549-12.645 3.96a191.147 191.147 0 0 0-6.236 2.257l-3.093 1.206c-.927.378-1.838.843-2.766 1.395-1.855 1.067-3.762 2.41-6.133 3.306l-1.615.534a25.53 25.53 0 0 0-1.46.569c-.962.413-1.924.878-2.869 1.394-7.662 4.358-15.204 8.991-21.853 14.726-4.896 4.133-9.552 8.507-13.641 13.347-2.062 2.428-3.865 4.943-5.738 7.629a601.066 601.066 0 0 0-5.498 7.957c-3.625 5.356-6.958 10.712-10.05 16.465-1.684 2.91-3.659 5.58-5.601 8.18l-5.772 7.767c-7.645 10.437-15.737 20.564-22.18 31.689-3.418 5.494-6.803 10.902-8.864 16.775-.464 1.395-1.048 3.186-1.701 4.667l-1.959 4.461c-.653 1.464-1.151 2.859-1.718 4.426l-1.683 4.547c-1.323 3.616-2.543 7.216-3.385 10.884-.876 3.858-1.976 7.578-2.783 11.281-.722 3.84-1.907 7.698-2.921 11.349-1.082 3.669-1.666 7.337-2.491 11.229-.412 1.929-.893 3.892-1.58 5.821l-1.031 2.739a62.195 62.195 0 0 0-.911 2.686c-.584 1.826-1.151 3.686-1.803 5.563-.653 1.895-1.444 3.737-2.217 5.511-1.597 3.6-3.419 7.148-5.703 10.454-2.268 3.324-5.103 6.338-8.281 8.766-3.35 2.618-7.027 4.736-10.772 6.596-1.89.93-3.745 1.774-5.652 2.635-.962.431-1.976.844-3.058 1.172-.533.155-1.1.31-1.667.413-.55.103-1.254.172-1.649.207-3.694.361-7.422 2.29-11.665 3.203-3.986.93-7.92 1.877-11.614 3.289-4.209 1.585-8.349 2.257-11.974 4.082-3.78 1.74-7.405 3.806-10.755 6.252-6.666 4.839-12.181 11.435-15.222 19.082-.738 1.86-1.374 3.841-1.803 5.77-.413 1.928-.602 3.943-.67 5.993-.069 2.049-.001 4.116.017 6.217.068 2.119-.069 4.22.189 6.131.068.483.154.948.275 1.378.051.224.137.413.206.62l.292.741a61.91 61.91 0 0 1 1.065 3.014c.653 2.015 1.22 4.047 1.821 6.027.601 1.998 1.22 3.962 1.959 5.873.635 1.877 1.889 3.445 2.851 5.546 1.323 3.496 2.646 6.751 4.57 9.765.928 1.464 2.113 2.928 3.127 4.46l3.041 4.564c1.014 1.516 2.027 3.014 3.109 4.444 1.066 1.429 2.234 2.807 3.402 4.236 2.302 2.825 4.587 5.649 7.078 8.215 4.33 4.272 9.174 8.215 14.242 11.643 2.543 1.705 5.172 3.306 7.886 4.65a59.326 59.326 0 0 0 8.487 3.375c.962.31 1.993.603 2.938.844.928.224 1.975.327 3.109.655.275.086.567.172.859.292l.705.293c.446.172.91.327 1.391.465.945.276 1.907.448 2.887.569 1.975.223 3.968.172 5.995-.069a88.39 88.39 0 0 0 6.116-.862c15.772-1.928 28.743-11.211 42.796-18.6 4.759-2.342 9.741-4.236 14.328-6.492 1.014-.569 2.388-1.499 4.037-1.602a29.807 29.807 0 0 0 3.831-.362c1.237-.206 2.474-.482 3.643-.878a31.57 31.57 0 0 1 3.899-1.102c4.158-.948 8.453-.879 12.525-.879l12.352-.034h6.168c2.096 0 4.192.103 6.27.344 2.079.241 4.141.569 6.168 1.016 1.014.207 2.027.465 3.024.724l1.494.413c.447.138.756.172 1.254.207.447.017.98 0 1.564.086.55.034 1.288.293 1.701.499.893.396 1.786.758 2.697 1.12 1.821.723 3.659 1.395 5.497 2.067 3.694 1.343 7.439 2.617 11.082 4.271 7.318 3.358 13.537 8.456 19.602 13.502 3.951 3.169 7.164 7.13 10.308 10.936 1.563 1.895 3.23 3.755 4.776 5.752 1.546 1.981 3.006 3.996 4.45 6.028 2.903 4.065 5.772 7.957 9.208 11.574.842.964 1.649 1.997 2.337 3.134l.549.93c.172.31.327.637.481.947.275.62.533 1.257.842 1.843.464.844.447 1.757.206 2.635-.24.775-.412 1.55-.756 2.239-.103.207-.223.603-.549.586-.877-.069-.756-1.344-.945-2.016-.206-.792-.481-1.532-.739-2.256-.275-.74-.618-1.464-.928-2.204-.103-.241-.206-.5-.343-.741l-.172-.327-.412-.672a17.766 17.766 0 0 0-.928-1.291c-.67-.879-1.375-1.619-2.199-2.549-3.196-3.582-5.876-7.492-8.556-11.281-1.34-1.894-2.68-3.771-4.071-5.58-1.375-1.774-2.938-3.548-4.399-5.373-2.937-3.617-5.806-7.199-9.225-10.058-4.845-4.099-9.673-8.129-15.016-11.246-5.291-3.152-11.304-4.96-17.317-7.13a148.65 148.65 0 0 1-5.24-1.998l-1.306-.551c-.429-.189-.549-.224-.927-.276-.653-.103-1.701.052-2.938-.258-3.556-.982-7.078-1.722-10.669-2.136-3.573-.447-7.198-.344-10.943-.378l-11.099-.035h-5.789c-1.907 0-3.763.086-5.618.31a30.77 30.77 0 0 0-5.429 1.154c-.842.258-1.838.637-2.818.878-.979.259-1.975.448-2.972.586a29.19 29.19 0 0 1-3.006.276c-.894 0-1.409.189-2.199.585l-1.237.706c-.498.276-.928.465-1.375.672l-2.645 1.223c-3.539 1.584-7.096 3.048-10.48 4.736-3.041 1.498-6.013 3.341-9.054 5.046-3.024 1.739-6.065 3.462-9.157 5.115-3.11 1.653-6.236 3.22-9.518 4.633-3.367 1.412-6.82 2.29-10.239 3.1-3.367.826-6.958 1.533-10.428 1.929-3.471.482-7.319.654-11.013-.362a20.245 20.245 0 0 1-2.662-.947c-.567-.241-1.323-.379-2.182-.534-1.873-.31-3.557-.913-5.257-1.43-3.385-1.119-6.718-2.514-9.879-4.219-6.064-3.324-11.562-7.423-16.699-11.901-2.577-2.17-5.102-4.719-7.301-7.302-2.234-2.601-4.295-5.218-6.443-7.853-2.182-2.721-4.037-5.598-5.893-8.388a189.602 189.602 0 0 0-2.8-4.116c-.464-.654-.979-1.326-1.495-2.084a43.954 43.954 0 0 1-1.408-2.256 47.56 47.56 0 0 1-2.302-4.701c-.705-1.55-1.237-3.342-1.873-4.53-.687-1.309-1.787-2.842-2.44-4.598a66.622 66.622 0 0 1-1.735-4.891l-2.027-6.528a61.584 61.584 0 0 0-1.1-3.151l-.635-1.602c-.258-.672-.395-1.326-.498-1.963-.413-2.566-.258-4.84-.361-7.079-.052-2.273-.138-4.581-.052-6.957.086-2.36.361-4.788.979-7.131a44.564 44.564 0 0 1 2.354-6.716c1.924-4.357 4.622-8.301 7.783-11.815 3.642-4.047 7.954-7.405 12.593-10.144a75.846 75.846 0 0 1 7.146-3.685c2.526-1.171 5.172-1.843 7.646-2.584 1.511-.447 2.886-.878 4.363-1.463a61.37 61.37 0 0 1 4.605-1.464c3.04-.879 6.27-1.499 9.105-2.274 2.886-.844 5.875-2.135 9.277-2.583l1.22-.121c.326-.034.653-.086.996-.155.67-.137 1.358-.361 2.045-.602 1.374-.5 2.783-1.189 4.209-1.826 5.635-2.566 11.081-5.528 15.531-9.627 4.484-4.047 7.645-9.386 10.222-14.984.738-1.653 1.494-3.358 2.13-5.011.636-1.671 1.203-3.41 1.77-5.184.566-1.757 1.133-3.548 1.838-5.322a35.091 35.091 0 0 0 1.701-5.115c.91-3.496 1.443-7.164 2.388-10.833.927-3.634 2.078-7.147 2.955-10.695.515-2.153.944-4.495 1.546-6.699l1.701-6.648c.979-4.495 2.508-8.939 4.106-13.21l2.405-6.458c.859-2.17 1.872-4.237 2.749-6.321a43.593 43.593 0 0 0 1.185-3.134c.361-1.12.756-2.204 1.203-3.29.876-2.17 1.907-4.253 3.006-6.286 2.285-4.219 4.914-8.18 7.336-12.193 2.422-4.099 5.171-8.008 7.903-11.866 5.532-7.681 11.218-15.225 16.819-22.871 2.388-3.238 4.81-6.407 6.752-9.8 1.872-3.496 3.9-7.078 6.03-10.488 2.13-3.428 4.364-6.786 6.631-10.11 2.303-3.307 4.467-6.648 7.027-9.903 3.367-4.288 7.164-8.18 11.167-11.831 3.986-3.617 8.161-7.113 12.627-10.196 4.467-3.117 9.054-5.821 13.761-8.542a39.468 39.468 0 0 1 3.729-1.843c1.271-.586 2.748-.947 3.745-1.395 2.233-.964 4.363-2.618 6.94-3.875 4.381-1.912 8.608-3.358 12.971-4.874l6.529-2.136c2.216-.688 4.449-1.291 6.666-1.86l6.614-1.67c2.233-.568 4.501-1.102 6.855-1.447l2.096-.379c.515-.086 1.185-.086 1.529-.034.034.069.154.19.292.241.103 0 .24-.069.361-.224.034-.052.068-.069.085-.155l.086-.344.172-.775c.052-.224.172-.672.412-.62l.069-.138ZM-26.045 709.672c-.155.772-.724 1.047-1.483 1.27-.293.103-1.07.189-1.655.189-.621 0-1.173-.103-1.69-.155-.38-.051-.948-.12-1.242-.274.035-.412.121-.858.242-1.321l1.655-7.002c.517-2.162 1.397-4.41 2.173-6.349l2.31-6.091c1.535-4.084 3.07-8.168 4.81-12.218 3.605-7.893 6.346-16.096 9.64-24.229 1.603-4.05 3.19-8.082 4.69-12.149a367.011 367.011 0 0 0 2.172-6.109l1.017-3.072.242-.738s.017-.085.017-.343c0-.257 0-.669.103-1.132.035-.223.138-.498.207-.67l.155-.377c2.38-5.869 4.863-11.634 6.88-17.537l.742-2.231a31.81 31.81 0 0 1 .913-2.351c.656-1.51 1.38-2.934 2-4.307a34.5 34.5 0 0 0 .845-2.059c.207-.618.518-1.562.828-2.299.638-1.562 1.414-3.02 2.173-4.428.758-1.407 1.517-2.745 2.138-4.101.603-1.338 1.293-2.951 2.052-4.358 1.5-2.883 3.241-5.629 5.103-8.254 3.725-5.217 7.777-10.21 12.363-14.74a108.538 108.538 0 0 1 7.104-6.452l7.242-6.143 7.276-6.178c2.621-2.11 5.38-3.689 7.673-5.577 2.225-1.75 4.156-4.427 6.966-6.537a17.36 17.36 0 0 1 1.104-.755l1.052-.618c.62-.361 1.19-.772 1.758-1.219 1.121-.892 2.156-1.939 3.121-3.071.966-1.133 1.88-2.368 2.81-3.638.898-1.253 1.932-2.608 2.76-3.792 1.672-2.454 2.983-5.182 3.965-8.031a49.284 49.284 0 0 0 1.466-5.251c.19-.875.38-1.836.5-2.659.12-.824.155-1.665.138-2.523-.034-1.699-.31-3.415-.845-5.011-.276-.72-.603-1.716-.896-2.625l-.914-2.763-.914-2.762-.828-2.626a55.635 55.635 0 0 0-2.034-5.079c-1.518-3.346-3.328-6.658-5.07-9.987-3.534-6.589-7.448-13.007-11.466-19.373-4.017-6.298-8.328-12.407-14.104-16.902-3.035-2.42-6.397-4.462-9.915-6.264-3.483-1.87-7.07-3.14-10.932-3.998-3.827-.875-7.793-1.39-11.794-2.025l-.741-.12c-.207-.017-.396-.051-.604-.068a7.762 7.762 0 0 0-1.275 0c-.863.068-1.776.24-2.725.463-1.862.463-4 .995-6 1.304-2.087.343-4.138.618-6.087 1.047-1.965.394-3.776 1.046-5.776 1.767-3.914 1.39-7.794 2.832-11.57 4.462a98.864 98.864 0 0 0-11.018 5.559l-10.845 6.178a2826.68 2826.68 0 0 0-21.278 12.149c-3.517 2.213-7.38 3.861-10.466 6.177-3.31 2.506-6.776 4.719-10.156 7.001-2.965 1.957-5.741 4.067-8.587 6.264-2.844 2.162-5.69 4.29-8.448 6.52-5.587 4.376-10.501 9.438-15.381 14.638l-6.293 6.572c-2.052 2.196-4 4.495-5.949 6.812l-5.811 6.984c-1.913 2.351-3.793 4.719-5.793 7.053-5.5 6.108-10.69 12.32-16.294 18.36a615.666 615.666 0 0 1-16.329 16.474c-2.776 2.694-5.673 5.285-8.552 7.876l-8.535 7.79-22.76 20.781c-5.846 5.508-11.501 11.222-16.76 17.245-2.673 2.969-5.052 6.195-7.501 9.335-2.414 3.174-4.966 6.229-7.311 9.455-4.621 6.177-8.983 12.423-11.207 19.751l-1.914 5.405c-.621 1.819-1.362 3.603-1.638 5.388-.621 3.638-.138 7.413 1.103 10.948.759 2.213 1.845 4.324 3.018 6.435a57.7 57.7 0 0 0 3.862 6.023c1.414 1.904 2.949 3.74 4.638 5.405 1.656 1.682 3.518 3.192 5.38 4.753l11.277 9.215 3.586 2.986.776.617c.483.395 1 .841 1.535 1.116.758.394 1.172.926 1.569 1.578.345.567.845 1.013 1.379 1.408.172.137.517.257.5.583 0 .909-1.603.652-2.414.326-.983-.292-1.897-.807-2.672-1.356a24.342 24.342 0 0 1-2.139-1.716l-.672-.617-2.242-1.922-2.603-2.179c-3.483-2.9-7.018-5.783-10.501-8.752-1.724-1.476-3.535-3.02-5.138-4.753a49.614 49.614 0 0 1-4.466-5.44 58.873 58.873 0 0 1-3.724-5.937c-1.104-2.025-2.19-4.118-3.001-6.383-1.103-3.055-1.741-6.332-1.655-9.661.052-1.665.276-3.329.707-4.942.448-1.579 1-2.986 1.5-4.479 1.052-2.951 2-5.868 3.138-8.871 1.207-2.969 2.742-5.8 4.432-8.46 3.983-6.229 8.431-11.857 12.949-17.606 2.259-2.848 4.414-5.783 6.862-8.494a219.45 219.45 0 0 1 7.397-8.03c10.518-10.948 22.054-20.729 33.072-31.059l7.517-6.933c2.501-2.334 5.035-4.53 7.484-6.898 4.897-4.667 9.621-9.575 14.38-14.448 4.742-4.822 9.138-9.97 13.639-15.101 2.224-2.591 4.604-5.096 6.742-7.636l6.466-7.893c4.224-4.994 8.345-10.227 13.087-14.912 4.552-4.667 8.949-9.627 13.914-14.14 4.966-4.513 10.346-8.425 15.536-12.406 5.19-4.17 10.983-7.585 16.139-11.411l1.31-.995a27.73 27.73 0 0 1 1.466-1.03 45.711 45.711 0 0 1 2.966-1.785 121.182 121.182 0 0 0 5.724-3.294l11.57-6.813 23.226-13.401c4.569-2.574 9.362-4.668 14.19-6.538a283.385 283.385 0 0 1 7.277-2.677c1.19-.412 2.465-.892 3.793-1.218 1.31-.343 2.62-.601 3.914-.824 3.138-.515 6-.892 8.949-1.699 1.517-.36 3.138-.738 4.914-.755.88-.017 1.862.155 2.535.258l2.276.36c6.052.944 12.38 1.905 18.242 4.547 5.708 2.66 11.156 5.869 15.88 10.107 4.76 4.273 8.38 9.404 11.76 14.586 3.897 6.126 7.639 12.303 11.104 18.687 3.328 6.4 6.984 12.749 9.001 19.905l2.052 6.28c.293 1.03.793 2.145 1.069 3.278.293 1.132.483 2.299.586 3.466a18.445 18.445 0 0 1-.034 3.518c-.138 1.201-.38 2.282-.604 3.397-.5 2.214-1.103 4.41-1.914 6.555a36.488 36.488 0 0 1-2.965 6.195 32.195 32.195 0 0 1-1.932 2.866l-1.983 2.694c-1.327 1.802-2.707 3.638-4.328 5.285a21 21 0 0 1-2.638 2.299c-.913.704-2.051 1.304-2.862 1.819-1.793 1.201-3.328 2.883-4.948 4.548-1.621 1.75-3.57 3.208-5.484 4.53-1.913 1.321-3.827 2.574-5.5 4.049l-5.276 4.496-10.553 9.009a99.07 99.07 0 0 0-9.638 9.747c-4.983 5.954-9.725 12.234-12.898 19.184-.379.841-.758 1.767-1.207 2.711-.43.91-.896 1.802-1.362 2.66-.93 1.733-1.845 3.415-2.534 5.131-.362.858-.587 1.699-.966 2.728a37.873 37.873 0 0 1-1.19 2.797c-.827 1.802-1.69 3.518-2.276 5.251-1.586 4.976-3.552 9.918-5.535 14.74l-1.482 3.621-.742 1.802c-.155.394-.172.394-.19.549l-.051.961c0 .223-.104.583-.155.772l-.156.463-.31.944-.62 1.87-1.294 3.724c-3.535 9.918-7.604 19.493-11.208 29.308a174.8 174.8 0 0 1-2.5 6.247c-.88 2.093-1.776 4.084-2.603 6.126-1.656 4.084-3.173 8.253-4.725 12.423l-2.345 6.229c-.724 1.956-1.207 4.067-1.69 6.212l-.069.326v.12l-.051.223-.07.446-.12.91c-.034.394-.052.24-.138.326-.103.051-.259.206-.224.291 0 .103.086.224.241.326.018.052.328.103.57.155l.793.171c.224.052.672.172.62.412l-.034.103ZM552.812-167.235c.12-1.549 2.559-1.239 3.761-1.755.464-.207 1.014-.344 1.512-.344h3.005l1.666-.035h2.92c.241 0 .67-.068.326.207l-1.992 2.34-3.469 4.078a45.428 45.428 0 0 1-2.336 2.478c-1.614 1.601-3.332 3.081-5.084 4.474-3.538 2.771-7.23 5.214-10.975 7.589l-11.232 6.883c-3.693 2.289-7.299 4.75-10.872 7.245-3.555 2.512-7.024 5.111-10.288 7.933-3.263 2.805-6.217 5.936-9.154 9.171a190.406 190.406 0 0 0-6.166 7.176c-1.958 2.409-3.795 4.973-5.599 7.572l-5.41 7.88-5.324 7.882-5.307 7.881-4.758 8.243-4.757 8.243c-1.58 2.787-3.177 5.506-4.586 8.294-.704 1.376-1.305 2.77-2.026 4.284a113.651 113.651 0 0 1-2.199 4.32c-1.511 2.839-3.074 5.592-4.5 8.397-1.391 2.736-2.679 5.765-4.19 8.604a166.929 166.929 0 0 1-4.672 8.432c-1.58 2.65-2.834 5.472-4.156 8.38-1.271 2.96-2.834 5.782-4.311 8.604l-8.931 16.967c-3.658 6.59-6.784 13.543-10.374 20.357-.91 1.704-1.82 3.407-2.817 5.094-.996 1.669-1.992 3.252-2.833 4.852-.43.792-.808 1.6-1.117 2.41-.326.825-.687 1.806-1.065 2.684-.755 1.807-1.597 3.562-2.473 5.3-1.752 3.459-3.692 6.763-5.547 10.066-1.787 3.287-3.796 6.763-6.063 9.895a82.67 82.67 0 0 1-7.437 8.965 43.977 43.977 0 0 1-9.188 7.434 48.036 48.036 0 0 1-2.714 1.549c-.91.499-1.941.98-2.971 1.342a21.572 21.572 0 0 1-6.389 1.24c-4.466.274-8.691-1.326-12.384-2.857-3.813-1.429-7.625-3.442-11.026-5.73-3.435-2.29-6.647-4.87-9.773-7.4-6.509-5.197-13.293-10.05-20.232-14.661-3.469-2.289-6.99-4.44-10.665-6.264a67.834 67.834 0 0 0-5.617-2.478l-2.954-1.101c-1.013-.396-1.992-.843-2.954-1.273-1.872-.86-3.692-1.704-5.547-2.29-.962-.309-1.752-.464-2.886-.688-.549-.12-1.15-.292-1.717-.567-.636-.31-.928-.517-1.374-.706-1.683-.791-3.624-1.222-5.616-1.652l-6.046-1.222-12.057-2.409c-1.958-.378-4.002-.585-6.08-.946-2.129-.361-4.001-.895-6.028-1.119-3.487-.464-7.076-.602-10.683-.998-1.803-.206-3.607-.464-5.41-.86a41.078 41.078 0 0 0-5.204-.878c-3.487-.361-7.214-.585-10.734-1.445-1.718-.344-3.453-.602-5.187-.688a26.622 26.622 0 0 0-2.611.034c-.944.034-1.889 0-2.868-.12-.807-.121-1.683-.31-2.525-.81a13.041 13.041 0 0 0-1.906-.928c-1.323-.517-2.765-.844-4.242-1.102-2.972-.464-6.098-1.084-9.034-1.944-5.96-1.687-11.645-4.061-17.244-6.54-3.779-1.669-7.54-3.493-11.112-5.644-3.59-2.116-6.939-4.766-10.013-7.502a134.758 134.758 0 0 1-16.214-16.933c-4.929-6.109-9.171-12.716-12.898-19.6-2.49-4.594-4.671-9.275-7.11-13.818a335.057 335.057 0 0 0-7.557-13.508 227.7 227.7 0 0 0-6.424-10.273c-2.164-3.287-4.963-6.143-7.763-9.086-1.408-1.48-2.8-2.977-4.122-4.594-.687-.843-1.22-1.566-1.89-2.237a25.742 25.742 0 0 0-2.146-1.945c-.773-.636-1.494-1.153-2.387-1.772-.98-.74-1.65-1.652-2.267-2.41-.602-.774-1.185-1.393-1.838-1.737a15.235 15.235 0 0 1-2.68-1.807c-1.58-1.308-2.902-2.788-4.259-4.113a20.864 20.864 0 0 0-2.095-1.841 20.692 20.692 0 0 1-2.284-1.979c-1.426-1.394-2.697-2.89-3.985-4.32a184.043 184.043 0 0 0-3.985-4.198c-5.393-5.524-11.112-10.858-15.784-17.259-2.92-4.044-5.272-8.346-7.59-12.683-2.268-4.37-4.277-8.896-5.857-13.594-1.477-4.646-3.126-9.481-2.92-14.678 0-.258.051-.826.069-.843 0-.138.017-.276-.052-.396a.527.527 0 0 0-.137-.138l-.086-.069-.224-.223a3.334 3.334 0 0 1-.704-1.17c-.154-.431-.189-.964-.171-.878v-.155l-.035-.344c0-.516.052-1.033.017-1.583l-.034-.792c.017-.241-.155-.654.189-.568.48-.034.945-.068 1.408-.155 1.632-.223 2.13-.103 2.954.19.687.258 1.426.413 2.13.636.223.069.618.138.653.448.12.877-1.254.981-1.975 1.17-.43.103-.876.224-1.306.31l-.652.12-.327.052c-.085 0-.051.034-.085.051-.12.121-.018.19-.035.224 0 .052-.017-.069-.017.155v.155c.017.069.034.103.052.138 0 .017.034.051.085.086l.035.034.154.138.31.275c.36.379.618.895.704 1.411.034.258.051.533.017.809l-.069.619-.034.74v1.583c.206 4.216 1.649 8.604 3.023 12.872 1.442 4.25 3.263 8.38 5.324 12.407 2.078 3.992 4.293 8.053 6.801 11.684 3.504 4.99 7.832 9.43 12.246 13.835 2.198 2.203 4.43 4.423 6.612 6.711 2.216 2.289 4.14 4.767 6.39 6.574.6.464 1.51 1.153 2.18 1.772.722.637 1.374 1.308 2.027 1.962 1.288 1.29 2.508 2.547 3.864 3.476.344.24.688.464 1.031.654l.635.361c.258.155.498.327.722.499.893.723 1.494 1.566 2.044 2.237.566.706 1.013 1.222 1.648 1.635a28.03 28.03 0 0 1 2.268 1.72c1.442 1.17 2.902 2.616 4.001 4.113 1.1 1.394 2.285 2.72 3.521 4.044 2.456 2.65 5.067 5.266 7.334 8.277 4.431 6.384 8.261 12.889 12.022 19.566 1.872 3.32 3.659 6.693 5.41 10.083 1.769 3.39 3.384 6.815 5.204 10.101 3.264 5.972 6.922 11.702 11.078 17.053a136.503 136.503 0 0 0 13.689 15.023 127.004 127.004 0 0 0 7.643 6.677c2.593 2.065 5.41 3.871 8.347 5.506 2.937 1.635 5.977 3.063 9.12 4.423 3.125 1.376 6.251 2.701 9.411 3.889 3.058 1.135 6.132 2.133 9.275 2.908 1.58.396 3.109.705 4.723.98 1.632.276 3.349.569 5.067 1.102.858.275 1.734.602 2.559 1.032.206.104.412.207.618.327l.464.259c.189.103.463.189.773.258a11.32 11.32 0 0 0 2.095.223c.361 0 .738 0 1.116-.017.447-.017.893-.034 1.34-.034 1.786 0 3.521.189 5.221.464.859.138 1.683.31 2.525.5.79.171 1.528.326 2.336.43 3.143.499 6.457.602 9.875 1.152.842.12 1.735.327 2.542.517.773.172 1.546.327 2.319.464 1.563.258 3.177.448 4.792.585 3.246.293 6.578.448 9.978.947 1.701.224 3.418.67 4.912.912 1.563.275 3.195.447 4.878.705 4.586.792 8.862 1.652 13.311 2.478 2.198.43 4.414.81 6.595 1.274 2.215.464 4.568.946 6.853 2.133.326.172.446.241.635.327.189.086.378.155.584.207.412.12.893.206 1.477.31 1.254.223 2.37.585 3.504.98 2.233.81 4.259 1.825 6.269 2.668 1.03.447 1.923.757 3.04 1.153 1.082.378 2.164.808 3.229 1.239a73.446 73.446 0 0 1 6.2 2.977c4.637 2.477 8.982 5.403 13.259 8.328a286.967 286.967 0 0 1 12.589 9.155c4.964 3.82 9.549 7.864 14.702 11.013a48.254 48.254 0 0 0 8.055 4.027c2.851 1.187 5.616 2.323 8.433 2.701 2.782.379 5.753.052 8.433-.877 1.339-.465 2.593-1.136 3.916-1.893a45.475 45.475 0 0 0 3.778-2.427c2.439-1.738 4.637-3.716 6.681-5.97a83.541 83.541 0 0 0 5.805-7.004 77.507 77.507 0 0 0 5.754-9.052c1.786-3.2 3.641-6.315 5.358-9.481 1.735-3.184 3.281-6.367 4.569-9.774 1.477-3.545 3.658-6.522 5.376-9.654 4.362-7.812 7.969-16.09 12.452-23.988L427.933.026l3.143-5.954c1.065-1.996 2.112-3.958 3.006-6.005.961-2.117 1.906-4.25 2.988-6.367 1.082-2.134 2.336-4.096 3.435-6.126 2.284-4.044 4.328-8.14 6.286-12.407 2.061-4.233 4.431-8.26 6.492-12.373a74.051 74.051 0 0 0 1.477-3.114 76.777 76.777 0 0 1 1.512-3.201c1.064-2.1 2.215-4.147 3.366-6.178l5.857-10.342 2.936-5.18c.979-1.72 1.924-3.475 3.058-5.093 4.396-6.573 8.759-13.25 13.224-19.737 2.937-4.354 6.08-8.759 9.567-12.751 3.452-4.044 6.973-7.968 10.889-11.685 3.916-3.665 8.158-6.934 12.486-9.98 4.328-3.046 8.708-6.023 13.242-8.776 7.643-4.698 15.406-9.206 22.07-14.902a48.6 48.6 0 0 0 4.637-4.56l.532-.603.413-.516.103-.137s.189-.19 0-.155c-.155.034-.206.086-.258.137 0 .035 0 .018 0 0l-.172-.034-.378-.052-1.494-.275c-1.013-.172-2.009-.43-3.005-.671-.207-.052-.602-.155-.584-.396l.051.172Z%27/%3E%3Cpath d=%27M890.328 80.735c.292.276.464.5.498.877a1.26 1.26 0 0 1-.636 1.17c-.74.585-1.582.929-2.133 1.359-.43.344-.963.619-1.479.756-.619.138-1.221.258-1.806.379l-.877.155-.43.086-1.376.24c-.481.104-.963.207-1.427.31-.465.12-.912.258-1.342.396l-.636.24c-.258.103-.585.241-.877.31-1.187.361-2.288.499-3.303.653-.997.155-1.926.31-2.648.602-.19.07-.344.155-.516.241l-.723.379c-.481.24-.963.481-1.462.705-3.921 1.788-7.928 2.94-11.626 4.506-3.715 1.65-7.568 3.302-11.162 5.125-3.647 1.806-6.949 3.99-10.286 6.432l-5.039 3.663c-1.737 1.239-3.44 2.322-5.022 3.543-3.199 2.442-6.175 5.211-8.978 8.152-2.03 2.133-3.99 4.369-5.917 6.639l-2.889 3.439a64.759 64.759 0 0 0-2.683 3.457c-3.406 4.747-6.209 10.01-9.185 15.255-5.95 10.526-12.658 20.57-19.83 30.269-3.612 4.868-7.465 9.494-11.197 14.172-3.766 4.644-7.206 9.459-10.629 14.361-1.703 2.442-3.354 4.901-4.85 7.429-1.479 2.494-2.872 5.177-4.231 7.808-2.7 5.298-5.229 10.646-7.103 16.219-1.153 3.353-2.15 6.759-3.113 10.215l-.723 2.597c-.275.981-.413 1.462-.481 2.305-.086.826-.104 1.737-.276 2.803-.103.534-.189 1.135-.567 1.875l-.361.636c-.103.155-.172.31-.241.482-.636 1.29-.894 2.889-1.17 4.678-.137.894-.292 1.84-.55 2.82-.12.482-.275.981-.464 1.479-.19.534-.31.774-.448 1.187-1.014 3.044-1.083 6.604-1.719 10.319l-2.236 10.56-.551 2.597c-.155.791-.206 1.565-.292 2.494-.069.911-.172 1.909-.43 2.958l-.791 2.683-3.096 10.267c-.98 3.457-2.339 7.034-4.042 10.285-1.823 3.474-3.99 6.742-6.364 9.82-2.407 3.113-5.211 5.985-8.496 8.29a33.241 33.241 0 0 1-5.194 3.01l-5.229 2.407-5.211 2.391-2.614 1.187c-.895.412-1.944.756-2.907 1.014-2.029.534-3.99.826-5.762 1.325-.447.12-.86.258-1.307.395l-1.427.465-2.838.911-11.249 3.577c-3.594 1.29-7.24 2.924-10.611 4.678-3.371 1.823-6.484 4.059-9.185 6.742-5.331 5.211-8.961 12.228-10.354 19.503-.258 1.789-.223 3.681-.258 5.658 0 .981-.086 2.03-.189 2.993-.103.894-.086 1.823-.034 2.734.223 3.681 1.548 7.31 2.683 11.042.946 3.199 2.133 6.294 3.646 9.27 1.462 2.975 3.423 5.675 5.28 8.53 1.858 2.821 3.732 5.59 5.848 8.152 2.115 2.528 4.489 4.971 6.931 7.224 2.098 1.943 4.3 3.646 6.673 5.245 2.357 1.617 4.73 3.147 7.276 4.283 2.528 1.169 5.211 1.651 8.101 2.201 1.427.292 2.889.619 4.334 1.187 1.272.516 2.562.842 3.904 1.014 1.806.241 3.681.19 5.572.035 1.892-.189 3.887-.275 5.642-.637 3.629-.739 7.12-2.407 10.887-3.663 6.862-2.218 13.295-5.607 19.796-8.977 3.251-1.686 6.519-3.354 9.907-4.868 3.371-1.496 6.776-2.837 10.061-4.351 2.219-1.118 4.765-1.857 7.172-2.322 2.443-.498 4.851-.808 7.138-1.375 1.187-.258 2.167-.637 3.526-.981a21.07 21.07 0 0 1 3.818-.481c2.528-.104 4.902 0 7.344-.104 7.654-.137 15.411 0 23.081 1.239 1.944.309 3.767.722 5.607.928 1.858.241 3.75.396 5.659.585 1.909.189 3.835.43 5.762.826 1.926.361 3.835 1.066 5.555 1.651 3.457 1.152 6.914 2.081 10.509 2.872 3.732.911 7 2.717 10.302 4.11 3.319 1.411 6.88 2.735 9.907 5.143 2.734 2.39 5.796 4.248 8.84 6.415 7.447 5.658 13.863 12.434 19.676 19.623a201.066 201.066 0 0 1 8.376 11.076l3.337 4.265c.378.533.774 1.084 1.204 1.617.619.739.842 1.668.722 2.614-.086.825-.206 1.651-.499 2.373-.103.224-.206.637-.516.619-.877-.051-.825-1.289-1.101-1.874-.292-.723-.653-1.342-1.066-1.978-.413-.654-.912-1.29-1.376-1.995l-.499-.705-1.737-2.219c-.722-.946-1.29-1.823-1.909-2.7a187.363 187.363 0 0 0-7.705-10.25c-2.7-3.319-5.452-6.587-8.428-9.614a138.3 138.3 0 0 0-4.592-4.437c-1.599-1.445-3.165-2.872-4.816-4.111-2.287-1.72-4.798-3.285-7.206-5.125a46.508 46.508 0 0 1-1.789-1.445 19.224 19.224 0 0 0-1.617-1.221c-1.135-.756-2.373-1.393-3.68-1.995-1.29-.602-2.649-1.135-4.008-1.702-1.393-.568-2.751-1.204-4.076-1.806-1.324-.602-2.648-1.17-3.956-1.617-1.341-.481-2.579-.756-4.093-1.083a106.376 106.376 0 0 1-10.062-2.821c-3.147-1.152-6.346-1.651-9.769-1.995-1.685-.172-3.405-.327-5.142-.55-1.72-.189-3.543-.551-5.16-.86a89.393 89.393 0 0 0-10.079-1.221c-3.525-.241-7.086-.31-10.629-.275l-5.366.086c-1.823 0-3.577-.018-5.297.086-.86.051-1.686.154-2.494.309-.791.155-1.514.396-2.477.688-1.806.516-3.612.86-5.383 1.17-3.56.619-6.863 1.221-9.941 2.803-2.976 1.376-5.986 2.597-8.909 3.887-2.924 1.273-5.762 2.717-8.634 4.196-5.711 2.958-11.403 6.14-17.526 8.634-1.514.636-3.079 1.187-4.644 1.737-1.479.499-2.958 1.066-4.489 1.651-2.993 1.152-6.295 2.356-9.787 2.58-3.164.292-6.587.722-10.095.103a17.292 17.292 0 0 1-2.597-.654c-.413-.137-.878-.326-1.222-.447-.326-.12-.67-.241-1.014-.361-1.411-.43-2.959-.722-4.558-1.032-1.531-.309-3.165-.653-4.764-1.204-1.583-.55-3.096-1.255-4.524-2.029-2.889-1.6-5.417-3.388-8.015-5.28-2.579-1.944-4.953-4.128-7.172-6.398-2.201-2.253-4.385-4.661-6.26-7.258-1.892-2.579-3.595-5.228-5.297-7.825-.843-1.273-1.755-2.597-2.58-4.007a50.638 50.638 0 0 1-2.253-4.283c-1.376-2.889-2.477-6.002-3.354-8.977-.929-2.941-2.013-5.985-2.477-9.305a20.465 20.465 0 0 1-.206-3.422c0-.568.068-1.187.103-1.703.051-.481.069-.98.086-1.479.069-1.995-.069-4.179.189-6.466.31-2.391.946-4.386 1.634-6.501a41.081 41.081 0 0 1 2.649-6.054 39.66 39.66 0 0 1 8.083-10.405c3.251-2.993 6.983-5.4 10.905-7.292 2.218-1.067 4.471-2.099 6.793-2.993a61.125 61.125 0 0 1 3.526-1.255c1.204-.379 2.408-.705 3.543-1.084l6.897-2.218 3.44-1.101c1.238-.43 2.511-.74 3.715-.98 1.445-.31 2.838-.568 4.145-.964a13.223 13.223 0 0 0 1.892-.687l1.978-.895 7.928-3.611c2.701-1.222 5.212-2.288 7.499-3.887 2.288-1.565 4.386-3.44 6.244-5.521 3.68-4.248 6.914-9.081 9.236-14.223 1.186-2.597 2.012-5.211 2.837-8.049l2.512-8.393.739-2.476c.275-.895.447-1.445.55-2.253.104-.774.155-1.617.241-2.511.052-.447.103-.912.189-1.376l.276-1.273 2.218-10.113c.826-3.164.929-6.587 1.634-10.078.189-.877.396-1.754.705-2.614.138-.413.344-.894.465-1.255.137-.362.258-.723.378-1.118.43-1.531.585-3.234.946-4.988.224-1.083.55-2.201 1.084-3.25.24-.516.653-1.101.705-1.307.137-.344.206-.826.258-1.325.12-.997.137-2.081.344-3.233.258-1.204.567-2.098.843-3.165 1.152-4.093 2.339-8.186 3.783-12.21 2.907-8.101 6.846-15.651 11.025-23.115 2.236-3.835 4.781-7.447 7.31-11.024 2.511-3.578 5.142-7.172 7.877-10.595 5.486-6.896 11.042-13.586 15.978-20.81a281.21 281.21 0 0 0 12.074-18.677c3.801-6.329 7.034-13.037 11.231-19.383a62.784 62.784 0 0 1 4.54-6.071 294.262 294.262 0 0 1 4.851-5.71c3.302-3.766 6.793-7.412 10.68-10.663 1.927-1.634 4.025-3.164 6.072-4.54 2.012-1.376 3.99-2.855 6.002-4.317 2.012-1.462 4.059-2.941 6.226-4.282 2.167-1.342 4.403-2.528 6.673-3.63 1.927-.945 3.87-1.822 5.797-2.682 1.909-.86 3.869-1.789 5.899-2.545 4.025-1.548 7.963-2.77 11.558-4.747 2.459-1.204 4.764-1.067 6.484-1.582.223-.052.413-.12.619-.19l.688-.275c.55-.223 1.101-.413 1.668-.567a34.834 34.834 0 0 1 3.251-.723l.31-.069.103-.034.223-.051.448-.104.859-.223c.998-.275 1.91-.207 2.838-.327a18.8 18.8 0 0 0 1.376-.19c.533-.137.705 0 .963-.188.052 0 .413-.447.62-.276h-.086ZM59.716 710.018a1.601 1.601 0 0 1-.517.843 1.1 1.1 0 0 1-.517.241 1.156 1.156 0 0 1-1.034-.275c-.707-.723-.517-1.463-.638-1.721-.069-.362-.155-.706-.31-.981-.224-.431-.43-.896-.5-1.378l-.276-1.738-.138-.912-.051-.465-.052-.431-.052-.636a33.255 33.255 0 0 1-.034-1.326l.103-2.375c.07-1.567.121-3.15.242-4.768.086-1.584.379-3.34.534-4.717.276-2.943.069-6.18.672-9.536.069-.413.172-.844.258-1.24l.242-1.101c.155-.74.293-1.498.413-2.255.242-1.515.449-3.047.638-4.596.38-3.099.724-6.283 1.379-9.468.655-3.15 1.5-6.214 2.292-9.243.396-1.515.775-2.995 1.137-4.545a53.7 53.7 0 0 1 1.362-4.665c2.05-6.128 5.222-11.808 8.203-17.265.759-1.394 1.551-2.84 2.585-4.234.966-1.274 1.93-2.531 2.93-3.77a154.454 154.454 0 0 1 6.187-7.264c4.274-4.717 8.841-9.175 13.718-13.272 3.516-2.926 7.015-5.869 10.772-8.624l5.601-3.941 5.497-4.028c3.654-2.72 7.394-5.457 11.306-7.919 3.74-2.392 7.324-5.25 11.34-7.711 3.964-2.204 7.359-4.906 10.995-7.764l2.758-2.1a43.703 43.703 0 0 0 2.585-2.048c1.689-1.446 3.36-3.03 5.273-4.51 3.62-2.634 6.773-5.766 10.237-8.865 3.499-2.926 6.429-6.093 9.186-9.657 2.706-3.546 5.274-7.298 7.462-11.137 2.206-3.873 4.068-7.952 5.653-12.135 1.569-4.166 2.982-8.555 4.016-12.773.913-4.165.861-8.899 2.12-13.53.947-3.907.258-8.641.723-13.306.293-4.441.19-8.951.087-13.495-.104-4.544-.242-9.158.017-13.805.103-2.324.362-4.648.706-6.972l.293-1.738c.087-.551.19-1.05.242-1.584.137-1.067.224-2.134.275-3.236.121-2.634.035-5.336.035-8.108 0-1.377.034-2.823.103-4.182l.155-4.046c.138-5.405.052-10.827-.034-16.284l-.104-8.142c-.051-1.308-.137-2.599-.361-3.786a15.739 15.739 0 0 0-.449-1.773c-.224-.706-.379-1.429-.551-2.135-.586-2.823-.827-5.508-1.499-7.918a18.976 18.976 0 0 0-.586-1.739l-.19-.447c-.086-.207-.172-.413-.224-.62a8.64 8.64 0 0 1-.31-1.188c-.31-1.532-.362-2.926-.621-3.959-.12-.551-.241-.723-.637-1.515a32.173 32.173 0 0 1-.896-1.962c-.552-1.325-1.017-2.634-1.465-3.942-.896-2.599-1.689-5.129-2.809-7.436-2.379-4.82-4.964-9.588-7.773-14.15-2.826-4.578-5.928-8.968-9.393-13.065-3.36-4.062-7.479-7.625-11.632-10.93-2.31-1.773-4.757-3.322-7.359-4.579a36.36 36.36 0 0 0-3.982-1.652l-1.016-.345s-.173-.034-.517 0c-.311.018-.759.086-1.345.069-.603-.017-1.361-.241-1.895-.654-1.379-1.016-3.223-1.411-5.084-1.291a9.119 9.119 0 0 0-1.379.172c-.534.103-1.138.207-1.689.276-1.137.137-2.24.206-3.292.292-1.051.086-2.085.155-3.05.327-.483.069-.965.19-1.431.293l-1.464.413-6.239 1.756-6.222 1.756c-1.999.568-3.981 1.273-5.98 2.014-3.981 1.497-7.945 3.201-12.167 4.492-.793.241-1.586.465-2.378.689-.741.206-1.483.413-2.206.671-1.483.499-2.965 1.067-4.481 1.635-1.517.568-3.085 1.137-4.705 1.584-.81.224-1.637.43-2.482.585l-.706.121c-.362.051-.776 0-.965 0-.242-.035-.19-.035-.276 0l-.276.155c-.138.086-.276.137-.413.224-.276.137-.552.275-.828.395a22.33 22.33 0 0 1-1.689.637c-1.137.362-2.257.62-3.36.844-1.103.224-2.155.43-3.171.688l-.759.19c-.258.069-.603.155-.896.223-.62.138-1.206.207-1.792.259-2.31.223-4.43.206-5.929.964-2.171 1.067-4.48 1.652-6.704 2.031-2.24.378-4.412.602-6.48 1.015-1.999.379-4.136 1.102-6.29 1.618-4.257 1.102-8.703 2.014-12.874 2.875-2.74.671-5.498 1.721-8.376 2.582a87.757 87.757 0 0 0-8.238 2.858c-2.74 1.084-5.29 2.272-8.082 3.546-1.482.602-2.878.946-4.033 1.549-.293.137-.552.31-.827.482l-.931.619-1.878 1.223a61.971 61.971 0 0 1-3.878 2.289c-1.344.74-2.74 1.308-3.964 1.962-2.516 1.326-4.877 3.013-7.221 4.768-2.292 1.791-4.74 3.564-6.963 5.371-2.257 1.859-4.429 3.839-6.79 5.698-2.102 1.618-4.136 3.012-6.1 4.665-1.965 1.618-3.878 3.305-5.809 5.009-1.912 1.704-3.912 3.374-5.876 5.043l-5.774 5.078c-3.86 3.357-7.669 6.834-11.495 10.277-1.913 1.721-3.809 3.477-5.756 5.147l-5.963 4.871-5.084 4.148-2.533 2.083a34.595 34.595 0 0 1-2.689 2.049c-3.688 2.547-7.514 4.51-10.702 7.419-3.378 2.857-6.963 5.422-10.444 8.038l-10.375 7.953c-4.584 3.718-9.237 7.367-13.684 11.154-2.223 1.859-4.291 3.959-6.583 5.905-2.258 1.927-4.55 3.769-6.721 5.697a57.717 57.717 0 0 0-2.965 2.823c-.93.947-1.775 2.031-2.792 3.081a11.97 11.97 0 0 1-1.688 1.515c-.69.482-1.155.758-1.741 1.188a44.522 44.522 0 0 0-3.206 2.496c-4.153 3.494-7.91 7.78-12.408 11.171a122.924 122.924 0 0 0-3.188 2.617c-1.017.878-1.965 1.859-3.051 2.823-2.12 1.893-4.36 3.58-6.549 5.284-2.24 1.67-4.222 3.443-6.463 5.251-2.223 1.755-4.532 3.339-6.841 4.905-1.534 1.05-3.068 2.066-4.568 3.133-1.482 1.05-2.964 2.204-4.498 3.271-3.05 2.152-6.221 4.148-9.427 6.059-6.428 3.804-12.942 7.264-19.457 10.862-2.55 1.377-5.291 2.685-7.996 3.718-2.637 1.067-5.222 2.358-7.876 3.597-2.62 1.257-5.429 2.393-8.152 3.357-2.723 1.016-5.412 2.031-7.997 3.219-5.17 2.651-10.805 4.596-16.062 6.765-5.377 2.169-10.736 4.338-16.079 6.489-.689.276-1.241.465-1.775.775-.552.293-1.12.671-1.741 1.05-.62.379-1.275.757-2.016 1.033l-1.982.688c-2.499.947-4.894 2.307-7.324 3.65-2.482 1.36-4.912 2.547-7.239 4.028-2.344 1.446-4.601 3.012-6.876 4.596-4.584 3.15-9.048 6.42-13.529 9.674l-3.343 2.444c-1.069.826-2.12 1.738-3.189 2.634-1.068.895-2.206 1.79-3.395 2.564a59.074 59.074 0 0 0-3.309 2.427c-1.378 1.085-2.533 2.187-3.808 3.478-1.31 1.256-2.723 2.358-4.085 3.425-1.379 1.085-2.706 2.152-3.878 3.34l-3.877 3.614c-2.585 2.479-5.274 4.614-7.928 6.937-2.671 2.273-5.429 4.493-8.341 6.524-2.826 1.997-5.567 4.166-8.427 6.232-2.827 2.1-5.912 3.976-8.979 5.663l-4.568 2.547-.861.5-.207.137-.827.517c-.517.327-1.034.671-1.448 1.119-.586.619-1.258.929-2.068 1.101-.706.155-1.379.465-2.085.689-.207.069-.569.258-.793.034-.638-.619.414-1.549.931-2.117a17.427 17.427 0 0 1 1.964-1.945c.741-.603 1.517-1.171 2.344-1.618l8.841-4.889c5.532-3.098 10.547-7.419 16.011-11.137 2.602-1.876 5.118-3.925 7.617-6.025 2.482-2.117 5.084-4.217 7.376-6.403l3.568-3.288c1.241-1.256 2.585-2.307 3.895-3.322 1.309-1.016 2.585-1.98 3.722-3.03 1.051-.981 2.361-2.375 3.671-3.391a53.613 53.613 0 0 1 2.757-2.1c.931-.671 1.913-1.291 2.741-1.893 1.706-1.257 3.343-2.789 5.187-4.2l10.909-7.953c3.654-2.582 7.256-5.181 11.047-7.712a80.478 80.478 0 0 1 5.86-3.546c2.033-1.05 3.877-2.1 5.894-3.219 1.172-.636 2.361-1.256 3.602-1.807.62-.275 1.258-.551 1.913-.775.655-.258 1.361-.447 1.775-.619.982-.413 1.982-1.171 3.257-1.894 1.43-.757 2.568-1.084 3.792-1.618l14.493-5.852c4.878-2.014 9.824-3.667 14.408-5.922 4.791-2.375 9.91-3.907 14.597-5.852 2.465-1.05 4.895-2.255 7.376-3.409a92.512 92.512 0 0 1 3.792-1.652c1.31-.517 2.464-.981 3.688-1.567 4.791-2.289 9.513-5.129 14.287-7.694 4.756-2.634 9.461-5.302 13.994-8.228 2.258-1.463 4.481-2.978 6.618-4.596 2.189-1.653 4.481-3.219 6.721-4.734 2.034-1.377 4.033-2.771 5.928-4.234a71.463 71.463 0 0 0 2.775-2.273 75.4 75.4 0 0 1 2.896-2.392c1.947-1.549 3.912-3.013 5.773-4.545a50.813 50.813 0 0 0 2.706-2.358c.827-.792 1.792-1.738 2.74-2.547 1.913-1.653 3.878-3.133 5.687-4.7 1.775-1.532 3.516-3.287 5.308-4.992 1.775-1.721 3.602-3.425 5.584-5.026a43.879 43.879 0 0 1 3.068-2.272c.603-.396.879-.585 1.309-.964.397-.344.776-.757 1.172-1.188.776-.86 1.569-1.859 2.499-2.788a55.795 55.795 0 0 1 2.723-2.634c1.862-1.687 3.775-3.253 5.653-4.837a110.63 110.63 0 0 0 5.463-4.854c1.844-1.687 3.74-3.288 5.653-4.854l5.739-4.631c1.913-1.532 3.74-3.116 5.739-4.596 3.912-2.995 7.824-6.076 11.805-8.985a301.391 301.391 0 0 0 5.636-4.252c.913-.723 1.826-1.463 2.705-2.203.862-.741 1.913-1.601 2.896-2.29 2.016-1.429 4.084-2.651 6.032-3.907a51.084 51.084 0 0 0 2.826-1.945c.448-.345.879-.689 1.31-1.033l1.379-1.119 11.03-8.985c1.878-1.464 3.584-3.099 5.342-4.665l5.273-4.734c3.482-3.167 7.1-6.3 10.668-9.45 3.585-3.202 7.17-6.094 10.72-9.296 1.792-1.566 3.602-3.132 5.498-4.63a85.92 85.92 0 0 1 2.895-2.186 60.988 60.988 0 0 0 2.723-2.117l5.394-4.614a61.301 61.301 0 0 1 2.844-2.272l2.792-2.151c2.533-1.98 5.153-3.994 8.048-5.698 1.413-.861 3.068-1.584 4.36-2.255a53.402 53.402 0 0 0 4.033-2.341l1.982-1.291c.655-.43 1.258-.912 2.154-1.412 1.689-.895 3.326-1.273 4.602-1.841 2.809-1.343 5.86-2.737 8.875-3.925a85.564 85.564 0 0 1 4.602-1.687l4.601-1.463c1.5-.499 3.033-1.033 4.619-1.515 1.55-.482 3.309-.878 4.825-1.171a190.927 190.927 0 0 0 13.925-3.373c1.62-.482 3.31-.792 4.93-1.033 2.584-.396 5.066-.671 7.358-1.343a13.609 13.609 0 0 0 1.672-.568c.276-.103.534-.224.793-.344l.948-.43c1.499-.603 2.947-.741 4.256-.844 1.31-.103 2.551-.172 3.62-.396l1.826-.447 1.93-.413c1.259-.259 2.482-.5 3.62-.827.568-.172 1.12-.361 1.654-.568.259-.12.534-.224.776-.344l.379-.189.482-.276c.449-.275.966-.379 1.483-.361.637.051.758.086.775.069l.62-.104c.259-.034.517-.103.776-.155a34.64 34.64 0 0 0 3.102-.878c2.068-.688 4.17-1.549 6.342-2.323a39.843 39.843 0 0 1 3.533-1.102c1.12-.31 2.223-.637 3.344-1.016 2.223-.723 4.412-1.583 6.635-2.444s4.463-1.739 6.755-2.53c2.31-.809 4.688-1.429 6.946-2.066l6.859-1.911 3.498-.981c1.276-.344 2.551-.533 3.775-.637l3.567-.275a24.873 24.873 0 0 0 1.672-.207l.827-.155c.327-.068.672-.12 1-.155 2.636-.309 5.532.121 7.876 1.808.12.051.103.086.499.086.379 0 .965-.138 1.827-.035.19.018.5.104.603.138l.379.121.759.258c.5.172.999.361 1.499.551a40.63 40.63 0 0 1 5.705 2.788c3.67 2.118 6.91 4.82 9.995 7.523a66.502 66.502 0 0 1 8.617 9.02 107.978 107.978 0 0 1 7.204 10.069c2.827 4.441 5.377 9.037 7.738 13.72.569 1.153 1.189 2.341 1.724 3.597.534 1.24.982 2.496 1.396 3.736.844 2.495 1.602 4.94 2.619 7.246.259.586.517 1.119.81 1.705.379.757.534 1.514.672 2.203.224 1.377.293 2.651.569 3.752.069.276.155.534.259.775l.379.947c.241.654.448 1.308.603 1.979.345 1.326.569 2.651.775 3.942.207 1.291.397 2.565.655 3.804.138.62.276 1.223.448 1.808.173.568.397 1.325.517 1.979.517 2.737.448 5.388.466 7.987.034 6.421.207 12.876.086 19.348-.017 3.236-.31 6.49-.328 9.64-.017 3.202.104 6.438-.137 9.726-.104 1.618-.397 3.339-.673 4.871a54.657 54.657 0 0 0-.62 4.716c-.293 3.168-.379 6.352-.362 9.571.017 6.404.431 12.876.086 19.383-.103 1.721-.241 3.305-.241 4.957-.017 1.635.017 3.322-.035 5.009-.051 1.704-.206 3.443-.654 5.164-.397 1.567-.672 3.15-.879 4.786-.414 3.253-.621 6.661-1.551 10.001-.897 3.236-1.862 6.437-2.999 9.605-2.258 6.334-5.101 12.48-8.755 18.177-3.636 5.629-7.617 11.137-12.615 15.785a336.491 336.491 0 0 0-6.291 5.715c-2.068 1.911-4.291 3.856-6.566 5.525-2.154 1.687-4.136 3.701-6.428 5.526-2.327 1.738-4.447 3.425-6.704 5.216-2.241 1.755-4.55 3.477-7.049 4.991-2.43 1.412-4.688 2.961-6.98 4.614-2.275 1.635-4.67 3.339-7.048 4.837-2.344 1.532-4.619 3.15-6.894 4.819-3.033 2.221-6.032 4.51-9.134 6.714l-4.619 3.236a104.897 104.897 0 0 0-4.429 3.408c-2.912 2.358-5.859 4.751-8.651 7.195-2.792 2.479-5.498 5.044-8.083 7.746a143.79 143.79 0 0 0-7.463 8.366 144.862 144.862 0 0 0-3.498 4.372c-1.206 1.515-2.12 2.841-3.016 4.51-1.74 3.323-3.67 6.593-5.24 9.933-1.602 3.339-2.98 6.782-3.963 10.293-.413 1.481-.741 3.064-1.155 4.631l-1.206 4.665c-.81 3.098-1.551 6.145-1.982 9.26-.465 3.116-.74 6.318-1.206 9.554a60.2 60.2 0 0 1-.88 4.871c-.327 1.429-.465 2.927-.534 4.493-.068 1.549-.068 3.167-.172 4.837a32.278 32.278 0 0 1-.258 2.53c-.104.758-.19 1.515-.259 2.29-.12 1.549-.19 3.115-.241 4.716l-.086 2.427c-.035.758-.017 1.395.051 2.152.052.516.035.31.052.413v.103l.07.207.085.43.207.861c.258 1.033.155 2.1.052 3.219a7.084 7.084 0 0 1-.12.843c-.053.259-.122.637-.173.672l-.035.034c-.138 0-.293.069-.396.121-.19.069-.224.155-.19.086.07-.035.155-.551.155-.362a.634.634 0 0 0 .242.086c.172.035.74.138.69.396l-.018-.017ZM508.705-167.246c.12-1.546 2.562-1.237 3.766-1.752.464-.206 1.014-.344 1.513-.344l6.053-.034H536.666c.103 0 0 .034-.035.069l-.137.103-.276.223-13.103 10.379c-6.397 5.138-12.949 9.932-18.64 15.551-2.872 2.783-5.572 5.756-7.997 8.901-2.459 3.247-5.09 6.392-7.222 9.674-1.634 2.509-3.336 4.915-4.832 7.372-1.41 2.423-3.009 5.035-4.523 7.56-3.129 5.052-5.967 10.225-8.942 15.328-3.009 5.052-5.881 10.121-8.632 15.362l-4.23 7.819c-1.479 2.646-2.889 5.052-4.076 7.715-1.221 2.646-2.39 5.378-3.748 8.093-1.393 2.767-2.958 5.207-4.317 7.802-2.803 5.137-5.399 10.413-7.961 15.722-2.494 5.327-5.348 10.671-8.186 15.792-1.461 2.578-2.7 5.172-4.196 7.75l-4.385 7.75c-1.736 3.127-3.542 6.168-5.365 9.193l-5.468 9.09-5.486 9.073c-1.84 3.144-4.006 6.048-5.984 8.9-1.943 2.802-3.8 5.912-5.864 8.833-2.029 2.973-4.402 5.774-6.741 8.42-2.373 2.68-4.918 5.31-7.893 7.543a36.176 36.176 0 0 1-2.304 1.581l-2.27 1.392c-1.53.928-3.095 1.873-4.866 2.63-7.704 2.99-15.907 1.958-23.198-.362-3.697-1.15-7.205-2.766-10.592-4.399l-5.09-2.457c-1.703-.859-3.371-1.77-5.022-2.663-3.405-1.873-6.758-3.712-10.266-5.07-.911-.36-1.668-.6-2.734-.996a26.514 26.514 0 0 1-2.82-1.289c-1.771-.928-3.422-1.907-5.09-2.646-1.823-.739-3.646-1.787-5.279-2.543-.413-.19-.826-.378-1.221-.516-.413-.154-.74-.24-1.273-.378a77.497 77.497 0 0 1-2.854-.842c-3.766-1.203-7.377-2.612-11.023-3.66-.929-.258-1.771-.515-2.614-.636-.877-.137-1.805-.223-2.786-.343-.98-.12-2.012-.275-3.078-.636-1.221-.481-1.754-.876-2.613-1.151-1.634-.585-3.457-.842-5.348-1.134-.946-.155-1.926-.31-2.907-.568-.997-.24-1.994-.618-2.785-.876-3.44-1.048-7.274-1.014-11.143-1.512a29.824 29.824 0 0 1-2.924-.515c-1.014-.241-1.857-.516-2.751-.705-1.806-.378-3.663-.567-5.572-.773-1.65-.172-3.336-.344-5.021-.653-1.737-.344-3.215-.722-4.866-.911-1.617-.206-3.233-.327-4.85-.31-1.633 0-3.37.087-5.158-.257a6.736 6.736 0 0 1-1.359-.395l-1.135-.464a20.3 20.3 0 0 0-2.27-.688c-1.565-.378-3.198-.584-4.849-.876-1.651-.275-3.405-.653-4.987-1.254-1.427-.499-3.044-.636-4.729-.911-1.427-.223-2.957-.567-4.35-1.289-1.29-.704-2.425-1.271-3.715-1.684a11.067 11.067 0 0 0-1.891-.43c-.568-.068-1.445-.12-2.15-.24-1.479-.24-2.906-.653-4.282-1.134-2.751-.997-5.279-2.303-7.858-3.437-2.58-1.168-5.193-2.354-7.721-3.78-1.703-.928-3.371-2.062-4.901-3.128l-4.729-3.264c-3.13-2.234-6.208-4.606-8.959-7.406-2.614-2.63-4.781-5.516-7.223-8.06-2.545-2.663-4.78-5.601-6.775-8.643a143.551 143.551 0 0 1-5.571-9.33l-5.09-9.589c-2.322-4.244-4.145-8.695-6.5-12.784-1.153-2.08-2.425-4.004-3.801-5.98l-4.058-5.928c-2.15-3.059-4.161-6.29-6.5-9.142-2.339-2.887-4.884-5.602-7.566-8.162a104.482 104.482 0 0 0-4.127-3.712c-1.41-1.185-2.907-2.337-4.351-3.591-3.044-2.474-5.107-5.79-8.1-7.389-3.232-1.856-6.104-4.193-8.787-6.65-2.682-2.491-5.124-5.103-7.703-7.595-5.125-5.018-10.352-10.052-14.806-15.86-5.623-7.269-9.733-15.569-13.104-24.006-.842-2.079-1.72-4.295-2.235-6.564-.55-2.268-.86-4.553-1.1-6.839l-.5-5.309-.034-.396c.018-.103-.12-.343.07-.292h.773l1.462-.068c.481-.035 1.066-.069 1.272-.155.843-.223 1.6-.103 2.373.189.688.258 1.427.412 2.132.636.224.068.62.137.654.447.12.876-1.256.979-1.978 1.168-.86.223-1.754.412-2.63.533l-.688.086h-.172v.068s-.035.052-.07.035h-.034v.068l.12 1.461c.087 1.048.19 2.079.31 3.11.241 2.045.585 4.073 1.118 5.997.499 1.908 1.324 3.849 2.08 5.825 3.096 7.819 6.793 15.38 11.78 22.064 3.37 4.571 7.36 8.695 11.487 12.733l6.225 6.066c2.08 2.079 4.058 4.072 6.225 5.928a51.497 51.497 0 0 0 3.869 3.059c.67.464 1.341.927 2.03 1.357.704.447 1.358.756 2.218 1.34 1.582 1.083 2.802 2.355 3.989 3.626a36.902 36.902 0 0 0 3.508 3.454c2.51 2.113 5.28 4.296 7.721 6.667a90.914 90.914 0 0 1 7.085 7.458 79.668 79.668 0 0 1 3.336 4.21c1.049 1.443 2.012 2.904 3.009 4.364l6.001 8.712c2.081 2.904 3.921 6.066 5.52 9.228 1.651 3.162 3.01 6.41 4.747 9.45 3.026 5.534 5.863 11.222 9.268 16.514 1.685 2.646 3.457 5.207 5.451 7.578.998 1.22 2.012 2.268 3.147 3.471 1.118 1.203 2.167 2.423 3.199 3.609 2.063 2.405 4.161 4.588 6.551 6.58 2.373 1.994 4.918 3.816 7.515 5.62l3.938 2.715a44.83 44.83 0 0 0 3.921 2.388c2.717 1.478 5.588 2.732 8.512 4.073 2.82 1.306 5.485 2.612 8.237 3.316.688.172 1.375.31 2.063.395.361.052.654.07 1.066.104.465.034.912.103 1.342.189 1.736.36 3.284 1.013 4.763 1.787l.98.532c.275.138.568.275.877.378.602.224 1.255.378 1.96.516 1.393.275 2.958.378 4.643.79.413.103.843.224 1.273.378l1.032.344c.67.206 1.358.378 2.063.515 1.427.293 2.941.499 4.506.79 1.564.276 3.181.654 4.78 1.29.929.395 1.169.515 1.857.653.619.12 1.307.171 2.012.206 1.393.051 3.027-.035 4.643.051 1.599.086 3.199.258 4.781.55.773.138 1.616.327 2.321.481a43.07 43.07 0 0 0 2.15.396c1.461.206 2.957.343 4.505.498 1.548.154 3.112.326 4.712.636.773.137 1.65.378 2.356.55.687.189 1.375.326 2.097.446 3.87.67 8.134.43 12.536 1.598.533.12 1.118.344 1.617.499.43.154.877.275 1.341.395.929.223 1.892.378 2.906.533 2.029.292 4.265.567 6.466 1.46.275.103.55.224.808.361l.688.327c.327.154.705.275 1.135.36.86.19 1.857.275 2.889.396 1.032.103 2.184.24 3.319.532 1.049.258 2.063.567 3.078.86 4.058 1.254 7.927 2.766 11.831 3.814l.842.224c.344.086.688.206.998.309.636.223 1.238.498 1.805.756l3.216 1.615c.55.275.946.43 1.582.705.585.258 1.152.532 1.72.807 1.117.567 2.166 1.169 3.198 1.719s2.046 1.048 3.061 1.443l1.668.584 1.737.67c2.287.946 4.488 2.028 6.62 3.18 2.562 1.357 5.039 2.783 7.549 4.072 2.477 1.254 5.159 2.509 7.687 3.729 5.107 2.44 10.386 4.347 15.872 5.103 2.734.361 5.485.413 8.168.035 1.324-.19 2.734-.464 3.921-.86 1.221-.412 2.442-1.013 3.645-1.7 1.204-.688 2.408-1.444 3.646-2.2a31.065 31.065 0 0 0 3.387-2.337c2.15-1.701 4.128-3.695 6.019-5.791a174.112 174.112 0 0 0 3.302-3.78 74.599 74.599 0 0 0 3.061-3.884c1.977-2.68 3.783-5.481 5.657-8.317 1.909-2.852 3.972-5.516 5.795-8.282 1.754-2.784 3.525-5.722 5.279-8.592l6.483-10.705a309.438 309.438 0 0 0 6.346-10.774c4.178-7.166 8.151-14.606 12.123-21.909 2.029-3.78 3.817-7.698 5.743-11.582a350.257 350.257 0 0 1 5.881-11.581 185.08 185.08 0 0 1 3.147-5.688c1.084-1.839 2.012-3.729 2.906-5.67 1.772-3.867 3.457-7.974 5.675-11.72 3.543-6.375 6.793-12.956 10.421-19.365 3.732-6.375 7.188-12.785 10.937-19.074l3.766-6.255c1.238-2.096 2.51-4.33 3.886-6.34l4.093-6.135c1.444-2.045 2.974-3.969 4.453-5.894 5.795-7.99 13.173-14.898 20.894-20.947l9.733-7.766 4.006-3.214c.241-.223.722-.498.138-.395h-.465l-2.888.052-6.243.051h-.653l-.447.052-.912.086c-1.066.103-2.046-.155-3.043-.327-1.015-.172-2.012-.429-3.01-.67-.206-.052-.601-.155-.584-.395l-.086-.121Z%27/%3E%3Cpath d=%27M890.192 91.203c.723.035 1.204.775.774 1.843-.206.517-.688.981-1.135 1.257-.464.293-.877.465-1.187.672a5.744 5.744 0 0 1-1.324.62c-.448.137-1.153.361-1.721.516l-.894.241-3.097.724c-1.84.413-3.457.86-5.195 1.515-1.737.62-3.474 1.275-5.195 1.981a157.386 157.386 0 0 0-10.166 4.511c-6.657 3.29-13.177 6.837-19.009 11.315-5.866 4.477-11.267 9.506-15.722 15.361-3.303 4.202-6.279 8.748-9.238 13.243l-4.473 6.751-4.042 6.991c-.671 1.189-1.342 2.308-2.013 3.531a53.385 53.385 0 0 1-2.184 3.616c-1.531 2.342-3.011 4.443-4.387 6.802-2.873 4.719-6.072 9.179-9.272 13.588l-4.748 6.613c-1.617 2.273-3.354 4.425-5.126 6.526-1.755 2.101-3.612 4.151-5.35 6.166a148.145 148.145 0 0 0-5.057 6.251c-6.468 8.559-12.111 17.806-16.497 27.553-2.632 5.856-4.8 11.9-6.434 18.1-.808 3.1-1.514 6.268-2.322 9.454-.379 1.567-.877 3.272-1.29 4.719-.379 1.464-.637 2.996-.86 4.563-.43 3.135-.688 6.458-1.445 9.799-.74 3.031-1.033 6.182-1.428 9.454a80.32 80.32 0 0 1-.723 4.926 82.474 82.474 0 0 0-.688 4.736c-.378 3.185-.671 6.44-1.118 9.729a67.296 67.296 0 0 1-.912 5.218l-1.169 5.063-2.323 10.126c-.86 3.565-2.356 6.837-3.819 9.971-1.531 3.014-2.563 6.458-5.281 9.455l-1.926 1.894a95.94 95.94 0 0 0-1.806 1.912c-1.205 1.308-2.426 2.652-3.751 3.96-1.324 1.292-2.752 2.566-4.403 3.6-.826.516-1.669.998-2.581 1.377l-1.221.534c-.378.172-.757.362-1.135.551-1.514.775-3.028 1.722-4.697 2.583-.842.431-1.72.827-2.649 1.154-.98.345-1.84.517-2.683.741-3.406.895-6.812 1.963-10.218 3.031-6.744 2.066-13.435 3.943-19.181 7.646-2.855 1.825-5.436 4.098-7.534 6.75-.465.586-.826 1.309-1.256 2.101-.206.396-.447.81-.723 1.223-.223.362-.464.706-.67 1.068-.861 1.446-1.566 2.979-2.03 4.581-.826 2.789-.878 5.734-.035 8.541.396 1.43.946 2.859 1.411 4.34.464 1.567.791 2.928 1.376 4.288 2.236 5.476 6.657 9.885 11.56 13.209 4.197 2.772 9.203 4.391 14.192 4.253 2.511-.069 5.092-.499 7.775-.62a20.213 20.213 0 0 1 2.03 0l.98.052c.121 0 .431-.035.689-.103.258-.069.533-.138.756-.242.172-.068.465-.241.757-.413.585-.327 1.17-.62 1.772-.93 3.217-1.601 6.52-2.858 9.737-4.202a89.54 89.54 0 0 0 4.73-2.135c1.514-.758 3.062-1.653 4.61-2.463 5.884-3.117 11.939-6.027 18.39-8.008 3.216-.981 6.64-1.653 10.046-1.704 3.32-.121 6.64-.19 9.96-.207 8.859-.035 17.804.379 26.577 1.963 3.372.568 6.812.982 10.253 1.516l2.58.43c.447.086.86.172 1.187.207.378.034.774.051 1.221.069.447.017.912.034 1.445.12.258.035.533.103.809.19.258.068.653.275.774.344.688.379 1.428.672 2.184.947 3.062 1.033 6.554 1.12 10.064 2.067 1.823.534 3.285 1.154 4.937 1.653l4.885 1.498c3.183.947 6.399 1.877 9.547 3.066 3.166 1.222 6.124 2.617 9.169 3.926 6.038 2.704 12.111 5.511 17.736 9.23 3.526 2.291 6.863 4.96 9.925 7.819a154.629 154.629 0 0 1 8.911 8.886 144.566 144.566 0 0 1 8.154 9.609l3.079 4.047c.378.517.774 1.068 1.221 1.584.637.724.895 1.654.774 2.635-.103.844-.223 1.705-.567 2.411-.103.224-.258.62-.568.586-.86-.138-.705-1.326-.98-1.895-.276-.688-.654-1.291-1.084-1.911-.482-.672-.963-1.343-1.428-2.015l-.516-.74-1.497-2.033-1.754-2.307a153.26 153.26 0 0 0-7.483-8.852 153.989 153.989 0 0 0-8.154-8.249c-2.804-2.669-5.728-5.063-8.911-7.233-4.317-2.962-8.979-5.355-13.813-7.56-2.408-1.102-4.834-2.152-7.294-3.22-2.477-1.068-4.834-2.118-7.311-2.945-2.89-.999-5.866-1.808-8.859-2.686-1.496-.431-3.01-.878-4.507-1.378-1.496-.465-3.027-1.102-4.352-1.481-2.821-.792-5.952-.964-9.152-1.843-.791-.241-1.599-.499-2.356-.861-.396-.155-.774-.361-1.153-.568-.241-.12-.241-.138-.361-.172a4.548 4.548 0 0 0-.361-.103c-.551-.121-1.308-.121-2.151-.173a8.23 8.23 0 0 1-1.307-.172l-1.135-.207c-3.148-.568-6.348-.964-9.582-1.446-3.268-.482-6.382-1.068-9.581-1.412-6.365-.724-12.799-.93-19.233-.861-2.717.017-5.453.086-8.171.189-1.376.069-2.735.086-4.008.207-1.29.138-2.58.361-3.87.654-5.144 1.206-10.149 3.341-15.018 5.683a180.913 180.913 0 0 0-7.225 3.754c-1.187.638-2.391 1.344-3.681 1.964a93.954 93.954 0 0 1-3.819 1.756c-2.563 1.085-5.109 2.067-7.569 3.152a58.174 58.174 0 0 0-3.612 1.704l-.877.465c-.327.173-.465.276-1.05.551-.447.19-.86.31-1.29.414-.447.086-.808.189-1.514.155-1.41-.104-2.787-.069-4.249.069-2.718.224-5.642.688-8.721.447a27.296 27.296 0 0 1-8.739-2.204c-2.752-1.205-5.315-2.841-7.586-4.718-2.271-1.86-4.387-3.979-6.176-6.389a25.972 25.972 0 0 1-4.094-8.043l-.585-2.032-.636-1.963c-.447-1.343-.929-2.738-1.256-4.271-.654-3.1-.327-6.337.654-9.248.481-1.463 1.135-2.858 1.875-4.167.189-.327.378-.654.585-.964l.533-.844.998-1.86c4.747-7.095 12.007-11.108 19.318-13.794 3.681-1.378 7.345-2.411 10.975-3.599l5.522-1.705 2.786-.792c.895-.259 1.979-.517 2.701-.741 1.841-.585 3.647-1.688 5.591-2.79.98-.551 1.995-1.102 3.079-1.584l1.462-.637c.447-.224.895-.448 1.308-.706 3.474-2.067 6.192-5.477 9.289-8.731.464-.483.946-.982 1.445-1.447.533-.517.929-.878 1.29-1.292.74-.861 1.376-1.894 1.944-3.013 1.101-2.222 2.236-4.77 3.354-7.095 1.084-2.36 2.082-4.719 2.701-7.147l1.789-7.681 1.789-7.697c.568-2.515.912-5.063 1.221-7.664l.86-7.887c.155-1.326.345-2.652.585-3.978.241-1.309.43-2.549.585-3.84.396-3.049.654-6.183 1.308-9.334.774-3.066 1.152-5.942 1.548-9.076.206-1.55.413-3.117.739-4.684.293-1.567.792-3.151 1.205-4.598.843-2.962 1.531-5.976 2.288-9.007 3.612-15.102 10.493-29.293 19.128-42.105 2.237-3.324 4.576-6.561 7.088-9.678 2.477-3.152 5.195-6.114 7.741-9.11a109.572 109.572 0 0 0 7.225-9.368l6.915-9.696c1.926-2.755 3.767-5.545 5.47-8.421 1.669-2.962 3.716-5.752 5.384-8.559l4.955-8.783c.86-1.463 1.617-2.996 2.563-4.391l2.787-4.254c4.971-7.542 9.805-15.223 16.238-21.87 6.4-6.51 13.728-12.141 21.692-16.584 6.726-3.806 13.71-7.164 20.918-9.988 1.824-.707 3.544-1.378 5.505-2.015 1.927-.586 3.836-1 5.659-1.447l.276-.069.103-.034.206-.069.413-.138.809-.293c.24-.086.464-.155.705-.224l.344-.068c.172-.035.378-.086.516-.086.637-.07 1.118 0 1.531-.035.826-.069 1.118.138 1.565-.534.086-.12.19-.448.448-.43l.051-.035ZM-186.91 711.34c-.241.762-.759 1.005-1.484 1.282a8.305 8.305 0 0 1-2.692.468c-.379 0-.811-.087-1.208-.295a3.135 3.135 0 0 1-.552-.363c-.172-.156-.327-.295-.379-.382l-3.727-4.555c-2.382-2.978-4.832-5.888-7.144-8.902l-6.781-9.196c-2.278-3.049-4.504-6.131-6.402-9.613-.966-1.732-1.726-3.671-2.364-5.438a113.52 113.52 0 0 1-1.864-5.473 77.123 77.123 0 0 1-1.501-5.629c-.414-1.888-.794-3.845-.932-5.871-.276-4.018.225-8.019 1.294-11.847.794-2.805 1.933-5.351 2.71-7.845.431-1.282.586-2.338.966-3.932.379-1.455.932-2.84 1.57-4.174.639-1.333 1.432-2.563 2.105-3.706l2.123-3.533a334.484 334.484 0 0 1 4.331-7.049c2.933-4.677 6.177-9.266 9.663-13.562 3.468-4.312 7.109-8.452 10.681-12.608 3.589-4.295 7.678-8.106 11.492-11.951 1.915-1.939 3.779-3.879 5.487-5.923 1.725-2.13 3.675-4.243 5.608-6.2 3.9-3.966 7.73-7.621 10.94-12.003 3.434-4.381 7.126-8.504 10.819-12.574 4.417-4.745 8.213-10.01 12.424-15.171a132.442 132.442 0 0 1 3.244-3.811c.552-.606 1.138-1.281 1.76-1.87l1.742-1.715c.535-.554 1.036-1.091 1.433-1.645.207-.277.362-.537.517-.814.225-.381.432-.797.656-1.161.915-1.524 2.002-2.909 3.106-4.208 1.122-1.299 2.278-2.494 3.382-3.672 1.104-1.16 2.157-2.373 3.296-3.62a168.154 168.154 0 0 1 6.936-7.118 172.776 172.776 0 0 1 15.047-12.955c5.608-4.243 11.268-8.331 17.342-11.968 3.054-1.784 6.142-3.36 9.231-5.057 3.106-1.628 6.109-3.395 9.3-4.884 6.575-3.152 13.356-5.837 20.207-8.21 3.45-1.195 6.97-2.199 10.474-3.117l5.28-1.316c2.001-.537 3.986-.329 5.539-.52.776-.087 1.484-.26 2.122-.554l.242-.121c.138-.07.293-.156.431-.208.293-.122.587-.191.863-.26a6.725 6.725 0 0 1 1.64-.139c.534 0 1.052.087 1.57.191.483.086 1.121.329 1.449.45.776.312 1.587.554 2.416.797 3.295.952 6.867 1.455 10.336 2.84 1.725.745 3.244 1.386 4.935 2.2.828.416 1.639.883 2.432 1.42.397.277.76.572 1.14.883l1.035.814 4.158 3.274 2.088 1.628c.725.554 1.432 1.264 2.036 1.905 1.07 1.126 2.054 2.286 3.175 2.84 1.502.71 2.847 1.75 3.986 2.893 2.295 2.32 3.9 5.022 5.919 7.187.5.537 1.018 1.057 1.587 1.49l.414.346.553.381c.207.173.517.295.672.502l.156.849c.31 1.455 1.018 2.563 1.967 3.741.932 1.143 2.036 2.252 3.02 3.568.966 1.316 1.76 2.736 2.415 4.191 1.105 2.512 1.812 5.127 2.399 7.725l.88 3.845c.155.675.31 1.177.466 1.974a6.179 6.179 0 0 1 0 2.321c-.26 1.489-.846 2.754-1.243 3.931a9.712 9.712 0 0 0-.448 1.715c-.07.572-.173 1.403-.38 2.078-.38 1.403-1.035 2.702-1.812 3.863l-2.226 3.273-6.005 8.816c-2.087 2.927-4.382 5.68-6.608 8.417l-6.247 7.863c-2.105 2.598-4.21 5.196-6.229 7.828-2.002 2.65-3.917 5.335-5.608 8.192l-5.09 8.625-3.382 5.751a158.35 158.35 0 0 0-2.968 5.94 284.306 284.306 0 0 0-5.35 12.21c-2.64 6.443-4.882 13.059-7.264 19.641-1.208 3.273-2.33 6.616-3.675 9.872-1.329 3.256-2.744 6.408-4.003 9.595-1.277 3.117-2.554 6.217-3.831 9.318-1.26 3.1-2.52 6.235-3.969 9.266a176.112 176.112 0 0 1-4.555 9.006 219.53 219.53 0 0 1-2.45 4.399l-2.364 4.434-5.902 11.171c-1.95 3.741-4.003 7.43-5.797 11.188-.915 1.871-1.674 3.81-2.554 5.767-.863 1.94-1.743 3.828-2.468 5.751-.362.969-.69 1.922-.949 2.909-.19.676-.12.502-.155.624l-.052.225c-.069.312-.12.623-.172.935-.052.295-.104.589-.104.883l-.034.607v.796c0 .381 0 .762-.018 1.126l-.051.537c-.052.139-.328.035-.466.052a11.66 11.66 0 0 1-2.105-.295l-.415-.086-.276-.087-.535-.156c-.362-.104-.724-.19-1.07-.311-.224-.07-.62-.139-.655-.451-.121-.883 1.26-.987 1.984-1.177.173-.052.518-.104.57-.156.069-.052.12-.104.155-.139.069-.104.12-.138.034-.277a.365.365 0 0 0-.069-.121l-.034-.035v-.19c.034-.503.138-1.005.242-1.49l.258-.97.328-1.125c.155-.503.31-1.005.5-1.49.346-.987.742-1.922 1.14-2.858.81-1.87 1.673-3.654 2.467-5.421.76-1.749 1.622-3.689 2.52-5.438 1.811-3.602 3.744-7.014 5.624-10.496l5.66-10.461c2.52-4.814 5.297-9.352 7.644-14.167 2.433-4.763 4.4-9.681 6.367-14.721l3.503-8.764c1.174-2.962 2.45-5.854 3.641-8.729 1.208-2.858 2.226-5.802 3.33-8.764l3.227-8.885c2.226-6.183 4.607-12.348 7.265-18.358a200.902 200.902 0 0 1 4.158-8.989c1.432-2.996 3.192-5.767 4.814-8.625l4.487-7.707c1.466-2.581 3.14-5.144 4.883-7.569 3.503-4.867 7.35-9.387 10.923-14.046 3.623-4.78 7.575-9.162 10.75-13.977l4.986-7.343c.794-1.213 1.76-2.494 2.364-3.568.639-1.126 1.036-2.304 1.157-3.533.19-1.819.897-3.256 1.328-4.503.466-1.265.639-2.269.397-3.17-.725-2.84-1.242-5.646-1.967-8.313-.725-2.65-1.674-5.161-3.123-7.361-1.277-2.13-3.745-3.88-5.263-7.049-.19-.381-.328-.814-.466-1.212l-.155-.607v-.086l-.19-.121c-.345-.226-.638-.503-.95-.745-1.224-1.039-2.242-2.2-3.174-3.36-1.83-2.321-3.365-4.624-5.315-6.235a13.395 13.395 0 0 0-1.518-1.074l-.846-.45a7.104 7.104 0 0 1-1.173-.728c-1.38-1.073-2.295-2.234-3.244-3.152-.5-.502-.846-.814-1.467-1.281l-1.708-1.317-3.4-2.632-2.277-1.767c-.638-.537-1.38-.987-2.157-1.403-1.536-.814-3.416-1.541-5.125-2.286-3.313-1.351-7.126-1.801-11.026-2.927a44.67 44.67 0 0 1-1.45-.45c-.483-.173-1.017-.381-1.276-.451-.673-.19-1.484-.242-2.123-.138-.155.017-.293.069-.414.104-.138.052-.12.052-.466.225-.535.277-1.104.468-1.674.624-1.138.294-2.243.363-3.226.415-.984.035-1.881.069-2.657.191-.346.052-.811.19-1.295.294l-1.397.346c-1.864.468-3.71.953-5.557 1.473-4.244 1.16-8.368 2.563-12.527 4.104a182.773 182.773 0 0 0-12.234 5.006c-4.814 2.13-9.421 4.745-14.097 7.222-2.33 1.264-4.694 2.477-6.972 3.776a134.495 134.495 0 0 0-6.677 4.208c-8.766 5.923-17.1 12.436-24.727 19.744a183.139 183.139 0 0 0-6.574 6.616l-3.175 3.447-3.245 3.412c-1.052 1.126-2.07 2.269-2.967 3.464a26.714 26.714 0 0 0-1.26 1.853l-.569.987a10.29 10.29 0 0 1-.725 1.109c-1.053 1.368-2.261 2.442-3.348 3.533-1.07 1.056-2.105 2.234-3.123 3.394-5.004 5.82-9.49 12.263-14.891 17.926-2.623 2.858-5.211 5.733-7.679 8.695a151.738 151.738 0 0 0-3.623 4.52 59.616 59.616 0 0 1-3.866 4.468c-2.761 2.962-5.694 5.716-8.386 8.625-1.38 1.455-2.588 2.945-3.917 4.521a100.82 100.82 0 0 1-4.124 4.468c-2.812 2.893-5.728 5.646-8.455 8.539-2.726 2.857-5.228 5.992-7.868 9.023-4.418 5.179-8.714 10.409-12.476 16.003-3.762 5.595-7.126 11.518-10.646 17.355-1.105 1.853-1.967 3.827-2.451 5.871l-.362 1.662a27.878 27.878 0 0 1-.466 1.732c-.345 1.144-.742 2.235-1.139 3.308-.811 2.165-1.553 4.174-2.019 6.305a32.814 32.814 0 0 0-.828 6.46 28.117 28.117 0 0 0 .587 6.46c.414 2.182.983 4.33 1.622 6.478.656 2.13 1.38 4.26 2.174 6.356.759 2.13 1.657 3.983 2.813 5.906.966 1.61 2.036 3.187 3.14 4.763l3.451 4.624c2.312 3.065 4.573 6.2 6.954 9.214l7.334 8.902.189.225.087.087.155.173.31.329.622.658c.362.381.673.814.914 1.23.052.156 0 .26.207.416.397.294 1.536.311 2.692.536.259.052.742.208.656.451l.293.086ZM478.756-167.248c.121-1.545 2.572-1.236 3.781-1.75.466-.206 1.018-.344 1.519-.344h1.778l1.053-.034h1.899l1.226.034H490.478v.138l-.052.617-.103 1.236-.138 1.219-.069.618-.035.309-.034.172c-.104.463-.173.944-.311 1.408a29.436 29.436 0 0 1-.829 2.729c-.621 1.768-1.398 3.45-2.175 5.064-.777 1.631-1.571 3.21-2.262 4.79l-2.106 4.909a448.222 448.222 0 0 1-4.368 9.819c-1.502 3.262-3.142 6.472-4.661 9.682l-9.358 19.381c-.397.669-.794 1.202-1.087 1.682a4.202 4.202 0 0 0-.363.653l-.121.309-.173.463a68.32 68.32 0 0 1-1.467 3.708c-1.053 2.42-2.193 4.772-3.315 7.107a173.895 173.895 0 0 0-3.228 7.004 204.984 204.984 0 0 1-3.367 7.072c-2.279 4.67-4.903 9.201-7.061 13.785-2.175 4.618-4.178 9.476-6.699 14.094-1.226 2.3-2.469 4.549-3.539 6.815-.552 1.167-.984 2.214-1.502 3.484a96.458 96.458 0 0 1-1.623 3.622c-1.139 2.37-2.348 4.687-3.556 6.97-1.261 2.283-2.607 4.532-3.902 6.798-2.624 4.618-5.283 8.823-7.873 13.39a488.25 488.25 0 0 1-8.304 13.218c-1.727 2.609-3.522 5.201-5.456 7.707-.932 1.22-2.037 2.558-2.917 3.622-.76.945-1.416 2.524-2.832 3.966l-1.726 1.614-1.623 1.596-3.263 3.313-1.692 1.648-1.606 1.597c-1.07 1.098-2.123 2.231-3.28 3.364-1.139 1.116-2.365 2.232-3.729 3.21-.656.481-1.433.962-2.106 1.356l-1.951 1.185c-2.624 1.596-5.404 3.382-8.667 4.395-6.457 2.042-13.018 1.218-19.06 1.167-3.384 0-6.889-.378-10.255-1.494l-9.409-3.107a253.317 253.317 0 0 1-4.714-1.63c-1.571-.567-3.125-1.202-4.678-1.717l-9.271-3.262-14.658-5.167c-2.417-.841-4.851-1.614-7.303-2.232l-1.847-.429-.933-.189c-.328-.068-.483-.085-.776-.12-.536-.051-1.174-.017-1.917-.068-.708-.069-1.674-.086-2.676-.841-1.07-.859-2.382-1.322-3.919-1.614-1.519-.292-3.228-.43-5.024-.944-.984-.292-1.605-.567-2.382-.773a25.573 25.573 0 0 0-2.331-.515c-1.588-.292-3.246-.463-4.921-.67-1.674-.222-3.401-.463-5.11-.892-1.674-.463-3.159-.824-4.817-1.081-3.245-.532-6.595-.79-9.979-1.374-3.418-.652-6.577-1.373-9.892-2.043l-4.282-.892a76.062 76.062 0 0 1-4.368-.91c-2.883-.704-5.697-1.58-8.494-2.49-2.779-.909-5.594-1.784-8.356-2.814a189.052 189.052 0 0 1-8.183-3.296L192.958.622c-1.122-.497-2.313-.96-3.47-1.579-2.279-1.219-4.282-2.695-6.423-3.777-4.506-2.317-8.701-5.235-12.499-8.566-5.11-4.531-9.565-9.578-13.795-14.848-1.968-2.524-3.815-5.133-5.455-7.897-1.606-2.764-3.108-5.528-4.627-8.308-3.021-5.545-5.991-11.09-9.202-16.515-2.158-3.604-4.316-7.175-6.854-10.454-2.521-3.296-5.352-6.369-8.287-9.338a203.304 203.304 0 0 0-7.096-6.816c-2.417-2.18-4.972-4.24-7.596-6.197a198.724 198.724 0 0 0-8.028-5.664c-2.71-1.803-5.49-3.726-8.08-5.734-2.503-1.974-4.99-3.931-7.476-5.888-2.451-1.974-4.989-3.811-7.51-5.785-4.99-3.948-9.547-8.48-13.656-13.321-2.624-3.004-5.18-6.111-7.424-9.476a54.53 54.53 0 0 1-3.09-5.219c-.932-1.819-1.71-3.639-2.52-5.459-.795-1.836-1.572-3.69-2.245-5.596a51.183 51.183 0 0 1-.95-2.884l-.397-1.459a8.204 8.204 0 0 1-.293-1.648c-.07-1.081-.035-2.043-.173-2.884a3.915 3.915 0 0 0-.086-.429l-.052-.172c-.052-.12-.069-.24-.173-.377-.293-.498-.846-1.082-1.484-1.734-.536-.601-1.623-1.476-.915-1.373l.138-.189c.103-.052.38-.069.552-.103 1.105-.223 2.78-.103 4.11.189l.81.171.536.155c.362.103.725.189 1.07.309.225.068.622.137.656.446.121.876-1.26.979-1.985 1.167l-.328.086-.104.086-.138.137c-.069.086-.069.172-.052.224 0 .103.277.223.208.24V-165.754s.069.257.086.36c.052.292.086.567.12.859.053.549.053 1.047.07 1.528 0 .463 0 .875.052 1.235.017.172.034.344.069.498l.155.618c.863 3.468 2.21 6.85 3.66 10.249.742 1.716 1.45 3.399 2.262 4.978a50.977 50.977 0 0 0 2.745 4.669c2.003 3.039 4.281 5.905 6.681 8.721 3.263 3.896 6.647 7.501 10.463 10.78a96.133 96.133 0 0 0 5.87 4.687 233.642 233.642 0 0 1 6.094 4.669c4.696 3.691 9.27 7.261 14.26 10.506 4.938 3.364 9.789 6.9 14.313 10.866 4.661 4.206 9.115 8.463 13.311 13.132a78.86 78.86 0 0 1 5.87 7.382c1.795 2.609 3.401 5.236 5.006 7.896 2.884 4.824 5.577 9.716 8.287 14.592l4.075 7.278c1.364 2.455 2.745 4.721 4.35 6.953 3.177 4.429 6.837 8.634 10.601 12.651 3.781 4.017 7.855 7.622 12.43 10.592a51.3 51.3 0 0 0 3.367 2.026l1.726.927c.639.326 1.261.686 1.865 1.047l3.436 2.111c1.156.687 2.123 1.15 3.435 1.7 4.955 2.145 9.876 4.291 14.9 6.025 5.093 1.682 10.203 3.485 15.313 4.635l15.832 3.193c3.263.6 6.681.824 10.186 1.305 1.744.24 3.522.566 5.283 1.03 1.554.411 3.159.669 4.851.875 1.675.206 3.419.36 5.197.635.898.155 1.778.292 2.693.532.449.103.898.24 1.347.378l1.226.412c1.398.446 3.055.584 4.868.893 1.796.291 3.85.91 5.49 2.231-.034.035.605.189 1.416.172.501 0 1.07 0 1.709.069.725.068 1.191.206 1.744.309 1.07.223 2.123.48 3.159.755a91.108 91.108 0 0 1 6.147 1.905c4.039 1.39 7.924 2.85 11.912 4.172l14.347 5.098c4.61 1.837 9.392 3.348 14.191 4.944 1.192.378 2.435.841 3.522 1.167 1.14.327 2.314.55 3.505.721 1.191.172 2.4.258 3.608.292l3.781.069c5.059.154 10.014.429 14.623-.841 2.694-.704 5.162-2.06 7.683-3.588a173.06 173.06 0 0 1 3.833-2.283c1.191-.704 2.313-1.562 3.384-2.506 2.141-1.889 4.091-4.12 6.301-6.198 2.124-1.99 4.144-4.154 6.319-6.23 9.582-10.678 17.437-23.244 24.74-35.844 2.072-3.245 3.816-6.506 5.749-9.75 1.917-3.21 3.678-6.593 5.335-9.957a74.009 74.009 0 0 0 2.296-5.099c.691-1.768 1.52-3.536 2.383-5.235 1.744-3.417 3.591-6.661 5.127-10.077l3.954-8.79c1.329-2.97 2.883-5.819 4.333-8.651 1.451-2.85 2.884-5.716 4.23-8.6 1.381-2.867 2.555-5.82 3.971-8.773 1.83-3.896 3.764-7.673 5.248-11.587l.57-1.528c.259-.652.604-1.184.915-1.665.674-.961 1.002-1.579 1.502-2.643l2.797-5.785c3.677-7.725 7.51-15.433 11.084-23.124 1.502-3.295 2.935-6.643 4.351-9.99.707-1.665 1.398-3.382 2.192-5.064.777-1.683 1.589-3.296 2.296-4.927.708-1.614 1.347-3.245 1.744-4.875.104-.412.207-.824.276-1.236l.104-.533V-166.012h-.121c-.052 0-.034.018-.052.035l-.224.034-.915.086c-1.071.103-2.055-.155-3.056-.326-1.019-.172-2.02-.429-3.021-.67-.207-.051-.605-.154-.587-.395h-.069ZM269.793 711.126c-.12 1.547-2.567 1.255-3.756 1.754a5.403 5.403 0 0 1-.741.258c-.12.034-.258.051-.379.068a4.173 4.173 0 0 1-.654 0 3.101 3.101 0 0 1-1.517-.55c-.431-.292-.827-.825-1.034-1.169a7.84 7.84 0 0 1-.499-.893l-.224-.464c-.31-.688-.707-1.736-.879-2.613-.827-3.713-.241-7.15-.586-10.21-.31-3.438-.258-6.91.086-10.313.311-3.386 1-6.875 1.706-10.038.603-3.111.724-6.48 1.499-9.969.207-.859.431-1.736.741-2.595.138-.43.327-.86.5-1.272l.448-1.118c.586-1.495 1.102-3.076 1.688-4.675.586-1.598 1.224-3.231 2.068-4.83.413-.79.896-1.581 1.413-2.32.5-.705.93-1.324 1.172-1.857.103-.223.12-.292.206-.601l.293-.945c.224-.619.431-1.238.689-1.84a32.056 32.056 0 0 1 1.741-3.437c1.292-2.183 2.774-4.194 4.187-6.137.706-.979 1.378-1.925 2.067-2.939a37.62 37.62 0 0 1 2.361-3.025c1.654-1.908 3.446-3.609 5.134-5.311 6.755-6.927 14.009-13.768 22.314-19.148 4.083-2.698 8.322-5.259 12.785-7.425 2.222-1.117 4.583-1.994 6.65-2.991 2.137-1.014 4.256-2.2 6.514-3.266 2.308-1.117 4.703-1.908 6.995-2.664 1.137-.378 2.24-.791 3.532-1.169 1.241-.361 2.499-.618 3.722-.842 2.464-.447 4.876-.722 7.168-1.151 1.171-.207 2.188-.482 3.497-.774a41.193 41.193 0 0 1 3.774-.619c6.048-.687 11.889-.206 17.385-.945a68.51 68.51 0 0 0 2.033-.327l2.137-.447c1.551-.292 3.101-.429 4.618-.498 3.032-.103 5.961.086 8.787.12 2.843.069 5.497-.206 8.357-.704 1.413-.224 2.86-.482 4.342-.688 1.465-.223 3.067-.309 4.394-.43 5.565-.55 11.079-2.148 16.506-4.022 5.807-1.994 11.562-4.091 16.886-6.892a337.085 337.085 0 0 0 7.995-4.504 84.668 84.668 0 0 0 3.842-2.389c.62-.412 1.241-.842 1.844-1.289l1.912-1.358c2.654-1.856 5.342-3.592 7.978-5.345a121.698 121.698 0 0 0 3.911-2.699l1.896-1.392c.654-.481 1.326-.98 1.998-1.444 2.723-1.856 5.583-3.438 8.46-4.899 2.895-1.443 5.755-2.818 8.753-4.125 2.947-1.255 6.048-2.337 9.322-2.801a22.77 22.77 0 0 1 4.962-.19c1.672.138 3.067.293 4.652.327 3.102.12 6.307.103 9.512.602 3.222.601 6.185 1.443 9.252 2.354 2.636.808 5.255 1.736 7.806 2.854 2.567 1.117 4.962 2.423 7.426 3.609 4.893 2.441 9.821 4.933 14.491 7.907l11.647 7.769a486.757 486.757 0 0 1 11.545 7.855l15.455 10.708a826 826 0 0 1 14.491 10.279c2.395 1.753 4.807 3.438 7.219 5.242 2.378 1.805 4.67 3.73 6.91 5.69 3.032 2.561 5.823 5.517 8.546 8.284 2.808 2.682 5.703 5.655 7.943 9.007 1.792 2.613 3.291 5.483 4.359 8.457 1.069 2.819 2.412 5.878 2.447 9.316 0 1.77-.396 3.214-.603 4.778-.276 1.547-.448 3.06-.827 4.641-.793 3.163-2.24 6.016-3.756 8.68l-2.171 3.85c-.672 1.238-1.344 2.664-2.206 3.936-1.671 2.544-3.635 4.796-5.462 7.099-3.67 4.589-7.133 9.351-10.631 14.146-2.171 3.008-4.445 6.016-6.668 8.955-2.223 2.974-4.377 6.016-6.772 8.938-.603.722-1.206 1.444-1.826 2.166-.672.739-1.154 1.306-1.689 2.08-1.051 1.461-1.964 3.128-3.394 4.623-.724.722-1.551 1.444-2.74 1.839-.758.207-.568.138-.723.172l-.293.052c-.379.051-.758.086-1.12.103-.689.034-1.344 0-1.964.103-.879.138-1.603-.069-2.344-.412-.62-.31-1.326-.447-2.05-.688-.224-.069-.62-.137-.655-.447-.103-.876 1.223-.98 2.016-1.169a14.29 14.29 0 0 1 2.774-.309c.827 0 1.689-.034 2.516-.052.241 0 .465-.017.672-.051.62.034 1.843-.928 2.774-2.183.982-1.255 1.861-2.785 3.084-4.28.672-.808 1.206-1.341 1.775-1.994a45.74 45.74 0 0 0 1.654-1.959c2.171-2.647 4.239-5.449 6.375-8.233a565.033 565.033 0 0 0 6.358-8.302c2.843-3.799 5.652-7.666 8.564-11.465 2.843-3.85 6.185-7.408 8.408-11.258 2.412-4.951 5.755-9.591 7.013-14.645.517-2.595.999-5.414 1.378-7.975.19-2.475-.586-4.985-1.568-7.546l-.775-2.045c-.259-.653-.5-1.307-.793-1.942a34.319 34.319 0 0 0-1.93-3.713c-1.43-2.389-3.153-4.624-5.065-6.704-.965-1.048-1.947-1.993-3.016-3.025l-3.084-3.094a83.692 83.692 0 0 0-6.22-5.878c-1.964-1.702-3.946-3.352-5.996-4.916-2.033-1.564-4.187-3.025-6.306-4.555-4.256-3.008-8.495-6.05-12.82-8.989l-25.828-17.859-12.544-8.439c-4.118-2.871-8.356-5.346-12.819-7.649l-6.737-3.403c-2.292-1.152-4.445-2.269-6.72-3.18-4.531-1.839-9.39-3.18-14.18-4.229-3.136-.618-6.479-.584-9.942-.636a68.944 68.944 0 0 1-2.636-.103l-2.533-.189c-1.568-.086-3.153.035-4.739.31-3.153.55-6.237 1.753-9.287 3.162-3.05 1.427-6.151 2.922-9.097 4.486a71.257 71.257 0 0 0-4.98 2.905c-1.62 1.014-3.084 2.166-4.721 3.369-3.239 2.355-6.582 4.469-9.821 6.652-1.982 1.306-3.774 2.613-5.79 4.039-1.998 1.358-4.066 2.579-6.134 3.747-2.102 1.169-4.066 2.304-6.22 3.455a85.987 85.987 0 0 1-6.513 3.06c-4.428 1.839-8.873 3.386-13.371 4.916-4.514 1.495-9.183 2.767-14.008 3.351-1.43.189-2.86.241-4.152.396-1.344.154-2.688.361-4.049.567-2.723.43-5.583.876-8.443.876-5.703.035-11.097-.807-16.403.585-6.979 1.392-13.957.515-20.608 1.375-1.688.189-3.239.55-4.962.962-1.723.379-3.446.636-5.152.877-3.446.481-6.651 1.014-9.856 2.252-1.688.567-3.36 1.117-4.979 1.753-1.603.619-3.154 1.409-4.739 2.217-1.568.808-3.153 1.633-4.79 2.407-1.671.773-3.274 1.392-4.859 2.148-6.306 3.008-12.319 6.824-17.954 10.949-4.772 3.575-9.166 7.632-13.37 11.86l-6.307 6.428a58.652 58.652 0 0 0-2.963 3.266c-.948 1.117-1.689 2.252-2.585 3.558-2.326 3.335-4.807 6.429-6.392 9.883-.397.86-.741 1.736-1.017 2.63l-.207.705c-.086.326-.224.636-.344.911a13.275 13.275 0 0 1-.879 1.495c-.62.877-1.12 1.582-1.568 2.407a29.295 29.295 0 0 0-1.24 2.561c-.741 1.77-1.362 3.661-2.051 5.586a69.586 69.586 0 0 1-1.12 2.853c-.362.842-.62 1.736-.844 2.647-.896 3.644-.913 7.769-1.895 11.843-.724 3.266-1.224 6.583-1.431 9.9a48.227 48.227 0 0 0-.069 4.968c.035 1.667.259 3.231.328 5.122.069 3.541-.172 6.806 1.068 9.419l.104.206.051.086.104.155.206.327c.138.206.328.464.311.378.034-.035 0 0 0 .068.017.035.43.086.637.138l.758.137c1.017.172 2.033.43 3.033.671.206.051.603.154.586.395l.068.034Z%27/%3E%3Cpath d=%27M453.856-167.289c.121-1.552 2.57-1.241 3.777-1.758.482-.207 1.017-.345 1.586-.328.621.017 2.069.104 2.776.862.38.362.638.844.793 1.362.052.258.138.568.156.758.103.965.103 1.723.155 2.551a102.758 102.758 0 0 1-1.207 19.631c-.569 3.275-1.397 6.446-2.242 9.565-.828 3.137-1.793 6.309-2.983 9.394a53.836 53.836 0 0 1-.931 2.292 32.787 32.787 0 0 0-.862 2.172 91.728 91.728 0 0 0-1.535 4.498c-.948 3.051-2.052 6.239-3.294 9.221-.879 2.189-1.776 4.326-2.569 6.481-.776 2.085-1.517 4.463-2.483 6.635l-2.759 6.429c-.914 2.24-1.983 4.36-2.949 6.446a69.674 69.674 0 0 0-1.362 3.12c-.431 1.068-.707 1.999-1.121 3.24-.793 2.327-1.793 4.516-2.793 6.636-1 2.137-2 4.188-2.828 6.29-.879 2.224-1.88 4.395-2.949 6.533a119.556 119.556 0 0 1-3.397 6.239c-1.12 1.965-2.138 4.016-3.121 6.118-1.948 4.171-4.017 8.635-6.707 12.565-2.501 3.895-4.829 7.945-7.415 11.927-2.604 4.016-5.432 7.721-8.26 11.496-3.431 4.498-7.087 8.876-11.122 12.91-4 4.032-8.363 7.841-13.329 10.857-2.501 1.517-5.07 2.758-7.708 3.896-2.656 1.12-5.449 2.068-8.346 2.62a34.044 34.044 0 0 1-4.397.55c-1.483.087-2.966 0-4.346-.034-2.81-.103-5.638-.24-8.483-.517-3.001-.293-6.036-.723-9.019-1.447-3-.759-5.759-1.552-8.673-2.379-2.88-.827-5.76-1.74-8.605-2.861-2.741-1.103-5.483-2.068-8.294-3.033l-8.76-2.965c-2.862-1.017-5.776-1.879-8.725-2.706s-5.966-1.672-8.88-2.568c-2.914-.844-5.88-1.586-8.863-2.275-2.932-.69-5.898-1.362-8.846-2.12-3.001-.741-5.881-1.758-8.726-2.568a46.002 46.002 0 0 0-4.311-1.017c-1.569-.31-3.069-.793-4.5-1.327-1.449-.517-2.845-1.086-4.242-1.551-1.362-.466-2.863-.776-4.345-1.258-5.139-1.603-9.933-3.982-14.589-6.48-4.655-2.483-9.363-5.12-13.467-8.619-1.741-1.447-3.38-3.205-4.862-4.791-1.535-1.603-3.139-3.171-4.708-4.791-1.586-1.603-3.138-3.275-4.587-5.05-.707-.897-1.414-1.81-2.052-2.775l-1.845-2.879-9.811-15.184c-3.104-4.774-6.174-9.548-9.95-13.668-3.776-4.153-8.087-7.859-12.432-11.53-5.743-4.93-11.95-9.221-18.313-13.358-4.966-3.274-9.984-6.463-15.106-9.427a177.988 177.988 0 0 0-7.776-4.24c-2.708-1.345-5.277-2.982-7.691-4.688a116.92 116.92 0 0 0-7.087-4.688c-2.38-1.482-4.949-2.775-7.38-4.361-4.863-3.102-9.33-6.79-13.433-10.824a103.737 103.737 0 0 1-7.363-7.98c-2.362-2.757-4.397-5.877-6.122-9.065-1.741-3.189-3.276-6.446-4.914-9.6-.431-.845-.828-1.741-1.086-2.689l-.173-.638-.069-.276a7.76 7.76 0 0 1-.172-1.103 10.548 10.548 0 0 1-.035-1.344c.035-.517.052-1.017.087-1.517 0-.189.034-.379.051-.551 0-.087 0-.19.035-.259l.241-.034c.328-.035.655-.069.983-.069.328 0 .707.051 1.035.086.344.052.707.121.845.19.69.258 1.43.413 2.138.637.224.069.62.138.655.448.12.879-1.259.983-1.983 1.172l-.655.155-.328.069s-.069.052-.103.069c-.104.087-.138.173-.138.224.017.104.086.19.103.224 0 .035.017 0 .035.069l.034.535c.017.241.052.482.104.741-.018-.069.103.465.207.758.103.345.224.672.379 1.017.276.638.69 1.413 1.07 2.189 1.5 3.051 2.896 6.084 4.465 8.98 1.57 2.912 3.31 5.584 5.432 8.135 2.086 2.568 4.31 5.05 6.639 7.394 3.19 3.223 6.57 6.187 10.26 8.79a67.349 67.349 0 0 0 5.673 3.619c1.948 1.086 4.052 2.241 6 3.464 2.294 1.414 4.587 2.965 6.743 4.464 2.19 1.483 4.397 2.844 6.742 4.033 4.811 2.5 9.432 5.257 14.002 8.118 9.397 6.033 18.985 11.927 27.589 19.252 3.863 3.24 7.76 6.515 11.347 10.204 3.638 3.653 6.725 7.876 9.518 12.064 2.811 4.189 5.518 8.48 8.277 12.72l4.121 6.377c1.293 2.137 2.604 4.033 4.225 5.895 3.035 3.55 6.725 6.877 9.984 10.496 3.19 3.378 7.07 6.101 11.191 8.497 4.156 2.361 8.449 4.688 12.777 6.601a55.856 55.856 0 0 0 6.639 2.43c.569.173 1.121.31 1.69.466a32.74 32.74 0 0 1 1.862.517c1.225.379 2.38.81 3.518 1.223 1.535.552 3.018 1.07 4.501 1.397l2.414.465c.845.172 1.672.38 2.483.603 3.276.88 6.328 1.93 9.484 2.637 6.345 1.517 12.898 2.758 19.278 4.705 3.604 1.052 7.277 2 10.95 3.12 3.707 1.12 7.242 2.447 10.846 3.62 2.155.723 4.328 1.447 6.484 2.223 2.155.758 4.328 1.672 6.38 2.43 4.173 1.534 8.535 2.723 12.915 3.947 4.259 1.258 8.639 1.844 13.105 2.172 2.242.155 4.484.24 6.742.327 2.242.103 4.346.034 6.501-.345 5.035-.81 9.915-2.947 14.537-5.377 4.569-2.5 8.708-5.791 12.536-9.445 4.759-4.516 9.018-9.514 13.019-14.736 2-2.603 3.966-5.274 5.88-7.946 1.879-2.671 3.621-5.463 5.345-8.29 1.759-2.896 3.604-5.877 5.449-8.687 1.742-2.86 3.173-5.929 4.621-9.031 1.414-3.085 3.001-6.256 4.725-9.17 1.638-2.964 3.156-5.98 4.449-9.1.535-1.292 1.052-2.705 1.655-4.05l1.811-3.981c1.224-2.654 2.293-5.17 3.104-7.963.948-2.878 2.259-5.533 3.466-8.135a74.172 74.172 0 0 0 1.69-3.947l1.707-4.016c.758-1.775 1.483-3.516 2.103-5.291a91.904 91.904 0 0 1 2.035-5.498c1.449-3.637 2.949-7.118 4.104-10.755.604-1.827 1.173-3.688 1.828-5.55.621-1.861 1.466-3.74 2.155-5.446 1.397-3.533 2.432-7.17 3.38-10.91.828-3.171 1.569-6.326 2-9.497.414-3.188.673-6.463.794-9.686.12-3.206.051-6.567-.156-9.6-.034-.224-.034-.121-.051-.155h-.035c-.034 0-.052 0-.069.034.345.104-1.017-.207-1.948-.362-1.018-.172-2.018-.431-3.018-.672-.207-.052-.603-.155-.586-.396l-.035-.069ZM-158.709 711.525c.137.742-.429 1.26-1.285 1.501-.857.242-1.919.156-2.69.156-.599 0-1.319-.156-1.832-.518a9.165 9.165 0 0 1-1.645-1.347c-.24-.241-.48-.5-.685-.742-.103-.121-.223-.259-.309-.379-.428-.536-.976-1.347-1.404-2.003-3.392-5.385-6.801-10.701-10.124-16.138-3.306-5.455-6.441-11.116-8.754-17.192-1.147-3.038-2.107-6.197-2.775-9.373-.634-2.986-1.627-6.075-2.072-9.441-.326-2.503-.206-4.868-.069-7.232.171-2.382.497-4.764 1.045-7.095a40.07 40.07 0 0 1 .994-3.469c.188-.57.411-1.139.616-1.692l.583-1.57c.753-2.106 1.387-4.315 2.141-6.525 2.981-9.044 8.274-17.002 13.773-24.355l8.205-11.081c2.792-3.694 5.704-7.25 8.497-10.857 5.498-7.319 11.22-14.551 16.667-21.869a366.156 366.156 0 0 0 4.831-6.628 191.475 191.475 0 0 1 4.933-6.68c3.375-4.384 6.784-8.631 10.021-13.032 3.324-4.453 6.852-8.699 10.501-12.859 3.666-4.126 7.366-8.199 11.306-12.1 4.18-4.125 8.668-8.061 13.636-11.375 2.33-1.502 4.42-3.486 7.092-5.178a18.773 18.773 0 0 1 2.072-1.122l1.902-.949 3.854-2.037a53.842 53.842 0 0 1 8.514-3.659c2.895-.984 5.807-1.83 8.702-2.659l4.3-1.277 2.124-.673c.822-.276 1.764-.431 2.57-.483 1.66-.104 3.134.052 4.384-.138.617-.087 1.183-.259 1.68-.535a2.2 2.2 0 0 0 .376-.225l.565-.362a4.056 4.056 0 0 1 1.645-.449c1.045-.069 2.313.086 3.34 1.156.309.346.549.484.96.553.428.069.959 0 1.764-.087 1.662-.12 3.186.277 4.574.76 2.655 1.018 5.19 2.123 7.691 3.435 4.968 2.589 9.627 6.145 13.088 10.615 1.644 2.002 3.306 4.056 4.642 6.387a23.135 23.135 0 0 1 1.713 3.676c.445 1.277.788 2.537 1.13 3.78.343 1.243.686 2.468 1.148 3.608.497 1.156 1.01 2.502 1.302 3.797.651 2.641.754 5.385.463 8.061-.223 2.278-.788 4.47-1.25 6.611-.48 2.157-.96 4.332-1.577 6.49a41.444 41.444 0 0 1-1.062 3.21 20.473 20.473 0 0 0-1.028 3.038c-.274 1.036-.685 2.278-1.182 3.28-.445.966-.856 1.95-1.233 2.968-1.01 2.728-1.799 5.593-2.827 8.441-1.045 2.9-2.415 5.506-3.374 8.233-.24.656-.428 1.26-.651 1.968-.24.708-.514 1.381-.788 2.054-.565 1.329-1.182 2.572-1.696 3.815-.548 1.277-.805 2.416-1.2 3.9a40.949 40.949 0 0 1-1.404 4.091c-1.045 2.658-2.244 5.178-3.22 7.75-.908 2.538-1.816 5.282-2.724 7.923-2.432 7.094-4.676 14.205-7.366 21.231-2.107 5.523-4.625 10.891-7.452 16.069-1.387 2.607-2.946 5.092-4.488 7.56-1.559 2.469-3.1 4.92-4.659 7.388a300.11 300.11 0 0 1-9.353 13.998c-1.61 2.296-3.203 4.575-4.745 6.887-1.559 2.296-2.93 4.695-4.351 7.146-.891 1.519-1.816 3.056-2.81 4.54-.959 1.415-1.73 2.917-2.45 4.505-.719 1.588-1.387 3.228-2.192 4.85-.788 1.606-1.61 3.176-2.415 4.73-1.61 3.124-3.186 6.231-4.3 9.493-.291.811-.514 1.623-.77 2.486l-.24.828c-.103.328-.189.656-.326 1.019-.24.638-.514 1.363-1.114 2.123a2.59 2.59 0 0 1-1.576.932c-.53.103-.993.034-1.438-.087-.771-.207-1.49-.362-2.193-.587-.223-.069-.617-.12-.651-.448-.12-.881 1.25-.984 1.936-1.191.805-.242 1.661-.535 1.833-.794.085-.121.274-.587.6-1.398l.29-.812.651-2.071c.275-.828.566-1.64.891-2.434 1.285-3.193 2.878-6.179 4.437-9.079.77-1.45 1.559-2.917 2.278-4.332l2.09-4.488c.72-1.519 1.559-3.09 2.552-4.54.908-1.311 1.765-2.692 2.621-4.09 1.148-1.916 2.279-3.884 3.512-5.817 1.25-1.951 2.518-3.798 3.803-5.662 2.552-3.728 5.139-7.405 7.572-11.15l8.376-13.308c2.86-4.419 5.43-8.924 7.726-13.619 2.415-4.885 4.35-9.925 6.15-15.103 1.832-5.161 3.477-10.391 5.224-15.569l2.364-7.077c.84-2.416 1.867-4.712 2.792-6.973.925-2.261 1.765-4.505 2.279-6.784.616-2.71 1.867-4.988 2.758-7.18a23.63 23.63 0 0 0 .6-1.623l.582-1.795c.428-1.208.89-2.399 1.387-3.555 1.028-2.365 1.953-4.419 2.69-6.784.77-2.313 1.473-4.712 2.398-7.111.222-.604.48-1.191.736-1.795l.754-1.657c.411-.95.651-2.089 1.062-3.401.103-.311.206-.638.343-.966l.325-.812c.206-.535.394-1.07.583-1.605a49.98 49.98 0 0 0 .976-3.331c.583-2.261 1.062-4.592 1.61-6.939 1.062-4.453 1.2-9.027-.36-13.118l-.667-1.657a27.975 27.975 0 0 1-.6-1.813l-.976-3.469c-.617-2.244-1.456-4.16-2.69-6.076-1.216-1.898-2.69-3.676-4.214-5.506a33.408 33.408 0 0 0-4.83-4.781c-3.135-2.52-6.733-4.488-10.501-6.11-1.867-.76-3.889-1.692-5.568-2.02a6.405 6.405 0 0 0-1.25-.121c-.206 0-.394 0-.6.035l-.822.086c-.6.052-1.387.069-2.193-.172-.822-.242-1.559-.777-2.055-1.33 0-.017-.189-.138-.548-.155-.326-.034-.754.086-.72.104a7.626 7.626 0 0 1-2.724 1.294c-.959.242-1.901.311-2.757.328-1.713.035-3.187-.052-4.317.328-7.04 2.399-14.407 3.901-20.865 6.922-1.953.932-3.871 1.985-5.876 3.038-.976.517-2.055 1.035-3.014 1.501-.891.432-1.765 1.001-2.621 1.623-1.73 1.243-3.443 2.71-5.413 4.004a76.39 76.39 0 0 0-5.294 3.815c-6.835 5.437-12.796 12.013-18.706 18.624-3.46 3.918-6.835 7.871-10.021 11.996-3.135 4.16-6.441 8.32-9.678 12.411-1.987 2.554-3.975 5.109-5.842 7.733-1.884 2.64-3.837 5.264-5.79 7.87l-11.871 15.449c-2.039 2.641-4.026 5.368-6.133 8.009-2.072 2.641-4.179 5.264-6.201 7.905-2.021 2.641-3.94 5.403-5.961 8.095-2.004 2.693-3.991 5.386-5.893 8.113-3.237 4.643-6.132 9.476-8.308 14.637-1.096 2.572-1.936 5.213-2.758 7.957-.428 1.364-.856 2.745-1.353 4.125-.531 1.416-.977 2.607-1.353 3.953-1.011 3.521-1.439 7.198-1.508 10.909-.205 3.676.702 7.111 1.662 10.874.24.932.445 1.899.651 2.831.205.897.411 1.812.668 2.693.462 1.795 1.062 3.555 1.713 5.299 1.302 3.486 2.912 6.869 4.711 10.166 3.049 5.61 6.612 11.012 10.089 16.467l2.621 4.073c.891 1.347 1.73 2.762 2.621 3.884l.154.173.069.069.137.138.274.276c.188.155.377.345.565.483.685.483 1.079 1.07 1.73 1.45a5.613 5.613 0 0 0 2.364.725c.189 0 .566.035.617.276l-.171-.103ZM294.275 711.083c-.12 1.554-2.567 1.243-3.774 1.761-.465.207-1.016.345-1.516.345h-1.775l-1.034.035H283.936s-.207.034-.224-.035l-.069-.259-.483-1.934-.344-1.312-.293-1.053-.62-2.158c-.414-1.467-.793-2.969-1.034-4.575-.104-.794-.19-1.623-.19-2.451l-.034-2.21-.138-4.437c-.224-5.922-.448-12.085.827-18.214a34.304 34.304 0 0 1 1.275-4.506c.241-.674.655-1.675.638-1.796.069-.397 0-1.174.086-2.141a6.2 6.2 0 0 1 .362-1.571l.551-1.174.948-1.985 1.913-3.988c1.826-3.867 3.756-7.873 6.1-11.619 2.326-3.798 5.238-7.217 8.133-10.428l4.412-4.782a70.371 70.371 0 0 1 4.704-4.661c1.62-1.485 3.292-2.883 4.963-4.265 1.62-1.364 3.361-2.831 5.222-4.091a63.6 63.6 0 0 1 5.669-3.47l5.721-3.022c3.739-2.037 7.72-4.264 12.028-5.524 4.084-1.312 8.203-2.711 12.511-3.747 4.256-1.139 8.874-1.329 12.958-1.864 4.98-.674 10.15-1.934 15.664-1.796 1.396.035 2.689.19 3.878.225.603.017 1.171.017 1.688-.018.259-.017.517-.051.776-.103l.879-.19c2.791-.639 5.566-.622 8.185-.518 1.292.052 2.619.138 3.808.155 1.052 0 2.189-.19 3.395-.466 2.361-.535 5.221-1.485 8.341-.898 1.016.225 1.981.139 3.119-.103.551-.121 1.12-.294 1.706-.484.603-.207 1.43-.431 2.119-.535 1.43-.241 2.757-.259 3.929-.397a12.753 12.753 0 0 0 1.689-.293c.258-.069.517-.138.775-.242l.914-.328c2.636-.95 5.324-1.778 8.116-2.331.672-.138 1.447-.259 2.068-.362.62-.104 1.241-.242 1.844-.415 1.223-.345 2.395-.828 3.618-1.363 2.585-1.019 5.118-2.124 7.789-3.039 2.637-.915 5.205-1.692 7.548-2.78a21.598 21.598 0 0 0 3.447-1.933c1.292-.898 2.722-1.64 4.17-2.124 2.585-.915 5.135-2.071 7.651-3.297l7.616-3.781a265.121 265.121 0 0 1 7.789-3.574c5.136-2.244 10.529-4.178 15.957-5.49 2.723-.708 5.532-1.312 8.427-1.502a27.746 27.746 0 0 1 4.325.104c1.344.12 2.706.138 4.084.138l3.361-.052c.534 0 1.206.017 1.585-.035.414-.051 1.551-.241 2.189.294 2.912 2.054 6.703 1.519 10.58 2.572 3.567 1.243 7.169 2.038 10.736 3.678 7.427 3.746 14.854 7.406 21.902 11.929a96.311 96.311 0 0 1 3.515 2.348c.586.432 1.12.794 1.741 1.261.603.483 1.12.984 1.62 1.45.499.466.982.898 1.447 1.191.121.069.224.138.345.19l.482.224c.328.156.655.311.965.484a38.084 38.084 0 0 1 3.688 2.227c4.463 3.056 8.22 6.871 12.045 10.428 3.826 3.591 7.703 7.216 11.236 11.204 2.343 2.676 4.583 5.439 6.444 8.563a41.848 41.848 0 0 1 2.43 4.817c.362.829.69 1.658 1 2.504l.448 1.26c.138.414.293.846.413 1.415.293 1.658-.034 3.108.138 4.144.035.259.104.466.19.656.103.207.155.242.465.656.5.673.879 1.485 1.051 2.331a5.37 5.37 0 0 1-.103 2.607 4.28 4.28 0 0 1-.259.656l-.172.397c-.103.276-.19.535-.259.828-.292 1.157-.275 2.452-.361 3.902-.052.725-.138 1.485-.362 2.279-.138.449-.207.639-.276.932a6.877 6.877 0 0 0-.155.898c-.086.639-.138 1.347-.293 2.106-.069.38-.172.777-.31 1.157l-.379.984c-1 2.59-2.154 5.11-3.378 7.562-2.412 4.73-4.808 9.409-7.53 13.967-2.723 4.54-5.67 8.908-8.772 13.207-3.86 5.421-8.15 10.549-12.682 15.417a172.414 172.414 0 0 1-3.464 3.626c-1.206 1.191-2.533 2.382-4.17 3.211-.81.414-1.706.725-2.62.915-.62.121-.482.086-.62.104l-.276.034c-.362.052-.741.069-1.103.086-.654.018-1.464-.051-1.964.035-.758.138-1.43.017-2.206-.259-.672-.242-1.43-.363-2.137-.57-.224-.069-.62-.121-.672-.431-.12-.864 1.207-1.002 1.948-1.226.861-.259 1.792-.483 2.791-.535 1.172-.018 1.844.034 2.602.017.259 0 .5 0 .741-.035-.051.018.431-.069.69-.12.293-.069.586-.156.878-.277a8.095 8.095 0 0 0 1.706-.897c1.121-.743 2.172-1.727 3.24-2.814l3.223-3.315c4.239-4.454 8.237-9.116 11.89-14.071 5.032-6.75 9.512-13.846 13.269-21.356 2.257-4.385 4.48-8.753 6.255-13.276l.327-.846c.086-.225.155-.466.207-.708.121-.501.172-1.07.259-1.709.086-.639.189-1.347.43-2.055.207-.604.293-.984.379-1.571.156-1.087.121-2.348.311-3.694a11.33 11.33 0 0 1 .465-2.055 7.38 7.38 0 0 1 .413-.984c.069-.155.138-.345.173-.552a3.205 3.205 0 0 0-.724-2.59c-.534-.57-.948-1.605-1.017-2.382-.103-.812-.051-1.502-.051-2.141.017-.639.034-1.209-.052-1.692-.052-.414-.293-1.019-.483-1.623a40.477 40.477 0 0 0-1.378-3.487c-1.017-2.279-2.223-4.472-3.636-6.492-1.448-2.054-3.05-4.005-4.722-5.887-3.05-3.401-6.41-6.56-9.805-9.703-3.446-3.124-6.755-6.422-10.305-9.219-1.775-1.398-3.618-2.676-5.549-3.763-.482-.259-.965-.536-1.464-.76-.397-.19-1.241-.587-1.775-1.019-1.103-.846-1.878-1.709-2.671-2.348-3.533-2.641-7.513-5.127-11.477-7.371a243.945 243.945 0 0 0-8.685-4.662l-4.411-2.261c-1.517-.795-2.809-1.451-4.326-1.986-1.482-.552-3.032-1.018-4.635-1.519l-2.395-.777-1.103-.363c-.345-.086-.707-.19-1.069-.259-1.464-.293-3.101-.414-4.859-.69a15.972 15.972 0 0 1-2.688-.656c-.448-.138-.896-.345-1.344-.553l-.655-.345-.517-.328s-.052-.034-.086-.034l-.586.069a6.839 6.839 0 0 1-.621.034h-1.292l-3.533.069c-1.189 0-2.412 0-3.653-.086l-1.723-.121a25.736 25.736 0 0 0-1.62 0c-2.826.104-5.687.725-8.564 1.502-2.913.794-5.756 1.623-8.548 2.676-5.583 2.072-11.08 4.661-16.456 7.337-3.102 1.571-6.221 3.212-9.478 4.662a63.22 63.22 0 0 1-4.963 1.968c-.706.259-1.43.621-2.102 1.018-.362.208-.621.398-1.017.657-.396.258-.775.517-1.189.759-3.877 2.331-8.116 3.332-11.907 4.748l-5.756 2.262c-1.93.828-4.067 1.691-6.29 2.054-2.102.311-3.98.725-5.962 1.312-.982.276-1.947.604-2.912.932l-1.448.518c-.448.173-1.103.397-1.654.535-2.326.553-4.481.398-6.238.812-.793.173-1.896.621-2.999.863-1.102.259-2.309.432-3.567.311-.844-.086-1.275-.242-1.792-.259-.517-.052-1.051-.017-1.602 0-1.103.103-2.241.38-3.43.656-1.189.293-2.464.587-3.791.725-.655.069-1.396.086-2.016.052l-1.861-.086c-2.464-.139-4.859-.277-7.186 0a14.38 14.38 0 0 0-1.723.293c-.5.121-1.327.311-1.947.345-1.344.121-2.637 0-3.86-.086-5.928-.639-11.822.863-17.956 1.623l-4.55.466c-1.499.138-2.998.276-4.463.57-2.946.535-5.859 1.329-8.754 2.21-2.964.932-6.048 1.899-8.926 2.883-2.86 1.07-5.6 2.572-8.375 4.074-1.378.76-2.774 1.519-4.187 2.244a72.118 72.118 0 0 0-4.084 2.245c-2.671 1.588-5.204 3.332-7.548 5.369-4.136 3.453-8.047 6.889-11.528 10.928-3.567 3.954-7.186 7.908-10.047 12.224-3.843 5.8-6.565 12.395-9.788 18.887l-.293.604a1.773 1.773 0 0 0-.137.345c-.069.242-.104.553-.121.933 0 .38 0 .846-.017 1.398a4.451 4.451 0 0 1-.138.898c-.069.328-.224.69-.276.829a34.772 34.772 0 0 0-1.499 4.885c-.724 3.35-.982 6.82-.982 10.342 0 2.987.155 6.008.275 9.064.069 1.519.121 3.055.138 4.609 0 1.45.173 2.763.517 4.178.31 1.399.758 2.832 1.189 4.282l.638 2.175c.103.276.069.311.155.276.034 0 .034-.017.052-.034l.017-.017h.224l.913-.104c1.069-.104 2.051.155 3.05.328 1.017.173 2.016.432 3.016.673.207.052.603.156.586.397l-.19.156Z%27/%3E%3Cpath d=%27M430.929-167.19c.121-1.565 2.605-1.204 3.778-1.72a4.504 4.504 0 0 1 1.466-.378l.846-.052c.224 0 .655-.069 1.155-.017a3.717 3.717 0 0 1 1.57.499c.242.137.449.309.656.515 0-.017.138.155.241.276.104.137.207.275.276.429.173.293.311.637.38.929.051.155.069.292.086.43l.052.258.103.533c1.018 5.657 2.605 11.469 2.708 17.642 0 .774 0 1.531-.034 2.305 0 .705-.121 1.736-.311 2.476-.172.774-.362 1.444-.448 2.029a4.668 4.668 0 0 0-.069.825c0 .138 0 .241.017.379l.069.464c.552 3.353-.241 6.551-.966 9.371l-.535 2.115-.241 1.032c-.052.275-.086.533-.121.843-.052.619-.017 1.358-.086 2.235-.035.86-.397 1.943-.587 2.511-.897 2.751-1.707 5.554-2.553 8.374a229.304 229.304 0 0 1-1.914 6.087c-.069.207-.087.533-.069 1.084 0 .533 0 1.324-.276 2.166a3.74 3.74 0 0 1-.259.602l-.19.361-.362.688-.69 1.376c-1.777 3.731-3.157 7.686-4.571 11.71-1.398 4.04-2.933 8.047-4.486 12.02-.793 1.994-1.604 3.989-2.484 5.95-.879 2.011-1.828 3.868-2.656 5.794-1.691 3.852-3.243 7.876-5.33 11.762a54.239 54.239 0 0 1-1.656 2.871c-.57.912-1.053 1.72-1.553 2.648l-2.881 5.692c-1.052 2.012-2.277 3.732-3.381 5.52l-3.415 5.365c-2.243 3.817-4.951 7.256-7.711 10.54-1.691 1.978-3.278 3.887-5.106 5.847a62.815 62.815 0 0 1-5.796 5.348c-4.054 3.319-8.418 6.139-12.765 8.839-2.312 1.461-4.968 2.51-7.573 3.13-2.622.653-5.21.962-7.711 1.323-1.242.19-2.484.361-3.674.602-.621.103-1.139.258-1.829.396-.793.189-1.57.223-2.346.206-3.036-.172-5.434-1.307-7.711-1.702a12.243 12.243 0 0 0-1.759-.207c-.673-.017-1.363-.034-2.087-.086-1.449-.068-3.037-.43-4.33-.842-2.709-.826-5.244-1.909-7.728-2.786-5.175-1.6-10.316-3.955-15.163-6.276a195.117 195.117 0 0 0-7.659-3.474c-2.691-1.238-5.089-2.751-7.504-3.972a28.69 28.69 0 0 0-1.811-.843c-.587-.258-1.225-.481-1.932-.756a51.253 51.253 0 0 1-3.951-1.788c-2.57-1.29-5.002-2.717-7.435-4.093-4.83-2.717-9.573-5.88-13.696-9.612-4.175-3.646-8.194-7.6-11.489-12.158-5.554-7.995-9.729-16.68-15.197-24.452a52.814 52.814 0 0 0-8.039-8.941c-2.984-2.7-6.348-4.901-9.763-7.17-4.572-3.027-9.247-5.899-14.042-8.53a154.933 154.933 0 0 0-13.904-6.792l-14.421-5.864c-3.226-1.238-6.503-2.407-9.746-3.697a118.565 118.565 0 0 1-4.83-2.029 83.575 83.575 0 0 0-4.761-1.926c-2.553-.928-5.106-1.857-7.659-2.768-2.588-.963-5.089-2.047-7.608-3.061-5.02-2.081-10.022-4.213-14.887-6.586a422.355 422.355 0 0 1-13.92-7.136 156.831 156.831 0 0 1-6.814-3.869 89.458 89.458 0 0 1-3.347-2.098c-1.121-.757-2.156-1.582-3.174-2.356-2.587-1.891-5.347-3.834-7.797-6.053-2.519-2.201-4.692-4.797-6.659-7.445a64.691 64.691 0 0 1-5.33-8.409l-.57-1.1-.672-1.376-.535-1.152-.672-1.427-.328-.688-.173-.344h.345c.449-.052.897-.103 1.311-.189.587-.121 1.329-.138 2.019-.103.345.017.69.051 1.035.103.241.051.396.12.603.189.69.258 1.432.413 2.14.636.224.069.62.138.655.447.12.877-1.26.98-1.984 1.169-.431.104-.88.224-1.31.31-.19.086-.19.172-.225.224-.052.12.069.189.069.206v.086l.448.911c.328.671.673 1.324 1.035 1.978a60.616 60.616 0 0 0 4.813 7.531c1.794 2.425 3.657 4.66 5.865 6.638 2.208 2.029 4.572 3.783 7.09 5.64l2.467 1.909c.776.602 1.621 1.117 2.501 1.685a111.78 111.78 0 0 0 5.33 3.147c3.623 2.012 7.349 3.869 11.092 5.76 8.66 4.351 17.647 8.22 26.635 11.934 4.674 1.84 9.573 3.319 14.334 5.434 4.589 2.046 9.367 3.697 14.146 5.485 8.521 3.474 17.267 6.534 25.53 10.868 8.297 4.247 16.06 9.234 23.667 14.616a57.051 57.051 0 0 1 9.885 9.44c2.915 3.56 5.244 7.411 7.555 11.229 2.277 3.834 4.451 7.686 6.745 11.418 2.277 3.8 4.744 7.153 7.78 10.283 2.018 2.115 4.209 4.092 6.451 6.018 2.277 1.943 4.537 3.714 7.004 5.33 2.449 1.634 4.985 3.096 7.624 4.54 2.622 1.462 5.21 2.924 7.849 4.127 1.518.723 3.036 1.187 4.796 1.96 1.673.757 3.208 1.617 4.726 2.46 1.501.825 2.985 1.65 4.468 2.287 1.587.67 3.209 1.392 4.779 2.132 3.777 1.754 7.469 3.594 11.229 5.141 1.898.791 3.726 1.427 5.762 2.115l5.813 2.184a36.39 36.39 0 0 0 2.847.911c.966.276 1.776.413 2.76.482.983.086 1.914.034 3.156.172 1.156.137 2.243.395 3.261.688 2.035.567 3.933 1.186 5.623 1.117.431-.017.794-.086 1.242-.189.518-.12 1.052-.258 1.57-.36 1.052-.224 2.087-.38 3.14-.551 4.864-.705 9.625-1.17 13.713-3.336 4.089-2.356 8.263-5.004 12.075-7.893 2.364-1.805 4.624-3.731 6.711-5.829 2.053-2.098 4.002-4.436 5.951-6.706 1.932-2.287 3.795-4.609 5.451-7.068l4.83-7.583 2.519-3.938c.793-1.272 1.483-2.63 2.156-4.023.69-1.393 1.363-2.803 2.139-4.196.776-1.427 1.673-2.7 2.381-4.024 2.967-5.313 4.95-11.28 7.676-16.92 2.156-4.763 3.933-9.716 5.744-14.668 1.777-4.918 3.278-10.025 5.451-14.96.363-.826.742-1.634 1.139-2.442.345-.757 1-1.806.983-2.046.138-.447-.086-1.376.19-2.666l.845-2.613 3.071-10.094.81-2.545c.259-.722.311-1.29.328-2.167 0-.808.035-1.943.293-2.906.19-.894.432-1.754.639-2.613.431-1.703.862-3.354 1.035-4.97.086-.808.12-1.599.069-2.39a12.505 12.505 0 0 0-.138-1.152c-.069-.413-.156-1.101-.121-1.617.103-1.874.724-3.301.793-4.47.087-1.41.087-2.855 0-4.282-.172-2.872-.707-5.761-1.293-8.667l-1.674-7.944h-.103c0 .017-.017.034-.19.069-1 .172-2.139-.069-3.139-.241-1.035-.172-2.019-.464-3.019-.722-.207-.052-.604-.155-.587-.396l-.069.104ZM337.1 711.074c-.121 1.552-2.571 1.242-3.779 1.759-.466.207-1.018.344-1.518.344l-5.16.035h-8.49l-4.244.017c-.673 0-1.571.052-2.623-.276-1.053-.293-1.967-1.155-2.433-1.672-2.261-2.43-3.296-5.447-4.194-8.102-.224-.913-1.242-1.827-2.001-3.654a5.77 5.77 0 0 1-.345-1.483l-.069-1.12-.138-2.069c-.242-2.758-.604-5.602-.725-8.533-.052-1.465-.052-2.947.069-4.447.121-1.448.259-2.862.449-4.292.5-4.138 1.363-8.326 2.778-12.326 1.484-3.982 3.175-7.74 5.228-11.446 2.036-3.672 4.556-7.188 7.42-10.274 2.778-3.068 5.677-6.068 8.818-8.843 3.123-2.775 6.505-5.344 10.112-7.516a102.746 102.746 0 0 1 11.095-5.792 110.252 110.252 0 0 1 11.699-4.396c1.985-.62 4.004-1.189 6.005-1.706 1.019-.242 1.968-.535 3.158-.724 1.122-.19 2.174-.259 3.123-.379.57-.069 1.122-.156 1.64-.276.448-.104 1.225-.311 1.829-.431a42.47 42.47 0 0 1 3.813-.586c2.537-.276 4.97-.414 7.455-.552 4.952-.258 9.87-.345 14.736-.517 4.866-.19 9.715-.465 14.46-1.172 4.953-.759 9.888-.948 14.599-1.707 2.502-.362 4.918-1.034 7.472-1.706l7.54-1.983c4.987-1.362 9.836-2.999 14.374-5.223 2.261-1.12 4.866-2.672 7.748-3.292 2.485-.604 4.918-1.569 7.368-2.638 2.433-1.069 4.884-2.258 7.438-3.292a184.223 184.223 0 0 1 7.627-2.896c3.658-1.328 7.299-2.586 10.905-3.965.673-.259 1.329-.224 1.777-.207.466.034.812.069 1.053.052.207.051 1.242-.552 2.019-.828 1.657-.655 3.365-1.086 5.073-1.379 3.451-.586 6.851-.603 10.216-.707 4.641-.103 9.352 0 14.011.776 4.607.862 9.146 1.879 13.598 3.379a59.888 59.888 0 0 1 5.591 2.189c1.846.828 3.571 1.793 5.314 2.706 3.486 1.862 6.954 3.793 10.285 5.999 4.469 2.914 8.748 6.43 12.286 10.395 3.399 3.568 7.178 6.912 10.422 10.895 1.622 1.982 3.089 4.119 4.245 6.447 1.104 2.31 2.174 4.482 3.21 6.843 1.363 3.103 2.45 6.516 2.415 10.084 0 .914-.086 1.759-.138 2.552l-.12 2.465c-.069 1.672-.121 3.361-.328 5.068a27.485 27.485 0 0 1-.742 3.982c-.311 1.258-.621 2.551-.967 3.827-.655 2.534-1.639 5.223-2.985 7.516-2.45 4.533-4.676 9.308-7.506 13.738-1.346 2.121-2.692 4.258-4.193 6.31-1.45 2.068-3.21 4.016-4.918 5.792-3.399 3.654-6.782 7.36-10.526 10.791a63.869 63.869 0 0 1-7.506 5.93c-2.64 1.775-5.626 3.378-8.956 3.947-1.622.293-3.399.259-4.935.138a69.676 69.676 0 0 0-4.659-.138h-2.347l-.794.035-.983.051c-.621.035-1.243.069-1.829.242-.829.241-1.605.138-2.399-.155-.69-.259-1.432-.397-2.14-.621-.224-.069-.621-.121-.655-.448-.121-.879 1.242-.983 1.967-1.19a23.121 23.121 0 0 1 2.623-.586 18.88 18.88 0 0 1 2.795-.224h.932l1.967.017 2.243.035a77.23 77.23 0 0 1 4.504.258c1.329.104 2.64.018 3.934-.241 2.589-.517 5.056-1.81 7.455-3.379a57.45 57.45 0 0 0 6.85-5.24c2.968-2.603 5.712-5.482 8.438-8.429l4.055-4.431c1.277-1.43 2.451-2.999 3.555-4.619 1.294-1.897 2.519-3.879 3.745-5.879 1.208-1.965 2.312-3.999 3.416-6.068l3.313-6.24.863-1.551c.259-.483.518-.966.742-1.483.466-1.017.828-2.068 1.174-3.154.672-2.224 1.276-4.724 1.777-6.964.431-2.276.5-4.655.587-7.12.034-1.207.103-2.499.189-3.706.087-1.121 0-2.258-.155-3.379-.311-2.241-1.104-4.447-2.071-6.619-.862-1.965-1.88-3.931-2.83-5.947-.897-1.897-2.036-3.672-3.313-5.361-2.588-3.379-5.78-6.344-8.955-9.464-1.571-1.517-3.193-3.258-4.642-4.758a53.931 53.931 0 0 0-4.814-4.258c-3.383-2.672-7.041-4.982-10.854-7.136a241.801 241.801 0 0 0-5.574-3.052 55.509 55.509 0 0 0-5.608-2.689c-3.831-1.551-7.851-2.689-11.958-3.62-4.142-.982-8.128-1.603-12.321-1.689-2.088-.069-4.176-.035-6.298.034-2.123.087-4.245.138-6.281.345-2.105.207-4.159.569-6.091 1.207-.984.327-1.864.689-2.813 1.172-.932.465-1.898.431-2.485.397-.621-.052-.915-.035-.897 0-6.695 2.689-13.546 4.912-19.982 7.722-2.986 1.328-5.988 2.827-9.215 4.051-1.587.604-3.296 1.155-4.935 1.534-1.415.362-2.847 1.017-4.279 1.741-7.127 3.931-15.134 6.12-22.795 8.016l-5.815 1.5c-2.002.483-4.021.827-6.023 1.103-4.02.535-7.989.776-11.837 1.345-9.422 1.448-18.895 1.137-28.213 1.499-2.882.121-5.781.276-8.628.518-1.415.137-2.83.31-4.21.586-.708.138-1.329.31-2.123.482a21.24 21.24 0 0 1-2.243.311c-1.484.138-2.778.275-4.176.655a86.18 86.18 0 0 0-4.176 1.086 106.163 106.163 0 0 0-8.214 2.654c-11.129 4.138-21.707 10.016-29.938 18.583a130.398 130.398 0 0 0-5.177 5.516 46.74 46.74 0 0 0-4.555 5.896c-2.71 4.154-4.832 8.722-6.678 13.377-2.399 6.085-3.365 12.842-3.693 19.393-.052 3.258.397 6.567.707 9.998.069.862.138 1.724.19 2.585.035 1.052.035 1.276.345 1.897.276.569.794 1.224 1.294 2.085.242.414.501.966.639 1.414l.414 1.189c.483 1.328.984 2.586 1.639 3.707.328.569.691 1.086 1.087 1.568.397.466.88.966 1.157 1.086.293.173.69.224 1.363.224h2.14l4.331-.069 8.662-.103h.587l.448-.052.915-.069c1.07-.103 2.053.156 3.054.328 1.018.172 2.019.431 3.02.672.207.052.604.155.587.397l.034.051ZM890.607 101.798c.345.189.569.396.777.603.189.224.431.775.379 1.309-.034.568-.466 1.068-.966 1.378-.466.293-.864.482-1.174.74-.397.345-.898.655-1.399.81l-1.743.517-3.142.861c-2.555.689-4.834 1.43-7.199 2.567a388.891 388.891 0 0 0-7.181 3.29c-9.409 4.358-17.989 10.456-25.153 17.897-5.162 5.392-9.633 11.576-13.793 17.898-2.089 3.135-3.936 6.511-5.87 9.801l-5.766 9.888-5.783 9.905c-1.951 3.29-4.092 6.666-6.526 9.68l-14.225 18.088-2.14 2.704-2.175 2.618a246.612 246.612 0 0 0-4.23 5.323 225.97 225.97 0 0 0-7.941 11.042c-2.521 3.772-5.075 7.562-7.199 11.455-1.053 1.946-2.037 3.979-2.797 5.977-.725 1.998-1.346 4.462-2.71 6.615-2.33 3.91-3.383 8.561-4.419 13.281-1.122 4.771-2.106 9.405-2.78 14.159-.638 4.944-1.139 9.974-1.743 14.969-.57 5.03-1.243 9.922-1.502 14.918-.311 4.909-.501 9.853-.932 14.814a131.483 131.483 0 0 1-.864 7.407c-.328 2.412-.535 4.858-.673 7.304-.241 4.272-.224 8.561-.224 12.867v6.46c.052 2.17-.052 4.324.172 6.356.777 7.046 4.126 13.833 9.409 18.587 3.522 3.238 7.768 5.702 12.171 7.769 4.16 1.946 8.545 3.445 12.947 4.995 2.21.758 4.419 1.55 6.612 2.377l6.612 2.274 17.66 5.943c4.609 1.464 9.339 2.739 14.018 4.255 4.713 1.464 9.253 3.479 13.586 5.598 4.195 2.05 8.476 4.031 12.516 6.425 4.074 2.343 7.993 4.927 11.825 7.648 4.765 3.446 9.512 7.063 13.707 11.266 2.106 2.084 4.126 4.238 6.112 6.408l2.71 2.963c.432.499.863 1.033 1.346 1.516.674.689.984 1.602.933 2.549-.035.827-.069 1.654-.294 2.412-.069.224-.138.637-.449.671-.88.052-.949-1.205-1.26-1.791a12.789 12.789 0 0 0-1.243-1.895c-.466-.62-1.001-1.223-1.536-1.877l-.57-.689-2.555-2.912c-1.813-2.049-3.66-4.048-5.576-5.96-1.916-1.912-3.884-3.738-5.973-5.46a150.376 150.376 0 0 0-6.457-5.047c-5.973-4.427-12.343-8.303-19.041-11.455-3.971-1.861-7.907-3.807-11.877-5.513-3.953-1.722-8.097-3.014-12.292-4.289-8.787-2.515-17.487-5.564-26.153-8.44l-5.887-1.981-5.801-2.033c-3.884-1.326-7.855-2.601-11.739-4.186-3.901-1.585-7.699-3.48-11.255-5.874-3.557-2.377-6.819-5.374-9.305-8.974-2.417-3.463-4.075-7.39-5.007-11.473a29.464 29.464 0 0 1-.725-6.27v-5.977c.052-7.924-.172-15.934.708-24.013 1.536-10.594 1.019-21.308 2.313-32.229l2.089-18.483c.449-3.721 1.105-7.425 1.899-11.094l1.26-5.443c.415-1.809.812-3.635 1.312-5.461.501-1.826 1.071-3.669 1.813-5.46.363-.896.794-1.774 1.26-2.653l.708-1.24c.207-.345.38-.724.552-1.103.691-1.533 1.157-3.324 1.865-5.167.708-1.809 1.519-3.514 2.399-5.202 2.089-3.962 4.575-7.597 7.044-11.214a269.76 269.76 0 0 1 7.734-10.68c1.64-2.171 3.332-4.29 5.058-6.391l2.624-3.118 2.538-3.152 10.082-12.678 5.161-6.581c1.64-2.205 3.125-4.547 4.541-6.924 2.831-4.789 5.593-9.681 8.389-14.522l7.044-12.402c2.434-4.1 5.075-8.096 7.906-11.972 3.764-5.133 7.976-10.094 12.793-14.383 4.799-4.307 10.064-8.062 15.657-11.266 4.817-2.705 9.771-4.875 14.674-7.166 2.607-1.171 5.317-1.912 7.907-2.635l.224-.069.104-.035.207-.069.432-.155.845-.31c.967-.362 1.986-.413 2.883-.534l.536-.034a.638.638 0 0 0 .31 0c.242-.052.363-.224.466-.534 0-.207.225-.896.467-.758l-.052.069Z%27/%3E%3Cpath d=%27M890.369 112.218c.773.103 1.082.603 1.271 1.585.086.568.155 1.223.206 1.877.034.103-.034.121-.103.138l-.189.069a7.54 7.54 0 0 0-.378.155c-.24.103-.481.206-.687.327-.859.413-1.134.637-1.649.792-.55.155-1.1.328-1.632.517l-.807.276-1.976.723c-2.164.827-4.312 1.757-6.493 2.705-2.165.93-4.226 1.894-6.253 3.048-4.054 2.24-7.868 4.927-11.527 7.838-3.676 2.911-7.06 6.046-10.152 9.542-4.484 5.047-8.315 10.628-11.63 16.571-1.718 3.031-3.522 5.977-5.257 8.922-.859 1.482-1.718 2.963-2.525 4.444-.79 1.465-1.632 3.084-2.525 4.565-1.77 3.032-3.659 5.925-5.514 8.819-1.856 2.928-3.831 5.805-5.841 8.63-2.01 2.825-4.089 5.598-6.15 8.354-2.079 2.739-4.106 5.529-6.322 8.251-2.628 3.255-5.342 6.339-7.867 9.508-2.491 3.135-4.896 6.563-7.387 9.818-4.93 6.58-9.603 13.16-12.901 20.584a90.99 90.99 0 0 0-2.474 5.96c-.378.982-.738 2.067-1.185 3.118l-1.254 3.031c-.807 1.998-1.409 3.824-1.598 5.891-.257 2.291-.755 4.479-1.219 6.615-.498 2.222-.979 4.375-1.254 6.528-.069.534-.12 1.068-.155 1.602l-.103 1.705a33.641 33.641 0 0 1-.464 3.531c-.412 2.291-.927 4.496-1.254 6.649a29.519 29.519 0 0 0-.292 3.204v3.376c0 4.444.017 8.923-.154 13.401-.069 2.222-.31 4.548-.395 6.666-.069 2.153.068 4.341.309 6.546.395 3.824 1.048 7.682 1.185 11.661.069 1.998-.155 3.996.464 5.409.395.775.893 1.826 1.185 2.773.309.964.55 1.946.756 2.928.653 3.359 1.014 6.459 2.474 9.353 1.305 2.98 2.834 5.84 4.672 8.509 2.44 3.6 5.532 6.667 8.967 9.336 3.23 2.532 6.786 4.703 10.393 6.787 3.591 2.101 7.318 3.876 11.149 5.546l7.73 3.256c1.271.517 2.663 1.137 3.883 1.826 1.236.672 2.422 1.343 3.624 1.826.481.189.928.344 1.409.465.55.155 1.099.293 1.632.465 1.082.327 2.147.706 3.178 1.137 2.078.827 4.088 1.791 6.064 2.721 1.992.948 3.899 1.861 5.909 2.705 2.062.895 4.003 1.963 5.892 3.048 1.821 1.051 3.625 2.119 5.463 3.049 1.804.93 3.779 1.723 5.669 2.687a92.231 92.231 0 0 1 10.977 6.391 168.02 168.02 0 0 1 18.673 14.899l2.731 2.55c.464.43.911.827 1.477 1.205.791.534 1.289 1.396 1.409 2.412.103.878.12 1.774-.137 2.549-.069.241-.189.655-.499.655-.858-.052-.841-1.223-1.219-1.705-.378-.586-.876-1.034-1.426-1.516-.533-.465-1.34-1.103-1.941-1.757l-.636-.655-1.168-1.137-1.323-1.274a148.516 148.516 0 0 0-5.462-4.927 164.072 164.072 0 0 0-11.561-9.094c-2.697-1.912-5.549-3.635-8.469-5.185a70.73 70.73 0 0 0-4.467-2.17c-1.477-.655-3.161-1.378-4.655-2.171-3.573-1.86-6.871-3.962-10.341-5.495-3.694-1.55-7.181-3.496-10.703-5.029-1.838-.81-3.71-1.482-5.617-1.964-2.233-.568-4.123-1.705-5.892-2.635a31.21 31.21 0 0 0-2.663-1.275l-2.834-1.171-5.686-2.36c-3.436-1.464-6.854-3.015-10.17-4.84-3.264-1.792-6.528-3.687-9.637-5.84-3.109-2.153-6.098-4.616-8.692-7.51-2.594-2.894-4.707-6.149-6.476-9.542a60.302 60.302 0 0 1-2.302-5.03c-.756-1.826-1.151-3.738-1.478-5.529-.326-1.792-.584-3.514-1.047-5.082a13.49 13.49 0 0 0-.842-2.239l-.275-.586c-.155-.292-.258-.585-.361-.878a7.573 7.573 0 0 1-.326-1.654c-.103-1.033-.086-1.998-.086-2.893 0-.879-.017-1.688-.069-2.567-.103-1.722-.292-3.479-.515-5.236-.447-3.531-.979-7.149-1.014-10.904 0-2.618.258-4.926.275-7.338.069-2.394.052-4.805.017-7.217l-.103-7.286c0-1.206-.051-2.429.035-3.772.086-1.292.257-2.567.464-3.79.498-2.825 1.15-5.495 1.374-8.113l.12-2.067c.052-.741.137-1.464.223-2.187.206-1.447.481-2.86.773-4.238l1.065-4.892c.155-.809.31-1.602.43-2.394l.343-2.515c.636-3.669 2.371-6.718 3.47-9.697 2.302-6.322 5.137-12.575 8.83-18.311 4.329-6.735 9.362-12.746 14.086-19.085 3.041-3.876 6.305-7.493 9.363-11.248 3.006-3.755 5.943-7.699 8.864-11.575 3.006-4.031 5.909-8.113 8.589-12.333 2.697-4.255 5.445-8.458 7.713-12.867 1.993-3.841 4.191-7.528 6.304-11.231l3.127-5.598a101.44 101.44 0 0 1 3.418-5.529c3.213-4.806 6.906-9.319 11.046-13.384 4.174-4.065 8.709-7.613 13.485-10.886 4.054-2.773 8.538-5.151 13.004-7.045 2.216-.999 4.466-1.981 6.803-2.842l1.821-.758a5.592 5.592 0 0 1 1.546-.379c.257-.035.515-.052.79-.069.189-.017.137 0 .172.034.034 0 .051.035.086.052.068.034.154.052.274.086.104 0 .121-.052.189-.103.052-.069.121-.138.189-.259.069-.155.121-.465.189-.706.052-.207.155-.603.395-.585l.035-.052Z%27/%3E%3Cpath d=%27M890.347 126.928c.399.034.659.206.867.463.191.31.329.516.416 1.151.052.274.087.583.121.91-.017.274.226.755-.173.789-.503.241-1.057.515-1.421.773-.243.172-.503.343-.763.515a3.81 3.81 0 0 1-.711.343l-1.664.567-.797.292-.382.154c-.381.155-.866.361-1.3.567-3.726 1.802-7.28 3.931-10.66 6.318-3.38 2.386-6.569 5.047-9.603 7.88-3.05 2.833-5.858 5.837-8.424 9.082-3.744 4.67-6.829 9.82-9.88 15.091-1.525 2.626-3.033 5.305-4.645 7.931l-4.732 7.846c-3.172 5.237-6.483 10.473-10.314 15.383l-11.163 14.524c-1.109 1.442-2.218 2.936-3.449 4.378l-3.623 4.155c-1.196 1.373-2.323 2.712-3.363 4.137-1.126 1.528-2.322 2.953-3.432 4.344-1.126 1.425-2.132 2.747-3.05 4.309l-2.826 4.67-5.685 9.339c-2.028 3.262-3.692 6.627-4.992 10.164a53.47 53.47 0 0 0-1.682 5.374c-.242.91-.433 1.819-.624 2.747-.19.944-.398 1.94-.641 2.884-.953 3.949-2.08 7.726-2.375 11.52-.104 1.991-.433 4.103-.52 5.923-.017.463-.017.927 0 1.356l.052.652c.018.309.07.618.052.927 0 1.237-.329 2.387-.676 3.383-.346.978-.693 1.854-.901 2.678a6.08 6.08 0 0 0-.173 1.184c0 .275.034.533.19.876.139.343.399.721.659 1.253.277.515.537 1.219.52 1.975l-.104 2.97c-.104 3.88.035 7.777.572 11.623.225 1.665.537 3.33.936 4.978.451 1.649.693 3.52.867 5.185.19 1.7.381 3.348.953 4.807a93.309 93.309 0 0 1 1.889 4.807c.988 2.764 1.924 5.511 3.12 8.104.607 1.287 1.266 2.541 2.046 3.708.763 1.116 1.716 2.386 2.496 3.623 1.092 1.665 2.132 3.313 3.276 4.858 1.127 1.528 2.444 2.919 3.813 4.292 5.2 5.116 11.666 8.876 17.889 13.1 4.038 2.85 8.389 5.133 12.827 7.433 6.95 3.589 13.866 7.314 20.557 11.228 6.466 3.846 12.844 7.657 19.206 11.692a193.896 193.896 0 0 1 11.665 8.035c1.89 1.407 3.762 2.85 5.616 4.326l1.37 1.082.554.412.815.618c.52.395 1.04.841 1.612 1.253.815.567 1.3 1.528 1.3 2.575 0 .893-.104 1.769-.433 2.507-.121.223-.243.618-.572.584-.867-.121-.711-1.322-1.04-1.837-.312-.619-.763-1.065-1.248-1.528-.52-.481-1.162-.945-1.838-1.511l-3.137-2.593a231.478 231.478 0 0 0-5.113-4.086 193.495 193.495 0 0 0-10.661-7.64c-4.974-3.296-10.157-6.335-15.34-9.339-6.049-3.519-12.151-7.005-18.304-10.387-6.362-3.468-13.156-6.507-19.275-10.747-5.425-3.623-11.25-6.936-16.432-11.383-2.566-2.214-5.01-4.721-6.934-7.571-.97-1.39-1.837-2.798-2.738-4.154-.451-.67-.884-1.34-1.352-1.975a39.908 39.908 0 0 1-1.457-2.18c-1.733-2.902-2.912-5.992-3.969-8.996l-1.595-4.447c-.277-.721-.554-1.442-.849-2.146-.329-.755-.659-1.717-.832-2.541-.399-1.717-.503-3.365-.676-4.893-.156-1.579-.451-2.798-.867-4.481a65.075 65.075 0 0 1-1.386-9.648 92.089 92.089 0 0 1-.226-6.558l.052-3.125c0-.155-.069-.343-.294-.755-.208-.395-.59-.945-.867-1.666-.295-.704-.347-1.734-.26-2.317.069-.67.208-1.305.364-1.889.329-1.15.763-2.146.988-3.039.121-.446.208-.858.225-1.27.018-.206 0-.395 0-.584l-.069-.721c-.121-1.219-.069-2.403 0-3.502l.329-3.657c.07-1.236.208-2.575.399-3.829.399-2.54 1.04-4.978 1.647-7.365.364-1.425.71-2.85 1.005-4.257a56.878 56.878 0 0 1 1.075-4.43 58.142 58.142 0 0 1 3.189-8.532c1.265-2.747 2.808-5.408 4.351-7.915l4.593-7.623 2.739-4.463a38.996 38.996 0 0 1 3.051-4.395l3.328-4.052c1.022-1.322 2.166-2.816 3.31-4.12l4.282-4.876c1.404-1.597 2.687-3.314 4.039-5.013l7.956-10.25c2.738-3.554 5.494-7.004 7.904-10.73 2.444-3.691 4.715-7.52 6.985-11.348 1.924-3.279 3.866-6.524 5.668-9.82 1.838-3.297 3.658-6.627 5.669-9.889 2.669-4.361 5.737-8.533 9.169-12.361 3.449-3.846 7.228-7.314 11.198-10.593 3.397-2.764 7.002-5.322 10.816-7.554 1.941-1.116 3.761-2.146 5.928-3.125l1.837-.824c.503-.223 1.023-.343 1.526-.429l.762-.103.364-.034h.156l.278.086c.138.034.208 0 .242-.052.052-.051.122-.137.191-.24.069-.035.121-.43.191-.636.052-.206.156-.6.398-.583l.052-.086ZM890.471 29.146c.757.139 1.066.693 1.272 1.507.103.381.155 1.144.069 1.715-.035.312-.103.59-.155.866a4.562 4.562 0 0 0-.086.416c-.034.121-.017.33-.137.33-.567.207-1.444.398-2.303.467-.292.017-.43.017-.567.017h-1.34l-2.698-.034a225.529 225.529 0 0 1-11.325-.416c-3.781-.243-7.578-.641-11.342-1.247-3.626-.572-7.337-.919-11.101-1.334-1.357-.156-2.732-.312-4.09-.503-1.375-.173-2.766-.45-3.987-.589-2.577-.329-5.447-.19-8.523-1.438-2.337-1.074-4.829-1.576-7.561-2.286-2.784-.78-5.259-1.646-7.905-2.46-5.207-1.646-10.448-3.274-15.535-5.041-5.138-1.698-10.345-3.222-15.569-4.678-6.049-1.836-12.459-2.165-18.937-2.875-6.41-.607-12.923-.901-19.47-1.611-3.489-.399-6.908-.815-10.466-1.56-3.608-.831-6.959-2.442-9.949-4.382-3.094-1.993-6.084-4.28-8.644-7.016a42.192 42.192 0 0 1-6.53-9.06c-1.787-3.24-2.853-6.635-4.159-9.944l-3.815-9.944c-.55-1.455-1.186-2.84-1.65-4.383-.464-1.524-.824-3.049-1.168-4.556-.344-1.507-.688-2.997-1.134-4.417a54.456 54.456 0 0 1-1.289-4.504c-.636-2.581-1.152-5.163-1.805-7.675-.309-1.23-.738-2.512-1.013-3.863a46.499 46.499 0 0 1-.636-3.984c-.43-3.569-.67-7.068-1.461-10.394-.876-3.344-.979-6.86-1.134-10.152-.069-1.663-.172-3.308-.378-4.92a36.841 36.841 0 0 0-.395-2.39 59.504 59.504 0 0 1-.482-2.512c-.738-4.504-.893-8.991-1.477-13.339a41.793 41.793 0 0 0-.963-5.024l-1.203-5.128a74.96 74.96 0 0 1-.979-5.197c-.258-1.784-.499-3.361-.859-5.041-.671-3.222-1.667-6.41-2.561-9.649l-1.254-4.851a68.55 68.55 0 0 0-1.53-4.712c-1.443-3.949-2.766-7.916-4.536-11.676a85.676 85.676 0 0 0-1.341-2.823l-.704-1.386-1.1-2.114-1.186-2.2c-.241-.26.172-.173.155-.19h.567l1.529-.035 1.461-.052.739-.052c.258-.017.515-.052.618-.087.843-.225 1.599-.104 2.372.191.687.26 1.426.416 2.131.641.223.069.618.138.653.45.12.884-1.255.988-1.976 1.178-.86.226-1.753.416-2.63.537l-.687.087c-.086.017-.052.052-.069.052-.017.035 0 .052-.051.035l-.086-.035s0 .087.034.139l1.066 2.286c.412.918.824 1.836 1.203 2.755 1.598 3.707 2.783 7.535 4.055 11.243.876 2.529 1.718 5.266 2.32 7.864.653 2.547 1.478 5.094 2.234 7.709.876 3.015 1.632 6.272 1.976 9.39.447 3.049 1.083 6.115 1.787 9.164.808 3.17 1.358 6.6 1.65 9.857.327 3.291.567 6.513 1.117 9.632.12.71.275 1.403.43 2.096.171.762.326 1.524.446 2.287.241 1.524.378 3.048.482 4.538.206 2.997.275 5.908.773 8.645.12.71.275 1.316.447 2.061.189.762.343 1.525.481 2.27.275 1.507.464 3.014.619 4.504.326 2.962.567 5.855 1.202 8.557.31 1.23.757 2.738 1.083 4.123l.945 4.193c.309 1.386.619 2.737.98 4.07.172.676.378 1.317.584 1.976.223.693.447 1.438.619 2.148.739 2.875 1.203 5.647 2.062 8.176.962 2.564 2.096 5.232 3.144 7.848l4.331 10.689a41.167 41.167 0 0 0 5.568 9.597c2.612 3.378 5.722 6.253 9.314 8.679 2.113 1.455 4.313 2.772 6.633 3.724 2.303 1.005 4.691 1.49 7.303 1.906 5.138.831 10.363 1.23 15.621 1.611 6.204.398 12.424 1.16 18.628 1.888 3.832.45 7.767 1.144 11.462 2.304a480.334 480.334 0 0 1 11.084 3.344c3.815 1.16 7.596 2.546 11.376 3.742l11.393 3.516c1.616.485 3.231 1.022 4.812 1.403 1.598.399 3.282.728 4.966 1.213.842.243 1.684.52 2.527.866.79.347 1.374.52 2.165.693 1.512.312 3.162.381 4.863.52 1.1.087 2.389.26 3.454.433 1.1.173 2.2.33 3.299.45l6.685.745c2.251.243 4.503.503 6.771.866 2.217.347 4.399.641 6.616.832 3.781.364 7.578.52 11.376.572h5.722c.757 0 1.238-.052 1.874-.104.257-.018.532-.018.773 0l.378.034.051.052s.258.208.43.26c.103 0 .241-.07.361-.208a.38.38 0 0 0 .086-.138l.086-.347.172-.78c.051-.224.172-.675.412-.623h.034Z%27/%3E%3Cpath d=%27M890.533 141.646c.76-.086 1.261.533 1.244 1.547 0 1.048-.812 2.097-1.227 2.698a3.958 3.958 0 0 1-1.279 1.237l-3.889 2.166c-1.573.894-3.077 1.822-4.511 2.836-1.418.997-2.731 2.148-4.079 3.368-5.307 4.83-10.008 10.347-14.173 16.224-3.025 4.28-5.808 8.731-8.435 13.268l-3.889 6.927a173.254 173.254 0 0 1-4.165 6.857c-2.87 4.52-5.894 8.886-8.919 13.251-3.042 4.365-6.205 8.679-9.593 12.856-2.005 2.526-4.286 4.88-6.188 7.218-1.953 2.406-3.768 4.95-5.582 7.528-1.798 2.595-3.751 5.173-5.497 7.716a104.829 104.829 0 0 0-4.891 7.958c-3.18 5.809-5.566 12.013-7.432 18.355-.986 3.3-1.815 6.617-2.472 9.985-.657 3.335-1.037 6.772-1.365 10.192-.294 3.334-.381 6.668.155 9.899.242 1.633.761 3.111 1.193 4.916.38 1.736.605 3.454.829 5.156.605 5.895 2.351 11.515 4.546 17.032.951 2.32 1.901 4.726 3.025 6.874 1.158 2.183 2.592 4.228 4.096 6.256l3.111 4.056c1.072 1.375 2.057 2.75 3.112 4.039a65.05 65.05 0 0 0 6.533 6.926c2.333 2.183 4.891 4.073 7.467 6.084 3.405 2.681 6.775 5.345 10.249 7.855 2.731 1.993 5.462 3.763 8.452 5.379 1.487.842 3.008 1.77 4.373 2.939 1.296 1.169 2.472 2.2 3.768 3.231 2.489 1.994 5.185 3.764 7.882 5.568 2.713 1.788 5.375 3.644 8.054 5.5 3.353 2.32 6.672 4.726 9.956 7.15l4.926 3.643 1.763 1.306.812.568c.501.36 1.003.687 1.642 1.014.864.446 1.487 1.323 1.642 2.389.138.91.104 1.821-.19 2.578-.086.24-.207.635-.519.635-.864-.068-.812-1.289-1.158-1.718-.363-.567-.847-.911-1.4-1.324l-.985-.653a13.47 13.47 0 0 1-1.141-.825l-.726-.584-2.143-1.667-4.528-3.506c-3.025-2.32-6.05-4.641-9.126-6.875a178.23 178.23 0 0 0-6.378-4.434c-2.143-1.426-4.373-2.801-6.551-4.297-2.523-1.718-5.081-3.695-7.259-5.757-2.109-1.839-4.857-3.145-7.502-4.847-5.444-3.471-10.439-7.441-15.434-11.291-2.23-1.736-4.598-3.42-6.81-5.345a67.913 67.913 0 0 1-6.274-6.136c-1.988-2.183-3.682-4.571-5.41-6.789-1.746-2.268-3.526-4.571-5.117-7.063-1.572-2.372-2.782-5.122-3.802-7.648-1.054-2.578-2.057-5.191-2.921-7.872a62.783 62.783 0 0 1-2.074-8.215c-.484-2.801-.726-5.534-1.296-8.078-.191-.893-.415-1.615-.709-2.56a27.1 27.1 0 0 1-.726-2.888c-.398-1.942-.553-3.901-.605-5.843-.069-3.901.363-7.631.795-11.395.57-4.348 1.538-8.627 2.731-12.804 2.765-10.037 7.138-19.713 12.946-28.358 1.711-2.578 3.595-4.949 5.341-7.39 1.797-2.44 3.595-4.898 5.513-7.304a82.125 82.125 0 0 1 3.716-4.314 107.238 107.238 0 0 0 3.665-4.228c2.385-2.87 4.632-5.843 6.827-8.868 4.477-6.29 8.901-12.684 12.859-19.266 1.694-2.819 3.215-5.655 4.771-8.576 1.555-2.905 3.18-5.792 4.926-8.628 4.615-7.528 9.973-14.695 16.23-21.071a100.272 100.272 0 0 1 4.113-3.97c1.383-1.272 2.939-2.561 4.546-3.643 1.59-1.1 3.249-2.097 4.874-3.042l1.608-1.032c.916-.601 1.866-.79 2.506-1.1.639-.309 1.071-.55 1.313-1.409.052-.172.087-.515.346-.55l-.086-.017ZM726.801 711.088c-.12 1.572-2.561 1.258-3.764 1.782-.464.209-1.014.349-1.512.349-.945 0-2.2.052-3.145-.052l-.756-.053h-.189v-.209l.034-.402.052-.786c.051-.542.103-1.258.223-1.904.052-.332.155-.664.224-.996l.172-.612.326-1.083c.223-.698.43-1.362.55-1.974.137-.646.206-1.153.172-1.799 0-.646-.069-1.415-.069-2.271.034-.856.086-1.922.791-3.022.361-.577.601-1.013.79-1.572.378-1.101.464-2.376.447-3.774 0-1.415-.103-2.952.069-4.629.223-1.572.378-2.865.515-4.35.361-4.158.567-8.63 1.667-12.91l1.306-6.271c.447-2.131 1.306-4.42 2.131-6.324.842-1.992 1.753-4.035 2.991-5.975.618-.96 1.34-1.939 2.131-2.76l2.165-2.341c2.921-3.109 6.135-6.254 10.122-8.455.584-.332 1.237-.629 1.804-.908l1.65-.804 3.334-1.694c2.234-1.153 4.537-2.324 6.96-3.319a35.235 35.235 0 0 1 3.747-1.276l3.609-1.013c2.405-.699 4.897-1.432 7.544-1.834 1.392-.21 2.715-.315 3.901-.542a9.156 9.156 0 0 0 1.598-.471l.842-.402c.344-.175.688-.315 1.049-.454 2.869-1.066 5.757-1.083 8.283-1.31 1.323-.123 2.578-.297 3.746-.647.292-.07.567-.192.86-.297.257-.087.756-.297 1.134-.402.807-.227 1.598-.332 2.354-.401 1.512-.105 2.939-.018 4.279 0 1.306.035 2.698-.035 4.09-.035 5.465-.035 11.016.314 16.429 1.537 2.355.524 4.692 1.205 6.943 2.079 2.252.873 4.417 1.904 6.565 2.882.911.419 1.822.821 2.75 1.223.962.402 1.907.874 2.818 1.38 1.822 1.013 3.54 2.201 5.173 3.477 2.165 1.711 4.313 3.563 6.135 5.729 3.472 4.053 5.998 8.787 8.146 13.539 1.443 3.179 2.801 6.464 3.626 9.958.636 2.725.997 5.572.911 8.385-.069 2.69-.086 5.398-.258 8.105-.292 5.224-.859 10.534-2.114 15.618-.67 3.179-1.22 6.394-1.718 9.608l-.774 5.485-.068.472c-.035.14 0 .384-.207.315h-.945l-.945.017-1.169.035c-.618.017-1.254.052-1.838.21-.842.227-1.599.104-2.372-.193-.687-.262-1.426-.419-2.131-.646-.223-.07-.619-.14-.653-.454-.12-.891 1.255-.996 1.976-1.188.86-.227 1.753-.419 2.63-.542a18.449 18.449 0 0 1 2.784-.174H857.014s.086.017.103-.035l.739-4.158c.567-3.04 1.186-6.079 1.89-9.101.516-2.097.963-4.001 1.238-6.027.292-2.009.446-4.053.584-6.115.155-2.393.223-4.821.326-7.267l.138-3.686c.052-1.223.069-2.341-.017-3.529-.361-4.873-2.148-9.555-4.279-14.045-1.908-4.105-4.09-8.018-6.84-11.442a36.387 36.387 0 0 0-4.52-4.717c-1.684-1.467-3.42-2.847-5.207-4.035-1.77-1.188-3.489-2.044-5.551-2.918l-5.963-2.742c-3.884-1.765-7.905-2.883-12.116-3.442-2.835-.367-5.722-.524-8.644-.524-2.939-.052-5.757.192-8.885.14-1.701-.035-3.299-.07-4.64.28a8.604 8.604 0 0 0-1.014.349c-.447.175-.911.349-1.357.472-.911.262-1.839.436-2.733.541-2.165.28-4.193.297-6.083.559-.946.14-1.839.332-2.681.629-.43.14-.825.332-1.22.524a10.89 10.89 0 0 1-1.685.664c-2.268.629-4.296.629-6.169 1.013-1.908.367-3.832.926-5.792 1.502-1.151.332-2.32.664-3.505.961a38.53 38.53 0 0 0-3.334.996c-2.2.786-4.348 1.782-6.496 2.848l-4.005 2.008c-1.357.682-2.766 1.241-3.987 1.922-2.509 1.38-4.76 3.249-6.874 5.311a96.253 96.253 0 0 0-3.196 3.301l-1.564 1.695a13.061 13.061 0 0 0-1.323 1.729c-1.633 2.446-2.75 5.363-3.85 8.193-.859 2.359-1.271 4.909-1.718 7.547-.206 1.293-.533 2.708-.774 3.913a45.569 45.569 0 0 0-.55 3.809c-.378 3.424-.498 6.97-1.013 10.586-.31 1.677-.224 3.197-.19 5.066.018 1.799-.051 3.861-.91 5.817-.189.402-.378.804-.619 1.188l-.241.419s-.068.14-.086.245c-.12.384-.137 1.013-.085 1.712.034.716.12 1.485.068 2.428-.051.909-.24 1.747-.429 2.533-1.203 4.175-.602 2.725-.567 2.865.017-.017 0-.035 0 0 0 0-.086.035.275.088l1.495.279c1.014.175 2.01.437 3.007.681.206.053.602.158.584.402l.052-.087Z%27/%3E%3Cpath d=%27M891.135 399.32c-.188.742-.959.915-1.816.725-.874-.19-1.731-.725-2.399-.95-.531-.173-1.063-.466-1.457-.846l-1.285-1.279-.617-.587-.308-.277a9.788 9.788 0 0 0-.772-.656l-7.351-5.77c-4.901-3.87-9.854-7.688-14.704-11.661a427.77 427.77 0 0 1-10.385-8.81c-3.393-3.023-6.82-5.943-10.11-9.225-3.256-3.265-6.272-6.72-9.168-10.245-2.914-3.524-5.724-7.169-8.295-10.987-3.067-4.612-5.792-9.449-7.934-14.58a68.128 68.128 0 0 1-2.742-7.895 163.64 163.64 0 0 1-1.953-7.998c-.634-2.851-1.2-5.753-1.577-8.673a63.638 63.638 0 0 1-.411-4.439 26.903 26.903 0 0 1 .103-4.561c.154-1.538.394-3.04.599-4.509.223-1.486.343-2.833.497-4.405a55.36 55.36 0 0 1 1.851-9.018c1.714-5.77 4.301-11.16 7.232-16.308 2.553-4.491 5.398-8.793 8.397-12.939 2.553-3.559 5.244-6.962 7.694-10.521l4.953-7.238c1.559-2.263 3.256-4.543 4.832-6.737 1.577-2.229 3.068-4.544 4.559-6.876l5.98-9.311c3.154-4.837 6.204-9.761 9.494-14.425 1.611-2.263 3.153-4.526 4.73-6.841a154.534 154.534 0 0 1 4.935-6.738c2.16-2.764 4.456-5.424 6.924-7.929a94.41 94.41 0 0 1 3.787-3.645l2.193-1.987c.463-.414.943-.829 1.32-1.33.514-.708 1.217-1.071 2.022-1.33l.206-.069 1.696.777c-.171.639-.257 1.313-.411 1.952-.051.225-.086.622-.394.691-.857.19-1.063-1.174-1.32-1.9l-.103-.328-.051-.156-.034-.086c-1.8-.829 2.45 1.123 2.005.916l-.034.051-.429.519c-.291.345-.583.673-.891.984a22.611 22.611 0 0 1-2.005 1.866l-.703.57-.822.691-.908.778a125.158 125.158 0 0 0-3.531 3.247 87.207 87.207 0 0 0-6.494 7.066c-2.811 3.369-5.193 7.031-7.626 10.745-2.896 4.319-5.878 8.569-8.74 12.922a652.41 652.41 0 0 0-8.706 13.682c-1.285 2.073-2.587 4.164-3.958 6.219-1.388 2.091-2.845 4.025-4.199 6.029-2.742 4.008-5.432 8.12-8.362 12.093-5.707 7.515-11.345 14.96-15.441 23.27-2.776 5.614-4.935 11.54-5.998 17.655a65.83 65.83 0 0 0-.685 5.338c-.189 1.918-.514 3.749-.737 5.528-.291 2.177-.394 4.129-.24 6.306.137 2.142.377 4.284.737 6.409.703 4.267 1.782 8.517 2.896 12.749 1.32 4.906 3.102 9.709 5.467 14.252 2.93 5.632 6.478 10.936 10.436 15.928 4.096 5.148 8.414 10.175 13.195 14.615 4.13 3.732 8.483 7.308 12.75 10.901 5.69 4.82 11.516 9.484 17.428 14.045l7.575 5.804 1.902 1.434.96.726c.377.276.719.553 1.045.846l1.491 1.279c.822.691 1.251 1.52 1.833 2.194.583.673 1.149 1.33 1.903 1.813.154.104.479.277.411.519l.068-.069ZM703.875-167.913c-.121 1.541-2.573 1.233-3.781 1.746-.329.103-.242.189-.311.24-.035.069-.052.103-.087.103-.051.017-.224-.034-.172.051l.052.12.103.274c1.036 3.014 1.675 6.096 2.331 9.076 1.261 5.891 3.195 11.644 4.939 17.586 1.312 4.281 2.193 8.768 3.298 12.929.57 2.089 1.243 4.127 2.09 6.028 1.018 2.089 1.64 4.418 2.348 6.37.173.496.363.976.57 1.421.19.445.431.873.708 1.421a70.574 70.574 0 0 1 1.433 3.117c.881 2.072 1.744 4.007 2.728 5.993 1.934 3.956 3.989 7.809 6.389 11.44 5.63 8.698 13.366 16.01 21.292 22.945 4.282 3.58 8.996 6.645 13.728 9.71 4.887 3.219 9.946 6.25 14.729 9.692 4.697 3.356 9.429 6.713 14.126 10.052l6.233 4.28a121.995 121.995 0 0 1 6.061 4.607c3.333 2.723 6.562 5.583 9.722 8.46l6.389 5.804c3.989 3.63 8.03 7.312 12.174 10.754a94.4 94.4 0 0 0 8.686 6.353c4.714 3.066 9.774 5.583 14.833 7.912a68.085 68.085 0 0 0 15.351 4.966c3.385.667 6.718 1.404 10.068 1.918 1.675.257 3.35.445 5.025.53l1.26.052h.605l.967-.017h.448l.501-.035c.121 0 .207 0 .259-.05.138-.086.173-.138.518-.24.138-.07.242-.206.328-.429.087-.274.156-.702.277-1.044.069-.223.138-.634.466-.668.449-.017.656.274.829.668.155.428.259.787.362 1.472.277 1.405-.017 2.997-.604 4.162-.673-.206-1.381-.309-2.366-.754-.224-.12-.518-.24-.431-.188h-1.019c-.328 0-.656-.035-.967-.052l-1.14-.068-1.243-.103a58.739 58.739 0 0 1-4.922-.72c-3.229-.599-6.389-1.37-9.514-2.071-4.334-.96-8.686-2.14-12.847-3.733-4.87-1.867-9.515-4.23-13.988-6.833a103.103 103.103 0 0 1-13.348-9.144c-3.781-3.048-7.408-6.216-11.034-9.384l-10.689-9.675c-3.419-3.082-6.89-6.08-10.533-8.836-3.609-2.706-7.581-5.24-11.38-7.86-5.215-3.493-10.378-7.072-15.61-10.514l-9.152-5.857c-7.304-4.674-14.574-9.777-20.86-15.84a114.59 114.59 0 0 1-10.55-11.25c-4.093-4.914-7.426-10.411-10.309-16.028-1.485-2.911-2.919-5.874-4.196-8.87-.657-1.49-1.296-2.911-2.073-4.35-.794-1.558-1.295-3.151-1.83-4.675-.449-1.318-.898-2.483-1.52-3.716a38.623 38.623 0 0 1-1.588-3.955c-.915-2.672-1.606-5.377-2.262-8.066-1.658-7.072-4.093-13.973-6.01-21.182-.828-3.082-1.433-6.182-2.244-9.11a45.939 45.939 0 0 0-.657-2.175l-.362-1.062-.708-1.866-.795-1.781-.397-.856-.207-.445s-.103-.172-.069-.189h.207c1.002-.051 2.09-.017 3.126.052l1.502.137.708.068.38.069c1.019.171 2.02.428 3.022.668.207.051.604.154.587.393l.017.052Z%27/%3E%3Cpath d=%27M889.791 3.496c1.477.275 1.254 2.46 1.803 3.786.206.516.327 1.153.224 1.807-.035.19-.069.38-.121.586l-.085.292v.017c-1.632 1.877-.464.517-.825.947l-.034.017-.086.035-.155.069c-.412.172-.996.361-1.683.275-1.476-.207-2.129-1.274-2.249-1.222H885.979c-.395 0-.807 0-1.185-.035a14.773 14.773 0 0 1-2.319-.344c-1.511-.31-2.936-.791-4.293-1.273l-2.009-.723-.498-.172-.241-.087h-.068s-.275-.051-.653-.034c-.361 0-.859.034-1.46-.103a3.971 3.971 0 0 1-1.648-.792 8.829 8.829 0 0 0-1.546-.998c-2.198-1.205-5.066-1.962-7.745-3.219-7.814-3.46-14.494-9.07-20.299-14.905a353.86 353.86 0 0 1-17.208-17.97 187.766 187.766 0 0 1-4.86-5.662c-1.563-1.928-3.074-3.684-4.774-5.44-3.349-3.476-7.024-6.712-10.665-10.068-3.812-3.598-7.831-6.833-11.935-10.035-4.242-3.339-8.604-6.471-12.983-9.69-4.259-3.219-8.518-6.455-12.777-9.673-3.692-2.84-7.385-5.68-10.957-8.71-3.039-2.564-6.01-5.215-8.844-8.037-1.906-1.894-3.761-3.856-5.495-5.904-3.28-3.89-6.2-8.09-8.776-12.479-1.717-2.926-3.246-5.989-4.705-8.984-2.284-4.734-4.689-9.518-6.234-14.579-.773-2.427-1.357-4.974-1.992-7.332-.67-2.393-1.477-4.802-2.078-7.315a28.304 28.304 0 0 1-.464-2.41c-.103-.878-.189-1.48-.395-2.22-.378-1.429-1.048-2.909-1.391-4.63-.155-.861-.206-1.79-.069-2.702.052-.517.309-1.136.515-1.687.121-.276.224-.585.361-.826l.893-.052 2.198-.034.979-.035c.618-.017 1.254-.051 1.838-.206.841-.224 1.597-.104 2.37.189.686.258 1.425.413 2.129.637.223.069.618.138.653.447.12.878-1.254.981-1.975 1.171a22.78 22.78 0 0 1-2.628.533c-.91.121-1.855.19-2.782.172l-.927-.034h-.825c0 .017-.034.034-.051.069 0 .017 0 0-.034.103-.018.121-.052.258-.069.396a5.968 5.968 0 0 0 .103 1.721c.24 1.257.773 2.616 1.168 4.234.206.758.309 1.808.36 2.393.086.688.189 1.377.327 2.065.377 1.893.978 3.787 1.562 5.732.619 1.945 1.134 3.993 1.666 5.852a92.67 92.67 0 0 0 4.912 13.081c1.013 2.22 2.112 4.423 3.211 6.626 1.099 2.186 2.216 4.321 3.469 6.386 4.5 7.504 10.253 14.165 16.624 20.172 6.148 5.8 12.811 11.136 19.698 16.145l14.185 10.07a229.114 229.114 0 0 1 8.089 6.023 182.097 182.097 0 0 1 9.342 7.694l8.93 8.072c3.486 3.202 6.784 6.696 9.772 10.448 3.623 4.544 7.47 8.916 11.437 13.167a278.099 278.099 0 0 0 12.726 12.754c3.692 3.511 7.642 6.61 11.901 9.209 2.833 1.738 5.804 3.235 8.895 4.406 1.563.602 3.246 1.17 4.895 2.048.412.207.824.465 1.219.706l.584.413.447.327c.223.172.515.12 1.786.12.257.017.549.052.875.155l.584.19 1.031.361 2.026.706c1.34.447 2.662.809 3.95.98.653.087 1.288.138 1.923.121.155 0 .31 0 .481-.017h.412c.172-.017.344.017.516.017.669.069 1.305.482 1.769.895.206.172.257.207.343.258.017 0 .069.035.069.035l-.121.206c-.24.465-.034.31-.154-.155l-.034-.189.034-.017h.051v-.034c.842-.982-1.15 1.325-.944 1.084V8.83c.069-.12.137-.275.189-.447.12-.327.24-.758.326-1.205.155-.93.309-1.997.601-3.047.052-.223.189-.654.43-.602l.068-.034ZM755.781 711.08c-.12 1.571-2.535 1.257-3.726 1.78-.46.209-1.004.349-1.498.349-1.14 0-1.65.052-3.947 0-.459-.14-1.021-.122-1.378-.366-.136-.524-.289-1.012-.391-1.536-.221-1.029 0-2.32.425-3.28.783-1.553 1.412-2.251 2.008-3.385 1.208-2.076 2.246-4.309 3.266-6.577 1.889-4.205 3.726-8.636 6.312-12.719 2.552-4.065 5.581-7.747 8.677-11.271l1.413-1.553c.51-.541 1.071-1.099 1.667-1.57a21.89 21.89 0 0 1 3.709-2.477c1.276-.698 2.586-1.274 3.862-1.815l1.906-.802c.714-.297 1.003-.402 1.582-.786.561-.366 1.259-.889 2.144-1.273a6.035 6.035 0 0 1 1.378-.436l1.14-.192a36.187 36.187 0 0 1 4.508-.367c3.097-.052 6.091.21 9.017.245 1.43-.018 3.148.087 4.645.453a21.59 21.59 0 0 1 4.407 1.605c2.433 1.204 4.645 2.757 6.652 4.502a38.797 38.797 0 0 1 4.73 4.937c.953 1.204 1.871 2.443 2.688 3.751a51.244 51.244 0 0 1 2.127 3.786c.68 1.344 1.191 2.757 1.616 4.17.562 1.884 1.021 3.751 1.48 5.566.17.715.375 1.413.579 2.111.221.75.408 1.518.561 2.285.289 1.536.409 3.089.357 4.606-.051 1.483-.17 2.932-.289 4.362-.051.733-.136 1.431-.136 2.076 0 .315.017.629.085.908.017.139.068.279.102.418.051.14.17.419.307.646.544.768 1.871 1.797 3.147 2.861-.102.07-.255.14-.34.21 0 .069-.017.122-.034.192h-1.6l-3.3.069-4.169.105c-.612.018-1.242.052-1.82.209-.834.227-1.582.105-2.348-.191-.68-.262-1.412-.419-2.11-.646-.221-.07-.612-.14-.646-.454-.119-.889 1.242-.994 1.956-1.186a22.953 22.953 0 0 1 2.604-.541 18.073 18.073 0 0 1 2.756-.174l1.718.052 1.021.035h.34s.187.07.307.087c.051 0 .153.035.187.035a.365.365 0 0 1-.068-.087 1.38 1.38 0 0 1-.119-.227c.017.105-.307-.995-.324-1.64-.051-.715 0-1.378.034-1.954.085-1.134.136-2.233.17-3.35.086-2.582.051-5.182-.578-7.624-.766-2.687-1.395-5.496-2.212-8.009-.374-1.134-.799-2.233-1.327-3.262-.527-1.012-1.191-2.111-1.837-3.123-1.293-2.059-2.723-4.013-4.288-5.793-1.514-1.727-3.164-3.315-4.968-4.675-1.803-1.396-3.692-2.513-5.75-3.211a14.897 14.897 0 0 0-4.271-.785h-1.089l-1.242.035h-2.467c-1.871-.017-3.709-.14-5.512-.122a48.57 48.57 0 0 0-3.216.105c-.527.034-1.055.087-1.582.157-.51.069-1.106.139-1.412.226-.732.175-1.446.751-2.552 1.449a8.94 8.94 0 0 1-.902.488l-.766.332-1.531.645c-2.382 1.012-4.764 1.919-6.771 3.42a15.99 15.99 0 0 0-1.736 1.518l-1.667 1.762a80.908 80.908 0 0 0-3.216 3.664c-2.126 2.582-4.1 5.304-5.716 8.2-1.378 2.46-2.433 5.112-3.556 7.764-1.514 3.524-3.097 7.101-5.036 10.59-.408.733-.868 1.483-1.293 2.181-.204.314-.34.593-.443.855-.068.174-.034.157-.034.244.017.122.086.21.205.122a.349.349 0 0 0 .085-.07c-.051 0 .187-.017.323-.034l.442-.035c1.055-.105 2.025.157 3.012.331 1.004.175 1.99.436 2.977.681.204.052.596.157.579.401v.017ZM700.571 710.975c-.12 1.634-2.554 1.308-3.754 1.852-.463.218-1.011.363-1.509.363l-3.222.037H689.72c-.154 0-.343.054-.326-.182l-.205-.98-.618-2.923c-.291-1.38-.6-2.742-.925-4.085-.635-2.488-1.355-4.884-2.435-7.063-.531-1.089-1.131-2.124-1.851-3.068-.703-.963-1.457-1.834-2.314-2.506-2.023-1.652-4.44-2.778-7.166-3.141-1.44-.2-2.88.036-4.303.291a24.403 24.403 0 0 0-4.423 1.252c-1.44.545-2.914 1.144-4.285 1.961-.6.363-1.166.763-1.732 1.198l-1.783 1.271c-1.011.708-1.8 1.38-2.605 2.306-.583.636-1.166 1.253-1.8 1.816-1.183 1.053-2.418 1.997-3.566 3.032-.754.69-1.44 1.434-2.126 2.179a18.156 18.156 0 0 0-1.457 1.833c-.446.599-.908 1.307-1.508 1.943-1.166 1.198-2.366 2.36-3.84 3.268-1.526.944-3.412 1.289-5.16 1.071-.532-.054-.875-.109-1.338-.127-.565-.036-1.165-.036-1.731.127-.789.236-1.526.145-2.314-.145-.703-.254-1.44-.363-2.16-.599-.223-.073-.617-.127-.669-.454-.12-.926 1.217-1.053 1.937-1.289.857-.272 1.732-.527 2.657-.654.96-.145 1.972-.199 3-.036.326.036.823.145 1.029.181 1.234.273 2.451.237 3.583-.308.891-.436 1.663-1.198 2.434-2.052.446-.49.909-.998 1.337-1.561a74.97 74.97 0 0 1 1.492-1.816c1.045-1.234 2.108-2.469 3.223-3.558l3.017-2.869 1.422-1.416c.498-.49.84-.908 1.475-1.525 1.131-1.071 2.331-1.798 3.377-2.524.977-.69 2.177-1.58 3.326-2.288 1.577-.998 3.24-1.906 5.022-2.578 1.029-.399 2.092-.653 3.155-.889 2.571-.527 5.263-.581 7.834.072 1.526.382 2.914 1.18 4.234 2.016a16.34 16.34 0 0 1 4.286 3.885 27.456 27.456 0 0 1 3.171 5.029c.755 1.507 1.492 3.05 2.006 4.666.686 2.143 1.097 4.339 1.611 6.464l.258 1.016c.034.128.068.146.102.2.018.127.223-.018.275-.072a47.627 47.627 0 0 1 1.663-.146c1.062-.109 2.04.164 3.034.345 1.011.182 2.006.454 3 .708.206.055.6.164.583.418l-.052.054ZM508.633 683.762c-.172 1.542-2.583 1.199-3.772 1.713a4.167 4.167 0 0 1-1.515.36l-3.893.069c-2.101.017-4.219.017-6.355-.052-4.254-.154-8.611-.702-12.796-1.97-5.89-1.765-11.884-4.37-16.602-8.757a26.993 26.993 0 0 1-1.723-1.714 12.127 12.127 0 0 1-1.567-2.125 10.801 10.801 0 0 1-1.447-5.14c-.069-1.783.396-3.582.93-5.056a24.606 24.606 0 0 1 2.067-4.421c1.981-3.376 4.753-6.152 7.716-8.448 2.962-2.176 5.769-4.387 9.024-6.375a40.39 40.39 0 0 1 5.339-2.742c1.688-.754 3.359-1.628 5.064-2.501 3.547-1.783 7.164-3.736 11.349-4.696 4.082-.891 8.112-.6 12.022-.531 1.687.051 3.41-.034 5.201.12 1.756.137 3.513.428 5.218.908a24.23 24.23 0 0 1 8.129 3.976 25.054 25.054 0 0 1 4.392 4.232c2.394 2.948 4.288 6.461 5.046 10.282.499 2.536.62 5.141.189 7.712-.62 4.01-2.411 7.831-4.891 10.864-2.394 2.913-4.96 5.689-8.043 7.968-1.894 1.44-3.978 2.657-6.131 3.685-1.085.514-2.17.977-3.289 1.388l-2.325.822c-.586.206-1.189.412-1.705.72-.741.446-1.499.566-2.343.497-.74-.051-1.481.017-2.221 0-.224 0-.62.051-.758-.24-.379-.805.913-1.302 1.567-1.679.775-.463 1.567-.908 2.377-1.268.844-.377 1.757-.72 2.6-.96l.862-.24 1.446-.463c.999-.325 1.964-.719 2.928-1.131 1.912-.839 3.755-1.816 5.46-2.998 2.359-1.611 4.271-3.599 6.131-5.861 2.153-2.553 4.116-5.278 5.184-8.363 1.136-3.187 1.223-6.7.516-9.939-.654-2.947-2.084-5.672-3.978-8.105-1.894-2.451-4.116-4.558-6.734-6.084a22.357 22.357 0 0 0-8.215-2.861 29.304 29.304 0 0 0-4.443-.275h-4.737c-4.236.035-8.232.343-11.935 1.92-2.187.874-4.34 1.919-6.527 3.05-1.309.668-2.618 1.354-3.978 2.005-1.327.651-2.842 1.234-4.031 1.799-2.514 1.183-4.873 2.794-7.216 4.49a236.586 236.586 0 0 1-4.202 2.999c-1.378.977-2.704 2.022-3.892 3.204-2.945 2.879-5.219 6.512-6.183 10.436-.448 1.971-.241 4.01.723 5.741.465.874 1.085 1.645 1.843 2.365a31.25 31.25 0 0 0 2.394 2.125c2.842 2.245 6.166 3.804 9.576 5.106 2.256.857 4.65 1.646 6.975 2.211a41.83 41.83 0 0 0 7.199 1.062c2.084.138 4.185.155 6.286.103l3.169-.12 1.825-.154c1.068-.103 2.05.137 3.066.309 1.016.171 2.032.428 3.031.702.207.052.603.154.586.411l.017-.085ZM642.012 278.286c-.155 1.536-2.594 1.195-3.787 1.706-.484.205-1.02.342-1.539.342h-2.698l-1.591-.034c-3.13-.12-6.364-.461-9.477-1.383-6.157-1.876-11.916-5.409-15.842-10.647-2.87-3.737-4.6-8.344-5.015-13.002-.173-1.16-.086-2.338-.121-3.481.035-1.041 0-2.116-.017-3.208-.052-2.184-.156-4.436.069-6.791.121-1.16.311-2.354.623-3.515.138-.58.345-1.16.536-1.723.155-.461.311-.939.449-1.433.554-1.98.848-4.181 1.557-6.45.346-1.144.795-2.287 1.418-3.379a64.561 64.561 0 0 0 1.522-2.849l2.871-5.921c1.176-2.406 2.49-4.812 4.098-7.081.848-1.161 1.626-2.133 2.439-3.191a121.274 121.274 0 0 1 2.49-3.157 38.628 38.628 0 0 1 2.802-3.054c1.055-1.007 2.006-1.792 2.974-2.696 1.92-1.775 3.857-3.635 6.001-5.341 1.124-.921 2.387-1.774 3.442-2.559 1.107-.819 2.179-1.69 3.286-2.56 2.196-1.74 4.548-3.549 7.073-4.965 5.136-2.986 10.792-5.426 16.844-6.296 2.958-.444 5.967-.461 8.924-.12l1.055.137c.156.034.432 0 .917-.034.553-.052 1.141.068 1.591.375l.968.58c1.245.802 2.456 1.638 3.58 2.611 3.96 3.259 7.073 7.815 8.025 12.934.449 2.149.449 4.402.466 6.466l.07 6.331c0 2.849-.052 5.716-.329 8.583-.277 2.696-.726 5.409-1.401 8.053l-1.919 7.798c-.865 3.464-1.678 6.962-2.716 10.409-1.504 5.46-3.908 10.784-6.831 15.527-1.435 2.304-2.732 4.607-4.271 6.894a46.016 46.016 0 0 1-5.189 6.381 36.818 36.818 0 0 1-8.318 6.279 41.222 41.222 0 0 1-4.739 2.219l-2.784 1.023c-.64.205-1.297.376-1.868.649-.813.375-1.556.375-2.352.256-.691-.12-1.401-.069-2.092-.034-.225 0-.571.119-.761-.137-.554-.717.795-1.467 1.539-1.809.847-.46 1.747-.819 2.594-1.092.83-.256 1.643-.512 2.473-.75l.848-.256.449-.137a4.76 4.76 0 0 0 .536-.188l1.073-.392a37.822 37.822 0 0 0 4.167-1.877c2.698-1.399 5.171-3.208 7.385-5.29 3.026-2.883 5.327-6.313 7.419-10.067 2.525-4.351 5.119-8.617 6.883-13.207 1.764-4.794 2.94-9.913 4.151-14.981l1.591-6.911c.553-2.303.968-4.504 1.228-6.808.536-4.573.518-9.231.484-13.94-.052-2.236.034-4.676-.138-6.672a18.673 18.673 0 0 0-1.626-6.023c-1.73-3.805-4.894-6.928-8.578-9.214-.553-.341-1.539-.905-1.366-.785.069-.017-.311.051-.934.068-.156 0-.329 0-.536-.017l-.277-.034-.553-.051c-1.47-.171-2.975-.154-4.445-.12a35.132 35.132 0 0 0-8.768 1.587c-3.303 1.024-6.485 2.44-9.564 4.146-1.867 1.024-3.614 2.082-5.292 3.328-1.694 1.228-3.355 2.576-5.084 3.89a76.85 76.85 0 0 1-2.629 1.911 36.452 36.452 0 0 0-2.438 1.928c-1.591 1.348-3.113 2.816-4.704 4.283-.899.853-1.937 1.741-2.836 2.526a36.714 36.714 0 0 0-2.56 2.593c-1.626 1.826-3.165 3.839-4.738 5.819-3.771 4.743-5.88 10.664-9.011 16.158-1.556 2.594-1.919 5.734-2.698 8.924-.19.785-.467 1.638-.726 2.389-.242.717-.45 1.434-.588 2.184-.311 1.485-.38 3.02-.398 4.59 0 2.628.242 5.426.26 8.139.052 2.594.484 5.153 1.331 7.576 2.266 6.467 7.61 11.706 14.06 14.385 2.75 1.211 5.621 1.859 8.613 2.132a49.58 49.58 0 0 0 4.531.188c.709-.017 1.228-.068 1.85-.119 1.055-.086 2.024.17 3.044.341s2.024.427 3.027.7c.207.051.605.153.588.409l-.07.034Z%27/%3E%3Cpath d=%27M415.789 708.941c-.139 1.557-2.582 1.245-3.795 1.764a4.265 4.265 0 0 1-1.525.363l-5.32.052c-6.082.035-12.182 0-18.316-.363-1.525-.086-3.085-.225-4.575-.346-1.369-.121-2.911-.052-4.592-.225-.849-.104-1.75-.225-2.686-.64-.814-.363-1.317-.606-2.044-.865-1.335-.502-2.738-.9-4.194-1.298-2.876-.743-6.03-1.557-8.907-2.854-2.894-1.263-5.579-2.768-8.231-4.222-.918-.501-2.027-1.089-2.997-1.782a24.409 24.409 0 0 1-2.756-2.214c-1.715-1.592-3.205-3.322-4.609-5.086-.693-.9-1.352-1.748-2.027-2.717a23.461 23.461 0 0 1-1.82-3.045 23.261 23.261 0 0 1-2.131-6.781c-.728-4.706 0-9.377 1.109-13.737 1.143-4.602 3.708-8.72 6.74-12.128 3.05-3.443 6.551-6.297 10.138-8.979a50.721 50.721 0 0 1 11.956-6.522c2.131-.796 4.332-1.506 6.55-1.955l6.533-1.263c4.349-.813 8.699-1.851 13.187-2.215 2.668-.259 5.302-.432 7.919-.657 2.565-.208 5.25-.502 7.902-.658 5.319-.328 10.553-.415 15.699-.899 2.565-.242 5.112-.588 7.607-1.108.624-.121 1.248-.276 1.854-.415.538-.138 1.473-.363 2.149-.415 1.49-.156 2.513-.173 3.518-.554l7.555-2.37 3.777-1.176a60.679 60.679 0 0 0 3.622-1.28c2.547-.987 5.095-2.146 7.694-3.218 2.495-1.038 4.956-2.336 7.555-3.53 5.285-2.249 10.31-4.325 15.492-6.453l4.002-1.643a37.865 37.865 0 0 1 4.246-1.592c2.876-.882 5.77-1.453 8.595-2.059a97.771 97.771 0 0 0 4.159-.951c.641-.173 1.386-.381 2.183-.554a17.601 17.601 0 0 1 2.305-.346c3.067-.294 6.012-.069 8.837-.035.693 0 1.386 0 2.062-.017.728 0 1.456-.052 2.201-.017 1.473 0 2.928.121 4.384.242 2.911.311 5.77.9 8.56 1.73 5.597 1.661 10.778 4.273 15.682 7.266a65.753 65.753 0 0 1 6.186 4.308c1.976 1.54 3.917 3.235 5.58 5.138 1.681 1.886 3.189 3.91 4.627 5.952.71 1.038 1.421 2.024 2.114 3.097a20.523 20.523 0 0 1 1.785 3.46c.831 2.041 1.351 4.135 1.819 6.228l.659 3.114.329 1.54c.104.554.208 1.107.277 1.661.503 4.481-.624 8.771-1.507 12.837-.347 1.228-.243 2.699-.867 4.325-.346.848-.71 1.384-1.04 2.007l-.987 1.869c-1.3 2.508-2.548 5.069-3.934 7.577-1.317 2.37-2.755 4.706-4.436 6.886a75.766 75.766 0 0 1-5.424 6.107c-1.906 1.938-3.933 3.789-6.134 5.432-2.201 1.679-4.557 3.045-6.862 4.429-6.203 3.651-12.788 6.852-19.858 8.72-2.755.744-5.545 1.263-8.283 1.799-1.369.277-2.738.554-4.072.865-1.3.294-2.721.727-4.176.935-5.788.865-11.385.397-16.93.294-10.761-.364-21.418-.606-32.179-.675-6.723-.121-13.464 0-20.205.208l-10.12.311-3.361.104-.988.052c-.624.034-1.265.069-1.854.242-.832.242-1.612.138-2.409-.156-.623-.259-1.247-.329-1.923-.294-.208 0-.555.121-.763-.121-.277-.346-.121-.744.278-1.073.398-.346 1.005-.571 1.438-.709a17.807 17.807 0 0 1 2.772-.623 18.836 18.836 0 0 1 2.79-.225h.936l4.453-.069 9.496-.156c6.343-.086 12.702-.121 19.079.07l25.906.415 15.093.346c2.495.034 4.956 0 7.364-.312 1.231-.155 2.34-.38 3.57-.692a96.522 96.522 0 0 1 3.743-.83c2.599-.519 5.164-.986 7.676-1.574a61.646 61.646 0 0 0 7.382-2.232c4.817-1.8 9.427-4.17 13.88-6.817 2.01-1.211 4.038-2.422 5.857-3.771 1.837-1.35 3.57-2.872 5.233-4.481a73.821 73.821 0 0 0 4.731-5.104 43.194 43.194 0 0 0 4.055-5.536c2.426-3.91 4.366-8.201 6.637-12.439l.831-1.523a4.85 4.85 0 0 0 .399-1.228c.086-.485.138-1.038.242-1.678.035-.312.104-.692.174-1.004l.19-.882c.52-2.318 1.057-4.567 1.3-6.799.26-2.146.243-4.204-.208-6.246-.485-2.266-.884-4.498-1.438-6.626-.555-2.111-1.248-4.152-2.305-5.917-.502-.848-1.196-1.834-1.819-2.751a113.572 113.572 0 0 0-1.941-2.75c-1.317-1.8-2.703-3.512-4.228-5.087-1.508-1.54-3.223-2.941-4.991-4.29-3.552-2.665-7.416-4.948-11.454-6.886-5.424-2.63-11.246-4.377-17.19-4.862-1.49-.138-2.98-.155-4.47-.138-1.439.052-3.189.104-4.714.069-3.136-.052-6.134-.19-8.906.364-.399.069-.797.173-1.179.276l-1.317.364c-.883.225-1.767.432-2.651.64l-5.233 1.124a57.534 57.534 0 0 0-5.025 1.333c-1.646.501-3.119 1.211-4.818 1.885l-11.904 4.879c-1.976.831-4.003 1.609-5.874 2.422-1.907.848-3.813 1.799-5.788 2.699-2.01.917-3.968 1.678-5.926 2.543a108.944 108.944 0 0 1-6.013 2.422c-4.142 1.402-8.145 2.595-12.217 3.893l-.901.277c-.294.104-.71.225-1.057.294a15.92 15.92 0 0 1-2.045.277c-1.299.069-2.166.277-3.535.605-2.512.554-5.059.935-7.589 1.194-5.078.519-10.12.588-15.128.813-3.119.121-6.134.381-9.271.658-3.119.242-6.221.432-9.288.726-1.542.156-3.067.312-4.574.571l-4.558.865-9.114 1.748c-6.204 1.245-12.026 3.944-17.19 7.543-5.095 3.719-10.068 7.871-13.43 13.096-1.386 2.232-2.495 4.602-3.084 7.145-.641 2.596-1.092 5.208-1.178 7.82-.208 5.242 1.334 10.277 4.661 14.343 2.166 2.854 4.453 5.57 7.174 7.612.693.502 1.386.969 2.131 1.367l2.392 1.315c1.594.865 3.171 1.73 4.765 2.508 1.594.779 3.223 1.488 4.869 2.042 1.646.571 3.379 1.003 5.147 1.47 1.767.467 3.587.969 5.371 1.678.451.173.884.364 1.335.571.398.173.624.26 1.005.346.71.173 1.542.225 2.426.26l2.339.069c.849.035 1.629.121 2.374.173 1.525.121 3.067.208 4.592.277 3.067.138 6.152.19 9.236.19 3.084 0 6.169-.034 9.271-.104h.26l.121-.017h.225l.451-.052.918-.086c1.074-.104 2.062.155 3.067.328 1.023.173 2.028.433 3.033.675.208.052.606.156.589.398l-.017.087ZM498.416 181.407c.191 1.578-2.446 1.612-3.729 2.007-.503.188-1.111.291-1.648.24a22.922 22.922 0 0 1-1.891-.24l-.937-.172-.468-.086a53.65 53.65 0 0 1-1.665-.394c-4.441-1.08-9.176-2.984-12.767-6.225-3.677-3.138-6.245-7.442-7.858-11.763-1.648-4.219-3.105-8.626-3.833-13.238-.451-2.864-.59-5.831-.33-8.746.26-2.932.867-5.693 1.266-8.385.104-.669.191-1.338.261-1.989.069-.652.138-1.441.242-2.161.209-1.458.503-2.864.833-4.253.659-2.778 1.44-5.436 1.977-8.077.139-.651.243-1.32.347-1.972l.122-.977c.052-.394.104-.789.191-1.183.294-1.561.85-2.984 1.387-4.304.538-1.321 1.076-2.555 1.44-3.756.312-1.063.59-2.709 1.058-4.064.867-2.812 2.047-5.401 3.053-7.94a42.733 42.733 0 0 0 1.318-3.79 27.18 27.18 0 0 0 .469-1.885l.086-.463.035-.446c.052-.669.278-1.338.763-1.818l.295-.308.174-.206c.121-.138.225-.275.329-.429.208-.291.399-.635.573-.977.347-.686.641-1.475.936-2.315.295-.84.59-1.732.954-2.641.174-.446.417-.96.625-1.372.191-.377.364-.772.538-1.166.728-1.698 1.37-3.533 2.168-5.419.399-.943.85-1.886 1.405-2.812.26-.446.607-.96.85-1.338l.763-1.166c2.012-3.138 3.712-6.756 6.019-10.014l3.348-4.87c1.145-1.612 2.151-3.258 3.487-4.853 2.584-3.155 5.62-5.848 8.777-8.283 1.7-1.286 3.295-2.52 5.256-3.72a22.682 22.682 0 0 1 6.21-2.521c4.371-1.047 8.985-.824 13.235.548 2.185.686 4.336 1.766 6.192 2.967a46.858 46.858 0 0 1 5.36 3.978c3.365 2.881 6.314 6.19 8.985 9.552 5.326 6.482 10.824 13.015 15.23 20.303 3.799 6.173 8.448 11.952 11.986 18.52 2.897 5.573 5.759 11.129 8.014 17.062 1.527 4.236 1.44 8.471 3.157 12.089.486 1.132.538 2.418.33 3.533-.191 1.114-.573 2.109-.919 3.035-.347.926-.694 1.818-.868 2.658a35.369 35.369 0 0 1-.763 2.967c-1.197 3.926-3.157 7.562-5.464 10.889a73.861 73.861 0 0 1-4.978 6.344c-1.752 2.075-3.799 3.944-5.915 5.608-3.348 2.623-6.887 4.87-10.339 7.185-3.486 2.315-7.112 4.527-10.962 6.224-3.799 1.612-7.477 2.967-11.154 4.528-3.677 1.526-7.372 3.052-11.136 4.492-4.718 1.835-9.575 3.31-14.397 4.733a221.75 221.75 0 0 1-7.303 2.041l-3.521.909c-.642.188-1.475.274-2.065.445-.884.24-1.526.12-2.185-.051-.59-.154-1.162-.051-1.752.206-.191.068-.434.326-.746.188-.399-.188-.434-.617-.174-1.097.226-.497.798-.943 1.215-1.2.988-.669 2.116-.875 3.018-1.012l1.266-.189c.174-.034.33-.068.469-.103l.659-.154.902-.189 3.226-.754a329.203 329.203 0 0 0 6.8-1.784c4.544-1.269 9.02-2.52 13.408-4.149 5.985-2.161 11.882-4.819 17.849-7.254 6.939-2.538 13.131-6.499 19.411-10.649 3.244-2.143 6.383-4.355 9.089-6.979 2.654-2.589 5.083-5.676 7.233-8.763 1.909-2.829 3.522-5.813 4.615-8.985.26-.789.503-1.595.711-2.401.208-.806.329-1.578.607-2.607.555-1.852 1.318-3.395 1.492-4.784.104-.686.034-1.252-.174-1.8l-.087-.206-.138-.326c-.087-.223-.191-.446-.278-.669a21.513 21.513 0 0 1-.468-1.354c-.555-1.818-.85-3.601-1.162-5.299-.313-1.698-.66-3.293-1.249-4.784a126.16 126.16 0 0 0-1.978-4.768c-1.353-3.052-2.827-6.053-4.354-9.054a79.089 79.089 0 0 0-4.961-8.642c-1.821-2.795-3.764-5.556-5.672-8.386a183.275 183.275 0 0 1-2.81-4.304 95.78 95.78 0 0 0-2.758-4.132c-2.619-3.67-5.516-7.186-8.482-10.667l-4.458-5.264a74.3 74.3 0 0 0-4.51-5.024c-1.821-1.818-3.712-3.567-5.759-5.093-2.03-1.526-4.215-2.95-6.453-3.91-5.446-2.315-11.951-2.418-17.259.172-2.585 1.251-5.083 3.292-7.528 5.195-2.412 1.955-4.667 4.064-6.644 6.38-1.18 1.337-2.186 2.88-3.244 4.39l-3.174 4.526c-2.255 2.95-3.903 6.174-5.88 9.432a53.738 53.738 0 0 1-1.908 2.95c-.608.874-1.128 1.851-1.596 2.863-.937 2.023-1.666 4.218-2.654 6.362-.538 1.114-.989 1.989-1.353 3.086-.382 1.064-.746 2.178-1.232 3.293-.485 1.097-1.127 2.246-1.995 3.172-.104.103-.208.206-.225.36l-.035.223a2.1 2.1 0 0 1-.069.515c-.122.583-.226 1.166-.399 1.749-1.232 4.767-3.608 8.985-4.84 13.41a19.201 19.201 0 0 0-.399 1.663 24.706 24.706 0 0 1-.451 1.818c-.364 1.2-.85 2.332-1.283 3.412-.451 1.097-.868 2.161-1.162 3.224-.313 1.063-.365 2.109-.556 3.378-.624 4.116-1.873 7.991-2.567 11.849-.399 1.938-.468 3.807-.728 5.916-.278 2.041-.642 4.03-.92 5.985-.832 5.144-.329 10.323 1.058 15.382.677 2.52 1.544 5.024 2.516 7.493.954 2.487 2.012 4.768 3.538 6.825 2.498 3.533 6.054 6.225 10.096 7.803 1.994.771 4.232 1.371 6.366 1.8.746.12 1.197.155 1.804.189 1.006.051 1.856.394 2.792.583.937.188 1.874.394 2.863.497.208.017.607.052.624.309l-.052.068Z%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27a%27%3E%3Cpath fill=%27%23fff%27 transform=%27rotate%28-180 406 343.298%29%27 d=%27M0 0h811.216v685.811H0z%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-size:cover;bottom:0;content:"";height:calc(100% - 30px);position:absolute;right:0;width:calc(100% - 30px);z-index:1}.o-cta__img:not(:last-child){margin-bottom:2.375rem}.o-cta__title:not(:last-child){margin-bottom:1.5rem}.o-cta__lead{font-weight:700}.o-cta__lead:not(:last-child),.o-cta__text:not(:last-child){margin-bottom:1.875rem}.o-cta__row--reverse .o-cta__img{padding-left:2.125rem;padding-right:0}.o-cta__row--reverse .o-cta__img:before{left:0;right:auto;transform:scaleX(-1)}.o-cta__row--reverse .o-cta__img:after{background:linear-gradient(270deg,rgba(191,145,96,0),#bf9160)}@media(min-width:1023px){.o-cta__img{align-self:flex-start;height:38.125rem;margin:0;padding-bottom:4rem;padding-right:4.1875rem;width:calc(54% - 20px)}.o-cta__img:after{top:2.625rem;width:calc(100% - 84px)}.o-cta__img:before{height:calc(100% - 57px);width:calc(100% - 64px)}.o-cta__wrapper{flex-grow:0;flex-shrink:0;width:calc(46% - 20px)}.o-cta__content{max-width:35.625rem}.o-cta__title:not(:last-child){margin-bottom:2.125rem}.o-cta__lead:not(:last-child){margin-bottom:2.25rem}.o-cta__text:not(:last-child){margin-bottom:2.3125rem}.o-cta__row{align-items:center;display:flex;gap:2.5rem}.o-cta__row--reverse{flex-direction:row-reverse}.o-cta__row--reverse .o-cta__img{padding-left:4.1875rem}.o-cta__row--reverse .o-cta__content{margin-left:auto}}@media(min-width:1460px){.o-cta__row{gap:11.25rem}.o-cta__img{width:calc(54% - 90px)}.o-cta__wrapper{width:calc(46% - 90px)}}.o-gs{padding-bottom:2.5rem;padding-top:2.5rem}.o-gs:not(.o-gs--white)+.o-cta,.o-gs:not(.o-gs--white)+.o-gs,.o-gs:not(.o-gs--white)+.o-icons,.o-gs:not(.o-gs--white)+.o-opinions-section,.o-gs:not(.o-gs--white)+.o-text{padding-top:0!important}.o-gs--white{background-color:#fff}@media(min-width:1023px){.o-gs{padding-bottom:6.25rem;padding-top:6.25rem}}.o-gs__title:not(:last-child){margin-bottom:1.5625rem}.o-gs__text:not(:last-child){margin-bottom:1.8125rem}.o-gs__button:not(:last-child){margin-bottom:2.5rem}.o-gs__row{grid-gap:.625rem;display:grid;gap:.625rem;grid-template-columns:repeat(2,1fr)}.o-gs__col{height:12.9375rem}.o-gs__col img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}@media(max-width:1022.98px){.o-gs--white{padding-bottom:0!important}.o-gs--white .o-gs__row{gap:0;margin:0 -1.25rem;width:100vw}.o-gs--white .o-gs__col:nth-child(n+4){display:none}.o-gs__col:nth-child(3){grid-column:span 2;height:22.0625rem}}@media(min-width:1023px){.o-gs__title{margin:0 auto;max-width:36.875rem;text-align:center}.o-gs__title:not(:last-child){margin-bottom:1.75rem}.o-gs__text{margin:0 auto;max-width:36.875rem;text-align:center}.o-gs__text:not(:last-child){margin-bottom:2.5rem}.o-gs__button{margin:0 auto}.o-gs__button:not(:last-child){margin-bottom:2.5rem}.o-gs__row{gap:1.875rem;grid-template-columns:repeat(3,1fr)}.o-gs__col{height:14.6875rem}.o-gs__col:nth-child(2){grid-row:span 2;height:31.25rem}}@media(min-width:1460px){.o-gs__col{height:24.0625rem}.o-gs__col:nth-child(2){height:50rem}}.o-footer{background-color:#1b1b1b;color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-footer{padding-bottom:6.25rem;padding-top:6.25rem}}.o-footer__menu ul{display:flex;flex-wrap:wrap;gap:.9375rem 1.25rem}.o-footer__menu ul li{width:100%}.o-footer__menu ul li a{color:#fdf7f1;cursor:pointer;font-size:1.5rem;line-height:1.75;position:relative}.o-footer__menu ul li a:after{background-color:#fdf7f1;bottom:-.3125rem;content:"";height:.125rem;left:0;position:absolute;right:0;transform:scaleX(0);transform-origin:bottom right;transition:transform .3s ease-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:3}.o-footer__menu ul li a:hover{color:#fdf7f1}.o-footer__menu ul li a:hover:after{transform:scaleX(1);transform-origin:bottom left}.o-footer__socials{display:flex;flex-wrap:wrap;gap:.9375rem}.o-footer__socials a{display:block;height:1.5rem;width:1.5rem}.o-footer__socials a img{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100%}.o-footer__top:not(:last-child){margin-bottom:1.25rem}.o-footer__form.m-form .nf-form-content input[type=button],.o-footer__form.m-form .nf-form-content input[type=submit]{border-color:#fdf7f1;color:#fdf7f1}.o-footer__form.m-form .nf-form-content input[type=button]:hover,.o-footer__form.m-form .nf-form-content input[type=submit]:hover{background-color:#fdf7f1;color:#49091e}.o-footer__title{font-size:1.5625rem}.o-footer__title:not(:last-child){margin-bottom:.4375rem}.o-footer__news-text{font-size:1.125rem;line-height:1.3}.o-footer__news-text:not(:last-child){margin-bottom:1.125rem}.o-footer__right>*{max-width:31.25rem}.o-footer__form{max-width:22.5rem!important}.o-footer__form .nf-form-content .label-above .nf-field-label{display:none}.o-footer__form .nf-field-container{margin-bottom:1.125rem}.o-footer__address{font-size:1.125rem;line-height:1.3}.o-footer__address:not(:last-child){margin-bottom:.625rem}.o-footer__contact{align-items:center;display:flex;flex-wrap:wrap;gap:1.25rem}.o-footer__link{color:#bf9160;cursor:pointer;font-size:.875rem;position:relative;transition:color .3s ease-in-out}.o-footer__link:hover{color:#f2e8de}.o-footer__link:not(:last-child):after{background-color:#bf9160;content:"";height:.9375rem;position:absolute;right:-.6875rem;top:50%;transform:translatey(-50%);width:.0625rem}.o-footer__logos{border-top:.0625rem solid #66544c;margin-top:.9375rem;padding-top:.9375rem}.o-footer__logo{display:block;flex-grow:0;flex-shrink:0;height:-moz-fit-content;height:fit-content;width:12.5rem}.o-footer__logo svg{width:100%}.o-footer__links{align-items:center;display:flex;flex-wrap:wrap;gap:1.25rem}.o-footer__links a{height:7.5rem;width:7.5rem}.o-footer__links a img{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100%}.o-footer__bottom{border-top:.0625rem solid #66544c;margin-top:1.25rem;padding-top:1.25rem}.o-footer__rodo-menu{margin-left:auto;width:-moz-fit-content;width:fit-content}.o-footer__rodo-menu ul{display:flex;flex-wrap:wrap;gap:1.875rem}.o-footer__rodo-menu ul li:not(:last-child){position:relative}.o-footer__rodo-menu ul li:not(:last-child):after{background-color:#bf9160;content:"";height:.9375rem;position:absolute;right:-1rem;top:50%;transform:translatey(-50%);width:.0625rem}.o-footer__rodo-menu ul li a{color:#bf9160;cursor:pointer;font-size:.875rem;position:relative;text-transform:uppercase}.o-footer__rodo-menu ul li a:after{background-color:#bf9160;bottom:-.3125rem;content:"";height:.125rem;left:0;position:absolute;right:0;transform:scaleX(0);transform-origin:bottom right;transition:transform .3s ease-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:3}.o-footer__rodo-menu ul li a:hover{color:#bf9160}.o-footer__rodo-menu ul li a:hover:after{transform:scaleX(1);transform-origin:bottom left}@media(max-width:1022.98px){.o-footer{padding-bottom:92px}.o-footer--ap{padding-bottom:164px}.o-footer__menu:not(:last-child){margin-bottom:1.875rem}.o-footer__links{border-top:.0625rem solid #66544c;margin-top:.9375rem;padding-top:.9375rem}.o-footer__left{margin-bottom:1.875rem}}@media(min-width:1023px){.o-footer{padding-bottom:1.5625rem}.o-footer__logos{align-items:center;display:flex}.o-footer__links{padding-left:3.75rem;position:relative}.o-footer__links:before{background-color:#66544c;bottom:.9375rem;content:"";left:1.875rem;position:absolute;top:.9375rem;width:.0625rem}.o-footer__menu ul li{width:-moz-fit-content;width:fit-content}.o-footer__top{align-items:center;display:flex;gap:1.875rem;justify-content:space-between}.o-footer__top:not(:last-child){margin-bottom:4.6875rem}.o-footer__content{align-items:flex-end;display:flex;gap:1.875rem;justify-content:space-between}.o-footer__left{max-width:43.75rem;width:100%}.o-footer__right{flex-grow:0;flex-shrink:0;width:39%}.o-footer__bottom{margin-top:4.6875rem;padding-top:1.5625rem}}.o-hero{background-color:#49091e;background-image:var(--bg-mobile);background-position:50%;background-size:cover;color:#fff;position:relative}.o-hero:before{background:rgba(0,0,0,.5);bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:2}.o-hero .l-container{padding-bottom:2.5rem;padding-top:14.875rem;position:relative;z-index:3}.o-hero__video{bottom:0;display:block;height:100%;left:0;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;opacity:0;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out;width:100%;z-index:1}.o-hero__title{text-align:center}.o-hero__title:not(:last-child){margin-bottom:1.625rem}@media(min-width:768px){.o-hero__title{margin-left:auto;margin-right:auto;max-width:80%}}.o-hero__text{font-weight:700;margin:0 auto;max-width:36.875rem;text-align:center}.o-hero__text:not(:last-child){margin-bottom:2rem}.o-hero__breadcrumbs:not(:last-child){margin-bottom:1.625rem}.o-hero__breadcrumbs>span{align-items:center;color:#fdf7f1;display:flex;flex-wrap:wrap;font-size:.875rem;gap:.3125rem;justify-content:center;text-transform:uppercase}.o-hero__breadcrumbs>span a{color:#bf9160}.o-hero__breadcrumbs>span a:hover{color:#bf9160;-webkit-text-decoration:underline;text-decoration:underline}.o-hero--video .l-container{align-items:center;display:flex;flex-direction:column;height:100vh;justify-content:center;padding-bottom:5rem;padding-top:17.375rem}.o-hero__arrow{cursor:pointer;display:block;height:3.75rem;width:3.75rem}.o-hero__arrow svg{height:100%;width:100%}@media(min-width:1023px){.o-hero{background-image:var(--bg-pc)}.o-hero .l-container{display:flex;flex-direction:column;min-height:21.875rem;padding-bottom:5.9375rem;padding-top:13.125rem}.o-hero--small .l-container{min-height:0;padding-bottom:5.9375rem;padding-top:10.9375rem}.o-hero__breadcrumbs:not(:last-child),.o-hero__title:not(:last-child){margin-bottom:2.5rem}.o-hero__text:not(:last-child){margin-bottom:3.0625rem}.o-hero--video .l-container{padding-bottom:8.4375rem;padding-top:19.125rem}}@media(min-width:1200px){.o-hero .l-container{padding-bottom:5.9375rem;padding-top:10.9375rem}}.o-contact{background:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-contact{padding-bottom:6.25rem;padding-top:6.25rem}}.o-contact__title:not(:last-child){margin-bottom:1.4375rem}.o-contact__name{font-weight:700}.o-contact__address:not(:last-child){margin-bottom:1.4375rem}.o-contact__button:not(:last-child),.o-contact__contact--mail:not(:last-child){margin-bottom:1.875rem}.o-contact__form-wrapper:not(:first-child){margin-top:1.875rem;padding-top:1.9375rem;position:relative}.o-contact__form-wrapper:not(:first-child):before{background:linear-gradient(270deg,rgba(191,145,96,0),#bf9160);content:"";height:.125rem;left:0;position:absolute;right:0;top:0;transform:translateY(-50%)}.o-contact__form-title:not(:last-child){margin-bottom:1.9375rem}.o-contact__link{align-items:center;color:#49091e;cursor:pointer;display:flex;font-size:1rem;gap:.625rem;line-height:1.75}.o-contact__link span{flex-grow:0;flex-shrink:0;height:2.5rem;transition:transform .3s ease-in-out;width:2.5rem}.o-contact__link span svg{height:100%;width:100%}.o-contact__link:hover{color:#49091e}.o-contact__link:hover span{transform:rotate(30deg)}.o-contact__link:not(:last-child){margin-bottom:.6875rem}@media(max-width:1022.98px){.o-contact{padding-bottom:0}.o-contact__map{height:28.75rem;margin:0 -1.25rem;width:100vw}.o-contact__map iframe{height:100%;width:100%}.o-contact__col:not(:last-child){margin-bottom:2.5rem}}@media(min-width:1023px){.o-contact__row{align-items:center;display:flex;gap:2.5rem}.o-contact__col,.o-contact__map{width:calc(50% - 20px)}.o-contact__map{align-self:stretch;position:relative}.o-contact__map iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.o-contact__wrapper{margin-left:auto;max-width:35.875rem}.o-contact__title:not(:last-child){margin-bottom:2.125rem}.o-contact__address:not(:last-child){margin-bottom:2.25rem}.o-contact__button:not(:last-child){margin-bottom:2.5rem}.o-contact__form-wrapper:not(:first-child){margin-top:2.5rem;padding-top:2.5rem}.o-contact__form-title:not(:last-child){margin-bottom:2.6875rem}.o-contact__contact--mail:not(:last-child){margin-bottom:2.5rem}}@media(min-width:1460px){.o-contact__row{gap:11.25rem;justify-content:space-between}.o-contact__col{width:calc(46% - 90px)}.o-contact__map{width:calc(54% - 90px)}}.o-ap-archive{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-ap-archive{padding-bottom:6.25rem;padding-top:6.25rem}}.o-ap-archive__title{margin:0 auto;max-width:55rem;text-align:center}.o-ap-archive__title:not(:last-child){margin-bottom:2.5rem}.o-ap-archive__text{margin:0 auto;max-width:55rem;text-align:center}.o-ap-archive__text:not(:last-child){margin-bottom:2.5rem}.o-ap-archive__row{display:flex;flex-wrap:wrap;gap:1.875rem}.o-ap-archive__col{width:100%}@media(min-width:576px){.o-ap-archive__col{width:calc(50% - 15px)}}@media(min-width:1023px){.o-ap-archive__col{width:calc(33.33333% - 20px)}}@media(min-width:1460px){.o-ap-archive__col{width:calc(25% - 22.5px)}}.o-hero-ap{overflow:hidden}.o-hero-ap__link{cursor:pointer}.o-hero-ap__slide{height:27.5rem!important}.o-hero-ap__slide a{display:block;height:100%;width:100%}.o-hero-ap__slide img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-hero-ap__swiper{position:relative}.o-hero-ap__pag{bottom:1.25rem!important;color:#fdf7f1!important;font-size:1rem!important;left:1.25rem!important;position:absolute;width:-moz-fit-content!important;width:fit-content!important;z-index:2}.o-hero-ap__more{align-items:center;background-color:#f2e8de;bottom:.625rem;color:#000;cursor:pointer;display:flex;gap:.625rem;padding:.625rem;position:absolute;right:.625rem;transition:background-color .3s ease-in-out;z-index:5}.o-hero-ap__more:hover{background-color:#fdf7f1}@media(min-width:1023px){.o-hero-ap{padding-top:10.625rem}.o-hero-ap__pag{display:none}.o-hero-ap__slide{height:37.5rem!important}}.o-ap-section{background-color:#443833;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-ap-section{padding-bottom:6.25rem;padding-top:6.25rem}}.o-ap-section__title{color:#fdf7f1}.o-ap-section__swiper:not(:last-child),.o-ap-section__title:not(:last-child){margin-bottom:1.875rem}.o-ap-section__swiper .swiper-slide{height:auto}.o-ap-section .m-ap-tile{border-color:#66544c}.o-ap-section .m-ap-tile__price,.o-ap-section .m-ap-tile__title,.o-ap-section .m-ap-tile__unit{color:#fdf7f1}@media(min-width:1023px){.o-ap-section__swiper:not(:last-child),.o-ap-section__title:not(:last-child){margin-bottom:2.5625rem}}.o-ap{padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-ap{padding-bottom:6.25rem;padding-top:6.25rem}}.o-ap .l-container{max-width:91.875rem}.o-ap__breadcrumbs>span{align-items:center;color:#443833;display:flex;flex-wrap:wrap;font-size:.875rem;gap:.3125rem;text-transform:uppercase}.o-ap__breadcrumbs>span a{color:#bf9160}.o-ap__breadcrumbs>span a:hover{color:#bf9160;-webkit-text-decoration:underline;text-decoration:underline}.o-ap__breadcrumbs:not(:last-child){margin-bottom:1.3125rem}.o-ap__subtitle:not(:last-child),.o-ap__title:not(:last-child){margin-bottom:1.25rem}.o-ap__units{align-items:center;display:flex;flex-wrap:wrap;gap:1.5rem}.o-ap__units:not(:last-child){margin-bottom:1rem}.o-ap__unit{align-items:center;display:flex;flex-grow:0;flex-shrink:0;gap:.625rem}.o-ap__wrapper{border-top:.0625rem solid #f2e8de;padding-top:1.375rem}.o-ap__wrapper:not(:last-child){margin-bottom:1.375rem}.o-ap__price span{color:#bf9160}.o-ap__icon{align-items:center;display:flex;height:1.5rem;justify-content:center;width:1.5rem}.o-ap__fac{display:flex;flex-wrap:wrap;gap:1.25rem .625rem}.o-ap__fac-el{align-items:center;display:flex;gap:.625rem;min-width:2.5rem;width:calc(50% - 5px)}.o-ap__fac-icon{flex-grow:0;flex-shrink:0;height:1.875rem;width:1.875rem}.o-ap__fac-icon img,.o-ap__fac-icon svg{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100%}@media(max-width:1022.98px){.o-ap__sticky{align-items:center;background-color:#49091e;bottom:4.5rem;display:flex;gap:.625rem;height:4.5rem;justify-content:space-between;left:0;padding:.3125rem 1.25rem;position:fixed;right:0;z-index:13}.o-ap__price{color:#fff;text-align:center}.o-ap__button{background-color:transparent;border:none;color:#f2e8de;cursor:pointer;font-size:.875rem;font-weight:400;padding:0}.o-ap__button span{display:none}.o-ap__button:hover{color:#f2e8de}}@media(min-width:768px){.o-ap__fac-icon{height:2.5rem;width:2.5rem}.o-ap__fac-el{width:calc(33.33333% - 6.66667px)}}@media(min-width:1023px){.o-ap__row{display:flex;gap:2.5rem;justify-content:space-between}.o-ap__right{flex-grow:0;flex-shrink:0;width:26.1875rem}.o-ap__sticky{background-color:#f2e8de;padding:2.5rem 1.875rem}.o-ap__price{text-align:center}.o-ap__price:not(:last-child){margin-bottom:.6875rem}.o-ap__button{align-items:center;background:#49091e;border-radius:2.5rem;color:#f2e8de;cursor:pointer;display:flex;font-size:1.125rem;font-weight:400;gap:.625rem;justify-content:center;line-height:1.66667;margin:0 auto;min-height:3.875rem;padding:1rem 1.875rem;text-transform:uppercase;transition:background-color .3s ease}.o-ap__button:hover{background-color:#7d0f34;color:#f2e8de}}@media(min-width:1460px){.o-ap__row{gap:11.25rem}.o-ap__fac-el{width:calc(25% - 7.5px)}}.o-at-archive{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-at-archive{padding-bottom:6.25rem;padding-top:6.25rem}}.o-at-archive__title{margin:0 auto;max-width:54.375rem}.o-at-archive__title:not(:last-child){margin-bottom:1.875rem}.o-at-archive__text{margin:0 auto;max-width:54.375rem}.o-at-archive__main:not(:first-child){padding-top:2.5rem}.o-at-archive__img{margin:0 -1.25rem;padding-bottom:1.875rem;padding-right:2.125rem;position:relative;width:100vw}.o-at-archive__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;position:relative;width:100%;z-index:2}.o-at-archive__img:after{background:linear-gradient(90deg,rgba(191,145,96,0),#bf9160);content:"";height:.125rem;left:50%;position:absolute;top:1.25rem;transform:translateX(-50%);width:calc(100% - 40px);z-index:3}.o-at-archive__img:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%27812%27 height=%27687%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23a%29%27 fill=%27%23F2E8DE%27%3E%3Cpath d=%27M132.939 709.649c-.154.774-.722 1.049-1.48 1.273-.43.103-.723.189-1.411.206-.62.017-1.222-.051-1.721-.103a5.159 5.159 0 0 1-.654-.103c-.103-.035-.258-.018-.31-.104l-.069-.292a9.583 9.583 0 0 1-.206-1.29c-.121-1.239-.035-1.6-.052-2.271v-.912l.034-.465.069-1.015.121-1.548c.103-1.032.224-2.048.378-3.063.293-2.03.689-4.06 1.171-6.038 1.927-7.983 5.112-15.502 8.571-22.779 3.511-7.312 7.642-14.297 12.237-20.972 2.324-3.373 4.905-6.521 7.504-9.601l3.941-4.559 4.079-4.439 16.299-17.737 16.936-17.153c2.823-2.891 5.68-5.575 8.382-8.499 2.719-2.891 5.387-5.884 8.106-8.843 2.703-2.96 5.491-5.919 8.4-8.723 2.857-2.804 5.696-5.609 8.433-8.482 2.719-2.873 5.335-5.849 7.711-8.963 2.478-3.269 5.18-6.263 7.745-9.308 1.273-1.514 2.53-3.045 3.683-4.611 1.204-1.583 2.134-3.131 3.356-4.92 2.375-3.39 5.043-6.383 7.005-9.618 3.924-6.882 8.037-13.815 11.256-20.989 3.218-7.192 5.593-14.831 8.382-22.383l4.285-11.269 2.134-5.609c.706-1.858 1.429-3.785 2.289-5.66 1.222-2.701 2.599-5.299 3.925-7.88l1.962-3.854a72.11 72.11 0 0 1 2.065-3.94c1.446-2.58 3.012-5.058 4.527-7.518 1.566-2.563 3.356-4.955 5.197-7.26 1.842-2.306 3.752-4.508 5.611-6.71 1.807-2.219 3.821-4.542 5.886-6.607 4.165-4.197 8.451-8.086 12.857-11.957a240.687 240.687 0 0 1 13.631-11.045c4.716-3.544 9.707-6.675 14.75-9.635 5.026-2.959 10.189-5.78 15.473-8.309 5.267-2.564 10.791-4.749 16.213-6.779l16.282-6.228 16.35-6.09a288.28 288.28 0 0 0 16.11-6.383c2.65-1.153 5.404-2.254 7.917-3.441a74.87 74.87 0 0 0 7.435-4.129c4.836-3.028 9.432-6.521 14.079-10.013l3.442-2.581c1.033-.826 1.996-1.789 2.909-2.821 1.841-2.065 3.476-4.439 5.284-6.779a82.665 82.665 0 0 0 9.345-14.297 97.946 97.946 0 0 0 1.876-3.837c.585-1.29 1.308-2.752 2.048-4.008 1.498-2.581 3.047-4.955 4.114-7.433.275-.653.464-1.187.723-1.926a28.12 28.12 0 0 1 .86-2.168c.637-1.428 1.394-2.805 2.375-4.095a15.074 15.074 0 0 1 1.635-1.858l1.532-1.531 3.047-3.063 6.092-6.142a251.555 251.555 0 0 0 5.8-6.434c3.787-4.353 7.418-8.809 10.723-13.488 1.669-2.323 3.201-4.732 4.716-7.209l4.561-7.364c1.532-2.408 2.977-5.006 4.578-7.484a150.082 150.082 0 0 1 4.922-7.294c1.704-2.375 3.443-4.766 5.387-7.037a107.652 107.652 0 0 1 6.007-6.486c2.048-2.082 4.251-4.095 6.248-6.073 2.031-2.013 3.993-4.129 6.024-6.245 2.013-2.099 4.096-4.216 6.333-6.194l6.575-5.764c8.623-7.707 17.71-15.071 25.369-23.518 1.911-2.134 3.7-4.301 5.387-6.607 1.739-2.34 3.477-4.645 5.077-6.985 3.219-4.662 5.852-9.669 6.988-15.054 1.188-5.368.878-10.993-.516-16.413-1.291-5.35-4.182-10.237-7.16-15.209-1.497-2.511-2.909-5.04-4.423-7.432-1.48-2.357-3.27-4.714-4.819-7.278-1.567-2.511-2.995-5.178-4.251-7.81l-3.839-7.828-3.631-7.45c-1.222-2.46-2.53-4.955-3.666-7.604a46.335 46.335 0 0 1-1.532-4.078c-.206-.705-.413-1.41-.585-2.133-.103-.361-.155-.723-.241-1.084l-.103-.516s-.035-.19-.086-.31c-.155-.482-.431-1.084-.723-1.755-.31-.636-.603-1.772-.706-2.27-.31-1.274-.723-2.581-1.119-3.923-.395-1.36-.791-2.753-1.049-4.25-.259-1.497-.362-2.925-.482-4.301-.121-1.376-.241-2.701-.482-3.94a13.047 13.047 0 0 0-.448-1.755c-.155-.447-.533-1.342-.723-2.03-.912-2.959-1.05-5.867-1.428-8.499-.189-1.324-.43-2.58-.792-3.768a27.847 27.847 0 0 1-1.015-4.335c-.431-2.908-.499-5.66-.93-8.224a21.152 21.152 0 0 0-.964-3.699 75.512 75.512 0 0 1-1.308-4.077c-.791-2.719-1.445-5.385-2.237-7.983-.775-2.65-1.669-4.92-3.098-7.157a39.753 39.753 0 0 0-2.272-3.27c-.396-.515-.843-1.1-1.239-1.565-.396-.464-.792-.929-1.257-1.342-1.772-1.703-3.992-2.907-6.436-3.768-2.444-.877-5.095-1.41-7.797-1.96l-3.752-.775s-.207 0-.809.413c-.293.19-.654.447-1.17.67a3.905 3.905 0 0 1-1.928.328c-3.718-.344-7.504.86-11.394 2.288-3.958 1.394-7.728 2.839-11.342 4.714-1.79.946-3.528 1.961-5.198 3.097-1.618 1.118-3.321 2.426-4.991 3.647-3.339 2.478-6.626 4.972-9.655 7.708-6.041 5.402-10.843 12.18-15.456 19.062-2.272 3.476-4.613 6.95-6.626 10.495-2.048 3.561-3.787 7.243-5.387 11.063-1.618 3.819-3.133 7.724-4.871 11.578-1.721 3.75-3.15 7.57-4.509 11.51-1.36 3.923-2.685 7.914-4.217 11.854-1.497 3.905-3.012 7.742-4.096 11.665-.586 1.978-.895 3.853-1.377 6.038-.499 2.1-1.119 4.147-1.773 6.16-1.36 4.025-2.702 7.862-3.838 11.87-1.17 3.992-2.289 8.035-3.58 12.044l-.998 3.011c-.19.55-.293.86-.396 1.307-.103.43-.172.912-.224 1.411-.138 1.015-.224 2.116-.637 3.389a42.772 42.772 0 0 0-1.015 2.925c-.534 1.703-1.016 3.475-1.549 5.282l-.413 1.359-.224.671c-.052.189-.12.361-.155.551-.206.757-.31 1.6-.413 2.477-.086.895-.155 1.824-.292 2.804-.069.499-.173.998-.293 1.514-.121.482-.344 1.119-.465 1.48-.585 1.634-.998 3.355-1.377 5.127-.378 1.772-.688 3.596-1.118 5.454-.19.911-.517 1.944-.62 2.598-.12.757-.155 1.6-.155 2.511 0 .895 0 1.876-.103 2.925-.069.516-.138 1.067-.293 1.617-.12.465-.189.757-.258 1.17-.241 1.566-.103 3.355-.138 5.317-.034.98-.12 2.03-.395 3.096a8.466 8.466 0 0 1-.551 1.566c-.121.241-.241.533-.379.723-.051.086-.069.086-.069.137l.069.998.052 1.411c.034.946.034 1.875.034 2.821 0 3.734-.155 7.415-.103 11.046.052 3.647.344 7.139 1.136 10.701.757 3.768.998 7.535 1.119 11.269l.275 11.062.034 11.132c.052 4.094-1.566 8.172-4.302 11.183-1.377 1.514-3.03 2.804-4.888 3.681-.93.43-1.911.809-2.909 1.05-1.205.275-1.48.292-2.324.722-.774.362-1.858.929-3.132 1.05-1.101.086-1.979.086-2.978.069a44.328 44.328 0 0 1-5.714-.551c-1.876-.292-3.7-.654-5.507-1.015-.516-.103-.757-.155-1.17-.189-.396-.035-.878-.035-1.429-.103-.551-.052-1.188-.155-1.859-.482l-1.222-.568c-3.253-1.428-6.747-2.46-10.275-3.63-1.773-.585-3.545-1.204-5.318-1.927l-5.146-2.064-10.619-4.267c-3.425-1.359-7.246-2.426-10.775-4.233-1.514-.739-3.304-1.169-5.197-1.737-.947-.293-1.945-.637-2.892-1.067l-2.599-1.17c-1.721-.757-3.425-1.445-5.146-1.909-.43-.121-.86-.224-1.291-.31l-1.445-.258c-1.102-.241-2.066-.62-2.978-.981-1.842-.74-3.563-1.583-5.266-2.254a24.291 24.291 0 0 0-2.531-.843c-.843-.223-1.617-.292-2.684-.464-4.028-.654-7.659-2.202-11.239-3.407-3.632-1.187-7.109-2.374-10.878-3.561a57.387 57.387 0 0 1-5.49-2.151c-1.807-.791-3.528-1.72-5.215-2.546-3.408-1.669-6.919-3.303-10.31-5.264-3.373-1.927-6.609-4.044-9.793-6.194l-18.898-13.024c-3.132-2.168-6.264-4.284-9.517-6.142-3.253-1.824-6.678-3.355-10.206-4.645-3.529-1.29-7.16-2.374-10.826-3.407l-5.525-1.514c-1.859-.481-3.7-1.049-5.473-1.428-3.563-.722-7.263-.98-11.015-1.307-1.876-.172-3.787-.361-5.68-.637a73.684 73.684 0 0 0-5.49-.602c-7.384-.533-14.905-.292-22.409-.378h-5.628c-1.911-.052-3.683.051-5.749-.104-3.993-.395-7.469-1.737-11.032-1.737-1.962-.052-4.114-.448-5.955-1.497a41.6 41.6 0 0 1-4.836-3.234c-3.064-2.392-5.714-5.386-7.625-8.809-1.893-3.424-3.098-7.054-4.372-10.547-.636-1.754-1.308-3.475-2.065-5.127-.843-1.806-1.36-3.647-2.065-5.264-.327-.792-.792-1.583-1.222-2.443l-1.291-2.495a78.257 78.257 0 0 0-2.719-4.834 34.46 34.46 0 0 0-1.515-2.271l-1.635-2.323-3.132-4.697c-2.083-3.13-4.2-6.107-6.73-8.826-2.496-2.787-5.026-5.522-7.71-8.086-2.686-2.563-5.525-4.886-8.64-6.985-3.099-2.168-6.076-4.421-9.243-6.314-5.473-3.32-11.686-5.402-18.089-5.712-3.167-.172-6.35.12-9.26 1.256-1.445.534-2.822 1.36-4.25 2.15a52.47 52.47 0 0 0-4.062 2.599c-5.267 3.647-9.208 8.877-12.306 14.537-3.047 5.678-5.267 11.837-6.644 18.134a59.652 59.652 0 0 0-1.256 9.566c-.155 3.2.069 6.451.172 9.737.224 6.538.878 12.938 2.564 19.235l2.152 9.635c.62 3.165 1.48 6.297 2.444 9.393l1.48 4.663c.24.722.55 1.651.654 2.529.138.86.172 1.686.293 2.443.103.757.275 1.445.602 1.944.465.723.878 1.566 1.17 2.374.603 1.652.86 3.321 1.188 4.886.137.671.292 1.308.499 1.927.172.568.499 1.291.671 2.03.396 1.463.5 2.925.534 4.37.034 2.908-.207 5.54.034 8.327.293 5.815-1.48 11.476-3.82 16.568-2.393 5.093-4.975 10.099-8.33 14.693l-5.113 6.641c-1.704 2.219-3.442 4.439-5.387 6.52l-23.579 23.777c-3.941 3.94-7.866 7.966-11.807 11.819-1.945 1.962-3.872 3.992-5.886 5.953a61.884 61.884 0 0 1-3.15 2.856c-1.067.946-2.272 1.772-3.235 2.615-2.72 2.374-5.026 5.334-7.556 8.155-2.53 2.822-5.146 5.523-7.728 8.241s-5.146 5.437-7.538 8.275l-7.522 8.413c-10.05 11.166-20.343 22.229-32.098 31.777-5.56 4.456-11.36 8.671-17.711 12.061-6.282 3.268-12.409 6.864-19.018 9.668a145.927 145.927 0 0 1-9.982 3.872l-10.103 3.389c-3.391 1.066-6.833 1.927-10.258 2.907l-2.565.706c-.895.223-1.617.516-2.736.671-1.016.12-1.928.051-2.719.103-.396.017-.74.086-.964.172-.121.034-.603.361-1.033.602-1.755.964-3.769 1.29-5.611 1.342-1.876.052-3.597-.103-5.318-.034l-10.636.189c-7.109.034-14.268-.155-21.359-1.187-1.773-.224-3.563-.602-5.233-.826-1.704-.241-3.442-.361-5.197-.464-3.511-.19-7.091-.259-10.689-.809a37.274 37.274 0 0 1-2.684-.499 15.553 15.553 0 0 0-2.479-.396c-1.687-.137-3.442-.069-5.284-.172-1.893-.103-3.58-.447-5.318-.568a133.732 133.732 0 0 0-5.249-.361c-4.699-.241-9.484-.413-14.217-1.118l-14.044-1.703-7.022-.861c-2.324-.275-4.75-.533-7.091-.997-4.716-.878-9.346-2.271-13.752-4.216-4.423-1.944-8.588-4.645-11.944-8.206-3.374-3.561-5.887-7.828-7.556-12.405-1.67-4.576-2.358-9.393-2.84-14.107l-.344-3.544a32.498 32.498 0 0 1-.086-3.665c.069-2.426.344-4.817.602-7.14.379-3.613.482-7.363 1.188-11.114a33.01 33.01 0 0 1 .654-2.804l.705-2.65 1.326-5.385c.912-3.664 2.203-7.174 3.459-10.667 1.291-3.492 2.72-6.95 4.355-10.34.809-1.703 1.738-3.337 2.495-4.937.775-1.635 1.48-3.338 2.169-5.041 1.394-3.407 2.771-6.934 4.733-10.22 2.031-3.096 3.442-6.331 4.974-9.772 1.549-3.32 2.788-6.847 4.888-10.15 2.151-3.011 3.717-6.194 5.387-9.532.826-1.651 1.687-3.32 2.633-4.955.999-1.651 1.911-3.114 2.788-4.748 1.756-3.2 3.271-6.503 4.888-9.875 1.601-3.338 3.546-6.641 5.353-9.738 1.721-3.149 3.098-6.555 4.699-9.927.413-.843.826-1.686 1.273-2.512.482-.946 1.171-1.738 1.687-2.426.551-.688.998-1.359 1.188-1.996.12-.309.12-.636.12-.946a5.59 5.59 0 0 0-.189-.895c-.035-.172-.104-.361-.138-.533.103-.138.241-.275.361-.396l.706-.774.396-.482c.258-.344.499-.67.723-1.032.465-.705.86-1.479 1.222-2.288.74-1.6 1.308-3.32 1.979-5.058.637-1.755 1.515-3.493 2.358-5.075.809-1.635 1.549-3.304 2.324-4.955 3.012-6.383 5.851-12.904 8.674-19.39 1.411-3.252 2.874-6.486 4.234-9.755l3.855-9.858c2.582-6.572 5.078-13.161 7.9-19.699 1.257-3.114 1.807-6.779 3.408-10.048 1.377-3.182 2.392-6.537 3.391-9.927l1.497-5.058c.447-1.651.74-3.389 1.136-5.144.826-3.527 2.1-6.83 2.96-10.202.981-3.269.551-6.796 1.532-10.495.275-.963.654-1.703.86-2.512.224-.808.379-1.634.482-2.477.207-1.686.207-3.424.241-5.213 0-1.79.259-3.648.396-5.334.121-1.737.138-3.475.069-5.212-.138-3.476-.62-6.951-1.274-10.41a303.717 303.717 0 0 1-1.944-10.46c-.31-1.737-.654-3.458-1.085-5.144-.396-1.703-.981-3.303-1.531-5.058-1.291-4.353-2.152-8.654-3.615-12.852-1.342-4.284-2.427-8.62-3.562-12.92-1.102-4.301-2.479-8.516-3.735-12.818l-3.546-12.92-7.229-25.738c-1.256-4.267-2.323-8.62-3.425-12.955-.533-2.202-1.118-4.284-1.617-6.555-.379-2.374-.086-4.662-.74-6.434-.086-.224-.173-.396-.276-.637l-.396-.809a15.163 15.163 0 0 1-.619-1.686c-.344-1.135-.534-2.305-.689-3.423-.292-2.254-.413-4.456-.981-6.452-.275-.929-.74-2.116-.981-3.252a26.794 26.794 0 0 1-.516-3.441c-.19-2.305-.138-4.559-.103-6.778a70.72 70.72 0 0 0-.138-6.607 213.867 213.867 0 0 1-.258-6.727c-.086-4.473 0-8.963.206-13.437.121-2.236.258-4.473.448-6.709l.155-1.669c.051-.568.137-1.187.241-1.738.206-1.118.413-2.15.413-3.131 0-.533.034-1.411.43-2.133.103-.19.224-.362.361-.534l.069-.086.035-.034.137-.138c.086-.086.19-.172.276-.241a3.72 3.72 0 0 1 1.256-.619c.809-.241 1.601-.189 2.134-.361.844-.224 1.584-.104 2.375.206.689.258 1.412.413 2.117.637.224.069.603.137.654.447.121.877-1.256.981-1.996 1.17-.878.224-1.756.413-2.651.533-.447.052-.895.086-1.342.138-.31.034-.551.103-.688.138-.104.034-.138.051-.155.068 0 .052 0-.137-.104.258-.017.121-.034.207-.034.431 0 .326 0 .636-.034.946a16.097 16.097 0 0 1-.241 1.72c-.207 1.119-.379 1.927-.448 2.942l-.258 3.097c-.31 4.129-.516 8.275-.568 12.404-.052 4.147.017 8.276.258 12.405.361 4.267-.086 8.602.155 12.525.12 1.978.43 3.888 1.067 5.643.809 2.237 1.033 4.49 1.256 6.555.224 2.064.465 3.991 1.171 5.643.069.206.172.413.275.619l.362.775a9.33 9.33 0 0 1 .568 1.875c.206 1.221.241 2.322.275 3.355.052 1.05.086 1.927.327 2.821l.757 3.028 1.515 6.039c.964 4.043 2.1 8.052 3.236 12.078l6.712 24.19 1.669 6.055c.517 2.013 1.016 3.992 1.618 5.987 1.153 3.975 2.444 8 3.511 12.078 1.085 4.06 2.066 8.103 3.253 12.06l.912 2.96c.327 1.032.62 2.047.895 3.079l1.584 6.073c.361 1.36.757 2.684 1.187 4.009.465 1.41.861 2.839 1.188 4.25.671 2.855 1.119 5.694 1.601 8.481.447 2.77 1.118 5.54 1.583 8.413.482 2.856.826 5.764.947 8.689a54.358 54.358 0 0 1 0 4.404c-.052 1.445-.259 3.028-.362 4.3-.206 2.685.017 5.644-.551 8.69-.137.756-.344 1.513-.568 2.27l-.395 1.084a7.064 7.064 0 0 0-.276.86c-.327 1.205-.464 2.547-.568 3.957-.12 1.411-.206 2.873-.464 4.387-.293 1.549-.672 2.908-1.085 4.319-.809 2.77-1.772 5.454-2.358 8.103-.292 1.36-.55 2.77-.912 4.215-.361 1.497-.809 2.805-1.205 4.181-.791 2.736-1.583 5.505-2.564 8.24a62.478 62.478 0 0 1-1.601 4.096c-.568 1.238-.981 2.477-1.377 3.836-.396 1.342-.757 2.736-1.222 4.164a31.317 31.317 0 0 1-.809 2.116l-.808 1.944c-1.085 2.581-2.169 5.196-3.185 7.88l-6.23 16c-.62 1.548-1.188 3.131-1.842 4.645l-1.996 4.576-3.976 9.136c-2.599 6.108-5.456 12.164-8.244 18.237-.723 1.514-1.583 2.976-2.169 4.404-.619 1.48-1.153 3.045-1.772 4.628-.62 1.583-1.343 3.2-2.341 4.731-.258.379-.516.757-.809 1.102l-.43.533-.121.12s-.069.086-.034.138v.086l.052.189c.068.568 0 1.153-.121 1.703-.585 2.22-2.1 3.459-2.823 4.628-.722 1.205-1.48 2.822-2.151 4.267-1.394 2.977-2.685 6.091-4.354 9.084-1.739 2.942-3.357 5.695-4.82 8.671-1.445 2.925-2.822 6.022-4.406 8.981a74.075 74.075 0 0 1-2.478 4.422c-.912 1.462-1.704 2.769-2.461 4.249-1.532 2.89-2.926 5.936-4.647 8.895-.826 1.479-1.911 2.925-2.685 4.215-.809 1.359-1.497 2.821-2.169 4.318a425.816 425.816 0 0 1-4.096 9.136c-.723 1.531-1.515 3.045-2.444 4.507a40.774 40.774 0 0 0-2.358 4.233c-1.411 2.924-2.582 6.021-3.89 9.118-.688 1.617-1.411 3.217-2.254 4.8a87.689 87.689 0 0 0-2.289 4.594c-1.429 3.097-2.702 6.297-3.873 9.514a236.748 236.748 0 0 0-1.704 4.886 64.582 64.582 0 0 0-1.411 4.903l-1.239 5.041-.671 2.546c-.224.809-.414 1.6-.568 2.426-.654 3.286-.792 6.71-1.119 10.203-.344 3.492-.809 6.864-.671 10.185.55 6.744 1.17 13.729 3.786 19.854 2.582 6.176 6.971 11.509 12.702 14.968 5.697 3.475 12.323 5.574 18.984 6.744 1.669.292 3.356.499 5.06.688l5.18.619 10.344 1.256 10.275 1.239c3.391.344 6.833.447 10.31.636 3.115.155 6.385.396 9.431.826 1.446.155 2.978.121 4.579.155a30.24 30.24 0 0 1 2.461.138c.809.069 1.79.292 2.461.43 5.869 1.307 12.151.809 18.571 1.72 12.271 2.34 24.646 1.996 37.21 1.686 3.305 0 6.248.344 8.606-.825.292-.138.568-.293.843-.482l.327-.207c.155-.086.293-.154.448-.206.292-.12.568-.189.843-.241 1.05-.189 1.876-.138 2.616-.172.362 0 .706-.034.998-.069.293-.034.517-.103.947-.223l2.255-.637 9.001-2.512c3.012-.826 5.921-1.944 8.881-2.89 5.938-1.927 11.704-4.129 17.297-6.779 2.788-1.29 5.525-2.787 8.279-4.267l8.244-4.421c10.654-6.125 20.223-14.228 29.104-22.899 4.44-4.353 8.743-8.861 12.994-13.454l12.53-13.884c4.079-4.869 8.537-9.342 12.805-13.867 2.151-2.271 4.165-4.542 6.23-6.951 1.05-1.187 2.117-2.391 3.288-3.527a28.84 28.84 0 0 1 1.841-1.668c.672-.568 1.291-1.016 1.876-1.463 4.665-3.785 8.778-8.602 13.373-12.955l13.219-13.282 12.77-12.869c2.1-2.15 4.337-4.301 6.282-6.383 1.962-2.167 3.77-4.524 5.594-6.933l2.805-3.613a51.615 51.615 0 0 0 2.6-3.527c1.634-2.426 3.097-5.006 4.457-7.656 2.754-5.299 5.25-10.684 5.852-16.361.155-1.411.206-2.822.103-4.233a47.122 47.122 0 0 1-.069-4.679c.086-3.045.19-5.833-.792-8.293-1.153-3.252-1.17-6.297-2.375-8.499a4.866 4.866 0 0 0-.224-.413l-.292-.499a6.657 6.657 0 0 1-.602-1.428c-.276-.946-.328-1.772-.414-2.529-.069-.757-.154-1.428-.292-2.013a2.916 2.916 0 0 0-.12-.413l-.173-.533-.344-1.084c-.93-2.873-1.859-5.781-2.65-8.757a78.66 78.66 0 0 1-1.05-4.525l-.981-4.387c-.672-2.942-1.257-5.798-1.98-8.826-.688-3.045-1.136-6.107-1.41-9.17-.276-3.062-.414-6.107-.517-9.135-.104-2.977-.276-6.125-.035-9.222.396-6.211 1.807-12.318 3.907-18.133 2.066-5.799 4.87-11.442 8.606-16.448 1.841-2.512 4.044-4.886 6.488-6.882 2.444-2.013 5.095-3.699 7.797-5.178 2.685-1.6 6.007-2.702 9.208-2.977 3.253-.31 6.385-.034 9.5.5 6.23 1.1 12.1 3.836 17.194 7.328 2.565 1.72 4.992 3.527 7.436 5.213 2.564 1.772 4.974 3.75 7.245 5.832 2.272 2.1 4.407 4.302 6.472 6.538l3.063 3.372a53.6 53.6 0 0 1 2.961 3.63c2.513 3.373 4.664 6.865 6.97 10.151.568.809 1.188 1.635 1.79 2.546.585.878 1.153 1.79 1.67 2.701 1.05 1.824 2.013 3.665 2.96 5.472.482.946.929 1.72 1.446 2.804.464 1.015.826 2.03 1.17 2.976.344.964.671 1.824 1.102 2.701.447.964.86 1.945 1.239 2.908 1.532 3.888 2.702 7.776 4.457 11.269a26.362 26.362 0 0 0 7.246 8.86 37.094 37.094 0 0 0 4.837 3.235c1.514.808 3.184 1.049 5.215 1.066 4.509.207 8.381 1.824 12.047 1.755h12.289c8.158.052 16.42-.275 24.75.826 4.027.637 8.003.826 12.168 1.256 2.065.224 4.165.499 6.248.981 2.134.499 3.993 1.066 6.006 1.582 7.883 2.117 15.972 4.302 23.511 8.069 7.573 3.82 13.992 8.947 20.825 13.403 7.814 5.333 15.335 10.959 23.545 15.208 2.065 1.067 4.182 2.065 6.299 3.097 2.169 1.05 4.183 2.151 6.3 3.028a56.563 56.563 0 0 0 6.454 2.34l6.781 2.237c4.578 1.393 8.846 3.423 13.218 4.043.499.069 1.188.155 1.824.292.637.138 1.257.293 1.876.482 1.222.378 2.358.86 3.46 1.325l3.201 1.393c1.067.448 2.117.86 3.047 1.05l.826.137c.309.052.619.121.929.19.62.137 1.222.292 1.824.481 1.205.362 2.358.792 3.477 1.273 1.119.465 2.203.964 3.27 1.463 1.119.533 1.962.86 3.098 1.204 1.085.327 2.238.62 3.425 1.015.585.189 1.188.413 1.79.688.293.121.603.293.878.413l.757.362c2.031.946 4.217 1.686 6.454 2.477 5.405 1.996 10.534 4.181 15.817 6.263 2.668 1.066 5.112 2.098 7.797 2.959 2.651.877 5.37 1.686 8.072 2.701a45.305 45.305 0 0 1 4.027 1.703c.31.172.775.224 1.463.258.345.017.723.035 1.136.086.207.017.431.052.654.103l.534.104c2.771.55 5.49 1.101 8.192 1.359 1.343.137 2.703.189 4.028.155l.964-.052c.223 0 .464-.069.705-.138.482-.137 1.033-.43 1.756-.774.361-.155.757-.327 1.187-.447.207-.069.465-.121.672-.155l.447-.103c.62-.121 1.205-.327 1.79-.534 1.17-.447 2.255-1.118 3.236-1.892 1.979-1.566 3.459-3.751 4.285-6.125.431-1.187.637-2.443.689-3.699.051-1.29 0-2.77 0-4.146v-8.413l-.224-8.482c-.069-2.804-.172-5.574-.482-8.31a45.047 45.047 0 0 0-.602-4.043 60.513 60.513 0 0 1-.74-4.267c-.723-5.797-.379-11.527-.345-17.101 0-1.393 0-2.787-.051-4.163l-.035-1.033-.068-1.204c.034-.31-.155-.654.086-.912l.43-.705c.138-.241.258-.499.361-.757.861-2.116.345-4.903.603-7.983.051-.757.241-1.617.43-2.34.155-.533.224-1.135.258-1.772.069-1.29-.017-2.735.155-4.301.069-.757.31-1.686.465-2.271a36.9 36.9 0 0 0 .464-1.996l.844-4.129c.292-1.393.602-2.821 1.015-4.232.207-.706.448-1.411.689-2.116.189-.534.327-1.136.43-1.755.206-1.273.258-2.684.465-4.181.103-.74.258-1.514.516-2.288l.637-1.996c.792-2.649 1.48-5.436 2.547-8.189.396-.981.465-2.357.706-3.837.103-.722.327-1.617.568-2.288l.671-1.978c1.738-5.299 3.184-10.753 4.836-16.173 1.635-5.47 3.821-10.684 4.905-16.034 1.016-5.66 3.098-11.114 5.112-16.345 2.048-5.212 3.718-10.563 5.663-15.914 1.118-3.13 2.461-6.314 3.82-9.29 1.326-3.011 2.548-6.09 3.839-9.17 2.512-6.177 5.576-12.267 9.276-17.859 3.597-5.574 7.263-11.182 11.463-16.413 2.082-2.615 4.337-5.178 6.798-7.484 2.462-2.322 5.06-4.438 7.728-6.468a460.531 460.531 0 0 1 8.038-5.953c2.788-1.944 5.765-3.579 8.846-4.99 3.064-1.41 6.248-2.546 9.363-3.664 3.132-1.118 6.454-2.22 9.983-2.323.447-.017.877 0 1.325 0 .396.017 1.015.07 1.067.052.327 0 .912-.482 1.841-.998.465-.24 1.102-.447 1.722-.413.688.035 1.032.172 1.428.241l2.427.516c3.236.671 6.574 1.325 9.793 2.615 3.218 1.239 6.23 3.407 8.313 6.194 2.065 2.632 4.062 5.47 5.353 8.688 1.549 3.974 2.409 7.983 3.562 11.889.534 1.995 1.274 3.75 1.859 5.9.516 2.082.723 4.199.912 6.246.19 2.047.362 4.06.792 5.97.189.946.551 1.84.826 2.942.276 1.05.465 2.099.603 3.131.292 2.082.447 4.112.808 6.056.19.963.431 1.91.758 2.822.155.43.361.929.533 1.48.172.532.31 1.066.413 1.582.431 2.116.517 4.215.723 6.228.155 2.03.568 3.888 1.136 5.85l.878 2.959.413 1.514.189.774c.052.206.104.396.19.602.327.877.843 1.79 1.136 3.01.206 1.033.413 1.962.705 2.926 1.102 3.836 2.978 7.45 4.819 11.131l5.405 11.097c1.841 3.682 3.493 7.432 5.559 10.907a89.077 89.077 0 0 0 3.27 5.145 90.234 90.234 0 0 1 3.408 5.195c2.117 3.579 4.182 7.054 6.247 10.667 2.014 3.596 3.856 7.45 4.819 11.579 1.016 4.06 1.498 8.292 1.188 12.508-.293 4.215-1.394 8.361-3.115 12.198-1.704 3.853-3.993 7.38-6.403 10.735-2.461 3.321-4.802 6.675-7.521 9.858-5.576 6.538-11.962 12.25-18.347 17.841l-9.587 8.413-4.784 4.216a77.325 77.325 0 0 0-4.613 4.266c-2.995 2.959-5.834 6.125-8.864 9.153-3.08 2.994-6.144 5.85-9.018 8.946-2.909 3.063-5.508 6.314-7.952 9.773a152.946 152.946 0 0 0-6.97 10.563c-2.134 3.63-4.458 7.243-6.678 10.873-2.203 3.631-4.527 7.243-7.074 10.667-5.112 6.865-10.671 13.334-16.591 19.458l-9.002 9.084c-1.48 1.36-2.564 3.011-3.442 4.835-.43.912-.809 1.858-1.136 2.821a23.915 23.915 0 0 1-1.256 3.063c-.964 1.978-2.1 3.802-3.167 5.609-1.102 1.823-1.945 3.578-2.857 5.574-1.842 3.871-3.925 7.639-6.3 11.217a80.579 80.579 0 0 1-3.184 4.473 150.733 150.733 0 0 0-3.287 4.284c-2.151 2.873-4.372 5.901-7.435 8.241-5.783 4.301-11.446 8.792-17.642 12.663-3.08 1.944-6.316 3.699-9.69 5.161l-9.948 4.25a213.304 213.304 0 0 1-10.12 3.974l-10.12 3.802a1692.93 1692.93 0 0 0-20.188 7.69l-10.069 3.889a154.369 154.369 0 0 0-9.81 4.301c-6.454 3.079-12.685 6.624-18.829 10.34-3.064 1.858-6.059 3.802-8.95 5.884-2.874 2.081-5.731 4.301-8.52 6.537a234.124 234.124 0 0 0-10.877 9.325c-3.528 3.235-7.074 6.469-10.309 9.91-1.636 1.72-3.098 3.51-4.665 5.402l-4.612 5.506c-1.498 1.841-2.943 3.716-4.251 5.66-1.274 1.927-2.53 4.043-3.77 6.056-1.239 2.047-2.426 4.095-3.459 6.194-1.05 2.15-2.186 4.318-3.287 6.451-1.102 2.134-2.186 4.25-3.15 6.4-.964 2.116-1.756 4.387-2.633 6.641l-5.129 13.454c-1.687 4.456-3.219 9.015-4.854 13.557-1.635 4.542-3.373 9.102-5.507 13.489-2.1 4.387-4.458 8.619-6.833 12.8-1.222 2.116-2.324 4.146-3.614 6.297-1.326 2.133-2.84 4.06-4.303 5.97-1.498 1.909-2.84 3.716-4.114 5.78-1.359 2.082-2.857 4.009-4.389 5.902-3.098 3.767-6.333 7.26-9.19 11.045-2.978 3.871-6.265 7.484-9.639 10.942-3.356 3.475-6.884 6.796-10.188 10.185-3.305 3.424-6.489 7.002-9.742 10.564-2.771 3.028-5.594 6.038-8.571 8.929l-8.623 8.705-8.606 8.706c-2.908 2.873-5.559 5.987-8.347 8.963-10.877 12.164-22.822 23.605-30.842 37.678-4.217 6.916-7.762 14.211-10.826 21.695-3.029 7.467-5.301 15.226-5.817 23.14l-.052.912v.378l.034.431.052.877c.017.258.017.516 0 .74 0 .034-.034 0-.086.051-.086.052-.207.207-.138.293a.674.674 0 0 0 .104.172c.051.051.086.12.378.172l1.515.327c.224.051.671.172.619.413l-.155.069Z%27/%3E%3Cpath d=%27M890.436 39.1c.774.137 1.067.705 1.29 1.48a5.04 5.04 0 0 1 .087 1.774c-.035.293-.104.568-.173.861 0 .19-.12.207-.223.241-.104.052-.19.086-.276.12a8.83 8.83 0 0 1-2.133.724l-1.825.172-.894.069-.448.034-2.185.138-2.616.12-5.197.19c-3.459.12-6.883.241-10.291.5-1.703.137-3.39.292-5.076.516-1.687.224-3.476.448-5.214.603-7.004.637-13.956.637-20.823.93-1.755.069-3.355.138-4.99.396l-5.094.878c-1.755.293-3.596.483-5.489.43a20.623 20.623 0 0 1-1.429-.103l-.705-.103h-.172c.499-3.03.137-.81.258-1.446 0 .069.052.155.103.258.017 0 .929 1.808.482 1.068l-.12.086c-.087.051-.173.103-.259.137-.361.19-.774.19-1.17.173h-.654c-.378 0-.757.051-1.153.086-1.548.19-3.183.637-4.921 1.016-.878.19-1.79.361-2.736.465-.912.12-2.048.103-2.719.103-1.566.052-3.201.327-4.905.62l-1.308.224c-.533.086-1.049.103-1.531.12l-2.599-.051c-.774 0-1.342.12-1.721.31-.877.465-1.772.86-2.701 1.154-1.842.568-3.683.81-5.404 1.033-1.721.207-3.355.413-4.853.827l-1.273.378c-.465.121-.946.224-1.411.293-.929.155-1.841.241-2.736.327-1.773.138-3.459.207-4.956.517-.757.155-1.343.379-2.323.689-.895.276-1.807.482-2.719.654-3.683.655-7.211.465-10.618.586-6.883.19-13.853.602-20.891.224-3.528-.19-7.056-.586-10.549-1.31-.878-.171-1.738-.395-2.616-.585a62.127 62.127 0 0 0-2.443-.55c-1.652-.328-3.339-.569-5.059-.827-1.721-.259-3.477-.551-5.232-.965l-5.076-1.274c-3.373-.861-6.763-1.791-10.102-3.014-3.338-1.257-6.539-2.652-9.688-4.374-3.132-1.705-6.144-3.823-8.742-6.355-5.214-4.925-9.207-11.245-11.478-18.03-1.17-3.341-2.134-6.768-2.771-10.281-.688-3.496-.774-7.216-.826-10.609-.206-10.057-.292-20.131.035-30.223.086-2.514.189-5.046.344-7.56l.12-1.894.052-.947.034-.465v-.259c-.086-.585-.034-1.205.293-1.705l.344-.55c.069-.104.121-.225.172-.328.241-.448.413-.947.568-1.447.62-2.066.585-4.58 1.119-7.284.137-.672.309-1.36.55-2.05.241-.688.379-1.084.551-1.67.293-1.102.499-2.273.671-3.479.344-2.428.568-5.045 1.394-7.68.224-.706.396-1.171.551-1.757.155-.55.292-1.136.413-1.705.241-1.17.43-2.376.619-3.616.189-1.24.379-2.514.637-3.789.12-.637.275-1.291.447-1.929l.465-1.79a78.47 78.47 0 0 0 1.411-7.216c.74-4.84.86-9.8 1.015-14.81.121-4.977.035-9.92-.671-14.742a49.03 49.03 0 0 0-1.549-7.095l-2.168-7.181c-.74-2.36-1.549-4.667-2.564-6.837a30.81 30.81 0 0 0-1.686-3.152l-1.997-3.186c-1.307-2.135-2.598-4.184-4.13-5.924a16.555 16.555 0 0 0-2.478-2.324 11.849 11.849 0 0 0-1.393-.896 21.268 21.268 0 0 1-1.721-1.05c-2.22-1.533-4.01-3.152-5.937-3.772-.43-.155-1.033-.275-1.635-.413a64.437 64.437 0 0 0-1.773-.345 42.003 42.003 0 0 0-3.562-.447c-2.374-.173-4.766-.104-7.072.31-2.289.378-4.578 1.171-6.849 2.066-4.509 1.808-8.725 4.271-12.58 7.267-1.962 1.516-3.923 3.118-5.971 4.633-1.015.758-2.151 1.515-3.149 2.187a44.232 44.232 0 0 0-2.926 2.153c-3.854 3.031-7.468 6.578-11.719 9.592-1.118.775-2.013 1.36-2.96 2.153-.946.757-1.875 1.567-2.822 2.376a66.96 66.96 0 0 1-6.04 4.753c-2.065 1.481-4.113 2.876-5.988 4.392-.895.723-1.945 1.636-2.978 2.393a55.533 55.533 0 0 1-3.2 2.205c-2.151 1.395-4.337 2.652-6.454 3.943l-6.367 3.996c-4.285 2.634-8.587 5.183-12.665 7.973-2.082 1.481-4.337 2.773-6.402 4.064a36.876 36.876 0 0 0-2.994 2.05l-2.994 2.256c-1.979 1.515-3.907 3.048-5.748 4.666-.929.81-1.772 1.654-2.719 2.498l-2.839 2.514-2.874 2.549c-.946.809-1.824 1.584-2.512 2.41-.31.362-.723.93-1.119 1.447l-1.222 1.499c-.826.981-1.669 1.945-2.512 2.893-1.704 1.877-3.425 3.702-5.025 5.562-.809.93-1.583 1.86-2.34 2.824l-2.238 3.014-4.491 6.027-2.237 3.014a93.684 93.684 0 0 0-2.1 2.997c-2.701 4.098-5.076 8.541-7.898 12.812-5.679 8.25-10.17 16.98-14.61 26.073-2.306 4.495-4.698 8.87-6.608 13.381a58.296 58.296 0 0 0-1.343 3.41l-.602 1.722c-.206.62-.43 1.24-.654 1.86-.929 2.445-2.013 4.753-3.046 7.026a104.217 104.217 0 0 0-2.891 6.837l-2.736 6.992c-1.79 4.667-3.51 9.35-5.042 14.07a172.883 172.883 0 0 0-1.325 4.27 76.853 76.853 0 0 1-1.446 4.409c-1.049 2.876-2.133 5.614-2.805 8.352-.172.655-.309 1.464-.395 1.98v.156l.034.396c0 .19.017.379 0 .55-.017.363-.103.741-.275 1.069-.086.155-.19.344-.276.482l-.12.207c-.654 1.153-1.153 2.428-1.583 3.788-.43 1.36-.775 2.79-1.153 4.271l-.62 2.239c-.155.534-.258 1.223-.413 1.998-.137.757-.361 1.756-.791 2.634l-.912 1.998a51.045 51.045 0 0 0-1.584 4.064 44.118 44.118 0 0 0-1.204 4.15c-.155.655-.31 1.481-.534 2.274a38.72 38.72 0 0 1-.722 2.273l-3.149 8.49c-1.067 2.824-2.152 5.614-3.115 8.404-1.79 5.821-4.56 11.383-6.626 16.825l-.757 2.101a43.236 43.236 0 0 1-.894 2.222c-.637 1.446-1.36 2.807-2.083 4.15-.722 1.343-1.428 2.635-2.082 3.943l-1.962 4.047c-2.667 5.425-5.851 10.902-10.136 15.465-2.116 2.291-4.474 4.426-7.193 6.148a22.946 22.946 0 0 1-4.371 2.17 23.19 23.19 0 0 1-2.374.706c-.758.172-1.515.344-2.272.482-6.092 1.171-12.562 1.206-18.671-.465-3.08-.826-5.903-2.135-8.622-3.186-.688-.258-1.359-.516-2.03-.74-.706-.241-1.48-.5-2.203-.792a40.045 40.045 0 0 1-4.285-1.964c-2.788-1.429-5.386-3.444-7.64-5.441-2.306-2.015-4.492-4.134-6.626-6.269l-6.315-6.389c-2.117-2.118-4.44-4.34-6.023-7.371-2.685-5.252-5.92-10.298-8.811-15.671-1.445-2.721-2.702-5.356-4.182-7.939a122.43 122.43 0 0 0-4.611-7.595c-3.27-4.942-6.884-9.643-10.945-13.897a81.87 81.87 0 0 0-6.419-6.045c-2.254-1.928-4.56-3.564-7.107-4.977-5.386-2.996-11.426-4.873-17.466-6.974-1.515-.5-3.064-1.154-4.406-1.516-1.428-.379-2.925-.62-4.491-.844-1.566-.224-3.184-.43-4.836-.775-1.738-.396-3.046-.809-4.595-1.05-3.011-.534-6.16-.723-9.361-.999-3.252-.31-6.281-.62-9.482-.792-6.298-.345-12.803-.5-19.101-1.102-3.063-.19-6.35-.035-9.723-.637-.86-.138-1.687-.362-2.375-.5-.74-.138-1.48-.258-2.237-.344-1.514-.172-3.097-.276-4.698-.38-1.6-.12-3.252-.257-4.922-.567a26.133 26.133 0 0 1-2.495-.586 37.84 37.84 0 0 0-2.237-.637c-2.942-.74-6.092-1.068-9.327-1.688-6.591-1.222-12.493-4.253-18.189-7.009-5.834-2.841-11.375-6.268-16.538-10.16-2.701-2.015-5.231-4.202-7.761-6.338a195.25 195.25 0 0 1-7.434-6.682c-4.818-4.667-9.361-9.385-13.99-14.155-4.595-4.788-9.103-9.679-13.406-14.742-4.319-5.08-8.346-10.401-12.2-15.792a432.382 432.382 0 0 1-5.68-8.163c-1.91-2.738-3.665-5.596-5.437-8.352-1.79-2.79-3.597-5.338-5.748-7.87-2.1-2.566-4.13-5.149-6.28-7.594-2.152-2.446-4.423-4.736-6.919-6.734-2.564-2.015-5.18-4.03-7.847-5.89-2.667-1.86-5.42-3.599-8.277-5.08-1.428-.723-2.908-1.48-4.285-1.912-1.411-.43-2.805-.55-4.078-.172-1.257.397-2.685 1.189-3.786 2.067-.568.448-1.084.947-1.48 1.464a5.014 5.014 0 0 0-.5.792c-.137.31-.171.413-.292.895-.877 3.272-2.15 6.217-2.323 9.162-.034.723-.034 1.464.069 2.17.103.74.224 1.653.292 2.463l.396 4.856c.138 1.602.43 3.014.723 4.736.258 1.653.413 3.306.534 4.96.206 3.306.189 6.56.258 9.781.034 1.619.086 3.22.172 4.805.034.81.12 1.567.189 2.394.069.86.103 1.705.086 2.548C9-3.506 8.501-.303 8.294 2.9c-.24 3.22-.396 6.492-.895 9.782a40.961 40.961 0 0 1-1.067 4.908c-.464 1.532-.808 3.048-1.17 4.65-.361 1.584-.705 3.185-1.187 4.787-.448 1.601-1.153 3.238-1.807 4.667-2.616 5.924-5.3 11.814-7.864 17.79-1.308 2.979-2.65 5.958-4.113 8.868-1.515 2.945-3.046 5.718-4.371 8.663-1.36 2.927-2.599 5.906-3.786 8.903-1.153 3.03-2.392 6.027-3.287 9.076-1.583 5.338-2.392 10.9-2.684 16.48-.155 2.79-.19 5.614-.12 8.404.085 2.738.619 5.477 1.118 8.266.24 1.395.481 2.825.636 4.254.155 1.481.155 2.859.379 4.202.378 2.721 1.136 5.442 1.635 8.301.55 2.876.464 5.786 1.101 8.335.172.671.361 1.188.654 1.894.275.689.516 1.378.723 2.084.413 1.395.723 2.807.998 4.219.275 1.395.533 2.773.843 4.133.31 1.292.74 2.79.878 4.254.155 1.446.224 2.858.378 4.219.086.672.19 1.343.345 1.963.154.62.395 1.171.688 1.929.998 2.859 1.153 5.786 1.531 8.524.19 1.378.465 2.704.895 3.944.55 1.343.826 2.979.86 4.426.052 2.945-.068 5.666 0 8.507.052 2.825.138 5.649.138 8.508 0 2.858-.103 5.717-.464 8.576-.327 2.841-1.016 5.734-1.807 8.421-1.29 4.615-2.461 9.385-4.595 13.863-2.22 4.305-4.147 8.679-6.522 12.968-1.187 2.135-2.495 4.219-3.975 6.199l-4.405 5.752a382.202 382.202 0 0 1-9.07 11.297c-3.08 3.72-6.315 7.354-9.533 10.901-3.2 3.582-6.35 7.199-9.361 10.936a156.014 156.014 0 0 0-4.388 5.683 112.05 112.05 0 0 1-4.578 5.683c-3.115 3.702-6.556 7.181-9.62 10.763-2.082 2.445-4.13 5.011-6.453 7.388-1.17 1.205-2.426 2.273-3.579 3.375l-3.528 3.324c-4.663 4.477-9.516 8.989-14.988 12.64-5.404 3.72-11.048 6.958-16.865 9.989a70.985 70.985 0 0 1-9.12 3.771 92.999 92.999 0 0 1-4.715 1.447c-1.618.447-3.132.792-4.629 1.308-2.857.913-5.817 2.136-9.155 2.325-2.926.035-5.713 1.068-8.931 1.55-.809.104-1.618.19-2.444.19-.413 0-.826 0-1.256-.069l-1.136-.138c-1.394-.138-2.874-.034-4.44 0-.774.017-1.583.017-2.409-.034-.757-.052-1.48-.104-2.237-.121a133.895 133.895 0 0 0-4.526 0c-3.046.069-6.161.155-9.31-.189a30.499 30.499 0 0 1-4.663-.879c-1.411-.379-2.891-.637-4.371-.826-2.977-.414-6.058-.62-9.138-1.154l-9.017-1.86-9.017-1.86-4.509-.93c-1.497-.362-2.994-.74-4.474-1.154-2.977-.826-5.903-1.722-8.828-2.6l-4.388-1.292c-1.446-.396-3.012-.861-4.457-1.412-2.926-1.085-5.714-2.445-8.484-3.702-2.736-1.258-5.627-2.377-8.398-3.858a27.57 27.57 0 0 1-3.992-2.566 72.279 72.279 0 0 1-3.631-2.928 76.352 76.352 0 0 1-6.625-6.544 80.305 80.305 0 0 1-3.958-4.77c-1.274-1.601-2.496-3.427-3.408-5.338-1.876-3.824-2.805-8.008-3.149-12.176-.258-4.099-.619-8.163-.551-12.33.035-2.084.172-4.168.5-6.252.154-1.033.378-2.066.619-3.099l.413-1.516c.12-.43.224-.878.293-1.343.309-1.877.223-3.961.774-6.183.12-.533.361-1.136.568-1.601l.568-1.378c.378-.93.722-1.877 1.049-2.824 1.36-3.789 2.375-7.75 3.872-11.642 1.463-3.857 3.132-7.56 4.251-11.383.998-4.012 2.77-7.87 4.388-11.572.637-1.464 1.239-2.911 1.755-4.375.517-1.463 1.067-3.065 1.704-4.529 1.239-2.996 2.633-5.89 3.992-8.783 1.36-2.893 2.65-5.769 3.717-8.731 1.084-3.031 2.306-6.062 3.769-8.972.74-1.481 1.566-2.876 2.306-4.237a80.147 80.147 0 0 0 2.134-4.219 59.483 59.483 0 0 0 1.807-4.339l.206-.552c.086-.223.172-.447.275-.671.207-.431.448-.827.672-1.188.481-.724.946-1.326 1.273-1.929a4.83 4.83 0 0 0 .379-.879l.327-1.136c.24-.792.499-1.584.791-2.359a52.51 52.51 0 0 1 1.945-4.495c1.411-2.928 2.925-5.718 4.181-8.594.654-1.463 1.119-2.807 1.687-4.425.585-1.567 1.291-3.049 2.03-4.495 1.498-2.893 3.046-5.58 4.285-8.507 2.599-5.804 5.094-11.711 8.002-17.446 2.771-5.717 5.559-11.434 8.329-17.152 2.788-5.803 6.161-11.228 9.344-16.67 3.012-5.356 6.505-10.54 10.239-15.413a292.427 292.427 0 0 1 5.714-7.233c.963-1.17 1.893-2.41 3.046-3.565 1.118-1.119 2.306-2.1 3.407-3.117a19.2 19.2 0 0 0 1.566-1.567 72.412 72.412 0 0 1 1.583-1.705 59.153 59.153 0 0 1 3.407-3.186c2.323-2.032 4.733-3.909 6.97-5.924 4.405-4.322 9.826-7.508 13.302-12.296a38.057 38.057 0 0 0 4.422-7.766c.568-1.378 1.119-2.79 1.446-4.185.344-1.412.482-2.876.482-4.34s-.172-2.928-.465-4.374c-.292-1.412-.791-2.825-1.325-4.237-.533-1.412-1.118-2.841-1.618-4.322-.481-1.498-.929-2.876-1.479-4.305-1.067-2.825-2.341-5.58-3.683-8.318l-2.031-4.082c-.688-1.326-1.462-2.635-2.237-3.978-.757-1.326-1.531-2.686-2.185-4.133l-2.014-4.116-4.043-8.232c-1.635-3.461-3.494-6.853-5.232-10.315a195.417 195.417 0 0 1-4.853-10.557 154.354 154.354 0 0 1-7.417-21.991c-1.015-3.703-2.133-7.405-3.063-11.177a80.638 80.638 0 0 1-1.204-5.717c-.19-1.033-.19-2.067-.241-2.98-.035-.464-.069-.895-.155-1.291a2.705 2.705 0 0 0-.155-.568l-.241-.69c-1.291-3.736-1.996-7.594-2.719-11.365l-1.118-5.683a66.41 66.41 0 0 1-.723-5.821c-.671-7.767-.379-15.465-.465-23.197v-5.786c.017-1.946-.103-3.823.086-5.873.19-1.997.568-3.892.826-5.769.293-1.997.861-3.943 1.532-5.786.671-1.843 1.428-3.634 2.117-5.408l.636-1.704.189-.534.104-.259.051-.137H-191.961l.981-.035c.619-.017 1.256-.052 1.841-.207.843-.223 1.6-.103 2.375.19.688.258 1.428.413 2.134.637.223.069.619.138.654.448.12.878-1.257.981-1.979 1.171-.861.224-1.756.413-2.633.534-.912.12-1.859.189-2.788.172l-.929-.035h-4.354c-.034 0-.034.035-.052.052l-.877 2.222c-1.377 3.41-2.668 6.475-3.063 9.936-.293 1.809-.603 3.548-.74 5.236-.035.413-.052.826-.069 1.24v14.861c0 3.6-.069 7.216 0 10.798.103 3.582.292 7.147.74 10.643.223 1.774.55 3.392.929 5.235l1.015 5.321c.344 1.757.706 3.496 1.153 5.184.224.844.465 1.688.74 2.497l.448 1.326c.172.569.258 1.12.309 1.636.104 1.033.086 1.929.173 2.704.068.689.275 1.688.43 2.514.344 1.74.74 3.462 1.187 5.184.878 3.461 1.927 6.923 2.857 10.436a151.06 151.06 0 0 0 6.814 20.355 185.305 185.305 0 0 0 4.406 9.8c.774 1.618 1.583 3.22 2.409 4.804a105.744 105.744 0 0 1 2.443 4.84l6.522 13.363c.999 2.204 2.152 4.236 3.408 6.406a61.402 61.402 0 0 1 1.807 3.324l1.652 3.323c1.084 2.24 2.151 4.495 3.097 6.82a67.34 67.34 0 0 1 1.342 3.53l.603 1.809c.189.568.361 1.119.568 1.687.808 2.256 1.858 4.53 2.512 7.113.62 2.566.861 5.2.62 7.853a20.601 20.601 0 0 1-.775 3.926 39.224 39.224 0 0 1-1.342 3.616 38.69 38.69 0 0 1-3.683 6.734c-1.394 2.118-3.183 4.15-5.059 5.838-1.876 1.722-3.855 3.255-5.713 4.805a59.845 59.845 0 0 0-2.702 2.376 93.083 93.083 0 0 1-2.805 2.497c-1.893 1.619-3.803 3.169-5.61 4.77-.895.81-1.79 1.62-2.616 2.463-.843.827-1.566 1.722-2.529 2.704-1.842 1.843-3.803 3.306-5.249 5.028-3.596 4.392-7.21 8.887-10.497 13.52a120.825 120.825 0 0 0-4.698 7.111l-4.354 7.423c-2.925 4.942-5.782 9.868-8.157 15.034l-7.589 15.551c-2.581 5.08-4.835 10.35-7.193 15.602-1.135 2.618-2.443 5.339-3.82 7.836-1.359 2.531-2.65 4.994-3.51 7.629-1.945 5.666-5.163 10.539-7.211 15.723-.533 1.326-.895 2.531-1.325 4.03-.585 1.739-1.738 2.875-2.289 3.926a4.734 4.734 0 0 0-.361.792l-.379 1.033a42.968 42.968 0 0 1-.825 2.05 60.25 60.25 0 0 1-1.859 3.978 111.616 111.616 0 0 1-2.151 4.012 52.63 52.63 0 0 0-2.031 3.892c-1.256 2.67-2.288 5.391-3.321 8.232-2.168 5.718-5.059 11.005-7.314 16.446a79.444 79.444 0 0 0-1.566 4.134 57.63 57.63 0 0 1-1.669 4.27c-1.187 2.79-2.443 5.477-3.424 8.215-.516 1.395-.861 2.704-1.291 4.236-.447 1.481-.963 2.911-1.497 4.34-1.084 2.842-2.254 5.58-3.252 8.352-.964 2.739-1.79 5.666-2.754 8.525-.482 1.429-.981 2.876-1.548 4.288l-.861 2.084a8.77 8.77 0 0 0-.482 1.877c-.206 1.36-.241 2.859-.447 4.443-.086.775-.293 1.67-.517 2.394a28.748 28.748 0 0 0-.533 2.083c-.619 2.807-.826 5.701-.826 8.628 0 2.928.207 5.89.396 8.886.155 2.997.464 5.821 1.204 8.611.723 2.773 1.859 5.407 3.408 7.767 1.6 2.325 3.527 4.667 5.472 6.854 3.528 3.926 7.537 7.594 11.822 10.47 2.169 1.361 4.595 2.429 7.073 3.496 2.512 1.051 4.99 2.239 7.417 3.324 2.443 1.085 4.852 2.049 7.399 2.721 2.633.74 5.215 1.533 7.813 2.308 5.18 1.584 10.291 2.979 15.608 3.943l15.832 3.221c2.633.602 5.214.792 7.933 1.102 1.36.155 2.719.31 4.096.534 1.342.206 2.856.585 4.061.878 4.973 1.205 10.291.654 15.814.689.689 0 1.394.017 2.083.051l2.013.121c1.239.052 2.564-.052 3.975-.086.706 0 1.446 0 2.186.051.843.069 1.342.19 1.944.19 1.171.052 2.392-.103 3.666-.362l3.958-.861a36.262 36.262 0 0 1 2.133-.361c.689-.087 1.584-.121 2.1-.155 2.392-.173 4.853-1.068 7.434-1.946 1.273-.431 2.667-.879 3.992-1.206a74.388 74.388 0 0 0 3.838-1.085 75.132 75.132 0 0 0 7.451-2.704c2.444-1.033 4.75-2.221 7.125-3.53a176.229 176.229 0 0 0 6.969-4.012c4.56-2.808 9-5.77 13.01-9.231 4.044-3.462 7.847-7.285 11.873-10.987 4.062-3.444 7.142-7.681 10.842-11.848 3.7-4.03 7.33-7.939 10.669-12.107 1.652-2.049 3.218-4.288 4.939-6.423a184.306 184.306 0 0 1 5.197-6.321c3.39-4.012 6.97-7.87 10.394-11.744 3.424-3.892 6.728-7.905 9.98-11.969l4.82-6.148c1.565-2.067 3.234-4.151 4.628-6.183 2.805-4.184 4.939-8.886 7.262-13.604 1.222-2.411 2.323-4.53 3.15-6.941.86-2.376 1.548-4.856 2.236-7.37l1.067-3.789c.327-1.205.637-2.411.86-3.651.465-2.462.706-4.994.81-7.525.223-5.098-.104-10.299-.086-15.603 0-2.669.223-5.27-.31-7.353a6.134 6.134 0 0 0-.241-.741c-.12-.344-.258-.689-.361-1.033a22.645 22.645 0 0 1-.517-2.067c-.275-1.377-.43-2.721-.585-4.012-.155-1.292-.31-2.532-.55-3.72a18.05 18.05 0 0 0-.448-1.722c-.172-.568-.396-1.016-.671-1.843-.895-2.979-.706-5.666-1.084-8.025-.086-.62-.207-1.102-.362-1.722a47.091 47.091 0 0 1-.464-1.98l-.774-3.875c-.259-1.257-.534-2.48-.878-3.651-.327-1.223-.809-2.118-1.308-3.703-.809-2.876-.723-5.579-1.101-7.973-.362-2.445-1.033-4.96-1.515-7.629a35.06 35.06 0 0 1-.516-4.099 38.729 38.729 0 0 0-.379-3.737c-.378-2.497-.946-5.08-1.273-7.767a36.184 36.184 0 0 1-.293-4.098 153.344 153.344 0 0 1 0-3.978c.052-2.652.19-5.304.448-7.956.533-5.305 1.583-10.592 3.355-15.672 1.807-4.994 3.7-9.85 5.886-14.69a113.984 113.984 0 0 1 3.51-7.13c1.205-2.255 2.323-4.58 3.408-6.94l8.535-19.408 2.1-4.804c.602-1.516 1.032-3.152 1.428-4.84.396-1.687.74-3.444 1.204-5.217l.706-2.55c.206-.809.396-1.635.533-2.462.603-3.34.758-6.82.999-10.367.206-3.6.757-7.112.722-10.436 0-.861-.069-1.602-.155-2.514a72.235 72.235 0 0 1-.189-2.721 113.28 113.28 0 0 1-.155-5.373c-.051-3.548-.086-7.044-.447-10.454a42.529 42.529 0 0 0-.344-2.531l-.465-2.635c-.293-1.843-.413-3.65-.55-5.407a56.608 56.608 0 0 0-.242-2.566l-.172-1.292a14.64 14.64 0 0 1-.12-1.498c-.052-2.015.31-3.944.809-5.735.499-1.79 1.084-3.461 1.531-5.08l.155-.603c.086-.293.172-.62.31-.878.24-.569.533-1.033.86-1.481.654-.879 1.411-1.584 2.203-2.204a16.488 16.488 0 0 1 3.838-2.205c.498-.19 1.032-.379 1.565-.482 2.169-.465 4.337-.017 6.144.672 6.9 2.876 12.734 7.095 18.396 11.417 2.84 2.101 5.678 4.616 8.105 7.268 2.46 2.652 4.698 5.441 6.935 8.18l1.927 2.359c.671.81 1.308 1.653 1.928 2.497 1.221 1.688 2.357 3.427 3.459 5.15a210.27 210.27 0 0 0 6.71 10.125c4.613 6.665 9.38 13.226 14.542 19.426 5.18 6.2 10.704 12.14 16.348 17.979l8.536 8.697c2.822 2.875 5.764 5.614 8.81 8.283 3.666 3.186 7.331 6.355 11.203 9.144a96.081 96.081 0 0 0 12.218 7.56c4.285 2.119 8.708 4.375 13.096 6.028a40.436 40.436 0 0 0 6.78 1.894c2.323.448 4.749.758 7.21 1.24 1.222.241 2.478.534 3.7.93 1.136.362 2.185.62 3.338.81 2.272.378 4.681.482 7.142.671 1.239.103 2.495.241 3.769.465.619.104 1.325.276 1.858.396.551.138 1.119.224 1.669.31 2.272.345 4.647.327 7.125.413 2.547.087 4.921.397 7.331.517l7.279.38c4.852.206 9.809.464 14.644 1.015 2.392.224 4.836.379 7.314.654a46.08 46.08 0 0 1 3.717.552c.619.12 1.239.258 1.858.396l1.773.465c2.237.533 4.629.757 7.107 1.153 1.239.207 2.512.465 3.769.862 1.307.43 2.305.843 3.493 1.24 4.56 1.601 9.258 3.082 13.818 5.097 2.272.999 4.526 2.153 6.66 3.496 2.151 1.343 4.147 2.91 6.006 4.512 7.572 6.458 13.801 14.293 19.015 22.628 2.616 4.151 4.956 8.594 7.124 12.882 2.272 4.254 4.836 8.387 7.211 12.675.705 1.24 1.394 2.6 2.03 3.788.62 1.137 1.446 2.205 2.358 3.221 1.824 2.032 3.992 4.03 5.971 6.096 4.01 4.099 8.002 8.197 12.39 11.659 2.169 1.67 4.595 3.048 7.125 4.15 1.29.569 2.529.982 3.94 1.481 1.394.5 2.719 1.051 4.044 1.602 2.651 1.119 5.197 2.049 7.934 2.566 2.701.551 5.489.775 8.26.671 2.787-.069 5.558-.447 8.294-1.05 2.685-.534 5.146-1.671 7.4-3.238 2.254-1.55 4.302-3.496 6.178-5.562a47.018 47.018 0 0 0 5.059-6.716c1.497-2.377 2.839-4.891 4.113-7.44 1.239-2.532 2.495-5.218 3.906-7.715 1.377-2.532 2.616-4.96 3.493-7.681.999-2.738 2.151-5.39 3.287-8.025.981-2.307 1.945-4.598 2.754-6.94a159.37 159.37 0 0 1 2.529-7.13l2.65-7.043c.809-2.377 1.842-4.736 2.53-7.043.172-.586.31-1.154.447-1.757.138-.637.293-1.257.448-1.877.327-1.24.723-2.463 1.136-3.686.43-1.205.894-2.393 1.394-3.564l.774-1.74.396-.843c.103-.224.189-.483.258-.741.292-1.033.396-2.445.809-3.703.344-1.188.636-2.393.963-3.616.327-1.223.671-2.463 1.119-3.703a19.89 19.89 0 0 1 1.635-3.513c.241-.293-.018-.379.068-1.532.758-4.667 2.719-8.835 4.113-13.037 1.291-4.254 2.668-8.645 4.216-12.881 1.532-4.254 3.167-8.473 4.819-12.675.843-2.101 1.617-4.202 2.529-6.303l2.805-6.165a59.044 59.044 0 0 0 2.41-6.234c.757-2.17 1.634-4.271 2.581-6.355 1.91-4.133 4.078-8.111 6.109-12.107 3.923-8.076 8.105-16.188 13.147-23.748 4.182-5.975 7.348-12.64 11.908-18.581l6.574-8.835c2.1-2.98 4.578-5.855 7.073-8.542 2.512-2.72 4.904-5.338 7.141-8.317 1.291-1.516 2.788-2.67 4.113-3.858l4.079-3.634a98.776 98.776 0 0 1 8.449-7.215 174.68 174.68 0 0 1 4.44-3.324c1.548-1.085 3.132-2.05 4.698-2.996 1.583-.948 3.028-1.912 4.577-2.98a164.528 164.528 0 0 1 4.646-3.013l9.362-5.77c3.046-1.98 6.281-3.909 9.361-5.786 1.549-.964 3.063-1.946 4.492-3.014a46.78 46.78 0 0 0 2.099-1.67 51.144 51.144 0 0 1 2.203-1.739c2.977-2.239 6.04-4.22 8.793-6.527l4.199-3.582a38.513 38.513 0 0 1 2.255-1.722 55.766 55.766 0 0 0 2.219-1.568c2.891-2.152 5.576-4.615 8.398-6.991 1.411-1.189 2.857-2.36 4.388-3.462 1.566-1.102 3.029-2.032 4.475-3.151 2.478-1.843 4.818-3.858 7.416-5.735a55.26 55.26 0 0 1 8.209-4.856c2.891-1.361 5.816-2.515 8.983-3.307 3.166-.74 6.436-.895 9.636-.637 1.601.121 3.184.362 4.75.672.809.172 1.497.292 2.392.551.843.258 1.635.637 2.375 1.05 1.462.844 2.701 1.86 3.923 2.738.62.431 1.222.827 1.842 1.171.74.414 1.445.861 2.116 1.378 2.685 2.049 4.612 4.77 6.281 7.422l2.478 3.944a33.786 33.786 0 0 1 2.341 4.237c1.359 2.91 2.357 5.941 3.269 8.937l1.343 4.461a57.327 57.327 0 0 1 1.239 4.615c1.376 6.251 1.583 12.64 1.445 18.909-.086 3.151-.155 6.234-.379 9.403a82.78 82.78 0 0 1-1.204 9.42 83.552 83.552 0 0 1-1.015 4.65c-.431 1.584-.74 2.892-.998 4.442-.517 2.997-.809 6.235-1.911 9.386-1.342 3.737-1.032 8.163-2.529 12.658-.775 1.911-.93 3.788-1.17 6.01-.121 1.085-.259 2.221-.551 3.375a10.637 10.637 0 0 1-.568 1.722c-.103.293-.258.569-.396.844-.069.138-.137.276-.224.413l-.154.259s-.069.086-.052.155v.086l.017.172v.293c-.963 14.293-.843 28.604-.533 42.95-.035 7.026 1.738 13.897 4.302 20.441 2.581 6.44 6.883 12.176 12.252 16.515 2.702 2.153 5.731 3.875 8.914 5.356 3.201 1.498 6.471 2.79 9.844 3.789 3.372 1.016 6.849 1.86 10.325 2.738 3.355.827 6.9 1.17 10.514 1.86.912.172 1.807.361 2.719.602.86.19 1.704.414 2.547.586 1.721.344 3.442.637 5.18.827 3.493.413 7.021.55 10.566.568 3.545 0 7.107-.12 10.703-.241l10.721-.293c1.704-.086 3.373-.275 4.973-.672.396-.086.792-.206 1.188-.327l1.273-.43a15.836 15.836 0 0 1 2.857-.569c1.858-.223 3.631-.258 5.283-.482a16.32 16.32 0 0 0 2.357-.465c.792-.24 1.825-.55 2.719-.688 3.683-.672 7.159-.655 9.947-2.067l.533-.276c.293-.155.585-.275.878-.379a6.88 6.88 0 0 1 1.669-.31c1.05-.068 1.962 0 2.788 0 .413 0 .809 0 1.17-.034.327-.034.723-.103 1.188-.19l2.65-.447a29.368 29.368 0 0 1 2.787-.293c.465-.034.999-.017 1.412-.017.378 0 .774-.017 1.17-.052 1.583-.155 3.235-.585 5.007-.999a26.898 26.898 0 0 1 2.754-.516c.482-.052.963-.104 1.462-.12.241 0 .499-.018.74 0h.121l.051-.035s.276-.19.74-.241h.5l.068.017.585.086c.396.052.792.069 1.188.086.809.035 1.617 0 2.443-.086 3.322-.293 6.763-1.309 10.549-1.55 3.58-.19 7.107-.293 10.635-.396 3.528-.12 7.038-.241 10.514-.517 1.739-.137 3.477-.31 5.197-.533 1.704-.224 3.545-.465 5.318-.638 7.141-.671 14.231-.637 21.201-1.085l.809-.051h.051l.103-.018.224-.034.448-.069.877-.155c.258-.051.516-.069.775-.086.223 0 .585 0 .567.035.138.051.345.155.603.206.378 0 .533 0 .757-1.326.052-.224.172-.672.413-.637l-.086-.069Z%27/%3E%3Cpath d=%27M890.816 50.338c.378 0 .688.12.878.43.172.276.327.878-.207 1.498-.551.568-1.222.637-1.687.705-.482.052-.809.104-1.119.224-.482.172-1.016.293-1.515.276a47.124 47.124 0 0 0-2.204-.018h-.533l-.276.017-1.239.07c-.5.034-.964.103-1.498.172-1.033.137-2.066.31-3.099.481-4.149.723-8.418 1.67-12.894 1.86-4.046.102-8.057 1.307-12.429 2.03l-1.653.241c-.534.086-1.274.12-1.773.12-.534 0-1.033 0-1.412.07a1.962 1.962 0 0 0-.499.103c-.069.017-.121.051-.172.069l-.224.12c-2.083 1.17-4.373 1.807-6.542 2.22-2.186.413-4.304.654-6.301 1.067-1.032.207-1.876.448-2.978.775-1.05.292-2.1.568-3.15.843-2.083.534-4.149 1.016-6.146 1.6a53.2 53.2 0 0 0-2.944.947c-1.033.38-2.1.723-3.15 1.033l-6.163 1.704c-.999.293-1.963.62-2.91.981-.482.19-.912.379-1.411.585-.551.241-1.102.448-1.653.62-2.186.723-4.287 1.101-6.146 1.738-.465.155-.895.327-1.325.517l-1.464.688c-.998.448-1.979.878-2.978 1.29-3.994 1.67-8.057 3.099-12.085 4.51l-6.008 2.152c-1.98.705-3.891 1.531-5.905 2.34-2.014.81-4.097 1.601-6.335 2.1-1.154.258-2.186.43-3.495.516-.723 0-1.257-.051-1.67-.068h-.31c-.034 0-.051.017-.068.034-1.016.981-2.686 1.687-4.046 1.876-1.394.241-2.668.241-3.753.344a9.561 9.561 0 0 0-1.515.258c-.224.052-.43.138-.637.224l-.275.138s-.086.034-.155.086l-.31.206-.62.413c-.258.052-.568-.017-.843-.017l-1.085-.069c-.585-.051-1.188-.051-1.773-.086-4.734-.137-9.572.19-14.53.155-2.479-.017-4.975-.137-7.471-.482a54.185 54.185 0 0 1-3.719-.654 36.458 36.458 0 0 0-3.426-.55c-2.324-.276-4.734-.396-7.195-.603a57.052 57.052 0 0 1-3.719-.413c-1.239-.172-2.565-.465-3.632-.671-4.562-.826-9.486-.792-14.478-1.825-2.548-.516-4.855-1.36-7.128-1.996a35.461 35.461 0 0 0-3.374-.809c-.551-.103-1.119-.172-1.67-.24-.671-.07-1.463-.207-2.134-.431-2.772-.895-4.734-2.582-6.663-3.494-.843-.396-2.186-.843-3.322-1.36a34.802 34.802 0 0 1-3.392-1.72c-4.424-2.514-8.263-5.87-11.62-9.536-4.648-5.043-8.384-10.912-11.138-17.142-1.394-3.098-2.513-6.403-3.512-9.535-.516-1.601-1.033-3.288-1.326-5.078-.154-.86-.223-1.91-.223-2.72 0-.688-.121-1.393-.293-2.133-.327-1.48-.895-3.116-1.153-5.009a12.84 12.84 0 0 1-.121-1.445c0-.5.017-1.016.035-1.377l.12-2.462c.121-3.287.121-6.574.086-9.896-.086-6.626-.344-13.304-.12-20.034.103-3.373.327-6.747.74-10.12l.361-2.53c.121-.792.207-1.532.259-2.341.103-1.583.12-3.219.155-4.905.051-1.687.12-3.443.43-5.233.155-.912.43-1.824.602-2.53.19-.774.362-1.549.5-2.358.619-3.184 1.05-6.609 2.255-9.982.138-.43.31-.843.482-1.256l.448-1.12c.292-.74.55-1.497.809-2.271.516-1.532.981-3.115 1.463-4.716.482-1.6.981-3.218 1.567-4.836.292-.81.602-1.618.946-2.41l.947-2.272c2.428-6.058 4.252-12.46 6.37-18.794 0 .017.017-.138-.017-.74-.052-.517.034-1.532.499-2.272 1.412-2.358 1.825-5.302 2.135-8.417l.258-2.392c.103-.844.224-1.601.275-2.324.155-1.48.19-2.977.104-4.475-.155-2.994-.741-5.955-1.705-8.829-.929-2.857-2.255-5.559-4.028-7.883a20.68 20.68 0 0 0-6.611-5.645c-2.496-1.429-5.405-2.186-8.125-2.031-2.772.172-5.44 1.429-8.591 2.633-1.687.568-3.236.826-4.407 1.343-.293.12-.551.258-.792.413-.241.155-.396.292-.757.585-.62.534-1.24 1.033-1.877 1.532-5.044 4.027-10.415 7.418-15.304 11.239-4.872 3.89-9.658 8.089-14.633 12.048-4.975 4.01-10.209 7.676-15.511 11.204a157.583 157.583 0 0 1-8.177 5.043c-2.789 1.584-5.612 3.03-8.332 4.561a70.58 70.58 0 0 0-7.816 4.974c-2.548 1.825-5.079 3.787-7.919 5.49-5.526 3.047-10.433 6.713-15.236 10.758-2.392 2.013-4.751 4.096-7.109 6.196-2.342 2.03-4.459 4.217-6.508 6.574-2.048 2.341-4.011 4.785-6.042 7.246-2.083 2.479-4.012 4.768-5.836 7.332-1.825 2.513-3.581 5.13-5.371 7.745-1.808 2.651-3.616 5.164-5.303 7.797a166.933 166.933 0 0 0-9.244 16.316c-2.772 5.577-5.199 11.429-7.799 17.195-2.599 5.782-5.044 11.514-7.23 17.417l-2.996 8.176-2.685 8.278-2.651 8.296c-.896 2.754-1.791 5.525-2.548 8.313-3.116 11.136-6.456 22.323-9.847 33.51-.93 2.789-1.894 5.474-2.479 8.141-.276 1.257-.5 2.858-.878 4.321a69.516 69.516 0 0 1-1.223 4.319c-.912 2.84-1.807 5.474-2.651 8.279l-2.582 8.33-2.582 8.331c-.827 2.805-1.842 5.628-2.755 8.313-.929 2.736-1.687 5.318-2.083 8.141-.516 3.063-1.532 5.903-2.376 8.622a58.083 58.083 0 0 0-1.153 4.114 39.725 39.725 0 0 1-1.446 4.32c-1.102 2.788-2.359 5.422-3.443 8.038l-.775 1.962a32.98 32.98 0 0 1-.895 2.134 30.147 30.147 0 0 1-2.29 4.045c-1.738 2.564-3.839 4.801-6.077 6.798-.568.499-1.136.981-1.704 1.463-.62.516-1.308.998-1.997 1.411-1.377.844-2.84 1.463-4.321 1.962-1.48.499-3.013.844-4.562 1.05-1.515.207-3.03.31-4.545.345-3.03.068-6.025-.19-8.986-.637a73.073 73.073 0 0 1-4.39-.809l-2.169-.499c-.654-.172-1.085-.207-1.808-.241-.688-.035-1.515-.035-2.41-.19a5.454 5.454 0 0 1-.688-.155l-.534-.154-1.067-.31-4.184-1.308c-2.789-.895-5.44-1.704-8.315-2.479-2.909-.877-5.612-2.065-8.28-3.063-1.274-.482-2.772-.964-4.149-1.584-1.377-.602-2.72-1.273-4.029-1.945l-3.856-2.013c-1.239-.654-2.565-1.257-3.908-1.98a73.94 73.94 0 0 1-7.591-4.647c-4.872-3.373-9.348-7.125-13.738-11.067-9.279-8.536-16.338-18.932-23.31-29.069-3.512-5.147-6.696-10.448-10.071-15.559-1.687-2.565-3.408-5.078-5.25-7.487-1.773-2.393-3.839-4.51-6.112-6.455-2.272-1.944-4.734-3.683-7.282-5.369l-3.873-2.513c-.671-.431-1.274-.826-1.877-1.153-.602-.345-1.256-.637-1.928-.913-2.668-1.084-5.612-1.67-8.642-2.289-3.081-.602-6.094-1.445-9.02-2.048-2.979-.654-5.768-.878-8.884-.843-1.549 0-3.167-.035-4.82-.258-.809-.104-1.739-.31-2.376-.43a21.916 21.916 0 0 0-2.134-.293c-1.446-.138-2.927-.155-4.442-.12l-2.289.068c-.775.035-1.498.069-2.428.052-3.529-.155-6.438-1.48-9.124-1.55-.361-.017-.723 0-1.067 0l-1.205.121c-.895.103-1.791.12-2.669.138-1.773 0-3.494-.138-5.181-.293-1.687-.155-3.34-.344-4.958-.447a38.074 38.074 0 0 0-2.41-.086h-1.188s-.551.103-.878.069c-.379 0-.758-.138-1.085-.345-.31-.189-.379-.223-.516-.292-.138-.052-.259-.138-.379-.19a6.54 6.54 0 0 0-.809-.31 13.9 13.9 0 0 0-1.808-.412c-1.274-.207-2.651-.31-4.114-.534-2.892-.482-5.647-1.29-8.332-2.272-1.36-.516-2.617-.998-3.994-1.635-1.343-.637-2.565-1.377-3.77-2.065-1.205-.706-2.359-1.377-3.53-1.945-.602-.293-1.136-.5-1.79-.757a49.635 49.635 0 0 1-2.014-.827c-5.302-2.34-9.916-5.765-14.323-9.173-4.373-3.46-8.677-7.005-13.015-10.5L84.85 40.942l-13.376-9.862c-2.255-1.67-4.39-3.27-6.749-4.579-2.34-1.325-4.82-2.478-7.35-3.476a87.537 87.537 0 0 0-4.339-1.567 12.826 12.826 0 0 0-4.183-.602c-2.858.052-5.664 1.102-8.28 2.564C35.303 26.363 31 30.855 27.42 35.846c-3.615 4.991-6.662 10.516-9.882 15.869l-4.785 8.09a89.256 89.256 0 0 0-4.425 8.175c-1.342 2.805-2.565 5.662-3.787 8.553-.603 1.446-1.257 2.892-1.825 4.338l-1.67 4.354-.843 2.169-.413 1.084c-.121.327-.207.671-.293 1.016-.344 1.411-.465 2.943-.654 4.526a25.23 25.23 0 0 1-.379 2.427c-.172.843-.482 1.67-.671 2.34-.43 1.429-.706 2.927-.896 4.424-.344 3.012-.413 6.196-.533 9.294-.086 3.115-.07 6.213.155 9.311.206 3.098.602 6.162 1.24 9.191.774 3.012 1.221 6.334 1.187 9.518 0 1.36 0 2.685.19 3.941.103.62.24 1.222.464 1.687.293.603.62 1.291.86 1.962 1 2.737 1.258 5.559 1.602 8.227.31 2.651.998 5.301 1.463 8.021.5 2.702.964 5.404 1.343 8.141.413 2.736.534 5.49 1.016 8.106.447 2.668 1.067 5.353 1.36 8.141.155 1.394.206 2.84.155 4.217l-.086 4.096c-.052 2.737-.086 5.49-.276 8.244-.293 5.508-1.36 11.102-3.391 16.282-.982 2.599-2.1 5.112-3.254 7.607-1.17 2.479-2.204 4.992-3.512 7.47-2.582 4.923-5.819 9.432-9.175 13.786-3.357 4.338-6.8 8.623-10.433 12.737l-9.313 10.447-9.486 10.275c-3.133 3.408-6.043 7.022-9.124 10.551a336.304 336.304 0 0 1-9.4 10.395l-2.41 2.548-2.307 2.616-4.613 5.215-9.262 10.481c-6.318 6.885-12.929 13.597-20.435 19.294-10.053 7.625-20.933 14.303-32.812 18.846-2.978 1.068-5.973 1.997-8.969 2.995-2.961.981-6.008 2.014-9.072 2.788-1.515.396-3.013.809-4.494 1.257-1.428.482-3.116.964-4.699 1.222-3.22.551-6.439.602-9.589.585-11.775-.086-23.706.62-35.619-.878-2.961-.396-5.939-.877-8.848-1.566-2.789-.706-5.681-.895-8.694-1.394-1.515-.224-3.012-.671-4.372-.947-1.412-.292-2.858-.499-4.322-.705-2.909-.396-5.956-.809-8.865-1.704-2.703-.809-5.63-1.05-8.608-1.584a30.007 30.007 0 0 1-4.442-1.136c-1.377-.447-2.788-.86-4.2-1.256-5.647-1.532-11.551-2.892-17.095-5.198-5.577-2.255-10.863-4.905-16.079-7.917a45.117 45.117 0 0 1-13.221-12.306c-2.324-3.287-4.338-6.85-5.612-10.74a29.523 29.523 0 0 1-1.309-5.989c-.241-2.014-.189-4.148-.103-6.059.207-7.797-.31-15.851 1.377-23.786a45.73 45.73 0 0 1 1.601-5.834l2.066-5.56 4.028-11.135a153.337 153.337 0 0 1 2.17-5.542c.723-1.911 1.842-3.701 2.616-5.353.19-.43.362-.843.534-1.274l.517-1.411 1.084-2.788a192.19 192.19 0 0 1 2.359-5.473c2.547-5.663 5.336-11.188 7.798-16.816 1.239-2.823 2.445-5.697 3.891-8.502 1.515-2.754 2.771-5.422 3.994-8.296 1.222-2.823 2.496-5.731 3.994-8.485 1.463-2.754 3.029-5.422 4.321-8.158a34.735 34.735 0 0 0 1.704-4.166 40.85 40.85 0 0 1 1.756-4.423c1.325-2.874 2.858-5.576 4.252-8.313.671-1.325 1.412-2.805 1.876-4.027.207-.62.345-1.377.569-2.186.103-.413.241-.826.413-1.239.172-.431.413-.844.585-1.153 1.549-2.737 3.202-5.302 4.338-8.021 1.119-2.633 1.619-5.989 3.874-8.743l.396-.465s.137-.172.189-.293c.138-.223.224-.464.241-.619.103-.826.258-1.67.482-2.461.431-1.601 1.119-3.081 1.825-4.492l2.169-4.08c.689-1.325 1.24-2.667 1.842-4.113l3.564-8.502c2.375-5.663 4.889-11.308 7.333-16.954 2.496-5.318 4.545-10.894 7.162-16.299.637-1.342 1.394-2.702 2.031-3.958.654-1.291 1.257-2.634 1.842-3.976 1.188-2.685 2.376-5.473 3.874-8.09 1.429-2.564 2.789-5.163 3.976-7.83l3.461-8.124c1.153-2.72 2.358-5.439 3.477-8.175l3.306-8.21 1.652-4.097c.258-.688.603-1.394.723-1.944.138-.637.207-1.326.258-2.066.052-.723.087-1.497.241-2.306.069-.396.207-.843.345-1.222l.378-1.016a21.663 21.663 0 0 0 1.051-4.13c.223-1.412.241-2.788.189-4.269a123.78 123.78 0 0 0-.172-4.389c-.172-2.925-.482-5.834-.999-8.709-1.067-5.73-2.823-11.376-4.665-16.987-1.859-5.628-3.667-11.256-5.698-16.798a282.734 282.734 0 0 0-4.011-10.396c-1.412-3.408-2.91-6.901-4.098-10.447-2.41-7.108-4.407-14.251-6.748-21.325-1.119-3.563-2.203-7.16-3.03-10.826a72.624 72.624 0 0 1-.585-2.77c-.172-.982-.327-1.688-.654-2.565-.293-.86-.655-1.721-.913-2.702-.275-1.12-.31-1.825-.602-2.72-.482-1.704-1.257-3.442-1.687-5.387-.224-.947-.293-2.048-.327-2.943a69.106 69.106 0 0 0-.19-2.737c-.189-1.807-.482-3.528-1.239-5.094-.827-1.807-1.24-3.735-1.567-5.611-.31-1.876-.516-3.718-.878-5.473l-.654-2.72a38.093 38.093 0 0 1-.499-2.822c-.534-3.787-.603-7.556-.672-11.274-.206-7.435-.206-15.008.878-22.478a75.97 75.97 0 0 1 .999-5.576c.189-.929.43-1.842.654-2.754.103-.465.258-.912.379-1.377l.189-.688c.069-.276.069-.276.103-.465.035-.31-.017-.774 0-1.342 0-.138 0-.293.035-.448v-.292c.034-.104.069-.224.103-.345.138-.499.293-.774.465-1.153.327-.671.861-1.342 1.48-1.928.895-.843 2.066-.912 2.944-.654.792.224 1.515.414 2.186.672.207.086.586.137.655.447.155.895-1.326.964-1.997 1.136-.827.207-1.532.482-1.911.775-.379.309-.586.637-.878 1.239-.121.241-.138.258-.172.379 0 .068-.035-.259 0 .774 0 .43.051 1.102-.172 1.876l-.345 1.222a59.61 59.61 0 0 0-1.188 4.974c-.671 3.339-1.101 6.747-1.36 10.172-.516 6.816-.258 13.838-.12 20.757.12 3.425.447 6.798 1.291 9.999.947 3.667.981 7.195 1.928 10.224.121.379.241.757.379 1.119l.499 1.17c.396.947.637 1.893.826 2.84.362 1.876.465 3.683.534 5.456.035.947.069 1.532.241 2.34.155.758.396 1.532.672 2.324.275.81.568 1.635.843 2.53.138.448.258.913.362 1.377.051.241.103.465.137.723l.103.637c.259 1.342 1.119 2.977 1.533 5.008.31 1.721.654 3.356 1.067 5.043.809 3.34 1.808 6.644 2.858 9.966 2.169 6.626 4.063 13.442 6.232 19.982 1.101 3.304 2.341 6.42 3.718 9.69a281.69 281.69 0 0 1 3.805 9.827 361.147 361.147 0 0 1 4.665 13.563c1.481 4.51 3.013 9.053 4.338 13.683 1.309 4.613 2.411 9.415 2.858 14.268.241 2.427.379 4.837.43 7.246.018 1.188.069 2.41 0 3.718a21.663 21.663 0 0 1-.602 3.786c-.293 1.24-.706 2.427-1.153 3.597-.293.723-.345 1.86-.431 3.081-.052.62-.103 1.274-.241 1.98a7.646 7.646 0 0 1-.31 1.1l-.344.844-1.343 3.322c-1.807 4.423-3.512 8.916-5.405 13.27l-5.613 13.201a87.632 87.632 0 0 1-3.271 6.489c-1.204 2.117-2.203 4.079-3.15 6.265-1.119 2.512-2.186 5.129-3.529 7.659-1.308 2.426-2.445 4.888-3.546 7.418l-3.237 7.676-3.357 7.659c-2.186 5.077-4.424 10.103-6.559 15.266l-3.236 7.694c-1.05 2.685-2.565 5.163-3.77 7.555-.603 1.205-1.137 2.41-1.481 3.632-.172.62-.327 1.222-.396 1.842-.034.189-.103.912-.31 1.342-.206.465-.396.826-.757 1.257-1.739 1.824-2.393 4.302-3.323 7.022-.947 2.788-2.427 5.284-3.822 7.676-.654 1.17-1.532 2.444-1.842 3.425-.189.568-.327 1.205-.499 1.928-.155.688-.499 1.583-.775 2.168-2.358 5.198-5.457 9.828-7.178 14.905-1.773 5.491-4.941 10.275-7.386 15.112-1.291 2.53-2.375 5.18-3.563 7.848a92.196 92.196 0 0 1-1.859 3.993c-.672 1.343-1.395 2.582-2.015 3.855-1.274 2.548-2.393 5.198-3.563 7.866-1.171 2.668-2.427 5.301-3.65 7.917-2.479 5.232-4.958 10.43-7.024 15.783l-.757 2.014c-.241.654-.551 1.463-.878 2.134-.671 1.377-1.394 2.616-1.945 3.838-1.102 2.582-2.135 5.301-3.134 8.003l-5.887 16.282c-1.704 5.37-2.272 11.032-2.359 16.764l-.068 8.674-.104 4.372a27.396 27.396 0 0 0 .207 4.113c.671 5.474 3.185 10.62 6.473 15.181a43.151 43.151 0 0 0 10.828 10.533c2.083 1.411 4.338 2.599 6.662 3.804 2.307 1.187 4.631 2.341 6.99 3.39 4.717 2.135 9.537 3.787 14.581 5.061 2.514.671 5.061 1.308 7.609 2.03 1.257.362 2.6.809 3.753 1.171 1.171.361 2.393.602 3.65.809 2.513.43 5.182.671 7.867 1.411 2.496.775 4.872 1.17 7.489 1.532 2.565.361 5.25.688 7.884 1.377 2.376.602 4.941.809 7.592 1.187 1.291.172 2.772.5 3.96.775 1.239.292 2.513.533 3.77.757a87.09 87.09 0 0 0 7.643.998c5.131.482 10.33.568 15.529.568l15.7-.12c2.634 0 5.164 0 7.678-.241 1.239-.138 2.479-.31 3.667-.602a19.007 19.007 0 0 0 1.756-.482l1.911-.603c2.565-.757 5.113-1.359 7.557-2.1l7.385-2.426c2.445-.844 4.976-1.567 7.369-2.513a117.778 117.778 0 0 0 7.092-3.081c9.296-4.44 18.042-10.155 26.15-16.54 4.046-3.201 7.799-6.73 11.483-10.413a220.92 220.92 0 0 0 10.57-11.428L-66.8 308.18l2.53-2.84 2.6-2.736a316.572 316.572 0 0 0 5.096-5.56c3.374-3.752 6.576-7.538 9.899-11.428 3.357-3.855 6.851-7.521 10.26-11.204 6.731-7.47 13.617-14.871 19.78-22.771 3.133-3.941 6.163-7.9 8.78-12.1 1.308-2.099 2.496-4.251 3.512-6.454l3.133-6.867c2.066-4.561 3.856-9.139 4.7-13.924.878-4.802.998-9.759 1.084-14.802l.07-3.803c.05-1.326.05-2.393-.035-3.615-.172-2.375-.672-4.784-1.136-7.297-.517-2.479-.792-5.215-1.033-7.608a137.15 137.15 0 0 0-1.102-7.401 293.59 293.59 0 0 0-1.412-7.4c-.568-2.565-.74-5.198-1.136-7.539-.19-1.188-.448-2.341-.826-3.408a13.934 13.934 0 0 0-.637-1.549l-.19-.396a4.477 4.477 0 0 1-.258-.602 8.426 8.426 0 0 1-.344-1.136c-.327-1.463-.362-2.823-.379-4.131 0-1.325 0-2.444-.086-3.666a34.73 34.73 0 0 0-.448-3.562c-.206-1.119-.568-2.41-.792-3.684-.516-2.547-.826-5.111-1.05-7.693-.413-5.146-.31-10.31-.068-15.352.137-3.443.447-7.092 1.652-10.585.947-2.685.5-6.472 1.946-10.069a281.77 281.77 0 0 1 7.85-19.122 92.27 92.27 0 0 1 4.854-9.225l5.217-8.847c3.494-5.869 6.765-11.91 11.069-17.503 4.27-5.543 9.658-10.603 16.544-13.27 1.739-.637 3.598-1.067 5.509-1.17 1.91-.087 3.839.171 5.663.757 3.34 1.101 6.577 2.375 9.744 3.94a52.817 52.817 0 0 1 4.614 2.6c1.515.947 2.927 2.014 4.287 3.012l8.297 6.093 4.15 3.046 2.065 1.515 2.014 1.617 8.022 6.438 18.386 14.818c6.112 4.871 12.103 10.138 18.61 14.165 1.635.999 3.305 1.91 5.027 2.668.895.396 1.687.706 2.668 1.084.999.396 1.946.86 2.841 1.36 1.79.981 3.443 2.048 5.095 2.891 1.602.827 3.461 1.532 5.251 2.17a44.745 44.745 0 0 0 5.475 1.548c1.807.43 3.666.482 5.801.844 1.05.189 2.135.481 3.202.946.258.12.517.241.775.396.172.086.12.086.172.103h.069l.31-.034h.774c2.083-.052 4.098.12 6.077.31 2.359.24 4.649.481 6.904.499 1.136 0 2.169-.086 3.357-.207 1.36-.155 2.702-.034 3.959.172 2.496.448 4.7 1.205 6.766 1.308.947.052 2.22-.051 3.391-.086 1.188-.034 2.393-.069 3.615-.034 1.223.034 2.462.103 3.702.275.619.086 1.239.19 1.859.327.585.12 1.05.224 1.618.293 2.169.293 4.476.207 6.903.275 4.993.086 9.693 1.532 14.186 2.548 4.476 1.015 9.451 1.635 13.927 4.268 4.045 2.582 8.039 5.077 11.827 8.141 1.876 1.532 3.684 3.184 5.319 5.008 1.653 1.842 3.047 3.804 4.442 5.732 2.754 3.889 5.285 7.9 7.798 11.876 10.278 15.662 20.486 31.772 35.446 43.062 3.633 2.926 7.403 5.645 11.397 7.969 1.997 1.188 4.028 2.134 6.197 3.236 2.118 1.084 4.166 2.22 6.249 3.201 1.033.499 2.084.947 3.134 1.342 1.05.379 2.255.809 3.339 1.24 2.221.86 4.356 1.755 6.525 2.426 4.476 1.188 9.09 2.771 13.514 4.08l.964.275c.258.069.516.12.809.155.585.069 1.257.069 2.014.103.723.017 1.705.224 2.29.379l1.997.447c2.668.568 5.354.998 8.039 1.205 5.354.361 10.915.103 15.494-2.341 1.171-.602 2.083-1.308 3.151-2.237a45.121 45.121 0 0 0 2.961-2.754c1.876-1.91 3.511-4.027 4.768-6.351.637-1.17 1.136-2.341 1.636-3.632a113.108 113.108 0 0 1 1.618-3.889c1.119-2.548 2.272-5.043 3.167-7.59.465-1.309.775-2.479 1.137-3.907.378-1.377.809-2.72 1.239-4.028.878-2.65 1.636-5.163 2.032-7.883 1.015-5.714 3.391-10.757 4.889-16.041l4.958-15.886c1.549-5.369 3.718-10.516 4.596-15.851.637-3.511 1.859-6.781 2.927-10.017l2.961-9.845 2.961-9.845 2.84-9.913c1.791-6.644 3.994-13.167 6.094-19.707 1.085-3.27 2.049-6.558 3.22-9.794a457.51 457.51 0 0 1 3.598-9.672c2.444-6.455 5.336-12.72 8.108-18.984 2.772-6.265 5.543-12.616 8.866-18.675 3.271-6.075 6.955-11.961 10.932-17.572 3.856-5.611 7.695-11.48 12.274-16.626 2.255-2.72 4.476-5.508 6.869-8.176 2.341-2.685 5.027-5.215 7.695-7.504 5.32-4.698 10.76-9.397 16.819-13.27 1.481-.964 3.134-1.876 4.58-2.754 1.48-.894 2.909-1.91 4.338-2.925 2.84-2.066 5.733-4.252 8.849-6.076 3.081-1.842 6.266-3.46 9.347-5.164a141.357 141.357 0 0 0 9.038-5.473c5.905-3.907 11.655-7.986 17.112-12.478l8.178-6.798c2.702-2.272 5.491-4.578 8.383-6.661l8.642-6.213a126.718 126.718 0 0 0 4.167-3.219l.998-.843c.31-.258.792-.654 1.222-.895.896-.534 1.825-.843 2.72-1.102.896-.258 1.739-.447 2.531-.705.74-.241 1.601-.603 2.41-.93 1.653-.671 3.392-1.325 5.251-1.704 3.787-.774 7.695.069 11.018 1.756 2.788 1.446 5.371 3.39 7.402 5.817 2.066 2.41 3.598 5.198 4.7 8.107a36.976 36.976 0 0 1 2.238 9.036c.379 3.063.241 6.299-.207 9.277-.344 2.925-.447 6.04-1.446 9.139a15.201 15.201 0 0 1-.929 2.255c-.517.998-.465.67-.448 1.497.017.344.069.947-.121 1.549l-.361 1.084-.689 2.134c-1.842 5.715-3.563 11.532-5.922 17.177-1.205 2.737-2.066 5.49-2.926 8.4-.827 2.856-1.791 5.903-2.927 8.622-.998 2.668-1.463 5.577-1.997 8.554-.258 1.498-.551 3.012-.947 4.527-.396 1.394-.568 2.736-.671 4.2-.19 2.89-.017 5.937-.413 9.104-.431 3.03-.792 5.904-.964 8.898-.362 5.938-.276 11.928-.138 17.952.086 4.01.172 8.037.12 12.1-.017 2.03-.086 4.044-.189 6.075-.052 1.084-.12 1.824.017 2.736.121.878.345 1.79.62 2.754.258.964.551 1.98.706 3.081.086.55.138 1.119.155 1.687 0 .533.017.912.069 1.394.189 1.807.74 3.666 1.36 5.542 1.222 3.838 2.53 7.504 4.252 11.05 3.391 7.073 8.177 13.493 14.065 18.657 2.943 2.564 6.18 4.733 9.726 6.282.448.189.878.395 1.343.55l1.463.568c1.033.448 1.946.999 2.824 1.532 1.721 1.067 3.305 2.031 4.923 2.255l1.481.19c.533.068 1.05.171 1.566.275 1.033.206 2.049.481 3.03.757 1.963.55 3.891 1.205 5.733 1.67 3.736.929 7.695 1.1 11.758 1.531 1.016.103 2.031.241 3.064.413 1.033.155 2.083.396 2.978.568 1.894.344 3.857.534 5.836.689 1.98.154 4.011.275 6.06.499 2.032.19 4.183.688 6.008 1.032 7.678 1.291 15.683.207 23.895.534.516 0 1.033.052 1.532.086h.31s.172-.086.275-.155c1.016-.602 2.307-.93 3.375-1.05 2.186-.24 4.114-.137 5.457-.809.344-.155.654-.344.929-.602l.138-.12c.138-.104.172-.155.276-.224a1.87 1.87 0 0 1 .568-.327c.378-.172.912-.241 1.256-.258.672-.018 1.188.034 1.619.051.241 0 .327 0 .568-.017l.688-.069c1.842-.24 3.684-.757 5.509-1.428 3.082-1.136 6.301-2.634 9.555-3.735l9.675-3.46c3.202-1.17 6.352-2.375 9.434-3.769l2.358-1.084c.878-.379 1.756-.654 2.617-.895 1.704-.482 3.357-.844 4.872-1.36.74-.241 1.411-.55 2.289-.93a40.435 40.435 0 0 1 2.514-.912c1.687-.533 3.374-.98 5.009-1.428 1.636-.448 3.254-.895 4.786-1.446a56.464 56.464 0 0 1 5.01-1.583l4.992-1.274 2.445-.654 1.205-.344c.43-.12.878-.258 1.326-.362 3.529-.86 6.954-1.015 9.984-1.945.758-.24 1.481-.499 2.169-.826.362-.172.637-.327 1.051-.55a5.692 5.692 0 0 1 1.773-.568c1.084-.155 1.98-.086 2.703-.138.688-.052 1.583-.19 2.375-.327 3.254-.55 6.594-1.48 10.174-1.876a36.69 36.69 0 0 1 2.669-.19 39.01 39.01 0 0 0 2.444-.206c1.636-.172 3.289-.447 4.958-.757 3.357-.586 6.645-1.343 10.312-1.635l2.686-.19c1.119-.069 2.1.241 3.081.465l.741.172.43.138s.034-.035.121.137c.068.138.137.207.103.173-.224-.12 0-.018.034-.207.069-.12.138-.465.379-.482l.121.069Z%27/%3E%3Cpath d=%27M116.921 709.73c-.173.756-.724 1.048-1.5 1.254a7.214 7.214 0 0 1-1.776.138c-.603-.034-1.155-.155-1.655-.241a8.178 8.178 0 0 1-1.258-.343l-.328-.12-.207-.104a2.62 2.62 0 0 1-.379-.223c-.104-.017 0-.086.034-.154l.155-.207.328-.395.655-.79c.241-.275.397-.515.535-.773.155-.241.344-.55.379-.722.069-.206.121-.412.172-.635l.052-.344c.207-1.099-.035-3.917.293-5.858l.621-6.288a30.226 30.226 0 0 1 1.155-6.356c.569-2.079 1.258-4.054 1.896-6.013.31-.979.621-1.941.897-2.92l.379-1.461c.138-.532.276-1.065.431-1.597 1.276-4.226 3.379-7.937 4.965-11.648 1.62-3.951 3.844-7.662 6.034-11.201 2.155-3.522 4.448-7.164 6.999-10.514 2.534-3.384 5.207-6.614 7.965-9.792 5.62-6.374 11.964-11.871 17.929-17.609 3.017-2.869 6.052-5.789 9.31-8.504 1.603-1.391 3.448-2.628 4.844-3.865 1.483-1.306 2.862-2.817 4.362-4.312a40.967 40.967 0 0 1 2.345-2.233c.793-.722 1.758-1.444 2.517-2.028 1.568-1.237 3.068-2.594 4.551-4.02 2.914-2.834 5.775-5.944 8.758-8.881 8.585-8.556 17.515-16.664 25.153-25.838 3.793-4.742 8.034-9.14 11.74-13.761 3.758-4.656 7.31-9.466 10.482-14.499 6.361-10.067 11.275-21.028 14.964-32.383.931-2.852 1.776-5.67 2.483-8.573l2.086-8.796c.362-1.477.758-2.955 1.172-4.432l.31-1.048c.069-.275.121-.567.173-.876.086-.636.103-1.375.172-2.216.035-.413.104-.859.207-1.323.052-.224.103-.464.19-.687l.155-.55.62-2.165 1.242-4.312 1.241-4.312.621-2.164c.206-.688.327-1.306.448-2.062.12-.721.241-1.495.431-2.302.086-.412.207-.825.345-1.254l.362-1.082c.482-1.443 1-2.887 1.517-4.312a210.731 210.731 0 0 1 3.344-8.487c1.155-2.783 2.431-5.652 3.862-8.332 1.414-2.714 2.827-5.326 4.12-8.006a80.545 80.545 0 0 1 4.517-8.074c3.31-5.205 7.189-10.033 11.378-14.465 4.121-4.415 8.379-8.865 13.292-12.696 4.862-3.762 10.034-7.129 15.499-9.981l16.274-8.023 4.052-2.01a103.654 103.654 0 0 1 4.155-2.044c2.775-1.288 5.585-2.457 8.326-3.676 6.431-2.99 13.189-6.013 19.843-8.985l4.931-2.165a81.514 81.514 0 0 0 4.741-2.371c3.138-1.7 5.965-3.573 8.878-5.789 3-2.165 6-4.089 8.603-6.339 1.31-1.117 2.517-2.302 3.552-3.608a35.927 35.927 0 0 0 2.879-4.226c1.706-2.938 2.861-6.15 3.241-9.449a22.57 22.57 0 0 0-1.104-9.861c-1.086-3.212-2.792-6.098-4.965-8.933-2.155-2.938-4.206-5.858-6.447-8.573-2.242-2.731-4.638-5.188-7.414-7.335-2.896-2.302-5.585-4.742-8.275-7.147-2.689-2.422-5.361-4.741-8.171-6.975-2.793-2.25-5.586-4.277-8.689-6.15-6.138-3.9-12.051-7.902-18.533-10.789-3.431-1.563-6.999-2.92-10.585-4.329l-5.327-2.13c-1.638-.618-3.466-.996-5.379-1.443-3.896-.997-7.362-2.337-10.965-2.68-.879-.103-1.758-.086-2.81-.155-1-.051-1.982-.154-2.948-.257-1.965-.207-3.689-.361-5.655-.413-7.844-.326-15.429-1.769-22.928-1.838h-1.431c-.535 0-1.052-.034-1.569-.069a33.17 33.17 0 0 1-3-.395l-2.793-.446c-.776-.104-1.758-.069-2.862-.207a8.794 8.794 0 0 1-1.758-.395c-.672-.257-1.034-.446-1.483-.635l-2.603-1.169-5.241-2.336c-3.724-1.666-7.275-3.608-10.723-5.686-1.741-1.065-3.379-2.045-5.155-3.23-1.741-1.22-3.241-2.56-4.758-3.694-.758-.567-1.517-1.082-2.31-1.511l-1.293-.653a17.819 17.819 0 0 1-1.379-.773c-1.81-1.083-3.465-2.302-5.052-3.591-2.999-2.456-6.258-4.535-9.723-6.322-3.448-1.786-7.085-3.281-10.792-4.587-3.741-1.323-7.465-2.577-11.258-3.539-3.792-.945-7.62-1.58-11.464-1.615l-11.947-.309c-7.775-.154-15.551-.034-23.033 1.615-1.879.378-3.672.945-5.637 1.443l-5.689 1.392c-1.897.463-3.586 1.099-5.482 1.718l-5.586 1.855-11.154 3.711c-3.69 1.134-7.224 2.628-10.775 4.243-7.086 3.316-14.413 6.133-21.24 9.775-6.068 3.178-12.292 5.944-18.222 9.208-5.879 3.35-11.672 6.958-17.499 10.445-5.861 3.436-11.568 7.181-17.326 10.806l-4.292 2.749a129.528 129.528 0 0 0-4.138 2.938c-2.741 2.027-5.655 3.917-8.413 5.858-4.724 3.315-9.568 6.579-14.206 9.947-2.293 1.735-4.534 3.556-6.827 5.36-2.275 1.821-4.723 3.487-7.034 5.153-2.31 1.701-4.55 3.471-6.55 5.481-1.949 2.096-4.19 4.157-6.414 5.995l-3.344 2.783-3.224 2.887-6.43 5.806-4.328 3.917c-1.448 1.306-2.741 2.766-4.12 4.14l-8.138 8.367c-2.706 2.8-5.464 5.531-8.12 8.4a470.87 470.87 0 0 1-8.085 8.504c-5.155 5.274-10.395 10.463-15.654 15.616-5.292 5.223-11.05 9.947-17.033 14.294-6.171 4.088-12.223 8.28-18.498 12.266-6.344 3.899-13.033 7.095-19.653 10.342-2.224 1.065-4.31 2.199-6.517 3.384-2.155 1.168-4.569 2.268-6.862 3.006-2.12.808-4.137 2.268-6.533 3.316-2.397.945-4.655 1.735-7 2.56a224.85 224.85 0 0 1-14.136 4.449c-2.38.67-4.776 1.272-7.189 1.838-2.466.567-4.965.911-7.448 1.134-3.879.361-7.723.464-11.499.859-.948.103-1.879.224-2.81.361l-2.879.464c-1.983.258-3.965.343-5.931.361-3.913 0-7.689-.189-11.447.24-3.896.361-7.758.447-11.516.876-1.879.206-3.741.499-5.551.928l-5.603 1.357c-3.724.911-7.413 1.873-11.017 3.041-7.171 2.268-13.688 6.253-19.153 11.338-5.293 4.982-9.792 10.789-14.068 16.733-4.292 5.927-8.344 12.129-13.119 17.781-4.758 5.669-9.689 11.081-14.792 16.458a199.002 199.002 0 0 1-7.913 7.782c-2.707 2.542-5.551 4.896-8.327 7.336l-10.533 9.122c-3.604 2.92-7.224 5.824-10.913 8.658-3.69 2.835-7.448 5.601-11.344 8.178-3.931 2.508-7.913 4.879-11.878 7.318l-11.913 7.25c-4.051 2.353-8.223 4.432-12.292 6.597a129.057 129.057 0 0 0-6.017 3.384l-1.086.67-.207.137-1.172.808c-.379.24-.776.567-1.138.773-.362.206-.741.447-1.138.704a8.208 8.208 0 0 1-.81.481c-.086.069-.103 0-.138-.086l-.086-.206-.155-.429c-.173-.584-.293-1.168-.259-1.821.017-.567.086-1.134.19-1.667.103-.549.224-1.03.345-1.322.086-.207.12-.585.431-.653.896-.258.999 1.529 1.172 1.477.224.258.465.241.603.069.104-.138.138-.223.173-.275.034-.069.172-.172.275-.206l.104-.052.379-.206 2.052-1.22a97.139 97.139 0 0 1 2.879-1.632 318.397 318.397 0 0 1 5.81-3.058c3.879-1.992 7.671-3.951 11.343-6.218l11.155-6.735 5.568-3.367c1.862-1.117 3.724-2.233 5.5-3.436 3.585-2.388 7.068-4.93 10.499-7.559 3.43-2.628 6.827-5.325 10.24-8.04l9.879-8.452 6.723-5.772c2.207-1.942 4.344-3.969 6.448-6.03 4.206-4.106 8.171-8.47 12.137-12.885 3.948-4.398 7.775-8.864 11.24-13.589 3.448-4.758 6.758-9.689 10.292-14.499 4.155-5.601 8.568-11.081 13.947-15.754 5.362-4.638 11.706-8.246 18.481-10.359 3.345-1.082 6.724-1.976 10.103-2.8l5.068-1.203c1.655-.412 3.466-.807 5.207-1.048 3.517-.515 7.034-.652 10.464-.876 1.759-.103 3.345-.257 5.172-.412 1.776-.12 3.552-.12 5.293-.103 3.62.034 7.189.172 10.602-.361 3.552-.67 7.293-.979 10.879-1.203 3.603-.24 7.172-.446 10.637-1.047 3.413-.636 6.947-1.615 10.378-2.56a214.838 214.838 0 0 0 10.275-3.196l5.086-1.769 2.534-.928c.862-.326 1.69-.601 2.414-.945 1.517-.704 3.034-1.683 4.758-2.525.431-.206.879-.412 1.345-.601.465-.189.948-.344 1.327-.481a41.42 41.42 0 0 0 2.396-.962c3.138-1.443 6.293-3.385 9.586-4.931 5.844-2.886 11.688-5.721 17.24-8.967 2.792-1.598 5.447-3.402 8.137-5.24l8.068-5.429c5.482-3.504 10.516-7.542 15.378-11.768 2.43-2.13 4.724-4.329 7.034-6.648l6.913-6.889c9.24-9.14 17.895-18.76 27.136-28.071l6.844-7.027c2.31-2.319 4.827-4.432 7.223-6.648l7.293-6.58c2.448-2.199 5.034-4.174 7.378-6.322a64.153 64.153 0 0 0 3.293-3.23 43.402 43.402 0 0 1 3.62-3.281c2.483-2.061 5.172-3.882 7.655-5.669 2.482-1.821 4.896-3.797 7.396-5.738 2.465-1.976 5.155-3.831 7.723-5.6l15.482-10.72c2.517-1.787 5.103-3.763 7.792-5.395l7.982-5.051c5.276-3.418 10.706-6.648 16.12-9.895l8.12-4.879c2.672-1.632 5.464-3.247 8.292-4.69 5.654-2.92 11.309-5.514 16.86-8.486 5.655-2.921 11.568-5.292 17.206-7.92 3.861-1.787 7.792-3.608 11.93-5.017l12.102-4.071 6.034-2.027 3.086-1.065a54.758 54.758 0 0 1 3.172-.928c2.103-.55 4.172-1.014 6.172-1.563 1.982-.567 4.189-1.169 6.31-1.581 8.602-1.701 17.343-1.632 25.859-1.409l6.379.155c2.069.034 4.345.052 6.534.309 4.396.481 8.654 1.564 12.775 2.835 9.361 2.955 18.963 6.528 26.946 12.816 1.948 1.58 3.758 2.989 5.775 4.174.5.292 1 .567 1.517.808.552.275 1.207.601 1.758.945 1.138.687 2.173 1.477 3.138 2.267.966.773 1.897 1.546 2.827 2.234.897.687 1.914 1.288 2.966 1.941 2.068 1.288 4.137 2.542 6.258 3.711a90.517 90.517 0 0 0 7.758 3.848l7.964 3.556c.931.395 2.276.275 4 .464 1.569.223 2.948.515 4.362.687 1.431.206 2.62.206 4.206.206 1.5.035 3 .086 4.483.206 5.947.413 11.757 1.34 17.515 1.65 1.397.068 2.948.103 4.448.24l4.362.43c.724.051 1.362.085 2.138.103.793.017 1.568.103 2.344.206 1.552.206 3.034.55 4.5.945 1.465.395 2.879.824 4.275 1.254 1.328.395 2.741.687 4.207 1.048 1.431.343 3.017.824 4.396 1.426l4.069 1.614c5.447 2.131 11.033 4.227 16.291 7.113 5.258 2.851 10.12 6.184 15.085 9.259 5.103 3.23 9.603 7.061 14.051 10.944 2.603 2.302 5.137 4.638 7.74 6.837l4.017 3.299a45.631 45.631 0 0 1 3.81 3.728c2.379 2.611 4.465 5.428 6.5 8.228l3.034 4.192c1.034 1.443 2 2.955 2.81 4.553 1.638 3.178 2.724 6.683 3.017 10.29.293 3.591-.224 7.25-1.448 10.634-1.224 3.385-3.086 6.46-5.276 9.26-2.241 2.835-5.034 5.102-7.878 7.129l-5.241 3.694c-1.69 1.254-3.5 2.56-5.327 3.694-3.69 2.302-7.569 4.226-11.568 5.875l-23.395 10.514c-3.93 1.701-7.844 3.35-11.585 5.325l-11.551 5.67c-3.861 1.924-7.706 3.642-11.378 5.772a103.202 103.202 0 0 0-10.585 6.992c-3.5 2.594-6.706 5.583-9.775 8.71-3.052 3.161-6.12 6.339-8.896 9.689a86.6 86.6 0 0 0-7.585 10.651 73.882 73.882 0 0 0-3.121 5.738 187.972 187.972 0 0 1-3 5.927c-1.017 1.959-2.051 3.883-2.982 5.858-.914 1.959-1.758 4.003-2.603 6.03a176.912 176.912 0 0 0-4.569 12.335c-.31.945-.483 1.976-.672 3.075a26.686 26.686 0 0 1-.776 3.316l-1.81 6.373-1.81 6.374c-.276.859-.311 1.873-.397 3.024a14.407 14.407 0 0 1-.258 1.803c-.173.67-.311 1.083-.466 1.632-1.965 7.096-3.207 14.62-5.672 21.767-2.31 7.164-5.086 14.207-8.447 20.976-6.586 13.623-15.913 25.838-25.964 36.901-3.137 3.78-6.43 7.748-9.895 11.339-3.448 3.659-7.034 7.181-10.62 10.668-3.586 3.487-7.172 6.958-10.654 10.514-3.483 3.539-6.896 7.301-10.982 10.496-2.017 1.461-3.655 3.076-5.413 4.879-1.724 1.77-3.586 3.677-5.689 5.206-3.914 2.955-7.517 6.356-11.12 9.792-7.241 6.975-14.809 13.434-21.033 21.113-2.706 3.247-5.31 6.563-7.671 10.016-1.207 1.735-2.293 3.47-3.414 5.309-1.12 1.803-2.241 3.607-3.293 5.411-1.051 1.804-2.034 3.642-2.861 5.515a146.036 146.036 0 0 1-2.621 5.841c-.896 1.924-1.758 3.796-2.414 5.72a28.072 28.072 0 0 0-.844 2.904 56.283 56.283 0 0 1-.88 3.161c-1.275 4.157-2.792 7.971-3.154 12.025l-.587 6.254c-.086 1.013-.241 2.147-.258 3.058-.017.962.052 2.078-.052 3.298l-.121 1.065c-.017.189-.069.378-.103.567a6.493 6.493 0 0 1-.138.567c0 .034-.034.12-.034.12h.017s.017 0-.104.052c-.155.068-.241.172-.241.275.052.223.017.463 1.396.687.225.051.673.189.638.429l-.051.103Z%27/%3E%3Cpath d=%27M104.889 710.111c-.069.378-.275.636-.671.843-.379.189-.93.292-1.36-.035-.413-.326-.603-.894-.689-1.427-.069-.275-.12-.533-.189-.791-.052-.206-.121-.361-.19-.516-.223-.464-.396-1.014-.43-1.53l-.052-1.823V703.456l.035-1.29.069-1.53a46.4 46.4 0 0 1 .292-3.078c.138-1.032.293-2.047.517-3.061l.671-2.906c.396-1.875.706-3.835 1.068-5.813.361-1.977.809-4.041 1.463-5.984l1.842-5.658c.585-1.857 1.084-3.714 1.429-5.588.069-.413.189-1.084.361-1.617.155-.55.362-1.083.568-1.599.448-1.015.964-1.943 1.464-2.82.516-.877 1.015-1.703 1.446-2.528.224-.413.396-.808.585-1.221l.603-1.376c.792-1.84 1.618-3.663 2.496-5.485 1.756-3.629 3.718-7.206 6.077-10.576 2.393-3.302 4.872-6.414 7.489-9.492a117.798 117.798 0 0 1 8.332-8.753l8.642-8.255c2.927-2.734 5.922-5.416 9.056-7.961l9.175-7.636 18.318-15.27c4.493-3.646 8.659-7.326 12.67-11.521 4.201-4.11 8.505-7.825 12.43-11.969 3.96-4.11 7.747-8.409 11.448-12.811 3.736-4.385 7.334-8.805 10.64-13.448 6.714-9.217 11.844-19.397 15.976-30.076 1.101-2.7 1.962-5.211 2.668-8.014.74-2.751 1.394-5.588 2.324-8.426.947-2.734 1.67-5.331 1.98-8.048.12-1.255.241-2.94.516-4.367.241-1.479.551-2.907.844-4.317.292-1.41.585-2.786.792-4.144.103-.688.189-1.359.241-2.029l.103-1.152c.052-.413.121-.809.207-1.204.327-1.565.826-2.941 1.153-4.23.362-1.307.362-2.356.448-3.956.155-2.923.568-6.07 1.566-8.907.809-2.597 1.24-5.4 1.894-8.289.172-.722.344-1.444.551-2.184l.637-2.081c.379-1.306.688-2.682.998-4.075.603-2.769 1.205-5.778 2.342-8.598.964-2.476 1.48-5.279 2.255-8.151.396-1.445.878-2.906 1.532-4.334l.517-1.066c.137-.292.292-.567.413-.877.258-.602.499-1.221.723-1.857.861-2.545 1.532-5.554 2.72-8.289 1.05-2.614 1.962-5.331 2.961-8.065a112.28 112.28 0 0 1 1.601-4.11l1.721-3.989c1.188-2.666 2.48-5.365 4.184-7.911 1.704-2.51 3.581-4.763 5.492-6.964l2.892-3.267c1.016-1.135 2.135-2.167 3.271-3.164 4.631-3.956 10.105-6.587 15.545-8.702a118.146 118.146 0 0 1 9.985-3.405 86.965 86.965 0 0 1 5.131-1.307l1.291-.275c.43-.103.757-.154 1.153-.275a25.2 25.2 0 0 0 2.29-.739c1.532-.585 3.099-1.29 4.751-1.961 1.636-.688 3.529-1.221 5.096-1.668a102.004 102.004 0 0 0 9.606-3.336c6.232-2.545 12.223-5.847 17.526-9.905 2.599-2.029 5.13-4.368 7.041-6.827 1.876-2.51 3.081-5.554 3.994-8.753.499-1.651.74-2.992.723-4.557-.017-1.53-.293-3.061-.723-4.626-.878-3.164-2.152-6.225-3.77-9.148-1.601-2.906-3.512-5.778-5.44-8.512-1.929-2.648-4.253-5.039-6.801-7.154-1.273-1.066-2.616-2.012-4.045-3.043l-4.184-2.993c-2.788-1.943-5.629-3.783-8.607-5.262-2.979-1.565-6.043-2.476-9.417-3.439-3.288-.963-6.559-1.892-9.847-2.442-1.739-.292-3.495-.481-5.234-.516-1.756-.034-3.581 0-5.371.103-3.581.19-7.145.637-10.639 1.393-3.512.774-7.093 1.72-10.777 2.408l-10.915 1.737-5.423.877c-1.962.292-3.959.292-5.887.086-1.929-.19-3.822-.585-5.647-1.067a60.886 60.886 0 0 1-2.703-.773c-.516-.155-.689-.207-1.136-.293l-1.395-.24c-.499-.104-1.153-.276-1.721-.585l-1.24-.671a68.382 68.382 0 0 1-2.444-1.41 71.3 71.3 0 0 1-4.683-3.13 86.086 86.086 0 0 1-8.539-7.222c-2.789-2.648-5.423-5.469-7.971-8.289-2.513-2.751-5.199-5.365-7.988-7.893-2.789-2.493-5.698-5.004-8.59-7.291a72.43 72.43 0 0 0-9.297-6.156c-6.49-3.629-13.497-6.501-20.761-7.739a52.726 52.726 0 0 0-5.509-.619c-1.894-.12-3.771-.24-5.647-.326-3.753-.155-7.489-.155-11.173.206a51.268 51.268 0 0 0-5.371.825c-1.756.344-3.495.895-5.354 1.359-3.65.928-7.265 1.719-10.76 2.786-3.478 1.066-6.886 2.51-10.381 3.869-1.739.67-3.546 1.324-5.32 1.909a64.222 64.222 0 0 0-5.113 1.994c-3.374 1.479-6.679 3.164-10.105 4.729-1.704.791-3.495 1.496-5.182 2.184a132.79 132.79 0 0 0-5.061 2.236c-3.34 1.565-6.628 3.302-9.848 5.107-3.184 1.84-6.507 3.732-9.83 5.417-2.909 1.479-5.836 2.906-8.745 4.333-2.91 1.428-5.785 2.907-8.728 4.299-5.854 2.838-11.724 5.606-17.543 8.53-5.836 2.872-11.672 5.692-17.18 9.045-5.51 3.371-10.967 6.982-16.752 10.077-4.872 2.545-9.468 5.537-14.013 8.684l-6.817 4.729c-2.238 1.565-4.39 3.268-6.508 5.022l-6.352 5.33c-2.17 1.737-4.098 3.577-6.198 5.469-1.033.928-2.22 1.857-3.288 2.648a63.6 63.6 0 0 0-3.133 2.597c-2.05 1.805-3.994 3.748-5.991 5.674-1.343 1.29-2.703 2.597-4.115 3.852a92.382 92.382 0 0 0-3.977 3.818c-2.582 2.648-5.027 5.417-7.506 8.203-4.975 5.588-10.122 11.005-15.545 16.181-2.548 2.442-5.2 4.815-7.85 7.102l-7.989 6.913c-5.353 4.575-10.897 9.011-16.681 13.052-5.733 4.059-11.5 8.203-17.646 11.694l-18.369 10.455c-4.098 2.27-8.212 4.557-12.447 6.672-4.252 2.098-8.573 3.921-12.843 5.881-8.504 3.904-17.215 7.584-26.288 10.318-3.563 1.049-7.161 1.857-10.691 2.786-1.756.447-3.477 1.015-5.319 1.479-1.808.464-3.615.86-5.406 1.255-1.79.396-3.564.791-5.32 1.256-1.721.464-3.494 1.031-5.25 1.547-3.495 1.066-7.093 2.047-10.484 3.199-6.749 2.442-13.102 6.156-19.041 10.249-2.978 2.08-5.87 4.282-8.78 6.483-2.909 2.235-5.922 4.299-8.762 6.5-2.772 2.132-5.475 4.368-8.143 6.655-2.634 2.321-5.389 4.609-8.195 6.724-2.806 2.149-5.664 4.196-8.47 6.276l-8.487 6.225c-5.664 4.145-11.345 8.289-17.009 12.433l-1.067.774c-.276.241-.93.636-1.36.757-.465.172-.879.275-1.206.412-.378.19-.344.138-.688.568-1.119 1.393-2.445 2.7-3.822 3.835-2.772 2.321-5.819 4.161-8.711 6.104-1.825 1.204-3.512 2.563-5.302 3.921a197.444 197.444 0 0 1-5.389 3.921c-3.632 2.545-7.334 5.004-11.001 7.463l-11.018 7.412c-1.842 1.221-3.684 2.442-5.474 3.697-1.808 1.221-3.529 2.614-5.457 3.835-1.894 1.221-3.822 2.304-5.699 3.456-1.894 1.101-3.581 2.39-5.492 3.663-3.753 2.476-7.712 4.523-11.551 6.672a307.864 307.864 0 0 0-5.733 3.285l-1.05.636-.207.137-.826.534c-.516.326-1.033.687-1.446 1.134-.585.62-1.274.929-2.1 1.101-.723.155-1.412.43-2.118.619-.224.069-.585.241-.792 0-.602-.653.499-1.513 1.016-2.081a18.493 18.493 0 0 1 1.963-1.891 16.398 16.398 0 0 1 2.306-1.617l.81-.464 4.682-2.7 5.475-3.009c3.649-1.978 7.179-3.938 10.484-6.328 3.564-2.459 7.317-4.282 10.57-6.569 3.323-2.442 6.869-4.781 10.33-7.034l10.363-6.895c3.461-2.288 6.921-4.575 10.312-6.913a205.842 205.842 0 0 0 5.027-3.594l2.462-1.858a58.718 58.718 0 0 1 2.582-1.891c4.752-3.267 9.676-5.916 13.033-10.129l.154-.189s.224-.241.31-.344c.224-.206.5-.395.775-.55.499-.241.895-.361 1.222-.482.327-.103.603-.206.758-.275.052 0 .379-.258.671-.481l3.426-2.511 6.835-5.021 13.686-10.043c4.545-3.439 9.159-6.689 13.514-10.197 2.548-2.012 4.958-4.248 7.523-6.397a182.091 182.091 0 0 1 7.799-6.243c5.406-3.869 10.484-7.961 15.976-11.796 5.526-3.783 11.311-7.154 17.594-9.665 3.168-1.272 6.387-2.08 9.538-3.026 3.184-.911 6.301-1.926 9.589-2.751 3.391-.843 6.765-1.462 10.036-2.322 3.22-.946 6.697-1.857 9.985-2.665 6.645-1.582 13.05-3.887 19.385-6.466 6.352-2.545 12.567-5.537 18.851-8.323 6.266-2.7 12.206-6.036 18.231-9.389l16.131-9.235c5.475-2.958 10.502-6.448 15.58-10.008 5.079-3.594 10.088-7.171 14.84-11.109 4.786-3.903 9.434-7.996 14.1-12.106 9.348-8.082 17.766-17.093 25.995-26.431 2.1-2.321 4.252-4.626 6.542-6.809 1.153-1.118 2.358-2.133 3.443-3.165l3.34-3.198c2.22-2.167 4.493-4.368 6.972-6.397.62-.499 1.257-.997 1.894-1.479.62-.464 1.17-.894 1.756-1.376 1.136-.963 2.255-2.012 3.425-3.061 2.29-2.098 4.631-3.92 6.904-5.881 2.29-1.926 4.614-3.869 7.041-5.726 2.445-1.875 4.958-3.525 7.403-5.245 2.462-1.72 4.94-3.422 7.488-5.073 2.548-1.651 5.148-3.233 7.85-4.677 2.652-1.393 5.2-2.838 7.748-4.403 5.096-3.043 10.105-6.448 15.494-9.32 21.381-11.16 43.4-20.429 64.214-32.621a116.77 116.77 0 0 1 5.577-2.631c1.877-.843 3.822-1.582 5.613-2.373 3.649-1.6 7.247-3.491 11-5.194a63.565 63.565 0 0 1 5.802-2.338 95.713 95.713 0 0 0 5.647-2.064c3.735-1.479 7.557-3.113 11.586-4.265 3.976-1.152 7.97-1.994 11.81-3.095 4.045-1.169 8.246-1.754 12.395-1.96 4.166-.207 8.298-.035 12.36.206 2.015.12 4.115.241 6.215.55 2.083.293 4.132.723 6.163 1.273 4.649 1.238 9.125 3.044 13.377 5.176a79.056 79.056 0 0 1 12.171 7.515c3.822 2.94 7.3 5.984 10.812 9.165 1.738 1.6 3.443 3.25 5.095 4.953 1.67 1.719 3.202 3.491 4.786 5.159 3.788 4.041 7.764 7.876 12.12 11.212a64.438 64.438 0 0 0 6.8 4.574c.585.361 1.188.671 1.79.997.31.155.62.344.741.379.189.068.465.137.774.189.62.12 1.326.189 2.204.43l1.997.602c2.617.739 5.268 1.307 7.885 1.393a19.457 19.457 0 0 0 3.873-.241l4.184-.671 8.349-1.324c2.686-.327 5.389-.894 8.091-1.513 2.703-.619 5.44-1.342 8.281-1.823a74.648 74.648 0 0 1 8.522-.98c2.84-.138 5.698-.241 8.625.051 2.892.293 5.715.877 8.47 1.6 2.754.722 5.423 1.53 8.143 2.338 2.789.843 5.457 2.029 7.97 3.405 5.079 2.769 9.538 6.174 14.117 9.458 2.72 2.029 5.234 4.351 7.437 6.965 2.204 2.665 3.96 5.434 5.75 8.271 1.739 2.855 3.323 5.864 4.476 9.08 1.136 3.129 2.152 6.551 1.894 10.128-.086 1.806-.603 3.508-1.085 5.09-.499 1.617-1.084 3.216-1.824 4.764-.741 1.547-1.619 3.043-2.703 4.419-1.102 1.393-2.256 2.545-3.495 3.732-4.941 4.626-10.691 8.134-16.665 11.126-3.701 1.823-7.557 3.353-11.448 4.643-1.945.653-3.942 1.238-5.888 1.788-1.876.533-3.701 1.359-5.595 2.15-1.893.791-3.89 1.547-5.991 1.96-1.98.396-3.925.877-5.87 1.427-3.891 1.101-7.713 2.442-11.466 3.956-3.736 1.513-7.368 3.284-10.622 5.554a34.68 34.68 0 0 0-4.579 3.8c-1.377 1.376-2.72 2.958-4.063 4.471-2.651 3.079-5.216 6.157-7.058 9.682-.947 1.754-1.773 3.594-2.583 5.451-.809 1.874-1.618 3.714-2.324 5.606l-2.152 5.933c-.688 1.977-1.583 4.007-2.22 5.881-.655 1.943-1.154 4.007-1.877 6.053a21.133 21.133 0 0 1-1.308 3.009c-.465.877-.827 1.823-1.154 2.786-.654 1.926-1.101 3.955-1.618 6.036a42.327 42.327 0 0 1-.895 3.113c-.172.516-.379 1.031-.551 1.53-.189.464-.344.946-.517 1.427-1.239 3.852-1.704 8.169-3.081 12.227-1.136 3.886-1.584 8.237-2.978 12.261-.551 1.926-.827 3.955-.982 6.019l-.172 3.164c-.103 1.152-.379 2.252-.671 3.284-.293 1.032-.603 2.012-.827 2.975-.103.482-.189.963-.223 1.427-.052.465-.086 1.067-.155 1.6-.241 2.166-.689 4.264-1.119 6.311-.431 2.063-.827 4.075-.999 6.104-.138 2.133-.516 4.334-1.05 6.397-.448 1.789-1.102 3.509-1.584 5.159-.499 1.686-.929 3.405-1.377 5.142-.448 1.737-.895 3.491-1.446 5.228-.534 1.754-1.205 3.456-1.859 5.124-2.617 6.69-5.544 13.293-9.107 19.604-3.564 6.294-7.713 12.227-12.189 17.884-4.511 5.623-9.107 11.092-13.979 16.423a167.843 167.843 0 0 1-10.174 10.214c-1.739 1.634-3.495 3.25-5.182 4.901-1.653 1.634-3.34 3.422-5.113 5.056-3.529 3.319-7.3 6.294-10.949 9.355l-11.018 9.165-11.001 9.183c-3.684 3.027-7.282 6.019-10.742 9.286-3.478 3.233-6.887 6.569-10.33 9.871-3.391 3.267-6.542 6.775-9.52 10.438-2.513 3.147-5.027 6.294-7.041 9.681-2.049 3.405-3.805 6.999-5.423 10.679l-1.205 2.769c-.413.997-.947 1.995-1.463 2.889-1.051 1.806-2.066 3.439-2.531 5.09-.207.722-.362 1.892-.603 2.906a55.724 55.724 0 0 1-.774 3.044c-.568 1.995-1.223 3.938-1.842 5.864-1.343 3.749-1.808 7.549-2.583 11.676a71.38 71.38 0 0 1-.671 3.044 31.706 31.706 0 0 0-.534 2.837 46.95 46.95 0 0 0-.447 5.83v.619l.017.223.034.448.086.877c.121 1.031-.103 1.977-.223 2.975-.035.309-.069.378-.121.498l-.138.379c-.12.257-.017.567.207.636.086.034.31.155.293.395l-.035.069Z%27/%3E%3Cpath d=%27M93.622 710.057c.052.379-.069.706-.362.895-.258.189-.93.361-1.55-.224-.534-.585-.568-1.205-.655-1.635-.069-.447-.12-.809-.258-1.119-.19-.481-.327-1.015-.31-1.531v-1.773l.034-.895v-.448l.087-2.375.12-2.581c.172-3.46.483-6.936 1.068-10.396.62-3.459 1.292-6.747 1.964-10.137 1.395-6.712 2.929-13.562 5.685-20.034 1.344-3.218 2.86-6.333 4.376-9.414 1.498-3.029 3.014-6.248 4.909-9.208 1.844-2.978 3.876-5.8 5.978-8.554 2.085-2.737 4.255-5.49 6.598-8.055 4.738-5.18 9.923-9.69 15.108-14.216l7.839-6.678c2.618-2.272 5.409-4.372 8.148-6.42 3.945-2.943 7.821-6.11 11.732-9.156l5.857-4.613c1.929-1.445 3.807-3.029 5.736-4.612 1.895-1.601 3.963-3.184 5.892-4.664a218.57 218.57 0 0 0 5.754-4.613c3.79-3.149 7.373-6.437 10.784-9.999 1.723-1.773 3.446-3.563 5.254-5.336 1.844-1.773 3.515-3.39 5.169-5.232 3.255-3.597 6.339-7.452 9.044-11.497a101.664 101.664 0 0 1 2.188-3.115c.396-.517.792-1.033 1.223-1.532.379-.447.74-.895 1.085-1.36 1.395-1.876 2.584-3.975 3.79-6.127 1.154-2.168 2.584-4.423 3.738-6.437a53.316 53.316 0 0 0 3.032-6.523c1.688-4.457 2.843-9.397 4.565-14.096.758-2.185 1.189-4.561 1.689-7.005.241-1.221.499-2.478.844-3.734.189-.672.327-1.171.43-1.704.121-.534.19-1.102.259-1.687.293-2.323.241-4.871.896-7.607.086-.344.189-.689.31-1.033l.275-.843c.155-.534.293-1.067.397-1.618.223-1.102.31-2.272.396-3.459.103-2.358.207-5.095.672-7.59.413-2.513.947-4.923 1.257-7.264.345-2.323.207-4.664.431-7.349.103-1.29.344-2.736.723-3.993.293-1.05.466-2.168.586-3.356l.31-3.683c.104-1.274.31-2.616.517-3.804l1.24-7.331 2.412-14.682c.414-2.409.551-4.784.93-7.366.379-2.513.862-4.957 1.275-7.366.5-2.909.81-5.645.758-8.571 0-1.48 0-3.029.155-4.63.069-.792.19-1.618.362-2.427.138-.705.276-1.342.362-2.048.792-5.49-.293-11.617 1.188-17.934.207-.878.311-1.291.397-1.962.051-.637.086-1.274.069-1.945-.035-1.342-.259-2.736-.483-4.182-.224-1.446-.499-2.943-.654-4.527l-.379-4.44c-.534-5.852-1.31-11.652-2.722-17.28-1.413-5.611-3.497-11.084-6.047-16.316a100.323 100.323 0 0 0-4.186-7.676c-1.499-2.478-3.153-4.922-4.806-7.418-1.671-2.461-3.222-5.163-4.686-7.642-1.516-2.495-3.153-4.957-4.807-7.4l-10.129-14.664c-3.669-5.009-7.098-10.447-11.422-14.595-4.754-3.752-9.716-7.831-15.108-10.551-2.67-1.359-5.581-2.289-8.562-3.029-2.98-.723-6.012-1.17-9.078-1.411a71.056 71.056 0 0 0-18.416 1.084l-2.36.482c-.793.172-1.516.362-2.446.551-1.723.31-3.36.413-4.479.86-.138.052-.259.121-.379.173l-.569.309-1.137.585c-.758.379-1.533.723-2.308 1.05a85.843 85.843 0 0 1-4.669 1.79c-3.118 1.102-6.15 2.117-9.113 3.391-2.963 1.256-5.892 2.65-8.803 4.113-11.646 5.973-23.291 11.928-34.92 17.9-5.822 2.822-11.662 5.387-17.467 8.141-1.465.671-2.946 1.342-4.462 1.944-1.516.637-3.084 1.136-4.531 1.704-2.963 1.119-5.892 2.41-8.924 3.58-1.481.585-3.1 1.136-4.548 1.653-1.464.533-2.928 1.153-4.375 1.79-2.894 1.29-5.771 2.736-8.769 4.01-3.032 1.239-5.909 2.392-8.751 3.838-2.843 1.394-5.53 3.115-8.355 4.681-2.447 1.377-4.876 2.719-7.236 4.165-1.171.706-2.343 1.515-3.583 2.22l-3.652 2.083c-1.189.688-2.36 1.411-3.445 2.203l-3.29 2.564-6.616 5.164c-4.41 3.476-8.872 6.815-13.058 10.481-4.22 3.649-8.32 7.453-12.49 11.187-7.063 6.317-13.454 13.373-20.156 20.172-3.342 3.408-6.804 6.747-10.44 9.879-1.773 1.515-3.41 3.201-5.202 4.853-1.757 1.687-3.859 3.098-5.685 4.475-.62.482-1.206.964-1.74 1.48-.275.259-.534.534-.775.809-.275.31-.585.637-.878.93-1.24 1.205-2.636 2.134-3.945 3.046-.655.448-1.292.912-1.895 1.377l-1.895 1.48c-1.275.998-2.55 1.979-3.842 2.943a109.139 109.139 0 0 1-3.962 2.823c-1.344.929-2.722 1.755-3.997 2.65-2.584 1.808-5.134 3.821-7.959 5.525-2.722 1.566-5.375 2.857-7.838 4.492-1.258.809-2.326 1.687-3.566 2.668a79.144 79.144 0 0 1-3.738 2.702c-2.55 1.704-5.151 3.27-7.735 4.854l-7.701 4.767-15.47 9.535c-2.601 1.566-5.099 3.236-7.821 4.733-2.704 1.48-5.444 2.754-8.028 4.217-1.757.946-3.307 2.065-5.099 3.184-1.757 1.084-3.566 2.048-5.392 2.96-3.669 1.807-7.442 3.305-11.042 5.043l-10.94 5.077c-3.634 1.721-7.132 3.7-10.646 5.663-5.478 3.098-10.87 6.385-16.245 9.724-5.427 3.27-10.87 6.54-16.297 9.81-5.426 3.236-10.836 6.609-16.469 9.466-2.791 1.463-5.547 2.926-8.217 4.509-2.636 1.653-5.53 3.185-8.373 4.51-11.128 4.853-21.585 10.808-31.973 16.987-5.237 3.046-10.216 6.317-15.212 9.776-2.498 1.704-5.013 3.408-7.58 5.043l-7.545 5.043c-6.322 4.199-12.593 8.519-18.864 12.873-6.27 4.338-12.558 8.623-18.777 13.064-3.135 2.185-6.305 4.337-9.596 6.333l-4.926 2.909c-1.62.981-3.222 1.996-4.824 3.029a194.246 194.246 0 0 1-4.875 3.046l-1.155.689-.861.533c-.534.327-1.085.655-1.55 1.068-.586.568-1.172.791-1.878.981-.62.172-1.154.55-1.654.981-.155.137-.344.447-.655.378-.43-.086-.568-.482-.465-.998.086-.516.414-1.067.638-1.446.534-.912 1.309-1.686 2.101-2.272.845-.602 1.534-1.049 2.361-1.48l.792-.43 1.637-.964 2.256-1.394 4.548-2.857a127.295 127.295 0 0 1 4.669-2.771 122.803 122.803 0 0 0 4.531-2.719c2.997-1.876 5.926-3.873 8.854-5.904 5.806-4.13 11.783-8.072 17.675-12.116 5.892-4.028 11.801-8.055 17.813-12.014l12.214-8.054c4.031-2.685 8.028-5.508 12.162-8.176 8.355-5.197 16.711-10.171 25.376-14.801 2.532-1.343 5.065-2.651 7.683-3.873 2.584-1.222 5.185-2.375 7.701-3.614 2.549-1.222 4.823-2.616 7.356-4.113 2.497-1.446 5.03-2.771 7.545-4.097 2.515-1.325 5.03-2.616 7.459-4.061l7.322-4.338 14.643-8.708c10.112-6.145 20.19-12.53 30.922-17.728 5.392-2.495 10.802-5.094 16.194-7.487 2.687-1.187 5.34-2.409 7.89-3.803a57.141 57.141 0 0 0 3.704-2.238 54.106 54.106 0 0 1 3.858-2.409c2.378-1.343 4.807-2.513 7.133-3.752a54.657 54.657 0 0 0 3.393-1.945l3.411-2.117 13.627-8.468 13.644-8.502c2.274-1.394 4.513-2.805 6.632-4.32a52.721 52.721 0 0 0 3.118-2.358 36.149 36.149 0 0 1 3.394-2.461c2.326-1.497 4.789-2.754 7.011-4.01 2.205-1.291 4.307-2.875 6.478-4.458a73.123 73.123 0 0 1 3.376-2.341c1.12-.722 2.205-1.445 3.291-2.203a164.573 164.573 0 0 0 6.374-4.733c1.068-.809 2.05-1.652 3.221-2.495 1.137-.809 2.24-1.532 3.221-2.289a13.463 13.463 0 0 0 1.982-1.825c.224-.241.5-.55.758-.809 1.05-1.067 2.187-1.927 3.29-2.719 1.103-.809 2.153-1.549 3.1-2.358.983-.826 1.913-1.704 2.878-2.633.965-.912 1.93-1.876 2.98-2.788l2.998-2.634c7.58-6.815 14.436-14.543 21.826-21.858 3.687-3.7 7.632-7.108 11.422-10.567 3.824-3.477 7.7-6.936 11.749-10.241l12.23-9.569 6.117-4.75c2.187-1.722 4.547-2.995 6.77-4.252 1.12-.636 2.188-1.256 3.238-1.944a76.49 76.49 0 0 1 3.36-2.066l6.753-3.838c2.188-1.256 4.444-2.668 6.804-3.855a86.901 86.901 0 0 1 7.184-3.287c3.187-1.257 6.253-2.806 9.475-4.303 1.602-.74 3.222-1.48 4.91-2.134 1.722-.672 3.342-1.188 4.927-1.825 3.204-1.256 6.408-2.685 9.733-3.958 1.706-.637 3.256-1.171 4.84-1.859a127.87 127.87 0 0 0 4.721-2.134c6.322-3.029 12.73-5.869 18.915-9.002l18.588-9.689c7.201-3.666 14.23-7.522 21.741-10.826 3.738-1.67 7.683-2.926 11.387-4.268 1.86-.689 3.687-1.412 5.426-2.255.431-.207.862-.43 1.293-.654l.775-.396c.293-.138.603-.241.878-.327 1.155-.361 2.223-.482 3.205-.62 1.188-.137 2.153-.395 3.428-.688a68.225 68.225 0 0 1 3.617-.723 75.32 75.32 0 0 1 7.322-.929c4.91-.362 9.854-.276 14.764.396 4.909.722 9.733 1.893 14.315 4.061 4.548 2.186 8.476 5.129 12.335 8.124l2.928 2.22c.982.775 1.878 1.687 2.74 2.599 1.705 1.824 3.221 3.769 4.685 5.714 2.808 3.942 5.754 7.866 8.407 11.841l8.235 11.893a162.616 162.616 0 0 1 3.962 6.127c1.292 2.1 2.429 4.165 3.738 6.162l4.669 7.125a97.415 97.415 0 0 1 4.289 7.47 91.16 91.16 0 0 1 6.495 15.954c1.636 5.525 2.601 11.205 3.221 16.885a243.7 243.7 0 0 1 .758 8.502c.224 2.719.913 5.49 1.103 8.468.051.912.069 1.841-.035 2.788-.086.929-.344 1.945-.517 2.702-.379 1.635-.568 3.322-.654 5.043-.19 3.425.017 6.953-.276 10.55-.069.895-.189 1.79-.327 2.702l-.258 1.343c-.087.413-.173.809-.224 1.222-.242 1.652-.259 3.373-.276 5.111.069 3.546-.414 7.177-1.068 10.62-.655 3.493-1.258 6.815-1.585 10.361-.431 3.528-1.103 6.987-1.637 10.43l-1.757 10.378-.896 5.198c-.292 1.686-.396 3.39-.534 5.163-.137 1.807-.379 3.752-.913 5.525-.448 1.635-.551 3.373-.603 5.163-.034 1.773-.086 3.7-.361 5.525-.242 1.841-.603 3.631-.931 5.404-.327 1.773-.62 3.528-.74 5.284-.121 1.755-.138 3.597-.328 5.456a22.531 22.531 0 0 1-.448 2.805c-.189.912-.568 1.91-.792 2.651-.448 1.617-.551 3.39-.689 5.197-.138 1.807-.293 3.718-.827 5.577-.482 1.686-.81 3.442-1.154 5.232-.345 1.79-.724 3.597-1.275 5.404-.603 1.824-1.189 3.408-1.706 5.163-1.068 3.443-1.998 6.971-3.342 10.43-1.326 3.425-3.118 6.781-5.03 9.811-1.516 2.616-2.911 5.404-4.668 8.054a36.64 36.64 0 0 1-1.396 1.945l-1.447 1.79c-.913 1.171-1.757 2.427-2.618 3.701-3.498 5.18-7.391 10.016-11.784 14.508-4.496 4.252-8.493 8.83-13.075 13.132-4.548 4.234-9.423 8.159-14.316 11.876-3.17 2.496-6.253 5.267-9.612 7.762l-9.665 7.625a410.258 410.258 0 0 1-9.768 7.538c-1.619 1.239-3.221 2.496-4.754 3.804l-4.703 3.993c-6.219 5.318-12.507 10.671-18.037 16.54-2.756 2.96-5.254 6.144-7.701 9.414-2.446 3.253-4.737 6.592-6.684 10.103-1.602 2.96-3.135 6.213-4.651 9.311-1.499 3.133-2.911 6.282-4.066 9.501-2.256 6.437-3.617 13.287-4.926 20.119-.655 3.46-1.344 6.799-1.672 10.207-.344 3.407-.5 6.85-.568 10.326v1.257l.086.912c.07 1.067-.207 2.031-.413 3.029a18.739 18.739 0 0 1-.293 1.256c-.035.069-.017.086-.086.104-.224.103-.276.154-.293.189.017-.017 0-.017.034-.069.035-.052.052-.155.052-.103 0 .034.052.069.103.103.104.052.448.103.483.344l-.035-.103Z%27/%3E%3Cpath d=%27M-416.759 594.348c.569-.052.896.379 1.069.844.086.224.172.43.259.499.086.069.138.035.258.086l-.431-.137c.242-.086.121-.155.086-.31-.017-.207-.069-.707.69-1.568.19-.207.414-.362.656-.482.12-.086.241-.121.396-.19l.19-.086c.259-.12.5-.224.742-.361l.741-.379.362-.207.345-.19.518-.292 1.017-.62a69.25 69.25 0 0 0 2.018-1.344c2.638-1.86 5.38-3.996 8.347-5.684 2.828-1.671 5.57-3.479 8.278-5.357 5.415-3.755 10.658-7.837 16.073-11.781 2.69-1.964 5.363-3.91 7.933-5.96 1.311-1.034 2.5-2.05 3.811-3.17a49.357 49.357 0 0 1 4.156-3.048l16.625-11.058 4.174-2.756 4.259-2.653 8.52-5.322 4.26-2.653 4.346-2.515c2.914-1.636 5.88-3.238 8.898-4.736a111.204 111.204 0 0 1 6.692-3.049c1.121-.465 2.311-.93 3.397-1.344.19-.069.466-.275.931-.706.449-.413 1.19-1.068 2.173-1.343l.983-.242c.276-.051.552-.137.811-.206.552-.138 1.086-.328 1.621-.5 1.087-.361 2.156-.809 3.242-1.274l6.588-3.015c1.104-.499 2.363-.964 3.449-1.36a53.572 53.572 0 0 0 3.26-1.327c2.155-.947 4.311-1.998 6.45-3.066 4.294-2.187 8.709-4.306 13.003-6.407 4.311-2.119 8.726-4.203 12.934-6.356 2.087-1.102 4.139-2.343 6.295-3.531 2.173-1.206 4.312-2.256 6.45-3.393 2.121-1.12 4.225-2.239 6.277-3.445 2.053-1.189 3.984-2.498 6.054-3.841l12.227-7.751a199.295 199.295 0 0 0 5.967-3.996l2.897-2.085a95.369 95.369 0 0 1 3.001-2.135c4.036-2.774 8.209-5.254 12.245-7.838 4.052-2.497 7.864-5.443 11.761-8.285l11.658-8.543 23.489-16.932c.828-.568 1.535-.758 1.949-.964.207-.086.345-.173.379-.207h.018l.172-.189.345-.328a47.698 47.698 0 0 1 2.811-2.497c1.932-1.585 3.967-3.015 6.053-4.341 2.121-1.326 4.156-2.497 6.157-3.789a170.331 170.331 0 0 0 5.967-3.962c9.434-6.58 18.677-13.521 27.542-20.824 2.207-1.826 4.432-3.686 6.57-5.564 2.121-1.877 4.191-3.858 6.312-5.839 2.121-1.981 4.329-3.944 6.726-5.753 2.26-1.619 4.14-3.531 6.105-5.65 1.932-2.084 3.966-4.323 6.277-6.252 2.173-1.843 4.277-3.772 6.381-5.719 4.191-3.927 8.503-7.906 12.917-11.626a411.938 411.938 0 0 1 13.47-10.99l3.449-2.652a39.188 39.188 0 0 1 3.707-2.549c2.553-1.568 5.088-2.86 7.502-4.341l7.795-4.875c2.622-1.636 5.485-3.117 8.261-4.392a255.432 255.432 0 0 1 17.022-7.286c11.503-4.237 23.023-8.474 34.526-12.711a276.348 276.348 0 0 0 8.778-3.583c2.897-1.206 5.708-2.584 8.606-3.962a125.47 125.47 0 0 1 4.38-1.998l4.398-1.843c2.862-1.257 5.69-2.635 8.52-4.065 5.638-2.894 11.381-5.753 17.176-8.406a222.709 222.709 0 0 1 8.778-3.858 158.95 158.95 0 0 1 4.449-1.791c1.466-.569 3.036-1.189 4.622-1.619l4.519-1.206a28.104 28.104 0 0 0 2.121-.689l2.242-.792c3.018-1.017 6.105-1.843 9.278-2.343 3.156-.499 6.398-.723 9.606-.482 3.208.224 6.364.861 9.416 1.688 6.226 1.585 11.969 4.84 16.798 8.957 4.915 4.047 8.881 9.146 12.382 14.296 3.053 4.478 6.209 8.94 9.037 13.625 2.863 4.65 5.501 9.439 8.002 14.279 2.501 4.84 4.863 9.783 6.915 14.847 1.966 5.099 3.984 10.042 5.933 15.261 1.535 4.444 2.535 9.009 3.708 13.453l.914 3.324c.328 1.154.586 2.325.793 3.479.414 2.326.621 4.668.862 6.959.225 2.291.466 4.565.914 6.769.535 2.308.639 4.789.656 7.08l.069 3.445c.034 1.119.155 2.239.224 3.427.138 2.36.138 4.72 0 7.062a71.256 71.256 0 0 1-.431 4.72 29.027 29.027 0 0 0-.345 4.53c0 3.031.293 6.304-.552 9.577-.19.809-.535 1.653-.69 2.256-.189.672-.293 1.378-.362 2.102-.138 1.464-.086 2.979-.017 4.53.138 3.152 0 6.373-.328 9.49-.362 3.618-.931 7.183-1.328 10.748a69.438 69.438 0 0 0-.431 5.306c-.052.878-.052 1.757-.052 2.652l.035 1.327c0 .258 0 .361.034.637.035.31 0 .706-.103 1.033-1.173 3.721-.742 7.734-.983 11.92a28.96 28.96 0 0 1-.362 3.169c-.087.517-.224 1.068-.328 1.567-.121.466-.207.948-.31 1.43-.345 1.929-.483 3.927-.57 5.943l-.189 6.08c0 .982.052 2.015 0 3.1-.052 1.068-.155 2.257-.759 3.428-1.914 3.341-1.932 7.389-2.742 11.54-.811 3.928-2.087 7.717-3.57 11.386a168.22 168.22 0 0 1-4.846 10.817 97.983 97.983 0 0 1-13.107 19.774c-3.915 4.754-7.985 9.421-12.331 13.831-4.328 4.444-9.036 8.526-13.848 12.384-9.554 7.751-19.522 14.968-29.37 22.151l-7.26 5.047c-2.432 1.671-4.829 3.341-7.14 5.133a300.87 300.87 0 0 0-13.607 11.092c-4.346 3.876-8.364 8.148-12.417 12.402-4.156 4.134-7.622 8.767-10.778 13.728-4.105 6.115-6.95 12.867-9.865 19.688-.741 1.722-1.535 3.376-2.121 5.064-.604 1.705-1.087 3.462-1.518 5.236l-1.293 5.408c-.466 1.826-.949 3.566-1.363 5.357-.81 3.566-1.431 7.183-1.724 10.817-.293 3.669-.5 7.355-.638 11.024a197.075 197.075 0 0 0-.12 5.512V703.19l.034.982c.017.62.051 1.24.224 1.825.241.827.138 1.585-.155 2.377-.07.19-.121.328-.173.552-.052.241-.12.413-.172.568a1.634 1.634 0 0 1-.138.327c-.035.052-.104.052-.087.138 0 .103.345.189.414.5.052.378-.172.826-1.034.62-.483-.121-.863-.776-.914-1.137-.087-.379-.104-.638-.138-.81a18.58 18.58 0 0 1-.587-2.549c-.138-.93-.224-1.877-.19-2.808l.035-.93.086-4.53c.052-1.757.12-3.496.224-5.236.207-3.497.397-6.942.828-10.507.449-3.531 1.156-6.993 2.018-10.421l1.328-5.029 1.259-5.082c.448-1.705.966-3.427 1.62-5.133.674-1.739 1.432-3.255 2.105-4.84 2.76-6.304 5.553-12.884 9.485-18.774 2.57-4.031 5.329-7.993 8.571-11.627a513.529 513.529 0 0 1 9.865-10.352 127.744 127.744 0 0 1 10.623-9.646c3.656-3.031 7.347-6.046 11.193-8.888l13.572-9.576 13.279-9.836c4.45-3.221 8.813-6.666 13.142-10.059 4.328-3.41 8.554-6.907 12.486-10.713 4.104-3.962 7.967-8.182 11.675-12.54 3.691-4.392 7.381-8.767 10.417-13.538 3.087-4.772 5.708-9.801 8.002-15.037 2.328-5.219 4.432-10.507 5.536-15.985.379-1.895.551-3.91.914-5.994.344-2.067.948-4.289 2.035-6.218.293-.551.431-1.412.448-2.343.034-.93 0-1.929 0-2.997l.155-6.166c.086-2.067.207-4.168.586-6.287.104-.534.207-1.068.328-1.585.104-.516.224-.93.293-1.395.173-.93.259-1.895.311-2.859.103-1.946.069-3.979.12-6.08.052-2.067.294-4.341.914-6.391v-.103c0-.069-.034-.396-.034-.603l-.034-1.223c-.018-.809 0-1.636 0-2.446.051-1.619.155-3.238.327-4.823.311-3.203.759-6.338 1.138-9.439.363-3.1.673-6.2.656-9.249.034-3.015-.483-6.304.396-9.87.104-.413.311-.964.397-1.257.121-.328.224-.655.31-.999.19-.672.294-1.378.38-2.102.155-1.447.155-2.945.121-4.513-.035-1.567-.069-3.203.069-4.909.069-.878.189-1.67.293-2.411l.241-2.308c.276-3.066.345-6.149.138-9.198-.052-.741-.138-1.55-.172-2.394a57.855 57.855 0 0 1-.069-2.429c-.018-1.602 0-3.152-.104-4.65a21.44 21.44 0 0 0-.465-3.48 43.248 43.248 0 0 1-.621-3.841c-.328-2.549-.5-5.047-.794-7.493-.293-2.48-.707-4.702-1.448-7.096-.69-2.446-1.294-4.909-1.897-7.321-.621-2.411-1.242-4.805-2.001-7.13-.724-2.343-1.69-4.531-2.587-6.908-1.862-4.65-3.535-9.421-5.587-13.917-4.087-9.043-8.796-17.896-14.09-26.285a185.795 185.795 0 0 0-4.122-6.218l-4.259-6.183c-2.863-4.065-5.881-7.906-9.503-11.127-4.88-4.462-10.572-7.924-16.866-9.594-3.208-.862-6.45-1.516-9.692-1.688-3.225-.19-6.502.103-9.727.723-3.225.62-6.398 1.567-9.52 2.739-3.363 1.309-6.795 1.808-9.744 2.98-6.294 2.394-12.468 5.167-18.573 8.078-7.071 3.272-13.849 7.096-21.11 10.369-1.81.827-3.69 1.55-5.414 2.291-1.76.758-3.518 1.602-5.278 2.446a184.339 184.339 0 0 1-10.795 4.823c-4.346 1.808-8.761 3.513-13.228 5.046l-13.193 4.806-13.158 4.823c-4.364 1.654-8.675 3.41-12.918 5.322a210.688 210.688 0 0 0-6.329 2.946c-2.086.982-4.052 2.084-6.053 3.29-3.932 2.394-7.864 5.081-12.02 7.355-2.035 1.154-4.019 2.29-5.83 3.599-1.827 1.361-3.69 2.825-5.518 4.255a412.559 412.559 0 0 0-10.848 8.853 296.642 296.642 0 0 0-12.33 10.921c-2.018 1.877-4.053 3.755-6.14 5.58l-3.139 2.705c-1 .878-1.948 1.825-2.897 2.79-1.88 1.964-3.725 4.048-5.812 5.977-1.017.947-2.242 1.895-3.294 2.67a62.38 62.38 0 0 0-3.156 2.566c-4.104 3.548-8.019 7.545-12.313 11.058-10.468 8.819-21.385 17.053-32.681 24.821a175.558 175.558 0 0 1-8.674 5.529c-2.915 1.722-5.743 3.566-8.33 5.701-.656.534-1.276 1.086-1.897 1.637l-.914.861a9.36 9.36 0 0 1-.552.517c-.242.189-.483.31-.707.43-.466.224-.862.362-1.207.517-.173.069-.311.155-.432.224l-.5.344-2.086 1.499-8.313 5.977c-5.725 4.117-11.468 8.216-17.142 12.419l-8.537 6.27c-2.863 2.066-5.639 4.237-8.64 6.166-5.95 3.893-12.038 7.372-17.642 11.592-5.743 4.203-11.796 7.889-17.729 11.678l-7.571 4.892c-2.587 1.585-5.243 3.032-7.899 4.444-2.673 1.412-5.311 2.739-7.864 4.254-2.552 1.482-5.242 3.049-7.95 4.324l-16.125 7.958c-5.346 2.583-10.589 5.58-16.349 7.768-3.725 1.274-7.139 3.152-10.934 4.754-1.879.792-3.863 1.498-5.932 1.946-.397.086-.448.121-.776.362-.276.207-.621.568-1.121.964-.431.397-1.363.793-1.708.896l-1.379.534c-7.312 2.894-14.28 6.735-21.143 10.748l-10.124 6.304c-3.363 2.119-6.777 4.151-10.071 6.408l-9.968 6.631-5.002 3.359c-1.672 1.102-3.311 2.188-4.863 3.342-.655.499-1.293.999-1.914 1.533l-1.983 1.67c-1.328 1.103-2.691 2.154-4.053 3.204l-8.209 6.098c-5.433 4.065-10.848 8.233-16.573 12.04-1.432.947-2.88 1.877-4.346 2.79-1.518.913-2.846 1.705-4.208 2.67-2.708 1.895-5.398 4.082-8.52 5.873l-1.983 1.189-.379.189-.19.086-.104.035h.018s-.035-.052-.069-.069c0-.069-.156.086-.345.327-.207.224-.449.552-.863.862-.413.327-1.034.551-1.534.534-.138 0-.242 0-.362-.018h-.173l-.035-.034-.603-.19v-.017l-.069-.052c-.173-.155-.362-.327-.5-.551-.311-.448-.397-.999-.38-1.36.018-.379.121-.672.19-.913.069-.207.155-.483.397-.5v-.103Z%27/%3E%3Cpath d=%27M70.426 710.099c-.017.396-.172.671-.464.86a1.186 1.186 0 0 1-.601.172c-.258 0-.636-.121-.911-.396-.533-.55-.584-1.186-.688-1.581-.085-.396-.189-.774-.326-1.066a3.984 3.984 0 0 1-.412-1.531l-.052-1.805v-1.358l.052-2.27.103-2.458c.326-6.534 1.22-13.016 1.598-19.343.086-1.616.172-3.301.464-5.02.155-.86.36-1.737.67-2.613.327-.894.55-1.462.79-2.236.929-2.922 1.393-6.069 2.08-9.318 1.375-6.517 3.798-12.689 6.41-18.655 2.647-6.121 6.29-11.657 10.036-16.987 7.459-10.9 17.255-19.841 27.205-28.162 7.304-6.052 15.14-11.348 22.788-16.729l11.428-8.116a207.572 207.572 0 0 0 5.688-4.143l5.637-4.195c3.746-2.803 7.458-5.622 10.999-8.614 3.488-2.975 7.028-6.19 10.448-9.302 6.909-6.172 12.442-13.548 17.615-21.319 2.63-3.886 4.984-7.737 6.874-11.932a61.368 61.368 0 0 0 2.475-6.379l1.048-3.404c.464-1.29 1.031-2.339 1.392-3.284a7.13 7.13 0 0 0 .378-1.341l.189-1.702c.155-1.204.327-2.39.55-3.577.413-2.355.911-4.659 1.341-6.928.429-2.287.825-4.505.962-6.757.172-2.27.206-4.643.447-7.067.12-1.221.292-2.441.567-3.679.309-1.324.567-2.218.705-3.318.309-2.132.292-4.402.24-6.723-.051-2.321-.137-4.745 0-7.17.138-2.303.207-4.642.275-6.98.121-4.677.189-9.388.533-14.133.172-2.373.412-4.745.756-7.135.395-2.459.791-4.505.859-6.791.138-2.717.069-5.502.069-8.339l.12-8.459c.086-5.605.121-11.176-.343-16.643-.241-2.734-.602-5.45-1.134-8.133-.602-2.716-1.049-5.673-1.427-8.407-.395-2.768-.808-5.468-1.529-8.029-.774-2.545-1.736-5.279-2.595-7.892-1.822-5.278-3.369-10.677-5.534-15.766-2.114-5.124-4.485-10.144-7.166-14.993-2.664-4.831-5.671-9.594-8.593-14.339-2.973-4.711-6.049-9.353-9.469-13.686-3.626-4.59-7.751-8.562-12.889-11.261-5.035-2.854-10.5-4.832-16.154-4.522-3.008.103-5.964.086-8.833.361a34.24 34.24 0 0 0-4.211.653c-1.375.293-2.664.74-4.142 1.221l-8.506 2.682c-1.392.464-2.784.946-4.142 1.462-.67.257-1.375.533-1.942.79-.601.293-1.237.654-1.925 1.015-.721.378-1.495.756-2.388 1.031-.413.138-.98.258-1.341.31-.344.069-.687.12-1.031.206-1.358.327-2.715.843-4.056 1.462-2.663 1.22-5.396 2.871-8.283 4.126-5.568 2.579-11.136 5.364-16.996 7.634-2.922 1.066-5.671 2.252-8.593 3.421-2.87 1.169-5.98 2.218-9.005 2.906-1.495.361-2.956.739-4.33 1.203-.723.241-1.307.482-2.063.809-.756.326-1.512.584-2.269.842-3.041 1.014-6.1 1.616-8.987 2.442-1.375.395-2.905.928-4.4 1.272l-4.434 1.031c-1.46.344-2.852.723-4.21 1.238a107.637 107.637 0 0 1-4.348 1.479c-2.887.928-5.757 1.822-8.507 2.923-1.392.55-2.663 1.169-4.038 1.857-1.41.705-2.836 1.289-4.262 1.856-2.853 1.101-5.689 2.064-8.3 3.405-1.341.653-2.407 1.444-3.867 2.304-1.392.791-2.819 1.375-4.142 2.028-.67.327-1.306.671-1.908 1.032l-1.942 1.204c-1.323.79-2.646 1.547-3.952 2.286-2.63 1.496-5.225 2.992-7.579 4.797-8.404 6.344-16.601 13.015-24.438 20.047-7.836 7.05-15.294 14.563-23.217 21.612-3.368 2.992-6.616 6.138-10.088 9.027l-10.431 8.596-5.224 4.299c-1.805 1.444-3.712 2.699-5.551 3.971-3.626 2.562-7.235 5.313-10.861 7.961-4.864 3.61-9.762 7.169-14.591 10.849-2.423 1.822-4.829 3.748-7.269 5.502-2.441 1.736-4.829 3.576-7.184 5.467-8.764 7.324-18.182 13.944-26.912 21.234l-13.215 10.986-13.714 10.368c-12.322 9.112-25.194 17.33-38.53 24.861-2.595 1.479-5.138 3.06-7.802 4.488-2.664 1.409-5.362 2.733-8.06 4.023-5.43 2.596-10.861 5.003-16.292 7.444a101.084 101.084 0 0 1-8.352 3.525c-1.392.533-2.766 1.066-4.107 1.651-1.358.567-2.578 1.237-4.021 1.908-2.801 1.272-5.671 2.149-8.352 3.25a3511.147 3511.147 0 0 0-8.181 3.404c-2.646 1.1-5.31 2.201-7.956 3.284-2.63 1.066-5.156 2.286-7.699 3.593a317.491 317.491 0 0 1-7.665 3.817c-2.458 1.289-4.795 2.923-7.338 4.367-2.612 1.376-5.035 2.613-7.459 4.144-2.406 1.478-4.691 3.146-7.046 4.779-4.674 3.267-9.331 6.568-13.799 10.11-2.836 2.269-5.758 4.384-8.627 6.533-2.905 2.132-5.62 4.402-8.456 6.637l-16.944 13.428a129.621 129.621 0 0 1-8.816 6.379l-8.937 6.086-5.534 3.782a8.186 8.186 0 0 1-.996.568c-.619.309-1.238.533-1.736.877-.722.481-1.323.601-2.028.67-.618.069-1.168.344-1.684.757-.172.12-.361.43-.687.326-.43-.103-.516-.515-.396-1.031.121-.516.516-1.049.808-1.41.687-.877 1.616-1.496 2.475-1.926.876-.447 1.701-.791 2.32-1.083.223-.103.361-.172.653-.361l7.819-5.261 8.387-5.622c2.749-1.84 5.396-3.851 8.059-5.915l15.914-12.465c2.629-2.063 5.328-4.281 8.06-6.258 2.732-2.012 5.465-3.989 8.094-6.035 3.609-2.871 7.39-5.622 11.154-8.27 3.798-2.613 7.475-5.364 11.497-7.84 1.976-1.221 4.141-2.373 6.118-3.37 1.941-1.049 3.832-2.338 5.842-3.542a42.866 42.866 0 0 1 3.163-1.719l3.059-1.513 6.169-3.146c2.423-1.221 5.001-2.287 7.441-3.301l7.424-3.112 7.493-3.112c2.561-.98 5.087-1.806 7.442-2.872 1.117-.515 2.388-1.203 3.66-1.736a79.448 79.448 0 0 1 3.798-1.53c2.526-.963 5.018-1.874 7.355-2.992 4.881-2.201 9.865-4.35 14.711-6.619 5.052-2.373 10.088-4.711 14.865-7.583l14.436-8.441c9.521-5.812 18.852-11.984 27.771-18.638l12.03-9.164c4.039-3.06 7.63-6.413 11.635-9.628 7.733-6.637 15.844-12.654 23.767-18.913 3.918-3.163 7.802-6.43 11.926-9.473 4.228-2.975 8.009-6.104 12.099-9.095l12.202-9.027 6.1-4.504c1.994-1.513 4.194-3.026 6.239-4.402.98-.688 1.959-1.375 2.87-2.097l2.818-2.304 5.637-4.625 5.636-4.625c1.89-1.531 3.781-3.078 5.534-4.746l10.793-9.783 10.637-10.023a358.386 358.386 0 0 1 22.1-19.377c3.833-3.095 7.63-6.086 11.618-9.061 4.159-2.974 8.558-5.037 12.58-7.685 1.546-.963 3.127-1.634 4.554-2.339a20.272 20.272 0 0 0 2.027-1.1c.55-.344 1.393-.946 2.132-1.358 3.041-1.788 6.272-2.906 9.314-4.092 1.53-.585 3.007-1.204 4.4-1.909 1.426-.739 3.058-1.53 4.605-2.149 3.162-1.289 6.359-2.252 9.452-3.301l4.709-1.633c1.667-.533 3.317-.911 4.915-1.29 1.615-.378 3.18-.739 4.674-1.22a64.96 64.96 0 0 1 4.846-1.393c3.266-.825 6.239-1.547 9.229-2.923 3.3-1.341 6.685-1.84 9.64-2.802 3.507-1.118 6.927-2.683 10.518-4.092a133.532 133.532 0 0 0 10.45-4.35l10.327-4.832c3.3-1.513 6.582-3.679 10.501-4.917a20.807 20.807 0 0 1 1.787-.481l.911-.172c.24-.035.429-.086.653-.138.859-.24 1.77-.739 2.784-1.289.979-.568 2.251-1.101 3.282-1.496 1.083-.413 2.183-.808 3.265-1.186 2.183-.74 4.383-1.41 6.548-2.081l3.248-1.014c1.048-.327 2.165-.722 3.351-1.015 4.675-1.203 9.418-1.151 13.92-1.272 2.269-.103 4.812 0 7.132.499 2.355.464 4.623 1.238 6.806 2.183 2.165.946 4.227 2.063 6.221 3.267 2.028 1.186 3.97 2.631 5.722 4.195 3.523 3.147 6.462 6.809 9.16 10.522 2.715 3.714 5.207 7.565 7.63 11.451 2.389 3.903 4.812 7.737 7.081 11.743 5.31 9.422 9.641 19.463 12.665 29.744l2.509 7.669c.877 2.493 1.65 5.243 2.08 7.926.464 2.682.773 5.347 1.186 7.977.395 2.579 1.048 5.227 1.409 7.926.962 6.671 1.014 13.377.894 20.013l-.172 9.938c-.018 3.301.086 6.637-.189 10.024-.121 1.685-.43 3.421-.705 5.003a92.28 92.28 0 0 0-.636 4.883c-.326 3.266-.498 6.568-.601 9.869l-.292 9.955-.241 4.968c-.069 1.617-.034 3.25 0 4.918.069 3.404.206 6.98-.687 10.505-.877 3.215-.98 6.55-1.152 10.006-.258 7.049-2.509 13.686-3.11 20.357-.189 2.012-1.186 3.645-1.771 5.106-.154.379-.257.722-.378 1.118l-.36 1.255a60.917 60.917 0 0 1-.808 2.493 65.713 65.713 0 0 1-4.176 9.559c-1.616 3.095-3.54 6.001-5.431 8.855a169.829 169.829 0 0 1-5.963 8.442c-1.787 2.338-3.609 4.625-5.603 6.826-1.976 2.2-4.09 4.263-6.238 6.258l-6.479 5.88a141.276 141.276 0 0 1-6.668 5.743c-9.177 7.307-18.508 14.132-28.063 20.907-6.307 4.59-12.769 8.837-18.921 13.496-6.17 4.608-12.03 9.663-17.667 14.907-5.602 5.278-10.826 10.917-15.209 17.21-4.485 6.327-8.592 12.706-11.36 19.893-2.56 6.069-4.588 12.173-5.653 18.654-.31 1.634-.636 3.301-1.1 4.952a34.572 34.572 0 0 1-.774 2.493c-.326.894-.55 1.444-.721 2.201-.688 2.871-.533 6.258-.894 9.628-.567 6.619-1.323 13.153-1.358 19.617v.551l.018.223.034.447.086.877c.103 1.032-.12 1.994-.24 2.974-.052.447-.155 1.118-.224 1.324a.2.2 0 0 1-.052.121c-.137.051-.326.206-.309.189-.017.034.017-.017.034-.052.035-.069.052-.155.052-.103 0 .034.069.086.138.12.12.069.532.155.515.396l.206.034Z%27/%3E%3Cpath d=%27M46.52 709.963c.035.378-.086.686-.413.909-.31.224-.843.344-1.377.189-.551-.12-1.016-.566-1.274-1.098-.259-.515-.362-1.133-.483-1.562-.172-.6-.292-1.046-.258-1.561.035-.567.035-1.15.052-1.733v-3.364l-.035-2.248c-.12-6.006-.482-12.201.569-18.448.12-.772.31-1.561.447-2.316.155-.687.293-1.407.396-2.111.224-1.424.345-2.883.414-4.342.069-1.475.069-2.917.051-4.461 0-1.579.017-3.209.517-4.994.069-.223.138-.446.224-.686l.24-.584c.138-.309.259-.635.397-.961.24-.652.465-1.321.637-2.025.379-1.373.637-2.814.912-4.307.483-2.969 1.154-6.109 2.067-9.044.895-2.968 1.946-5.851 3.048-8.7l1.653-4.239a43.914 43.914 0 0 1 1.928-4.307c1.412-2.78 3.03-5.388 4.546-7.997l2.325-3.964c.843-1.321 1.722-2.625 2.686-3.861 3.77-4.994 8.3-9.215 12.57-13.471 1.567-1.527 3.013-3.106 4.7-4.702 1.654-1.562 3.41-2.986 5.184-4.342 3.547-2.728 7.18-5.199 10.572-7.859 3.616-2.609 7.095-5.2 10.814-7.808 1.894-1.253 3.805-2.386 5.648-3.518.93-.566 1.825-1.15 2.703-1.75l2.686-1.888 21.559-15.222c1.773-1.269 3.53-2.539 5.183-3.895 1.653-1.321 3.271-2.831 4.89-4.29l4.873-4.376c1.619-1.459 3.272-2.9 4.77-4.462a121.987 121.987 0 0 0 8.627-9.73c2.703-3.415 5.32-6.847 7.232-10.588.981-1.87 1.79-3.81 2.41-5.8.327-.995.517-1.939.913-3.192.379-1.15.844-2.214 1.291-3.226.448-1.013.879-1.974 1.223-2.917.361-.961.516-1.785.706-2.901.379-2.11.654-4.238.826-6.366.19-2.145.259-4.256.259-6.435v-6.59c.017-4.376-.035-8.718-.396-13.008-.81-8.94-.19-17.727-.241-26.496.086-5.371.602-10.656 1.067-15.89.465-5.2.792-10.468 1.068-15.668.241-5.199.241-10.348-.448-15.393-.31-2.522-.947-4.942-1.464-7.636-.499-2.626-.895-5.165-1.532-7.602a31.233 31.233 0 0 0-1.137-3.535 79 79 0 0 1-1.343-3.81c-.826-2.505-1.618-4.908-2.755-7.036-.551-1.064-1.239-2.025-1.997-3.175l-2.204-3.312-2.204-3.311c-.706-1.099-1.361-2.146-2.101-3.158a30.099 30.099 0 0 0-5.131-5.44c-1.981-1.699-3.961-3.363-6.044-4.822-2.067-1.459-4.253-2.729-6.544-3.672-1.136-.481-2.324-.841-3.616-1.253l-3.736-1.201c-2.617-.807-5.235-1.476-7.835-1.665a48.988 48.988 0 0 0-8.093.155c-2.703.274-5.321.806-8.007 1.544-2.927.755-5.768.927-8.403 1.407-1.326.206-2.514.601-4.029.927-1.446.309-2.858.515-4.253.721-2.79.377-5.476.72-7.955 1.51-2.945.961-5.89 1.046-8.524 1.458-1.343.172-2.48.515-3.995.858a41.68 41.68 0 0 1-4.304.687c-2.98.326-5.941.377-8.868.394-2.635-.068-5.252.841-8.317 1.373-1.481.275-3.238.344-4.718.189-1.412-.12-2.824-.189-3.616.12a.924.924 0 0 0-.224.103l-.104.069-.275.189c-.362.257-.74.48-1.136.686a9.53 9.53 0 0 1-2.48.807c-1.67.291-3.237.188-4.632.171-5.441-.086-10.883 2.094-16.754 3.175-2.79.532-5.545 1.218-8.214 2.128a42.806 42.806 0 0 0-3.891 1.561c-1.378.635-2.755 1.167-4.15 1.665-2.72.978-5.424 1.802-7.955 2.883-2.549 1.081-5.028 2.402-7.456 3.81-4.839 2.865-9.695 5.886-14.327 9.077a115.585 115.585 0 0 0-6.784 5.028c-2.187 1.734-4.288 3.656-6.526 5.458-4.425 3.62-9.006 7.001-13.345 10.622-3.771 3.157-7.439 6.504-11.244 9.713-3.823 3.209-7.714 6.281-11.554 9.421l-5.786 4.685c-1.928 1.561-3.926 3.037-5.889 4.547l-11.83 9.044c-6.663 5.217-13.568 10.056-20.06 15.393-3.254 2.625-6.388 5.474-9.66 8.168-3.237 2.712-6.474 5.389-9.47 8.289-.999.978-1.998 1.973-2.927 3.003-.947 1.03-1.963 2.128-2.997 3.123-2.066 2.008-4.253 3.861-6.388 5.732-2.152 1.87-4.167 3.741-6.13 5.8l-5.958 6.092c-1.859 1.888-3.754 3.895-5.82 5.68-2.032 1.802-4.098 3.484-5.94 5.32-.947.909-1.74 1.87-2.721 2.917a42.113 42.113 0 0 1-2.996 2.832c-2.066 1.784-4.202 3.415-6.182 5.148-.964.841-1.946 1.819-3.013 2.694a63.511 63.511 0 0 1-3.203 2.54c-2.187 1.63-4.425 3.123-6.629 4.65-4.374 3.003-8.679 6.315-13.19 9.267-2.996 1.991-6.061 3.895-9.23 5.646-3.168 1.767-6.388 3.277-9.315 5.182-3.083 1.957-6.337 3.57-9.557 5.148-1.601.79-3.203 1.579-4.77 2.403l-2.342 1.27c-.843.463-1.704.841-2.565 1.184-2.686 1.064-5.373 1.785-7.542 3.175-2.514 1.647-5.373 2.488-7.869 3.483-.637.258-1.257.515-1.843.807-.292.137-.585.309-.861.463l-.947.532a53.904 53.904 0 0 1-3.857 1.905c-2.6 1.167-5.234 2.179-7.835 3.209-2.617.995-5.01 2.179-7.559 3.449-2.497 1.236-5.269 2.437-7.99 3.106-2.565.772-5.062 1.905-7.455 3.192-2.377 1.304-4.787 2.78-7.181 4.153-4.666 2.728-9.333 5.337-13.758 8.306-4.442 2.934-8.782 6.092-13.018 9.301-.998.772-1.911 1.733-2.91 2.659-.499.464-1.033.927-1.636 1.339-.637.446-1.17.704-1.721 1.081-2.17 1.424-4.133 3.209-6.148 4.977-4.098 3.535-8.007 7.121-12.001 10.708-5.063 4.427-9.833 9.215-14.947 13.694-5.079 4.547-10.641 8.443-16.013 12.544-5.321 4.17-11.176 7.825-17.185 11a223.08 223.08 0 0 1-4.546 2.317l-.895.429-.224.12c-.276.154-.672.326-.982.463-.62.258-1.222.464-1.687.807-.672.463-1.257.6-1.963.703-.603.086-1.154.412-1.653.841-.155.12-.345.429-.672.361-.43-.086-.551-.498-.448-1.013.104-.515.465-1.064.741-1.441.637-.91 1.55-1.579 2.428-2.042.912-.481 1.808-.807 2.514-1.082l.775-.326 1.549-.737 2.101-1.047a119.26 119.26 0 0 0 4.15-2.18c5.527-2.968 10.659-6.418 15.687-10.279 5.062-3.792 10.228-7.396 14.894-11.549 4.753-4.101 9.23-8.563 14.068-12.733l9.729-8.649 4.856-4.256c1.653-1.441 3.392-2.883 5.355-4.067 1.705-.909 2.962-2.471 4.735-4.015 1.826-1.459 3.479-2.66 5.252-3.982 3.496-2.574 7.06-5.079 10.728-7.43 4.305-2.763 8.695-5.217 13.017-7.808 2.17-1.253 4.305-2.608 6.63-3.81 2.307-1.184 4.701-2.231 7.232-2.968 4.77-1.15 8.937-3.862 13.792-5.818 4.718-1.888 9.454-3.535 13.707-5.972 2.462-1.407 5.08-2.145 7.404-3.106 1.188-.497 2.221-.995 3.306-1.716 1.223-.755 2.514-1.321 3.771-1.802 2.549-.961 4.908-1.664 7.077-2.986 2.342-1.304 4.718-2.471 7.06-3.621 2.359-1.166 4.667-2.333 6.888-3.62 1.119-.635 2.152-1.339 3.34-2.06a79.093 79.093 0 0 1 3.496-1.956 131.489 131.489 0 0 0 13.448-7.928c3.943-2.609 7.663-5.406 11.571-8.203 3.909-2.746 7.869-5.302 11.348-8.323.861-.738 1.67-1.544 2.617-2.385.913-.807 1.842-1.579 2.755-2.334 1.843-1.51 3.651-2.986 5.286-4.565.844-.806 1.516-1.578 2.342-2.522a41.667 41.667 0 0 1 2.583-2.626c1.774-1.664 3.616-3.192 5.338-4.753a46.647 46.647 0 0 0 2.497-2.386l2.479-2.539 4.959-5.097c1.636-1.682 3.307-3.432 5.115-5.079 1.773-1.631 3.598-3.175 5.355-4.72 1.756-1.561 3.478-3.123 5.045-4.787 1.532-1.699 3.272-3.553 5.028-5.166 3.513-3.312 7.249-6.315 10.848-9.352 6.853-6.041 14.206-11.738 21.593-17.144l21.8-16.628c3.598-2.797 7.128-5.732 10.692-8.58 3.565-2.901 7.13-5.681 10.539-8.666 3.443-2.986 6.836-6.058 10.4-9.01 3.564-2.951 7.198-5.731 10.745-8.58 2.428-1.922 4.649-3.913 7.094-5.989a124.928 124.928 0 0 1 7.49-5.715 241.678 241.678 0 0 1 15.79-10.124c2.738-1.562 5.562-3.038 8.576-4.205 2.978-1.149 5.957-2.042 8.712-3.174 1.326-.549 2.79-1.287 4.322-1.854a49.075 49.075 0 0 1 4.563-1.51 61.107 61.107 0 0 1 4.65-1.115c1.601-.309 2.979-.584 4.477-.978 3.41-.841 6.922-1.905 10.693-2.317a26.337 26.337 0 0 1 2.858-.154c.947 0 1.808.051 2.617.017 1.636-.017 2.997-.361 4.099-1.184.482-.378 1.222-.721 1.773-.841a7.284 7.284 0 0 1 1.653-.223c1.033-.052 1.98.051 2.876.103 1.653.171 3.168-.017 4.873-.361 1.67-.343 3.444-.841 5.372-1.064 2.032-.24 3.737-.103 5.51-.188 2.101-.052 4.185-.172 6.234-.429 1.016-.138 2.032-.292 3.03-.515.5-.103.999-.223 1.481-.343a28.64 28.64 0 0 1 1.67-.378c2.239-.412 4.391-.549 6.389-.875a17.52 17.52 0 0 0 2.91-.687c1.085-.343 2.187-.6 3.289-.806 2.186-.412 4.339-.652 6.405-.961a43.84 43.84 0 0 0 3.048-.549c.93-.206 2.066-.549 3.168-.755 2.204-.429 4.357-.635 6.389-.961a30.282 30.282 0 0 0 2.996-.635 51.16 51.16 0 0 1 3.22-.755 50.591 50.591 0 0 1 13.172-.893c4.563.309 8.748 1.819 12.777 3.106 1.997.618 4.236 1.425 6.164 2.454a40.033 40.033 0 0 1 5.597 3.553c1.773 1.304 3.426 2.694 5.062 4.101 1.619 1.338 3.341 2.969 4.701 4.685 1.687 2.008 2.979 4.324 4.374 6.332l4.149 6.229c1.516 2.214 2.532 4.685 3.358 7.088.827 2.436 1.516 4.753 2.445 7.104 1.774 4.994 2.101 10.005 3.272 14.861 1.016 5.028 1.291 10.142 1.205 15.204-.137 6.281-.637 12.442-1.119 18.654-.551 6.195-1.222 12.355-1.274 18.516 0 6.229-.31 12.441-.172 18.602.034 3.089.361 6.109.551 9.267.172 3.123.206 6.246.224 9.369l-.035 9.645a73.294 73.294 0 0 1-.861 9.712l-.413 2.403a15.382 15.382 0 0 1-.672 2.471c-.568 1.596-1.291 3.037-1.894 4.479-.292.721-.568 1.441-.775 2.162-.189.687-.396 1.579-.637 2.334a39.273 39.273 0 0 1-1.756 4.616c-1.36 3.003-3.082 5.818-5.011 8.46a134.638 134.638 0 0 1-6.009 7.637 129.776 129.776 0 0 1-6.578 7.173c-2.273 2.317-4.753 4.376-7.129 6.572-2.049 1.837-4.046 3.69-6.13 5.509-2.118 1.802-4.322 3.466-6.56 5.062l-6.681 4.737a223.523 223.523 0 0 0-3.272 2.402l-3.358 2.385-6.698 4.754c-2.239 1.561-4.443 3.226-6.819 4.685-2.342 1.458-4.683 2.831-6.819 4.358l-6.577 4.805c-2.928 2.077-5.838 4.428-8.8 6.521-2.944 2.145-5.854 4.273-8.506 6.624-1.36 1.184-2.53 2.386-3.84 3.741l-3.891 3.861c-2.6 2.54-5.166 5.08-7.525 7.774s-4.477 5.526-6.216 8.598c-1.825 3.209-3.771 6.263-5.424 9.421-.827 1.578-1.567 3.14-2.204 4.805l-1.963 5.079c-1.274 3.381-2.462 6.761-3.34 10.194-.776 2.917-1.12 5.903-1.809 9.06-.344 1.562-.792 3.158-1.429 4.702l-.24.567c-.053.12-.104.257-.156.394a6.677 6.677 0 0 0-.224.927c-.12.652-.172 1.356-.19 2.094-.034 1.424.035 3.037 0 4.633a49.656 49.656 0 0 1-.326 4.77 38.512 38.512 0 0 1-.362 2.403l-.465 2.282c-.293 1.459-.465 2.935-.602 4.428-.517 5.989.051 12.115.034 18.396V703.974l.017.223.035.463.051.927c.035.549-.034 1.064-.137 1.579-.104.463-.259 1.132-.345 1.338-.086.138-.19.292-.172.532.017.223.19.412.448.532.086.052.413.103.447.361l.173.034Z%27/%3E%3Cpath d=%27M-415.224 678.07c-.774-.052-1.084-.706-1.256-1.514-.086-.396-.138-.826-.206-1.238-.035-.207-.069-.413-.104-.602-.034-.121-.086-.207-.154-.327a2.258 2.258 0 0 1-.31-.705c-.104-.43-.138-.946-.017-1.393a2.81 2.81 0 0 1 .774-1.376c.344-.379.963-.671 1.204-.774l5.025-2.477c5.317-2.769 10.944-4.782 15.418-8.067l14.334-10.354c4.663-3.509 9.12-7.31 13.474-11.232 4.37-3.939 8.672-7.929 12.871-12.057l12.63-12.418a272.464 272.464 0 0 1 6.487-6.089l1.67-1.497.808-.722c.138-.12.293-.31.499-.585.413-.516.809-1.324 1.945-2.081l.998-.568.895-.55c3.458-2.167 6.59-5.005 9.911-7.757 3.356-2.786 6.9-5.315 10.531-7.671 7.296-4.679 14.781-8.824 22.439-12.797 3.837-1.961 7.743-3.818 11.735-5.487a176.403 176.403 0 0 0 11.65-5.16c3.82-1.84 7.623-3.801 11.443-5.727l11.477-5.745c3.803-1.926 7.555-3.904 11.168-6.054 3.631-2.322 7.726-4.163 11.288-6.158 1.79-1.032 3.545-2.184 5.335-3.354 1.772-1.187 3.699-2.339 5.437-3.423 3.528-2.27 6.935-4.781 10.273-7.396 6.677-5.297 13.422-10.56 19.772-16.168 3.183-2.786 6.212-5.71 9.223-8.772l9.051-9.047c7.279-7.172 14.403-14.602 21.596-21.912l5.386-5.487a150.065 150.065 0 0 1 5.661-5.315c3.837-3.457 7.795-6.742 11.787-9.976l6.005-4.799c.964-.791 2.083-1.616 2.891-2.339.878-.791 1.773-1.737 2.891-2.649.551-.447 1.188-.911 1.841-1.272.534-.293 1.05-.602 1.566-.929a51.037 51.037 0 0 0 3.063-2.081c2.014-1.462 4.01-3.062 6.092-4.627 4.112-2.976 7.967-6.278 12.183-9.357 4.25-2.907 8.087-6.02 12.08-9.305 2.116-1.72 4.25-3.44 6.47-5.074 2.133-1.548 4.13-3.302 6.143-5.108 2.013-1.789 4.06-3.681 6.194-5.384l6.316-5.143 12.647-10.32c2.151-1.737 4.405-3.422 6.849-4.85l6.934-4.231c4.732-2.907 9.67-6.037 15.091-8.119 5.231-2.098 10.549-4.179 16.124-5.641 2.805-.74 5.575-1.204 8.346-1.806l4.164-.86a27.174 27.174 0 0 1 4.319-.637c1.428-.103 2.77-.189 4.044-.429.568-.104 1.394-.31 2.099-.413.74-.121 1.463-.207 2.185-.276l4.182-.378a25.628 25.628 0 0 0 1.996-.292 35.402 35.402 0 0 1 2.168-.344c2.89-.344 5.713-.275 8.466-.258 1.377 0 2.736 0 4.061-.052l4.164-.189c5.576-.189 11.117-.069 16.623-.052 5.506 0 10.996-.086 16.433-.67a67.72 67.72 0 0 1 16.795.103c2.426.309 4.818.843 7.158 1.29l7.107 1.393c2.374.482 4.732.997 7.089 1.617.551.154 1.153.241 1.859.516.722.309 1.135.584 1.703.894a58.605 58.605 0 0 1 3.149 1.909c4.096 2.701 7.812 6.02 10.824 9.959 2.994 3.973 5.007 8.566 6.453 13.21a91.372 91.372 0 0 1 1.686 5.985c.499 2.064.774 4.162.895 6.261.241 4.197-.086 8.325-.276 12.401-.12 1.961.138 3.99-.051 6.209a9.92 9.92 0 0 1-.293 1.686 6.472 6.472 0 0 1-.292.86l-.344.739a10.216 10.216 0 0 0-.826 2.666c-.344 1.875-.241 3.888-.31 5.986-.017 1.066-.155 2.133-.224 3.113-.069 1.015-.137 2.012-.172 3.027-.224 5.453.052 10.957.155 16.512.103 2.787-.138 5.607.465 7.981.068.292.172.568.275.826l.413.98c.258.688.499 1.393.688 2.098.379 1.411.602 2.821.809 4.197.189 1.307.344 2.58.568 3.818.103.62.241 1.222.396 1.824.154.636.327 1.307.464 1.96.568 2.632.826 5.298.964 7.93.138 2.631.172 5.263.206 7.86.052 2.563.155 5.263-.068 7.912-.396 5.315-1.652 10.561-3.631 15.497-1.979 4.936-4.612 9.563-7.658 13.898a86.864 86.864 0 0 1-6.642 8.204 94.827 94.827 0 0 1-3.665 3.784l-1.858 1.789c-.534.55-1.016 1.221-1.549 1.926-.534.705-1.119 1.479-1.996 2.133a5.261 5.261 0 0 1-.74.43l-.568.275c-.379.172-.723.378-1.084.568-1.428.825-2.753 1.84-4.061 2.941l-3.923 3.44c-1.343 1.169-2.788 2.219-4.182 3.251-2.202 1.616-4.405 3.182-6.453 4.884-2.082 1.772-4.302 3.458-6.556 5.04-4.525 3.148-9.12 6.02-13.611 9.099-4.525 3.027-9.034 6.054-13.542 9.064-1.101.688-1.962 1.565-3.115 2.494-1.239.946-2.323 1.531-3.459 2.322a97.31 97.31 0 0 0-6.504 4.678 68.264 68.264 0 0 0-5.799 5.092c-1.79 1.806-3.58 3.749-5.369 5.624l-5.351 5.676c-1.687 1.892-3.132 3.99-4.457 6.192a173.433 173.433 0 0 0-3.82 6.742c-1.188 2.288-2.271 4.627-3.321 7.001-2.203 4.73-3.906 9.546-5.42 14.551-.964 3.13-1.928 6.295-3.03 9.408-1.032 2.924-1.1 6.209-1.651 9.529-.138.825-.293 1.668-.534 2.494-.223.86-.498 1.599-.67 2.356-.38 1.514-.586 3.113-.74 4.73-.173 1.617-.293 3.268-.534 4.937-.275 1.702-.568 3.216-.757 4.85-.396 3.199-.55 6.433-.361 9.632.068 1.548.43 3.285.051 5.177a33.919 33.919 0 0 0-.62 4.73 33.878 33.878 0 0 0 .035 4.764l.086.929.035.241.154.946c.104.585.224 1.187.5 1.72.172.361.292.705.326 1.29.035.619-.103 1.342-.447 1.823-.55.929-1.72 1.307-2.633.998-.292-.069-.74-.207-.705-.516.017-.447.378-.619.585-.774.224-.138.43-.275.482-.465.051-.206-.035-.43-.12-.55-.052-.086-.087-.069-.139-.189-.051-.121-.12-.258-.189-.482-.31-.911-.55-1.875-.654-2.855l-.086-.963-.12-1.755a37.926 37.926 0 0 1-.034-2.425c.017-1.617.172-3.233.412-4.833.104-.774.276-1.634.413-2.339.104-.533.104-1.187.07-1.875-.104-1.41-.242-3.13-.242-4.696-.017-3.182.258-6.346.757-9.459l.396-2.322c.138-.706.241-1.445.327-2.185l.5-4.592c.189-1.565.447-3.182.911-4.782.258-.86.465-1.427.637-2.15.172-.688.31-1.41.43-2.133.482-2.906.602-6.106 1.686-9.322 1.05-2.924 1.962-5.779 2.891-8.737 1.257-4.008 2.547-8.067 4.233-12.006 1.687-3.87 3.373-7.74 5.37-11.541 2.064-3.715 4.043-7.448 6.71-10.939 1.36-1.772 2.856-3.234 4.267-4.782l4.32-4.609c1.669-1.772 3.355-3.647 5.214-5.332a76.24 76.24 0 0 1 5.73-4.816 113.797 113.797 0 0 1 6.091-4.283l1.566-1.015a13.25 13.25 0 0 0 1.342-.98l1.411-1.187a13.704 13.704 0 0 1 1.583-1.153c8.174-5.383 16.348-10.904 24.538-16.219 2.1-1.41 4.182-2.855 6.161-4.386 1.961-1.496 3.906-3.268 6.005-4.782 2.065-1.548 4.147-3.01 6.109-4.558 1.927-1.53 3.751-3.302 5.782-4.988a29.983 29.983 0 0 1 3.235-2.356c.585-.361 1.17-.688 1.789-.998.74-.361.947-.43 1.325-.774.723-.653 1.411-1.737 2.289-2.803.981-1.17 1.91-1.892 2.787-2.821 3.58-3.543 6.883-7.344 9.757-11.438 5.197-7.379 9.068-15.755 10.307-24.63.327-2.219.482-4.438.499-6.674l-.137-6.862c-.103-4.576-.258-9.116-1.256-13.416-.241-1.015-.585-2.254-.792-3.44-.224-1.187-.379-2.357-.533-3.475-.31-2.253-.689-4.386-1.515-6.295-.172-.378-.533-1.221-.671-1.84a16.378 16.378 0 0 1-.361-1.927c-.138-1.255-.155-2.459-.172-3.629 0-2.287-.069-4.575-.121-6.88-.12-4.609-.258-9.253 0-13.949.052-1.17.155-2.356.258-3.526.104-1.049.104-2.133.121-3.302 0-2.305.086-4.937 1.153-7.431.12-.292.275-.584.413-.877.086-.206.155-.344.224-.533a6.67 6.67 0 0 0 .275-1.273c.103-.946.086-1.995.069-3.096-.035-1.083-.052-2.322.017-3.457l.172-3.337c.241-4.403.361-8.755-.413-12.883-.396-1.995-1.032-4.213-1.635-6.26a55.543 55.543 0 0 0-2.185-6.089c-1.669-3.973-3.958-7.482-6.969-10.544-2.96-3.078-6.401-5.676-10.153-7.791l-1.359-.757c-.293-.138-.654-.241-1.239-.378l-3.218-.792c-2.134-.498-4.302-.928-6.47-1.358l-6.556-1.256c-2.203-.447-4.267-.808-6.453-1.049a62.855 62.855 0 0 0-12.974-.086c-5.971.739-12.166.997-18.189 1.015-6.057.034-12.062-.052-18.016.223-1.48.069-2.96.189-4.543.224-1.548.034-3.063.017-4.56.017-1.497 0-2.96 0-4.405.103-.723.052-1.428.121-2.134.207-.722.086-1.325.223-2.168.378-3.166.533-6.212.499-8.896 1.084-1.463.378-3.218.567-4.68.67-1.55.121-2.823.207-4.303.568l-10.118 2.116c-3.303.722-6.556 1.72-9.79 2.855-3.218 1.135-6.454 2.425-9.62 3.715-3.097 1.273-6.091 2.907-9.016 4.678l-10.652 6.519c-3.527 1.978-6.66 4.472-9.843 7.138-6.418 5.246-12.991 10.44-19.29 15.721-3.097 2.7-6.125 5.607-9.584 8.153-3.304 2.425-6.453 5.074-9.688 7.705a187.787 187.787 0 0 1-4.939 3.887l-5.041 3.647c-3.287 2.459-6.47 5.125-9.826 7.636-3.923 2.838-7.623 6.106-12.062 8.618-1.98.963-3.39 2.838-5.489 4.489l-5.765 4.523c-7.657 6.055-15.177 12.212-21.957 19.23-8.5 8.583-16.881 17.269-25.536 25.765-4.319 4.266-8.569 8.549-12.923 12.797-4.422 4.18-9.068 8.101-13.783 11.92-4.904 3.904-9.722 7.86-14.764 11.627-2.53 1.874-5.111 3.68-7.812 5.332-2.685 1.599-5.197 3.371-7.899 5.039-2.701 1.703-5.575 3.045-8.294 4.507-2.719 1.41-5.317 3.164-8.105 4.678-5.489 3.079-11.133 5.814-16.691 8.634-4.732 2.391-9.43 4.868-14.231 7.207a183.817 183.817 0 0 1-7.261 3.371c-2.478 1.067-4.904 2.03-7.296 3.131-9.568 4.386-18.825 9.597-27.825 15.084-2.977 1.858-5.902 3.801-8.707 5.865-2.839 2.047-5.437 4.317-8.191 6.622-1.376 1.135-2.787 2.27-4.267 3.337a40.462 40.462 0 0 1-2.272 1.531c-.395.24-.774.481-1.187.705l-.602.344s-.138.086-.224.172c-.396.361-.809 1.187-1.686 2.064l-2.013 1.806-3.889 3.577c-5.128 4.834-10.101 9.856-15.16 14.827-5.059 4.988-10.273 9.821-15.573 14.551-4.526 4.007-9.223 7.946-14.145 11.455l-7.313 5.315-3.648 2.666c-1.222.911-2.564 1.857-3.906 2.631-2.702 1.6-5.489 2.856-8.191 4.146-2.684 1.272-5.317 2.648-8.019 3.956l-.378.189-.103.051-.19.121-.395.223c-.207.138-.637.362-.603.379.035.051 0 0-.069 0h-.068c-.018-.035-.035.051-.052.189l-.069.877c0 .155-.051.447-.069.533l-.068.361-.173.723-.378 1.445c-.052.206-.155.602-.396.584l-.069-.154Z%27/%3E%3Cpath d=%27M-372.338 710.186c-.068.378-.155.67-.465.893-.051.017-.103.052-.206.052-.069 0-.156 0-.293-.138-.035-.034-.069-.086-.087-.103l-.034-.034c-.069-.052-.138-.103-.207-.172a2.987 2.987 0 0 1-.396-.412c-.517-.618-.982-1.409-1.464-1.872a3.785 3.785 0 0 1-.948-1.358 15.85 15.85 0 0 1-.62-1.872c-.069-.326-.155-.653-.207-.996l-.086-.516-.035-.412c-.017-.206-.017-.412-.034-.618 0-.413 0-.825.069-1.254.052-.447.138-.791.189-1.117l.224-1.031c.31-1.374.672-2.765 1.172-4.139a18.99 18.99 0 0 1 .879-2.045c.172-.343.344-.67.551-.996l.551-.859 4.462-6.888c1.482-2.285 2.947-4.638 4.652-6.837 1.672-2.216 3.412-4.329 5.152-6.425 6.788-8.228 13.215-17.384 20.089-25.664 3.377-4.26 6.771-8.572 10.458-12.66 3.67-3.968 7.081-8.228 11.199-12.059 1.481-1.409 3.118-2.663 4.583-3.882l4.462-3.831c2.963-2.594 5.978-5.222 9.217-7.627 6.565-4.621 13.026-9.018 19.779-13.279a317.298 317.298 0 0 1 5.1-3.092c1.706-1.048 3.618-1.975 5.393-2.8 1.792-.841 3.515-1.666 5.1-2.628.809-.481 1.464-.962 2.343-1.615a58.872 58.872 0 0 1 2.567-1.683c3.48-2.13 7.116-3.797 10.527-5.635 3.411-1.82 6.719-3.899 10.096-5.978 1.688-1.03 3.377-2.078 5.117-3.074l5.152-2.903c3.376-1.959 6.684-4.054 10.01-6.185 6.684-4.277 13.369-8.297 19.52-13.106l9.493-7.043c3.153-2.388 6.323-4.793 9.304-7.232 1.482-1.237 2.894-2.508 4.204-3.865a62.652 62.652 0 0 1 4.324-4.226c2.998-2.68 6.03-5.102 8.598-7.868.723-.79 1.585-1.786 2.429-2.645l2.533-2.543c1.688-1.683 3.152-3.229 4.565-5.119 3.05-3.899 6.633-7.129 9.924-10.41 1.637-1.649 3.239-3.315 4.669-5.067.672-.842 1.465-1.89 2.292-2.8.809-.928 1.671-1.804 2.515-2.646 1.706-1.7 3.342-3.298 4.962-4.998 1.62-1.701 3.239-3.419 4.962-5.119a88.625 88.625 0 0 1 2.636-2.491l2.722-2.354 5.341-4.638 5.341-4.638c1.809-1.546 3.687-3.023 5.565-4.483l5.565-4.346c1.81-1.443 3.635-3.006 5.548-4.432 3.79-2.903 7.684-5.617 11.492-8.366l11.991-8.95 6.013-4.5 5.858-4.656c1.964-1.546 3.876-3.109 5.892-4.741 2.016-1.58 4.066-3.04 6.082-4.518 4.049-2.868 7.667-6.166 11.647-9.379a60.228 60.228 0 0 1 6.53-4.569l6.633-4.123 6.633-4.123c2.205-1.374 4.41-2.782 6.805-3.985 4.721-2.439 9.649-4.346 14.628-6.012 2.48-.825 4.945-1.649 7.512-2.371a58.37 58.37 0 0 1 3.893-.945c1.327-.274 2.723-.395 3.86-.618 2.377-.447 4.824-1.271 7.529-1.649a20.04 20.04 0 0 1 2.067-.172h1.051l.948.034c1.258.069 2.515.086 3.79.121 5.066.086 10.165-.069 15.3-.017 5.134.051 10.303.274 15.42 1.15 2.584.413 5.065 1.066 7.529 1.598 2.48.533 4.962.996 7.443 1.271 2.136.292 4.376.155 6.77.808a6.892 6.892 0 0 1 1.758.79c.551.378.862.618 1.344.893.896.515 1.86.945 2.86 1.271 1.016.344 2.016.584 3.136.825 1.137.257 2.239.618 3.308 1.065 2.153.876 4.134 2.078 5.978 3.401a60.38 60.38 0 0 1 5.203 4.329 30.01 30.01 0 0 1 4.497 5.188c2.602 3.779 4.342 8.056 5.496 12.419.5 1.856.879 3.745 1.206 5.635.155.945.31 1.889.431 2.834.155.928.206 2.01.206 2.955 0 1.907-.137 3.813.362 5.308.052.189.138.343.224.532l.328.705c.189.481.361.962.499 1.46.276.996.414 1.992.483 2.972.155 1.975.051 3.865.241 5.634.224 1.769.586 3.676.913 5.514a113.402 113.402 0 0 0 2.584 10.943c1.379 4.895 2.791 9.757 4.652 14.429.448 1.151.982 2.336 1.413 3.573.448 1.22.844 2.439 1.24 3.642.397 1.202.793 2.405 1.224 3.573.413 1.134.965 2.336 1.378 3.607.793 2.354 1.327 4.759 1.74 7.146.396 2.388.844 4.742 1.034 7.25.189 2.473.121 4.964-.259 7.421-.344 2.473-1.102 4.861-1.809 7.146-1.43 4.603-3.17 9.259-5.926 13.416-2.809 4.019-5.772 7.816-9.046 11.44-2.188 2.405-4.496 4.69-6.977 6.803-2.481 2.147-5.1 4.002-7.633 5.961-5.117 3.882-10.165 7.764-15.368 11.629-8.236 5.909-16.988 10.891-25.034 16.817a256.56 256.56 0 0 0-11.853 9.156 529.617 529.617 0 0 0-5.738 4.776c-1.878 1.632-3.824 3.212-5.53 4.896-3.325 3.315-6.1 7.249-8.735 11.182-2.464 3.951-4.342 8.452-6.513 12.712-2.05 4.312-3.91 8.692-5.41 13.21-.792 2.25-1.326 4.535-2.067 6.854l-2.206 6.923c-.999 2.851-1.654 5.686-2.257 8.658-.31 1.477-.603 2.971-.982 4.466-.413 1.546-.775 2.817-.878 4.312-.155 1.46-.207 2.989-.448 4.552-.12.79-.293 1.58-.569 2.388-.31.824-.551 1.374-.775 2.095-.879 2.749-1.12 5.721-1.55 8.761-.207 1.529-.57 3.075-.845 4.501-.276 1.46-.5 2.937-.672 4.415-.344 2.954-.5 5.943-.534 8.932-.017 1.495 0 2.989.017 4.501v.893l.035.241.034.996c.017.618.052 1.254.207 1.838.224.842.103 1.597-.19 2.388-.258.687-.413 1.425-.637 2.13-.069.223-.12.618-.448.653-.879.12-.982-1.254-1.172-1.976a22.196 22.196 0 0 1-.534-2.628c-.12-.911-.19-1.838-.172-2.766v-4.655c0-1.443.052-2.869.103-4.312.121-2.886.38-5.772.827-8.64.224-1.443.5-2.869.827-4.295.293-1.288.5-2.645.69-4.037.378-2.783.758-5.754 1.843-8.657l.413-1.031a9.31 9.31 0 0 0 .276-.825c.155-.584.276-1.202.362-1.872.172-1.306.241-2.731.413-4.209a18.71 18.71 0 0 1 .397-2.284l.551-2.062c.345-1.34.638-2.697.93-4.088.586-2.766 1.207-5.652 2.189-8.4l1.774-5.446c.603-1.803 1.189-3.624 1.689-5.548 1.102-3.779 2.446-7.473 3.945-11.08 1.482-3.607 3.24-7.163 4.893-10.599 1.637-3.453 3.36-7.146 5.703-10.358 2.567-3.745 5.34-7.49 8.787-10.685a291.735 291.735 0 0 1 10.406-8.83c7.047-5.72 14.403-11.097 22.053-15.975 3.963-2.56 7.943-5.05 11.802-7.696 3.86-2.611 7.512-5.514 11.285-8.366l11.233-8.571c3.687-2.783 7.064-5.944 10.165-9.38 2.809-3.109 5.376-6.424 7.84-9.843 2.412-3.298 4.1-7.043 5.444-10.976.672-1.959 1.275-3.986 1.878-6.013a28.873 28.873 0 0 0 1.051-5.943 32.48 32.48 0 0 0-.155-6.064c-.241-1.976-.638-4.14-.999-6.167-.379-2.044-.845-4.054-1.482-5.961-.327-.996-.672-1.821-1.103-2.886a55.884 55.884 0 0 1-1.12-3.075c-.689-2.044-1.309-4.037-2.067-5.943-.758-1.873-1.62-3.986-2.309-5.996-1.43-4.071-2.601-8.193-3.739-12.282-1.171-4.157-2.05-8.383-2.791-12.609-.172-1.047-.344-1.975-.499-3.126-.138-1.116-.155-2.199-.173-3.229-.034-2.062-.068-3.934-.603-5.583a10.027 10.027 0 0 0-.482-1.203c-.241-.515-.517-1.237-.637-1.821-.259-1.236-.276-2.37-.276-3.435s.034-2.044 0-2.972c-.035-.859-.224-1.89-.345-2.886-1.171-7.867-3.618-15.718-8.924-21.421-.638-.739-1.344-1.374-2.051-2.044a78.586 78.586 0 0 0-2.274-1.976c-1.533-1.271-3.101-2.439-4.772-3.418a21.454 21.454 0 0 0-5.221-2.233c-.844-.224-1.964-.43-3.015-.739a22.559 22.559 0 0 1-3.153-1.168 14.249 14.249 0 0 1-1.516-.825c-.465-.274-1.068-.738-1.24-.824-.569-.326-1.396-.55-2.309-.67-1.792-.241-4.031-.258-6.116-.567-4.187-.515-8.287-1.563-12.198-2.37-10.665-2.096-21.778-1.031-33.011-1.203-1.379 0-2.86-.086-4.187-.12-1.206-.035-2.464.137-3.739.412-1.292.275-2.618.653-3.997.979-.689.172-1.395.327-2.136.464-.74.137-1.499.223-2.12.326-2.6.396-5.22 1.151-7.821 1.976-2.619.842-5.272 1.718-7.84 2.663-5.96 2.181-11.612 4.723-16.953 8.228l-16.212 10.1c-3.067 2.062-5.927 4.535-8.873 7.009-2.93 2.508-6.117 4.844-9.2 7.06-3.136 2.199-5.91 4.604-8.977 7.009-3.032 2.371-6.013 4.827-9.114 7.077-6.168 4.535-12.267 9.242-18.504 13.726-3.118 2.233-6.202 4.449-9.183 6.785-2.912 2.336-5.961 4.861-8.993 7.163-1.775 1.392-3.55 2.766-5.273 4.174-1.722 1.409-3.411 2.938-5.134 4.381l-10.199 8.795c-3.274 2.972-6.272 6.339-9.511 9.534-1.619 1.597-3.239 3.126-4.703 4.758-1.43 1.598-2.791 3.504-4.376 5.171-3.843 4.157-8.115 7.764-11.647 11.938-.448.516-.862 1.048-1.292 1.598a40.11 40.11 0 0 1-1.362 1.666 54.963 54.963 0 0 1-2.928 3.075c-1 .979-1.999 1.958-2.947 2.938-.947.962-1.826 2.044-2.86 3.074-4.031 4.055-8.58 7.25-12.284 11.355-3.997 4.089-8.632 7.301-13.008 10.719-18.021 14.464-38.455 25.922-58.079 37.809-4.29 2.508-8.804 4.484-12.87 7.009a38.107 38.107 0 0 0-2.946 2.01c-1.017.773-2.136 1.46-3.239 2.061-2.223 1.22-4.48 2.182-6.599 3.298-8.39 4.707-16.436 10.376-24.5 15.89-5.289 3.607-10.01 8.056-15.023 12.317l-3.773 3.126c-1.206 1.014-2.361 2.113-3.498 3.247-2.257 2.267-4.376 4.724-6.547 7.163-4.462 4.81-8.528 9.74-12.56 14.91l-6.116 7.679-5.91 7.73-5.065 6.648c-1.74 2.216-3.532 4.346-5.272 6.493-1.74 2.148-3.429 4.295-4.962 6.545l-4.48 6.94-2.222 3.47c-.362.567-.776 1.185-1.086 1.718a16.679 16.679 0 0 0-.792 1.683c-.465 1.168-.827 2.44-1.12 3.728l-.414 1.976a5.502 5.502 0 0 0-.068 1.597c.034.395.034.241.034.309v.086l.069.189c.034.12.052.241.103.361.069.24.155.481.259.721.344.842.431 1.752.689 2.697l.362 1.443.172.739.086.378.052.189v.086l.034.017c.155-.086-1.412.738-.741.395 0 0 .035-.034.052-.103.017-.086.052-.258.052-.498v-.189h.017c.052.017.121.034.172.068.138.052.293.138.276.258l.034.086ZM148.098 709.602c0 .773-.808 1.082-1.961 1.271-.568.086-1.187.155-1.824.206l-.481.052c-.052-.069 0-.241-.017-.344 0-.24 0-.481-.035-.687-.086-.636-.034-1.632.138-2.594l1.29-6.958c1.118-5.325 2.477-10.857 5.161-15.907 2.477-4.776 4.8-9.81 7.793-14.5 2.822-4.569 5.402-9.397 8.43-14.052 3.114-4.57 6.193-9.036 9.617-13.4 1.668-2.182 3.63-4.295 5.264-6.27 1.669-2.062 3.217-4.261 4.783-6.477 3.096-4.501 6.485-8.899 9.943-13.125 5.023-6.15 10.271-12.077 15.38-18.072l3.819-4.518a111.006 111.006 0 0 1 3.991-4.501l8.138-8.607c1.324-1.443 2.632-2.886 3.87-4.381 1.187-1.46 2.512-3.109 3.854-4.587 2.684-2.989 5.522-5.789 8.292-8.572 1.376-1.391 2.753-2.8 4.077-4.226l3.974-4.381c2.701-2.92 5.471-5.738 8.069-8.641l1.909-2.199c.637-.738 1.187-1.46 1.927-2.302 1.411-1.58 2.907-2.869 4.026-4.243l6.778-9.586c2.271-3.298 4.679-6.339 6.847-9.603a99.367 99.367 0 0 0 3.148-4.913l2.942-5.137 5.883-10.273c1.996-3.35 3.854-6.803 5.677-10.29 3.562-7.01 7.553-13.898 11.406-20.822l3.51-6.236c1.325-2.181 2.907-4.071 4.335-5.892a45.855 45.855 0 0 0 2.013-2.732c.568-.858 1.239-2.009 1.91-3.006 1.359-2.044 2.855-3.951 4.369-5.806l4.576-5.446 2.202-2.715 1.067-1.374c.379-.481.757-.979 1.17-1.443 3.182-3.779 6.795-6.889 9.961-10.239a52.677 52.677 0 0 0 2.271-2.559 42.014 42.014 0 0 1 2.511-2.749c1.755-1.735 3.613-3.281 5.454-4.793a469.844 469.844 0 0 0 5.453-4.484 109.174 109.174 0 0 1 5.677-4.415 131.18 131.18 0 0 1 12.06-7.782 148.663 148.663 0 0 1 6.314-3.401l3.217-1.598a55.927 55.927 0 0 1 3.354-1.46c2.375-.945 4.731-1.753 6.951-2.732 2.202-1.013 4.662-2.113 7.036-2.937 4.834-1.718 9.668-3.076 14.657-4.244 2.46-.567 4.92-1.082 7.312-1.683a59.654 59.654 0 0 0 3.544-.98 52.672 52.672 0 0 1 3.75-1.03c2.512-.584 5.006-.997 7.432-1.495 2.443-.464 4.679-1.134 7.156-1.872 2.529-.722 5.144-1.426 7.914-1.701l1.978-.155c.62-.051 1.256-.12 1.876-.189a56.087 56.087 0 0 0 3.75-.601 71.291 71.291 0 0 0 3.733-.825l1.858-.481a16.645 16.645 0 0 1 2.116-.429c1.428-.189 2.787-.172 4.06-.206 1.273 0 2.409-.12 3.664-.327 2.461-.395 5.007-1.082 7.69-1.46 1.342-.189 2.736-.309 4.146-.275 1.428 0 2.925.344 3.372.121 2.718-.911 5.591-1.066 8.292-.859 2.719.206 5.299.721 7.828 1.099 1.187.172 2.598.326 3.905.67 1.308.326 2.564.739 3.802 1.22a90.735 90.735 0 0 1 7.14 3.144c4.731 2.387 8.825 5.669 12.73 8.95 3.991 3.264 7.638 7.009 10.976 10.909 1.686 1.941 3.286 3.968 4.869 5.944l4.903 5.858c2.873 3.384 5.763 6.82 8.464 10.376 2.649 3.487 5.711 6.7 8.67 10.067 2.89 3.401 5.953 6.614 8.671 10.273 2.563 3.659 5.316 7.061 8.189 10.462 2.425 2.886 4.92 5.807 7.294 8.727 2.408 2.869 5.058 5.566 7.621 8.401 5.058 5.72 9.771 11.613 15.053 16.973 3.63 3.573 7.157 7.301 10.976 10.531 1.978 1.632 3.871 3.401 5.815 4.93 1.875 1.529 4.163 2.714 6.33 4.089l6.176 3.762c1.996 1.288 4.026 2.491 6.159 3.556 4.215 2.165 8.688 3.9 13.213 5.377 2.253.722 4.576 1.306 6.915 1.959 1.17.326 2.34.67 3.51 1.047 1.135.378 2.253.705 3.389.997 4.576 1.117 9.376 1.786 14.09 2.147 3.148.189 6.296.103 9.358-.446 2.994-.584 6.125-1.615 9.221-2.405l4.662-1.289c1.583-.429 3.028-.807 4.473-1.409 2.873-1.151 5.609-2.748 8.31-4.432 2.116-1.34 4.3-2.645 6.382-3.985 2.082-1.358 4.129-2.801 6.193-4.261 4.095-2.903 8.275-5.858 12.782-8.297 4.473-2.405 9.067-4.587 13.78-6.425 4.731-1.907 9.772-3.127 14.813-3.66 9.702-.876 19.663-.721 29.022 2.44 2.34.825 4.524 1.89 6.692 2.903a66.735 66.735 0 0 0 3.251 1.46c1.101.447 2.271.945 3.355 1.529 4.387 2.302 8.12 5.515 11.853 8.521 1.153.928 2.409 1.856 3.561 2.904a64.335 64.335 0 0 1 3.321 3.195c2.133 2.199 4.197 4.329 6.382 6.425l12.937 12.833c2.151 2.164 4.215 4.398 6.314 6.562 2.064 2.199 4.335 4.175 6.572 6.219l3.354 3.058.671.601.189.155.757.635c.482.413.912.756 1.532 1.134.842.533 1.359 1.426 1.462 2.44.086.876.086 1.769-.172 2.525-.069.24-.189.653-.499.636-.86-.052-.843-1.237-1.204-1.718-.379-.602-.861-1.031-1.394-1.478-.499-.395-1.359-1.013-2.013-1.666l-.671-.653-5.866-5.411c-4.301-3.797-7.982-8.298-11.939-12.198l-11.991-12.094c-4.215-4.02-7.724-8.417-12.163-11.733-3.045-2.457-5.952-4.982-9.083-7.026-1.566-1.031-3.183-1.942-4.869-2.663a103.697 103.697 0 0 1-5.367-2.371c-1.755-.824-3.475-1.615-5.23-2.25-1.721-.636-3.561-1.117-5.402-1.529-3.682-.808-7.466-1.203-11.268-1.306-4.422-.086-8.946.052-13.299.653-4.386.618-8.653 1.718-12.782 3.384a120.276 120.276 0 0 0-12.214 5.566c-3.991 2.027-7.69 4.467-11.389 7.044-3.836 2.68-7.707 5.497-11.784 7.937-3.974 2.456-7.965 5.188-12.593 6.94-2.357.876-4.645 1.374-6.899 2.027l-6.795 1.873c-1.118.292-2.305.652-3.51.91a37.197 37.197 0 0 1-3.647.584c-2.443.258-4.886.275-7.294.12a92.725 92.725 0 0 1-12.868-1.769c-2.099-.43-4.318-1.117-6.262-1.735-1.996-.601-4.043-1.117-6.125-1.684-8.326-2.319-16.463-5.6-23.775-10.359l-5.453-3.298-2.736-1.649c-.894-.55-1.823-1.065-2.77-1.753-1.84-1.305-3.457-2.765-5.057-4.157-1.549-1.357-3.286-2.731-4.852-4.226-3.182-2.989-6.09-5.978-9.152-9.036-3.011-3.11-5.815-6.339-8.602-9.586-2.683-3.144-5.264-6.253-8.068-9.225-1.394-1.512-2.804-3.007-4.181-4.587-.688-.791-1.376-1.581-2.03-2.405l-1.944-2.371c-2.614-3.144-5.298-6.253-7.896-9.483a108.531 108.531 0 0 1-3.785-4.965 72.418 72.418 0 0 0-3.664-4.793l-4.008-4.638a270.09 270.09 0 0 0-4.043-4.604c-1.377-1.529-2.753-3.058-4.112-4.656-1.359-1.563-2.666-3.298-3.871-4.879-2.494-3.195-5.161-6.304-7.827-9.431-2.684-3.092-5.316-6.373-7.897-9.483-3.561-4.209-7.311-8.16-11.56-11.596-4.25-3.539-8.533-6.923-13.385-9.173-2.477-1.134-5.023-2.268-7.535-3.093-1.256-.412-2.529-.756-3.767-.927a199.12 199.12 0 0 1-4.164-.602c-2.735-.429-5.401-.841-7.965-.721-1.273.051-2.529.24-3.716.584l-1.066.326c-.568.138-1.067.138-1.497.121l-2.099-.172c-2.89-.155-5.901.55-9.083 1.22-1.6.326-3.217.652-4.955.79-1.737.137-3.337.068-4.8.189-.722.068-1.428.172-2.081.343l-2.357.619a75.201 75.201 0 0 1-4.8 1.031 51.189 51.189 0 0 1-4.92.652c-.86.069-1.6.103-2.34.189-.739.086-1.496.206-2.253.361-3.596.67-7.191 2.113-11.114 2.921-3.836.824-7.604 1.322-11.13 2.387-3.716 1.169-7.57 1.959-11.286 2.783-3.699.825-7.38 1.821-10.993 2.938a77.566 77.566 0 0 0-10.563 4.089c-3.63 1.58-7.277 2.697-10.597 4.329-6.847 3.315-13.436 7.112-19.612 11.51-3.682 2.56-7.019 5.429-10.58 8.315-3.544 2.834-6.95 5.566-9.755 9.019-3.027 3.504-6.468 6.476-9.548 9.672-1.582 1.614-2.907 3.246-4.318 5.067-1.428 1.787-2.89 3.505-4.352 5.24-1.806 2.13-3.596 4.243-5.247 6.442a56.61 56.61 0 0 0-2.34 3.385c-.688 1.133-1.531 2.439-2.374 3.538-1.72 2.268-3.561 4.347-4.972 6.632l-4.111 7.249c-2.719 4.862-5.54 9.672-8.155 14.602-2.598 4.948-5.178 9.913-8.017 14.757l-8.619 15.032c-2.89 5.051-6.348 9.758-9.754 14.413l-4.955 7.044-2.511 3.59c-.929 1.254-1.996 2.302-3.011 3.316a29.223 29.223 0 0 0-2.804 3.161 105.573 105.573 0 0 1-2.856 3.315c-1.944 2.165-3.939 4.261-5.918 6.357-1.686 1.786-3.286 3.573-4.937 5.428-1.652 1.856-3.372 3.625-5.092 5.377-3.441 3.505-6.899 6.941-9.961 10.651-6.073 7.851-13.505 14.379-19.543 21.973-8.413 10.049-17.273 19.67-24.876 30.166-1.893 2.629-3.734 5.343-5.746 7.989a61.541 61.541 0 0 1-3.166 3.882 106.203 106.203 0 0 0-3.114 3.694c-2.013 2.525-3.922 5.136-5.797 7.799-1.875 2.68-3.768 5.308-5.437 8.057-2.838 4.655-5.591 9.655-8.481 14.327-1.359 2.354-2.615 4.81-3.853 7.301-1.187 2.491-2.615 5.017-3.63 7.388-1.996 4.947-3.166 10.341-4.095 15.804l-.069.378v.121l-.034.223-.052.447-.086.893a4.021 4.021 0 0 1-.137.773l-.103.361s-.035.137-.052.154h-.035s-.189.069-.309.224c-.017.051-.207.223-.121.257.052.052.104.103.19.172.154.12.361.241.653.361.121.051.396.154.379.395l-.052.086Z%27/%3E%3Cpath d=%27M170.202 711.114c-.12 1.55-2.563 1.24-3.767 1.756-.465.207-1.015.345-1.514.345h-3.131l-.826.017h-.413l.069-.413.912-5.924c.361-2.617 1.032-5.441 1.995-7.956l2.804-7.421c1.927-5.011 4.284-9.799 6.762-14.482 2.443-4.702 5.126-9.213 7.741-13.794l7.88-13.707c5.316-9.092 10.752-18.184 16.929-26.794l13.608-18.46c4.542-6.268 9.944-11.796 14.916-17.479 5.23-5.596 10.391-11.21 15.672-16.772 5.282-5.545 10.701-10.917 16.052-16.342 5.333-5.424 10.597-10.9 15.552-16.617l14.692-17.478c2.443-2.928 4.938-5.821 7.278-8.783 2.356-2.962 4.662-6.01 7.088-9.006a113.034 113.034 0 0 1 3.75-4.425 85.095 85.095 0 0 0 3.596-4.305c2.322-2.945 4.524-6.027 6.778-9.11a179.113 179.113 0 0 1 4.198-5.527c1.497-1.843 2.907-3.496 4.266-5.304 2.719-3.565 5.265-7.336 7.845-11.107 2.564-3.771 5.282-7.577 8.172-11.141 2.891-3.582 5.609-7.061 8.327-10.78 2.735-3.668 5.608-7.353 8.877-10.694 3.149-3.237 6.245-6.647 9.652-9.815 1.703-1.585 3.509-3.117 5.402-4.495 1.84-1.36 3.733-2.721 5.677-3.978 1.944-1.257 4.008-2.479 6.125-3.444l6.262-2.875 6.056-2.79a106.423 106.423 0 0 1 6.262-2.428c4.215-1.498 8.567-2.704 12.8-3.84 2.15-.586 4.352-1.154 6.675-1.464 1.221-.155 2.219-.207 3.268-.379 1.05-.155 2.099-.361 3.166-.568 2.133-.43 4.301-.947 6.572-1.309a32.479 32.479 0 0 1 3.441-.396c.602-.051 1.118-.051 1.823-.051l.774.068s.086 0 .121-.017c.774-.396 1.927-.757 2.89-.844.998-.12 1.961-.103 2.873 0 1.342.104 2.684.431 3.441.328.929-.069 1.978-.5 3.252-.93.636-.207 1.359-.413 2.133-.517.395-.051.791-.069 1.204-.051l.981.051c1.221.086 2.46.138 3.699.19 4.954.172 10.029.103 15.139.568 5.11.551 10.03 1.36 15.019 2.307a139.86 139.86 0 0 1 7.415 1.636c2.529.551 5.058 1.619 7.312 2.807 18.098 8.007 33.788 21.25 47.655 35.026 2.89 3.117 6.004 6.044 9.083 9.057l4.577 4.529c1.548 1.499 3.096 3.014 4.541 4.684a32.016 32.016 0 0 1 2.03 2.6 37.42 37.42 0 0 0 1.944 2.48c1.36 1.619 2.822 3.169 4.301 4.736 2.994 3.116 5.798 6.423 8.671 9.608l7.295 8.214c2.322 2.773 4.851 5.39 7.415 7.973 2.563 2.583 5.195 5.149 7.724 7.818l3.733 3.995a49.225 49.225 0 0 0 3.975 3.616c3.733 3.066 7.845 5.855 11.784 8.765 3.957 2.825 8.138 5.356 12.421 7.732 15.708 9.799 34.873 13.105 52.18 16.859 3.131.413 6.107.826 9.135.809 3.011 0 5.987-.379 8.792-1.36 3.114-1.12 6.296-1.275 9.152-2.032 2.873-.81 5.798-1.877 8.602-3.031a80.521 80.521 0 0 0 12.697-6.681c4.008-2.566 7.793-5.7 12.008-8.283 2.099-1.343 4.249-2.428 6.383-3.599l6.399-3.461c4.25-2.342 8.723-4.633 13.66-5.563a23.374 23.374 0 0 1 3.63-.413l3.493-.12c2.322-.086 4.662-.19 7.002-.19 4.679 0 9.531.517 13.987 2.291a127.009 127.009 0 0 1 12.696 5.958c4.181 2.169 7.983 5.062 11.63 7.938l6.95 5.356c2.306 1.842 4.542 3.736 6.762 5.648 2.219 1.911 4.421 3.823 6.658 5.682 2.219 1.86 4.576 3.599 6.847 5.476 4.542 3.72 8.946 7.612 13.367 11.4 1.084.913 2.271 1.774 3.424 2.824l.86.827c.241.258.499.516.74.809.43.534.86 1.119 1.29 1.705.637.809.74 1.842.499 2.772-.224.81-.43 1.619-.826 2.29-.12.207-.275.603-.585.552-.86-.138-.654-1.395-.826-2.015a8.64 8.64 0 0 0-.808-1.981c-.361-.602-.792-1.153-1.273-1.756a8.129 8.129 0 0 0-.516-.603l-.293-.292c-.241-.207-.447-.431-.705-.638a70.37 70.37 0 0 0-1.531-1.274 56.03 56.03 0 0 1-1.635-1.36l-1.548-1.361c-4.129-3.616-8.206-7.266-12.421-10.71-2.082-1.705-4.301-3.41-6.4-5.218l-6.228-5.407a221.32 221.32 0 0 0-6.228-5.287c-2.082-1.687-4.318-3.323-6.469-5.063-2.924-2.324-5.814-4.632-8.894-6.526-3.097-1.86-6.451-3.547-9.789-5.097a111.043 111.043 0 0 0-5.092-2.204 27.522 27.522 0 0 0-5.093-1.516c-3.492-.706-7.139-.792-10.838-.688l-6.538.258c-1.135.034-2.116.069-3.148.189-1.015.138-2.03.327-3.028.569-4.026 1.016-7.845 2.979-11.647 5.062-3.819 2.067-7.725 4.081-11.492 6.199-3.699 2.187-7.123 4.77-10.753 7.319-7.638 5.218-15.982 9.264-24.997 11.761-2.323.551-4.594.792-6.658 1.326-.516.121-1.015.293-1.514.465-.568.19-1.135.396-1.72.534-1.153.327-2.34.568-3.51.723-4.731.672-9.514.086-13.918-.516-3.922-.414-8.361-.379-12.524-2.291l-.757-.378c-.293-.138-.345-.173-.551-.259a7.35 7.35 0 0 0-1.221-.327c-.895-.172-1.876-.241-2.908-.327-1.015-.086-2.168-.207-3.251-.465-1.084-.258-2.134-.603-3.132-.964-1.995-.741-3.836-1.567-5.677-2.101-.86-.259-1.961-.482-2.959-.775a47.962 47.962 0 0 1-3.028-.947c-3.991-1.378-7.793-3.152-11.475-5.046-7.329-3.736-14.64-7.921-21.23-12.949-3.303-2.411-6.709-4.787-9.926-7.508-1.6-1.378-3.149-2.841-4.594-4.426a144.409 144.409 0 0 0-4.18-4.442l-8.361-8.473c-2.805-2.841-5.402-6.027-8.017-8.937l-7.88-8.886c-1.324-1.498-2.58-2.944-3.922-4.373-1.342-1.43-2.718-2.876-4.078-4.374-1.342-1.498-2.666-3.083-3.871-4.77-1.066-1.516-2.339-2.928-3.681-4.305l-8.447-8.318c-2.839-2.755-5.729-5.527-8.465-8.506-1.324-1.464-2.615-2.807-4.043-3.858-1.703-1.257-3.234-2.669-4.662-4.081-1.927-1.911-3.75-3.788-5.746-5.304l-6.417-4.856c-4.267-3.203-8.585-6.285-13.178-8.833-2.271-1.309-4.645-2.291-7.157-3.599-2.426-1.275-4.714-2.618-7.054-3.651-1.17-.517-2.339-.964-3.527-1.292a122.894 122.894 0 0 0-3.836-.929 148.8 148.8 0 0 0-7.811-1.533c-3.01-.517-6.055-.964-9.1-1.36-2.977-.397-6.005-.552-9.067-.638-3.062-.086-6.159-.103-9.29-.223l-2.34-.121-1.17-.086a6.972 6.972 0 0 0-.843 0c-1.152.12-2.494.809-4.266 1.257-.912.241-2.048.327-3.028.172-.826-.12-1.617-.241-2.357-.293-1.531-.12-2.787-.034-4.06.603a2.53 2.53 0 0 1-1.067.293 6.439 6.439 0 0 1-.929-.035c-.224-.017-.292-.034-.447-.034h-.585c-.774.017-1.548.086-2.323.172-1.565.172-3.131.465-4.731.792-1.6.328-3.217.689-4.868.982a39.92 39.92 0 0 1-2.512.396l-2.46.258c-3.08.379-6.194 1.343-9.394 2.187-3.148.844-6.262 1.774-9.324 2.841-3.063 1.068-6.056 2.256-9.015 3.686l-8.912 4.098c-2.976 1.309-5.643 2.996-8.327 4.839a120.511 120.511 0 0 0-3.956 2.858 56.416 56.416 0 0 0-3.716 3.048c-3.183 2.842-6.142 6.01-9.17 9.144-3.114 3.083-5.85 6.268-8.499 9.712-2.632 3.41-5.213 6.992-7.983 10.367-2.752 3.392-5.436 6.75-7.931 10.315-3.096 4.373-6.073 8.902-9.324 13.242-1.6 2.169-3.389 4.305-5.075 6.337-1.686 2.083-3.286 4.219-4.886 6.388-3.183 4.34-6.366 8.765-10.013 12.812-3.561 3.995-6.795 8.283-10.133 12.536-7.054 8.714-14.279 17.1-21.436 25.727-7.26 8.524-15.157 16.462-22.967 24.384-3.321 3.375-6.624 6.75-9.858 10.177l-9.6 10.401c-3.183 3.495-6.417 6.905-9.514 10.521-3.148 3.547-6.296 7.043-9.17 10.711l-11.199 15.188c-1.858 2.549-3.768 5.046-5.574 7.611a237.608 237.608 0 0 0-5.213 7.835c-6.761 10.591-12.938 21.612-19.183 32.529l-3.974 6.991c-1.273 2.36-2.546 4.719-3.75 7.095-2.443 4.77-4.576 9.54-6.331 14.62-.947 2.549-1.962 4.994-2.615 7.456-.327 1.206-.551 2.463-.74 3.771l-.275 1.964-.121.809v.086c0 .086.121-.017.155-.052.017-.017 0-.034 0 0v.035l.379.051 1.496.276c1.015.172 2.013.43 3.011.672.206.051.602.155.585.396l-.052.034Z%27/%3E%3Cpath d=%27M194.687 711.087c-.242 1.505-2.532 1.211-3.771 1.782a3.876 3.876 0 0 1-1.602.363h-.482l-.792-.069c-.533-.069-1.084-.121-1.584-.242l-1.515-.346-.775-.191s-.31-.069-.499-.155c.12-.243.293-.537.43-.796l.913-1.661c.275-.536.43-.986.654-1.488l.258-.796c.638-2.18.758-4.689 1.447-7.37.172-.658.396-1.35.671-2.007.224-.537.345-.952.465-1.505.241-1.09.345-2.336.62-3.703a10.65 10.65 0 0 1 .637-2.128l.413-.882c.121-.243.224-.519.328-.779.413-1.073.723-2.215 1.033-3.426.31-1.211.637-2.474 1.084-3.754.241-.64.482-1.28.792-1.92.293-.641.689-1.281.93-1.731 1.068-2.007 1.739-4.342 2.497-6.782.757-2.457 1.739-4.913 2.755-7.214 1.016-2.336 2.066-4.603 2.961-6.886a105.168 105.168 0 0 1 3.014-7.025c2.152-4.619 4.511-9.066 6.732-13.564 1.136-2.249 2.29-4.516 3.564-6.747a91.877 91.877 0 0 1 1.98-3.305c.689-1.107 1.447-2.163 2.101-3.166 1.945-2.976 3.788-6.229 6.095-9.222 2.256-2.976 4.563-5.675 6.56-8.65 2.135-3.097 4.546-5.935 6.939-8.686l3.582-4.117c1.153-1.35 2.393-2.821 3.684-4.153 2.566-2.699 5.252-5.173 7.731-7.733 2.48-2.561 4.839-5.347 7.353-8.046 1.274-1.349 2.582-2.681 3.977-3.944 1.36-1.281 2.996-2.457 4.305-3.512 2.737-2.215 5.286-4.758 7.92-7.302 5.338-5.173 11.054-9.654 16.443-14.481a132.994 132.994 0 0 0 3.995-3.65 166.08 166.08 0 0 1 4.064-3.72c2.755-2.44 5.596-4.758 8.402-7.077l8.472-6.92c2.841-2.301 5.94-4.481 8.936-6.505 3.013-2.059 6.009-4.153 9.039-6.177l9.178-5.9a296.591 296.591 0 0 0 10.796-7.301c1.842-1.28 3.684-2.422 5.355-3.65.843-.623 1.635-1.246 2.358-1.921.362-.346.706-.692 1.034-1.038l1.05-1.194c5.561-6.453 10.107-13.789 13.568-21.609 3.306-7.924 6.681-16.315 11.829-23.651 5.131-7.37 11.743-13.599 19.284-18.391 8.076-5.087 17.167-7.976 26.155-10.277 2.204-.589 4.614-1.16 6.973-1.436 2.359-.312 4.735-.45 7.077-.519l13.878-.087c4.804 0 9.642.035 14.481.467 4.838.381 9.728 1.315 14.377 2.578l6.973 1.747c2.325.606 4.649 1.073 7.008 1.921 4.666 1.644 8.971 3.945 13.172 6.211 4.098 2.232 8.368 4.308 12.415 6.834a111.56 111.56 0 0 1 11.674 8.184c1.859 1.47 3.65 3.079 5.406 4.602l5.372 4.55c3.616 3.011 7.232 6.073 10.658 9.377 5.889 5.727 11.743 11.506 17.322 17.579 5.493 6.107 11.209 12.041 16.323 18.512 2.152 2.63 4.735 4.948 7.283 7.388 2.583 2.422 4.89 5.104 7.301 7.56 2.427 2.475 4.924 4.81 7.765 6.713 2.91 2.007 5.665 4.187 8.454 6.263 1.877 1.402 3.771 2.751 5.717 3.962a260.312 260.312 0 0 0 6.026 3.582 201.707 201.707 0 0 0 12.38 6.574c3.96 1.938 7.989 3.634 12.139 5.243 4.132 1.643 8.213 3.322 12.38 4.671a67.88 67.88 0 0 0 6.302 1.73c.482.104 1.171.26 1.739.467.585.208 1.119.45 1.618.692 1.016.485 1.929.9 2.841 1.056 4.408.674 8.747 1.782 13.052 2.491 1.429.242 2.875.398 4.373.64l4.391.71c1.446.225 2.893.449 4.322.588 1.429.173 2.738.121 4.167-.087l4.373-.692c1.567-.207 2.979-.259 4.425-.467 2.893-.346 5.751-.882 8.609-1.522a150.31 150.31 0 0 0 6.681-1.679c1.24-.346 2.342-.432 3.168-.847a54.086 54.086 0 0 1 3.22-1.419c4.391-1.765 8.73-3.132 12.914-5.069 4.27-1.834 8.557-3.53 12.638-5.571 4.115-2.025 8.23-4.205 12.604-5.848 2.118-.796 4.322-1.454 6.56-1.886 1.119-.242 2.29-.346 3.254-.554 1.016-.225 2.066-.553 3.168-.865 1.102-.294 2.273-.553 3.513-.553.603-.018 1.257.069 1.808.155.516.087 1.05.156 1.584.208 2.135.19 4.391.156 6.681.554a19.65 19.65 0 0 1 1.704.38c.551.139 1.033.294 1.567.415 1.05.243 2.118.45 3.22.658 2.169.415 4.425.848 6.577 1.765a15.899 15.899 0 0 1 3.065 1.747l.345.277.172.138.086.069.051.035h.018c.12-.104-.965 1.159-.5.623 0 0 .018-.069.018-.156V534.786h.189c.103 0 .207 0 .293.017l.482.121c.568.122 1.119.312 1.67.485 2.204.744 4.201 1.851 6.147 2.976l3.599 2.128c1.188.692 2.393 1.263 3.684 1.938 2.514 1.349 4.856 2.975 7.129 4.584 4.528 3.236 9.211 6.298 13.757 9.568a189.807 189.807 0 0 1 6.767 5.017c2.221 1.731 4.373 3.53 6.56 5.277l3.254 2.63.655.519.189.156.792.605c.517.381 1.274 1.125 1.601 2.111.121.329.138.71.155.969v.588a3.996 3.996 0 0 1-.292 1.142c-.276.675-.414 1.402-.655 2.094-.069.207-.138.605-.447.657-.879.121-.982-1.28-1.154-2.024a21.306 21.306 0 0 1-.517-2.734c-.068-.173-.103-.104-.172-.173l-.689-.605-.705-.606-5.665-4.654c-3.995-3.374-8.058-6.505-12.311-9.55-4.219-3.045-8.592-5.969-12.828-9.066-2.118-1.523-4.218-2.993-6.405-4.204-.551-.312-1.085-.571-1.688-.883a43.14 43.14 0 0 1-1.79-.969c-1.171-.674-2.29-1.366-3.41-2.041-1.515-.917-3.013-1.782-4.545-2.474a16.493 16.493 0 0 0-2.325-.883c-.378-.121-.826-.225-1.136-.311h-.086c-.086-.035.275.104-.654-.104-.19-.034-.603-.363-.5-.294h-.034l-.052-.069-.465-.364c-2.514-1.92-5.854-2.577-9.384-3.2-.878-.173-1.773-.329-2.686-.554a40.452 40.452 0 0 1-1.36-.346c-.413-.104-.775-.208-1.188-.294-1.584-.329-3.289-.381-5.097-.467-.895-.052-1.825-.104-2.772-.208-1.05-.138-1.67-.277-2.428-.242-1.48.052-3.082.588-4.855 1.09-.534.138-1.068.277-1.636.398l-1.584.259a35.38 35.38 0 0 0-2.927.606c-1.929.502-3.84 1.159-5.734 1.92-3.771 1.54-7.438 3.478-11.209 5.312-3.788 1.868-7.696 3.426-11.519 5.035-1.894.778-3.822 1.661-5.802 2.404l-5.872 2.163c-1.016.381-1.997.761-2.996 1.159l-1.463.623c-.5.225-.896.433-1.55.692-1.257.467-2.342.554-3.272.831l-3.168.83c-4.235 1.073-8.54 1.99-12.931 2.509l-3.237.311c-1.016.121-2.066.312-3.151.502-1.084.173-2.186.363-3.357.45-1.137.104-2.411.017-3.478-.104-2.221-.225-4.374-.605-6.509-.952-2.135-.38-4.218-.588-6.439-.951-3.943-.64-7.749-1.575-11.537-2.197l-1.446-.225a8.35 8.35 0 0 1-1.687-.45c-1.051-.381-1.946-.865-2.755-1.194a7.27 7.27 0 0 0-1.171-.398l-1.412-.311a88.636 88.636 0 0 1-2.927-.727c-3.857-1.055-7.594-2.439-11.261-3.858-3.65-1.453-7.301-2.803-10.968-4.377-7.283-3.132-14.291-6.869-21.075-10.883-3.392-1.938-6.819-4.256-9.935-6.644l-4.684-3.546c-1.566-1.194-3.099-2.18-4.786-3.461-3.151-2.422-5.855-5.225-8.454-7.993-1.309-1.401-2.549-2.785-3.857-4.066l-4.081-3.91c-1.378-1.332-2.755-2.716-4.046-4.221l-3.616-4.412c-2.411-2.872-4.942-5.658-7.49-8.461-2.566-2.802-5.08-5.64-7.645-8.373-2.583-2.751-5.217-5.433-7.886-8.115a492.19 492.19 0 0 0-8.093-7.906c-2.72-2.561-5.578-4.983-8.488-7.388l-5.941-4.914c-1.997-1.678-3.874-3.373-5.854-4.913-3.943-3.149-8.127-5.987-12.483-8.564a129.658 129.658 0 0 0-6.646-3.651l-6.819-3.581c-4.511-2.371-8.988-4.603-13.792-5.848l-8.574-2.111-4.288-1.055a69.645 69.645 0 0 0-4.201-.952c-5.648-1.073-11.467-1.419-17.304-1.488-3.496-.052-7.025 0-10.555 0-3.564.035-7.06-.069-10.503.138-3.478.191-6.784.658-10.159 1.575-3.409.848-6.784 1.765-10.09 2.855-6.612 2.145-12.965 5-18.544 9.048a64.838 64.838 0 0 0-14.705 14.516c-4.821 6.592-8.213 14.153-11.381 21.834-3.271 7.769-7.507 15.156-12.776 21.765-1.67 2.025-3.22 4.066-5.286 5.883-2.032 1.765-4.253 3.149-6.371 4.567-4.184 2.924-8.505 5.848-12.844 8.617-4.322 2.802-8.73 5.449-12.931 8.425-4.236 2.942-8.558 5.692-12.535 8.859-4.133 3.287-8.248 6.712-12.346 10.069a192.671 192.671 0 0 0-6.026 5.173l-5.872 5.415c-3.977 3.582-8.058 7.007-12.053 10.485-4.046 3.408-7.61 7.284-11.656 10.9-1.688 1.557-3.616 2.924-5.252 4.308-1.653 1.453-3.22 3.028-4.735 4.671-3.013 3.288-5.94 6.817-9.194 10.018-3.238 3.218-6.406 6.263-9.229 9.775-2.962 3.46-5.992 6.782-8.661 10.329-.913 1.194-1.688 2.353-2.6 3.65a101.342 101.342 0 0 1-2.755 3.668c-1.877 2.405-3.737 4.672-5.321 7.163-1.601 2.474-3.185 5.139-4.907 7.63-1.636 2.44-3.099 5.035-4.477 7.682-2.703 5.329-5.492 10.779-8.075 16.142-1.291 2.716-2.411 5.398-3.53 8.253-1.171 2.837-2.462 5.571-3.581 8.322-.982 2.335-1.688 4.654-2.462 7.18-.396 1.245-.844 2.526-1.412 3.789a15.874 15.874 0 0 1-.964 1.851 15.823 15.823 0 0 0-.758 1.54c-.913 2.145-1.309 4.671-2.152 7.284a20.807 20.807 0 0 1-.758 1.955l-.379.83a7.202 7.202 0 0 0-.241.727c-.293 1.038-.396 2.284-.62 3.633-.12.675-.258 1.402-.499 2.128-.293.848-.465 1.177-.637 1.765-.344 1.09-.534 2.284-.723 3.547-.19 1.263-.379 2.578-.723 3.944-.086.346-.173.675-.293 1.021l-.224.675-.086.225a.279.279 0 0 0 .224-.104c0-.017 0-.017.017 0l.585.104 1.43.259c.998.156 2.031.346 3.082.641.223.069.637.19.585.432l.121-.017Z%27/%3E%3Cpath d=%27M890.129 59.682c.379.034.638.189.845.447.104.12.173.276.242.43.069.138.121.345.172.637.173.913.276 3.133.311 2.255-.155-.034-.293-.086-.449-.12l-.327-.086s-.087.068-.121.103l-.242.24c-.155.156-.224.242-.362.345-.259.19-.518.396-.811.5-.673.292-1.363.481-2.036.619-.327.051-.672.12-1 .155l-.483.051-.828.052-.932.034-1.76.087c-.552.051-1.087.103-1.587.223-.259.052-.5.12-.742.19l-.914.275c-1.259.362-2.519.62-3.744.844-2.449.43-4.83.74-7.038 1.342-1.346.396-2.812.465-3.951.516-.587.035-1.121.086-1.622.172a4.057 4.057 0 0 0-.69.173l-.845.258-6.97 2.169c-4.641 1.463-9.333 2.822-13.853 4.51-4.555 1.652-9.006 3.476-13.491 5.404-4.503 1.893-8.971 3.735-13.181 5.956-2.104 1.067-4.14 2.392-6.21 3.683L801.334 95c-12.042 7.213-23.29 15.681-32.969 25.699a105.718 105.718 0 0 0-6.831 7.866 94.302 94.302 0 0 0-3.106 4.182l-3.14 4.269-6.279 8.537c-2.122 2.841-4.175 5.681-6.09 8.589a163.069 163.069 0 0 0-5.504 8.899c-1.725 3.013-3.329 6.162-4.968 9.261-3.261 6.231-6.366 12.513-9.04 18.951a136.312 136.312 0 0 0-3.623 9.776c-.518 1.618-1.035 3.357-1.622 5.061a189.459 189.459 0 0 1-1.828 5.026c-1.243 3.304-2.467 6.558-3.399 9.845-.845 3.305-1.794 6.885-2.881 10.242a190.718 190.718 0 0 1-2.036 6.076l-1.915 5.99c-1.311 3.958-2.484 8.021-3.657 12.1a890.842 890.842 0 0 1-3.623 12.169c-1.259 4.045-2.881 8.262-5.038 11.963-1.949 3.614-3.622 7.556-6.038 11.274-1.19 1.859-2.605 3.666-4.175 5.215-1.518 1.567-3.157 3.012-4.83 4.389-6.78 5.508-14.889 9.226-23.221 11.395l-1.656.43c-.587.138-1.225.276-1.812.345-1.19.172-2.329.241-3.398.361-1.053.121-2.053.276-2.847.603l-.742.327c-.276.12-.552.241-.845.344-.569.224-1.139.413-1.708.585-2.295.689-4.606 1.033-6.815 1.377-2.191.327-4.399.74-6.607 1.119-4.399.774-8.747 1.601-12.853 3.012-4.295 1.48-8.591 2.72-12.628 4.372-2.088.861-4.123 1.825-6.038 2.961-.984.585-1.812 1.153-2.83 1.858l-2.932 1.928c-.932.62-1.829 1.257-2.571 1.945-.397.362-.621.637-.966 1.102l-1.087 1.411c-1.449 1.842-2.933 3.615-4.244 5.439-5.348 7.212-7.642 16.352-7.332 25.337 1.398 17.832 8.402 35.114 18.097 50.364 2.088 3.373 4.4 6.523 6.625 9.897 2.174 3.356 4.175 6.782 6.556 9.863l7.263 9.501c2.329 3.184 4.813 6.265 7.384 9.277 4.468 5.061 8.798 10.311 13.818 14.683 5.21 4.234 10.386 8.675 16.01 12.255 3.761 2.444 7.919 4.2 12.042 6.265l3.002 1.549c.914.414 1.932.654 3.036.878 1.087.207 2.26.396 3.468.775 1.276.43 2.156.895 3.226 1.256 3.933 1.412 8.108 2.031 12.352 2.204 4.244.206 8.488.086 12.559-.844 4.21-.964 8.437-1.756 12.37-3.201 3.882-1.55 7.746-3.512 11.473-5.56 5.003-2.754 9.816-5.818 14.612-8.985 4.865-3.167 10.006-5.887 15.268-8.279 2.035-.964 4.209-1.773 6.141-2.737 1.018-.499 2.14-1.015 3.382-1.308a42.035 42.035 0 0 0 3.226-.792c2.122-.602 4.278-1.342 6.573-1.842 1.138-.241 2.329-.43 3.536-.499a19.498 19.498 0 0 0 3.175-.361c2.122-.396 4.347-1.085 6.797-1.222a16.514 16.514 0 0 1 1.846.017l1.656.12a70.46 70.46 0 0 0 3.313.121c2.225.052 4.502.086 6.78.275 2.294.172 4.571.672 6.728 1.102 4.244.843 8.47 1.687 12.68 2.53 2.208.396 4.347 1.257 6.297 2.169 2.001.947 3.812 1.807 5.865 2.616 4.055 1.756 7.712 4.183 11.197 6.748l5.175 3.872c1.795 1.308 3.399 2.84 4.917 4.407 1.898 1.945 3.658 4.096 5.555 5.835.984.895 2.071 1.773 3.019 2.874a9.326 9.326 0 0 1 1.26 1.825c.31.551.655 1.084 1.035 1.6 1.535 2.066 3.606 3.822 5.4 6.008.448.533.88 1.136 1.276 1.704.363.533.742 1.067 1.156 1.583.811 1.05 1.674 2.048 2.571 3.064 3.726 3.976 6.797 8.589 10.523 12.272.466.465.932.896 1.45 1.36a16.04 16.04 0 0 1 1.518 1.532l.742.895c.224.276.431.568.638.878a72.66 72.66 0 0 1 1.104 1.756c.552.809.656 1.755.466 2.668-.173.791-.328 1.583-.621 2.289-.104.224-.207.62-.518.62-.88-.018-.811-1.309-1.052-1.945-.242-.775-.569-1.463-.897-2.118-.345-.688-.759-1.325-1.173-1.979-.121-.224-.294-.43-.449-.654-.656-.998-3.261-3.116-4.865-5.026-1.742-1.962-3.33-3.993-4.882-5.973-1.536-1.996-3.175-3.804-4.865-5.783-.828-.999-1.674-2.014-2.433-3.116l-1.069-1.549a20.304 20.304 0 0 0-1.105-1.377c-1.552-1.824-3.519-3.546-5.141-5.835a17.325 17.325 0 0 1-1.104-1.79 6.616 6.616 0 0 0-.897-1.274c-.707-.843-1.639-1.635-2.605-2.513-2.053-1.876-3.571-3.804-5.313-5.645-1.156-1.24-2.347-2.445-3.589-3.512-1.207-1.015-2.691-2.065-4.054-3.115-2.76-2.083-5.503-4.131-8.402-5.852a41.885 41.885 0 0 0-4.451-2.324c-1.466-.62-3.26-1.325-4.796-2.066-1.57-.74-3.105-1.463-4.64-1.979a19.07 19.07 0 0 0-2.295-.637l-2.553-.499-11.921-2.324c-3.899-.895-7.729-.981-11.835-1.067a185.35 185.35 0 0 1-3.071-.12c-1.052-.052-2.105-.207-2.933-.19-1.811 0-3.709.465-5.71.913-1.001.206-2.053.413-3.123.533-.517.069-1.138.086-1.604.103-.466 0-.932.069-1.397.121-1.881.241-3.779.792-5.711 1.36l-3.071.895c-.517.137-1.052.275-1.587.396-.552.12-1.087.223-1.483.327-.88.241-1.76.654-2.709 1.119-.949.481-2.018.929-2.933 1.308a132.848 132.848 0 0 0-11.265 5.456c-3.675 1.979-7.108 4.251-10.662 6.592-3.554 2.29-7.177 4.51-10.886 6.593-3.364 1.876-6.78 3.614-10.334 5.181-3.692 1.583-7.504 2.427-11.213 3.287l-2.778.637c-.966.224-1.949.413-2.916.568a45.308 45.308 0 0 1-5.882.499c-3.899.052-7.781-.086-11.697-.774a37.948 37.948 0 0 1-5.78-1.481c-.931-.309-1.915-.722-2.76-1.067-.707-.292-1.535-.482-2.45-.671-1.759-.344-3.985-.671-5.917-1.773-1.622-.878-3.312-1.704-5.02-2.53-3.416-1.618-6.987-3.357-10.231-5.525-3.26-2.135-6.314-4.51-9.298-6.92l-4.279-3.477a61.845 61.845 0 0 1-4.244-3.718c-2.726-2.599-5.21-5.37-7.642-8.141-2.416-2.737-4.883-5.542-7.212-8.417a169.348 169.348 0 0 1-3.433-4.389 185.233 185.233 0 0 0-3.312-4.424c-2.174-2.926-4.451-5.697-6.659-8.83-2.14-3.098-3.986-6.282-6.004-9.243-4.21-5.972-8.298-12.255-11.766-18.813-4.658-8.916-8.522-18.314-10.748-28.194-1.121-4.871-2.122-9.914-2.087-15.13.052-5.112.793-10.293 2.57-15.181 1.001-2.806 2.347-5.508 3.934-8.021 1.604-2.53 3.485-4.785 5.244-7.006l1.294-1.669.311-.413.414-.517a8.66 8.66 0 0 1 .88-.895c1.207-1.101 2.467-1.91 3.674-2.702l1.777-1.17 1.777-1.205a37.407 37.407 0 0 1 3.865-2.255c3.174-1.618 6.469-2.857 9.747-3.942l4.899-1.601c1.605-.516 3.244-1.118 4.969-1.583 3.399-.964 6.814-1.601 10.213-2.186l5.089-.861c1.726-.292 3.433-.499 5.072-.791 1.639-.293 3.227-.672 4.71-1.223.362-.137.742-.292 1.087-.447.328-.155.914-.413 1.363-.534.966-.292 1.898-.43 2.795-.533 1.794-.207 3.433-.258 4.917-.637 1.638-.413 3.26-.844 4.865-1.36 6.4-1.997 12.473-5.009 17.786-9.088 3.071-2.41 6.09-5.095 8.367-8.159 2.295-3.115 4.003-6.713 5.849-10.327.914-1.825 1.984-3.598 2.829-5.319.863-1.773 1.604-3.597 2.277-5.473 1.329-3.736 2.433-7.643 3.606-11.498a609.87 609.87 0 0 1 9.005-28.556c.742-2.358 1.432-4.75 2.036-7.143.604-2.444 1.38-4.871 2.226-7.229 1.708-4.751 3.588-9.295 4.985-14.08 3.158-9.914 7.609-19.33 12.336-28.521 2.398-4.579 4.727-9.191 7.401-13.65a160.306 160.306 0 0 1 8.591-12.96l7.729-10.621c2.588-3.494 5.055-7.212 7.884-10.62 5.59-6.885 12.076-12.995 18.942-18.555a162.84 162.84 0 0 1 14.354-10.327l14.923-9.312c5.141-3.064 10.644-5.319 16.01-7.59 5.365-2.29 10.834-4.562 16.389-6.507 4.744-1.687 9.506-3.047 14.25-4.596l3.571-1.119 1.794-.568a11.15 11.15 0 0 1 2.14-.413c1.362-.137 2.553-.12 3.571-.344.431-.086 1.138-.31 1.759-.448.639-.154 1.277-.275 1.898-.395 2.502-.482 4.969-.792 7.211-1.395l1.777-.533a11.71 11.71 0 0 1 2.088-.396c1.363-.155 2.639-.155 3.795-.241.397-.034.242-.017.328-.034h.103l.207-.052c.138-.017.259-.052.38-.086.259-.052.5-.138.725-.207.396-.137.759-.223 1.138-.31l.552-.137c.121-.052.156-.035.156 0 0 .017.051 0 .086.034.052.035.172.207.224.19a.449.449 0 0 0 .173-.121c.051-.052.12-.138.189-.24.069-.035.121-.431.19-.638.052-.206.155-.602.397-.585v-.034ZM250.622 711.232c-.258 1.479-2.479 1.255-3.805 1.788-.293.103-.465.189-.913.206-.465.018-.965 0-1.412-.103-.517-.103-1.016-.258-1.55-.378-.069 0-.138-.034-.19-.052-.051-.017 0-.12-.034-.189v-2.819l.069-3.886c0-1.186 0-2.355-.052-3.507-.051-1.101-.189-2.373-.206-3.611a61.687 61.687 0 0 1 .258-7.376c.224-2.441.534-4.831.878-7.203l.5-3.559c.137-1.066.172-2.235.292-3.508.052-.636.138-1.289.276-1.96.069-.326.155-.67.241-1.014l.241-.877.964-3.438 1.929-6.895a80.59 80.59 0 0 1 4.943-13.771c2.066-4.436 4.322-8.631 6.664-12.895 2.377-4.264 5.098-8.304 7.939-12.224 2.084-2.837 4.322-5.622 6.733-8.201a160.894 160.894 0 0 1 7.388-7.53c5.098-4.849 10.557-9.336 16.343-13.342a263.198 263.198 0 0 1 17.686-11.313c5.993-3.662 12.519-6.636 19.081-9.078 3.254-1.238 6.647-2.458 10.108-3.284 3.358-.859 6.768-1.753 10.281-2.389 1.722-.327 3.599-.568 5.27-.74 1.653-.189 3.324-.498 5.046-.808 1.705-.292 3.495-.602 5.321-.756 1.808-.155 3.565-.189 5.287-.258l10.401-.516c3.462-.155 6.906-.344 10.298-.688a81.502 81.502 0 0 0 5.063-.67l5.149-.86c3.445-.567 6.751-1.117 10.04-2.046 4.013-1.066 7.939-2.183 11.642-3.748a42.778 42.778 0 0 0 5.338-2.665c1.636-.997 3.462-2.252 5.149-3.352 3.427-2.287 6.751-4.642 9.661-7.376 2.91-2.785 5.683-5.846 8.283-8.992 2.601-3.163 5.063-6.447 7.457-9.817s4.753-6.826 7.353-10.161c2.601-3.335 5.494-6.533 8.818-9.284 3.289-2.751 7.163-5.124 11.503-6.241 4.598-1.204 9.265-.997 13.656-.843l3.358.121a21.9 21.9 0 0 1 3.514.498 20.83 20.83 0 0 1 3.427 1.066 12.27 12.27 0 0 1 1.653.791c.534.292.93.516 1.412.774 1.86.945 3.875 1.719 5.941 2.51 2.067.774 4.236 1.702 6.217 2.734 4.03 2.063 7.767 4.435 11.59 6.413 4.219 2.149 8.007 4.951 11.693 7.65l10.952 8.339 10.935 8.373c3.617 2.905 7.009 5.966 10.522 8.803 3.496 2.733 7.216 5.312 10.798 7.977 1.808 1.341 3.616 2.596 5.425 4.04 1.773 1.427 3.461 2.906 5.183 4.264a35.023 35.023 0 0 0 2.652 1.891c.878.568 1.877 1.084 2.876 1.668 1.963 1.135 3.875 2.338 5.769 3.559 3.806 2.441 7.508 4.917 11.366 7.204a50417.885 50417.885 0 0 1 40.418 24.018c2.893 1.685 5.7 3.456 8.593 5.021a83.089 83.089 0 0 0 8.972 4.16c6.131 2.373 12.588 3.972 19.132 4.539 8.783.757 17.704-.825 26.452-2.338 1.963-.413 3.961-1.186 6.199-1.565 2.308-.343 4.323-.309 6.389-.584 1.016-.12 2.015-.292 2.945-.55a13.5 13.5 0 0 0 1.395-.482c.517-.206 1.051-.378 1.584-.55 2.119-.653 4.237-1.031 6.286-1.478a35.189 35.189 0 0 0 2.997-.774c.447-.138 1.05-.344 1.601-.464a18.457 18.457 0 0 1 1.653-.31c1.085-.155 2.118-.275 3.1-.447a9.203 9.203 0 0 0 1.395-.361l1.533-.533c2.101-.67 4.219-1.1 6.303-1.513l3.082-.653c1.016-.206 1.98-.533 3.134-.757 1.481-.275 2.911-.361 4.254-.55.671-.103 1.326-.223 1.911-.395.31-.103.569-.189.861-.327.362-.137.706-.309 1.068-.43 2.876-1.031 5.838-1.134 8.559-1.478 1.36-.172 2.704-.396 3.944-.826.551-.189 1.412-.515 2.169-.653.775-.155 1.533-.206 2.274-.241 1.481-.068 2.893 0 4.219-.086 1.326-.103 2.858-.24 4.27-.24 4.53-.086 9.024.447 13.45 1.238 2.187.395 4.426.894 6.527 1.358 1.05.223 2.187.413 3.341.756 1.153.361 2.221.791 3.254 1.273 2.084.962 3.996 2.114 5.924 3.077a29.38 29.38 0 0 0 2.928 1.272c1.085.396 2.118.877 3.151 1.376 4.099 2.046 7.664 4.865 10.987 7.719 6.631 5.468 12.245 12.173 16.533 19.566a88.873 88.873 0 0 1 3.03 5.639c.93 1.891 1.878 3.8 2.704 5.811.81 1.995 1.498 4.092 1.791 6.293.293 2.252.138 4.315.19 6.447l.034 16.007v8.012c0 2.665.138 5.329-.207 8.08a40.859 40.859 0 0 1-1.739 7.995c-.913 2.545-1.619 5.003-2.428 7.599-.413 1.29-.844 2.579-1.361 3.851l-.465 1.152-.619 1.445c-.913.034-2.153.051-2.566.206-.844.223-1.602.103-2.377-.189-.689-.258-1.429-.413-2.135-.636-.224-.069-.62-.138-.655-.447-.12-.877 1.257-.98 1.981-1.17a24.067 24.067 0 0 1 2.635-.533l.688-.085c.207-.018.551-.052.465-.052.018-.034.035-.034.052-.052.017-.034 0 .035.069-.068l.172-.379.327-.825.62-1.702a105.79 105.79 0 0 0 1.137-3.507c.379-1.187.758-2.407 1.171-3.628.448-1.255.826-2.269 1.154-3.456a37.725 37.725 0 0 0 1.308-7.032c.224-2.321.104-4.917.155-7.393l.052-7.478.086-14.958v-5.089c-.017-1.548-.293-3.112-.74-4.642-.896-3.078-2.446-6.069-3.961-9.13-2.997-5.983-6.734-11.605-11.211-16.539-2.6-2.923-5.493-5.468-8.559-8.012-3.013-2.51-6.13-4.849-9.557-6.568-.861-.413-1.723-.825-2.618-1.152-.896-.344-1.946-.773-2.841-1.22-1.86-.912-3.582-1.926-5.305-2.803-1.739-.877-3.427-1.633-5.252-2.011l-5.821-1.273c-4.012-.842-8.059-1.478-12.123-1.65-2.032-.086-4.047-.069-6.062.103-2.101.241-4.34.103-6.234.223-.982.069-1.808.224-2.669.551-1.068.412-2.153.67-3.238.859-2.152.396-4.253.499-6.217.791-.981.155-1.945.327-2.841.602a12.14 12.14 0 0 0-1.326.481c-.362.155-1.068.464-1.602.602-2.29.636-4.391.619-6.268.997-.431.086-.792.172-1.257.292l-1.412.361-2.79.619c-1.843.379-3.651.74-5.39 1.221-.861.241-1.722.516-2.532.825-1.033.396-2.066.585-3.031.74-.964.137-1.877.258-2.738.412-.43.086-.844.155-1.24.275l-1.308.413c-3.806 1.135-7.509 1.479-10.729 2.837-1.998.791-4.013 1.049-5.924 1.238-1.912.206-3.84.189-5.425.533-1.687.344-3.427.98-5.39 1.427-1.997.412-3.737.67-5.631.997-3.72.619-7.474 1.169-11.297 1.444-3.806.31-7.681.327-11.538-.069-3.823-.412-7.612-1.1-11.314-2.114-7.147-1.943-13.966-4.969-20.287-8.752l-18.667-11.106-18.633-11.072-9.317-5.536c-3.134-1.857-6.199-3.852-9.23-5.777-2.067-1.307-4.116-2.596-6.2-3.817l-3.203-1.823a32.52 32.52 0 0 1-3.203-2.166c-2.032-1.53-3.875-3.146-5.752-4.625-1.842-1.444-3.943-2.871-5.907-4.298l-5.975-4.298-2.979-2.149c-.982-.757-1.946-1.548-2.911-2.321-3.84-3.147-7.422-6.379-11.331-9.267l-13.433-10.213c-4.477-3.387-8.937-6.928-13.57-9.851-1.412-.894-2.772-1.634-4.322-2.424a190.943 190.943 0 0 1-4.478-2.493c-2.927-1.685-5.803-3.37-8.782-4.728-2.928-1.359-6.217-2.339-9.386-3.92l-1.188-.619-1.068-.602a14.387 14.387 0 0 0-2.118-.877c-1.464-.499-3.031-.791-4.598-.928-6.63-.224-13.484-.98-19.287 1.616-2.928 1.255-5.597 3.112-8.06 5.261-2.462 2.132-4.701 4.573-6.768 7.152-4.873 6.103-9.127 12.912-14.207 19.101-2.514 3.112-5.149 6.138-7.973 8.992-2.79 2.906-5.993 5.485-9.282 7.754-2.032 1.427-4.116 2.768-6.165 4.109a42.36 42.36 0 0 1-6.596 3.645c-4.598 2.046-9.403 3.353-14.173 4.591-4.873 1.255-9.764 1.822-14.603 2.682-4.925.808-9.885 1.083-14.81 1.306l-15.224.705c-2.497.121-4.925.568-7.439 1.015-1.257.223-2.532.447-3.823.601-1.326.155-2.497.275-3.754.482-4.908.808-9.885 2.149-14.69 3.473-4.753 1.513-9.523 3.387-14.104 5.398-3.926 1.737-7.646 3.731-11.331 5.983a277.096 277.096 0 0 0-10.901 6.86c-3.565 2.373-7.112 4.831-10.505 7.393a135.286 135.286 0 0 0-9.816 8.236c-4.167 3.851-8.197 7.96-11.865 12.241-3.616 4.332-6.871 9.061-9.868 13.875-1.463 2.424-2.824 4.917-4.167 7.444-1.343 2.545-2.669 5.072-3.858 7.634-1.188 2.561-2.29 5.175-3.203 7.84-.93 2.647-1.619 5.381-2.411 8.166l-1.963 7.101-.499 1.771c-.155.55-.276 1.014-.345 1.581-.155 1.084-.189 2.27-.292 3.559-.586 5.038-1.395 9.732-1.602 14.528-.121 2.407-.052 4.677.155 7.153.172 2.544.103 5.037.086 7.461v.688c.017.223.035.103.052.138h.086c.052-.035 0 0 0 .068 0 .035-.035.086.069.138.206.051.43.12.654.155.93.171 1.981.343 3.031.619.224.051.637.189.603.429l.051-.034Z%27/%3E%3Cpath d=%27M215.368 711.118c-.12 1.547-2.569 1.237-3.775 1.753a5.464 5.464 0 0 1-.742.258c-.258.069-.448.103-1.017.103-.551 0-1.103 0-1.62-.051l-.397-.035c-.103-.051-.327.069-.327-.12l-.224-.774c-.138-.515-.311-1.014-.38-1.547l-.103-.808v-.962a9.94 9.94 0 0 1 .121-1.066c.12-.688.293-1.324.465-1.925.362-1.221.638-2.166.655-3.111.035-1.238.121-2.459.224-3.696a85.144 85.144 0 0 1 1-7.289c.862-4.83 2.086-9.505 3.362-14.146 1.258-4.642 2.448-9.369 3.775-13.958.656-2.321 1.345-4.71 2.345-7.048 1.034-2.303 1.965-4.349 2.896-6.601 1.828-4.4 3.741-9.007 6.121-13.235 2.275-4.246 4.603-8.509 7.137-12.652 1.844-3.008 3.793-5.965 5.913-8.818 2.121-2.785 4.12-5.587 6.293-8.406a77.934 77.934 0 0 1 7.016-8.01l7.155-7.632c2.413-2.544 5.051-5.071 7.758-7.288l7.913-6.824c5.258-4.59 10.809-9.059 16.498-13.133l8.431-6.171 4.137-3.18a59.762 59.762 0 0 1 4.431-3.077c3.017-1.908 6.103-3.61 9.085-5.346 2.966-1.856 6.31-3.489 9.499-4.865 3.19-1.426 6.448-2.767 9.672-4.142l4.844-2.063c1.621-.67 3.328-1.186 5-1.771l5.034-1.736c2-.584 3.845-.636 5.362-.928a7.888 7.888 0 0 0 1.051-.258c.155-.051.311-.103.449-.154l.534-.241a17.737 17.737 0 0 1 2.776-.963c1.827-.481 3.568-.722 5.12-1.134.465-.121.914-.258 1.344-.413.432-.154.776-.309 1.414-.567 1.138-.447 2.276-.705 3.362-.911 2.172-.413 4.155-.619 5.862-1.238.758-.257 1.81-.79 2.81-1.186 1-.395 1.999-.79 2.982-1.151 1.965-.722 3.896-1.427 5.707-2.252 1.827-.825 3.482-1.771 5.068-2.957a44.834 44.834 0 0 0 4.603-3.867c2.879-2.768 5.413-5.965 7.499-9.369 2.086-3.438 3.759-7.185 5.431-10.984 1.672-3.73 3.017-7.597 4.362-11.551 1.362-3.936 2.655-7.924 4.448-11.861a52.505 52.505 0 0 1 6.689-11.018 51.985 51.985 0 0 1 9.878-9.471 43.391 43.391 0 0 1 12.206-6.343c4.362-1.461 8.947-2.269 13.481-2.493 4.448-.258 8.931-.447 13.43-.378 4.672.086 9.362.43 13.999 1.289 4.672.877 9.103 2.218 13.533 3.696 4.414 1.495 8.775 3.352 12.861 5.569 1.931 1.015 4.052 1.84 6.189 2.802 1.069.482 2.155.997 3.207 1.599.534.292 1.052.636 1.569.997l1.414.997c3.654 2.578 7.447 5.054 11.136 7.701 3.707 2.63 7.258 5.535 10.655 8.543 3.396 3.008 6.672 6.102 9.982 9.162 1.655 1.53 3.31 3.042 4.999 4.538l2.534 2.2a22.802 22.802 0 0 1 2.483 2.51c2.655 3.111 4.586 6.377 7.654 8.766 1.518 1.358 2.845 2.837 4.207 4.246l4.138 4.177 8.344 8.371c2.706 2.819 5.672 5.312 8.671 7.89 1.276 1.1 2.552 2.235 3.759 3.387a84.903 84.903 0 0 0 3.741 3.283c2.551 2.08 5.206 4.263 7.827 6.171 2.689 1.891 5.568 3.541 8.482 5.191 2.93 1.599 5.844 3.403 8.706 5.019 7.809 4.349 16.102 7.976 24.325 11.637 3.896 1.685 7.81 3.301 11.792 4.745 1.983.722 3.983 1.392 6 2.028.982.31 2.051.619 3.086.997a101.8 101.8 0 0 1 3.017 1.169c1.965.791 3.896 1.564 5.861 1.994 1.931.481 4.017.292 6.396.911.293.086.603.189.914.327.31.12.655.361.81.447.397.257.828.464 1.259.636.879.361 1.844.584 2.844.739 2 .326 4.207.361 6.448 1.014 2.569 1.014 5.206.808 8.137.825.724 0 1.465.017 2.207.069l2.12.206c1.328.086 2.69.017 4.069-.103 2.758-.258 5.62-.791 8.637-.705l1.155.069.379.051s.156 0 .225-.017l.741-.412c.362-.155.707-.344 1.086-.482 1.465-.567 2.965-.825 4.413-1.014 2.242-.292 4.397-.447 6.276-1.169 2.155-.928 4.585-1.203 6.637-1.667 1.052-.224 2.034-.516 2.948-.928.965-.447 2.017-.98 3.103-1.41 1.069-.43 2.379-.773 3.569-.859a17.431 17.431 0 0 0 3.069-.568c4.085-1.1 7.913-3.523 12.43-4.761a18.028 18.028 0 0 1 3.482-.619c.81-.069.621.035.983-.206.482-.344.982-.636 1.5-.911 2.034-1.152 4.241-1.908 6.447-2.458 4.293-1.049 8.568-1.307 12.758-1.96a66.255 66.255 0 0 1 12.912-.498c2.155.12 4.293.361 6.431.704a65.23 65.23 0 0 1 3.172.602c1.069.224 2.103.533 3.086.688 1.017.172 2.086.292 3.207.55.551.137 1.12.292 1.689.567l1.431.756c1.862.946 3.81 1.736 5.793 2.544 2.465.98 5.034 2.097 7.395 3.318 2.397 1.186 4.81 2.406 7.189 3.696 4.776 2.544 9.241 5.689 13.551 8.887l12.809 9.712 1.638 1.203a7.473 7.473 0 0 1 1.603 1.684c.604.946.397.671.5.843.052.086.086.172.138.275.173.361.293.756.397 1.151.189.722.189 1.582.224 2.252.121.739 0 1.393-.293 2.166-.259.67-.362 1.41-.569 2.132-.069.223-.121.618-.431.67-.862.12-1-1.203-1.224-1.942-.259-.86-.483-1.805-.5-2.837v-.79c0-.155 0-.31-.017-.447a6.68 6.68 0 0 0-.156-.843 2.926 2.926 0 0 0-.189-.55c.069.103-.259-.515-.535-.79-.31-.361-.603-.619-1.103-.98l-3.034-2.286c-4.017-3.077-7.931-6.206-11.913-9.197-4.017-3.008-8.034-5.81-12.395-8.165-2.173-1.203-4.397-2.337-6.638-3.472a70.207 70.207 0 0 0-6.741-3.128c-1.568-.654-3.189-1.307-4.792-2.046a42.899 42.899 0 0 1-2.379-1.169l-.586-.326c-.173-.086-.259-.138-.431-.207a6.947 6.947 0 0 0-1-.309c-.724-.172-1.552-.292-2.414-.413-.827-.103-1.896-.343-2.638-.533a52.627 52.627 0 0 0-4.913-.962c-6.637-.997-13.344-.808-20.067.309-15.861.808-29.825 10.434-45.324 13.545-2.155.826-4.327 1.032-6.258 1.479-.483.103-.948.223-1.414.378-.482.155-.81.292-1.413.516a17.63 17.63 0 0 1-3.276.825c-2.155.344-4.224.447-6.051.928a9.61 9.61 0 0 0-2.569 1.049c-.396.24-.776.412-1.224.429-.224 0-.431 0-.655-.034l-.396-.052a13.114 13.114 0 0 0-1.431-.051c-3.914-.052-8.051 1.169-12.585.808l-1.552-.155c-.483-.034-.965-.069-1.483-.069h-3.086c-1.068 0-2.155 0-3.292-.137a12.542 12.542 0 0 1-1.724-.31c-.293-.069-.569-.154-.862-.24l-.69-.224c-1.603-.464-3.413-.567-5.362-.808-1.93-.24-4.085-.687-5.947-1.891-1-.687-2.914-.704-4.827-.893-2.018-.172-4.035-.705-5.845-1.358-1.844-.654-3.568-1.41-5.292-2.046-1.655-.619-3.5-1.083-5.328-1.702-3.62-1.169-7.189-2.492-10.723-3.902-7.051-2.853-13.895-5.982-20.739-9.213-3.414-1.65-6.81-3.369-10.12-5.26l-4.879-2.871-4.913-2.785c-3.172-1.822-6.379-3.781-9.293-6.136-2.844-2.252-5.723-4.521-8.482-7.013-2.672-2.544-5.31-4.796-8.12-7.22-1.379-1.203-2.758-2.458-4.068-3.782l-3.827-3.867-7.655-7.718a137.111 137.111 0 0 1-3.827-3.954 64.716 64.716 0 0 0-1.862-1.874c-.621-.601-1.241-1.082-2.034-1.804-2.897-2.734-4.759-5.948-7.086-8.406-.586-.636-1.155-1.152-1.845-1.736l-2.086-1.788-4.086-3.644c-7.309-6.652-14.343-13.391-22.377-18.874-3.982-2.767-8.189-5.483-12.171-8.302-1.845-1.238-4.069-2.132-6.344-3.095a73.673 73.673 0 0 1-3.466-1.547l-3.275-1.667c-4.983-2.424-10.258-4.28-15.637-5.81-5.361-1.616-10.775-2.527-16.36-2.836-6.638-.361-13.465-.103-20.102.378-6.551.619-12.982 2.578-18.55 5.982-5.569 3.472-10.448 8.079-14.154 13.511-1.862 2.716-3.431 5.621-4.741 8.646-1.293 3.025-2.379 6.223-3.483 9.42-1.293 3.764-2.568 7.58-4.154 11.31-1.621 3.679-3.224 7.34-5.19 10.898-3.948 7.151-9.568 13.339-16.55 17.74-4.431 2.647-9.361 3.833-13.74 5.81-2.431 1.134-5.051 1.392-7.413 1.822-1.19.206-2.328.481-3.362.928-1.172.516-2.465.894-3.707 1.169-2.499.533-4.827.825-6.947 1.891-2.672 1.083-5.224.808-7.362 1.513-4.637 1.615-9.326 3.042-13.826 5.105-4.672 1.994-9.43 3.936-13.981 6.102-2.293 1.066-4.397 2.355-6.638 3.679-2.224 1.289-4.431 2.527-6.586 3.85-2.154 1.324-4.24 2.716-6.206 4.28-2.017 1.599-4.068 3.129-6.12 4.659-4.12 3.042-8.275 5.999-12.258 9.11-6.775 5.294-13.136 11.242-19.705 16.846-3.172 2.819-6.068 5.999-8.982 9.179a232.1 232.1 0 0 1-4.465 4.761 61.979 61.979 0 0 0-4.241 4.762c-1.793 2.2-3.482 4.503-5.206 6.824-1.724 2.355-3.483 4.607-5.069 6.944-3.206 4.71-6.051 9.678-8.809 14.732-1.362 2.544-2.793 5.071-4 7.597-1.224 2.562-2.31 5.209-3.413 7.873l-1.707 4.005c-.586 1.358-1.242 2.647-1.724 3.902-1 2.579-1.724 5.329-2.5 8.131l-3.758 14.216c-1.276 4.727-2.345 9.488-3.034 14.25a67.339 67.339 0 0 0-.656 7.15l-.034.946c0 .395-.069.756-.121 1.117-.12.722-.31 1.358-.482 1.96-.345 1.186-.621 2.217-.587 3.128v.206l.018.018h.034c.017 0 .052 0 .069-.035.034-.051 0 0 0 .069.31.069.948.189 1.414.275 1.017.172 2.017.43 3.017.67.207.052.603.155.586.396l.103-.086ZM-2.47 709.744c-.138.758-.69 1.068-1.5 1.274-.328.104-1.122.155-1.69.069-.587-.086-1.19-.241-1.656-.361-.207-.241-.225-.706-.328-1.137-.07-.396-.12-.809-.19-1.205-.052-.586-.12-1.24-.103-1.964 0-.361.034-.74.12-1.153.035-.207.087-.414.156-.62.379-1.034.741-2.119 1-3.255.535-2.274.81-4.685 1.276-7.182.224-1.24.518-2.514.914-3.788l.259-.81c.069-.224.103-.465.138-.706.069-.516.103-1.102.172-1.756.07-.655.156-1.395.414-2.17l.535-1.774 1.052-3.513 2.087-7.027.259-.878c.051-.224.103-.448.138-.706.069-.517.103-1.085.155-1.722.051-.637.103-1.326.293-2.101.103-.396.224-.792.431-1.206.086-.206.242-.413.345-.602l.207-.328c1.121-1.791 1.673-4.012 2.121-6.389.897-4.925 2.415-9.764 3.933-14.431.758-2.342 1.517-4.667 2.207-6.992.656-2.308 1.345-4.753 2.087-7.113a198.74 198.74 0 0 1 4.967-14.018c2.622-6.682 5.553-13.329 9.313-19.564a215.391 215.391 0 0 1 5.916-9.058c1.052-1.481 2.139-2.962 3.328-4.374 1.156-1.412 2.518-2.807 3.708-4.03 9.124-11.246 22.525-18.272 33.649-26.831l8.9-5.941c1.465-.999 2.88-1.998 4.31-3.066l4.33-3.169c2.863-2.101 5.657-4.219 8.226-6.544 2.553-2.359 5.071-4.856 7.261-7.491a46.365 46.365 0 0 0 5.623-8.628c1.569-3.048 3.052-6.406 4.26-9.524a30.578 30.578 0 0 0 1.207-4.873c.138-.844.241-1.671.328-2.532l.103-1.274c0-.379.017-.741 0-1.12-.086-1.515-.535-3.099-1.018-4.856-.448-1.739-.983-3.72-.793-5.838.035-.465 0-.947 0-.844 0 0 .052.069.017.035l-.034-.052-.138-.19a7.576 7.576 0 0 1-.518-.775 17.474 17.474 0 0 1-1.569-3.237c-.81-2.187-1.242-4.305-1.88-6.2l-2.173-5.993-2.121-6.027a108.928 108.928 0 0 0-2.26-5.89c-.793-1.877-1.741-3.927-2.5-5.942-1.57-4.047-2.863-8.128-4.33-12.072l-4.432-11.986c-1.535-3.944-2.983-7.956-5.001-11.452a38.364 38.364 0 0 0-7.64-9.506c-3.036-2.79-6.485-4.96-10.245-6.906-3.932-2.067-8.003-3.772-12.262-4.702-1.104-.241-2.053-.379-3.294-.602a52.44 52.44 0 0 1-3.433-.793c-2.207-.585-4.328-1.171-6.38-1.36l-13.47-.155c-4.485-.017-8.934.138-13.263.913-4.415.826-8.9 2.359-13.332 3.823l-6.709 2.221-.845.276c-.293.086-.69.207-.983.258-.638.138-1.156.224-1.604.362-.448.138-.81.293-1.138.534-.259.172-.845.706-1.311 1.05-3.915 3.066-8.45 4.908-12.366 7.164-3.967 2.291-7.71 5.081-11.607 7.767-14.953 10.712-30.164 21.372-45.445 31.55l-9.951 6.802c-3.225 2.377-6.33 4.909-9.503 7.354-6.278 4.994-12.487 10.143-18.178 15.706-2.449 2.376-4.605 4.908-6.899 7.526-2.294 2.583-4.639 5.063-6.95 7.594-2.311 2.515-4.536 5.063-6.64 7.75a223.816 223.816 0 0 1-6.709 7.853c-6.209 6.871-12.556 13.536-19.058 20.132-6.157 6.182-12.504 12.193-19.264 17.755-6.847 5.494-13.712 10.764-20.559 16.154-9.037 7.267-18.505 14.07-27.629 21.165l-5.363 4.236c-1.829 1.395-3.674 2.721-5.502 4.065a112.843 112.843 0 0 0-5.364 4.133c-1.811 1.446-3.673 2.79-5.536 4.116-1.863 1.309-3.708 2.617-5.485 3.978-1.793 1.292-3.276 2.876-5.208 4.374-.483.362-1 .706-1.535 1.016-.517.293-.948.534-1.431.827a31.107 31.107 0 0 0-2.708 1.86c-1.777 1.309-3.484 2.772-5.226 4.202-3.466 2.721-6.743 5.442-9.848 8.456-3.07 3.031-6.209 6.079-9.072 9.265a58.628 58.628 0 0 0-4.018 4.994c-1.293 1.791-2.639 3.461-3.673 5.27-.535.912-.932 1.808-1.38 2.858a80.882 80.882 0 0 1-1.414 2.963c-.966 1.963-1.932 3.892-2.725 5.855a29.308 29.308 0 0 0-1.259 3.789l-.966 3.978c-.656 2.652-1.311 5.304-1.794 7.956l-.328 1.998a6.182 6.182 0 0 0-.051 1.773c.138 1.189.672 2.377 1.172 3.686 1.001 2.773 1.277 5.476 2.156 7.939.414 1.223.966 2.377 1.708 3.393l1.259 1.601c.431.568.828 1.154 1.207 1.757 1.397 2.445 2.811 4.563 4.622 6.544a36.023 36.023 0 0 0 2.829 2.807l.62.517.19.155c.242.206.518.379.759.585.483.362 1 .706 1.535.913.793.293 1.328.792 1.811 1.446.431.586.966 1.085 1.466 1.619.155.173.466.414.345.706-.311.827-1.587.259-2.329 0-.879-.275-1.759-.602-2.587-1.033a12.715 12.715 0 0 1-2.431-1.619c-.259-.206-.483-.43-.725-.637l-.362-.31-.741-.672c-.501-.447-.966-.929-1.449-1.412-.949-.964-1.811-1.997-2.639-3.065-.828-1.068-1.569-2.204-2.277-3.358l-.965-1.636c-.311-.5-.656-1.016-1.001-1.499-.603-.826-1.724-2.049-2.345-3.341a19.013 19.013 0 0 1-1.501-3.943c-.741-2.652-1-5.098-1.931-7.285-.449-1.205-.983-2.6-1.052-4.236-.035-.81.103-1.654.207-2.239l.362-1.946c.517-2.566 1.155-5.098 1.793-7.578l.932-3.719a31.235 31.235 0 0 1 1.224-3.858c1.328-3.41 3.087-6.493 4.502-9.592.327-.741.707-1.636 1.155-2.463.449-.827.949-1.619 1.466-2.377 1.035-1.515 2.087-2.858 3.105-4.288 2.121-2.927 4.535-5.58 6.985-8.111 2.466-2.514 4.88-5.029 7.485-7.474a116.21 116.21 0 0 1 4.656-4.116l4.743-3.875c1.569-1.309 3.173-2.635 4.881-3.875a39.203 39.203 0 0 1 2.656-1.756c1-.569 1.707-.948 2.466-1.533 1.501-1.137 2.967-2.669 4.691-3.944 1.656-1.274 3.346-2.462 5.019-3.633 1.673-1.172 3.346-2.325 4.95-3.548 1.586-1.188 3.156-2.532 4.829-3.772 3.449-2.583 6.933-4.959 10.193-7.646 3.328-2.669 6.726-5.27 10.123-7.836 6.83-5.132 13.574-10.212 20.231-15.568l18.074-14.294c5.933-4.787 11.573-9.954 17.04-15.327 5.45-5.373 10.745-10.918 16.04-16.498 5.277-5.58 10.399-11.211 15.177-17.204 4.811-5.855 10.106-10.987 14.883-16.636 5.019-5.7 10.728-10.608 16.437-15.379 1.431-1.188 2.845-2.376 4.311-3.547l4.433-3.462 4.432-3.461 2.208-1.723 2.293-1.567 18.42-12.623c4.19-2.842 8.227-5.752 12.349-8.628 4.104-2.859 8.192-5.804 12.262-8.766 4.087-2.927 8.158-5.941 12.245-8.817 4.07-2.893 8.244-5.941 12.866-8.301 2.587-1.326 5.122-2.617 7.416-4.133.57-.379 1.138-.775 1.673-1.188.57-.396.931-.827 1.828-1.43.81-.516 1.742-.826 2.536-.998l1.069-.224a7.13 7.13 0 0 0 .897-.241c5.467-1.722 10.934-3.737 16.591-5.305 6.916-1.98 14.16-2.101 21.075-1.963l5.192.086h2.57c.845.017 1.707 0 2.69.052 3.811.258 7.14 1.584 10.365 2.204l2.553.448c.88.172 1.759.362 2.638.603a43.239 43.239 0 0 1 5.105 1.67c3.33 1.292 6.485 2.911 9.538 4.65 6.209 3.53 11.624 8.576 15.367 14.707a43.105 43.105 0 0 1 2.914 5.597c.811 1.895 1.57 3.806 2.311 5.718 1.466 3.823 2.812 7.68 4.191 11.504 1.432 3.806 2.725 7.732 4.053 11.538.673 1.912 1.38 3.806 2.173 5.649.794 1.825 1.639 3.771 2.363 5.683 1.621 4.271 2.984 8.576 4.536 12.812 1.88 4.22 2.121 9.059 4.691 12.4.328.396.483.964.535 1.429.052.448.034.844 0 1.206-.052.74-.052 1.24.034 1.911.156 1.292.518 2.584.88 3.944.362 1.343.724 2.755.845 4.254.121 1.532-.069 2.945-.224 4.357-.362 2.824-1.001 5.631-2.122 8.3-1.069 2.584-2.207 5.15-3.466 7.664-2.346 4.736-5.433 9.196-9.124 12.985-1.828 1.912-3.69 3.754-5.691 5.494-2 1.739-4.087 3.358-6.174 4.925l-6.313 4.65c-2.121 1.567-4.294 3.031-6.467 4.495-4.38 2.91-8.64 5.7-12.763 8.937a40.062 40.062 0 0 1-2.81 1.929c-1.036.62-1.915 1.085-2.812 1.705-1.776 1.188-3.467 2.583-5.209 3.961-1.707 1.412-3.673 2.721-5.312 3.996-1.672 1.343-3.26 2.824-4.777 4.374-1.535 1.55-3.018 3.186-4.536 4.805l-2.294 2.411a47.274 47.274 0 0 0-2.138 2.411c-2.742 3.323-5.07 7.043-7.485 10.763-6.26 9.764-10.52 20.838-14.332 31.894a175.593 175.593 0 0 0-2.587 8.404c-.794 2.859-1.708 5.718-2.622 8.525-.914 2.807-1.828 5.597-2.587 8.387-.828 2.824-1.259 5.545-1.931 8.593-.31 1.274-.725 2.583-1.328 3.858-.294.602-.707 1.291-1.018 1.791-.172.258-.293.689-.38 1.205-.172 1.051-.103 2.342-.43 3.858-.363 1.326-.708 2.462-1.07 3.702l-2.138 7.285-.535 1.826-.259.878c-.069.224-.12.448-.155.706-.172.999-.103 2.394-.535 3.926-.793 2.343-1.12 4.616-1.5 7.147-.38 2.48-.793 5.115-1.777 7.681-.103.31-.051.155-.068.224v.052l-.018.12v.276c0 .206 0 .43.052.671.052.431.069.913.034 1.43-.069.103-.172.155-.241.327 0 .103.069.241.224.362.035.068.259.12.518.172l.776.172c.224.052.672.172.62.413l-.051-.017ZM583.888-167.253c.12-1.555 2.563-1.244 3.767-1.762.241-.104.482-.19.74-.242.086-.035.327-.052.585-.069.24-.018.481-.035.722-.035 1.084 0 2.236-.034 3.286 0l1.599.035h.809l.155.017-.241.346-.499.691-.98 1.399-2.013 2.748-.809 1.002a49.7 49.7 0 0 1-1.892 2.177c-.86.95-1.754 1.866-2.649 2.748-1.806 1.779-3.681 3.473-5.573 5.114l-5.608 4.907a192.914 192.914 0 0 1-5.729 4.89c-3.904 3.18-7.964 6.169-12.265 8.865l-12.729 7.775-6.331 3.871c-2.098 1.296-4.18 2.73-6.261 4.06-4.146 2.713-8.257 5.443-12.111 8.467-2.803 2.212-5.59 4.476-8.274 6.825-2.666 2.333-5.178 4.839-7.655 7.43-2.46 2.575-4.799 5.253-6.898 8.07l-6.382 8.76c-4.3 5.84-8.738 11.422-12.454 17.539l-11.095 18.54c-1.927 3.076-3.51 6.169-5.195 9.417-.843 1.607-1.686 3.232-2.598 4.839-.464.794-.929 1.607-1.411 2.384a52.592 52.592 0 0 0-1.341 2.264c-1.703 3.058-3.097 6.358-4.748 9.659l-5.006 9.624c-1.72 3.162-3.01 6.393-4.507 9.763-.74 1.676-1.514 3.352-2.408 5.01a113.651 113.651 0 0 0-2.477 4.753c-3.131 6.428-5.832 13.046-8.378 19.802a295.036 295.036 0 0 1-2.408 6.082l-1.29 3.024c-.43.967-.826 1.935-1.221 2.92-1.531 3.94-3.011 8.138-4.628 12.13l-4.73 12.026c-1.497 4.113-3.2 8.139-4.8 12.113-.843 1.987-1.428 3.94-2.408 6.117-.946 2.073-2.03 3.957-2.907 5.805-.43.934-.809 1.85-1.084 2.765a31.214 31.214 0 0 1-1.118 3.231c-.895 2.126-1.978 4.078-3.079 5.962-1.119 1.9-2.151 3.663-3.114 5.581a58.534 58.534 0 0 1-3.423 5.737c-2.494 3.68-5.402 7.067-8.618 10.125-3.355 3.197-7.243 6.255-11.836 7.983-1.135.432-2.287.812-3.56 1.054-1.239.242-2.477.328-3.682.346-1.204.017-2.373-.018-3.509-.052l-1.686-.035c-.619-.034-1.255-.034-1.875-.121-5.04-.535-9.409-3.144-13.159-5.875-.964-.708-1.841-1.347-2.821-2.142-.947-.778-1.824-1.624-2.65-2.454-1.651-1.693-3.13-3.421-4.713-4.959-3.475-3.387-6.588-7.205-9.272-11.214-2.649-3.871-5.591-7.568-8.515-11.318-2.907-3.784-5.814-7.43-9.031-10.851-3.217-3.404-6.606-6.67-10.373-9.28l-11.766-7.343c-3.853-2.28-8.326-3.905-12.437-6.065-1.961-.933-4.18-1.451-6.434-1.987a66.7 66.7 0 0 1-3.44-.864c-1.153-.31-2.323-.795-3.32-1.089-2.116-.621-4.404-.898-6.709-1.226-1.153-.173-2.34-.346-3.509-.588-1.187-.224-2.357-.622-3.406-.864-2.013-.466-4.146-.605-6.331-.864a36.88 36.88 0 0 1-3.285-.5c-1.153-.243-2.099-.536-3.131-.675-2.047-.31-4.18-.328-6.348-.345-1.083 0-2.167 0-3.268-.052-.619-.035-.963-.052-1.514 0-.533.034-1.204.138-2.013-.138-3.302-1.262-7.121-.674-11.043-1.21-.964-.12-2.013-.397-2.856-.605a34.304 34.304 0 0 0-2.718-.466c-1.84-.242-3.715-.363-5.608-.519-1.737-.155-3.492-.328-5.229-.656a92.317 92.317 0 0 0-5.058-.933c-3.388-.501-6.829-.847-10.286-1.434-6.864-1.245-13.659-3.059-20.11-5.789-4.352-1.797-8.566-3.87-12.695-6.082a79.593 79.593 0 0 1-11.869-7.672c-3.527-2.713-6.847-5.616-10.167-8.536-3.337-2.972-6.399-6.22-9.272-9.607A204.822 204.822 0 0 1 98.014-8.39c-3.2-4.958-6.141-10.108-9.014-15.205l-8.721-15.31c-2.288-4.008-4.593-7.878-7.346-11.524-2.7-3.715-5.47-7.361-8.394-10.852-2.925-3.49-6.038-6.808-9.376-9.832a284.563 284.563 0 0 1-10.149-9.227c-1.6-1.52-3.2-3.023-4.834-4.492-1.6-1.469-3.302-2.868-4.937-4.406-3.25-3.041-6.21-6.325-9.186-9.556-2.924-3.266-6.055-6.307-9.082-9.538a208.785 208.785 0 0 1-8.773-9.935c-1.772-2.16-3.51-4.303-5.161-6.601-1.617-2.298-3.08-4.7-4.438-7.136a216.195 216.195 0 0 1-3.905-7.413c-1.239-2.557-2.185-5.27-2.873-8.018-.688-2.747-1.1-5.546-1.41-8.328-.413-3.128.86-5.979 1.307-8.467.034-.311.103-.639.12-.933 0-.156.035-.311.035-.467v-.656a19.207 19.207 0 0 0-.258-1.694c-.035-.259-.155-.604-.103-.794.189-.052.516 0 .774-.035h1.685l1.308-.052c.62-.017 1.256-.052 1.84-.207.843-.225 1.6-.104 2.374.19.689.259 1.428.415 2.133.639.224.069.62.139.654.45.12.881-1.256.984-1.978 1.175a23.84 23.84 0 0 1-2.632.535c-.912.121-1.858.19-2.787.173-.034 0-.034-.017-.069-.035.018 0-.068-.017-.068 0v.432c-.086 1.556-.465 2.955-.809 4.217-.344 1.261-.67 2.419-.757 3.507a8.363 8.363 0 0 0 0 1.607l.207 1.901c.31 2.523.74 5.011 1.393 7.43a38.308 38.308 0 0 0 2.632 6.981c1.17 2.315 2.322 4.613 3.56 6.86 1.24 2.246 2.547 4.44 3.992 6.514 1.427 2.073 3.044 4.095 4.661 6.099 4.421 5.478 9.17 10.644 14.175 15.655 4.989 5.132 9.513 10.575 14.76 15.102 6.364 5.409 12.11 11.284 18.423 16.64 6.227 5.668 11.456 12.251 16.376 18.938 1.273 1.763 2.546 3.456 3.802 5.287a110.334 110.334 0 0 1 3.475 5.547c2.202 3.732 4.317 7.447 6.468 11.214 4.317 7.482 8.412 15.068 13.073 22.221 4.18 6.514 8.756 12.752 13.642 18.73 2.442 2.973 4.988 5.858 7.706 8.537 2.684 2.66 5.677 5.149 8.636 7.654 2.959 2.471 5.969 4.839 9.134 6.981 3.131 2.143 6.502 3.94 9.926 5.72 6.829 3.507 13.882 6.548 21.279 8.397 2.047.519 4.128 1.002 6.192 1.417 2.047.415 4.146.709 6.262.985 2.116.276 4.266.536 6.451.881 1.084.173 2.167.363 3.268.605 1.05.225 2.013.398 3.045.536 4.06.553 8.584.5 12.97 1.693 1.841.45 3.888.484 6.073.536 2.167.069 4.575.207 6.898 1.088 0 .052.705 0 1.754-.069l2.426.07c1.565.017 3.165 0 4.816.069 1.652.069 3.338.207 5.041.587.911.225 1.513.38 2.27.518.74.139 1.48.242 2.254.329 1.531.19 3.131.31 4.782.535a26.6 26.6 0 0 1 2.512.467c.412.086.877.242 1.238.328.361.104.705.19 1.067.277 2.907.69 6.089.846 9.392 1.537.654.139 1.325.312 1.978.502.671.207 1.325.449 1.858.622 1.118.38 2.305.673 3.526.95 2.426.57 5.041 1.071 7.604 2.16 1.342.587 2.305 1.14 3.475 1.659l3.457 1.537c2.34 1.037 4.714 2.143 6.984 3.525l6.537 4.01c2.168 1.382 4.369 2.556 6.503 4.198 4.197 3.197 7.826 6.877 11.284 10.713a132.885 132.885 0 0 1 5.66 6.843l5.401 6.929c1.789 2.332 3.561 4.734 5.212 7.17a66.606 66.606 0 0 0 5.299 6.757c1.152 1.296 2.305 2.471 3.578 3.732 1.273 1.296 2.442 2.609 3.612 3.853 1.187 1.244 2.374 2.419 3.664 3.404 1.376 1.054 2.752 2.091 4.163 3.024 2.804 1.866 5.814 3.3 8.98 3.767.808.104 1.548.155 2.425.173l2.632.069c1.72.052 3.372.034 4.937-.225 3.096-.57 6.21-2.056 8.928-3.939 2.718-1.918 5.264-4.286 7.62-6.757a57.036 57.036 0 0 0 6.331-8.052 53.802 53.802 0 0 0 2.58-4.423 81.946 81.946 0 0 1 2.563-4.666c1.05-1.797 2.082-3.525 2.942-5.322.43-.898.808-1.797 1.152-2.712.172-.45.31-.916.448-1.383.154-.535.344-1.071.533-1.59.791-2.056 1.823-3.887 2.769-5.701.981-1.832 1.669-3.543 2.409-5.547l4.661-11.474c1.445-3.818 3.045-7.689 4.542-11.525l2.821-7.136 2.718-7.17c.894-2.42 2.013-4.77 2.976-7.103.98-2.35 1.909-4.717 2.838-7.101a275.881 275.881 0 0 1 5.883-14.221 136.24 136.24 0 0 1 3.338-6.964c1.221-2.315 2.442-4.458 3.44-6.79 1.084-2.385 2.081-4.838 3.2-7.258 1.152-2.436 2.425-4.717 3.612-7.084 1.204-2.35 2.46-4.683 3.63-7.033 1.135-2.367 2.219-4.786 3.44-7.17a59.255 59.255 0 0 1 1.978-3.525 82.777 82.777 0 0 0 1.979-3.37c1.255-2.28 2.442-4.648 3.664-6.998 1.204-2.367 2.546-4.683 3.904-6.946l4.06-6.825 6.864-11.595c2.339-3.87 4.937-7.568 7.603-11.197 2.718-3.611 5.316-7.222 7.913-10.85 1.308-1.798 2.58-3.63 3.974-5.461a79.968 79.968 0 0 1 4.386-5.236c4.043-4.458 8.378-8.726 13.057-12.544 2.322-1.918 4.627-3.802 7.07-5.633 2.425-1.815 4.902-3.525 7.397-5.184l7.483-4.907c2.511-1.607 5.092-3.145 7.637-4.718 5.075-3.144 10.305-6.237 15.207-9.365 4.18-2.765 8.154-5.84 12.007-9.106 1.927-1.624 3.785-3.318 5.711-5.011 1.91-1.693 3.836-3.335 5.694-5.028 1.858-1.694 3.664-3.422 5.316-5.253.825-.916 1.651-1.832 2.408-2.799.155-.19.086-.104.12-.173l.052-.069.069-.138a.468.468 0 0 0-.293.138c-.051.052 0 0 0-.069v-.069a2.502 2.502 0 0 0-.326-.07l-.757-.138c-1.015-.173-2.013-.432-3.011-.674-.206-.052-.602-.155-.585-.397l-.051.086Z%27/%3E%3Cpath d=%27M234.218 711.117c-.121 1.548-2.567 1.238-3.772 1.754-.465.206-1.016.344-1.516.344h-1.912l-1.653.017h-.982c-.103-.034-.069-.241-.12-.361l-.155-.808-.293-1.617-.121-1.084c-.051-.309-.051-.636-.069-.945-.258-5.091 1.172-9.769 1.516-14.189.103-1.118.103-2.167.052-3.302-.052-1.187-.086-2.442.017-3.732a11.78 11.78 0 0 1 .327-1.995c.086-.344.19-.688.327-1.032l.311-.791c.378-.998.654-2.047.878-3.131.465-2.184.517-4.402.947-6.931.414-2.442 1.102-4.764 1.809-7.034 1.464-4.454 2.738-8.977 4.564-13.466 1.877-4.317 3.479-8.685 5.546-13.037a70.275 70.275 0 0 1 1.636-3.216l1.757-3.044 3.513-6.088c.862-1.445 1.688-3.01 2.618-4.506a58.048 58.048 0 0 1 2.98-4.317c2.084-2.786 4.323-5.4 6.545-7.98a181.402 181.402 0 0 1 14.175-14.945c4.995-4.713 10.265-9.167 15.811-13.243 2.738-2.047 5.701-3.99 8.526-5.796 1.395-.929 2.773-1.858 4.03-2.855 1.257-1.032 2.652-2.184 4.047-3.199a43.14 43.14 0 0 1 4.444-2.907c1.55-.911 3.272-1.599 4.754-2.27 3.048-1.376 6.045-2.906 9.008-4.523 6.028-3.491 12.71-5.744 19.066-8.014 1.894-.723 3.875-.774 5.425-.964.793-.086 1.499-.223 2.033-.43l1.068-.515c.447-.19.878-.379 1.343-.534 3.634-1.272 7.182-1.186 10.093-2.063 3.634-1.032 7.216-.998 10.575-1.136.81-.034 1.757-.068 2.635-.051l2.532.034c.81 0 1.567-.034 2.274-.137a5.9 5.9 0 0 0 .981-.224c.345-.103.483-.172.999-.395 4.341-1.824 8.715-1.514 12.298-2.391.448-.103.895-.224 1.326-.361l1.498-.465 2.997-.86c1.981-.55 3.944-1.049 5.856-1.616 3.858-1.118 7.337-2.563 10.558-4.799 1.619-1.083 3.169-2.304 4.702-3.577l2.274-1.96 1.119-1.015c.31-.275.551-.551.827-.894 1.085-1.325 1.843-3.268 3.548-5.16l1.085-1.084c.31-.326.603-.67.896-1.031a20.403 20.403 0 0 0 1.567-2.322c.965-1.634 1.826-3.492 2.652-5.332l2.532-5.52 5.081-11.042 1.344-2.889c.603-1.118 1.274-1.892 1.619-2.58.086-.172.172-.344.224-.499l.275-.705c.19-.499.362-.997.586-1.479a43.63 43.63 0 0 1 1.309-2.889c3.996-8.101 10.868-14.602 18.894-18.609 4.03-2.012 8.439-3.285 12.9-3.853 2.257-.275 4.409-.429 6.769-.343 2.325.137 4.444.567 6.407.619h1.481c.534 0 1.085.034 1.619.086 1.068.068 2.136.24 3.17.447 2.084.413 4.064 1.049 5.993 1.72l5.65 2.046c.93.327 1.86.619 2.773.895.465.12.93.275 1.395.361l.689.172.172.034h.051s.173.069.259.086c.155.069.275.138.362.207.172.137.258.223.327.309.12.138.051.069.103.103 3.565 2.786 8.319 4.523 12.763 7 4.443 2.477 8.491 5.452 12.469 8.41l5.322 3.956c1.775 1.376 3.462 2.838 5.116 4.299l4.926 4.369c1.636 1.393 3.376 2.82 5.012 4.334 3.289 2.992 6.39 6.122 9.524 9.184 3.118 3.044 6.442 5.968 9.577 9.098 5.477 5.4 10.868 10.749 16.965 15.41l8.904 7.24c2.997 2.391 6.132 4.558 9.266 6.742a249.025 249.025 0 0 0 16.552 10.353c2.825 1.6 5.701 3.113 8.612 4.592a188.064 188.064 0 0 0 8.801 4.266l11.936 5.555c3.979 1.857 7.94 3.749 12.005 5.4 3.823 1.6 7.647 3.13 11.557 4.42a88.69 88.69 0 0 0 5.89 1.772 95.497 95.497 0 0 1 6.045 1.685c1.981.602 3.945 1.187 5.908 1.531.999.189 1.912.258 3.031.361 1.068.12 2.119.292 3.152.481 2.067.379 4.065.792 6.063.998.999.103 1.981.138 2.962.12.483-.017.982-.051 1.464-.12.5-.052 1.068-.138 1.585-.172 2.859-.241 5.666-.069 8.37-.155a30.357 30.357 0 0 0 3.996-.344 17.057 17.057 0 0 0 1.912-.413c.655-.172 1.412-.378 2.101-.498 2.859-.533 5.632-.568 8.25-1.032a18.222 18.222 0 0 0 1.929-.413l1.964-.602c1.378-.413 2.756-.722 4.134-.997 2.152-.43 4.288-.774 6.372-1.239 2.084-.464 4.168-.997 6.252-1.582 4.168-1.152 8.319-2.459 12.608-3.474 4.202-.929 8.284-2.219 12.47-3.423 2.084-.584 4.202-1.169 6.372-1.582a92.861 92.861 0 0 1 6.459-.98l6.201-.74a60.162 60.162 0 0 1 6.321-.43 60.244 60.244 0 0 1 12.555 1.135c1.034.207 2.067.43 3.083.688.534.138.982.258 1.447.327.483.086.982.138 1.481.189 1.017.104 2.084.172 3.221.482.551.137 1.189.464 1.585.688.448.241.895.447 1.36.671 3.686 1.702 7.734 2.855 11.506 4.918 2.256 1.393 4.512 2.357 6.958 3.457 1.206.551 2.411 1.135 3.582 1.84 1.206.723 2.222 1.566 3.256 2.339 4.168 3.199 8.215 6.536 12.177 9.958 1.98 1.72 3.944 3.457 5.89 5.212 2.067 1.788 3.772 4.42 4.134 7.274.224 1.411.155 2.821.172 4.077V617.935l.034.981c.018.619.052 1.238.207 1.84.224.843.103 1.582-.207 2.373-.258.688-.413 1.428-.637 2.116-.069.223-.138.602-.448.653-.878.121-.981-1.255-1.171-1.977a23.395 23.395 0 0 1-.534-2.649 19.027 19.027 0 0 1-.172-2.786l.034-.929v-3.078c-.034-1.084-.206-2.099-.551-3.045-.344-.946-.878-1.805-1.55-2.614-.327-.413-.723-.791-1.119-1.169l-1.344-1.239a290.643 290.643 0 0 0-5.46-4.867 251.503 251.503 0 0 0-11.247-9.321l-1.446-1.118a15.005 15.005 0 0 0-1.378-.946c-.965-.602-1.998-1.118-3.083-1.634-2.153-1.015-4.547-1.995-6.717-3.354-2.704-1.616-5.805-2.7-8.939-3.955-1.568-.619-3.169-1.307-4.72-2.133-.981-.585-2.6-.602-4.34-.808-.844-.086-1.929-.327-2.635-.516a36.185 36.185 0 0 0-2.394-.533 51.035 51.035 0 0 0-4.823-.757 59.607 59.607 0 0 0-9.748-.292c-1.912.103-3.738.326-5.718.584l-5.787.723a69.803 69.803 0 0 0-11.247 2.356c-3.738 1.049-7.475 2.218-11.351 3.096-3.789.825-7.492 1.891-11.246 2.958-16.035 3.732-31.571 8.633-48.14 8.083-.448.034-.861.103-1.292.138-.499.051-.999.12-1.481.137-.999.069-1.981.035-2.945-.034-1.929-.138-3.807-.482-5.598-.809-1.808-.326-3.565-.636-5.287-.774-1.964-.154-3.858-.567-5.684-1.049l-5.305-1.53c-1.688-.482-3.531-.877-5.322-1.393-3.6-1.015-7.113-2.236-10.575-3.56-3.462-1.325-6.855-2.769-10.231-4.197l-10.024-4.661c-6.665-3.147-13.417-6.105-19.927-9.562-6.356-3.251-12.505-6.931-18.481-10.801a235.152 235.152 0 0 1-8.853-6.019 246.152 246.152 0 0 1-4.323-3.165c-1.412-1.1-2.773-2.235-4.151-3.371l-8.284-6.759c-2.791-2.201-5.495-4.609-8.061-7.068l-7.63-7.395c-2.515-2.477-5.133-4.764-7.751-7.241-3.513-3.319-6.872-6.707-10.403-9.872-1.756-1.599-3.565-3.027-5.442-4.626l-5.426-4.73c-1.791-1.548-3.599-3.061-5.494-4.42l-5.821-4.248c-3.858-2.803-7.734-5.504-11.867-7.636-3.858-2.012-8.095-3.612-12.005-6.622a1.774 1.774 0 0 1-.396-.412l-.035-.035.741-.636c.138-.12.241-.224.276-.275.051-.052.051-.103.068-.121.276-1.324-.378 1.789-.31 1.462H516.252l-.638-.154c-.43-.104-.843-.19-1.257-.31-.827-.224-1.636-.482-2.446-.74-1.601-.533-3.169-1.118-4.702-1.685-3.083-1.135-6.097-2.184-9.162-2.597a17.2 17.2 0 0 0-2.308-.189c-.707-.017-1.637 0-2.532-.052-1.774-.103-3.41-.395-4.978-.533a20.697 20.697 0 0 0-2.308-.086c-.809 0-1.602.052-2.394.103a44.26 44.26 0 0 0-4.736.602c-6.252 1.152-12.126 4.007-17.086 8.032-4.978 3.99-8.818 9.253-11.178 15.186-.155.361-.293.74-.431 1.118l-.206.568c-.069.189-.172.481-.276.705-.43.946-.999 1.668-1.412 2.287a5.28 5.28 0 0 0-.5.894l-.499 1.084-1.033 2.253-4.151 9.046c-1.654 3.543-3.204 7.103-4.978 10.629-.93 1.754-2.015 3.543-3.41 5.091-.345.395-.706.774-1.102 1.118-.362.344-.586.567-.862.928-.533.671-1.016 1.479-1.532 2.305-.517.843-1.086 1.72-1.809 2.545-.792.86-1.516 1.411-2.239 2.081-1.481 1.29-2.997 2.563-4.564 3.75-3.135 2.39-6.683 4.488-10.455 5.778-4.65 1.669-9.369 2.58-13.916 4.059-2.446.74-4.926.929-7.286 1.204-1.188.138-2.342.31-3.462.568-.551.137-1.102.292-1.636.481-.568.189-.965.396-1.671.671-2.635.86-5.15.516-7.492.533-2.342.069-4.822.103-7.148.258a29.013 29.013 0 0 0-3.462.464c-1.067.224-2.307.637-3.548.843-2.445.43-4.822.602-7.009 1.256-.569.154-1.103.361-1.637.602-.275.103-.517.257-.775.378a7.58 7.58 0 0 1-1.016.43c-1.378.43-2.67.481-3.892.602-1.241.12-2.308.275-3.411.722l-3.513 1.256c-4.668 1.668-9.301 3.422-13.59 5.778a151.613 151.613 0 0 1-13.399 6.673c-2.153 1.049-4.186 2.391-6.132 3.853a72.039 72.039 0 0 0-2.876 2.287c-.965.826-1.998 1.6-3.032 2.322-14.347 8.995-26.868 20.26-37.891 32.935-3.652 4.282-7.389 8.462-10.386 13.054a48.648 48.648 0 0 0-2.118 3.525l-2.119 3.664-4.237 7.309c-2.635 4.816-4.512 10.113-6.769 15.307-1.068 2.528-1.946 5.159-2.807 7.825-.827 2.666-1.74 5.383-2.515 8.014-.637 2.253-1.154 4.489-1.36 6.777-.224 2.407-.517 4.918-1.292 7.378-.19.602-.431 1.238-.655 1.806-.172.412-.275.894-.361 1.393-.155 1.014-.173 2.132-.121 3.285.052 1.1.121 2.476.052 3.732a43.2 43.2 0 0 1-.379 3.715c-.345 2.425-.792 4.764-.999 7.034-.121 1.135-.138 2.253-.121 3.371.035.55.052 1.1.138 1.633.052.379.035.258.052.31v.069s.103-.035.138-.052l.034-.034c.017 0-.034 0 .034-.017h.224c1.068-.121 2.05.137 3.049.309 1.016.172 2.015.43 3.014.671.207.052.603.155.586.396l-.138.017ZM889.954 70.189c.756.138 1.065.689 1.272 1.498.103.345.154 1.137.085 1.688-.068.586-.223 1.171-.343 1.67-.464.362-1.649.397-2.388.466-.567.034-1.117.069-1.684.137l-.842.104-.429.051-1.46.224-1.598.293c-2.113.413-4.244.999-6.443 1.533-2.164.534-4.329 1.05-6.459 1.619-4.227 1.12-8.453 2.549-12.645 3.96a191.147 191.147 0 0 0-6.236 2.257l-3.093 1.206c-.927.378-1.838.843-2.766 1.395-1.855 1.067-3.762 2.41-6.133 3.306l-1.615.534a25.53 25.53 0 0 0-1.46.569c-.962.413-1.924.878-2.869 1.394-7.662 4.358-15.204 8.991-21.853 14.726-4.896 4.133-9.552 8.507-13.641 13.347-2.062 2.428-3.865 4.943-5.738 7.629a601.066 601.066 0 0 0-5.498 7.957c-3.625 5.356-6.958 10.712-10.05 16.465-1.684 2.91-3.659 5.58-5.601 8.18l-5.772 7.767c-7.645 10.437-15.737 20.564-22.18 31.689-3.418 5.494-6.803 10.902-8.864 16.775-.464 1.395-1.048 3.186-1.701 4.667l-1.959 4.461c-.653 1.464-1.151 2.859-1.718 4.426l-1.683 4.547c-1.323 3.616-2.543 7.216-3.385 10.884-.876 3.858-1.976 7.578-2.783 11.281-.722 3.84-1.907 7.698-2.921 11.349-1.082 3.669-1.666 7.337-2.491 11.229-.412 1.929-.893 3.892-1.58 5.821l-1.031 2.739a62.195 62.195 0 0 0-.911 2.686c-.584 1.826-1.151 3.686-1.803 5.563-.653 1.895-1.444 3.737-2.217 5.511-1.597 3.6-3.419 7.148-5.703 10.454-2.268 3.324-5.103 6.338-8.281 8.766-3.35 2.618-7.027 4.736-10.772 6.596-1.89.93-3.745 1.774-5.652 2.635-.962.431-1.976.844-3.058 1.172-.533.155-1.1.31-1.667.413-.55.103-1.254.172-1.649.207-3.694.361-7.422 2.29-11.665 3.203-3.986.93-7.92 1.877-11.614 3.289-4.209 1.585-8.349 2.257-11.974 4.082-3.78 1.74-7.405 3.806-10.755 6.252-6.666 4.839-12.181 11.435-15.222 19.082-.738 1.86-1.374 3.841-1.803 5.77-.413 1.928-.602 3.943-.67 5.993-.069 2.049-.001 4.116.017 6.217.068 2.119-.069 4.22.189 6.131.068.483.154.948.275 1.378.051.224.137.413.206.62l.292.741a61.91 61.91 0 0 1 1.065 3.014c.653 2.015 1.22 4.047 1.821 6.027.601 1.998 1.22 3.962 1.959 5.873.635 1.877 1.889 3.445 2.851 5.546 1.323 3.496 2.646 6.751 4.57 9.765.928 1.464 2.113 2.928 3.127 4.46l3.041 4.564c1.014 1.516 2.027 3.014 3.109 4.444 1.066 1.429 2.234 2.807 3.402 4.236 2.302 2.825 4.587 5.649 7.078 8.215 4.33 4.272 9.174 8.215 14.242 11.643 2.543 1.705 5.172 3.306 7.886 4.65a59.326 59.326 0 0 0 8.487 3.375c.962.31 1.993.603 2.938.844.928.224 1.975.327 3.109.655.275.086.567.172.859.292l.705.293c.446.172.91.327 1.391.465.945.276 1.907.448 2.887.569 1.975.223 3.968.172 5.995-.069a88.39 88.39 0 0 0 6.116-.862c15.772-1.928 28.743-11.211 42.796-18.6 4.759-2.342 9.741-4.236 14.328-6.492 1.014-.569 2.388-1.499 4.037-1.602a29.807 29.807 0 0 0 3.831-.362c1.237-.206 2.474-.482 3.643-.878a31.57 31.57 0 0 1 3.899-1.102c4.158-.948 8.453-.879 12.525-.879l12.352-.034h6.168c2.096 0 4.192.103 6.27.344 2.079.241 4.141.569 6.168 1.016 1.014.207 2.027.465 3.024.724l1.494.413c.447.138.756.172 1.254.207.447.017.98 0 1.564.086.55.034 1.288.293 1.701.499.893.396 1.786.758 2.697 1.12 1.821.723 3.659 1.395 5.497 2.067 3.694 1.343 7.439 2.617 11.082 4.271 7.318 3.358 13.537 8.456 19.602 13.502 3.951 3.169 7.164 7.13 10.308 10.936 1.563 1.895 3.23 3.755 4.776 5.752 1.546 1.981 3.006 3.996 4.45 6.028 2.903 4.065 5.772 7.957 9.208 11.574.842.964 1.649 1.997 2.337 3.134l.549.93c.172.31.327.637.481.947.275.62.533 1.257.842 1.843.464.844.447 1.757.206 2.635-.24.775-.412 1.55-.756 2.239-.103.207-.223.603-.549.586-.877-.069-.756-1.344-.945-2.016-.206-.792-.481-1.532-.739-2.256-.275-.74-.618-1.464-.928-2.204-.103-.241-.206-.5-.343-.741l-.172-.327-.412-.672a17.766 17.766 0 0 0-.928-1.291c-.67-.879-1.375-1.619-2.199-2.549-3.196-3.582-5.876-7.492-8.556-11.281-1.34-1.894-2.68-3.771-4.071-5.58-1.375-1.774-2.938-3.548-4.399-5.373-2.937-3.617-5.806-7.199-9.225-10.058-4.845-4.099-9.673-8.129-15.016-11.246-5.291-3.152-11.304-4.96-17.317-7.13a148.65 148.65 0 0 1-5.24-1.998l-1.306-.551c-.429-.189-.549-.224-.927-.276-.653-.103-1.701.052-2.938-.258-3.556-.982-7.078-1.722-10.669-2.136-3.573-.447-7.198-.344-10.943-.378l-11.099-.035h-5.789c-1.907 0-3.763.086-5.618.31a30.77 30.77 0 0 0-5.429 1.154c-.842.258-1.838.637-2.818.878-.979.259-1.975.448-2.972.586a29.19 29.19 0 0 1-3.006.276c-.894 0-1.409.189-2.199.585l-1.237.706c-.498.276-.928.465-1.375.672l-2.645 1.223c-3.539 1.584-7.096 3.048-10.48 4.736-3.041 1.498-6.013 3.341-9.054 5.046-3.024 1.739-6.065 3.462-9.157 5.115-3.11 1.653-6.236 3.22-9.518 4.633-3.367 1.412-6.82 2.29-10.239 3.1-3.367.826-6.958 1.533-10.428 1.929-3.471.482-7.319.654-11.013-.362a20.245 20.245 0 0 1-2.662-.947c-.567-.241-1.323-.379-2.182-.534-1.873-.31-3.557-.913-5.257-1.43-3.385-1.119-6.718-2.514-9.879-4.219-6.064-3.324-11.562-7.423-16.699-11.901-2.577-2.17-5.102-4.719-7.301-7.302-2.234-2.601-4.295-5.218-6.443-7.853-2.182-2.721-4.037-5.598-5.893-8.388a189.602 189.602 0 0 0-2.8-4.116c-.464-.654-.979-1.326-1.495-2.084a43.954 43.954 0 0 1-1.408-2.256 47.56 47.56 0 0 1-2.302-4.701c-.705-1.55-1.237-3.342-1.873-4.53-.687-1.309-1.787-2.842-2.44-4.598a66.622 66.622 0 0 1-1.735-4.891l-2.027-6.528a61.584 61.584 0 0 0-1.1-3.151l-.635-1.602c-.258-.672-.395-1.326-.498-1.963-.413-2.566-.258-4.84-.361-7.079-.052-2.273-.138-4.581-.052-6.957.086-2.36.361-4.788.979-7.131a44.564 44.564 0 0 1 2.354-6.716c1.924-4.357 4.622-8.301 7.783-11.815 3.642-4.047 7.954-7.405 12.593-10.144a75.846 75.846 0 0 1 7.146-3.685c2.526-1.171 5.172-1.843 7.646-2.584 1.511-.447 2.886-.878 4.363-1.463a61.37 61.37 0 0 1 4.605-1.464c3.04-.879 6.27-1.499 9.105-2.274 2.886-.844 5.875-2.135 9.277-2.583l1.22-.121c.326-.034.653-.086.996-.155.67-.137 1.358-.361 2.045-.602 1.374-.5 2.783-1.189 4.209-1.826 5.635-2.566 11.081-5.528 15.531-9.627 4.484-4.047 7.645-9.386 10.222-14.984.738-1.653 1.494-3.358 2.13-5.011.636-1.671 1.203-3.41 1.77-5.184.566-1.757 1.133-3.548 1.838-5.322a35.091 35.091 0 0 0 1.701-5.115c.91-3.496 1.443-7.164 2.388-10.833.927-3.634 2.078-7.147 2.955-10.695.515-2.153.944-4.495 1.546-6.699l1.701-6.648c.979-4.495 2.508-8.939 4.106-13.21l2.405-6.458c.859-2.17 1.872-4.237 2.749-6.321a43.593 43.593 0 0 0 1.185-3.134c.361-1.12.756-2.204 1.203-3.29.876-2.17 1.907-4.253 3.006-6.286 2.285-4.219 4.914-8.18 7.336-12.193 2.422-4.099 5.171-8.008 7.903-11.866 5.532-7.681 11.218-15.225 16.819-22.871 2.388-3.238 4.81-6.407 6.752-9.8 1.872-3.496 3.9-7.078 6.03-10.488 2.13-3.428 4.364-6.786 6.631-10.11 2.303-3.307 4.467-6.648 7.027-9.903 3.367-4.288 7.164-8.18 11.167-11.831 3.986-3.617 8.161-7.113 12.627-10.196 4.467-3.117 9.054-5.821 13.761-8.542a39.468 39.468 0 0 1 3.729-1.843c1.271-.586 2.748-.947 3.745-1.395 2.233-.964 4.363-2.618 6.94-3.875 4.381-1.912 8.608-3.358 12.971-4.874l6.529-2.136c2.216-.688 4.449-1.291 6.666-1.86l6.614-1.67c2.233-.568 4.501-1.102 6.855-1.447l2.096-.379c.515-.086 1.185-.086 1.529-.034.034.069.154.19.292.241.103 0 .24-.069.361-.224.034-.052.068-.069.085-.155l.086-.344.172-.775c.052-.224.172-.672.412-.62l.069-.138ZM-26.045 709.672c-.155.772-.724 1.047-1.483 1.27-.293.103-1.07.189-1.655.189-.621 0-1.173-.103-1.69-.155-.38-.051-.948-.12-1.242-.274.035-.412.121-.858.242-1.321l1.655-7.002c.517-2.162 1.397-4.41 2.173-6.349l2.31-6.091c1.535-4.084 3.07-8.168 4.81-12.218 3.605-7.893 6.346-16.096 9.64-24.229 1.603-4.05 3.19-8.082 4.69-12.149a367.011 367.011 0 0 0 2.172-6.109l1.017-3.072.242-.738s.017-.085.017-.343c0-.257 0-.669.103-1.132.035-.223.138-.498.207-.67l.155-.377c2.38-5.869 4.863-11.634 6.88-17.537l.742-2.231a31.81 31.81 0 0 1 .913-2.351c.656-1.51 1.38-2.934 2-4.307a34.5 34.5 0 0 0 .845-2.059c.207-.618.518-1.562.828-2.299.638-1.562 1.414-3.02 2.173-4.428.758-1.407 1.517-2.745 2.138-4.101.603-1.338 1.293-2.951 2.052-4.358 1.5-2.883 3.241-5.629 5.103-8.254 3.725-5.217 7.777-10.21 12.363-14.74a108.538 108.538 0 0 1 7.104-6.452l7.242-6.143 7.276-6.178c2.621-2.11 5.38-3.689 7.673-5.577 2.225-1.75 4.156-4.427 6.966-6.537a17.36 17.36 0 0 1 1.104-.755l1.052-.618c.62-.361 1.19-.772 1.758-1.219 1.121-.892 2.156-1.939 3.121-3.071.966-1.133 1.88-2.368 2.81-3.638.898-1.253 1.932-2.608 2.76-3.792 1.672-2.454 2.983-5.182 3.965-8.031a49.284 49.284 0 0 0 1.466-5.251c.19-.875.38-1.836.5-2.659.12-.824.155-1.665.138-2.523-.034-1.699-.31-3.415-.845-5.011-.276-.72-.603-1.716-.896-2.625l-.914-2.763-.914-2.762-.828-2.626a55.635 55.635 0 0 0-2.034-5.079c-1.518-3.346-3.328-6.658-5.07-9.987-3.534-6.589-7.448-13.007-11.466-19.373-4.017-6.298-8.328-12.407-14.104-16.902-3.035-2.42-6.397-4.462-9.915-6.264-3.483-1.87-7.07-3.14-10.932-3.998-3.827-.875-7.793-1.39-11.794-2.025l-.741-.12c-.207-.017-.396-.051-.604-.068a7.762 7.762 0 0 0-1.275 0c-.863.068-1.776.24-2.725.463-1.862.463-4 .995-6 1.304-2.087.343-4.138.618-6.087 1.047-1.965.394-3.776 1.046-5.776 1.767-3.914 1.39-7.794 2.832-11.57 4.462a98.864 98.864 0 0 0-11.018 5.559l-10.845 6.178a2826.68 2826.68 0 0 0-21.278 12.149c-3.517 2.213-7.38 3.861-10.466 6.177-3.31 2.506-6.776 4.719-10.156 7.001-2.965 1.957-5.741 4.067-8.587 6.264-2.844 2.162-5.69 4.29-8.448 6.52-5.587 4.376-10.501 9.438-15.381 14.638l-6.293 6.572c-2.052 2.196-4 4.495-5.949 6.812l-5.811 6.984c-1.913 2.351-3.793 4.719-5.793 7.053-5.5 6.108-10.69 12.32-16.294 18.36a615.666 615.666 0 0 1-16.329 16.474c-2.776 2.694-5.673 5.285-8.552 7.876l-8.535 7.79-22.76 20.781c-5.846 5.508-11.501 11.222-16.76 17.245-2.673 2.969-5.052 6.195-7.501 9.335-2.414 3.174-4.966 6.229-7.311 9.455-4.621 6.177-8.983 12.423-11.207 19.751l-1.914 5.405c-.621 1.819-1.362 3.603-1.638 5.388-.621 3.638-.138 7.413 1.103 10.948.759 2.213 1.845 4.324 3.018 6.435a57.7 57.7 0 0 0 3.862 6.023c1.414 1.904 2.949 3.74 4.638 5.405 1.656 1.682 3.518 3.192 5.38 4.753l11.277 9.215 3.586 2.986.776.617c.483.395 1 .841 1.535 1.116.758.394 1.172.926 1.569 1.578.345.567.845 1.013 1.379 1.408.172.137.517.257.5.583 0 .909-1.603.652-2.414.326-.983-.292-1.897-.807-2.672-1.356a24.342 24.342 0 0 1-2.139-1.716l-.672-.617-2.242-1.922-2.603-2.179c-3.483-2.9-7.018-5.783-10.501-8.752-1.724-1.476-3.535-3.02-5.138-4.753a49.614 49.614 0 0 1-4.466-5.44 58.873 58.873 0 0 1-3.724-5.937c-1.104-2.025-2.19-4.118-3.001-6.383-1.103-3.055-1.741-6.332-1.655-9.661.052-1.665.276-3.329.707-4.942.448-1.579 1-2.986 1.5-4.479 1.052-2.951 2-5.868 3.138-8.871 1.207-2.969 2.742-5.8 4.432-8.46 3.983-6.229 8.431-11.857 12.949-17.606 2.259-2.848 4.414-5.783 6.862-8.494a219.45 219.45 0 0 1 7.397-8.03c10.518-10.948 22.054-20.729 33.072-31.059l7.517-6.933c2.501-2.334 5.035-4.53 7.484-6.898 4.897-4.667 9.621-9.575 14.38-14.448 4.742-4.822 9.138-9.97 13.639-15.101 2.224-2.591 4.604-5.096 6.742-7.636l6.466-7.893c4.224-4.994 8.345-10.227 13.087-14.912 4.552-4.667 8.949-9.627 13.914-14.14 4.966-4.513 10.346-8.425 15.536-12.406 5.19-4.17 10.983-7.585 16.139-11.411l1.31-.995a27.73 27.73 0 0 1 1.466-1.03 45.711 45.711 0 0 1 2.966-1.785 121.182 121.182 0 0 0 5.724-3.294l11.57-6.813 23.226-13.401c4.569-2.574 9.362-4.668 14.19-6.538a283.385 283.385 0 0 1 7.277-2.677c1.19-.412 2.465-.892 3.793-1.218 1.31-.343 2.62-.601 3.914-.824 3.138-.515 6-.892 8.949-1.699 1.517-.36 3.138-.738 4.914-.755.88-.017 1.862.155 2.535.258l2.276.36c6.052.944 12.38 1.905 18.242 4.547 5.708 2.66 11.156 5.869 15.88 10.107 4.76 4.273 8.38 9.404 11.76 14.586 3.897 6.126 7.639 12.303 11.104 18.687 3.328 6.4 6.984 12.749 9.001 19.905l2.052 6.28c.293 1.03.793 2.145 1.069 3.278.293 1.132.483 2.299.586 3.466a18.445 18.445 0 0 1-.034 3.518c-.138 1.201-.38 2.282-.604 3.397-.5 2.214-1.103 4.41-1.914 6.555a36.488 36.488 0 0 1-2.965 6.195 32.195 32.195 0 0 1-1.932 2.866l-1.983 2.694c-1.327 1.802-2.707 3.638-4.328 5.285a21 21 0 0 1-2.638 2.299c-.913.704-2.051 1.304-2.862 1.819-1.793 1.201-3.328 2.883-4.948 4.548-1.621 1.75-3.57 3.208-5.484 4.53-1.913 1.321-3.827 2.574-5.5 4.049l-5.276 4.496-10.553 9.009a99.07 99.07 0 0 0-9.638 9.747c-4.983 5.954-9.725 12.234-12.898 19.184-.379.841-.758 1.767-1.207 2.711-.43.91-.896 1.802-1.362 2.66-.93 1.733-1.845 3.415-2.534 5.131-.362.858-.587 1.699-.966 2.728a37.873 37.873 0 0 1-1.19 2.797c-.827 1.802-1.69 3.518-2.276 5.251-1.586 4.976-3.552 9.918-5.535 14.74l-1.482 3.621-.742 1.802c-.155.394-.172.394-.19.549l-.051.961c0 .223-.104.583-.155.772l-.156.463-.31.944-.62 1.87-1.294 3.724c-3.535 9.918-7.604 19.493-11.208 29.308a174.8 174.8 0 0 1-2.5 6.247c-.88 2.093-1.776 4.084-2.603 6.126-1.656 4.084-3.173 8.253-4.725 12.423l-2.345 6.229c-.724 1.956-1.207 4.067-1.69 6.212l-.069.326v.12l-.051.223-.07.446-.12.91c-.034.394-.052.24-.138.326-.103.051-.259.206-.224.291 0 .103.086.224.241.326.018.052.328.103.57.155l.793.171c.224.052.672.172.62.412l-.034.103ZM552.812-167.235c.12-1.549 2.559-1.239 3.761-1.755.464-.207 1.014-.344 1.512-.344h3.005l1.666-.035h2.92c.241 0 .67-.068.326.207l-1.992 2.34-3.469 4.078a45.428 45.428 0 0 1-2.336 2.478c-1.614 1.601-3.332 3.081-5.084 4.474-3.538 2.771-7.23 5.214-10.975 7.589l-11.232 6.883c-3.693 2.289-7.299 4.75-10.872 7.245-3.555 2.512-7.024 5.111-10.288 7.933-3.263 2.805-6.217 5.936-9.154 9.171a190.406 190.406 0 0 0-6.166 7.176c-1.958 2.409-3.795 4.973-5.599 7.572l-5.41 7.88-5.324 7.882-5.307 7.881-4.758 8.243-4.757 8.243c-1.58 2.787-3.177 5.506-4.586 8.294-.704 1.376-1.305 2.77-2.026 4.284a113.651 113.651 0 0 1-2.199 4.32c-1.511 2.839-3.074 5.592-4.5 8.397-1.391 2.736-2.679 5.765-4.19 8.604a166.929 166.929 0 0 1-4.672 8.432c-1.58 2.65-2.834 5.472-4.156 8.38-1.271 2.96-2.834 5.782-4.311 8.604l-8.931 16.967c-3.658 6.59-6.784 13.543-10.374 20.357-.91 1.704-1.82 3.407-2.817 5.094-.996 1.669-1.992 3.252-2.833 4.852-.43.792-.808 1.6-1.117 2.41-.326.825-.687 1.806-1.065 2.684-.755 1.807-1.597 3.562-2.473 5.3-1.752 3.459-3.692 6.763-5.547 10.066-1.787 3.287-3.796 6.763-6.063 9.895a82.67 82.67 0 0 1-7.437 8.965 43.977 43.977 0 0 1-9.188 7.434 48.036 48.036 0 0 1-2.714 1.549c-.91.499-1.941.98-2.971 1.342a21.572 21.572 0 0 1-6.389 1.24c-4.466.274-8.691-1.326-12.384-2.857-3.813-1.429-7.625-3.442-11.026-5.73-3.435-2.29-6.647-4.87-9.773-7.4-6.509-5.197-13.293-10.05-20.232-14.661-3.469-2.289-6.99-4.44-10.665-6.264a67.834 67.834 0 0 0-5.617-2.478l-2.954-1.101c-1.013-.396-1.992-.843-2.954-1.273-1.872-.86-3.692-1.704-5.547-2.29-.962-.309-1.752-.464-2.886-.688-.549-.12-1.15-.292-1.717-.567-.636-.31-.928-.517-1.374-.706-1.683-.791-3.624-1.222-5.616-1.652l-6.046-1.222-12.057-2.409c-1.958-.378-4.002-.585-6.08-.946-2.129-.361-4.001-.895-6.028-1.119-3.487-.464-7.076-.602-10.683-.998-1.803-.206-3.607-.464-5.41-.86a41.078 41.078 0 0 0-5.204-.878c-3.487-.361-7.214-.585-10.734-1.445-1.718-.344-3.453-.602-5.187-.688a26.622 26.622 0 0 0-2.611.034c-.944.034-1.889 0-2.868-.12-.807-.121-1.683-.31-2.525-.81a13.041 13.041 0 0 0-1.906-.928c-1.323-.517-2.765-.844-4.242-1.102-2.972-.464-6.098-1.084-9.034-1.944-5.96-1.687-11.645-4.061-17.244-6.54-3.779-1.669-7.54-3.493-11.112-5.644-3.59-2.116-6.939-4.766-10.013-7.502a134.758 134.758 0 0 1-16.214-16.933c-4.929-6.109-9.171-12.716-12.898-19.6-2.49-4.594-4.671-9.275-7.11-13.818a335.057 335.057 0 0 0-7.557-13.508 227.7 227.7 0 0 0-6.424-10.273c-2.164-3.287-4.963-6.143-7.763-9.086-1.408-1.48-2.8-2.977-4.122-4.594-.687-.843-1.22-1.566-1.89-2.237a25.742 25.742 0 0 0-2.146-1.945c-.773-.636-1.494-1.153-2.387-1.772-.98-.74-1.65-1.652-2.267-2.41-.602-.774-1.185-1.393-1.838-1.737a15.235 15.235 0 0 1-2.68-1.807c-1.58-1.308-2.902-2.788-4.259-4.113a20.864 20.864 0 0 0-2.095-1.841 20.692 20.692 0 0 1-2.284-1.979c-1.426-1.394-2.697-2.89-3.985-4.32a184.043 184.043 0 0 0-3.985-4.198c-5.393-5.524-11.112-10.858-15.784-17.259-2.92-4.044-5.272-8.346-7.59-12.683-2.268-4.37-4.277-8.896-5.857-13.594-1.477-4.646-3.126-9.481-2.92-14.678 0-.258.051-.826.069-.843 0-.138.017-.276-.052-.396a.527.527 0 0 0-.137-.138l-.086-.069-.224-.223a3.334 3.334 0 0 1-.704-1.17c-.154-.431-.189-.964-.171-.878v-.155l-.035-.344c0-.516.052-1.033.017-1.583l-.034-.792c.017-.241-.155-.654.189-.568.48-.034.945-.068 1.408-.155 1.632-.223 2.13-.103 2.954.19.687.258 1.426.413 2.13.636.223.069.618.138.653.448.12.877-1.254.981-1.975 1.17-.43.103-.876.224-1.306.31l-.652.12-.327.052c-.085 0-.051.034-.085.051-.12.121-.018.19-.035.224 0 .052-.017-.069-.017.155v.155c.017.069.034.103.052.138 0 .017.034.051.085.086l.035.034.154.138.31.275c.36.379.618.895.704 1.411.034.258.051.533.017.809l-.069.619-.034.74v1.583c.206 4.216 1.649 8.604 3.023 12.872 1.442 4.25 3.263 8.38 5.324 12.407 2.078 3.992 4.293 8.053 6.801 11.684 3.504 4.99 7.832 9.43 12.246 13.835 2.198 2.203 4.43 4.423 6.612 6.711 2.216 2.289 4.14 4.767 6.39 6.574.6.464 1.51 1.153 2.18 1.772.722.637 1.374 1.308 2.027 1.962 1.288 1.29 2.508 2.547 3.864 3.476.344.24.688.464 1.031.654l.635.361c.258.155.498.327.722.499.893.723 1.494 1.566 2.044 2.237.566.706 1.013 1.222 1.648 1.635a28.03 28.03 0 0 1 2.268 1.72c1.442 1.17 2.902 2.616 4.001 4.113 1.1 1.394 2.285 2.72 3.521 4.044 2.456 2.65 5.067 5.266 7.334 8.277 4.431 6.384 8.261 12.889 12.022 19.566 1.872 3.32 3.659 6.693 5.41 10.083 1.769 3.39 3.384 6.815 5.204 10.101 3.264 5.972 6.922 11.702 11.078 17.053a136.503 136.503 0 0 0 13.689 15.023 127.004 127.004 0 0 0 7.643 6.677c2.593 2.065 5.41 3.871 8.347 5.506 2.937 1.635 5.977 3.063 9.12 4.423 3.125 1.376 6.251 2.701 9.411 3.889 3.058 1.135 6.132 2.133 9.275 2.908 1.58.396 3.109.705 4.723.98 1.632.276 3.349.569 5.067 1.102.858.275 1.734.602 2.559 1.032.206.104.412.207.618.327l.464.259c.189.103.463.189.773.258a11.32 11.32 0 0 0 2.095.223c.361 0 .738 0 1.116-.017.447-.017.893-.034 1.34-.034 1.786 0 3.521.189 5.221.464.859.138 1.683.31 2.525.5.79.171 1.528.326 2.336.43 3.143.499 6.457.602 9.875 1.152.842.12 1.735.327 2.542.517.773.172 1.546.327 2.319.464 1.563.258 3.177.448 4.792.585 3.246.293 6.578.448 9.978.947 1.701.224 3.418.67 4.912.912 1.563.275 3.195.447 4.878.705 4.586.792 8.862 1.652 13.311 2.478 2.198.43 4.414.81 6.595 1.274 2.215.464 4.568.946 6.853 2.133.326.172.446.241.635.327.189.086.378.155.584.207.412.12.893.206 1.477.31 1.254.223 2.37.585 3.504.98 2.233.81 4.259 1.825 6.269 2.668 1.03.447 1.923.757 3.04 1.153 1.082.378 2.164.808 3.229 1.239a73.446 73.446 0 0 1 6.2 2.977c4.637 2.477 8.982 5.403 13.259 8.328a286.967 286.967 0 0 1 12.589 9.155c4.964 3.82 9.549 7.864 14.702 11.013a48.254 48.254 0 0 0 8.055 4.027c2.851 1.187 5.616 2.323 8.433 2.701 2.782.379 5.753.052 8.433-.877 1.339-.465 2.593-1.136 3.916-1.893a45.475 45.475 0 0 0 3.778-2.427c2.439-1.738 4.637-3.716 6.681-5.97a83.541 83.541 0 0 0 5.805-7.004 77.507 77.507 0 0 0 5.754-9.052c1.786-3.2 3.641-6.315 5.358-9.481 1.735-3.184 3.281-6.367 4.569-9.774 1.477-3.545 3.658-6.522 5.376-9.654 4.362-7.812 7.969-16.09 12.452-23.988L427.933.026l3.143-5.954c1.065-1.996 2.112-3.958 3.006-6.005.961-2.117 1.906-4.25 2.988-6.367 1.082-2.134 2.336-4.096 3.435-6.126 2.284-4.044 4.328-8.14 6.286-12.407 2.061-4.233 4.431-8.26 6.492-12.373a74.051 74.051 0 0 0 1.477-3.114 76.777 76.777 0 0 1 1.512-3.201c1.064-2.1 2.215-4.147 3.366-6.178l5.857-10.342 2.936-5.18c.979-1.72 1.924-3.475 3.058-5.093 4.396-6.573 8.759-13.25 13.224-19.737 2.937-4.354 6.08-8.759 9.567-12.751 3.452-4.044 6.973-7.968 10.889-11.685 3.916-3.665 8.158-6.934 12.486-9.98 4.328-3.046 8.708-6.023 13.242-8.776 7.643-4.698 15.406-9.206 22.07-14.902a48.6 48.6 0 0 0 4.637-4.56l.532-.603.413-.516.103-.137s.189-.19 0-.155c-.155.034-.206.086-.258.137 0 .035 0 .018 0 0l-.172-.034-.378-.052-1.494-.275c-1.013-.172-2.009-.43-3.005-.671-.207-.052-.602-.155-.584-.396l.051.172Z%27/%3E%3Cpath d=%27M890.328 80.735c.292.276.464.5.498.877a1.26 1.26 0 0 1-.636 1.17c-.74.585-1.582.929-2.133 1.359-.43.344-.963.619-1.479.756-.619.138-1.221.258-1.806.379l-.877.155-.43.086-1.376.24c-.481.104-.963.207-1.427.31-.465.12-.912.258-1.342.396l-.636.24c-.258.103-.585.241-.877.31-1.187.361-2.288.499-3.303.653-.997.155-1.926.31-2.648.602-.19.07-.344.155-.516.241l-.723.379c-.481.24-.963.481-1.462.705-3.921 1.788-7.928 2.94-11.626 4.506-3.715 1.65-7.568 3.302-11.162 5.125-3.647 1.806-6.949 3.99-10.286 6.432l-5.039 3.663c-1.737 1.239-3.44 2.322-5.022 3.543-3.199 2.442-6.175 5.211-8.978 8.152-2.03 2.133-3.99 4.369-5.917 6.639l-2.889 3.439a64.759 64.759 0 0 0-2.683 3.457c-3.406 4.747-6.209 10.01-9.185 15.255-5.95 10.526-12.658 20.57-19.83 30.269-3.612 4.868-7.465 9.494-11.197 14.172-3.766 4.644-7.206 9.459-10.629 14.361-1.703 2.442-3.354 4.901-4.85 7.429-1.479 2.494-2.872 5.177-4.231 7.808-2.7 5.298-5.229 10.646-7.103 16.219-1.153 3.353-2.15 6.759-3.113 10.215l-.723 2.597c-.275.981-.413 1.462-.481 2.305-.086.826-.104 1.737-.276 2.803-.103.534-.189 1.135-.567 1.875l-.361.636c-.103.155-.172.31-.241.482-.636 1.29-.894 2.889-1.17 4.678-.137.894-.292 1.84-.55 2.82-.12.482-.275.981-.464 1.479-.19.534-.31.774-.448 1.187-1.014 3.044-1.083 6.604-1.719 10.319l-2.236 10.56-.551 2.597c-.155.791-.206 1.565-.292 2.494-.069.911-.172 1.909-.43 2.958l-.791 2.683-3.096 10.267c-.98 3.457-2.339 7.034-4.042 10.285-1.823 3.474-3.99 6.742-6.364 9.82-2.407 3.113-5.211 5.985-8.496 8.29a33.241 33.241 0 0 1-5.194 3.01l-5.229 2.407-5.211 2.391-2.614 1.187c-.895.412-1.944.756-2.907 1.014-2.029.534-3.99.826-5.762 1.325-.447.12-.86.258-1.307.395l-1.427.465-2.838.911-11.249 3.577c-3.594 1.29-7.24 2.924-10.611 4.678-3.371 1.823-6.484 4.059-9.185 6.742-5.331 5.211-8.961 12.228-10.354 19.503-.258 1.789-.223 3.681-.258 5.658 0 .981-.086 2.03-.189 2.993-.103.894-.086 1.823-.034 2.734.223 3.681 1.548 7.31 2.683 11.042.946 3.199 2.133 6.294 3.646 9.27 1.462 2.975 3.423 5.675 5.28 8.53 1.858 2.821 3.732 5.59 5.848 8.152 2.115 2.528 4.489 4.971 6.931 7.224 2.098 1.943 4.3 3.646 6.673 5.245 2.357 1.617 4.73 3.147 7.276 4.283 2.528 1.169 5.211 1.651 8.101 2.201 1.427.292 2.889.619 4.334 1.187 1.272.516 2.562.842 3.904 1.014 1.806.241 3.681.19 5.572.035 1.892-.189 3.887-.275 5.642-.637 3.629-.739 7.12-2.407 10.887-3.663 6.862-2.218 13.295-5.607 19.796-8.977 3.251-1.686 6.519-3.354 9.907-4.868 3.371-1.496 6.776-2.837 10.061-4.351 2.219-1.118 4.765-1.857 7.172-2.322 2.443-.498 4.851-.808 7.138-1.375 1.187-.258 2.167-.637 3.526-.981a21.07 21.07 0 0 1 3.818-.481c2.528-.104 4.902 0 7.344-.104 7.654-.137 15.411 0 23.081 1.239 1.944.309 3.767.722 5.607.928 1.858.241 3.75.396 5.659.585 1.909.189 3.835.43 5.762.826 1.926.361 3.835 1.066 5.555 1.651 3.457 1.152 6.914 2.081 10.509 2.872 3.732.911 7 2.717 10.302 4.11 3.319 1.411 6.88 2.735 9.907 5.143 2.734 2.39 5.796 4.248 8.84 6.415 7.447 5.658 13.863 12.434 19.676 19.623a201.066 201.066 0 0 1 8.376 11.076l3.337 4.265c.378.533.774 1.084 1.204 1.617.619.739.842 1.668.722 2.614-.086.825-.206 1.651-.499 2.373-.103.224-.206.637-.516.619-.877-.051-.825-1.289-1.101-1.874-.292-.723-.653-1.342-1.066-1.978-.413-.654-.912-1.29-1.376-1.995l-.499-.705-1.737-2.219c-.722-.946-1.29-1.823-1.909-2.7a187.363 187.363 0 0 0-7.705-10.25c-2.7-3.319-5.452-6.587-8.428-9.614a138.3 138.3 0 0 0-4.592-4.437c-1.599-1.445-3.165-2.872-4.816-4.111-2.287-1.72-4.798-3.285-7.206-5.125a46.508 46.508 0 0 1-1.789-1.445 19.224 19.224 0 0 0-1.617-1.221c-1.135-.756-2.373-1.393-3.68-1.995-1.29-.602-2.649-1.135-4.008-1.702-1.393-.568-2.751-1.204-4.076-1.806-1.324-.602-2.648-1.17-3.956-1.617-1.341-.481-2.579-.756-4.093-1.083a106.376 106.376 0 0 1-10.062-2.821c-3.147-1.152-6.346-1.651-9.769-1.995-1.685-.172-3.405-.327-5.142-.55-1.72-.189-3.543-.551-5.16-.86a89.393 89.393 0 0 0-10.079-1.221c-3.525-.241-7.086-.31-10.629-.275l-5.366.086c-1.823 0-3.577-.018-5.297.086-.86.051-1.686.154-2.494.309-.791.155-1.514.396-2.477.688-1.806.516-3.612.86-5.383 1.17-3.56.619-6.863 1.221-9.941 2.803-2.976 1.376-5.986 2.597-8.909 3.887-2.924 1.273-5.762 2.717-8.634 4.196-5.711 2.958-11.403 6.14-17.526 8.634-1.514.636-3.079 1.187-4.644 1.737-1.479.499-2.958 1.066-4.489 1.651-2.993 1.152-6.295 2.356-9.787 2.58-3.164.292-6.587.722-10.095.103a17.292 17.292 0 0 1-2.597-.654c-.413-.137-.878-.326-1.222-.447-.326-.12-.67-.241-1.014-.361-1.411-.43-2.959-.722-4.558-1.032-1.531-.309-3.165-.653-4.764-1.204-1.583-.55-3.096-1.255-4.524-2.029-2.889-1.6-5.417-3.388-8.015-5.28-2.579-1.944-4.953-4.128-7.172-6.398-2.201-2.253-4.385-4.661-6.26-7.258-1.892-2.579-3.595-5.228-5.297-7.825-.843-1.273-1.755-2.597-2.58-4.007a50.638 50.638 0 0 1-2.253-4.283c-1.376-2.889-2.477-6.002-3.354-8.977-.929-2.941-2.013-5.985-2.477-9.305a20.465 20.465 0 0 1-.206-3.422c0-.568.068-1.187.103-1.703.051-.481.069-.98.086-1.479.069-1.995-.069-4.179.189-6.466.31-2.391.946-4.386 1.634-6.501a41.081 41.081 0 0 1 2.649-6.054 39.66 39.66 0 0 1 8.083-10.405c3.251-2.993 6.983-5.4 10.905-7.292 2.218-1.067 4.471-2.099 6.793-2.993a61.125 61.125 0 0 1 3.526-1.255c1.204-.379 2.408-.705 3.543-1.084l6.897-2.218 3.44-1.101c1.238-.43 2.511-.74 3.715-.98 1.445-.31 2.838-.568 4.145-.964a13.223 13.223 0 0 0 1.892-.687l1.978-.895 7.928-3.611c2.701-1.222 5.212-2.288 7.499-3.887 2.288-1.565 4.386-3.44 6.244-5.521 3.68-4.248 6.914-9.081 9.236-14.223 1.186-2.597 2.012-5.211 2.837-8.049l2.512-8.393.739-2.476c.275-.895.447-1.445.55-2.253.104-.774.155-1.617.241-2.511.052-.447.103-.912.189-1.376l.276-1.273 2.218-10.113c.826-3.164.929-6.587 1.634-10.078.189-.877.396-1.754.705-2.614.138-.413.344-.894.465-1.255.137-.362.258-.723.378-1.118.43-1.531.585-3.234.946-4.988.224-1.083.55-2.201 1.084-3.25.24-.516.653-1.101.705-1.307.137-.344.206-.826.258-1.325.12-.997.137-2.081.344-3.233.258-1.204.567-2.098.843-3.165 1.152-4.093 2.339-8.186 3.783-12.21 2.907-8.101 6.846-15.651 11.025-23.115 2.236-3.835 4.781-7.447 7.31-11.024 2.511-3.578 5.142-7.172 7.877-10.595 5.486-6.896 11.042-13.586 15.978-20.81a281.21 281.21 0 0 0 12.074-18.677c3.801-6.329 7.034-13.037 11.231-19.383a62.784 62.784 0 0 1 4.54-6.071 294.262 294.262 0 0 1 4.851-5.71c3.302-3.766 6.793-7.412 10.68-10.663 1.927-1.634 4.025-3.164 6.072-4.54 2.012-1.376 3.99-2.855 6.002-4.317 2.012-1.462 4.059-2.941 6.226-4.282 2.167-1.342 4.403-2.528 6.673-3.63 1.927-.945 3.87-1.822 5.797-2.682 1.909-.86 3.869-1.789 5.899-2.545 4.025-1.548 7.963-2.77 11.558-4.747 2.459-1.204 4.764-1.067 6.484-1.582.223-.052.413-.12.619-.19l.688-.275c.55-.223 1.101-.413 1.668-.567a34.834 34.834 0 0 1 3.251-.723l.31-.069.103-.034.223-.051.448-.104.859-.223c.998-.275 1.91-.207 2.838-.327a18.8 18.8 0 0 0 1.376-.19c.533-.137.705 0 .963-.188.052 0 .413-.447.62-.276h-.086ZM59.716 710.018a1.601 1.601 0 0 1-.517.843 1.1 1.1 0 0 1-.517.241 1.156 1.156 0 0 1-1.034-.275c-.707-.723-.517-1.463-.638-1.721-.069-.362-.155-.706-.31-.981-.224-.431-.43-.896-.5-1.378l-.276-1.738-.138-.912-.051-.465-.052-.431-.052-.636a33.255 33.255 0 0 1-.034-1.326l.103-2.375c.07-1.567.121-3.15.242-4.768.086-1.584.379-3.34.534-4.717.276-2.943.069-6.18.672-9.536.069-.413.172-.844.258-1.24l.242-1.101c.155-.74.293-1.498.413-2.255.242-1.515.449-3.047.638-4.596.38-3.099.724-6.283 1.379-9.468.655-3.15 1.5-6.214 2.292-9.243.396-1.515.775-2.995 1.137-4.545a53.7 53.7 0 0 1 1.362-4.665c2.05-6.128 5.222-11.808 8.203-17.265.759-1.394 1.551-2.84 2.585-4.234.966-1.274 1.93-2.531 2.93-3.77a154.454 154.454 0 0 1 6.187-7.264c4.274-4.717 8.841-9.175 13.718-13.272 3.516-2.926 7.015-5.869 10.772-8.624l5.601-3.941 5.497-4.028c3.654-2.72 7.394-5.457 11.306-7.919 3.74-2.392 7.324-5.25 11.34-7.711 3.964-2.204 7.359-4.906 10.995-7.764l2.758-2.1a43.703 43.703 0 0 0 2.585-2.048c1.689-1.446 3.36-3.03 5.273-4.51 3.62-2.634 6.773-5.766 10.237-8.865 3.499-2.926 6.429-6.093 9.186-9.657 2.706-3.546 5.274-7.298 7.462-11.137 2.206-3.873 4.068-7.952 5.653-12.135 1.569-4.166 2.982-8.555 4.016-12.773.913-4.165.861-8.899 2.12-13.53.947-3.907.258-8.641.723-13.306.293-4.441.19-8.951.087-13.495-.104-4.544-.242-9.158.017-13.805.103-2.324.362-4.648.706-6.972l.293-1.738c.087-.551.19-1.05.242-1.584.137-1.067.224-2.134.275-3.236.121-2.634.035-5.336.035-8.108 0-1.377.034-2.823.103-4.182l.155-4.046c.138-5.405.052-10.827-.034-16.284l-.104-8.142c-.051-1.308-.137-2.599-.361-3.786a15.739 15.739 0 0 0-.449-1.773c-.224-.706-.379-1.429-.551-2.135-.586-2.823-.827-5.508-1.499-7.918a18.976 18.976 0 0 0-.586-1.739l-.19-.447c-.086-.207-.172-.413-.224-.62a8.64 8.64 0 0 1-.31-1.188c-.31-1.532-.362-2.926-.621-3.959-.12-.551-.241-.723-.637-1.515a32.173 32.173 0 0 1-.896-1.962c-.552-1.325-1.017-2.634-1.465-3.942-.896-2.599-1.689-5.129-2.809-7.436-2.379-4.82-4.964-9.588-7.773-14.15-2.826-4.578-5.928-8.968-9.393-13.065-3.36-4.062-7.479-7.625-11.632-10.93-2.31-1.773-4.757-3.322-7.359-4.579a36.36 36.36 0 0 0-3.982-1.652l-1.016-.345s-.173-.034-.517 0c-.311.018-.759.086-1.345.069-.603-.017-1.361-.241-1.895-.654-1.379-1.016-3.223-1.411-5.084-1.291a9.119 9.119 0 0 0-1.379.172c-.534.103-1.138.207-1.689.276-1.137.137-2.24.206-3.292.292-1.051.086-2.085.155-3.05.327-.483.069-.965.19-1.431.293l-1.464.413-6.239 1.756-6.222 1.756c-1.999.568-3.981 1.273-5.98 2.014-3.981 1.497-7.945 3.201-12.167 4.492-.793.241-1.586.465-2.378.689-.741.206-1.483.413-2.206.671-1.483.499-2.965 1.067-4.481 1.635-1.517.568-3.085 1.137-4.705 1.584-.81.224-1.637.43-2.482.585l-.706.121c-.362.051-.776 0-.965 0-.242-.035-.19-.035-.276 0l-.276.155c-.138.086-.276.137-.413.224-.276.137-.552.275-.828.395a22.33 22.33 0 0 1-1.689.637c-1.137.362-2.257.62-3.36.844-1.103.224-2.155.43-3.171.688l-.759.19c-.258.069-.603.155-.896.223-.62.138-1.206.207-1.792.259-2.31.223-4.43.206-5.929.964-2.171 1.067-4.48 1.652-6.704 2.031-2.24.378-4.412.602-6.48 1.015-1.999.379-4.136 1.102-6.29 1.618-4.257 1.102-8.703 2.014-12.874 2.875-2.74.671-5.498 1.721-8.376 2.582a87.757 87.757 0 0 0-8.238 2.858c-2.74 1.084-5.29 2.272-8.082 3.546-1.482.602-2.878.946-4.033 1.549-.293.137-.552.31-.827.482l-.931.619-1.878 1.223a61.971 61.971 0 0 1-3.878 2.289c-1.344.74-2.74 1.308-3.964 1.962-2.516 1.326-4.877 3.013-7.221 4.768-2.292 1.791-4.74 3.564-6.963 5.371-2.257 1.859-4.429 3.839-6.79 5.698-2.102 1.618-4.136 3.012-6.1 4.665-1.965 1.618-3.878 3.305-5.809 5.009-1.912 1.704-3.912 3.374-5.876 5.043l-5.774 5.078c-3.86 3.357-7.669 6.834-11.495 10.277-1.913 1.721-3.809 3.477-5.756 5.147l-5.963 4.871-5.084 4.148-2.533 2.083a34.595 34.595 0 0 1-2.689 2.049c-3.688 2.547-7.514 4.51-10.702 7.419-3.378 2.857-6.963 5.422-10.444 8.038l-10.375 7.953c-4.584 3.718-9.237 7.367-13.684 11.154-2.223 1.859-4.291 3.959-6.583 5.905-2.258 1.927-4.55 3.769-6.721 5.697a57.717 57.717 0 0 0-2.965 2.823c-.93.947-1.775 2.031-2.792 3.081a11.97 11.97 0 0 1-1.688 1.515c-.69.482-1.155.758-1.741 1.188a44.522 44.522 0 0 0-3.206 2.496c-4.153 3.494-7.91 7.78-12.408 11.171a122.924 122.924 0 0 0-3.188 2.617c-1.017.878-1.965 1.859-3.051 2.823-2.12 1.893-4.36 3.58-6.549 5.284-2.24 1.67-4.222 3.443-6.463 5.251-2.223 1.755-4.532 3.339-6.841 4.905-1.534 1.05-3.068 2.066-4.568 3.133-1.482 1.05-2.964 2.204-4.498 3.271-3.05 2.152-6.221 4.148-9.427 6.059-6.428 3.804-12.942 7.264-19.457 10.862-2.55 1.377-5.291 2.685-7.996 3.718-2.637 1.067-5.222 2.358-7.876 3.597-2.62 1.257-5.429 2.393-8.152 3.357-2.723 1.016-5.412 2.031-7.997 3.219-5.17 2.651-10.805 4.596-16.062 6.765-5.377 2.169-10.736 4.338-16.079 6.489-.689.276-1.241.465-1.775.775-.552.293-1.12.671-1.741 1.05-.62.379-1.275.757-2.016 1.033l-1.982.688c-2.499.947-4.894 2.307-7.324 3.65-2.482 1.36-4.912 2.547-7.239 4.028-2.344 1.446-4.601 3.012-6.876 4.596-4.584 3.15-9.048 6.42-13.529 9.674l-3.343 2.444c-1.069.826-2.12 1.738-3.189 2.634-1.068.895-2.206 1.79-3.395 2.564a59.074 59.074 0 0 0-3.309 2.427c-1.378 1.085-2.533 2.187-3.808 3.478-1.31 1.256-2.723 2.358-4.085 3.425-1.379 1.085-2.706 2.152-3.878 3.34l-3.877 3.614c-2.585 2.479-5.274 4.614-7.928 6.937-2.671 2.273-5.429 4.493-8.341 6.524-2.826 1.997-5.567 4.166-8.427 6.232-2.827 2.1-5.912 3.976-8.979 5.663l-4.568 2.547-.861.5-.207.137-.827.517c-.517.327-1.034.671-1.448 1.119-.586.619-1.258.929-2.068 1.101-.706.155-1.379.465-2.085.689-.207.069-.569.258-.793.034-.638-.619.414-1.549.931-2.117a17.427 17.427 0 0 1 1.964-1.945c.741-.603 1.517-1.171 2.344-1.618l8.841-4.889c5.532-3.098 10.547-7.419 16.011-11.137 2.602-1.876 5.118-3.925 7.617-6.025 2.482-2.117 5.084-4.217 7.376-6.403l3.568-3.288c1.241-1.256 2.585-2.307 3.895-3.322 1.309-1.016 2.585-1.98 3.722-3.03 1.051-.981 2.361-2.375 3.671-3.391a53.613 53.613 0 0 1 2.757-2.1c.931-.671 1.913-1.291 2.741-1.893 1.706-1.257 3.343-2.789 5.187-4.2l10.909-7.953c3.654-2.582 7.256-5.181 11.047-7.712a80.478 80.478 0 0 1 5.86-3.546c2.033-1.05 3.877-2.1 5.894-3.219 1.172-.636 2.361-1.256 3.602-1.807.62-.275 1.258-.551 1.913-.775.655-.258 1.361-.447 1.775-.619.982-.413 1.982-1.171 3.257-1.894 1.43-.757 2.568-1.084 3.792-1.618l14.493-5.852c4.878-2.014 9.824-3.667 14.408-5.922 4.791-2.375 9.91-3.907 14.597-5.852 2.465-1.05 4.895-2.255 7.376-3.409a92.512 92.512 0 0 1 3.792-1.652c1.31-.517 2.464-.981 3.688-1.567 4.791-2.289 9.513-5.129 14.287-7.694 4.756-2.634 9.461-5.302 13.994-8.228 2.258-1.463 4.481-2.978 6.618-4.596 2.189-1.653 4.481-3.219 6.721-4.734 2.034-1.377 4.033-2.771 5.928-4.234a71.463 71.463 0 0 0 2.775-2.273 75.4 75.4 0 0 1 2.896-2.392c1.947-1.549 3.912-3.013 5.773-4.545a50.813 50.813 0 0 0 2.706-2.358c.827-.792 1.792-1.738 2.74-2.547 1.913-1.653 3.878-3.133 5.687-4.7 1.775-1.532 3.516-3.287 5.308-4.992 1.775-1.721 3.602-3.425 5.584-5.026a43.879 43.879 0 0 1 3.068-2.272c.603-.396.879-.585 1.309-.964.397-.344.776-.757 1.172-1.188.776-.86 1.569-1.859 2.499-2.788a55.795 55.795 0 0 1 2.723-2.634c1.862-1.687 3.775-3.253 5.653-4.837a110.63 110.63 0 0 0 5.463-4.854c1.844-1.687 3.74-3.288 5.653-4.854l5.739-4.631c1.913-1.532 3.74-3.116 5.739-4.596 3.912-2.995 7.824-6.076 11.805-8.985a301.391 301.391 0 0 0 5.636-4.252c.913-.723 1.826-1.463 2.705-2.203.862-.741 1.913-1.601 2.896-2.29 2.016-1.429 4.084-2.651 6.032-3.907a51.084 51.084 0 0 0 2.826-1.945c.448-.345.879-.689 1.31-1.033l1.379-1.119 11.03-8.985c1.878-1.464 3.584-3.099 5.342-4.665l5.273-4.734c3.482-3.167 7.1-6.3 10.668-9.45 3.585-3.202 7.17-6.094 10.72-9.296 1.792-1.566 3.602-3.132 5.498-4.63a85.92 85.92 0 0 1 2.895-2.186 60.988 60.988 0 0 0 2.723-2.117l5.394-4.614a61.301 61.301 0 0 1 2.844-2.272l2.792-2.151c2.533-1.98 5.153-3.994 8.048-5.698 1.413-.861 3.068-1.584 4.36-2.255a53.402 53.402 0 0 0 4.033-2.341l1.982-1.291c.655-.43 1.258-.912 2.154-1.412 1.689-.895 3.326-1.273 4.602-1.841 2.809-1.343 5.86-2.737 8.875-3.925a85.564 85.564 0 0 1 4.602-1.687l4.601-1.463c1.5-.499 3.033-1.033 4.619-1.515 1.55-.482 3.309-.878 4.825-1.171a190.927 190.927 0 0 0 13.925-3.373c1.62-.482 3.31-.792 4.93-1.033 2.584-.396 5.066-.671 7.358-1.343a13.609 13.609 0 0 0 1.672-.568c.276-.103.534-.224.793-.344l.948-.43c1.499-.603 2.947-.741 4.256-.844 1.31-.103 2.551-.172 3.62-.396l1.826-.447 1.93-.413c1.259-.259 2.482-.5 3.62-.827.568-.172 1.12-.361 1.654-.568.259-.12.534-.224.776-.344l.379-.189.482-.276c.449-.275.966-.379 1.483-.361.637.051.758.086.775.069l.62-.104c.259-.034.517-.103.776-.155a34.64 34.64 0 0 0 3.102-.878c2.068-.688 4.17-1.549 6.342-2.323a39.843 39.843 0 0 1 3.533-1.102c1.12-.31 2.223-.637 3.344-1.016 2.223-.723 4.412-1.583 6.635-2.444s4.463-1.739 6.755-2.53c2.31-.809 4.688-1.429 6.946-2.066l6.859-1.911 3.498-.981c1.276-.344 2.551-.533 3.775-.637l3.567-.275a24.873 24.873 0 0 0 1.672-.207l.827-.155c.327-.068.672-.12 1-.155 2.636-.309 5.532.121 7.876 1.808.12.051.103.086.499.086.379 0 .965-.138 1.827-.035.19.018.5.104.603.138l.379.121.759.258c.5.172.999.361 1.499.551a40.63 40.63 0 0 1 5.705 2.788c3.67 2.118 6.91 4.82 9.995 7.523a66.502 66.502 0 0 1 8.617 9.02 107.978 107.978 0 0 1 7.204 10.069c2.827 4.441 5.377 9.037 7.738 13.72.569 1.153 1.189 2.341 1.724 3.597.534 1.24.982 2.496 1.396 3.736.844 2.495 1.602 4.94 2.619 7.246.259.586.517 1.119.81 1.705.379.757.534 1.514.672 2.203.224 1.377.293 2.651.569 3.752.069.276.155.534.259.775l.379.947c.241.654.448 1.308.603 1.979.345 1.326.569 2.651.775 3.942.207 1.291.397 2.565.655 3.804.138.62.276 1.223.448 1.808.173.568.397 1.325.517 1.979.517 2.737.448 5.388.466 7.987.034 6.421.207 12.876.086 19.348-.017 3.236-.31 6.49-.328 9.64-.017 3.202.104 6.438-.137 9.726-.104 1.618-.397 3.339-.673 4.871a54.657 54.657 0 0 0-.62 4.716c-.293 3.168-.379 6.352-.362 9.571.017 6.404.431 12.876.086 19.383-.103 1.721-.241 3.305-.241 4.957-.017 1.635.017 3.322-.035 5.009-.051 1.704-.206 3.443-.654 5.164-.397 1.567-.672 3.15-.879 4.786-.414 3.253-.621 6.661-1.551 10.001-.897 3.236-1.862 6.437-2.999 9.605-2.258 6.334-5.101 12.48-8.755 18.177-3.636 5.629-7.617 11.137-12.615 15.785a336.491 336.491 0 0 0-6.291 5.715c-2.068 1.911-4.291 3.856-6.566 5.525-2.154 1.687-4.136 3.701-6.428 5.526-2.327 1.738-4.447 3.425-6.704 5.216-2.241 1.755-4.55 3.477-7.049 4.991-2.43 1.412-4.688 2.961-6.98 4.614-2.275 1.635-4.67 3.339-7.048 4.837-2.344 1.532-4.619 3.15-6.894 4.819-3.033 2.221-6.032 4.51-9.134 6.714l-4.619 3.236a104.897 104.897 0 0 0-4.429 3.408c-2.912 2.358-5.859 4.751-8.651 7.195-2.792 2.479-5.498 5.044-8.083 7.746a143.79 143.79 0 0 0-7.463 8.366 144.862 144.862 0 0 0-3.498 4.372c-1.206 1.515-2.12 2.841-3.016 4.51-1.74 3.323-3.67 6.593-5.24 9.933-1.602 3.339-2.98 6.782-3.963 10.293-.413 1.481-.741 3.064-1.155 4.631l-1.206 4.665c-.81 3.098-1.551 6.145-1.982 9.26-.465 3.116-.74 6.318-1.206 9.554a60.2 60.2 0 0 1-.88 4.871c-.327 1.429-.465 2.927-.534 4.493-.068 1.549-.068 3.167-.172 4.837a32.278 32.278 0 0 1-.258 2.53c-.104.758-.19 1.515-.259 2.29-.12 1.549-.19 3.115-.241 4.716l-.086 2.427c-.035.758-.017 1.395.051 2.152.052.516.035.31.052.413v.103l.07.207.085.43.207.861c.258 1.033.155 2.1.052 3.219a7.084 7.084 0 0 1-.12.843c-.053.259-.122.637-.173.672l-.035.034c-.138 0-.293.069-.396.121-.19.069-.224.155-.19.086.07-.035.155-.551.155-.362a.634.634 0 0 0 .242.086c.172.035.74.138.69.396l-.018-.017ZM508.705-167.246c.12-1.546 2.562-1.237 3.766-1.752.464-.206 1.014-.344 1.513-.344l6.053-.034H536.666c.103 0 0 .034-.035.069l-.137.103-.276.223-13.103 10.379c-6.397 5.138-12.949 9.932-18.64 15.551-2.872 2.783-5.572 5.756-7.997 8.901-2.459 3.247-5.09 6.392-7.222 9.674-1.634 2.509-3.336 4.915-4.832 7.372-1.41 2.423-3.009 5.035-4.523 7.56-3.129 5.052-5.967 10.225-8.942 15.328-3.009 5.052-5.881 10.121-8.632 15.362l-4.23 7.819c-1.479 2.646-2.889 5.052-4.076 7.715-1.221 2.646-2.39 5.378-3.748 8.093-1.393 2.767-2.958 5.207-4.317 7.802-2.803 5.137-5.399 10.413-7.961 15.722-2.494 5.327-5.348 10.671-8.186 15.792-1.461 2.578-2.7 5.172-4.196 7.75l-4.385 7.75c-1.736 3.127-3.542 6.168-5.365 9.193l-5.468 9.09-5.486 9.073c-1.84 3.144-4.006 6.048-5.984 8.9-1.943 2.802-3.8 5.912-5.864 8.833-2.029 2.973-4.402 5.774-6.741 8.42-2.373 2.68-4.918 5.31-7.893 7.543a36.176 36.176 0 0 1-2.304 1.581l-2.27 1.392c-1.53.928-3.095 1.873-4.866 2.63-7.704 2.99-15.907 1.958-23.198-.362-3.697-1.15-7.205-2.766-10.592-4.399l-5.09-2.457c-1.703-.859-3.371-1.77-5.022-2.663-3.405-1.873-6.758-3.712-10.266-5.07-.911-.36-1.668-.6-2.734-.996a26.514 26.514 0 0 1-2.82-1.289c-1.771-.928-3.422-1.907-5.09-2.646-1.823-.739-3.646-1.787-5.279-2.543-.413-.19-.826-.378-1.221-.516-.413-.154-.74-.24-1.273-.378a77.497 77.497 0 0 1-2.854-.842c-3.766-1.203-7.377-2.612-11.023-3.66-.929-.258-1.771-.515-2.614-.636-.877-.137-1.805-.223-2.786-.343-.98-.12-2.012-.275-3.078-.636-1.221-.481-1.754-.876-2.613-1.151-1.634-.585-3.457-.842-5.348-1.134-.946-.155-1.926-.31-2.907-.568-.997-.24-1.994-.618-2.785-.876-3.44-1.048-7.274-1.014-11.143-1.512a29.824 29.824 0 0 1-2.924-.515c-1.014-.241-1.857-.516-2.751-.705-1.806-.378-3.663-.567-5.572-.773-1.65-.172-3.336-.344-5.021-.653-1.737-.344-3.215-.722-4.866-.911-1.617-.206-3.233-.327-4.85-.31-1.633 0-3.37.087-5.158-.257a6.736 6.736 0 0 1-1.359-.395l-1.135-.464a20.3 20.3 0 0 0-2.27-.688c-1.565-.378-3.198-.584-4.849-.876-1.651-.275-3.405-.653-4.987-1.254-1.427-.499-3.044-.636-4.729-.911-1.427-.223-2.957-.567-4.35-1.289-1.29-.704-2.425-1.271-3.715-1.684a11.067 11.067 0 0 0-1.891-.43c-.568-.068-1.445-.12-2.15-.24-1.479-.24-2.906-.653-4.282-1.134-2.751-.997-5.279-2.303-7.858-3.437-2.58-1.168-5.193-2.354-7.721-3.78-1.703-.928-3.371-2.062-4.901-3.128l-4.729-3.264c-3.13-2.234-6.208-4.606-8.959-7.406-2.614-2.63-4.781-5.516-7.223-8.06-2.545-2.663-4.78-5.601-6.775-8.643a143.551 143.551 0 0 1-5.571-9.33l-5.09-9.589c-2.322-4.244-4.145-8.695-6.5-12.784-1.153-2.08-2.425-4.004-3.801-5.98l-4.058-5.928c-2.15-3.059-4.161-6.29-6.5-9.142-2.339-2.887-4.884-5.602-7.566-8.162a104.482 104.482 0 0 0-4.127-3.712c-1.41-1.185-2.907-2.337-4.351-3.591-3.044-2.474-5.107-5.79-8.1-7.389-3.232-1.856-6.104-4.193-8.787-6.65-2.682-2.491-5.124-5.103-7.703-7.595-5.125-5.018-10.352-10.052-14.806-15.86-5.623-7.269-9.733-15.569-13.104-24.006-.842-2.079-1.72-4.295-2.235-6.564-.55-2.268-.86-4.553-1.1-6.839l-.5-5.309-.034-.396c.018-.103-.12-.343.07-.292h.773l1.462-.068c.481-.035 1.066-.069 1.272-.155.843-.223 1.6-.103 2.373.189.688.258 1.427.412 2.132.636.224.068.62.137.654.447.12.876-1.256.979-1.978 1.168-.86.223-1.754.412-2.63.533l-.688.086h-.172v.068s-.035.052-.07.035h-.034v.068l.12 1.461c.087 1.048.19 2.079.31 3.11.241 2.045.585 4.073 1.118 5.997.499 1.908 1.324 3.849 2.08 5.825 3.096 7.819 6.793 15.38 11.78 22.064 3.37 4.571 7.36 8.695 11.487 12.733l6.225 6.066c2.08 2.079 4.058 4.072 6.225 5.928a51.497 51.497 0 0 0 3.869 3.059c.67.464 1.341.927 2.03 1.357.704.447 1.358.756 2.218 1.34 1.582 1.083 2.802 2.355 3.989 3.626a36.902 36.902 0 0 0 3.508 3.454c2.51 2.113 5.28 4.296 7.721 6.667a90.914 90.914 0 0 1 7.085 7.458 79.668 79.668 0 0 1 3.336 4.21c1.049 1.443 2.012 2.904 3.009 4.364l6.001 8.712c2.081 2.904 3.921 6.066 5.52 9.228 1.651 3.162 3.01 6.41 4.747 9.45 3.026 5.534 5.863 11.222 9.268 16.514 1.685 2.646 3.457 5.207 5.451 7.578.998 1.22 2.012 2.268 3.147 3.471 1.118 1.203 2.167 2.423 3.199 3.609 2.063 2.405 4.161 4.588 6.551 6.58 2.373 1.994 4.918 3.816 7.515 5.62l3.938 2.715a44.83 44.83 0 0 0 3.921 2.388c2.717 1.478 5.588 2.732 8.512 4.073 2.82 1.306 5.485 2.612 8.237 3.316.688.172 1.375.31 2.063.395.361.052.654.07 1.066.104.465.034.912.103 1.342.189 1.736.36 3.284 1.013 4.763 1.787l.98.532c.275.138.568.275.877.378.602.224 1.255.378 1.96.516 1.393.275 2.958.378 4.643.79.413.103.843.224 1.273.378l1.032.344c.67.206 1.358.378 2.063.515 1.427.293 2.941.499 4.506.79 1.564.276 3.181.654 4.78 1.29.929.395 1.169.515 1.857.653.619.12 1.307.171 2.012.206 1.393.051 3.027-.035 4.643.051 1.599.086 3.199.258 4.781.55.773.138 1.616.327 2.321.481a43.07 43.07 0 0 0 2.15.396c1.461.206 2.957.343 4.505.498 1.548.154 3.112.326 4.712.636.773.137 1.65.378 2.356.55.687.189 1.375.326 2.097.446 3.87.67 8.134.43 12.536 1.598.533.12 1.118.344 1.617.499.43.154.877.275 1.341.395.929.223 1.892.378 2.906.533 2.029.292 4.265.567 6.466 1.46.275.103.55.224.808.361l.688.327c.327.154.705.275 1.135.36.86.19 1.857.275 2.889.396 1.032.103 2.184.24 3.319.532 1.049.258 2.063.567 3.078.86 4.058 1.254 7.927 2.766 11.831 3.814l.842.224c.344.086.688.206.998.309.636.223 1.238.498 1.805.756l3.216 1.615c.55.275.946.43 1.582.705.585.258 1.152.532 1.72.807 1.117.567 2.166 1.169 3.198 1.719s2.046 1.048 3.061 1.443l1.668.584 1.737.67c2.287.946 4.488 2.028 6.62 3.18 2.562 1.357 5.039 2.783 7.549 4.072 2.477 1.254 5.159 2.509 7.687 3.729 5.107 2.44 10.386 4.347 15.872 5.103 2.734.361 5.485.413 8.168.035 1.324-.19 2.734-.464 3.921-.86 1.221-.412 2.442-1.013 3.645-1.7 1.204-.688 2.408-1.444 3.646-2.2a31.065 31.065 0 0 0 3.387-2.337c2.15-1.701 4.128-3.695 6.019-5.791a174.112 174.112 0 0 0 3.302-3.78 74.599 74.599 0 0 0 3.061-3.884c1.977-2.68 3.783-5.481 5.657-8.317 1.909-2.852 3.972-5.516 5.795-8.282 1.754-2.784 3.525-5.722 5.279-8.592l6.483-10.705a309.438 309.438 0 0 0 6.346-10.774c4.178-7.166 8.151-14.606 12.123-21.909 2.029-3.78 3.817-7.698 5.743-11.582a350.257 350.257 0 0 1 5.881-11.581 185.08 185.08 0 0 1 3.147-5.688c1.084-1.839 2.012-3.729 2.906-5.67 1.772-3.867 3.457-7.974 5.675-11.72 3.543-6.375 6.793-12.956 10.421-19.365 3.732-6.375 7.188-12.785 10.937-19.074l3.766-6.255c1.238-2.096 2.51-4.33 3.886-6.34l4.093-6.135c1.444-2.045 2.974-3.969 4.453-5.894 5.795-7.99 13.173-14.898 20.894-20.947l9.733-7.766 4.006-3.214c.241-.223.722-.498.138-.395h-.465l-2.888.052-6.243.051h-.653l-.447.052-.912.086c-1.066.103-2.046-.155-3.043-.327-1.015-.172-2.012-.429-3.01-.67-.206-.052-.601-.155-.584-.395l-.086-.121Z%27/%3E%3Cpath d=%27M890.192 91.203c.723.035 1.204.775.774 1.843-.206.517-.688.981-1.135 1.257-.464.293-.877.465-1.187.672a5.744 5.744 0 0 1-1.324.62c-.448.137-1.153.361-1.721.516l-.894.241-3.097.724c-1.84.413-3.457.86-5.195 1.515-1.737.62-3.474 1.275-5.195 1.981a157.386 157.386 0 0 0-10.166 4.511c-6.657 3.29-13.177 6.837-19.009 11.315-5.866 4.477-11.267 9.506-15.722 15.361-3.303 4.202-6.279 8.748-9.238 13.243l-4.473 6.751-4.042 6.991c-.671 1.189-1.342 2.308-2.013 3.531a53.385 53.385 0 0 1-2.184 3.616c-1.531 2.342-3.011 4.443-4.387 6.802-2.873 4.719-6.072 9.179-9.272 13.588l-4.748 6.613c-1.617 2.273-3.354 4.425-5.126 6.526-1.755 2.101-3.612 4.151-5.35 6.166a148.145 148.145 0 0 0-5.057 6.251c-6.468 8.559-12.111 17.806-16.497 27.553-2.632 5.856-4.8 11.9-6.434 18.1-.808 3.1-1.514 6.268-2.322 9.454-.379 1.567-.877 3.272-1.29 4.719-.379 1.464-.637 2.996-.86 4.563-.43 3.135-.688 6.458-1.445 9.799-.74 3.031-1.033 6.182-1.428 9.454a80.32 80.32 0 0 1-.723 4.926 82.474 82.474 0 0 0-.688 4.736c-.378 3.185-.671 6.44-1.118 9.729a67.296 67.296 0 0 1-.912 5.218l-1.169 5.063-2.323 10.126c-.86 3.565-2.356 6.837-3.819 9.971-1.531 3.014-2.563 6.458-5.281 9.455l-1.926 1.894a95.94 95.94 0 0 0-1.806 1.912c-1.205 1.308-2.426 2.652-3.751 3.96-1.324 1.292-2.752 2.566-4.403 3.6-.826.516-1.669.998-2.581 1.377l-1.221.534c-.378.172-.757.362-1.135.551-1.514.775-3.028 1.722-4.697 2.583-.842.431-1.72.827-2.649 1.154-.98.345-1.84.517-2.683.741-3.406.895-6.812 1.963-10.218 3.031-6.744 2.066-13.435 3.943-19.181 7.646-2.855 1.825-5.436 4.098-7.534 6.75-.465.586-.826 1.309-1.256 2.101-.206.396-.447.81-.723 1.223-.223.362-.464.706-.67 1.068-.861 1.446-1.566 2.979-2.03 4.581-.826 2.789-.878 5.734-.035 8.541.396 1.43.946 2.859 1.411 4.34.464 1.567.791 2.928 1.376 4.288 2.236 5.476 6.657 9.885 11.56 13.209 4.197 2.772 9.203 4.391 14.192 4.253 2.511-.069 5.092-.499 7.775-.62a20.213 20.213 0 0 1 2.03 0l.98.052c.121 0 .431-.035.689-.103.258-.069.533-.138.756-.242.172-.068.465-.241.757-.413.585-.327 1.17-.62 1.772-.93 3.217-1.601 6.52-2.858 9.737-4.202a89.54 89.54 0 0 0 4.73-2.135c1.514-.758 3.062-1.653 4.61-2.463 5.884-3.117 11.939-6.027 18.39-8.008 3.216-.981 6.64-1.653 10.046-1.704 3.32-.121 6.64-.19 9.96-.207 8.859-.035 17.804.379 26.577 1.963 3.372.568 6.812.982 10.253 1.516l2.58.43c.447.086.86.172 1.187.207.378.034.774.051 1.221.069.447.017.912.034 1.445.12.258.035.533.103.809.19.258.068.653.275.774.344.688.379 1.428.672 2.184.947 3.062 1.033 6.554 1.12 10.064 2.067 1.823.534 3.285 1.154 4.937 1.653l4.885 1.498c3.183.947 6.399 1.877 9.547 3.066 3.166 1.222 6.124 2.617 9.169 3.926 6.038 2.704 12.111 5.511 17.736 9.23 3.526 2.291 6.863 4.96 9.925 7.819a154.629 154.629 0 0 1 8.911 8.886 144.566 144.566 0 0 1 8.154 9.609l3.079 4.047c.378.517.774 1.068 1.221 1.584.637.724.895 1.654.774 2.635-.103.844-.223 1.705-.567 2.411-.103.224-.258.62-.568.586-.86-.138-.705-1.326-.98-1.895-.276-.688-.654-1.291-1.084-1.911-.482-.672-.963-1.343-1.428-2.015l-.516-.74-1.497-2.033-1.754-2.307a153.26 153.26 0 0 0-7.483-8.852 153.989 153.989 0 0 0-8.154-8.249c-2.804-2.669-5.728-5.063-8.911-7.233-4.317-2.962-8.979-5.355-13.813-7.56-2.408-1.102-4.834-2.152-7.294-3.22-2.477-1.068-4.834-2.118-7.311-2.945-2.89-.999-5.866-1.808-8.859-2.686-1.496-.431-3.01-.878-4.507-1.378-1.496-.465-3.027-1.102-4.352-1.481-2.821-.792-5.952-.964-9.152-1.843-.791-.241-1.599-.499-2.356-.861-.396-.155-.774-.361-1.153-.568-.241-.12-.241-.138-.361-.172a4.548 4.548 0 0 0-.361-.103c-.551-.121-1.308-.121-2.151-.173a8.23 8.23 0 0 1-1.307-.172l-1.135-.207c-3.148-.568-6.348-.964-9.582-1.446-3.268-.482-6.382-1.068-9.581-1.412-6.365-.724-12.799-.93-19.233-.861-2.717.017-5.453.086-8.171.189-1.376.069-2.735.086-4.008.207-1.29.138-2.58.361-3.87.654-5.144 1.206-10.149 3.341-15.018 5.683a180.913 180.913 0 0 0-7.225 3.754c-1.187.638-2.391 1.344-3.681 1.964a93.954 93.954 0 0 1-3.819 1.756c-2.563 1.085-5.109 2.067-7.569 3.152a58.174 58.174 0 0 0-3.612 1.704l-.877.465c-.327.173-.465.276-1.05.551-.447.19-.86.31-1.29.414-.447.086-.808.189-1.514.155-1.41-.104-2.787-.069-4.249.069-2.718.224-5.642.688-8.721.447a27.296 27.296 0 0 1-8.739-2.204c-2.752-1.205-5.315-2.841-7.586-4.718-2.271-1.86-4.387-3.979-6.176-6.389a25.972 25.972 0 0 1-4.094-8.043l-.585-2.032-.636-1.963c-.447-1.343-.929-2.738-1.256-4.271-.654-3.1-.327-6.337.654-9.248.481-1.463 1.135-2.858 1.875-4.167.189-.327.378-.654.585-.964l.533-.844.998-1.86c4.747-7.095 12.007-11.108 19.318-13.794 3.681-1.378 7.345-2.411 10.975-3.599l5.522-1.705 2.786-.792c.895-.259 1.979-.517 2.701-.741 1.841-.585 3.647-1.688 5.591-2.79.98-.551 1.995-1.102 3.079-1.584l1.462-.637c.447-.224.895-.448 1.308-.706 3.474-2.067 6.192-5.477 9.289-8.731.464-.483.946-.982 1.445-1.447.533-.517.929-.878 1.29-1.292.74-.861 1.376-1.894 1.944-3.013 1.101-2.222 2.236-4.77 3.354-7.095 1.084-2.36 2.082-4.719 2.701-7.147l1.789-7.681 1.789-7.697c.568-2.515.912-5.063 1.221-7.664l.86-7.887c.155-1.326.345-2.652.585-3.978.241-1.309.43-2.549.585-3.84.396-3.049.654-6.183 1.308-9.334.774-3.066 1.152-5.942 1.548-9.076.206-1.55.413-3.117.739-4.684.293-1.567.792-3.151 1.205-4.598.843-2.962 1.531-5.976 2.288-9.007 3.612-15.102 10.493-29.293 19.128-42.105 2.237-3.324 4.576-6.561 7.088-9.678 2.477-3.152 5.195-6.114 7.741-9.11a109.572 109.572 0 0 0 7.225-9.368l6.915-9.696c1.926-2.755 3.767-5.545 5.47-8.421 1.669-2.962 3.716-5.752 5.384-8.559l4.955-8.783c.86-1.463 1.617-2.996 2.563-4.391l2.787-4.254c4.971-7.542 9.805-15.223 16.238-21.87 6.4-6.51 13.728-12.141 21.692-16.584 6.726-3.806 13.71-7.164 20.918-9.988 1.824-.707 3.544-1.378 5.505-2.015 1.927-.586 3.836-1 5.659-1.447l.276-.069.103-.034.206-.069.413-.138.809-.293c.24-.086.464-.155.705-.224l.344-.068c.172-.035.378-.086.516-.086.637-.07 1.118 0 1.531-.035.826-.069 1.118.138 1.565-.534.086-.12.19-.448.448-.43l.051-.035ZM-186.91 711.34c-.241.762-.759 1.005-1.484 1.282a8.305 8.305 0 0 1-2.692.468c-.379 0-.811-.087-1.208-.295a3.135 3.135 0 0 1-.552-.363c-.172-.156-.327-.295-.379-.382l-3.727-4.555c-2.382-2.978-4.832-5.888-7.144-8.902l-6.781-9.196c-2.278-3.049-4.504-6.131-6.402-9.613-.966-1.732-1.726-3.671-2.364-5.438a113.52 113.52 0 0 1-1.864-5.473 77.123 77.123 0 0 1-1.501-5.629c-.414-1.888-.794-3.845-.932-5.871-.276-4.018.225-8.019 1.294-11.847.794-2.805 1.933-5.351 2.71-7.845.431-1.282.586-2.338.966-3.932.379-1.455.932-2.84 1.57-4.174.639-1.333 1.432-2.563 2.105-3.706l2.123-3.533a334.484 334.484 0 0 1 4.331-7.049c2.933-4.677 6.177-9.266 9.663-13.562 3.468-4.312 7.109-8.452 10.681-12.608 3.589-4.295 7.678-8.106 11.492-11.951 1.915-1.939 3.779-3.879 5.487-5.923 1.725-2.13 3.675-4.243 5.608-6.2 3.9-3.966 7.73-7.621 10.94-12.003 3.434-4.381 7.126-8.504 10.819-12.574 4.417-4.745 8.213-10.01 12.424-15.171a132.442 132.442 0 0 1 3.244-3.811c.552-.606 1.138-1.281 1.76-1.87l1.742-1.715c.535-.554 1.036-1.091 1.433-1.645.207-.277.362-.537.517-.814.225-.381.432-.797.656-1.161.915-1.524 2.002-2.909 3.106-4.208 1.122-1.299 2.278-2.494 3.382-3.672 1.104-1.16 2.157-2.373 3.296-3.62a168.154 168.154 0 0 1 6.936-7.118 172.776 172.776 0 0 1 15.047-12.955c5.608-4.243 11.268-8.331 17.342-11.968 3.054-1.784 6.142-3.36 9.231-5.057 3.106-1.628 6.109-3.395 9.3-4.884 6.575-3.152 13.356-5.837 20.207-8.21 3.45-1.195 6.97-2.199 10.474-3.117l5.28-1.316c2.001-.537 3.986-.329 5.539-.52.776-.087 1.484-.26 2.122-.554l.242-.121c.138-.07.293-.156.431-.208.293-.122.587-.191.863-.26a6.725 6.725 0 0 1 1.64-.139c.534 0 1.052.087 1.57.191.483.086 1.121.329 1.449.45.776.312 1.587.554 2.416.797 3.295.952 6.867 1.455 10.336 2.84 1.725.745 3.244 1.386 4.935 2.2.828.416 1.639.883 2.432 1.42.397.277.76.572 1.14.883l1.035.814 4.158 3.274 2.088 1.628c.725.554 1.432 1.264 2.036 1.905 1.07 1.126 2.054 2.286 3.175 2.84 1.502.71 2.847 1.75 3.986 2.893 2.295 2.32 3.9 5.022 5.919 7.187.5.537 1.018 1.057 1.587 1.49l.414.346.553.381c.207.173.517.295.672.502l.156.849c.31 1.455 1.018 2.563 1.967 3.741.932 1.143 2.036 2.252 3.02 3.568.966 1.316 1.76 2.736 2.415 4.191 1.105 2.512 1.812 5.127 2.399 7.725l.88 3.845c.155.675.31 1.177.466 1.974a6.179 6.179 0 0 1 0 2.321c-.26 1.489-.846 2.754-1.243 3.931a9.712 9.712 0 0 0-.448 1.715c-.07.572-.173 1.403-.38 2.078-.38 1.403-1.035 2.702-1.812 3.863l-2.226 3.273-6.005 8.816c-2.087 2.927-4.382 5.68-6.608 8.417l-6.247 7.863c-2.105 2.598-4.21 5.196-6.229 7.828-2.002 2.65-3.917 5.335-5.608 8.192l-5.09 8.625-3.382 5.751a158.35 158.35 0 0 0-2.968 5.94 284.306 284.306 0 0 0-5.35 12.21c-2.64 6.443-4.882 13.059-7.264 19.641-1.208 3.273-2.33 6.616-3.675 9.872-1.329 3.256-2.744 6.408-4.003 9.595-1.277 3.117-2.554 6.217-3.831 9.318-1.26 3.1-2.52 6.235-3.969 9.266a176.112 176.112 0 0 1-4.555 9.006 219.53 219.53 0 0 1-2.45 4.399l-2.364 4.434-5.902 11.171c-1.95 3.741-4.003 7.43-5.797 11.188-.915 1.871-1.674 3.81-2.554 5.767-.863 1.94-1.743 3.828-2.468 5.751-.362.969-.69 1.922-.949 2.909-.19.676-.12.502-.155.624l-.052.225c-.069.312-.12.623-.172.935-.052.295-.104.589-.104.883l-.034.607v.796c0 .381 0 .762-.018 1.126l-.051.537c-.052.139-.328.035-.466.052a11.66 11.66 0 0 1-2.105-.295l-.415-.086-.276-.087-.535-.156c-.362-.104-.724-.19-1.07-.311-.224-.07-.62-.139-.655-.451-.121-.883 1.26-.987 1.984-1.177.173-.052.518-.104.57-.156.069-.052.12-.104.155-.139.069-.104.12-.138.034-.277a.365.365 0 0 0-.069-.121l-.034-.035v-.19c.034-.503.138-1.005.242-1.49l.258-.97.328-1.125c.155-.503.31-1.005.5-1.49.346-.987.742-1.922 1.14-2.858.81-1.87 1.673-3.654 2.467-5.421.76-1.749 1.622-3.689 2.52-5.438 1.811-3.602 3.744-7.014 5.624-10.496l5.66-10.461c2.52-4.814 5.297-9.352 7.644-14.167 2.433-4.763 4.4-9.681 6.367-14.721l3.503-8.764c1.174-2.962 2.45-5.854 3.641-8.729 1.208-2.858 2.226-5.802 3.33-8.764l3.227-8.885c2.226-6.183 4.607-12.348 7.265-18.358a200.902 200.902 0 0 1 4.158-8.989c1.432-2.996 3.192-5.767 4.814-8.625l4.487-7.707c1.466-2.581 3.14-5.144 4.883-7.569 3.503-4.867 7.35-9.387 10.923-14.046 3.623-4.78 7.575-9.162 10.75-13.977l4.986-7.343c.794-1.213 1.76-2.494 2.364-3.568.639-1.126 1.036-2.304 1.157-3.533.19-1.819.897-3.256 1.328-4.503.466-1.265.639-2.269.397-3.17-.725-2.84-1.242-5.646-1.967-8.313-.725-2.65-1.674-5.161-3.123-7.361-1.277-2.13-3.745-3.88-5.263-7.049-.19-.381-.328-.814-.466-1.212l-.155-.607v-.086l-.19-.121c-.345-.226-.638-.503-.95-.745-1.224-1.039-2.242-2.2-3.174-3.36-1.83-2.321-3.365-4.624-5.315-6.235a13.395 13.395 0 0 0-1.518-1.074l-.846-.45a7.104 7.104 0 0 1-1.173-.728c-1.38-1.073-2.295-2.234-3.244-3.152-.5-.502-.846-.814-1.467-1.281l-1.708-1.317-3.4-2.632-2.277-1.767c-.638-.537-1.38-.987-2.157-1.403-1.536-.814-3.416-1.541-5.125-2.286-3.313-1.351-7.126-1.801-11.026-2.927a44.67 44.67 0 0 1-1.45-.45c-.483-.173-1.017-.381-1.276-.451-.673-.19-1.484-.242-2.123-.138-.155.017-.293.069-.414.104-.138.052-.12.052-.466.225-.535.277-1.104.468-1.674.624-1.138.294-2.243.363-3.226.415-.984.035-1.881.069-2.657.191-.346.052-.811.19-1.295.294l-1.397.346c-1.864.468-3.71.953-5.557 1.473-4.244 1.16-8.368 2.563-12.527 4.104a182.773 182.773 0 0 0-12.234 5.006c-4.814 2.13-9.421 4.745-14.097 7.222-2.33 1.264-4.694 2.477-6.972 3.776a134.495 134.495 0 0 0-6.677 4.208c-8.766 5.923-17.1 12.436-24.727 19.744a183.139 183.139 0 0 0-6.574 6.616l-3.175 3.447-3.245 3.412c-1.052 1.126-2.07 2.269-2.967 3.464a26.714 26.714 0 0 0-1.26 1.853l-.569.987a10.29 10.29 0 0 1-.725 1.109c-1.053 1.368-2.261 2.442-3.348 3.533-1.07 1.056-2.105 2.234-3.123 3.394-5.004 5.82-9.49 12.263-14.891 17.926-2.623 2.858-5.211 5.733-7.679 8.695a151.738 151.738 0 0 0-3.623 4.52 59.616 59.616 0 0 1-3.866 4.468c-2.761 2.962-5.694 5.716-8.386 8.625-1.38 1.455-2.588 2.945-3.917 4.521a100.82 100.82 0 0 1-4.124 4.468c-2.812 2.893-5.728 5.646-8.455 8.539-2.726 2.857-5.228 5.992-7.868 9.023-4.418 5.179-8.714 10.409-12.476 16.003-3.762 5.595-7.126 11.518-10.646 17.355-1.105 1.853-1.967 3.827-2.451 5.871l-.362 1.662a27.878 27.878 0 0 1-.466 1.732c-.345 1.144-.742 2.235-1.139 3.308-.811 2.165-1.553 4.174-2.019 6.305a32.814 32.814 0 0 0-.828 6.46 28.117 28.117 0 0 0 .587 6.46c.414 2.182.983 4.33 1.622 6.478.656 2.13 1.38 4.26 2.174 6.356.759 2.13 1.657 3.983 2.813 5.906.966 1.61 2.036 3.187 3.14 4.763l3.451 4.624c2.312 3.065 4.573 6.2 6.954 9.214l7.334 8.902.189.225.087.087.155.173.31.329.622.658c.362.381.673.814.914 1.23.052.156 0 .26.207.416.397.294 1.536.311 2.692.536.259.052.742.208.656.451l.293.086ZM478.756-167.248c.121-1.545 2.572-1.236 3.781-1.75.466-.206 1.018-.344 1.519-.344h1.778l1.053-.034h1.899l1.226.034H490.478v.138l-.052.617-.103 1.236-.138 1.219-.069.618-.035.309-.034.172c-.104.463-.173.944-.311 1.408a29.436 29.436 0 0 1-.829 2.729c-.621 1.768-1.398 3.45-2.175 5.064-.777 1.631-1.571 3.21-2.262 4.79l-2.106 4.909a448.222 448.222 0 0 1-4.368 9.819c-1.502 3.262-3.142 6.472-4.661 9.682l-9.358 19.381c-.397.669-.794 1.202-1.087 1.682a4.202 4.202 0 0 0-.363.653l-.121.309-.173.463a68.32 68.32 0 0 1-1.467 3.708c-1.053 2.42-2.193 4.772-3.315 7.107a173.895 173.895 0 0 0-3.228 7.004 204.984 204.984 0 0 1-3.367 7.072c-2.279 4.67-4.903 9.201-7.061 13.785-2.175 4.618-4.178 9.476-6.699 14.094-1.226 2.3-2.469 4.549-3.539 6.815-.552 1.167-.984 2.214-1.502 3.484a96.458 96.458 0 0 1-1.623 3.622c-1.139 2.37-2.348 4.687-3.556 6.97-1.261 2.283-2.607 4.532-3.902 6.798-2.624 4.618-5.283 8.823-7.873 13.39a488.25 488.25 0 0 1-8.304 13.218c-1.727 2.609-3.522 5.201-5.456 7.707-.932 1.22-2.037 2.558-2.917 3.622-.76.945-1.416 2.524-2.832 3.966l-1.726 1.614-1.623 1.596-3.263 3.313-1.692 1.648-1.606 1.597c-1.07 1.098-2.123 2.231-3.28 3.364-1.139 1.116-2.365 2.232-3.729 3.21-.656.481-1.433.962-2.106 1.356l-1.951 1.185c-2.624 1.596-5.404 3.382-8.667 4.395-6.457 2.042-13.018 1.218-19.06 1.167-3.384 0-6.889-.378-10.255-1.494l-9.409-3.107a253.317 253.317 0 0 1-4.714-1.63c-1.571-.567-3.125-1.202-4.678-1.717l-9.271-3.262-14.658-5.167c-2.417-.841-4.851-1.614-7.303-2.232l-1.847-.429-.933-.189c-.328-.068-.483-.085-.776-.12-.536-.051-1.174-.017-1.917-.068-.708-.069-1.674-.086-2.676-.841-1.07-.859-2.382-1.322-3.919-1.614-1.519-.292-3.228-.43-5.024-.944-.984-.292-1.605-.567-2.382-.773a25.573 25.573 0 0 0-2.331-.515c-1.588-.292-3.246-.463-4.921-.67-1.674-.222-3.401-.463-5.11-.892-1.674-.463-3.159-.824-4.817-1.081-3.245-.532-6.595-.79-9.979-1.374-3.418-.652-6.577-1.373-9.892-2.043l-4.282-.892a76.062 76.062 0 0 1-4.368-.91c-2.883-.704-5.697-1.58-8.494-2.49-2.779-.909-5.594-1.784-8.356-2.814a189.052 189.052 0 0 1-8.183-3.296L192.958.622c-1.122-.497-2.313-.96-3.47-1.579-2.279-1.219-4.282-2.695-6.423-3.777-4.506-2.317-8.701-5.235-12.499-8.566-5.11-4.531-9.565-9.578-13.795-14.848-1.968-2.524-3.815-5.133-5.455-7.897-1.606-2.764-3.108-5.528-4.627-8.308-3.021-5.545-5.991-11.09-9.202-16.515-2.158-3.604-4.316-7.175-6.854-10.454-2.521-3.296-5.352-6.369-8.287-9.338a203.304 203.304 0 0 0-7.096-6.816c-2.417-2.18-4.972-4.24-7.596-6.197a198.724 198.724 0 0 0-8.028-5.664c-2.71-1.803-5.49-3.726-8.08-5.734-2.503-1.974-4.99-3.931-7.476-5.888-2.451-1.974-4.989-3.811-7.51-5.785-4.99-3.948-9.547-8.48-13.656-13.321-2.624-3.004-5.18-6.111-7.424-9.476a54.53 54.53 0 0 1-3.09-5.219c-.932-1.819-1.71-3.639-2.52-5.459-.795-1.836-1.572-3.69-2.245-5.596a51.183 51.183 0 0 1-.95-2.884l-.397-1.459a8.204 8.204 0 0 1-.293-1.648c-.07-1.081-.035-2.043-.173-2.884a3.915 3.915 0 0 0-.086-.429l-.052-.172c-.052-.12-.069-.24-.173-.377-.293-.498-.846-1.082-1.484-1.734-.536-.601-1.623-1.476-.915-1.373l.138-.189c.103-.052.38-.069.552-.103 1.105-.223 2.78-.103 4.11.189l.81.171.536.155c.362.103.725.189 1.07.309.225.068.622.137.656.446.121.876-1.26.979-1.985 1.167l-.328.086-.104.086-.138.137c-.069.086-.069.172-.052.224 0 .103.277.223.208.24V-165.754s.069.257.086.36c.052.292.086.567.12.859.053.549.053 1.047.07 1.528 0 .463 0 .875.052 1.235.017.172.034.344.069.498l.155.618c.863 3.468 2.21 6.85 3.66 10.249.742 1.716 1.45 3.399 2.262 4.978a50.977 50.977 0 0 0 2.745 4.669c2.003 3.039 4.281 5.905 6.681 8.721 3.263 3.896 6.647 7.501 10.463 10.78a96.133 96.133 0 0 0 5.87 4.687 233.642 233.642 0 0 1 6.094 4.669c4.696 3.691 9.27 7.261 14.26 10.506 4.938 3.364 9.789 6.9 14.313 10.866 4.661 4.206 9.115 8.463 13.311 13.132a78.86 78.86 0 0 1 5.87 7.382c1.795 2.609 3.401 5.236 5.006 7.896 2.884 4.824 5.577 9.716 8.287 14.592l4.075 7.278c1.364 2.455 2.745 4.721 4.35 6.953 3.177 4.429 6.837 8.634 10.601 12.651 3.781 4.017 7.855 7.622 12.43 10.592a51.3 51.3 0 0 0 3.367 2.026l1.726.927c.639.326 1.261.686 1.865 1.047l3.436 2.111c1.156.687 2.123 1.15 3.435 1.7 4.955 2.145 9.876 4.291 14.9 6.025 5.093 1.682 10.203 3.485 15.313 4.635l15.832 3.193c3.263.6 6.681.824 10.186 1.305 1.744.24 3.522.566 5.283 1.03 1.554.411 3.159.669 4.851.875 1.675.206 3.419.36 5.197.635.898.155 1.778.292 2.693.532.449.103.898.24 1.347.378l1.226.412c1.398.446 3.055.584 4.868.893 1.796.291 3.85.91 5.49 2.231-.034.035.605.189 1.416.172.501 0 1.07 0 1.709.069.725.068 1.191.206 1.744.309 1.07.223 2.123.48 3.159.755a91.108 91.108 0 0 1 6.147 1.905c4.039 1.39 7.924 2.85 11.912 4.172l14.347 5.098c4.61 1.837 9.392 3.348 14.191 4.944 1.192.378 2.435.841 3.522 1.167 1.14.327 2.314.55 3.505.721 1.191.172 2.4.258 3.608.292l3.781.069c5.059.154 10.014.429 14.623-.841 2.694-.704 5.162-2.06 7.683-3.588a173.06 173.06 0 0 1 3.833-2.283c1.191-.704 2.313-1.562 3.384-2.506 2.141-1.889 4.091-4.12 6.301-6.198 2.124-1.99 4.144-4.154 6.319-6.23 9.582-10.678 17.437-23.244 24.74-35.844 2.072-3.245 3.816-6.506 5.749-9.75 1.917-3.21 3.678-6.593 5.335-9.957a74.009 74.009 0 0 0 2.296-5.099c.691-1.768 1.52-3.536 2.383-5.235 1.744-3.417 3.591-6.661 5.127-10.077l3.954-8.79c1.329-2.97 2.883-5.819 4.333-8.651 1.451-2.85 2.884-5.716 4.23-8.6 1.381-2.867 2.555-5.82 3.971-8.773 1.83-3.896 3.764-7.673 5.248-11.587l.57-1.528c.259-.652.604-1.184.915-1.665.674-.961 1.002-1.579 1.502-2.643l2.797-5.785c3.677-7.725 7.51-15.433 11.084-23.124 1.502-3.295 2.935-6.643 4.351-9.99.707-1.665 1.398-3.382 2.192-5.064.777-1.683 1.589-3.296 2.296-4.927.708-1.614 1.347-3.245 1.744-4.875.104-.412.207-.824.276-1.236l.104-.533V-166.012h-.121c-.052 0-.034.018-.052.035l-.224.034-.915.086c-1.071.103-2.055-.155-3.056-.326-1.019-.172-2.02-.429-3.021-.67-.207-.051-.605-.154-.587-.395h-.069ZM269.793 711.126c-.12 1.547-2.567 1.255-3.756 1.754a5.403 5.403 0 0 1-.741.258c-.12.034-.258.051-.379.068a4.173 4.173 0 0 1-.654 0 3.101 3.101 0 0 1-1.517-.55c-.431-.292-.827-.825-1.034-1.169a7.84 7.84 0 0 1-.499-.893l-.224-.464c-.31-.688-.707-1.736-.879-2.613-.827-3.713-.241-7.15-.586-10.21-.31-3.438-.258-6.91.086-10.313.311-3.386 1-6.875 1.706-10.038.603-3.111.724-6.48 1.499-9.969.207-.859.431-1.736.741-2.595.138-.43.327-.86.5-1.272l.448-1.118c.586-1.495 1.102-3.076 1.688-4.675.586-1.598 1.224-3.231 2.068-4.83.413-.79.896-1.581 1.413-2.32.5-.705.93-1.324 1.172-1.857.103-.223.12-.292.206-.601l.293-.945c.224-.619.431-1.238.689-1.84a32.056 32.056 0 0 1 1.741-3.437c1.292-2.183 2.774-4.194 4.187-6.137.706-.979 1.378-1.925 2.067-2.939a37.62 37.62 0 0 1 2.361-3.025c1.654-1.908 3.446-3.609 5.134-5.311 6.755-6.927 14.009-13.768 22.314-19.148 4.083-2.698 8.322-5.259 12.785-7.425 2.222-1.117 4.583-1.994 6.65-2.991 2.137-1.014 4.256-2.2 6.514-3.266 2.308-1.117 4.703-1.908 6.995-2.664 1.137-.378 2.24-.791 3.532-1.169 1.241-.361 2.499-.618 3.722-.842 2.464-.447 4.876-.722 7.168-1.151 1.171-.207 2.188-.482 3.497-.774a41.193 41.193 0 0 1 3.774-.619c6.048-.687 11.889-.206 17.385-.945a68.51 68.51 0 0 0 2.033-.327l2.137-.447c1.551-.292 3.101-.429 4.618-.498 3.032-.103 5.961.086 8.787.12 2.843.069 5.497-.206 8.357-.704 1.413-.224 2.86-.482 4.342-.688 1.465-.223 3.067-.309 4.394-.43 5.565-.55 11.079-2.148 16.506-4.022 5.807-1.994 11.562-4.091 16.886-6.892a337.085 337.085 0 0 0 7.995-4.504 84.668 84.668 0 0 0 3.842-2.389c.62-.412 1.241-.842 1.844-1.289l1.912-1.358c2.654-1.856 5.342-3.592 7.978-5.345a121.698 121.698 0 0 0 3.911-2.699l1.896-1.392c.654-.481 1.326-.98 1.998-1.444 2.723-1.856 5.583-3.438 8.46-4.899 2.895-1.443 5.755-2.818 8.753-4.125 2.947-1.255 6.048-2.337 9.322-2.801a22.77 22.77 0 0 1 4.962-.19c1.672.138 3.067.293 4.652.327 3.102.12 6.307.103 9.512.602 3.222.601 6.185 1.443 9.252 2.354 2.636.808 5.255 1.736 7.806 2.854 2.567 1.117 4.962 2.423 7.426 3.609 4.893 2.441 9.821 4.933 14.491 7.907l11.647 7.769a486.757 486.757 0 0 1 11.545 7.855l15.455 10.708a826 826 0 0 1 14.491 10.279c2.395 1.753 4.807 3.438 7.219 5.242 2.378 1.805 4.67 3.73 6.91 5.69 3.032 2.561 5.823 5.517 8.546 8.284 2.808 2.682 5.703 5.655 7.943 9.007 1.792 2.613 3.291 5.483 4.359 8.457 1.069 2.819 2.412 5.878 2.447 9.316 0 1.77-.396 3.214-.603 4.778-.276 1.547-.448 3.06-.827 4.641-.793 3.163-2.24 6.016-3.756 8.68l-2.171 3.85c-.672 1.238-1.344 2.664-2.206 3.936-1.671 2.544-3.635 4.796-5.462 7.099-3.67 4.589-7.133 9.351-10.631 14.146-2.171 3.008-4.445 6.016-6.668 8.955-2.223 2.974-4.377 6.016-6.772 8.938-.603.722-1.206 1.444-1.826 2.166-.672.739-1.154 1.306-1.689 2.08-1.051 1.461-1.964 3.128-3.394 4.623-.724.722-1.551 1.444-2.74 1.839-.758.207-.568.138-.723.172l-.293.052c-.379.051-.758.086-1.12.103-.689.034-1.344 0-1.964.103-.879.138-1.603-.069-2.344-.412-.62-.31-1.326-.447-2.05-.688-.224-.069-.62-.137-.655-.447-.103-.876 1.223-.98 2.016-1.169a14.29 14.29 0 0 1 2.774-.309c.827 0 1.689-.034 2.516-.052.241 0 .465-.017.672-.051.62.034 1.843-.928 2.774-2.183.982-1.255 1.861-2.785 3.084-4.28.672-.808 1.206-1.341 1.775-1.994a45.74 45.74 0 0 0 1.654-1.959c2.171-2.647 4.239-5.449 6.375-8.233a565.033 565.033 0 0 0 6.358-8.302c2.843-3.799 5.652-7.666 8.564-11.465 2.843-3.85 6.185-7.408 8.408-11.258 2.412-4.951 5.755-9.591 7.013-14.645.517-2.595.999-5.414 1.378-7.975.19-2.475-.586-4.985-1.568-7.546l-.775-2.045c-.259-.653-.5-1.307-.793-1.942a34.319 34.319 0 0 0-1.93-3.713c-1.43-2.389-3.153-4.624-5.065-6.704-.965-1.048-1.947-1.993-3.016-3.025l-3.084-3.094a83.692 83.692 0 0 0-6.22-5.878c-1.964-1.702-3.946-3.352-5.996-4.916-2.033-1.564-4.187-3.025-6.306-4.555-4.256-3.008-8.495-6.05-12.82-8.989l-25.828-17.859-12.544-8.439c-4.118-2.871-8.356-5.346-12.819-7.649l-6.737-3.403c-2.292-1.152-4.445-2.269-6.72-3.18-4.531-1.839-9.39-3.18-14.18-4.229-3.136-.618-6.479-.584-9.942-.636a68.944 68.944 0 0 1-2.636-.103l-2.533-.189c-1.568-.086-3.153.035-4.739.31-3.153.55-6.237 1.753-9.287 3.162-3.05 1.427-6.151 2.922-9.097 4.486a71.257 71.257 0 0 0-4.98 2.905c-1.62 1.014-3.084 2.166-4.721 3.369-3.239 2.355-6.582 4.469-9.821 6.652-1.982 1.306-3.774 2.613-5.79 4.039-1.998 1.358-4.066 2.579-6.134 3.747-2.102 1.169-4.066 2.304-6.22 3.455a85.987 85.987 0 0 1-6.513 3.06c-4.428 1.839-8.873 3.386-13.371 4.916-4.514 1.495-9.183 2.767-14.008 3.351-1.43.189-2.86.241-4.152.396-1.344.154-2.688.361-4.049.567-2.723.43-5.583.876-8.443.876-5.703.035-11.097-.807-16.403.585-6.979 1.392-13.957.515-20.608 1.375-1.688.189-3.239.55-4.962.962-1.723.379-3.446.636-5.152.877-3.446.481-6.651 1.014-9.856 2.252-1.688.567-3.36 1.117-4.979 1.753-1.603.619-3.154 1.409-4.739 2.217-1.568.808-3.153 1.633-4.79 2.407-1.671.773-3.274 1.392-4.859 2.148-6.306 3.008-12.319 6.824-17.954 10.949-4.772 3.575-9.166 7.632-13.37 11.86l-6.307 6.428a58.652 58.652 0 0 0-2.963 3.266c-.948 1.117-1.689 2.252-2.585 3.558-2.326 3.335-4.807 6.429-6.392 9.883-.397.86-.741 1.736-1.017 2.63l-.207.705c-.086.326-.224.636-.344.911a13.275 13.275 0 0 1-.879 1.495c-.62.877-1.12 1.582-1.568 2.407a29.295 29.295 0 0 0-1.24 2.561c-.741 1.77-1.362 3.661-2.051 5.586a69.586 69.586 0 0 1-1.12 2.853c-.362.842-.62 1.736-.844 2.647-.896 3.644-.913 7.769-1.895 11.843-.724 3.266-1.224 6.583-1.431 9.9a48.227 48.227 0 0 0-.069 4.968c.035 1.667.259 3.231.328 5.122.069 3.541-.172 6.806 1.068 9.419l.104.206.051.086.104.155.206.327c.138.206.328.464.311.378.034-.035 0 0 0 .068.017.035.43.086.637.138l.758.137c1.017.172 2.033.43 3.033.671.206.051.603.154.586.395l.068.034Z%27/%3E%3Cpath d=%27M453.856-167.289c.121-1.552 2.57-1.241 3.777-1.758.482-.207 1.017-.345 1.586-.328.621.017 2.069.104 2.776.862.38.362.638.844.793 1.362.052.258.138.568.156.758.103.965.103 1.723.155 2.551a102.758 102.758 0 0 1-1.207 19.631c-.569 3.275-1.397 6.446-2.242 9.565-.828 3.137-1.793 6.309-2.983 9.394a53.836 53.836 0 0 1-.931 2.292 32.787 32.787 0 0 0-.862 2.172 91.728 91.728 0 0 0-1.535 4.498c-.948 3.051-2.052 6.239-3.294 9.221-.879 2.189-1.776 4.326-2.569 6.481-.776 2.085-1.517 4.463-2.483 6.635l-2.759 6.429c-.914 2.24-1.983 4.36-2.949 6.446a69.674 69.674 0 0 0-1.362 3.12c-.431 1.068-.707 1.999-1.121 3.24-.793 2.327-1.793 4.516-2.793 6.636-1 2.137-2 4.188-2.828 6.29-.879 2.224-1.88 4.395-2.949 6.533a119.556 119.556 0 0 1-3.397 6.239c-1.12 1.965-2.138 4.016-3.121 6.118-1.948 4.171-4.017 8.635-6.707 12.565-2.501 3.895-4.829 7.945-7.415 11.927-2.604 4.016-5.432 7.721-8.26 11.496-3.431 4.498-7.087 8.876-11.122 12.91-4 4.032-8.363 7.841-13.329 10.857-2.501 1.517-5.07 2.758-7.708 3.896-2.656 1.12-5.449 2.068-8.346 2.62a34.044 34.044 0 0 1-4.397.55c-1.483.087-2.966 0-4.346-.034-2.81-.103-5.638-.24-8.483-.517-3.001-.293-6.036-.723-9.019-1.447-3-.759-5.759-1.552-8.673-2.379-2.88-.827-5.76-1.74-8.605-2.861-2.741-1.103-5.483-2.068-8.294-3.033l-8.76-2.965c-2.862-1.017-5.776-1.879-8.725-2.706s-5.966-1.672-8.88-2.568c-2.914-.844-5.88-1.586-8.863-2.275-2.932-.69-5.898-1.362-8.846-2.12-3.001-.741-5.881-1.758-8.726-2.568a46.002 46.002 0 0 0-4.311-1.017c-1.569-.31-3.069-.793-4.5-1.327-1.449-.517-2.845-1.086-4.242-1.551-1.362-.466-2.863-.776-4.345-1.258-5.139-1.603-9.933-3.982-14.589-6.48-4.655-2.483-9.363-5.12-13.467-8.619-1.741-1.447-3.38-3.205-4.862-4.791-1.535-1.603-3.139-3.171-4.708-4.791-1.586-1.603-3.138-3.275-4.587-5.05-.707-.897-1.414-1.81-2.052-2.775l-1.845-2.879-9.811-15.184c-3.104-4.774-6.174-9.548-9.95-13.668-3.776-4.153-8.087-7.859-12.432-11.53-5.743-4.93-11.95-9.221-18.313-13.358-4.966-3.274-9.984-6.463-15.106-9.427a177.988 177.988 0 0 0-7.776-4.24c-2.708-1.345-5.277-2.982-7.691-4.688a116.92 116.92 0 0 0-7.087-4.688c-2.38-1.482-4.949-2.775-7.38-4.361-4.863-3.102-9.33-6.79-13.433-10.824a103.737 103.737 0 0 1-7.363-7.98c-2.362-2.757-4.397-5.877-6.122-9.065-1.741-3.189-3.276-6.446-4.914-9.6-.431-.845-.828-1.741-1.086-2.689l-.173-.638-.069-.276a7.76 7.76 0 0 1-.172-1.103 10.548 10.548 0 0 1-.035-1.344c.035-.517.052-1.017.087-1.517 0-.189.034-.379.051-.551 0-.087 0-.19.035-.259l.241-.034c.328-.035.655-.069.983-.069.328 0 .707.051 1.035.086.344.052.707.121.845.19.69.258 1.43.413 2.138.637.224.069.62.138.655.448.12.879-1.259.983-1.983 1.172l-.655.155-.328.069s-.069.052-.103.069c-.104.087-.138.173-.138.224.017.104.086.19.103.224 0 .035.017 0 .035.069l.034.535c.017.241.052.482.104.741-.018-.069.103.465.207.758.103.345.224.672.379 1.017.276.638.69 1.413 1.07 2.189 1.5 3.051 2.896 6.084 4.465 8.98 1.57 2.912 3.31 5.584 5.432 8.135 2.086 2.568 4.31 5.05 6.639 7.394 3.19 3.223 6.57 6.187 10.26 8.79a67.349 67.349 0 0 0 5.673 3.619c1.948 1.086 4.052 2.241 6 3.464 2.294 1.414 4.587 2.965 6.743 4.464 2.19 1.483 4.397 2.844 6.742 4.033 4.811 2.5 9.432 5.257 14.002 8.118 9.397 6.033 18.985 11.927 27.589 19.252 3.863 3.24 7.76 6.515 11.347 10.204 3.638 3.653 6.725 7.876 9.518 12.064 2.811 4.189 5.518 8.48 8.277 12.72l4.121 6.377c1.293 2.137 2.604 4.033 4.225 5.895 3.035 3.55 6.725 6.877 9.984 10.496 3.19 3.378 7.07 6.101 11.191 8.497 4.156 2.361 8.449 4.688 12.777 6.601a55.856 55.856 0 0 0 6.639 2.43c.569.173 1.121.31 1.69.466a32.74 32.74 0 0 1 1.862.517c1.225.379 2.38.81 3.518 1.223 1.535.552 3.018 1.07 4.501 1.397l2.414.465c.845.172 1.672.38 2.483.603 3.276.88 6.328 1.93 9.484 2.637 6.345 1.517 12.898 2.758 19.278 4.705 3.604 1.052 7.277 2 10.95 3.12 3.707 1.12 7.242 2.447 10.846 3.62 2.155.723 4.328 1.447 6.484 2.223 2.155.758 4.328 1.672 6.38 2.43 4.173 1.534 8.535 2.723 12.915 3.947 4.259 1.258 8.639 1.844 13.105 2.172 2.242.155 4.484.24 6.742.327 2.242.103 4.346.034 6.501-.345 5.035-.81 9.915-2.947 14.537-5.377 4.569-2.5 8.708-5.791 12.536-9.445 4.759-4.516 9.018-9.514 13.019-14.736 2-2.603 3.966-5.274 5.88-7.946 1.879-2.671 3.621-5.463 5.345-8.29 1.759-2.896 3.604-5.877 5.449-8.687 1.742-2.86 3.173-5.929 4.621-9.031 1.414-3.085 3.001-6.256 4.725-9.17 1.638-2.964 3.156-5.98 4.449-9.1.535-1.292 1.052-2.705 1.655-4.05l1.811-3.981c1.224-2.654 2.293-5.17 3.104-7.963.948-2.878 2.259-5.533 3.466-8.135a74.172 74.172 0 0 0 1.69-3.947l1.707-4.016c.758-1.775 1.483-3.516 2.103-5.291a91.904 91.904 0 0 1 2.035-5.498c1.449-3.637 2.949-7.118 4.104-10.755.604-1.827 1.173-3.688 1.828-5.55.621-1.861 1.466-3.74 2.155-5.446 1.397-3.533 2.432-7.17 3.38-10.91.828-3.171 1.569-6.326 2-9.497.414-3.188.673-6.463.794-9.686.12-3.206.051-6.567-.156-9.6-.034-.224-.034-.121-.051-.155h-.035c-.034 0-.052 0-.069.034.345.104-1.017-.207-1.948-.362-1.018-.172-2.018-.431-3.018-.672-.207-.052-.603-.155-.586-.396l-.035-.069ZM-158.709 711.525c.137.742-.429 1.26-1.285 1.501-.857.242-1.919.156-2.69.156-.599 0-1.319-.156-1.832-.518a9.165 9.165 0 0 1-1.645-1.347c-.24-.241-.48-.5-.685-.742-.103-.121-.223-.259-.309-.379-.428-.536-.976-1.347-1.404-2.003-3.392-5.385-6.801-10.701-10.124-16.138-3.306-5.455-6.441-11.116-8.754-17.192-1.147-3.038-2.107-6.197-2.775-9.373-.634-2.986-1.627-6.075-2.072-9.441-.326-2.503-.206-4.868-.069-7.232.171-2.382.497-4.764 1.045-7.095a40.07 40.07 0 0 1 .994-3.469c.188-.57.411-1.139.616-1.692l.583-1.57c.753-2.106 1.387-4.315 2.141-6.525 2.981-9.044 8.274-17.002 13.773-24.355l8.205-11.081c2.792-3.694 5.704-7.25 8.497-10.857 5.498-7.319 11.22-14.551 16.667-21.869a366.156 366.156 0 0 0 4.831-6.628 191.475 191.475 0 0 1 4.933-6.68c3.375-4.384 6.784-8.631 10.021-13.032 3.324-4.453 6.852-8.699 10.501-12.859 3.666-4.126 7.366-8.199 11.306-12.1 4.18-4.125 8.668-8.061 13.636-11.375 2.33-1.502 4.42-3.486 7.092-5.178a18.773 18.773 0 0 1 2.072-1.122l1.902-.949 3.854-2.037a53.842 53.842 0 0 1 8.514-3.659c2.895-.984 5.807-1.83 8.702-2.659l4.3-1.277 2.124-.673c.822-.276 1.764-.431 2.57-.483 1.66-.104 3.134.052 4.384-.138.617-.087 1.183-.259 1.68-.535a2.2 2.2 0 0 0 .376-.225l.565-.362a4.056 4.056 0 0 1 1.645-.449c1.045-.069 2.313.086 3.34 1.156.309.346.549.484.96.553.428.069.959 0 1.764-.087 1.662-.12 3.186.277 4.574.76 2.655 1.018 5.19 2.123 7.691 3.435 4.968 2.589 9.627 6.145 13.088 10.615 1.644 2.002 3.306 4.056 4.642 6.387a23.135 23.135 0 0 1 1.713 3.676c.445 1.277.788 2.537 1.13 3.78.343 1.243.686 2.468 1.148 3.608.497 1.156 1.01 2.502 1.302 3.797.651 2.641.754 5.385.463 8.061-.223 2.278-.788 4.47-1.25 6.611-.48 2.157-.96 4.332-1.577 6.49a41.444 41.444 0 0 1-1.062 3.21 20.473 20.473 0 0 0-1.028 3.038c-.274 1.036-.685 2.278-1.182 3.28-.445.966-.856 1.95-1.233 2.968-1.01 2.728-1.799 5.593-2.827 8.441-1.045 2.9-2.415 5.506-3.374 8.233-.24.656-.428 1.26-.651 1.968-.24.708-.514 1.381-.788 2.054-.565 1.329-1.182 2.572-1.696 3.815-.548 1.277-.805 2.416-1.2 3.9a40.949 40.949 0 0 1-1.404 4.091c-1.045 2.658-2.244 5.178-3.22 7.75-.908 2.538-1.816 5.282-2.724 7.923-2.432 7.094-4.676 14.205-7.366 21.231-2.107 5.523-4.625 10.891-7.452 16.069-1.387 2.607-2.946 5.092-4.488 7.56-1.559 2.469-3.1 4.92-4.659 7.388a300.11 300.11 0 0 1-9.353 13.998c-1.61 2.296-3.203 4.575-4.745 6.887-1.559 2.296-2.93 4.695-4.351 7.146-.891 1.519-1.816 3.056-2.81 4.54-.959 1.415-1.73 2.917-2.45 4.505-.719 1.588-1.387 3.228-2.192 4.85-.788 1.606-1.61 3.176-2.415 4.73-1.61 3.124-3.186 6.231-4.3 9.493-.291.811-.514 1.623-.77 2.486l-.24.828c-.103.328-.189.656-.326 1.019-.24.638-.514 1.363-1.114 2.123a2.59 2.59 0 0 1-1.576.932c-.53.103-.993.034-1.438-.087-.771-.207-1.49-.362-2.193-.587-.223-.069-.617-.12-.651-.448-.12-.881 1.25-.984 1.936-1.191.805-.242 1.661-.535 1.833-.794.085-.121.274-.587.6-1.398l.29-.812.651-2.071c.275-.828.566-1.64.891-2.434 1.285-3.193 2.878-6.179 4.437-9.079.77-1.45 1.559-2.917 2.278-4.332l2.09-4.488c.72-1.519 1.559-3.09 2.552-4.54.908-1.311 1.765-2.692 2.621-4.09 1.148-1.916 2.279-3.884 3.512-5.817 1.25-1.951 2.518-3.798 3.803-5.662 2.552-3.728 5.139-7.405 7.572-11.15l8.376-13.308c2.86-4.419 5.43-8.924 7.726-13.619 2.415-4.885 4.35-9.925 6.15-15.103 1.832-5.161 3.477-10.391 5.224-15.569l2.364-7.077c.84-2.416 1.867-4.712 2.792-6.973.925-2.261 1.765-4.505 2.279-6.784.616-2.71 1.867-4.988 2.758-7.18a23.63 23.63 0 0 0 .6-1.623l.582-1.795c.428-1.208.89-2.399 1.387-3.555 1.028-2.365 1.953-4.419 2.69-6.784.77-2.313 1.473-4.712 2.398-7.111.222-.604.48-1.191.736-1.795l.754-1.657c.411-.95.651-2.089 1.062-3.401.103-.311.206-.638.343-.966l.325-.812c.206-.535.394-1.07.583-1.605a49.98 49.98 0 0 0 .976-3.331c.583-2.261 1.062-4.592 1.61-6.939 1.062-4.453 1.2-9.027-.36-13.118l-.667-1.657a27.975 27.975 0 0 1-.6-1.813l-.976-3.469c-.617-2.244-1.456-4.16-2.69-6.076-1.216-1.898-2.69-3.676-4.214-5.506a33.408 33.408 0 0 0-4.83-4.781c-3.135-2.52-6.733-4.488-10.501-6.11-1.867-.76-3.889-1.692-5.568-2.02a6.405 6.405 0 0 0-1.25-.121c-.206 0-.394 0-.6.035l-.822.086c-.6.052-1.387.069-2.193-.172-.822-.242-1.559-.777-2.055-1.33 0-.017-.189-.138-.548-.155-.326-.034-.754.086-.72.104a7.626 7.626 0 0 1-2.724 1.294c-.959.242-1.901.311-2.757.328-1.713.035-3.187-.052-4.317.328-7.04 2.399-14.407 3.901-20.865 6.922-1.953.932-3.871 1.985-5.876 3.038-.976.517-2.055 1.035-3.014 1.501-.891.432-1.765 1.001-2.621 1.623-1.73 1.243-3.443 2.71-5.413 4.004a76.39 76.39 0 0 0-5.294 3.815c-6.835 5.437-12.796 12.013-18.706 18.624-3.46 3.918-6.835 7.871-10.021 11.996-3.135 4.16-6.441 8.32-9.678 12.411-1.987 2.554-3.975 5.109-5.842 7.733-1.884 2.64-3.837 5.264-5.79 7.87l-11.871 15.449c-2.039 2.641-4.026 5.368-6.133 8.009-2.072 2.641-4.179 5.264-6.201 7.905-2.021 2.641-3.94 5.403-5.961 8.095-2.004 2.693-3.991 5.386-5.893 8.113-3.237 4.643-6.132 9.476-8.308 14.637-1.096 2.572-1.936 5.213-2.758 7.957-.428 1.364-.856 2.745-1.353 4.125-.531 1.416-.977 2.607-1.353 3.953-1.011 3.521-1.439 7.198-1.508 10.909-.205 3.676.702 7.111 1.662 10.874.24.932.445 1.899.651 2.831.205.897.411 1.812.668 2.693.462 1.795 1.062 3.555 1.713 5.299 1.302 3.486 2.912 6.869 4.711 10.166 3.049 5.61 6.612 11.012 10.089 16.467l2.621 4.073c.891 1.347 1.73 2.762 2.621 3.884l.154.173.069.069.137.138.274.276c.188.155.377.345.565.483.685.483 1.079 1.07 1.73 1.45a5.613 5.613 0 0 0 2.364.725c.189 0 .566.035.617.276l-.171-.103ZM294.275 711.083c-.12 1.554-2.567 1.243-3.774 1.761-.465.207-1.016.345-1.516.345h-1.775l-1.034.035H283.936s-.207.034-.224-.035l-.069-.259-.483-1.934-.344-1.312-.293-1.053-.62-2.158c-.414-1.467-.793-2.969-1.034-4.575-.104-.794-.19-1.623-.19-2.451l-.034-2.21-.138-4.437c-.224-5.922-.448-12.085.827-18.214a34.304 34.304 0 0 1 1.275-4.506c.241-.674.655-1.675.638-1.796.069-.397 0-1.174.086-2.141a6.2 6.2 0 0 1 .362-1.571l.551-1.174.948-1.985 1.913-3.988c1.826-3.867 3.756-7.873 6.1-11.619 2.326-3.798 5.238-7.217 8.133-10.428l4.412-4.782a70.371 70.371 0 0 1 4.704-4.661c1.62-1.485 3.292-2.883 4.963-4.265 1.62-1.364 3.361-2.831 5.222-4.091a63.6 63.6 0 0 1 5.669-3.47l5.721-3.022c3.739-2.037 7.72-4.264 12.028-5.524 4.084-1.312 8.203-2.711 12.511-3.747 4.256-1.139 8.874-1.329 12.958-1.864 4.98-.674 10.15-1.934 15.664-1.796 1.396.035 2.689.19 3.878.225.603.017 1.171.017 1.688-.018.259-.017.517-.051.776-.103l.879-.19c2.791-.639 5.566-.622 8.185-.518 1.292.052 2.619.138 3.808.155 1.052 0 2.189-.19 3.395-.466 2.361-.535 5.221-1.485 8.341-.898 1.016.225 1.981.139 3.119-.103.551-.121 1.12-.294 1.706-.484.603-.207 1.43-.431 2.119-.535 1.43-.241 2.757-.259 3.929-.397a12.753 12.753 0 0 0 1.689-.293c.258-.069.517-.138.775-.242l.914-.328c2.636-.95 5.324-1.778 8.116-2.331.672-.138 1.447-.259 2.068-.362.62-.104 1.241-.242 1.844-.415 1.223-.345 2.395-.828 3.618-1.363 2.585-1.019 5.118-2.124 7.789-3.039 2.637-.915 5.205-1.692 7.548-2.78a21.598 21.598 0 0 0 3.447-1.933c1.292-.898 2.722-1.64 4.17-2.124 2.585-.915 5.135-2.071 7.651-3.297l7.616-3.781a265.121 265.121 0 0 1 7.789-3.574c5.136-2.244 10.529-4.178 15.957-5.49 2.723-.708 5.532-1.312 8.427-1.502a27.746 27.746 0 0 1 4.325.104c1.344.12 2.706.138 4.084.138l3.361-.052c.534 0 1.206.017 1.585-.035.414-.051 1.551-.241 2.189.294 2.912 2.054 6.703 1.519 10.58 2.572 3.567 1.243 7.169 2.038 10.736 3.678 7.427 3.746 14.854 7.406 21.902 11.929a96.311 96.311 0 0 1 3.515 2.348c.586.432 1.12.794 1.741 1.261.603.483 1.12.984 1.62 1.45.499.466.982.898 1.447 1.191.121.069.224.138.345.19l.482.224c.328.156.655.311.965.484a38.084 38.084 0 0 1 3.688 2.227c4.463 3.056 8.22 6.871 12.045 10.428 3.826 3.591 7.703 7.216 11.236 11.204 2.343 2.676 4.583 5.439 6.444 8.563a41.848 41.848 0 0 1 2.43 4.817c.362.829.69 1.658 1 2.504l.448 1.26c.138.414.293.846.413 1.415.293 1.658-.034 3.108.138 4.144.035.259.104.466.19.656.103.207.155.242.465.656.5.673.879 1.485 1.051 2.331a5.37 5.37 0 0 1-.103 2.607 4.28 4.28 0 0 1-.259.656l-.172.397c-.103.276-.19.535-.259.828-.292 1.157-.275 2.452-.361 3.902-.052.725-.138 1.485-.362 2.279-.138.449-.207.639-.276.932a6.877 6.877 0 0 0-.155.898c-.086.639-.138 1.347-.293 2.106-.069.38-.172.777-.31 1.157l-.379.984c-1 2.59-2.154 5.11-3.378 7.562-2.412 4.73-4.808 9.409-7.53 13.967-2.723 4.54-5.67 8.908-8.772 13.207-3.86 5.421-8.15 10.549-12.682 15.417a172.414 172.414 0 0 1-3.464 3.626c-1.206 1.191-2.533 2.382-4.17 3.211-.81.414-1.706.725-2.62.915-.62.121-.482.086-.62.104l-.276.034c-.362.052-.741.069-1.103.086-.654.018-1.464-.051-1.964.035-.758.138-1.43.017-2.206-.259-.672-.242-1.43-.363-2.137-.57-.224-.069-.62-.121-.672-.431-.12-.864 1.207-1.002 1.948-1.226.861-.259 1.792-.483 2.791-.535 1.172-.018 1.844.034 2.602.017.259 0 .5 0 .741-.035-.051.018.431-.069.69-.12.293-.069.586-.156.878-.277a8.095 8.095 0 0 0 1.706-.897c1.121-.743 2.172-1.727 3.24-2.814l3.223-3.315c4.239-4.454 8.237-9.116 11.89-14.071 5.032-6.75 9.512-13.846 13.269-21.356 2.257-4.385 4.48-8.753 6.255-13.276l.327-.846c.086-.225.155-.466.207-.708.121-.501.172-1.07.259-1.709.086-.639.189-1.347.43-2.055.207-.604.293-.984.379-1.571.156-1.087.121-2.348.311-3.694a11.33 11.33 0 0 1 .465-2.055 7.38 7.38 0 0 1 .413-.984c.069-.155.138-.345.173-.552a3.205 3.205 0 0 0-.724-2.59c-.534-.57-.948-1.605-1.017-2.382-.103-.812-.051-1.502-.051-2.141.017-.639.034-1.209-.052-1.692-.052-.414-.293-1.019-.483-1.623a40.477 40.477 0 0 0-1.378-3.487c-1.017-2.279-2.223-4.472-3.636-6.492-1.448-2.054-3.05-4.005-4.722-5.887-3.05-3.401-6.41-6.56-9.805-9.703-3.446-3.124-6.755-6.422-10.305-9.219-1.775-1.398-3.618-2.676-5.549-3.763-.482-.259-.965-.536-1.464-.76-.397-.19-1.241-.587-1.775-1.019-1.103-.846-1.878-1.709-2.671-2.348-3.533-2.641-7.513-5.127-11.477-7.371a243.945 243.945 0 0 0-8.685-4.662l-4.411-2.261c-1.517-.795-2.809-1.451-4.326-1.986-1.482-.552-3.032-1.018-4.635-1.519l-2.395-.777-1.103-.363c-.345-.086-.707-.19-1.069-.259-1.464-.293-3.101-.414-4.859-.69a15.972 15.972 0 0 1-2.688-.656c-.448-.138-.896-.345-1.344-.553l-.655-.345-.517-.328s-.052-.034-.086-.034l-.586.069a6.839 6.839 0 0 1-.621.034h-1.292l-3.533.069c-1.189 0-2.412 0-3.653-.086l-1.723-.121a25.736 25.736 0 0 0-1.62 0c-2.826.104-5.687.725-8.564 1.502-2.913.794-5.756 1.623-8.548 2.676-5.583 2.072-11.08 4.661-16.456 7.337-3.102 1.571-6.221 3.212-9.478 4.662a63.22 63.22 0 0 1-4.963 1.968c-.706.259-1.43.621-2.102 1.018-.362.208-.621.398-1.017.657-.396.258-.775.517-1.189.759-3.877 2.331-8.116 3.332-11.907 4.748l-5.756 2.262c-1.93.828-4.067 1.691-6.29 2.054-2.102.311-3.98.725-5.962 1.312-.982.276-1.947.604-2.912.932l-1.448.518c-.448.173-1.103.397-1.654.535-2.326.553-4.481.398-6.238.812-.793.173-1.896.621-2.999.863-1.102.259-2.309.432-3.567.311-.844-.086-1.275-.242-1.792-.259-.517-.052-1.051-.017-1.602 0-1.103.103-2.241.38-3.43.656-1.189.293-2.464.587-3.791.725-.655.069-1.396.086-2.016.052l-1.861-.086c-2.464-.139-4.859-.277-7.186 0a14.38 14.38 0 0 0-1.723.293c-.5.121-1.327.311-1.947.345-1.344.121-2.637 0-3.86-.086-5.928-.639-11.822.863-17.956 1.623l-4.55.466c-1.499.138-2.998.276-4.463.57-2.946.535-5.859 1.329-8.754 2.21-2.964.932-6.048 1.899-8.926 2.883-2.86 1.07-5.6 2.572-8.375 4.074-1.378.76-2.774 1.519-4.187 2.244a72.118 72.118 0 0 0-4.084 2.245c-2.671 1.588-5.204 3.332-7.548 5.369-4.136 3.453-8.047 6.889-11.528 10.928-3.567 3.954-7.186 7.908-10.047 12.224-3.843 5.8-6.565 12.395-9.788 18.887l-.293.604a1.773 1.773 0 0 0-.137.345c-.069.242-.104.553-.121.933 0 .38 0 .846-.017 1.398a4.451 4.451 0 0 1-.138.898c-.069.328-.224.69-.276.829a34.772 34.772 0 0 0-1.499 4.885c-.724 3.35-.982 6.82-.982 10.342 0 2.987.155 6.008.275 9.064.069 1.519.121 3.055.138 4.609 0 1.45.173 2.763.517 4.178.31 1.399.758 2.832 1.189 4.282l.638 2.175c.103.276.069.311.155.276.034 0 .034-.017.052-.034l.017-.017h.224l.913-.104c1.069-.104 2.051.155 3.05.328 1.017.173 2.016.432 3.016.673.207.052.603.156.586.397l-.19.156Z%27/%3E%3Cpath d=%27M430.929-167.19c.121-1.565 2.605-1.204 3.778-1.72a4.504 4.504 0 0 1 1.466-.378l.846-.052c.224 0 .655-.069 1.155-.017a3.717 3.717 0 0 1 1.57.499c.242.137.449.309.656.515 0-.017.138.155.241.276.104.137.207.275.276.429.173.293.311.637.38.929.051.155.069.292.086.43l.052.258.103.533c1.018 5.657 2.605 11.469 2.708 17.642 0 .774 0 1.531-.034 2.305 0 .705-.121 1.736-.311 2.476-.172.774-.362 1.444-.448 2.029a4.668 4.668 0 0 0-.069.825c0 .138 0 .241.017.379l.069.464c.552 3.353-.241 6.551-.966 9.371l-.535 2.115-.241 1.032c-.052.275-.086.533-.121.843-.052.619-.017 1.358-.086 2.235-.035.86-.397 1.943-.587 2.511-.897 2.751-1.707 5.554-2.553 8.374a229.304 229.304 0 0 1-1.914 6.087c-.069.207-.087.533-.069 1.084 0 .533 0 1.324-.276 2.166a3.74 3.74 0 0 1-.259.602l-.19.361-.362.688-.69 1.376c-1.777 3.731-3.157 7.686-4.571 11.71-1.398 4.04-2.933 8.047-4.486 12.02-.793 1.994-1.604 3.989-2.484 5.95-.879 2.011-1.828 3.868-2.656 5.794-1.691 3.852-3.243 7.876-5.33 11.762a54.239 54.239 0 0 1-1.656 2.871c-.57.912-1.053 1.72-1.553 2.648l-2.881 5.692c-1.052 2.012-2.277 3.732-3.381 5.52l-3.415 5.365c-2.243 3.817-4.951 7.256-7.711 10.54-1.691 1.978-3.278 3.887-5.106 5.847a62.815 62.815 0 0 1-5.796 5.348c-4.054 3.319-8.418 6.139-12.765 8.839-2.312 1.461-4.968 2.51-7.573 3.13-2.622.653-5.21.962-7.711 1.323-1.242.19-2.484.361-3.674.602-.621.103-1.139.258-1.829.396-.793.189-1.57.223-2.346.206-3.036-.172-5.434-1.307-7.711-1.702a12.243 12.243 0 0 0-1.759-.207c-.673-.017-1.363-.034-2.087-.086-1.449-.068-3.037-.43-4.33-.842-2.709-.826-5.244-1.909-7.728-2.786-5.175-1.6-10.316-3.955-15.163-6.276a195.117 195.117 0 0 0-7.659-3.474c-2.691-1.238-5.089-2.751-7.504-3.972a28.69 28.69 0 0 0-1.811-.843c-.587-.258-1.225-.481-1.932-.756a51.253 51.253 0 0 1-3.951-1.788c-2.57-1.29-5.002-2.717-7.435-4.093-4.83-2.717-9.573-5.88-13.696-9.612-4.175-3.646-8.194-7.6-11.489-12.158-5.554-7.995-9.729-16.68-15.197-24.452a52.814 52.814 0 0 0-8.039-8.941c-2.984-2.7-6.348-4.901-9.763-7.17-4.572-3.027-9.247-5.899-14.042-8.53a154.933 154.933 0 0 0-13.904-6.792l-14.421-5.864c-3.226-1.238-6.503-2.407-9.746-3.697a118.565 118.565 0 0 1-4.83-2.029 83.575 83.575 0 0 0-4.761-1.926c-2.553-.928-5.106-1.857-7.659-2.768-2.588-.963-5.089-2.047-7.608-3.061-5.02-2.081-10.022-4.213-14.887-6.586a422.355 422.355 0 0 1-13.92-7.136 156.831 156.831 0 0 1-6.814-3.869 89.458 89.458 0 0 1-3.347-2.098c-1.121-.757-2.156-1.582-3.174-2.356-2.587-1.891-5.347-3.834-7.797-6.053-2.519-2.201-4.692-4.797-6.659-7.445a64.691 64.691 0 0 1-5.33-8.409l-.57-1.1-.672-1.376-.535-1.152-.672-1.427-.328-.688-.173-.344h.345c.449-.052.897-.103 1.311-.189.587-.121 1.329-.138 2.019-.103.345.017.69.051 1.035.103.241.051.396.12.603.189.69.258 1.432.413 2.14.636.224.069.62.138.655.447.12.877-1.26.98-1.984 1.169-.431.104-.88.224-1.31.31-.19.086-.19.172-.225.224-.052.12.069.189.069.206v.086l.448.911c.328.671.673 1.324 1.035 1.978a60.616 60.616 0 0 0 4.813 7.531c1.794 2.425 3.657 4.66 5.865 6.638 2.208 2.029 4.572 3.783 7.09 5.64l2.467 1.909c.776.602 1.621 1.117 2.501 1.685a111.78 111.78 0 0 0 5.33 3.147c3.623 2.012 7.349 3.869 11.092 5.76 8.66 4.351 17.647 8.22 26.635 11.934 4.674 1.84 9.573 3.319 14.334 5.434 4.589 2.046 9.367 3.697 14.146 5.485 8.521 3.474 17.267 6.534 25.53 10.868 8.297 4.247 16.06 9.234 23.667 14.616a57.051 57.051 0 0 1 9.885 9.44c2.915 3.56 5.244 7.411 7.555 11.229 2.277 3.834 4.451 7.686 6.745 11.418 2.277 3.8 4.744 7.153 7.78 10.283 2.018 2.115 4.209 4.092 6.451 6.018 2.277 1.943 4.537 3.714 7.004 5.33 2.449 1.634 4.985 3.096 7.624 4.54 2.622 1.462 5.21 2.924 7.849 4.127 1.518.723 3.036 1.187 4.796 1.96 1.673.757 3.208 1.617 4.726 2.46 1.501.825 2.985 1.65 4.468 2.287 1.587.67 3.209 1.392 4.779 2.132 3.777 1.754 7.469 3.594 11.229 5.141 1.898.791 3.726 1.427 5.762 2.115l5.813 2.184a36.39 36.39 0 0 0 2.847.911c.966.276 1.776.413 2.76.482.983.086 1.914.034 3.156.172 1.156.137 2.243.395 3.261.688 2.035.567 3.933 1.186 5.623 1.117.431-.017.794-.086 1.242-.189.518-.12 1.052-.258 1.57-.36 1.052-.224 2.087-.38 3.14-.551 4.864-.705 9.625-1.17 13.713-3.336 4.089-2.356 8.263-5.004 12.075-7.893 2.364-1.805 4.624-3.731 6.711-5.829 2.053-2.098 4.002-4.436 5.951-6.706 1.932-2.287 3.795-4.609 5.451-7.068l4.83-7.583 2.519-3.938c.793-1.272 1.483-2.63 2.156-4.023.69-1.393 1.363-2.803 2.139-4.196.776-1.427 1.673-2.7 2.381-4.024 2.967-5.313 4.95-11.28 7.676-16.92 2.156-4.763 3.933-9.716 5.744-14.668 1.777-4.918 3.278-10.025 5.451-14.96.363-.826.742-1.634 1.139-2.442.345-.757 1-1.806.983-2.046.138-.447-.086-1.376.19-2.666l.845-2.613 3.071-10.094.81-2.545c.259-.722.311-1.29.328-2.167 0-.808.035-1.943.293-2.906.19-.894.432-1.754.639-2.613.431-1.703.862-3.354 1.035-4.97.086-.808.12-1.599.069-2.39a12.505 12.505 0 0 0-.138-1.152c-.069-.413-.156-1.101-.121-1.617.103-1.874.724-3.301.793-4.47.087-1.41.087-2.855 0-4.282-.172-2.872-.707-5.761-1.293-8.667l-1.674-7.944h-.103c0 .017-.017.034-.19.069-1 .172-2.139-.069-3.139-.241-1.035-.172-2.019-.464-3.019-.722-.207-.052-.604-.155-.587-.396l-.069.104ZM337.1 711.074c-.121 1.552-2.571 1.242-3.779 1.759-.466.207-1.018.344-1.518.344l-5.16.035h-8.49l-4.244.017c-.673 0-1.571.052-2.623-.276-1.053-.293-1.967-1.155-2.433-1.672-2.261-2.43-3.296-5.447-4.194-8.102-.224-.913-1.242-1.827-2.001-3.654a5.77 5.77 0 0 1-.345-1.483l-.069-1.12-.138-2.069c-.242-2.758-.604-5.602-.725-8.533-.052-1.465-.052-2.947.069-4.447.121-1.448.259-2.862.449-4.292.5-4.138 1.363-8.326 2.778-12.326 1.484-3.982 3.175-7.74 5.228-11.446 2.036-3.672 4.556-7.188 7.42-10.274 2.778-3.068 5.677-6.068 8.818-8.843 3.123-2.775 6.505-5.344 10.112-7.516a102.746 102.746 0 0 1 11.095-5.792 110.252 110.252 0 0 1 11.699-4.396c1.985-.62 4.004-1.189 6.005-1.706 1.019-.242 1.968-.535 3.158-.724 1.122-.19 2.174-.259 3.123-.379.57-.069 1.122-.156 1.64-.276.448-.104 1.225-.311 1.829-.431a42.47 42.47 0 0 1 3.813-.586c2.537-.276 4.97-.414 7.455-.552 4.952-.258 9.87-.345 14.736-.517 4.866-.19 9.715-.465 14.46-1.172 4.953-.759 9.888-.948 14.599-1.707 2.502-.362 4.918-1.034 7.472-1.706l7.54-1.983c4.987-1.362 9.836-2.999 14.374-5.223 2.261-1.12 4.866-2.672 7.748-3.292 2.485-.604 4.918-1.569 7.368-2.638 2.433-1.069 4.884-2.258 7.438-3.292a184.223 184.223 0 0 1 7.627-2.896c3.658-1.328 7.299-2.586 10.905-3.965.673-.259 1.329-.224 1.777-.207.466.034.812.069 1.053.052.207.051 1.242-.552 2.019-.828 1.657-.655 3.365-1.086 5.073-1.379 3.451-.586 6.851-.603 10.216-.707 4.641-.103 9.352 0 14.011.776 4.607.862 9.146 1.879 13.598 3.379a59.888 59.888 0 0 1 5.591 2.189c1.846.828 3.571 1.793 5.314 2.706 3.486 1.862 6.954 3.793 10.285 5.999 4.469 2.914 8.748 6.43 12.286 10.395 3.399 3.568 7.178 6.912 10.422 10.895 1.622 1.982 3.089 4.119 4.245 6.447 1.104 2.31 2.174 4.482 3.21 6.843 1.363 3.103 2.45 6.516 2.415 10.084 0 .914-.086 1.759-.138 2.552l-.12 2.465c-.069 1.672-.121 3.361-.328 5.068a27.485 27.485 0 0 1-.742 3.982c-.311 1.258-.621 2.551-.967 3.827-.655 2.534-1.639 5.223-2.985 7.516-2.45 4.533-4.676 9.308-7.506 13.738-1.346 2.121-2.692 4.258-4.193 6.31-1.45 2.068-3.21 4.016-4.918 5.792-3.399 3.654-6.782 7.36-10.526 10.791a63.869 63.869 0 0 1-7.506 5.93c-2.64 1.775-5.626 3.378-8.956 3.947-1.622.293-3.399.259-4.935.138a69.676 69.676 0 0 0-4.659-.138h-2.347l-.794.035-.983.051c-.621.035-1.243.069-1.829.242-.829.241-1.605.138-2.399-.155-.69-.259-1.432-.397-2.14-.621-.224-.069-.621-.121-.655-.448-.121-.879 1.242-.983 1.967-1.19a23.121 23.121 0 0 1 2.623-.586 18.88 18.88 0 0 1 2.795-.224h.932l1.967.017 2.243.035a77.23 77.23 0 0 1 4.504.258c1.329.104 2.64.018 3.934-.241 2.589-.517 5.056-1.81 7.455-3.379a57.45 57.45 0 0 0 6.85-5.24c2.968-2.603 5.712-5.482 8.438-8.429l4.055-4.431c1.277-1.43 2.451-2.999 3.555-4.619 1.294-1.897 2.519-3.879 3.745-5.879 1.208-1.965 2.312-3.999 3.416-6.068l3.313-6.24.863-1.551c.259-.483.518-.966.742-1.483.466-1.017.828-2.068 1.174-3.154.672-2.224 1.276-4.724 1.777-6.964.431-2.276.5-4.655.587-7.12.034-1.207.103-2.499.189-3.706.087-1.121 0-2.258-.155-3.379-.311-2.241-1.104-4.447-2.071-6.619-.862-1.965-1.88-3.931-2.83-5.947-.897-1.897-2.036-3.672-3.313-5.361-2.588-3.379-5.78-6.344-8.955-9.464-1.571-1.517-3.193-3.258-4.642-4.758a53.931 53.931 0 0 0-4.814-4.258c-3.383-2.672-7.041-4.982-10.854-7.136a241.801 241.801 0 0 0-5.574-3.052 55.509 55.509 0 0 0-5.608-2.689c-3.831-1.551-7.851-2.689-11.958-3.62-4.142-.982-8.128-1.603-12.321-1.689-2.088-.069-4.176-.035-6.298.034-2.123.087-4.245.138-6.281.345-2.105.207-4.159.569-6.091 1.207-.984.327-1.864.689-2.813 1.172-.932.465-1.898.431-2.485.397-.621-.052-.915-.035-.897 0-6.695 2.689-13.546 4.912-19.982 7.722-2.986 1.328-5.988 2.827-9.215 4.051-1.587.604-3.296 1.155-4.935 1.534-1.415.362-2.847 1.017-4.279 1.741-7.127 3.931-15.134 6.12-22.795 8.016l-5.815 1.5c-2.002.483-4.021.827-6.023 1.103-4.02.535-7.989.776-11.837 1.345-9.422 1.448-18.895 1.137-28.213 1.499-2.882.121-5.781.276-8.628.518-1.415.137-2.83.31-4.21.586-.708.138-1.329.31-2.123.482a21.24 21.24 0 0 1-2.243.311c-1.484.138-2.778.275-4.176.655a86.18 86.18 0 0 0-4.176 1.086 106.163 106.163 0 0 0-8.214 2.654c-11.129 4.138-21.707 10.016-29.938 18.583a130.398 130.398 0 0 0-5.177 5.516 46.74 46.74 0 0 0-4.555 5.896c-2.71 4.154-4.832 8.722-6.678 13.377-2.399 6.085-3.365 12.842-3.693 19.393-.052 3.258.397 6.567.707 9.998.069.862.138 1.724.19 2.585.035 1.052.035 1.276.345 1.897.276.569.794 1.224 1.294 2.085.242.414.501.966.639 1.414l.414 1.189c.483 1.328.984 2.586 1.639 3.707.328.569.691 1.086 1.087 1.568.397.466.88.966 1.157 1.086.293.173.69.224 1.363.224h2.14l4.331-.069 8.662-.103h.587l.448-.052.915-.069c1.07-.103 2.053.156 3.054.328 1.018.172 2.019.431 3.02.672.207.052.604.155.587.397l.034.051ZM890.607 101.798c.345.189.569.396.777.603.189.224.431.775.379 1.309-.034.568-.466 1.068-.966 1.378-.466.293-.864.482-1.174.74-.397.345-.898.655-1.399.81l-1.743.517-3.142.861c-2.555.689-4.834 1.43-7.199 2.567a388.891 388.891 0 0 0-7.181 3.29c-9.409 4.358-17.989 10.456-25.153 17.897-5.162 5.392-9.633 11.576-13.793 17.898-2.089 3.135-3.936 6.511-5.87 9.801l-5.766 9.888-5.783 9.905c-1.951 3.29-4.092 6.666-6.526 9.68l-14.225 18.088-2.14 2.704-2.175 2.618a246.612 246.612 0 0 0-4.23 5.323 225.97 225.97 0 0 0-7.941 11.042c-2.521 3.772-5.075 7.562-7.199 11.455-1.053 1.946-2.037 3.979-2.797 5.977-.725 1.998-1.346 4.462-2.71 6.615-2.33 3.91-3.383 8.561-4.419 13.281-1.122 4.771-2.106 9.405-2.78 14.159-.638 4.944-1.139 9.974-1.743 14.969-.57 5.03-1.243 9.922-1.502 14.918-.311 4.909-.501 9.853-.932 14.814a131.483 131.483 0 0 1-.864 7.407c-.328 2.412-.535 4.858-.673 7.304-.241 4.272-.224 8.561-.224 12.867v6.46c.052 2.17-.052 4.324.172 6.356.777 7.046 4.126 13.833 9.409 18.587 3.522 3.238 7.768 5.702 12.171 7.769 4.16 1.946 8.545 3.445 12.947 4.995 2.21.758 4.419 1.55 6.612 2.377l6.612 2.274 17.66 5.943c4.609 1.464 9.339 2.739 14.018 4.255 4.713 1.464 9.253 3.479 13.586 5.598 4.195 2.05 8.476 4.031 12.516 6.425 4.074 2.343 7.993 4.927 11.825 7.648 4.765 3.446 9.512 7.063 13.707 11.266 2.106 2.084 4.126 4.238 6.112 6.408l2.71 2.963c.432.499.863 1.033 1.346 1.516.674.689.984 1.602.933 2.549-.035.827-.069 1.654-.294 2.412-.069.224-.138.637-.449.671-.88.052-.949-1.205-1.26-1.791a12.789 12.789 0 0 0-1.243-1.895c-.466-.62-1.001-1.223-1.536-1.877l-.57-.689-2.555-2.912c-1.813-2.049-3.66-4.048-5.576-5.96-1.916-1.912-3.884-3.738-5.973-5.46a150.376 150.376 0 0 0-6.457-5.047c-5.973-4.427-12.343-8.303-19.041-11.455-3.971-1.861-7.907-3.807-11.877-5.513-3.953-1.722-8.097-3.014-12.292-4.289-8.787-2.515-17.487-5.564-26.153-8.44l-5.887-1.981-5.801-2.033c-3.884-1.326-7.855-2.601-11.739-4.186-3.901-1.585-7.699-3.48-11.255-5.874-3.557-2.377-6.819-5.374-9.305-8.974-2.417-3.463-4.075-7.39-5.007-11.473a29.464 29.464 0 0 1-.725-6.27v-5.977c.052-7.924-.172-15.934.708-24.013 1.536-10.594 1.019-21.308 2.313-32.229l2.089-18.483c.449-3.721 1.105-7.425 1.899-11.094l1.26-5.443c.415-1.809.812-3.635 1.312-5.461.501-1.826 1.071-3.669 1.813-5.46.363-.896.794-1.774 1.26-2.653l.708-1.24c.207-.345.38-.724.552-1.103.691-1.533 1.157-3.324 1.865-5.167.708-1.809 1.519-3.514 2.399-5.202 2.089-3.962 4.575-7.597 7.044-11.214a269.76 269.76 0 0 1 7.734-10.68c1.64-2.171 3.332-4.29 5.058-6.391l2.624-3.118 2.538-3.152 10.082-12.678 5.161-6.581c1.64-2.205 3.125-4.547 4.541-6.924 2.831-4.789 5.593-9.681 8.389-14.522l7.044-12.402c2.434-4.1 5.075-8.096 7.906-11.972 3.764-5.133 7.976-10.094 12.793-14.383 4.799-4.307 10.064-8.062 15.657-11.266 4.817-2.705 9.771-4.875 14.674-7.166 2.607-1.171 5.317-1.912 7.907-2.635l.224-.069.104-.035.207-.069.432-.155.845-.31c.967-.362 1.986-.413 2.883-.534l.536-.034a.638.638 0 0 0 .31 0c.242-.052.363-.224.466-.534 0-.207.225-.896.467-.758l-.052.069Z%27/%3E%3Cpath d=%27M890.369 112.218c.773.103 1.082.603 1.271 1.585.086.568.155 1.223.206 1.877.034.103-.034.121-.103.138l-.189.069a7.54 7.54 0 0 0-.378.155c-.24.103-.481.206-.687.327-.859.413-1.134.637-1.649.792-.55.155-1.1.328-1.632.517l-.807.276-1.976.723c-2.164.827-4.312 1.757-6.493 2.705-2.165.93-4.226 1.894-6.253 3.048-4.054 2.24-7.868 4.927-11.527 7.838-3.676 2.911-7.06 6.046-10.152 9.542-4.484 5.047-8.315 10.628-11.63 16.571-1.718 3.031-3.522 5.977-5.257 8.922-.859 1.482-1.718 2.963-2.525 4.444-.79 1.465-1.632 3.084-2.525 4.565-1.77 3.032-3.659 5.925-5.514 8.819-1.856 2.928-3.831 5.805-5.841 8.63-2.01 2.825-4.089 5.598-6.15 8.354-2.079 2.739-4.106 5.529-6.322 8.251-2.628 3.255-5.342 6.339-7.867 9.508-2.491 3.135-4.896 6.563-7.387 9.818-4.93 6.58-9.603 13.16-12.901 20.584a90.99 90.99 0 0 0-2.474 5.96c-.378.982-.738 2.067-1.185 3.118l-1.254 3.031c-.807 1.998-1.409 3.824-1.598 5.891-.257 2.291-.755 4.479-1.219 6.615-.498 2.222-.979 4.375-1.254 6.528-.069.534-.12 1.068-.155 1.602l-.103 1.705a33.641 33.641 0 0 1-.464 3.531c-.412 2.291-.927 4.496-1.254 6.649a29.519 29.519 0 0 0-.292 3.204v3.376c0 4.444.017 8.923-.154 13.401-.069 2.222-.31 4.548-.395 6.666-.069 2.153.068 4.341.309 6.546.395 3.824 1.048 7.682 1.185 11.661.069 1.998-.155 3.996.464 5.409.395.775.893 1.826 1.185 2.773.309.964.55 1.946.756 2.928.653 3.359 1.014 6.459 2.474 9.353 1.305 2.98 2.834 5.84 4.672 8.509 2.44 3.6 5.532 6.667 8.967 9.336 3.23 2.532 6.786 4.703 10.393 6.787 3.591 2.101 7.318 3.876 11.149 5.546l7.73 3.256c1.271.517 2.663 1.137 3.883 1.826 1.236.672 2.422 1.343 3.624 1.826.481.189.928.344 1.409.465.55.155 1.099.293 1.632.465 1.082.327 2.147.706 3.178 1.137 2.078.827 4.088 1.791 6.064 2.721 1.992.948 3.899 1.861 5.909 2.705 2.062.895 4.003 1.963 5.892 3.048 1.821 1.051 3.625 2.119 5.463 3.049 1.804.93 3.779 1.723 5.669 2.687a92.231 92.231 0 0 1 10.977 6.391 168.02 168.02 0 0 1 18.673 14.899l2.731 2.55c.464.43.911.827 1.477 1.205.791.534 1.289 1.396 1.409 2.412.103.878.12 1.774-.137 2.549-.069.241-.189.655-.499.655-.858-.052-.841-1.223-1.219-1.705-.378-.586-.876-1.034-1.426-1.516-.533-.465-1.34-1.103-1.941-1.757l-.636-.655-1.168-1.137-1.323-1.274a148.516 148.516 0 0 0-5.462-4.927 164.072 164.072 0 0 0-11.561-9.094c-2.697-1.912-5.549-3.635-8.469-5.185a70.73 70.73 0 0 0-4.467-2.17c-1.477-.655-3.161-1.378-4.655-2.171-3.573-1.86-6.871-3.962-10.341-5.495-3.694-1.55-7.181-3.496-10.703-5.029-1.838-.81-3.71-1.482-5.617-1.964-2.233-.568-4.123-1.705-5.892-2.635a31.21 31.21 0 0 0-2.663-1.275l-2.834-1.171-5.686-2.36c-3.436-1.464-6.854-3.015-10.17-4.84-3.264-1.792-6.528-3.687-9.637-5.84-3.109-2.153-6.098-4.616-8.692-7.51-2.594-2.894-4.707-6.149-6.476-9.542a60.302 60.302 0 0 1-2.302-5.03c-.756-1.826-1.151-3.738-1.478-5.529-.326-1.792-.584-3.514-1.047-5.082a13.49 13.49 0 0 0-.842-2.239l-.275-.586c-.155-.292-.258-.585-.361-.878a7.573 7.573 0 0 1-.326-1.654c-.103-1.033-.086-1.998-.086-2.893 0-.879-.017-1.688-.069-2.567-.103-1.722-.292-3.479-.515-5.236-.447-3.531-.979-7.149-1.014-10.904 0-2.618.258-4.926.275-7.338.069-2.394.052-4.805.017-7.217l-.103-7.286c0-1.206-.051-2.429.035-3.772.086-1.292.257-2.567.464-3.79.498-2.825 1.15-5.495 1.374-8.113l.12-2.067c.052-.741.137-1.464.223-2.187.206-1.447.481-2.86.773-4.238l1.065-4.892c.155-.809.31-1.602.43-2.394l.343-2.515c.636-3.669 2.371-6.718 3.47-9.697 2.302-6.322 5.137-12.575 8.83-18.311 4.329-6.735 9.362-12.746 14.086-19.085 3.041-3.876 6.305-7.493 9.363-11.248 3.006-3.755 5.943-7.699 8.864-11.575 3.006-4.031 5.909-8.113 8.589-12.333 2.697-4.255 5.445-8.458 7.713-12.867 1.993-3.841 4.191-7.528 6.304-11.231l3.127-5.598a101.44 101.44 0 0 1 3.418-5.529c3.213-4.806 6.906-9.319 11.046-13.384 4.174-4.065 8.709-7.613 13.485-10.886 4.054-2.773 8.538-5.151 13.004-7.045 2.216-.999 4.466-1.981 6.803-2.842l1.821-.758a5.592 5.592 0 0 1 1.546-.379c.257-.035.515-.052.79-.069.189-.017.137 0 .172.034.034 0 .051.035.086.052.068.034.154.052.274.086.104 0 .121-.052.189-.103.052-.069.121-.138.189-.259.069-.155.121-.465.189-.706.052-.207.155-.603.395-.585l.035-.052Z%27/%3E%3Cpath d=%27M890.347 126.928c.399.034.659.206.867.463.191.31.329.516.416 1.151.052.274.087.583.121.91-.017.274.226.755-.173.789-.503.241-1.057.515-1.421.773-.243.172-.503.343-.763.515a3.81 3.81 0 0 1-.711.343l-1.664.567-.797.292-.382.154c-.381.155-.866.361-1.3.567-3.726 1.802-7.28 3.931-10.66 6.318-3.38 2.386-6.569 5.047-9.603 7.88-3.05 2.833-5.858 5.837-8.424 9.082-3.744 4.67-6.829 9.82-9.88 15.091-1.525 2.626-3.033 5.305-4.645 7.931l-4.732 7.846c-3.172 5.237-6.483 10.473-10.314 15.383l-11.163 14.524c-1.109 1.442-2.218 2.936-3.449 4.378l-3.623 4.155c-1.196 1.373-2.323 2.712-3.363 4.137-1.126 1.528-2.322 2.953-3.432 4.344-1.126 1.425-2.132 2.747-3.05 4.309l-2.826 4.67-5.685 9.339c-2.028 3.262-3.692 6.627-4.992 10.164a53.47 53.47 0 0 0-1.682 5.374c-.242.91-.433 1.819-.624 2.747-.19.944-.398 1.94-.641 2.884-.953 3.949-2.08 7.726-2.375 11.52-.104 1.991-.433 4.103-.52 5.923-.017.463-.017.927 0 1.356l.052.652c.018.309.07.618.052.927 0 1.237-.329 2.387-.676 3.383-.346.978-.693 1.854-.901 2.678a6.08 6.08 0 0 0-.173 1.184c0 .275.034.533.19.876.139.343.399.721.659 1.253.277.515.537 1.219.52 1.975l-.104 2.97c-.104 3.88.035 7.777.572 11.623.225 1.665.537 3.33.936 4.978.451 1.649.693 3.52.867 5.185.19 1.7.381 3.348.953 4.807a93.309 93.309 0 0 1 1.889 4.807c.988 2.764 1.924 5.511 3.12 8.104.607 1.287 1.266 2.541 2.046 3.708.763 1.116 1.716 2.386 2.496 3.623 1.092 1.665 2.132 3.313 3.276 4.858 1.127 1.528 2.444 2.919 3.813 4.292 5.2 5.116 11.666 8.876 17.889 13.1 4.038 2.85 8.389 5.133 12.827 7.433 6.95 3.589 13.866 7.314 20.557 11.228 6.466 3.846 12.844 7.657 19.206 11.692a193.896 193.896 0 0 1 11.665 8.035c1.89 1.407 3.762 2.85 5.616 4.326l1.37 1.082.554.412.815.618c.52.395 1.04.841 1.612 1.253.815.567 1.3 1.528 1.3 2.575 0 .893-.104 1.769-.433 2.507-.121.223-.243.618-.572.584-.867-.121-.711-1.322-1.04-1.837-.312-.619-.763-1.065-1.248-1.528-.52-.481-1.162-.945-1.838-1.511l-3.137-2.593a231.478 231.478 0 0 0-5.113-4.086 193.495 193.495 0 0 0-10.661-7.64c-4.974-3.296-10.157-6.335-15.34-9.339-6.049-3.519-12.151-7.005-18.304-10.387-6.362-3.468-13.156-6.507-19.275-10.747-5.425-3.623-11.25-6.936-16.432-11.383-2.566-2.214-5.01-4.721-6.934-7.571-.97-1.39-1.837-2.798-2.738-4.154-.451-.67-.884-1.34-1.352-1.975a39.908 39.908 0 0 1-1.457-2.18c-1.733-2.902-2.912-5.992-3.969-8.996l-1.595-4.447c-.277-.721-.554-1.442-.849-2.146-.329-.755-.659-1.717-.832-2.541-.399-1.717-.503-3.365-.676-4.893-.156-1.579-.451-2.798-.867-4.481a65.075 65.075 0 0 1-1.386-9.648 92.089 92.089 0 0 1-.226-6.558l.052-3.125c0-.155-.069-.343-.294-.755-.208-.395-.59-.945-.867-1.666-.295-.704-.347-1.734-.26-2.317.069-.67.208-1.305.364-1.889.329-1.15.763-2.146.988-3.039.121-.446.208-.858.225-1.27.018-.206 0-.395 0-.584l-.069-.721c-.121-1.219-.069-2.403 0-3.502l.329-3.657c.07-1.236.208-2.575.399-3.829.399-2.54 1.04-4.978 1.647-7.365.364-1.425.71-2.85 1.005-4.257a56.878 56.878 0 0 1 1.075-4.43 58.142 58.142 0 0 1 3.189-8.532c1.265-2.747 2.808-5.408 4.351-7.915l4.593-7.623 2.739-4.463a38.996 38.996 0 0 1 3.051-4.395l3.328-4.052c1.022-1.322 2.166-2.816 3.31-4.12l4.282-4.876c1.404-1.597 2.687-3.314 4.039-5.013l7.956-10.25c2.738-3.554 5.494-7.004 7.904-10.73 2.444-3.691 4.715-7.52 6.985-11.348 1.924-3.279 3.866-6.524 5.668-9.82 1.838-3.297 3.658-6.627 5.669-9.889 2.669-4.361 5.737-8.533 9.169-12.361 3.449-3.846 7.228-7.314 11.198-10.593 3.397-2.764 7.002-5.322 10.816-7.554 1.941-1.116 3.761-2.146 5.928-3.125l1.837-.824c.503-.223 1.023-.343 1.526-.429l.762-.103.364-.034h.156l.278.086c.138.034.208 0 .242-.052.052-.051.122-.137.191-.24.069-.035.121-.43.191-.636.052-.206.156-.6.398-.583l.052-.086ZM890.471 29.146c.757.139 1.066.693 1.272 1.507.103.381.155 1.144.069 1.715-.035.312-.103.59-.155.866a4.562 4.562 0 0 0-.086.416c-.034.121-.017.33-.137.33-.567.207-1.444.398-2.303.467-.292.017-.43.017-.567.017h-1.34l-2.698-.034a225.529 225.529 0 0 1-11.325-.416c-3.781-.243-7.578-.641-11.342-1.247-3.626-.572-7.337-.919-11.101-1.334-1.357-.156-2.732-.312-4.09-.503-1.375-.173-2.766-.45-3.987-.589-2.577-.329-5.447-.19-8.523-1.438-2.337-1.074-4.829-1.576-7.561-2.286-2.784-.78-5.259-1.646-7.905-2.46-5.207-1.646-10.448-3.274-15.535-5.041-5.138-1.698-10.345-3.222-15.569-4.678-6.049-1.836-12.459-2.165-18.937-2.875-6.41-.607-12.923-.901-19.47-1.611-3.489-.399-6.908-.815-10.466-1.56-3.608-.831-6.959-2.442-9.949-4.382-3.094-1.993-6.084-4.28-8.644-7.016a42.192 42.192 0 0 1-6.53-9.06c-1.787-3.24-2.853-6.635-4.159-9.944l-3.815-9.944c-.55-1.455-1.186-2.84-1.65-4.383-.464-1.524-.824-3.049-1.168-4.556-.344-1.507-.688-2.997-1.134-4.417a54.456 54.456 0 0 1-1.289-4.504c-.636-2.581-1.152-5.163-1.805-7.675-.309-1.23-.738-2.512-1.013-3.863a46.499 46.499 0 0 1-.636-3.984c-.43-3.569-.67-7.068-1.461-10.394-.876-3.344-.979-6.86-1.134-10.152-.069-1.663-.172-3.308-.378-4.92a36.841 36.841 0 0 0-.395-2.39 59.504 59.504 0 0 1-.482-2.512c-.738-4.504-.893-8.991-1.477-13.339a41.793 41.793 0 0 0-.963-5.024l-1.203-5.128a74.96 74.96 0 0 1-.979-5.197c-.258-1.784-.499-3.361-.859-5.041-.671-3.222-1.667-6.41-2.561-9.649l-1.254-4.851a68.55 68.55 0 0 0-1.53-4.712c-1.443-3.949-2.766-7.916-4.536-11.676a85.676 85.676 0 0 0-1.341-2.823l-.704-1.386-1.1-2.114-1.186-2.2c-.241-.26.172-.173.155-.19h.567l1.529-.035 1.461-.052.739-.052c.258-.017.515-.052.618-.087.843-.225 1.599-.104 2.372.191.687.26 1.426.416 2.131.641.223.069.618.138.653.45.12.884-1.255.988-1.976 1.178-.86.226-1.753.416-2.63.537l-.687.087c-.086.017-.052.052-.069.052-.017.035 0 .052-.051.035l-.086-.035s0 .087.034.139l1.066 2.286c.412.918.824 1.836 1.203 2.755 1.598 3.707 2.783 7.535 4.055 11.243.876 2.529 1.718 5.266 2.32 7.864.653 2.547 1.478 5.094 2.234 7.709.876 3.015 1.632 6.272 1.976 9.39.447 3.049 1.083 6.115 1.787 9.164.808 3.17 1.358 6.6 1.65 9.857.327 3.291.567 6.513 1.117 9.632.12.71.275 1.403.43 2.096.171.762.326 1.524.446 2.287.241 1.524.378 3.048.482 4.538.206 2.997.275 5.908.773 8.645.12.71.275 1.316.447 2.061.189.762.343 1.525.481 2.27.275 1.507.464 3.014.619 4.504.326 2.962.567 5.855 1.202 8.557.31 1.23.757 2.738 1.083 4.123l.945 4.193c.309 1.386.619 2.737.98 4.07.172.676.378 1.317.584 1.976.223.693.447 1.438.619 2.148.739 2.875 1.203 5.647 2.062 8.176.962 2.564 2.096 5.232 3.144 7.848l4.331 10.689a41.167 41.167 0 0 0 5.568 9.597c2.612 3.378 5.722 6.253 9.314 8.679 2.113 1.455 4.313 2.772 6.633 3.724 2.303 1.005 4.691 1.49 7.303 1.906 5.138.831 10.363 1.23 15.621 1.611 6.204.398 12.424 1.16 18.628 1.888 3.832.45 7.767 1.144 11.462 2.304a480.334 480.334 0 0 1 11.084 3.344c3.815 1.16 7.596 2.546 11.376 3.742l11.393 3.516c1.616.485 3.231 1.022 4.812 1.403 1.598.399 3.282.728 4.966 1.213.842.243 1.684.52 2.527.866.79.347 1.374.52 2.165.693 1.512.312 3.162.381 4.863.52 1.1.087 2.389.26 3.454.433 1.1.173 2.2.33 3.299.45l6.685.745c2.251.243 4.503.503 6.771.866 2.217.347 4.399.641 6.616.832 3.781.364 7.578.52 11.376.572h5.722c.757 0 1.238-.052 1.874-.104.257-.018.532-.018.773 0l.378.034.051.052s.258.208.43.26c.103 0 .241-.07.361-.208a.38.38 0 0 0 .086-.138l.086-.347.172-.78c.051-.224.172-.675.412-.623h.034Z%27/%3E%3Cpath d=%27M890.533 141.646c.76-.086 1.261.533 1.244 1.547 0 1.048-.812 2.097-1.227 2.698a3.958 3.958 0 0 1-1.279 1.237l-3.889 2.166c-1.573.894-3.077 1.822-4.511 2.836-1.418.997-2.731 2.148-4.079 3.368-5.307 4.83-10.008 10.347-14.173 16.224-3.025 4.28-5.808 8.731-8.435 13.268l-3.889 6.927a173.254 173.254 0 0 1-4.165 6.857c-2.87 4.52-5.894 8.886-8.919 13.251-3.042 4.365-6.205 8.679-9.593 12.856-2.005 2.526-4.286 4.88-6.188 7.218-1.953 2.406-3.768 4.95-5.582 7.528-1.798 2.595-3.751 5.173-5.497 7.716a104.829 104.829 0 0 0-4.891 7.958c-3.18 5.809-5.566 12.013-7.432 18.355-.986 3.3-1.815 6.617-2.472 9.985-.657 3.335-1.037 6.772-1.365 10.192-.294 3.334-.381 6.668.155 9.899.242 1.633.761 3.111 1.193 4.916.38 1.736.605 3.454.829 5.156.605 5.895 2.351 11.515 4.546 17.032.951 2.32 1.901 4.726 3.025 6.874 1.158 2.183 2.592 4.228 4.096 6.256l3.111 4.056c1.072 1.375 2.057 2.75 3.112 4.039a65.05 65.05 0 0 0 6.533 6.926c2.333 2.183 4.891 4.073 7.467 6.084 3.405 2.681 6.775 5.345 10.249 7.855 2.731 1.993 5.462 3.763 8.452 5.379 1.487.842 3.008 1.77 4.373 2.939 1.296 1.169 2.472 2.2 3.768 3.231 2.489 1.994 5.185 3.764 7.882 5.568 2.713 1.788 5.375 3.644 8.054 5.5 3.353 2.32 6.672 4.726 9.956 7.15l4.926 3.643 1.763 1.306.812.568c.501.36 1.003.687 1.642 1.014.864.446 1.487 1.323 1.642 2.389.138.91.104 1.821-.19 2.578-.086.24-.207.635-.519.635-.864-.068-.812-1.289-1.158-1.718-.363-.567-.847-.911-1.4-1.324l-.985-.653a13.47 13.47 0 0 1-1.141-.825l-.726-.584-2.143-1.667-4.528-3.506c-3.025-2.32-6.05-4.641-9.126-6.875a178.23 178.23 0 0 0-6.378-4.434c-2.143-1.426-4.373-2.801-6.551-4.297-2.523-1.718-5.081-3.695-7.259-5.757-2.109-1.839-4.857-3.145-7.502-4.847-5.444-3.471-10.439-7.441-15.434-11.291-2.23-1.736-4.598-3.42-6.81-5.345a67.913 67.913 0 0 1-6.274-6.136c-1.988-2.183-3.682-4.571-5.41-6.789-1.746-2.268-3.526-4.571-5.117-7.063-1.572-2.372-2.782-5.122-3.802-7.648-1.054-2.578-2.057-5.191-2.921-7.872a62.783 62.783 0 0 1-2.074-8.215c-.484-2.801-.726-5.534-1.296-8.078-.191-.893-.415-1.615-.709-2.56a27.1 27.1 0 0 1-.726-2.888c-.398-1.942-.553-3.901-.605-5.843-.069-3.901.363-7.631.795-11.395.57-4.348 1.538-8.627 2.731-12.804 2.765-10.037 7.138-19.713 12.946-28.358 1.711-2.578 3.595-4.949 5.341-7.39 1.797-2.44 3.595-4.898 5.513-7.304a82.125 82.125 0 0 1 3.716-4.314 107.238 107.238 0 0 0 3.665-4.228c2.385-2.87 4.632-5.843 6.827-8.868 4.477-6.29 8.901-12.684 12.859-19.266 1.694-2.819 3.215-5.655 4.771-8.576 1.555-2.905 3.18-5.792 4.926-8.628 4.615-7.528 9.973-14.695 16.23-21.071a100.272 100.272 0 0 1 4.113-3.97c1.383-1.272 2.939-2.561 4.546-3.643 1.59-1.1 3.249-2.097 4.874-3.042l1.608-1.032c.916-.601 1.866-.79 2.506-1.1.639-.309 1.071-.55 1.313-1.409.052-.172.087-.515.346-.55l-.086-.017ZM726.801 711.088c-.12 1.572-2.561 1.258-3.764 1.782-.464.209-1.014.349-1.512.349-.945 0-2.2.052-3.145-.052l-.756-.053h-.189v-.209l.034-.402.052-.786c.051-.542.103-1.258.223-1.904.052-.332.155-.664.224-.996l.172-.612.326-1.083c.223-.698.43-1.362.55-1.974.137-.646.206-1.153.172-1.799 0-.646-.069-1.415-.069-2.271.034-.856.086-1.922.791-3.022.361-.577.601-1.013.79-1.572.378-1.101.464-2.376.447-3.774 0-1.415-.103-2.952.069-4.629.223-1.572.378-2.865.515-4.35.361-4.158.567-8.63 1.667-12.91l1.306-6.271c.447-2.131 1.306-4.42 2.131-6.324.842-1.992 1.753-4.035 2.991-5.975.618-.96 1.34-1.939 2.131-2.76l2.165-2.341c2.921-3.109 6.135-6.254 10.122-8.455.584-.332 1.237-.629 1.804-.908l1.65-.804 3.334-1.694c2.234-1.153 4.537-2.324 6.96-3.319a35.235 35.235 0 0 1 3.747-1.276l3.609-1.013c2.405-.699 4.897-1.432 7.544-1.834 1.392-.21 2.715-.315 3.901-.542a9.156 9.156 0 0 0 1.598-.471l.842-.402c.344-.175.688-.315 1.049-.454 2.869-1.066 5.757-1.083 8.283-1.31 1.323-.123 2.578-.297 3.746-.647.292-.07.567-.192.86-.297.257-.087.756-.297 1.134-.402.807-.227 1.598-.332 2.354-.401 1.512-.105 2.939-.018 4.279 0 1.306.035 2.698-.035 4.09-.035 5.465-.035 11.016.314 16.429 1.537 2.355.524 4.692 1.205 6.943 2.079 2.252.873 4.417 1.904 6.565 2.882.911.419 1.822.821 2.75 1.223.962.402 1.907.874 2.818 1.38 1.822 1.013 3.54 2.201 5.173 3.477 2.165 1.711 4.313 3.563 6.135 5.729 3.472 4.053 5.998 8.787 8.146 13.539 1.443 3.179 2.801 6.464 3.626 9.958.636 2.725.997 5.572.911 8.385-.069 2.69-.086 5.398-.258 8.105-.292 5.224-.859 10.534-2.114 15.618-.67 3.179-1.22 6.394-1.718 9.608l-.774 5.485-.068.472c-.035.14 0 .384-.207.315h-.945l-.945.017-1.169.035c-.618.017-1.254.052-1.838.21-.842.227-1.599.104-2.372-.193-.687-.262-1.426-.419-2.131-.646-.223-.07-.619-.14-.653-.454-.12-.891 1.255-.996 1.976-1.188.86-.227 1.753-.419 2.63-.542a18.449 18.449 0 0 1 2.784-.174H857.014s.086.017.103-.035l.739-4.158c.567-3.04 1.186-6.079 1.89-9.101.516-2.097.963-4.001 1.238-6.027.292-2.009.446-4.053.584-6.115.155-2.393.223-4.821.326-7.267l.138-3.686c.052-1.223.069-2.341-.017-3.529-.361-4.873-2.148-9.555-4.279-14.045-1.908-4.105-4.09-8.018-6.84-11.442a36.387 36.387 0 0 0-4.52-4.717c-1.684-1.467-3.42-2.847-5.207-4.035-1.77-1.188-3.489-2.044-5.551-2.918l-5.963-2.742c-3.884-1.765-7.905-2.883-12.116-3.442-2.835-.367-5.722-.524-8.644-.524-2.939-.052-5.757.192-8.885.14-1.701-.035-3.299-.07-4.64.28a8.604 8.604 0 0 0-1.014.349c-.447.175-.911.349-1.357.472-.911.262-1.839.436-2.733.541-2.165.28-4.193.297-6.083.559-.946.14-1.839.332-2.681.629-.43.14-.825.332-1.22.524a10.89 10.89 0 0 1-1.685.664c-2.268.629-4.296.629-6.169 1.013-1.908.367-3.832.926-5.792 1.502-1.151.332-2.32.664-3.505.961a38.53 38.53 0 0 0-3.334.996c-2.2.786-4.348 1.782-6.496 2.848l-4.005 2.008c-1.357.682-2.766 1.241-3.987 1.922-2.509 1.38-4.76 3.249-6.874 5.311a96.253 96.253 0 0 0-3.196 3.301l-1.564 1.695a13.061 13.061 0 0 0-1.323 1.729c-1.633 2.446-2.75 5.363-3.85 8.193-.859 2.359-1.271 4.909-1.718 7.547-.206 1.293-.533 2.708-.774 3.913a45.569 45.569 0 0 0-.55 3.809c-.378 3.424-.498 6.97-1.013 10.586-.31 1.677-.224 3.197-.19 5.066.018 1.799-.051 3.861-.91 5.817-.189.402-.378.804-.619 1.188l-.241.419s-.068.14-.086.245c-.12.384-.137 1.013-.085 1.712.034.716.12 1.485.068 2.428-.051.909-.24 1.747-.429 2.533-1.203 4.175-.602 2.725-.567 2.865.017-.017 0-.035 0 0 0 0-.086.035.275.088l1.495.279c1.014.175 2.01.437 3.007.681.206.053.602.158.584.402l.052-.087Z%27/%3E%3Cpath d=%27M891.135 399.32c-.188.742-.959.915-1.816.725-.874-.19-1.731-.725-2.399-.95-.531-.173-1.063-.466-1.457-.846l-1.285-1.279-.617-.587-.308-.277a9.788 9.788 0 0 0-.772-.656l-7.351-5.77c-4.901-3.87-9.854-7.688-14.704-11.661a427.77 427.77 0 0 1-10.385-8.81c-3.393-3.023-6.82-5.943-10.11-9.225-3.256-3.265-6.272-6.72-9.168-10.245-2.914-3.524-5.724-7.169-8.295-10.987-3.067-4.612-5.792-9.449-7.934-14.58a68.128 68.128 0 0 1-2.742-7.895 163.64 163.64 0 0 1-1.953-7.998c-.634-2.851-1.2-5.753-1.577-8.673a63.638 63.638 0 0 1-.411-4.439 26.903 26.903 0 0 1 .103-4.561c.154-1.538.394-3.04.599-4.509.223-1.486.343-2.833.497-4.405a55.36 55.36 0 0 1 1.851-9.018c1.714-5.77 4.301-11.16 7.232-16.308 2.553-4.491 5.398-8.793 8.397-12.939 2.553-3.559 5.244-6.962 7.694-10.521l4.953-7.238c1.559-2.263 3.256-4.543 4.832-6.737 1.577-2.229 3.068-4.544 4.559-6.876l5.98-9.311c3.154-4.837 6.204-9.761 9.494-14.425 1.611-2.263 3.153-4.526 4.73-6.841a154.534 154.534 0 0 1 4.935-6.738c2.16-2.764 4.456-5.424 6.924-7.929a94.41 94.41 0 0 1 3.787-3.645l2.193-1.987c.463-.414.943-.829 1.32-1.33.514-.708 1.217-1.071 2.022-1.33l.206-.069 1.696.777c-.171.639-.257 1.313-.411 1.952-.051.225-.086.622-.394.691-.857.19-1.063-1.174-1.32-1.9l-.103-.328-.051-.156-.034-.086c-1.8-.829 2.45 1.123 2.005.916l-.034.051-.429.519c-.291.345-.583.673-.891.984a22.611 22.611 0 0 1-2.005 1.866l-.703.57-.822.691-.908.778a125.158 125.158 0 0 0-3.531 3.247 87.207 87.207 0 0 0-6.494 7.066c-2.811 3.369-5.193 7.031-7.626 10.745-2.896 4.319-5.878 8.569-8.74 12.922a652.41 652.41 0 0 0-8.706 13.682c-1.285 2.073-2.587 4.164-3.958 6.219-1.388 2.091-2.845 4.025-4.199 6.029-2.742 4.008-5.432 8.12-8.362 12.093-5.707 7.515-11.345 14.96-15.441 23.27-2.776 5.614-4.935 11.54-5.998 17.655a65.83 65.83 0 0 0-.685 5.338c-.189 1.918-.514 3.749-.737 5.528-.291 2.177-.394 4.129-.24 6.306.137 2.142.377 4.284.737 6.409.703 4.267 1.782 8.517 2.896 12.749 1.32 4.906 3.102 9.709 5.467 14.252 2.93 5.632 6.478 10.936 10.436 15.928 4.096 5.148 8.414 10.175 13.195 14.615 4.13 3.732 8.483 7.308 12.75 10.901 5.69 4.82 11.516 9.484 17.428 14.045l7.575 5.804 1.902 1.434.96.726c.377.276.719.553 1.045.846l1.491 1.279c.822.691 1.251 1.52 1.833 2.194.583.673 1.149 1.33 1.903 1.813.154.104.479.277.411.519l.068-.069ZM703.875-167.913c-.121 1.541-2.573 1.233-3.781 1.746-.329.103-.242.189-.311.24-.035.069-.052.103-.087.103-.051.017-.224-.034-.172.051l.052.12.103.274c1.036 3.014 1.675 6.096 2.331 9.076 1.261 5.891 3.195 11.644 4.939 17.586 1.312 4.281 2.193 8.768 3.298 12.929.57 2.089 1.243 4.127 2.09 6.028 1.018 2.089 1.64 4.418 2.348 6.37.173.496.363.976.57 1.421.19.445.431.873.708 1.421a70.574 70.574 0 0 1 1.433 3.117c.881 2.072 1.744 4.007 2.728 5.993 1.934 3.956 3.989 7.809 6.389 11.44 5.63 8.698 13.366 16.01 21.292 22.945 4.282 3.58 8.996 6.645 13.728 9.71 4.887 3.219 9.946 6.25 14.729 9.692 4.697 3.356 9.429 6.713 14.126 10.052l6.233 4.28a121.995 121.995 0 0 1 6.061 4.607c3.333 2.723 6.562 5.583 9.722 8.46l6.389 5.804c3.989 3.63 8.03 7.312 12.174 10.754a94.4 94.4 0 0 0 8.686 6.353c4.714 3.066 9.774 5.583 14.833 7.912a68.085 68.085 0 0 0 15.351 4.966c3.385.667 6.718 1.404 10.068 1.918 1.675.257 3.35.445 5.025.53l1.26.052h.605l.967-.017h.448l.501-.035c.121 0 .207 0 .259-.05.138-.086.173-.138.518-.24.138-.07.242-.206.328-.429.087-.274.156-.702.277-1.044.069-.223.138-.634.466-.668.449-.017.656.274.829.668.155.428.259.787.362 1.472.277 1.405-.017 2.997-.604 4.162-.673-.206-1.381-.309-2.366-.754-.224-.12-.518-.24-.431-.188h-1.019c-.328 0-.656-.035-.967-.052l-1.14-.068-1.243-.103a58.739 58.739 0 0 1-4.922-.72c-3.229-.599-6.389-1.37-9.514-2.071-4.334-.96-8.686-2.14-12.847-3.733-4.87-1.867-9.515-4.23-13.988-6.833a103.103 103.103 0 0 1-13.348-9.144c-3.781-3.048-7.408-6.216-11.034-9.384l-10.689-9.675c-3.419-3.082-6.89-6.08-10.533-8.836-3.609-2.706-7.581-5.24-11.38-7.86-5.215-3.493-10.378-7.072-15.61-10.514l-9.152-5.857c-7.304-4.674-14.574-9.777-20.86-15.84a114.59 114.59 0 0 1-10.55-11.25c-4.093-4.914-7.426-10.411-10.309-16.028-1.485-2.911-2.919-5.874-4.196-8.87-.657-1.49-1.296-2.911-2.073-4.35-.794-1.558-1.295-3.151-1.83-4.675-.449-1.318-.898-2.483-1.52-3.716a38.623 38.623 0 0 1-1.588-3.955c-.915-2.672-1.606-5.377-2.262-8.066-1.658-7.072-4.093-13.973-6.01-21.182-.828-3.082-1.433-6.182-2.244-9.11a45.939 45.939 0 0 0-.657-2.175l-.362-1.062-.708-1.866-.795-1.781-.397-.856-.207-.445s-.103-.172-.069-.189h.207c1.002-.051 2.09-.017 3.126.052l1.502.137.708.068.38.069c1.019.171 2.02.428 3.022.668.207.051.604.154.587.393l.017.052Z%27/%3E%3Cpath d=%27M889.791 3.496c1.477.275 1.254 2.46 1.803 3.786.206.516.327 1.153.224 1.807-.035.19-.069.38-.121.586l-.085.292v.017c-1.632 1.877-.464.517-.825.947l-.034.017-.086.035-.155.069c-.412.172-.996.361-1.683.275-1.476-.207-2.129-1.274-2.249-1.222H885.979c-.395 0-.807 0-1.185-.035a14.773 14.773 0 0 1-2.319-.344c-1.511-.31-2.936-.791-4.293-1.273l-2.009-.723-.498-.172-.241-.087h-.068s-.275-.051-.653-.034c-.361 0-.859.034-1.46-.103a3.971 3.971 0 0 1-1.648-.792 8.829 8.829 0 0 0-1.546-.998c-2.198-1.205-5.066-1.962-7.745-3.219-7.814-3.46-14.494-9.07-20.299-14.905a353.86 353.86 0 0 1-17.208-17.97 187.766 187.766 0 0 1-4.86-5.662c-1.563-1.928-3.074-3.684-4.774-5.44-3.349-3.476-7.024-6.712-10.665-10.068-3.812-3.598-7.831-6.833-11.935-10.035-4.242-3.339-8.604-6.471-12.983-9.69-4.259-3.219-8.518-6.455-12.777-9.673-3.692-2.84-7.385-5.68-10.957-8.71-3.039-2.564-6.01-5.215-8.844-8.037-1.906-1.894-3.761-3.856-5.495-5.904-3.28-3.89-6.2-8.09-8.776-12.479-1.717-2.926-3.246-5.989-4.705-8.984-2.284-4.734-4.689-9.518-6.234-14.579-.773-2.427-1.357-4.974-1.992-7.332-.67-2.393-1.477-4.802-2.078-7.315a28.304 28.304 0 0 1-.464-2.41c-.103-.878-.189-1.48-.395-2.22-.378-1.429-1.048-2.909-1.391-4.63-.155-.861-.206-1.79-.069-2.702.052-.517.309-1.136.515-1.687.121-.276.224-.585.361-.826l.893-.052 2.198-.034.979-.035c.618-.017 1.254-.051 1.838-.206.841-.224 1.597-.104 2.37.189.686.258 1.425.413 2.129.637.223.069.618.138.653.447.12.878-1.254.981-1.975 1.171a22.78 22.78 0 0 1-2.628.533c-.91.121-1.855.19-2.782.172l-.927-.034h-.825c0 .017-.034.034-.051.069 0 .017 0 0-.034.103-.018.121-.052.258-.069.396a5.968 5.968 0 0 0 .103 1.721c.24 1.257.773 2.616 1.168 4.234.206.758.309 1.808.36 2.393.086.688.189 1.377.327 2.065.377 1.893.978 3.787 1.562 5.732.619 1.945 1.134 3.993 1.666 5.852a92.67 92.67 0 0 0 4.912 13.081c1.013 2.22 2.112 4.423 3.211 6.626 1.099 2.186 2.216 4.321 3.469 6.386 4.5 7.504 10.253 14.165 16.624 20.172 6.148 5.8 12.811 11.136 19.698 16.145l14.185 10.07a229.114 229.114 0 0 1 8.089 6.023 182.097 182.097 0 0 1 9.342 7.694l8.93 8.072c3.486 3.202 6.784 6.696 9.772 10.448 3.623 4.544 7.47 8.916 11.437 13.167a278.099 278.099 0 0 0 12.726 12.754c3.692 3.511 7.642 6.61 11.901 9.209 2.833 1.738 5.804 3.235 8.895 4.406 1.563.602 3.246 1.17 4.895 2.048.412.207.824.465 1.219.706l.584.413.447.327c.223.172.515.12 1.786.12.257.017.549.052.875.155l.584.19 1.031.361 2.026.706c1.34.447 2.662.809 3.95.98.653.087 1.288.138 1.923.121.155 0 .31 0 .481-.017h.412c.172-.017.344.017.516.017.669.069 1.305.482 1.769.895.206.172.257.207.343.258.017 0 .069.035.069.035l-.121.206c-.24.465-.034.31-.154-.155l-.034-.189.034-.017h.051v-.034c.842-.982-1.15 1.325-.944 1.084V8.83c.069-.12.137-.275.189-.447.12-.327.24-.758.326-1.205.155-.93.309-1.997.601-3.047.052-.223.189-.654.43-.602l.068-.034ZM755.781 711.08c-.12 1.571-2.535 1.257-3.726 1.78-.46.209-1.004.349-1.498.349-1.14 0-1.65.052-3.947 0-.459-.14-1.021-.122-1.378-.366-.136-.524-.289-1.012-.391-1.536-.221-1.029 0-2.32.425-3.28.783-1.553 1.412-2.251 2.008-3.385 1.208-2.076 2.246-4.309 3.266-6.577 1.889-4.205 3.726-8.636 6.312-12.719 2.552-4.065 5.581-7.747 8.677-11.271l1.413-1.553c.51-.541 1.071-1.099 1.667-1.57a21.89 21.89 0 0 1 3.709-2.477c1.276-.698 2.586-1.274 3.862-1.815l1.906-.802c.714-.297 1.003-.402 1.582-.786.561-.366 1.259-.889 2.144-1.273a6.035 6.035 0 0 1 1.378-.436l1.14-.192a36.187 36.187 0 0 1 4.508-.367c3.097-.052 6.091.21 9.017.245 1.43-.018 3.148.087 4.645.453a21.59 21.59 0 0 1 4.407 1.605c2.433 1.204 4.645 2.757 6.652 4.502a38.797 38.797 0 0 1 4.73 4.937c.953 1.204 1.871 2.443 2.688 3.751a51.244 51.244 0 0 1 2.127 3.786c.68 1.344 1.191 2.757 1.616 4.17.562 1.884 1.021 3.751 1.48 5.566.17.715.375 1.413.579 2.111.221.75.408 1.518.561 2.285.289 1.536.409 3.089.357 4.606-.051 1.483-.17 2.932-.289 4.362-.051.733-.136 1.431-.136 2.076 0 .315.017.629.085.908.017.139.068.279.102.418.051.14.17.419.307.646.544.768 1.871 1.797 3.147 2.861-.102.07-.255.14-.34.21 0 .069-.017.122-.034.192h-1.6l-3.3.069-4.169.105c-.612.018-1.242.052-1.82.209-.834.227-1.582.105-2.348-.191-.68-.262-1.412-.419-2.11-.646-.221-.07-.612-.14-.646-.454-.119-.889 1.242-.994 1.956-1.186a22.953 22.953 0 0 1 2.604-.541 18.073 18.073 0 0 1 2.756-.174l1.718.052 1.021.035h.34s.187.07.307.087c.051 0 .153.035.187.035a.365.365 0 0 1-.068-.087 1.38 1.38 0 0 1-.119-.227c.017.105-.307-.995-.324-1.64-.051-.715 0-1.378.034-1.954.085-1.134.136-2.233.17-3.35.086-2.582.051-5.182-.578-7.624-.766-2.687-1.395-5.496-2.212-8.009-.374-1.134-.799-2.233-1.327-3.262-.527-1.012-1.191-2.111-1.837-3.123-1.293-2.059-2.723-4.013-4.288-5.793-1.514-1.727-3.164-3.315-4.968-4.675-1.803-1.396-3.692-2.513-5.75-3.211a14.897 14.897 0 0 0-4.271-.785h-1.089l-1.242.035h-2.467c-1.871-.017-3.709-.14-5.512-.122a48.57 48.57 0 0 0-3.216.105c-.527.034-1.055.087-1.582.157-.51.069-1.106.139-1.412.226-.732.175-1.446.751-2.552 1.449a8.94 8.94 0 0 1-.902.488l-.766.332-1.531.645c-2.382 1.012-4.764 1.919-6.771 3.42a15.99 15.99 0 0 0-1.736 1.518l-1.667 1.762a80.908 80.908 0 0 0-3.216 3.664c-2.126 2.582-4.1 5.304-5.716 8.2-1.378 2.46-2.433 5.112-3.556 7.764-1.514 3.524-3.097 7.101-5.036 10.59-.408.733-.868 1.483-1.293 2.181-.204.314-.34.593-.443.855-.068.174-.034.157-.034.244.017.122.086.21.205.122a.349.349 0 0 0 .085-.07c-.051 0 .187-.017.323-.034l.442-.035c1.055-.105 2.025.157 3.012.331 1.004.175 1.99.436 2.977.681.204.052.596.157.579.401v.017ZM700.571 710.975c-.12 1.634-2.554 1.308-3.754 1.852-.463.218-1.011.363-1.509.363l-3.222.037H689.72c-.154 0-.343.054-.326-.182l-.205-.98-.618-2.923c-.291-1.38-.6-2.742-.925-4.085-.635-2.488-1.355-4.884-2.435-7.063-.531-1.089-1.131-2.124-1.851-3.068-.703-.963-1.457-1.834-2.314-2.506-2.023-1.652-4.44-2.778-7.166-3.141-1.44-.2-2.88.036-4.303.291a24.403 24.403 0 0 0-4.423 1.252c-1.44.545-2.914 1.144-4.285 1.961-.6.363-1.166.763-1.732 1.198l-1.783 1.271c-1.011.708-1.8 1.38-2.605 2.306-.583.636-1.166 1.253-1.8 1.816-1.183 1.053-2.418 1.997-3.566 3.032-.754.69-1.44 1.434-2.126 2.179a18.156 18.156 0 0 0-1.457 1.833c-.446.599-.908 1.307-1.508 1.943-1.166 1.198-2.366 2.36-3.84 3.268-1.526.944-3.412 1.289-5.16 1.071-.532-.054-.875-.109-1.338-.127-.565-.036-1.165-.036-1.731.127-.789.236-1.526.145-2.314-.145-.703-.254-1.44-.363-2.16-.599-.223-.073-.617-.127-.669-.454-.12-.926 1.217-1.053 1.937-1.289.857-.272 1.732-.527 2.657-.654.96-.145 1.972-.199 3-.036.326.036.823.145 1.029.181 1.234.273 2.451.237 3.583-.308.891-.436 1.663-1.198 2.434-2.052.446-.49.909-.998 1.337-1.561a74.97 74.97 0 0 1 1.492-1.816c1.045-1.234 2.108-2.469 3.223-3.558l3.017-2.869 1.422-1.416c.498-.49.84-.908 1.475-1.525 1.131-1.071 2.331-1.798 3.377-2.524.977-.69 2.177-1.58 3.326-2.288 1.577-.998 3.24-1.906 5.022-2.578 1.029-.399 2.092-.653 3.155-.889 2.571-.527 5.263-.581 7.834.072 1.526.382 2.914 1.18 4.234 2.016a16.34 16.34 0 0 1 4.286 3.885 27.456 27.456 0 0 1 3.171 5.029c.755 1.507 1.492 3.05 2.006 4.666.686 2.143 1.097 4.339 1.611 6.464l.258 1.016c.034.128.068.146.102.2.018.127.223-.018.275-.072a47.627 47.627 0 0 1 1.663-.146c1.062-.109 2.04.164 3.034.345 1.011.182 2.006.454 3 .708.206.055.6.164.583.418l-.052.054ZM508.633 683.762c-.172 1.542-2.583 1.199-3.772 1.713a4.167 4.167 0 0 1-1.515.36l-3.893.069c-2.101.017-4.219.017-6.355-.052-4.254-.154-8.611-.702-12.796-1.97-5.89-1.765-11.884-4.37-16.602-8.757a26.993 26.993 0 0 1-1.723-1.714 12.127 12.127 0 0 1-1.567-2.125 10.801 10.801 0 0 1-1.447-5.14c-.069-1.783.396-3.582.93-5.056a24.606 24.606 0 0 1 2.067-4.421c1.981-3.376 4.753-6.152 7.716-8.448 2.962-2.176 5.769-4.387 9.024-6.375a40.39 40.39 0 0 1 5.339-2.742c1.688-.754 3.359-1.628 5.064-2.501 3.547-1.783 7.164-3.736 11.349-4.696 4.082-.891 8.112-.6 12.022-.531 1.687.051 3.41-.034 5.201.12 1.756.137 3.513.428 5.218.908a24.23 24.23 0 0 1 8.129 3.976 25.054 25.054 0 0 1 4.392 4.232c2.394 2.948 4.288 6.461 5.046 10.282.499 2.536.62 5.141.189 7.712-.62 4.01-2.411 7.831-4.891 10.864-2.394 2.913-4.96 5.689-8.043 7.968-1.894 1.44-3.978 2.657-6.131 3.685-1.085.514-2.17.977-3.289 1.388l-2.325.822c-.586.206-1.189.412-1.705.72-.741.446-1.499.566-2.343.497-.74-.051-1.481.017-2.221 0-.224 0-.62.051-.758-.24-.379-.805.913-1.302 1.567-1.679.775-.463 1.567-.908 2.377-1.268.844-.377 1.757-.72 2.6-.96l.862-.24 1.446-.463c.999-.325 1.964-.719 2.928-1.131 1.912-.839 3.755-1.816 5.46-2.998 2.359-1.611 4.271-3.599 6.131-5.861 2.153-2.553 4.116-5.278 5.184-8.363 1.136-3.187 1.223-6.7.516-9.939-.654-2.947-2.084-5.672-3.978-8.105-1.894-2.451-4.116-4.558-6.734-6.084a22.357 22.357 0 0 0-8.215-2.861 29.304 29.304 0 0 0-4.443-.275h-4.737c-4.236.035-8.232.343-11.935 1.92-2.187.874-4.34 1.919-6.527 3.05-1.309.668-2.618 1.354-3.978 2.005-1.327.651-2.842 1.234-4.031 1.799-2.514 1.183-4.873 2.794-7.216 4.49a236.586 236.586 0 0 1-4.202 2.999c-1.378.977-2.704 2.022-3.892 3.204-2.945 2.879-5.219 6.512-6.183 10.436-.448 1.971-.241 4.01.723 5.741.465.874 1.085 1.645 1.843 2.365a31.25 31.25 0 0 0 2.394 2.125c2.842 2.245 6.166 3.804 9.576 5.106 2.256.857 4.65 1.646 6.975 2.211a41.83 41.83 0 0 0 7.199 1.062c2.084.138 4.185.155 6.286.103l3.169-.12 1.825-.154c1.068-.103 2.05.137 3.066.309 1.016.171 2.032.428 3.031.702.207.052.603.154.586.411l.017-.085ZM642.012 278.286c-.155 1.536-2.594 1.195-3.787 1.706-.484.205-1.02.342-1.539.342h-2.698l-1.591-.034c-3.13-.12-6.364-.461-9.477-1.383-6.157-1.876-11.916-5.409-15.842-10.647-2.87-3.737-4.6-8.344-5.015-13.002-.173-1.16-.086-2.338-.121-3.481.035-1.041 0-2.116-.017-3.208-.052-2.184-.156-4.436.069-6.791.121-1.16.311-2.354.623-3.515.138-.58.345-1.16.536-1.723.155-.461.311-.939.449-1.433.554-1.98.848-4.181 1.557-6.45.346-1.144.795-2.287 1.418-3.379a64.561 64.561 0 0 0 1.522-2.849l2.871-5.921c1.176-2.406 2.49-4.812 4.098-7.081.848-1.161 1.626-2.133 2.439-3.191a121.274 121.274 0 0 1 2.49-3.157 38.628 38.628 0 0 1 2.802-3.054c1.055-1.007 2.006-1.792 2.974-2.696 1.92-1.775 3.857-3.635 6.001-5.341 1.124-.921 2.387-1.774 3.442-2.559 1.107-.819 2.179-1.69 3.286-2.56 2.196-1.74 4.548-3.549 7.073-4.965 5.136-2.986 10.792-5.426 16.844-6.296 2.958-.444 5.967-.461 8.924-.12l1.055.137c.156.034.432 0 .917-.034.553-.052 1.141.068 1.591.375l.968.58c1.245.802 2.456 1.638 3.58 2.611 3.96 3.259 7.073 7.815 8.025 12.934.449 2.149.449 4.402.466 6.466l.07 6.331c0 2.849-.052 5.716-.329 8.583-.277 2.696-.726 5.409-1.401 8.053l-1.919 7.798c-.865 3.464-1.678 6.962-2.716 10.409-1.504 5.46-3.908 10.784-6.831 15.527-1.435 2.304-2.732 4.607-4.271 6.894a46.016 46.016 0 0 1-5.189 6.381 36.818 36.818 0 0 1-8.318 6.279 41.222 41.222 0 0 1-4.739 2.219l-2.784 1.023c-.64.205-1.297.376-1.868.649-.813.375-1.556.375-2.352.256-.691-.12-1.401-.069-2.092-.034-.225 0-.571.119-.761-.137-.554-.717.795-1.467 1.539-1.809.847-.46 1.747-.819 2.594-1.092.83-.256 1.643-.512 2.473-.75l.848-.256.449-.137a4.76 4.76 0 0 0 .536-.188l1.073-.392a37.822 37.822 0 0 0 4.167-1.877c2.698-1.399 5.171-3.208 7.385-5.29 3.026-2.883 5.327-6.313 7.419-10.067 2.525-4.351 5.119-8.617 6.883-13.207 1.764-4.794 2.94-9.913 4.151-14.981l1.591-6.911c.553-2.303.968-4.504 1.228-6.808.536-4.573.518-9.231.484-13.94-.052-2.236.034-4.676-.138-6.672a18.673 18.673 0 0 0-1.626-6.023c-1.73-3.805-4.894-6.928-8.578-9.214-.553-.341-1.539-.905-1.366-.785.069-.017-.311.051-.934.068-.156 0-.329 0-.536-.017l-.277-.034-.553-.051c-1.47-.171-2.975-.154-4.445-.12a35.132 35.132 0 0 0-8.768 1.587c-3.303 1.024-6.485 2.44-9.564 4.146-1.867 1.024-3.614 2.082-5.292 3.328-1.694 1.228-3.355 2.576-5.084 3.89a76.85 76.85 0 0 1-2.629 1.911 36.452 36.452 0 0 0-2.438 1.928c-1.591 1.348-3.113 2.816-4.704 4.283-.899.853-1.937 1.741-2.836 2.526a36.714 36.714 0 0 0-2.56 2.593c-1.626 1.826-3.165 3.839-4.738 5.819-3.771 4.743-5.88 10.664-9.011 16.158-1.556 2.594-1.919 5.734-2.698 8.924-.19.785-.467 1.638-.726 2.389-.242.717-.45 1.434-.588 2.184-.311 1.485-.38 3.02-.398 4.59 0 2.628.242 5.426.26 8.139.052 2.594.484 5.153 1.331 7.576 2.266 6.467 7.61 11.706 14.06 14.385 2.75 1.211 5.621 1.859 8.613 2.132a49.58 49.58 0 0 0 4.531.188c.709-.017 1.228-.068 1.85-.119 1.055-.086 2.024.17 3.044.341s2.024.427 3.027.7c.207.051.605.153.588.409l-.07.034Z%27/%3E%3Cpath d=%27M415.789 708.941c-.139 1.557-2.582 1.245-3.795 1.764a4.265 4.265 0 0 1-1.525.363l-5.32.052c-6.082.035-12.182 0-18.316-.363-1.525-.086-3.085-.225-4.575-.346-1.369-.121-2.911-.052-4.592-.225-.849-.104-1.75-.225-2.686-.64-.814-.363-1.317-.606-2.044-.865-1.335-.502-2.738-.9-4.194-1.298-2.876-.743-6.03-1.557-8.907-2.854-2.894-1.263-5.579-2.768-8.231-4.222-.918-.501-2.027-1.089-2.997-1.782a24.409 24.409 0 0 1-2.756-2.214c-1.715-1.592-3.205-3.322-4.609-5.086-.693-.9-1.352-1.748-2.027-2.717a23.461 23.461 0 0 1-1.82-3.045 23.261 23.261 0 0 1-2.131-6.781c-.728-4.706 0-9.377 1.109-13.737 1.143-4.602 3.708-8.72 6.74-12.128 3.05-3.443 6.551-6.297 10.138-8.979a50.721 50.721 0 0 1 11.956-6.522c2.131-.796 4.332-1.506 6.55-1.955l6.533-1.263c4.349-.813 8.699-1.851 13.187-2.215 2.668-.259 5.302-.432 7.919-.657 2.565-.208 5.25-.502 7.902-.658 5.319-.328 10.553-.415 15.699-.899 2.565-.242 5.112-.588 7.607-1.108.624-.121 1.248-.276 1.854-.415.538-.138 1.473-.363 2.149-.415 1.49-.156 2.513-.173 3.518-.554l7.555-2.37 3.777-1.176a60.679 60.679 0 0 0 3.622-1.28c2.547-.987 5.095-2.146 7.694-3.218 2.495-1.038 4.956-2.336 7.555-3.53 5.285-2.249 10.31-4.325 15.492-6.453l4.002-1.643a37.865 37.865 0 0 1 4.246-1.592c2.876-.882 5.77-1.453 8.595-2.059a97.771 97.771 0 0 0 4.159-.951c.641-.173 1.386-.381 2.183-.554a17.601 17.601 0 0 1 2.305-.346c3.067-.294 6.012-.069 8.837-.035.693 0 1.386 0 2.062-.017.728 0 1.456-.052 2.201-.017 1.473 0 2.928.121 4.384.242 2.911.311 5.77.9 8.56 1.73 5.597 1.661 10.778 4.273 15.682 7.266a65.753 65.753 0 0 1 6.186 4.308c1.976 1.54 3.917 3.235 5.58 5.138 1.681 1.886 3.189 3.91 4.627 5.952.71 1.038 1.421 2.024 2.114 3.097a20.523 20.523 0 0 1 1.785 3.46c.831 2.041 1.351 4.135 1.819 6.228l.659 3.114.329 1.54c.104.554.208 1.107.277 1.661.503 4.481-.624 8.771-1.507 12.837-.347 1.228-.243 2.699-.867 4.325-.346.848-.71 1.384-1.04 2.007l-.987 1.869c-1.3 2.508-2.548 5.069-3.934 7.577-1.317 2.37-2.755 4.706-4.436 6.886a75.766 75.766 0 0 1-5.424 6.107c-1.906 1.938-3.933 3.789-6.134 5.432-2.201 1.679-4.557 3.045-6.862 4.429-6.203 3.651-12.788 6.852-19.858 8.72-2.755.744-5.545 1.263-8.283 1.799-1.369.277-2.738.554-4.072.865-1.3.294-2.721.727-4.176.935-5.788.865-11.385.397-16.93.294-10.761-.364-21.418-.606-32.179-.675-6.723-.121-13.464 0-20.205.208l-10.12.311-3.361.104-.988.052c-.624.034-1.265.069-1.854.242-.832.242-1.612.138-2.409-.156-.623-.259-1.247-.329-1.923-.294-.208 0-.555.121-.763-.121-.277-.346-.121-.744.278-1.073.398-.346 1.005-.571 1.438-.709a17.807 17.807 0 0 1 2.772-.623 18.836 18.836 0 0 1 2.79-.225h.936l4.453-.069 9.496-.156c6.343-.086 12.702-.121 19.079.07l25.906.415 15.093.346c2.495.034 4.956 0 7.364-.312 1.231-.155 2.34-.38 3.57-.692a96.522 96.522 0 0 1 3.743-.83c2.599-.519 5.164-.986 7.676-1.574a61.646 61.646 0 0 0 7.382-2.232c4.817-1.8 9.427-4.17 13.88-6.817 2.01-1.211 4.038-2.422 5.857-3.771 1.837-1.35 3.57-2.872 5.233-4.481a73.821 73.821 0 0 0 4.731-5.104 43.194 43.194 0 0 0 4.055-5.536c2.426-3.91 4.366-8.201 6.637-12.439l.831-1.523a4.85 4.85 0 0 0 .399-1.228c.086-.485.138-1.038.242-1.678.035-.312.104-.692.174-1.004l.19-.882c.52-2.318 1.057-4.567 1.3-6.799.26-2.146.243-4.204-.208-6.246-.485-2.266-.884-4.498-1.438-6.626-.555-2.111-1.248-4.152-2.305-5.917-.502-.848-1.196-1.834-1.819-2.751a113.572 113.572 0 0 0-1.941-2.75c-1.317-1.8-2.703-3.512-4.228-5.087-1.508-1.54-3.223-2.941-4.991-4.29-3.552-2.665-7.416-4.948-11.454-6.886-5.424-2.63-11.246-4.377-17.19-4.862-1.49-.138-2.98-.155-4.47-.138-1.439.052-3.189.104-4.714.069-3.136-.052-6.134-.19-8.906.364-.399.069-.797.173-1.179.276l-1.317.364c-.883.225-1.767.432-2.651.64l-5.233 1.124a57.534 57.534 0 0 0-5.025 1.333c-1.646.501-3.119 1.211-4.818 1.885l-11.904 4.879c-1.976.831-4.003 1.609-5.874 2.422-1.907.848-3.813 1.799-5.788 2.699-2.01.917-3.968 1.678-5.926 2.543a108.944 108.944 0 0 1-6.013 2.422c-4.142 1.402-8.145 2.595-12.217 3.893l-.901.277c-.294.104-.71.225-1.057.294a15.92 15.92 0 0 1-2.045.277c-1.299.069-2.166.277-3.535.605-2.512.554-5.059.935-7.589 1.194-5.078.519-10.12.588-15.128.813-3.119.121-6.134.381-9.271.658-3.119.242-6.221.432-9.288.726-1.542.156-3.067.312-4.574.571l-4.558.865-9.114 1.748c-6.204 1.245-12.026 3.944-17.19 7.543-5.095 3.719-10.068 7.871-13.43 13.096-1.386 2.232-2.495 4.602-3.084 7.145-.641 2.596-1.092 5.208-1.178 7.82-.208 5.242 1.334 10.277 4.661 14.343 2.166 2.854 4.453 5.57 7.174 7.612.693.502 1.386.969 2.131 1.367l2.392 1.315c1.594.865 3.171 1.73 4.765 2.508 1.594.779 3.223 1.488 4.869 2.042 1.646.571 3.379 1.003 5.147 1.47 1.767.467 3.587.969 5.371 1.678.451.173.884.364 1.335.571.398.173.624.26 1.005.346.71.173 1.542.225 2.426.26l2.339.069c.849.035 1.629.121 2.374.173 1.525.121 3.067.208 4.592.277 3.067.138 6.152.19 9.236.19 3.084 0 6.169-.034 9.271-.104h.26l.121-.017h.225l.451-.052.918-.086c1.074-.104 2.062.155 3.067.328 1.023.173 2.028.433 3.033.675.208.052.606.156.589.398l-.017.087ZM498.416 181.407c.191 1.578-2.446 1.612-3.729 2.007-.503.188-1.111.291-1.648.24a22.922 22.922 0 0 1-1.891-.24l-.937-.172-.468-.086a53.65 53.65 0 0 1-1.665-.394c-4.441-1.08-9.176-2.984-12.767-6.225-3.677-3.138-6.245-7.442-7.858-11.763-1.648-4.219-3.105-8.626-3.833-13.238-.451-2.864-.59-5.831-.33-8.746.26-2.932.867-5.693 1.266-8.385.104-.669.191-1.338.261-1.989.069-.652.138-1.441.242-2.161.209-1.458.503-2.864.833-4.253.659-2.778 1.44-5.436 1.977-8.077.139-.651.243-1.32.347-1.972l.122-.977c.052-.394.104-.789.191-1.183.294-1.561.85-2.984 1.387-4.304.538-1.321 1.076-2.555 1.44-3.756.312-1.063.59-2.709 1.058-4.064.867-2.812 2.047-5.401 3.053-7.94a42.733 42.733 0 0 0 1.318-3.79 27.18 27.18 0 0 0 .469-1.885l.086-.463.035-.446c.052-.669.278-1.338.763-1.818l.295-.308.174-.206c.121-.138.225-.275.329-.429.208-.291.399-.635.573-.977.347-.686.641-1.475.936-2.315.295-.84.59-1.732.954-2.641.174-.446.417-.96.625-1.372.191-.377.364-.772.538-1.166.728-1.698 1.37-3.533 2.168-5.419.399-.943.85-1.886 1.405-2.812.26-.446.607-.96.85-1.338l.763-1.166c2.012-3.138 3.712-6.756 6.019-10.014l3.348-4.87c1.145-1.612 2.151-3.258 3.487-4.853 2.584-3.155 5.62-5.848 8.777-8.283 1.7-1.286 3.295-2.52 5.256-3.72a22.682 22.682 0 0 1 6.21-2.521c4.371-1.047 8.985-.824 13.235.548 2.185.686 4.336 1.766 6.192 2.967a46.858 46.858 0 0 1 5.36 3.978c3.365 2.881 6.314 6.19 8.985 9.552 5.326 6.482 10.824 13.015 15.23 20.303 3.799 6.173 8.448 11.952 11.986 18.52 2.897 5.573 5.759 11.129 8.014 17.062 1.527 4.236 1.44 8.471 3.157 12.089.486 1.132.538 2.418.33 3.533-.191 1.114-.573 2.109-.919 3.035-.347.926-.694 1.818-.868 2.658a35.369 35.369 0 0 1-.763 2.967c-1.197 3.926-3.157 7.562-5.464 10.889a73.861 73.861 0 0 1-4.978 6.344c-1.752 2.075-3.799 3.944-5.915 5.608-3.348 2.623-6.887 4.87-10.339 7.185-3.486 2.315-7.112 4.527-10.962 6.224-3.799 1.612-7.477 2.967-11.154 4.528-3.677 1.526-7.372 3.052-11.136 4.492-4.718 1.835-9.575 3.31-14.397 4.733a221.75 221.75 0 0 1-7.303 2.041l-3.521.909c-.642.188-1.475.274-2.065.445-.884.24-1.526.12-2.185-.051-.59-.154-1.162-.051-1.752.206-.191.068-.434.326-.746.188-.399-.188-.434-.617-.174-1.097.226-.497.798-.943 1.215-1.2.988-.669 2.116-.875 3.018-1.012l1.266-.189c.174-.034.33-.068.469-.103l.659-.154.902-.189 3.226-.754a329.203 329.203 0 0 0 6.8-1.784c4.544-1.269 9.02-2.52 13.408-4.149 5.985-2.161 11.882-4.819 17.849-7.254 6.939-2.538 13.131-6.499 19.411-10.649 3.244-2.143 6.383-4.355 9.089-6.979 2.654-2.589 5.083-5.676 7.233-8.763 1.909-2.829 3.522-5.813 4.615-8.985.26-.789.503-1.595.711-2.401.208-.806.329-1.578.607-2.607.555-1.852 1.318-3.395 1.492-4.784.104-.686.034-1.252-.174-1.8l-.087-.206-.138-.326c-.087-.223-.191-.446-.278-.669a21.513 21.513 0 0 1-.468-1.354c-.555-1.818-.85-3.601-1.162-5.299-.313-1.698-.66-3.293-1.249-4.784a126.16 126.16 0 0 0-1.978-4.768c-1.353-3.052-2.827-6.053-4.354-9.054a79.089 79.089 0 0 0-4.961-8.642c-1.821-2.795-3.764-5.556-5.672-8.386a183.275 183.275 0 0 1-2.81-4.304 95.78 95.78 0 0 0-2.758-4.132c-2.619-3.67-5.516-7.186-8.482-10.667l-4.458-5.264a74.3 74.3 0 0 0-4.51-5.024c-1.821-1.818-3.712-3.567-5.759-5.093-2.03-1.526-4.215-2.95-6.453-3.91-5.446-2.315-11.951-2.418-17.259.172-2.585 1.251-5.083 3.292-7.528 5.195-2.412 1.955-4.667 4.064-6.644 6.38-1.18 1.337-2.186 2.88-3.244 4.39l-3.174 4.526c-2.255 2.95-3.903 6.174-5.88 9.432a53.738 53.738 0 0 1-1.908 2.95c-.608.874-1.128 1.851-1.596 2.863-.937 2.023-1.666 4.218-2.654 6.362-.538 1.114-.989 1.989-1.353 3.086-.382 1.064-.746 2.178-1.232 3.293-.485 1.097-1.127 2.246-1.995 3.172-.104.103-.208.206-.225.36l-.035.223a2.1 2.1 0 0 1-.069.515c-.122.583-.226 1.166-.399 1.749-1.232 4.767-3.608 8.985-4.84 13.41a19.201 19.201 0 0 0-.399 1.663 24.706 24.706 0 0 1-.451 1.818c-.364 1.2-.85 2.332-1.283 3.412-.451 1.097-.868 2.161-1.162 3.224-.313 1.063-.365 2.109-.556 3.378-.624 4.116-1.873 7.991-2.567 11.849-.399 1.938-.468 3.807-.728 5.916-.278 2.041-.642 4.03-.92 5.985-.832 5.144-.329 10.323 1.058 15.382.677 2.52 1.544 5.024 2.516 7.493.954 2.487 2.012 4.768 3.538 6.825 2.498 3.533 6.054 6.225 10.096 7.803 1.994.771 4.232 1.371 6.366 1.8.746.12 1.197.155 1.804.189 1.006.051 1.856.394 2.792.583.937.188 1.874.394 2.863.497.208.017.607.052.624.309l-.052.068Z%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27a%27%3E%3Cpath fill=%27%23fff%27 transform=%27rotate%28-180 406 343.298%29%27 d=%27M0 0h811.216v685.811H0z%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-size:cover;bottom:0;content:"";height:calc(100% - 30px);position:absolute;right:0;width:calc(100% - 30px);z-index:1}.o-at-archive__img:not(:last-child){margin-bottom:2.375rem}.o-at-archive__tile-title:not(:last-child){margin-bottom:1.5rem}.o-at-archive__row:not(:last-child){margin-bottom:2.5rem}.o-at-archive__row:nth-child(2n-1) .o-at-archive__img{padding-left:2.125rem;padding-right:0}.o-at-archive__row:nth-child(2n-1) .o-at-archive__img:before{left:0;right:auto;transform:scaleX(-1)}.o-at-archive__row:nth-child(2n-1) .o-at-archive__img:after{background:linear-gradient(270deg,rgba(191,145,96,0),#bf9160)}@media(min-width:1023px){.o-at-archive__row{align-items:center;display:flex;gap:2.5rem}.o-at-archive__row:nth-child(2n-1){flex-direction:row-reverse}.o-at-archive__row:nth-child(2n-1) .o-at-archive__img{padding-left:4.1875rem}.o-at-archive__row:nth-child(2n-1) .o-at-archive__content{margin-left:auto}.o-at-archive__row:not(:last-child){margin-bottom:6.25rem}.o-at-archive__title:not(:last-child){margin-bottom:2.5rem}.o-at-archive__main:not(:first-child){padding-top:6.25rem}.o-at-archive__img{align-self:flex-start;height:38.125rem;margin:0;padding-bottom:4rem;padding-right:4.1875rem;width:calc(54% - 20px)}.o-at-archive__img:after{top:2.625rem;width:calc(100% - 84px)}.o-at-archive__img:before{height:calc(100% - 57px);width:calc(100% - 64px)}.o-at-archive__wrapper{flex-grow:0;flex-shrink:0;width:calc(46% - 20px)}.o-at-archive__content{max-width:35.625rem}.o-at-archive__tile-title:not(:last-child){margin-bottom:2.125rem}}@media(min-width:1460px){.o-at-archive__row{gap:11.25rem}.o-at-archive__img{width:calc(54% - 90px)}.o-at-archive__wrapper{width:calc(46% - 90px)}}.o-gallery{padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-gallery{padding-bottom:6.25rem;padding-top:6.25rem}}.o-gallery__row{grid-gap:.625rem;display:grid;gap:.625rem;grid-template-columns:repeat(2,1fr)}.o-gallery__col{height:11.25rem}.o-gallery__col img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-gallery__button{background-color:transparent;color:#1b1b1b;cursor:pointer;padding:0 0 .4375rem;position:relative!important;width:-moz-fit-content!important;width:fit-content!important}.o-gallery__button:last-child{margin-right:0!important}.o-gallery__button:after{background-color:#f2e8de;bottom:0;content:"";height:.125rem;left:0;position:absolute;right:0;transition:background-color .2s ease-in-out}.o-gallery__button.--active:after,.o-gallery__button:hover:after{background-color:#bf9160}.o-gallery__swiper{margin:0 auto;max-width:100%;width:-moz-fit-content;width:fit-content}.o-gallery__swiper:not(:last-child){margin-bottom:1.875rem}@media(max-width:1022.98px){.o-gallery__col:nth-child(11n-8){grid-column:span 2;height:23.375rem}}@media(min-width:1023px){.o-gallery__row{gap:1.875rem;grid-template-columns:repeat(3,1fr)}.o-gallery__col{height:24.0625rem}.o-gallery__swiper:not(:last-child){margin-bottom:6.25rem}}.o-opinions-section{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-opinions-section{padding-bottom:6.25rem;padding-top:6.25rem}}.o-opinions-section+.o-cta,.o-opinions-section+.o-gs:not(.o-gs--white),.o-opinions-section+.o-icons,.o-opinions-section+.o-opinions-section,.o-opinions-section+.o-text,.o-opinions-section+.o-widget{padding-top:0!important}.o-opinions-section__swiper:not(:last-child),.o-opinions-section__title:not(:last-child){margin-bottom:1.875rem}.o-opinions-section__trust .ti-widget.ti-book .ti-controls .ti-next{right:-1.75rem}.o-opinions-section__trust .ti-widget.ti-book .ti-controls .ti-prev{left:-1.75rem}.o-opinions-section__trust .ti-widget.ti-book .ti-reviews-container-wrapper{margin:0!important}@media(min-width:1023px){.o-opinions-section__title{text-align:center}.o-opinions-section__swiper:not(:last-child),.o-opinions-section__title:not(:last-child){margin-bottom:2.5rem}}.o-text{padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-text{padding-bottom:6.25rem;padding-top:6.25rem}}.o-text+.o-cta,.o-text+.o-gs:not(.o-gs--white),.o-text+.o-icons,.o-text+.o-opinions-section,.o-text+.o-text{padding-top:0!important}.o-text .l-container{max-width:54.375rem}.o-text__title:not(:last-child){margin-bottom:1.875rem}@media(min-width:1023px){.o-text__title:not(:last-child){margin-bottom:2.5rem}}.o-content{padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-content{padding-bottom:6.25rem;padding-top:6.25rem}}.o-reservation,.o-reservation iframe{height:auto;width:100%}.o-reservation iframe{border:none}.o-404{background-color:#49091e;background-image:url(../img/404-bg.jpeg);background-position:50%;background-size:cover;color:#fff;position:relative}.o-404:before{background:rgba(0,0,0,.5);bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:2}.o-404 .l-container{display:flex;flex-direction:column;gap:1.25rem;justify-content:center;min-height:100vh;padding-bottom:12.5rem;padding-top:12.5rem;position:relative;z-index:3}.o-404__button{margin:0 auto}.o-404__text,.o-404__title{margin:0 auto;max-width:36.875rem;text-align:center}.o-404__text{font-weight:700}@media(min-width:1023px){.o-404 .l-container{padding-bottom:17.5rem;padding-top:17.5rem}}.o-calendar,.o-calendar iframe{width:100%}.o-inv-archive{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-inv-archive{padding-bottom:6.25rem;padding-top:6.25rem}}.o-inv-archive__row{display:flex;flex-wrap:wrap;gap:1.875rem}.o-inv-archive__col{width:100%}@media(min-width:768px){.o-inv-archive__col{width:calc(50% - 15px)}}@media(min-width:1023px){.o-inv-archive__col{width:calc(33.33333% - 20px)}}@media(min-width:1460px){.o-inv-archive__col{width:calc(25% - 22.5px)}}.o-blog-archive{background-color:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-blog-archive{padding-bottom:6.25rem;padding-top:6.25rem}}.o-blog-archive__row{display:flex;flex-wrap:wrap;gap:1.875rem}.o-blog-archive__col{width:100%}@media(min-width:768px){.o-blog-archive__col{width:calc(50% - 15px)}}@media(min-width:1023px){.o-blog-archive__col{width:calc(33.33333% - 20px)}}@media(min-width:1460px){.o-blog-archive__col{width:calc(25% - 22.5px)}}.o-trips{background:#fdf7f1;padding-bottom:2.5rem;padding-top:2.5rem}@media(min-width:1023px){.o-trips{padding-bottom:6.25rem;padding-top:6.25rem}}.o-trips__text:not(:last-child),.o-trips__title:not(:last-child){margin-bottom:1.4375rem}.o-trips .l-container{max-width:62.5rem}@media(min-width:1023px){.o-trips__text:not(:last-child),.o-trips__title:not(:last-child){margin-bottom:2.1875rem}}.datepicker{border-radius:2.5rem;padding:.625rem;top:3.4375rem}.datepicker__clear-button,.datepicker__close-button,.datepicker__submit-button{background-color:#49091e}.datepicker__clear-button:hover,.datepicker__close-button:hover,.datepicker__submit-button:hover{background-color:#7d0f34}.datepicker__month-day--hovering,.datepicker__month-day--selected{background-color:rgba(73,9,30,.2)}.datepicker__month-day--first-day-selected,.datepicker__month-day--last-day-selected{background-color:#49091e}body.rtl .datepicker__buttons{left:0;right:auto}@font-face{font-family:swiper-icons;font-style:normal;font-weight:400;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")}:root{--swiper-theme-color:#007aff}:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:ease;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{-ms-overflow-style:none;overflow:auto;scrollbar-width:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-left:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-top:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-lazy-preloader{border:4px solid #007aff;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid transparent;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{align-items:center;color:#007aff;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:44px;height:var(--swiper-navigation-size);justify-content:center;margin-top:-22px;margin-top:calc(0px - var(--swiper-navigation-size)/2);position:absolute;top:50%;top:var(--swiper-navigation-top-offset,50%);width:27px;width:calc(var(--swiper-navigation-size)/44*27);z-index:10}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center;width:100%}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:44px;font-size:var(--swiper-navigation-size);font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{left:auto;right:10px;right:var(--swiper-navigation-sides-offset,10px)}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:8px;bottom:var(--swiper-pagination-bottom,8px);left:0;top:auto;top:var(--swiper-pagination-top,auto);width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{background:#000;background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:50%;border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:8px;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:.2;opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:8px;width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))}button.swiper-pagination-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{background:#007aff;background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:1;opacity:var(--swiper-pagination-bullet-opacity,1)}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:auto;left:var(--swiper-pagination-left,auto);right:8px;right:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px;margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:inherit;color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{height:4px;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{height:100%;left:0;top:0;width:4px;width:var(--swiper-pagination-progressbar-size,4px)}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:rgba(0,0,0,.1);background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1));border-radius:10px;border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{bottom:4px;bottom:var(--swiper-scrollbar-bottom,4px);height:4px;height:var(--swiper-scrollbar-size,4px);left:1%;left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:auto;top:var(--swiper-scrollbar-top,auto);width:98%;width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{height:98%;height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:auto;left:var(--swiper-scrollbar-left,auto);position:absolute;right:4px;right:var(--swiper-scrollbar-right,4px);top:1%;top:var(--swiper-scrollbar-sides-offset,1%);width:4px;width:var(--swiper-scrollbar-size,4px);z-index:50}.swiper-scrollbar-drag{background:rgba(0,0,0,.5);background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:10px;border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0}.swiper-cube .swiper-cube-shadow:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:0}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:0}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}
