/*
Theme Name: seekr-child
Theme URI: https://wordpress.org/themes/twentyfourteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Template: seekr
Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.
Version: 3.9
Requires at least: 3.6
Tested up to: 6.5
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, news, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready, block-patterns
Text Domain: twentyfourteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 * 5.0 - Navigation
 * 6.0 - Content
 *   6.1 - Post Thumbnail
 *   6.2 - Entry Header
 *   6.3 - Entry Meta
 *   6.4 - Entry Content
 *   6.5 - Galleries
 *   6.6 - Post Formats
 *   6.7 - Post/Image/Paging Navigation
 *   6.8 - Attachments
 *   6.9 - Archives
 *   6.10 - Contributor Page
 *   6.11 - 404 Page
 *   6.12 - Full-width
 *   6.13 - Singular
 *   6.14 - Comments
 * 7.0 - Sidebar
 *   7.1 - Widgets
 *   7.2 - Content Sidebar Widgets
 * 8.0 - Footer
 * 9.0 - Featured Content
 * 10.0 - Multisite
 * 11.0 - Media Queries
 * 12.0 - Print
 * -----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Resetting and rebuilding styles have been helped along thanks to the fine
 * work of Eric Meyer, Nicolas Gallagher, Jonathan Neal, and Blueprint.
 *
 * -----------------------------------------------------------------------------
 */


@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* GLOBAL */
body,
html {
  overflow-x: clip;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

.scrollToTopBtn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #181e4b;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 34px;
  cursor: pointer;
}

.showBtn {
  opacity: 1;
  transform: translateY(-40px);
  pointer-events: all;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

span {
  display: inline-block;
}

.top-heading h2 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  text-align: left;
}

.top-heading em {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  font-style: normal;
  display: block;
}

.top-heading h2 span {
  position: relative;
}

.btnn {
  min-width: 150px;
  min-height: 50px;
  background: #fd3355;
  border: 1px solid #fd3355;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.btnn:hover,
.btn-white {
  background: transparent;
  color: #fd3355;
}

.btn-white:hover {
  background: #fd3355;
  color: #ffffff;
}

.btnn svg path {
  transition: all 0.3s ease-in-out;
}

.btnn:hover svg path {
  stroke: #fd3355;
}

.times,
.bars {
  display: none;
}

.overlay {
  display: none;
}

/* SLICK SLIDER CSS START */

.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* SLICK SLIDER CSS END */


/* HEADER */
.nav-btns .nav-btn-purple {
  background: #9034ba;
  border-color: #9034ba;
}

.nav-btns .nav-btn-purple:hover {
  color: #9034ba;
  background: transparent;
}

.nav-btns .nav-btn-purple:hover svg path {
  fill: #9034ba;
  stroke: none;
}

header {
  position: relative;
  z-index: 99999;
}

header nav .container-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav {
  padding: 26px 0;
}

header nav .menu ul {
  display: flex;
  align-items: center;
  gap: 0 40px;
}

header nav .menu ul li {
  position: relative;
}

header nav .menu ul li a {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  color: #1e1e1e;
  text-transform: capitalize;
  padding: 8px 15px;
}

header nav .menu ul li.active a,
header nav .menu ul li.current-menu-item a {
  background: #fff1f4;
  color: #fd3355;
  border-radius: 20px;
}

header nav .menu ul li a:hover {
  background: #fff1f4;
  color: #fd3355;
  border-radius: 20px;
  padding: 8px 15px;
}

.nav-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 19px;
}

.after-login-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.after-login-profile .img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 1px 6px 0px #101b4f34;
}

.profile-name {
  display: flex;
  color: #767676;
  align-items: center;
  font-size: 16px;
}

.profile-name span.logout-edit-arrow {
  cursor: pointer;
  display: block;
}

.profile-name span.logout-edit-arrow svg {
  height: 7px;
}

.profile-name span.logout-edit-arrow svg path {
  stroke-opacity: 1 !important;
}

.logout-edit-dropdown {
  min-width: 152px;
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 9px 20.1px 0px #00000026;
  border-radius: 10px;
  top: 120%;
  display: none;
}

.logout-edit-dropdown ul {
  padding: 0 10px;
  margin: 0;
  list-style-type: none;
}

.logout-edit-dropdown ul li {
  padding: 7px 0;
}

.logout-edit-dropdown ul li+li {
  border-top: 0.5px solid #d0d0d0;
}

.logout-edit-dropdown ul li a {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #14183e;
}

.logout-edit-dropdown ul li a:hover {
  color: #fe1c49;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 10;
}

.ftr-top {
  background: #252525;
  border-radius: 20px;
  padding: 60px 32px 50px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 0 23px;
  position: relative;
}

.ftr-prop {
  position: absolute;
  bottom: 1em;
  left: -2.4em;
  z-index: -1;
}

.ftr-top .ftr-top-el h3 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  text-align: left;
  color: #ffffff;
  margin-top: 15px;
}

.ftr-top .ftr-top-el p {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
}

.ftr-top .ftr-top-el h4 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: left;

  color: #ffffff;
  text-transform: capitalize;
}

.ftr-top .ftr-top-el ul li a {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;

  color: #ffffff;
  padding: 10px 0;
  text-transform: capitalize;
}

.ftr-top .ftr-top-el ul li a:hover {
  color: #fd3355;
}

.ftr-btm {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr-btm p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  color: #252525;
}

.ftr-btm-right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}

.ftr-btm-right ul li a {
  min-width: 34px;
  height: 34px;
  background: #000;
  border: 1px solid #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.ftr-btm-right ul li a svg {
  max-width: 18px;
}

.ftr-btm-right ul li a svg path {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

.ftr-btm-right ul li a:hover {
  background: transparent;
}

.ftr-btm-right ul li a:hover svg path {
  fill: #000;
}

/* HERO SECTION */
.hero {
  padding: 128px 0 350px;
  background: url(images/hero-bg2.png) no-repeat;
  background-size: cover !important;
  /* background-position: t 50%; */
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 84%, 0% 100%) !important;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 86px;
  text-align: center;

  color: #ffffff;
}

.hero-content p {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-align: center;

  color: #ffffff;
}

.hero-content form {
  background: rgba(255, 255, 255, 0.800000011920929);
  border-radius: 10px;
  backdrop-filter: blur(2.5px);
  min-width: 601px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  margin-top: 12px;
  position: relative;
  z-index: 99;
}

.hero-content form .search-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 6px;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  border-right: 1px solid #474747cc;
}

.hero-content form .search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: left;

  color: #39425d;
}

.hero-content form .search-box input::placeholder {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: left;

  color: #39425d;
}

.hero-content form .hero-dropdown {
  padding-left: 30px;
  width: 50%;
  height: 100%;
}

.hero-content form .hero-dropdown select {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  appearance: none;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: left;

  color: #39425d;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8 8L15 1' stroke='%233E2E4D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 97%;
}

.inner-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 138px 0;
  color: #ffffff;
}

.inner-hero .hero-content {
  align-items: flex-start;
}

.inner-hero .hero-content h1 {
  text-align: left;
}

/* BEST DESTINATION SECTION */
.best-destination-sec {
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
}

.best-destination-sec-left .top-heading em {
  color: #fd3385;
  margin-bottom: 8px;
  display: inline-block;
}

.best-destination-sec-left .top-heading p {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-align: left;

  color: #767676;
  max-width: 555px;
}

.best-destination-sec-left .top-heading h2 {
  max-width: 550px;
  color: #181e4b;
}

.best-destination-sec-left .top-heading h2 b {
  position: relative;
}

.wp-singular.page-template-default .inner-page-content .top-heading h2 span {
  position: relative;
  display: inline-block;
}

.best-destination-sec-left .top-heading h2 b::after,
.wp-singular.page-template-default .inner-page-content .top-heading h2 span:after {
  content: "";
  position: absolute;
  bottom: -0.84em;
  right: -1.5em;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='385' height='12' viewBox='0 0 385 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='385' height='12'%3E%3Crect width='385' height='12' fill='%23F52B53'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_484)'%3E%3Cpath d='M57.8283 -2.53796L58.7692 -2.69614L56.9382 -2.92292L57.8159 -3.08892C58.6961 -3.0874 59.8364 -2.83866 60.457 -2.97083C60.5328 -3.09879 59.5744 -3.13986 59.3298 -3.24181C59.1134 -3.34631 58.9368 -3.45013 58.8021 -3.55202C59.2814 -3.55092 59.8084 -3.52628 60.3517 -3.47953C61.0825 -3.40319 61.7994 -3.36607 62.4231 -3.37229C63.6986 -3.35167 64.9308 -3.37224 66.3175 -3.36771L65.8561 -3.67567L67.6433 -3.60362C67.8327 -3.58016 68.0585 -3.61789 68.2446 -3.58887C69.7934 -3.34329 70.4488 -3.47711 71.1923 -3.58807C71.3448 -3.61678 71.5284 -3.63822 71.7384 -3.65182C73.8046 -3.59299 75.6677 -3.24878 77.5284 -3.07207C77.8786 -3.02695 78.2145 -2.96904 78.5123 -2.90243C79.1595 -2.77295 79.8794 -2.66724 80.6062 -2.59497C81.3329 -2.52269 82.0433 -2.48616 82.6724 -2.48871C84.0636 -2.49157 85.6353 -2.40593 87.2355 -2.24008C87.7114 -2.18545 88.1875 -2.14941 88.6336 -2.13426C89.0798 -2.11911 89.4861 -2.12517 89.8266 -2.15207L90.9085 -1.97627C91.3774 -2.04761 91.972 -2.08675 92.6563 -2.09131C93.3406 -2.09587 94.1001 -2.06577 94.889 -2.00283C95.7296 -1.93455 96.5834 -1.88852 97.4556 -1.81634C99.2572 -1.67832 101.011 -1.59392 102.661 -1.56575C105.119 -1.48225 107.521 -1.4177 110.001 -1.31361C111.552 -1.26336 113.064 -1.23573 114.527 -1.23085C116.279 -1.21119 118.174 -1.11605 120.121 -0.950018C120.029 -0.794239 119.175 -0.840261 118.602 -0.845533C116.754 -0.871425 114.862 -0.938519 112.96 -0.988921C112.103 -1.0086 111.27 -1.01605 110.466 -1.01122C109.12 -1.01768 107.702 -1.05919 106.235 -1.13504C103.918 -1.2185 101.675 -1.25861 99.5289 -1.25498C99.3606 -1.24881 99.2065 -1.23788 99.069 -1.22236C99.0403 -1.20893 99.0346 -1.19198 99.0525 -1.17315C99.0704 -1.15433 99.1113 -1.13424 99.1712 -1.11484C99.2311 -1.09543 99.3081 -1.07735 99.3947 -1.06231C99.4814 -1.04728 99.5748 -1.0358 99.6661 -1.02897C100.518 -0.9234 101.434 -0.810013 102.238 -0.794063C102.269 -0.792869 102.302 -0.790148 102.335 -0.78609C102.367 -0.782033 102.399 -0.776742 102.427 -0.770603C104.227 -0.54773 105.706 -0.585445 107.108 -0.549184C109.435 -0.451184 111.679 -0.405408 113.805 -0.412547C114.126 -0.412062 114.473 -0.399322 114.833 -0.374789C117.059 -0.275339 119.141 -0.264217 120.981 -0.341923C121.738 -0.361611 122.442 -0.405805 123.256 -0.406544C123.757 -0.409586 124.193 -0.437788 124.538 -0.489463C124.883 -0.541139 125.13 -0.615218 125.264 -0.707246C125.607 -0.658794 125.956 -0.615613 126.305 -0.57822C126.514 -0.556839 126.715 -0.551159 126.866 -0.562348C127.017 -0.573536 127.108 -0.600756 127.121 -0.638501C127.183 -0.744209 126.706 -0.797294 126.293 -0.842561C126.542 -0.865231 126.823 -0.878568 127.13 -0.88225C128.854 -0.906404 130.703 -0.877896 132.637 -0.797352C134.138 -0.700943 135.337 -0.779413 136.917 -0.643457C137.107 -0.619996 137.262 -0.65443 137.437 -0.662698C137.891 -0.706236 138.458 -0.716022 139.087 -0.6912C139.716 -0.666377 140.388 -0.607695 141.046 -0.520245C141.865 -0.759166 143.635 -0.486219 144.942 -0.461688C145.345 -0.340185 144.883 -0.361545 144.863 -0.328164C144.843 -0.294782 144.863 -0.328171 144.705 -0.347722C143.4 -0.175652 141.612 -0.138132 139.593 -0.240435C139.219 -0.240009 138.863 -0.232171 138.528 -0.216993C138.021 -0.19551 137.449 -0.197655 136.838 -0.223334C136.169 -0.242193 135.556 -0.233236 135.026 -0.196896C134.721 -0.197488 134.463 -0.179283 134.276 -0.143957C134.09 -0.108631 133.98 -0.0573284 133.957 0.00518023C134.161 0.0533705 134.386 0.0974645 134.625 0.135713C135.873 0.28673 137.118 0.34924 138.114 0.310944C139.847 0.244959 141.91 0.309349 143.753 0.286823C144.999 0.277698 146.325 0.303691 147.706 0.36432C147.706 0.36432 147.67 0.425519 147.666 0.431082C147.83 0.45758 148.001 0.478839 148.172 0.493644C148.172 0.493644 148.172 0.493645 148.188 0.465827C148.112 0.439112 148.01 0.413982 147.892 0.393344L147.482 0.342512C147.761 0.329283 148.021 0.289898 148.312 0.313962C148.924 0.358668 149.51 0.377542 150.033 0.369462C150.556 0.361381 151.006 0.326508 151.356 0.266939C151.976 0.19059 152.747 0.155872 153.619 0.165022C154.287 0.156686 154.931 0.138772 155.548 0.111367C155.548 0.111367 155.588 0.0446111 155.88 0.00912881C155.603 -0.0346331 155.315 -0.0703692 155.028 -0.0964382C153.779 -0.161568 152.526 -0.221133 151.299 -0.26566C150.847 -0.270471 150.422 -0.26301 150.032 -0.243424C148.952 -0.220505 147.738 -0.253035 146.462 -0.339115C146.462 -0.339115 146.21 -0.370393 146.084 -0.386033C146.442 -0.532787 147.676 -0.385869 148.176 -0.485254C148.479 -0.483446 149.014 -0.470948 148.996 -0.497113C148.954 -0.532026 148.949 -0.564463 148.981 -0.592091C149.013 -0.61972 149.082 -0.641861 149.181 -0.656921C149.281 -0.671984 149.409 -0.679596 149.558 -0.67921C149.706 -0.678822 149.87 -0.670442 150.038 -0.654682C151.443 -0.569418 152.767 -0.545706 153.928 -0.585001C154.368 -0.584244 154.861 -0.558972 155.298 -0.55265C155.565 -0.545034 155.81 -0.549269 156.017 -0.565121C157.072 -0.681863 158.492 -0.690389 160.064 -0.589418C160.824 -0.553115 161.533 -0.548262 162.157 -0.575103C162.6 -0.579906 162.788 -0.496907 163.104 -0.457806L164.444 -0.375382L162.723 -0.272102C163.091 -0.0354174 163.383 0.0426247 163.984 0.0573704C164.862 0.0796373 165.716 0.0896969 166.542 0.087487C167.153 0.0855414 167.658 0.034571 168.485 0.125104C168.631 0.139871 168.772 0.144649 168.884 0.138642C169.853 0.0582657 171.02 0.0398196 172.305 0.0845627C172.97 -0.0659458 174.103 0.0803877 175.152 0.198292C175.49 0.0849194 174.877 0.0328776 174.511 -0.0362977C175.388 -0.0292163 176.272 -0.0332602 177.177 -0.0167062C177.449 -0.0227315 177.76 -0.0124229 178.086 0.0134106C178.412 0.0392431 178.743 0.0798925 179.054 0.132182C179.205 0.165969 179.388 0.191396 179.564 0.203188C179.74 0.214977 179.896 0.212227 179.999 0.195506C180.469 0.146192 181.221 0.191613 181.61 0.108313C181.748 0.0891562 181.945 0.0864818 182.166 0.100759C182.387 0.115034 182.618 0.145336 182.817 0.186233C182.599 0.198993 182.405 0.219086 182.24 0.24607C181.645 0.333725 181.864 0.480188 182.619 0.693119C183.778 0.681409 184.962 0.684733 186.036 0.644603C186.635 0.608579 187.369 0.61984 188.155 0.677125C188.941 0.734407 189.748 0.835442 190.486 0.968864C190.753 1.02017 191.058 1.0557 191.339 1.06841C191.62 1.08112 191.858 1.07007 192.005 1.03745C192.096 0.999727 192.124 0.951984 192.087 0.898361L191.329 0.804525C191.329 0.804525 191.359 0.754453 191.366 0.743326L192.455 0.734912C193.031 0.73462 193.632 0.74937 194.177 0.745168C194.977 0.717224 195.891 0.732799 196.861 0.790928C197.756 0.850535 198.636 0.895589 199.492 0.925695C200.321 0.956682 200.922 0.857894 201.71 0.842118C202.307 0.830226 202.963 0.842935 203.654 0.879746C204.847 0.945035 205.942 0.945157 206.839 0.880098C207.885 1.23062 208.393 1.28761 209.364 1.1929L209.821 1.16584L209.946 1.24102L210.295 1.22449C210.947 1.20976 211.6 1.19504 212.281 1.18979C213.227 1.22232 214.25 1.30984 215.248 1.4438C215.437 1.46726 215.695 1.54697 215.861 1.60937C216.028 1.67178 216.39 1.86004 216.657 1.98259C216.366 2.07206 216.045 2.15761 215.814 2.26046C215.791 2.27803 215.793 2.29898 215.821 2.32163C215.848 2.34428 215.9 2.36799 215.972 2.39087C216.045 2.41374 216.135 2.43513 216.236 2.45333C216.338 2.47153 216.447 2.48602 216.556 2.49565C216.768 2.51639 216.978 2.53021 217.176 2.53656C218.151 2.5475 219.085 2.53937 219.969 2.51224C220.291 2.47398 220.733 2.47034 221.224 2.50192C221.715 2.5335 222.227 2.59848 222.678 2.68655C223.834 2.63368 225.178 2.6493 226.616 2.73233C228.137 2.68183 229.974 2.78396 231.395 2.67331C231.362 2.72895 231.509 2.82473 231.713 2.87992C232.037 2.96375 232.403 3.04144 232.797 3.1097L235.802 3.24297C235.914 3.3115 236.054 3.38087 236.221 3.45018C236.335 3.50493 236.534 3.55851 236.775 3.59955C237.017 3.64059 237.282 3.66588 237.514 3.67005C238.112 3.69035 238.613 3.64495 239.326 3.75713C238.228 3.86318 236.748 3.84909 235.148 3.71738C233.645 3.6172 232.199 3.56714 230.864 3.56904C230.424 3.56828 229.844 3.57413 229.707 3.63473C229.402 3.80599 228.605 3.77892 227.675 3.74733C226.944 3.71275 226.277 3.71663 225.727 3.75865C225.178 3.80068 224.763 3.87965 224.515 3.98907C224.453 4.09477 224.603 4.185 225.244 4.24651L227.911 4.49316C228.304 4.46145 228.676 4.42391 229.028 4.3807C229.619 4.32331 230.35 4.30756 231.163 4.33467C231.975 4.36178 232.848 4.43102 233.713 4.53701C234.155 4.59175 234.597 4.64649 234.918 4.62048C235.199 4.5906 235.458 4.55483 235.693 4.51343C235.74 4.48568 235.759 4.45374 235.749 4.41885C235.919 4.43507 236.089 4.45617 236.254 4.48141C237.57 4.77585 238.59 4.77075 239.516 4.69438C239.767 4.67168 239.958 4.63559 240.212 4.60733C240.466 4.57906 240.555 4.54238 240.786 4.55305C242.627 4.64962 243.157 4.32709 244.708 4.34004C244.783 4.32744 244.83 4.30861 244.844 4.28527C244.858 4.26194 244.838 4.23486 244.787 4.20652C244.677 4.18093 244.551 4.15893 244.418 4.14253C244.286 4.12613 244.152 4.11587 244.029 4.11268C243.315 4.07129 242.685 4.08398 242.246 4.14858C241.935 4.17498 241.605 4.19602 241.26 4.21157L239.706 3.7445C241.211 3.78732 242.634 3.78704 243.943 3.74367C244.228 3.71931 244.712 3.76127 245.114 3.76925L248.07 3.8129C248.678 3.81652 249.196 3.7433 250.043 3.91398C250.043 3.91398 250.603 3.94151 250.752 3.9182C250.902 3.8949 251.564 3.74995 251.959 3.65553C252.417 3.68245 253.052 3.75509 253.337 3.73074C253.836 3.67092 254.268 3.59423 254.625 3.50205L256.411 3.63364C256.409 3.75054 256.344 3.86051 256.216 3.96189C256.077 4.05966 256.082 4.17702 256.23 4.30437C256.379 4.43173 256.666 4.56546 257.07 4.69465L258.833 5.37885C259.121 5.42467 259.428 5.45551 259.712 5.46719C259.996 5.47887 260.243 5.47082 260.421 5.44413C261.18 5.3649 262.03 5.30296 262.788 5.22373C263.767 5.34494 263.515 5.54072 264.227 5.71245L266.531 5.99788C266.883 6.26238 267.241 6.51575 266.172 6.6043C265.96 6.61979 266.103 6.72114 265.909 6.76279C266.74 6.96129 267.654 7.02071 268.496 7.14297C268.828 7.23089 269.106 7.32397 269.316 7.41769C269.547 7.55882 270.014 7.70297 270.617 7.81904C271.221 7.9351 271.911 8.01375 272.54 8.03801C273.596 8.11232 274.676 8.22392 275.734 8.36782C276.095 8.41785 276.466 8.45432 276.822 8.47473C277.178 8.49515 277.511 8.49906 277.798 8.48619C278.821 8.46353 279.687 8.38562 280.34 8.25752C280.985 8.14881 281.855 8.09641 282.87 8.10508C284.607 8.32013 284.957 8.64418 286.008 8.9296L284.193 8.9616C284.127 9.07287 284.247 9.21317 283.503 9.2106C282.759 9.20803 283.136 9.3145 283.377 9.42201C283.462 9.4761 283.628 9.53173 283.847 9.5795C284.066 9.62726 284.324 9.66422 284.578 9.68412L286.123 9.82173C286.671 9.87411 287.201 9.89647 287.655 9.88637C288.109 9.87627 288.47 9.8341 288.698 9.76449C288.96 9.69838 289.321 9.65367 289.759 9.63308C290.317 9.57916 290.776 9.49896 291.119 9.39552L293.301 9.54623C293.393 9.44228 293.693 9.36939 294.149 9.3399C294.605 9.31039 295.189 9.32608 295.803 9.38432L297.273 9.47682C298.907 9.57774 299.266 9.54452 299.745 9.25145L297.784 8.72799C298.069 8.59011 298.344 8.46892 298.62 8.34772C298.131 8.17526 297.48 8.01215 296.731 7.87494C296.032 7.72751 295.314 7.58472 294.579 7.44712C293.781 7.30651 292.938 7.18425 291.948 7.02574C291.775 6.97447 291.524 6.88363 291.203 6.79612C290.882 6.71107 290.547 6.6277 290.199 6.54634C290.265 6.43507 290.324 6.33493 290.197 6.20576C290.807 6.24697 291.437 6.31906 292.031 6.41551C292.625 6.51197 293.163 6.62976 293.597 6.75827C293.67 6.78105 293.76 6.80246 293.86 6.82104C293.96 6.83961 294.068 6.85493 294.178 6.86594C295.249 6.9449 295.761 7.10985 296.285 7.3121C296.638 7.41549 297.093 7.50731 297.587 7.57481C298.534 7.69212 299.461 7.8428 300.367 7.97289C300.644 8.01623 300.932 8.05191 301.219 8.07845C302.166 8.16284 303.118 8.28084 304.029 8.42645C304.326 8.46346 304.611 8.51243 304.86 8.56928C305.11 8.62613 305.316 8.68919 305.462 8.75322C305.236 8.82336 305.115 8.9119 305.104 9.0135C305.065 9.08026 305.73 9.21636 306.044 9.31501C306.358 9.41365 305.742 9.36717 305.533 9.3771C304.674 9.39618 304.515 9.43617 305.029 9.65512C305.201 9.72396 305.315 9.79285 305.364 9.85749C305.413 9.92213 305.396 9.98116 305.315 10.0309C305.193 10.2367 304.821 10.4058 304.566 10.6071C304.962 10.7397 305.624 10.8814 305.696 11.0456C305.731 11.082 305.804 11.1206 305.91 11.1586C306.017 11.1965 306.154 11.2329 306.311 11.2651C306.727 11.3346 307.105 11.4177 307.416 11.508C307.726 11.5983 307.962 11.6933 308.104 11.7857C308.15 11.824 308.262 11.8645 308.418 11.8993C308.573 11.934 308.76 11.9604 308.942 11.9731C309.158 11.9887 309.352 11.9867 309.484 11.9674C309.615 11.948 309.673 11.913 309.647 11.8694C309.652 11.7874 309.624 11.702 309.561 11.6139C309.597 11.5527 309.634 11.4915 309.49 11.3901C310.138 11.4271 310.817 11.5012 311.455 11.6045C312.093 11.7077 312.664 11.836 313.108 11.9756C313.599 12.1199 314.051 12.2715 314.595 12.4404C314.483 12.6295 314.483 12.6295 315.64 12.964L321.779 13.1271L323.037 13.3486C324.21 13.5417 324.489 13.5284 325.226 13.4286L325.722 13.3348C326.764 13.4638 327.964 13.6124 328.615 13.3706C328.827 13.5282 328.965 13.5811 328.917 13.6051C328.606 13.8376 328.065 14.0349 327.317 14.1892C327.126 14.2253 326.992 14.2803 326.769 14.3125C326.052 14.4941 325.886 14.7747 326.304 15.097C326.512 15.2396 326.814 15.3856 327.2 15.5303C326.635 15.7312 325.887 15.8976 324.975 16.0252C324.201 16.1238 323.564 16.2559 323.082 16.4177C322.649 16.5809 322 16.7035 321.174 16.7786C320.754 16.8105 320.448 16.8735 320.286 16.9613C320.238 17.1989 320.349 17.4533 320.616 17.7188C320.667 17.7996 320.81 17.8869 321.035 17.9738C321.26 18.0607 321.56 18.1449 321.912 18.2197C321.912 18.2197 322.082 18.2766 322.163 18.3106C322.231 18.5983 321.977 18.8519 321.418 19.0543C321.326 19.1117 321.138 19.1532 320.875 19.1742C320.612 19.1953 320.283 19.1951 319.923 19.1738C319.164 19.1395 318.455 19.1353 317.721 19.116C316.93 19.0888 316.233 19.1102 315.704 19.1782C315.175 19.2461 314.833 19.3579 314.714 19.502C314.706 19.5427 314.683 19.5818 314.644 19.6188C314.622 19.6379 314.61 19.6584 314.608 19.68L316.294 20.1516L314.387 20.3393C314.275 20.5285 315.19 20.6419 315.649 20.7823L315.365 20.8607C315 20.905 314.508 20.8202 314.063 20.771L313.621 20.7163L313.568 20.8053C313.293 20.9265 312.29 20.7903 311.898 20.8791C311.507 20.968 311.786 21.0683 312.373 21.1648C312.78 21.2366 313.218 21.2938 313.653 21.3322C314.088 21.3706 314.509 21.3891 314.885 21.3864C315.109 21.3769 315.294 21.3552 315.431 21.3226C316.222 21.184 317.097 21.0648 318.048 20.966C318.777 20.8772 319.69 20.8395 320.723 20.8554C321.026 20.8487 321.391 20.8697 321.755 20.9147C322.119 20.9598 322.458 21.026 322.712 21.1017L323.247 21.1142C323.247 21.1142 323.539 21.1922 323.498 21.205C323.294 21.4362 323.531 21.7189 324.172 22.0111L323.614 22.0376C322.817 22.0105 323.323 22.1866 323.203 22.2734C322.637 22.257 321.901 22.1837 321.633 22.2938L321.231 22.2858L321.388 22.3054L321.579 22.2693L322.329 22.4338C321.974 22.4615 321.716 22.4953 321.403 22.5102C321.229 22.5231 321.091 22.546 320.997 22.5774C320.903 22.6088 320.854 22.6481 320.854 22.693C320.855 22.762 320.761 22.8201 320.582 22.8617C320.403 22.9033 320.145 22.9271 319.832 22.9307C319.458 22.9322 319.244 23.0072 319.025 23.0339L319.977 23.4862C319.977 23.4862 319.503 23.4275 319.761 23.5072L319.794 23.4516L320.371 23.5648C320.787 23.6641 321.077 23.6881 321.323 23.617C321.568 23.5459 321.512 23.6405 321.63 23.6133C321.587 23.6856 321.32 23.7361 321.091 23.7794C320.826 23.8134 320.527 23.8385 320.2 23.8541C320.79 24.1722 320.819 24.1816 319.956 24.2658C319.092 24.35 319.39 24.4765 318.668 24.4945C317.945 24.5126 318.767 24.7278 319.25 24.7697C319.609 24.7973 319.974 24.8403 320.321 24.8957C320.669 24.9511 320.99 25.0176 321.263 25.0906L321.118 25.3354C320.905 25.3152 320.692 25.2888 320.486 25.2572C319.786 25.1228 319.15 24.9962 318.527 25.0743L318.824 25.2604L316.651 25.1525C316.707 25.2919 317.039 25.4507 317.575 25.5953C317.494 25.6748 317.444 25.7585 317.426 25.8457C317.39 25.9069 317.176 25.8684 317.036 25.875C316.539 25.8853 316.13 25.9267 315.847 25.9958C315.564 26.0648 315.415 26.1594 315.412 26.2711C315.356 26.3656 316.121 26.5619 316.599 26.5554C317.793 26.5743 319.085 26.6471 320.403 26.7698C321.207 26.7857 321.32 26.537 322.643 26.7068C322.669 26.8216 322.5 26.9146 322.16 26.9717C321.821 27.0288 321.33 27.0468 320.761 27.0231C321.085 27.2782 322.875 27.3447 322.954 27.6113C322.508 27.5924 322.032 27.5481 321.571 27.4827C321.111 27.4173 320.682 27.3331 320.329 27.2383C320.252 27.215 320.157 27.1934 320.05 27.1757C319.944 27.158 319.83 27.1447 319.72 27.137C319.609 27.1293 319.506 27.1274 319.419 27.1316C319.332 27.1358 319.264 27.1459 319.222 27.161C319.47 27.2574 319.743 27.3688 320.054 27.473C320.365 27.5772 320.44 27.6223 320.664 27.6442C322.337 27.8514 323.133 28.2246 324.58 28.4696C324.959 28.5165 325.006 28.6657 324.678 28.6488C324.365 28.632 324.081 28.6342 323.86 28.6552C323.638 28.6762 323.486 28.7152 323.421 28.7679C323.178 28.8293 322.876 28.8782 322.521 28.9133C324.006 29.2963 325.776 29.6347 327.666 29.8968C328.023 29.9486 328.397 29.9801 328.73 29.9869C329.785 29.9872 330.904 30.0176 332.066 30.0774C332.477 30.0937 332.858 30.0922 333.186 30.0729C334.264 30.0272 335.12 30.1273 335.902 30.4092L337.195 30.8561C337.153 30.9284 336.935 31.009 336.768 31.1197L337.779 31.3584L345.492 30.8087L347.04 31.3409L349.261 31.3113C349.431 31.3267 349.602 31.3479 349.766 31.3739C350.215 31.531 350.566 31.682 351.053 31.8319C351.54 31.9818 352.411 32 353.018 32.1767C353.625 32.3534 354.232 32.357 354.983 32.462C355.054 32.5988 354.981 32.7219 354.769 32.8236C354.7 32.9405 354.318 33.0127 354.252 33.1239C354.26 33.2364 354.118 33.3319 353.84 33.4017C353.562 33.4715 353.156 33.5135 352.66 33.5239C351.27 33.7633 349.594 33.9338 347.683 34.0302C347.515 34.0372 347.376 34.0534 347.274 34.0778C347.172 34.1022 347.11 34.1342 347.091 34.1719C347.094 34.281 346.966 34.3753 346.718 34.4479C346.47 34.5205 346.107 34.5695 345.656 34.5914C345.536 34.5958 345.446 34.6095 345.396 34.6308C345.225 34.6445 345.1 34.6708 345.034 34.7071C344.968 34.7435 344.963 34.7886 345.019 34.8381C345.074 34.8877 345.19 34.94 345.353 34.99C345.516 35.04 345.722 35.086 345.951 35.1235C346.283 35.1841 346.622 35.242 346.966 35.2971C346.947 35.3305 346.605 35.3359 346.654 35.3659C346.79 35.4619 346.821 35.5519 346.746 35.6286C346.671 35.7054 346.492 35.7668 346.223 35.8082L348.066 36.5859C349.185 36.6936 350.283 36.8763 351.151 37.0993C351.152 37.1358 351.102 37.1664 351.006 37.1881C350.91 37.2097 350.771 37.2216 350.603 37.2226C350.153 37.2385 349.728 37.2695 349.243 37.2871C348.947 37.3002 348.7 37.3291 348.518 37.3721C348.335 37.4151 348.221 37.4714 348.18 37.5376L349.262 37.8269C348.916 37.8974 348.658 37.9312 348.429 37.9745C348.559 38.0655 348.782 38.1595 349.082 38.2494C349.381 38.3393 349.748 38.4226 350.155 38.4929C350.265 38.5074 350.376 38.518 350.483 38.5241C350.59 38.5301 350.69 38.5315 350.778 38.5282C351.617 38.429 352.597 38.6042 353.549 38.7699C354.502 38.9356 355.019 39.0355 355.722 39.1644L357.067 39.1817C357.407 39.2427 357.711 39.3144 357.954 39.3912C358.197 39.4679 358.372 39.5475 358.465 39.6236C358.393 39.746 357.755 39.679 357.375 39.6916C356.473 39.7678 355.287 39.7515 354.013 39.6455C353.698 39.6064 353.374 39.638 353.067 39.6417C352.404 39.657 351.767 39.6818 351.159 39.716C350.758 39.7479 350.384 39.7873 350.038 39.834C349.946 39.9898 351.4 40.1101 350.575 40.1871C350.859 40.2223 350.965 40.2713 351.111 40.2536C352.047 40.3547 352.969 40.4047 353.771 40.3978C355.309 40.3763 357.055 40.4473 358.867 40.6049C360.822 40.7683 362.698 40.8368 364.339 40.805C364.965 40.8032 365.663 40.8366 366.383 40.9028C367.232 40.9945 368.075 41.0521 368.858 41.072C369.117 41.0727 369.406 41.0883 369.7 41.1175C369.995 41.1468 370.288 41.1888 370.554 41.2403C370.531 41.2792 370.277 41.3075 370.334 41.3264C371.144 41.6179 371.472 41.9213 372.719 42.2191C373.571 42.3246 374.55 42.4458 375.107 42.3059C375.665 42.1659 375.465 42.0456 374.356 41.6872C374.596 41.6821 374.886 41.6988 375.175 41.7345C375.463 41.7703 375.732 41.8227 375.934 41.8827L376.894 42.1509L377.758 42.4072C377.682 42.5352 377.623 42.6353 377.56 42.7411C377.461 42.8533 377.57 42.99 377.871 43.1319C378.052 43.2093 378.211 43.2868 378.344 43.3636C378.884 43.6707 379.041 43.961 378.796 44.2019C378.326 44.5483 377.672 44.867 376.842 45.1543C375.965 45.4338 375.484 45.7864 374.762 46.0911C374.393 46.2298 373.945 46.3541 373.423 46.4627C372.433 46.7044 371.348 46.9343 370.354 47.1815C369.36 47.4286 368.238 47.6062 367.135 47.8099C365.492 48.0517 363.716 48.2605 361.817 48.4352C360.642 48.5883 359.435 48.7374 358.348 48.9134C357.064 49.1117 355.556 49.2541 353.861 49.337C352.364 49.4363 351.026 49.5832 349.874 49.7748C349.753 49.7956 349.658 49.8219 349.59 49.8532C349.383 50.0486 348.801 50.1863 347.935 50.2453C347.987 50.3025 348.055 50.3607 348.136 50.4196C348.257 50.4898 348.282 50.5554 348.208 50.6081C348.135 50.6607 347.966 50.698 347.724 50.7149C347.031 50.7633 346.455 50.8455 346.021 50.9579C345.862 50.986 345.763 51.0271 345.733 51.0775C345.704 51.1279 345.743 51.1861 345.85 51.2472C345.944 51.31 345.951 51.3678 345.87 51.4131C345.788 51.4585 345.623 51.4892 345.394 51.5013C344.807 51.5608 344.179 51.6086 343.513 51.6446C342.096 51.7238 340.449 51.7228 338.669 51.6418C338.48 51.6183 338.289 51.6544 338.068 51.627C336.809 51.5362 335.641 51.5221 334.703 51.5865C333.604 51.6116 332.455 51.6066 331.295 51.6184C329.621 51.6105 328.076 51.6583 326.704 51.7604C325.136 51.6617 324.255 51.8333 322.931 51.8366C321.709 51.8542 320.551 51.8964 319.468 51.963C317.721 52.0512 315.981 52.1283 314.259 52.2316C312.644 52.2808 311.157 52.3749 309.823 52.5123C309.312 52.5743 308.387 52.4777 308.038 52.6077C307.69 52.7378 306.988 52.7224 306.42 52.7656L304.628 52.8722C304.32 52.8975 303.982 52.9136 303.617 52.9201C301.952 52.9288 300.798 53.1025 299.252 53.1379L299.094 53.1184C296.349 53.3765 293.208 53.5182 289.763 53.5393C287.751 53.6185 285.55 53.6147 283.415 53.6727C282.905 53.7888 281.703 53.6457 281.064 53.7517C280.425 53.8577 279.381 53.7883 278.558 53.8057C277.734 53.8231 276.929 53.8667 276.049 53.8652C275.284 53.8657 274.639 53.913 274.171 54.0029C273.103 54.1515 271.802 54.2388 270.325 54.261C268.37 54.2996 266.522 54.3873 264.534 54.368C264.563 54.4763 264.441 54.5684 264.181 54.6349C263.921 54.7014 263.533 54.7398 263.056 54.7463C260.931 54.7876 259.003 54.8952 256.849 54.9271L256.273 54.9274L249.831 54.9895C248.096 55.0015 246.424 55.0214 244.654 55.035C243.991 54.9529 243.975 55.0943 243.516 55.0673C243.388 54.9977 243.237 54.967 243.011 55.0048L242.961 55.0882L235.61 55.1989C232.732 55.2799 229.704 55.3042 226.553 55.2716C225.805 55.2798 225.108 55.3074 224.471 55.3541C223.88 55.3711 223.265 55.3787 222.628 55.3766C221.766 55.3556 220.924 55.345 220.105 55.3448C217.951 55.3767 215.691 55.3595 213.332 55.3362C210.974 55.3128 209.187 55.3543 207.088 55.3511C205.667 55.3482 204.252 55.3342 202.78 55.3013C202.078 55.2859 201.212 55.2026 200.485 55.1722C199.757 55.1418 199.52 55.1423 199.424 55.1901C199.107 55.3241 198.311 55.2374 197.675 55.2244C196.434 55.2021 196.258 55.1564 195.921 54.8101L197.443 54.7C197.817 54.6645 198.286 54.6583 198.806 54.6819C199.326 54.7055 199.88 54.7582 200.413 54.835C200.623 54.8678 200.843 54.8938 201.059 54.9114C201.276 54.929 201.485 54.9378 201.674 54.9374C203.21 54.9186 204.725 54.8792 206.201 54.8471L206.417 54.826L206.43 54.5172C206.235 54.4868 206.033 54.4618 205.831 54.4429L198.426 54.2425C196.727 54.1933 194.963 54.0823 193.296 54.037C191.628 53.9917 190.729 53.964 189.436 53.9172C188.89 53.8906 188.333 53.8556 187.769 53.8124C187.802 53.7827 187.821 53.751 187.826 53.7178C187.855 53.6678 187.895 53.601 187.655 53.5474C187.394 53.4719 187.045 53.4073 186.678 53.3667C186.333 53.3399 185.999 53.3247 185.688 53.3217C184.186 53.2958 182.471 53.1327 180.908 52.8671L180.363 53.0444C178.016 52.9448 175.634 52.8468 173.182 52.7522C172.691 52.7264 172.176 52.6769 171.675 52.6074C171.139 52.5409 170.645 52.4021 170.08 52.3262C169.522 52.2715 168.967 52.2289 168.427 52.1991C168.573 52.1535 168.766 52.117 168.999 52.0909C169.229 52.0817 169.396 52.0532 169.477 52.0095C169.558 51.9658 169.548 51.9092 169.448 51.8479C169.274 51.7426 169.197 51.6435 169.577 51.6309C169.928 51.6069 170.18 51.5549 170.302 51.4811C170.423 51.4073 170.41 51.3148 170.264 51.2144C170.2 51.1557 170.155 51.0982 170.129 51.0424L169.971 51.0228C169.451 50.815 168.411 50.7399 167.664 50.5699C167.312 50.5205 166.947 50.4922 166.628 50.4892C165.802 50.4527 164.998 50.4367 164.145 50.3907C163.737 50.3695 163.31 50.3309 162.89 50.2772C162.29 50.2029 162.227 50.1951 161.879 49.925C162.42 49.9297 162.849 49.8894 163.093 49.8108C163.337 49.7322 163.382 49.6202 163.219 49.4938C162.773 49.2175 162.301 48.9263 160.283 48.73C160.941 48.7203 161.575 48.7011 162.181 48.6724C162.357 48.6663 162.489 48.646 162.559 48.6143C162.629 48.5826 162.634 48.541 162.573 48.4951C162.511 48.4492 162.387 48.4011 162.216 48.3574C162.046 48.3137 161.837 48.2763 161.618 48.2503C160.552 48.0941 159.441 47.9895 158.408 47.9484C157.538 47.9302 156.752 47.9404 155.736 47.9399L154.536 47.7913C154.556 47.7579 154.38 47.7122 154.424 47.6939C154.729 47.5226 155.066 47.3553 155.412 47.1712C154.859 47.0718 154.38 46.9519 154.029 46.825C153.679 46.6982 153.472 46.5696 153.431 46.4541C153.401 46.4192 153.409 46.3874 153.454 46.361C153.499 46.3346 153.58 46.3142 153.691 46.3012C154.007 46.2788 154.251 46.2361 154.403 46.1764C154.556 46.1166 154.614 46.0414 154.573 45.9565L153.64 45.6439C150.831 45.4208 148.073 45.2615 145.416 45.1688L143.017 45.0987C142.728 45.015 142.818 44.9784 143.09 44.9763C143.362 44.9741 144.128 44.9973 144.663 45.0098C145.125 45.0262 145.535 45.0154 145.854 44.9785C146.172 44.9416 146.389 44.8798 146.482 44.7992L145.677 44.4426C145.716 44.3759 145.772 44.2813 146.209 44.2876C146.508 44.2799 146.727 44.2463 146.833 44.1922C146.939 44.1382 146.925 44.0668 146.792 43.9896C146.772 43.9338 146.802 43.8829 146.881 43.8394C147.527 43.8358 148.17 43.8377 148.756 43.8208C149.029 43.8151 149.26 43.7945 149.432 43.7602C149.605 43.7259 149.715 43.6787 149.755 43.622C149.776 43.5666 149.725 43.5035 149.605 43.4378C149.485 43.3721 149.3 43.3057 149.064 43.2438C148.146 43.1673 147.305 43.1663 146.728 43.2411C146.522 43.2997 146.191 43.3317 145.779 43.3329C145.367 43.3341 144.893 43.3044 144.419 43.2478C143.877 43.1825 143.336 43.1538 142.894 43.1669C142.451 43.1799 142.136 43.2339 142.005 43.319C141.449 43.286 140.955 43.2607 140.469 43.2243C139.894 43.1784 139.352 43.1648 138.899 43.1852C138.175 43.1995 137.394 43.1911 136.576 43.1602C134.215 43.0828 131.852 43.0111 129.567 42.9789C128.962 42.9697 128.439 42.9945 127.841 42.9742C127.243 42.9539 126.77 43.0087 126.022 42.8982C125.88 42.881 125.737 42.87 125.604 42.866C125.471 42.862 125.352 42.8651 125.257 42.875C123.944 42.9624 122.404 42.9748 120.728 42.9114C118.433 42.8958 116.053 42.8519 113.755 42.8419C113.08 42.8505 112.443 42.8735 111.85 42.9106C111.399 42.9331 110.926 42.9483 110.434 42.9562C110.057 42.9632 109.696 42.9425 109.76 43.0638C109.823 43.1852 109.259 43.1092 108.933 43.0868C107.814 43.028 106.671 42.9483 105.516 42.8487C104.378 42.7405 103.262 42.6775 102.237 42.6636C101.496 42.6554 100.732 42.6863 99.7801 42.5205C99.8164 42.4593 99.8526 42.3981 100.06 42.3342C99.2833 42.1584 98.3972 42.0071 97.475 41.8929C96.5527 41.7787 95.6207 41.7048 94.7562 41.6773L93.564 41.3446C93.2705 41.3055 92.9708 41.277 92.6832 41.2609C92.3957 41.2448 92.1262 41.2414 91.8912 41.2508C91.7097 41.2557 91.4884 41.2433 91.268 41.216C91.0476 41.1887 90.843 41.1483 90.6916 41.1023C90.4652 41.0437 90.1887 40.9931 89.8967 40.957C89.6046 40.9208 89.3101 40.9006 89.0499 40.8989C88.2308 40.8627 87.3564 40.7792 86.5163 40.6568C86.2983 40.5851 86.1617 40.5109 86.1233 40.4436C86.085 40.3762 86.1466 40.3186 86.3005 40.2777C86.5487 40.2056 86.688 40.1137 86.7101 40.0077C86.7322 39.9016 86.6366 39.7835 86.429 39.6606C86.3227 39.5852 86.2872 39.5137 86.3246 39.4506C86.362 39.3875 86.4716 39.334 86.6466 39.2934C87.3001 39.1056 87.1253 39.0004 86.0561 38.6888C85.8825 38.6369 85.6731 38.5883 85.4413 38.5462C85.2096 38.5042 84.9605 38.4695 84.7099 38.4444C84.1219 38.3936 83.5419 38.3559 82.9806 38.3318C82.6649 38.2927 82.3412 38.3242 81.9774 38.3091C80.1586 38.2331 79.8924 38.1105 79.3034 37.8465L78.8741 37.656C78.0779 37.5016 77.2072 37.3735 76.3246 37.2807C75.442 37.1879 74.5696 37.1328 73.7702 37.1194C73.4524 37.1184 73.0871 37.092 72.7302 37.0443C71.5688 36.8985 70.3927 36.7976 69.2797 36.7483C68.5861 36.7206 67.8385 36.6488 67.1266 36.5415C66.4147 36.4343 65.7687 36.2962 65.2664 36.1438C64.8152 36.0065 64.2249 35.8833 63.5777 35.7913C62.82 35.6975 62.7498 35.5873 63.1729 35.5023C63.596 35.4174 64.3047 35.308 64.9337 35.2187C65.1526 35.1884 65.2882 35.139 65.3254 35.0762C65.3627 35.0133 65.3001 34.9394 65.1447 34.8627C65.0449 34.7314 65.0276 34.6068 65.0932 34.492C65.1283 34.4443 65.1041 34.3896 65.0222 34.3315C64.9404 34.2735 64.8028 34.2135 64.6187 34.1557C64.4346 34.0978 64.2084 34.0433 63.9552 33.996C63.702 33.9486 63.4277 33.9095 63.1509 33.8812C61.9828 33.7365 60.8463 33.5957 59.6551 33.49C59.1559 33.4402 58.6572 33.3784 58.1713 33.3062C57.1766 33.1277 56.1125 32.9797 55.0407 32.8707C54.532 32.822 54.0347 32.7368 53.6563 32.6336C52.463 32.3555 51.3635 32.0631 50.3776 31.7617C50.1399 31.6682 49.8291 31.577 49.4643 31.4938C49.0996 31.4106 48.6889 31.3372 48.2581 31.2782C47.9109 31.2352 47.6282 31.1405 47.3605 31.0775C47.166 30.9316 47.1452 30.7966 47.3001 30.6852C47.4551 30.5738 47.7806 30.4897 48.2462 30.4407C48.6877 30.3819 49.1009 30.3136 49.4825 30.2415C49.9426 30.1831 50.4895 30.1481 51.103 30.1376C51.8295 30.1063 52.3668 30.0167 52.6447 29.8806C50.6557 29.6343 48.7643 29.2806 47.021 29.3633L45.6964 29.1395C45.7491 29.0505 45.7953 28.9726 45.8381 28.9003C46.1532 28.7686 46.2516 28.6026 46.125 28.4162C46.0206 28.3261 46.0301 28.2441 46.1523 28.1785C46.2745 28.1129 46.5051 28.066 46.8209 28.0426C48.6915 27.8025 50.8546 27.6404 52.6088 27.368C53.1588 27.3169 53.8027 27.2936 54.5133 27.2993C55.2008 27.2829 55.172 27.1599 54.3809 27.0082C53.9368 26.9289 53.4842 26.8529 53.0247 26.7805C50.9986 26.7684 50.1732 27.132 47.8611 27.0308L46.7895 26.5517C46.4997 26.5443 46.2184 26.5414 45.9475 26.543L42.0706 26.7376C41.7477 26.7474 41.4963 26.7807 41.3451 26.8337C41.1939 26.8868 41.1488 26.9575 41.215 27.0378C41.2412 27.136 41.1878 27.2261 41.0567 27.3048C40.9722 27.3599 41.0263 27.4332 41.2071 27.5086C41.6147 27.6785 41.0917 27.7033 40.7614 27.746C40.677 27.7502 40.5797 27.7497 40.475 27.7447C40.3704 27.7396 40.2606 27.7301 40.1519 27.7167C40.0432 27.7032 39.9379 27.6861 39.842 27.6663C39.7462 27.6465 39.6616 27.6244 39.5934 27.6013C39.0114 27.4397 38.5024 27.2691 37.9304 27.0908C38.3365 26.9201 37.8587 26.64 38.4924 26.4856C38.5633 26.4547 38.5916 26.4171 38.5757 26.3751C38.5599 26.3331 38.5 26.2875 38.4 26.2412C38.1419 26.1217 38.019 26.0051 38.0437 25.9033C38.0683 25.8015 38.2396 25.7181 38.5403 25.6614L38.5766 25.6002C37.7835 25.3945 37.9936 25.2115 37.6822 24.9938L36.9193 24.8515C35.0213 24.5089 35.018 24.5145 33.3839 24.5271C33.0545 24.3967 33.473 24.3769 33.7868 24.362L36.4151 24.2157C38.1334 24.118 39.9018 24.0504 41.8214 24.0134C43.741 23.9765 45.8811 23.8533 47.8652 23.7647C47.9655 23.7578 48.0423 23.7442 48.089 23.7251C48.1357 23.7059 48.151 23.6817 48.1338 23.6546C48.0549 23.6252 47.9516 23.5969 47.8317 23.5717C47.7117 23.5465 47.5781 23.5251 47.4406 23.509C46.8092 23.4308 46.1613 23.3804 45.4885 23.315L44.2341 23.2015L43.8482 23.0522C43.5971 22.9613 43.4255 22.8505 43.0914 22.7852C42.8161 22.7366 42.5172 22.6996 42.2259 22.6782C41.9346 22.6569 41.6616 22.6518 41.4352 22.6637C40.8076 22.6935 40.2398 22.7366 39.6405 22.7759C39.0411 22.8151 38.7108 22.8578 38.1911 22.877C37.1352 22.8858 36.1147 22.9089 35.1341 22.9463C34.3082 23.0348 33.5442 23.1397 32.8471 23.2602C32.4122 23.3079 32.0055 23.365 31.2629 23.3029C30.9106 23.2466 30.6067 23.1726 30.4051 23.0941C30.2035 23.0155 30.1173 22.9375 30.1617 22.8739C30.2015 22.824 30.3143 22.7846 30.4894 22.7592C30.6645 22.7339 30.8961 22.7235 31.1624 22.7291C31.9078 22.7199 32.5971 22.6891 33.2164 22.6371C34.0783 22.543 35.1276 22.5024 36.303 22.5178C36.7016 22.5313 36.9688 22.4808 37.3175 22.4643C37.6662 22.4477 37.9616 22.4067 38.3503 22.4369C39.558 22.5148 40.137 22.3954 40.8607 22.3179C41.1057 22.2835 41.2575 22.2279 41.2994 22.1572C41.3413 22.0865 41.2717 22.0035 41.0982 21.9173C40.7641 21.7456 40.3555 21.5729 39.8787 21.402C39.6333 21.3179 39.3189 21.2381 38.9601 21.1689C38.6014 21.0996 38.208 21.0426 37.811 21.0025C37.5733 20.8974 37.4466 20.794 37.4421 20.7017C37.4377 20.6093 37.5557 20.5311 37.7855 20.4739C38.3712 20.3433 38.8904 20.2106 40.2026 20.2835C40.8196 20.3114 41.4002 20.3167 41.9215 20.2993C43.0776 20.2755 44.4112 20.3277 45.7966 20.4508C46.155 20.4824 46.5073 20.5039 46.8431 20.5147C49.2381 20.5904 51.5201 20.6282 53.8086 20.6548C55.021 20.6676 56.2432 20.6638 57.5089 20.7011C60.4769 20.782 63.1786 20.7404 66.0434 20.7668C67.5438 20.7803 68.8868 20.7258 70.0019 20.6061C70.219 20.5659 70.4055 20.5191 70.5592 20.4661C69.8203 20.327 69.0086 20.2169 68.202 20.1462C67.3953 20.0756 66.6207 20.0469 65.9524 20.0627C65.585 20.1017 65.1101 20.1088 64.5807 20.0833C64.0513 20.0578 63.4882 20.0007 62.9542 19.9183L64.5068 19.8717C65.5363 19.85 66.5908 19.8432 67.5921 19.8119C69.1828 19.7581 70.6571 19.672 72.3043 19.6371C73.6342 19.6051 74.8243 19.5231 75.8372 19.3939C76.569 19.2996 77.4047 19.2328 78.3274 19.1947C78.9833 19.1744 78.9833 19.1744 79.4026 18.9815C79.07 18.8567 78.6398 18.8392 78.2346 18.8368C75.8052 18.7583 73.4932 18.7445 71.3458 18.7958C70.2623 18.8004 69.3011 18.8533 68.5084 18.952C68.3142 18.9937 67.8176 18.9739 67.419 18.9604C66.1693 18.9398 64.975 18.9458 63.8502 18.9783C62.2952 19.0324 60.5633 19.0195 58.7218 18.9403C58.3726 18.8433 58.7745 18.8513 58.7943 18.8179C60.2206 18.7556 61.6186 18.6839 63.0732 18.6312C63.4708 18.6124 63.8958 18.6031 64.3435 18.6034C66.0147 18.6361 67.4074 18.5455 68.3264 18.3442C68.3725 18.2663 68.9771 18.2755 69.2442 18.225C69.3756 18.1813 69.4632 18.1298 69.5042 18.0721C69.115 17.9283 68.6749 17.9275 68.3362 17.9274C67.3531 17.9434 66.4073 17.9739 65.5035 18.0185C64.6633 18.061 63.7332 18.0723 62.7385 18.0523C62.0044 18.033 61.3768 18.0628 60.6361 18.0546C60.2343 18.0375 59.8184 18.0101 59.3968 17.9728C59.8662 17.8726 60.5042 17.811 61.266 17.7923C61.8437 17.7324 62.566 17.7144 62.6583 17.5586C62.3855 17.4472 62.0816 17.4454 61.8375 17.4569C61.3294 17.4565 60.8387 17.4635 60.3679 17.478C59.3695 17.5096 58.2886 17.5101 57.1478 17.4793C56.547 17.4678 55.977 17.4712 55.4473 17.4896C54.2467 17.5141 53.0961 17.5687 51.9968 17.5938C49.745 17.6195 47.6912 17.7115 45.5275 17.76C45.046 17.772 44.6143 17.8141 43.9796 17.7415C43.3449 17.6688 43.3167 17.6594 43.2417 17.6142C43.0641 17.539 43.0103 17.466 43.0914 17.4105C43.2173 17.3586 43.4626 17.3297 43.7835 17.329C45.7177 17.2465 47.5523 17.1306 49.2757 16.982C50.0341 16.9523 50.6986 16.8916 51.2461 16.8021C51.6803 16.7404 52.1953 16.6996 52.775 16.6809C53.6182 16.6363 54.4972 16.6037 55.4085 16.5831C55.8325 16.572 56.193 16.539 56.4689 16.4859C56.7447 16.4329 56.9303 16.361 57.0147 16.2744L55.8975 15.9867C55.722 15.9733 55.5479 15.9617 55.3759 15.952L46.1034 16.1592L45.1851 16.1649C44.1787 16.1477 43.9327 16.1053 42.978 15.7721C45.1568 15.6937 46.8695 15.4652 47.9456 15.1093C47.687 15.0711 47.4219 15.0382 47.1564 15.0116C45.4152 14.9274 43.7692 14.9051 42.2819 14.9454C41.3984 14.9494 40.49 14.9384 39.5783 14.933C39.8449 14.7689 40.8664 14.8178 41.5322 14.7808C43.123 14.723 44.5297 14.6034 45.7074 14.426C46.1134 14.3569 46.6214 14.3126 47.208 14.2954C47.7951 14.2894 48.2855 14.2476 48.6366 14.1734C48.9877 14.0993 49.1887 13.9951 49.2222 13.87C49.2775 13.7567 49.3967 13.6515 49.578 13.5558C49.2573 13.42 48.7481 13.29 48.1459 13.1901C47.5437 13.0902 46.89 13.0274 46.3074 13.0133C45.0636 12.9574 43.7735 12.8659 42.47 12.7411C41.8207 12.6782 41.184 12.642 40.6013 12.6351C40.0874 12.6297 39.5032 12.5843 38.938 12.5056C38.3728 12.427 37.8574 12.3195 37.4706 12.1996C36.9485 12.0513 36.4612 11.9014 35.974 11.7514C35.4868 11.6015 34.9214 11.4121 34.3526 11.2281C33.8511 11.1994 33.3628 11.1809 32.8943 11.1729C32.5298 11.1797 32.1044 11.1596 31.6684 11.1152C31.2324 11.0707 30.8039 11.0036 30.4336 10.9219C30.6508 10.8413 30.8964 10.7702 31.155 10.6768C30.8 10.5535 30.5426 10.4278 30.3984 10.3073C30.2543 10.1868 30.2265 10.074 30.3167 9.97582C30.3694 9.8868 29.9835 9.73747 29.8501 9.61943C29.6784 9.51767 29.6462 9.42271 29.7576 9.34699C29.869 9.27127 30.1188 9.21833 30.4744 9.19511C30.9154 9.15226 31.2743 9.08773 31.5364 9.00416C31.6231 8.98247 31.6672 8.95276 31.6648 8.91775C31.6623 8.88274 31.6133 8.84355 31.5223 8.80376C31.4312 8.76398 31.3011 8.72486 31.1437 8.68999C30.9863 8.65512 30.8067 8.62561 30.6213 8.60417C30.0534 8.54337 29.4894 8.50396 28.9617 8.4882C28.0527 8.45922 27.1824 8.44102 26.3509 8.43359C25.4313 8.4224 24.4083 8.35339 23.3857 8.23355C22.4701 8.12016 21.6493 8.01849 21.2016 7.8018C20.754 7.58512 20.0382 7.59202 19.4878 7.43428C19.797 7.29208 20.3465 7.19329 21.0809 7.14786C21.5615 7.13164 21.9626 7.08908 22.2586 7.02289C22.5546 6.95671 22.7389 6.86837 22.7997 6.76354L21.1288 6.32369C19.7944 6.11661 19.0561 6.27599 17.6142 6.19297L19.0998 6.0306C19.1297 6.01455 19.1409 5.9957 19.1328 5.97496C18.9886 5.64655 18.7591 5.57633 17.2404 5.39421L16.3881 5.28864L15.039 5.16336C14.8229 5.09605 14.6735 5.02587 14.6056 4.95982C14.5377 4.89377 14.5537 4.83417 14.6521 4.78699C14.8498 4.70763 14.9098 4.60623 14.8269 4.49211C14.696 4.41652 14.6852 4.34684 14.7963 4.29515C14.9074 4.24345 15.1334 4.21302 15.4351 4.20914C15.6759 4.20312 15.6938 4.11576 15.8248 4.06629C15.9549 3.99811 16.1777 3.94579 16.4778 3.91289C16.778 3.87999 17.1485 3.86728 17.5643 3.87564C18.79 3.88247 19.9415 3.85688 20.9983 3.79931L20.8088 3.77585C21.9103 3.82639 22.9401 3.83251 23.848 3.79394C24.7578 3.74539 25.9255 3.77653 26.8919 3.74692C27.6786 3.75372 28.2776 3.68652 28.5617 3.55959C28.8368 3.4384 29.8367 3.46668 30.6024 3.48985C31.0559 3.50484 31.4943 3.51119 31.9128 3.50883C32.4745 3.4814 33.1768 3.50725 33.9026 3.58209C34.1204 3.60509 34.3349 3.61726 34.5256 3.61743C36.3707 3.64889 38.2125 3.6859 40.0327 3.70232C40.4529 3.69287 40.9455 3.71452 41.4529 3.76474C41.6661 3.78654 41.8737 3.79558 42.0476 3.79062C44.9237 3.74074 48.1692 3.868 50.9888 3.79918C51.3305 3.78292 51.7088 3.77954 52.1131 3.78913C53.0214 3.82956 53.8101 3.80354 54.3596 3.71503C54.6561 3.66795 55.0362 3.64201 55.4757 3.63885C55.9151 3.6357 56.4043 3.65541 56.912 3.69672C57.7569 3.75142 58.5378 3.75735 59.1723 3.71389C60.4093 3.67374 61.7102 3.65723 63.0648 3.66449C63.4798 3.67151 63.8446 3.65591 64.131 3.61888C64.4174 3.58186 64.6176 3.52441 64.7162 3.45098C64.3835 3.32617 64.0198 3.31099 63.6744 3.32196C62.3358 3.29352 61.0004 3.25951 59.6867 3.24611C58.5109 3.20782 57.3827 3.19612 56.3187 3.21117C55.7904 3.22815 55.1311 3.18944 54.4848 3.10348C53.6927 2.99462 52.8769 2.94054 52.2023 2.95217C51.7022 2.95506 51.1743 2.94568 50.6262 2.92418C50.2754 2.89824 49.9159 2.85371 49.5844 2.79515C49.4529 2.76972 49.3098 2.74833 49.1641 2.73236C49.0185 2.71639 48.8737 2.7062 48.7389 2.70242C48.604 2.69864 48.4819 2.70135 48.3808 2.71041C48.2796 2.71946 48.2014 2.73464 48.1511 2.75498C47.6437 2.92504 46.509 2.83826 45.5374 2.81945C44.0814 2.53162 42.9978 2.70198 41.637 2.53941C41.5294 2.52863 41.4233 2.5221 41.3254 2.52024C41.2274 2.51838 41.1396 2.52121 41.0673 2.52857C38.4338 2.62642 35.3645 2.54487 32.5996 2.57866C32.2947 2.5836 31.9408 2.56667 31.5781 2.52978C29.2078 2.28564 26.9289 2.21632 25.1869 2.3354C24.9749 2.34612 24.7338 2.34658 24.4745 2.33675C23.2834 2.23972 22.1444 2.20103 21.1526 2.22392C19.5981 2.21653 18.1036 2.22252 16.5241 2.20009C15.4354 2.16818 14.4803 2.20227 13.7545 2.29898C13.7314 2.33793 13.2479 2.29596 12.8776 2.2919C12.6646 2.19385 12.4799 2.1053 12.2603 2.01838C12.064 1.91085 11.77 1.80203 11.3982 1.69932C11.0264 1.5966 10.5856 1.50239 10.1055 1.42304C9.28469 1.32138 9.2026 1.17386 9.77696 1.11958C11.2574 0.940019 13.1189 0.866526 15.2248 0.904497C16.9851 0.907531 18.7771 0.914482 20.5624 0.932555C21.6038 0.948059 22.7015 0.982496 23.7146 0.988526C24.0564 1.00178 24.4076 1.0213 24.7644 1.04689C25.2023 1.08399 25.6274 1.10421 26.0169 1.10646C27.2675 1.07521 28.6632 1.10243 30.1374 1.18682C30.6774 1.20522 31.1959 1.21142 31.6852 1.20533C32.8429 1.18243 34.0979 1.19928 35.417 1.25546C36.2369 1.28714 37.0319 1.3037 37.7937 1.30498C38.0628 1.30844 38.2819 1.28183 38.541 1.30198C40.8221 1.51283 42.4373 1.36053 44.4902 1.44161C45.488 1.46422 46.4413 1.46428 47.3367 1.44181C49.084 1.44289 50.8801 1.46601 52.7176 1.51106C55.1475 1.58508 57.3993 1.5594 59.7194 1.58996C60.1775 1.59638 60.6198 1.59529 61.043 1.58668C63.102 1.5298 65.3384 1.54186 67.6976 1.62257C68.2333 1.63423 68.7144 1.61997 69.1109 1.5807C69.5073 1.54143 69.8106 1.47798 70.0016 1.39434C70.0824 1.33693 70.0301 1.26237 69.8546 1.18503C69.5634 1.08626 69.2346 0.989492 68.8735 0.896312L55.741 0.583634C55.1894 0.567307 54.6515 0.558516 54.1301 0.557302C52.5963 0.554584 51.0154 0.530259 49.3951 0.48445C47.794 0.44142 46.2645 0.449058 44.7133 0.436103C44.2565 0.431763 43.7875 0.421523 43.3083 0.405413C40.0696 0.27791 36.9115 0.200034 33.8562 0.17234C32.5709 0.168411 31.1823 0.109895 29.8719 0.0909291C28.5615 0.0719612 26.7696 0.0650181 25.2151 0.0576252L20.4025 0.0587596C19.4559 0.0549871 18.5342 0.0662466 17.6159 0.0719466C16.5015 -0.334817 16.1174 -0.430158 14.6303 -0.608366C14.1216 -0.674103 13.6041 -0.713332 13.1386 -0.721461C11.6624 -0.689306 9.81009 -0.82316 8.4102 -0.805439C7.56549 -0.81418 6.84871 -0.768993 6.33325 -0.674502C5.88579 -0.600345 5.37412 -0.541666 4.80613 -0.499352C3.25021 -0.847328 3.11309 -1.07333 4.2835 -1.16128C4.6006 -1.18172 5.03739 -1.1754 5.26637 -1.2187C5.39776 -1.24507 5.57725 -1.26015 5.79054 -1.26276C6.00383 -1.26537 6.24501 -1.25543 6.49518 -1.23372C7.28472 -1.17678 8.02475 -1.16338 8.64101 -1.19489C9.22098 -1.23659 9.9319 -1.23492 10.7052 -1.19005C11.2735 -1.11967 11.773 -1.21905 12.2644 -1.24776C12.7558 -1.27648 13.1591 -1.32805 13.9267 -1.2509C14.0673 -1.23554 14.2068 -1.22632 14.3346 -1.22394C14.4625 -1.22157 14.5752 -1.22611 14.6641 -1.23721C15.4885 -1.28689 16.4723 -1.28167 17.5356 -1.22197C19.1663 -1.16322 20.6963 -1.16102 22.0726 -1.21544C22.8964 -1.26305 23.5989 -1.34749 24.1524 -1.46546C24.3033 -1.50492 24.5273 -1.52858 24.803 -1.53417C26.1878 -1.50956 27.6913 -1.41692 29.2167 -1.26224C29.7914 -1.20026 30.3653 -1.15123 30.9262 -1.1162C32.079 -1.03839 33.194 -0.99479 34.2382 -0.986686C35.7554 -0.985402 37.3351 -0.955464 38.9633 -0.897142C39.968 -0.864669 40.9362 -0.852684 41.8563 -0.861316C42.802 -0.865385 43.8117 -0.840615 44.8625 -0.78758C45.9076 -0.744363 46.8285 -0.769263 47.5143 -0.85927C47.7402 -0.907771 47.9221 -0.965365 48.0566 -1.03098C46.5265 -1.24448 44.9441 -1.35299 43.6279 -1.33464C43.1279 -1.34879 42.7128 -1.33451 42.186 -1.41767L42.1695 -1.38985C42.0647 -1.3718 41.9065 -1.36755 41.7252 -1.37789C41.5438 -1.38824 41.352 -1.41246 41.1862 -1.44595C41.2488 -1.55166 41.3082 -1.6518 41.3511 -1.72413C42.3539 -1.71137 43.3276 -1.7124 44.2673 -1.72724C45.0593 -1.74858 46.1346 -1.56166 46.8201 -1.63202C48.1574 -1.54403 49.0088 -1.66552 50.208 -1.63046C51.4071 -1.59541 52.7279 -1.4796 53.9271 -1.44455C54.9735 -1.42531 55.9895 -1.42113 56.9695 -1.43202C57.3078 -1.44731 57.6977 -1.44373 58.1154 -1.42148C58.7026 -1.37963 59.2488 -1.37261 59.6913 -1.40125C60.1338 -1.42988 60.4547 -1.49301 60.6174 -1.58339C60.4642 -1.66805 60.2579 -1.77721 60.0199 -1.89029C60.4577 -1.98321 61.1225 -2.02233 61.9159 -2.00184L63.0369 -2.00633C63.3339 -2.00388 63.561 -2.029 63.6711 -2.07649C63.7813 -2.12399 63.7661 -2.19022 63.6286 -2.2615C61.5031 -2.62031 61.4248 -2.65986 59.8647 -2.42907L57.7934 -2.53632L57.8283 -2.53796ZM85.8451 -1.55232L85.6873 -1.57187L85.8451 -1.55232ZM343.978 36.623L343.942 36.6842L343.981 36.6174L344.328 36.6604L344.351 36.6215L343.978 36.623ZM293.557 9.799C293.067 9.73223 292.571 9.67085 292.074 9.61522C291.943 9.6066 291.822 9.60465 291.718 9.60954C291.615 9.61444 291.534 9.62602 291.481 9.64333C291.441 9.71009 291.719 9.75641 291.971 9.78769C292.29 9.82979 292.615 9.85655 292.914 9.8652C293.213 9.87384 293.474 9.86408 293.671 9.83689L293.956 9.81253L293.557 9.799ZM40.7375 26.0709C41.0607 26.0821 41.3671 26.084 41.6493 26.0763C42.9012 26.0224 44.0998 25.9439 45.3833 25.8938C47.0028 25.7668 48.8637 25.715 50.8962 25.7405C51.6903 25.753 52.3611 25.7118 52.8305 25.6218C53.1114 25.5735 53.4741 25.5452 53.8962 25.5388L59.2696 25.3921C59.6017 25.3617 59.8889 25.319 60.1243 25.2651C59.6508 25.2064 59.3351 25.1673 59.1457 25.1439C58.7526 25.1373 58.4148 25.1551 58.1661 25.1957C57.8989 25.2645 57.4473 25.2917 56.9009 25.2719C56.3494 25.2556 55.8115 25.2468 55.29 25.2456C54.3052 25.249 53.3138 25.2636 52.3257 25.2726C51.9412 25.4639 50.8066 25.3771 49.835 25.3583L49.0844 25.3668C46.6309 25.466 44.2872 25.6024 42.0648 25.7754C41.6352 25.8047 41.2652 25.8514 40.966 25.9141C40.8533 25.9629 40.8172 26.0239 40.8605 26.0921L40.7027 26.0725L40.7375 26.0709ZM150.301 44.3585C150.897 44.3715 151.516 44.3983 152.152 44.4384C152.641 44.4793 153.119 44.5042 153.565 44.5119C156.068 44.5548 158.676 44.6538 161.354 44.8077C161.704 44.831 162.04 44.8424 162.35 44.8415L164.542 44.8025C165.233 44.7805 165.246 44.7583 164.743 44.4631C164.326 44.4058 163.904 44.3535 163.48 44.3067C163.228 44.2754 162.818 44.2246 162.721 44.2724C162.136 44.4029 161.068 44.3184 160.169 44.2907C157.568 44.2194 154.886 44.1141 152.26 44.0277C151.704 44.0066 151.167 43.9959 150.652 43.9958C150.332 43.9914 150.041 43.9997 149.79 44.0205C149.717 44.0226 149.655 44.0288 149.61 44.0386C149.565 44.0484 149.536 44.0617 149.527 44.0774C149.517 44.0932 149.527 44.1112 149.556 44.1302C149.584 44.1491 149.63 44.1686 149.691 44.1874C149.906 44.2531 150.154 44.316 150.428 44.3741L150.301 44.3585ZM169.355 1.51677L171.917 1.48178C172.224 1.47802 172.485 1.43863 172.814 1.45548C174.568 1.50887 176.193 1.494 177.618 1.4115C178.103 1.37783 178.671 1.3711 179.29 1.39167C181.186 1.45264 182.974 1.45515 184.606 1.39912C185.661 1.38788 186.648 1.35012 187.553 1.2864C187.623 1.2716 187.666 1.25152 187.681 1.22752C187.695 1.20352 187.68 1.17616 187.636 1.14731C187.624 1.12908 187.593 1.10947 187.545 1.08984C187.496 1.07021 187.432 1.051 187.355 1.03356C187.278 1.01613 187.192 1.00087 187.101 0.988832C187.01 0.976795 186.918 0.968264 186.83 0.963837C185.686 0.877584 184.601 0.847537 183.662 0.876132C182.792 0.910345 181.855 0.920357 180.866 0.90601C179.919 0.902236 179.277 1.0138 178.107 0.928673C177.613 0.900639 177.176 0.909869 176.872 0.954812C176.259 1.02931 175.404 1.03345 174.459 0.966505C173.893 0.932625 173.353 0.918096 172.858 0.923471C171.657 0.947963 170.51 0.996964 169.398 1.04431C169.047 1.05527 168.671 1.05678 168.277 1.04881L162.706 0.956099C161.368 0.927658 160.032 0.893654 158.719 0.88025C157.644 0.851148 156.644 0.860262 155.754 0.907274C154.805 0.956684 153.771 0.976743 152.669 0.967073C150.959 0.994114 149.258 1.00445 147.396 1.00082C146.209 1.00305 144.993 0.995824 143.753 0.973551C143.125 0.944883 142.592 0.968228 142.257 1.03909C142.053 1.09743 141.573 1.0499 141.174 1.03636C139.048 0.905868 137.054 0.874949 135.331 0.945755C135.111 0.957295 134.87 0.961471 134.612 0.958215C132.953 0.955785 131.234 0.939968 129.642 0.939793C129.222 0.945295 128.828 0.96039 128.463 0.984888C128.502 1.02486 128.613 1.06818 128.774 1.10586C128.935 1.14355 129.132 1.17271 129.326 1.1873C130.832 1.29896 132.286 1.35795 133.628 1.36179C135.86 1.34756 138.199 1.37954 140.62 1.45739C142.498 1.53586 144.21 1.51934 145.63 1.40905C146.739 1.32675 148.183 1.35771 149.712 1.49662C150.366 1.56296 151.002 1.58949 151.531 1.57258C152.04 1.5504 152.624 1.55578 153.25 1.5884C154.568 1.65044 155.836 1.67922 157.028 1.67417C158.194 1.65134 159.281 1.58895 160.479 1.57002C161.676 1.55109 163.499 1.56194 164.976 1.52978C166.452 1.49763 167.912 1.49329 169.355 1.51677ZM63.1825 -1.73747C63.3178 -1.56545 63.7965 -1.45838 64.3116 -1.41251C66.0871 -1.20883 67.8425 -1.12216 69.283 -1.16704C70.0611 -1.22964 71.0985 -1.20554 72.1912 -1.09948C73.4635 -0.989229 74.6527 -0.970945 75.5493 -1.04785C75.769 -1.06129 75.9371 -1.0897 76.0389 -1.13054C76.0587 -1.16393 76.0949 -1.22512 76.1015 -1.23625C76.0073 -1.26447 75.8918 -1.29062 75.7639 -1.31267C75.6359 -1.33473 75.499 -1.35211 75.3637 -1.36347L69.4823 -1.56039L68.4574 -1.60372C66.5854 -1.71725 64.8016 -1.76247 63.1825 -1.73747ZM74.7511 0.985269C75.669 1.26617 75.6722 1.2606 76.1425 1.32481C78.4112 1.59153 80.6783 1.73552 82.6741 1.73963C83.1177 1.73881 83.4942 1.7117 83.7716 1.66056C83.9144 1.65363 84.0052 1.63161 84.0244 1.5993C84.0435 1.56699 83.9894 1.52701 83.8738 1.48809L83.1439 1.29019C81.8183 1.20452 80.5118 1.13645 79.2321 1.08638C77.7422 1.02726 76.4219 1.02498 74.8773 1.0009L74.7511 0.985269ZM150.191 43.1147C151.047 43.5013 151.05 43.4957 152.482 43.5954C153.48 43.6661 154.448 43.7076 155.357 43.7186C156.468 43.7308 157.607 43.7525 158.715 43.7702C158.986 43.7826 159.215 43.7723 159.359 43.7416C159.502 43.7108 159.55 43.6616 159.492 43.6037C159.346 43.5407 159.119 43.4799 158.846 43.4309C158.574 43.382 158.272 43.3479 157.991 43.3342L157.386 43.325C156.652 43.3057 155.89 43.277 155.181 43.2728C154.721 43.2888 154.188 43.2764 153.623 43.2366C153.059 43.1967 152.479 43.1305 151.928 43.0431L150.191 43.1147ZM79.3183 -1.23198C79.5467 -1.16503 79.805 -1.10091 80.0863 -1.04131C81.1757 -0.876142 82.3287 -0.782331 83.3192 -0.778271C83.7876 -0.76804 84.2159 -0.804572 84.6927 -0.751484C85.548 -0.680545 86.3768 -0.642757 87.1345 -0.640165C87.1345 -0.640165 87.3469 -0.655655 87.4167 -0.658963L87.5618 -0.903759C87.2031 -0.960468 86.829 -1.0068 86.4568 -1.04061C85.2077 -1.10574 83.9802 -1.15027 82.7561 -1.20036C81.5319 -1.25045 81.1051 -1.27346 80.3045 -1.29497C79.9474 -1.28315 79.6171 -1.26205 79.3183 -1.23198ZM52.268 29.201L53.9027 29.702C54.4317 29.7456 54.9258 29.7534 55.31 29.7245C55.6942 29.6955 55.9473 29.6313 56.0309 29.5416C56.1655 29.4996 56.179 29.4374 56.0685 29.3681C55.958 29.2987 55.732 29.2276 55.4381 29.1696C55.1552 29.1008 54.8323 29.0392 54.4893 28.9885C54.1462 28.9378 53.7905 28.8991 53.4441 28.8748L52.268 29.201ZM65.8782 26.7063C64.809 26.6213 63.7864 26.5866 62.8885 26.6047C62.3228 26.6544 61.5563 26.6386 60.7461 26.5603C59.2727 26.4045 57.8523 26.3613 56.7848 26.44C56.7848 26.44 56.7452 26.5067 56.5642 26.5261C56.3833 26.5455 57.1009 26.5926 57.2588 26.6122C58.4165 26.66 59.5808 26.6967 60.5873 26.7139C61.2121 26.7131 61.873 26.7289 62.5587 26.761C63.5021 26.8104 64.3967 26.8264 65.2077 26.8084C65.2077 26.8084 65.5215 26.7935 65.8749 26.7118L65.8782 26.7063ZM180.059 0.609016C179.548 0.514654 178.995 0.437962 178.439 0.384696C177.884 0.331432 177.341 0.302981 176.853 0.301465C176.478 0.296542 176.175 0.321456 175.992 0.37227C175.808 0.423082 175.754 0.496896 175.839 0.582037C176.218 0.628957 176.723 0.691517 177.007 0.726707C177.992 0.723263 178.832 0.678016 180.059 0.609016ZM275.653 8.56089C275.243 8.48493 274.792 8.42685 274.351 8.39329C273.909 8.35973 273.495 8.35204 273.156 8.37109C272.982 8.37936 273.1 8.46567 273.071 8.51575C273.051 8.5271 273.052 8.54122 273.071 8.55663C273.091 8.57204 273.13 8.58817 273.183 8.60333C273.237 8.61849 273.303 8.63212 273.375 8.64279C273.447 8.65347 273.522 8.6608 273.593 8.66401C274.037 8.69674 274.457 8.70648 274.814 8.69237C275.171 8.67825 275.455 8.64073 275.64 8.58315L275.653 8.56089ZM282.058 9.64679C281.995 9.60196 281.86 9.55525 281.678 9.5152C281.497 9.47515 281.28 9.44445 281.069 9.42875C280.696 9.42664 280.357 9.43907 280.065 9.46557C279.747 9.48601 279.976 9.61579 280.404 9.69279C280.586 9.72369 280.78 9.7478 280.971 9.76319C281.162 9.77858 281.345 9.78483 281.505 9.78145C281.665 9.77806 281.797 9.76513 281.892 9.74369C281.987 9.72224 282.042 9.69288 282.052 9.65792L282.058 9.64679ZM95.9456 -0.755217C94.99 -0.915374 94.2545 -0.875082 93.4455 -0.939453C92.6364 -1.00382 92.4371 -1.0106 92.5455 -0.907591C92.6539 -0.804588 93.2085 -0.825477 93.5558 -0.782466C94.025 -0.725395 94.497 -0.692624 94.919 -0.687811C95.3411 -0.682997 95.6966 -0.706337 95.9456 -0.755217ZM295.071 26.3435C294.565 26.3076 294.069 26.2822 293.591 26.2677C293.528 26.2826 293.488 26.3021 293.475 26.325C293.461 26.348 293.474 26.3739 293.512 26.4013C293.512 26.4013 293.836 26.4832 294.025 26.5067C294.723 26.5871 294.757 26.4719 295.071 26.3435ZM366.608 41.2652C366.951 41.3733 367.111 41.4468 367.385 41.4987C367.511 41.5167 367.641 41.5298 367.766 41.537C367.891 41.5442 368.007 41.5453 368.106 41.5402C368.226 41.5091 368.255 41.4614 368.185 41.4067C368.185 41.4067 367.836 41.3097 367.703 41.3052C367.324 41.2823 366.956 41.2689 366.608 41.2652ZM79.6801 -1.6709C78.954 -1.76083 78.2594 -1.84686 77.7567 -1.74191C78.9097 -1.62897 78.9098 -1.62896 79.6801 -1.6709ZM91.4406 -0.644315C90.7074 -0.836646 90.2772 -0.8541 89.9252 -0.832001C89.8504 -0.826436 89.8009 -0.81403 89.7842 -0.796667C89.7675 -0.779306 89.7845 -0.757932 89.8326 -0.735775C89.8807 -0.713619 89.9574 -0.69189 90.0509 -0.673871C90.1445 -0.655853 90.2499 -0.642528 90.3512 -0.635913C90.7336 -0.630376 91.0982 -0.633187 91.4406 -0.644315ZM129.177 -0.562985C129.193 -0.590803 129.213 -0.624184 129.024 -0.647644C128.974 -0.659554 128.916 -0.669795 128.855 -0.677345C128.794 -0.684895 128.732 -0.689482 128.677 -0.69065C128.677 -0.69065 128.657 -0.657267 128.644 -0.635013L129.177 -0.562985ZM155.382 45.6208L154.96 45.6462L155.15 45.6696L155.65 45.6838L155.382 45.6208ZM303.868 9.21272C303.71 9.19317 303.552 9.17362 303.529 9.21257C303.496 9.21859 303.475 9.2273 303.469 9.23795C303.462 9.24859 303.471 9.26087 303.493 9.27376C303.493 9.27376 303.714 9.30114 303.808 9.31287L303.868 9.21272ZM279.284 9.5242C279.18 9.52197 279.087 9.52458 279.009 9.53187L278.989 9.56525L279.305 9.60435L279.284 9.5242ZM65.0444 17.4779C64.9225 17.4576 64.7932 17.4416 64.6656 17.431L64.5077 17.4114C64.5077 17.4114 64.6773 17.4683 64.772 17.48C64.8667 17.4917 64.9431 17.4773 65.0444 17.4779Z' fill='%23F52B53'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 385px;
}

.best-destination-sec a.btnn {
  background: #f52b53;
  border-radius: 10px;
  box-shadow: 0px 20px 35px rgba(245, 43, 83, 0.1);
}

.best-destination-sec a.btnn:hover {
  background: transparent;
}

.img-wrap {
  width: 490px;
  height: 390px;
  position: relative;
  margin: auto;
}

.img-wrap .img-circle {
  width: 390px;
  height: 390px;
  border-radius: 100%;
  margin-left: auto;
  overflow: hidden;
}

.img-wrap .img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-img2 {
  position: absolute;
  bottom: 0;
  width: 166px;
  height: 241px;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.best-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grdnt-img {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.prop-img {
  position: absolute;
  right: 0;
  top: -2em;
  z-index: -1;
}

.destination-prop {
  position: absolute;
  top: -13em;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.destination-prop img {
  width: 100%;
  height: 100%;
}

/* TRENDIND DESTINATION */
.trending-destination {
  padding: 106px 0 112px;
  position: relative;
  background: url(images/Decore.png) no-repeat;
  background-position: top left;
}

/* .decore-img {
  position: absolute;
  bottom: 0;
  left: 0;
} */
.trending-destination .top-heading h2 {
  text-align: center;
  margin-top: 8px;
}

.trending-destination .top-heading em,
.edit-profile-container .top-heading em,
.create-new-questions-container .top-heading em {
  text-align: center;
  display: block;
  color: #fd3385;
}

.trending-destination .top-heading h2 span,
.page-template-default .inner-page-content .top-heading h2 span {
  position: relative;
}

.form_headings a {
  display: inline-block;
  font-family: Volkhov;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #181e4b;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

.wp-singular.page-template-default .inner-page-content .top-heading form span {
  display: block;
  text-align: left;
}

.wp-singular.page-template-default .inner-page-content .top-heading form input,
.wp-singular.page-template-default .inner-page-content .top-heading form textarea {
  width: 100%;
  min-height: 45px;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fd3385;
  padding: 15px 20px;
  color: black;
  font-size: 18px;
  font-weight: 600;
  ;
}

.wp-singular.page-template-default .inner-page-content .top-heading form input[type="submit"] {
  min-height: 40px;
  background: #fd3355;
  border: 1px solid #fd3355;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #ffffff !important;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.wp-singular.page-template-default .inner-page-content .top-heading form input[type="submit"]:hover {
  color: #fd3355 !important;
  background: #fff;
}
.middle_form iframe {
    width: 100% !important;
}
.wp-singular.page-template-default .inner-page-content .top-heading form {
  max-width: 700px;
  margin: 0 auto;
}

.wp-singular.page-template-default .inner-page-content .top-heading form span.wpcf7-spinner {
  display: block;
  margin: 0;
  max-width: 25px;
  margin: 10px auto 0;
}

.wp-singular.page-template-default .inner-page-content .top-heading form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  margin: 0 10px 10px;
}

.wp-singular.page-template-default .inner-page-content .top-heading form textarea {
  max-height: 130px;
  min-height: 120px;
}

.wp-singular.page-template-default .inner-page-content .top-heading form .input_wrapper {
  margin-bottom: 15px;
}

.wp-singular.page-template-default.page-id-473 .inner-page-content {
  padding: 60px 0 45px;
}

.form_headings a:hover {
  color: #fd3385;
}

.trending-destination .top-heading h2 span::before,
.page-template-default .inner-page-content .top-heading h2 span::before {
  content: "";
  position: absolute;
  bottom: -0.8em;
  right: 0em;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='385' height='12' viewBox='0 0 385 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='385' height='12'%3E%3Crect width='385' height='12' fill='%23F52B53'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_484)'%3E%3Cpath d='M57.8283 -2.53796L58.7692 -2.69614L56.9382 -2.92292L57.8159 -3.08892C58.6961 -3.0874 59.8364 -2.83866 60.457 -2.97083C60.5328 -3.09879 59.5744 -3.13986 59.3298 -3.24181C59.1134 -3.34631 58.9368 -3.45013 58.8021 -3.55202C59.2814 -3.55092 59.8084 -3.52628 60.3517 -3.47953C61.0825 -3.40319 61.7994 -3.36607 62.4231 -3.37229C63.6986 -3.35167 64.9308 -3.37224 66.3175 -3.36771L65.8561 -3.67567L67.6433 -3.60362C67.8327 -3.58016 68.0585 -3.61789 68.2446 -3.58887C69.7934 -3.34329 70.4488 -3.47711 71.1923 -3.58807C71.3448 -3.61678 71.5284 -3.63822 71.7384 -3.65182C73.8046 -3.59299 75.6677 -3.24878 77.5284 -3.07207C77.8786 -3.02695 78.2145 -2.96904 78.5123 -2.90243C79.1595 -2.77295 79.8794 -2.66724 80.6062 -2.59497C81.3329 -2.52269 82.0433 -2.48616 82.6724 -2.48871C84.0636 -2.49157 85.6353 -2.40593 87.2355 -2.24008C87.7114 -2.18545 88.1875 -2.14941 88.6336 -2.13426C89.0798 -2.11911 89.4861 -2.12517 89.8266 -2.15207L90.9085 -1.97627C91.3774 -2.04761 91.972 -2.08675 92.6563 -2.09131C93.3406 -2.09587 94.1001 -2.06577 94.889 -2.00283C95.7296 -1.93455 96.5834 -1.88852 97.4556 -1.81634C99.2572 -1.67832 101.011 -1.59392 102.661 -1.56575C105.119 -1.48225 107.521 -1.4177 110.001 -1.31361C111.552 -1.26336 113.064 -1.23573 114.527 -1.23085C116.279 -1.21119 118.174 -1.11605 120.121 -0.950018C120.029 -0.794239 119.175 -0.840261 118.602 -0.845533C116.754 -0.871425 114.862 -0.938519 112.96 -0.988921C112.103 -1.0086 111.27 -1.01605 110.466 -1.01122C109.12 -1.01768 107.702 -1.05919 106.235 -1.13504C103.918 -1.2185 101.675 -1.25861 99.5289 -1.25498C99.3606 -1.24881 99.2065 -1.23788 99.069 -1.22236C99.0403 -1.20893 99.0346 -1.19198 99.0525 -1.17315C99.0704 -1.15433 99.1113 -1.13424 99.1712 -1.11484C99.2311 -1.09543 99.3081 -1.07735 99.3947 -1.06231C99.4814 -1.04728 99.5748 -1.0358 99.6661 -1.02897C100.518 -0.9234 101.434 -0.810013 102.238 -0.794063C102.269 -0.792869 102.302 -0.790148 102.335 -0.78609C102.367 -0.782033 102.399 -0.776742 102.427 -0.770603C104.227 -0.54773 105.706 -0.585445 107.108 -0.549184C109.435 -0.451184 111.679 -0.405408 113.805 -0.412547C114.126 -0.412062 114.473 -0.399322 114.833 -0.374789C117.059 -0.275339 119.141 -0.264217 120.981 -0.341923C121.738 -0.361611 122.442 -0.405805 123.256 -0.406544C123.757 -0.409586 124.193 -0.437788 124.538 -0.489463C124.883 -0.541139 125.13 -0.615218 125.264 -0.707246C125.607 -0.658794 125.956 -0.615613 126.305 -0.57822C126.514 -0.556839 126.715 -0.551159 126.866 -0.562348C127.017 -0.573536 127.108 -0.600756 127.121 -0.638501C127.183 -0.744209 126.706 -0.797294 126.293 -0.842561C126.542 -0.865231 126.823 -0.878568 127.13 -0.88225C128.854 -0.906404 130.703 -0.877896 132.637 -0.797352C134.138 -0.700943 135.337 -0.779413 136.917 -0.643457C137.107 -0.619996 137.262 -0.65443 137.437 -0.662698C137.891 -0.706236 138.458 -0.716022 139.087 -0.6912C139.716 -0.666377 140.388 -0.607695 141.046 -0.520245C141.865 -0.759166 143.635 -0.486219 144.942 -0.461688C145.345 -0.340185 144.883 -0.361545 144.863 -0.328164C144.843 -0.294782 144.863 -0.328171 144.705 -0.347722C143.4 -0.175652 141.612 -0.138132 139.593 -0.240435C139.219 -0.240009 138.863 -0.232171 138.528 -0.216993C138.021 -0.19551 137.449 -0.197655 136.838 -0.223334C136.169 -0.242193 135.556 -0.233236 135.026 -0.196896C134.721 -0.197488 134.463 -0.179283 134.276 -0.143957C134.09 -0.108631 133.98 -0.0573284 133.957 0.00518023C134.161 0.0533705 134.386 0.0974645 134.625 0.135713C135.873 0.28673 137.118 0.34924 138.114 0.310944C139.847 0.244959 141.91 0.309349 143.753 0.286823C144.999 0.277698 146.325 0.303691 147.706 0.36432C147.706 0.36432 147.67 0.425519 147.666 0.431082C147.83 0.45758 148.001 0.478839 148.172 0.493644C148.172 0.493644 148.172 0.493645 148.188 0.465827C148.112 0.439112 148.01 0.413982 147.892 0.393344L147.482 0.342512C147.761 0.329283 148.021 0.289898 148.312 0.313962C148.924 0.358668 149.51 0.377542 150.033 0.369462C150.556 0.361381 151.006 0.326508 151.356 0.266939C151.976 0.19059 152.747 0.155872 153.619 0.165022C154.287 0.156686 154.931 0.138772 155.548 0.111367C155.548 0.111367 155.588 0.0446111 155.88 0.00912881C155.603 -0.0346331 155.315 -0.0703692 155.028 -0.0964382C153.779 -0.161568 152.526 -0.221133 151.299 -0.26566C150.847 -0.270471 150.422 -0.26301 150.032 -0.243424C148.952 -0.220505 147.738 -0.253035 146.462 -0.339115C146.462 -0.339115 146.21 -0.370393 146.084 -0.386033C146.442 -0.532787 147.676 -0.385869 148.176 -0.485254C148.479 -0.483446 149.014 -0.470948 148.996 -0.497113C148.954 -0.532026 148.949 -0.564463 148.981 -0.592091C149.013 -0.61972 149.082 -0.641861 149.181 -0.656921C149.281 -0.671984 149.409 -0.679596 149.558 -0.67921C149.706 -0.678822 149.87 -0.670442 150.038 -0.654682C151.443 -0.569418 152.767 -0.545706 153.928 -0.585001C154.368 -0.584244 154.861 -0.558972 155.298 -0.55265C155.565 -0.545034 155.81 -0.549269 156.017 -0.565121C157.072 -0.681863 158.492 -0.690389 160.064 -0.589418C160.824 -0.553115 161.533 -0.548262 162.157 -0.575103C162.6 -0.579906 162.788 -0.496907 163.104 -0.457806L164.444 -0.375382L162.723 -0.272102C163.091 -0.0354174 163.383 0.0426247 163.984 0.0573704C164.862 0.0796373 165.716 0.0896969 166.542 0.087487C167.153 0.0855414 167.658 0.034571 168.485 0.125104C168.631 0.139871 168.772 0.144649 168.884 0.138642C169.853 0.0582657 171.02 0.0398196 172.305 0.0845627C172.97 -0.0659458 174.103 0.0803877 175.152 0.198292C175.49 0.0849194 174.877 0.0328776 174.511 -0.0362977C175.388 -0.0292163 176.272 -0.0332602 177.177 -0.0167062C177.449 -0.0227315 177.76 -0.0124229 178.086 0.0134106C178.412 0.0392431 178.743 0.0798925 179.054 0.132182C179.205 0.165969 179.388 0.191396 179.564 0.203188C179.74 0.214977 179.896 0.212227 179.999 0.195506C180.469 0.146192 181.221 0.191613 181.61 0.108313C181.748 0.0891562 181.945 0.0864818 182.166 0.100759C182.387 0.115034 182.618 0.145336 182.817 0.186233C182.599 0.198993 182.405 0.219086 182.24 0.24607C181.645 0.333725 181.864 0.480188 182.619 0.693119C183.778 0.681409 184.962 0.684733 186.036 0.644603C186.635 0.608579 187.369 0.61984 188.155 0.677125C188.941 0.734407 189.748 0.835442 190.486 0.968864C190.753 1.02017 191.058 1.0557 191.339 1.06841C191.62 1.08112 191.858 1.07007 192.005 1.03745C192.096 0.999727 192.124 0.951984 192.087 0.898361L191.329 0.804525C191.329 0.804525 191.359 0.754453 191.366 0.743326L192.455 0.734912C193.031 0.73462 193.632 0.74937 194.177 0.745168C194.977 0.717224 195.891 0.732799 196.861 0.790928C197.756 0.850535 198.636 0.895589 199.492 0.925695C200.321 0.956682 200.922 0.857894 201.71 0.842118C202.307 0.830226 202.963 0.842935 203.654 0.879746C204.847 0.945035 205.942 0.945157 206.839 0.880098C207.885 1.23062 208.393 1.28761 209.364 1.1929L209.821 1.16584L209.946 1.24102L210.295 1.22449C210.947 1.20976 211.6 1.19504 212.281 1.18979C213.227 1.22232 214.25 1.30984 215.248 1.4438C215.437 1.46726 215.695 1.54697 215.861 1.60937C216.028 1.67178 216.39 1.86004 216.657 1.98259C216.366 2.07206 216.045 2.15761 215.814 2.26046C215.791 2.27803 215.793 2.29898 215.821 2.32163C215.848 2.34428 215.9 2.36799 215.972 2.39087C216.045 2.41374 216.135 2.43513 216.236 2.45333C216.338 2.47153 216.447 2.48602 216.556 2.49565C216.768 2.51639 216.978 2.53021 217.176 2.53656C218.151 2.5475 219.085 2.53937 219.969 2.51224C220.291 2.47398 220.733 2.47034 221.224 2.50192C221.715 2.5335 222.227 2.59848 222.678 2.68655C223.834 2.63368 225.178 2.6493 226.616 2.73233C228.137 2.68183 229.974 2.78396 231.395 2.67331C231.362 2.72895 231.509 2.82473 231.713 2.87992C232.037 2.96375 232.403 3.04144 232.797 3.1097L235.802 3.24297C235.914 3.3115 236.054 3.38087 236.221 3.45018C236.335 3.50493 236.534 3.55851 236.775 3.59955C237.017 3.64059 237.282 3.66588 237.514 3.67005C238.112 3.69035 238.613 3.64495 239.326 3.75713C238.228 3.86318 236.748 3.84909 235.148 3.71738C233.645 3.6172 232.199 3.56714 230.864 3.56904C230.424 3.56828 229.844 3.57413 229.707 3.63473C229.402 3.80599 228.605 3.77892 227.675 3.74733C226.944 3.71275 226.277 3.71663 225.727 3.75865C225.178 3.80068 224.763 3.87965 224.515 3.98907C224.453 4.09477 224.603 4.185 225.244 4.24651L227.911 4.49316C228.304 4.46145 228.676 4.42391 229.028 4.3807C229.619 4.32331 230.35 4.30756 231.163 4.33467C231.975 4.36178 232.848 4.43102 233.713 4.53701C234.155 4.59175 234.597 4.64649 234.918 4.62048C235.199 4.5906 235.458 4.55483 235.693 4.51343C235.74 4.48568 235.759 4.45374 235.749 4.41885C235.919 4.43507 236.089 4.45617 236.254 4.48141C237.57 4.77585 238.59 4.77075 239.516 4.69438C239.767 4.67168 239.958 4.63559 240.212 4.60733C240.466 4.57906 240.555 4.54238 240.786 4.55305C242.627 4.64962 243.157 4.32709 244.708 4.34004C244.783 4.32744 244.83 4.30861 244.844 4.28527C244.858 4.26194 244.838 4.23486 244.787 4.20652C244.677 4.18093 244.551 4.15893 244.418 4.14253C244.286 4.12613 244.152 4.11587 244.029 4.11268C243.315 4.07129 242.685 4.08398 242.246 4.14858C241.935 4.17498 241.605 4.19602 241.26 4.21157L239.706 3.7445C241.211 3.78732 242.634 3.78704 243.943 3.74367C244.228 3.71931 244.712 3.76127 245.114 3.76925L248.07 3.8129C248.678 3.81652 249.196 3.7433 250.043 3.91398C250.043 3.91398 250.603 3.94151 250.752 3.9182C250.902 3.8949 251.564 3.74995 251.959 3.65553C252.417 3.68245 253.052 3.75509 253.337 3.73074C253.836 3.67092 254.268 3.59423 254.625 3.50205L256.411 3.63364C256.409 3.75054 256.344 3.86051 256.216 3.96189C256.077 4.05966 256.082 4.17702 256.23 4.30437C256.379 4.43173 256.666 4.56546 257.07 4.69465L258.833 5.37885C259.121 5.42467 259.428 5.45551 259.712 5.46719C259.996 5.47887 260.243 5.47082 260.421 5.44413C261.18 5.3649 262.03 5.30296 262.788 5.22373C263.767 5.34494 263.515 5.54072 264.227 5.71245L266.531 5.99788C266.883 6.26238 267.241 6.51575 266.172 6.6043C265.96 6.61979 266.103 6.72114 265.909 6.76279C266.74 6.96129 267.654 7.02071 268.496 7.14297C268.828 7.23089 269.106 7.32397 269.316 7.41769C269.547 7.55882 270.014 7.70297 270.617 7.81904C271.221 7.9351 271.911 8.01375 272.54 8.03801C273.596 8.11232 274.676 8.22392 275.734 8.36782C276.095 8.41785 276.466 8.45432 276.822 8.47473C277.178 8.49515 277.511 8.49906 277.798 8.48619C278.821 8.46353 279.687 8.38562 280.34 8.25752C280.985 8.14881 281.855 8.09641 282.87 8.10508C284.607 8.32013 284.957 8.64418 286.008 8.9296L284.193 8.9616C284.127 9.07287 284.247 9.21317 283.503 9.2106C282.759 9.20803 283.136 9.3145 283.377 9.42201C283.462 9.4761 283.628 9.53173 283.847 9.5795C284.066 9.62726 284.324 9.66422 284.578 9.68412L286.123 9.82173C286.671 9.87411 287.201 9.89647 287.655 9.88637C288.109 9.87627 288.47 9.8341 288.698 9.76449C288.96 9.69838 289.321 9.65367 289.759 9.63308C290.317 9.57916 290.776 9.49896 291.119 9.39552L293.301 9.54623C293.393 9.44228 293.693 9.36939 294.149 9.3399C294.605 9.31039 295.189 9.32608 295.803 9.38432L297.273 9.47682C298.907 9.57774 299.266 9.54452 299.745 9.25145L297.784 8.72799C298.069 8.59011 298.344 8.46892 298.62 8.34772C298.131 8.17526 297.48 8.01215 296.731 7.87494C296.032 7.72751 295.314 7.58472 294.579 7.44712C293.781 7.30651 292.938 7.18425 291.948 7.02574C291.775 6.97447 291.524 6.88363 291.203 6.79612C290.882 6.71107 290.547 6.6277 290.199 6.54634C290.265 6.43507 290.324 6.33493 290.197 6.20576C290.807 6.24697 291.437 6.31906 292.031 6.41551C292.625 6.51197 293.163 6.62976 293.597 6.75827C293.67 6.78105 293.76 6.80246 293.86 6.82104C293.96 6.83961 294.068 6.85493 294.178 6.86594C295.249 6.9449 295.761 7.10985 296.285 7.3121C296.638 7.41549 297.093 7.50731 297.587 7.57481C298.534 7.69212 299.461 7.8428 300.367 7.97289C300.644 8.01623 300.932 8.05191 301.219 8.07845C302.166 8.16284 303.118 8.28084 304.029 8.42645C304.326 8.46346 304.611 8.51243 304.86 8.56928C305.11 8.62613 305.316 8.68919 305.462 8.75322C305.236 8.82336 305.115 8.9119 305.104 9.0135C305.065 9.08026 305.73 9.21636 306.044 9.31501C306.358 9.41365 305.742 9.36717 305.533 9.3771C304.674 9.39618 304.515 9.43617 305.029 9.65512C305.201 9.72396 305.315 9.79285 305.364 9.85749C305.413 9.92213 305.396 9.98116 305.315 10.0309C305.193 10.2367 304.821 10.4058 304.566 10.6071C304.962 10.7397 305.624 10.8814 305.696 11.0456C305.731 11.082 305.804 11.1206 305.91 11.1586C306.017 11.1965 306.154 11.2329 306.311 11.2651C306.727 11.3346 307.105 11.4177 307.416 11.508C307.726 11.5983 307.962 11.6933 308.104 11.7857C308.15 11.824 308.262 11.8645 308.418 11.8993C308.573 11.934 308.76 11.9604 308.942 11.9731C309.158 11.9887 309.352 11.9867 309.484 11.9674C309.615 11.948 309.673 11.913 309.647 11.8694C309.652 11.7874 309.624 11.702 309.561 11.6139C309.597 11.5527 309.634 11.4915 309.49 11.3901C310.138 11.4271 310.817 11.5012 311.455 11.6045C312.093 11.7077 312.664 11.836 313.108 11.9756C313.599 12.1199 314.051 12.2715 314.595 12.4404C314.483 12.6295 314.483 12.6295 315.64 12.964L321.779 13.1271L323.037 13.3486C324.21 13.5417 324.489 13.5284 325.226 13.4286L325.722 13.3348C326.764 13.4638 327.964 13.6124 328.615 13.3706C328.827 13.5282 328.965 13.5811 328.917 13.6051C328.606 13.8376 328.065 14.0349 327.317 14.1892C327.126 14.2253 326.992 14.2803 326.769 14.3125C326.052 14.4941 325.886 14.7747 326.304 15.097C326.512 15.2396 326.814 15.3856 327.2 15.5303C326.635 15.7312 325.887 15.8976 324.975 16.0252C324.201 16.1238 323.564 16.2559 323.082 16.4177C322.649 16.5809 322 16.7035 321.174 16.7786C320.754 16.8105 320.448 16.8735 320.286 16.9613C320.238 17.1989 320.349 17.4533 320.616 17.7188C320.667 17.7996 320.81 17.8869 321.035 17.9738C321.26 18.0607 321.56 18.1449 321.912 18.2197C321.912 18.2197 322.082 18.2766 322.163 18.3106C322.231 18.5983 321.977 18.8519 321.418 19.0543C321.326 19.1117 321.138 19.1532 320.875 19.1742C320.612 19.1953 320.283 19.1951 319.923 19.1738C319.164 19.1395 318.455 19.1353 317.721 19.116C316.93 19.0888 316.233 19.1102 315.704 19.1782C315.175 19.2461 314.833 19.3579 314.714 19.502C314.706 19.5427 314.683 19.5818 314.644 19.6188C314.622 19.6379 314.61 19.6584 314.608 19.68L316.294 20.1516L314.387 20.3393C314.275 20.5285 315.19 20.6419 315.649 20.7823L315.365 20.8607C315 20.905 314.508 20.8202 314.063 20.771L313.621 20.7163L313.568 20.8053C313.293 20.9265 312.29 20.7903 311.898 20.8791C311.507 20.968 311.786 21.0683 312.373 21.1648C312.78 21.2366 313.218 21.2938 313.653 21.3322C314.088 21.3706 314.509 21.3891 314.885 21.3864C315.109 21.3769 315.294 21.3552 315.431 21.3226C316.222 21.184 317.097 21.0648 318.048 20.966C318.777 20.8772 319.69 20.8395 320.723 20.8554C321.026 20.8487 321.391 20.8697 321.755 20.9147C322.119 20.9598 322.458 21.026 322.712 21.1017L323.247 21.1142C323.247 21.1142 323.539 21.1922 323.498 21.205C323.294 21.4362 323.531 21.7189 324.172 22.0111L323.614 22.0376C322.817 22.0105 323.323 22.1866 323.203 22.2734C322.637 22.257 321.901 22.1837 321.633 22.2938L321.231 22.2858L321.388 22.3054L321.579 22.2693L322.329 22.4338C321.974 22.4615 321.716 22.4953 321.403 22.5102C321.229 22.5231 321.091 22.546 320.997 22.5774C320.903 22.6088 320.854 22.6481 320.854 22.693C320.855 22.762 320.761 22.8201 320.582 22.8617C320.403 22.9033 320.145 22.9271 319.832 22.9307C319.458 22.9322 319.244 23.0072 319.025 23.0339L319.977 23.4862C319.977 23.4862 319.503 23.4275 319.761 23.5072L319.794 23.4516L320.371 23.5648C320.787 23.6641 321.077 23.6881 321.323 23.617C321.568 23.5459 321.512 23.6405 321.63 23.6133C321.587 23.6856 321.32 23.7361 321.091 23.7794C320.826 23.8134 320.527 23.8385 320.2 23.8541C320.79 24.1722 320.819 24.1816 319.956 24.2658C319.092 24.35 319.39 24.4765 318.668 24.4945C317.945 24.5126 318.767 24.7278 319.25 24.7697C319.609 24.7973 319.974 24.8403 320.321 24.8957C320.669 24.9511 320.99 25.0176 321.263 25.0906L321.118 25.3354C320.905 25.3152 320.692 25.2888 320.486 25.2572C319.786 25.1228 319.15 24.9962 318.527 25.0743L318.824 25.2604L316.651 25.1525C316.707 25.2919 317.039 25.4507 317.575 25.5953C317.494 25.6748 317.444 25.7585 317.426 25.8457C317.39 25.9069 317.176 25.8684 317.036 25.875C316.539 25.8853 316.13 25.9267 315.847 25.9958C315.564 26.0648 315.415 26.1594 315.412 26.2711C315.356 26.3656 316.121 26.5619 316.599 26.5554C317.793 26.5743 319.085 26.6471 320.403 26.7698C321.207 26.7857 321.32 26.537 322.643 26.7068C322.669 26.8216 322.5 26.9146 322.16 26.9717C321.821 27.0288 321.33 27.0468 320.761 27.0231C321.085 27.2782 322.875 27.3447 322.954 27.6113C322.508 27.5924 322.032 27.5481 321.571 27.4827C321.111 27.4173 320.682 27.3331 320.329 27.2383C320.252 27.215 320.157 27.1934 320.05 27.1757C319.944 27.158 319.83 27.1447 319.72 27.137C319.609 27.1293 319.506 27.1274 319.419 27.1316C319.332 27.1358 319.264 27.1459 319.222 27.161C319.47 27.2574 319.743 27.3688 320.054 27.473C320.365 27.5772 320.44 27.6223 320.664 27.6442C322.337 27.8514 323.133 28.2246 324.58 28.4696C324.959 28.5165 325.006 28.6657 324.678 28.6488C324.365 28.632 324.081 28.6342 323.86 28.6552C323.638 28.6762 323.486 28.7152 323.421 28.7679C323.178 28.8293 322.876 28.8782 322.521 28.9133C324.006 29.2963 325.776 29.6347 327.666 29.8968C328.023 29.9486 328.397 29.9801 328.73 29.9869C329.785 29.9872 330.904 30.0176 332.066 30.0774C332.477 30.0937 332.858 30.0922 333.186 30.0729C334.264 30.0272 335.12 30.1273 335.902 30.4092L337.195 30.8561C337.153 30.9284 336.935 31.009 336.768 31.1197L337.779 31.3584L345.492 30.8087L347.04 31.3409L349.261 31.3113C349.431 31.3267 349.602 31.3479 349.766 31.3739C350.215 31.531 350.566 31.682 351.053 31.8319C351.54 31.9818 352.411 32 353.018 32.1767C353.625 32.3534 354.232 32.357 354.983 32.462C355.054 32.5988 354.981 32.7219 354.769 32.8236C354.7 32.9405 354.318 33.0127 354.252 33.1239C354.26 33.2364 354.118 33.3319 353.84 33.4017C353.562 33.4715 353.156 33.5135 352.66 33.5239C351.27 33.7633 349.594 33.9338 347.683 34.0302C347.515 34.0372 347.376 34.0534 347.274 34.0778C347.172 34.1022 347.11 34.1342 347.091 34.1719C347.094 34.281 346.966 34.3753 346.718 34.4479C346.47 34.5205 346.107 34.5695 345.656 34.5914C345.536 34.5958 345.446 34.6095 345.396 34.6308C345.225 34.6445 345.1 34.6708 345.034 34.7071C344.968 34.7435 344.963 34.7886 345.019 34.8381C345.074 34.8877 345.19 34.94 345.353 34.99C345.516 35.04 345.722 35.086 345.951 35.1235C346.283 35.1841 346.622 35.242 346.966 35.2971C346.947 35.3305 346.605 35.3359 346.654 35.3659C346.79 35.4619 346.821 35.5519 346.746 35.6286C346.671 35.7054 346.492 35.7668 346.223 35.8082L348.066 36.5859C349.185 36.6936 350.283 36.8763 351.151 37.0993C351.152 37.1358 351.102 37.1664 351.006 37.1881C350.91 37.2097 350.771 37.2216 350.603 37.2226C350.153 37.2385 349.728 37.2695 349.243 37.2871C348.947 37.3002 348.7 37.3291 348.518 37.3721C348.335 37.4151 348.221 37.4714 348.18 37.5376L349.262 37.8269C348.916 37.8974 348.658 37.9312 348.429 37.9745C348.559 38.0655 348.782 38.1595 349.082 38.2494C349.381 38.3393 349.748 38.4226 350.155 38.4929C350.265 38.5074 350.376 38.518 350.483 38.5241C350.59 38.5301 350.69 38.5315 350.778 38.5282C351.617 38.429 352.597 38.6042 353.549 38.7699C354.502 38.9356 355.019 39.0355 355.722 39.1644L357.067 39.1817C357.407 39.2427 357.711 39.3144 357.954 39.3912C358.197 39.4679 358.372 39.5475 358.465 39.6236C358.393 39.746 357.755 39.679 357.375 39.6916C356.473 39.7678 355.287 39.7515 354.013 39.6455C353.698 39.6064 353.374 39.638 353.067 39.6417C352.404 39.657 351.767 39.6818 351.159 39.716C350.758 39.7479 350.384 39.7873 350.038 39.834C349.946 39.9898 351.4 40.1101 350.575 40.1871C350.859 40.2223 350.965 40.2713 351.111 40.2536C352.047 40.3547 352.969 40.4047 353.771 40.3978C355.309 40.3763 357.055 40.4473 358.867 40.6049C360.822 40.7683 362.698 40.8368 364.339 40.805C364.965 40.8032 365.663 40.8366 366.383 40.9028C367.232 40.9945 368.075 41.0521 368.858 41.072C369.117 41.0727 369.406 41.0883 369.7 41.1175C369.995 41.1468 370.288 41.1888 370.554 41.2403C370.531 41.2792 370.277 41.3075 370.334 41.3264C371.144 41.6179 371.472 41.9213 372.719 42.2191C373.571 42.3246 374.55 42.4458 375.107 42.3059C375.665 42.1659 375.465 42.0456 374.356 41.6872C374.596 41.6821 374.886 41.6988 375.175 41.7345C375.463 41.7703 375.732 41.8227 375.934 41.8827L376.894 42.1509L377.758 42.4072C377.682 42.5352 377.623 42.6353 377.56 42.7411C377.461 42.8533 377.57 42.99 377.871 43.1319C378.052 43.2093 378.211 43.2868 378.344 43.3636C378.884 43.6707 379.041 43.961 378.796 44.2019C378.326 44.5483 377.672 44.867 376.842 45.1543C375.965 45.4338 375.484 45.7864 374.762 46.0911C374.393 46.2298 373.945 46.3541 373.423 46.4627C372.433 46.7044 371.348 46.9343 370.354 47.1815C369.36 47.4286 368.238 47.6062 367.135 47.8099C365.492 48.0517 363.716 48.2605 361.817 48.4352C360.642 48.5883 359.435 48.7374 358.348 48.9134C357.064 49.1117 355.556 49.2541 353.861 49.337C352.364 49.4363 351.026 49.5832 349.874 49.7748C349.753 49.7956 349.658 49.8219 349.59 49.8532C349.383 50.0486 348.801 50.1863 347.935 50.2453C347.987 50.3025 348.055 50.3607 348.136 50.4196C348.257 50.4898 348.282 50.5554 348.208 50.6081C348.135 50.6607 347.966 50.698 347.724 50.7149C347.031 50.7633 346.455 50.8455 346.021 50.9579C345.862 50.986 345.763 51.0271 345.733 51.0775C345.704 51.1279 345.743 51.1861 345.85 51.2472C345.944 51.31 345.951 51.3678 345.87 51.4131C345.788 51.4585 345.623 51.4892 345.394 51.5013C344.807 51.5608 344.179 51.6086 343.513 51.6446C342.096 51.7238 340.449 51.7228 338.669 51.6418C338.48 51.6183 338.289 51.6544 338.068 51.627C336.809 51.5362 335.641 51.5221 334.703 51.5865C333.604 51.6116 332.455 51.6066 331.295 51.6184C329.621 51.6105 328.076 51.6583 326.704 51.7604C325.136 51.6617 324.255 51.8333 322.931 51.8366C321.709 51.8542 320.551 51.8964 319.468 51.963C317.721 52.0512 315.981 52.1283 314.259 52.2316C312.644 52.2808 311.157 52.3749 309.823 52.5123C309.312 52.5743 308.387 52.4777 308.038 52.6077C307.69 52.7378 306.988 52.7224 306.42 52.7656L304.628 52.8722C304.32 52.8975 303.982 52.9136 303.617 52.9201C301.952 52.9288 300.798 53.1025 299.252 53.1379L299.094 53.1184C296.349 53.3765 293.208 53.5182 289.763 53.5393C287.751 53.6185 285.55 53.6147 283.415 53.6727C282.905 53.7888 281.703 53.6457 281.064 53.7517C280.425 53.8577 279.381 53.7883 278.558 53.8057C277.734 53.8231 276.929 53.8667 276.049 53.8652C275.284 53.8657 274.639 53.913 274.171 54.0029C273.103 54.1515 271.802 54.2388 270.325 54.261C268.37 54.2996 266.522 54.3873 264.534 54.368C264.563 54.4763 264.441 54.5684 264.181 54.6349C263.921 54.7014 263.533 54.7398 263.056 54.7463C260.931 54.7876 259.003 54.8952 256.849 54.9271L256.273 54.9274L249.831 54.9895C248.096 55.0015 246.424 55.0214 244.654 55.035C243.991 54.9529 243.975 55.0943 243.516 55.0673C243.388 54.9977 243.237 54.967 243.011 55.0048L242.961 55.0882L235.61 55.1989C232.732 55.2799 229.704 55.3042 226.553 55.2716C225.805 55.2798 225.108 55.3074 224.471 55.3541C223.88 55.3711 223.265 55.3787 222.628 55.3766C221.766 55.3556 220.924 55.345 220.105 55.3448C217.951 55.3767 215.691 55.3595 213.332 55.3362C210.974 55.3128 209.187 55.3543 207.088 55.3511C205.667 55.3482 204.252 55.3342 202.78 55.3013C202.078 55.2859 201.212 55.2026 200.485 55.1722C199.757 55.1418 199.52 55.1423 199.424 55.1901C199.107 55.3241 198.311 55.2374 197.675 55.2244C196.434 55.2021 196.258 55.1564 195.921 54.8101L197.443 54.7C197.817 54.6645 198.286 54.6583 198.806 54.6819C199.326 54.7055 199.88 54.7582 200.413 54.835C200.623 54.8678 200.843 54.8938 201.059 54.9114C201.276 54.929 201.485 54.9378 201.674 54.9374C203.21 54.9186 204.725 54.8792 206.201 54.8471L206.417 54.826L206.43 54.5172C206.235 54.4868 206.033 54.4618 205.831 54.4429L198.426 54.2425C196.727 54.1933 194.963 54.0823 193.296 54.037C191.628 53.9917 190.729 53.964 189.436 53.9172C188.89 53.8906 188.333 53.8556 187.769 53.8124C187.802 53.7827 187.821 53.751 187.826 53.7178C187.855 53.6678 187.895 53.601 187.655 53.5474C187.394 53.4719 187.045 53.4073 186.678 53.3667C186.333 53.3399 185.999 53.3247 185.688 53.3217C184.186 53.2958 182.471 53.1327 180.908 52.8671L180.363 53.0444C178.016 52.9448 175.634 52.8468 173.182 52.7522C172.691 52.7264 172.176 52.6769 171.675 52.6074C171.139 52.5409 170.645 52.4021 170.08 52.3262C169.522 52.2715 168.967 52.2289 168.427 52.1991C168.573 52.1535 168.766 52.117 168.999 52.0909C169.229 52.0817 169.396 52.0532 169.477 52.0095C169.558 51.9658 169.548 51.9092 169.448 51.8479C169.274 51.7426 169.197 51.6435 169.577 51.6309C169.928 51.6069 170.18 51.5549 170.302 51.4811C170.423 51.4073 170.41 51.3148 170.264 51.2144C170.2 51.1557 170.155 51.0982 170.129 51.0424L169.971 51.0228C169.451 50.815 168.411 50.7399 167.664 50.5699C167.312 50.5205 166.947 50.4922 166.628 50.4892C165.802 50.4527 164.998 50.4367 164.145 50.3907C163.737 50.3695 163.31 50.3309 162.89 50.2772C162.29 50.2029 162.227 50.1951 161.879 49.925C162.42 49.9297 162.849 49.8894 163.093 49.8108C163.337 49.7322 163.382 49.6202 163.219 49.4938C162.773 49.2175 162.301 48.9263 160.283 48.73C160.941 48.7203 161.575 48.7011 162.181 48.6724C162.357 48.6663 162.489 48.646 162.559 48.6143C162.629 48.5826 162.634 48.541 162.573 48.4951C162.511 48.4492 162.387 48.4011 162.216 48.3574C162.046 48.3137 161.837 48.2763 161.618 48.2503C160.552 48.0941 159.441 47.9895 158.408 47.9484C157.538 47.9302 156.752 47.9404 155.736 47.9399L154.536 47.7913C154.556 47.7579 154.38 47.7122 154.424 47.6939C154.729 47.5226 155.066 47.3553 155.412 47.1712C154.859 47.0718 154.38 46.9519 154.029 46.825C153.679 46.6982 153.472 46.5696 153.431 46.4541C153.401 46.4192 153.409 46.3874 153.454 46.361C153.499 46.3346 153.58 46.3142 153.691 46.3012C154.007 46.2788 154.251 46.2361 154.403 46.1764C154.556 46.1166 154.614 46.0414 154.573 45.9565L153.64 45.6439C150.831 45.4208 148.073 45.2615 145.416 45.1688L143.017 45.0987C142.728 45.015 142.818 44.9784 143.09 44.9763C143.362 44.9741 144.128 44.9973 144.663 45.0098C145.125 45.0262 145.535 45.0154 145.854 44.9785C146.172 44.9416 146.389 44.8798 146.482 44.7992L145.677 44.4426C145.716 44.3759 145.772 44.2813 146.209 44.2876C146.508 44.2799 146.727 44.2463 146.833 44.1922C146.939 44.1382 146.925 44.0668 146.792 43.9896C146.772 43.9338 146.802 43.8829 146.881 43.8394C147.527 43.8358 148.17 43.8377 148.756 43.8208C149.029 43.8151 149.26 43.7945 149.432 43.7602C149.605 43.7259 149.715 43.6787 149.755 43.622C149.776 43.5666 149.725 43.5035 149.605 43.4378C149.485 43.3721 149.3 43.3057 149.064 43.2438C148.146 43.1673 147.305 43.1663 146.728 43.2411C146.522 43.2997 146.191 43.3317 145.779 43.3329C145.367 43.3341 144.893 43.3044 144.419 43.2478C143.877 43.1825 143.336 43.1538 142.894 43.1669C142.451 43.1799 142.136 43.2339 142.005 43.319C141.449 43.286 140.955 43.2607 140.469 43.2243C139.894 43.1784 139.352 43.1648 138.899 43.1852C138.175 43.1995 137.394 43.1911 136.576 43.1602C134.215 43.0828 131.852 43.0111 129.567 42.9789C128.962 42.9697 128.439 42.9945 127.841 42.9742C127.243 42.9539 126.77 43.0087 126.022 42.8982C125.88 42.881 125.737 42.87 125.604 42.866C125.471 42.862 125.352 42.8651 125.257 42.875C123.944 42.9624 122.404 42.9748 120.728 42.9114C118.433 42.8958 116.053 42.8519 113.755 42.8419C113.08 42.8505 112.443 42.8735 111.85 42.9106C111.399 42.9331 110.926 42.9483 110.434 42.9562C110.057 42.9632 109.696 42.9425 109.76 43.0638C109.823 43.1852 109.259 43.1092 108.933 43.0868C107.814 43.028 106.671 42.9483 105.516 42.8487C104.378 42.7405 103.262 42.6775 102.237 42.6636C101.496 42.6554 100.732 42.6863 99.7801 42.5205C99.8164 42.4593 99.8526 42.3981 100.06 42.3342C99.2833 42.1584 98.3972 42.0071 97.475 41.8929C96.5527 41.7787 95.6207 41.7048 94.7562 41.6773L93.564 41.3446C93.2705 41.3055 92.9708 41.277 92.6832 41.2609C92.3957 41.2448 92.1262 41.2414 91.8912 41.2508C91.7097 41.2557 91.4884 41.2433 91.268 41.216C91.0476 41.1887 90.843 41.1483 90.6916 41.1023C90.4652 41.0437 90.1887 40.9931 89.8967 40.957C89.6046 40.9208 89.3101 40.9006 89.0499 40.8989C88.2308 40.8627 87.3564 40.7792 86.5163 40.6568C86.2983 40.5851 86.1617 40.5109 86.1233 40.4436C86.085 40.3762 86.1466 40.3186 86.3005 40.2777C86.5487 40.2056 86.688 40.1137 86.7101 40.0077C86.7322 39.9016 86.6366 39.7835 86.429 39.6606C86.3227 39.5852 86.2872 39.5137 86.3246 39.4506C86.362 39.3875 86.4716 39.334 86.6466 39.2934C87.3001 39.1056 87.1253 39.0004 86.0561 38.6888C85.8825 38.6369 85.6731 38.5883 85.4413 38.5462C85.2096 38.5042 84.9605 38.4695 84.7099 38.4444C84.1219 38.3936 83.5419 38.3559 82.9806 38.3318C82.6649 38.2927 82.3412 38.3242 81.9774 38.3091C80.1586 38.2331 79.8924 38.1105 79.3034 37.8465L78.8741 37.656C78.0779 37.5016 77.2072 37.3735 76.3246 37.2807C75.442 37.1879 74.5696 37.1328 73.7702 37.1194C73.4524 37.1184 73.0871 37.092 72.7302 37.0443C71.5688 36.8985 70.3927 36.7976 69.2797 36.7483C68.5861 36.7206 67.8385 36.6488 67.1266 36.5415C66.4147 36.4343 65.7687 36.2962 65.2664 36.1438C64.8152 36.0065 64.2249 35.8833 63.5777 35.7913C62.82 35.6975 62.7498 35.5873 63.1729 35.5023C63.596 35.4174 64.3047 35.308 64.9337 35.2187C65.1526 35.1884 65.2882 35.139 65.3254 35.0762C65.3627 35.0133 65.3001 34.9394 65.1447 34.8627C65.0449 34.7314 65.0276 34.6068 65.0932 34.492C65.1283 34.4443 65.1041 34.3896 65.0222 34.3315C64.9404 34.2735 64.8028 34.2135 64.6187 34.1557C64.4346 34.0978 64.2084 34.0433 63.9552 33.996C63.702 33.9486 63.4277 33.9095 63.1509 33.8812C61.9828 33.7365 60.8463 33.5957 59.6551 33.49C59.1559 33.4402 58.6572 33.3784 58.1713 33.3062C57.1766 33.1277 56.1125 32.9797 55.0407 32.8707C54.532 32.822 54.0347 32.7368 53.6563 32.6336C52.463 32.3555 51.3635 32.0631 50.3776 31.7617C50.1399 31.6682 49.8291 31.577 49.4643 31.4938C49.0996 31.4106 48.6889 31.3372 48.2581 31.2782C47.9109 31.2352 47.6282 31.1405 47.3605 31.0775C47.166 30.9316 47.1452 30.7966 47.3001 30.6852C47.4551 30.5738 47.7806 30.4897 48.2462 30.4407C48.6877 30.3819 49.1009 30.3136 49.4825 30.2415C49.9426 30.1831 50.4895 30.1481 51.103 30.1376C51.8295 30.1063 52.3668 30.0167 52.6447 29.8806C50.6557 29.6343 48.7643 29.2806 47.021 29.3633L45.6964 29.1395C45.7491 29.0505 45.7953 28.9726 45.8381 28.9003C46.1532 28.7686 46.2516 28.6026 46.125 28.4162C46.0206 28.3261 46.0301 28.2441 46.1523 28.1785C46.2745 28.1129 46.5051 28.066 46.8209 28.0426C48.6915 27.8025 50.8546 27.6404 52.6088 27.368C53.1588 27.3169 53.8027 27.2936 54.5133 27.2993C55.2008 27.2829 55.172 27.1599 54.3809 27.0082C53.9368 26.9289 53.4842 26.8529 53.0247 26.7805C50.9986 26.7684 50.1732 27.132 47.8611 27.0308L46.7895 26.5517C46.4997 26.5443 46.2184 26.5414 45.9475 26.543L42.0706 26.7376C41.7477 26.7474 41.4963 26.7807 41.3451 26.8337C41.1939 26.8868 41.1488 26.9575 41.215 27.0378C41.2412 27.136 41.1878 27.2261 41.0567 27.3048C40.9722 27.3599 41.0263 27.4332 41.2071 27.5086C41.6147 27.6785 41.0917 27.7033 40.7614 27.746C40.677 27.7502 40.5797 27.7497 40.475 27.7447C40.3704 27.7396 40.2606 27.7301 40.1519 27.7167C40.0432 27.7032 39.9379 27.6861 39.842 27.6663C39.7462 27.6465 39.6616 27.6244 39.5934 27.6013C39.0114 27.4397 38.5024 27.2691 37.9304 27.0908C38.3365 26.9201 37.8587 26.64 38.4924 26.4856C38.5633 26.4547 38.5916 26.4171 38.5757 26.3751C38.5599 26.3331 38.5 26.2875 38.4 26.2412C38.1419 26.1217 38.019 26.0051 38.0437 25.9033C38.0683 25.8015 38.2396 25.7181 38.5403 25.6614L38.5766 25.6002C37.7835 25.3945 37.9936 25.2115 37.6822 24.9938L36.9193 24.8515C35.0213 24.5089 35.018 24.5145 33.3839 24.5271C33.0545 24.3967 33.473 24.3769 33.7868 24.362L36.4151 24.2157C38.1334 24.118 39.9018 24.0504 41.8214 24.0134C43.741 23.9765 45.8811 23.8533 47.8652 23.7647C47.9655 23.7578 48.0423 23.7442 48.089 23.7251C48.1357 23.7059 48.151 23.6817 48.1338 23.6546C48.0549 23.6252 47.9516 23.5969 47.8317 23.5717C47.7117 23.5465 47.5781 23.5251 47.4406 23.509C46.8092 23.4308 46.1613 23.3804 45.4885 23.315L44.2341 23.2015L43.8482 23.0522C43.5971 22.9613 43.4255 22.8505 43.0914 22.7852C42.8161 22.7366 42.5172 22.6996 42.2259 22.6782C41.9346 22.6569 41.6616 22.6518 41.4352 22.6637C40.8076 22.6935 40.2398 22.7366 39.6405 22.7759C39.0411 22.8151 38.7108 22.8578 38.1911 22.877C37.1352 22.8858 36.1147 22.9089 35.1341 22.9463C34.3082 23.0348 33.5442 23.1397 32.8471 23.2602C32.4122 23.3079 32.0055 23.365 31.2629 23.3029C30.9106 23.2466 30.6067 23.1726 30.4051 23.0941C30.2035 23.0155 30.1173 22.9375 30.1617 22.8739C30.2015 22.824 30.3143 22.7846 30.4894 22.7592C30.6645 22.7339 30.8961 22.7235 31.1624 22.7291C31.9078 22.7199 32.5971 22.6891 33.2164 22.6371C34.0783 22.543 35.1276 22.5024 36.303 22.5178C36.7016 22.5313 36.9688 22.4808 37.3175 22.4643C37.6662 22.4477 37.9616 22.4067 38.3503 22.4369C39.558 22.5148 40.137 22.3954 40.8607 22.3179C41.1057 22.2835 41.2575 22.2279 41.2994 22.1572C41.3413 22.0865 41.2717 22.0035 41.0982 21.9173C40.7641 21.7456 40.3555 21.5729 39.8787 21.402C39.6333 21.3179 39.3189 21.2381 38.9601 21.1689C38.6014 21.0996 38.208 21.0426 37.811 21.0025C37.5733 20.8974 37.4466 20.794 37.4421 20.7017C37.4377 20.6093 37.5557 20.5311 37.7855 20.4739C38.3712 20.3433 38.8904 20.2106 40.2026 20.2835C40.8196 20.3114 41.4002 20.3167 41.9215 20.2993C43.0776 20.2755 44.4112 20.3277 45.7966 20.4508C46.155 20.4824 46.5073 20.5039 46.8431 20.5147C49.2381 20.5904 51.5201 20.6282 53.8086 20.6548C55.021 20.6676 56.2432 20.6638 57.5089 20.7011C60.4769 20.782 63.1786 20.7404 66.0434 20.7668C67.5438 20.7803 68.8868 20.7258 70.0019 20.6061C70.219 20.5659 70.4055 20.5191 70.5592 20.4661C69.8203 20.327 69.0086 20.2169 68.202 20.1462C67.3953 20.0756 66.6207 20.0469 65.9524 20.0627C65.585 20.1017 65.1101 20.1088 64.5807 20.0833C64.0513 20.0578 63.4882 20.0007 62.9542 19.9183L64.5068 19.8717C65.5363 19.85 66.5908 19.8432 67.5921 19.8119C69.1828 19.7581 70.6571 19.672 72.3043 19.6371C73.6342 19.6051 74.8243 19.5231 75.8372 19.3939C76.569 19.2996 77.4047 19.2328 78.3274 19.1947C78.9833 19.1744 78.9833 19.1744 79.4026 18.9815C79.07 18.8567 78.6398 18.8392 78.2346 18.8368C75.8052 18.7583 73.4932 18.7445 71.3458 18.7958C70.2623 18.8004 69.3011 18.8533 68.5084 18.952C68.3142 18.9937 67.8176 18.9739 67.419 18.9604C66.1693 18.9398 64.975 18.9458 63.8502 18.9783C62.2952 19.0324 60.5633 19.0195 58.7218 18.9403C58.3726 18.8433 58.7745 18.8513 58.7943 18.8179C60.2206 18.7556 61.6186 18.6839 63.0732 18.6312C63.4708 18.6124 63.8958 18.6031 64.3435 18.6034C66.0147 18.6361 67.4074 18.5455 68.3264 18.3442C68.3725 18.2663 68.9771 18.2755 69.2442 18.225C69.3756 18.1813 69.4632 18.1298 69.5042 18.0721C69.115 17.9283 68.6749 17.9275 68.3362 17.9274C67.3531 17.9434 66.4073 17.9739 65.5035 18.0185C64.6633 18.061 63.7332 18.0723 62.7385 18.0523C62.0044 18.033 61.3768 18.0628 60.6361 18.0546C60.2343 18.0375 59.8184 18.0101 59.3968 17.9728C59.8662 17.8726 60.5042 17.811 61.266 17.7923C61.8437 17.7324 62.566 17.7144 62.6583 17.5586C62.3855 17.4472 62.0816 17.4454 61.8375 17.4569C61.3294 17.4565 60.8387 17.4635 60.3679 17.478C59.3695 17.5096 58.2886 17.5101 57.1478 17.4793C56.547 17.4678 55.977 17.4712 55.4473 17.4896C54.2467 17.5141 53.0961 17.5687 51.9968 17.5938C49.745 17.6195 47.6912 17.7115 45.5275 17.76C45.046 17.772 44.6143 17.8141 43.9796 17.7415C43.3449 17.6688 43.3167 17.6594 43.2417 17.6142C43.0641 17.539 43.0103 17.466 43.0914 17.4105C43.2173 17.3586 43.4626 17.3297 43.7835 17.329C45.7177 17.2465 47.5523 17.1306 49.2757 16.982C50.0341 16.9523 50.6986 16.8916 51.2461 16.8021C51.6803 16.7404 52.1953 16.6996 52.775 16.6809C53.6182 16.6363 54.4972 16.6037 55.4085 16.5831C55.8325 16.572 56.193 16.539 56.4689 16.4859C56.7447 16.4329 56.9303 16.361 57.0147 16.2744L55.8975 15.9867C55.722 15.9733 55.5479 15.9617 55.3759 15.952L46.1034 16.1592L45.1851 16.1649C44.1787 16.1477 43.9327 16.1053 42.978 15.7721C45.1568 15.6937 46.8695 15.4652 47.9456 15.1093C47.687 15.0711 47.4219 15.0382 47.1564 15.0116C45.4152 14.9274 43.7692 14.9051 42.2819 14.9454C41.3984 14.9494 40.49 14.9384 39.5783 14.933C39.8449 14.7689 40.8664 14.8178 41.5322 14.7808C43.123 14.723 44.5297 14.6034 45.7074 14.426C46.1134 14.3569 46.6214 14.3126 47.208 14.2954C47.7951 14.2894 48.2855 14.2476 48.6366 14.1734C48.9877 14.0993 49.1887 13.9951 49.2222 13.87C49.2775 13.7567 49.3967 13.6515 49.578 13.5558C49.2573 13.42 48.7481 13.29 48.1459 13.1901C47.5437 13.0902 46.89 13.0274 46.3074 13.0133C45.0636 12.9574 43.7735 12.8659 42.47 12.7411C41.8207 12.6782 41.184 12.642 40.6013 12.6351C40.0874 12.6297 39.5032 12.5843 38.938 12.5056C38.3728 12.427 37.8574 12.3195 37.4706 12.1996C36.9485 12.0513 36.4612 11.9014 35.974 11.7514C35.4868 11.6015 34.9214 11.4121 34.3526 11.2281C33.8511 11.1994 33.3628 11.1809 32.8943 11.1729C32.5298 11.1797 32.1044 11.1596 31.6684 11.1152C31.2324 11.0707 30.8039 11.0036 30.4336 10.9219C30.6508 10.8413 30.8964 10.7702 31.155 10.6768C30.8 10.5535 30.5426 10.4278 30.3984 10.3073C30.2543 10.1868 30.2265 10.074 30.3167 9.97582C30.3694 9.8868 29.9835 9.73747 29.8501 9.61943C29.6784 9.51767 29.6462 9.42271 29.7576 9.34699C29.869 9.27127 30.1188 9.21833 30.4744 9.19511C30.9154 9.15226 31.2743 9.08773 31.5364 9.00416C31.6231 8.98247 31.6672 8.95276 31.6648 8.91775C31.6623 8.88274 31.6133 8.84355 31.5223 8.80376C31.4312 8.76398 31.3011 8.72486 31.1437 8.68999C30.9863 8.65512 30.8067 8.62561 30.6213 8.60417C30.0534 8.54337 29.4894 8.50396 28.9617 8.4882C28.0527 8.45922 27.1824 8.44102 26.3509 8.43359C25.4313 8.4224 24.4083 8.35339 23.3857 8.23355C22.4701 8.12016 21.6493 8.01849 21.2016 7.8018C20.754 7.58512 20.0382 7.59202 19.4878 7.43428C19.797 7.29208 20.3465 7.19329 21.0809 7.14786C21.5615 7.13164 21.9626 7.08908 22.2586 7.02289C22.5546 6.95671 22.7389 6.86837 22.7997 6.76354L21.1288 6.32369C19.7944 6.11661 19.0561 6.27599 17.6142 6.19297L19.0998 6.0306C19.1297 6.01455 19.1409 5.9957 19.1328 5.97496C18.9886 5.64655 18.7591 5.57633 17.2404 5.39421L16.3881 5.28864L15.039 5.16336C14.8229 5.09605 14.6735 5.02587 14.6056 4.95982C14.5377 4.89377 14.5537 4.83417 14.6521 4.78699C14.8498 4.70763 14.9098 4.60623 14.8269 4.49211C14.696 4.41652 14.6852 4.34684 14.7963 4.29515C14.9074 4.24345 15.1334 4.21302 15.4351 4.20914C15.6759 4.20312 15.6938 4.11576 15.8248 4.06629C15.9549 3.99811 16.1777 3.94579 16.4778 3.91289C16.778 3.87999 17.1485 3.86728 17.5643 3.87564C18.79 3.88247 19.9415 3.85688 20.9983 3.79931L20.8088 3.77585C21.9103 3.82639 22.9401 3.83251 23.848 3.79394C24.7578 3.74539 25.9255 3.77653 26.8919 3.74692C27.6786 3.75372 28.2776 3.68652 28.5617 3.55959C28.8368 3.4384 29.8367 3.46668 30.6024 3.48985C31.0559 3.50484 31.4943 3.51119 31.9128 3.50883C32.4745 3.4814 33.1768 3.50725 33.9026 3.58209C34.1204 3.60509 34.3349 3.61726 34.5256 3.61743C36.3707 3.64889 38.2125 3.6859 40.0327 3.70232C40.4529 3.69287 40.9455 3.71452 41.4529 3.76474C41.6661 3.78654 41.8737 3.79558 42.0476 3.79062C44.9237 3.74074 48.1692 3.868 50.9888 3.79918C51.3305 3.78292 51.7088 3.77954 52.1131 3.78913C53.0214 3.82956 53.8101 3.80354 54.3596 3.71503C54.6561 3.66795 55.0362 3.64201 55.4757 3.63885C55.9151 3.6357 56.4043 3.65541 56.912 3.69672C57.7569 3.75142 58.5378 3.75735 59.1723 3.71389C60.4093 3.67374 61.7102 3.65723 63.0648 3.66449C63.4798 3.67151 63.8446 3.65591 64.131 3.61888C64.4174 3.58186 64.6176 3.52441 64.7162 3.45098C64.3835 3.32617 64.0198 3.31099 63.6744 3.32196C62.3358 3.29352 61.0004 3.25951 59.6867 3.24611C58.5109 3.20782 57.3827 3.19612 56.3187 3.21117C55.7904 3.22815 55.1311 3.18944 54.4848 3.10348C53.6927 2.99462 52.8769 2.94054 52.2023 2.95217C51.7022 2.95506 51.1743 2.94568 50.6262 2.92418C50.2754 2.89824 49.9159 2.85371 49.5844 2.79515C49.4529 2.76972 49.3098 2.74833 49.1641 2.73236C49.0185 2.71639 48.8737 2.7062 48.7389 2.70242C48.604 2.69864 48.4819 2.70135 48.3808 2.71041C48.2796 2.71946 48.2014 2.73464 48.1511 2.75498C47.6437 2.92504 46.509 2.83826 45.5374 2.81945C44.0814 2.53162 42.9978 2.70198 41.637 2.53941C41.5294 2.52863 41.4233 2.5221 41.3254 2.52024C41.2274 2.51838 41.1396 2.52121 41.0673 2.52857C38.4338 2.62642 35.3645 2.54487 32.5996 2.57866C32.2947 2.5836 31.9408 2.56667 31.5781 2.52978C29.2078 2.28564 26.9289 2.21632 25.1869 2.3354C24.9749 2.34612 24.7338 2.34658 24.4745 2.33675C23.2834 2.23972 22.1444 2.20103 21.1526 2.22392C19.5981 2.21653 18.1036 2.22252 16.5241 2.20009C15.4354 2.16818 14.4803 2.20227 13.7545 2.29898C13.7314 2.33793 13.2479 2.29596 12.8776 2.2919C12.6646 2.19385 12.4799 2.1053 12.2603 2.01838C12.064 1.91085 11.77 1.80203 11.3982 1.69932C11.0264 1.5966 10.5856 1.50239 10.1055 1.42304C9.28469 1.32138 9.2026 1.17386 9.77696 1.11958C11.2574 0.940019 13.1189 0.866526 15.2248 0.904497C16.9851 0.907531 18.7771 0.914482 20.5624 0.932555C21.6038 0.948059 22.7015 0.982496 23.7146 0.988526C24.0564 1.00178 24.4076 1.0213 24.7644 1.04689C25.2023 1.08399 25.6274 1.10421 26.0169 1.10646C27.2675 1.07521 28.6632 1.10243 30.1374 1.18682C30.6774 1.20522 31.1959 1.21142 31.6852 1.20533C32.8429 1.18243 34.0979 1.19928 35.417 1.25546C36.2369 1.28714 37.0319 1.3037 37.7937 1.30498C38.0628 1.30844 38.2819 1.28183 38.541 1.30198C40.8221 1.51283 42.4373 1.36053 44.4902 1.44161C45.488 1.46422 46.4413 1.46428 47.3367 1.44181C49.084 1.44289 50.8801 1.46601 52.7176 1.51106C55.1475 1.58508 57.3993 1.5594 59.7194 1.58996C60.1775 1.59638 60.6198 1.59529 61.043 1.58668C63.102 1.5298 65.3384 1.54186 67.6976 1.62257C68.2333 1.63423 68.7144 1.61997 69.1109 1.5807C69.5073 1.54143 69.8106 1.47798 70.0016 1.39434C70.0824 1.33693 70.0301 1.26237 69.8546 1.18503C69.5634 1.08626 69.2346 0.989492 68.8735 0.896312L55.741 0.583634C55.1894 0.567307 54.6515 0.558516 54.1301 0.557302C52.5963 0.554584 51.0154 0.530259 49.3951 0.48445C47.794 0.44142 46.2645 0.449058 44.7133 0.436103C44.2565 0.431763 43.7875 0.421523 43.3083 0.405413C40.0696 0.27791 36.9115 0.200034 33.8562 0.17234C32.5709 0.168411 31.1823 0.109895 29.8719 0.0909291C28.5615 0.0719612 26.7696 0.0650181 25.2151 0.0576252L20.4025 0.0587596C19.4559 0.0549871 18.5342 0.0662466 17.6159 0.0719466C16.5015 -0.334817 16.1174 -0.430158 14.6303 -0.608366C14.1216 -0.674103 13.6041 -0.713332 13.1386 -0.721461C11.6624 -0.689306 9.81009 -0.82316 8.4102 -0.805439C7.56549 -0.81418 6.84871 -0.768993 6.33325 -0.674502C5.88579 -0.600345 5.37412 -0.541666 4.80613 -0.499352C3.25021 -0.847328 3.11309 -1.07333 4.2835 -1.16128C4.6006 -1.18172 5.03739 -1.1754 5.26637 -1.2187C5.39776 -1.24507 5.57725 -1.26015 5.79054 -1.26276C6.00383 -1.26537 6.24501 -1.25543 6.49518 -1.23372C7.28472 -1.17678 8.02475 -1.16338 8.64101 -1.19489C9.22098 -1.23659 9.9319 -1.23492 10.7052 -1.19005C11.2735 -1.11967 11.773 -1.21905 12.2644 -1.24776C12.7558 -1.27648 13.1591 -1.32805 13.9267 -1.2509C14.0673 -1.23554 14.2068 -1.22632 14.3346 -1.22394C14.4625 -1.22157 14.5752 -1.22611 14.6641 -1.23721C15.4885 -1.28689 16.4723 -1.28167 17.5356 -1.22197C19.1663 -1.16322 20.6963 -1.16102 22.0726 -1.21544C22.8964 -1.26305 23.5989 -1.34749 24.1524 -1.46546C24.3033 -1.50492 24.5273 -1.52858 24.803 -1.53417C26.1878 -1.50956 27.6913 -1.41692 29.2167 -1.26224C29.7914 -1.20026 30.3653 -1.15123 30.9262 -1.1162C32.079 -1.03839 33.194 -0.99479 34.2382 -0.986686C35.7554 -0.985402 37.3351 -0.955464 38.9633 -0.897142C39.968 -0.864669 40.9362 -0.852684 41.8563 -0.861316C42.802 -0.865385 43.8117 -0.840615 44.8625 -0.78758C45.9076 -0.744363 46.8285 -0.769263 47.5143 -0.85927C47.7402 -0.907771 47.9221 -0.965365 48.0566 -1.03098C46.5265 -1.24448 44.9441 -1.35299 43.6279 -1.33464C43.1279 -1.34879 42.7128 -1.33451 42.186 -1.41767L42.1695 -1.38985C42.0647 -1.3718 41.9065 -1.36755 41.7252 -1.37789C41.5438 -1.38824 41.352 -1.41246 41.1862 -1.44595C41.2488 -1.55166 41.3082 -1.6518 41.3511 -1.72413C42.3539 -1.71137 43.3276 -1.7124 44.2673 -1.72724C45.0593 -1.74858 46.1346 -1.56166 46.8201 -1.63202C48.1574 -1.54403 49.0088 -1.66552 50.208 -1.63046C51.4071 -1.59541 52.7279 -1.4796 53.9271 -1.44455C54.9735 -1.42531 55.9895 -1.42113 56.9695 -1.43202C57.3078 -1.44731 57.6977 -1.44373 58.1154 -1.42148C58.7026 -1.37963 59.2488 -1.37261 59.6913 -1.40125C60.1338 -1.42988 60.4547 -1.49301 60.6174 -1.58339C60.4642 -1.66805 60.2579 -1.77721 60.0199 -1.89029C60.4577 -1.98321 61.1225 -2.02233 61.9159 -2.00184L63.0369 -2.00633C63.3339 -2.00388 63.561 -2.029 63.6711 -2.07649C63.7813 -2.12399 63.7661 -2.19022 63.6286 -2.2615C61.5031 -2.62031 61.4248 -2.65986 59.8647 -2.42907L57.7934 -2.53632L57.8283 -2.53796ZM85.8451 -1.55232L85.6873 -1.57187L85.8451 -1.55232ZM343.978 36.623L343.942 36.6842L343.981 36.6174L344.328 36.6604L344.351 36.6215L343.978 36.623ZM293.557 9.799C293.067 9.73223 292.571 9.67085 292.074 9.61522C291.943 9.6066 291.822 9.60465 291.718 9.60954C291.615 9.61444 291.534 9.62602 291.481 9.64333C291.441 9.71009 291.719 9.75641 291.971 9.78769C292.29 9.82979 292.615 9.85655 292.914 9.8652C293.213 9.87384 293.474 9.86408 293.671 9.83689L293.956 9.81253L293.557 9.799ZM40.7375 26.0709C41.0607 26.0821 41.3671 26.084 41.6493 26.0763C42.9012 26.0224 44.0998 25.9439 45.3833 25.8938C47.0028 25.7668 48.8637 25.715 50.8962 25.7405C51.6903 25.753 52.3611 25.7118 52.8305 25.6218C53.1114 25.5735 53.4741 25.5452 53.8962 25.5388L59.2696 25.3921C59.6017 25.3617 59.8889 25.319 60.1243 25.2651C59.6508 25.2064 59.3351 25.1673 59.1457 25.1439C58.7526 25.1373 58.4148 25.1551 58.1661 25.1957C57.8989 25.2645 57.4473 25.2917 56.9009 25.2719C56.3494 25.2556 55.8115 25.2468 55.29 25.2456C54.3052 25.249 53.3138 25.2636 52.3257 25.2726C51.9412 25.4639 50.8066 25.3771 49.835 25.3583L49.0844 25.3668C46.6309 25.466 44.2872 25.6024 42.0648 25.7754C41.6352 25.8047 41.2652 25.8514 40.966 25.9141C40.8533 25.9629 40.8172 26.0239 40.8605 26.0921L40.7027 26.0725L40.7375 26.0709ZM150.301 44.3585C150.897 44.3715 151.516 44.3983 152.152 44.4384C152.641 44.4793 153.119 44.5042 153.565 44.5119C156.068 44.5548 158.676 44.6538 161.354 44.8077C161.704 44.831 162.04 44.8424 162.35 44.8415L164.542 44.8025C165.233 44.7805 165.246 44.7583 164.743 44.4631C164.326 44.4058 163.904 44.3535 163.48 44.3067C163.228 44.2754 162.818 44.2246 162.721 44.2724C162.136 44.4029 161.068 44.3184 160.169 44.2907C157.568 44.2194 154.886 44.1141 152.26 44.0277C151.704 44.0066 151.167 43.9959 150.652 43.9958C150.332 43.9914 150.041 43.9997 149.79 44.0205C149.717 44.0226 149.655 44.0288 149.61 44.0386C149.565 44.0484 149.536 44.0617 149.527 44.0774C149.517 44.0932 149.527 44.1112 149.556 44.1302C149.584 44.1491 149.63 44.1686 149.691 44.1874C149.906 44.2531 150.154 44.316 150.428 44.3741L150.301 44.3585ZM169.355 1.51677L171.917 1.48178C172.224 1.47802 172.485 1.43863 172.814 1.45548C174.568 1.50887 176.193 1.494 177.618 1.4115C178.103 1.37783 178.671 1.3711 179.29 1.39167C181.186 1.45264 182.974 1.45515 184.606 1.39912C185.661 1.38788 186.648 1.35012 187.553 1.2864C187.623 1.2716 187.666 1.25152 187.681 1.22752C187.695 1.20352 187.68 1.17616 187.636 1.14731C187.624 1.12908 187.593 1.10947 187.545 1.08984C187.496 1.07021 187.432 1.051 187.355 1.03356C187.278 1.01613 187.192 1.00087 187.101 0.988832C187.01 0.976795 186.918 0.968264 186.83 0.963837C185.686 0.877584 184.601 0.847537 183.662 0.876132C182.792 0.910345 181.855 0.920357 180.866 0.90601C179.919 0.902236 179.277 1.0138 178.107 0.928673C177.613 0.900639 177.176 0.909869 176.872 0.954812C176.259 1.02931 175.404 1.03345 174.459 0.966505C173.893 0.932625 173.353 0.918096 172.858 0.923471C171.657 0.947963 170.51 0.996964 169.398 1.04431C169.047 1.05527 168.671 1.05678 168.277 1.04881L162.706 0.956099C161.368 0.927658 160.032 0.893654 158.719 0.88025C157.644 0.851148 156.644 0.860262 155.754 0.907274C154.805 0.956684 153.771 0.976743 152.669 0.967073C150.959 0.994114 149.258 1.00445 147.396 1.00082C146.209 1.00305 144.993 0.995824 143.753 0.973551C143.125 0.944883 142.592 0.968228 142.257 1.03909C142.053 1.09743 141.573 1.0499 141.174 1.03636C139.048 0.905868 137.054 0.874949 135.331 0.945755C135.111 0.957295 134.87 0.961471 134.612 0.958215C132.953 0.955785 131.234 0.939968 129.642 0.939793C129.222 0.945295 128.828 0.96039 128.463 0.984888C128.502 1.02486 128.613 1.06818 128.774 1.10586C128.935 1.14355 129.132 1.17271 129.326 1.1873C130.832 1.29896 132.286 1.35795 133.628 1.36179C135.86 1.34756 138.199 1.37954 140.62 1.45739C142.498 1.53586 144.21 1.51934 145.63 1.40905C146.739 1.32675 148.183 1.35771 149.712 1.49662C150.366 1.56296 151.002 1.58949 151.531 1.57258C152.04 1.5504 152.624 1.55578 153.25 1.5884C154.568 1.65044 155.836 1.67922 157.028 1.67417C158.194 1.65134 159.281 1.58895 160.479 1.57002C161.676 1.55109 163.499 1.56194 164.976 1.52978C166.452 1.49763 167.912 1.49329 169.355 1.51677ZM63.1825 -1.73747C63.3178 -1.56545 63.7965 -1.45838 64.3116 -1.41251C66.0871 -1.20883 67.8425 -1.12216 69.283 -1.16704C70.0611 -1.22964 71.0985 -1.20554 72.1912 -1.09948C73.4635 -0.989229 74.6527 -0.970945 75.5493 -1.04785C75.769 -1.06129 75.9371 -1.0897 76.0389 -1.13054C76.0587 -1.16393 76.0949 -1.22512 76.1015 -1.23625C76.0073 -1.26447 75.8918 -1.29062 75.7639 -1.31267C75.6359 -1.33473 75.499 -1.35211 75.3637 -1.36347L69.4823 -1.56039L68.4574 -1.60372C66.5854 -1.71725 64.8016 -1.76247 63.1825 -1.73747ZM74.7511 0.985269C75.669 1.26617 75.6722 1.2606 76.1425 1.32481C78.4112 1.59153 80.6783 1.73552 82.6741 1.73963C83.1177 1.73881 83.4942 1.7117 83.7716 1.66056C83.9144 1.65363 84.0052 1.63161 84.0244 1.5993C84.0435 1.56699 83.9894 1.52701 83.8738 1.48809L83.1439 1.29019C81.8183 1.20452 80.5118 1.13645 79.2321 1.08638C77.7422 1.02726 76.4219 1.02498 74.8773 1.0009L74.7511 0.985269ZM150.191 43.1147C151.047 43.5013 151.05 43.4957 152.482 43.5954C153.48 43.6661 154.448 43.7076 155.357 43.7186C156.468 43.7308 157.607 43.7525 158.715 43.7702C158.986 43.7826 159.215 43.7723 159.359 43.7416C159.502 43.7108 159.55 43.6616 159.492 43.6037C159.346 43.5407 159.119 43.4799 158.846 43.4309C158.574 43.382 158.272 43.3479 157.991 43.3342L157.386 43.325C156.652 43.3057 155.89 43.277 155.181 43.2728C154.721 43.2888 154.188 43.2764 153.623 43.2366C153.059 43.1967 152.479 43.1305 151.928 43.0431L150.191 43.1147ZM79.3183 -1.23198C79.5467 -1.16503 79.805 -1.10091 80.0863 -1.04131C81.1757 -0.876142 82.3287 -0.782331 83.3192 -0.778271C83.7876 -0.76804 84.2159 -0.804572 84.6927 -0.751484C85.548 -0.680545 86.3768 -0.642757 87.1345 -0.640165C87.1345 -0.640165 87.3469 -0.655655 87.4167 -0.658963L87.5618 -0.903759C87.2031 -0.960468 86.829 -1.0068 86.4568 -1.04061C85.2077 -1.10574 83.9802 -1.15027 82.7561 -1.20036C81.5319 -1.25045 81.1051 -1.27346 80.3045 -1.29497C79.9474 -1.28315 79.6171 -1.26205 79.3183 -1.23198ZM52.268 29.201L53.9027 29.702C54.4317 29.7456 54.9258 29.7534 55.31 29.7245C55.6942 29.6955 55.9473 29.6313 56.0309 29.5416C56.1655 29.4996 56.179 29.4374 56.0685 29.3681C55.958 29.2987 55.732 29.2276 55.4381 29.1696C55.1552 29.1008 54.8323 29.0392 54.4893 28.9885C54.1462 28.9378 53.7905 28.8991 53.4441 28.8748L52.268 29.201ZM65.8782 26.7063C64.809 26.6213 63.7864 26.5866 62.8885 26.6047C62.3228 26.6544 61.5563 26.6386 60.7461 26.5603C59.2727 26.4045 57.8523 26.3613 56.7848 26.44C56.7848 26.44 56.7452 26.5067 56.5642 26.5261C56.3833 26.5455 57.1009 26.5926 57.2588 26.6122C58.4165 26.66 59.5808 26.6967 60.5873 26.7139C61.2121 26.7131 61.873 26.7289 62.5587 26.761C63.5021 26.8104 64.3967 26.8264 65.2077 26.8084C65.2077 26.8084 65.5215 26.7935 65.8749 26.7118L65.8782 26.7063ZM180.059 0.609016C179.548 0.514654 178.995 0.437962 178.439 0.384696C177.884 0.331432 177.341 0.302981 176.853 0.301465C176.478 0.296542 176.175 0.321456 175.992 0.37227C175.808 0.423082 175.754 0.496896 175.839 0.582037C176.218 0.628957 176.723 0.691517 177.007 0.726707C177.992 0.723263 178.832 0.678016 180.059 0.609016ZM275.653 8.56089C275.243 8.48493 274.792 8.42685 274.351 8.39329C273.909 8.35973 273.495 8.35204 273.156 8.37109C272.982 8.37936 273.1 8.46567 273.071 8.51575C273.051 8.5271 273.052 8.54122 273.071 8.55663C273.091 8.57204 273.13 8.58817 273.183 8.60333C273.237 8.61849 273.303 8.63212 273.375 8.64279C273.447 8.65347 273.522 8.6608 273.593 8.66401C274.037 8.69674 274.457 8.70648 274.814 8.69237C275.171 8.67825 275.455 8.64073 275.64 8.58315L275.653 8.56089ZM282.058 9.64679C281.995 9.60196 281.86 9.55525 281.678 9.5152C281.497 9.47515 281.28 9.44445 281.069 9.42875C280.696 9.42664 280.357 9.43907 280.065 9.46557C279.747 9.48601 279.976 9.61579 280.404 9.69279C280.586 9.72369 280.78 9.7478 280.971 9.76319C281.162 9.77858 281.345 9.78483 281.505 9.78145C281.665 9.77806 281.797 9.76513 281.892 9.74369C281.987 9.72224 282.042 9.69288 282.052 9.65792L282.058 9.64679ZM95.9456 -0.755217C94.99 -0.915374 94.2545 -0.875082 93.4455 -0.939453C92.6364 -1.00382 92.4371 -1.0106 92.5455 -0.907591C92.6539 -0.804588 93.2085 -0.825477 93.5558 -0.782466C94.025 -0.725395 94.497 -0.692624 94.919 -0.687811C95.3411 -0.682997 95.6966 -0.706337 95.9456 -0.755217ZM295.071 26.3435C294.565 26.3076 294.069 26.2822 293.591 26.2677C293.528 26.2826 293.488 26.3021 293.475 26.325C293.461 26.348 293.474 26.3739 293.512 26.4013C293.512 26.4013 293.836 26.4832 294.025 26.5067C294.723 26.5871 294.757 26.4719 295.071 26.3435ZM366.608 41.2652C366.951 41.3733 367.111 41.4468 367.385 41.4987C367.511 41.5167 367.641 41.5298 367.766 41.537C367.891 41.5442 368.007 41.5453 368.106 41.5402C368.226 41.5091 368.255 41.4614 368.185 41.4067C368.185 41.4067 367.836 41.3097 367.703 41.3052C367.324 41.2823 366.956 41.2689 366.608 41.2652ZM79.6801 -1.6709C78.954 -1.76083 78.2594 -1.84686 77.7567 -1.74191C78.9097 -1.62897 78.9098 -1.62896 79.6801 -1.6709ZM91.4406 -0.644315C90.7074 -0.836646 90.2772 -0.8541 89.9252 -0.832001C89.8504 -0.826436 89.8009 -0.81403 89.7842 -0.796667C89.7675 -0.779306 89.7845 -0.757932 89.8326 -0.735775C89.8807 -0.713619 89.9574 -0.69189 90.0509 -0.673871C90.1445 -0.655853 90.2499 -0.642528 90.3512 -0.635913C90.7336 -0.630376 91.0982 -0.633187 91.4406 -0.644315ZM129.177 -0.562985C129.193 -0.590803 129.213 -0.624184 129.024 -0.647644C128.974 -0.659554 128.916 -0.669795 128.855 -0.677345C128.794 -0.684895 128.732 -0.689482 128.677 -0.69065C128.677 -0.69065 128.657 -0.657267 128.644 -0.635013L129.177 -0.562985ZM155.382 45.6208L154.96 45.6462L155.15 45.6696L155.65 45.6838L155.382 45.6208ZM303.868 9.21272C303.71 9.19317 303.552 9.17362 303.529 9.21257C303.496 9.21859 303.475 9.2273 303.469 9.23795C303.462 9.24859 303.471 9.26087 303.493 9.27376C303.493 9.27376 303.714 9.30114 303.808 9.31287L303.868 9.21272ZM279.284 9.5242C279.18 9.52197 279.087 9.52458 279.009 9.53187L278.989 9.56525L279.305 9.60435L279.284 9.5242ZM65.0444 17.4779C64.9225 17.4576 64.7932 17.4416 64.6656 17.431L64.5077 17.4114C64.5077 17.4114 64.6773 17.4683 64.772 17.48C64.8667 17.4917 64.9431 17.4773 65.0444 17.4779Z' fill='%23F52B53'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 385px;
}

.trending-slider {
  margin-top: 28px;
}

.trending-content {
  width: 100%;
  height: 386px;
  overflow: hidden;
  position: relative;
  border-radius: 23px;
}

/* .trending-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.5;
} */
.trending-content a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
  overflow: hidden;
}

.trending-info-content {
  position: absolute;
  bottom: 0.5em;
  left: 1em;
}

.trending-info-content h4 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  text-align: left;

  color: #ffffff;
  text-transform: capitalize;
}

.trending-info-content .loc-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
}

.trending-info-content p {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: left;

  color: #ffffff;
  margin-top: 14px;
}

.trending-info-content .loc-flex span {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  text-align: left;

  color: #ffffff;
}

.trending-content a .trending-img {
  width: 100%;
  height: 386px;
  overflow: hidden;
}

.trending-content a .trending-img img {
  width: 100%;
  height: 386px;
  object-fit: cover;
  transition: all 0.9s ease-in-out;
}

.trending-content a:hover .trending-img img {
  transform: scale(1.1);
}

.trending-destination .swiper-pagination {
  position: relative;
  top: 20px !important;
}

.trending-destination .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 11px;
  height: 5px;
  background: #14183e;
  border-radius: 60px;
}

.trending-destination .swiper-pagination .swiper-pagination-bullet-active {
  width: 21px;
  height: 5px;
  background: #f52b53;
  border-radius: 60px;
}

/* TOP TRAVSLARS */
.top-travelars {
  position: relative;
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.top-travelars .top-heading em {
  text-align: center;
  color: #fd3355;
}

.top-travelars .top-heading h2 {
  text-align: center;
  margin-top: 8px;
}

.top-travelars .top-heading h2 span {
  position: relative;
}

.top-travelars .top-heading h2 span::before {
  content: "";
  position: absolute;
  bottom: -0.8em;
  right: 0em;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='385' height='12' viewBox='0 0 385 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='385' height='12'%3E%3Crect width='385' height='12' fill='%23F52B53'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_484)'%3E%3Cpath d='M57.8283 -2.53796L58.7692 -2.69614L56.9382 -2.92292L57.8159 -3.08892C58.6961 -3.0874 59.8364 -2.83866 60.457 -2.97083C60.5328 -3.09879 59.5744 -3.13986 59.3298 -3.24181C59.1134 -3.34631 58.9368 -3.45013 58.8021 -3.55202C59.2814 -3.55092 59.8084 -3.52628 60.3517 -3.47953C61.0825 -3.40319 61.7994 -3.36607 62.4231 -3.37229C63.6986 -3.35167 64.9308 -3.37224 66.3175 -3.36771L65.8561 -3.67567L67.6433 -3.60362C67.8327 -3.58016 68.0585 -3.61789 68.2446 -3.58887C69.7934 -3.34329 70.4488 -3.47711 71.1923 -3.58807C71.3448 -3.61678 71.5284 -3.63822 71.7384 -3.65182C73.8046 -3.59299 75.6677 -3.24878 77.5284 -3.07207C77.8786 -3.02695 78.2145 -2.96904 78.5123 -2.90243C79.1595 -2.77295 79.8794 -2.66724 80.6062 -2.59497C81.3329 -2.52269 82.0433 -2.48616 82.6724 -2.48871C84.0636 -2.49157 85.6353 -2.40593 87.2355 -2.24008C87.7114 -2.18545 88.1875 -2.14941 88.6336 -2.13426C89.0798 -2.11911 89.4861 -2.12517 89.8266 -2.15207L90.9085 -1.97627C91.3774 -2.04761 91.972 -2.08675 92.6563 -2.09131C93.3406 -2.09587 94.1001 -2.06577 94.889 -2.00283C95.7296 -1.93455 96.5834 -1.88852 97.4556 -1.81634C99.2572 -1.67832 101.011 -1.59392 102.661 -1.56575C105.119 -1.48225 107.521 -1.4177 110.001 -1.31361C111.552 -1.26336 113.064 -1.23573 114.527 -1.23085C116.279 -1.21119 118.174 -1.11605 120.121 -0.950018C120.029 -0.794239 119.175 -0.840261 118.602 -0.845533C116.754 -0.871425 114.862 -0.938519 112.96 -0.988921C112.103 -1.0086 111.27 -1.01605 110.466 -1.01122C109.12 -1.01768 107.702 -1.05919 106.235 -1.13504C103.918 -1.2185 101.675 -1.25861 99.5289 -1.25498C99.3606 -1.24881 99.2065 -1.23788 99.069 -1.22236C99.0403 -1.20893 99.0346 -1.19198 99.0525 -1.17315C99.0704 -1.15433 99.1113 -1.13424 99.1712 -1.11484C99.2311 -1.09543 99.3081 -1.07735 99.3947 -1.06231C99.4814 -1.04728 99.5748 -1.0358 99.6661 -1.02897C100.518 -0.9234 101.434 -0.810013 102.238 -0.794063C102.269 -0.792869 102.302 -0.790148 102.335 -0.78609C102.367 -0.782033 102.399 -0.776742 102.427 -0.770603C104.227 -0.54773 105.706 -0.585445 107.108 -0.549184C109.435 -0.451184 111.679 -0.405408 113.805 -0.412547C114.126 -0.412062 114.473 -0.399322 114.833 -0.374789C117.059 -0.275339 119.141 -0.264217 120.981 -0.341923C121.738 -0.361611 122.442 -0.405805 123.256 -0.406544C123.757 -0.409586 124.193 -0.437788 124.538 -0.489463C124.883 -0.541139 125.13 -0.615218 125.264 -0.707246C125.607 -0.658794 125.956 -0.615613 126.305 -0.57822C126.514 -0.556839 126.715 -0.551159 126.866 -0.562348C127.017 -0.573536 127.108 -0.600756 127.121 -0.638501C127.183 -0.744209 126.706 -0.797294 126.293 -0.842561C126.542 -0.865231 126.823 -0.878568 127.13 -0.88225C128.854 -0.906404 130.703 -0.877896 132.637 -0.797352C134.138 -0.700943 135.337 -0.779413 136.917 -0.643457C137.107 -0.619996 137.262 -0.65443 137.437 -0.662698C137.891 -0.706236 138.458 -0.716022 139.087 -0.6912C139.716 -0.666377 140.388 -0.607695 141.046 -0.520245C141.865 -0.759166 143.635 -0.486219 144.942 -0.461688C145.345 -0.340185 144.883 -0.361545 144.863 -0.328164C144.843 -0.294782 144.863 -0.328171 144.705 -0.347722C143.4 -0.175652 141.612 -0.138132 139.593 -0.240435C139.219 -0.240009 138.863 -0.232171 138.528 -0.216993C138.021 -0.19551 137.449 -0.197655 136.838 -0.223334C136.169 -0.242193 135.556 -0.233236 135.026 -0.196896C134.721 -0.197488 134.463 -0.179283 134.276 -0.143957C134.09 -0.108631 133.98 -0.0573284 133.957 0.00518023C134.161 0.0533705 134.386 0.0974645 134.625 0.135713C135.873 0.28673 137.118 0.34924 138.114 0.310944C139.847 0.244959 141.91 0.309349 143.753 0.286823C144.999 0.277698 146.325 0.303691 147.706 0.36432C147.706 0.36432 147.67 0.425519 147.666 0.431082C147.83 0.45758 148.001 0.478839 148.172 0.493644C148.172 0.493644 148.172 0.493645 148.188 0.465827C148.112 0.439112 148.01 0.413982 147.892 0.393344L147.482 0.342512C147.761 0.329283 148.021 0.289898 148.312 0.313962C148.924 0.358668 149.51 0.377542 150.033 0.369462C150.556 0.361381 151.006 0.326508 151.356 0.266939C151.976 0.19059 152.747 0.155872 153.619 0.165022C154.287 0.156686 154.931 0.138772 155.548 0.111367C155.548 0.111367 155.588 0.0446111 155.88 0.00912881C155.603 -0.0346331 155.315 -0.0703692 155.028 -0.0964382C153.779 -0.161568 152.526 -0.221133 151.299 -0.26566C150.847 -0.270471 150.422 -0.26301 150.032 -0.243424C148.952 -0.220505 147.738 -0.253035 146.462 -0.339115C146.462 -0.339115 146.21 -0.370393 146.084 -0.386033C146.442 -0.532787 147.676 -0.385869 148.176 -0.485254C148.479 -0.483446 149.014 -0.470948 148.996 -0.497113C148.954 -0.532026 148.949 -0.564463 148.981 -0.592091C149.013 -0.61972 149.082 -0.641861 149.181 -0.656921C149.281 -0.671984 149.409 -0.679596 149.558 -0.67921C149.706 -0.678822 149.87 -0.670442 150.038 -0.654682C151.443 -0.569418 152.767 -0.545706 153.928 -0.585001C154.368 -0.584244 154.861 -0.558972 155.298 -0.55265C155.565 -0.545034 155.81 -0.549269 156.017 -0.565121C157.072 -0.681863 158.492 -0.690389 160.064 -0.589418C160.824 -0.553115 161.533 -0.548262 162.157 -0.575103C162.6 -0.579906 162.788 -0.496907 163.104 -0.457806L164.444 -0.375382L162.723 -0.272102C163.091 -0.0354174 163.383 0.0426247 163.984 0.0573704C164.862 0.0796373 165.716 0.0896969 166.542 0.087487C167.153 0.0855414 167.658 0.034571 168.485 0.125104C168.631 0.139871 168.772 0.144649 168.884 0.138642C169.853 0.0582657 171.02 0.0398196 172.305 0.0845627C172.97 -0.0659458 174.103 0.0803877 175.152 0.198292C175.49 0.0849194 174.877 0.0328776 174.511 -0.0362977C175.388 -0.0292163 176.272 -0.0332602 177.177 -0.0167062C177.449 -0.0227315 177.76 -0.0124229 178.086 0.0134106C178.412 0.0392431 178.743 0.0798925 179.054 0.132182C179.205 0.165969 179.388 0.191396 179.564 0.203188C179.74 0.214977 179.896 0.212227 179.999 0.195506C180.469 0.146192 181.221 0.191613 181.61 0.108313C181.748 0.0891562 181.945 0.0864818 182.166 0.100759C182.387 0.115034 182.618 0.145336 182.817 0.186233C182.599 0.198993 182.405 0.219086 182.24 0.24607C181.645 0.333725 181.864 0.480188 182.619 0.693119C183.778 0.681409 184.962 0.684733 186.036 0.644603C186.635 0.608579 187.369 0.61984 188.155 0.677125C188.941 0.734407 189.748 0.835442 190.486 0.968864C190.753 1.02017 191.058 1.0557 191.339 1.06841C191.62 1.08112 191.858 1.07007 192.005 1.03745C192.096 0.999727 192.124 0.951984 192.087 0.898361L191.329 0.804525C191.329 0.804525 191.359 0.754453 191.366 0.743326L192.455 0.734912C193.031 0.73462 193.632 0.74937 194.177 0.745168C194.977 0.717224 195.891 0.732799 196.861 0.790928C197.756 0.850535 198.636 0.895589 199.492 0.925695C200.321 0.956682 200.922 0.857894 201.71 0.842118C202.307 0.830226 202.963 0.842935 203.654 0.879746C204.847 0.945035 205.942 0.945157 206.839 0.880098C207.885 1.23062 208.393 1.28761 209.364 1.1929L209.821 1.16584L209.946 1.24102L210.295 1.22449C210.947 1.20976 211.6 1.19504 212.281 1.18979C213.227 1.22232 214.25 1.30984 215.248 1.4438C215.437 1.46726 215.695 1.54697 215.861 1.60937C216.028 1.67178 216.39 1.86004 216.657 1.98259C216.366 2.07206 216.045 2.15761 215.814 2.26046C215.791 2.27803 215.793 2.29898 215.821 2.32163C215.848 2.34428 215.9 2.36799 215.972 2.39087C216.045 2.41374 216.135 2.43513 216.236 2.45333C216.338 2.47153 216.447 2.48602 216.556 2.49565C216.768 2.51639 216.978 2.53021 217.176 2.53656C218.151 2.5475 219.085 2.53937 219.969 2.51224C220.291 2.47398 220.733 2.47034 221.224 2.50192C221.715 2.5335 222.227 2.59848 222.678 2.68655C223.834 2.63368 225.178 2.6493 226.616 2.73233C228.137 2.68183 229.974 2.78396 231.395 2.67331C231.362 2.72895 231.509 2.82473 231.713 2.87992C232.037 2.96375 232.403 3.04144 232.797 3.1097L235.802 3.24297C235.914 3.3115 236.054 3.38087 236.221 3.45018C236.335 3.50493 236.534 3.55851 236.775 3.59955C237.017 3.64059 237.282 3.66588 237.514 3.67005C238.112 3.69035 238.613 3.64495 239.326 3.75713C238.228 3.86318 236.748 3.84909 235.148 3.71738C233.645 3.6172 232.199 3.56714 230.864 3.56904C230.424 3.56828 229.844 3.57413 229.707 3.63473C229.402 3.80599 228.605 3.77892 227.675 3.74733C226.944 3.71275 226.277 3.71663 225.727 3.75865C225.178 3.80068 224.763 3.87965 224.515 3.98907C224.453 4.09477 224.603 4.185 225.244 4.24651L227.911 4.49316C228.304 4.46145 228.676 4.42391 229.028 4.3807C229.619 4.32331 230.35 4.30756 231.163 4.33467C231.975 4.36178 232.848 4.43102 233.713 4.53701C234.155 4.59175 234.597 4.64649 234.918 4.62048C235.199 4.5906 235.458 4.55483 235.693 4.51343C235.74 4.48568 235.759 4.45374 235.749 4.41885C235.919 4.43507 236.089 4.45617 236.254 4.48141C237.57 4.77585 238.59 4.77075 239.516 4.69438C239.767 4.67168 239.958 4.63559 240.212 4.60733C240.466 4.57906 240.555 4.54238 240.786 4.55305C242.627 4.64962 243.157 4.32709 244.708 4.34004C244.783 4.32744 244.83 4.30861 244.844 4.28527C244.858 4.26194 244.838 4.23486 244.787 4.20652C244.677 4.18093 244.551 4.15893 244.418 4.14253C244.286 4.12613 244.152 4.11587 244.029 4.11268C243.315 4.07129 242.685 4.08398 242.246 4.14858C241.935 4.17498 241.605 4.19602 241.26 4.21157L239.706 3.7445C241.211 3.78732 242.634 3.78704 243.943 3.74367C244.228 3.71931 244.712 3.76127 245.114 3.76925L248.07 3.8129C248.678 3.81652 249.196 3.7433 250.043 3.91398C250.043 3.91398 250.603 3.94151 250.752 3.9182C250.902 3.8949 251.564 3.74995 251.959 3.65553C252.417 3.68245 253.052 3.75509 253.337 3.73074C253.836 3.67092 254.268 3.59423 254.625 3.50205L256.411 3.63364C256.409 3.75054 256.344 3.86051 256.216 3.96189C256.077 4.05966 256.082 4.17702 256.23 4.30437C256.379 4.43173 256.666 4.56546 257.07 4.69465L258.833 5.37885C259.121 5.42467 259.428 5.45551 259.712 5.46719C259.996 5.47887 260.243 5.47082 260.421 5.44413C261.18 5.3649 262.03 5.30296 262.788 5.22373C263.767 5.34494 263.515 5.54072 264.227 5.71245L266.531 5.99788C266.883 6.26238 267.241 6.51575 266.172 6.6043C265.96 6.61979 266.103 6.72114 265.909 6.76279C266.74 6.96129 267.654 7.02071 268.496 7.14297C268.828 7.23089 269.106 7.32397 269.316 7.41769C269.547 7.55882 270.014 7.70297 270.617 7.81904C271.221 7.9351 271.911 8.01375 272.54 8.03801C273.596 8.11232 274.676 8.22392 275.734 8.36782C276.095 8.41785 276.466 8.45432 276.822 8.47473C277.178 8.49515 277.511 8.49906 277.798 8.48619C278.821 8.46353 279.687 8.38562 280.34 8.25752C280.985 8.14881 281.855 8.09641 282.87 8.10508C284.607 8.32013 284.957 8.64418 286.008 8.9296L284.193 8.9616C284.127 9.07287 284.247 9.21317 283.503 9.2106C282.759 9.20803 283.136 9.3145 283.377 9.42201C283.462 9.4761 283.628 9.53173 283.847 9.5795C284.066 9.62726 284.324 9.66422 284.578 9.68412L286.123 9.82173C286.671 9.87411 287.201 9.89647 287.655 9.88637C288.109 9.87627 288.47 9.8341 288.698 9.76449C288.96 9.69838 289.321 9.65367 289.759 9.63308C290.317 9.57916 290.776 9.49896 291.119 9.39552L293.301 9.54623C293.393 9.44228 293.693 9.36939 294.149 9.3399C294.605 9.31039 295.189 9.32608 295.803 9.38432L297.273 9.47682C298.907 9.57774 299.266 9.54452 299.745 9.25145L297.784 8.72799C298.069 8.59011 298.344 8.46892 298.62 8.34772C298.131 8.17526 297.48 8.01215 296.731 7.87494C296.032 7.72751 295.314 7.58472 294.579 7.44712C293.781 7.30651 292.938 7.18425 291.948 7.02574C291.775 6.97447 291.524 6.88363 291.203 6.79612C290.882 6.71107 290.547 6.6277 290.199 6.54634C290.265 6.43507 290.324 6.33493 290.197 6.20576C290.807 6.24697 291.437 6.31906 292.031 6.41551C292.625 6.51197 293.163 6.62976 293.597 6.75827C293.67 6.78105 293.76 6.80246 293.86 6.82104C293.96 6.83961 294.068 6.85493 294.178 6.86594C295.249 6.9449 295.761 7.10985 296.285 7.3121C296.638 7.41549 297.093 7.50731 297.587 7.57481C298.534 7.69212 299.461 7.8428 300.367 7.97289C300.644 8.01623 300.932 8.05191 301.219 8.07845C302.166 8.16284 303.118 8.28084 304.029 8.42645C304.326 8.46346 304.611 8.51243 304.86 8.56928C305.11 8.62613 305.316 8.68919 305.462 8.75322C305.236 8.82336 305.115 8.9119 305.104 9.0135C305.065 9.08026 305.73 9.21636 306.044 9.31501C306.358 9.41365 305.742 9.36717 305.533 9.3771C304.674 9.39618 304.515 9.43617 305.029 9.65512C305.201 9.72396 305.315 9.79285 305.364 9.85749C305.413 9.92213 305.396 9.98116 305.315 10.0309C305.193 10.2367 304.821 10.4058 304.566 10.6071C304.962 10.7397 305.624 10.8814 305.696 11.0456C305.731 11.082 305.804 11.1206 305.91 11.1586C306.017 11.1965 306.154 11.2329 306.311 11.2651C306.727 11.3346 307.105 11.4177 307.416 11.508C307.726 11.5983 307.962 11.6933 308.104 11.7857C308.15 11.824 308.262 11.8645 308.418 11.8993C308.573 11.934 308.76 11.9604 308.942 11.9731C309.158 11.9887 309.352 11.9867 309.484 11.9674C309.615 11.948 309.673 11.913 309.647 11.8694C309.652 11.7874 309.624 11.702 309.561 11.6139C309.597 11.5527 309.634 11.4915 309.49 11.3901C310.138 11.4271 310.817 11.5012 311.455 11.6045C312.093 11.7077 312.664 11.836 313.108 11.9756C313.599 12.1199 314.051 12.2715 314.595 12.4404C314.483 12.6295 314.483 12.6295 315.64 12.964L321.779 13.1271L323.037 13.3486C324.21 13.5417 324.489 13.5284 325.226 13.4286L325.722 13.3348C326.764 13.4638 327.964 13.6124 328.615 13.3706C328.827 13.5282 328.965 13.5811 328.917 13.6051C328.606 13.8376 328.065 14.0349 327.317 14.1892C327.126 14.2253 326.992 14.2803 326.769 14.3125C326.052 14.4941 325.886 14.7747 326.304 15.097C326.512 15.2396 326.814 15.3856 327.2 15.5303C326.635 15.7312 325.887 15.8976 324.975 16.0252C324.201 16.1238 323.564 16.2559 323.082 16.4177C322.649 16.5809 322 16.7035 321.174 16.7786C320.754 16.8105 320.448 16.8735 320.286 16.9613C320.238 17.1989 320.349 17.4533 320.616 17.7188C320.667 17.7996 320.81 17.8869 321.035 17.9738C321.26 18.0607 321.56 18.1449 321.912 18.2197C321.912 18.2197 322.082 18.2766 322.163 18.3106C322.231 18.5983 321.977 18.8519 321.418 19.0543C321.326 19.1117 321.138 19.1532 320.875 19.1742C320.612 19.1953 320.283 19.1951 319.923 19.1738C319.164 19.1395 318.455 19.1353 317.721 19.116C316.93 19.0888 316.233 19.1102 315.704 19.1782C315.175 19.2461 314.833 19.3579 314.714 19.502C314.706 19.5427 314.683 19.5818 314.644 19.6188C314.622 19.6379 314.61 19.6584 314.608 19.68L316.294 20.1516L314.387 20.3393C314.275 20.5285 315.19 20.6419 315.649 20.7823L315.365 20.8607C315 20.905 314.508 20.8202 314.063 20.771L313.621 20.7163L313.568 20.8053C313.293 20.9265 312.29 20.7903 311.898 20.8791C311.507 20.968 311.786 21.0683 312.373 21.1648C312.78 21.2366 313.218 21.2938 313.653 21.3322C314.088 21.3706 314.509 21.3891 314.885 21.3864C315.109 21.3769 315.294 21.3552 315.431 21.3226C316.222 21.184 317.097 21.0648 318.048 20.966C318.777 20.8772 319.69 20.8395 320.723 20.8554C321.026 20.8487 321.391 20.8697 321.755 20.9147C322.119 20.9598 322.458 21.026 322.712 21.1017L323.247 21.1142C323.247 21.1142 323.539 21.1922 323.498 21.205C323.294 21.4362 323.531 21.7189 324.172 22.0111L323.614 22.0376C322.817 22.0105 323.323 22.1866 323.203 22.2734C322.637 22.257 321.901 22.1837 321.633 22.2938L321.231 22.2858L321.388 22.3054L321.579 22.2693L322.329 22.4338C321.974 22.4615 321.716 22.4953 321.403 22.5102C321.229 22.5231 321.091 22.546 320.997 22.5774C320.903 22.6088 320.854 22.6481 320.854 22.693C320.855 22.762 320.761 22.8201 320.582 22.8617C320.403 22.9033 320.145 22.9271 319.832 22.9307C319.458 22.9322 319.244 23.0072 319.025 23.0339L319.977 23.4862C319.977 23.4862 319.503 23.4275 319.761 23.5072L319.794 23.4516L320.371 23.5648C320.787 23.6641 321.077 23.6881 321.323 23.617C321.568 23.5459 321.512 23.6405 321.63 23.6133C321.587 23.6856 321.32 23.7361 321.091 23.7794C320.826 23.8134 320.527 23.8385 320.2 23.8541C320.79 24.1722 320.819 24.1816 319.956 24.2658C319.092 24.35 319.39 24.4765 318.668 24.4945C317.945 24.5126 318.767 24.7278 319.25 24.7697C319.609 24.7973 319.974 24.8403 320.321 24.8957C320.669 24.9511 320.99 25.0176 321.263 25.0906L321.118 25.3354C320.905 25.3152 320.692 25.2888 320.486 25.2572C319.786 25.1228 319.15 24.9962 318.527 25.0743L318.824 25.2604L316.651 25.1525C316.707 25.2919 317.039 25.4507 317.575 25.5953C317.494 25.6748 317.444 25.7585 317.426 25.8457C317.39 25.9069 317.176 25.8684 317.036 25.875C316.539 25.8853 316.13 25.9267 315.847 25.9958C315.564 26.0648 315.415 26.1594 315.412 26.2711C315.356 26.3656 316.121 26.5619 316.599 26.5554C317.793 26.5743 319.085 26.6471 320.403 26.7698C321.207 26.7857 321.32 26.537 322.643 26.7068C322.669 26.8216 322.5 26.9146 322.16 26.9717C321.821 27.0288 321.33 27.0468 320.761 27.0231C321.085 27.2782 322.875 27.3447 322.954 27.6113C322.508 27.5924 322.032 27.5481 321.571 27.4827C321.111 27.4173 320.682 27.3331 320.329 27.2383C320.252 27.215 320.157 27.1934 320.05 27.1757C319.944 27.158 319.83 27.1447 319.72 27.137C319.609 27.1293 319.506 27.1274 319.419 27.1316C319.332 27.1358 319.264 27.1459 319.222 27.161C319.47 27.2574 319.743 27.3688 320.054 27.473C320.365 27.5772 320.44 27.6223 320.664 27.6442C322.337 27.8514 323.133 28.2246 324.58 28.4696C324.959 28.5165 325.006 28.6657 324.678 28.6488C324.365 28.632 324.081 28.6342 323.86 28.6552C323.638 28.6762 323.486 28.7152 323.421 28.7679C323.178 28.8293 322.876 28.8782 322.521 28.9133C324.006 29.2963 325.776 29.6347 327.666 29.8968C328.023 29.9486 328.397 29.9801 328.73 29.9869C329.785 29.9872 330.904 30.0176 332.066 30.0774C332.477 30.0937 332.858 30.0922 333.186 30.0729C334.264 30.0272 335.12 30.1273 335.902 30.4092L337.195 30.8561C337.153 30.9284 336.935 31.009 336.768 31.1197L337.779 31.3584L345.492 30.8087L347.04 31.3409L349.261 31.3113C349.431 31.3267 349.602 31.3479 349.766 31.3739C350.215 31.531 350.566 31.682 351.053 31.8319C351.54 31.9818 352.411 32 353.018 32.1767C353.625 32.3534 354.232 32.357 354.983 32.462C355.054 32.5988 354.981 32.7219 354.769 32.8236C354.7 32.9405 354.318 33.0127 354.252 33.1239C354.26 33.2364 354.118 33.3319 353.84 33.4017C353.562 33.4715 353.156 33.5135 352.66 33.5239C351.27 33.7633 349.594 33.9338 347.683 34.0302C347.515 34.0372 347.376 34.0534 347.274 34.0778C347.172 34.1022 347.11 34.1342 347.091 34.1719C347.094 34.281 346.966 34.3753 346.718 34.4479C346.47 34.5205 346.107 34.5695 345.656 34.5914C345.536 34.5958 345.446 34.6095 345.396 34.6308C345.225 34.6445 345.1 34.6708 345.034 34.7071C344.968 34.7435 344.963 34.7886 345.019 34.8381C345.074 34.8877 345.19 34.94 345.353 34.99C345.516 35.04 345.722 35.086 345.951 35.1235C346.283 35.1841 346.622 35.242 346.966 35.2971C346.947 35.3305 346.605 35.3359 346.654 35.3659C346.79 35.4619 346.821 35.5519 346.746 35.6286C346.671 35.7054 346.492 35.7668 346.223 35.8082L348.066 36.5859C349.185 36.6936 350.283 36.8763 351.151 37.0993C351.152 37.1358 351.102 37.1664 351.006 37.1881C350.91 37.2097 350.771 37.2216 350.603 37.2226C350.153 37.2385 349.728 37.2695 349.243 37.2871C348.947 37.3002 348.7 37.3291 348.518 37.3721C348.335 37.4151 348.221 37.4714 348.18 37.5376L349.262 37.8269C348.916 37.8974 348.658 37.9312 348.429 37.9745C348.559 38.0655 348.782 38.1595 349.082 38.2494C349.381 38.3393 349.748 38.4226 350.155 38.4929C350.265 38.5074 350.376 38.518 350.483 38.5241C350.59 38.5301 350.69 38.5315 350.778 38.5282C351.617 38.429 352.597 38.6042 353.549 38.7699C354.502 38.9356 355.019 39.0355 355.722 39.1644L357.067 39.1817C357.407 39.2427 357.711 39.3144 357.954 39.3912C358.197 39.4679 358.372 39.5475 358.465 39.6236C358.393 39.746 357.755 39.679 357.375 39.6916C356.473 39.7678 355.287 39.7515 354.013 39.6455C353.698 39.6064 353.374 39.638 353.067 39.6417C352.404 39.657 351.767 39.6818 351.159 39.716C350.758 39.7479 350.384 39.7873 350.038 39.834C349.946 39.9898 351.4 40.1101 350.575 40.1871C350.859 40.2223 350.965 40.2713 351.111 40.2536C352.047 40.3547 352.969 40.4047 353.771 40.3978C355.309 40.3763 357.055 40.4473 358.867 40.6049C360.822 40.7683 362.698 40.8368 364.339 40.805C364.965 40.8032 365.663 40.8366 366.383 40.9028C367.232 40.9945 368.075 41.0521 368.858 41.072C369.117 41.0727 369.406 41.0883 369.7 41.1175C369.995 41.1468 370.288 41.1888 370.554 41.2403C370.531 41.2792 370.277 41.3075 370.334 41.3264C371.144 41.6179 371.472 41.9213 372.719 42.2191C373.571 42.3246 374.55 42.4458 375.107 42.3059C375.665 42.1659 375.465 42.0456 374.356 41.6872C374.596 41.6821 374.886 41.6988 375.175 41.7345C375.463 41.7703 375.732 41.8227 375.934 41.8827L376.894 42.1509L377.758 42.4072C377.682 42.5352 377.623 42.6353 377.56 42.7411C377.461 42.8533 377.57 42.99 377.871 43.1319C378.052 43.2093 378.211 43.2868 378.344 43.3636C378.884 43.6707 379.041 43.961 378.796 44.2019C378.326 44.5483 377.672 44.867 376.842 45.1543C375.965 45.4338 375.484 45.7864 374.762 46.0911C374.393 46.2298 373.945 46.3541 373.423 46.4627C372.433 46.7044 371.348 46.9343 370.354 47.1815C369.36 47.4286 368.238 47.6062 367.135 47.8099C365.492 48.0517 363.716 48.2605 361.817 48.4352C360.642 48.5883 359.435 48.7374 358.348 48.9134C357.064 49.1117 355.556 49.2541 353.861 49.337C352.364 49.4363 351.026 49.5832 349.874 49.7748C349.753 49.7956 349.658 49.8219 349.59 49.8532C349.383 50.0486 348.801 50.1863 347.935 50.2453C347.987 50.3025 348.055 50.3607 348.136 50.4196C348.257 50.4898 348.282 50.5554 348.208 50.6081C348.135 50.6607 347.966 50.698 347.724 50.7149C347.031 50.7633 346.455 50.8455 346.021 50.9579C345.862 50.986 345.763 51.0271 345.733 51.0775C345.704 51.1279 345.743 51.1861 345.85 51.2472C345.944 51.31 345.951 51.3678 345.87 51.4131C345.788 51.4585 345.623 51.4892 345.394 51.5013C344.807 51.5608 344.179 51.6086 343.513 51.6446C342.096 51.7238 340.449 51.7228 338.669 51.6418C338.48 51.6183 338.289 51.6544 338.068 51.627C336.809 51.5362 335.641 51.5221 334.703 51.5865C333.604 51.6116 332.455 51.6066 331.295 51.6184C329.621 51.6105 328.076 51.6583 326.704 51.7604C325.136 51.6617 324.255 51.8333 322.931 51.8366C321.709 51.8542 320.551 51.8964 319.468 51.963C317.721 52.0512 315.981 52.1283 314.259 52.2316C312.644 52.2808 311.157 52.3749 309.823 52.5123C309.312 52.5743 308.387 52.4777 308.038 52.6077C307.69 52.7378 306.988 52.7224 306.42 52.7656L304.628 52.8722C304.32 52.8975 303.982 52.9136 303.617 52.9201C301.952 52.9288 300.798 53.1025 299.252 53.1379L299.094 53.1184C296.349 53.3765 293.208 53.5182 289.763 53.5393C287.751 53.6185 285.55 53.6147 283.415 53.6727C282.905 53.7888 281.703 53.6457 281.064 53.7517C280.425 53.8577 279.381 53.7883 278.558 53.8057C277.734 53.8231 276.929 53.8667 276.049 53.8652C275.284 53.8657 274.639 53.913 274.171 54.0029C273.103 54.1515 271.802 54.2388 270.325 54.261C268.37 54.2996 266.522 54.3873 264.534 54.368C264.563 54.4763 264.441 54.5684 264.181 54.6349C263.921 54.7014 263.533 54.7398 263.056 54.7463C260.931 54.7876 259.003 54.8952 256.849 54.9271L256.273 54.9274L249.831 54.9895C248.096 55.0015 246.424 55.0214 244.654 55.035C243.991 54.9529 243.975 55.0943 243.516 55.0673C243.388 54.9977 243.237 54.967 243.011 55.0048L242.961 55.0882L235.61 55.1989C232.732 55.2799 229.704 55.3042 226.553 55.2716C225.805 55.2798 225.108 55.3074 224.471 55.3541C223.88 55.3711 223.265 55.3787 222.628 55.3766C221.766 55.3556 220.924 55.345 220.105 55.3448C217.951 55.3767 215.691 55.3595 213.332 55.3362C210.974 55.3128 209.187 55.3543 207.088 55.3511C205.667 55.3482 204.252 55.3342 202.78 55.3013C202.078 55.2859 201.212 55.2026 200.485 55.1722C199.757 55.1418 199.52 55.1423 199.424 55.1901C199.107 55.3241 198.311 55.2374 197.675 55.2244C196.434 55.2021 196.258 55.1564 195.921 54.8101L197.443 54.7C197.817 54.6645 198.286 54.6583 198.806 54.6819C199.326 54.7055 199.88 54.7582 200.413 54.835C200.623 54.8678 200.843 54.8938 201.059 54.9114C201.276 54.929 201.485 54.9378 201.674 54.9374C203.21 54.9186 204.725 54.8792 206.201 54.8471L206.417 54.826L206.43 54.5172C206.235 54.4868 206.033 54.4618 205.831 54.4429L198.426 54.2425C196.727 54.1933 194.963 54.0823 193.296 54.037C191.628 53.9917 190.729 53.964 189.436 53.9172C188.89 53.8906 188.333 53.8556 187.769 53.8124C187.802 53.7827 187.821 53.751 187.826 53.7178C187.855 53.6678 187.895 53.601 187.655 53.5474C187.394 53.4719 187.045 53.4073 186.678 53.3667C186.333 53.3399 185.999 53.3247 185.688 53.3217C184.186 53.2958 182.471 53.1327 180.908 52.8671L180.363 53.0444C178.016 52.9448 175.634 52.8468 173.182 52.7522C172.691 52.7264 172.176 52.6769 171.675 52.6074C171.139 52.5409 170.645 52.4021 170.08 52.3262C169.522 52.2715 168.967 52.2289 168.427 52.1991C168.573 52.1535 168.766 52.117 168.999 52.0909C169.229 52.0817 169.396 52.0532 169.477 52.0095C169.558 51.9658 169.548 51.9092 169.448 51.8479C169.274 51.7426 169.197 51.6435 169.577 51.6309C169.928 51.6069 170.18 51.5549 170.302 51.4811C170.423 51.4073 170.41 51.3148 170.264 51.2144C170.2 51.1557 170.155 51.0982 170.129 51.0424L169.971 51.0228C169.451 50.815 168.411 50.7399 167.664 50.5699C167.312 50.5205 166.947 50.4922 166.628 50.4892C165.802 50.4527 164.998 50.4367 164.145 50.3907C163.737 50.3695 163.31 50.3309 162.89 50.2772C162.29 50.2029 162.227 50.1951 161.879 49.925C162.42 49.9297 162.849 49.8894 163.093 49.8108C163.337 49.7322 163.382 49.6202 163.219 49.4938C162.773 49.2175 162.301 48.9263 160.283 48.73C160.941 48.7203 161.575 48.7011 162.181 48.6724C162.357 48.6663 162.489 48.646 162.559 48.6143C162.629 48.5826 162.634 48.541 162.573 48.4951C162.511 48.4492 162.387 48.4011 162.216 48.3574C162.046 48.3137 161.837 48.2763 161.618 48.2503C160.552 48.0941 159.441 47.9895 158.408 47.9484C157.538 47.9302 156.752 47.9404 155.736 47.9399L154.536 47.7913C154.556 47.7579 154.38 47.7122 154.424 47.6939C154.729 47.5226 155.066 47.3553 155.412 47.1712C154.859 47.0718 154.38 46.9519 154.029 46.825C153.679 46.6982 153.472 46.5696 153.431 46.4541C153.401 46.4192 153.409 46.3874 153.454 46.361C153.499 46.3346 153.58 46.3142 153.691 46.3012C154.007 46.2788 154.251 46.2361 154.403 46.1764C154.556 46.1166 154.614 46.0414 154.573 45.9565L153.64 45.6439C150.831 45.4208 148.073 45.2615 145.416 45.1688L143.017 45.0987C142.728 45.015 142.818 44.9784 143.09 44.9763C143.362 44.9741 144.128 44.9973 144.663 45.0098C145.125 45.0262 145.535 45.0154 145.854 44.9785C146.172 44.9416 146.389 44.8798 146.482 44.7992L145.677 44.4426C145.716 44.3759 145.772 44.2813 146.209 44.2876C146.508 44.2799 146.727 44.2463 146.833 44.1922C146.939 44.1382 146.925 44.0668 146.792 43.9896C146.772 43.9338 146.802 43.8829 146.881 43.8394C147.527 43.8358 148.17 43.8377 148.756 43.8208C149.029 43.8151 149.26 43.7945 149.432 43.7602C149.605 43.7259 149.715 43.6787 149.755 43.622C149.776 43.5666 149.725 43.5035 149.605 43.4378C149.485 43.3721 149.3 43.3057 149.064 43.2438C148.146 43.1673 147.305 43.1663 146.728 43.2411C146.522 43.2997 146.191 43.3317 145.779 43.3329C145.367 43.3341 144.893 43.3044 144.419 43.2478C143.877 43.1825 143.336 43.1538 142.894 43.1669C142.451 43.1799 142.136 43.2339 142.005 43.319C141.449 43.286 140.955 43.2607 140.469 43.2243C139.894 43.1784 139.352 43.1648 138.899 43.1852C138.175 43.1995 137.394 43.1911 136.576 43.1602C134.215 43.0828 131.852 43.0111 129.567 42.9789C128.962 42.9697 128.439 42.9945 127.841 42.9742C127.243 42.9539 126.77 43.0087 126.022 42.8982C125.88 42.881 125.737 42.87 125.604 42.866C125.471 42.862 125.352 42.8651 125.257 42.875C123.944 42.9624 122.404 42.9748 120.728 42.9114C118.433 42.8958 116.053 42.8519 113.755 42.8419C113.08 42.8505 112.443 42.8735 111.85 42.9106C111.399 42.9331 110.926 42.9483 110.434 42.9562C110.057 42.9632 109.696 42.9425 109.76 43.0638C109.823 43.1852 109.259 43.1092 108.933 43.0868C107.814 43.028 106.671 42.9483 105.516 42.8487C104.378 42.7405 103.262 42.6775 102.237 42.6636C101.496 42.6554 100.732 42.6863 99.7801 42.5205C99.8164 42.4593 99.8526 42.3981 100.06 42.3342C99.2833 42.1584 98.3972 42.0071 97.475 41.8929C96.5527 41.7787 95.6207 41.7048 94.7562 41.6773L93.564 41.3446C93.2705 41.3055 92.9708 41.277 92.6832 41.2609C92.3957 41.2448 92.1262 41.2414 91.8912 41.2508C91.7097 41.2557 91.4884 41.2433 91.268 41.216C91.0476 41.1887 90.843 41.1483 90.6916 41.1023C90.4652 41.0437 90.1887 40.9931 89.8967 40.957C89.6046 40.9208 89.3101 40.9006 89.0499 40.8989C88.2308 40.8627 87.3564 40.7792 86.5163 40.6568C86.2983 40.5851 86.1617 40.5109 86.1233 40.4436C86.085 40.3762 86.1466 40.3186 86.3005 40.2777C86.5487 40.2056 86.688 40.1137 86.7101 40.0077C86.7322 39.9016 86.6366 39.7835 86.429 39.6606C86.3227 39.5852 86.2872 39.5137 86.3246 39.4506C86.362 39.3875 86.4716 39.334 86.6466 39.2934C87.3001 39.1056 87.1253 39.0004 86.0561 38.6888C85.8825 38.6369 85.6731 38.5883 85.4413 38.5462C85.2096 38.5042 84.9605 38.4695 84.7099 38.4444C84.1219 38.3936 83.5419 38.3559 82.9806 38.3318C82.6649 38.2927 82.3412 38.3242 81.9774 38.3091C80.1586 38.2331 79.8924 38.1105 79.3034 37.8465L78.8741 37.656C78.0779 37.5016 77.2072 37.3735 76.3246 37.2807C75.442 37.1879 74.5696 37.1328 73.7702 37.1194C73.4524 37.1184 73.0871 37.092 72.7302 37.0443C71.5688 36.8985 70.3927 36.7976 69.2797 36.7483C68.5861 36.7206 67.8385 36.6488 67.1266 36.5415C66.4147 36.4343 65.7687 36.2962 65.2664 36.1438C64.8152 36.0065 64.2249 35.8833 63.5777 35.7913C62.82 35.6975 62.7498 35.5873 63.1729 35.5023C63.596 35.4174 64.3047 35.308 64.9337 35.2187C65.1526 35.1884 65.2882 35.139 65.3254 35.0762C65.3627 35.0133 65.3001 34.9394 65.1447 34.8627C65.0449 34.7314 65.0276 34.6068 65.0932 34.492C65.1283 34.4443 65.1041 34.3896 65.0222 34.3315C64.9404 34.2735 64.8028 34.2135 64.6187 34.1557C64.4346 34.0978 64.2084 34.0433 63.9552 33.996C63.702 33.9486 63.4277 33.9095 63.1509 33.8812C61.9828 33.7365 60.8463 33.5957 59.6551 33.49C59.1559 33.4402 58.6572 33.3784 58.1713 33.3062C57.1766 33.1277 56.1125 32.9797 55.0407 32.8707C54.532 32.822 54.0347 32.7368 53.6563 32.6336C52.463 32.3555 51.3635 32.0631 50.3776 31.7617C50.1399 31.6682 49.8291 31.577 49.4643 31.4938C49.0996 31.4106 48.6889 31.3372 48.2581 31.2782C47.9109 31.2352 47.6282 31.1405 47.3605 31.0775C47.166 30.9316 47.1452 30.7966 47.3001 30.6852C47.4551 30.5738 47.7806 30.4897 48.2462 30.4407C48.6877 30.3819 49.1009 30.3136 49.4825 30.2415C49.9426 30.1831 50.4895 30.1481 51.103 30.1376C51.8295 30.1063 52.3668 30.0167 52.6447 29.8806C50.6557 29.6343 48.7643 29.2806 47.021 29.3633L45.6964 29.1395C45.7491 29.0505 45.7953 28.9726 45.8381 28.9003C46.1532 28.7686 46.2516 28.6026 46.125 28.4162C46.0206 28.3261 46.0301 28.2441 46.1523 28.1785C46.2745 28.1129 46.5051 28.066 46.8209 28.0426C48.6915 27.8025 50.8546 27.6404 52.6088 27.368C53.1588 27.3169 53.8027 27.2936 54.5133 27.2993C55.2008 27.2829 55.172 27.1599 54.3809 27.0082C53.9368 26.9289 53.4842 26.8529 53.0247 26.7805C50.9986 26.7684 50.1732 27.132 47.8611 27.0308L46.7895 26.5517C46.4997 26.5443 46.2184 26.5414 45.9475 26.543L42.0706 26.7376C41.7477 26.7474 41.4963 26.7807 41.3451 26.8337C41.1939 26.8868 41.1488 26.9575 41.215 27.0378C41.2412 27.136 41.1878 27.2261 41.0567 27.3048C40.9722 27.3599 41.0263 27.4332 41.2071 27.5086C41.6147 27.6785 41.0917 27.7033 40.7614 27.746C40.677 27.7502 40.5797 27.7497 40.475 27.7447C40.3704 27.7396 40.2606 27.7301 40.1519 27.7167C40.0432 27.7032 39.9379 27.6861 39.842 27.6663C39.7462 27.6465 39.6616 27.6244 39.5934 27.6013C39.0114 27.4397 38.5024 27.2691 37.9304 27.0908C38.3365 26.9201 37.8587 26.64 38.4924 26.4856C38.5633 26.4547 38.5916 26.4171 38.5757 26.3751C38.5599 26.3331 38.5 26.2875 38.4 26.2412C38.1419 26.1217 38.019 26.0051 38.0437 25.9033C38.0683 25.8015 38.2396 25.7181 38.5403 25.6614L38.5766 25.6002C37.7835 25.3945 37.9936 25.2115 37.6822 24.9938L36.9193 24.8515C35.0213 24.5089 35.018 24.5145 33.3839 24.5271C33.0545 24.3967 33.473 24.3769 33.7868 24.362L36.4151 24.2157C38.1334 24.118 39.9018 24.0504 41.8214 24.0134C43.741 23.9765 45.8811 23.8533 47.8652 23.7647C47.9655 23.7578 48.0423 23.7442 48.089 23.7251C48.1357 23.7059 48.151 23.6817 48.1338 23.6546C48.0549 23.6252 47.9516 23.5969 47.8317 23.5717C47.7117 23.5465 47.5781 23.5251 47.4406 23.509C46.8092 23.4308 46.1613 23.3804 45.4885 23.315L44.2341 23.2015L43.8482 23.0522C43.5971 22.9613 43.4255 22.8505 43.0914 22.7852C42.8161 22.7366 42.5172 22.6996 42.2259 22.6782C41.9346 22.6569 41.6616 22.6518 41.4352 22.6637C40.8076 22.6935 40.2398 22.7366 39.6405 22.7759C39.0411 22.8151 38.7108 22.8578 38.1911 22.877C37.1352 22.8858 36.1147 22.9089 35.1341 22.9463C34.3082 23.0348 33.5442 23.1397 32.8471 23.2602C32.4122 23.3079 32.0055 23.365 31.2629 23.3029C30.9106 23.2466 30.6067 23.1726 30.4051 23.0941C30.2035 23.0155 30.1173 22.9375 30.1617 22.8739C30.2015 22.824 30.3143 22.7846 30.4894 22.7592C30.6645 22.7339 30.8961 22.7235 31.1624 22.7291C31.9078 22.7199 32.5971 22.6891 33.2164 22.6371C34.0783 22.543 35.1276 22.5024 36.303 22.5178C36.7016 22.5313 36.9688 22.4808 37.3175 22.4643C37.6662 22.4477 37.9616 22.4067 38.3503 22.4369C39.558 22.5148 40.137 22.3954 40.8607 22.3179C41.1057 22.2835 41.2575 22.2279 41.2994 22.1572C41.3413 22.0865 41.2717 22.0035 41.0982 21.9173C40.7641 21.7456 40.3555 21.5729 39.8787 21.402C39.6333 21.3179 39.3189 21.2381 38.9601 21.1689C38.6014 21.0996 38.208 21.0426 37.811 21.0025C37.5733 20.8974 37.4466 20.794 37.4421 20.7017C37.4377 20.6093 37.5557 20.5311 37.7855 20.4739C38.3712 20.3433 38.8904 20.2106 40.2026 20.2835C40.8196 20.3114 41.4002 20.3167 41.9215 20.2993C43.0776 20.2755 44.4112 20.3277 45.7966 20.4508C46.155 20.4824 46.5073 20.5039 46.8431 20.5147C49.2381 20.5904 51.5201 20.6282 53.8086 20.6548C55.021 20.6676 56.2432 20.6638 57.5089 20.7011C60.4769 20.782 63.1786 20.7404 66.0434 20.7668C67.5438 20.7803 68.8868 20.7258 70.0019 20.6061C70.219 20.5659 70.4055 20.5191 70.5592 20.4661C69.8203 20.327 69.0086 20.2169 68.202 20.1462C67.3953 20.0756 66.6207 20.0469 65.9524 20.0627C65.585 20.1017 65.1101 20.1088 64.5807 20.0833C64.0513 20.0578 63.4882 20.0007 62.9542 19.9183L64.5068 19.8717C65.5363 19.85 66.5908 19.8432 67.5921 19.8119C69.1828 19.7581 70.6571 19.672 72.3043 19.6371C73.6342 19.6051 74.8243 19.5231 75.8372 19.3939C76.569 19.2996 77.4047 19.2328 78.3274 19.1947C78.9833 19.1744 78.9833 19.1744 79.4026 18.9815C79.07 18.8567 78.6398 18.8392 78.2346 18.8368C75.8052 18.7583 73.4932 18.7445 71.3458 18.7958C70.2623 18.8004 69.3011 18.8533 68.5084 18.952C68.3142 18.9937 67.8176 18.9739 67.419 18.9604C66.1693 18.9398 64.975 18.9458 63.8502 18.9783C62.2952 19.0324 60.5633 19.0195 58.7218 18.9403C58.3726 18.8433 58.7745 18.8513 58.7943 18.8179C60.2206 18.7556 61.6186 18.6839 63.0732 18.6312C63.4708 18.6124 63.8958 18.6031 64.3435 18.6034C66.0147 18.6361 67.4074 18.5455 68.3264 18.3442C68.3725 18.2663 68.9771 18.2755 69.2442 18.225C69.3756 18.1813 69.4632 18.1298 69.5042 18.0721C69.115 17.9283 68.6749 17.9275 68.3362 17.9274C67.3531 17.9434 66.4073 17.9739 65.5035 18.0185C64.6633 18.061 63.7332 18.0723 62.7385 18.0523C62.0044 18.033 61.3768 18.0628 60.6361 18.0546C60.2343 18.0375 59.8184 18.0101 59.3968 17.9728C59.8662 17.8726 60.5042 17.811 61.266 17.7923C61.8437 17.7324 62.566 17.7144 62.6583 17.5586C62.3855 17.4472 62.0816 17.4454 61.8375 17.4569C61.3294 17.4565 60.8387 17.4635 60.3679 17.478C59.3695 17.5096 58.2886 17.5101 57.1478 17.4793C56.547 17.4678 55.977 17.4712 55.4473 17.4896C54.2467 17.5141 53.0961 17.5687 51.9968 17.5938C49.745 17.6195 47.6912 17.7115 45.5275 17.76C45.046 17.772 44.6143 17.8141 43.9796 17.7415C43.3449 17.6688 43.3167 17.6594 43.2417 17.6142C43.0641 17.539 43.0103 17.466 43.0914 17.4105C43.2173 17.3586 43.4626 17.3297 43.7835 17.329C45.7177 17.2465 47.5523 17.1306 49.2757 16.982C50.0341 16.9523 50.6986 16.8916 51.2461 16.8021C51.6803 16.7404 52.1953 16.6996 52.775 16.6809C53.6182 16.6363 54.4972 16.6037 55.4085 16.5831C55.8325 16.572 56.193 16.539 56.4689 16.4859C56.7447 16.4329 56.9303 16.361 57.0147 16.2744L55.8975 15.9867C55.722 15.9733 55.5479 15.9617 55.3759 15.952L46.1034 16.1592L45.1851 16.1649C44.1787 16.1477 43.9327 16.1053 42.978 15.7721C45.1568 15.6937 46.8695 15.4652 47.9456 15.1093C47.687 15.0711 47.4219 15.0382 47.1564 15.0116C45.4152 14.9274 43.7692 14.9051 42.2819 14.9454C41.3984 14.9494 40.49 14.9384 39.5783 14.933C39.8449 14.7689 40.8664 14.8178 41.5322 14.7808C43.123 14.723 44.5297 14.6034 45.7074 14.426C46.1134 14.3569 46.6214 14.3126 47.208 14.2954C47.7951 14.2894 48.2855 14.2476 48.6366 14.1734C48.9877 14.0993 49.1887 13.9951 49.2222 13.87C49.2775 13.7567 49.3967 13.6515 49.578 13.5558C49.2573 13.42 48.7481 13.29 48.1459 13.1901C47.5437 13.0902 46.89 13.0274 46.3074 13.0133C45.0636 12.9574 43.7735 12.8659 42.47 12.7411C41.8207 12.6782 41.184 12.642 40.6013 12.6351C40.0874 12.6297 39.5032 12.5843 38.938 12.5056C38.3728 12.427 37.8574 12.3195 37.4706 12.1996C36.9485 12.0513 36.4612 11.9014 35.974 11.7514C35.4868 11.6015 34.9214 11.4121 34.3526 11.2281C33.8511 11.1994 33.3628 11.1809 32.8943 11.1729C32.5298 11.1797 32.1044 11.1596 31.6684 11.1152C31.2324 11.0707 30.8039 11.0036 30.4336 10.9219C30.6508 10.8413 30.8964 10.7702 31.155 10.6768C30.8 10.5535 30.5426 10.4278 30.3984 10.3073C30.2543 10.1868 30.2265 10.074 30.3167 9.97582C30.3694 9.8868 29.9835 9.73747 29.8501 9.61943C29.6784 9.51767 29.6462 9.42271 29.7576 9.34699C29.869 9.27127 30.1188 9.21833 30.4744 9.19511C30.9154 9.15226 31.2743 9.08773 31.5364 9.00416C31.6231 8.98247 31.6672 8.95276 31.6648 8.91775C31.6623 8.88274 31.6133 8.84355 31.5223 8.80376C31.4312 8.76398 31.3011 8.72486 31.1437 8.68999C30.9863 8.65512 30.8067 8.62561 30.6213 8.60417C30.0534 8.54337 29.4894 8.50396 28.9617 8.4882C28.0527 8.45922 27.1824 8.44102 26.3509 8.43359C25.4313 8.4224 24.4083 8.35339 23.3857 8.23355C22.4701 8.12016 21.6493 8.01849 21.2016 7.8018C20.754 7.58512 20.0382 7.59202 19.4878 7.43428C19.797 7.29208 20.3465 7.19329 21.0809 7.14786C21.5615 7.13164 21.9626 7.08908 22.2586 7.02289C22.5546 6.95671 22.7389 6.86837 22.7997 6.76354L21.1288 6.32369C19.7944 6.11661 19.0561 6.27599 17.6142 6.19297L19.0998 6.0306C19.1297 6.01455 19.1409 5.9957 19.1328 5.97496C18.9886 5.64655 18.7591 5.57633 17.2404 5.39421L16.3881 5.28864L15.039 5.16336C14.8229 5.09605 14.6735 5.02587 14.6056 4.95982C14.5377 4.89377 14.5537 4.83417 14.6521 4.78699C14.8498 4.70763 14.9098 4.60623 14.8269 4.49211C14.696 4.41652 14.6852 4.34684 14.7963 4.29515C14.9074 4.24345 15.1334 4.21302 15.4351 4.20914C15.6759 4.20312 15.6938 4.11576 15.8248 4.06629C15.9549 3.99811 16.1777 3.94579 16.4778 3.91289C16.778 3.87999 17.1485 3.86728 17.5643 3.87564C18.79 3.88247 19.9415 3.85688 20.9983 3.79931L20.8088 3.77585C21.9103 3.82639 22.9401 3.83251 23.848 3.79394C24.7578 3.74539 25.9255 3.77653 26.8919 3.74692C27.6786 3.75372 28.2776 3.68652 28.5617 3.55959C28.8368 3.4384 29.8367 3.46668 30.6024 3.48985C31.0559 3.50484 31.4943 3.51119 31.9128 3.50883C32.4745 3.4814 33.1768 3.50725 33.9026 3.58209C34.1204 3.60509 34.3349 3.61726 34.5256 3.61743C36.3707 3.64889 38.2125 3.6859 40.0327 3.70232C40.4529 3.69287 40.9455 3.71452 41.4529 3.76474C41.6661 3.78654 41.8737 3.79558 42.0476 3.79062C44.9237 3.74074 48.1692 3.868 50.9888 3.79918C51.3305 3.78292 51.7088 3.77954 52.1131 3.78913C53.0214 3.82956 53.8101 3.80354 54.3596 3.71503C54.6561 3.66795 55.0362 3.64201 55.4757 3.63885C55.9151 3.6357 56.4043 3.65541 56.912 3.69672C57.7569 3.75142 58.5378 3.75735 59.1723 3.71389C60.4093 3.67374 61.7102 3.65723 63.0648 3.66449C63.4798 3.67151 63.8446 3.65591 64.131 3.61888C64.4174 3.58186 64.6176 3.52441 64.7162 3.45098C64.3835 3.32617 64.0198 3.31099 63.6744 3.32196C62.3358 3.29352 61.0004 3.25951 59.6867 3.24611C58.5109 3.20782 57.3827 3.19612 56.3187 3.21117C55.7904 3.22815 55.1311 3.18944 54.4848 3.10348C53.6927 2.99462 52.8769 2.94054 52.2023 2.95217C51.7022 2.95506 51.1743 2.94568 50.6262 2.92418C50.2754 2.89824 49.9159 2.85371 49.5844 2.79515C49.4529 2.76972 49.3098 2.74833 49.1641 2.73236C49.0185 2.71639 48.8737 2.7062 48.7389 2.70242C48.604 2.69864 48.4819 2.70135 48.3808 2.71041C48.2796 2.71946 48.2014 2.73464 48.1511 2.75498C47.6437 2.92504 46.509 2.83826 45.5374 2.81945C44.0814 2.53162 42.9978 2.70198 41.637 2.53941C41.5294 2.52863 41.4233 2.5221 41.3254 2.52024C41.2274 2.51838 41.1396 2.52121 41.0673 2.52857C38.4338 2.62642 35.3645 2.54487 32.5996 2.57866C32.2947 2.5836 31.9408 2.56667 31.5781 2.52978C29.2078 2.28564 26.9289 2.21632 25.1869 2.3354C24.9749 2.34612 24.7338 2.34658 24.4745 2.33675C23.2834 2.23972 22.1444 2.20103 21.1526 2.22392C19.5981 2.21653 18.1036 2.22252 16.5241 2.20009C15.4354 2.16818 14.4803 2.20227 13.7545 2.29898C13.7314 2.33793 13.2479 2.29596 12.8776 2.2919C12.6646 2.19385 12.4799 2.1053 12.2603 2.01838C12.064 1.91085 11.77 1.80203 11.3982 1.69932C11.0264 1.5966 10.5856 1.50239 10.1055 1.42304C9.28469 1.32138 9.2026 1.17386 9.77696 1.11958C11.2574 0.940019 13.1189 0.866526 15.2248 0.904497C16.9851 0.907531 18.7771 0.914482 20.5624 0.932555C21.6038 0.948059 22.7015 0.982496 23.7146 0.988526C24.0564 1.00178 24.4076 1.0213 24.7644 1.04689C25.2023 1.08399 25.6274 1.10421 26.0169 1.10646C27.2675 1.07521 28.6632 1.10243 30.1374 1.18682C30.6774 1.20522 31.1959 1.21142 31.6852 1.20533C32.8429 1.18243 34.0979 1.19928 35.417 1.25546C36.2369 1.28714 37.0319 1.3037 37.7937 1.30498C38.0628 1.30844 38.2819 1.28183 38.541 1.30198C40.8221 1.51283 42.4373 1.36053 44.4902 1.44161C45.488 1.46422 46.4413 1.46428 47.3367 1.44181C49.084 1.44289 50.8801 1.46601 52.7176 1.51106C55.1475 1.58508 57.3993 1.5594 59.7194 1.58996C60.1775 1.59638 60.6198 1.59529 61.043 1.58668C63.102 1.5298 65.3384 1.54186 67.6976 1.62257C68.2333 1.63423 68.7144 1.61997 69.1109 1.5807C69.5073 1.54143 69.8106 1.47798 70.0016 1.39434C70.0824 1.33693 70.0301 1.26237 69.8546 1.18503C69.5634 1.08626 69.2346 0.989492 68.8735 0.896312L55.741 0.583634C55.1894 0.567307 54.6515 0.558516 54.1301 0.557302C52.5963 0.554584 51.0154 0.530259 49.3951 0.48445C47.794 0.44142 46.2645 0.449058 44.7133 0.436103C44.2565 0.431763 43.7875 0.421523 43.3083 0.405413C40.0696 0.27791 36.9115 0.200034 33.8562 0.17234C32.5709 0.168411 31.1823 0.109895 29.8719 0.0909291C28.5615 0.0719612 26.7696 0.0650181 25.2151 0.0576252L20.4025 0.0587596C19.4559 0.0549871 18.5342 0.0662466 17.6159 0.0719466C16.5015 -0.334817 16.1174 -0.430158 14.6303 -0.608366C14.1216 -0.674103 13.6041 -0.713332 13.1386 -0.721461C11.6624 -0.689306 9.81009 -0.82316 8.4102 -0.805439C7.56549 -0.81418 6.84871 -0.768993 6.33325 -0.674502C5.88579 -0.600345 5.37412 -0.541666 4.80613 -0.499352C3.25021 -0.847328 3.11309 -1.07333 4.2835 -1.16128C4.6006 -1.18172 5.03739 -1.1754 5.26637 -1.2187C5.39776 -1.24507 5.57725 -1.26015 5.79054 -1.26276C6.00383 -1.26537 6.24501 -1.25543 6.49518 -1.23372C7.28472 -1.17678 8.02475 -1.16338 8.64101 -1.19489C9.22098 -1.23659 9.9319 -1.23492 10.7052 -1.19005C11.2735 -1.11967 11.773 -1.21905 12.2644 -1.24776C12.7558 -1.27648 13.1591 -1.32805 13.9267 -1.2509C14.0673 -1.23554 14.2068 -1.22632 14.3346 -1.22394C14.4625 -1.22157 14.5752 -1.22611 14.6641 -1.23721C15.4885 -1.28689 16.4723 -1.28167 17.5356 -1.22197C19.1663 -1.16322 20.6963 -1.16102 22.0726 -1.21544C22.8964 -1.26305 23.5989 -1.34749 24.1524 -1.46546C24.3033 -1.50492 24.5273 -1.52858 24.803 -1.53417C26.1878 -1.50956 27.6913 -1.41692 29.2167 -1.26224C29.7914 -1.20026 30.3653 -1.15123 30.9262 -1.1162C32.079 -1.03839 33.194 -0.99479 34.2382 -0.986686C35.7554 -0.985402 37.3351 -0.955464 38.9633 -0.897142C39.968 -0.864669 40.9362 -0.852684 41.8563 -0.861316C42.802 -0.865385 43.8117 -0.840615 44.8625 -0.78758C45.9076 -0.744363 46.8285 -0.769263 47.5143 -0.85927C47.7402 -0.907771 47.9221 -0.965365 48.0566 -1.03098C46.5265 -1.24448 44.9441 -1.35299 43.6279 -1.33464C43.1279 -1.34879 42.7128 -1.33451 42.186 -1.41767L42.1695 -1.38985C42.0647 -1.3718 41.9065 -1.36755 41.7252 -1.37789C41.5438 -1.38824 41.352 -1.41246 41.1862 -1.44595C41.2488 -1.55166 41.3082 -1.6518 41.3511 -1.72413C42.3539 -1.71137 43.3276 -1.7124 44.2673 -1.72724C45.0593 -1.74858 46.1346 -1.56166 46.8201 -1.63202C48.1574 -1.54403 49.0088 -1.66552 50.208 -1.63046C51.4071 -1.59541 52.7279 -1.4796 53.9271 -1.44455C54.9735 -1.42531 55.9895 -1.42113 56.9695 -1.43202C57.3078 -1.44731 57.6977 -1.44373 58.1154 -1.42148C58.7026 -1.37963 59.2488 -1.37261 59.6913 -1.40125C60.1338 -1.42988 60.4547 -1.49301 60.6174 -1.58339C60.4642 -1.66805 60.2579 -1.77721 60.0199 -1.89029C60.4577 -1.98321 61.1225 -2.02233 61.9159 -2.00184L63.0369 -2.00633C63.3339 -2.00388 63.561 -2.029 63.6711 -2.07649C63.7813 -2.12399 63.7661 -2.19022 63.6286 -2.2615C61.5031 -2.62031 61.4248 -2.65986 59.8647 -2.42907L57.7934 -2.53632L57.8283 -2.53796ZM85.8451 -1.55232L85.6873 -1.57187L85.8451 -1.55232ZM343.978 36.623L343.942 36.6842L343.981 36.6174L344.328 36.6604L344.351 36.6215L343.978 36.623ZM293.557 9.799C293.067 9.73223 292.571 9.67085 292.074 9.61522C291.943 9.6066 291.822 9.60465 291.718 9.60954C291.615 9.61444 291.534 9.62602 291.481 9.64333C291.441 9.71009 291.719 9.75641 291.971 9.78769C292.29 9.82979 292.615 9.85655 292.914 9.8652C293.213 9.87384 293.474 9.86408 293.671 9.83689L293.956 9.81253L293.557 9.799ZM40.7375 26.0709C41.0607 26.0821 41.3671 26.084 41.6493 26.0763C42.9012 26.0224 44.0998 25.9439 45.3833 25.8938C47.0028 25.7668 48.8637 25.715 50.8962 25.7405C51.6903 25.753 52.3611 25.7118 52.8305 25.6218C53.1114 25.5735 53.4741 25.5452 53.8962 25.5388L59.2696 25.3921C59.6017 25.3617 59.8889 25.319 60.1243 25.2651C59.6508 25.2064 59.3351 25.1673 59.1457 25.1439C58.7526 25.1373 58.4148 25.1551 58.1661 25.1957C57.8989 25.2645 57.4473 25.2917 56.9009 25.2719C56.3494 25.2556 55.8115 25.2468 55.29 25.2456C54.3052 25.249 53.3138 25.2636 52.3257 25.2726C51.9412 25.4639 50.8066 25.3771 49.835 25.3583L49.0844 25.3668C46.6309 25.466 44.2872 25.6024 42.0648 25.7754C41.6352 25.8047 41.2652 25.8514 40.966 25.9141C40.8533 25.9629 40.8172 26.0239 40.8605 26.0921L40.7027 26.0725L40.7375 26.0709ZM150.301 44.3585C150.897 44.3715 151.516 44.3983 152.152 44.4384C152.641 44.4793 153.119 44.5042 153.565 44.5119C156.068 44.5548 158.676 44.6538 161.354 44.8077C161.704 44.831 162.04 44.8424 162.35 44.8415L164.542 44.8025C165.233 44.7805 165.246 44.7583 164.743 44.4631C164.326 44.4058 163.904 44.3535 163.48 44.3067C163.228 44.2754 162.818 44.2246 162.721 44.2724C162.136 44.4029 161.068 44.3184 160.169 44.2907C157.568 44.2194 154.886 44.1141 152.26 44.0277C151.704 44.0066 151.167 43.9959 150.652 43.9958C150.332 43.9914 150.041 43.9997 149.79 44.0205C149.717 44.0226 149.655 44.0288 149.61 44.0386C149.565 44.0484 149.536 44.0617 149.527 44.0774C149.517 44.0932 149.527 44.1112 149.556 44.1302C149.584 44.1491 149.63 44.1686 149.691 44.1874C149.906 44.2531 150.154 44.316 150.428 44.3741L150.301 44.3585ZM169.355 1.51677L171.917 1.48178C172.224 1.47802 172.485 1.43863 172.814 1.45548C174.568 1.50887 176.193 1.494 177.618 1.4115C178.103 1.37783 178.671 1.3711 179.29 1.39167C181.186 1.45264 182.974 1.45515 184.606 1.39912C185.661 1.38788 186.648 1.35012 187.553 1.2864C187.623 1.2716 187.666 1.25152 187.681 1.22752C187.695 1.20352 187.68 1.17616 187.636 1.14731C187.624 1.12908 187.593 1.10947 187.545 1.08984C187.496 1.07021 187.432 1.051 187.355 1.03356C187.278 1.01613 187.192 1.00087 187.101 0.988832C187.01 0.976795 186.918 0.968264 186.83 0.963837C185.686 0.877584 184.601 0.847537 183.662 0.876132C182.792 0.910345 181.855 0.920357 180.866 0.90601C179.919 0.902236 179.277 1.0138 178.107 0.928673C177.613 0.900639 177.176 0.909869 176.872 0.954812C176.259 1.02931 175.404 1.03345 174.459 0.966505C173.893 0.932625 173.353 0.918096 172.858 0.923471C171.657 0.947963 170.51 0.996964 169.398 1.04431C169.047 1.05527 168.671 1.05678 168.277 1.04881L162.706 0.956099C161.368 0.927658 160.032 0.893654 158.719 0.88025C157.644 0.851148 156.644 0.860262 155.754 0.907274C154.805 0.956684 153.771 0.976743 152.669 0.967073C150.959 0.994114 149.258 1.00445 147.396 1.00082C146.209 1.00305 144.993 0.995824 143.753 0.973551C143.125 0.944883 142.592 0.968228 142.257 1.03909C142.053 1.09743 141.573 1.0499 141.174 1.03636C139.048 0.905868 137.054 0.874949 135.331 0.945755C135.111 0.957295 134.87 0.961471 134.612 0.958215C132.953 0.955785 131.234 0.939968 129.642 0.939793C129.222 0.945295 128.828 0.96039 128.463 0.984888C128.502 1.02486 128.613 1.06818 128.774 1.10586C128.935 1.14355 129.132 1.17271 129.326 1.1873C130.832 1.29896 132.286 1.35795 133.628 1.36179C135.86 1.34756 138.199 1.37954 140.62 1.45739C142.498 1.53586 144.21 1.51934 145.63 1.40905C146.739 1.32675 148.183 1.35771 149.712 1.49662C150.366 1.56296 151.002 1.58949 151.531 1.57258C152.04 1.5504 152.624 1.55578 153.25 1.5884C154.568 1.65044 155.836 1.67922 157.028 1.67417C158.194 1.65134 159.281 1.58895 160.479 1.57002C161.676 1.55109 163.499 1.56194 164.976 1.52978C166.452 1.49763 167.912 1.49329 169.355 1.51677ZM63.1825 -1.73747C63.3178 -1.56545 63.7965 -1.45838 64.3116 -1.41251C66.0871 -1.20883 67.8425 -1.12216 69.283 -1.16704C70.0611 -1.22964 71.0985 -1.20554 72.1912 -1.09948C73.4635 -0.989229 74.6527 -0.970945 75.5493 -1.04785C75.769 -1.06129 75.9371 -1.0897 76.0389 -1.13054C76.0587 -1.16393 76.0949 -1.22512 76.1015 -1.23625C76.0073 -1.26447 75.8918 -1.29062 75.7639 -1.31267C75.6359 -1.33473 75.499 -1.35211 75.3637 -1.36347L69.4823 -1.56039L68.4574 -1.60372C66.5854 -1.71725 64.8016 -1.76247 63.1825 -1.73747ZM74.7511 0.985269C75.669 1.26617 75.6722 1.2606 76.1425 1.32481C78.4112 1.59153 80.6783 1.73552 82.6741 1.73963C83.1177 1.73881 83.4942 1.7117 83.7716 1.66056C83.9144 1.65363 84.0052 1.63161 84.0244 1.5993C84.0435 1.56699 83.9894 1.52701 83.8738 1.48809L83.1439 1.29019C81.8183 1.20452 80.5118 1.13645 79.2321 1.08638C77.7422 1.02726 76.4219 1.02498 74.8773 1.0009L74.7511 0.985269ZM150.191 43.1147C151.047 43.5013 151.05 43.4957 152.482 43.5954C153.48 43.6661 154.448 43.7076 155.357 43.7186C156.468 43.7308 157.607 43.7525 158.715 43.7702C158.986 43.7826 159.215 43.7723 159.359 43.7416C159.502 43.7108 159.55 43.6616 159.492 43.6037C159.346 43.5407 159.119 43.4799 158.846 43.4309C158.574 43.382 158.272 43.3479 157.991 43.3342L157.386 43.325C156.652 43.3057 155.89 43.277 155.181 43.2728C154.721 43.2888 154.188 43.2764 153.623 43.2366C153.059 43.1967 152.479 43.1305 151.928 43.0431L150.191 43.1147ZM79.3183 -1.23198C79.5467 -1.16503 79.805 -1.10091 80.0863 -1.04131C81.1757 -0.876142 82.3287 -0.782331 83.3192 -0.778271C83.7876 -0.76804 84.2159 -0.804572 84.6927 -0.751484C85.548 -0.680545 86.3768 -0.642757 87.1345 -0.640165C87.1345 -0.640165 87.3469 -0.655655 87.4167 -0.658963L87.5618 -0.903759C87.2031 -0.960468 86.829 -1.0068 86.4568 -1.04061C85.2077 -1.10574 83.9802 -1.15027 82.7561 -1.20036C81.5319 -1.25045 81.1051 -1.27346 80.3045 -1.29497C79.9474 -1.28315 79.6171 -1.26205 79.3183 -1.23198ZM52.268 29.201L53.9027 29.702C54.4317 29.7456 54.9258 29.7534 55.31 29.7245C55.6942 29.6955 55.9473 29.6313 56.0309 29.5416C56.1655 29.4996 56.179 29.4374 56.0685 29.3681C55.958 29.2987 55.732 29.2276 55.4381 29.1696C55.1552 29.1008 54.8323 29.0392 54.4893 28.9885C54.1462 28.9378 53.7905 28.8991 53.4441 28.8748L52.268 29.201ZM65.8782 26.7063C64.809 26.6213 63.7864 26.5866 62.8885 26.6047C62.3228 26.6544 61.5563 26.6386 60.7461 26.5603C59.2727 26.4045 57.8523 26.3613 56.7848 26.44C56.7848 26.44 56.7452 26.5067 56.5642 26.5261C56.3833 26.5455 57.1009 26.5926 57.2588 26.6122C58.4165 26.66 59.5808 26.6967 60.5873 26.7139C61.2121 26.7131 61.873 26.7289 62.5587 26.761C63.5021 26.8104 64.3967 26.8264 65.2077 26.8084C65.2077 26.8084 65.5215 26.7935 65.8749 26.7118L65.8782 26.7063ZM180.059 0.609016C179.548 0.514654 178.995 0.437962 178.439 0.384696C177.884 0.331432 177.341 0.302981 176.853 0.301465C176.478 0.296542 176.175 0.321456 175.992 0.37227C175.808 0.423082 175.754 0.496896 175.839 0.582037C176.218 0.628957 176.723 0.691517 177.007 0.726707C177.992 0.723263 178.832 0.678016 180.059 0.609016ZM275.653 8.56089C275.243 8.48493 274.792 8.42685 274.351 8.39329C273.909 8.35973 273.495 8.35204 273.156 8.37109C272.982 8.37936 273.1 8.46567 273.071 8.51575C273.051 8.5271 273.052 8.54122 273.071 8.55663C273.091 8.57204 273.13 8.58817 273.183 8.60333C273.237 8.61849 273.303 8.63212 273.375 8.64279C273.447 8.65347 273.522 8.6608 273.593 8.66401C274.037 8.69674 274.457 8.70648 274.814 8.69237C275.171 8.67825 275.455 8.64073 275.64 8.58315L275.653 8.56089ZM282.058 9.64679C281.995 9.60196 281.86 9.55525 281.678 9.5152C281.497 9.47515 281.28 9.44445 281.069 9.42875C280.696 9.42664 280.357 9.43907 280.065 9.46557C279.747 9.48601 279.976 9.61579 280.404 9.69279C280.586 9.72369 280.78 9.7478 280.971 9.76319C281.162 9.77858 281.345 9.78483 281.505 9.78145C281.665 9.77806 281.797 9.76513 281.892 9.74369C281.987 9.72224 282.042 9.69288 282.052 9.65792L282.058 9.64679ZM95.9456 -0.755217C94.99 -0.915374 94.2545 -0.875082 93.4455 -0.939453C92.6364 -1.00382 92.4371 -1.0106 92.5455 -0.907591C92.6539 -0.804588 93.2085 -0.825477 93.5558 -0.782466C94.025 -0.725395 94.497 -0.692624 94.919 -0.687811C95.3411 -0.682997 95.6966 -0.706337 95.9456 -0.755217ZM295.071 26.3435C294.565 26.3076 294.069 26.2822 293.591 26.2677C293.528 26.2826 293.488 26.3021 293.475 26.325C293.461 26.348 293.474 26.3739 293.512 26.4013C293.512 26.4013 293.836 26.4832 294.025 26.5067C294.723 26.5871 294.757 26.4719 295.071 26.3435ZM366.608 41.2652C366.951 41.3733 367.111 41.4468 367.385 41.4987C367.511 41.5167 367.641 41.5298 367.766 41.537C367.891 41.5442 368.007 41.5453 368.106 41.5402C368.226 41.5091 368.255 41.4614 368.185 41.4067C368.185 41.4067 367.836 41.3097 367.703 41.3052C367.324 41.2823 366.956 41.2689 366.608 41.2652ZM79.6801 -1.6709C78.954 -1.76083 78.2594 -1.84686 77.7567 -1.74191C78.9097 -1.62897 78.9098 -1.62896 79.6801 -1.6709ZM91.4406 -0.644315C90.7074 -0.836646 90.2772 -0.8541 89.9252 -0.832001C89.8504 -0.826436 89.8009 -0.81403 89.7842 -0.796667C89.7675 -0.779306 89.7845 -0.757932 89.8326 -0.735775C89.8807 -0.713619 89.9574 -0.69189 90.0509 -0.673871C90.1445 -0.655853 90.2499 -0.642528 90.3512 -0.635913C90.7336 -0.630376 91.0982 -0.633187 91.4406 -0.644315ZM129.177 -0.562985C129.193 -0.590803 129.213 -0.624184 129.024 -0.647644C128.974 -0.659554 128.916 -0.669795 128.855 -0.677345C128.794 -0.684895 128.732 -0.689482 128.677 -0.69065C128.677 -0.69065 128.657 -0.657267 128.644 -0.635013L129.177 -0.562985ZM155.382 45.6208L154.96 45.6462L155.15 45.6696L155.65 45.6838L155.382 45.6208ZM303.868 9.21272C303.71 9.19317 303.552 9.17362 303.529 9.21257C303.496 9.21859 303.475 9.2273 303.469 9.23795C303.462 9.24859 303.471 9.26087 303.493 9.27376C303.493 9.27376 303.714 9.30114 303.808 9.31287L303.868 9.21272ZM279.284 9.5242C279.18 9.52197 279.087 9.52458 279.009 9.53187L278.989 9.56525L279.305 9.60435L279.284 9.5242ZM65.0444 17.4779C64.9225 17.4576 64.7932 17.4416 64.6656 17.431L64.5077 17.4114C64.5077 17.4114 64.6773 17.4683 64.772 17.48C64.8667 17.4917 64.9431 17.4773 65.0444 17.4779Z' fill='%23F52B53'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 317px;
}

.travelars-content .img {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f52b53;
  overflow: hidden;
  margin: 0 auto 15px auto;
}

.travelars-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travelars-content .info {
  text-align: center;
}

.travelars-content .info span {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  color: #5e6282;
  text-transform: capitalize;
}

.travelars-content .info h5 {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  color: #5e6282;
  margin-top: 6px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.travelars-content .info h5 a {
  color: #5e6282;
}

.travelars-content .info h5 a:hover {
  color: #f52b53;
}

.travelars-content .info h6 {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  color: #5e6282;
}

.top-travelars .travelers-slider {
  margin-top: 48px;
}

.top-travelars .swiper-pagination2 {
  position: relative;
  top: 20px;
  text-align: center;
}

.top-travelars .swiper-pagination2 .swiper-pagination-bullet {
  opacity: 1;
  width: 11px;
  height: 5px;
  background: #14183e;
  border-radius: 60px;
}

.top-travelars .swiper-pagination2 .swiper-pagination-bullet-active {
  width: 21px;
  height: 5px;
  background: #f52b53;
  border-radius: 60px;
}

/* FAQ */
.faq {
  padding: 0 0 100px;
  position: relative;
  z-index: 10;
}

.faq .top-heading em {
  text-align: center;
  color: #fd3355;
}

.faq .top-heading h2 {
  text-align: center;
  margin-top: 8px;
}

.faq .top-heading h2 span {
  position: relative;
}

.faq .top-heading h2 span::before {
  content: "";
  position: absolute;
  bottom: -0.82em;
  right: 0em;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='385' height='12' viewBox='0 0 385 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='385' height='12'%3E%3Crect width='385' height='12' fill='%23F52B53'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_484)'%3E%3Cpath d='M57.8283 -2.53796L58.7692 -2.69614L56.9382 -2.92292L57.8159 -3.08892C58.6961 -3.0874 59.8364 -2.83866 60.457 -2.97083C60.5328 -3.09879 59.5744 -3.13986 59.3298 -3.24181C59.1134 -3.34631 58.9368 -3.45013 58.8021 -3.55202C59.2814 -3.55092 59.8084 -3.52628 60.3517 -3.47953C61.0825 -3.40319 61.7994 -3.36607 62.4231 -3.37229C63.6986 -3.35167 64.9308 -3.37224 66.3175 -3.36771L65.8561 -3.67567L67.6433 -3.60362C67.8327 -3.58016 68.0585 -3.61789 68.2446 -3.58887C69.7934 -3.34329 70.4488 -3.47711 71.1923 -3.58807C71.3448 -3.61678 71.5284 -3.63822 71.7384 -3.65182C73.8046 -3.59299 75.6677 -3.24878 77.5284 -3.07207C77.8786 -3.02695 78.2145 -2.96904 78.5123 -2.90243C79.1595 -2.77295 79.8794 -2.66724 80.6062 -2.59497C81.3329 -2.52269 82.0433 -2.48616 82.6724 -2.48871C84.0636 -2.49157 85.6353 -2.40593 87.2355 -2.24008C87.7114 -2.18545 88.1875 -2.14941 88.6336 -2.13426C89.0798 -2.11911 89.4861 -2.12517 89.8266 -2.15207L90.9085 -1.97627C91.3774 -2.04761 91.972 -2.08675 92.6563 -2.09131C93.3406 -2.09587 94.1001 -2.06577 94.889 -2.00283C95.7296 -1.93455 96.5834 -1.88852 97.4556 -1.81634C99.2572 -1.67832 101.011 -1.59392 102.661 -1.56575C105.119 -1.48225 107.521 -1.4177 110.001 -1.31361C111.552 -1.26336 113.064 -1.23573 114.527 -1.23085C116.279 -1.21119 118.174 -1.11605 120.121 -0.950018C120.029 -0.794239 119.175 -0.840261 118.602 -0.845533C116.754 -0.871425 114.862 -0.938519 112.96 -0.988921C112.103 -1.0086 111.27 -1.01605 110.466 -1.01122C109.12 -1.01768 107.702 -1.05919 106.235 -1.13504C103.918 -1.2185 101.675 -1.25861 99.5289 -1.25498C99.3606 -1.24881 99.2065 -1.23788 99.069 -1.22236C99.0403 -1.20893 99.0346 -1.19198 99.0525 -1.17315C99.0704 -1.15433 99.1113 -1.13424 99.1712 -1.11484C99.2311 -1.09543 99.3081 -1.07735 99.3947 -1.06231C99.4814 -1.04728 99.5748 -1.0358 99.6661 -1.02897C100.518 -0.9234 101.434 -0.810013 102.238 -0.794063C102.269 -0.792869 102.302 -0.790148 102.335 -0.78609C102.367 -0.782033 102.399 -0.776742 102.427 -0.770603C104.227 -0.54773 105.706 -0.585445 107.108 -0.549184C109.435 -0.451184 111.679 -0.405408 113.805 -0.412547C114.126 -0.412062 114.473 -0.399322 114.833 -0.374789C117.059 -0.275339 119.141 -0.264217 120.981 -0.341923C121.738 -0.361611 122.442 -0.405805 123.256 -0.406544C123.757 -0.409586 124.193 -0.437788 124.538 -0.489463C124.883 -0.541139 125.13 -0.615218 125.264 -0.707246C125.607 -0.658794 125.956 -0.615613 126.305 -0.57822C126.514 -0.556839 126.715 -0.551159 126.866 -0.562348C127.017 -0.573536 127.108 -0.600756 127.121 -0.638501C127.183 -0.744209 126.706 -0.797294 126.293 -0.842561C126.542 -0.865231 126.823 -0.878568 127.13 -0.88225C128.854 -0.906404 130.703 -0.877896 132.637 -0.797352C134.138 -0.700943 135.337 -0.779413 136.917 -0.643457C137.107 -0.619996 137.262 -0.65443 137.437 -0.662698C137.891 -0.706236 138.458 -0.716022 139.087 -0.6912C139.716 -0.666377 140.388 -0.607695 141.046 -0.520245C141.865 -0.759166 143.635 -0.486219 144.942 -0.461688C145.345 -0.340185 144.883 -0.361545 144.863 -0.328164C144.843 -0.294782 144.863 -0.328171 144.705 -0.347722C143.4 -0.175652 141.612 -0.138132 139.593 -0.240435C139.219 -0.240009 138.863 -0.232171 138.528 -0.216993C138.021 -0.19551 137.449 -0.197655 136.838 -0.223334C136.169 -0.242193 135.556 -0.233236 135.026 -0.196896C134.721 -0.197488 134.463 -0.179283 134.276 -0.143957C134.09 -0.108631 133.98 -0.0573284 133.957 0.00518023C134.161 0.0533705 134.386 0.0974645 134.625 0.135713C135.873 0.28673 137.118 0.34924 138.114 0.310944C139.847 0.244959 141.91 0.309349 143.753 0.286823C144.999 0.277698 146.325 0.303691 147.706 0.36432C147.706 0.36432 147.67 0.425519 147.666 0.431082C147.83 0.45758 148.001 0.478839 148.172 0.493644C148.172 0.493644 148.172 0.493645 148.188 0.465827C148.112 0.439112 148.01 0.413982 147.892 0.393344L147.482 0.342512C147.761 0.329283 148.021 0.289898 148.312 0.313962C148.924 0.358668 149.51 0.377542 150.033 0.369462C150.556 0.361381 151.006 0.326508 151.356 0.266939C151.976 0.19059 152.747 0.155872 153.619 0.165022C154.287 0.156686 154.931 0.138772 155.548 0.111367C155.548 0.111367 155.588 0.0446111 155.88 0.00912881C155.603 -0.0346331 155.315 -0.0703692 155.028 -0.0964382C153.779 -0.161568 152.526 -0.221133 151.299 -0.26566C150.847 -0.270471 150.422 -0.26301 150.032 -0.243424C148.952 -0.220505 147.738 -0.253035 146.462 -0.339115C146.462 -0.339115 146.21 -0.370393 146.084 -0.386033C146.442 -0.532787 147.676 -0.385869 148.176 -0.485254C148.479 -0.483446 149.014 -0.470948 148.996 -0.497113C148.954 -0.532026 148.949 -0.564463 148.981 -0.592091C149.013 -0.61972 149.082 -0.641861 149.181 -0.656921C149.281 -0.671984 149.409 -0.679596 149.558 -0.67921C149.706 -0.678822 149.87 -0.670442 150.038 -0.654682C151.443 -0.569418 152.767 -0.545706 153.928 -0.585001C154.368 -0.584244 154.861 -0.558972 155.298 -0.55265C155.565 -0.545034 155.81 -0.549269 156.017 -0.565121C157.072 -0.681863 158.492 -0.690389 160.064 -0.589418C160.824 -0.553115 161.533 -0.548262 162.157 -0.575103C162.6 -0.579906 162.788 -0.496907 163.104 -0.457806L164.444 -0.375382L162.723 -0.272102C163.091 -0.0354174 163.383 0.0426247 163.984 0.0573704C164.862 0.0796373 165.716 0.0896969 166.542 0.087487C167.153 0.0855414 167.658 0.034571 168.485 0.125104C168.631 0.139871 168.772 0.144649 168.884 0.138642C169.853 0.0582657 171.02 0.0398196 172.305 0.0845627C172.97 -0.0659458 174.103 0.0803877 175.152 0.198292C175.49 0.0849194 174.877 0.0328776 174.511 -0.0362977C175.388 -0.0292163 176.272 -0.0332602 177.177 -0.0167062C177.449 -0.0227315 177.76 -0.0124229 178.086 0.0134106C178.412 0.0392431 178.743 0.0798925 179.054 0.132182C179.205 0.165969 179.388 0.191396 179.564 0.203188C179.74 0.214977 179.896 0.212227 179.999 0.195506C180.469 0.146192 181.221 0.191613 181.61 0.108313C181.748 0.0891562 181.945 0.0864818 182.166 0.100759C182.387 0.115034 182.618 0.145336 182.817 0.186233C182.599 0.198993 182.405 0.219086 182.24 0.24607C181.645 0.333725 181.864 0.480188 182.619 0.693119C183.778 0.681409 184.962 0.684733 186.036 0.644603C186.635 0.608579 187.369 0.61984 188.155 0.677125C188.941 0.734407 189.748 0.835442 190.486 0.968864C190.753 1.02017 191.058 1.0557 191.339 1.06841C191.62 1.08112 191.858 1.07007 192.005 1.03745C192.096 0.999727 192.124 0.951984 192.087 0.898361L191.329 0.804525C191.329 0.804525 191.359 0.754453 191.366 0.743326L192.455 0.734912C193.031 0.73462 193.632 0.74937 194.177 0.745168C194.977 0.717224 195.891 0.732799 196.861 0.790928C197.756 0.850535 198.636 0.895589 199.492 0.925695C200.321 0.956682 200.922 0.857894 201.71 0.842118C202.307 0.830226 202.963 0.842935 203.654 0.879746C204.847 0.945035 205.942 0.945157 206.839 0.880098C207.885 1.23062 208.393 1.28761 209.364 1.1929L209.821 1.16584L209.946 1.24102L210.295 1.22449C210.947 1.20976 211.6 1.19504 212.281 1.18979C213.227 1.22232 214.25 1.30984 215.248 1.4438C215.437 1.46726 215.695 1.54697 215.861 1.60937C216.028 1.67178 216.39 1.86004 216.657 1.98259C216.366 2.07206 216.045 2.15761 215.814 2.26046C215.791 2.27803 215.793 2.29898 215.821 2.32163C215.848 2.34428 215.9 2.36799 215.972 2.39087C216.045 2.41374 216.135 2.43513 216.236 2.45333C216.338 2.47153 216.447 2.48602 216.556 2.49565C216.768 2.51639 216.978 2.53021 217.176 2.53656C218.151 2.5475 219.085 2.53937 219.969 2.51224C220.291 2.47398 220.733 2.47034 221.224 2.50192C221.715 2.5335 222.227 2.59848 222.678 2.68655C223.834 2.63368 225.178 2.6493 226.616 2.73233C228.137 2.68183 229.974 2.78396 231.395 2.67331C231.362 2.72895 231.509 2.82473 231.713 2.87992C232.037 2.96375 232.403 3.04144 232.797 3.1097L235.802 3.24297C235.914 3.3115 236.054 3.38087 236.221 3.45018C236.335 3.50493 236.534 3.55851 236.775 3.59955C237.017 3.64059 237.282 3.66588 237.514 3.67005C238.112 3.69035 238.613 3.64495 239.326 3.75713C238.228 3.86318 236.748 3.84909 235.148 3.71738C233.645 3.6172 232.199 3.56714 230.864 3.56904C230.424 3.56828 229.844 3.57413 229.707 3.63473C229.402 3.80599 228.605 3.77892 227.675 3.74733C226.944 3.71275 226.277 3.71663 225.727 3.75865C225.178 3.80068 224.763 3.87965 224.515 3.98907C224.453 4.09477 224.603 4.185 225.244 4.24651L227.911 4.49316C228.304 4.46145 228.676 4.42391 229.028 4.3807C229.619 4.32331 230.35 4.30756 231.163 4.33467C231.975 4.36178 232.848 4.43102 233.713 4.53701C234.155 4.59175 234.597 4.64649 234.918 4.62048C235.199 4.5906 235.458 4.55483 235.693 4.51343C235.74 4.48568 235.759 4.45374 235.749 4.41885C235.919 4.43507 236.089 4.45617 236.254 4.48141C237.57 4.77585 238.59 4.77075 239.516 4.69438C239.767 4.67168 239.958 4.63559 240.212 4.60733C240.466 4.57906 240.555 4.54238 240.786 4.55305C242.627 4.64962 243.157 4.32709 244.708 4.34004C244.783 4.32744 244.83 4.30861 244.844 4.28527C244.858 4.26194 244.838 4.23486 244.787 4.20652C244.677 4.18093 244.551 4.15893 244.418 4.14253C244.286 4.12613 244.152 4.11587 244.029 4.11268C243.315 4.07129 242.685 4.08398 242.246 4.14858C241.935 4.17498 241.605 4.19602 241.26 4.21157L239.706 3.7445C241.211 3.78732 242.634 3.78704 243.943 3.74367C244.228 3.71931 244.712 3.76127 245.114 3.76925L248.07 3.8129C248.678 3.81652 249.196 3.7433 250.043 3.91398C250.043 3.91398 250.603 3.94151 250.752 3.9182C250.902 3.8949 251.564 3.74995 251.959 3.65553C252.417 3.68245 253.052 3.75509 253.337 3.73074C253.836 3.67092 254.268 3.59423 254.625 3.50205L256.411 3.63364C256.409 3.75054 256.344 3.86051 256.216 3.96189C256.077 4.05966 256.082 4.17702 256.23 4.30437C256.379 4.43173 256.666 4.56546 257.07 4.69465L258.833 5.37885C259.121 5.42467 259.428 5.45551 259.712 5.46719C259.996 5.47887 260.243 5.47082 260.421 5.44413C261.18 5.3649 262.03 5.30296 262.788 5.22373C263.767 5.34494 263.515 5.54072 264.227 5.71245L266.531 5.99788C266.883 6.26238 267.241 6.51575 266.172 6.6043C265.96 6.61979 266.103 6.72114 265.909 6.76279C266.74 6.96129 267.654 7.02071 268.496 7.14297C268.828 7.23089 269.106 7.32397 269.316 7.41769C269.547 7.55882 270.014 7.70297 270.617 7.81904C271.221 7.9351 271.911 8.01375 272.54 8.03801C273.596 8.11232 274.676 8.22392 275.734 8.36782C276.095 8.41785 276.466 8.45432 276.822 8.47473C277.178 8.49515 277.511 8.49906 277.798 8.48619C278.821 8.46353 279.687 8.38562 280.34 8.25752C280.985 8.14881 281.855 8.09641 282.87 8.10508C284.607 8.32013 284.957 8.64418 286.008 8.9296L284.193 8.9616C284.127 9.07287 284.247 9.21317 283.503 9.2106C282.759 9.20803 283.136 9.3145 283.377 9.42201C283.462 9.4761 283.628 9.53173 283.847 9.5795C284.066 9.62726 284.324 9.66422 284.578 9.68412L286.123 9.82173C286.671 9.87411 287.201 9.89647 287.655 9.88637C288.109 9.87627 288.47 9.8341 288.698 9.76449C288.96 9.69838 289.321 9.65367 289.759 9.63308C290.317 9.57916 290.776 9.49896 291.119 9.39552L293.301 9.54623C293.393 9.44228 293.693 9.36939 294.149 9.3399C294.605 9.31039 295.189 9.32608 295.803 9.38432L297.273 9.47682C298.907 9.57774 299.266 9.54452 299.745 9.25145L297.784 8.72799C298.069 8.59011 298.344 8.46892 298.62 8.34772C298.131 8.17526 297.48 8.01215 296.731 7.87494C296.032 7.72751 295.314 7.58472 294.579 7.44712C293.781 7.30651 292.938 7.18425 291.948 7.02574C291.775 6.97447 291.524 6.88363 291.203 6.79612C290.882 6.71107 290.547 6.6277 290.199 6.54634C290.265 6.43507 290.324 6.33493 290.197 6.20576C290.807 6.24697 291.437 6.31906 292.031 6.41551C292.625 6.51197 293.163 6.62976 293.597 6.75827C293.67 6.78105 293.76 6.80246 293.86 6.82104C293.96 6.83961 294.068 6.85493 294.178 6.86594C295.249 6.9449 295.761 7.10985 296.285 7.3121C296.638 7.41549 297.093 7.50731 297.587 7.57481C298.534 7.69212 299.461 7.8428 300.367 7.97289C300.644 8.01623 300.932 8.05191 301.219 8.07845C302.166 8.16284 303.118 8.28084 304.029 8.42645C304.326 8.46346 304.611 8.51243 304.86 8.56928C305.11 8.62613 305.316 8.68919 305.462 8.75322C305.236 8.82336 305.115 8.9119 305.104 9.0135C305.065 9.08026 305.73 9.21636 306.044 9.31501C306.358 9.41365 305.742 9.36717 305.533 9.3771C304.674 9.39618 304.515 9.43617 305.029 9.65512C305.201 9.72396 305.315 9.79285 305.364 9.85749C305.413 9.92213 305.396 9.98116 305.315 10.0309C305.193 10.2367 304.821 10.4058 304.566 10.6071C304.962 10.7397 305.624 10.8814 305.696 11.0456C305.731 11.082 305.804 11.1206 305.91 11.1586C306.017 11.1965 306.154 11.2329 306.311 11.2651C306.727 11.3346 307.105 11.4177 307.416 11.508C307.726 11.5983 307.962 11.6933 308.104 11.7857C308.15 11.824 308.262 11.8645 308.418 11.8993C308.573 11.934 308.76 11.9604 308.942 11.9731C309.158 11.9887 309.352 11.9867 309.484 11.9674C309.615 11.948 309.673 11.913 309.647 11.8694C309.652 11.7874 309.624 11.702 309.561 11.6139C309.597 11.5527 309.634 11.4915 309.49 11.3901C310.138 11.4271 310.817 11.5012 311.455 11.6045C312.093 11.7077 312.664 11.836 313.108 11.9756C313.599 12.1199 314.051 12.2715 314.595 12.4404C314.483 12.6295 314.483 12.6295 315.64 12.964L321.779 13.1271L323.037 13.3486C324.21 13.5417 324.489 13.5284 325.226 13.4286L325.722 13.3348C326.764 13.4638 327.964 13.6124 328.615 13.3706C328.827 13.5282 328.965 13.5811 328.917 13.6051C328.606 13.8376 328.065 14.0349 327.317 14.1892C327.126 14.2253 326.992 14.2803 326.769 14.3125C326.052 14.4941 325.886 14.7747 326.304 15.097C326.512 15.2396 326.814 15.3856 327.2 15.5303C326.635 15.7312 325.887 15.8976 324.975 16.0252C324.201 16.1238 323.564 16.2559 323.082 16.4177C322.649 16.5809 322 16.7035 321.174 16.7786C320.754 16.8105 320.448 16.8735 320.286 16.9613C320.238 17.1989 320.349 17.4533 320.616 17.7188C320.667 17.7996 320.81 17.8869 321.035 17.9738C321.26 18.0607 321.56 18.1449 321.912 18.2197C321.912 18.2197 322.082 18.2766 322.163 18.3106C322.231 18.5983 321.977 18.8519 321.418 19.0543C321.326 19.1117 321.138 19.1532 320.875 19.1742C320.612 19.1953 320.283 19.1951 319.923 19.1738C319.164 19.1395 318.455 19.1353 317.721 19.116C316.93 19.0888 316.233 19.1102 315.704 19.1782C315.175 19.2461 314.833 19.3579 314.714 19.502C314.706 19.5427 314.683 19.5818 314.644 19.6188C314.622 19.6379 314.61 19.6584 314.608 19.68L316.294 20.1516L314.387 20.3393C314.275 20.5285 315.19 20.6419 315.649 20.7823L315.365 20.8607C315 20.905 314.508 20.8202 314.063 20.771L313.621 20.7163L313.568 20.8053C313.293 20.9265 312.29 20.7903 311.898 20.8791C311.507 20.968 311.786 21.0683 312.373 21.1648C312.78 21.2366 313.218 21.2938 313.653 21.3322C314.088 21.3706 314.509 21.3891 314.885 21.3864C315.109 21.3769 315.294 21.3552 315.431 21.3226C316.222 21.184 317.097 21.0648 318.048 20.966C318.777 20.8772 319.69 20.8395 320.723 20.8554C321.026 20.8487 321.391 20.8697 321.755 20.9147C322.119 20.9598 322.458 21.026 322.712 21.1017L323.247 21.1142C323.247 21.1142 323.539 21.1922 323.498 21.205C323.294 21.4362 323.531 21.7189 324.172 22.0111L323.614 22.0376C322.817 22.0105 323.323 22.1866 323.203 22.2734C322.637 22.257 321.901 22.1837 321.633 22.2938L321.231 22.2858L321.388 22.3054L321.579 22.2693L322.329 22.4338C321.974 22.4615 321.716 22.4953 321.403 22.5102C321.229 22.5231 321.091 22.546 320.997 22.5774C320.903 22.6088 320.854 22.6481 320.854 22.693C320.855 22.762 320.761 22.8201 320.582 22.8617C320.403 22.9033 320.145 22.9271 319.832 22.9307C319.458 22.9322 319.244 23.0072 319.025 23.0339L319.977 23.4862C319.977 23.4862 319.503 23.4275 319.761 23.5072L319.794 23.4516L320.371 23.5648C320.787 23.6641 321.077 23.6881 321.323 23.617C321.568 23.5459 321.512 23.6405 321.63 23.6133C321.587 23.6856 321.32 23.7361 321.091 23.7794C320.826 23.8134 320.527 23.8385 320.2 23.8541C320.79 24.1722 320.819 24.1816 319.956 24.2658C319.092 24.35 319.39 24.4765 318.668 24.4945C317.945 24.5126 318.767 24.7278 319.25 24.7697C319.609 24.7973 319.974 24.8403 320.321 24.8957C320.669 24.9511 320.99 25.0176 321.263 25.0906L321.118 25.3354C320.905 25.3152 320.692 25.2888 320.486 25.2572C319.786 25.1228 319.15 24.9962 318.527 25.0743L318.824 25.2604L316.651 25.1525C316.707 25.2919 317.039 25.4507 317.575 25.5953C317.494 25.6748 317.444 25.7585 317.426 25.8457C317.39 25.9069 317.176 25.8684 317.036 25.875C316.539 25.8853 316.13 25.9267 315.847 25.9958C315.564 26.0648 315.415 26.1594 315.412 26.2711C315.356 26.3656 316.121 26.5619 316.599 26.5554C317.793 26.5743 319.085 26.6471 320.403 26.7698C321.207 26.7857 321.32 26.537 322.643 26.7068C322.669 26.8216 322.5 26.9146 322.16 26.9717C321.821 27.0288 321.33 27.0468 320.761 27.0231C321.085 27.2782 322.875 27.3447 322.954 27.6113C322.508 27.5924 322.032 27.5481 321.571 27.4827C321.111 27.4173 320.682 27.3331 320.329 27.2383C320.252 27.215 320.157 27.1934 320.05 27.1757C319.944 27.158 319.83 27.1447 319.72 27.137C319.609 27.1293 319.506 27.1274 319.419 27.1316C319.332 27.1358 319.264 27.1459 319.222 27.161C319.47 27.2574 319.743 27.3688 320.054 27.473C320.365 27.5772 320.44 27.6223 320.664 27.6442C322.337 27.8514 323.133 28.2246 324.58 28.4696C324.959 28.5165 325.006 28.6657 324.678 28.6488C324.365 28.632 324.081 28.6342 323.86 28.6552C323.638 28.6762 323.486 28.7152 323.421 28.7679C323.178 28.8293 322.876 28.8782 322.521 28.9133C324.006 29.2963 325.776 29.6347 327.666 29.8968C328.023 29.9486 328.397 29.9801 328.73 29.9869C329.785 29.9872 330.904 30.0176 332.066 30.0774C332.477 30.0937 332.858 30.0922 333.186 30.0729C334.264 30.0272 335.12 30.1273 335.902 30.4092L337.195 30.8561C337.153 30.9284 336.935 31.009 336.768 31.1197L337.779 31.3584L345.492 30.8087L347.04 31.3409L349.261 31.3113C349.431 31.3267 349.602 31.3479 349.766 31.3739C350.215 31.531 350.566 31.682 351.053 31.8319C351.54 31.9818 352.411 32 353.018 32.1767C353.625 32.3534 354.232 32.357 354.983 32.462C355.054 32.5988 354.981 32.7219 354.769 32.8236C354.7 32.9405 354.318 33.0127 354.252 33.1239C354.26 33.2364 354.118 33.3319 353.84 33.4017C353.562 33.4715 353.156 33.5135 352.66 33.5239C351.27 33.7633 349.594 33.9338 347.683 34.0302C347.515 34.0372 347.376 34.0534 347.274 34.0778C347.172 34.1022 347.11 34.1342 347.091 34.1719C347.094 34.281 346.966 34.3753 346.718 34.4479C346.47 34.5205 346.107 34.5695 345.656 34.5914C345.536 34.5958 345.446 34.6095 345.396 34.6308C345.225 34.6445 345.1 34.6708 345.034 34.7071C344.968 34.7435 344.963 34.7886 345.019 34.8381C345.074 34.8877 345.19 34.94 345.353 34.99C345.516 35.04 345.722 35.086 345.951 35.1235C346.283 35.1841 346.622 35.242 346.966 35.2971C346.947 35.3305 346.605 35.3359 346.654 35.3659C346.79 35.4619 346.821 35.5519 346.746 35.6286C346.671 35.7054 346.492 35.7668 346.223 35.8082L348.066 36.5859C349.185 36.6936 350.283 36.8763 351.151 37.0993C351.152 37.1358 351.102 37.1664 351.006 37.1881C350.91 37.2097 350.771 37.2216 350.603 37.2226C350.153 37.2385 349.728 37.2695 349.243 37.2871C348.947 37.3002 348.7 37.3291 348.518 37.3721C348.335 37.4151 348.221 37.4714 348.18 37.5376L349.262 37.8269C348.916 37.8974 348.658 37.9312 348.429 37.9745C348.559 38.0655 348.782 38.1595 349.082 38.2494C349.381 38.3393 349.748 38.4226 350.155 38.4929C350.265 38.5074 350.376 38.518 350.483 38.5241C350.59 38.5301 350.69 38.5315 350.778 38.5282C351.617 38.429 352.597 38.6042 353.549 38.7699C354.502 38.9356 355.019 39.0355 355.722 39.1644L357.067 39.1817C357.407 39.2427 357.711 39.3144 357.954 39.3912C358.197 39.4679 358.372 39.5475 358.465 39.6236C358.393 39.746 357.755 39.679 357.375 39.6916C356.473 39.7678 355.287 39.7515 354.013 39.6455C353.698 39.6064 353.374 39.638 353.067 39.6417C352.404 39.657 351.767 39.6818 351.159 39.716C350.758 39.7479 350.384 39.7873 350.038 39.834C349.946 39.9898 351.4 40.1101 350.575 40.1871C350.859 40.2223 350.965 40.2713 351.111 40.2536C352.047 40.3547 352.969 40.4047 353.771 40.3978C355.309 40.3763 357.055 40.4473 358.867 40.6049C360.822 40.7683 362.698 40.8368 364.339 40.805C364.965 40.8032 365.663 40.8366 366.383 40.9028C367.232 40.9945 368.075 41.0521 368.858 41.072C369.117 41.0727 369.406 41.0883 369.7 41.1175C369.995 41.1468 370.288 41.1888 370.554 41.2403C370.531 41.2792 370.277 41.3075 370.334 41.3264C371.144 41.6179 371.472 41.9213 372.719 42.2191C373.571 42.3246 374.55 42.4458 375.107 42.3059C375.665 42.1659 375.465 42.0456 374.356 41.6872C374.596 41.6821 374.886 41.6988 375.175 41.7345C375.463 41.7703 375.732 41.8227 375.934 41.8827L376.894 42.1509L377.758 42.4072C377.682 42.5352 377.623 42.6353 377.56 42.7411C377.461 42.8533 377.57 42.99 377.871 43.1319C378.052 43.2093 378.211 43.2868 378.344 43.3636C378.884 43.6707 379.041 43.961 378.796 44.2019C378.326 44.5483 377.672 44.867 376.842 45.1543C375.965 45.4338 375.484 45.7864 374.762 46.0911C374.393 46.2298 373.945 46.3541 373.423 46.4627C372.433 46.7044 371.348 46.9343 370.354 47.1815C369.36 47.4286 368.238 47.6062 367.135 47.8099C365.492 48.0517 363.716 48.2605 361.817 48.4352C360.642 48.5883 359.435 48.7374 358.348 48.9134C357.064 49.1117 355.556 49.2541 353.861 49.337C352.364 49.4363 351.026 49.5832 349.874 49.7748C349.753 49.7956 349.658 49.8219 349.59 49.8532C349.383 50.0486 348.801 50.1863 347.935 50.2453C347.987 50.3025 348.055 50.3607 348.136 50.4196C348.257 50.4898 348.282 50.5554 348.208 50.6081C348.135 50.6607 347.966 50.698 347.724 50.7149C347.031 50.7633 346.455 50.8455 346.021 50.9579C345.862 50.986 345.763 51.0271 345.733 51.0775C345.704 51.1279 345.743 51.1861 345.85 51.2472C345.944 51.31 345.951 51.3678 345.87 51.4131C345.788 51.4585 345.623 51.4892 345.394 51.5013C344.807 51.5608 344.179 51.6086 343.513 51.6446C342.096 51.7238 340.449 51.7228 338.669 51.6418C338.48 51.6183 338.289 51.6544 338.068 51.627C336.809 51.5362 335.641 51.5221 334.703 51.5865C333.604 51.6116 332.455 51.6066 331.295 51.6184C329.621 51.6105 328.076 51.6583 326.704 51.7604C325.136 51.6617 324.255 51.8333 322.931 51.8366C321.709 51.8542 320.551 51.8964 319.468 51.963C317.721 52.0512 315.981 52.1283 314.259 52.2316C312.644 52.2808 311.157 52.3749 309.823 52.5123C309.312 52.5743 308.387 52.4777 308.038 52.6077C307.69 52.7378 306.988 52.7224 306.42 52.7656L304.628 52.8722C304.32 52.8975 303.982 52.9136 303.617 52.9201C301.952 52.9288 300.798 53.1025 299.252 53.1379L299.094 53.1184C296.349 53.3765 293.208 53.5182 289.763 53.5393C287.751 53.6185 285.55 53.6147 283.415 53.6727C282.905 53.7888 281.703 53.6457 281.064 53.7517C280.425 53.8577 279.381 53.7883 278.558 53.8057C277.734 53.8231 276.929 53.8667 276.049 53.8652C275.284 53.8657 274.639 53.913 274.171 54.0029C273.103 54.1515 271.802 54.2388 270.325 54.261C268.37 54.2996 266.522 54.3873 264.534 54.368C264.563 54.4763 264.441 54.5684 264.181 54.6349C263.921 54.7014 263.533 54.7398 263.056 54.7463C260.931 54.7876 259.003 54.8952 256.849 54.9271L256.273 54.9274L249.831 54.9895C248.096 55.0015 246.424 55.0214 244.654 55.035C243.991 54.9529 243.975 55.0943 243.516 55.0673C243.388 54.9977 243.237 54.967 243.011 55.0048L242.961 55.0882L235.61 55.1989C232.732 55.2799 229.704 55.3042 226.553 55.2716C225.805 55.2798 225.108 55.3074 224.471 55.3541C223.88 55.3711 223.265 55.3787 222.628 55.3766C221.766 55.3556 220.924 55.345 220.105 55.3448C217.951 55.3767 215.691 55.3595 213.332 55.3362C210.974 55.3128 209.187 55.3543 207.088 55.3511C205.667 55.3482 204.252 55.3342 202.78 55.3013C202.078 55.2859 201.212 55.2026 200.485 55.1722C199.757 55.1418 199.52 55.1423 199.424 55.1901C199.107 55.3241 198.311 55.2374 197.675 55.2244C196.434 55.2021 196.258 55.1564 195.921 54.8101L197.443 54.7C197.817 54.6645 198.286 54.6583 198.806 54.6819C199.326 54.7055 199.88 54.7582 200.413 54.835C200.623 54.8678 200.843 54.8938 201.059 54.9114C201.276 54.929 201.485 54.9378 201.674 54.9374C203.21 54.9186 204.725 54.8792 206.201 54.8471L206.417 54.826L206.43 54.5172C206.235 54.4868 206.033 54.4618 205.831 54.4429L198.426 54.2425C196.727 54.1933 194.963 54.0823 193.296 54.037C191.628 53.9917 190.729 53.964 189.436 53.9172C188.89 53.8906 188.333 53.8556 187.769 53.8124C187.802 53.7827 187.821 53.751 187.826 53.7178C187.855 53.6678 187.895 53.601 187.655 53.5474C187.394 53.4719 187.045 53.4073 186.678 53.3667C186.333 53.3399 185.999 53.3247 185.688 53.3217C184.186 53.2958 182.471 53.1327 180.908 52.8671L180.363 53.0444C178.016 52.9448 175.634 52.8468 173.182 52.7522C172.691 52.7264 172.176 52.6769 171.675 52.6074C171.139 52.5409 170.645 52.4021 170.08 52.3262C169.522 52.2715 168.967 52.2289 168.427 52.1991C168.573 52.1535 168.766 52.117 168.999 52.0909C169.229 52.0817 169.396 52.0532 169.477 52.0095C169.558 51.9658 169.548 51.9092 169.448 51.8479C169.274 51.7426 169.197 51.6435 169.577 51.6309C169.928 51.6069 170.18 51.5549 170.302 51.4811C170.423 51.4073 170.41 51.3148 170.264 51.2144C170.2 51.1557 170.155 51.0982 170.129 51.0424L169.971 51.0228C169.451 50.815 168.411 50.7399 167.664 50.5699C167.312 50.5205 166.947 50.4922 166.628 50.4892C165.802 50.4527 164.998 50.4367 164.145 50.3907C163.737 50.3695 163.31 50.3309 162.89 50.2772C162.29 50.2029 162.227 50.1951 161.879 49.925C162.42 49.9297 162.849 49.8894 163.093 49.8108C163.337 49.7322 163.382 49.6202 163.219 49.4938C162.773 49.2175 162.301 48.9263 160.283 48.73C160.941 48.7203 161.575 48.7011 162.181 48.6724C162.357 48.6663 162.489 48.646 162.559 48.6143C162.629 48.5826 162.634 48.541 162.573 48.4951C162.511 48.4492 162.387 48.4011 162.216 48.3574C162.046 48.3137 161.837 48.2763 161.618 48.2503C160.552 48.0941 159.441 47.9895 158.408 47.9484C157.538 47.9302 156.752 47.9404 155.736 47.9399L154.536 47.7913C154.556 47.7579 154.38 47.7122 154.424 47.6939C154.729 47.5226 155.066 47.3553 155.412 47.1712C154.859 47.0718 154.38 46.9519 154.029 46.825C153.679 46.6982 153.472 46.5696 153.431 46.4541C153.401 46.4192 153.409 46.3874 153.454 46.361C153.499 46.3346 153.58 46.3142 153.691 46.3012C154.007 46.2788 154.251 46.2361 154.403 46.1764C154.556 46.1166 154.614 46.0414 154.573 45.9565L153.64 45.6439C150.831 45.4208 148.073 45.2615 145.416 45.1688L143.017 45.0987C142.728 45.015 142.818 44.9784 143.09 44.9763C143.362 44.9741 144.128 44.9973 144.663 45.0098C145.125 45.0262 145.535 45.0154 145.854 44.9785C146.172 44.9416 146.389 44.8798 146.482 44.7992L145.677 44.4426C145.716 44.3759 145.772 44.2813 146.209 44.2876C146.508 44.2799 146.727 44.2463 146.833 44.1922C146.939 44.1382 146.925 44.0668 146.792 43.9896C146.772 43.9338 146.802 43.8829 146.881 43.8394C147.527 43.8358 148.17 43.8377 148.756 43.8208C149.029 43.8151 149.26 43.7945 149.432 43.7602C149.605 43.7259 149.715 43.6787 149.755 43.622C149.776 43.5666 149.725 43.5035 149.605 43.4378C149.485 43.3721 149.3 43.3057 149.064 43.2438C148.146 43.1673 147.305 43.1663 146.728 43.2411C146.522 43.2997 146.191 43.3317 145.779 43.3329C145.367 43.3341 144.893 43.3044 144.419 43.2478C143.877 43.1825 143.336 43.1538 142.894 43.1669C142.451 43.1799 142.136 43.2339 142.005 43.319C141.449 43.286 140.955 43.2607 140.469 43.2243C139.894 43.1784 139.352 43.1648 138.899 43.1852C138.175 43.1995 137.394 43.1911 136.576 43.1602C134.215 43.0828 131.852 43.0111 129.567 42.9789C128.962 42.9697 128.439 42.9945 127.841 42.9742C127.243 42.9539 126.77 43.0087 126.022 42.8982C125.88 42.881 125.737 42.87 125.604 42.866C125.471 42.862 125.352 42.8651 125.257 42.875C123.944 42.9624 122.404 42.9748 120.728 42.9114C118.433 42.8958 116.053 42.8519 113.755 42.8419C113.08 42.8505 112.443 42.8735 111.85 42.9106C111.399 42.9331 110.926 42.9483 110.434 42.9562C110.057 42.9632 109.696 42.9425 109.76 43.0638C109.823 43.1852 109.259 43.1092 108.933 43.0868C107.814 43.028 106.671 42.9483 105.516 42.8487C104.378 42.7405 103.262 42.6775 102.237 42.6636C101.496 42.6554 100.732 42.6863 99.7801 42.5205C99.8164 42.4593 99.8526 42.3981 100.06 42.3342C99.2833 42.1584 98.3972 42.0071 97.475 41.8929C96.5527 41.7787 95.6207 41.7048 94.7562 41.6773L93.564 41.3446C93.2705 41.3055 92.9708 41.277 92.6832 41.2609C92.3957 41.2448 92.1262 41.2414 91.8912 41.2508C91.7097 41.2557 91.4884 41.2433 91.268 41.216C91.0476 41.1887 90.843 41.1483 90.6916 41.1023C90.4652 41.0437 90.1887 40.9931 89.8967 40.957C89.6046 40.9208 89.3101 40.9006 89.0499 40.8989C88.2308 40.8627 87.3564 40.7792 86.5163 40.6568C86.2983 40.5851 86.1617 40.5109 86.1233 40.4436C86.085 40.3762 86.1466 40.3186 86.3005 40.2777C86.5487 40.2056 86.688 40.1137 86.7101 40.0077C86.7322 39.9016 86.6366 39.7835 86.429 39.6606C86.3227 39.5852 86.2872 39.5137 86.3246 39.4506C86.362 39.3875 86.4716 39.334 86.6466 39.2934C87.3001 39.1056 87.1253 39.0004 86.0561 38.6888C85.8825 38.6369 85.6731 38.5883 85.4413 38.5462C85.2096 38.5042 84.9605 38.4695 84.7099 38.4444C84.1219 38.3936 83.5419 38.3559 82.9806 38.3318C82.6649 38.2927 82.3412 38.3242 81.9774 38.3091C80.1586 38.2331 79.8924 38.1105 79.3034 37.8465L78.8741 37.656C78.0779 37.5016 77.2072 37.3735 76.3246 37.2807C75.442 37.1879 74.5696 37.1328 73.7702 37.1194C73.4524 37.1184 73.0871 37.092 72.7302 37.0443C71.5688 36.8985 70.3927 36.7976 69.2797 36.7483C68.5861 36.7206 67.8385 36.6488 67.1266 36.5415C66.4147 36.4343 65.7687 36.2962 65.2664 36.1438C64.8152 36.0065 64.2249 35.8833 63.5777 35.7913C62.82 35.6975 62.7498 35.5873 63.1729 35.5023C63.596 35.4174 64.3047 35.308 64.9337 35.2187C65.1526 35.1884 65.2882 35.139 65.3254 35.0762C65.3627 35.0133 65.3001 34.9394 65.1447 34.8627C65.0449 34.7314 65.0276 34.6068 65.0932 34.492C65.1283 34.4443 65.1041 34.3896 65.0222 34.3315C64.9404 34.2735 64.8028 34.2135 64.6187 34.1557C64.4346 34.0978 64.2084 34.0433 63.9552 33.996C63.702 33.9486 63.4277 33.9095 63.1509 33.8812C61.9828 33.7365 60.8463 33.5957 59.6551 33.49C59.1559 33.4402 58.6572 33.3784 58.1713 33.3062C57.1766 33.1277 56.1125 32.9797 55.0407 32.8707C54.532 32.822 54.0347 32.7368 53.6563 32.6336C52.463 32.3555 51.3635 32.0631 50.3776 31.7617C50.1399 31.6682 49.8291 31.577 49.4643 31.4938C49.0996 31.4106 48.6889 31.3372 48.2581 31.2782C47.9109 31.2352 47.6282 31.1405 47.3605 31.0775C47.166 30.9316 47.1452 30.7966 47.3001 30.6852C47.4551 30.5738 47.7806 30.4897 48.2462 30.4407C48.6877 30.3819 49.1009 30.3136 49.4825 30.2415C49.9426 30.1831 50.4895 30.1481 51.103 30.1376C51.8295 30.1063 52.3668 30.0167 52.6447 29.8806C50.6557 29.6343 48.7643 29.2806 47.021 29.3633L45.6964 29.1395C45.7491 29.0505 45.7953 28.9726 45.8381 28.9003C46.1532 28.7686 46.2516 28.6026 46.125 28.4162C46.0206 28.3261 46.0301 28.2441 46.1523 28.1785C46.2745 28.1129 46.5051 28.066 46.8209 28.0426C48.6915 27.8025 50.8546 27.6404 52.6088 27.368C53.1588 27.3169 53.8027 27.2936 54.5133 27.2993C55.2008 27.2829 55.172 27.1599 54.3809 27.0082C53.9368 26.9289 53.4842 26.8529 53.0247 26.7805C50.9986 26.7684 50.1732 27.132 47.8611 27.0308L46.7895 26.5517C46.4997 26.5443 46.2184 26.5414 45.9475 26.543L42.0706 26.7376C41.7477 26.7474 41.4963 26.7807 41.3451 26.8337C41.1939 26.8868 41.1488 26.9575 41.215 27.0378C41.2412 27.136 41.1878 27.2261 41.0567 27.3048C40.9722 27.3599 41.0263 27.4332 41.2071 27.5086C41.6147 27.6785 41.0917 27.7033 40.7614 27.746C40.677 27.7502 40.5797 27.7497 40.475 27.7447C40.3704 27.7396 40.2606 27.7301 40.1519 27.7167C40.0432 27.7032 39.9379 27.6861 39.842 27.6663C39.7462 27.6465 39.6616 27.6244 39.5934 27.6013C39.0114 27.4397 38.5024 27.2691 37.9304 27.0908C38.3365 26.9201 37.8587 26.64 38.4924 26.4856C38.5633 26.4547 38.5916 26.4171 38.5757 26.3751C38.5599 26.3331 38.5 26.2875 38.4 26.2412C38.1419 26.1217 38.019 26.0051 38.0437 25.9033C38.0683 25.8015 38.2396 25.7181 38.5403 25.6614L38.5766 25.6002C37.7835 25.3945 37.9936 25.2115 37.6822 24.9938L36.9193 24.8515C35.0213 24.5089 35.018 24.5145 33.3839 24.5271C33.0545 24.3967 33.473 24.3769 33.7868 24.362L36.4151 24.2157C38.1334 24.118 39.9018 24.0504 41.8214 24.0134C43.741 23.9765 45.8811 23.8533 47.8652 23.7647C47.9655 23.7578 48.0423 23.7442 48.089 23.7251C48.1357 23.7059 48.151 23.6817 48.1338 23.6546C48.0549 23.6252 47.9516 23.5969 47.8317 23.5717C47.7117 23.5465 47.5781 23.5251 47.4406 23.509C46.8092 23.4308 46.1613 23.3804 45.4885 23.315L44.2341 23.2015L43.8482 23.0522C43.5971 22.9613 43.4255 22.8505 43.0914 22.7852C42.8161 22.7366 42.5172 22.6996 42.2259 22.6782C41.9346 22.6569 41.6616 22.6518 41.4352 22.6637C40.8076 22.6935 40.2398 22.7366 39.6405 22.7759C39.0411 22.8151 38.7108 22.8578 38.1911 22.877C37.1352 22.8858 36.1147 22.9089 35.1341 22.9463C34.3082 23.0348 33.5442 23.1397 32.8471 23.2602C32.4122 23.3079 32.0055 23.365 31.2629 23.3029C30.9106 23.2466 30.6067 23.1726 30.4051 23.0941C30.2035 23.0155 30.1173 22.9375 30.1617 22.8739C30.2015 22.824 30.3143 22.7846 30.4894 22.7592C30.6645 22.7339 30.8961 22.7235 31.1624 22.7291C31.9078 22.7199 32.5971 22.6891 33.2164 22.6371C34.0783 22.543 35.1276 22.5024 36.303 22.5178C36.7016 22.5313 36.9688 22.4808 37.3175 22.4643C37.6662 22.4477 37.9616 22.4067 38.3503 22.4369C39.558 22.5148 40.137 22.3954 40.8607 22.3179C41.1057 22.2835 41.2575 22.2279 41.2994 22.1572C41.3413 22.0865 41.2717 22.0035 41.0982 21.9173C40.7641 21.7456 40.3555 21.5729 39.8787 21.402C39.6333 21.3179 39.3189 21.2381 38.9601 21.1689C38.6014 21.0996 38.208 21.0426 37.811 21.0025C37.5733 20.8974 37.4466 20.794 37.4421 20.7017C37.4377 20.6093 37.5557 20.5311 37.7855 20.4739C38.3712 20.3433 38.8904 20.2106 40.2026 20.2835C40.8196 20.3114 41.4002 20.3167 41.9215 20.2993C43.0776 20.2755 44.4112 20.3277 45.7966 20.4508C46.155 20.4824 46.5073 20.5039 46.8431 20.5147C49.2381 20.5904 51.5201 20.6282 53.8086 20.6548C55.021 20.6676 56.2432 20.6638 57.5089 20.7011C60.4769 20.782 63.1786 20.7404 66.0434 20.7668C67.5438 20.7803 68.8868 20.7258 70.0019 20.6061C70.219 20.5659 70.4055 20.5191 70.5592 20.4661C69.8203 20.327 69.0086 20.2169 68.202 20.1462C67.3953 20.0756 66.6207 20.0469 65.9524 20.0627C65.585 20.1017 65.1101 20.1088 64.5807 20.0833C64.0513 20.0578 63.4882 20.0007 62.9542 19.9183L64.5068 19.8717C65.5363 19.85 66.5908 19.8432 67.5921 19.8119C69.1828 19.7581 70.6571 19.672 72.3043 19.6371C73.6342 19.6051 74.8243 19.5231 75.8372 19.3939C76.569 19.2996 77.4047 19.2328 78.3274 19.1947C78.9833 19.1744 78.9833 19.1744 79.4026 18.9815C79.07 18.8567 78.6398 18.8392 78.2346 18.8368C75.8052 18.7583 73.4932 18.7445 71.3458 18.7958C70.2623 18.8004 69.3011 18.8533 68.5084 18.952C68.3142 18.9937 67.8176 18.9739 67.419 18.9604C66.1693 18.9398 64.975 18.9458 63.8502 18.9783C62.2952 19.0324 60.5633 19.0195 58.7218 18.9403C58.3726 18.8433 58.7745 18.8513 58.7943 18.8179C60.2206 18.7556 61.6186 18.6839 63.0732 18.6312C63.4708 18.6124 63.8958 18.6031 64.3435 18.6034C66.0147 18.6361 67.4074 18.5455 68.3264 18.3442C68.3725 18.2663 68.9771 18.2755 69.2442 18.225C69.3756 18.1813 69.4632 18.1298 69.5042 18.0721C69.115 17.9283 68.6749 17.9275 68.3362 17.9274C67.3531 17.9434 66.4073 17.9739 65.5035 18.0185C64.6633 18.061 63.7332 18.0723 62.7385 18.0523C62.0044 18.033 61.3768 18.0628 60.6361 18.0546C60.2343 18.0375 59.8184 18.0101 59.3968 17.9728C59.8662 17.8726 60.5042 17.811 61.266 17.7923C61.8437 17.7324 62.566 17.7144 62.6583 17.5586C62.3855 17.4472 62.0816 17.4454 61.8375 17.4569C61.3294 17.4565 60.8387 17.4635 60.3679 17.478C59.3695 17.5096 58.2886 17.5101 57.1478 17.4793C56.547 17.4678 55.977 17.4712 55.4473 17.4896C54.2467 17.5141 53.0961 17.5687 51.9968 17.5938C49.745 17.6195 47.6912 17.7115 45.5275 17.76C45.046 17.772 44.6143 17.8141 43.9796 17.7415C43.3449 17.6688 43.3167 17.6594 43.2417 17.6142C43.0641 17.539 43.0103 17.466 43.0914 17.4105C43.2173 17.3586 43.4626 17.3297 43.7835 17.329C45.7177 17.2465 47.5523 17.1306 49.2757 16.982C50.0341 16.9523 50.6986 16.8916 51.2461 16.8021C51.6803 16.7404 52.1953 16.6996 52.775 16.6809C53.6182 16.6363 54.4972 16.6037 55.4085 16.5831C55.8325 16.572 56.193 16.539 56.4689 16.4859C56.7447 16.4329 56.9303 16.361 57.0147 16.2744L55.8975 15.9867C55.722 15.9733 55.5479 15.9617 55.3759 15.952L46.1034 16.1592L45.1851 16.1649C44.1787 16.1477 43.9327 16.1053 42.978 15.7721C45.1568 15.6937 46.8695 15.4652 47.9456 15.1093C47.687 15.0711 47.4219 15.0382 47.1564 15.0116C45.4152 14.9274 43.7692 14.9051 42.2819 14.9454C41.3984 14.9494 40.49 14.9384 39.5783 14.933C39.8449 14.7689 40.8664 14.8178 41.5322 14.7808C43.123 14.723 44.5297 14.6034 45.7074 14.426C46.1134 14.3569 46.6214 14.3126 47.208 14.2954C47.7951 14.2894 48.2855 14.2476 48.6366 14.1734C48.9877 14.0993 49.1887 13.9951 49.2222 13.87C49.2775 13.7567 49.3967 13.6515 49.578 13.5558C49.2573 13.42 48.7481 13.29 48.1459 13.1901C47.5437 13.0902 46.89 13.0274 46.3074 13.0133C45.0636 12.9574 43.7735 12.8659 42.47 12.7411C41.8207 12.6782 41.184 12.642 40.6013 12.6351C40.0874 12.6297 39.5032 12.5843 38.938 12.5056C38.3728 12.427 37.8574 12.3195 37.4706 12.1996C36.9485 12.0513 36.4612 11.9014 35.974 11.7514C35.4868 11.6015 34.9214 11.4121 34.3526 11.2281C33.8511 11.1994 33.3628 11.1809 32.8943 11.1729C32.5298 11.1797 32.1044 11.1596 31.6684 11.1152C31.2324 11.0707 30.8039 11.0036 30.4336 10.9219C30.6508 10.8413 30.8964 10.7702 31.155 10.6768C30.8 10.5535 30.5426 10.4278 30.3984 10.3073C30.2543 10.1868 30.2265 10.074 30.3167 9.97582C30.3694 9.8868 29.9835 9.73747 29.8501 9.61943C29.6784 9.51767 29.6462 9.42271 29.7576 9.34699C29.869 9.27127 30.1188 9.21833 30.4744 9.19511C30.9154 9.15226 31.2743 9.08773 31.5364 9.00416C31.6231 8.98247 31.6672 8.95276 31.6648 8.91775C31.6623 8.88274 31.6133 8.84355 31.5223 8.80376C31.4312 8.76398 31.3011 8.72486 31.1437 8.68999C30.9863 8.65512 30.8067 8.62561 30.6213 8.60417C30.0534 8.54337 29.4894 8.50396 28.9617 8.4882C28.0527 8.45922 27.1824 8.44102 26.3509 8.43359C25.4313 8.4224 24.4083 8.35339 23.3857 8.23355C22.4701 8.12016 21.6493 8.01849 21.2016 7.8018C20.754 7.58512 20.0382 7.59202 19.4878 7.43428C19.797 7.29208 20.3465 7.19329 21.0809 7.14786C21.5615 7.13164 21.9626 7.08908 22.2586 7.02289C22.5546 6.95671 22.7389 6.86837 22.7997 6.76354L21.1288 6.32369C19.7944 6.11661 19.0561 6.27599 17.6142 6.19297L19.0998 6.0306C19.1297 6.01455 19.1409 5.9957 19.1328 5.97496C18.9886 5.64655 18.7591 5.57633 17.2404 5.39421L16.3881 5.28864L15.039 5.16336C14.8229 5.09605 14.6735 5.02587 14.6056 4.95982C14.5377 4.89377 14.5537 4.83417 14.6521 4.78699C14.8498 4.70763 14.9098 4.60623 14.8269 4.49211C14.696 4.41652 14.6852 4.34684 14.7963 4.29515C14.9074 4.24345 15.1334 4.21302 15.4351 4.20914C15.6759 4.20312 15.6938 4.11576 15.8248 4.06629C15.9549 3.99811 16.1777 3.94579 16.4778 3.91289C16.778 3.87999 17.1485 3.86728 17.5643 3.87564C18.79 3.88247 19.9415 3.85688 20.9983 3.79931L20.8088 3.77585C21.9103 3.82639 22.9401 3.83251 23.848 3.79394C24.7578 3.74539 25.9255 3.77653 26.8919 3.74692C27.6786 3.75372 28.2776 3.68652 28.5617 3.55959C28.8368 3.4384 29.8367 3.46668 30.6024 3.48985C31.0559 3.50484 31.4943 3.51119 31.9128 3.50883C32.4745 3.4814 33.1768 3.50725 33.9026 3.58209C34.1204 3.60509 34.3349 3.61726 34.5256 3.61743C36.3707 3.64889 38.2125 3.6859 40.0327 3.70232C40.4529 3.69287 40.9455 3.71452 41.4529 3.76474C41.6661 3.78654 41.8737 3.79558 42.0476 3.79062C44.9237 3.74074 48.1692 3.868 50.9888 3.79918C51.3305 3.78292 51.7088 3.77954 52.1131 3.78913C53.0214 3.82956 53.8101 3.80354 54.3596 3.71503C54.6561 3.66795 55.0362 3.64201 55.4757 3.63885C55.9151 3.6357 56.4043 3.65541 56.912 3.69672C57.7569 3.75142 58.5378 3.75735 59.1723 3.71389C60.4093 3.67374 61.7102 3.65723 63.0648 3.66449C63.4798 3.67151 63.8446 3.65591 64.131 3.61888C64.4174 3.58186 64.6176 3.52441 64.7162 3.45098C64.3835 3.32617 64.0198 3.31099 63.6744 3.32196C62.3358 3.29352 61.0004 3.25951 59.6867 3.24611C58.5109 3.20782 57.3827 3.19612 56.3187 3.21117C55.7904 3.22815 55.1311 3.18944 54.4848 3.10348C53.6927 2.99462 52.8769 2.94054 52.2023 2.95217C51.7022 2.95506 51.1743 2.94568 50.6262 2.92418C50.2754 2.89824 49.9159 2.85371 49.5844 2.79515C49.4529 2.76972 49.3098 2.74833 49.1641 2.73236C49.0185 2.71639 48.8737 2.7062 48.7389 2.70242C48.604 2.69864 48.4819 2.70135 48.3808 2.71041C48.2796 2.71946 48.2014 2.73464 48.1511 2.75498C47.6437 2.92504 46.509 2.83826 45.5374 2.81945C44.0814 2.53162 42.9978 2.70198 41.637 2.53941C41.5294 2.52863 41.4233 2.5221 41.3254 2.52024C41.2274 2.51838 41.1396 2.52121 41.0673 2.52857C38.4338 2.62642 35.3645 2.54487 32.5996 2.57866C32.2947 2.5836 31.9408 2.56667 31.5781 2.52978C29.2078 2.28564 26.9289 2.21632 25.1869 2.3354C24.9749 2.34612 24.7338 2.34658 24.4745 2.33675C23.2834 2.23972 22.1444 2.20103 21.1526 2.22392C19.5981 2.21653 18.1036 2.22252 16.5241 2.20009C15.4354 2.16818 14.4803 2.20227 13.7545 2.29898C13.7314 2.33793 13.2479 2.29596 12.8776 2.2919C12.6646 2.19385 12.4799 2.1053 12.2603 2.01838C12.064 1.91085 11.77 1.80203 11.3982 1.69932C11.0264 1.5966 10.5856 1.50239 10.1055 1.42304C9.28469 1.32138 9.2026 1.17386 9.77696 1.11958C11.2574 0.940019 13.1189 0.866526 15.2248 0.904497C16.9851 0.907531 18.7771 0.914482 20.5624 0.932555C21.6038 0.948059 22.7015 0.982496 23.7146 0.988526C24.0564 1.00178 24.4076 1.0213 24.7644 1.04689C25.2023 1.08399 25.6274 1.10421 26.0169 1.10646C27.2675 1.07521 28.6632 1.10243 30.1374 1.18682C30.6774 1.20522 31.1959 1.21142 31.6852 1.20533C32.8429 1.18243 34.0979 1.19928 35.417 1.25546C36.2369 1.28714 37.0319 1.3037 37.7937 1.30498C38.0628 1.30844 38.2819 1.28183 38.541 1.30198C40.8221 1.51283 42.4373 1.36053 44.4902 1.44161C45.488 1.46422 46.4413 1.46428 47.3367 1.44181C49.084 1.44289 50.8801 1.46601 52.7176 1.51106C55.1475 1.58508 57.3993 1.5594 59.7194 1.58996C60.1775 1.59638 60.6198 1.59529 61.043 1.58668C63.102 1.5298 65.3384 1.54186 67.6976 1.62257C68.2333 1.63423 68.7144 1.61997 69.1109 1.5807C69.5073 1.54143 69.8106 1.47798 70.0016 1.39434C70.0824 1.33693 70.0301 1.26237 69.8546 1.18503C69.5634 1.08626 69.2346 0.989492 68.8735 0.896312L55.741 0.583634C55.1894 0.567307 54.6515 0.558516 54.1301 0.557302C52.5963 0.554584 51.0154 0.530259 49.3951 0.48445C47.794 0.44142 46.2645 0.449058 44.7133 0.436103C44.2565 0.431763 43.7875 0.421523 43.3083 0.405413C40.0696 0.27791 36.9115 0.200034 33.8562 0.17234C32.5709 0.168411 31.1823 0.109895 29.8719 0.0909291C28.5615 0.0719612 26.7696 0.0650181 25.2151 0.0576252L20.4025 0.0587596C19.4559 0.0549871 18.5342 0.0662466 17.6159 0.0719466C16.5015 -0.334817 16.1174 -0.430158 14.6303 -0.608366C14.1216 -0.674103 13.6041 -0.713332 13.1386 -0.721461C11.6624 -0.689306 9.81009 -0.82316 8.4102 -0.805439C7.56549 -0.81418 6.84871 -0.768993 6.33325 -0.674502C5.88579 -0.600345 5.37412 -0.541666 4.80613 -0.499352C3.25021 -0.847328 3.11309 -1.07333 4.2835 -1.16128C4.6006 -1.18172 5.03739 -1.1754 5.26637 -1.2187C5.39776 -1.24507 5.57725 -1.26015 5.79054 -1.26276C6.00383 -1.26537 6.24501 -1.25543 6.49518 -1.23372C7.28472 -1.17678 8.02475 -1.16338 8.64101 -1.19489C9.22098 -1.23659 9.9319 -1.23492 10.7052 -1.19005C11.2735 -1.11967 11.773 -1.21905 12.2644 -1.24776C12.7558 -1.27648 13.1591 -1.32805 13.9267 -1.2509C14.0673 -1.23554 14.2068 -1.22632 14.3346 -1.22394C14.4625 -1.22157 14.5752 -1.22611 14.6641 -1.23721C15.4885 -1.28689 16.4723 -1.28167 17.5356 -1.22197C19.1663 -1.16322 20.6963 -1.16102 22.0726 -1.21544C22.8964 -1.26305 23.5989 -1.34749 24.1524 -1.46546C24.3033 -1.50492 24.5273 -1.52858 24.803 -1.53417C26.1878 -1.50956 27.6913 -1.41692 29.2167 -1.26224C29.7914 -1.20026 30.3653 -1.15123 30.9262 -1.1162C32.079 -1.03839 33.194 -0.99479 34.2382 -0.986686C35.7554 -0.985402 37.3351 -0.955464 38.9633 -0.897142C39.968 -0.864669 40.9362 -0.852684 41.8563 -0.861316C42.802 -0.865385 43.8117 -0.840615 44.8625 -0.78758C45.9076 -0.744363 46.8285 -0.769263 47.5143 -0.85927C47.7402 -0.907771 47.9221 -0.965365 48.0566 -1.03098C46.5265 -1.24448 44.9441 -1.35299 43.6279 -1.33464C43.1279 -1.34879 42.7128 -1.33451 42.186 -1.41767L42.1695 -1.38985C42.0647 -1.3718 41.9065 -1.36755 41.7252 -1.37789C41.5438 -1.38824 41.352 -1.41246 41.1862 -1.44595C41.2488 -1.55166 41.3082 -1.6518 41.3511 -1.72413C42.3539 -1.71137 43.3276 -1.7124 44.2673 -1.72724C45.0593 -1.74858 46.1346 -1.56166 46.8201 -1.63202C48.1574 -1.54403 49.0088 -1.66552 50.208 -1.63046C51.4071 -1.59541 52.7279 -1.4796 53.9271 -1.44455C54.9735 -1.42531 55.9895 -1.42113 56.9695 -1.43202C57.3078 -1.44731 57.6977 -1.44373 58.1154 -1.42148C58.7026 -1.37963 59.2488 -1.37261 59.6913 -1.40125C60.1338 -1.42988 60.4547 -1.49301 60.6174 -1.58339C60.4642 -1.66805 60.2579 -1.77721 60.0199 -1.89029C60.4577 -1.98321 61.1225 -2.02233 61.9159 -2.00184L63.0369 -2.00633C63.3339 -2.00388 63.561 -2.029 63.6711 -2.07649C63.7813 -2.12399 63.7661 -2.19022 63.6286 -2.2615C61.5031 -2.62031 61.4248 -2.65986 59.8647 -2.42907L57.7934 -2.53632L57.8283 -2.53796ZM85.8451 -1.55232L85.6873 -1.57187L85.8451 -1.55232ZM343.978 36.623L343.942 36.6842L343.981 36.6174L344.328 36.6604L344.351 36.6215L343.978 36.623ZM293.557 9.799C293.067 9.73223 292.571 9.67085 292.074 9.61522C291.943 9.6066 291.822 9.60465 291.718 9.60954C291.615 9.61444 291.534 9.62602 291.481 9.64333C291.441 9.71009 291.719 9.75641 291.971 9.78769C292.29 9.82979 292.615 9.85655 292.914 9.8652C293.213 9.87384 293.474 9.86408 293.671 9.83689L293.956 9.81253L293.557 9.799ZM40.7375 26.0709C41.0607 26.0821 41.3671 26.084 41.6493 26.0763C42.9012 26.0224 44.0998 25.9439 45.3833 25.8938C47.0028 25.7668 48.8637 25.715 50.8962 25.7405C51.6903 25.753 52.3611 25.7118 52.8305 25.6218C53.1114 25.5735 53.4741 25.5452 53.8962 25.5388L59.2696 25.3921C59.6017 25.3617 59.8889 25.319 60.1243 25.2651C59.6508 25.2064 59.3351 25.1673 59.1457 25.1439C58.7526 25.1373 58.4148 25.1551 58.1661 25.1957C57.8989 25.2645 57.4473 25.2917 56.9009 25.2719C56.3494 25.2556 55.8115 25.2468 55.29 25.2456C54.3052 25.249 53.3138 25.2636 52.3257 25.2726C51.9412 25.4639 50.8066 25.3771 49.835 25.3583L49.0844 25.3668C46.6309 25.466 44.2872 25.6024 42.0648 25.7754C41.6352 25.8047 41.2652 25.8514 40.966 25.9141C40.8533 25.9629 40.8172 26.0239 40.8605 26.0921L40.7027 26.0725L40.7375 26.0709ZM150.301 44.3585C150.897 44.3715 151.516 44.3983 152.152 44.4384C152.641 44.4793 153.119 44.5042 153.565 44.5119C156.068 44.5548 158.676 44.6538 161.354 44.8077C161.704 44.831 162.04 44.8424 162.35 44.8415L164.542 44.8025C165.233 44.7805 165.246 44.7583 164.743 44.4631C164.326 44.4058 163.904 44.3535 163.48 44.3067C163.228 44.2754 162.818 44.2246 162.721 44.2724C162.136 44.4029 161.068 44.3184 160.169 44.2907C157.568 44.2194 154.886 44.1141 152.26 44.0277C151.704 44.0066 151.167 43.9959 150.652 43.9958C150.332 43.9914 150.041 43.9997 149.79 44.0205C149.717 44.0226 149.655 44.0288 149.61 44.0386C149.565 44.0484 149.536 44.0617 149.527 44.0774C149.517 44.0932 149.527 44.1112 149.556 44.1302C149.584 44.1491 149.63 44.1686 149.691 44.1874C149.906 44.2531 150.154 44.316 150.428 44.3741L150.301 44.3585ZM169.355 1.51677L171.917 1.48178C172.224 1.47802 172.485 1.43863 172.814 1.45548C174.568 1.50887 176.193 1.494 177.618 1.4115C178.103 1.37783 178.671 1.3711 179.29 1.39167C181.186 1.45264 182.974 1.45515 184.606 1.39912C185.661 1.38788 186.648 1.35012 187.553 1.2864C187.623 1.2716 187.666 1.25152 187.681 1.22752C187.695 1.20352 187.68 1.17616 187.636 1.14731C187.624 1.12908 187.593 1.10947 187.545 1.08984C187.496 1.07021 187.432 1.051 187.355 1.03356C187.278 1.01613 187.192 1.00087 187.101 0.988832C187.01 0.976795 186.918 0.968264 186.83 0.963837C185.686 0.877584 184.601 0.847537 183.662 0.876132C182.792 0.910345 181.855 0.920357 180.866 0.90601C179.919 0.902236 179.277 1.0138 178.107 0.928673C177.613 0.900639 177.176 0.909869 176.872 0.954812C176.259 1.02931 175.404 1.03345 174.459 0.966505C173.893 0.932625 173.353 0.918096 172.858 0.923471C171.657 0.947963 170.51 0.996964 169.398 1.04431C169.047 1.05527 168.671 1.05678 168.277 1.04881L162.706 0.956099C161.368 0.927658 160.032 0.893654 158.719 0.88025C157.644 0.851148 156.644 0.860262 155.754 0.907274C154.805 0.956684 153.771 0.976743 152.669 0.967073C150.959 0.994114 149.258 1.00445 147.396 1.00082C146.209 1.00305 144.993 0.995824 143.753 0.973551C143.125 0.944883 142.592 0.968228 142.257 1.03909C142.053 1.09743 141.573 1.0499 141.174 1.03636C139.048 0.905868 137.054 0.874949 135.331 0.945755C135.111 0.957295 134.87 0.961471 134.612 0.958215C132.953 0.955785 131.234 0.939968 129.642 0.939793C129.222 0.945295 128.828 0.96039 128.463 0.984888C128.502 1.02486 128.613 1.06818 128.774 1.10586C128.935 1.14355 129.132 1.17271 129.326 1.1873C130.832 1.29896 132.286 1.35795 133.628 1.36179C135.86 1.34756 138.199 1.37954 140.62 1.45739C142.498 1.53586 144.21 1.51934 145.63 1.40905C146.739 1.32675 148.183 1.35771 149.712 1.49662C150.366 1.56296 151.002 1.58949 151.531 1.57258C152.04 1.5504 152.624 1.55578 153.25 1.5884C154.568 1.65044 155.836 1.67922 157.028 1.67417C158.194 1.65134 159.281 1.58895 160.479 1.57002C161.676 1.55109 163.499 1.56194 164.976 1.52978C166.452 1.49763 167.912 1.49329 169.355 1.51677ZM63.1825 -1.73747C63.3178 -1.56545 63.7965 -1.45838 64.3116 -1.41251C66.0871 -1.20883 67.8425 -1.12216 69.283 -1.16704C70.0611 -1.22964 71.0985 -1.20554 72.1912 -1.09948C73.4635 -0.989229 74.6527 -0.970945 75.5493 -1.04785C75.769 -1.06129 75.9371 -1.0897 76.0389 -1.13054C76.0587 -1.16393 76.0949 -1.22512 76.1015 -1.23625C76.0073 -1.26447 75.8918 -1.29062 75.7639 -1.31267C75.6359 -1.33473 75.499 -1.35211 75.3637 -1.36347L69.4823 -1.56039L68.4574 -1.60372C66.5854 -1.71725 64.8016 -1.76247 63.1825 -1.73747ZM74.7511 0.985269C75.669 1.26617 75.6722 1.2606 76.1425 1.32481C78.4112 1.59153 80.6783 1.73552 82.6741 1.73963C83.1177 1.73881 83.4942 1.7117 83.7716 1.66056C83.9144 1.65363 84.0052 1.63161 84.0244 1.5993C84.0435 1.56699 83.9894 1.52701 83.8738 1.48809L83.1439 1.29019C81.8183 1.20452 80.5118 1.13645 79.2321 1.08638C77.7422 1.02726 76.4219 1.02498 74.8773 1.0009L74.7511 0.985269ZM150.191 43.1147C151.047 43.5013 151.05 43.4957 152.482 43.5954C153.48 43.6661 154.448 43.7076 155.357 43.7186C156.468 43.7308 157.607 43.7525 158.715 43.7702C158.986 43.7826 159.215 43.7723 159.359 43.7416C159.502 43.7108 159.55 43.6616 159.492 43.6037C159.346 43.5407 159.119 43.4799 158.846 43.4309C158.574 43.382 158.272 43.3479 157.991 43.3342L157.386 43.325C156.652 43.3057 155.89 43.277 155.181 43.2728C154.721 43.2888 154.188 43.2764 153.623 43.2366C153.059 43.1967 152.479 43.1305 151.928 43.0431L150.191 43.1147ZM79.3183 -1.23198C79.5467 -1.16503 79.805 -1.10091 80.0863 -1.04131C81.1757 -0.876142 82.3287 -0.782331 83.3192 -0.778271C83.7876 -0.76804 84.2159 -0.804572 84.6927 -0.751484C85.548 -0.680545 86.3768 -0.642757 87.1345 -0.640165C87.1345 -0.640165 87.3469 -0.655655 87.4167 -0.658963L87.5618 -0.903759C87.2031 -0.960468 86.829 -1.0068 86.4568 -1.04061C85.2077 -1.10574 83.9802 -1.15027 82.7561 -1.20036C81.5319 -1.25045 81.1051 -1.27346 80.3045 -1.29497C79.9474 -1.28315 79.6171 -1.26205 79.3183 -1.23198ZM52.268 29.201L53.9027 29.702C54.4317 29.7456 54.9258 29.7534 55.31 29.7245C55.6942 29.6955 55.9473 29.6313 56.0309 29.5416C56.1655 29.4996 56.179 29.4374 56.0685 29.3681C55.958 29.2987 55.732 29.2276 55.4381 29.1696C55.1552 29.1008 54.8323 29.0392 54.4893 28.9885C54.1462 28.9378 53.7905 28.8991 53.4441 28.8748L52.268 29.201ZM65.8782 26.7063C64.809 26.6213 63.7864 26.5866 62.8885 26.6047C62.3228 26.6544 61.5563 26.6386 60.7461 26.5603C59.2727 26.4045 57.8523 26.3613 56.7848 26.44C56.7848 26.44 56.7452 26.5067 56.5642 26.5261C56.3833 26.5455 57.1009 26.5926 57.2588 26.6122C58.4165 26.66 59.5808 26.6967 60.5873 26.7139C61.2121 26.7131 61.873 26.7289 62.5587 26.761C63.5021 26.8104 64.3967 26.8264 65.2077 26.8084C65.2077 26.8084 65.5215 26.7935 65.8749 26.7118L65.8782 26.7063ZM180.059 0.609016C179.548 0.514654 178.995 0.437962 178.439 0.384696C177.884 0.331432 177.341 0.302981 176.853 0.301465C176.478 0.296542 176.175 0.321456 175.992 0.37227C175.808 0.423082 175.754 0.496896 175.839 0.582037C176.218 0.628957 176.723 0.691517 177.007 0.726707C177.992 0.723263 178.832 0.678016 180.059 0.609016ZM275.653 8.56089C275.243 8.48493 274.792 8.42685 274.351 8.39329C273.909 8.35973 273.495 8.35204 273.156 8.37109C272.982 8.37936 273.1 8.46567 273.071 8.51575C273.051 8.5271 273.052 8.54122 273.071 8.55663C273.091 8.57204 273.13 8.58817 273.183 8.60333C273.237 8.61849 273.303 8.63212 273.375 8.64279C273.447 8.65347 273.522 8.6608 273.593 8.66401C274.037 8.69674 274.457 8.70648 274.814 8.69237C275.171 8.67825 275.455 8.64073 275.64 8.58315L275.653 8.56089ZM282.058 9.64679C281.995 9.60196 281.86 9.55525 281.678 9.5152C281.497 9.47515 281.28 9.44445 281.069 9.42875C280.696 9.42664 280.357 9.43907 280.065 9.46557C279.747 9.48601 279.976 9.61579 280.404 9.69279C280.586 9.72369 280.78 9.7478 280.971 9.76319C281.162 9.77858 281.345 9.78483 281.505 9.78145C281.665 9.77806 281.797 9.76513 281.892 9.74369C281.987 9.72224 282.042 9.69288 282.052 9.65792L282.058 9.64679ZM95.9456 -0.755217C94.99 -0.915374 94.2545 -0.875082 93.4455 -0.939453C92.6364 -1.00382 92.4371 -1.0106 92.5455 -0.907591C92.6539 -0.804588 93.2085 -0.825477 93.5558 -0.782466C94.025 -0.725395 94.497 -0.692624 94.919 -0.687811C95.3411 -0.682997 95.6966 -0.706337 95.9456 -0.755217ZM295.071 26.3435C294.565 26.3076 294.069 26.2822 293.591 26.2677C293.528 26.2826 293.488 26.3021 293.475 26.325C293.461 26.348 293.474 26.3739 293.512 26.4013C293.512 26.4013 293.836 26.4832 294.025 26.5067C294.723 26.5871 294.757 26.4719 295.071 26.3435ZM366.608 41.2652C366.951 41.3733 367.111 41.4468 367.385 41.4987C367.511 41.5167 367.641 41.5298 367.766 41.537C367.891 41.5442 368.007 41.5453 368.106 41.5402C368.226 41.5091 368.255 41.4614 368.185 41.4067C368.185 41.4067 367.836 41.3097 367.703 41.3052C367.324 41.2823 366.956 41.2689 366.608 41.2652ZM79.6801 -1.6709C78.954 -1.76083 78.2594 -1.84686 77.7567 -1.74191C78.9097 -1.62897 78.9098 -1.62896 79.6801 -1.6709ZM91.4406 -0.644315C90.7074 -0.836646 90.2772 -0.8541 89.9252 -0.832001C89.8504 -0.826436 89.8009 -0.81403 89.7842 -0.796667C89.7675 -0.779306 89.7845 -0.757932 89.8326 -0.735775C89.8807 -0.713619 89.9574 -0.69189 90.0509 -0.673871C90.1445 -0.655853 90.2499 -0.642528 90.3512 -0.635913C90.7336 -0.630376 91.0982 -0.633187 91.4406 -0.644315ZM129.177 -0.562985C129.193 -0.590803 129.213 -0.624184 129.024 -0.647644C128.974 -0.659554 128.916 -0.669795 128.855 -0.677345C128.794 -0.684895 128.732 -0.689482 128.677 -0.69065C128.677 -0.69065 128.657 -0.657267 128.644 -0.635013L129.177 -0.562985ZM155.382 45.6208L154.96 45.6462L155.15 45.6696L155.65 45.6838L155.382 45.6208ZM303.868 9.21272C303.71 9.19317 303.552 9.17362 303.529 9.21257C303.496 9.21859 303.475 9.2273 303.469 9.23795C303.462 9.24859 303.471 9.26087 303.493 9.27376C303.493 9.27376 303.714 9.30114 303.808 9.31287L303.868 9.21272ZM279.284 9.5242C279.18 9.52197 279.087 9.52458 279.009 9.53187L278.989 9.56525L279.305 9.60435L279.284 9.5242ZM65.0444 17.4779C64.9225 17.4576 64.7932 17.4416 64.6656 17.431L64.5077 17.4114C64.5077 17.4114 64.6773 17.4683 64.772 17.48C64.8667 17.4917 64.9431 17.4773 65.0444 17.4779Z' fill='%23F52B53'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 317px;
}

.faq-wrap {
  margin-top: 30px;
}

.accor-item .minus {
  display: none !important;
  background: #f52b53 !important;
  color: #fff !important;
}

.accor-item .cmn span {
  line-height: 0;
  transform: translateY(-3px);
  color: #fd3355;
}

.accor-item .cmn {
  min-width: 41px;
  height: 41px;
  background: #fff6f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: "Inter", sans-serif;
}

.accor-item .accor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 40px 30px 40px;
}

.accor-item .accor-top h4 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-align: left;

  color: #170f49;
  margin-bottom: 0;
}

.accor-item .accor-btm {
  transition: all 0.4s ease-in-out;
}

.accor-item .accor-btm .accor-btm-inner p {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  padding: 0px 30px 40px;
  color: #767676;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.accor-item {
  background: #ffffff;

  border-radius: 16px;

  box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
}

.accor-item {
  margin-bottom: 18px;
}

.faq-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.faq-wrap .accor-item {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
}

.accor-btm {
  max-height: 0;
  overflow: hidden;
}

.accor-item .accor-top.togglePadd {
  padding-bottom: 10px;
}

.accor-item .accor-top.togglePadd .minus {
  display: flex !important;
}

.accor-item .accor-top.togglePadd .minus span {
  color: #fff;
}

.accor-item .accor-top.togglePadd .plus {
  display: none !important;
}

.travel-feed {
  padding: 100px 0;
  background: #f7f8fa;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.travel-feed .top-heading em {
  text-align: center;
  color: #fd3355;
}

.travel-feed .top-heading h2 {
  text-align: center;
  margin-top: 8px;
}

.travel-feed .top-heading h2 span {
  position: relative;
  z-index: 1;
}

.travel-feed .top-heading h2 span::before {
  content: "";
  position: absolute;
  bottom: -0.8em;
  right: -0.4em;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='195' height='12' viewBox='0 0 195 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_520' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='195' height='12'%3E%3Crect width='195' height='12' fill='%23F52B53'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_520)'%3E%3Cpath d='M29.2896 -2.53796L29.7662 -2.69614L28.8388 -2.92292L29.2833 -3.08892C29.7291 -3.0874 30.3067 -2.83866 30.621 -2.97083C30.6594 -3.09879 30.174 -3.13986 30.0501 -3.24181C29.9405 -3.34631 29.8511 -3.45013 29.7828 -3.55202C30.0256 -3.55092 30.2925 -3.52628 30.5677 -3.47953C30.9379 -3.40319 31.3009 -3.36607 31.6168 -3.37229C32.2629 -3.35167 32.887 -3.37224 33.5893 -3.36771L33.3557 -3.67567L34.2609 -3.60362C34.3568 -3.58016 34.4711 -3.61789 34.5654 -3.58887C35.3499 -3.34329 35.6818 -3.47711 36.0584 -3.58807C36.1356 -3.61678 36.2286 -3.63822 36.335 -3.65182C37.3815 -3.593 38.3252 -3.24878 39.2676 -3.07207C39.445 -3.02695 39.6151 -2.96904 39.7659 -2.90243C40.0937 -2.77296 40.4584 -2.66724 40.8265 -2.59496C41.1946 -2.52269 41.5544 -2.48616 41.873 -2.48871C42.5776 -2.49157 43.3737 -2.40593 44.1842 -2.24008C44.4252 -2.18545 44.6664 -2.14941 44.8923 -2.13426C45.1183 -2.11911 45.3241 -2.12517 45.4965 -2.15207L46.0445 -1.97627C46.282 -2.04761 46.5832 -2.08675 46.9298 -2.09131C47.2764 -2.09588 47.6611 -2.06578 48.0606 -2.00283C48.4864 -1.93455 48.9188 -1.88853 49.3606 -1.81634C50.2731 -1.67833 51.1612 -1.59392 51.9972 -1.56575C53.2423 -1.48226 54.4587 -1.4177 55.7148 -1.31361C56.5005 -1.26336 57.2661 -1.23573 58.007 -1.23085C58.8944 -1.2112 59.8544 -1.11605 60.8405 -0.950019C60.7938 -0.79424 60.3613 -0.840261 60.0711 -0.845534C59.1349 -0.871426 58.1767 -0.93852 57.2135 -0.988922C56.7796 -1.0086 56.3576 -1.01605 55.95 -1.01122C55.2687 -1.01768 54.5504 -1.05919 53.8074 -1.13504C52.6338 -1.2185 51.4977 -1.25861 50.4107 -1.25498C50.3255 -1.24881 50.2474 -1.23788 50.1778 -1.22236C50.1632 -1.20893 50.1604 -1.19198 50.1694 -1.17315C50.1785 -1.15433 50.1992 -1.13425 50.2295 -1.11484C50.2599 -1.09543 50.2989 -1.07735 50.3427 -1.06231C50.3866 -1.04728 50.434 -1.0358 50.4802 -1.02897C50.9119 -0.923401 51.3756 -0.810015 51.7827 -0.794063C51.7985 -0.792871 51.8152 -0.79015 51.8318 -0.786093C51.8484 -0.782035 51.8644 -0.776743 51.8787 -0.770604C52.7901 -0.547731 53.5395 -0.585447 54.2495 -0.549185C55.4283 -0.451185 56.5646 -0.405409 57.6412 -0.412549C57.804 -0.412064 57.9797 -0.399323 58.162 -0.37479C59.2896 -0.275341 60.3441 -0.264218 61.2759 -0.341925C61.6594 -0.361611 62.0159 -0.405806 62.4281 -0.406545C62.6819 -0.409588 62.9029 -0.437789 63.0777 -0.489464C63.2525 -0.541139 63.3775 -0.61522 63.4452 -0.707247C63.6191 -0.658795 63.7957 -0.615614 63.9729 -0.578221C64.0787 -0.556839 64.1802 -0.551161 64.2568 -0.562349C64.3334 -0.573537 64.3795 -0.600757 64.3857 -0.638501C64.4175 -0.744209 64.176 -0.797295 63.9664 -0.842562C64.0928 -0.865232 64.2352 -0.878569 64.3902 -0.882251C65.2634 -0.906405 66.2 -0.877897 67.1796 -0.797352C67.9402 -0.700944 68.5474 -0.779415 69.3476 -0.643457C69.4435 -0.619998 69.5225 -0.654431 69.6108 -0.662699C69.8411 -0.706238 70.1279 -0.716023 70.4464 -0.691201C70.765 -0.666378 71.1056 -0.607698 71.4389 -0.520245C71.8539 -0.759167 72.7503 -0.48622 73.4123 -0.461689C73.6161 -0.340187 73.3823 -0.361546 73.3722 -0.328165C73.3622 -0.294783 73.3722 -0.328172 73.2923 -0.347722C72.6313 -0.175653 71.7257 -0.138131 70.7027 -0.240436C70.5135 -0.24001 70.3332 -0.232173 70.1636 -0.216994C69.9066 -0.195511 69.617 -0.197656 69.3073 -0.223335C68.9688 -0.242193 68.658 -0.233238 68.3897 -0.196898C68.2353 -0.197488 68.1047 -0.179284 68.0101 -0.143958C67.9155 -0.108632 67.8599 -0.0573304 67.8484 0.00518005C67.9515 0.0533696 68.0658 0.0974633 68.1868 0.13571C68.8189 0.28673 69.4491 0.349239 69.9536 0.310943C70.8316 0.244958 71.8764 0.309349 72.81 0.286822C73.4411 0.277697 74.1127 0.30369 74.8121 0.364319C74.8121 0.364319 74.7937 0.425518 74.792 0.431081C74.8747 0.457577 74.9617 0.478836 75.0479 0.493643C75.0479 0.493643 75.0479 0.493644 75.0562 0.465826C75.0179 0.43911 74.9659 0.413981 74.9063 0.393343L74.6985 0.34251C74.8397 0.329283 74.9717 0.289896 75.119 0.313961C75.4292 0.358667 75.7257 0.377541 75.9907 0.36946C76.2557 0.36138 76.4836 0.326508 76.6607 0.266937C76.9746 0.19059 77.3651 0.155871 77.8069 0.165021C78.1455 0.156686 78.4717 0.13877 78.7842 0.111367C78.7842 0.111367 78.8042 0.0446089 78.9522 0.00912763C78.8121 -0.0346357 78.6659 -0.0703709 78.5205 -0.0964397C77.8878 -0.161569 77.2535 -0.221133 76.6318 -0.265663C76.4028 -0.270472 76.1875 -0.263011 75.99 -0.243426C75.443 -0.220505 74.8285 -0.253034 74.1822 -0.339116C74.1822 -0.339116 74.0543 -0.370395 73.9903 -0.386035C74.1717 -0.532788 74.797 -0.385871 75.0499 -0.485256C75.2038 -0.483448 75.4747 -0.47095 75.4654 -0.497113C75.4444 -0.532029 75.4418 -0.564464 75.4581 -0.592093C75.4743 -0.619722 75.5089 -0.641862 75.5593 -0.656924C75.6098 -0.671984 75.6749 -0.679597 75.7499 -0.679211C75.8249 -0.678824 75.9081 -0.670445 75.9933 -0.654684C76.7051 -0.569418 77.3755 -0.545709 77.9634 -0.585003C78.1863 -0.584243 78.4362 -0.558972 78.6574 -0.552651C78.7928 -0.545036 78.9165 -0.549271 79.0216 -0.565122C79.5561 -0.681864 80.2754 -0.690391 81.0714 -0.589419C81.456 -0.553118 81.8155 -0.548263 82.1312 -0.575104C82.3558 -0.579909 82.451 -0.496907 82.6109 -0.457806L83.2899 -0.375383L82.4179 -0.272104C82.6043 -0.0354193 82.7525 0.0426235 83.057 0.0573689C83.5013 0.0796369 83.9339 0.0896961 84.3524 0.0874868C84.662 0.0855415 84.9175 0.034568 85.3366 0.125104C85.4106 0.139869 85.482 0.14465 85.5385 0.13864C86.0293 0.0582646 86.6203 0.0398189 87.2711 0.0845607C87.6081 -0.0659476 88.1821 0.0803866 88.7131 0.19829C88.8844 0.0849177 88.5739 0.0328755 88.3887 -0.0362991C88.8329 -0.0292175 89.2803 -0.0332618 89.7388 -0.0167059C89.8767 -0.0227339 90.0343 -0.012425 90.1993 0.0134094C90.3643 0.0392424 90.5321 0.0798926 90.6896 0.132181C90.7664 0.165967 90.8589 0.191395 90.9481 0.203186C91.0372 0.214975 91.1161 0.212225 91.1683 0.195505C91.4063 0.146192 91.7874 0.191611 91.984 0.108313C92.0539 0.0891562 92.1539 0.086481 92.2659 0.100757C92.378 0.115033 92.4949 0.145335 92.5957 0.186231C92.4854 0.198991 92.3871 0.219085 92.3031 0.246068C92.0022 0.333723 92.1127 0.480186 92.4951 0.693119C93.0822 0.681407 93.6819 0.684733 94.226 0.644602C94.5293 0.608576 94.9009 0.619839 95.2991 0.677121C95.6974 0.734405 96.1063 0.835439 96.4801 0.968862C96.6154 1.02017 96.7695 1.0557 96.912 1.06841C97.0545 1.08112 97.1748 1.07007 97.249 1.03745C97.2953 0.999726 97.3096 0.951984 97.2908 0.89836L96.907 0.804523C96.907 0.804523 96.9221 0.754451 96.9254 0.743324L97.4771 0.734911C97.769 0.734619 98.0735 0.749368 98.3494 0.745167C98.7547 0.717222 99.2173 0.732799 99.7088 0.790928C100.162 0.850532 100.608 0.895587 101.041 0.925692C101.461 0.956681 101.765 0.857894 102.165 0.842116C102.467 0.830224 102.799 0.842934 103.149 0.879745C103.754 0.945033 104.308 0.945155 104.763 0.880096C105.292 1.23062 105.55 1.28761 106.042 1.19289L106.273 1.16584L106.336 1.24102L106.513 1.22449C106.843 1.20976 107.174 1.19504 107.519 1.18979C107.998 1.22232 108.516 1.30984 109.022 1.4438C109.117 1.46726 109.248 1.54697 109.332 1.60937C109.417 1.67178 109.6 1.86004 109.735 1.98259C109.588 2.07206 109.425 2.15761 109.308 2.26045C109.297 2.27802 109.298 2.29898 109.312 2.32163C109.326 2.34427 109.352 2.36799 109.389 2.39087C109.425 2.41374 109.471 2.43513 109.522 2.45333C109.574 2.47153 109.629 2.48602 109.684 2.49564C109.792 2.51639 109.898 2.53021 109.998 2.53656C110.492 2.5475 110.965 2.53937 111.413 2.51224C111.576 2.47398 111.8 2.47034 112.048 2.50192C112.297 2.5335 112.556 2.59848 112.785 2.68655C113.371 2.63368 114.051 2.6493 114.779 2.73233C115.55 2.68183 116.48 2.78396 117.2 2.67331C117.183 2.72894 117.258 2.82473 117.361 2.87992C117.525 2.96375 117.711 3.04144 117.91 3.10969L119.432 3.24297C119.489 3.3115 119.56 3.38087 119.644 3.45018C119.702 3.50493 119.803 3.55851 119.925 3.59955C120.047 3.64059 120.182 3.66588 120.299 3.67004C120.602 3.69035 120.856 3.64495 121.217 3.75713C120.661 3.86318 119.911 3.84909 119.101 3.71737C118.34 3.6172 117.607 3.56714 116.931 3.56904C116.708 3.56828 116.415 3.57413 116.345 3.63473C116.191 3.80599 115.787 3.77892 115.316 3.74733C114.946 3.71275 114.608 3.71662 114.329 3.75865C114.051 3.80068 113.841 3.87965 113.716 3.98906C113.684 4.09477 113.76 4.185 114.085 4.24651L115.435 4.49316C115.634 4.46145 115.823 4.42391 116.001 4.3807C116.301 4.32331 116.671 4.30756 117.082 4.33467C117.494 4.36178 117.936 4.43102 118.374 4.53701C118.598 4.59175 118.822 4.64649 118.984 4.62048C119.127 4.5906 119.258 4.55483 119.377 4.51343C119.401 4.48568 119.41 4.45374 119.405 4.41884C119.491 4.43507 119.578 4.45617 119.661 4.48141C120.328 4.77585 120.844 4.77075 121.313 4.69438C121.44 4.67168 121.537 4.63559 121.666 4.60733C121.794 4.57906 121.84 4.54238 121.957 4.55305C122.889 4.64962 123.157 4.32709 123.943 4.34004C123.981 4.32744 124.005 4.3086 124.012 4.28527C124.019 4.26194 124.009 4.23486 123.983 4.20652C123.927 4.18093 123.863 4.15893 123.796 4.14253C123.729 4.12613 123.661 4.11586 123.599 4.11268C123.238 4.07129 122.918 4.08398 122.696 4.14858C122.538 4.17498 122.372 4.19601 122.196 4.21157L121.41 3.7445C122.172 3.78732 122.893 3.78703 123.555 3.74366C123.7 3.71931 123.945 3.76127 124.148 3.76925L125.646 3.8129C125.954 3.81652 126.216 3.7433 126.645 3.91398C126.645 3.91398 126.929 3.9415 127.004 3.9182C127.08 3.89489 127.415 3.74995 127.615 3.65553C127.848 3.68245 128.169 3.75509 128.314 3.73074C128.566 3.67091 128.785 3.59423 128.966 3.50204L129.87 3.63364C129.869 3.75054 129.836 3.86051 129.772 3.96189C129.701 4.05966 129.704 4.17702 129.779 4.30437C129.854 4.43173 130 4.56546 130.204 4.69465L131.097 5.37885C131.243 5.42467 131.398 5.45551 131.542 5.46719C131.686 5.47887 131.812 5.47082 131.902 5.44413C132.286 5.3649 132.716 5.30296 133.1 5.22373C133.596 5.34494 133.469 5.54072 133.829 5.71245L134.996 5.99788C135.174 6.26238 135.356 6.51575 134.814 6.6043C134.707 6.61979 134.779 6.72114 134.681 6.76279C135.102 6.96129 135.565 7.02071 135.991 7.14297C136.16 7.23089 136.3 7.32397 136.407 7.41769C136.524 7.55881 136.76 7.70297 137.066 7.81904C137.371 7.9351 137.721 8.01375 138.04 8.03801C138.574 8.11231 139.122 8.22392 139.657 8.36782C139.84 8.41785 140.028 8.45431 140.209 8.47473C140.389 8.49515 140.558 8.49905 140.703 8.48619C141.221 8.46353 141.66 8.38562 141.99 8.25752C142.317 8.1488 142.758 8.09641 143.272 8.10508C144.151 8.32014 144.329 8.64418 144.861 8.9296L143.942 8.9616C143.908 9.07287 143.969 9.21316 143.592 9.2106C143.215 9.20803 143.407 9.31449 143.529 9.42201C143.572 9.4761 143.656 9.53173 143.767 9.57949C143.877 9.62726 144.008 9.66422 144.137 9.68412L144.919 9.82173C145.197 9.87411 145.465 9.89647 145.695 9.88637C145.926 9.87627 146.108 9.8341 146.224 9.76448C146.356 9.69838 146.539 9.65366 146.761 9.63308C147.044 9.57916 147.276 9.49896 147.45 9.39552L148.555 9.54622C148.602 9.44228 148.754 9.3694 148.985 9.33989C149.215 9.31039 149.511 9.32608 149.822 9.38431L150.567 9.47682C151.395 9.57774 151.576 9.54452 151.819 9.25146L150.826 8.72799C150.97 8.5901 151.109 8.46891 151.249 8.34772C151.001 8.17526 150.671 8.01215 150.292 7.87494C149.938 7.72751 149.575 7.58472 149.202 7.44711C148.798 7.30651 148.371 7.18424 147.87 7.02574C147.782 6.97446 147.655 6.88363 147.492 6.79611C147.33 6.71107 147.16 6.6277 146.984 6.54634C147.017 6.43507 147.047 6.33493 146.983 6.20576C147.292 6.24697 147.611 6.31906 147.912 6.41551C148.212 6.51197 148.485 6.62975 148.705 6.75826C148.742 6.78105 148.787 6.80246 148.838 6.82103C148.889 6.83961 148.944 6.85492 148.999 6.86594C149.542 6.94489 149.801 7.10985 150.066 7.3121C150.245 7.41549 150.476 7.50731 150.726 7.57481C151.205 7.69211 151.675 7.8428 152.134 7.97289C152.274 8.01623 152.42 8.05191 152.565 8.07845C153.045 8.16284 153.528 8.28084 153.989 8.42645C154.139 8.46346 154.283 8.51243 154.41 8.56928C154.536 8.62613 154.64 8.68919 154.714 8.75321C154.6 8.82336 154.539 8.9119 154.533 9.0135C154.513 9.08026 154.85 9.21636 155.009 9.31501C155.168 9.41365 154.856 9.36717 154.75 9.37709C154.315 9.39618 154.235 9.43617 154.495 9.65511C154.582 9.72396 154.64 9.79285 154.665 9.85749C154.69 9.92213 154.681 9.98115 154.64 10.0309C154.578 10.2367 154.39 10.4058 154.261 10.6071C154.461 10.7397 154.796 10.8814 154.833 11.0456C154.85 11.082 154.888 11.1206 154.941 11.1586C154.995 11.1965 155.065 11.2329 155.145 11.2651C155.355 11.3346 155.547 11.4177 155.704 11.508C155.861 11.5983 155.981 11.6933 156.053 11.7857C156.076 11.824 156.133 11.8645 156.212 11.8993C156.29 11.934 156.385 11.9604 156.477 11.9731C156.587 11.9887 156.685 11.9867 156.751 11.9674C156.818 11.948 156.847 11.9129 156.834 11.8694C156.837 11.7874 156.822 11.702 156.791 11.6139C156.809 11.5527 156.827 11.4915 156.755 11.3901C157.083 11.4271 157.427 11.5012 157.75 11.6045C158.073 11.7077 158.362 11.836 158.587 11.9756C158.836 12.1199 159.065 12.2715 159.34 12.4404C159.284 12.6295 159.283 12.6295 159.87 12.964L162.979 13.1271L163.616 13.3486C164.21 13.5417 164.352 13.5284 164.725 13.4286L164.976 13.3348C165.504 13.4638 166.111 13.6124 166.441 13.3706C166.549 13.5282 166.619 13.5811 166.594 13.605C166.437 13.8376 166.163 14.0349 165.784 14.1892C165.687 14.2253 165.619 14.2803 165.507 14.3125C165.143 14.4941 165.059 14.7747 165.271 15.097C165.376 15.2396 165.529 15.3856 165.724 15.5303C165.438 15.7312 165.059 15.8976 164.598 16.0252C164.206 16.1238 163.883 16.2559 163.639 16.4177C163.419 16.5809 163.091 16.7035 162.672 16.7786C162.46 16.8105 162.305 16.8735 162.223 16.9613C162.198 17.1989 162.254 17.4533 162.39 17.7188C162.416 17.7996 162.488 17.8869 162.602 17.9738C162.716 18.0607 162.868 18.1449 163.046 18.2197C163.046 18.2197 163.132 18.2766 163.174 18.3105C163.208 18.5983 163.079 18.8519 162.796 19.0543C162.749 19.1117 162.654 19.1532 162.521 19.1742C162.388 19.1953 162.221 19.1951 162.039 19.1738C161.655 19.1395 161.295 19.1353 160.924 19.116C160.523 19.0888 160.17 19.1102 159.902 19.1782C159.634 19.2461 159.461 19.3579 159.4 19.502C159.396 19.5427 159.385 19.5818 159.365 19.6188C159.354 19.6379 159.348 19.6583 159.347 19.68L160.201 20.1516L159.235 20.3393C159.178 20.5285 159.642 20.6419 159.874 20.7823L159.731 20.8607C159.546 20.905 159.296 20.8202 159.071 20.771L158.847 20.7163L158.82 20.8053C158.681 20.9265 158.173 20.7903 157.974 20.8791C157.776 20.968 157.918 21.0683 158.215 21.1648C158.421 21.2366 158.643 21.2938 158.863 21.3322C159.084 21.3706 159.297 21.3891 159.487 21.3864C159.6 21.3768 159.694 21.3552 159.764 21.3226C160.165 21.184 160.608 21.0648 161.089 20.966C161.458 20.8772 161.921 20.8395 162.444 20.8554C162.598 20.8487 162.783 20.8697 162.967 20.9147C163.151 20.9598 163.323 21.026 163.451 21.1017L163.722 21.1142C163.722 21.1142 163.87 21.1922 163.849 21.205C163.746 21.4362 163.866 21.7189 164.191 22.0111L163.909 22.0376C163.505 22.0105 163.761 22.1866 163.7 22.2734C163.414 22.257 163.041 22.1837 162.905 22.2938L162.701 22.2858L162.781 22.3054L162.878 22.2693L163.258 22.4338C163.078 22.4615 162.947 22.4953 162.788 22.5102C162.701 22.5231 162.631 22.546 162.583 22.5774C162.535 22.6088 162.51 22.6481 162.51 22.693C162.511 22.762 162.463 22.8201 162.373 22.8617C162.282 22.9033 162.151 22.9271 161.993 22.9307C161.803 22.9322 161.695 23.0072 161.584 23.0339L162.066 23.4862C162.066 23.4862 161.826 23.4275 161.957 23.5072L161.974 23.4516L162.266 23.5648C162.476 23.6641 162.623 23.6881 162.748 23.617C162.872 23.5459 162.844 23.6405 162.903 23.6133C162.882 23.6856 162.746 23.7361 162.63 23.7794C162.496 23.8134 162.345 23.8385 162.179 23.8541C162.478 24.1722 162.493 24.1816 162.055 24.2658C161.618 24.35 161.769 24.4765 161.403 24.4945C161.037 24.5126 161.453 24.7277 161.698 24.7697C161.88 24.7973 162.065 24.8403 162.241 24.8957C162.417 24.9511 162.579 25.0176 162.717 25.0906L162.644 25.3354C162.536 25.3152 162.428 25.2888 162.324 25.2572C161.97 25.1228 161.647 24.9962 161.332 25.0743L161.482 25.2603L160.382 25.1525C160.41 25.2919 160.578 25.4507 160.85 25.5953C160.809 25.6748 160.784 25.7585 160.774 25.8457C160.756 25.9069 160.647 25.8684 160.577 25.875C160.325 25.8852 160.118 25.9267 159.975 25.9958C159.831 26.0648 159.755 26.1594 159.754 26.2711C159.726 26.3656 160.113 26.5619 160.355 26.5554C160.96 26.5743 161.614 26.6471 162.282 26.7698C162.689 26.7857 162.747 26.537 163.417 26.7068C163.43 26.8216 163.344 26.9146 163.172 26.9717C163 27.0287 162.751 27.0468 162.463 27.0231C162.627 27.2782 163.534 27.3447 163.574 27.6113C163.348 27.5924 163.107 27.5481 162.874 27.4827C162.64 27.4173 162.424 27.3331 162.244 27.2383C162.206 27.215 162.157 27.1934 162.103 27.1757C162.049 27.158 161.992 27.1447 161.936 27.137C161.88 27.1293 161.828 27.1274 161.784 27.1316C161.74 27.1358 161.705 27.1459 161.684 27.161C161.81 27.2574 161.948 27.3688 162.105 27.473C162.263 27.5772 162.301 27.6223 162.414 27.6442C163.262 27.8514 163.665 28.2246 164.398 28.4696C164.59 28.5165 164.614 28.6657 164.447 28.6488C164.289 28.632 164.145 28.6342 164.033 28.6552C163.92 28.6762 163.843 28.7152 163.811 28.7679C163.688 28.8293 163.534 28.8782 163.355 28.9133C164.107 29.2963 165.003 29.6347 165.96 29.8968C166.142 29.9486 166.331 29.9801 166.5 29.9869C167.034 29.9872 167.601 30.0176 168.189 30.0774C168.398 30.0937 168.59 30.0922 168.757 30.0729C169.303 30.0272 169.736 30.1273 170.132 30.4092L170.787 30.8561C170.766 30.9284 170.656 31.009 170.571 31.1197L171.083 31.3584L174.989 30.8087L175.774 31.3409L176.898 31.3113C176.984 31.3267 177.071 31.3479 177.154 31.3739C177.382 31.531 177.559 31.682 177.806 31.8319C178.053 31.9818 178.494 32 178.801 32.1767C179.108 32.3534 179.416 32.357 179.797 32.462C179.833 32.5988 179.796 32.7219 179.688 32.8236C179.653 32.9405 179.46 33.0127 179.426 33.1239C179.43 33.2364 179.358 33.3319 179.217 33.4017C179.077 33.4715 178.871 33.5135 178.62 33.5239C177.916 33.7633 177.067 33.9338 176.099 34.0302C176.014 34.0372 175.944 34.0534 175.892 34.0778C175.841 34.1021 175.809 34.1342 175.799 34.1719C175.801 34.281 175.736 34.3753 175.61 34.4479C175.485 34.5205 175.301 34.5695 175.073 34.5914C175.012 34.5958 174.966 34.6095 174.941 34.6308C174.854 34.6445 174.791 34.6708 174.758 34.7071C174.724 34.7435 174.721 34.7886 174.75 34.8381C174.778 34.8877 174.836 34.94 174.919 34.99C175.002 35.04 175.106 35.086 175.222 35.1235C175.39 35.1841 175.562 35.242 175.736 35.2971C175.726 35.3305 175.553 35.3359 175.578 35.3659C175.647 35.4619 175.662 35.5519 175.624 35.6286C175.587 35.7054 175.496 35.7668 175.36 35.8082L176.293 36.5859C176.86 36.6936 177.416 36.8763 177.856 37.0993C177.856 37.1358 177.831 37.1664 177.782 37.1881C177.733 37.2097 177.663 37.2216 177.578 37.2226C177.35 37.2385 177.135 37.2695 176.889 37.2871C176.739 37.3002 176.614 37.3291 176.522 37.3721C176.43 37.4151 176.371 37.4714 176.351 37.5376L176.899 37.8269C176.723 37.8974 176.593 37.9312 176.477 37.9745C176.543 38.0655 176.656 38.1595 176.808 38.2494C176.959 38.3393 177.145 38.4226 177.351 38.4929C177.407 38.5074 177.463 38.518 177.517 38.524C177.571 38.5301 177.622 38.5315 177.667 38.5282C178.091 38.429 178.588 38.6042 179.07 38.7699C179.553 38.9356 179.815 39.0355 180.171 39.1644L180.852 39.1817C181.024 39.2427 181.178 39.3144 181.301 39.3912C181.424 39.4679 181.513 39.5475 181.56 39.6236C181.524 39.746 181.201 39.679 181.008 39.6916C180.551 39.7678 179.95 39.7515 179.305 39.6455C179.145 39.6064 178.982 39.638 178.826 39.6417C178.49 39.657 178.168 39.6818 177.86 39.716C177.657 39.7479 177.467 39.7873 177.292 39.834C177.245 39.9898 177.982 40.1101 177.564 40.1871C177.708 40.2223 177.762 40.2713 177.836 40.2536C178.31 40.3547 178.777 40.4047 179.183 40.3978C179.961 40.3763 180.846 40.4473 181.764 40.6049C182.754 40.7683 183.704 40.8368 184.536 40.805C184.852 40.8032 185.206 40.8366 185.57 40.9028C186 40.9945 186.428 41.0521 186.824 41.072C186.955 41.0727 187.101 41.0883 187.251 41.1175C187.4 41.1468 187.548 41.1888 187.683 41.2403C187.671 41.2792 187.543 41.3075 187.572 41.3264C187.982 41.6179 188.148 41.9213 188.78 42.2191C189.211 42.3246 189.707 42.4458 189.989 42.3059C190.272 42.1659 190.17 42.0456 189.609 41.6872C189.731 41.6821 189.877 41.6988 190.024 41.7345C190.17 41.7703 190.306 41.8227 190.408 41.8827L190.894 42.1509L191.332 42.4072C191.294 42.5352 191.264 42.6353 191.232 42.7411C191.182 42.8533 191.237 42.99 191.389 43.1319C191.481 43.2093 191.561 43.2868 191.629 43.3636C191.902 43.6707 191.982 43.961 191.857 44.2019C191.62 44.5483 191.289 44.8669 190.868 45.1543C190.424 45.4338 190.18 45.7864 189.814 46.091C189.628 46.2298 189.401 46.3541 189.136 46.4627C188.635 46.7044 188.085 46.9343 187.582 47.1815C187.079 47.4286 186.51 47.6062 185.951 47.8099C185.119 48.0517 184.22 48.2605 183.258 48.4352C182.663 48.5883 182.051 48.7374 181.501 48.9134C180.851 49.1116 180.087 49.254 179.228 49.337C178.47 49.4363 177.792 49.5832 177.209 49.7748C177.148 49.7955 177.099 49.8219 177.065 49.8532C176.96 50.0486 176.666 50.1863 176.227 50.2453C176.253 50.3025 176.287 50.3607 176.329 50.4196C176.39 50.4897 176.402 50.5554 176.365 50.6081C176.328 50.6607 176.242 50.698 176.12 50.7149C175.769 50.7633 175.477 50.8455 175.257 50.9579C175.177 50.986 175.127 51.0271 175.112 51.0775C175.097 51.1279 175.117 51.1861 175.171 51.2472C175.218 51.31 175.222 51.3678 175.181 51.4131C175.139 51.4585 175.056 51.4892 174.94 51.5013C174.643 51.5608 174.324 51.6086 173.987 51.6446C173.27 51.7238 172.435 51.7228 171.534 51.6418C171.438 51.6183 171.341 51.6544 171.229 51.627C170.592 51.5362 170 51.5221 169.525 51.5865C168.968 51.6116 168.386 51.6066 167.799 51.6184C166.951 51.6105 166.168 51.6583 165.473 51.7604C164.679 51.6617 164.233 51.8333 163.563 51.8365C162.944 51.8542 162.357 51.8964 161.808 51.963C160.924 52.0512 160.042 52.1283 159.17 52.2316C158.352 52.2808 157.599 52.3749 156.923 52.5122C156.664 52.5743 156.196 52.4777 156.019 52.6077C155.843 52.7378 155.487 52.7224 155.2 52.7656L154.292 52.8721C154.136 52.8975 153.965 52.9136 153.78 52.9201C152.936 52.9288 152.352 53.1025 151.569 53.1379L151.489 53.1184C150.099 53.3765 148.508 53.5182 146.763 53.5393C145.744 53.6185 144.629 53.6147 143.548 53.6727C143.29 53.7888 142.68 53.6457 142.357 53.7517C142.033 53.8577 141.505 53.7883 141.088 53.8057C140.671 53.8231 140.263 53.8667 139.817 53.8652C139.43 53.8657 139.103 53.913 138.866 54.0029C138.325 54.1515 137.666 54.2388 136.918 54.261C135.928 54.2996 134.992 54.3873 133.985 54.368C133.999 54.4763 133.937 54.5684 133.806 54.6349C133.674 54.7014 133.478 54.7398 133.236 54.7463C132.16 54.7876 131.183 54.8952 130.092 54.9271L129.801 54.9274L126.538 54.9895C125.659 55.0015 124.812 55.0214 123.915 55.035C123.58 54.9529 123.571 55.0942 123.339 55.0673C123.274 54.9977 123.198 54.967 123.083 55.0048L123.058 55.0882L119.335 55.1989C117.877 55.2799 116.344 55.3042 114.748 55.2716C114.369 55.2797 114.015 55.3074 113.693 55.3541C113.394 55.3711 113.082 55.3787 112.759 55.3766C112.323 55.3556 111.896 55.345 111.482 55.3448C110.391 55.3767 109.246 55.3595 108.051 55.3362C106.857 55.3128 105.952 55.3543 104.889 55.3511C104.169 55.3482 103.452 55.3342 102.707 55.3013C102.351 55.2859 101.913 55.2026 101.544 55.1722C101.176 55.1418 101.055 55.1423 101.007 55.1901C100.846 55.3241 100.443 55.2374 100.121 55.2244C99.4927 55.2021 99.4034 55.1564 99.2327 54.8101L100.004 54.7C100.193 54.6645 100.43 54.6583 100.694 54.6819C100.957 54.7055 101.238 54.7582 101.508 54.835C101.614 54.8678 101.726 54.8938 101.835 54.9114C101.945 54.929 102.051 54.9378 102.147 54.9374C102.925 54.9186 103.692 54.8792 104.439 54.8471L104.549 54.826L104.556 54.5172C104.457 54.4868 104.354 54.4618 104.252 54.4429L100.502 54.2425C99.641 54.1933 98.7475 54.0823 97.9029 54.037C97.0583 53.9917 96.6032 53.964 95.9478 53.9172C95.6713 53.8906 95.3893 53.8555 95.104 53.8124C95.1205 53.7827 95.13 53.751 95.1324 53.7178C95.1474 53.6678 95.1674 53.601 95.0462 53.5474C94.9139 53.4719 94.7371 53.4073 94.5512 53.3667C94.3765 53.3399 94.2071 53.3247 94.0498 53.3217C93.2892 53.2958 92.4205 53.1327 91.6289 52.8671L91.3525 53.0444C90.1638 52.9448 88.9574 52.8468 87.7156 52.7522C87.467 52.7264 87.2061 52.6769 86.9524 52.6074C86.6806 52.5409 86.4305 52.4021 86.1443 52.3262C85.8616 52.2715 85.5808 52.2289 85.3071 52.1991C85.3812 52.1535 85.4789 52.117 85.5971 52.0909C85.7134 52.0817 85.7981 52.0532 85.839 52.0095C85.8799 51.9658 85.8748 51.9092 85.8245 51.8479C85.736 51.7426 85.6971 51.6435 85.8896 51.6309C86.0676 51.6069 86.1949 51.5549 86.2566 51.4811C86.3183 51.4073 86.3117 51.3148 86.2378 51.2144C86.2053 51.1557 86.1825 51.0982 86.1693 51.0424L86.0893 51.0228C85.8256 50.815 85.2989 50.7399 84.9209 50.5699C84.7424 50.5206 84.5577 50.4922 84.3958 50.4892C83.9777 50.4527 83.5705 50.4367 83.1381 50.3907C82.9316 50.3695 82.7155 50.3309 82.5028 50.2772C82.199 50.2029 82.167 50.1951 81.9906 49.925C82.2645 49.9297 82.4817 49.8894 82.6054 49.8108C82.729 49.7322 82.7517 49.6202 82.6693 49.4938C82.4433 49.2175 82.2046 48.9263 81.1822 48.73C81.5156 48.7203 81.8365 48.7011 82.1435 48.6724C82.2328 48.6663 82.2997 48.646 82.3351 48.6143C82.3706 48.5826 82.373 48.541 82.342 48.4951C82.311 48.4492 82.248 48.4011 82.1615 48.3574C82.0751 48.3137 81.9693 48.2763 81.8582 48.2503C81.3186 48.0941 80.7556 47.9895 80.2325 47.9484C79.7917 47.9302 79.3939 47.9404 78.8791 47.9399L78.2715 47.7913C78.2815 47.7579 78.1923 47.7122 78.2149 47.6939C78.3693 47.5226 78.5397 47.3552 78.7151 47.1712C78.4349 47.0718 78.1922 46.9519 78.0148 46.825C77.8373 46.6982 77.7323 46.5696 77.7117 46.4541C77.6966 46.4192 77.7005 46.3874 77.7233 46.361C77.7461 46.3346 77.7871 46.3142 77.8434 46.3011C78.0034 46.2788 78.1269 46.2361 78.2043 46.1764C78.2818 46.1166 78.3111 46.0414 78.2902 45.9565L77.8176 45.6439C76.3949 45.4208 74.9978 45.2615 73.6521 45.1688L72.4374 45.0986C72.2908 45.015 72.3362 44.9783 72.4741 44.9762C72.6121 44.9741 72.9999 44.9973 73.2707 45.0098C73.5047 45.0262 73.7124 45.0154 73.8739 44.9785C74.0353 44.9416 74.1449 44.8798 74.1922 44.7992L73.7843 44.4426C73.8043 44.3759 73.8327 44.2813 74.0539 44.2876C74.2051 44.2799 74.3165 44.2463 74.3701 44.1922C74.4237 44.1381 74.4164 44.0668 74.3494 43.9896C74.3392 43.9338 74.3545 43.8829 74.3945 43.8394C74.7217 43.8358 75.0472 43.8377 75.344 43.8208C75.4823 43.8151 75.5991 43.7944 75.6864 43.7602C75.7737 43.7259 75.8295 43.6787 75.85 43.622C75.8607 43.5666 75.8346 43.5035 75.7738 43.4378C75.713 43.3721 75.6192 43.3057 75.5001 43.2438C75.0348 43.1673 74.6092 43.1663 74.3166 43.2411C74.2123 43.2997 74.0448 43.3317 73.836 43.3329C73.6273 43.3341 73.3872 43.3044 73.1474 43.2478C72.8729 43.1825 72.5989 43.1538 72.3747 43.1669C72.1506 43.1799 71.991 43.2339 71.9246 43.319C71.6428 43.286 71.3929 43.2607 71.1464 43.2243C70.8556 43.1784 70.5807 43.1648 70.3514 43.1852C69.9846 43.1995 69.5894 43.1911 69.1746 43.1602C67.9792 43.0828 66.7821 43.0111 65.6246 42.9789C65.3184 42.9697 65.0535 42.9945 64.7507 42.9742C64.4478 42.9539 64.2082 43.0087 63.8295 42.8982C63.7574 42.881 63.6847 42.87 63.6174 42.866C63.5501 42.8619 63.4899 42.8651 63.4416 42.875C62.7766 42.9624 61.9967 42.9748 61.148 42.9114C59.9855 42.8958 58.7801 42.8519 57.6159 42.8419C57.2745 42.8505 56.9518 42.8735 56.6513 42.9106C56.4226 42.9331 56.183 42.9483 55.9339 42.9562C55.743 42.9632 55.5604 42.9425 55.5926 43.0638C55.6248 43.1852 55.3387 43.1092 55.1738 43.0868C54.6072 43.028 54.0282 42.9483 53.4431 42.8487C52.8666 42.7405 52.3017 42.6775 51.7823 42.6636C51.4071 42.6554 51.0203 42.6862 50.5379 42.5205C50.5563 42.4593 50.5747 42.3981 50.6797 42.3342C50.2863 42.1584 49.8375 42.0071 49.3704 41.8929C48.9033 41.7787 48.4312 41.7048 47.9933 41.6773L47.3895 41.3446C47.2409 41.3055 47.0891 41.277 46.9434 41.2609C46.7978 41.2448 46.6613 41.2414 46.5423 41.2508C46.4503 41.2557 46.3382 41.2433 46.2266 41.216C46.115 41.1887 46.0113 41.1483 45.9346 41.1023C45.82 41.0437 45.68 40.9931 45.532 40.957C45.3841 40.9208 45.2349 40.9006 45.1032 40.8989C44.6883 40.8627 44.2454 40.7792 43.8199 40.6568C43.7095 40.5851 43.6403 40.5109 43.6209 40.4436C43.6014 40.3762 43.6327 40.3186 43.7106 40.2777C43.8363 40.2056 43.9069 40.1137 43.9181 40.0077C43.9293 39.9016 43.8808 39.7835 43.7757 39.6606C43.7219 39.5852 43.7039 39.5137 43.7228 39.4506C43.7418 39.3875 43.7972 39.334 43.8859 39.2934C44.2169 39.1056 44.1284 39.0004 43.5868 38.6888C43.4989 38.6369 43.3928 38.5883 43.2754 38.5462C43.1581 38.5042 43.0319 38.4695 42.905 38.4444C42.6071 38.3936 42.3134 38.3559 42.0291 38.3318C41.8692 38.2927 41.7052 38.3242 41.521 38.309C40.5998 38.2331 40.4649 38.1105 40.1666 37.8465L39.9492 37.6559C39.5459 37.5016 39.1049 37.3735 38.6579 37.2807C38.2109 37.1879 37.769 37.1328 37.3641 37.1194C37.2031 37.1184 37.0181 37.092 36.8374 37.0443C36.2491 36.8985 35.6534 36.7976 35.0897 36.7483C34.7384 36.7206 34.3597 36.6488 33.9991 36.5415C33.6386 36.4343 33.3114 36.2962 33.057 36.1438C32.8285 36.0065 32.5295 35.8833 32.2016 35.7913C31.8179 35.6975 31.7823 35.5873 31.9966 35.5023C32.2109 35.4173 32.5699 35.308 32.8885 35.2187C32.9993 35.1884 33.068 35.139 33.0869 35.0762C33.1057 35.0133 33.0741 34.9394 32.9953 34.8627C32.9448 34.7314 32.936 34.6068 32.9693 34.492C32.987 34.4443 32.9748 34.3896 32.9333 34.3315C32.8918 34.2735 32.8222 34.2135 32.7289 34.1557C32.6357 34.0978 32.5211 34.0433 32.3929 33.996C32.2646 33.9486 32.1257 33.9095 31.9855 33.8812C31.3939 33.7365 30.8182 33.5957 30.2149 33.49C29.962 33.4402 29.7095 33.3784 29.4633 33.3062C28.9595 33.1277 28.4206 32.9797 27.8777 32.8707C27.6201 32.822 27.3682 32.7368 27.1765 32.6336C26.5721 32.3555 26.0152 32.0631 25.5159 31.7617C25.3955 31.6682 25.2381 31.577 25.0533 31.4938C24.8686 31.4106 24.6606 31.3372 24.4424 31.2782C24.2665 31.2352 24.1233 31.1405 23.9878 31.0775C23.8892 30.9316 23.8787 30.7966 23.9572 30.6852C24.0356 30.5738 24.2005 30.4897 24.4364 30.4407C24.66 30.3819 24.8692 30.3136 25.0625 30.2415C25.2956 30.1831 25.5726 30.1481 25.8833 30.1376C26.2513 30.1063 26.5234 30.0167 26.6641 29.8806C25.6568 29.6343 24.6988 29.2806 23.8158 29.3633L23.1449 29.1395C23.1716 29.0505 23.195 28.9726 23.2167 28.9003C23.3762 28.7686 23.4261 28.6026 23.362 28.4162C23.3091 28.3261 23.3139 28.2441 23.3758 28.1785C23.4377 28.1128 23.5545 28.066 23.7145 28.0426C24.6619 27.8025 25.7575 27.6404 26.646 27.368C26.9246 27.3168 27.2507 27.2936 27.6106 27.2993C27.9588 27.2829 27.9442 27.1599 27.5435 27.0082C27.3186 26.9289 27.0894 26.8529 26.8566 26.7805C25.8304 26.7684 25.4124 27.132 24.2413 27.0308L23.6985 26.5517C23.5518 26.5443 23.4093 26.5414 23.2721 26.543L21.3085 26.7376C21.1449 26.7474 21.0176 26.7807 20.941 26.8337C20.8644 26.8868 20.8416 26.9575 20.8751 27.0378C20.8884 27.136 20.8613 27.2261 20.7949 27.3048C20.7521 27.3599 20.7795 27.4332 20.8711 27.5086C21.0776 27.6785 20.8127 27.7033 20.6454 27.746C20.6026 27.7502 20.5533 27.7497 20.5003 27.7447C20.4473 27.7396 20.3917 27.7301 20.3366 27.7167C20.2816 27.7032 20.2283 27.6861 20.1797 27.6663C20.1311 27.6465 20.0883 27.6244 20.0537 27.6013C19.759 27.4397 19.5012 27.2691 19.2115 27.0908C19.4172 26.9201 19.1751 26.64 19.4961 26.4856C19.532 26.4547 19.5464 26.4171 19.5383 26.3751C19.5303 26.3331 19.5 26.2875 19.4493 26.2412C19.3186 26.1217 19.2564 26.0051 19.2688 25.9033C19.2813 25.8015 19.3681 25.7181 19.5204 25.6614L19.5387 25.6002C19.1371 25.3945 19.2435 25.2115 19.0857 24.9938L18.6993 24.8515C17.738 24.5089 17.7363 24.5145 16.9087 24.5271C16.7419 24.3967 16.9538 24.3769 17.1128 24.362L18.444 24.2157C19.3143 24.118 20.21 24.0504 21.1822 24.0134C22.1545 23.9765 23.2384 23.8533 24.2434 23.7647C24.2942 23.7578 24.3331 23.7442 24.3567 23.7251C24.3804 23.7059 24.3881 23.6817 24.3794 23.6546C24.3395 23.6252 24.2872 23.5969 24.2264 23.5717C24.1656 23.5465 24.0979 23.5251 24.0283 23.509C23.7085 23.4308 23.3804 23.3804 23.0396 23.315L22.4043 23.2015L22.2088 23.0522C22.0816 22.9613 21.9947 22.8505 21.8255 22.7852C21.686 22.7366 21.5347 22.6996 21.3871 22.6782C21.2396 22.6569 21.1013 22.6518 20.9866 22.6637C20.6688 22.6935 20.3812 22.7366 20.0776 22.7759C19.774 22.8151 19.6067 22.8578 19.3435 22.877C18.8087 22.8858 18.2918 22.9089 17.7952 22.9463C17.3768 23.0348 16.9899 23.1397 16.6368 23.2602C16.4165 23.3079 16.2105 23.365 15.8344 23.3029C15.656 23.2466 15.5021 23.1726 15.4 23.0941C15.2979 23.0155 15.2542 22.9375 15.2766 22.8739C15.2968 22.824 15.354 22.7846 15.4426 22.7592C15.5313 22.7339 15.6486 22.7235 15.7835 22.7291C16.1611 22.7199 16.5102 22.6891 16.8238 22.6371C17.2604 22.543 17.7919 22.5024 18.3872 22.5178C18.5891 22.5313 18.7244 22.4808 18.901 22.4643C19.0776 22.4477 19.2272 22.4067 19.4241 22.4369C20.0358 22.5148 20.3291 22.3954 20.6957 22.3179C20.8198 22.2835 20.8966 22.2279 20.9178 22.1572C20.9391 22.0865 20.9038 22.0035 20.8159 21.9173C20.6467 21.7456 20.4398 21.5729 20.1983 21.402C20.074 21.3179 19.9147 21.2381 19.733 21.1688C19.5513 21.0996 19.3521 21.0426 19.151 21.0025C19.0306 20.8974 18.9664 20.794 18.9642 20.7017C18.9619 20.6093 19.0217 20.531 19.1381 20.4739C19.4347 20.3433 19.6977 20.2106 20.3623 20.2835C20.6748 20.3114 20.9689 20.3167 21.2329 20.2993C21.8185 20.2755 22.4939 20.3276 23.1956 20.4508C23.3772 20.4824 23.5556 20.5039 23.7257 20.5147C24.9388 20.5904 26.0945 20.6282 27.2537 20.6548C27.8677 20.6676 28.4868 20.6638 29.1278 20.7011C30.6311 20.782 31.9995 20.7404 33.4505 20.7668C34.2105 20.7803 34.8907 20.7258 35.4555 20.6061C35.5655 20.5659 35.6599 20.5191 35.7377 20.4661C35.3635 20.327 34.9524 20.2169 34.5438 20.1462C34.1352 20.0756 33.7429 20.0468 33.4044 20.0627C33.2183 20.1017 32.9778 20.1088 32.7097 20.0833C32.4415 20.0578 32.1563 20.0007 31.8859 19.9183L32.6722 19.8717C33.1937 19.85 33.7278 19.8432 34.2349 19.8119C35.0406 19.7581 35.7873 19.672 36.6216 19.6371C37.2952 19.6051 37.898 19.5231 38.411 19.3939C38.7816 19.2996 39.205 19.2328 39.6723 19.1947C40.0045 19.1744 40.0045 19.1744 40.2169 18.9815C40.0484 18.8567 39.8305 18.8392 39.6253 18.8368C38.3948 18.7583 37.2238 18.7445 36.1361 18.7958C35.5874 18.8004 35.1005 18.8533 34.699 18.952C34.6007 18.9937 34.3491 18.9739 34.1472 18.9604C33.5143 18.9398 32.9094 18.9458 32.3397 18.9782C31.5521 19.0324 30.6749 19.0195 29.7422 18.9403C29.5653 18.8433 29.7689 18.8513 29.7789 18.8179C30.5013 18.7556 31.2094 18.6839 31.9461 18.6312C32.1475 18.6124 32.3628 18.6031 32.5895 18.6034C33.436 18.6361 34.1414 18.5455 34.6068 18.3442C34.6302 18.2663 34.9364 18.2755 35.0717 18.225C35.1383 18.1813 35.1826 18.1298 35.2034 18.0721C35.0063 17.9283 34.7834 17.9275 34.6118 17.9274C34.1139 17.9434 33.6348 17.9739 33.177 18.0185C32.7515 18.061 32.2804 18.0723 31.7766 18.0523C31.4048 18.033 31.0869 18.0628 30.7117 18.0546C30.5082 18.0375 30.2976 18.0101 30.0841 17.9728C30.3218 17.8726 30.6449 17.811 31.0308 17.7923C31.3234 17.7324 31.6892 17.7144 31.736 17.5586C31.5978 17.4472 31.4439 17.4454 31.3202 17.4569C31.0629 17.4565 30.8144 17.4635 30.5759 17.478C30.0702 17.5096 29.5227 17.5101 28.9449 17.4793C28.6407 17.4678 28.352 17.4712 28.0836 17.4896C27.4756 17.5141 26.8928 17.5687 26.336 17.5938C25.1955 17.6194 24.1552 17.7115 23.0594 17.76C22.8155 17.772 22.5968 17.8141 22.2753 17.7415C21.9539 17.6688 21.9396 17.6594 21.9016 17.6142C21.8117 17.539 21.7844 17.466 21.8255 17.4105C21.8892 17.3586 22.0135 17.3297 22.176 17.329C23.1557 17.2465 24.0849 17.1306 24.9578 16.982C25.3419 16.9523 25.6785 16.8916 25.9558 16.8021C26.1757 16.7404 26.4365 16.6996 26.7302 16.6809C27.1572 16.6363 27.6024 16.6037 28.064 16.5831C28.2788 16.572 28.4614 16.539 28.6011 16.4859C28.7408 16.4329 28.8348 16.361 28.8775 16.2744L28.3117 15.9867C28.2228 15.9733 28.1346 15.9617 28.0475 15.952L23.3511 16.1592L22.8859 16.1649C22.3762 16.1477 22.2516 16.1053 21.7681 15.7721C22.8716 15.6937 23.7391 15.4652 24.2841 15.1093C24.1531 15.0711 24.0188 15.0382 23.8844 15.0116C23.0025 14.9274 22.1688 14.9051 21.4155 14.9454C20.968 14.9494 20.5079 14.9384 20.0461 14.933C20.1812 14.7689 20.6986 14.8178 21.0358 14.7808C21.8415 14.723 22.554 14.6034 23.1505 14.426C23.3561 14.3569 23.6134 14.3126 23.9105 14.2954C24.2079 14.2894 24.4563 14.2476 24.6341 14.1734C24.8119 14.0993 24.9137 13.9951 24.9307 13.87C24.9587 13.7567 25.0191 13.6515 25.1109 13.5558C24.9485 13.42 24.6905 13.29 24.3856 13.1901C24.0806 13.0902 23.7495 13.0274 23.4543 13.0133C22.8244 12.9574 22.171 12.8659 21.5108 12.7411C21.1819 12.6782 20.8594 12.642 20.5642 12.6351C20.304 12.6297 20.0081 12.5843 19.7218 12.5056C19.4355 12.427 19.1745 12.3195 18.9786 12.1996C18.7141 12.0513 18.4673 11.9014 18.2206 11.7514C17.9738 11.6015 17.6874 11.4121 17.3993 11.2281C17.1453 11.1994 16.898 11.1809 16.6607 11.1729C16.4761 11.1797 16.2606 11.1596 16.0398 11.1151C15.819 11.0707 15.602 11.0036 15.4144 10.9219C15.5244 10.8413 15.6488 10.7702 15.7798 10.6768C15.6 10.5535 15.4696 10.4278 15.3966 10.3073C15.3236 10.1868 15.3095 10.074 15.3552 9.97581C15.3819 9.8868 15.1864 9.73747 15.1188 9.61943C15.0319 9.51767 15.0156 9.42271 15.072 9.34698C15.1284 9.27127 15.255 9.21833 15.435 9.19511C15.6584 9.15226 15.8402 9.08772 15.9729 9.00416C16.0169 8.98247 16.0392 8.95275 16.038 8.91775C16.0367 8.88274 16.0119 8.84355 15.9658 8.80377C15.9197 8.76398 15.8538 8.72485 15.774 8.68999C15.6943 8.65512 15.6033 8.62561 15.5095 8.60417C15.2218 8.54337 14.9362 8.50396 14.6689 8.4882C14.2084 8.45922 13.7677 8.44102 13.3465 8.43359C12.8808 8.4224 12.3626 8.35339 11.8447 8.23355C11.3809 8.12015 10.9652 8.01849 10.7385 7.8018C10.5117 7.58512 10.1492 7.59202 9.87043 7.43428C10.027 7.29208 10.3053 7.19329 10.6773 7.14786C10.9207 7.13164 11.1239 7.08908 11.2738 7.02289C11.4237 6.95671 11.5171 6.86837 11.5479 6.76354L10.7016 6.32369C10.0257 6.11661 9.65173 6.27599 8.92145 6.19297L9.67391 6.0306C9.68903 6.01455 9.69469 5.9957 9.69061 5.97496C9.61755 5.64655 9.50132 5.57632 8.73212 5.39421L8.30041 5.28864L7.61712 5.16336C7.50768 5.09605 7.43201 5.02587 7.39762 4.95982C7.36322 4.89377 7.37134 4.83417 7.42116 4.78699C7.52127 4.70763 7.5517 4.60623 7.50967 4.49211C7.4434 4.41652 7.43793 4.34684 7.49421 4.29515C7.55048 4.24345 7.66495 4.21302 7.81775 4.20914C7.9397 4.20312 7.94876 4.11576 8.0151 4.06629C8.08102 3.99811 8.19384 3.94579 8.34588 3.91289C8.49792 3.87999 8.68558 3.86728 8.89615 3.87564C9.51699 3.88247 10.1002 3.85687 10.6354 3.79931L10.5395 3.77585C11.0974 3.82639 11.619 3.83251 12.0788 3.79394C12.5396 3.74539 13.131 3.77653 13.6205 3.74693C14.019 3.75372 14.3224 3.68652 14.4663 3.55959C14.6056 3.4384 15.1121 3.46668 15.4999 3.48985C15.7296 3.50483 15.9516 3.51119 16.1636 3.50882C16.4481 3.48139 16.8038 3.50725 17.1714 3.58209C17.2817 3.60509 17.3904 3.61726 17.4869 3.61743C18.4215 3.64889 19.3544 3.6859 20.2763 3.70232C20.4891 3.69286 20.7386 3.71452 20.9956 3.76474C21.1036 3.78654 21.2087 3.79558 21.2968 3.79062C22.7535 3.74074 24.3973 3.868 25.8254 3.79917C25.9985 3.78292 26.1902 3.77954 26.3949 3.78912C26.8549 3.82956 27.2544 3.80354 27.5328 3.71502C27.6829 3.66794 27.8754 3.642 28.098 3.63885C28.3206 3.6357 28.5684 3.65541 28.8255 3.69672C29.2535 3.75142 29.649 3.75735 29.9703 3.71389C30.5969 3.67373 31.2558 3.65723 31.9419 3.66449C32.1521 3.67151 32.3369 3.65591 32.4819 3.61888C32.627 3.58186 32.7284 3.52441 32.7783 3.45098C32.6098 3.32617 32.4256 3.31098 32.2506 3.32195C31.5726 3.29352 30.8963 3.25951 30.2309 3.24611C29.6354 3.20782 29.0639 3.19612 28.525 3.21117C28.2574 3.22815 27.9235 3.18943 27.5962 3.10348C27.195 2.99462 26.7818 2.94053 26.4401 2.95217C26.1868 2.95506 25.9194 2.94568 25.6418 2.92418C25.4641 2.89824 25.282 2.85371 25.1142 2.79515C25.0475 2.76971 24.975 2.74833 24.9013 2.73236C24.8275 2.71639 24.7542 2.7062 24.6859 2.70242C24.6176 2.69864 24.5558 2.70135 24.5045 2.7104C24.4532 2.71945 24.4136 2.73464 24.3882 2.75498C24.1312 2.92504 23.5565 2.83826 23.0644 2.81944C22.3269 2.53162 21.7781 2.70198 21.0888 2.53941C21.0343 2.52863 20.9806 2.5221 20.931 2.52024C20.8814 2.51838 20.8369 2.52121 20.8003 2.52857C19.4664 2.62642 17.9119 2.54487 16.5115 2.57866C16.357 2.5836 16.1777 2.56667 15.9941 2.52978C14.7935 2.28563 13.6393 2.21632 12.7569 2.3354C12.6496 2.34612 12.5275 2.34658 12.3961 2.33675C11.7929 2.23972 11.216 2.20103 10.7136 2.22392C9.92629 2.21653 9.1693 2.22252 8.36933 2.20009C7.81789 2.16818 7.33413 2.20227 6.96651 2.29898C6.95482 2.33793 6.70995 2.29596 6.52237 2.2919C6.41449 2.19385 6.32096 2.10529 6.20974 2.01838C6.11031 1.91085 5.96138 1.80203 5.77307 1.69932C5.58477 1.5966 5.36151 1.50239 5.11834 1.42304C4.7026 1.32138 4.66102 1.17386 4.95193 1.11958C5.70176 0.940018 6.64462 0.866525 7.71122 0.904494C8.60283 0.90753 9.51045 0.914482 10.4147 0.932553C10.9421 0.948057 11.4981 0.982494 12.0112 0.988526C12.1844 1.00177 12.3622 1.0213 12.543 1.04689C12.7647 1.08399 12.98 1.10421 13.1773 1.10645C13.8108 1.07521 14.5177 1.10243 15.2644 1.18682C15.5379 1.20522 15.8005 1.21142 16.0483 1.20533C16.6347 1.18243 17.2703 1.19928 17.9384 1.25546C18.3537 1.28714 18.7564 1.3037 19.1422 1.30498C19.2785 1.30844 19.3895 1.28183 19.5207 1.30198C20.6761 1.51283 21.4942 1.36053 22.534 1.44161C23.0394 1.46422 23.5222 1.46428 23.9757 1.44181C24.8607 1.44289 25.7704 1.46601 26.7011 1.51106C27.9318 1.58508 29.0723 1.5594 30.2475 1.58996C30.4795 1.59638 30.7035 1.59528 30.9179 1.58668C31.9607 1.5298 33.0934 1.54186 34.2883 1.62257C34.5597 1.63423 34.8034 1.61997 35.0042 1.5807C35.205 1.54143 35.3586 1.47798 35.4553 1.39434C35.4962 1.33693 35.4697 1.26237 35.3809 1.18503C35.2334 1.08626 35.0668 0.989491 34.884 0.89631L28.2324 0.583634C27.9531 0.567306 27.6806 0.558516 27.4165 0.557301C26.6397 0.554583 25.8389 0.530257 25.0183 0.484448C24.2073 0.441419 23.4326 0.449058 22.647 0.436101C22.4156 0.431762 22.178 0.421523 21.9353 0.405412C20.2949 0.277911 18.6954 0.200033 17.1479 0.17234C16.4969 0.16841 15.7936 0.109894 15.1299 0.0909277C14.4662 0.0719598 13.5586 0.065016 12.7713 0.0576239L10.3337 0.0587596C9.85425 0.0549855 9.38743 0.0662455 8.9223 0.0719457C8.35785 -0.334816 8.16334 -0.430159 7.41013 -0.608367C7.15246 -0.674105 6.89036 -0.713334 6.65456 -0.721461C5.90687 -0.689306 4.96871 -0.823162 4.25967 -0.805439C3.83183 -0.814182 3.46879 -0.768995 3.20771 -0.674504C2.98108 -0.600346 2.72192 -0.541667 2.43424 -0.499354C1.64617 -0.847328 1.57672 -1.07333 2.16953 -1.16128C2.33014 -1.18172 2.55137 -1.1754 2.66735 -1.2187C2.7339 -1.24507 2.82481 -1.26015 2.93283 -1.26276C3.04086 -1.26537 3.16302 -1.25543 3.28973 -1.23372C3.68963 -1.17678 4.06445 -1.16338 4.37658 -1.19489C4.67033 -1.23659 5.03041 -1.23492 5.42209 -1.19005C5.70991 -1.11967 5.96289 -1.21905 6.2118 -1.24776C6.46072 -1.27648 6.66498 -1.32805 7.05375 -1.2509C7.12495 -1.23554 7.19562 -1.22632 7.26037 -1.22395C7.32511 -1.22157 7.3822 -1.22611 7.42725 -1.23721C7.8448 -1.28689 8.34307 -1.28167 8.88161 -1.22197C9.70756 -1.16322 10.4825 -1.16102 11.1796 -1.21544C11.5969 -1.26305 11.9526 -1.34749 12.233 -1.46546C12.3094 -1.50492 12.4229 -1.52858 12.5625 -1.53417C13.2639 -1.50956 14.0254 -1.41692 14.798 -1.26224C15.0891 -1.20026 15.3798 -1.15123 15.6639 -1.1162C16.2478 -1.03839 16.8125 -0.99479 17.3414 -0.986688C18.1099 -0.985402 18.91 -0.955465 19.7346 -0.897143C20.2435 -0.86467 20.7339 -0.852685 21.1999 -0.861317C21.6789 -0.865388 22.1903 -0.840616 22.7225 -0.78758C23.2518 -0.744363 23.7183 -0.769265 24.0657 -0.85927C24.18 -0.907772 24.2722 -0.965367 24.3403 -1.03098C23.5654 -1.24448 22.7638 -1.35299 22.0972 -1.33465C21.844 -1.34879 21.6337 -1.33451 21.3669 -1.41767L21.3586 -1.38985C21.3055 -1.37181 21.2254 -1.36755 21.1335 -1.37789C21.0417 -1.38824 20.9445 -1.41246 20.8605 -1.44595C20.8922 -1.55166 20.9223 -1.6518 20.944 -1.72413C21.4519 -1.71137 21.9451 -1.7124 22.421 -1.72724C22.8222 -1.74858 23.3668 -1.56166 23.7141 -1.63202C24.3914 -1.54403 24.8226 -1.66552 25.43 -1.63046C26.0373 -1.59541 26.7063 -1.4796 27.3137 -1.44455C27.8437 -1.42531 28.3583 -1.42113 28.8546 -1.43202C29.026 -1.44731 29.2235 -1.44373 29.435 -1.42148C29.7325 -1.37963 30.0091 -1.37262 30.2332 -1.40125C30.4573 -1.42988 30.6199 -1.49301 30.7023 -1.58339C30.6247 -1.66805 30.5202 -1.77722 30.3996 -1.89029C30.6214 -1.98321 30.9581 -2.02234 31.3599 -2.00185L31.9277 -2.00633C32.0782 -2.00388 32.1932 -2.029 32.249 -2.07649C32.3048 -2.12399 32.2971 -2.19022 32.2275 -2.2615C31.1509 -2.62031 31.1112 -2.65986 30.3211 -2.42907L29.2719 -2.53632L29.2896 -2.53796ZM43.48 -1.55232L43.4 -1.57187L43.48 -1.55232ZM174.223 36.623L174.204 36.6842L174.224 36.6174L174.4 36.6604L174.412 36.6215L174.223 36.623ZM148.685 9.79899C148.436 9.73223 148.185 9.67084 147.933 9.61522C147.867 9.6066 147.806 9.60465 147.753 9.60954C147.701 9.61444 147.66 9.62602 147.633 9.64333C147.613 9.71009 147.754 9.75641 147.882 9.78769C148.043 9.82979 148.208 9.85655 148.359 9.86519C148.51 9.87384 148.643 9.86408 148.742 9.83689L148.887 9.81253L148.685 9.79899ZM20.6332 26.0709C20.7969 26.0821 20.9522 26.0839 21.0951 26.0763C21.7292 26.0224 22.3362 25.9439 22.9863 25.8938C23.8066 25.7668 24.7491 25.715 25.7786 25.7405C26.1807 25.753 26.5205 25.7118 26.7582 25.6218C26.9006 25.5735 27.0842 25.5452 27.298 25.5388L30.0196 25.3921C30.1878 25.3617 30.3333 25.319 30.4525 25.2651C30.2127 25.2064 30.0528 25.1673 29.9569 25.1439C29.7578 25.1373 29.5867 25.1551 29.4607 25.1957C29.3254 25.2645 29.0966 25.2917 28.8199 25.2719C28.5405 25.2556 28.2681 25.2468 28.004 25.2456C27.5052 25.249 27.003 25.2636 26.5026 25.2726C26.3079 25.4639 25.7332 25.3771 25.2411 25.3583L24.8609 25.3668C23.6182 25.466 22.4311 25.6024 21.3055 25.7754C21.0879 25.8047 20.9005 25.8514 20.749 25.9141C20.6919 25.9629 20.6736 26.0239 20.6955 26.0921L20.6156 26.0725L20.6332 26.0709ZM76.1266 44.3585C76.4281 44.3715 76.7421 44.3983 77.0638 44.4384C77.3117 44.4793 77.5536 44.5042 77.7798 44.5119C79.0473 44.5548 80.3681 44.6538 81.7245 44.8077C81.9018 44.831 82.0723 44.8424 82.2293 44.8415L83.3394 44.8025C83.6893 44.7805 83.696 44.7583 83.4413 44.4631C83.2299 44.4058 83.0162 44.3535 82.8017 44.3067C82.6738 44.2754 82.466 44.2246 82.4173 44.2724C82.1207 44.4029 81.5796 44.3184 81.1245 44.2907C79.8071 44.2194 78.4485 44.1141 77.1185 44.0277C76.8373 44.0066 76.5649 43.9959 76.3042 43.9958C76.1424 43.9914 75.9948 43.9997 75.8677 44.0205C75.8305 44.0226 75.7994 44.0288 75.7764 44.0386C75.7534 44.0484 75.7391 44.0617 75.7343 44.0774C75.7296 44.0932 75.7346 44.1112 75.7489 44.1302C75.7633 44.1491 75.7867 44.1686 75.8176 44.1874C75.9264 44.2531 76.0521 44.316 76.1906 44.3741L76.1266 44.3585ZM85.7771 1.51677L87.0748 1.48177C87.2304 1.47802 87.3624 1.43863 87.529 1.45548C88.4176 1.50887 89.2404 1.494 89.9623 1.41149C90.2081 1.37783 90.4957 1.37109 90.8093 1.39167C91.7693 1.45264 92.675 1.45515 93.5018 1.39912C94.0361 1.38788 94.5362 1.35012 94.9945 1.28639C95.0298 1.2716 95.0518 1.25152 95.059 1.22752C95.0662 1.20352 95.0585 1.17616 95.0363 1.14731C95.0305 1.12908 95.0148 1.10947 94.9903 1.08984C94.9657 1.0702 94.9329 1.051 94.8941 1.03356C94.8552 1.01613 94.8114 1.00087 94.7654 0.988831C94.7195 0.976794 94.6725 0.968262 94.6279 0.963836C94.0488 0.877583 93.4991 0.847536 93.0237 0.876131C92.5829 0.910346 92.1082 0.920357 91.6073 0.906009C91.1278 0.902234 90.8026 1.0138 90.2102 0.928669C89.9596 0.90064 89.7386 0.909866 89.5845 0.95481C89.2741 1.0293 88.8412 1.03345 88.3623 0.966504C88.0759 0.932624 87.8021 0.918095 87.5514 0.92347C86.9433 0.947961 86.3622 0.996962 85.7987 1.04431C85.6212 1.05526 85.4309 1.05678 85.231 1.04881L82.4096 0.956098C81.7316 0.927658 81.0553 0.893653 80.3899 0.88025C79.8457 0.851147 79.3394 0.860262 78.8885 0.907271C78.4079 0.956684 77.8837 0.976742 77.3259 0.967073C76.4596 0.994111 75.5982 1.00445 74.6553 1.00082C74.0539 1.00305 73.4382 0.995823 72.8098 0.973548C72.4919 0.944882 72.2221 0.968228 72.0521 1.03909C71.9488 1.09743 71.7056 1.0499 71.5037 1.03636C70.4268 0.905868 69.4169 0.874948 68.5444 0.945755C68.433 0.957293 68.3107 0.96147 68.1802 0.958213C67.3399 0.955783 66.4693 0.939967 65.6627 0.939792C65.4503 0.945293 65.2504 0.960389 65.0656 0.984888C65.0854 1.02486 65.1418 1.06818 65.2232 1.10586C65.3045 1.14355 65.4046 1.17271 65.5026 1.1873C66.2655 1.29896 67.0021 1.35795 67.6815 1.36179C68.8124 1.34756 69.9969 1.37954 71.2229 1.45738C72.1741 1.53586 73.0415 1.51934 73.7604 1.40904C74.3224 1.32675 75.0535 1.35771 75.8281 1.49662C76.1596 1.56296 76.4813 1.58949 76.7493 1.57258C77.0073 1.55039 77.3032 1.55577 77.6199 1.5884C78.2876 1.65044 78.9297 1.67922 79.5337 1.67417C80.1241 1.65133 80.6749 1.58894 81.2814 1.57002C81.8878 1.55109 82.8113 1.56194 83.559 1.52978C84.3067 1.49762 85.0461 1.49329 85.7771 1.51677ZM32.0015 -1.73747C32.07 -1.56545 32.3125 -1.45838 32.5733 -1.41251C33.4727 -1.20883 34.3618 -1.12216 35.0914 -1.16704C35.4855 -1.22964 36.0109 -1.20554 36.5643 -1.09948C37.2088 -0.98923 37.8111 -0.970946 38.2652 -1.04785C38.3764 -1.06129 38.4616 -1.0897 38.5132 -1.13055C38.5232 -1.16393 38.5415 -1.22512 38.5449 -1.23625C38.4972 -1.26447 38.4387 -1.29062 38.3739 -1.31267C38.3091 -1.33473 38.2397 -1.35211 38.1712 -1.36347L35.1923 -1.56039L34.6732 -1.60372C33.725 -1.71725 32.8216 -1.76248 32.0015 -1.73747ZM37.8609 0.985269C38.3258 1.26617 38.3275 1.26059 38.5656 1.32481C39.7147 1.59153 40.863 1.73552 41.8739 1.73962C42.0985 1.73881 42.2892 1.71169 42.4297 1.66056C42.502 1.65363 42.5481 1.63161 42.5578 1.5993C42.5675 1.56699 42.54 1.52701 42.4815 1.48809L42.1118 1.29019C41.4404 1.20452 40.7786 1.13645 40.1305 1.08638C39.3759 1.02726 38.7071 1.02498 37.9248 1.0009L37.8609 0.985269ZM76.0709 43.1147C76.5041 43.5013 76.5058 43.4957 77.231 43.5954C77.7365 43.6661 78.2267 43.7076 78.6873 43.7186C79.25 43.7308 79.8271 43.7525 80.3882 43.7702C80.5252 43.7826 80.6413 43.7723 80.714 43.7416C80.7867 43.7108 80.8108 43.6616 80.7815 43.6037C80.7079 43.5407 80.5927 43.4799 80.4547 43.4309C80.3167 43.382 80.1639 43.3479 80.0213 43.3342L79.7151 43.325C79.3433 43.3057 78.9572 43.277 78.598 43.2728C78.3649 43.2888 78.095 43.2764 77.8091 43.2365C77.5233 43.1967 77.2294 43.1305 76.9506 43.0431L76.0709 43.1147ZM40.1742 -1.23199C40.2899 -1.16503 40.4207 -1.10091 40.5632 -1.04131C41.1149 -0.876142 41.6989 -0.782331 42.2006 -0.778271C42.4378 -0.768039 42.6548 -0.804572 42.8963 -0.751486C43.3295 -0.680547 43.7492 -0.642757 44.133 -0.640167C44.133 -0.640167 44.2406 -0.655658 44.2759 -0.658964L44.3494 -0.90376C44.1678 -0.96047 43.9783 -1.0068 43.7898 -1.04061C43.1571 -1.10574 42.5354 -1.15027 41.9154 -1.20036C41.2954 -1.25045 41.0792 -1.27346 40.6737 -1.29498C40.4928 -1.28315 40.3255 -1.26205 40.1742 -1.23199ZM26.4734 29.201L27.3013 29.702C27.5692 29.7456 27.8195 29.7534 28.0141 29.7245C28.2087 29.6955 28.3369 29.6313 28.3793 29.5416C28.4474 29.4996 28.4543 29.4374 28.3983 29.3681C28.3423 29.2987 28.2279 29.2276 28.079 29.1696C27.9357 29.1008 27.7722 29.0392 27.5984 28.9885C27.4247 28.9378 27.2445 28.8991 27.069 28.8748L26.4734 29.201ZM33.3668 26.7063C32.8253 26.6213 32.3074 26.5866 31.8526 26.6047C31.5661 26.6544 31.1778 26.6386 30.7675 26.5603C30.0212 26.4045 29.3018 26.3613 28.7611 26.44C28.7611 26.44 28.741 26.5067 28.6494 26.5261C28.5577 26.5455 28.9212 26.5926 29.0012 26.6122C29.5875 26.66 30.1772 26.6967 30.687 26.7139C31.0035 26.7131 31.3383 26.7289 31.6855 26.761C32.1633 26.8104 32.6165 26.8264 33.0273 26.8084C33.0273 26.8084 33.1862 26.7935 33.3652 26.7118L33.3668 26.7063ZM91.1987 0.609015C90.94 0.514652 90.6595 0.43796 90.3783 0.384696C90.097 0.331432 89.8223 0.302979 89.5746 0.301464C89.385 0.296541 89.2315 0.321455 89.1386 0.372269C89.0456 0.423082 89.0184 0.496896 89.0613 0.582035C89.2532 0.628955 89.509 0.691515 89.6529 0.726705C90.1517 0.723262 90.5772 0.678015 91.1987 0.609015ZM139.616 8.56089C139.409 8.48493 139.18 8.42685 138.957 8.39329C138.733 8.35972 138.524 8.35203 138.352 8.37109C138.264 8.37936 138.323 8.46567 138.308 8.51574C138.299 8.5271 138.299 8.54122 138.309 8.55662C138.319 8.57203 138.338 8.58816 138.365 8.60333C138.392 8.61849 138.426 8.63212 138.462 8.64279C138.499 8.65347 138.537 8.6608 138.573 8.66401C138.798 8.69674 139.011 8.70647 139.192 8.69236C139.372 8.67825 139.516 8.64073 139.61 8.58315L139.616 8.56089ZM142.861 9.64679C142.828 9.60196 142.76 9.55525 142.668 9.5152C142.576 9.47515 142.467 9.44445 142.36 9.42875C142.171 9.42664 141.999 9.43906 141.851 9.46557C141.69 9.48601 141.806 9.61579 142.023 9.69278C142.115 9.72369 142.213 9.74779 142.31 9.76319C142.407 9.77858 142.499 9.78483 142.58 9.78144C142.661 9.77806 142.728 9.76513 142.777 9.74369C142.825 9.72224 142.852 9.69287 142.857 9.65792L142.861 9.64679ZM48.5958 -0.755217C48.1118 -0.915374 47.7393 -0.875083 47.3295 -0.939454C46.9197 -1.00382 46.8188 -1.0106 46.8737 -0.907591C46.9286 -0.804588 47.2095 -0.825478 47.3853 -0.782467C47.623 -0.725397 47.8621 -0.692624 48.0758 -0.687811C48.2896 -0.682999 48.4696 -0.706337 48.5958 -0.755217ZM149.451 26.3435C149.195 26.3076 148.944 26.2822 148.702 26.2677C148.67 26.2826 148.65 26.3021 148.643 26.325C148.636 26.348 148.643 26.3739 148.662 26.4013C148.662 26.4013 148.826 26.4832 148.922 26.5067C149.275 26.5871 149.293 26.4719 149.451 26.3435ZM185.685 41.2652C185.858 41.3733 185.939 41.4468 186.078 41.4987C186.142 41.5167 186.208 41.5298 186.271 41.537C186.334 41.5442 186.393 41.5453 186.443 41.5402C186.504 41.5091 186.518 41.4614 186.483 41.4067C186.483 41.4067 186.306 41.3097 186.239 41.3052C186.047 41.2823 185.861 41.2688 185.685 41.2652ZM40.3574 -1.67091C39.9897 -1.76084 39.6378 -1.84686 39.3832 -1.74192C39.9672 -1.62897 39.9672 -1.62896 40.3574 -1.67091ZM46.314 -0.644315C45.9427 -0.836648 45.7248 -0.854102 45.5465 -0.832002C45.5086 -0.826436 45.4835 -0.814031 45.4751 -0.796668C45.4666 -0.779308 45.4752 -0.757932 45.4996 -0.735776C45.524 -0.713619 45.5628 -0.69189 45.6102 -0.673873C45.6576 -0.655854 45.711 -0.642528 45.7623 -0.635914C45.9559 -0.630378 46.1406 -0.633188 46.314 -0.644315ZM65.4272 -0.562987C65.4356 -0.590805 65.4456 -0.624186 65.3497 -0.647646C65.3245 -0.659555 65.2951 -0.669797 65.2642 -0.677347C65.2333 -0.684897 65.2021 -0.689483 65.1738 -0.690651C65.1738 -0.690651 65.1638 -0.657268 65.1571 -0.635014L65.4272 -0.562987ZM78.6999 45.6208L78.4863 45.6462L78.5822 45.6696L78.8354 45.6838L78.6999 45.6208ZM153.907 9.21272C153.827 9.19317 153.747 9.17362 153.735 9.21256C153.719 9.2186 153.708 9.2273 153.705 9.23795C153.702 9.24859 153.706 9.26087 153.717 9.27376C153.717 9.27376 153.829 9.30113 153.877 9.31287L153.907 9.21272ZM141.456 9.5242C141.403 9.52196 141.356 9.52458 141.316 9.53187L141.306 9.56525L141.466 9.60435L141.456 9.5242ZM32.9445 17.4779C32.8828 17.4576 32.8173 17.4416 32.7527 17.431L32.6727 17.4114C32.6727 17.4114 32.7586 17.4683 32.8066 17.48C32.8545 17.4917 32.8932 17.4773 32.9445 17.4779Z' fill='%23F52B53'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 195px;
}

.travel-feed-content {
  background: #fff;
  border-radius: 18px;
  padding: 20px 40px 20px 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

body.single-post .post-details-content .travel-feed-content {
  padding: 0 0 20px;
}

.travel-feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.travel-feed-top .top-left {
  display: flex;
  align-items: center;
  gap: 0 12px;
}

.travel-feed-top .top-left .img {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  overflow: hidden;
}

.travel-feed-top .top-left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-feed-top .top-left h5 {
  margin-bottom: 0;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  color: #000000;
}

.travel-feed-top .top-left h5 a {
  color: #000000;
}

.travel-feed-top .top-left h5 a:hover {
  color: #f52b53;
}

.travel-feed-top .top-left span {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  color: rgba(0, 0, 0, 0.46000000834465027);
}

.travel-feed-top .top-left .info {
  display: flex;
  flex-direction: column;
}

.travel-feed-top .top-right a {
  position: relative;
}

.travel-feed-top .top-right a span {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  text-align: center;

  color: #ffffff;
  background: #00acff;
  position: absolute;
  right: -6px;
  top: 0;
}

.travel-feed-top .top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 15px;
}

.travel-feed-row {
  margin-top: 25px;
}

.travel-feed-btm {
  margin-top: 10px;
}

.travel-feed-btm h3 {
  font-family: Volkhov;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  text-align: left;

  color: #000000;
}

.travel-feed-btm .img {
  width: 100%;
  height: 307px;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 18px;
  margin-bottom: 14px;
}

.travel-feed-btm .img a {
  display: inline;
}

.travel-feed-btm .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-feed-btm p {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;

  color: #000000;
  max-width: 472px;
}

.travel-feed-btm h3 a {
  color: #000000;
}

.travel-feed-btm h3 a:hover {
  color: #f52b53;
}

.fixed-box {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 1));
  opacity: 0;
  z-index: 5;
  visibility: hidden;
  pointer-events: none;
}

/* Inner page start Code Debalina */

.compose-newcontent-sec {
  padding: 104px 0 0 0;
}

.compose-newcontent-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
  padding: 77px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.compose-newcontent-left {
  max-width: 693px;
  font-family: Inter;
  font-size: 18px;
  line-height: 26px;
}

.compose-newcontent-left h2 {
  font-family: Volkhov;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 12px;
}

.best-destination-sec-inner2 {
  padding-bottom: 105px;
}

.best-destination-sec-inner1 .top-heading h2 b::after,
.best-destination-sec-inner2 .top-heading h2 b::after {
  right: 0;
}

.best-destination-sec-inner2 .top-heading h2 b::after {
  background-size: 320px;
}

@media (min-width: 1199.98px) {
  .best-destination-sec-inner2 .top-heading h2 {
    font-size: 49px;
  }
}

.img-wrap .img-half-circle {
  width: 457px;
  height: 521px;
  border-radius: 432px 432px 0 0;
  margin-right: auto;
  overflow: hidden;
}

.img-wrap .img-half-circle img,
.best-img2-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.best-destination-sec-inner2 .img-wrap {
  width: 553px;
  height: 548px;
}

.best-img2-circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 290px;
  height: 290px;
  border-radius: 100%;
  overflow: hidden;
  border: 15px #fff solid;
}

.best-destination-sec-inner2 .grdnt-img {
  top: 37%;
  right: -38%;
  left: auto;
}

.best-destination-sec-inner2 .prop-img {
  left: 0;
  right: auto;
  top: -10px;
}

.email-us {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}

.email-us h3 {
  font-family: Volkhov;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: capitalize;
  color: #181e4b;
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 7px;
}

.email-us a {
  color: #777777;
}

.email-us a:hover {
  color: #fd3385;
}

.travel-location {
  display: flex;
  align-items: center;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-top: 15px;
}

.travel-location+h3 {
  margin-top: 32px;
}

.inner-travel-feed {
  background-color: #ffffff;
}

.inner-travel-feed .travel-feed-btm p {
  max-width: 100%;
}

.inner-travel-feed .hero-content form {
  box-shadow: 0 0 15px #0000003b;
}

.post-details-content {
  padding: 100px 0;
}

.recent-post {
  padding-top: 0;
}

.post-details-content .travel-feed-top .top-left span {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.post-details-content .top-heading h2 {
  margin-bottom: 17px;
}

.default-content>img {
  width: 100%;
  border-radius: 18px;
  margin-top: 18px;
  margin-bottom: 40px;
}

.default-content ul li+li,
.default-content ol li+li {
  margin-top: 8px;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.aligncenter {
  float: none;
  margin: 15px auto;
  border-radius: 10px;
}

.default-content h2,
.default-content h3,
.default-content h4,
.default-content h5,
.default-content h6 {
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 15px;
}

.default-content h2 {
  font-size: 42px;
}

.default-content h3 {
  font-size: 36px;
}

.default-content h4 {
  font-size: 24px;
}

.default-content h5 {
  font-size: 20px;
}

.default-content h6 {
  font-size: 18px;
}

.profile-info {
  border: 0.88px solid #000000;
  padding: 14px 13px;
  border-radius: 17.54px;
}

.profile-cover,
.profile-dp {
  position: relative;
}

.profile-cover img {
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
}

.profile-dp {
  margin-top: -77px;
  /* width: 107px;
    height: 107px; */
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.profile-dp img {
  overflow: hidden;
  border-radius: 50%;
  width: 107px;
  height: 107px !important;
  object-fit: cover;
  object-position: center;
  /* outline: 3.51px dashed #282632; */
  outline-offset: -4px;
}

.profile-dp h4 {
  font-family: Volkhov;
  font-weight: 700;
  font-size: 17.54px;
  line-height: 24.56px;
  color: #15264b;
  margin-top: 4px;
}

.profile-dp h4 a {
  color: #15264b;
}

.profile-dp h4 a:hover {
  color: #f52b53;
}

.profile-notification {
  margin-top: 36px;
}

.profile-notification>h4 {
  font-family: Inter;
  font-weight: 400;
  font-size: 17.54px;
  line-height: 26.31px;
  text-align: center;
  color: #f52b53;
  text-transform: capitalize;
}

p.not_found {
  color: #fc3355;
  font-weight: 600;
}

.profile-notification-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  text-align: center;
}

.profile-notification-row .item {
  width: 33.33%;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 12.28px;
  line-height: 19.65px;
  color: #646464;
}

.profile-notification-row .item a {
  color: #646464;
}

.profile-notification-row .item a:hover {
  color: #f52b53;
}

.profile-notification-row .item h3 {
  font-family: Volkhov;
  font-weight: 700;
  font-size: 22.81px;
  line-height: 31.93px;
  color: #f52b53;
}

.profile-notification-row .item p:last-child {
  margin: 0;
}

.profile-notification .btnn {
  box-shadow: 0px 17.54px 30.7px 0px #f52b531a;
}

.profile-about h4,
.profile-friend-list h4 {
  font-family: Volkhov;
  font-weight: 700;
  font-size: 17.54px;
  line-height: 24.56px;
  color: #282632bf;
}

.profile-about {
  font-family: Inter;
  font-weight: 500;
  font-size: 11.4px;
  line-height: 18.24px;
  color: #212529bf;
  margin-top: 20px;
}

.profile-about-row,
.profile-friend-list-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.profile-about-row .item h5 {
  font-family: Volkhov;
  font-weight: 400;
  font-size: 12.28px;
  line-height: 18.42px;
  color: #15264b;
}

.profile-about-row .item a {
  color: #646464;
}

.profile-about-row .item a:hover {
  color: #fd3355;
}

.profile-friend-list {
  margin-top: 30px;
}

.profile-friend-left {
  position: relative;
  padding-left: 42px;
}

.profile-friend-left span.friend-img-circle {
  position: absolute;
  left: 0;
}

.profile-friend-left span.friend-img-circle img {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.profile-friend-left h5 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 12.28px;
  line-height: 18.42px;
  color: #15264b;
  margin: 0;
}

.profile-friend-left h5 a {
  color: #15264b;
}

.profile-friend-left h5 a:hover {
  color: #f52b53;
}

.profile-friend-left p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 10.53px;
  line-height: 15.79px;
  color: #212529bf;
  margin-bottom: 0;
}

a.friend-comments {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fd3355;
}

.profile-friend-list-row {
  margin-top: 13px;
}

.my-post-feed {
  background-color: transparent;
  padding-top: 0;
}

.my-post-feed .top-heading h2 {
  margin-bottom: 25px;
}

.my-post-feed .travel-feed-content,
.recent-post .travel-feed-content {
  box-shadow: 0 0 16px #00000029;
  padding: 20px 22px 20px 11px;
}

.profile-sec .faq-wrap .accor-item {
  flex: 1 1 calc(100% - 10px);
}

.profile-sec {
  padding-top: 70px;
}

body.group-blog .profile-sec {
  padding-bottom: 70px;
}

.search-top-travelers {
  margin-top: 40px;
}

.search-top-travelers .travelars-content {
  margin: 15px 0;
}

.search-top-travelers .travelars-content .img {
  border: 4px solid #f52b53;
}

.chat-sec {
  padding: 80px 0;
}

.chat-wrapper {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
}

.chat-left {
  min-width: 307px;
  background-color: #f3f3f6;
  padding: 20px 15px;
  border-radius: 20px;
  position: relative;
}

.chat-left form .search-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 6px;
  width: 100%;
  height: 100%;
  background-color: #e8e8ed;
  min-height: 40px;
  padding: 13px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.chat-left form .search-box>svg {
  width: 13px;
}

.chat-left form .search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: left;
  color: #39425d;
}

.chat-list-wrapper {
  height: 876px;
  overflow-y: auto;
  scrollbar-width: none;
}

.chat-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #dddee6;
  padding: 30px 10px;
}

.chat-list:hover,
.chat-list.active {
  background: #f52b53;
  box-shadow: 0px 5px 15px 0px #101b4f26;
  border-radius: 20px;
  border-color: transparent;
}

.chat-list:hover+.chat-list,
.chat-list.active+.chat-list {
  border-color: transparent;
}
.City__placeholder {
    text-align: center;
    padding: 0 15px;
}
.City__placeholder h1 {
    margin: 30px 0 15px;
    padding: 0 15px;
}

.notification-icon a{
    color: #fd3355;
    font-size: 20px;
	transition:all 0.3s ease-in-out;
}
.notification-icon a:hover{
	color:#181e4b;
}
section.submit button {
    min-width: 150px;
    min-height: 50px;
    background: #fd3355;
    border: 1px solid #fd3355;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.iframe_form {
    margin-bottom: 10px;
	padding: 0 15px;
}
@media (min-width: 991.98px) {
  .chat-list .chat-time {
    padding-left: 50px;
  }
}



.chat-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-info .img img,
.chat-msg .img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 6px 8px 0px #101b4f34;
}

.chat-info .info h5 {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 5px;
  color: #101b4f;
}

.chat-info .info h5 a {
  color: #101b4f;
  transition: none;
}

.chat-info .info p {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
  color: #9b9b9b;
}

.chat-time p {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: #989db4;
  margin-bottom: 0;
}

.chat-list:hover .chat-info .info h5 a,
.chat-list:hover .chat-info .info p,
.chat-list:hover .chat-time p,
.chat-list.active .chat-info .info h5 a,
.chat-list.active .chat-info .info p,
.chat-list.active .chat-time p {
  color: #ffffff;
}

.chat-right {
  width: 100%;
}

.chat-top-bar {
  min-height: 80px;
  border-radius: 20px;
  background: #e8e9ee;
  display: flex;
  margin-left: -20px;
  padding-left: 60px;
  padding-right: 15px;
}

.chat-top-bar .chat-info .info h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
}

.chating-main-wrapper {
  padding: 63px 25px 0;
  position: relative;
  height: 761px;
  overflow-y: auto;
}

.frind-chat-wrapper,
.my-chat-wrapper {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
}

.my-chat-wrapper {
  justify-content: end;
  flex-direction: row-reverse;
}

.chat-msg {
  display: flex;
  gap: 19px;
}

.msg-info {
  background: #f52b53;
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 0 20px 20px 20px;
}

.msg-info p {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.msg-info p:last-child {
  margin-bottom: 0;
}

.msg-info p img.emoji {
  width: 30px !important;
  height: 30px !important;
}

.frind-chat-wrapper .chat-time,
.my-chat-wrapper .chat-time {
  min-width: 64px;
}

.my-chat-wrapper .chat-msg {
  flex-direction: row-reverse;
}

.my-chat-wrapper .msg-info {
  background: #14183e;
  border-radius: 20px 0 20px 20px;
}

.chat-send-field {
  padding: 25px 25px 60px;
  position: relative;
  display: flex;
  gap: 29px;
  align-items: center;
}

.chat-send-field form {
  width: 100%;
  position: relative;
}

.input-container {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 4px 40px rgb(0 0 0 / 22%);
  width: 100%;
  height: 54px;
}

.input-container input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  margin: 0 10px;
}

.input-container button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.user-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.emoji-picker {
  position: absolute;
  bottom: 60px;
  left: 16px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 10;
}

button.send-btn {
  border-left: 1px #d9d9d9 solid;
  padding-left: 15px;
  margin-left: 10px;
}

/* ============================== .newPost-form-section ======================= */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #00000085;
  backdrop-filter: blur(1px);
}

.newPost-form-section {
  padding: 100px 0px;
}

.newPost-form-container {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 40px 106px;
  width: 744px;
  text-align: center;
}

.newPost-form-container form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.newPostFormTitle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newPostFormTitle h2 {
  color: #14183e;
  font-family: Volkhov;
  font-weight: 700;
  font-size: clamp(20px, 5vw, 50px);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}

.newPostFormTitle h6 {
  color: #f52b53;
  margin: 0;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.newPost-form-field label {
  font-family: Volkhov;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 100%;
  color: #14183e;
  letter-spacing: 0%;
  margin-bottom: 12px;
}

.newPost-form-field input[type="text"],
.newPost-form-field textarea,
.newPost-form-field input.custom-form-control,
.newPost-form-field textarea.custom-form-control,
.newPost-form-field select.custom-form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #f52b53;
  outline: none;
  border-radius: 10px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #999999;
  background-color: #f9f9f9;
}

.newPost-form-field select.custom-form-control {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.newPost-form-field select.custom-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.newPost-form-field textarea,
.newPost-form-field textarea.custom-form-control {
  resize: vertical;
  height: 181px;
  border-radius: 10px;
  line-height: 24px;
}

.newPost-form-field {
  margin-bottom: 0 !important;
  position: relative;
}

span.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.newPost-form-upload-box {
  border: 1px dashed #f52b53;
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
}

.newPost-form-upload-btn {
  font-size: 24px;
  color: #f52b53;
  width: 100%;
  padding: 35px 0px;
  height: 100%;
  border: 1px dotted #f52b53;
  width: 500;
  border-radius: 10px;
  background-color: #f0f0f0;
}

#filePreview {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  font-size: clamp(12px, 5vw, 24px);
}

.newPost-form-upload-btn:hover {
  background-color: #f52b53;
  transition: all ease-in 0.4s;
}

.newPost-form-upload-btn:hover svg path,
.newPost-form-upload-btn:hover #filePreview {
  fill: #ffff;
  color: #ffff;
  transition: all ease-in 0.5s;
}

.newPost-form-btn {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 0;
  flex-wrap: wrap;
}

.newPost-form-btn button[type="submit"] {
  padding-left: 35px;
}

.newPost-form-btn button[type="submit"] {
  background-image: url('data:image/svg+xml,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.33333 13.6667C5.33333 21.9609 5.38167 22 13.6667 22C21.9517 22 22 21.975 22 13.6667C22 5.35837 21.9842 5.33337 13.6667 5.33337" stroke="white" stroke-width="1.5"/><path d="M6.58333 4.91667L4.91667 6.58333M14.5 12V14.5H12L2 4.5L4.5 2L14.5 12Z" stroke="white" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-position: left 20px center;
}

.newPost-form-btn button[type="submit"]:hover {
  background-image: url('data:image/svg+xml,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.33333 13.6667C5.33333 21.9609 5.38167 22 13.6667 22C21.9517 22 22 21.975 22 13.6667C22 5.35837 21.9842 5.33337 13.6667 5.33337" stroke="%23FD3355" stroke-width="1.5"/><path d="M6.58333 4.91667L4.91667 6.58333M14.5 12V14.5H12L2 4.5L4.5 2L14.5 12Z" stroke="%23FD3355" stroke-width="1.5"/></svg>');
}

.newPost-form-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.newPost-form-file-input {
  display: none;
}

/* -------------------------- private - public invitation -chat ----------------------- */
.group-info-details-user {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 15px;
  font-family: sans-serif;
  color: #000000;
  font-family: "Volkhov";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0%;
}

.group-info-details-user .date {
  color: #999;
  font-size: 14px;
  margin: 0;
}

.group-info-details-user .info {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: normal;
}

.join-group-container {
  text-align: center;
  font-family: sans-serif;
}

.join-group-container .join-group-container-text {
  font-size: 16px;
  margin-bottom: 0px;
}

.join-the-group-chat-btn-container {
  margin-bottom: 63px;
}

.join-the-group-chat-btn-container p {
  margin-bottom: 0px;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  text-transform: capitalize;
}

.join-the-group-chat-btn-container>span {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #9b9b9b;
}

.join-the-group-btn {
  background-color: #ff3b5c;
  border: none;
  border-radius: 999px;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.join-the-group-btn:hover {
  background-color: #e62b4a;
}

.menu-container-with-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.menu-icon-dropdown {
  font-size: 24px;
  cursor: pointer;
  margin-right: 20px;
}

.dropdown-list-item {
  display: none;
  position: absolute;
  right: 43%;
  margin-top: 13px;
  background: #fff;
  border-radius: 10px;
  width: max-content;
  box-shadow: 0px 9px 20.1px 0px #00000026;
  border-top-right-radius: 0px;
  z-index: 1;
}

.dropdown-list-item::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 7px;
  width: 11px;
  height: 17px;
  background-color: #e8e9ee;
  transform: rotate(50deg);
  border-top-left-radius: 50%;
}

.dropdown-list-item::before {
  content: "";
  position: absolute;
  top: -25%;
  right: 0px;
  width: 15px;
  height: 13px;
  border: 8px solid #fff;
}

.dropdown-list-item a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.dropdown-list-item a:last-child {
  border-bottom: none;
}

.dropdown-list-item a:hover {
  background: #f0f0f0;
}

.private-public-chat-container-wrapper-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.join-the-group-chat-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.join-the-group-btn-private-chat {
  width: 222;
  height: 44;
  border-radius: 52.63px;
  background: #b7b7b7;
  font-family: Inter;
  font-weight: 400;
  font-size: 14.03px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffff;
  padding: 13px 53px;
  border: none;
  outline: none;
}

.join-the-group-btn-private-chat:hover {
  background-color: #9b9b9b;
}

.btnnn-primary {
  box-shadow: 0px 17.54px 30.7px 0px #f52b531a;
  background: #fd3355;
  border: 1px solid transparent;
}

.btnnn-primary:hover {
  color: #fd3355;
  border: 1px solid #fd3355;
  background-color: transparent;
  transition: all ease-in 0.3s;
}

.btnnn-primary:hover svg path {
  fill: #fd3355;
  transition: all ease-in 0.3s;
}

.chat-list-group-chat {
  display: flex;
  align-items: flex-start;
}

.chat-list-group-chat>div {
  display: inline-flex;
}

.chat-list-group-chat>div:nth-child(1) {
  max-width: 196px;
}

.chat-list-group-chat>div:nth-child(1) .info h5 a {
  text-overflow: ellipsis;
}

.chat-list-group-chat>div:nth-child(2) {
  width: max-content;
}

.two-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -------------------------- private - public invitation -chat ----------------------- */

/* --------------------- profile page some more feilds add by sourav --------------- */
.group-sidemenu-container-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 27px 0px;
}

.btnPadding-medium {
  padding: 13px 27px;
}

.model-createYourgroup {
  margin-block: 50px;
}

.model-createYourgroup::-webkit-scrollbar {
  display: none;
}

/* --------------------- profile page some more feilds add by sourav --------------- */
/* ------------------ group-admin-panel ----------- */
.groups-profile-info-circle h6 {
  margin-top: 30px;
}

/* ------------------ group-admin-panel ----------- */


/* share social  start */
.share-social-popup {
  position: absolute;
  background: #000000d9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  padding: 20px 15px;
  display: none;
}

.share-social-popup-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.share-social-white-box {
  font-size: 42px;
  text-align: center;
  background: #ffffff;
  padding: 20px 20px;
  font-size: 28px;
  border-radius: 20px;
}

.share-social-white-box a {
  margin: 10px 10px;
}

.share-social-white-box a {
  color: #000000;
}

.share-social-white-box a:hover {
  transform: translateY(-5px);
}

.share-social-popup-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ffffff;
  font-size: 40px;
}

.share-social-popup-close:hover {
  color: #f52b53;
}

body.single-post .share-social-popup {
  background-color: transparent;
  width: auto;
  height: auto;
  top: 78px;
  left: auto;
  right: 6px;
  z-index: 99999;
  padding: 0;
}

body.single-post .share-social-white-box {
  background: #eeeeee;
  padding: 0 15px;
  font-size: 28px;
  border-radius: 8px;
}

body.single-post .share-social-white-box a {
  margin: 2px;
  font-size: 22px;
}

body.single-post .share-social-popup .share-social-popup-close {
  right: -5px;
  top: -6px;
  color: #000;
  font-size: 17px;
}

/* share social  end */

.edit-profile-container,
.create-new-questions-container {
  max-width: 944px;
  margin: 0 auto;
}

.create-new-questions {
  padding: 100px 0;
}

.edit-profile-container .profile-info {
  padding: 25px 97px;
  background: #F6F6F6;
  border-color: transparent;
}

.edit-profile-container .top-heading em,
.create-new-questions-container .top-heading em {
  margin-bottom: 16px;
}

.edit-profile-container .top-heading h2,
.create-new-questions-container .top-heading h2 {
  text-align: center;
  margin-bottom: 20px;
}

.edit-profile-container .profile-cover img {
  height: 243px;
  object-fit: cover;
  object-position: center;
}

.edit-cover-tag {
  position: absolute;
  top: 15px;
  right: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 84px;
  min-height: 34px;
  border-radius: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  cursor: pointer;
}

.edit-profile-container .profile-dp {
  width: 208px;
  height: 208px;
  margin-top: -140px;
}

.edit-profile-container .profile-dp img {
  outline: 6.51px dashed #282632;
  outline-offset: -7px;
  width: 100%;
  height: 100% !important;
}

.edit-dp-tag {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  position: absolute;
  right: 15px;
  bottom: 0;
  cursor: pointer;
}

.profile-edit-form {
  margin-top: 28px;
}

body.page-template-edit-profile .profile-edit-form .newPost-form-field {
  margin-bottom: 30px !important;
}

body.page-template-edit-profile .create-new-questions-wrapper .newPost-form-btn {
  margin-top: 30px;
}

.newPost-form-field input.custom-form-control,
.newPost-form-field textarea.custom-form-control {
  background: #F9F9F9;
}

input::placeholder,
textarea::placeholder {
  color: #999999;
}

.create-new-questions-wrapper {
  margin-top: 30px;
}

.repeat-questions-items {
  border-radius: 11.72px;
  border: 1.67px solid #FC3355;
  box-shadow: 0px 5.02px 13.39px 0px #FC335530;
  background-color: #ffffff;
  position: relative;
  padding: 21px 96px;
}

.repeat-questions-items .newPost-form-field+.newPost-form-field {
  margin-top: 15px;
}

.repeat-questions-items .newPost-form-field textarea.custom-form-control {
  height: 74px;
}

.delete-question-item {
  position: absolute;
  top: 16px;
  right: 17px;
  cursor: pointer;
}

.repeat-questions-items+.repeat-questions-items {
  margin-top: 50px;
}

.create-new-questions-wrapper .newPost-form-btn .btnn {
  padding: 0 22px;
}

/* development css */
.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

/* drop-down-related css start */
.results-dropdown {

  position: absolute;

  top: 128%;

  left: -18px;

  right: 0;

  background: #fff;

  border: 1px solid #ccc;

  max-height: 200px;

  overflow-y: auto;

  z-index: 999;

  display: none;
  border-radius: 10px;
  width: 106%;

}



.results-dropdown ul {

  list-style: none;

  margin: 0;

  padding: 0;
  border-radius: 10px;

}



.results-dropdown li {

  padding: 10px 12px;

  cursor: pointer;

  border-bottom: 1px solid #eee;
  border-radius: 10px;
  backdrop-filter: blur(2.5px);

}



.results-dropdown li:hover {

  background-color: #f0f0f0;
}

a {
  text-decoration: none !important;
}

#searchResults p {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #cf0000;
  margin: 0;
  padding: 10px;
}

/* drop-down-related css end */


.req-member-show-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-area: 15px;
  margin-bottom: 20px;
}

.req-member-left h5 {
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0;
  color: #101B4F;
}

.member-wrapper .btnn {
  min-width: 82px;
  min-height: 23px;
  font-size: 12px;
  box-shadow: 0px 11.04px 19.32px 0px #F52B531A;
}

.memberlist-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.memberlist-each-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border: 0.92px solid #F0F0F0;
  background: #F9F9F9;
  border-radius: 9.15px;
  padding: 13px;
}

.memberlist-each-items .img img {
  width: 52px;
  height: 52px;
  box-shadow: 0px 5.49px 7.32px 0px #101B4F34;
}

.memberlist-each-items .chat-info .info h5 {
  font-weight: 500;
}

.memberlist-each-items .chat-info .info p {
  font-size: 10px;
  line-height: 14px;
}

.btnn.member-now {
  background-color: #E6E6E6;
  border-color: #E6E6E6;
  color: #101B4F;
}

.chating-main-wrapper.member-wrapper {
  height: 876px;
}

.member-list-right {
  text-align: right;
}

.post-details-content+.recent-post .top-heading h2 {
  margin-bottom: 20px;
}

.file-preview-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.file-preview-img {
  position: relative;
}

.file-preview-img img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.close-file-preview {
  position: absolute;
  top: -3px;
  right: -10px;
  background: #f00;
  color: #fff;
  width: 16px;
  height: 16px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

/* bikram css start  */
.wp-singular.page-template-default .inner-page-content {
  padding: 100px 0;
}

.wp-singular.page-template-default .inner-page-content .top-heading {
  text-align: center;
}

.wp-singular.page-template-default .inner-page-content .btnn {
  padding: 10px 30px;
  margin-top: 30px;
}

.wp-singular.page-template-default .inner-page-content .top-heading em {
  color: #fd3385;
  margin-bottom: 8px;
  display: inline-block;
}

.wp-singular.page-template-default .inner-page-content .top-heading h2 {
  text-align: center;
}

.wp-singular.page-template-default .inner-page-content .top-heading h2 span:after {
  width: 180%;
  background-size: 140%;
}

span.join_no {
  position: absolute;
  left: -10px;
  top: -10px;
}

span.join_no a {
  color: white;
  height: 25px;
  width: 25px;
  background: #fd3556;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


/* gallery_sec start  */
.gallery_box_img img {
  width: 100%;
  border-radius: 7px;
  height: 100% !important;
  max-height: 300px;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.gallery_box_img {
  margin: 0 15px;
  max-height: 300px;
  min-height: 300px;
}

.gallery_box_img a {
  display: block;
  height: 100%;
  max-height: 300px;
  min-height: 300px;
}

.gallery_box {
  padding: 30px 0 10px;
}

.gallery_box ul.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fd3355;
  font-size: 0;
  padding: 0;
  border: none;
  transform: scale(0.7);
}

.gallery_box ul.slick-dots li.slick-active button {
  border: 2px #fd3355 solid;
  transform: scale(1.01);
}

.gallery_box ul.slick-dots li {
  display: inline-block;
  margin: 2px 3px;
}

.gallery_box ul.slick-dots {
  padding: 0;
  margin: 15px 0 0 0;
  text-align: center;
}

/* gallery_sec end  */
.group-search-sec form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.group-search-content-btn input {
  min-height: 30px;
  padding: 5px 15px;
  background: #fd3355;
  border: 1px solid #fd3355;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.group-search-content-btn input:hover {
  background: transparent;
  color: #fd3355;
}

div#previewGallery button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  background: #fd3355 !important;
  right: -6px !important;
  top: -3px !important;
}

.group-search-content-btn {
  min-width: 215px;
  text-align: center;
}

.group-search-content .search-box input {
  border: none;
  outline: none;
  min-height: 35px;
  width: 100%;
}

.group-search-content .search-box {
  flex-grow: 1;
  border-right: 1px solid #fd3355;
  padding-right: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
}

.group-search-sec form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #fd3355;
  border-radius: 40px;
  padding: 3px 3px 3px 30px;
}

.group-search-sec {
  padding: 50px 0;
}

.page-id-362 .group-search-sec {
  padding: 50px 0 0;
}

.travel-location a {
  display: inline-flex;
  vertical-align: middle;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f52b53;
  transition: all 0.3s ease-in-out;
}

.travel-location a:hover {
  color: #000000;
}

#noGroupFound {
  padding: 10px;
  /* color: red; */
  color: #fd3355;
  text-align: center;
}

/* bikram css end  */


body.page-id-77 .wpcf7-form-control-wrap {
  width: 100%;
}

.expedia-row {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 35px 15px;
  flex-wrap: wrap;
}

.expedia-banner-two {
  padding: 35px 15px;
  background: #f7f8fa;
}

.expedia-banner-three {
  padding: 35px 15px 60px 15px;
}

.new-notification-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: #f2f2f2;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
}

.new-notification-box .compose-newcontent-left {
  font-size: 16px;
}

.new-notification-box .compose-newcontent-left p {
  margin-bottom: 3px;
}

.new-notification-box .compose-newcontent-left p:last-child {
  margin-bottom: 0;
}

.new-notification-box .btnn {
  padding: 10px 15px;
}
.new-notification-box .compose-newcontent-left h2 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
    font-weight: 400;
    font-family: unset;
}
body.page-id-948 .compose-newcontent-sec {
  padding: 104px 0;
}
.profile-dp + .text-center a {
    display: flex;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 10px;
}
@media (max-width:767.98px) {
  body.page-id-948 .compose-newcontent-sec {
    padding: 40px 0;
  }

  .expedia-row,
  .expedia-banner-two {
    padding: 40px 15px;
  }


  .expedia-banner-three {
    padding: 0 15px 40px 15px;
  }

}

@media (max-width:575.98px) {
  .new-notification-box {
    flex-direction: column;
	 text-align:center;
  }
	body.page-id-948 .compose-newcontent-sec {
        text-align: center !important;
    }
	body.page-id-948 .compose-newcontent-sec h2 {
    text-align: center;
}
	.new-notification-box {
    padding: 20px 15px;
}
}