/*! 
Theme Name: 1p21 Theme Build
Author: iLawyer

--------------

for future friendly editing and to avoid possibility of change overrides, DO:
- For smaller and or quick fixes, put css changes in post-live.css 
OR
- For complex and or elaborate rebuilds/ Site build, modify sass files locally with a compiler and output as the style.css
*/
/* ================================================================================
* Resets.css
================================================================================ */
/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* ================================================================================
* Native Custom CSS Properties
================================================================================ */
/* css vars because internet explorer can no longer hold us back <3 */
:root {
  /* Core Vars DO NOT EDIT. */
  /* Design Reference - Breakpoints This will be used by javascript to track media queries on stuff like sliders */
  --br-xxs: 359px;
  --br-xs: 767px;
  --br-sm: 1199px;
  --br-md: 1399px;
  --br-lg: 1799px;
  --br-xl: 2879px;
  --br-xxl: 3839px;
  /* Design Reference: Comps/Design Sizes based on given XD Files' artboards */
  --comp: 360px;
  /* Styleguide - Fonts */
  --font-primary: Barlow, Helvetica, Arial, sans-serif;
  --font-secondary: Barlow Semi Condensed, Times, serif;
  --font-accent: Barlow, Helvetica, Arial, sans-serif;
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #000F29;
  --color-dark-alt: #001942;
  --color-light: #FFFFFF;
  --color-light-alt: #EDEFF4;
  --color-primary: #00CE6F;
  --color-primary-alt: #00914C;
  --color-primary-gradient-start: var(--color-primary);
  --color-primary-gradient-end: var(--color-primary-alt);
  --color-secondary: #00235D;
  --color-secondary-alt: var(--color-dark-alt);
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: var(--color-dark);
  --color-accent: #6E9FEF;
  --color-accent-alt: #B9D1EB;
  --color-accent-gradient-start: var(--color-accent);
  --color-accent-gradient-end: var(--color-accent-alt);
  --color-neutral: #BBBBBB;
  --color-neutral-light: var(--color-neutral);
  --color-neutral-lighter: var(--color-neutral-light);
  --color-neutral-lightest: var(--color-neutral-lighter);
  --color-neutral-dark: var(--color-neutral);
  --color-neutral-darker: var(--color-neutral-dark);
  --color-neutral-darkest: var(--color-neutral-darker);
  --color-success: #00CC00;
  --color-caution: #CC6600;
  --color-error: var(--color-primary);
  /* add more native vars as needed */
}
@media only screen and (min-width: 768px) {
  :root {
    --comp: 768px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --comp: 1200px;
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --comp: 1400px;
  }
}
@media only screen and (min-width: 1800px) {
  :root {
    --comp: 1920px;
  }
}

/* ================================================================================
* Vendor Overrides ( CSS Library/ Plugin related stuff. EG: animated,slick,gravity forms etc. )
================================================================================ */
/* animated and wow stuff --------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  /* Turn off all animations on sm and below */
  .animate__animated {
    transition-property: none !important;
    transform: none !important;
    animation: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .animate__animated-custom-entranceReady {
    /* hide animation on init. may or may not be necessary */
    opacity: 0;
    transition: none;
  }
  .visible .animate__animated-custom-entranceReady {
    opacity: 1;
  }
}
/* Reset, skeletons, and normalize for gravity forms and form control elements. No need to edit.
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
:is(input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]),
:is(.gform_wrapper, .gfield_required) .gfield_required, .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom, .gform_wrapper.gravity-theme .gfield_label, .gform_wrapper.gravity-theme :is(.description,
.gfield_description,
.gsection_description,
.instruction), .gform_wrapper.gravity-theme .field_description_above :is(.description,
.gfield_description,
.gsection_description,
.instruction), .gform_wrapper.gravity-theme :is(.gfield_validation_message,
.validation_message) {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

.gfield:is(.gfield-custom-box-label-inset, .gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  line-height: inherit;
  border-radius: var(--field-border-radius, 0);
  color: var(--color-dark);
  padding-left: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-right: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-top: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * var(--field-baseline-offset, 0.5));
  padding-bottom: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * (1 - var(--field-baseline-offset, 0.5)));
  background-size: calc(100% + var(--field-border-width, 1px) * 2) calc(100% + var(--field-border-width, 1px) * 2);
  background-size: calc(100% + var(--field-border-width, 1px) * 2) calc(100% + var(--field-border-width, 1px) * 2);
  background-position: calc(var(--field-border-width, 1px) * -1) calc(var(--field-border-width, 1px) * -1);
  max-width: 100%;
}

.gfield:is(.gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  border-width: var(--field-border-width, 1px);
  border-style: solid;
  min-height: 0;
}

.gfield:is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):focus {
  border-width: var(--field-border-width, 2px);
}

.gfield:is(.gfield-custom-box-label-inset) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.gform_wrapper.gravity-theme :is(.gfield_validation_message, .validation_message) {
  /* reset validation messages enough to make matching design more bearable */
  background: none;
  border: 0;
}
.gform_wrapper.gravity-theme :is(.description,
.gfield_description,
.gsection_description,
.instruction,
.gfield_validation_message,
.validation_message) {
  /* space out word stuff nicer */
  margin-top: 0.5em;
}
.gform_wrapper.gravity-theme .field_description_above :is(.description,
.gfield_description,
.gsection_description,
.instruction) {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* Hidden Gravity Forms Stuff
--------------------------------------------------------------- */
.gform_hidden,
.validation_message.instruction,
.gform_validation_container,
.gform_validation_errors,
.gform_required_legend {
  /* must hide elements */
  display: none !important;
}

/* Custom gravity forms and form control elements. Adjust as needed.
--------------------------------------------------------------- */
form {
  /* height of form field. designers will prefer to design form fields based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case form fields */
  --field-height: 3.25em;
  /* border width. This will be accounted for in calculating the form field height as well */
  --field-border-width: 1px;
  /* duh */
  --field-border-radius: 0px;
  /* horizontal padding for the form field */
  --field-padding-x: 1.5em;
  /* color for required indicators */
  --field-required-color: var(--color-primary);
  /* color for errors */
  --field-error-color: var(--color-error);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --field-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work
  * Formula is line-height-px / font-size-px */
  --field-line-height: 1.125;
}
/*  .gform_ scaffolding. Adjust as needed
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gform {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gform_fields {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.375rem;
}

/*  .ginput_ scaffolding. Adjust as needed
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .ginput {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .ginput_container_time {
  min-width: calc(var(--field-padding-x) * 2 + 5ch);
  max-width: calc(var(--field-padding-x) * 2 + 5ch);
}
.gform_wrapper.gravity-theme .ginput_complex {
  align-items: center;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}

/*  .gfield_ scaffolding. Adjust as needed
--------------------------------------------------------------- */
.gfield {
  font-size: 1rem;
  line-height: var(--field-line-height, 1.125);
}
.gfield:is(.gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea) {
  border-color: var(--color-neutral);
}

.gfield:is(.focus, .gfield_error), .gfield:is(.gfield-custom-box-label-adjacent):is(.gfield_error) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea):is([aria-invalid=true], :focus) {
  --field-border-width: 2px;
}

.gfield.gfield_error :is(label, legend), .gfield_validation_message,
.gfield .validation_message,
.gfield [aria-invalid=true] + label,
.gfield .gform_wrapper label + [aria-invalid=true] {
  color: var(--field-error-color) !important;
}
.gfield:is(.gfield-custom-box-label-adjacent):is(.gfield_error) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea):is([aria-invalid=true]) {
  border-color: var(--field-error-color) !important;
}

.gfield:is(.focus):is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
.gfield:is(.focus) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):is(:focus) {
  border-color: var(--color-primary);
}

.gfield .gchoice {
  margin: 0 0 0.5em;
}

/*  .gfield - multiline
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select) {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select):is(.small, .medium, .large) {
  height: 10.625rem;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
  .gfield_type_multiselect) :is(textarea, select).large {
    height: 11.25rem;
  }
  .gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
  .gfield_type_multiselect) :is(textarea, select).medium {
    height: 10.9375rem;
  }
}
/*  .gfield - label
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield_label {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  /* customize type for .gfield and scaffolding for descending elements */
  /* custom font styles for gfield_label */
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
}
/* .gfield_required / .required-glyph Required Indicator
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .required-glyph,
.gform_wrapper.gravity-theme .gform_body .gfield_required {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  /* adjust required styles  */
  line-height: var(--field-line-height, inherit);
  color: var(--field-required-color);
  font-style: normal;
  font-weight: 700;
  margin-left: 0.25em;
}

/* custom helpers - label required indicator
--------------------------------------------------------------- */
/* required and custom label indicator */
.gfield-custom-label-indicator.ginput_container::before, .gfield-custom-label-indicator.ginput_container::after .gfield-custom-label-indicator.gfield_label::after, .gfield-custom-label-indicator.gfield_label > .gfield_required {
  display: block;
  pointer-events: none;
}
.gfield-custom-label-indicator.ginput_container {
  position: relative;
}
.gfield-custom-label-indicator.ginput_container::before, .gfield-custom-label-indicator.ginput_container::after {
  position: absolute;
  top: var(--field-border-width);
  right: var(--field-border-width);
  padding-top: calc((var(--field-height) - var(--field-border-width) * 2 - 1em * var(--field-line-height)) * 0.5);
  padding-bottom: calc((var(--field-height) - var(--field-border-width) * 2 - 1em * var(--field-line-height)) * 0.5);
  padding-right: calc(var(--field-padding-x) - var(--field-border-width));
}
.gfield-custom-label-indicator.gfield_label > .gfield_required, .gfield-custom-label-indicator.gfield_label::after {
  margin-left: 0.25em;
}
.gfield-custom-label-indicator.gfield_label > .gfield_required {
  position: absolute;
  right: var(--field-padding-x);
}
.gfield-custom-label-indicator.ginput_container::before {
  color: var(--color-dark);
}
.gfield_type_select .gfield-custom-label-indicator.gfield_label::before {
  font-size: 0.5em;
}
.gfield_type_select .gfield-custom-label-indicator.ginput_container::before, .gfield_type_select .gfield-custom-label-indicator.gfield_label::after {
  /* single line select indicator */
  content: "\25BC\FE0E";
  font-size: 0.75em;
}
.gfield_type_phone.gfield-custom-box-label-inset .gfield-custom-label-indicator.gfield_label::after {
  /* phone indicator */
  content: "(___) ___-____";
  position: static;
}
.gfield-custom-label-indicator.ginput_container::after, .gfield-custom-label-indicator.gfield_label > .gfield_required {
  color: var(--field-required-color);
}

/* custom helpers - ilawyer custom styles
--------------------------------------------------------------- */
/* custom styles skeletons. No need to edit */
.gform_wrapper.gravity-theme .gfield.gfield-custom-box {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  position: relative;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box .gfield_label {
  align-self: start;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset {
  /* Overlay label on the input field NOTE: May soon be deprecated. enable or disable via theme options as needed  */
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset .gfield_label {
  display: block;
  position: absolute;
  top: var(--field-border-width);
  left: var(--field-border-width);
  right: var(--field-border-width);
  z-index: 1;
  margin-bottom: 0;
  pointer-events: none;
  /* Take care of edge case overflowing labels */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - var(--field-border-width) * 2);
  padding-right: calc(var(--field-padding-x) * 2 - var(--field-border-width));
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset:is(.active, .focus, :focus-within) .gfield_label {
  opacity: 0;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-webkit-input-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-moz-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-ms-input-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent {
  /* set label beside input field. not to be confused with left align labels settingf for forms. this is our custom stuff and it's prettier than how gravity forms does it.  */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label,
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .ginput_container {
  /* grid/flex fix */
  min-width: 0;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label {
  margin-bottom: 0;
  background-color: var(--color-light-alt);
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent *:not(.gfield_label):not(.ginput_container) {
  grid-column: 1/-1;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) :is(.gfield_label, .ginput_container) {
    grid-column: 1/-1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) .gfield_label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) :is(.gfield_label, .ginput_container) {
    grid-row: 1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) .gfield_label {
    grid-column: 1;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield_type_textarea,
  .gfield_type_multiselect,
  .gfield_type_post_title,
  .gfield_type_post_content,
  .gfield_type_post_excerpt) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent :is(.gfield_label, .ginput_container) {
    grid-column: 1/-1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea,
  [aria-invalid=true]) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
    border-top: 0;
  }
}

/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* custom helpers - Disclaimer Message
--------------------------------------------------------------- */
.disclaimer-message {
  font-size: 1rem;
}

/* includes/field-form
--------------------------------------------------------------- */
.field-form :where(.faux-gform_wrapper) .gform_heading {
  /* gform heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  text-align: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 2rem;
}
.field-form :where(.faux-gform_wrapper) :where(.gform_heading,
.gform_title,
.gform_description) {
  /* everything inside the heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  margin-left: auto;
  margin-right: auto;
}
.field-form:where(.faux-gform_wrapper) :is(.gform_title, .gform_description):last-child {
  margin-bottom: 0;
}
.field-form :is(.gform_wrapper) .gform_body {
  /* body: gforms generated or template custom ones */
}
.field-form :is(.gform_wrapper) .gform_footer {
  /* footer: gforms generated or template custom ones */
  /* reset margin and padding and add  one margin to keep spacing simple to setup. Gravity forms man. */
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}
.field-form :is(.gform_wrapper) .gform_footer :is(.gform_button) {
  /* that goes for the button too */
  margin-bottom: 0;
}
.field-form-body :is(.gform_wrapper) .gform_heading {
  /* in case gravity forms decides to add more ugly things */
  display: none;
}

/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
:root {
  --swiper-theme-color: var(--scheme-sp,var(--color-primary));
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: .375rem;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-size) * 3);
  --swiper-pagination-bullet-vertical-gap: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-inactive-color: currentColor;
  --swiper-pagination-margin: .5rem;
}

.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}
.swiper.swiper-initialized {
  opacity: 1;
}
:is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction):not(.swiper-pagionation-lock) {
  bottom: var(--swiper-pagination-margin);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--swiper-pagination-bullet-horizontal-gap);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.swiper-button-prev, .swiper-button-rtl .swiper-button-next {
  left: 0;
}
.swiper-button-next, .swiper-button-rtl .swiper-button-prev {
  right: 0;
}
.swiper-button-next, .swiper-button-prev {
  /* customize swiper buttons to utilize theme's styles for the button */
  --button-baseline-offset: .5 !important;
  --swiper-navigation-size: var(--button-height);
  height: auto;
  z-index: 1;
}
.swiper-button-next::before, .swiper-button-next::after, .swiper-button-prev::before, .swiper-button-prev::after {
  content: none;
}
.swiper-button-prev .content-icon {
  transform: scaleX(-1);
}
.swiper-custom-pagination-static .swiper-pagination {
  position: static;
  margin-top: var(--swiper-pagination-margin);
}
@media only screen and (min-width: 1200px) {
  .swiper-custom-pagination-static-nontouch .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-margin);
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-sm .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-margin);
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-xs .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-margin);
  }
}
.swiper-custom-hide-slides .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-hide-slides-sm .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease-in-out;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-hide-slides-xs .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease-in-out;
  }
}
.swiper-custom-equal-heights .swiper-slide {
  height: auto;
  align-self: stretch;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-sm .swiper-slide {
    height: auto;
    align-self: stretch;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-xs .swiper-slide-slide {
    height: auto;
    align-self: stretch;
  }
}
.swiper-custom-buttons-static .swiper-wrapper {
  height: auto;
}
.swiper-custom-buttons-static .swiper-button-next, .swiper-custom-buttons-static .swiper-button-prev {
  position: static;
  transform: none;
  margin: 0;
  margin-top: 0.75rem;
}
.swiper-custom-buttons-static .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static .swiper-button-prev ~ .swiper-pagination {
  display: inline-flex;
  width: auto;
}
.swiper-custom-buttons-static .swiper-button-prev {
  margin-right: 0.06125rem;
}
.swiper-custom-buttons-static .swiper-button-next {
  margin-left: 0.06125rem;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-buttons-static-sm .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next, .swiper-custom-buttons-static-sm .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
    margin-top: 1.5rem;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static-sm .swiper-button-prev ~ .swiper-pagination {
    display: inline-flex;
    width: auto;
  }
  .swiper-custom-buttons-static-sm .swiper-button-prev {
    margin-right: 0.06125rem;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next {
    margin-left: 0.06125rem;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-custom-buttons-static-xs .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next, .swiper-custom-buttons-static-xs .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
    margin-top: 0.75rem;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static-xs .swiper-button-prev ~ .swiper-pagination {
    display: inline-flex;
    width: auto;
  }
  .swiper-custom-buttons-static-xs .swiper-button-prev {
    margin-right: 0.06125rem;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next {
    margin-left: 0.06125rem;
  }
}

/* ================================================================================
* Global Styles/Normalize:
* Custom reset and global styles for the site html tags
================================================================================ */
/* Custom scaffolding and normalizing styles
--------------------------------------------------------------- */
html,
body {
  /* prevent document from shrinking to window sizes that are too small */
  min-width: 320px;
  /* cascade global font family, color, and background to reduce appearance of broken styles */
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--scheme-fg, var(--color-dark));
  background: var(--scheme-bg, var(--color-light));
  background-attachment: fixed;
  /* make sure there are no edge case words that overflow the layout or make blocks too wide*/
  word-wrap: break-word;
  /* smoothen scroll */
  scroll-behavior: smooth;
  /* mobile viewport bug fix */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* accent color for form stuff */
  accent-color: var(--color-primary);
  /* pad scroll for jump links */
  scroll-padding: var(--layout-header-height);
}

/* position sticky friendly way to cut off any horizontal scrolls but also allow y to still scroll. Apply only on html element or everything will jiggle for safari ios.
--------------------------------------------------------------- */
html {
  /* Safari fix */
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Remove scrollbar ONLY on touch devices
--------------------------------------------------------------- */
@media (pointer: coarse) {
  html,
  body {
    scrollbar-width: none;
  }
  ::-webkit-scrollbar {
    display: none;
  }
}
/* disable browser focus default styles: Note: customize focus styles as well for accessibility. recommended to set as the same styles as hovers on elements 
--------------------------------------------------------------- */
*:focus {
  outline: none;
}

/* Critical sizing and fonts fixes
--------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  /* fix animation flickering issues for webkit browsers */
  -webkit-backspace-visibility: hidden;
  /* box sizing */
  box-sizing: border-box;
  /* font fixes */
  -webkit-font-smoothing: antialiased;
  /* Firefox 25*/
  -moz-osx-font-smoothing: grayscale;
}

/* Form control resets. Note: will not entirely prettify Gravity forms styles for the design... yet. To view the rest of the form control scaffoldings, including gravity forms' go to vendor/_gforms styles
--------------------------------------------------------------- */
input:not([type=checkbox]):not([type=radio]),
textarea,
select,
button {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  resize: none;
  display: block;
  font: inherit;
  color: inherit;
  margin: 0;
}

input:is([type=checkbox], [type=radio]) {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}
input:focus::-moz-placeholder,
select:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}
input:focus::-ms-input-placeholder,
select:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}

button {
  border: none;
  cursor: pointer;
}

/* Remove default ugly blue links. NOTE: Make sure to style a tags appropiately for accessibility while maintianing styleguide
--------------------------------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
}

/* Monospace elements
--------------------------------------------------------------- */
pre,
code,
kbd,
tt {
  font-family: var(--font-monospace);
  background: rgba(0, 0, 0, 0.05);
}

code,
kbd,
tt {
  padding: 0.125em;
}

pre {
  padding: 1em;
  max-width: 100%;
  line-height: 1;
  overflow: auto;
}

pre * {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Other critical element styles
--------------------------------------------------------------- */
strong,
b {
  font-family: inherit;
  font-weight: bolder;
}

em,
cite,
i,
var {
  font-family: inherit;
  font-style: italic;
}

var {
  font-family: var(--font-secondary);
}

sup,
sub,
small {
  font-size: 0.75em;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

hr {
  outline: 0;
  border: 0;
  display: block;
  margin: 0;
}

/* 
* Images
* Note: best practice to let images only expand within available space 
--------------------------------------------------------------- */
:where(img, svg) {
  max-width: 100%;
}

:where(img) {
  height: auto;
}

/* Embeds
* Note: best practice to let images only expand within available space 
--------------------------------------------------------------- */
video,
audio,
iframe,
object,
embed {
  max-width: 100% !important;
}

/* Other custom global scaffolding here....
--------------------------------------------------------------- */
/* Normalize template main and asides' vertical padding. adjust as needed then customize in certain template styles.
You can use classes for other elements that need to share the same padding as well
--------------------------------------------------------------- */
main, .main,
aside, .aside {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media only screen and (min-width: 768px) {
  main, .main,
  aside, .aside {
    padding-top: 5rem;
    padding-bottom: 5.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  main, .main,
  aside, .aside {
    padding-top: 6.625rem;
    padding-bottom: 7.625rem;
  }
}
@media only screen and (min-width: 1400px) {
  main, .main,
  aside, .aside {
    padding-top: 7.5rem;
    padding-bottom: 8.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  main, .main,
  aside, .aside {
    padding-top: 9rem;
    padding-bottom: 9.5rem;
  }
}

/* ...Or separate normalize template main and asides' vertical padding.
--------------------------------------------------------------- */
/* Catch fancy/weird/whatever positioned elements into custom templates' content area only + prevent clipping issues
--------------------------------------------------------------- */
.template-wrapper {
  position: relative;
}

/* ================================================================================
* Content Styles
================================================================================ */
/* H tag scaffolding
--------------------------------------------------------------- */
:is(:is(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) a {
  font: inherit !important;
}
:is(:is(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:is(*.h1, .content :where(h1)) {
  font-size: 2.375rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-secondary);
  color: var(--scheme-fg-gradient-start);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  :is(*.h1, .content :where(h1)) {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(*.h1, .content :where(h1)) {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.h1, .content :where(h1)) {
    font-size: 3.4375rem;
  }
}

/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:is(*.h2, .content :where(h2)) {
  font-size: 1.25rem;
  line-height: calc(1em + 13px);
  color: var(--scheme-fg-gradient-start);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  :is(*.h2, .content :where(h2)) {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(*.h2, .content :where(h2)) {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.h2, .content :where(h2)) {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.h2, .content :where(h2)) {
    font-size: 1.75rem;
  }
}
.content-palette-dark :is(*.h2, .content :where(h2)) {
  color: var(--scheme-sb-contrast, inherit);
}

/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:is(*.h3, .content :where(h3)) {
  font-size: 1rem;
  line-height: calc(1em + 12px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  :is(*.h3, .content :where(h3)) {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.h3, .content :where(h3)) {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.h3, .content :where(h3)) {
    font-size: 1.1875rem;
  }
}

/* H4s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly case result types/titles, blog post meta, etc
--------------------------------------------------------------- */
:is(*.h4, .content :where(h4)) {
  font-size: 0.875rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-accent);
  color: var(--scheme-fg-gradient-start);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 1200px) {
  :is(*.h4, .content :where(h4)) {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.h4, .content :where(h4)) {
    font-size: 1rem;
  }
}
.content-palette-dark :is(*.h4, .content :where(h4)) {
  color: var(--scheme-sp-contrast, inherit);
}

/* H5s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly testimonial quote sources, contact info titles, etc
--------------------------------------------------------------- */
:is(*.h5, .content :where(h5)) {
  font-size: 0.75rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  :is(*.h5, .content :where(h5)) {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(*.h5, .content :where(h5)) {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.h5, .content :where(h5)) {
    font-size: 0.9375rem;
  }
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:is(*.h6, .content :where(h6)) {
  font-size: 0.6875rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--scheme-sp-contrast);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 1200px) {
  :is(*.h6, .content :where(h6)) {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.h6, .content :where(h6)) {
    font-size: 0.8125rem;
  }
}
.content-palette-dark :is(*.h6, .content :where(h6)) {
  color: var(--scheme-sb-contrast, inherit);
}

/* Blockquote -  can be reused in testimonial-highlights, long call to action sections, any general quote, etc.
--------------------------------------------------------------- */
:is(*.blockquote, .content :where(blockquote)) {
  font-size: 1.375rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-secondary);
  color: var(--scheme-fg-gradient-start);
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
  margin-top: 2.5em;
  margin-bottom: 1.2em;
}
:is(*.blockquote, .content :where(blockquote)) > * {
  font: inherit;
  color: inherit;
  margin-top: 0;
  padding: 0;
}
:is(*.blockquote, .content :where(blockquote)) > *:last-child {
  margin-bottom: 0;
}
:is(*.blockquote, .content :where(blockquote)):before {
  content: "";
  width: 3.75rem;
  display: block;
  height: 2px;
  background-color: var(--scheme-sp-contrast);
  margin: 0 auto 0.75em;
}
@media only screen and (min-width: 768px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 1.75rem;
    width: calc(100% - 3em);
  }
}
@media only screen and (min-width: 1200px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 1.875rem;
    margin-top: 2.3em;
    margin-bottom: 1.8em;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 2rem;
    width: calc(100% - 2em);
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 2.25rem;
  }
}
/* Cite /  Blockquote Source - Optional
Note: Some designs may include a blockquote quote source. suprise, there's an html tag for that (:
can be reused in testimonial-source, any general quote source, etc.
--------------------------------------------------------------- */
:is(*.cite, .content :where(cite)) {
  font-size: 0.75rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-primary);
  color: var(--scheme-sp-contrast);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (min-width: 768px) {
  :is(*.cite, .content :where(cite)) {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.cite, .content :where(cite)) {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.cite, .content :where(cite)) {
    font-size: 0.9375rem;
  }
}
/* Lead - Optional
Note: Some designs may include another style for a little bit fancier basic text that may not be tagged as a normal html element like blockquote or h tag
Use this if it helps
--------------------------------------------------------------- */
*.lead {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  *.lead {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1200px) {
  *.lead {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  *.lead {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1800px) {
  *.lead {
    font-size: 1.5rem;
  }
}

/* The Content
--------------------------------------------------------------- */
.content {
  font-size: 1.0625rem;
  line-height: 1.875;
  font-family: var(--font-primary);
  color: inherit;
}
@media only screen and (min-width: 1200px) {
  .content {
    font-size: 1.125rem;
  }
}
.content :where(p, ul, ol, dl, form, pre, .table-wrapper, table, .wistia_responsive_padding) + :where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6) {
  margin-top: 2rem;
}
.content :where(p,
ul,
ol,
dl,
input:not([type=checkbox]):not([type=radio]):not([type=submit]),
select,
textarea,
form,
pre,
hr:not([class*=fancy-border]),
.table-wrapper,
table,
.wistia_responsive_padding) {
  margin-bottom: 1.875em;
}
.content :where(hr:not([class*=fancy-border])) {
  margin-top: 1.875em;
  background-color: var(--color-neutral);
}
.content :where(a) {
  color: var(--scheme-fg-gradient-start);
  font-weight: bolder;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
.content :where(a):where(:hover, :focus) {
  color: var(--scheme-sp-contrast);
  text-decoration: none;
}
.content :where(ol, ul, dd) {
  padding-left: 1.875em;
  list-style-type: none;
}
.content :where(ol, ul, dd) :where(ol, ul, dd):nth-last-child(n+2) {
  margin-bottom: 0;
}
.content :where(li, dd, dt) {
  list-style: inherit;
  position: relative;
  /* space out each item. Note: some designs may or may not have this. comment out if not needed */
}
.content :where(li, dd, dt) :where(ul,
ol,
dd) {
  margin-top: 1.125em;
  margin-bottom: 1.125em;
}
.content :where(li, dd, dt):nth-child(n+2) {
  margin-top: 0.9em;
}
.content :where(li, dd, dt):last-child > *:last-child {
  margin-bottom: 0;
}
.content li::marker, .content li::before {
  color: var(--scheme-sp-contrast);
  font-size: 1em;
  display: inline-block;
}
.content li::before {
  position: absolute;
  right: 100%;
  top: 0px;
  padding-right: 1.125em;
}
.content :where(ul) > li::before {
  content: "\25CF\FE0E";
}
.content :where(ol) {
  counter-reset: listItem;
}
.content :where(ol) > li::before {
  content: counter(listItem) ". ";
  counter-increment: listItem;
}

/* The Content - Tables Skeletons
--------------------------------------------------------------- */
.content :where(table) {
  border-collapse: collapse;
  table-layout: fixed;
  -webkit-hyphens: auto;
          hyphens: auto;
  font: inherit;
  border-color: var(--table-border-color);
  border-width: var(--table-border-width-y) var(--table-border-width-x);
}
.content :where(table, th, td) {
  border-style: solid;
}
.content :where(tr):first-child > :where(th, td) {
  border-top-color: var(--table-border-color);
}
.content :where(th, td) {
  border-width: var(--table-border-width-y) var(--table-border-width-x) 0;
  border-color: var(--table-cell-border-color-y) var(--table-border-color);
  background-color: var(--table-cell-background);
}
.content :where(th, td):nth-last-child(n+2) {
  border-right-color: var(--table-cell-border-color-x);
}
.content :where(th, td) > *:last-child {
  margin-bottom: 0;
}
.content .table-wrapper {
  /* if javascript is enabled, will allow horizontal scrolling for tables with lots of content */
  overflow-x: auto;
  max-width: 100%;
}
.content .table-wrapper table {
  margin-bottom: 0;
}

/* The Content - Tables Customizations
--------------------------------------------------------------- */
.content table {
  /* left and right border width */
  --table-border-width-x: 1px;
  /* top and bottom border width */
  --table-border-width-y: 1px;
  /* table container color */
  --table-border-color: var(--color-neutral-light);
  /* background color for cells */
  --table-cell-background: var(--scheme-bg,var(--color-light));
  /* border color for left and right */
  --table-cell-border-color-x: var(--scheme-bg-contrast,var(--color-light-alt));
  /* border color fortop and bottom */
  --table-cell-border-color-y: transparent;
  font-size: 0.9em;
}
.content :is(th, td) {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.content th {
  --table-cell-background: var(--table-border-color);
  --table-cell-border-color-y: var(--table-border-color);
  --table-cell-border-color-x: var(--table-border-color);
  font-size: 0.75em;
  font-family: var(--font-primary);
  color: var(--color-dark-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: inherit;
}
.content tr:nth-child(odd) td {
  --table-cell-background: var(--scheme-bg-contrast,var(--color-light-alt));
  --table-cell-border-color-y: var(--scheme-bg-contrast,var(--color-light-alt));
  --table-cell-border-color-x: var(--scheme-bg,var(--color-light));
}
.content table caption {
  padding: 0.5em;
}

/* Content Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-palette-name
--------------------------------------------------------------- */
:is(.content-palette-dark) {
  /* inherit white color: NOTE: for this to work, best practice is for text color to be modified alongside dark background styles of container for accessibility/ Enable _schemes.scss */
}
:is(.content-palette-dark) :where(ol, ul, table) {
  color: var(--scheme-fg, inherit);
}
:is(.content-palette-dark) table {
  border-color: var(--color-neutral-darkest);
}
:is(.content-palette-dark) :where(table, th, td) {
  border-style: solid;
}
:is(.content-palette-dark) :where(th, td) {
  border-color: var(--color-neutral-darkest);
}
:is(.content-palette-dark) th {
  color: var(--color-dark);
  background: var(--color-neutral-darkest);
}
:is(.content-palette-dark) th:nth-last-child(n+2) {
  border-right-color: var(--scheme-bg-contrast, var(--color-dark));
}
:is(.content-palette-dark) td {
  border-top-color: var(--scheme-bg, var(--color-dark-alt));
}
:is(.content-palette-dark) tr:nth-child(odd) td {
  background: var(--scheme-bg-contrast, var(--color-dark));
  border-top-color: var(--scheme-bg-contrast, var(--color-dark));
}
:is(.content-palette-dark) tr:nth-child(odd) td:nth-last-child(n+2) {
  border-right-color: var(--color-neutral-darkest);
}

.content-palette-primary {
  color: var(--color-primary);
}
.content-palette-primary-alt {
  color: var(--color-primary-alt);
}

.content-palette-sp {
  color: var(--scheme-sp);
}
.content-palette-sp-contrast {
  color: var(--scheme-sp-contrast);
}

.content-palette-sb {
  color: var(--scheme-sb);
}
.content-palette-sb-contrast {
  color: var(--scheme-sb-contrast);
}

/* Other Content Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-style-name
--------------------------------------------------------------- */
/* for content with thicker weight than usual */
.content.content-style-thick {
  font-weight: 800;
}

/* for instances of content with less line-height or vertical spacing. Usually lists */
.content.content-style-compact {
  line-height: 1.25;
}
.content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
  margin-top: 0;
}

/* Remove last child margin. Note: Do not apply last child margin 0 globally as this causes more unintended issues down the line (content import, post launch, etc.) */
.content.content-style-no-last-margin > *:last-child {
  margin-bottom: 0;
}

/* Designs with fancy first letters. adjust styles as needed */
.content.content-style-drop-caps > p:first-of-type::first-letter {
  font-size: 2.75rem;
  font-family: var(--font-accent);
  color: var(--color-primary);
  float: left;
  margin: 0 0.1em -0.25em 0;
}
.content.content-style-drop-caps > p:first-of-type + * {
  clear: left;
}
.content.content-style-small {
  font-size: 0.75rem;
  line-height: 1.7333333333;
}
@media only screen and (min-width: 768px) {
  .content.content-style-small {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .content.content-style-small {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}
@media only screen and (min-width: 1800px) {
  .content.content-style-small {
    font-size: 1rem;
  }
}

/* ================================================================================
* Supported WP Core Classes/ Styles
================================================================================ */
/* Wordpress Core Classes
--------------------------------------------------------------- */
/* Align Classes */
*.alignleft,
*.alignright,
*.aligncenter,
*.alignnone {
  margin-bottom: 1.75em;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 1200px) {
  *.alignleft {
    display: inline;
    float: left;
    clear: right;
    margin-right: 1.75em;
  }
  *.alignright {
    display: inline;
    float: right;
    clear: right;
    margin-left: 1.75em;
  }
  *.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* WP Captions */
.wp-caption {
  background: var(--color-light);
  border: 1px solid var(--color-light-alt);
  max-width: 100%;
  padding: 1.75em;
  text-align: center;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 0.75em;
  line-height: 1.25;
  margin: 0;
}

/* Screen reader */
.screen-reader-text:focus, *:focus-within > .screen-reader-text {
  background-color: var(--color-light-alt);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--color-neutral);
  position: fixed;
  display: block;
  font-size: 1em;
  height: auto;
  left: 0.25rem;
  line-height: normal;
  padding: 1rem 1.5rem;
  text-decoration: none;
  top: 0.25rem;
  width: auto;
  z-index: 9999999;
}

/* ================================================================================
* Global Helpers CSS - These styles are critical to the build and its template parts. They don't usually need edits and will work as is
================================================================================ */
/* Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/helper.md

Note: Styles already prebuilt in this section must not be omitted
--------------------------------------------------------------- */
/* Clearfix stuff
--------------------------------------------------------------- */
.clearfix::after {
  content: "";
  font-size: 0;
  visibility: hidden;
  height: 0;
  clear: both;
  display: table;
  width: 100%;
  flex: 0 0 auto;
}

/* hide element while being ADA and SEO friendly
--------------------------------------------------------------- */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

/* WEBP Support
--------------------------------------------------------------- */
.no-webp *.instance-webp,
.webp *.instance-not-webp {
  display: none !important;
}

/* emulate background cover on image tags
--------------------------------------------------------------- */

.cover {
  /* containing element */
}
.cover {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  overflow: clip;
  display: block;
  max-width: 100%;
  width: 100%;
  background-color: var(--color-light-alt);
}
.cover.cover-constricted {
  /* constrict element. all children will have to be absolute for this element to maintain its size */
}
@supports not (aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3)) {
  .cover.cover-constricted::before {
    content: "";
    display: block;
    padding-bottom: calc(100% * var(--cover-aspect-l, 3) / var(--cover-aspect-w, 4));
  }
}
@supports (aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3)) {
  .cover.cover-constricted {
    aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3);
  }
}
.cover > :where(*), .cover-child {
  /* element to emulate background-size cover. Add important in case wistia is somehow in this descendancy */
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block;
}


/* wrap svgs in this helper to control sizing like font glyphs. Sets an svg to align to the bottom left. Set a font size to it to align heights. ie Case Results Icon, Selling Points, Testimonial stars, Social Media, iLawyer Logo, etc.
--------------------------------------------------------------- */
.content-icon {
  height: 1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-overflow: ellipsis;
}
.content-icon :where(img,
picture,
svg,
object) {
  max-height: 100%;
  width: auto;
  height: 100%;
  flex: 1 1;
}

/* like content-icon except friendlier styles for logos to support styleable svg logos while allowing for an img tag for SEO to exist in the same block
--------------------------------------------------------------- */
.logo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.logo-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: auto;
}
.logo-wrapper :where(img,
picture,
svg,
object) {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
}
.logo-wrapper :where(svg,
object):not(:first-child:last-child) {
  pointer-events: none;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.logo-wrapper :where(img,
picture:nth-child(2)) {
  opacity: 0;
}

/* Responsive Global Helpers. Integrated to PHP template parts. Proceed with caution when modifying.
* Note: if the element relies on being set as another display type that's not block (flex, inline-block, inline-flex, etc. ) on  breakpoint/s it is suppose to show, using the *-hide helpers is recommended (eg: instead of xs-only, use sm-hide md-hide lg-hide xl-hide)

* Info to what everything means:
-----------------------------------------------
Tag 	Device		min				max	  
-----------------------------------------------
xs: 	mobile		0				767px
sm: 	tablet		768px	1199px
md: 	laptop		1200px	1399px
lg: 	desktop		1400px	1799px
xl: 	hd			1800px	999999999999+
--------------------------------------------------------------- */
.xl-only,
.lg-only,
.md-only,
.sm-only,
.xs-only,
.home-only,
.internal-only,
.print-only {
  display: none !important;
}

.ilaw-template-home .home-only {
  display: block !important;
}
.ilaw-template-home .home-hide {
  display: none !important;
}

body:not(.ilaw-template-home) .internal-only {
  display: block !important;
}
body:not(.ilaw-template-home) .internal-hide {
  display: none !important;
}

@media only print {
  .print-only {
    display: block !important;
  }
  .print-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1800px) {
  .xl-only {
    display: block !important;
  }
  .xl-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1799px) {
  .lg-only {
    display: block !important;
  }
  .lg-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .md-only {
    display: block !important;
  }
  .md-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .sm-only {
    display: block !important;
  }
  .sm-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .xs-only {
    display: block !important;
  }
  .xs-hide {
    display: none !important;
  }
}
/* Add more helpers as needed */
/* ================================================================================
* Global Critical Components - UI/ Build Elements These need edits based on the design
================================================================================ */
/* Buttons: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md
--------------------------------------------------------------- */
/* Button Skeletons. do not edit 
--------------------------------------------------------------- */
.button {
  border: var(--button-border-width) solid;
  padding-left: calc(var(--button-padding-x) - var(--button-border-width));
  padding-right: calc(var(--button-padding-x) - var(--button-border-width));
  padding-top: calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * var(--button-baseline-offset));
  padding-bottom: calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * (1 - var(--button-baseline-offset)));
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100%;
  background: none;
  text-align: center;
  transition: all 0.125s ease-in-out;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  min-height: var(--button-height);
  background-size: calc(100% + var(--button-border-width) * 2) calc(100% + var(--button-border-width) * 2);
  background-position: calc(var(--button-border-width) * -1) calc(var(--button-border-width) * -1);
  background-clip: border-box;
  background-origin: border-box;
}
.button, .button:hover, .button:focus {
  text-decoration: none;
}
.button .wistia_click_to_play {
  width: unset !important;
  height: unset !important;
}

/* Button Customizations
--------------------------------------------------------------- */
.button {
  /* Vars Reference: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md#css-vars */
  --button-height: 2.375rem;
  --button-border-width: 1px;
  --button-border-radius: 999rem;
  --button-padding-x: 1.75em;
  --button-lines: 1;
  --button-baseline-offset: 0.5;
  --button-line-height: 1.125;
  font-size: 0.6875rem;
  line-height: var(--button-line-height);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--button-border-radius);
}
@media only screen and (min-width: 1200px) {
  .button {
    --button-height: 2.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .button {
    --button-height: 3rem;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .button {
    --button-height: 3rem;
    font-size: 0.875rem;
  }
}

/* Buttons Sizing Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-size-name
--------------------------------------------------------------- */
.button.button-size-micro {
  font-size: 0.625rem;
  --button-height: 2.125rem;
  --button-padding-x: 1em;
}
@media only screen and (min-width: 1400px) {
  .button.button-size-micro {
    font-size: 0.6875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .button.button-size-micro {
    font-size: 0.75rem;
  }
}

/* button w/ a height smaller than the default height */
.button.button-size-small {
  --button-height: 2.5rem;
}
@media only screen and (min-width: 1800px) {
  .button.button-size-small {
    font-size: 0.8125rem;
  }
}

/* button w/ a height larger than the default height */
.button.button-size-large {
  font-size: 0.9375rem;
  line-height: var(--button-line-height);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  --button-height: 3rem;
}
@media only screen and (min-width: 768px) {
  .button.button-size-large {
    --button-height: 3.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .button.button-size-large {
    font-size: 1rem;
    --button-height: 3.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  .button.button-size-large {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  .button.button-size-large {
    font-size: 1.25rem;
    --button-height: 4.25rem;
  }
}

/* button w/ a height larger than the default height */
.button.button-size-chonk {
  font-size: 1.5rem;
  line-height: var(--button-line-height);
  --button-height: calc(1em * var(--button-line-height));
}

.button.button-size-chonkiest {
  font-size: 1.625rem;
  line-height: var(--button-line-height);
  --button-height: calc(1em * var(--button-line-height));
}
@media only screen and (min-width: 1200px) {
  .button.button-size-chonkiest {
    font-size: 2.0625rem;
    --button-height: 3.625rem;
  }
}

/* constricts the width equal to whatever size height is set*/
.button.button-size-equal {
  --button-padding-x: 0;
  width: var(--button-height);
}

/* Buttons Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-palette-name
--------------------------------------------------------------- */
/* 
* Default - most frequent button palette in the comps
* Invert - reuses default's colors but palettes for hover vs not hover are reversed
* Outline - text w/ border influencing text color

Adjust the trinity as needed.
*/
.button.button-palette-default, .button.button-palette-reverse:is(:hover, :focus), .button.button-palette-sp:is(:hover, :focus), .button.button-palette-primary:is(:hover, :focus) {
  background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-alt) 100%);
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-default:is(:hover, :focus), .button.button-palette-outline:is(:hover, :focus), .button.button-palette-reverse {
  background-image: linear-gradient(180deg, var(--scheme-fg) -50%, var(--scheme-fg) 50%);
  background-color: var(--scheme-fg);
  color: var(--scheme-bg);
  border-color: transparent;
}
:where(.scheme-palette-dark,
.scheme-palette-dark-on-hover:is(:hover, :focus-within),
:is(html, body).scheme-palette-light .scheme-palette-invert,
:is(html, body).scheme-palette-dark .scheme-palette-inherit,
.content-palette-dark) .button.button-palette-default:is(:hover, :focus) :is(:where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-default:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-outline:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-reverse), :where(.scheme-palette-dark,
.scheme-palette-dark-on-hover:is(:hover, :focus-within),
:is(html, body).scheme-palette-light .scheme-palette-invert,
:is(html, body).scheme-palette-dark .scheme-palette-inherit,
.content-palette-dark) .button.button-palette-outline:is(:hover, :focus) :is(:where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-default:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-outline:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-reverse), :where(.scheme-palette-dark,
.scheme-palette-dark-on-hover:is(:hover, :focus-within),
:is(html, body).scheme-palette-light .scheme-palette-invert,
:is(html, body).scheme-palette-dark .scheme-palette-inherit,
.content-palette-dark) .button.button-palette-reverse :is(:where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-default:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-outline:is(:hover, :focus), :where(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), :is(html, body).scheme-palette-light .scheme-palette-invert, :is(html, body).scheme-palette-dark .scheme-palette-inherit, .content-palette-dark) .button.button-palette-reverse) {
  background-image: linear-gradient(180deg, var(--scheme-fg) -50%, var(--scheme-fg-contrast) 50%);
}

.button.button-palette-outline {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-fg, inherit);
  border-color: var(--scheme-sb-contrast);
}
.button.button-palette-minimal {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sb, var(--color-primary));
  border-color: transparent;
}
.button.button-palette-sp {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-fg, inherit);
  border-color: var(--scheme-sp);
}
/*
primary palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
.button.button-palette-primary {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: var(--color-primary);
}

/*
secondary palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
.button.button-palette-secondary {
  background-image: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary-alt) 100%);
  background-color: var(--color-secondary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-secondary:is(:hover, :focus) {
  background-image: linear-gradient(180deg, var(--color-secondary) -50%, var(--color-dark-secondary) 50%);
  background-color: var(--color-secondary-alt);
  color: var(--color-light);
  border-color: transparent;
}

/*
accent palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
.button.button-palette-accent {
  background-image: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-alt) 100%);
  background-color: var(--color-accent);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-accent:is(:hover, :focus) {
  background-image: linear-gradient(180deg, var(--color-accent) -50%, var(--color-dark-accent) 50%);
  background-color: var(--color-accent-alt);
  color: var(--color-light);
  border-color: transparent;
}

/* Other Buttons Variations Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-style-name
--------------------------------------------------------------- */
/* buttons with extra decorations or whichever is the most specially styled. overhaul or add more button styles as needed */
.button.button-style-special {
  position: relative;
  z-index: 1;
  --button-style-special-offset: .5em;
}
.button.button-style-special::before, .button.button-style-special::after {
  content: "";
  transition: box-shadow 0.125s ease-in-out;
}
.button.button-style-special::before {
  display: inline-block;
  align-self: center;
  margin-right: 1.5em;
  margin-left: 0.375em;
  margin-bottom: 0.375em;
  width: 1.5rem;
  height: var(--button-border-width);
  background: currentColor;
  box-shadow: 0em -0.375em 0 0, -0.375em 0 0 0, 0.375em 0 0 0, 0em 0.375em 0 0;
}
.button.button-style-special::after {
  top: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  bottom: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  left: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  right: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  border: var(--button-border-width) solid var(--color-accent);
  border-radius: calc(var(--button-border-radius) * 2);
  display: block;
  position: absolute;
  box-shadow: inset 0 0 0 var(--button-style-special-offset) rgba(255, 255, 255, 0.1333333333);
  mix-blend-mode: screen;
}
.button.button-style-special:is(:hover, :focus)::before {
  box-shadow: 0.375em -0.375em 0 0, -0.75em 0 0 0, -0.75em 0 0 0, 0.375em 0.375em 0 0;
}
.button.button-style-special:is(:hover, :focus)::after {
  border-color: var(--color-primary);
}

/* link style button. Usually the maps link or read more text for blog posts */
.button.button-style-link {
  --button-border-width: 2px;
  border-radius: 0;
  padding: 0 0 0.75em;
  border-width: 0 0 var(--button-border-width);
  background: none;
  color: inherit;
  border-color: var(--scheme-sp-contrast);
  font-size: 0.625rem;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .button.button-style-link {
    font-size: 0.9375rem;
  }
  .button.button-style-link.button-size-small {
    font-size: 0.75rem;
  }
}
.button.button-style-link:is(:hover, :focus) {
  background: none;
  color: inherit;
  border-color: var(--scheme-sp-contrast);
}

/* undo background gradients in favor for the flat background color for button-palette. will only work if backgrounds are setup with proper fallbacks (background-gradient with a background-color fallback) */
.button.button-style-flat, .button.button-style-flat:is(:hover, :focus) {
  background-image: none;
}

/* remove radius */
.button.button-style-no-radius {
  --button-border-radius: 0;
}

/* button styles that have thicker borders than usual */
.button.button-style-thick-border {
  --button-border-width: 4px;
}

/* button styles that have thicker borders than usual */
.button.button-style-thin-border {
  --button-border-width: 1px;
}

/* button styles that have thicker borders than usual */
.button.button-style-no-border {
  --button-border-width: 0px;
}

/* diamond buttons. best if paired with .button-size-equal */
@supports ((-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0)) or (clip-path: polygon(0 0, 0 0, 0 0, 0 0))) {
  .button.button-style-diamond {
    overflow: hidden;
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }
}

/* Misc Button stuff. Add as needed
--------------------------------------------------------------- */
/* little arrow indicator for slider arrows: .button.button-size-equal.button-palette-default > i.button-slider-glyph */
.button-slider-glyph:empty::after {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  /* slider glyph border arrow styles */
  content: "";
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-left: -0.375em;
}

/* Container: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md
--------------------------------------------------------------- */
/* Container Skeletons. do not edit 
--------------------------------------------------------------- */
.container {
  max-width: 100%;
  width: calc(100% - (var(--container-gutter) - var(--container-padding)) * 2);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  flex: 0 0 auto;
}

/* Container Customizations
--------------------------------------------------------------- */
.container {
  /* Vars Reference: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#css-vars */
  --container-padding: 30px;
  --container-gutter: var(--container-padding);
}
@media only screen and (min-width: 1200px) {
  .container {
    --container-padding: 50px;
  }
}
/*
foott		30		90		100		130		290
footb		30		30		50		
h1					60		90		105		135
h2					90		225		260		505
h4			48		88		112/98	150/130	260/195
h5					50		132		150		345
bio1				90		70		90		150
bio2				120		155		180		284
pa					60		70		95		205
def			30		90		75		100		192
h3/vid?				60		80		115		150 -
contact,team		90		70		95		180 - wide
h6/a/case			90		100		115		250 - COMPACT
test

*/
/* Custom Container Size Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-size-name
--------------------------------------------------------------- */
/* repeating/ internal page container sizing. sometimes designers will use the same gutter width for internals and or gridded template. this can be used so you dont have to copy paste identical styles to different selectos like 10 times */
@media only screen and (min-width: 768px) {
  .container.container-size-default {
    --container-gutter: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-default {
    --container-gutter: 75px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-default {
    --container-gutter: 100px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-default {
    --container-gutter: 192px;
  }
}

/* Reduces horizontal padding */
@media only screen and (min-width: 768px) {
  .container.container-size-wide {
    --container-gutter: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-wide {
    --container-gutter: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-wide {
    --container-gutter: 95px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-wide {
    --container-gutter: 175px;
  }
}

/* Reduces horizontal padding for xs only */
@media only screen and (max-width: 767px) {
  .container.container-size-wide-xs {
    --container-padding: 15px;
    --container-gutter: var(--container-padding);
  }
}

/* Reduces horizontal padding for sm only */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container.container-size-wide-sm {
    --container-padding: 30px;
    --container-gutter: var(--container-padding);
  }
}

@media only screen and (min-width: 768px) {
  .container.container-size-compact {
    --container-gutter: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-compact {
    --container-gutter: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-compact {
    --container-gutter: 115px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-compact {
    --container-gutter: 250px;
  }
}

@media only screen and (min-width: 1200px) {
  .container.container-size-awards {
    --container-gutter: 110px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-awards {
    --container-gutter: 115px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-awards {
    --container-gutter: 140px;
  }
}

/* Other Container Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-style-name
--------------------------------------------------------------- */
/* constrict container to how wide it is in the deisgn comps */
@media only screen and (min-width: 768px) {
  .container.container-style-maxed {
    max-width: calc(var(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

/* constrict container to how wide it is in the deisgn comps for xs only */
@media only screen and (max-width: 767px) {
  .container.container-style-maxed-xs {
    max-width: calc(var(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

/* constrict container to how wide it is in the deisgn comps for sm only */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container.container-style-maxed-sm {
    max-width: calc(var(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

/* Columns: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md
--------------------------------------------------------------- */
/* Column Skeletons. do not edit 
--------------------------------------------------------------- */
.columns {
  /* Vars Reference: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md#css-vars */
  --columns-gap-x: 0px;
  --columns-gap-y: 0rem;
  --columns-number: 1;
  max-width: none;
  width: auto;
  min-width: 0;
}
.columns, .columns > * {
  min-width: 0;
}
.columns.columns-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
}
.columns.columns-flex > * {
  width: calc(100% * 1 / var(--columns-number) - var(--columns-gap-x));
  flex: 0 0 auto;
}
.columns.columns-grid {
  display: grid;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  grid-template-columns: repeat(var(--columns-number), 1fr);
}
.columns.columns-grid > * {
  width: 100%;
  margin: 0 auto;
}
.columns.columns-masonry {
  -moz-column-count: var(--columns-number);
       column-count: var(--columns-number);
  -webkit-column-count: var(--columns-number);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  -webkit-column-gap: var(--columns-gap-x);
}
.columns.columns-masonry > * {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.columns.columns-masonry > *:nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}

/* Graphic/ design related styles or decoration styles here. Essentially, the fancy stuff enhances the gucciness of the site
--------------------------------------------------------------- */
/* Fancy Borders + HR: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-border-css-vars
--------------------------------------------------------------- */
hr,
.fancy-border {
  clear: both;
  outline: none;
  border: none;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.fancy-border {
  --fancy-border-margin-y: 1.5rem;
  --fancy-border-margin-r: auto;
  --fancy-border-margin-l: auto;
  --fancy-border-height: 3px;
  --fancy-border-width: 100%;
}
hr, .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 3px);
  background-color: currentColor;
  width: var(--fancy-border-width, 100%);
  margin-left: var(--fancy-border-margin-l);
  margin-right: var(--fancy-border-margin-r);
}

.fancy-border.fancy-border-before:not(hr)::before, .fancy-border.fancy-border-after:not(hr)::after {
  content: "";
}

hr,
.fancy-border-after::after,
.fancy-border-before::before {
  display: block;
  transition: all 0.375s ease-in-out;
}

.fancy-border.fancy-border-after::after {
  order: 99;
}
.fancy-border.fancy-border-before::before {
  order: -99;
}
hr.fancy-border-after, .fancy-border.fancy-border-after::after {
  margin-top: var(--fancy-border-margin-y, 1.875rem);
}

hr.fancy-border-before, .fancy-border.fancy-border-before::before {
  margin-bottom: var(--fancy-border-margin-y, 1.875rem);
}

hr.fancy-border-palette-primary, .fancy-border-palette-primary.fancy-border-before::before, .fancy-border-palette-primary.fancy-border-after::after {
  background-color: var(--color-primary);
  background-image: linear-gradient(90deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
}

hr.fancy-border-palette-sp, .fancy-border-palette-sp.fancy-border-before::before, .fancy-border-palette-sp.fancy-border-after::after {
  background: var(--scheme-sp);
}

hr.fancy-border-palette-sp-contrast, .fancy-border-palette-sp-contrast.fancy-border-before::before, .fancy-border-palette-sp-contrast.fancy-border-after::after {
  background: var(--scheme-sp-contrast);
}

hr.fancy-border-palette-sb, .fancy-border-palette-sb.fancy-border-before::before, .fancy-border-palette-sb.fancy-border-after::after {
  background: var(--scheme-sb);
}

hr.fancy-border-palette-sb-contrast, .fancy-border-palette-sb-contrast.fancy-border-before::before, .fancy-border-palette-sb-contrast.fancy-border-after::after {
  background: var(--scheme-sb-contrast);
}

hr.fancy-border-palette-secondary, .fancy-border-palette-secondary.fancy-border-before::before, .fancy-border-palette-secondary.fancy-border-after::after {
  background-color: var(--color-secondary);
  background-image: linear-gradient(90deg, var(--color-secondary-gradient-start) 0%, var(--color-secondary-gradient-end) 100%);
}

hr.fancy-border-palette-accent, .fancy-border-palette-accent.fancy-border-before::before, .fancy-border-palette-accent.fancy-border-after::after {
  background-color: var(--color-accent);
  background-image: linear-gradient(90deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
}

hr.fancy-border-palette-neutral, .fancy-border-palette-neutral.fancy-border-before::before, .fancy-border-palette-neutral.fancy-border-after::after {
  background-color: var(--color-neutral);
}

hr.fancy-border-palette-sp-contrast, .fancy-border-palette-sp-contrast.fancy-border-before::before, .fancy-border-palette-sp-contrast.fancy-border-after::after {
  background: var(--scheme-sp-contrast);
}

hr.fancy-border-style-thin, .fancy-border-style-thin.fancy-border-before::before, .fancy-border-style-thin.fancy-border-after::after {
  --fancy-border-height: 2px;
}

hr.fancy-border-style-flat, .fancy-border-style-flat.fancy-border-before::before, .fancy-border-style-flat.fancy-border-after::after {
  background-image: none !important;
}

/* Animated Fancy Border: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-border-animated
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  hr:is(hr, .fancy-border).fancy-border-animated, :is(hr, .fancy-border).fancy-border-animated.fancy-border-before::before, :is(hr, .fancy-border).fancy-border-animated.fancy-border-after::after {
    transition: width 1.5s ease-in-out;
  }
  :is(hr, .fancy-border).fancy-border-animated:not(.visible) {
    --fancy-border-width: 0%;
  }
}

/* Fancy Icons: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-icon
--------------------------------------------------------------- */
.fancy-icon-menu {
  position: relative;
  --fancy-icon-menu-width: 2rem;
  --fancy-icon-menu-height: 1rem;
  --fancy-icon-menu-bar-height: 2px;
  --fancy-icon-menu-bar-top-width: 100%;
  --fancy-icon-menu-bar-center-width: 100%;
  --fancy-icon-menu-bar-bottom-width: 100%;
  width: var(--fancy-icon-menu-width);
  height: var(--fancy-icon-menu-height);
}
.fancy-icon-menu span {
  position: absolute;
  transform-origin: center center;
  background: currentColor;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--fancy-icon-menu-bar-height);
  width: 100%;
  margin: auto;
  transition: all 0.375s ease-in-out;
}
.fancy-icon-menu span:first-child {
  bottom: auto;
  width: var(--fancy-icon-menu-bar-top-width);
}
.fancy-icon-menu span:last-child {
  top: auto;
  width: var(--fancy-icon-menu-bar-bottom-width);
}
.fancy-icon-menu span:nth-child(2), .fancy-icon-menu span:nth-child(3) {
  width: var(--fancy-icon-menu-bar-center-width);
}
.open .fancy-icon-menu span:nth-child(2) {
  transform: rotateZ(45deg);
}
.open .fancy-icon-menu span:nth-child(3) {
  transform: rotateZ(-45deg);
}
.open .fancy-icon-menu span:nth-child(2), .open .fancy-icon-menu span:nth-child(3) {
  width: 100%;
}
.open .fancy-icon-menu span:first-child, .open .fancy-icon-menu span:last-child {
  width: 0;
}
/* Fancy Text Animation by Mr. Garrett but Sam added tweaks
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .fancy-letters {
    /* Insert Mr Garrett's code here */
    --fancy-letters-factor: 0;
    --fancy-letters-factor-word: 0;
    --fancy-letters-factor-char: 0;
    --fancy-letters-delay: .02s;
    --fancy-letters-duration: 1.5s;
  }
  .fancy-letters.content {
    --fancy-letters-delay: .5s;
    --fancy-letters-factor: 1;
    transform: skewY(0deg) skewX(-4deg) rotate(-2deg) translateY(6rem);
  }
  .fancy-letters, .fancy-letters-word, .fancy-letters-char {
    transition-timing-function: 0.5, 0, 0, 1;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    padding-bottom: 0.5em;
    margin-bottom: -0.5em;
    opacity: 0;
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 0.25s;
  }
  .fancy-letters {
    transform: skewY(0deg) skewX(-4deg) rotate(-2deg) translateY(50%);
  }
  .fancy-letters-word {
    transform: skewY(-10deg) skewX(0deg) rotate(0deg) translateY(100%);
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .fancy-letters-char {
    transform: skewY(10deg) skewX(0deg) rotate(10deg) translateY(100%);
  }
  .fancy-letters.visible,
  .fancy-letters.visible .fancy-letters-word,
  .fancy-letters.visible .fancy-letters-char, .visible .fancy-letters,
  .visible .fancy-letters .fancy-letters-word,
  .visible .fancy-letters .fancy-letters-char {
    transition-property: transform, opacity;
    transition-duration: var(--fancy-letters-duration);
    transform: skewY(0deg) skewX(0deg) rotate(0deg) translateY(0%);
    opacity: 1;
  }
  .fancy-letters.visible, .visible .fancy-letters {
    transition-delay: calc(var(--fancy-letters-delay) * var(--fancy-letters-factor));
    transform-origin: top left;
  }
  .fancy-letters.visible .fancy-letters-word, .visible .fancy-letters .fancy-letters-word {
    transition-delay: calc(var(--fancy-letters-delay) * 1.5 * var(--fancy-letters-factor-word));
    transform-origin: bottom right;
  }
  .fancy-letters.visible .fancy-letters-char, .visible .fancy-letters .fancy-letters-char {
    transition-delay: calc(var(--fancy-letters-delay) * 2.5 * var(--fancy-letters-factor-char));
    transform-origin: center center;
  }
}

/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
.fancy-underlay {
  /* add any graphic elements that have no available svgs/ images as needed */
  --fancy-underlay-offset: 20px;
  --fancy-underlay-opacity: .25;
  --fancy-underlay-animated-offset: calc(var(--fancy-underlay-offset) * .75);
  --fancy-underlay-animated-factor-x: 0;
  --fancy-underlay-animated-factor-y: 0;
  --fancy-underlay-color: var(--scheme-sp);
  --fancy-underlay-transform: rotate(0deg);
  max-width: 100%;
  position: relative;
  z-index: 1;
  transform: var(--fancy-underlay-animated-transform, translate(0, 0));
}
.fancy-underlay img {
  width: 100%;
}
.fancy-underlay.fancy-underlay-contrast:before, .fancy-underlay:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  transform: var(--fancy-underlay-transform) var(--fancy-underlay-animated-transform-pseudo, translate(0, 0));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1621.38px' height='701px' viewBox='0 0 1621.38 701' enable-background='new 0 0 1621.38 701' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M1621.38 696.32v-4.55c-2.67 3.1-5.36 6.17-8.08 9.23h3.99C1618.66 699.44 1620.03 697.89 1621.38 696.32z'/%3E%3Cpath d='M1621.38 689.01v-4.5c-4.72 5.56-9.52 11.05-14.39 16.49h4.01C1614.5 697.04 1617.96 693.04 1621.38 689.01z'/%3E%3Cpath d='M1621.38 681.72v-4.49c-6.73 8.02-13.64 15.95-20.73 23.77h4.03C1610.37 694.64 1615.94 688.21 1621.38 681.72z'/%3E%3Cpath d='M1621.38 674.06v-4.54c-8.61 10.71-17.49 21.21-26.62 31.49h3.99C1606.49 692.18 1614.03 683.2 1621.38 674.06z'/%3E%3Cpath d='M1621.38 666.37v-4.55c-10.56 13.39-21.54 26.46-32.93 39.18h4.01C1602.42 689.72 1612.07 678.17 1621.38 666.37z'/%3E%3Cpath d='M1621.38 658.82v-4.53c-12.4 15.93-25.49 31.51-39.27 46.71h4.03C1598.45 687.23 1610.2 673.17 1621.38 658.82z'/%3E%3Cpath d='M1621.38 650.59v-4.54c-14.35 18.95-29.5 37.29-45.42 54.95h4.02C1594.43 684.73 1608.25 667.92 1621.38 650.59z'/%3E%3Cpath d='M1621.38 642.47v-4.5c-16.19 21.84-33.47 42.87-51.77 63.04h4.03C1590.45 682.21 1606.38 662.68 1621.38 642.47z'/%3E%3Cpath d='M1621.38 634.58v-4.5c-17.81 24.44-37.2 48.11-58.16 70.91h4.06C1586.68 679.59 1604.72 657.42 1621.38 634.58z'/%3E%3Cpath d='M1617.66 630.94c1.25-1.73 2.48-3.46 3.72-5.2v-4.47c-1.94 2.72-3.89 5.43-5.86 8.12c-18.24 24.94-37.85 48.85-58.74 71.61h4.05C1581.02 678.68 1600 655.3 1617.66 630.94z'/%3E%3Cpath d='M1611.42 631.05c3.37-4.63 6.69-9.29 9.96-13.99v-4.5c-21.63 31.08-45.43 60.65-71.08 88.44h4.06C1574.64 678.73 1593.69 655.39 1611.42 631.05z'/%3E%3Cpath d='M1621.38 608.15v-4.4c-23.34 34.35-49.36 66.88-77.6 97.25h4.08C1574.59 671.84 1599.16 640.81 1621.38 608.15z'/%3E%3Cpath d='M1621.38 598.53v-4.48c-25.09 37.93-53.34 73.71-84.47 106.95h4.09C1570.51 669.03 1597.39 634.76 1621.38 598.53z'/%3E%3Cpath d='M1577.4 650.32c15.59-19.82 30.29-40.37 43.98-61.58v-4.46c-14.31 22.2-29.73 43.68-46.13 64.34c-14.31 18.11-29.48 35.54-45.28 52.38h4.1C1549.18 684.68 1563.69 667.82 1577.4 650.32z'/%3E%3Cpath d='M1555.58 668.86c8.93-10.62 17.58-21.46 25.95-32.53c14.11-18.63 27.42-37.89 39.85-57.7v-4.46c-13.05 20.82-27.07 41.03-41.97 60.55c-8.42 10.97-17.05 21.77-25.99 32.32c-9.83 11.6-19.97 22.91-30.43 33.96h4.11C1536.85 690.53 1546.36 679.82 1555.58 668.86z'/%3E%3Cpath d='M1621.38 568.06v-4.46c-30.1 49.45-65.45 95.51-105.44 137.4h4.13C1558.35 660.3 1592.3 615.74 1621.38 568.06z'/%3E%3Cpath d='M1541.67 669.01c29.65-34.87 56.47-72.28 79.72-111.75v-4.5c-23.78 40.49-51.34 78.79-81.87 114.41c-9.91 11.56-20.14 22.83-30.68 33.83h4.13C1522.8 690.58 1532.37 679.93 1541.67 669.01z'/%3E%3Cpath d='M1534.62 669.09c32.61-38.19 61.9-79.38 86.76-123.06v-4.5c-25.36 44.71-55.4 86.79-88.91 125.72c-9.95 11.54-20.22 22.78-30.8 33.76h4.14C1515.69 690.6 1525.3 679.98 1534.62 669.09z'/%3E%3Cpath d='M1610.95 552.7c3.58-6.06 7.05-12.18 10.43-18.34v-4.93c-33.57 62.12-76.3 119.81-126.93 171.56h4.14C1541.5 656.03 1579.57 606.37 1610.95 552.7z'/%3E%3Cpath d='M1519.94 669.19c40.2-46 74.17-95.29 101.45-147.44v-4.43c-20.64 39.73-45.13 77.67-73.28 113.32c-19.14 24.56-39.62 48.04-61.33 70.36h4.16C1500.85 690.64 1510.53 680.04 1519.94 669.19z'/%3E%3Cpath d='M1512.34 669.61c42.34-47.57 78.04-101.09 106.93-157.8c0.72-1.42 1.41-2.85 2.12-4.28v-4.6c-1.31 2.66-2.63 5.31-3.97 7.95c-29.01 56.41-64.8 109.61-107.18 156.85c-10.23 11.34-20.81 22.38-31.51 33.29h4.19C1492.9 690.71 1502.77 680.3 1512.34 669.61z'/%3E%3Cpath d='M1535.12 632.92c34.37-44.02 63.26-91.43 86.26-141.3v-4.75c-23.42 51.07-53.01 99.55-88.35 144.43c-19.3 24.47-40.07 47.74-62.18 69.7h4.23C1496.41 679.5 1516.47 656.77 1535.12 632.92z'/%3E%3Cpath d='M1496.43 669.88c9.34-10.33 18.45-21.01 27.16-31.89c2.41-2.95 8.4-11.14 10.78-14.36c2.63-3.54 8.2-11 10.68-14.41c30.74-42.38 56.19-87.16 76.34-133.64v-4.81c-20.54 47.72-46.67 93.63-78.38 136.97c-2.52 3.47-8.13 10.85-10.71 14.34c-2.28 3-8.37 11.38-10.79 14.25c-8.71 10.8-17.83 21.41-27.17 31.66c-10.3 11.31-20.92 22.31-31.86 33.02h4.26C1476.88 690.88 1486.79 680.51 1496.43 669.88z'/%3E%3Cpath d='M1519.46 633.28c42.13-53.34 76.43-112.36 101.92-175.27v-4.88c-25.83 64.19-60.85 124.32-103.99 178.51c-19.46 24.42-40.45 47.58-62.82 69.36h4.27C1480.4 679.68 1500.66 657.07 1519.46 633.28z'/%3E%3Cpath d='M1553.81 574.97c27.9-43 50.39-87.9 67.58-134.12v-5.09c-17.52 47.59-40.67 93.77-69.55 137.92c-21.77 33.35-46.18 64.9-73 94.35c-10.32 11.31-21 22.29-32 32.96h4.29C1489.84 662.86 1524.29 620.61 1553.81 574.97z'/%3E%3Cpath d='M1473.19 670c65.5-71.85 117-156.87 148.2-249.01v-5.26c-31.28 93.54-83.59 179.78-150.29 252.36c-10.37 11.29-21.08 22.26-32.12 32.91h4.29C1453.51 690.94 1463.5 680.62 1473.19 670z'/%3E%3Cpath d='M1621.38 23.44v-0.19c-2.03-7.59-4.16-15.16-6.4-22.69C1617.24 8.2 1619.36 15.82 1621.38 23.44z'/%3E%3Cpath d='M1449 687.37c33.59-34.34 63.76-71.88 90.07-112.07c35.71-54.58 63.69-114.34 82.31-176.86v-5.26c-17.09 58.42-42.86 115.49-77.78 170.79c-27.87 43.74-60.28 84.42-96.69 121.35c-5.21 5.3-10.51 10.52-15.87 15.68h4.3C1439.94 696.5 1444.51 691.97 1449 687.37z'/%3E%3Cpath d='M1605.81 0.57c5.84 20 11.09 40.36 15.58 60.86v-1.14C1616.88 40.17 1611.66 20.23 1605.81 0.57L1605.81 0.57z'/%3E%3Cpath d='M1544.42 555.51c2.29-3.8 7.06-11.9 9.21-15.49c4.52-8.1 10.18-18.14 14.33-26.39c4.24-7.93 8.02-16.15 11.97-24.23l1.23-2.74c1.25-2.75 3.67-8.22 4.91-10.96c1.56-3.26 5.5-13.04 7-16.6c1.3-3.04 3.23-8 4.4-11.17c2.22-5.61 6.3-16.86 8.2-22.57c1.2-3.44 2.78-7.98 3.8-11.39c1.36-4.3 4.17-13.08 5.29-17.22c1.19-4.22 2.89-10.26 4.07-14.45c0.87-3.38 1.72-6.78 2.56-10.19v-6.21c-1.06 4.39-2.15 8.77-3.29 13.11c-0.33 1.36-1.15 4.42-1.56 5.78c-1.55 5.26-3.36 12.03-5 17.26l-3.64 11.41l-0.91 2.85c-3.13 9.41-7.54 21.73-11.19 30.97c-2.43 6.62-6.35 15.64-9.06 22.17c-2.63 6.15-5.87 13.01-8.6 19.11c-5.17 10.74-10.56 21.54-16.2 32.06c-2.54 4.76-7.59 13.59-10.21 18.29c-34.87 59.89-79.03 114.14-128.98 162.07h4.31C1471.77 657.4 1511.77 608.8 1544.42 555.51z'/%3E%3Cpath d='M1539.27 550.83c7.2-11.98 14.24-24.26 20.61-36.68c4.32-8.11 9.33-18.6 13.31-26.95c2.25-5 6.31-14.14 8.51-19.24c4.09-10.12 8.42-20.51 12.03-30.79c12.18-33.78 21.43-68.49 27.66-103.74v-7.73c-6.36 37.71-16.15 74.82-29.3 110.87c-3.64 10.24-8 20.59-12.11 30.65c-2.22 5.03-6.27 14.16-8.56 19.15c-9.34 19.89-19.68 39.3-30.97 58.16C1506 602.31 1462.69 654.52 1414.16 701h4.31C1464.65 656.11 1505.95 606 1539.27 550.83z'/%3E%3Cpath d='M1621.38 111.8v-2.82c-6.01-36.56-14.63-72.71-25.33-108.1C1606.89 37.2 1615.52 74.29 1621.38 111.8z'/%3E%3Cpath d='M1595.96 0.57c0.03 0.1 0.06 0.2 0.09 0.31C1596.02 0.77 1595.99 0.67 1595.96 0.57L1595.96 0.57z'/%3E%3Cpath d='M1479.39 624.72c4.66-5.66 11.08-14.33 15.61-20.23l0.88-1.22c0.99-1.36 4.21-5.85 5.27-7.32c6.76-9.33 14.11-20.12 20.28-29.83c1.24-1.98 3.7-5.76 4.86-7.6c0.92-1.3 6.77-11.23 7.78-12.86c52.82-88.45 82.64-188.32 87.31-290.56v-56.86c-0.14-3.06-0.29-6.13-0.47-9.19c-3.56-63.94-16.26-127.27-34.83-188.48l0 0c18.32 61.25 30.77 124.6 34.08 188.52c6.97 122.6-22.57 244.51-84.89 350.32c-2.85 4.69-7.97 13.26-10.91 17.91c-3.7 5.64-7.62 12.01-11.46 17.57l-6.78 9.89l-1.69 2.47c-3.55 4.93-7.87 10.85-11.44 15.76c-2.58 3.32-9.19 12.03-11.87 15.44c-23.26 29.24-48.52 56.82-75.6 82.56h4.33C1434.64 677.09 1457.88 651.62 1479.39 624.72z'/%3E%3Cpath d='M1406.16 696.09c6.64-6.43 14.77-14.66 21.14-21.39c3.09-3.33 7.25-7.68 10.29-10.97c0.96-1.1 8.81-9.83 10.03-11.21c2.21-2.38 5.69-6.58 7.86-9.11c2.47-2.97 5.44-6.28 7.76-9.19c15.03-18.23 29.96-38.22 43.12-57.84c1.83-2.68 4.74-7.29 6.56-10.08c4.46-6.73 10-16.04 14.24-23.02c3.27-5.85 7.19-12.44 10.35-18.33c1.22-2.23 6-11.34 7.05-13.28c2.44-4.7 6.93-13.99 9.35-18.86c1.75-3.78 5.82-12.8 7.49-16.41c1.52-3.57 5.43-12.89 7-16.63c20.29-50.25 33.83-102.96 40.26-156.76c6.59-55.69 5.28-112.25-2.38-167.77c-6.14-45.3-16.7-90.17-29.87-133.92c13 43.78 23.38 88.68 29.33 133.99c7.43 55.48 8.52 111.96 1.73 167.55c-7.37 59.62-23.48 117.84-47.81 172.77c-1.66 3.65-5.83 12.62-7.53 16.34c-2.41 4.73-6.91 14.09-9.39 18.76c-1.31 2.49-5.76 10.74-7.08 13.21c-2.67 4.95-6.13 10.72-8.9 15.63c-2.26 4.02-6.96 11.47-9.32 15.38c-3.82 6.29-8.21 12.69-12.18 18.89c-4.19 5.98-10.24 15.01-14.63 20.85c-6.4 8.84-14.95 20.11-21.85 28.56c-6.35 7.93-14.53 17.57-21.21 25.24c-2.74 3.07-9.32 10.32-12.04 13.35c-3.24 3.48-7.1 7.49-10.29 10.89c-8.76 9.25-19.13 19.34-28.46 28.28h4.32L1406.16 696.09z'/%3E%3Cpath d='M1576.19 0.57c0.08 0.25 0.15 0.5 0.22 0.75C1576.34 1.06 1576.27 0.81 1576.19 0.57L1576.19 0.57z'/%3E%3Cpath d='M1397.35 696.1c5.77-5.51 13.51-13.39 19.12-19.17c8.97-9.43 17.89-19.02 26.4-28.86c3.64-4.32 8.17-9.41 11.69-13.76c17.93-21.62 34.56-44.28 49.8-67.87c3.65-5.49 9.2-14.72 12.72-20.43c2.13-3.72 6.99-12.11 9.01-15.64c2.27-4.11 6.99-12.97 9.28-17.21c0.38-0.76 1.62-3.22 2.02-4.03c1.98-3.98 4.78-9.5 6.71-13.46c1.68-3.64 5.9-12.74 7.58-16.38c1.7-3.94 4.2-9.86 5.91-13.83c3.12-7.25 6.03-14.98 8.84-22.38c15.96-43.31 26.93-88.3 32.68-134.09c7.54-60.14 5.52-121.34-3.45-181.21c-6.51-43.02-16.82-85.57-29.35-127.21l0-0.01c12.35 41.67 22.5 84.25 28.84 127.28c8.73 59.83 10.51 120.96 2.74 180.98c-6.16 47.65-18 94.39-35.27 139.23c-3.47 9.22-7.59 18.64-11.5 27.69c-0.56 1.34-1.82 4.15-2.46 5.47c-0.75 1.54-5.66 12.13-6.35 13.58c-2.44 4.96-5.62 11.12-8.09 16.07c-2.58 4.9-7.32 13.63-10 18.45c-2.12 3.68-6.91 11.87-9.04 15.55c-1.75 2.77-7.69 12.47-9.47 15.3c-6.8 10.47-14.6 22.12-21.91 32.23c-2.55 3.49-6.6 8.92-8.9 12.06c-3.4 4.59-7.55 9.7-11.01 14.22c-3.35 4.32-8.11 9.91-11.36 13.94l-1.9 2.32l-1.96 2.27c-10.32 12.09-21.14 24.12-32.18 35.55c-8.78 9.24-19.19 19.32-28.54 28.24h4.33L1397.35 696.1z'/%3E%3Cpath d='M1392.54 692.15c6.7-6.66 14.64-14.65 21.06-21.51c5.53-5.75 12.94-13.98 18.29-19.99c8.24-9.48 17.3-20.13 25.07-30.05c2.77-3.55 6.52-8.36 9.24-11.88c0.94-1.25 7.8-10.58 8.94-12.11c3.25-4.37 7.23-10.29 10.4-14.77c78.74-114.65 116.13-244.81 107.9-383.78c-1.83-31.02-5.59-61.9-11.25-92.46c-6.43-35.42-15.56-70.54-25.77-105.04l-0.01 0.01c10.07 34.52 19.07 69.68 25.35 105.11c5.54 30.55 9.17 61.42 10.88 92.43c7.66 138.69-30.09 268.33-109.07 382.39c-3.1 4.33-7.21 10.39-10.42 14.67l-7.16 9.63l-1.79 2.41c-2.82 3.66-6.45 8.2-9.25 11.8c-7.76 9.82-16.85 20.44-25.1 29.84c-5.23 5.82-12.83 14.2-18.3 19.84c-10.16 10.8-21.7 22.02-32.56 32.3h4.35C1386.59 697.87 1390.41 694.17 1392.54 692.15z'/%3E%3Cpath d='M1379.37 696.13c2.24-2.11 6.48-6.23 8.61-8.41c30.02-29.62 57.44-61.76 81.98-96.06c1.75-2.47 5.19-7.38 6.93-9.85c2.11-3.05 7.84-11.76 10.02-15.03c3.29-5.11 7.16-11.41 10.41-16.57c1.98-3.35 7.12-12.11 9.15-15.57c1.26-2.27 3.78-6.89 5.08-9.23c34.57-62.49 57.51-130.74 67.71-201.42c9.46-66.53 7.12-134.46-3.75-200.66c-6.68-41.36-17.07-82.16-28.84-122.33c11.61 40.21 21.84 81.03 28.35 122.41c10.6 66.16 12.68 134.01 2.97 200.4c-10.44 70.44-33.59 138.4-68.3 200.58c-1.23 2.2-3.86 6.96-5.1 9.18c-2.03 3.4-7.17 12.11-9.18 15.48c-3.27 5.11-7.12 11.4-10.44 16.47c-3.73 5.52-9.58 14.46-13.52 19.83c-23.13 32.66-48.88 63.37-77.01 91.83c-7.33 7.37-16.72 16.48-24.52 23.81h4.35L1379.37 696.13z'/%3E%3Cpath d='M1546.55 0.56c0.04 0.15 0.09 0.3 0.13 0.45C1546.63 0.86 1546.59 0.71 1546.55 0.56L1546.55 0.56z'/%3E%3Cpath d='M1378.88 687.73c25.82-25.38 49.75-52.63 71.58-81.52c8.26-10.87 16.86-23.07 24.39-34.46c2.15-3.03 7.66-11.91 9.78-15.22c1.83-2.79 4.54-7.37 6.27-10.3c1.82-3.11 4.41-7.32 6.13-10.39c1.72-3.1 6.47-11.59 8.07-14.49l0.7-1.34l2.78-5.35c22.57-42.71 39.73-88.06 51.08-135.02c20.57-84.08 20.24-172.21 5.92-257.28c-6.92-41.33-17.41-82.14-29.06-122.37h-0.01c10.35 36.41 19.9 73.29 26.52 110.59c10.26 57.24 14.4 115.72 10.19 173.77c-5.64 76.21-26.35 150.54-60.93 218.68c-2.74 5.46-6.23 11.89-9.05 17.31c-2.43 4.26-7.12 12.77-9.62 17.01c-2.22 3.74-5.5 9.14-7.73 12.89c-2.33 3.84-7.28 11.42-9.67 15.22c-3.07 4.69-6.96 10.29-10.08 14.96c-2.66 3.88-7.8 10.89-10.47 14.68c-23.8 32.26-50.17 62.54-78.87 90.54c-4.67 4.71-11.06 10.6-16.09 15.35h4.36C1369.72 696.63 1375.03 691.65 1378.88 687.73z'/%3E%3Cpath d='M1448.41 596.84c134.79-182.73 141.77-384.69 78.61-596.27l0 0c62.22 211.46 54.63 413.03-80.59 594.82c-28.16 38.15-59.92 73.51-94.82 105.61h4.41C1389.98 669.23 1420.92 634.37 1448.41 596.84z'/%3E%3Cpath d='M1516.52 0.56c0.05 0.18 0.1 0.36 0.15 0.54C1516.62 0.93 1516.58 0.75 1516.52 0.56L1516.52 0.56z'/%3E%3Cpath d='M1408.78 635.06c46.66-55.16 84.95-117.74 110.64-185.36c56.9-152 40.25-296.09-2.75-448.6c41.07 148 57.82 288.71 5.23 436.7c-25.72 71.61-65.85 137.73-115.14 195.55c-20.41 23.89-42.3 46.48-65.52 67.64h4.42C1368 680.3 1389.09 658.3 1408.78 635.06z'/%3E%3Cpath d='M1506.25 0.56c0.03 0.12 0.06 0.24 0.1 0.36C1506.32 0.81 1506.29 0.68 1506.25 0.56L1506.25 0.56z'/%3E%3Cpath d='M1398.15 635.54c44.32-51.96 81.24-110.57 106.78-173.99c12.73-31.73 22.5-64.57 29.16-98.1c25.26-124.43 4.32-241.84-27.74-362.52c23.16 88.96 41.79 180.44 37.37 272.82c-0.43 11.43-1.56 24.54-2.7 35.98c-0.56 4.4-1.58 13.73-2.24 17.9c-1.65 11.77-3.69 23.92-6.1 35.55c-6.78 33.4-16.64 66.11-29.46 97.69c-25.69 63.1-62.71 121.36-107.07 172.97c-20.46 23.74-42.39 46.17-65.64 67.18h4.44C1357.31 680.46 1378.43 658.62 1398.15 635.54z'/%3E%3Cpath d='M1496.05 0.57c0.04 0.16 0.08 0.31 0.12 0.47C1496.13 0.88 1496.09 0.72 1496.05 0.57L1496.05 0.57z'/%3E%3Cpath d='M1387.81 635.58c73.74-85.34 125.85-189.32 141.09-301.64c2.55-17.44 4.27-36.35 5.12-53.97c4.6-94.44-14.98-187.84-37.85-278.94c22.49 91.12 41.71 184.54 36.75 278.88c-0.91 17.6-2.71 36.44-5.32 53.84c-15.63 111.89-67.95 215.33-141.79 300.1c-20.62 23.74-42.71 46.16-66.14 67.14h4.47C1346.66 680.49 1367.93 658.66 1387.81 635.58z'/%3E%3Cpath d='M1485.89 0.56c0.06 0.24 0.11 0.48 0.17 0.72C1486.01 1.04 1485.95 0.8 1485.89 0.56L1485.89 0.56z'/%3E%3Cpath d='M1344.34 671.25c93.88-95.02 158.06-209.37 174.98-342.93c1.78-14.1 3.13-29.3 3.91-43.53c4.93-95.91-15.16-190.71-37.17-283.52c21.64 92.83 41.35 187.64 36.05 283.46c-0.83 14.21-2.24 29.34-4.07 43.42c-15.25 116.34-66.11 218-142.88 305.96c-20.73 23.67-42.94 46-66.47 66.88h4.47C1323.82 691.36 1334.22 681.45 1344.34 671.25z'/%3E%3Cpath d='M1333.4 671.41c78.17-77.98 139.43-175.17 164.68-283.38c11.55-49 16.54-99.32 14.85-149.63c-2.3-80.02-19.81-158.91-36.92-236.82c17.24 79.9 34.8 160.84 36.12 242.87c0.92 48.21-4.3 96.34-15.55 143.23c-25.58 107.73-87 204.33-165.19 281.73c-10.96 10.86-22.23 21.39-33.81 31.6h4.5C1312.78 691.41 1323.23 681.56 1333.4 671.41z'/%3E%3Cpath d='M1475.8 0.57c0.07 0.34 0.15 0.67 0.22 1.01C1475.95 1.24 1475.87 0.9 1475.8 0.57L1475.8 0.57z'/%3E%3Cpath d='M1322.34 671.56c84.99-84.04 148.48-188.27 170.32-306.72c7.27-38.59 10.52-77.82 9.71-117.08c-1.66-83.46-19.82-165.75-36.61-247.2l0 0.01c16.46 81.48 34.3 163.8 35.63 247.21c0.62 38.17-2.58 76.31-9.55 113.84c-22.09 119.63-85.38 223.32-171.49 307.93c-11.01 10.82-22.34 21.3-33.98 31.45h4.53C1301.63 691.46 1312.12 681.66 1322.34 671.56z'/%3E%3Cpath d='M1455.76 0.6c0.02 0.08 0.03 0.16 0.05 0.23C1455.79 0.75 1455.78 0.67 1455.76 0.6L1455.76 0.6z'/%3E%3Cpath d='M1311.14 671.72c79.17-77.86 139.35-171.09 165.29-279.85c1-4.52 2.37-10.22 3.32-14.73c1.55-7.68 3.2-16.01 4.44-23.75c20.61-117.73-5.9-237.05-28.38-352.56c25.37 133.98 52.73 254.66 19.12 390.67c-26.27 108.28-86.58 200.92-165.76 278.19c-11.07 10.77-22.45 21.2-34.15 31.3h4.55C1290.34 691.52 1300.88 681.77 1311.14 671.72z'/%3E%3Cpath d='M1299.81 671.88c114.49-109.63 183.19-254.65 180.95-414.46c-0.97-86.71-19.64-171.87-34.95-256.86l0 0c14.97 85 33.31 170.2 33.94 256.87c1.62 159.29-67.37 303.63-181.91 412.42c-11.12 10.73-22.56 21.11-34.31 31.15h4.57C1278.92 691.57 1289.5 681.88 1299.81 671.88z'/%3E%3Cpath d='M1265.68 692.59c13.43-11.97 26.77-24.72 39.31-37.63c9.66-9.99 19.49-20.7 28.53-31.26c59.43-68.49 102.7-151.25 122.45-239.89c29.65-127.09 0.5-257.04-19.7-383.26l0 0.01c19.68 126.15 48.33 256.1 18.23 382.92c-20.02 88.24-63.44 170.54-122.92 238.55c-9.05 10.48-18.88 21.11-28.55 31.03c-12.53 12.8-25.88 25.46-39.3 37.33c-3.69 3.24-8.32 7.25-12.27 10.61h4.6C1259.31 698.18 1262.75 695.19 1265.68 692.59z'/%3E%3Cpath d='M1308.95 638.24c23.29-25.23 44.35-52.42 62.95-81.28c33.87-52.78 58.23-111.08 71.98-172.26c29.2-126.95 0.36-257.58-17.06-384.13l0 0c16.9 126.5 45.24 257.11 15.59 383.8c-13.47 58.95-36.86 115.18-69.17 166.29c-15.03 23.81-31.8 46.47-50.19 67.79c-25.68 29.75-53.75 57.36-83.9 82.56h4.62C1266.75 681.42 1288.52 660.48 1308.95 638.24z'/%3E%3Cpath d='M1297.26 637.96c12.25-13.31 24.08-27.23 35.14-41.55c67.87-87.7 108.27-196.57 111.29-307.58c3.08-96.23-15.11-192.75-26.2-288.03c10.72 95.3 28.52 191.81 25.07 287.99c-3.44 110.64-44.11 219.02-112.08 306.13c-11.07 14.21-22.91 28.04-35.16 41.24c-21.48 23.08-44.43 44.73-68.71 64.83h4.67C1254.55 681.38 1276.6 660.34 1297.26 637.96z'/%3E%3Cpath d='M1417.45 0.56c0.01 0.08 0.02 0.16 0.03 0.24C1417.47 0.72 1417.46 0.64 1417.45 0.56L1417.45 0.56z'/%3E%3Cpath d='M1284.79 638.28c22.06-23.57 42.08-48.97 59.85-75.92c56.99-86.42 87.23-187.73 86.93-291.25c0.43-90.58-14.75-180.58-23.39-270.54l0 0c8.28 89.96 23.1 179.99 22.32 270.52c-0.09 103.2-30.62 204.08-87.76 290.01c-17.8 26.77-37.83 51.99-59.89 75.37c-21.58 22.99-44.64 44.54-69.02 64.52h4.69C1241.9 681.49 1264.04 660.56 1284.79 638.28z'/%3E%3Cpath d='M1398.97 0.57c0.13 1.46 0.26 3 0.39 4.59C1399.23 3.57 1399.1 2.03 1398.97 0.57L1398.97 0.57z'/%3E%3Cpath d='M1272.09 638.6c22.16-23.49 42.24-48.85 60.02-75.81c32.31-48.9 56.22-102.85 70.73-159.64c30.16-116.19 10.8-236.92 0.35-354.46c-1.2-12.5-2.68-29.98-3.83-43.53c1.13 13.64 2.47 31.2 3.65 43.55c9.97 117.44 28.87 238.13-1.7 354.05c-14.68 56.52-38.71 110.19-71.09 158.78c-17.8 26.77-37.9 51.95-60.06 75.25c-21.67 22.9-44.84 44.34-69.32 64.21h4.72C1229.03 681.61 1251.26 660.79 1272.09 638.6z'/%3E%3Cpath d='M1259.18 638.92c43.25-45.39 78.3-97.95 103.57-155.33c26.87-60.93 41.21-127.13 43.07-193.64c3.16-96.64-10.83-193.02-15.96-289.39l0 0c4.75 96.34 18.36 192.77 14.83 289.34c-2.12 66.35-16.66 132.24-43.69 192.91c-25.39 57.04-60.49 109.25-103.74 154.28c-21.78 22.81-45.06 44.15-69.65 63.9h4.75C1215.91 681.73 1238.24 661.01 1259.18 638.92z'/%3E%3Cpath d='M1380.79 0.56c0 0.08 0.01 0.15 0.01 0.23C1380.8 0.72 1380.8 0.64 1380.79 0.56L1380.79 0.56z'/%3E%3Cpath d='M1354.62 472.89c17.71-42.97 29.4-88.17 34.75-134.34c9.03-80.28 1.74-161.15-3.42-241.44c-2.01-31.08-3.78-65.13-5.15-96.31c1.25 31.25 2.89 65.22 4.78 96.34c4.84 80.25 11.81 161.09 2.49 241.26c-5.51 46-17.34 91.02-35.16 133.78c-37.16 91.02-102.03 168.29-178.78 228.83h4.81C1254.48 640.27 1318.14 563.24 1354.62 472.89z'/%3E%3Cpath d='M1368.52 386.68c11.09-51.28 13.07-104.21 12.33-156.52c-1.67-76.49-8.02-152.83-9-229.35c0.68 76.51 6.72 152.88 8.1 229.36c0.54 52.22-1.64 105.05-12.9 156.19c-27.31 127.58-104.45 235.51-206.66 314.64h4.88C1266.02 621.43 1341.9 513.54 1368.52 386.68z'/%3E%3Cpath d='M1371.84 0.56c0 0.08 0 0.16 0 0.24C1371.85 0.73 1371.84 0.65 1371.84 0.56L1371.84 0.56z'/%3E%3Cpath d='M1218.34 639.91c23.22-23.98 44.19-50.05 62.62-77.89c35.11-53.07 60.61-112.64 73.91-174.9c4.77-22.74 8.12-45.75 10.03-68.91c3.48-41.18 3.56-82.76 2.54-124.03c-1.95-64.53-4.49-129.03-4.2-193.6l0 0c-0.54 64.56 1.74 129.1 3.44 193.62c0.85 41.24 0.62 82.78-3.02 123.91c-1.99 23.09-5.42 46.04-10.27 68.7c-13.49 61.99-39.12 121.23-74.31 173.98c-18.46 27.64-39.42 53.51-62.64 77.29c-22.12 22.56-45.76 43.58-70.74 62.93h4.85C1174.45 682.12 1197.1 661.73 1218.34 639.91z'/%3E%3Cpath d='M1168.58 673.67c86.04-74.78 148.53-174.24 172.43-286.15c5.9-27.48 9.35-56.04 11.39-84.07c1.49-19.95 2.24-40.56 2.54-60.55c0.27-15.91 0.23-32.56 0.09-48.48c-0.98-64.62-1.86-129.23-0.3-193.85l0 0c-1.81 64.61-1.18 129.24-0.45 193.86c0.08 15.92 0.05 32.56-0.28 48.45c-0.38 19.97-1.2 40.56-2.77 60.48c-2.15 27.96-5.7 56.44-11.69 83.84c-24.23 111.37-86.84 210.21-172.82 284.35c-11.65 10.21-23.64 20.02-35.95 29.46h4.87C1146.86 692.2 1157.86 683.1 1168.58 673.67z'/%3E%3Cpath d='M1346.3 0.56c-0.01 0.24-0.02 0.48-0.03 0.72C1346.28 1.04 1346.29 0.8 1346.3 0.56L1346.3 0.56z'/%3E%3Cpath d='M1153.06 674.28c23.05-19.88 44.51-41.54 64.16-64.78c58.77-69.75 99.47-155.04 114.17-245.17c2.55-15.68 4.74-32.42 6.2-48.21c2.31-24.08 3.55-48.6 4.26-72.75c1.53-80.7 0.53-161.43 4.41-242.08c-4.19 80.63-3.51 161.37-5.35 242.05c-0.8 24.13-2.13 48.62-4.54 72.66c-1.52 15.75-3.76 32.43-6.38 48.09c-15.01 89.78-55.86 174.56-114.67 243.81c-19.66 23.06-41.1 44.54-64.12 64.24c-11.59 10-23.5 19.61-35.71 28.86h4.92C1131.54 692.4 1142.43 683.5 1153.06 674.28z'/%3E%3Cpath d='M1337.97 0.57c-0.02 0.24-0.03 0.49-0.04 0.73C1337.94 1.05 1337.96 0.81 1337.97 0.57L1337.97 0.57z'/%3E%3Cpath d='M1138.17 674.07c20.07-17.14 38.93-35.65 56.45-55.4c57.86-65.25 99.65-145.06 118-230.44c13.47-63.54 16.04-128.7 17.63-193.43c1.14-63.67 3.71-130.06 7.68-193.5c-4.21 63.38-7.03 129.8-8.43 193.48c-1.84 64.62-4.66 129.77-18.35 193.13c-18.62 84.98-60.53 164.32-118.42 229.09c-17.51 19.59-36.36 37.94-56.41 54.93c-11.82 10.09-23.96 19.77-36.42 29.07h4.96C1116.21 692.34 1127.32 683.38 1138.17 674.07z'/%3E%3Cpath d='M1329.73 0.56c-0.01 0.12-0.02 0.24-0.03 0.36C1329.71 0.8 1329.72 0.68 1329.73 0.56L1329.73 0.56z'/%3E%3Cpath d='M1122.48 674.27c9.24-7.83 18.42-16.11 27.19-24.49c67.53-64.63 118.31-147.14 142.69-237.56c18.79-70.82 22.32-144.44 25.53-217.29c2.4-64.76 6.54-129.43 11.82-194.01c-5.53 64.57-9.92 129.23-12.57 193.98c-3.48 72.74-7.29 146.29-26.32 216.91c-24.62 89.95-75.5 171.93-143 236.03c-8.76 8.29-17.93 16.51-27.16 24.27c-11.9 10.03-24.13 19.65-36.67 28.89h5.01C1100.4 692.42 1111.57 683.52 1122.48 674.27z'/%3E%3Cpath d='M1106.45 674.47c21.92-18.28 42.4-38.22 61.26-59.64c51.12-58.08 89.55-127.55 109.86-202.3c14.78-55.09 20.63-112.08 24.77-168.82c5.01-81.16 10.63-162.28 19.22-243.16l-0.01 0c-8.9 80.84-14.83 161.95-20.16 243.09c-4.35 56.63-10.42 113.54-25.38 168.46c-20.51 74.37-59.05 143.42-110.19 201.07c-18.86 21.24-39.32 41-61.2 59.12c-11.99 9.97-24.31 19.53-36.93 28.7h5.05C1084.24 692.48 1095.48 683.65 1106.45 674.47z'/%3E%3Cpath d='M1126.47 641.86c69.9-68.62 120.95-156.92 142.02-252.8c14.47-63.71 19.37-129 24.71-193.96c5.06-64.66 12.4-129.1 20.15-193.48c-7.99 64.35-15.58 128.78-20.89 193.41c-5.59 64.86-10.74 130.12-25.43 193.68c-21.35 95.42-72.51 183.18-142.4 251.26c-22.79 22.3-47.65 42.43-73.57 61.02h5.1C1080.89 682.91 1104.64 663.39 1126.47 641.86z'/%3E%3Cpath d='M1313.47 0.57c-0.04 0.35-0.08 0.7-0.13 1.05C1313.38 1.27 1313.43 0.92 1313.47 0.57L1313.47 0.57z'/%3E%3Cpath d='M1073.33 674.87c17.47-14.25 34.05-29.55 49.66-45.82c55.33-57.56 97.67-127.83 120.99-204.28c15.29-50.99 23.1-103.85 29.22-156.62c9.06-89.14 19.11-178.15 32.12-266.82c-13.35 88.6-23.75 177.6-33.15 266.7c-6.32 52.66-14.31 105.41-29.77 156.26c-22.91 74.11-63.79 142.27-117.03 198.57c-16.82 17.77-34.81 34.41-53.83 49.81c-12.19 9.86-24.7 19.3-37.53 28.33h5.15C1050.8 692.62 1062.2 683.93 1073.33 674.87z'/%3E%3Cpath d='M1305.47 0.36c-0.05 0.33-0.09 0.66-0.14 0.98C1305.38 1.01 1305.43 0.69 1305.47 0.36L1305.47 0.36z'/%3E%3Cpath d='M1055.58 675.08c2.45-1.96 7.15-5.81 9.52-7.84c9.35-7.83 18.7-16.28 27.49-24.74c74.38-71.02 127.08-164.18 148.21-264.9c6.35-27.92 11.21-56.45 15.33-84.76c12.54-96.91 25.11-195.12 41.43-291.46c-16.68 96.24-29.64 194.44-42.55 291.3c-4.22 28.27-9.18 56.73-15.64 84.6c-21.45 100.28-74.24 192.86-148.62 263.33c-23.17 22.21-48.45 42.11-74.82 60.4h5.21C1032.89 692.7 1044.4 684.11 1055.58 675.08z'/%3E%3Cpath d='M1297.71 0.56c-0.05 0.27-0.09 0.54-0.14 0.81C1297.62 1.11 1297.66 0.84 1297.71 0.56L1297.71 0.56z'/%3E%3Cpath d='M1039.79 673.44c10.37-8.33 20.7-17.24 30.46-26.29c63.5-58.87 112.99-133.28 140.14-215.65c9.62-29.28 16.84-59.6 22.9-89.8c2.63-13.4 5.49-29.1 7.71-42.55c14.94-99.77 30.29-199.44 49.04-298.58l0 0c-19.13 99.05-34.87 198.69-50.18 298.39c-2.27 13.41-5.17 29.07-7.87 42.48c-6.16 30.12-13.48 60.34-23.19 89.53c-27.35 81.92-76.91 155.84-140.36 214.22c-8.98 8.25-18.49 16.48-28.01 24.11c-13.85 11.18-28.27 21.67-42.98 31.7h5.32C1015.4 692.22 1027.78 683.07 1039.79 673.44z'/%3E%3Cpath d='M1023.7 671.68c9.55-7.65 19.3-15.97 28.33-24.26c56.55-51.69 102.27-115.52 131.3-186.53c6.21-15 11.82-31.28 16.52-46.85c2.31-7.54 4.78-16.24 6.81-23.88c1.91-6.92 4.4-17.05 6.12-24.06c1.54-6.71 4.06-17.49 5.45-24.22c3.46-16.18 6.65-32.42 9.56-48.7c16.27-97.91 34.48-195.45 54.63-292.62l0 0c-20.47 97.1-39.05 194.58-55.74 292.41c-2.99 16.26-6.23 32.47-9.74 48.63c-1.44 6.75-3.91 17.34-5.53 24.17c-1.75 7.07-4.28 17.1-6.2 24c-2.06 7.63-4.55 16.28-6.89 23.8c-4.75 15.52-10.4 31.7-16.65 46.63c-28.37 68.69-72.47 130.55-126.88 181.06c-10.47 9.74-21.65 19.32-32.84 28.22c-14.03 11.09-28.62 21.59-43.51 31.51h5.38C997.46 691.72 1010.81 681.96 1023.7 671.68z'/%3E%3Cpath d='M979.03 690.99c20.5-14.35 40.02-30.05 58.45-46.98c45.48-41.6 83.32-90.85 111.81-145.5c25.69-48.98 41.25-102.43 53.74-156.09c3.72-16.22 7.17-32.51 10.46-48.82c18.28-98.17 39.42-195.69 61.38-293.08c-22.32 97.29-43.84 194.78-62.49 292.85c-3.35 16.29-6.85 32.55-10.63 48.74c-12.67 53.48-28.37 106.74-54.18 155.49c-28.58 54.31-66.44 103.2-111.87 144.45c-18.4 16.78-37.89 32.33-58.34 46.53c-6.07 4.23-12.21 8.36-18.4 12.41h5.43C969.3 697.72 974.19 694.39 979.03 690.99z'/%3E%3Cpath d='M1267.35 0.57c-0.01 0.04-0.02 0.08-0.03 0.11C1267.34 0.65 1267.35 0.6 1267.35 0.57L1267.35 0.57z'/%3E%3Cpath d='M1018.87 643.98c49.62-44.98 91.05-99.13 120.42-159.38c16.58-33.8 28.6-69.73 38.93-105.87c3.19-11.49 6.78-24.83 9.6-36.38c2.97-11.77 5.96-24.72 8.67-36.6c21.45-102.2 45.91-203.67 70.85-305.07c-25.32 101.29-50.16 202.7-71.99 304.81c-2.78 11.92-5.79 24.78-8.8 36.54c-2.86 11.52-6.49 24.82-9.73 36.3c-10.44 36.01-22.55 71.8-39.21 105.44c-29.47 59.88-70.91 113.64-120.49 158.25c-24.37 21.79-50.52 41.51-78.15 58.98h5.54C970.74 683.97 995.62 664.93 1018.87 643.98z'/%3E%3Cpath d='M999.32 644.37c9.33-8.3 18.72-17.25 27.43-26.16c44.41-45.17 80.25-98.03 105.77-156.01c6.63-15.2 12.65-31.44 18.11-47.13c13.64-39.79 24.29-80.54 34.21-121.38c22.56-98.34 49.42-195.57 75.05-293.13l-0.01 0c-25.99 97.46-53.22 194.62-76.15 292.86c-10.07 40.79-20.85 81.42-34.63 121.12c-5.52 15.66-11.56 31.8-18.24 46.94c-25.63 57.64-61.52 110.16-105.92 154.98c-8.71 8.83-18.09 17.72-27.4 25.93c-24.69 21.73-51.17 41.33-79.15 58.6h5.67C950.63 684.17 975.8 665.23 999.32 644.37z'/%3E%3Cpath d='M1252.45 0.56c-0.15 0.53-0.3 1.05-0.45 1.58C1252.16 1.61 1252.31 1.09 1252.45 0.56L1252.45 0.56z'/%3E%3Cpath d='M910.46 696.19c3.28-2.08 7.52-4.75 10.63-6.89c71.16-47.39 131.65-111.17 173.45-185.86c36.6-65.57 56.78-138.59 76.12-210.69c24.56-97.2 54.18-194.19 81.33-290.61c-27.5 96.3-57.5 193.21-82.42 290.33c-19.58 71.91-39.98 144.7-76.75 210.01c-41.89 74.21-102.34 137.48-173.36 184.39c-3.44 2.33-7.2 4.66-10.61 6.82l-10.67 6.73l0.36 0.58h4.36L910.46 696.19z'/%3E%3Cpath d='M891.63 694.59c6-3.69 12.91-8.32 18.76-12.28c68.7-46.99 127.18-109.31 167.94-181.99c6.75-12 13.11-24.57 18.9-37.07c24.64-54.41 42.07-111.77 58.58-169.06c27.21-98.22 59.92-196.01 89.22-293.52l0 0c-29.65 97.38-62.73 195.08-90.3 293.2c-16.7 57.16-34.31 114.37-59.12 168.62c-5.82 12.44-12.19 24.93-18.97 36.86c-40.85 72.21-99.29 134.05-167.86 180.58c-5.82 3.89-12.73 8.51-18.72 12.15c-3.8 2.34-10.25 6.24-14.62 8.91h5.77C885.04 698.64 889.28 696.02 891.63 694.59z'/%3E%3Cpath d='M873.9 691.35c29.21-18.35 56.76-39.22 82.33-62.38c2.01-1.86 10.04-9.44 11.78-11.06c3.8-3.71 8.8-8.79 12.59-12.54c4.03-4.31 8.16-8.63 12.16-12.96c1.74-1.98 9.18-10.38 10.7-12.11c2.99-3.56 7.31-8.85 10.31-12.44c2.29-2.81 5.67-7.3 7.95-10.19c3.73-4.65 9.85-13.37 13.4-18.22c1.14-1.69 4.24-6.28 5.42-8.04c4.43-6.39 8.94-13.83 13.07-20.4c2.6-4.57 8.02-13.63 10.48-18.19c5.18-9.44 10.09-19.01 14.74-28.73c33.24-70.05 54.58-144.88 78.06-218.55c25.95-81.9 55.11-162.99 81.06-244.88l0 0c-26.24 81.79-55.7 162.78-81.95 244.6c-23.74 73.52-45.32 148.2-78.78 218.06c-5.13 10.62-10.59 21.09-16.36 31.4c-1.68 2.89-7.2 12.32-8.94 15.28c-4.15 6.52-8.66 13.92-13.1 20.27c-1.2 1.76-4.27 6.28-5.43 7.98c-3.56 4.83-9.67 13.46-13.41 18.1c-2.27 2.86-5.65 7.33-7.95 10.12c-2.99 3.56-7.32 8.81-10.31 12.35c-1.64 1.86-8.95 10.06-10.69 12.02c-4 4.29-8.13 8.59-12.16 12.86c-3.78 3.71-8.78 8.76-12.58 12.44c-2.21 2.07-9.57 8.91-11.77 10.97c-25.53 22.95-53.03 43.63-82.17 61.78c-6.7 4.16-13.48 8.19-20.32 12.13h5.93C863.32 697.84 868.64 694.64 873.9 691.35z'/%3E%3Cpath d='M934.07 629.61c32.61-28.86 61.63-61.55 86.43-97.34c1.24-1.8 4.35-6.33 5.54-8.07c1.2-1.84 7.49-11.69 8.8-13.73c4.42-7.31 9.07-15.03 13.2-22.5c41.92-76.32 67.28-160.09 95.76-241.97c28.26-82.02 59.49-163.21 87.11-245.43l0 0c-27.91 82.12-59.44 163.2-88 245.12c-28.75 81.7-54.37 165.3-96.52 241.36c-3.55 6.46-7.75 13.26-11.53 19.61c-2.27 3.8-8.13 12.69-10.52 16.41c-1.18 1.71-4.33 6.25-5.55 8.01c-24.82 35.56-53.84 68-86.41 96.62C900.32 655.82 865.32 680.39 828 701h6.15C869.82 680.71 903.31 656.79 934.07 629.61z'/%3E%3Cpath d='M836.31 685.31c72.12-44.35 134.69-104.66 180.08-176.23c41.63-66.17 68.81-140.01 95.85-212.98c35.73-99.03 76.33-196.61 111.7-295.76l0 0c-35.72 99.02-76.67 196.46-112.75 295.37c-27.69 73.78-55.36 148.53-98.26 215.07c-45.2 69.94-107.12 128.74-178.11 172.09c-10.34 6.38-20.92 12.36-31.61 18.14h6.26C818.53 695.98 827.51 690.79 836.31 685.31z'/%3E%3Cpath d='M811.54 685.55c3.11-1.83 8.24-5.05 11.36-7c3.53-2.19 7.9-4.91 11.24-7.2c70.66-46.31 131.02-108.43 174.39-180.98c36.32-61.17 62.64-127.55 88.83-193.49c38.6-99.14 82.02-196.74 119.46-296.32l0 0.01c-37.78 99.45-81.56 196.9-120.51 295.9c-26.4 65.78-52.91 131.97-89.39 192.94c-43.45 72.09-103.77 133.76-174.29 179.62c-3.49 2.37-7.66 4.95-11.21 7.12c-2.8 1.71-8.41 5.24-11.33 6.92c-10.64 6.27-21.45 12.24-32.42 17.93h6.44C793.35 696.05 802.5 690.91 811.54 685.55z'/%3E%3Cpath d='M786.3 685.6c18.52-10.66 36.47-22.29 53.76-34.85c4.21-3.17 9.38-6.89 13.49-10.13c1.06-0.86 11.17-8.84 11.9-9.43c2.23-1.86 6.74-5.68 9.03-7.61c10.29-8.64 20.22-17.97 29.9-27.27c1.87-1.86 10.22-10.34 11.86-11.99c3.3-3.53 8.19-8.79 11.5-12.34c3.21-3.67 7.93-9.02 11.12-12.68c1.5-1.76 9.12-11.05 10.74-13c2.43-3.02 5.86-7.57 8.28-10.65c4.39-5.58 8.76-11.92 12.99-17.66c3.23-4.81 7.22-10.52 10.39-15.36c41.5-64.21 71.22-135.08 101.1-205.17c41.55-99.24 87.89-196.84 127.43-296.91l-0.01 0c-39.89 99.93-86.58 197.37-128.47 296.47c-30.09 69.92-60.01 140.57-101.67 204.56c-3.16 4.81-7.17 10.49-10.4 15.27c-4.24 5.71-8.6 11.99-13 17.54c-2.43 3.09-5.85 7.58-8.28 10.58c-1.66 2-9.22 11.13-10.74 12.91c-3.19 3.62-7.92 8.96-11.12 12.59c-4.26 4.47-9.51 10.29-13.86 14.63c-21.94 22.41-45.69 42.98-71.01 61.49c-5.96 4.48-13.09 9.29-19.22 13.54c-11.4 7.52-25.24 16.26-37.12 22.96c-11.03 6.28-22.24 12.24-33.61 17.89h6.63C767.47 696.08 776.94 690.95 786.3 685.6z'/%3E%3Cpath d='M1202.73 0.56c-0.07 0.17-0.14 0.34-0.21 0.51C1202.59 0.9 1202.66 0.73 1202.73 0.56L1202.73 0.56z'/%3E%3Cpath d='M734.6 699.12c12.27-6.06 24.33-12.52 36.18-19.37c57.43-33.12 108.77-75.82 151.81-126.25c2.19-2.63 6.59-7.87 8.78-10.49c3.05-3.9 7.53-9.56 10.57-13.44c1.3-1.76 8.7-11.77 10.16-13.75c2.65-3.88 9.17-13.05 11.62-16.91c51.22-78.27 86.44-165.39 125.79-249.87c38.07-82.3 78.3-164.18 113.02-247.96c-35.01 83.66-75.51 165.39-113.87 247.57c-39.61 84.28-75.09 171.2-126.52 249.21c-2.42 3.77-9 12.98-11.64 16.81c-1.51 2.03-8.82 11.86-10.17 13.67c-3.03 3.84-7.53 9.5-10.58 13.35c-2.19 2.58-6.59 7.84-8.78 10.42c-43.03 50.06-94.29 92.4-151.59 125.18c-11.83 6.75-23.86 13.14-36.09 19.16l-9.39 4.55h6.86L734.6 699.12z'/%3E%3Cpath d='M758.4 671.71c59.18-34.88 111.75-79.92 155.29-133.06c23.94-29.17 44.72-61.05 63.33-93.83c25.72-45.05 48.42-91.86 70.94-138.54c48.58-101.71 102.11-201.08 147.14-304.47c-45.38 103.24-99.24 202.43-148.16 303.98c-22.68 46.6-45.5 93.28-71.35 138.22c-18.67 32.62-39.5 64.35-63.47 93.36c-43.54 52.78-96.04 97.47-155.1 132.01c-18.04 10.72-37.31 20.41-56.35 29.28l-1.59 0.76c-0.54 0.24-1.08 0.46-1.63 0.69l-2.12 0.89h7.22C721.47 692.08 740.51 682.43 758.4 671.71z'/%3E%3Cpath d='M1195.66 0.56c-0.18 0.42-0.37 0.83-0.55 1.24C1195.29 1.39 1195.48 0.98 1195.66 0.56L1195.66 0.56z'/%3E%3Cpath d='M673.58 700.79c9.32-4.17 18.68-8.45 27.78-13.1c2.56-1.31 7.89-3.96 10.29-5.18c4.64-2.32 15.68-8.51 20.26-10.99c7.34-4.39 15.88-9.21 23.02-13.88c3.93-2.53 9.15-5.73 12.91-8.32c4.64-3.19 14.61-9.9 18.91-13.17c5.77-4.25 12.83-9.35 18.39-13.87c2.08-1.63 7.05-5.57 9.04-7.13c1.87-1.58 12.58-10.6 14.67-12.38c4.96-4.34 10.77-9.73 15.69-14.13c4-3.86 9.8-9.48 13.8-13.35c1-0.94 3.05-3.13 4.02-4.12l10.67-11.05c1.68-1.9 11.32-12.53 12.86-14.25c3.68-4.22 8.74-10.4 12.39-14.66c1.56-1.81 3.32-4.16 4.79-6c2.57-3.34 6.93-8.72 9.45-12.1c1.04-1.47 10.29-14.04 11.32-15.5c3.14-4.59 7.65-11.28 10.78-15.88c4.01-6.16 8.52-13.15 12.37-19.41c27.04-43.39 50.81-88.76 74.15-134.2c55.12-109.55 116.6-215.9 167.49-327.56l-0.01 0c-51.23 111.5-113.04 217.66-168.5 327.04c-23.47 45.37-47.35 90.59-74.5 133.87c-3.87 6.24-8.4 13.2-12.41 19.34c-3.15 4.62-7.67 11.21-10.8 15.8c-1.28 1.72-9.82 13.38-11.33 15.42c-2.56 3.37-6.79 8.63-9.46 12.03c-1.47 1.82-3.3 4.25-4.79 5.97c-3.65 4.28-8.73 10.37-12.39 14.58c-1.49 1.66-11.12 12.23-12.86 14.17l-10.66 10.98c-0.97 1-3.06 3.17-4.02 4.09c-4 3.84-9.79 9.42-13.79 13.26c-4.92 4.37-10.72 9.72-15.68 14.03c-2.13 1.78-12.69 10.68-14.66 12.29c-1.99 1.58-7 5.47-9.03 7.08c-5.54 4.47-12.61 9.57-18.36 13.76c-4.33 3.31-14.32 9.92-18.87 13.06c-3.8 2.62-9 5.73-12.89 8.24c-7.12 4.63-15.66 9.41-22.97 13.75c-4.62 2.51-15.52 8.52-20.2 10.88c-2.96 1.49-7.45 3.72-10.26 5.13c-9.08 4.6-18.42 8.84-27.72 12.96l-3.51 1.54c-0.61 0.28-1.1 0.44-1.7 0.66c-0.49 0.17-0.98 0.34-1.46 0.51h7.31C673.28 700.92 673.44 700.85 673.58 700.79z'/%3E%3Cpath d='M710.15 667.28c6.27-3.42 13.51-7.92 19.71-11.51c5.1-3.21 12.43-7.9 17.51-11.13c3.01-2.07 8.9-6.08 11.99-8.2c5.52-3.7 16.39-11.78 21.82-15.85c31.28-24.02 60.24-50.92 86.5-80.34c4.06-4.5 9.56-11.13 13.53-15.71c4.1-4.91 8.98-11.18 13.01-16.15c17.64-23.05 34.04-47.03 49.13-71.83c29.13-46.94 55.48-95.55 81.99-143.99c52.84-96.93 109.32-192.01 156.5-291.91c-47.46 99.76-104.2 194.67-157.33 291.45c-26.63 48.35-53.12 96.86-82.36 143.7c-15.13 24.71-31.57 48.59-49.24 71.55c-4.03 4.95-8.94 11.2-13.02 16.07c-3.99 4.59-9.5 11.16-13.54 15.63c-26.26 29.26-55.21 55.99-86.46 79.84c-5.47 4.01-16.2 12.05-21.79 15.73c-3.04 2.05-8.95 6.1-11.96 8.14c-5.07 3.2-12.4 7.86-17.48 11.04c-6.19 3.55-13.4 8-19.67 11.41c-1.88 0.97-16.3 8.91-18.23 9.73c-8.37 4.15-17.53 8.81-26.05 12.61c-9.31 4.26-18.75 8.33-28.22 12.22c-1.36 0.41-2.72 0.81-4.07 1.21h7.85c8.57-3.55 17.07-7.3 25.49-11.16c8.53-3.83 17.71-8.54 26.11-12.73C694.04 676.12 707.7 668.6 710.15 667.28z'/%3E%3Cpath d='M1181.89 0.57c-0.01 0.03-0.03 0.06-0.04 0.09C1181.86 0.63 1181.88 0.6 1181.89 0.57L1181.89 0.57z'/%3E%3Cpath d='M926.87 431.9c38.79-59.64 73.64-121.7 109.66-183.01c48-81.74 96.91-163.13 138.63-248.32l0-0.01c-41.95 85.08-91.07 166.32-139.28 247.93c-36.18 61.21-71.19 123.15-110.12 182.67C845.67 557.04 740.75 648.42 600.18 700.6c-0.17 0.07-0.34 0.13-0.52 0.18l-0.5 0.13l-0.34 0.09h7.25C744.39 648.01 847.88 556.78 926.87 431.9z'/%3E%3Cpath d='M634.71 674.26c80.55-37.45 151.65-93.66 209.87-160.5c33.5-38.07 61.91-80.19 89.63-122.54c40.06-61.44 81.65-130.69 120.69-193.2c39.82-64.63 79.13-129.7 113.48-197.45l0-0.01c-34.51 67.66-73.98 132.62-113.96 197.15c-39.37 62.62-80.89 131.45-121.16 192.88c-27.79 42.23-56.28 84.24-89.82 122.17C785.22 579.27 714.21 635.15 633.8 672.3c-22.92 10.63-46.37 20.1-70.25 28.36c-0.53 0.12-1.06 0.23-1.6 0.34h7.66C591.72 693.11 613.44 684.19 634.71 674.26z'/%3E%3Cpath d='M1161.55 0.56c-0.16 0.31-0.33 0.61-0.49 0.91C1161.22 1.17 1161.38 0.87 1161.55 0.56L1161.55 0.56z'/%3E%3Cpath d='M891.33 425.56c49.36-69.19 98.73-146.52 145.51-217.88c43.68-67.32 86.83-135.14 124.21-206.21c-37.55 70.98-80.86 138.69-124.69 205.91c-47.1 71.41-96.42 148.35-146 217.5c-69.79 99.15-157.79 185.16-268.23 237.6c-31.1 14.69-63.14 27.29-95.92 37.7c-1.21 0.27-2.54 0.55-3.92 0.82h8.45c25.13-8.11 49.81-17.53 73.95-28.24C724.06 620.52 817.28 531.23 891.33 425.56z'/%3E%3Cpath d='M857.45 443.07c7.12-9.49 18.7-24.52 25.65-34.11c29.49-40.08 58.21-80.83 86.56-121.7c64.51-93.65 130.44-186.73 184.98-286.69l0 0c-54.76 99.83-120.89 192.76-185.6 286.26c-28.44 40.8-57.24 81.48-86.82 121.49c-7.06 9.6-18.36 24.39-25.71 34.03c-47.66 61.83-103.06 118.28-167.07 163.22c-60.94 43.25-130.44 72.92-201.99 93.63c-1.7 0.48-3.41 1.01-5.12 1.45L480.2 701h8.83c71.38-20.88 140.66-50.76 201.4-94.05C754.47 561.78 809.84 505.12 857.45 443.07z'/%3E%3Cpath d='M444.27 700.59c5.01-1.3 11.32-2.96 16.34-4.36c47.07-13.04 93.21-29.81 136.95-51.63c97.72-49.08 178.71-126.05 246-211.3c16.17-20.48 32.44-41.61 48.14-62.43c89.37-120.47 181.34-239.9 255.99-370.3l0 0C1072.78 130.8 980.56 250.03 890.95 370.3c-15.74 20.78-32.03 41.87-48.26 62.31C775.35 517.55 694.37 594.22 596.75 643c-43.66 21.67-89.73 38.3-136.7 51.21c-5.01 1.37-11.3 3.04-16.31 4.32c-1.57 0.36-6.61 1.67-8.18 2.05c-0.9 0.17-1.8 0.28-2.7 0.42c-0.03 0-0.05 0.01-0.08 0.01h9.83C443.28 700.83 443.86 700.68 444.27 700.59z'/%3E%3Cpath d='M847.58 401.54c102.34-130 208.41-258.4 293.07-400.98c-84.94 142.4-191.25 270.57-293.84 400.37C719.17 561.5 599.58 654.28 395.85 697.53c-3.52 0.75-12.47 2.57-15.92 3.29l-1.42 0.15l-0.26 0.03h11.19c2.83-0.6 5.5-1.16 6.86-1.44C600.34 655.84 720.15 562.55 847.58 401.54z'/%3E%3Cpath d='M895.29 317.63c-83.55 99.96-168.71 208.5-279.73 278.99C524.15 655.37 417.25 685.57 310.48 701h14.06c102.39-16.23 204.26-46.58 291.84-103.1c110.93-70.71 196.18-179.66 279.49-279.78c84.26-101.84 168.8-204.4 237.64-317.55h0C1064.46 113.58 979.74 215.96 895.29 317.63z'/%3E%3Cpath d='M1127.08 0.57c-0.46 0.73-0.92 1.45-1.38 2.18C1126.15 2.02 1126.62 1.29 1127.08 0.57L1127.08 0.57z'/%3E%3Cpath d='M210.62 701c100.51-5.75 200.77-24.85 293.99-63.34c11.42-4.65 24.05-10.44 35.24-15.82c3.2-1.45 8.28-4.19 11.49-5.81c2.09-1.05 6.61-3.43 8.58-4.43c3.74-2.09 13.12-7.33 16.86-9.43c5.06-3.05 11.5-6.91 16.55-9.96c3.61-2.33 12.63-8.13 16.24-10.46c4.86-3.34 11.06-7.59 15.92-10.93c7.03-5.12 16.48-11.89 23.27-17.25c2.88-2.23 7.38-5.61 10.16-7.91c3.39-2.78 11.75-9.42 14.97-12.2c3.5-3.01 8.77-7.41 12.27-10.41c4.44-4 12.47-10.93 16.82-14.98c61.5-55.72 115.89-121.38 170.61-183.73c89.29-102.79 179.21-206.23 252.09-321.6c-73.08 115.23-163.18 218.48-252.65 321.1c-53.45 60.6-106.48 124.48-166.13 178.97c-5.27 4.95-13.63 12.31-19.14 17.16c-2.65 2.36-7.03 6.02-9.78 8.34c-2.82 2.38-7.02 5.98-9.87 8.23c-3.51 2.8-11.6 9.43-15.06 12.03c-3.7 2.79-9.07 6.98-12.75 9.77c-4.85 3.47-13.35 9.8-18.26 13.13c-3.82 2.58-9.45 6.49-13.26 9.06c-3.62 2.33-12.6 8.08-16.22 10.41c-1.97 1.2-6.3 3.76-8.26 4.95c-3 1.76-8 4.88-11.07 6.52c-3.52 1.91-13.32 7.52-16.89 9.28c-4.04 2.06-10.24 5.27-14.28 7.33c-7.85 3.69-18.28 8.72-26.24 12.1c-102.4 44.22-213.94 64.31-325.02 68.59c-63.75 2.38-127.57-0.75-190.81-8.74v2.62c27.26 3.39 54.64 5.86 82.06 7.39H210.62z'/%3E%3Cpath d='M1120.53 0.56c-0.11 0.17-0.22 0.34-0.33 0.51C1120.3 0.9 1120.42 0.73 1120.53 0.56L1120.53 0.56z'/%3E%3Cpath d='M558.76 592.88c3.38-2.03 12.89-7.66 16.42-9.78c3.63-2.29 12.63-8.05 16.12-10.26c10.17-6.78 21.51-14.61 31.37-21.81c4.77-3.54 13.06-9.78 17.78-13.43c80.79-62.07 154.41-146.48 223.35-221.57c34.37-37.54 68.5-75.32 101.82-113.8c12-13.91 25.29-29.54 37.04-43.67c41.7-50.41 82.06-102.48 117.54-157.49c-35.58 54.94-76.02 106.93-117.82 157.26c-11.82 14.14-25.04 29.68-37.11 43.6c-33.39 38.42-67.58 76.12-102.02 113.6c-69.22 75.05-142.66 159.04-223.61 221.02c-4.73 3.66-13.01 9.85-17.77 13.38c-9.85 7.16-21.19 14.97-31.35 21.7c-3.45 2.21-12.55 7.94-16.1 10.21c-3.53 2.05-12.96 7.72-16.4 9.73C395.29 684.14 183.67 703.47 0 681.14v2.6C184.03 705.72 395.9 685.93 558.76 592.88z'/%3E%3Cpath d='M651.37 504.42c-8.94 7.3-20.45 16.41-29.62 23.4c-3.98 2.98-12.34 9.13-16.44 12.16c-11.51 8.15-23.23 16.28-35.14 23.84c-90.02 58.25-194.64 90.6-300.33 105.15c-66.54 9-133.78 11.65-200.82 7.89c-23.07-1.25-46.08-3.22-69.02-5.87v2.6c14.55 1.65 29.13 3.03 43.73 4.13c75.35 5.62 151.54 3.71 226.4-6.71c105.9-14.78 210.72-47.41 300.83-105.97c11.91-7.59 23.64-15.76 35.16-23.95c4.07-3.05 12.44-9.16 16.45-12.21c9.17-7.02 20.69-16.16 29.62-23.49c69.95-57.35 139.34-132.8 202.41-198.14c92.61-96.94 184.83-195.56 259.64-307.23C1039.22 111.56 946.84 210 854.06 306.75C790.72 372.18 721.48 447.06 651.37 504.42z'/%3E%3Cpath d='M1114.27 0L1114.27 0c-0.01 0.01-0.02 0.03-0.03 0.04C1114.26 0.03 1114.27 0.01 1114.27 0z'/%3E%3Cpath d='M146.61 668.98c8.89-0.21 22.16-0.97 31.13-1.35c9.41-0.59 21.61-1.61 31.07-2.29c14.13-1.51 29.33-2.91 43.35-4.87c102.74-13.75 204.34-44.8 292.71-99.85c113.56-69.92 205.43-168.25 299.77-261.15c93.83-93.7 186.85-189.59 262.56-298.9v0c-75.91 109.15-169.09 204.85-263.09 298.37c-94.47 92.67-186.42 190.74-300.03 260.4c-86.48 53.67-185.63 84.29-286.04 98.23c-6.35 0.86-13.66 1.83-20.04 2.58c-8.94 0.93-20.44 2.1-29.38 3.02c-9.38 0.63-21.62 1.69-31.01 2.23c-8.73 0.3-22.29 1.15-31.06 1.28C97.57 667.85 48.62 665.77 0 660.5v2.59C48.65 668.26 97.63 670.24 146.61 668.98z'/%3E%3Cpath d='M726.93 391.69c-15.81 14.74-34.12 31.28-50.29 45.33c-22.96 20.02-47.15 40.02-71.4 58.47c-5.82 4.47-12.62 9.39-18.5 13.78c-11.57 8.27-24.8 17.59-36.73 25.29c-3.83 2.47-9.12 5.9-12.93 8.32c-4.98 3.01-13.43 8.28-18.41 11.16c-3.89 2.25-9.47 5.43-13.33 7.66c-4.91 2.77-14.01 7.57-18.93 10.24c-4.22 2.11-13.56 6.8-17.87 8.95c-5.64 2.61-12.5 5.77-18.14 8.38C374.41 622.8 292.52 642 210.01 650.21C140.35 657.38 69.8 656.95 0 649.78v2.59c69.89 7.02 140.51 7.31 210.23-0.01c81.67-8.29 162.72-27.31 238.03-60.32c6.73-2.97 14.31-6.61 20.99-9.68c4.29-2.16 13.66-6.86 17.9-9c4.94-2.68 14.04-7.52 18.95-10.3c3.88-2.21 9.46-5.48 13.34-7.7c5.07-2.92 13.41-8.2 18.42-11.22c3.87-2.44 9.1-5.9 12.94-8.36c11.93-7.72 25.19-17.11 36.74-25.4c5.02-3.72 11.05-8.22 16.06-11.95c23.41-17.87 46.95-37.15 69.14-56.51c12.06-10.4 24.99-22.05 36.81-32.74C846.01 280.78 990.48 153.25 1100.42 0.57h0C995.27 146.38 857.55 269.13 726.93 391.69z'/%3E%3Cpath d='M1093.55 0.57c-0.08 0.11-0.17 0.23-0.26 0.34C1093.38 0.79 1093.47 0.68 1093.55 0.57L1093.55 0.57z'/%3E%3Cpath d='M734.85 363.73c-52.96 47.02-106.79 94.08-164.49 135.18c-54.42 38.8-113.04 72.34-175.9 95.39c-68.49 25.24-140.76 39.59-213.42 45.66c-60.28 5-120.86 4.59-181.04-1.18v2.54c131.49 12.12 271.28 0.46 395.09-45.34c62.95-23.22 121.63-56.94 176.09-95.92c57.65-41.24 111.46-88.44 164.34-135.59C861.09 251.38 992.45 137.33 1093.29 0.91C992.23 137.09 860.63 250.91 734.85 363.73z'/%3E%3Cpath d='M152.79 631.38c96.05-6.69 192.02-27.52 279.21-69.14c4.98-2.35 11.24-5.55 16.22-7.99c3.5-1.68 12.42-6.49 16.02-8.39c6.05-3.14 15.03-8.35 21.06-11.72c4.81-2.75 10.74-6.42 15.54-9.24c5.96-3.57 14.57-9.07 20.44-12.77c25.03-16.22 50.1-33.97 73.83-52.07c28.73-21.77 56.82-44.79 84.46-67.92c16.84-14.24 38.31-32.42 55.15-46.67C858.49 239.04 987.38 131.01 1086.6 0.56l0 0c-99.43 130.2-228.55 238.01-352.5 344.17c-16.88 14.23-38.35 32.34-55.23 46.56c-27.68 23.07-55.8 46.02-84.55 67.72c-23.74 18.03-48.8 35.7-73.84 51.86c-5.86 3.69-14.48 9.15-20.43 12.71c-4.81 2.8-10.72 6.45-15.53 9.19c-6.08 3.31-14.94 8.56-21.04 11.66c-3.58 1.85-12.43 6.66-16 8.34c-4.96 2.41-11.22 5.61-16.2 7.94c-86.14 40.94-180.83 61.45-275.64 68.23c-51.85 3.64-103.91 2.99-155.64-1.57v2.57C50.79 634.31 101.89 634.92 152.79 631.38z'/%3E%3Cpath d='M335.55 582.65c90.97-29.45 173.14-80.48 249.42-137.28c76.11-57.29 149.27-118.37 222.84-178.84c97.15-80.65 192.38-165.17 270.73-264.67C1000 101.22 904.64 185.51 807.34 265.96c-73.68 60.31-146.96 121.24-223.15 178.36c-76.26 56.54-158.37 107.33-249.22 136.54C227.2 615.15 112.56 624.51 0 615.6v2.56C112.8 626.85 227.63 617.22 335.55 582.65z'/%3E%3Cpath d='M1079.58 0.57c-0.34 0.44-0.69 0.87-1.03 1.3C1078.89 1.43 1079.24 1 1079.58 0.57L1079.58 0.57z'/%3E%3Cpath d='M650.39 373.77c-103.17 78.69-210.82 156.94-335.99 196.12c-70.2 21.8-143.53 32.79-216.93 35.19c-32.51 0.99-65.05 0.33-97.48-1.97v2.57c28.54 1.96 57.16 2.64 85.77 2.02c77.52-1.55 155.12-12.86 229.21-35.98c125.29-39.49 232.94-118.03 336.1-197.05c148.43-115.06 302.4-227.43 421.67-374.11h0C953.2 146.99 799.03 259.02 650.39 373.77z'/%3E%3Cpath d='M1003.27 69.41c-65.3 66.39-137.66 125.34-211.71 181.62c-99.56 73.9-198.31 149.5-303.14 215.83c-108.7 68.43-219.18 109.96-347.65 121.22c-46.84 4.28-93.9 4.97-140.77 2.12v2.55c46.95 2.75 94.08 1.96 140.99-2.42c128.65-11.52 239.53-53.43 348.22-122.19c104.78-66.59 203.34-142.36 302.81-216.5c73.95-56.45 146.21-115.56 211.38-182.1c21.6-22.04 42.71-45.25 62.46-68.97h0C1046.07 24.24 1024.93 47.41 1003.27 69.41z'/%3E%3Cpath d='M633.17 349.78c-116.29 79.9-234.98 162.95-372.71 200.65C175.85 573.51 87.54 581.32 0 576.81v2.55c87.74 4.32 176.23-3.69 260.99-27c137.84-38.02 256.57-121.43 372.82-201.66C784 246.05 937.82 141.49 1057.94 1.66C937.54 141.23 783.56 245.44 633.17 349.78z'/%3E%3Cpath d='M1058.89 0.56c-0.31 0.37-0.64 0.72-0.95 1.09C1058.26 1.29 1058.58 0.93 1058.89 0.56L1058.89 0.56z'/%3E%3Cpath d='M586.92 362.92c-104.44 67.94-211.58 136.04-332.17 171.17c-69.12 19.9-141.22 29.24-213.08 29.65c-13.89 0.09-27.79-0.15-41.66-0.72v2.54c10.11 0.38 20.22 0.61 30.29 0.68c72.08 0.3 144.44-8.18 214.05-27.11c125.05-34.38 235.69-104.88 343.24-175.19C751.53 255.81 920.99 149.09 1051.9 0.52C920.7 148.8 751.06 255.13 586.92 362.92z'/%3E%3Cpath d='M540.53 373.85c-164.86 101.49-303.07 172.8-501.78 175.2c-12.92 0.2-25.84 0.09-38.75-0.29v2.54c12.93 0.36 25.86 0.44 38.79 0.21c199.16-2.84 337.52-74.53 502.43-176.53c177.3-110.7 361.79-218.1 503.52-374.41C902.69 156.57 718.03 263.53 540.53 373.85z'/%3E%3Cpath d='M761.14 222.77c-99.92 63.72-202.57 123.15-305.67 181.57c-84.01 46.52-171.73 88.63-265.7 110.39c-50.51 11.59-102.07 18.02-153.89 19.2c-11.96 0.3-23.92 0.34-35.88 0.12v2.53c11.98 0.19 23.96 0.13 35.94-0.2c51.97-1.29 103.67-7.85 154.31-19.58c94.11-22 181.9-64.36 265.95-111.14c103-58.65 205.53-118.3 305.35-182.25C861.05 159.2 956.79 87.63 1037.54 0.57l0 0C956.6 87.45 860.75 158.78 761.14 222.77z'/%3E%3Cpath d='M525.09 346.95c-111.85 61.46-225.56 124.24-350.9 153.14C117.13 513.16 58.53 519.15 0 518.83v2.52c58.71 0.19 117.47-5.94 174.67-19.17c125.46-29.2 239.19-92.29 351.05-154.08C704.16 248.9 887.75 149.63 1030.24 0.58C887.44 149.31 703.72 248.14 525.09 346.95z'/%3E%3Cpath d='M1030.25 0.57L1030.25 0.57c0 0-0.01 0.01-0.01 0.01C1030.24 0.58 1030.25 0.57 1030.25 0.57z'/%3E%3Cpath d='M838.26 151.44c-78.13 52.42-160.4 98.33-243.54 142.26c-76.98 40.11-153.56 81.16-232.13 118.09c-78.53 36.54-160.5 67.47-246.26 81.55C77.86 499.6 38.95 502.79 0 503.11v2.52c39.08-0.4 78.11-3.69 116.71-10.05c85.91-14.3 168-45.46 246.61-82.25C441.84 376.21 518.34 335 595.26 294.7c83.06-44.11 165.26-90.22 243.3-142.83c65.93-44.53 128.36-94.64 184.27-151.31l0 0C966.79 57.1 904.27 107.07 838.26 151.44z'/%3E%3Cpath d='M277.03 428.51C185.94 464 95.62 484.76 0 486.78v2.4c70.05-1.73 139.82-12.98 206.73-34.18c106.19-32.75 205.4-83.71 304.95-132.31c178.94-88.15 360.94-180.34 504.08-322.12C872.32 142.01 690.2 233.75 511.1 321.5C433.94 359 357.17 397.68 277.03 428.51z'/%3E%3Cpath d='M885.75 101.65c-95.09 67.65-199.23 121.61-304.34 171.82C453.09 332.23 326.44 397.1 190.94 437.97c-16.58 4.84-34.4 9.56-51.24 13.4C93.85 462.08 47.01 468.1 0 469.73v2.51c47.19-1.74 94.19-7.88 140.2-18.74c16.88-3.9 34.67-8.64 51.33-13.55c135.53-41.2 262.08-106.36 390.37-165.45c105.03-50.47 209.09-104.67 304.06-172.56c43.2-30.8 84.15-64.64 122.53-101.27h0C970.03 37.21 929.01 70.95 885.75 101.65z'/%3E%3Cpath d='M688.88 209.49c-87.42 44.03-177.51 82.57-267.46 121.07c-64.26 27.51-128.69 54.77-195.09 76.67C203.25 414.88 179.54 421.9 156 428c-38.87 10.13-78.44 17.33-118.38 21.55c-12.52 1.23-25.07 2.12-37.62 2.72v2.51c12.63-0.63 25.26-1.56 37.86-2.82c40.05-4.32 79.72-11.63 118.67-21.88c23.59-6.17 47.31-13.24 70.42-20.96c66.4-22.07 130.86-49.51 195.06-77.17c89.86-38.7 179.91-77.46 267.25-121.69c59.08-30.1 117.45-62.59 172.5-99.6C911.08 77.77 957.69 41 1001.15 0.7C957.6 40.9 910.92 77.55 861.54 110.32C806.43 147.19 748 179.54 688.88 209.49z'/%3E%3Cpath d='M1001.58 0.31c-0.14 0.13-0.29 0.26-0.43 0.39C1001.3 0.57 1001.44 0.44 1001.58 0.31L1001.58 0.31z'/%3E%3Cpath d='M568.62 253.97c-101.91 42.69-204.22 84.86-308.19 122.27c-58.62 20.47-118.48 37.97-179.72 48.57c-26.72 4.69-53.67 7.87-80.71 9.55v2.5c27.18-1.74 54.26-5 81.11-9.77c61.34-10.77 121.26-28.43 179.95-49.07c103.97-37.67 206.14-80.06 308.01-123C720.94 189.63 870.92 112.78 993.9 0.57l0 0C870.68 112.47 720.61 188.95 568.62 253.97z'/%3E%3Cpath d='M986.21 0.7L986.21 0.7c-0.01 0.01-0.03 0.03-0.05 0.04C986.18 0.73 986.19 0.71 986.21 0.7z'/%3E%3Cpath d='M409.25 303.48C274.24 354.13 140.85 404.66 0 415.83v2.5c141.12-11.49 274.59-62.35 409.78-113.44c140.49-52.72 281.29-107.49 410.69-184.27c58.57-34.94 114.52-74.77 165.7-119.88c-51.28 44.98-107.3 84.68-165.94 119.48C690.68 196.68 549.82 251.1 409.25 303.48z'/%3E%3Cpath d='M288.65 329.63C194.95 360.79 98.54 388.35 0 397v2.5c98.77-8.88 195.39-36.71 289.21-68.16c143.4-49.27 288.36-97.32 425.35-162.78C808.93 123.6 899.23 68.77 978.68 0.57V0.57c-79.59 68-169.98 122.6-264.43 167.32C577.15 233 432.1 280.72 288.65 329.63z'/%3E%3Cpath d='M511.89 239.59c-62.95 21.96-126.68 42.07-190.22 62.2C216.76 335.01 109.79 367.24 0 377.7v2.49c110.01-10.72 217.15-43.25 322.19-76.79c63.49-20.28 127.21-40.55 190.11-62.66C675.44 183.46 837.23 112.39 970.85 0.57h0C837.01 112.05 675.12 182.7 511.89 239.59z'/%3E%3Cpath d='M552.58 213.98c-40.01 13.93-81.75 27.27-122.3 39.62c-10.64 3.3-27.12 8.16-37.88 11.4c-101.24 29.29-202.13 61.14-305.83 80.64c-28.65 5.34-57.54 9.63-86.57 12.53v2.5c2.9-0.29 5.79-0.6 8.68-0.92c141.22-16.38 276.65-62.28 412.56-101.87c42.14-12.88 85.43-26.74 127.04-41.19c73.02-25.49 145.44-54.32 214.66-88.9C833.59 92.45 901.12 50.41 962.61 0.76c-61.6 49.49-129.21 91.35-199.92 126.51C694.89 160.92 624.04 189.13 552.58 213.98z'/%3E%3Cpath d='M962.87 0.57L962.87 0.57c-0.08 0.07-0.17 0.13-0.25 0.2C962.7 0.7 962.78 0.63 962.87 0.57z'/%3E%3Cpath d='M527.91 211.81c-46.33 14.81-93.82 28.59-140.71 41.42C259.97 286.5 131.25 325.81 0 338.73v2.48c131.44-13.23 260.25-52.88 387.6-86.53c46.87-12.94 94.36-26.84 140.66-41.77c75.16-24.23 149.55-52.18 220.92-86.03c72.8-34.74 142.5-76.45 205.98-126.32l0 0C891.59 50.27 821.81 91.8 748.94 126.35C677.52 160.01 603.1 187.77 527.91 211.81z'/%3E%3Cpath d='M947.87 0.56L947.87 0.56c-0.03 0.02-0.05 0.04-0.08 0.06C947.81 0.6 947.84 0.58 947.87 0.56z'/%3E%3Cpath d='M344.68 250.96c-50.05 12.1-100.42 24.34-150.65 35.59c-56.59 12.61-113.69 23.68-171.3 30.43c-7.56 0.88-15.14 1.68-22.72 2.4v2.47c7.68-0.75 15.35-1.58 23.01-2.49c57.66-6.91 114.82-18.13 171.45-30.89c50.22-11.37 100.57-23.74 150.6-35.97c62.4-15.43 125.29-31.99 186.7-51C679.35 156.11 824.42 94.93 947.79 0.62C824.23 94.6 679.08 155.4 531.42 200.44C469.99 219.29 407.09 235.7 344.68 250.96z'/%3E%3Cpath d='M940.28 0.56c-0.1 0.08-0.21 0.15-0.31 0.23C940.07 0.72 940.17 0.64 940.28 0.56L940.28 0.56z'/%3E%3Cpath d='M377.19 230.31c-99.6 22.14-199.23 44.97-300.13 60.47c-25.58 3.8-51.29 6.98-77.06 9.29v2.47c25.89-2.38 51.71-5.62 77.4-9.52c100.92-15.75 200.53-38.84 300.14-61.24c55.68-13.04 111.85-27.39 166.62-43.9c140.16-42 277.63-99.64 395.81-187.09C821.6 87.93 684.07 145.2 543.85 186.84C489.06 203.21 432.89 217.41 377.19 230.31z'/%3E%3Cpath d='M591.9 163.02c-144.62 45.17-294.2 72.02-443.14 98.51c-37.28 6.26-74.81 11.82-112.39 15.92c-12.1 1.31-24.23 2.47-36.37 3.45v2.46c31.04-2.57 62.16-6.39 92.99-10.86c68.71-10.08 136.85-23.58 205.03-36.67c86.67-16.95 173.16-35.94 257.93-60.86c132.96-38.94 263.16-93.24 376.13-174.4l0 0C829.28 74.02 712.12 125.43 591.9 163.02z'/%3E%3Cpath d='M145 245.38c-48.04 7.06-96.46 13.1-145 16.53v2.45c23.75-1.73 47.46-4.09 71.06-6.88c73.97-8.87 148.61-21.75 222.1-34.19c48.72-8.45 98.79-17.91 147.05-28.61c170.1-37.42 339.46-93.9 483.47-194.12l0 0C695.1 158.27 413.95 204.01 145 245.38z'/%3E%3Cpath d='M214.64 219.77C143.44 229.58 71.82 238.98 0 243.15v2.44c71.93-4.35 143.64-13.95 214.9-23.95c79.43-11.05 158.91-23.26 237.39-39.92c162.55-34.2 323.99-87.67 462.64-181.08C778.7 91.94 620.53 144.71 461.1 178.59C379.64 195.95 297.15 208.54 214.64 219.77z'/%3E%3Cpath d='M915.05 0.57L915.05 0.57c-0.04 0.03-0.08 0.05-0.12 0.08C914.97 0.62 915.01 0.59 915.05 0.57z'/%3E%3Cpath d='M907.05 0c-0.07 0.04-0.14 0.09-0.2 0.13C906.91 0.09 906.98 0.04 907.05 0L907.05 0z'/%3E%3Cpath d='M0 224.67v2.43c82.68-3.8 165.27-13.99 247.32-23.59c228.96-27.86 463.6-75.61 659.52-203.38c-196.18 127.23-430.79 174.35-659.74 201.6C165.12 211.1 82.6 221.08 0 224.67z'/%3E%3Cpath d='M492.8 154.13C634.34 124.95 774.01 78.08 896.82 0.71C773.85 77.73 634.13 124.23 492.57 153.02c-94.67 19.24-190.69 30.9-286.85 39.5c-68.47 6.09-137 12-205.72 13.93v2.42c68.79-2.11 137.39-8.21 205.89-14.48C302.08 185.54 398.13 173.63 492.8 154.13z'/%3E%3Cpath d='M897.05 0.57c-0.08 0.05-0.16 0.1-0.24 0.15C896.89 0.66 896.97 0.62 897.05 0.57L897.05 0.57z'/%3E%3Cpath d='M888.21 0.57L888.21 0.57c-0.41 0.25-0.83 0.49-1.24 0.74C887.38 1.06 887.8 0.81 888.21 0.57z'/%3E%3Cpath d='M0 189.16v2.41c67.24-0.83 134.51-5.2 201.48-9.81c236.4-16.53 479.88-55.88 685.49-180.46C681.12 125.29 437.69 163.99 201.35 179.89C134.41 184.31 67.19 188.5 0 189.16z'/%3E%3Cpath d='M0 172.26v2.41c12.51 0.08 24.99 0.06 37.35-0.09c286.8-5.22 588.42-25.8 841.47-173.86c-253.34 147.33-554.8 167.1-841.49 171.56C24.97 172.39 12.5 172.38 0 172.26z'/%3E%3Cpath d='M879.08 0.56L879.08 0.56c-0.09 0.05-0.18 0.1-0.27 0.15C878.9 0.67 878.99 0.62 879.08 0.56z'/%3E%3Cpath d='M0 155.73v2.39c64.06 1.7 128.25 0.53 192.23-1c231.69-6.69 470.53-40.08 675.16-155.31C662.55 116.44 423.78 149.18 192.18 155.25C128.21 156.6 64.04 157.6 0 155.73z'/%3E%3Cpath d='M869.64 0.57L869.64 0.57c-0.75 0.41-1.5 0.83-2.25 1.25C868.14 1.4 868.89 0.99 869.64 0.57z'/%3E%3Cpath d='M412.61 130.93c-77.57 8.67-155.93 11.96-233.95 12.27C119.16 143.08 59.5 142.51 0 139.57v2.4c59.5 2.78 119.16 3.18 178.67 3.15c78.06-0.52 156.48-4.03 234.08-12.91C567.74 114.61 722.39 75.83 859.88 0.57l0 0C722.25 75.42 567.57 113.77 412.61 130.93z'/%3E%3Cpath d='M259.62 131.03c-19.07 0.39-41.02 0.46-60.12 0.33c-66.5-0.84-133.12-2.9-199.5-7.65v2.39c66.39 4.56 132.98 6.43 199.49 7.09c19.14 0.08 41.06-0.06 60.16-0.5c202.45-4.36 409.2-37.06 590.09-132.14l0 0C668.68 95.1 461.97 127.24 259.62 131.03z'/%3E%3Cpath d='M109.21 116.24C72.8 114.08 36.36 111.58 0 108.28v2.4c36.32 3.19 72.72 5.59 109.09 7.64c247.28 13.83 505.67-4.78 730.11-117.74V0.57C614.56 112.85 356.33 130.76 109.21 116.24z'/%3E%3Cpath d='M828.24 0.56c-0.3 0.15-0.6 0.28-0.91 0.43C827.63 0.85 827.94 0.71 828.24 0.56L828.24 0.56z'/%3E%3Cpath d='M87.86 101.77c-29.29-2.5-58.6-5.29-87.86-8.58v2.39c23.63 2.58 47.28 4.85 70.92 6.89C325.59 125.1 593.38 113.41 827.33 0.99C598.41 110.23 336.99 123.18 87.86 101.77z'/%3E%3Cpath d='M41.97 83.79c-14-1.67-27.99-3.44-41.97-5.32v2.38c11.15 1.46 22.3 2.85 33.45 4.17c261.86 31.95 539.32 27.99 782.7-84.53C575.19 111.09 300.99 115.39 41.97 83.79z'/%3E%3Cpath d='M816.55 0.31c-0.13 0.06-0.27 0.12-0.4 0.18C816.28 0.43 816.42 0.37 816.55 0.31L816.55 0.31z'/%3E%3Cpath d='M0 64.72v2.38c269 41.98 551.83 44.53 804.02-66.4C551.55 110.89 268.81 107.5 0 64.72z'/%3E%3Cpath d='M804.31 0.57L804.31 0.57c-0.1 0.04-0.19 0.08-0.29 0.12C804.11 0.65 804.21 0.61 804.31 0.57z'/%3E%3Cpath d='M792.54 0.53L792.54 0.53C551.07 101.55 279.94 98.87 25.58 55.87C17.05 54.45 8.52 52.98 0 51.47v2.37c8.4 1.46 16.81 2.88 25.22 4.26C279.85 100.39 551.22 102.31 792.54 0.53z'/%3E%3Cpath d='M779.94 0.57L779.94 0.57C532.14 98.53 258.62 90.03 0 38.44v2.38C258.82 91.6 532.41 99.26 779.94 0.57z'/%3E%3Cpath d='M267.62 64.95C177.51 58.32 88.08 45.31 0 26.07v2.06c88.16 19.04 177.51 32.55 267.52 38.33c168.38 10.67 340.78-5.53 499.23-65.89l0 0C608.21 60.43 435.88 76.12 267.62 64.95z'/%3E%3Cpath d='M337.12 60.17C223.62 56.15 110.59 39.99 0 13.61v2.06c110.62 25.97 223.45 42.69 337.09 45.77c140.54 3.67 282.9-13.23 415.63-60.87l0 0C619.91 47.79 477.58 64.26 337.12 60.17z'/%3E%3Cpath d='M373.07 53.33C247.21 51.25 121.97 32.76 0 1.37V3.4c2.29 0.58 4.58 1.17 6.87 1.75C126.57 35.1 249.56 53.3 373.05 54.46c122.88 1.1 246.73-14.47 363.51-53.55C619.71 39.62 495.89 54.8 373.07 53.33z'/%3E%3Cpath d='M737.62 0.56c-0.35 0.12-0.7 0.23-1.05 0.35C736.92 0.79 737.27 0.68 737.62 0.56L737.62 0.56z'/%3E%3Cpath d='M301.49 42.59C213.66 35.78 126.52 21.21 40.99 0h-8.99c88.41 22.12 178.55 37.14 269.4 43.91C442.8 53.84 586.91 42.57 722.6 0.17l0 0C586.84 42.13 442.79 52.95 301.49 42.59z'/%3E%3Cpath d='M457.07 38.35C332.22 43.16 207.19 28.64 85.64 0h-8.59c124.39 29.57 252.16 44.49 380.06 39.14c83.24-3.61 166.44-15.64 246.59-38.62l0 0C623.5 23.25 540.3 35.01 457.07 38.35z'/%3E%3Cpath d='M685.07 0.21C503.36 46.9 313.98 40.16 131.64 0h-8.4C308.31 41.17 500.75 48.21 685.07 0.21z'/%3E%3Cpath d='M173.59 0h-8.16c165.14 33.91 336.04 38.64 500.71 0h-0.01C504.23 37.49 336.01 32.93 173.59 0z'/%3E%3Cpath d='M643.46 0L643.46 0c-126.5 25.67-257.38 25.79-384.82 6.89C244.7 4.82 230.8 2.51 216.94 0h-8.11c14.17 2.6 28.39 5 42.65 7.14C381.27 26.67 514.68 26.58 643.46 0z'/%3E%3Cpath d='M613.56 0.52c-0.09 0.02-0.18 0.03-0.28 0.04C613.38 0.55 613.47 0.53 613.56 0.52L613.56 0.52z'/%3E%3Cpath d='M613.29 0.56C496.83 19.74 378.72 18 262.75 0h-8C373.36 18.75 494.23 20.59 613.29 0.56z'/%3E%3Cpath d='M579.98 0.31c-0.03 0-0.06 0.01-0.1 0.01C579.92 0.32 579.95 0.31 579.98 0.31L579.98 0.31z'/%3E%3Cpath d='M579.88 0.32C491.64 11.36 402.65 10.6 314.69 0h-8C397.29 11.2 489.01 12.01 579.88 0.32z'/%3E%3Cpath d='M529.24 0h-0.1c-48.07 3.29-96.19 3.19-144.09 0h-8.37C427.39 3.56 478.35 3.68 529.24 0z'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1621.38px' height='701px' viewBox='0 0 1621.38 701' enable-background='new 0 0 1621.38 701' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M1621.38 696.32v-4.55c-2.67 3.1-5.36 6.17-8.08 9.23h3.99C1618.66 699.44 1620.03 697.89 1621.38 696.32z'/%3E%3Cpath d='M1621.38 689.01v-4.5c-4.72 5.56-9.52 11.05-14.39 16.49h4.01C1614.5 697.04 1617.96 693.04 1621.38 689.01z'/%3E%3Cpath d='M1621.38 681.72v-4.49c-6.73 8.02-13.64 15.95-20.73 23.77h4.03C1610.37 694.64 1615.94 688.21 1621.38 681.72z'/%3E%3Cpath d='M1621.38 674.06v-4.54c-8.61 10.71-17.49 21.21-26.62 31.49h3.99C1606.49 692.18 1614.03 683.2 1621.38 674.06z'/%3E%3Cpath d='M1621.38 666.37v-4.55c-10.56 13.39-21.54 26.46-32.93 39.18h4.01C1602.42 689.72 1612.07 678.17 1621.38 666.37z'/%3E%3Cpath d='M1621.38 658.82v-4.53c-12.4 15.93-25.49 31.51-39.27 46.71h4.03C1598.45 687.23 1610.2 673.17 1621.38 658.82z'/%3E%3Cpath d='M1621.38 650.59v-4.54c-14.35 18.95-29.5 37.29-45.42 54.95h4.02C1594.43 684.73 1608.25 667.92 1621.38 650.59z'/%3E%3Cpath d='M1621.38 642.47v-4.5c-16.19 21.84-33.47 42.87-51.77 63.04h4.03C1590.45 682.21 1606.38 662.68 1621.38 642.47z'/%3E%3Cpath d='M1621.38 634.58v-4.5c-17.81 24.44-37.2 48.11-58.16 70.91h4.06C1586.68 679.59 1604.72 657.42 1621.38 634.58z'/%3E%3Cpath d='M1617.66 630.94c1.25-1.73 2.48-3.46 3.72-5.2v-4.47c-1.94 2.72-3.89 5.43-5.86 8.12c-18.24 24.94-37.85 48.85-58.74 71.61h4.05C1581.02 678.68 1600 655.3 1617.66 630.94z'/%3E%3Cpath d='M1611.42 631.05c3.37-4.63 6.69-9.29 9.96-13.99v-4.5c-21.63 31.08-45.43 60.65-71.08 88.44h4.06C1574.64 678.73 1593.69 655.39 1611.42 631.05z'/%3E%3Cpath d='M1621.38 608.15v-4.4c-23.34 34.35-49.36 66.88-77.6 97.25h4.08C1574.59 671.84 1599.16 640.81 1621.38 608.15z'/%3E%3Cpath d='M1621.38 598.53v-4.48c-25.09 37.93-53.34 73.71-84.47 106.95h4.09C1570.51 669.03 1597.39 634.76 1621.38 598.53z'/%3E%3Cpath d='M1577.4 650.32c15.59-19.82 30.29-40.37 43.98-61.58v-4.46c-14.31 22.2-29.73 43.68-46.13 64.34c-14.31 18.11-29.48 35.54-45.28 52.38h4.1C1549.18 684.68 1563.69 667.82 1577.4 650.32z'/%3E%3Cpath d='M1555.58 668.86c8.93-10.62 17.58-21.46 25.95-32.53c14.11-18.63 27.42-37.89 39.85-57.7v-4.46c-13.05 20.82-27.07 41.03-41.97 60.55c-8.42 10.97-17.05 21.77-25.99 32.32c-9.83 11.6-19.97 22.91-30.43 33.96h4.11C1536.85 690.53 1546.36 679.82 1555.58 668.86z'/%3E%3Cpath d='M1621.38 568.06v-4.46c-30.1 49.45-65.45 95.51-105.44 137.4h4.13C1558.35 660.3 1592.3 615.74 1621.38 568.06z'/%3E%3Cpath d='M1541.67 669.01c29.65-34.87 56.47-72.28 79.72-111.75v-4.5c-23.78 40.49-51.34 78.79-81.87 114.41c-9.91 11.56-20.14 22.83-30.68 33.83h4.13C1522.8 690.58 1532.37 679.93 1541.67 669.01z'/%3E%3Cpath d='M1534.62 669.09c32.61-38.19 61.9-79.38 86.76-123.06v-4.5c-25.36 44.71-55.4 86.79-88.91 125.72c-9.95 11.54-20.22 22.78-30.8 33.76h4.14C1515.69 690.6 1525.3 679.98 1534.62 669.09z'/%3E%3Cpath d='M1610.95 552.7c3.58-6.06 7.05-12.18 10.43-18.34v-4.93c-33.57 62.12-76.3 119.81-126.93 171.56h4.14C1541.5 656.03 1579.57 606.37 1610.95 552.7z'/%3E%3Cpath d='M1519.94 669.19c40.2-46 74.17-95.29 101.45-147.44v-4.43c-20.64 39.73-45.13 77.67-73.28 113.32c-19.14 24.56-39.62 48.04-61.33 70.36h4.16C1500.85 690.64 1510.53 680.04 1519.94 669.19z'/%3E%3Cpath d='M1512.34 669.61c42.34-47.57 78.04-101.09 106.93-157.8c0.72-1.42 1.41-2.85 2.12-4.28v-4.6c-1.31 2.66-2.63 5.31-3.97 7.95c-29.01 56.41-64.8 109.61-107.18 156.85c-10.23 11.34-20.81 22.38-31.51 33.29h4.19C1492.9 690.71 1502.77 680.3 1512.34 669.61z'/%3E%3Cpath d='M1535.12 632.92c34.37-44.02 63.26-91.43 86.26-141.3v-4.75c-23.42 51.07-53.01 99.55-88.35 144.43c-19.3 24.47-40.07 47.74-62.18 69.7h4.23C1496.41 679.5 1516.47 656.77 1535.12 632.92z'/%3E%3Cpath d='M1496.43 669.88c9.34-10.33 18.45-21.01 27.16-31.89c2.41-2.95 8.4-11.14 10.78-14.36c2.63-3.54 8.2-11 10.68-14.41c30.74-42.38 56.19-87.16 76.34-133.64v-4.81c-20.54 47.72-46.67 93.63-78.38 136.97c-2.52 3.47-8.13 10.85-10.71 14.34c-2.28 3-8.37 11.38-10.79 14.25c-8.71 10.8-17.83 21.41-27.17 31.66c-10.3 11.31-20.92 22.31-31.86 33.02h4.26C1476.88 690.88 1486.79 680.51 1496.43 669.88z'/%3E%3Cpath d='M1519.46 633.28c42.13-53.34 76.43-112.36 101.92-175.27v-4.88c-25.83 64.19-60.85 124.32-103.99 178.51c-19.46 24.42-40.45 47.58-62.82 69.36h4.27C1480.4 679.68 1500.66 657.07 1519.46 633.28z'/%3E%3Cpath d='M1553.81 574.97c27.9-43 50.39-87.9 67.58-134.12v-5.09c-17.52 47.59-40.67 93.77-69.55 137.92c-21.77 33.35-46.18 64.9-73 94.35c-10.32 11.31-21 22.29-32 32.96h4.29C1489.84 662.86 1524.29 620.61 1553.81 574.97z'/%3E%3Cpath d='M1473.19 670c65.5-71.85 117-156.87 148.2-249.01v-5.26c-31.28 93.54-83.59 179.78-150.29 252.36c-10.37 11.29-21.08 22.26-32.12 32.91h4.29C1453.51 690.94 1463.5 680.62 1473.19 670z'/%3E%3Cpath d='M1621.38 23.44v-0.19c-2.03-7.59-4.16-15.16-6.4-22.69C1617.24 8.2 1619.36 15.82 1621.38 23.44z'/%3E%3Cpath d='M1449 687.37c33.59-34.34 63.76-71.88 90.07-112.07c35.71-54.58 63.69-114.34 82.31-176.86v-5.26c-17.09 58.42-42.86 115.49-77.78 170.79c-27.87 43.74-60.28 84.42-96.69 121.35c-5.21 5.3-10.51 10.52-15.87 15.68h4.3C1439.94 696.5 1444.51 691.97 1449 687.37z'/%3E%3Cpath d='M1605.81 0.57c5.84 20 11.09 40.36 15.58 60.86v-1.14C1616.88 40.17 1611.66 20.23 1605.81 0.57L1605.81 0.57z'/%3E%3Cpath d='M1544.42 555.51c2.29-3.8 7.06-11.9 9.21-15.49c4.52-8.1 10.18-18.14 14.33-26.39c4.24-7.93 8.02-16.15 11.97-24.23l1.23-2.74c1.25-2.75 3.67-8.22 4.91-10.96c1.56-3.26 5.5-13.04 7-16.6c1.3-3.04 3.23-8 4.4-11.17c2.22-5.61 6.3-16.86 8.2-22.57c1.2-3.44 2.78-7.98 3.8-11.39c1.36-4.3 4.17-13.08 5.29-17.22c1.19-4.22 2.89-10.26 4.07-14.45c0.87-3.38 1.72-6.78 2.56-10.19v-6.21c-1.06 4.39-2.15 8.77-3.29 13.11c-0.33 1.36-1.15 4.42-1.56 5.78c-1.55 5.26-3.36 12.03-5 17.26l-3.64 11.41l-0.91 2.85c-3.13 9.41-7.54 21.73-11.19 30.97c-2.43 6.62-6.35 15.64-9.06 22.17c-2.63 6.15-5.87 13.01-8.6 19.11c-5.17 10.74-10.56 21.54-16.2 32.06c-2.54 4.76-7.59 13.59-10.21 18.29c-34.87 59.89-79.03 114.14-128.98 162.07h4.31C1471.77 657.4 1511.77 608.8 1544.42 555.51z'/%3E%3Cpath d='M1539.27 550.83c7.2-11.98 14.24-24.26 20.61-36.68c4.32-8.11 9.33-18.6 13.31-26.95c2.25-5 6.31-14.14 8.51-19.24c4.09-10.12 8.42-20.51 12.03-30.79c12.18-33.78 21.43-68.49 27.66-103.74v-7.73c-6.36 37.71-16.15 74.82-29.3 110.87c-3.64 10.24-8 20.59-12.11 30.65c-2.22 5.03-6.27 14.16-8.56 19.15c-9.34 19.89-19.68 39.3-30.97 58.16C1506 602.31 1462.69 654.52 1414.16 701h4.31C1464.65 656.11 1505.95 606 1539.27 550.83z'/%3E%3Cpath d='M1621.38 111.8v-2.82c-6.01-36.56-14.63-72.71-25.33-108.1C1606.89 37.2 1615.52 74.29 1621.38 111.8z'/%3E%3Cpath d='M1595.96 0.57c0.03 0.1 0.06 0.2 0.09 0.31C1596.02 0.77 1595.99 0.67 1595.96 0.57L1595.96 0.57z'/%3E%3Cpath d='M1479.39 624.72c4.66-5.66 11.08-14.33 15.61-20.23l0.88-1.22c0.99-1.36 4.21-5.85 5.27-7.32c6.76-9.33 14.11-20.12 20.28-29.83c1.24-1.98 3.7-5.76 4.86-7.6c0.92-1.3 6.77-11.23 7.78-12.86c52.82-88.45 82.64-188.32 87.31-290.56v-56.86c-0.14-3.06-0.29-6.13-0.47-9.19c-3.56-63.94-16.26-127.27-34.83-188.48l0 0c18.32 61.25 30.77 124.6 34.08 188.52c6.97 122.6-22.57 244.51-84.89 350.32c-2.85 4.69-7.97 13.26-10.91 17.91c-3.7 5.64-7.62 12.01-11.46 17.57l-6.78 9.89l-1.69 2.47c-3.55 4.93-7.87 10.85-11.44 15.76c-2.58 3.32-9.19 12.03-11.87 15.44c-23.26 29.24-48.52 56.82-75.6 82.56h4.33C1434.64 677.09 1457.88 651.62 1479.39 624.72z'/%3E%3Cpath d='M1406.16 696.09c6.64-6.43 14.77-14.66 21.14-21.39c3.09-3.33 7.25-7.68 10.29-10.97c0.96-1.1 8.81-9.83 10.03-11.21c2.21-2.38 5.69-6.58 7.86-9.11c2.47-2.97 5.44-6.28 7.76-9.19c15.03-18.23 29.96-38.22 43.12-57.84c1.83-2.68 4.74-7.29 6.56-10.08c4.46-6.73 10-16.04 14.24-23.02c3.27-5.85 7.19-12.44 10.35-18.33c1.22-2.23 6-11.34 7.05-13.28c2.44-4.7 6.93-13.99 9.35-18.86c1.75-3.78 5.82-12.8 7.49-16.41c1.52-3.57 5.43-12.89 7-16.63c20.29-50.25 33.83-102.96 40.26-156.76c6.59-55.69 5.28-112.25-2.38-167.77c-6.14-45.3-16.7-90.17-29.87-133.92c13 43.78 23.38 88.68 29.33 133.99c7.43 55.48 8.52 111.96 1.73 167.55c-7.37 59.62-23.48 117.84-47.81 172.77c-1.66 3.65-5.83 12.62-7.53 16.34c-2.41 4.73-6.91 14.09-9.39 18.76c-1.31 2.49-5.76 10.74-7.08 13.21c-2.67 4.95-6.13 10.72-8.9 15.63c-2.26 4.02-6.96 11.47-9.32 15.38c-3.82 6.29-8.21 12.69-12.18 18.89c-4.19 5.98-10.24 15.01-14.63 20.85c-6.4 8.84-14.95 20.11-21.85 28.56c-6.35 7.93-14.53 17.57-21.21 25.24c-2.74 3.07-9.32 10.32-12.04 13.35c-3.24 3.48-7.1 7.49-10.29 10.89c-8.76 9.25-19.13 19.34-28.46 28.28h4.32L1406.16 696.09z'/%3E%3Cpath d='M1576.19 0.57c0.08 0.25 0.15 0.5 0.22 0.75C1576.34 1.06 1576.27 0.81 1576.19 0.57L1576.19 0.57z'/%3E%3Cpath d='M1397.35 696.1c5.77-5.51 13.51-13.39 19.12-19.17c8.97-9.43 17.89-19.02 26.4-28.86c3.64-4.32 8.17-9.41 11.69-13.76c17.93-21.62 34.56-44.28 49.8-67.87c3.65-5.49 9.2-14.72 12.72-20.43c2.13-3.72 6.99-12.11 9.01-15.64c2.27-4.11 6.99-12.97 9.28-17.21c0.38-0.76 1.62-3.22 2.02-4.03c1.98-3.98 4.78-9.5 6.71-13.46c1.68-3.64 5.9-12.74 7.58-16.38c1.7-3.94 4.2-9.86 5.91-13.83c3.12-7.25 6.03-14.98 8.84-22.38c15.96-43.31 26.93-88.3 32.68-134.09c7.54-60.14 5.52-121.34-3.45-181.21c-6.51-43.02-16.82-85.57-29.35-127.21l0-0.01c12.35 41.67 22.5 84.25 28.84 127.28c8.73 59.83 10.51 120.96 2.74 180.98c-6.16 47.65-18 94.39-35.27 139.23c-3.47 9.22-7.59 18.64-11.5 27.69c-0.56 1.34-1.82 4.15-2.46 5.47c-0.75 1.54-5.66 12.13-6.35 13.58c-2.44 4.96-5.62 11.12-8.09 16.07c-2.58 4.9-7.32 13.63-10 18.45c-2.12 3.68-6.91 11.87-9.04 15.55c-1.75 2.77-7.69 12.47-9.47 15.3c-6.8 10.47-14.6 22.12-21.91 32.23c-2.55 3.49-6.6 8.92-8.9 12.06c-3.4 4.59-7.55 9.7-11.01 14.22c-3.35 4.32-8.11 9.91-11.36 13.94l-1.9 2.32l-1.96 2.27c-10.32 12.09-21.14 24.12-32.18 35.55c-8.78 9.24-19.19 19.32-28.54 28.24h4.33L1397.35 696.1z'/%3E%3Cpath d='M1392.54 692.15c6.7-6.66 14.64-14.65 21.06-21.51c5.53-5.75 12.94-13.98 18.29-19.99c8.24-9.48 17.3-20.13 25.07-30.05c2.77-3.55 6.52-8.36 9.24-11.88c0.94-1.25 7.8-10.58 8.94-12.11c3.25-4.37 7.23-10.29 10.4-14.77c78.74-114.65 116.13-244.81 107.9-383.78c-1.83-31.02-5.59-61.9-11.25-92.46c-6.43-35.42-15.56-70.54-25.77-105.04l-0.01 0.01c10.07 34.52 19.07 69.68 25.35 105.11c5.54 30.55 9.17 61.42 10.88 92.43c7.66 138.69-30.09 268.33-109.07 382.39c-3.1 4.33-7.21 10.39-10.42 14.67l-7.16 9.63l-1.79 2.41c-2.82 3.66-6.45 8.2-9.25 11.8c-7.76 9.82-16.85 20.44-25.1 29.84c-5.23 5.82-12.83 14.2-18.3 19.84c-10.16 10.8-21.7 22.02-32.56 32.3h4.35C1386.59 697.87 1390.41 694.17 1392.54 692.15z'/%3E%3Cpath d='M1379.37 696.13c2.24-2.11 6.48-6.23 8.61-8.41c30.02-29.62 57.44-61.76 81.98-96.06c1.75-2.47 5.19-7.38 6.93-9.85c2.11-3.05 7.84-11.76 10.02-15.03c3.29-5.11 7.16-11.41 10.41-16.57c1.98-3.35 7.12-12.11 9.15-15.57c1.26-2.27 3.78-6.89 5.08-9.23c34.57-62.49 57.51-130.74 67.71-201.42c9.46-66.53 7.12-134.46-3.75-200.66c-6.68-41.36-17.07-82.16-28.84-122.33c11.61 40.21 21.84 81.03 28.35 122.41c10.6 66.16 12.68 134.01 2.97 200.4c-10.44 70.44-33.59 138.4-68.3 200.58c-1.23 2.2-3.86 6.96-5.1 9.18c-2.03 3.4-7.17 12.11-9.18 15.48c-3.27 5.11-7.12 11.4-10.44 16.47c-3.73 5.52-9.58 14.46-13.52 19.83c-23.13 32.66-48.88 63.37-77.01 91.83c-7.33 7.37-16.72 16.48-24.52 23.81h4.35L1379.37 696.13z'/%3E%3Cpath d='M1546.55 0.56c0.04 0.15 0.09 0.3 0.13 0.45C1546.63 0.86 1546.59 0.71 1546.55 0.56L1546.55 0.56z'/%3E%3Cpath d='M1378.88 687.73c25.82-25.38 49.75-52.63 71.58-81.52c8.26-10.87 16.86-23.07 24.39-34.46c2.15-3.03 7.66-11.91 9.78-15.22c1.83-2.79 4.54-7.37 6.27-10.3c1.82-3.11 4.41-7.32 6.13-10.39c1.72-3.1 6.47-11.59 8.07-14.49l0.7-1.34l2.78-5.35c22.57-42.71 39.73-88.06 51.08-135.02c20.57-84.08 20.24-172.21 5.92-257.28c-6.92-41.33-17.41-82.14-29.06-122.37h-0.01c10.35 36.41 19.9 73.29 26.52 110.59c10.26 57.24 14.4 115.72 10.19 173.77c-5.64 76.21-26.35 150.54-60.93 218.68c-2.74 5.46-6.23 11.89-9.05 17.31c-2.43 4.26-7.12 12.77-9.62 17.01c-2.22 3.74-5.5 9.14-7.73 12.89c-2.33 3.84-7.28 11.42-9.67 15.22c-3.07 4.69-6.96 10.29-10.08 14.96c-2.66 3.88-7.8 10.89-10.47 14.68c-23.8 32.26-50.17 62.54-78.87 90.54c-4.67 4.71-11.06 10.6-16.09 15.35h4.36C1369.72 696.63 1375.03 691.65 1378.88 687.73z'/%3E%3Cpath d='M1448.41 596.84c134.79-182.73 141.77-384.69 78.61-596.27l0 0c62.22 211.46 54.63 413.03-80.59 594.82c-28.16 38.15-59.92 73.51-94.82 105.61h4.41C1389.98 669.23 1420.92 634.37 1448.41 596.84z'/%3E%3Cpath d='M1516.52 0.56c0.05 0.18 0.1 0.36 0.15 0.54C1516.62 0.93 1516.58 0.75 1516.52 0.56L1516.52 0.56z'/%3E%3Cpath d='M1408.78 635.06c46.66-55.16 84.95-117.74 110.64-185.36c56.9-152 40.25-296.09-2.75-448.6c41.07 148 57.82 288.71 5.23 436.7c-25.72 71.61-65.85 137.73-115.14 195.55c-20.41 23.89-42.3 46.48-65.52 67.64h4.42C1368 680.3 1389.09 658.3 1408.78 635.06z'/%3E%3Cpath d='M1506.25 0.56c0.03 0.12 0.06 0.24 0.1 0.36C1506.32 0.81 1506.29 0.68 1506.25 0.56L1506.25 0.56z'/%3E%3Cpath d='M1398.15 635.54c44.32-51.96 81.24-110.57 106.78-173.99c12.73-31.73 22.5-64.57 29.16-98.1c25.26-124.43 4.32-241.84-27.74-362.52c23.16 88.96 41.79 180.44 37.37 272.82c-0.43 11.43-1.56 24.54-2.7 35.98c-0.56 4.4-1.58 13.73-2.24 17.9c-1.65 11.77-3.69 23.92-6.1 35.55c-6.78 33.4-16.64 66.11-29.46 97.69c-25.69 63.1-62.71 121.36-107.07 172.97c-20.46 23.74-42.39 46.17-65.64 67.18h4.44C1357.31 680.46 1378.43 658.62 1398.15 635.54z'/%3E%3Cpath d='M1496.05 0.57c0.04 0.16 0.08 0.31 0.12 0.47C1496.13 0.88 1496.09 0.72 1496.05 0.57L1496.05 0.57z'/%3E%3Cpath d='M1387.81 635.58c73.74-85.34 125.85-189.32 141.09-301.64c2.55-17.44 4.27-36.35 5.12-53.97c4.6-94.44-14.98-187.84-37.85-278.94c22.49 91.12 41.71 184.54 36.75 278.88c-0.91 17.6-2.71 36.44-5.32 53.84c-15.63 111.89-67.95 215.33-141.79 300.1c-20.62 23.74-42.71 46.16-66.14 67.14h4.47C1346.66 680.49 1367.93 658.66 1387.81 635.58z'/%3E%3Cpath d='M1485.89 0.56c0.06 0.24 0.11 0.48 0.17 0.72C1486.01 1.04 1485.95 0.8 1485.89 0.56L1485.89 0.56z'/%3E%3Cpath d='M1344.34 671.25c93.88-95.02 158.06-209.37 174.98-342.93c1.78-14.1 3.13-29.3 3.91-43.53c4.93-95.91-15.16-190.71-37.17-283.52c21.64 92.83 41.35 187.64 36.05 283.46c-0.83 14.21-2.24 29.34-4.07 43.42c-15.25 116.34-66.11 218-142.88 305.96c-20.73 23.67-42.94 46-66.47 66.88h4.47C1323.82 691.36 1334.22 681.45 1344.34 671.25z'/%3E%3Cpath d='M1333.4 671.41c78.17-77.98 139.43-175.17 164.68-283.38c11.55-49 16.54-99.32 14.85-149.63c-2.3-80.02-19.81-158.91-36.92-236.82c17.24 79.9 34.8 160.84 36.12 242.87c0.92 48.21-4.3 96.34-15.55 143.23c-25.58 107.73-87 204.33-165.19 281.73c-10.96 10.86-22.23 21.39-33.81 31.6h4.5C1312.78 691.41 1323.23 681.56 1333.4 671.41z'/%3E%3Cpath d='M1475.8 0.57c0.07 0.34 0.15 0.67 0.22 1.01C1475.95 1.24 1475.87 0.9 1475.8 0.57L1475.8 0.57z'/%3E%3Cpath d='M1322.34 671.56c84.99-84.04 148.48-188.27 170.32-306.72c7.27-38.59 10.52-77.82 9.71-117.08c-1.66-83.46-19.82-165.75-36.61-247.2l0 0.01c16.46 81.48 34.3 163.8 35.63 247.21c0.62 38.17-2.58 76.31-9.55 113.84c-22.09 119.63-85.38 223.32-171.49 307.93c-11.01 10.82-22.34 21.3-33.98 31.45h4.53C1301.63 691.46 1312.12 681.66 1322.34 671.56z'/%3E%3Cpath d='M1455.76 0.6c0.02 0.08 0.03 0.16 0.05 0.23C1455.79 0.75 1455.78 0.67 1455.76 0.6L1455.76 0.6z'/%3E%3Cpath d='M1311.14 671.72c79.17-77.86 139.35-171.09 165.29-279.85c1-4.52 2.37-10.22 3.32-14.73c1.55-7.68 3.2-16.01 4.44-23.75c20.61-117.73-5.9-237.05-28.38-352.56c25.37 133.98 52.73 254.66 19.12 390.67c-26.27 108.28-86.58 200.92-165.76 278.19c-11.07 10.77-22.45 21.2-34.15 31.3h4.55C1290.34 691.52 1300.88 681.77 1311.14 671.72z'/%3E%3Cpath d='M1299.81 671.88c114.49-109.63 183.19-254.65 180.95-414.46c-0.97-86.71-19.64-171.87-34.95-256.86l0 0c14.97 85 33.31 170.2 33.94 256.87c1.62 159.29-67.37 303.63-181.91 412.42c-11.12 10.73-22.56 21.11-34.31 31.15h4.57C1278.92 691.57 1289.5 681.88 1299.81 671.88z'/%3E%3Cpath d='M1265.68 692.59c13.43-11.97 26.77-24.72 39.31-37.63c9.66-9.99 19.49-20.7 28.53-31.26c59.43-68.49 102.7-151.25 122.45-239.89c29.65-127.09 0.5-257.04-19.7-383.26l0 0.01c19.68 126.15 48.33 256.1 18.23 382.92c-20.02 88.24-63.44 170.54-122.92 238.55c-9.05 10.48-18.88 21.11-28.55 31.03c-12.53 12.8-25.88 25.46-39.3 37.33c-3.69 3.24-8.32 7.25-12.27 10.61h4.6C1259.31 698.18 1262.75 695.19 1265.68 692.59z'/%3E%3Cpath d='M1308.95 638.24c23.29-25.23 44.35-52.42 62.95-81.28c33.87-52.78 58.23-111.08 71.98-172.26c29.2-126.95 0.36-257.58-17.06-384.13l0 0c16.9 126.5 45.24 257.11 15.59 383.8c-13.47 58.95-36.86 115.18-69.17 166.29c-15.03 23.81-31.8 46.47-50.19 67.79c-25.68 29.75-53.75 57.36-83.9 82.56h4.62C1266.75 681.42 1288.52 660.48 1308.95 638.24z'/%3E%3Cpath d='M1297.26 637.96c12.25-13.31 24.08-27.23 35.14-41.55c67.87-87.7 108.27-196.57 111.29-307.58c3.08-96.23-15.11-192.75-26.2-288.03c10.72 95.3 28.52 191.81 25.07 287.99c-3.44 110.64-44.11 219.02-112.08 306.13c-11.07 14.21-22.91 28.04-35.16 41.24c-21.48 23.08-44.43 44.73-68.71 64.83h4.67C1254.55 681.38 1276.6 660.34 1297.26 637.96z'/%3E%3Cpath d='M1417.45 0.56c0.01 0.08 0.02 0.16 0.03 0.24C1417.47 0.72 1417.46 0.64 1417.45 0.56L1417.45 0.56z'/%3E%3Cpath d='M1284.79 638.28c22.06-23.57 42.08-48.97 59.85-75.92c56.99-86.42 87.23-187.73 86.93-291.25c0.43-90.58-14.75-180.58-23.39-270.54l0 0c8.28 89.96 23.1 179.99 22.32 270.52c-0.09 103.2-30.62 204.08-87.76 290.01c-17.8 26.77-37.83 51.99-59.89 75.37c-21.58 22.99-44.64 44.54-69.02 64.52h4.69C1241.9 681.49 1264.04 660.56 1284.79 638.28z'/%3E%3Cpath d='M1398.97 0.57c0.13 1.46 0.26 3 0.39 4.59C1399.23 3.57 1399.1 2.03 1398.97 0.57L1398.97 0.57z'/%3E%3Cpath d='M1272.09 638.6c22.16-23.49 42.24-48.85 60.02-75.81c32.31-48.9 56.22-102.85 70.73-159.64c30.16-116.19 10.8-236.92 0.35-354.46c-1.2-12.5-2.68-29.98-3.83-43.53c1.13 13.64 2.47 31.2 3.65 43.55c9.97 117.44 28.87 238.13-1.7 354.05c-14.68 56.52-38.71 110.19-71.09 158.78c-17.8 26.77-37.9 51.95-60.06 75.25c-21.67 22.9-44.84 44.34-69.32 64.21h4.72C1229.03 681.61 1251.26 660.79 1272.09 638.6z'/%3E%3Cpath d='M1259.18 638.92c43.25-45.39 78.3-97.95 103.57-155.33c26.87-60.93 41.21-127.13 43.07-193.64c3.16-96.64-10.83-193.02-15.96-289.39l0 0c4.75 96.34 18.36 192.77 14.83 289.34c-2.12 66.35-16.66 132.24-43.69 192.91c-25.39 57.04-60.49 109.25-103.74 154.28c-21.78 22.81-45.06 44.15-69.65 63.9h4.75C1215.91 681.73 1238.24 661.01 1259.18 638.92z'/%3E%3Cpath d='M1380.79 0.56c0 0.08 0.01 0.15 0.01 0.23C1380.8 0.72 1380.8 0.64 1380.79 0.56L1380.79 0.56z'/%3E%3Cpath d='M1354.62 472.89c17.71-42.97 29.4-88.17 34.75-134.34c9.03-80.28 1.74-161.15-3.42-241.44c-2.01-31.08-3.78-65.13-5.15-96.31c1.25 31.25 2.89 65.22 4.78 96.34c4.84 80.25 11.81 161.09 2.49 241.26c-5.51 46-17.34 91.02-35.16 133.78c-37.16 91.02-102.03 168.29-178.78 228.83h4.81C1254.48 640.27 1318.14 563.24 1354.62 472.89z'/%3E%3Cpath d='M1368.52 386.68c11.09-51.28 13.07-104.21 12.33-156.52c-1.67-76.49-8.02-152.83-9-229.35c0.68 76.51 6.72 152.88 8.1 229.36c0.54 52.22-1.64 105.05-12.9 156.19c-27.31 127.58-104.45 235.51-206.66 314.64h4.88C1266.02 621.43 1341.9 513.54 1368.52 386.68z'/%3E%3Cpath d='M1371.84 0.56c0 0.08 0 0.16 0 0.24C1371.85 0.73 1371.84 0.65 1371.84 0.56L1371.84 0.56z'/%3E%3Cpath d='M1218.34 639.91c23.22-23.98 44.19-50.05 62.62-77.89c35.11-53.07 60.61-112.64 73.91-174.9c4.77-22.74 8.12-45.75 10.03-68.91c3.48-41.18 3.56-82.76 2.54-124.03c-1.95-64.53-4.49-129.03-4.2-193.6l0 0c-0.54 64.56 1.74 129.1 3.44 193.62c0.85 41.24 0.62 82.78-3.02 123.91c-1.99 23.09-5.42 46.04-10.27 68.7c-13.49 61.99-39.12 121.23-74.31 173.98c-18.46 27.64-39.42 53.51-62.64 77.29c-22.12 22.56-45.76 43.58-70.74 62.93h4.85C1174.45 682.12 1197.1 661.73 1218.34 639.91z'/%3E%3Cpath d='M1168.58 673.67c86.04-74.78 148.53-174.24 172.43-286.15c5.9-27.48 9.35-56.04 11.39-84.07c1.49-19.95 2.24-40.56 2.54-60.55c0.27-15.91 0.23-32.56 0.09-48.48c-0.98-64.62-1.86-129.23-0.3-193.85l0 0c-1.81 64.61-1.18 129.24-0.45 193.86c0.08 15.92 0.05 32.56-0.28 48.45c-0.38 19.97-1.2 40.56-2.77 60.48c-2.15 27.96-5.7 56.44-11.69 83.84c-24.23 111.37-86.84 210.21-172.82 284.35c-11.65 10.21-23.64 20.02-35.95 29.46h4.87C1146.86 692.2 1157.86 683.1 1168.58 673.67z'/%3E%3Cpath d='M1346.3 0.56c-0.01 0.24-0.02 0.48-0.03 0.72C1346.28 1.04 1346.29 0.8 1346.3 0.56L1346.3 0.56z'/%3E%3Cpath d='M1153.06 674.28c23.05-19.88 44.51-41.54 64.16-64.78c58.77-69.75 99.47-155.04 114.17-245.17c2.55-15.68 4.74-32.42 6.2-48.21c2.31-24.08 3.55-48.6 4.26-72.75c1.53-80.7 0.53-161.43 4.41-242.08c-4.19 80.63-3.51 161.37-5.35 242.05c-0.8 24.13-2.13 48.62-4.54 72.66c-1.52 15.75-3.76 32.43-6.38 48.09c-15.01 89.78-55.86 174.56-114.67 243.81c-19.66 23.06-41.1 44.54-64.12 64.24c-11.59 10-23.5 19.61-35.71 28.86h4.92C1131.54 692.4 1142.43 683.5 1153.06 674.28z'/%3E%3Cpath d='M1337.97 0.57c-0.02 0.24-0.03 0.49-0.04 0.73C1337.94 1.05 1337.96 0.81 1337.97 0.57L1337.97 0.57z'/%3E%3Cpath d='M1138.17 674.07c20.07-17.14 38.93-35.65 56.45-55.4c57.86-65.25 99.65-145.06 118-230.44c13.47-63.54 16.04-128.7 17.63-193.43c1.14-63.67 3.71-130.06 7.68-193.5c-4.21 63.38-7.03 129.8-8.43 193.48c-1.84 64.62-4.66 129.77-18.35 193.13c-18.62 84.98-60.53 164.32-118.42 229.09c-17.51 19.59-36.36 37.94-56.41 54.93c-11.82 10.09-23.96 19.77-36.42 29.07h4.96C1116.21 692.34 1127.32 683.38 1138.17 674.07z'/%3E%3Cpath d='M1329.73 0.56c-0.01 0.12-0.02 0.24-0.03 0.36C1329.71 0.8 1329.72 0.68 1329.73 0.56L1329.73 0.56z'/%3E%3Cpath d='M1122.48 674.27c9.24-7.83 18.42-16.11 27.19-24.49c67.53-64.63 118.31-147.14 142.69-237.56c18.79-70.82 22.32-144.44 25.53-217.29c2.4-64.76 6.54-129.43 11.82-194.01c-5.53 64.57-9.92 129.23-12.57 193.98c-3.48 72.74-7.29 146.29-26.32 216.91c-24.62 89.95-75.5 171.93-143 236.03c-8.76 8.29-17.93 16.51-27.16 24.27c-11.9 10.03-24.13 19.65-36.67 28.89h5.01C1100.4 692.42 1111.57 683.52 1122.48 674.27z'/%3E%3Cpath d='M1106.45 674.47c21.92-18.28 42.4-38.22 61.26-59.64c51.12-58.08 89.55-127.55 109.86-202.3c14.78-55.09 20.63-112.08 24.77-168.82c5.01-81.16 10.63-162.28 19.22-243.16l-0.01 0c-8.9 80.84-14.83 161.95-20.16 243.09c-4.35 56.63-10.42 113.54-25.38 168.46c-20.51 74.37-59.05 143.42-110.19 201.07c-18.86 21.24-39.32 41-61.2 59.12c-11.99 9.97-24.31 19.53-36.93 28.7h5.05C1084.24 692.48 1095.48 683.65 1106.45 674.47z'/%3E%3Cpath d='M1126.47 641.86c69.9-68.62 120.95-156.92 142.02-252.8c14.47-63.71 19.37-129 24.71-193.96c5.06-64.66 12.4-129.1 20.15-193.48c-7.99 64.35-15.58 128.78-20.89 193.41c-5.59 64.86-10.74 130.12-25.43 193.68c-21.35 95.42-72.51 183.18-142.4 251.26c-22.79 22.3-47.65 42.43-73.57 61.02h5.1C1080.89 682.91 1104.64 663.39 1126.47 641.86z'/%3E%3Cpath d='M1313.47 0.57c-0.04 0.35-0.08 0.7-0.13 1.05C1313.38 1.27 1313.43 0.92 1313.47 0.57L1313.47 0.57z'/%3E%3Cpath d='M1073.33 674.87c17.47-14.25 34.05-29.55 49.66-45.82c55.33-57.56 97.67-127.83 120.99-204.28c15.29-50.99 23.1-103.85 29.22-156.62c9.06-89.14 19.11-178.15 32.12-266.82c-13.35 88.6-23.75 177.6-33.15 266.7c-6.32 52.66-14.31 105.41-29.77 156.26c-22.91 74.11-63.79 142.27-117.03 198.57c-16.82 17.77-34.81 34.41-53.83 49.81c-12.19 9.86-24.7 19.3-37.53 28.33h5.15C1050.8 692.62 1062.2 683.93 1073.33 674.87z'/%3E%3Cpath d='M1305.47 0.36c-0.05 0.33-0.09 0.66-0.14 0.98C1305.38 1.01 1305.43 0.69 1305.47 0.36L1305.47 0.36z'/%3E%3Cpath d='M1055.58 675.08c2.45-1.96 7.15-5.81 9.52-7.84c9.35-7.83 18.7-16.28 27.49-24.74c74.38-71.02 127.08-164.18 148.21-264.9c6.35-27.92 11.21-56.45 15.33-84.76c12.54-96.91 25.11-195.12 41.43-291.46c-16.68 96.24-29.64 194.44-42.55 291.3c-4.22 28.27-9.18 56.73-15.64 84.6c-21.45 100.28-74.24 192.86-148.62 263.33c-23.17 22.21-48.45 42.11-74.82 60.4h5.21C1032.89 692.7 1044.4 684.11 1055.58 675.08z'/%3E%3Cpath d='M1297.71 0.56c-0.05 0.27-0.09 0.54-0.14 0.81C1297.62 1.11 1297.66 0.84 1297.71 0.56L1297.71 0.56z'/%3E%3Cpath d='M1039.79 673.44c10.37-8.33 20.7-17.24 30.46-26.29c63.5-58.87 112.99-133.28 140.14-215.65c9.62-29.28 16.84-59.6 22.9-89.8c2.63-13.4 5.49-29.1 7.71-42.55c14.94-99.77 30.29-199.44 49.04-298.58l0 0c-19.13 99.05-34.87 198.69-50.18 298.39c-2.27 13.41-5.17 29.07-7.87 42.48c-6.16 30.12-13.48 60.34-23.19 89.53c-27.35 81.92-76.91 155.84-140.36 214.22c-8.98 8.25-18.49 16.48-28.01 24.11c-13.85 11.18-28.27 21.67-42.98 31.7h5.32C1015.4 692.22 1027.78 683.07 1039.79 673.44z'/%3E%3Cpath d='M1023.7 671.68c9.55-7.65 19.3-15.97 28.33-24.26c56.55-51.69 102.27-115.52 131.3-186.53c6.21-15 11.82-31.28 16.52-46.85c2.31-7.54 4.78-16.24 6.81-23.88c1.91-6.92 4.4-17.05 6.12-24.06c1.54-6.71 4.06-17.49 5.45-24.22c3.46-16.18 6.65-32.42 9.56-48.7c16.27-97.91 34.48-195.45 54.63-292.62l0 0c-20.47 97.1-39.05 194.58-55.74 292.41c-2.99 16.26-6.23 32.47-9.74 48.63c-1.44 6.75-3.91 17.34-5.53 24.17c-1.75 7.07-4.28 17.1-6.2 24c-2.06 7.63-4.55 16.28-6.89 23.8c-4.75 15.52-10.4 31.7-16.65 46.63c-28.37 68.69-72.47 130.55-126.88 181.06c-10.47 9.74-21.65 19.32-32.84 28.22c-14.03 11.09-28.62 21.59-43.51 31.51h5.38C997.46 691.72 1010.81 681.96 1023.7 671.68z'/%3E%3Cpath d='M979.03 690.99c20.5-14.35 40.02-30.05 58.45-46.98c45.48-41.6 83.32-90.85 111.81-145.5c25.69-48.98 41.25-102.43 53.74-156.09c3.72-16.22 7.17-32.51 10.46-48.82c18.28-98.17 39.42-195.69 61.38-293.08c-22.32 97.29-43.84 194.78-62.49 292.85c-3.35 16.29-6.85 32.55-10.63 48.74c-12.67 53.48-28.37 106.74-54.18 155.49c-28.58 54.31-66.44 103.2-111.87 144.45c-18.4 16.78-37.89 32.33-58.34 46.53c-6.07 4.23-12.21 8.36-18.4 12.41h5.43C969.3 697.72 974.19 694.39 979.03 690.99z'/%3E%3Cpath d='M1267.35 0.57c-0.01 0.04-0.02 0.08-0.03 0.11C1267.34 0.65 1267.35 0.6 1267.35 0.57L1267.35 0.57z'/%3E%3Cpath d='M1018.87 643.98c49.62-44.98 91.05-99.13 120.42-159.38c16.58-33.8 28.6-69.73 38.93-105.87c3.19-11.49 6.78-24.83 9.6-36.38c2.97-11.77 5.96-24.72 8.67-36.6c21.45-102.2 45.91-203.67 70.85-305.07c-25.32 101.29-50.16 202.7-71.99 304.81c-2.78 11.92-5.79 24.78-8.8 36.54c-2.86 11.52-6.49 24.82-9.73 36.3c-10.44 36.01-22.55 71.8-39.21 105.44c-29.47 59.88-70.91 113.64-120.49 158.25c-24.37 21.79-50.52 41.51-78.15 58.98h5.54C970.74 683.97 995.62 664.93 1018.87 643.98z'/%3E%3Cpath d='M999.32 644.37c9.33-8.3 18.72-17.25 27.43-26.16c44.41-45.17 80.25-98.03 105.77-156.01c6.63-15.2 12.65-31.44 18.11-47.13c13.64-39.79 24.29-80.54 34.21-121.38c22.56-98.34 49.42-195.57 75.05-293.13l-0.01 0c-25.99 97.46-53.22 194.62-76.15 292.86c-10.07 40.79-20.85 81.42-34.63 121.12c-5.52 15.66-11.56 31.8-18.24 46.94c-25.63 57.64-61.52 110.16-105.92 154.98c-8.71 8.83-18.09 17.72-27.4 25.93c-24.69 21.73-51.17 41.33-79.15 58.6h5.67C950.63 684.17 975.8 665.23 999.32 644.37z'/%3E%3Cpath d='M1252.45 0.56c-0.15 0.53-0.3 1.05-0.45 1.58C1252.16 1.61 1252.31 1.09 1252.45 0.56L1252.45 0.56z'/%3E%3Cpath d='M910.46 696.19c3.28-2.08 7.52-4.75 10.63-6.89c71.16-47.39 131.65-111.17 173.45-185.86c36.6-65.57 56.78-138.59 76.12-210.69c24.56-97.2 54.18-194.19 81.33-290.61c-27.5 96.3-57.5 193.21-82.42 290.33c-19.58 71.91-39.98 144.7-76.75 210.01c-41.89 74.21-102.34 137.48-173.36 184.39c-3.44 2.33-7.2 4.66-10.61 6.82l-10.67 6.73l0.36 0.58h4.36L910.46 696.19z'/%3E%3Cpath d='M891.63 694.59c6-3.69 12.91-8.32 18.76-12.28c68.7-46.99 127.18-109.31 167.94-181.99c6.75-12 13.11-24.57 18.9-37.07c24.64-54.41 42.07-111.77 58.58-169.06c27.21-98.22 59.92-196.01 89.22-293.52l0 0c-29.65 97.38-62.73 195.08-90.3 293.2c-16.7 57.16-34.31 114.37-59.12 168.62c-5.82 12.44-12.19 24.93-18.97 36.86c-40.85 72.21-99.29 134.05-167.86 180.58c-5.82 3.89-12.73 8.51-18.72 12.15c-3.8 2.34-10.25 6.24-14.62 8.91h5.77C885.04 698.64 889.28 696.02 891.63 694.59z'/%3E%3Cpath d='M873.9 691.35c29.21-18.35 56.76-39.22 82.33-62.38c2.01-1.86 10.04-9.44 11.78-11.06c3.8-3.71 8.8-8.79 12.59-12.54c4.03-4.31 8.16-8.63 12.16-12.96c1.74-1.98 9.18-10.38 10.7-12.11c2.99-3.56 7.31-8.85 10.31-12.44c2.29-2.81 5.67-7.3 7.95-10.19c3.73-4.65 9.85-13.37 13.4-18.22c1.14-1.69 4.24-6.28 5.42-8.04c4.43-6.39 8.94-13.83 13.07-20.4c2.6-4.57 8.02-13.63 10.48-18.19c5.18-9.44 10.09-19.01 14.74-28.73c33.24-70.05 54.58-144.88 78.06-218.55c25.95-81.9 55.11-162.99 81.06-244.88l0 0c-26.24 81.79-55.7 162.78-81.95 244.6c-23.74 73.52-45.32 148.2-78.78 218.06c-5.13 10.62-10.59 21.09-16.36 31.4c-1.68 2.89-7.2 12.32-8.94 15.28c-4.15 6.52-8.66 13.92-13.1 20.27c-1.2 1.76-4.27 6.28-5.43 7.98c-3.56 4.83-9.67 13.46-13.41 18.1c-2.27 2.86-5.65 7.33-7.95 10.12c-2.99 3.56-7.32 8.81-10.31 12.35c-1.64 1.86-8.95 10.06-10.69 12.02c-4 4.29-8.13 8.59-12.16 12.86c-3.78 3.71-8.78 8.76-12.58 12.44c-2.21 2.07-9.57 8.91-11.77 10.97c-25.53 22.95-53.03 43.63-82.17 61.78c-6.7 4.16-13.48 8.19-20.32 12.13h5.93C863.32 697.84 868.64 694.64 873.9 691.35z'/%3E%3Cpath d='M934.07 629.61c32.61-28.86 61.63-61.55 86.43-97.34c1.24-1.8 4.35-6.33 5.54-8.07c1.2-1.84 7.49-11.69 8.8-13.73c4.42-7.31 9.07-15.03 13.2-22.5c41.92-76.32 67.28-160.09 95.76-241.97c28.26-82.02 59.49-163.21 87.11-245.43l0 0c-27.91 82.12-59.44 163.2-88 245.12c-28.75 81.7-54.37 165.3-96.52 241.36c-3.55 6.46-7.75 13.26-11.53 19.61c-2.27 3.8-8.13 12.69-10.52 16.41c-1.18 1.71-4.33 6.25-5.55 8.01c-24.82 35.56-53.84 68-86.41 96.62C900.32 655.82 865.32 680.39 828 701h6.15C869.82 680.71 903.31 656.79 934.07 629.61z'/%3E%3Cpath d='M836.31 685.31c72.12-44.35 134.69-104.66 180.08-176.23c41.63-66.17 68.81-140.01 95.85-212.98c35.73-99.03 76.33-196.61 111.7-295.76l0 0c-35.72 99.02-76.67 196.46-112.75 295.37c-27.69 73.78-55.36 148.53-98.26 215.07c-45.2 69.94-107.12 128.74-178.11 172.09c-10.34 6.38-20.92 12.36-31.61 18.14h6.26C818.53 695.98 827.51 690.79 836.31 685.31z'/%3E%3Cpath d='M811.54 685.55c3.11-1.83 8.24-5.05 11.36-7c3.53-2.19 7.9-4.91 11.24-7.2c70.66-46.31 131.02-108.43 174.39-180.98c36.32-61.17 62.64-127.55 88.83-193.49c38.6-99.14 82.02-196.74 119.46-296.32l0 0.01c-37.78 99.45-81.56 196.9-120.51 295.9c-26.4 65.78-52.91 131.97-89.39 192.94c-43.45 72.09-103.77 133.76-174.29 179.62c-3.49 2.37-7.66 4.95-11.21 7.12c-2.8 1.71-8.41 5.24-11.33 6.92c-10.64 6.27-21.45 12.24-32.42 17.93h6.44C793.35 696.05 802.5 690.91 811.54 685.55z'/%3E%3Cpath d='M786.3 685.6c18.52-10.66 36.47-22.29 53.76-34.85c4.21-3.17 9.38-6.89 13.49-10.13c1.06-0.86 11.17-8.84 11.9-9.43c2.23-1.86 6.74-5.68 9.03-7.61c10.29-8.64 20.22-17.97 29.9-27.27c1.87-1.86 10.22-10.34 11.86-11.99c3.3-3.53 8.19-8.79 11.5-12.34c3.21-3.67 7.93-9.02 11.12-12.68c1.5-1.76 9.12-11.05 10.74-13c2.43-3.02 5.86-7.57 8.28-10.65c4.39-5.58 8.76-11.92 12.99-17.66c3.23-4.81 7.22-10.52 10.39-15.36c41.5-64.21 71.22-135.08 101.1-205.17c41.55-99.24 87.89-196.84 127.43-296.91l-0.01 0c-39.89 99.93-86.58 197.37-128.47 296.47c-30.09 69.92-60.01 140.57-101.67 204.56c-3.16 4.81-7.17 10.49-10.4 15.27c-4.24 5.71-8.6 11.99-13 17.54c-2.43 3.09-5.85 7.58-8.28 10.58c-1.66 2-9.22 11.13-10.74 12.91c-3.19 3.62-7.92 8.96-11.12 12.59c-4.26 4.47-9.51 10.29-13.86 14.63c-21.94 22.41-45.69 42.98-71.01 61.49c-5.96 4.48-13.09 9.29-19.22 13.54c-11.4 7.52-25.24 16.26-37.12 22.96c-11.03 6.28-22.24 12.24-33.61 17.89h6.63C767.47 696.08 776.94 690.95 786.3 685.6z'/%3E%3Cpath d='M1202.73 0.56c-0.07 0.17-0.14 0.34-0.21 0.51C1202.59 0.9 1202.66 0.73 1202.73 0.56L1202.73 0.56z'/%3E%3Cpath d='M734.6 699.12c12.27-6.06 24.33-12.52 36.18-19.37c57.43-33.12 108.77-75.82 151.81-126.25c2.19-2.63 6.59-7.87 8.78-10.49c3.05-3.9 7.53-9.56 10.57-13.44c1.3-1.76 8.7-11.77 10.16-13.75c2.65-3.88 9.17-13.05 11.62-16.91c51.22-78.27 86.44-165.39 125.79-249.87c38.07-82.3 78.3-164.18 113.02-247.96c-35.01 83.66-75.51 165.39-113.87 247.57c-39.61 84.28-75.09 171.2-126.52 249.21c-2.42 3.77-9 12.98-11.64 16.81c-1.51 2.03-8.82 11.86-10.17 13.67c-3.03 3.84-7.53 9.5-10.58 13.35c-2.19 2.58-6.59 7.84-8.78 10.42c-43.03 50.06-94.29 92.4-151.59 125.18c-11.83 6.75-23.86 13.14-36.09 19.16l-9.39 4.55h6.86L734.6 699.12z'/%3E%3Cpath d='M758.4 671.71c59.18-34.88 111.75-79.92 155.29-133.06c23.94-29.17 44.72-61.05 63.33-93.83c25.72-45.05 48.42-91.86 70.94-138.54c48.58-101.71 102.11-201.08 147.14-304.47c-45.38 103.24-99.24 202.43-148.16 303.98c-22.68 46.6-45.5 93.28-71.35 138.22c-18.67 32.62-39.5 64.35-63.47 93.36c-43.54 52.78-96.04 97.47-155.1 132.01c-18.04 10.72-37.31 20.41-56.35 29.28l-1.59 0.76c-0.54 0.24-1.08 0.46-1.63 0.69l-2.12 0.89h7.22C721.47 692.08 740.51 682.43 758.4 671.71z'/%3E%3Cpath d='M1195.66 0.56c-0.18 0.42-0.37 0.83-0.55 1.24C1195.29 1.39 1195.48 0.98 1195.66 0.56L1195.66 0.56z'/%3E%3Cpath d='M673.58 700.79c9.32-4.17 18.68-8.45 27.78-13.1c2.56-1.31 7.89-3.96 10.29-5.18c4.64-2.32 15.68-8.51 20.26-10.99c7.34-4.39 15.88-9.21 23.02-13.88c3.93-2.53 9.15-5.73 12.91-8.32c4.64-3.19 14.61-9.9 18.91-13.17c5.77-4.25 12.83-9.35 18.39-13.87c2.08-1.63 7.05-5.57 9.04-7.13c1.87-1.58 12.58-10.6 14.67-12.38c4.96-4.34 10.77-9.73 15.69-14.13c4-3.86 9.8-9.48 13.8-13.35c1-0.94 3.05-3.13 4.02-4.12l10.67-11.05c1.68-1.9 11.32-12.53 12.86-14.25c3.68-4.22 8.74-10.4 12.39-14.66c1.56-1.81 3.32-4.16 4.79-6c2.57-3.34 6.93-8.72 9.45-12.1c1.04-1.47 10.29-14.04 11.32-15.5c3.14-4.59 7.65-11.28 10.78-15.88c4.01-6.16 8.52-13.15 12.37-19.41c27.04-43.39 50.81-88.76 74.15-134.2c55.12-109.55 116.6-215.9 167.49-327.56l-0.01 0c-51.23 111.5-113.04 217.66-168.5 327.04c-23.47 45.37-47.35 90.59-74.5 133.87c-3.87 6.24-8.4 13.2-12.41 19.34c-3.15 4.62-7.67 11.21-10.8 15.8c-1.28 1.72-9.82 13.38-11.33 15.42c-2.56 3.37-6.79 8.63-9.46 12.03c-1.47 1.82-3.3 4.25-4.79 5.97c-3.65 4.28-8.73 10.37-12.39 14.58c-1.49 1.66-11.12 12.23-12.86 14.17l-10.66 10.98c-0.97 1-3.06 3.17-4.02 4.09c-4 3.84-9.79 9.42-13.79 13.26c-4.92 4.37-10.72 9.72-15.68 14.03c-2.13 1.78-12.69 10.68-14.66 12.29c-1.99 1.58-7 5.47-9.03 7.08c-5.54 4.47-12.61 9.57-18.36 13.76c-4.33 3.31-14.32 9.92-18.87 13.06c-3.8 2.62-9 5.73-12.89 8.24c-7.12 4.63-15.66 9.41-22.97 13.75c-4.62 2.51-15.52 8.52-20.2 10.88c-2.96 1.49-7.45 3.72-10.26 5.13c-9.08 4.6-18.42 8.84-27.72 12.96l-3.51 1.54c-0.61 0.28-1.1 0.44-1.7 0.66c-0.49 0.17-0.98 0.34-1.46 0.51h7.31C673.28 700.92 673.44 700.85 673.58 700.79z'/%3E%3Cpath d='M710.15 667.28c6.27-3.42 13.51-7.92 19.71-11.51c5.1-3.21 12.43-7.9 17.51-11.13c3.01-2.07 8.9-6.08 11.99-8.2c5.52-3.7 16.39-11.78 21.82-15.85c31.28-24.02 60.24-50.92 86.5-80.34c4.06-4.5 9.56-11.13 13.53-15.71c4.1-4.91 8.98-11.18 13.01-16.15c17.64-23.05 34.04-47.03 49.13-71.83c29.13-46.94 55.48-95.55 81.99-143.99c52.84-96.93 109.32-192.01 156.5-291.91c-47.46 99.76-104.2 194.67-157.33 291.45c-26.63 48.35-53.12 96.86-82.36 143.7c-15.13 24.71-31.57 48.59-49.24 71.55c-4.03 4.95-8.94 11.2-13.02 16.07c-3.99 4.59-9.5 11.16-13.54 15.63c-26.26 29.26-55.21 55.99-86.46 79.84c-5.47 4.01-16.2 12.05-21.79 15.73c-3.04 2.05-8.95 6.1-11.96 8.14c-5.07 3.2-12.4 7.86-17.48 11.04c-6.19 3.55-13.4 8-19.67 11.41c-1.88 0.97-16.3 8.91-18.23 9.73c-8.37 4.15-17.53 8.81-26.05 12.61c-9.31 4.26-18.75 8.33-28.22 12.22c-1.36 0.41-2.72 0.81-4.07 1.21h7.85c8.57-3.55 17.07-7.3 25.49-11.16c8.53-3.83 17.71-8.54 26.11-12.73C694.04 676.12 707.7 668.6 710.15 667.28z'/%3E%3Cpath d='M1181.89 0.57c-0.01 0.03-0.03 0.06-0.04 0.09C1181.86 0.63 1181.88 0.6 1181.89 0.57L1181.89 0.57z'/%3E%3Cpath d='M926.87 431.9c38.79-59.64 73.64-121.7 109.66-183.01c48-81.74 96.91-163.13 138.63-248.32l0-0.01c-41.95 85.08-91.07 166.32-139.28 247.93c-36.18 61.21-71.19 123.15-110.12 182.67C845.67 557.04 740.75 648.42 600.18 700.6c-0.17 0.07-0.34 0.13-0.52 0.18l-0.5 0.13l-0.34 0.09h7.25C744.39 648.01 847.88 556.78 926.87 431.9z'/%3E%3Cpath d='M634.71 674.26c80.55-37.45 151.65-93.66 209.87-160.5c33.5-38.07 61.91-80.19 89.63-122.54c40.06-61.44 81.65-130.69 120.69-193.2c39.82-64.63 79.13-129.7 113.48-197.45l0-0.01c-34.51 67.66-73.98 132.62-113.96 197.15c-39.37 62.62-80.89 131.45-121.16 192.88c-27.79 42.23-56.28 84.24-89.82 122.17C785.22 579.27 714.21 635.15 633.8 672.3c-22.92 10.63-46.37 20.1-70.25 28.36c-0.53 0.12-1.06 0.23-1.6 0.34h7.66C591.72 693.11 613.44 684.19 634.71 674.26z'/%3E%3Cpath d='M1161.55 0.56c-0.16 0.31-0.33 0.61-0.49 0.91C1161.22 1.17 1161.38 0.87 1161.55 0.56L1161.55 0.56z'/%3E%3Cpath d='M891.33 425.56c49.36-69.19 98.73-146.52 145.51-217.88c43.68-67.32 86.83-135.14 124.21-206.21c-37.55 70.98-80.86 138.69-124.69 205.91c-47.1 71.41-96.42 148.35-146 217.5c-69.79 99.15-157.79 185.16-268.23 237.6c-31.1 14.69-63.14 27.29-95.92 37.7c-1.21 0.27-2.54 0.55-3.92 0.82h8.45c25.13-8.11 49.81-17.53 73.95-28.24C724.06 620.52 817.28 531.23 891.33 425.56z'/%3E%3Cpath d='M857.45 443.07c7.12-9.49 18.7-24.52 25.65-34.11c29.49-40.08 58.21-80.83 86.56-121.7c64.51-93.65 130.44-186.73 184.98-286.69l0 0c-54.76 99.83-120.89 192.76-185.6 286.26c-28.44 40.8-57.24 81.48-86.82 121.49c-7.06 9.6-18.36 24.39-25.71 34.03c-47.66 61.83-103.06 118.28-167.07 163.22c-60.94 43.25-130.44 72.92-201.99 93.63c-1.7 0.48-3.41 1.01-5.12 1.45L480.2 701h8.83c71.38-20.88 140.66-50.76 201.4-94.05C754.47 561.78 809.84 505.12 857.45 443.07z'/%3E%3Cpath d='M444.27 700.59c5.01-1.3 11.32-2.96 16.34-4.36c47.07-13.04 93.21-29.81 136.95-51.63c97.72-49.08 178.71-126.05 246-211.3c16.17-20.48 32.44-41.61 48.14-62.43c89.37-120.47 181.34-239.9 255.99-370.3l0 0C1072.78 130.8 980.56 250.03 890.95 370.3c-15.74 20.78-32.03 41.87-48.26 62.31C775.35 517.55 694.37 594.22 596.75 643c-43.66 21.67-89.73 38.3-136.7 51.21c-5.01 1.37-11.3 3.04-16.31 4.32c-1.57 0.36-6.61 1.67-8.18 2.05c-0.9 0.17-1.8 0.28-2.7 0.42c-0.03 0-0.05 0.01-0.08 0.01h9.83C443.28 700.83 443.86 700.68 444.27 700.59z'/%3E%3Cpath d='M847.58 401.54c102.34-130 208.41-258.4 293.07-400.98c-84.94 142.4-191.25 270.57-293.84 400.37C719.17 561.5 599.58 654.28 395.85 697.53c-3.52 0.75-12.47 2.57-15.92 3.29l-1.42 0.15l-0.26 0.03h11.19c2.83-0.6 5.5-1.16 6.86-1.44C600.34 655.84 720.15 562.55 847.58 401.54z'/%3E%3Cpath d='M895.29 317.63c-83.55 99.96-168.71 208.5-279.73 278.99C524.15 655.37 417.25 685.57 310.48 701h14.06c102.39-16.23 204.26-46.58 291.84-103.1c110.93-70.71 196.18-179.66 279.49-279.78c84.26-101.84 168.8-204.4 237.64-317.55h0C1064.46 113.58 979.74 215.96 895.29 317.63z'/%3E%3Cpath d='M1127.08 0.57c-0.46 0.73-0.92 1.45-1.38 2.18C1126.15 2.02 1126.62 1.29 1127.08 0.57L1127.08 0.57z'/%3E%3Cpath d='M210.62 701c100.51-5.75 200.77-24.85 293.99-63.34c11.42-4.65 24.05-10.44 35.24-15.82c3.2-1.45 8.28-4.19 11.49-5.81c2.09-1.05 6.61-3.43 8.58-4.43c3.74-2.09 13.12-7.33 16.86-9.43c5.06-3.05 11.5-6.91 16.55-9.96c3.61-2.33 12.63-8.13 16.24-10.46c4.86-3.34 11.06-7.59 15.92-10.93c7.03-5.12 16.48-11.89 23.27-17.25c2.88-2.23 7.38-5.61 10.16-7.91c3.39-2.78 11.75-9.42 14.97-12.2c3.5-3.01 8.77-7.41 12.27-10.41c4.44-4 12.47-10.93 16.82-14.98c61.5-55.72 115.89-121.38 170.61-183.73c89.29-102.79 179.21-206.23 252.09-321.6c-73.08 115.23-163.18 218.48-252.65 321.1c-53.45 60.6-106.48 124.48-166.13 178.97c-5.27 4.95-13.63 12.31-19.14 17.16c-2.65 2.36-7.03 6.02-9.78 8.34c-2.82 2.38-7.02 5.98-9.87 8.23c-3.51 2.8-11.6 9.43-15.06 12.03c-3.7 2.79-9.07 6.98-12.75 9.77c-4.85 3.47-13.35 9.8-18.26 13.13c-3.82 2.58-9.45 6.49-13.26 9.06c-3.62 2.33-12.6 8.08-16.22 10.41c-1.97 1.2-6.3 3.76-8.26 4.95c-3 1.76-8 4.88-11.07 6.52c-3.52 1.91-13.32 7.52-16.89 9.28c-4.04 2.06-10.24 5.27-14.28 7.33c-7.85 3.69-18.28 8.72-26.24 12.1c-102.4 44.22-213.94 64.31-325.02 68.59c-63.75 2.38-127.57-0.75-190.81-8.74v2.62c27.26 3.39 54.64 5.86 82.06 7.39H210.62z'/%3E%3Cpath d='M1120.53 0.56c-0.11 0.17-0.22 0.34-0.33 0.51C1120.3 0.9 1120.42 0.73 1120.53 0.56L1120.53 0.56z'/%3E%3Cpath d='M558.76 592.88c3.38-2.03 12.89-7.66 16.42-9.78c3.63-2.29 12.63-8.05 16.12-10.26c10.17-6.78 21.51-14.61 31.37-21.81c4.77-3.54 13.06-9.78 17.78-13.43c80.79-62.07 154.41-146.48 223.35-221.57c34.37-37.54 68.5-75.32 101.82-113.8c12-13.91 25.29-29.54 37.04-43.67c41.7-50.41 82.06-102.48 117.54-157.49c-35.58 54.94-76.02 106.93-117.82 157.26c-11.82 14.14-25.04 29.68-37.11 43.6c-33.39 38.42-67.58 76.12-102.02 113.6c-69.22 75.05-142.66 159.04-223.61 221.02c-4.73 3.66-13.01 9.85-17.77 13.38c-9.85 7.16-21.19 14.97-31.35 21.7c-3.45 2.21-12.55 7.94-16.1 10.21c-3.53 2.05-12.96 7.72-16.4 9.73C395.29 684.14 183.67 703.47 0 681.14v2.6C184.03 705.72 395.9 685.93 558.76 592.88z'/%3E%3Cpath d='M651.37 504.42c-8.94 7.3-20.45 16.41-29.62 23.4c-3.98 2.98-12.34 9.13-16.44 12.16c-11.51 8.15-23.23 16.28-35.14 23.84c-90.02 58.25-194.64 90.6-300.33 105.15c-66.54 9-133.78 11.65-200.82 7.89c-23.07-1.25-46.08-3.22-69.02-5.87v2.6c14.55 1.65 29.13 3.03 43.73 4.13c75.35 5.62 151.54 3.71 226.4-6.71c105.9-14.78 210.72-47.41 300.83-105.97c11.91-7.59 23.64-15.76 35.16-23.95c4.07-3.05 12.44-9.16 16.45-12.21c9.17-7.02 20.69-16.16 29.62-23.49c69.95-57.35 139.34-132.8 202.41-198.14c92.61-96.94 184.83-195.56 259.64-307.23C1039.22 111.56 946.84 210 854.06 306.75C790.72 372.18 721.48 447.06 651.37 504.42z'/%3E%3Cpath d='M1114.27 0L1114.27 0c-0.01 0.01-0.02 0.03-0.03 0.04C1114.26 0.03 1114.27 0.01 1114.27 0z'/%3E%3Cpath d='M146.61 668.98c8.89-0.21 22.16-0.97 31.13-1.35c9.41-0.59 21.61-1.61 31.07-2.29c14.13-1.51 29.33-2.91 43.35-4.87c102.74-13.75 204.34-44.8 292.71-99.85c113.56-69.92 205.43-168.25 299.77-261.15c93.83-93.7 186.85-189.59 262.56-298.9v0c-75.91 109.15-169.09 204.85-263.09 298.37c-94.47 92.67-186.42 190.74-300.03 260.4c-86.48 53.67-185.63 84.29-286.04 98.23c-6.35 0.86-13.66 1.83-20.04 2.58c-8.94 0.93-20.44 2.1-29.38 3.02c-9.38 0.63-21.62 1.69-31.01 2.23c-8.73 0.3-22.29 1.15-31.06 1.28C97.57 667.85 48.62 665.77 0 660.5v2.59C48.65 668.26 97.63 670.24 146.61 668.98z'/%3E%3Cpath d='M726.93 391.69c-15.81 14.74-34.12 31.28-50.29 45.33c-22.96 20.02-47.15 40.02-71.4 58.47c-5.82 4.47-12.62 9.39-18.5 13.78c-11.57 8.27-24.8 17.59-36.73 25.29c-3.83 2.47-9.12 5.9-12.93 8.32c-4.98 3.01-13.43 8.28-18.41 11.16c-3.89 2.25-9.47 5.43-13.33 7.66c-4.91 2.77-14.01 7.57-18.93 10.24c-4.22 2.11-13.56 6.8-17.87 8.95c-5.64 2.61-12.5 5.77-18.14 8.38C374.41 622.8 292.52 642 210.01 650.21C140.35 657.38 69.8 656.95 0 649.78v2.59c69.89 7.02 140.51 7.31 210.23-0.01c81.67-8.29 162.72-27.31 238.03-60.32c6.73-2.97 14.31-6.61 20.99-9.68c4.29-2.16 13.66-6.86 17.9-9c4.94-2.68 14.04-7.52 18.95-10.3c3.88-2.21 9.46-5.48 13.34-7.7c5.07-2.92 13.41-8.2 18.42-11.22c3.87-2.44 9.1-5.9 12.94-8.36c11.93-7.72 25.19-17.11 36.74-25.4c5.02-3.72 11.05-8.22 16.06-11.95c23.41-17.87 46.95-37.15 69.14-56.51c12.06-10.4 24.99-22.05 36.81-32.74C846.01 280.78 990.48 153.25 1100.42 0.57h0C995.27 146.38 857.55 269.13 726.93 391.69z'/%3E%3Cpath d='M1093.55 0.57c-0.08 0.11-0.17 0.23-0.26 0.34C1093.38 0.79 1093.47 0.68 1093.55 0.57L1093.55 0.57z'/%3E%3Cpath d='M734.85 363.73c-52.96 47.02-106.79 94.08-164.49 135.18c-54.42 38.8-113.04 72.34-175.9 95.39c-68.49 25.24-140.76 39.59-213.42 45.66c-60.28 5-120.86 4.59-181.04-1.18v2.54c131.49 12.12 271.28 0.46 395.09-45.34c62.95-23.22 121.63-56.94 176.09-95.92c57.65-41.24 111.46-88.44 164.34-135.59C861.09 251.38 992.45 137.33 1093.29 0.91C992.23 137.09 860.63 250.91 734.85 363.73z'/%3E%3Cpath d='M152.79 631.38c96.05-6.69 192.02-27.52 279.21-69.14c4.98-2.35 11.24-5.55 16.22-7.99c3.5-1.68 12.42-6.49 16.02-8.39c6.05-3.14 15.03-8.35 21.06-11.72c4.81-2.75 10.74-6.42 15.54-9.24c5.96-3.57 14.57-9.07 20.44-12.77c25.03-16.22 50.1-33.97 73.83-52.07c28.73-21.77 56.82-44.79 84.46-67.92c16.84-14.24 38.31-32.42 55.15-46.67C858.49 239.04 987.38 131.01 1086.6 0.56l0 0c-99.43 130.2-228.55 238.01-352.5 344.17c-16.88 14.23-38.35 32.34-55.23 46.56c-27.68 23.07-55.8 46.02-84.55 67.72c-23.74 18.03-48.8 35.7-73.84 51.86c-5.86 3.69-14.48 9.15-20.43 12.71c-4.81 2.8-10.72 6.45-15.53 9.19c-6.08 3.31-14.94 8.56-21.04 11.66c-3.58 1.85-12.43 6.66-16 8.34c-4.96 2.41-11.22 5.61-16.2 7.94c-86.14 40.94-180.83 61.45-275.64 68.23c-51.85 3.64-103.91 2.99-155.64-1.57v2.57C50.79 634.31 101.89 634.92 152.79 631.38z'/%3E%3Cpath d='M335.55 582.65c90.97-29.45 173.14-80.48 249.42-137.28c76.11-57.29 149.27-118.37 222.84-178.84c97.15-80.65 192.38-165.17 270.73-264.67C1000 101.22 904.64 185.51 807.34 265.96c-73.68 60.31-146.96 121.24-223.15 178.36c-76.26 56.54-158.37 107.33-249.22 136.54C227.2 615.15 112.56 624.51 0 615.6v2.56C112.8 626.85 227.63 617.22 335.55 582.65z'/%3E%3Cpath d='M1079.58 0.57c-0.34 0.44-0.69 0.87-1.03 1.3C1078.89 1.43 1079.24 1 1079.58 0.57L1079.58 0.57z'/%3E%3Cpath d='M650.39 373.77c-103.17 78.69-210.82 156.94-335.99 196.12c-70.2 21.8-143.53 32.79-216.93 35.19c-32.51 0.99-65.05 0.33-97.48-1.97v2.57c28.54 1.96 57.16 2.64 85.77 2.02c77.52-1.55 155.12-12.86 229.21-35.98c125.29-39.49 232.94-118.03 336.1-197.05c148.43-115.06 302.4-227.43 421.67-374.11h0C953.2 146.99 799.03 259.02 650.39 373.77z'/%3E%3Cpath d='M1003.27 69.41c-65.3 66.39-137.66 125.34-211.71 181.62c-99.56 73.9-198.31 149.5-303.14 215.83c-108.7 68.43-219.18 109.96-347.65 121.22c-46.84 4.28-93.9 4.97-140.77 2.12v2.55c46.95 2.75 94.08 1.96 140.99-2.42c128.65-11.52 239.53-53.43 348.22-122.19c104.78-66.59 203.34-142.36 302.81-216.5c73.95-56.45 146.21-115.56 211.38-182.1c21.6-22.04 42.71-45.25 62.46-68.97h0C1046.07 24.24 1024.93 47.41 1003.27 69.41z'/%3E%3Cpath d='M633.17 349.78c-116.29 79.9-234.98 162.95-372.71 200.65C175.85 573.51 87.54 581.32 0 576.81v2.55c87.74 4.32 176.23-3.69 260.99-27c137.84-38.02 256.57-121.43 372.82-201.66C784 246.05 937.82 141.49 1057.94 1.66C937.54 141.23 783.56 245.44 633.17 349.78z'/%3E%3Cpath d='M1058.89 0.56c-0.31 0.37-0.64 0.72-0.95 1.09C1058.26 1.29 1058.58 0.93 1058.89 0.56L1058.89 0.56z'/%3E%3Cpath d='M586.92 362.92c-104.44 67.94-211.58 136.04-332.17 171.17c-69.12 19.9-141.22 29.24-213.08 29.65c-13.89 0.09-27.79-0.15-41.66-0.72v2.54c10.11 0.38 20.22 0.61 30.29 0.68c72.08 0.3 144.44-8.18 214.05-27.11c125.05-34.38 235.69-104.88 343.24-175.19C751.53 255.81 920.99 149.09 1051.9 0.52C920.7 148.8 751.06 255.13 586.92 362.92z'/%3E%3Cpath d='M540.53 373.85c-164.86 101.49-303.07 172.8-501.78 175.2c-12.92 0.2-25.84 0.09-38.75-0.29v2.54c12.93 0.36 25.86 0.44 38.79 0.21c199.16-2.84 337.52-74.53 502.43-176.53c177.3-110.7 361.79-218.1 503.52-374.41C902.69 156.57 718.03 263.53 540.53 373.85z'/%3E%3Cpath d='M761.14 222.77c-99.92 63.72-202.57 123.15-305.67 181.57c-84.01 46.52-171.73 88.63-265.7 110.39c-50.51 11.59-102.07 18.02-153.89 19.2c-11.96 0.3-23.92 0.34-35.88 0.12v2.53c11.98 0.19 23.96 0.13 35.94-0.2c51.97-1.29 103.67-7.85 154.31-19.58c94.11-22 181.9-64.36 265.95-111.14c103-58.65 205.53-118.3 305.35-182.25C861.05 159.2 956.79 87.63 1037.54 0.57l0 0C956.6 87.45 860.75 158.78 761.14 222.77z'/%3E%3Cpath d='M525.09 346.95c-111.85 61.46-225.56 124.24-350.9 153.14C117.13 513.16 58.53 519.15 0 518.83v2.52c58.71 0.19 117.47-5.94 174.67-19.17c125.46-29.2 239.19-92.29 351.05-154.08C704.16 248.9 887.75 149.63 1030.24 0.58C887.44 149.31 703.72 248.14 525.09 346.95z'/%3E%3Cpath d='M1030.25 0.57L1030.25 0.57c0 0-0.01 0.01-0.01 0.01C1030.24 0.58 1030.25 0.57 1030.25 0.57z'/%3E%3Cpath d='M838.26 151.44c-78.13 52.42-160.4 98.33-243.54 142.26c-76.98 40.11-153.56 81.16-232.13 118.09c-78.53 36.54-160.5 67.47-246.26 81.55C77.86 499.6 38.95 502.79 0 503.11v2.52c39.08-0.4 78.11-3.69 116.71-10.05c85.91-14.3 168-45.46 246.61-82.25C441.84 376.21 518.34 335 595.26 294.7c83.06-44.11 165.26-90.22 243.3-142.83c65.93-44.53 128.36-94.64 184.27-151.31l0 0C966.79 57.1 904.27 107.07 838.26 151.44z'/%3E%3Cpath d='M277.03 428.51C185.94 464 95.62 484.76 0 486.78v2.4c70.05-1.73 139.82-12.98 206.73-34.18c106.19-32.75 205.4-83.71 304.95-132.31c178.94-88.15 360.94-180.34 504.08-322.12C872.32 142.01 690.2 233.75 511.1 321.5C433.94 359 357.17 397.68 277.03 428.51z'/%3E%3Cpath d='M885.75 101.65c-95.09 67.65-199.23 121.61-304.34 171.82C453.09 332.23 326.44 397.1 190.94 437.97c-16.58 4.84-34.4 9.56-51.24 13.4C93.85 462.08 47.01 468.1 0 469.73v2.51c47.19-1.74 94.19-7.88 140.2-18.74c16.88-3.9 34.67-8.64 51.33-13.55c135.53-41.2 262.08-106.36 390.37-165.45c105.03-50.47 209.09-104.67 304.06-172.56c43.2-30.8 84.15-64.64 122.53-101.27h0C970.03 37.21 929.01 70.95 885.75 101.65z'/%3E%3Cpath d='M688.88 209.49c-87.42 44.03-177.51 82.57-267.46 121.07c-64.26 27.51-128.69 54.77-195.09 76.67C203.25 414.88 179.54 421.9 156 428c-38.87 10.13-78.44 17.33-118.38 21.55c-12.52 1.23-25.07 2.12-37.62 2.72v2.51c12.63-0.63 25.26-1.56 37.86-2.82c40.05-4.32 79.72-11.63 118.67-21.88c23.59-6.17 47.31-13.24 70.42-20.96c66.4-22.07 130.86-49.51 195.06-77.17c89.86-38.7 179.91-77.46 267.25-121.69c59.08-30.1 117.45-62.59 172.5-99.6C911.08 77.77 957.69 41 1001.15 0.7C957.6 40.9 910.92 77.55 861.54 110.32C806.43 147.19 748 179.54 688.88 209.49z'/%3E%3Cpath d='M1001.58 0.31c-0.14 0.13-0.29 0.26-0.43 0.39C1001.3 0.57 1001.44 0.44 1001.58 0.31L1001.58 0.31z'/%3E%3Cpath d='M568.62 253.97c-101.91 42.69-204.22 84.86-308.19 122.27c-58.62 20.47-118.48 37.97-179.72 48.57c-26.72 4.69-53.67 7.87-80.71 9.55v2.5c27.18-1.74 54.26-5 81.11-9.77c61.34-10.77 121.26-28.43 179.95-49.07c103.97-37.67 206.14-80.06 308.01-123C720.94 189.63 870.92 112.78 993.9 0.57l0 0C870.68 112.47 720.61 188.95 568.62 253.97z'/%3E%3Cpath d='M986.21 0.7L986.21 0.7c-0.01 0.01-0.03 0.03-0.05 0.04C986.18 0.73 986.19 0.71 986.21 0.7z'/%3E%3Cpath d='M409.25 303.48C274.24 354.13 140.85 404.66 0 415.83v2.5c141.12-11.49 274.59-62.35 409.78-113.44c140.49-52.72 281.29-107.49 410.69-184.27c58.57-34.94 114.52-74.77 165.7-119.88c-51.28 44.98-107.3 84.68-165.94 119.48C690.68 196.68 549.82 251.1 409.25 303.48z'/%3E%3Cpath d='M288.65 329.63C194.95 360.79 98.54 388.35 0 397v2.5c98.77-8.88 195.39-36.71 289.21-68.16c143.4-49.27 288.36-97.32 425.35-162.78C808.93 123.6 899.23 68.77 978.68 0.57V0.57c-79.59 68-169.98 122.6-264.43 167.32C577.15 233 432.1 280.72 288.65 329.63z'/%3E%3Cpath d='M511.89 239.59c-62.95 21.96-126.68 42.07-190.22 62.2C216.76 335.01 109.79 367.24 0 377.7v2.49c110.01-10.72 217.15-43.25 322.19-76.79c63.49-20.28 127.21-40.55 190.11-62.66C675.44 183.46 837.23 112.39 970.85 0.57h0C837.01 112.05 675.12 182.7 511.89 239.59z'/%3E%3Cpath d='M552.58 213.98c-40.01 13.93-81.75 27.27-122.3 39.62c-10.64 3.3-27.12 8.16-37.88 11.4c-101.24 29.29-202.13 61.14-305.83 80.64c-28.65 5.34-57.54 9.63-86.57 12.53v2.5c2.9-0.29 5.79-0.6 8.68-0.92c141.22-16.38 276.65-62.28 412.56-101.87c42.14-12.88 85.43-26.74 127.04-41.19c73.02-25.49 145.44-54.32 214.66-88.9C833.59 92.45 901.12 50.41 962.61 0.76c-61.6 49.49-129.21 91.35-199.92 126.51C694.89 160.92 624.04 189.13 552.58 213.98z'/%3E%3Cpath d='M962.87 0.57L962.87 0.57c-0.08 0.07-0.17 0.13-0.25 0.2C962.7 0.7 962.78 0.63 962.87 0.57z'/%3E%3Cpath d='M527.91 211.81c-46.33 14.81-93.82 28.59-140.71 41.42C259.97 286.5 131.25 325.81 0 338.73v2.48c131.44-13.23 260.25-52.88 387.6-86.53c46.87-12.94 94.36-26.84 140.66-41.77c75.16-24.23 149.55-52.18 220.92-86.03c72.8-34.74 142.5-76.45 205.98-126.32l0 0C891.59 50.27 821.81 91.8 748.94 126.35C677.52 160.01 603.1 187.77 527.91 211.81z'/%3E%3Cpath d='M947.87 0.56L947.87 0.56c-0.03 0.02-0.05 0.04-0.08 0.06C947.81 0.6 947.84 0.58 947.87 0.56z'/%3E%3Cpath d='M344.68 250.96c-50.05 12.1-100.42 24.34-150.65 35.59c-56.59 12.61-113.69 23.68-171.3 30.43c-7.56 0.88-15.14 1.68-22.72 2.4v2.47c7.68-0.75 15.35-1.58 23.01-2.49c57.66-6.91 114.82-18.13 171.45-30.89c50.22-11.37 100.57-23.74 150.6-35.97c62.4-15.43 125.29-31.99 186.7-51C679.35 156.11 824.42 94.93 947.79 0.62C824.23 94.6 679.08 155.4 531.42 200.44C469.99 219.29 407.09 235.7 344.68 250.96z'/%3E%3Cpath d='M940.28 0.56c-0.1 0.08-0.21 0.15-0.31 0.23C940.07 0.72 940.17 0.64 940.28 0.56L940.28 0.56z'/%3E%3Cpath d='M377.19 230.31c-99.6 22.14-199.23 44.97-300.13 60.47c-25.58 3.8-51.29 6.98-77.06 9.29v2.47c25.89-2.38 51.71-5.62 77.4-9.52c100.92-15.75 200.53-38.84 300.14-61.24c55.68-13.04 111.85-27.39 166.62-43.9c140.16-42 277.63-99.64 395.81-187.09C821.6 87.93 684.07 145.2 543.85 186.84C489.06 203.21 432.89 217.41 377.19 230.31z'/%3E%3Cpath d='M591.9 163.02c-144.62 45.17-294.2 72.02-443.14 98.51c-37.28 6.26-74.81 11.82-112.39 15.92c-12.1 1.31-24.23 2.47-36.37 3.45v2.46c31.04-2.57 62.16-6.39 92.99-10.86c68.71-10.08 136.85-23.58 205.03-36.67c86.67-16.95 173.16-35.94 257.93-60.86c132.96-38.94 263.16-93.24 376.13-174.4l0 0C829.28 74.02 712.12 125.43 591.9 163.02z'/%3E%3Cpath d='M145 245.38c-48.04 7.06-96.46 13.1-145 16.53v2.45c23.75-1.73 47.46-4.09 71.06-6.88c73.97-8.87 148.61-21.75 222.1-34.19c48.72-8.45 98.79-17.91 147.05-28.61c170.1-37.42 339.46-93.9 483.47-194.12l0 0C695.1 158.27 413.95 204.01 145 245.38z'/%3E%3Cpath d='M214.64 219.77C143.44 229.58 71.82 238.98 0 243.15v2.44c71.93-4.35 143.64-13.95 214.9-23.95c79.43-11.05 158.91-23.26 237.39-39.92c162.55-34.2 323.99-87.67 462.64-181.08C778.7 91.94 620.53 144.71 461.1 178.59C379.64 195.95 297.15 208.54 214.64 219.77z'/%3E%3Cpath d='M915.05 0.57L915.05 0.57c-0.04 0.03-0.08 0.05-0.12 0.08C914.97 0.62 915.01 0.59 915.05 0.57z'/%3E%3Cpath d='M907.05 0c-0.07 0.04-0.14 0.09-0.2 0.13C906.91 0.09 906.98 0.04 907.05 0L907.05 0z'/%3E%3Cpath d='M0 224.67v2.43c82.68-3.8 165.27-13.99 247.32-23.59c228.96-27.86 463.6-75.61 659.52-203.38c-196.18 127.23-430.79 174.35-659.74 201.6C165.12 211.1 82.6 221.08 0 224.67z'/%3E%3Cpath d='M492.8 154.13C634.34 124.95 774.01 78.08 896.82 0.71C773.85 77.73 634.13 124.23 492.57 153.02c-94.67 19.24-190.69 30.9-286.85 39.5c-68.47 6.09-137 12-205.72 13.93v2.42c68.79-2.11 137.39-8.21 205.89-14.48C302.08 185.54 398.13 173.63 492.8 154.13z'/%3E%3Cpath d='M897.05 0.57c-0.08 0.05-0.16 0.1-0.24 0.15C896.89 0.66 896.97 0.62 897.05 0.57L897.05 0.57z'/%3E%3Cpath d='M888.21 0.57L888.21 0.57c-0.41 0.25-0.83 0.49-1.24 0.74C887.38 1.06 887.8 0.81 888.21 0.57z'/%3E%3Cpath d='M0 189.16v2.41c67.24-0.83 134.51-5.2 201.48-9.81c236.4-16.53 479.88-55.88 685.49-180.46C681.12 125.29 437.69 163.99 201.35 179.89C134.41 184.31 67.19 188.5 0 189.16z'/%3E%3Cpath d='M0 172.26v2.41c12.51 0.08 24.99 0.06 37.35-0.09c286.8-5.22 588.42-25.8 841.47-173.86c-253.34 147.33-554.8 167.1-841.49 171.56C24.97 172.39 12.5 172.38 0 172.26z'/%3E%3Cpath d='M879.08 0.56L879.08 0.56c-0.09 0.05-0.18 0.1-0.27 0.15C878.9 0.67 878.99 0.62 879.08 0.56z'/%3E%3Cpath d='M0 155.73v2.39c64.06 1.7 128.25 0.53 192.23-1c231.69-6.69 470.53-40.08 675.16-155.31C662.55 116.44 423.78 149.18 192.18 155.25C128.21 156.6 64.04 157.6 0 155.73z'/%3E%3Cpath d='M869.64 0.57L869.64 0.57c-0.75 0.41-1.5 0.83-2.25 1.25C868.14 1.4 868.89 0.99 869.64 0.57z'/%3E%3Cpath d='M412.61 130.93c-77.57 8.67-155.93 11.96-233.95 12.27C119.16 143.08 59.5 142.51 0 139.57v2.4c59.5 2.78 119.16 3.18 178.67 3.15c78.06-0.52 156.48-4.03 234.08-12.91C567.74 114.61 722.39 75.83 859.88 0.57l0 0C722.25 75.42 567.57 113.77 412.61 130.93z'/%3E%3Cpath d='M259.62 131.03c-19.07 0.39-41.02 0.46-60.12 0.33c-66.5-0.84-133.12-2.9-199.5-7.65v2.39c66.39 4.56 132.98 6.43 199.49 7.09c19.14 0.08 41.06-0.06 60.16-0.5c202.45-4.36 409.2-37.06 590.09-132.14l0 0C668.68 95.1 461.97 127.24 259.62 131.03z'/%3E%3Cpath d='M109.21 116.24C72.8 114.08 36.36 111.58 0 108.28v2.4c36.32 3.19 72.72 5.59 109.09 7.64c247.28 13.83 505.67-4.78 730.11-117.74V0.57C614.56 112.85 356.33 130.76 109.21 116.24z'/%3E%3Cpath d='M828.24 0.56c-0.3 0.15-0.6 0.28-0.91 0.43C827.63 0.85 827.94 0.71 828.24 0.56L828.24 0.56z'/%3E%3Cpath d='M87.86 101.77c-29.29-2.5-58.6-5.29-87.86-8.58v2.39c23.63 2.58 47.28 4.85 70.92 6.89C325.59 125.1 593.38 113.41 827.33 0.99C598.41 110.23 336.99 123.18 87.86 101.77z'/%3E%3Cpath d='M41.97 83.79c-14-1.67-27.99-3.44-41.97-5.32v2.38c11.15 1.46 22.3 2.85 33.45 4.17c261.86 31.95 539.32 27.99 782.7-84.53C575.19 111.09 300.99 115.39 41.97 83.79z'/%3E%3Cpath d='M816.55 0.31c-0.13 0.06-0.27 0.12-0.4 0.18C816.28 0.43 816.42 0.37 816.55 0.31L816.55 0.31z'/%3E%3Cpath d='M0 64.72v2.38c269 41.98 551.83 44.53 804.02-66.4C551.55 110.89 268.81 107.5 0 64.72z'/%3E%3Cpath d='M804.31 0.57L804.31 0.57c-0.1 0.04-0.19 0.08-0.29 0.12C804.11 0.65 804.21 0.61 804.31 0.57z'/%3E%3Cpath d='M792.54 0.53L792.54 0.53C551.07 101.55 279.94 98.87 25.58 55.87C17.05 54.45 8.52 52.98 0 51.47v2.37c8.4 1.46 16.81 2.88 25.22 4.26C279.85 100.39 551.22 102.31 792.54 0.53z'/%3E%3Cpath d='M779.94 0.57L779.94 0.57C532.14 98.53 258.62 90.03 0 38.44v2.38C258.82 91.6 532.41 99.26 779.94 0.57z'/%3E%3Cpath d='M267.62 64.95C177.51 58.32 88.08 45.31 0 26.07v2.06c88.16 19.04 177.51 32.55 267.52 38.33c168.38 10.67 340.78-5.53 499.23-65.89l0 0C608.21 60.43 435.88 76.12 267.62 64.95z'/%3E%3Cpath d='M337.12 60.17C223.62 56.15 110.59 39.99 0 13.61v2.06c110.62 25.97 223.45 42.69 337.09 45.77c140.54 3.67 282.9-13.23 415.63-60.87l0 0C619.91 47.79 477.58 64.26 337.12 60.17z'/%3E%3Cpath d='M373.07 53.33C247.21 51.25 121.97 32.76 0 1.37V3.4c2.29 0.58 4.58 1.17 6.87 1.75C126.57 35.1 249.56 53.3 373.05 54.46c122.88 1.1 246.73-14.47 363.51-53.55C619.71 39.62 495.89 54.8 373.07 53.33z'/%3E%3Cpath d='M737.62 0.56c-0.35 0.12-0.7 0.23-1.05 0.35C736.92 0.79 737.27 0.68 737.62 0.56L737.62 0.56z'/%3E%3Cpath d='M301.49 42.59C213.66 35.78 126.52 21.21 40.99 0h-8.99c88.41 22.12 178.55 37.14 269.4 43.91C442.8 53.84 586.91 42.57 722.6 0.17l0 0C586.84 42.13 442.79 52.95 301.49 42.59z'/%3E%3Cpath d='M457.07 38.35C332.22 43.16 207.19 28.64 85.64 0h-8.59c124.39 29.57 252.16 44.49 380.06 39.14c83.24-3.61 166.44-15.64 246.59-38.62l0 0C623.5 23.25 540.3 35.01 457.07 38.35z'/%3E%3Cpath d='M685.07 0.21C503.36 46.9 313.98 40.16 131.64 0h-8.4C308.31 41.17 500.75 48.21 685.07 0.21z'/%3E%3Cpath d='M173.59 0h-8.16c165.14 33.91 336.04 38.64 500.71 0h-0.01C504.23 37.49 336.01 32.93 173.59 0z'/%3E%3Cpath d='M643.46 0L643.46 0c-126.5 25.67-257.38 25.79-384.82 6.89C244.7 4.82 230.8 2.51 216.94 0h-8.11c14.17 2.6 28.39 5 42.65 7.14C381.27 26.67 514.68 26.58 643.46 0z'/%3E%3Cpath d='M613.56 0.52c-0.09 0.02-0.18 0.03-0.28 0.04C613.38 0.55 613.47 0.53 613.56 0.52L613.56 0.52z'/%3E%3Cpath d='M613.29 0.56C496.83 19.74 378.72 18 262.75 0h-8C373.36 18.75 494.23 20.59 613.29 0.56z'/%3E%3Cpath d='M579.98 0.31c-0.03 0-0.06 0.01-0.1 0.01C579.92 0.32 579.95 0.31 579.98 0.31L579.98 0.31z'/%3E%3Cpath d='M579.88 0.32C491.64 11.36 402.65 10.6 314.69 0h-8C397.29 11.2 489.01 12.01 579.88 0.32z'/%3E%3Cpath d='M529.24 0h-0.1c-48.07 3.29-96.19 3.19-144.09 0h-8.37C427.39 3.56 478.35 3.68 529.24 0z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: var(--fancy-underlay-size, cover);
          mask-size: var(--fancy-underlay-size, cover);
  -webkit-mask-position: var(--fancy-underlay-position, 100% 100%);
          mask-position: var(--fancy-underlay-position, 100% 100%);
  transform-style: preserve-3d;
}
.fancy-underlay.fancy-underlay-contrast:before {
  background-color: var(--scheme-bg-contrast);
  opacity: 0.2;
}
.fancy-underlay:after {
  opacity: var(--fancy-underlay-opacity);
  background-color: var(--fancy-underlay-color);
}
.fancy-underlay.fancy-underlay-palette-fg {
  --fancy-underlay-color: var(--scheme-fg-gradient-start);
  --fancy-underlay-opacity: .15;
}
.fancy-underlay.fancy-underlay-extend-left.fancy-underlay-cut-right, .fancy-underlay.fancy-underlay-cut-left.fancy-underlay-extend-right {
  max-width: calc(100% - var(--fancy-underlay-offset));
}
.fancy-underlay:is(.fancy-underlay-no-adjust, .fancy-underlay-no-adjust-x).fancy-underlay-extend-left.fancy-underlay-cut-right, .fancy-underlay:is(.fancy-underlay-no-adjust, .fancy-underlay-no-adjust-x).fancy-underlay-cut-left.fancy-underlay-extend-right {
  max-width: 100%;
  left: 0;
}
.fancy-underlay:is(.fancy-underlay-no-adjust, .fancy-underlay-no-adjust-y).fancy-underlay-extend-top {
  margin-top: 0;
}
.fancy-underlay:is(.fancy-underlay-no-adjust, .fancy-underlay-no-adjust-y).fancy-underlay-extend-bottom {
  margin-bottom: 0;
}
.fancy-underlay.fancy-underlay-extend-left.fancy-underlay-extend-right {
  max-width: calc(100% - var(--fancy-underlay-offset) * 2);
  margin-left: auto;
  margin-right: auto;
}
.fancy-underlay.fancy-underlay-extend-left:not(.fancy-underlay-extend-right) {
  left: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-t-flip-x {
  --fancy-underlay-transform: scaleX(-1);
}
.fancy-underlay.fancy-underlay-t-flip-y {
  --fancy-underlay-transform: scaleY(-1);
}
.fancy-underlay.fancy-underlay-t-rotate {
  --fancy-underlay-transform: rotate(180deg);
}
.fancy-underlay picture, .fancy-underlay img {
  display: block;
}
.fancy-underlay.fancy-underlay-cut-left.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-cut-left:after {
  left: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-cut-right.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-cut-right:after {
  right: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-cut-top.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-cut-top:after {
  top: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-cut-bottom.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-cut-bottom:after {
  bottom: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-extend-left.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-extend-left:after {
  left: calc(var(--fancy-underlay-offset) * -1);
}
.fancy-underlay.fancy-underlay-extend-right.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-extend-right:after {
  right: calc(var(--fancy-underlay-offset) * -1);
}
.fancy-underlay.fancy-underlay-extend-top {
  margin-top: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-extend-top.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-extend-top:after {
  top: calc(var(--fancy-underlay-offset) * -1);
}
.fancy-underlay.fancy-underlay-extend-bottom {
  margin-bottom: var(--fancy-underlay-offset);
}
.fancy-underlay.fancy-underlay-extend-bottom.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-extend-bottom:after {
  bottom: calc(var(--fancy-underlay-offset) * -1);
}
@supports ((-webkit-mask-position: var(--fancy-underlay-position, 0% 0%)) or (mask-position: var(--fancy-underlay-position, 0% 0%))) {
  .fancy-underlay.fancy-underlay-image-v:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='526.6px' height='869.97px' viewBox='0 0 526.6 869.97' enable-background='new 0 0 526.6 869.97' xml:space='preserve'%3E%3Cpath d='M516.1 498.35c3.38-0.49 6.89-0.99 10.49-1.55v3.27c-3.44 0.52-6.8 1-10.03 1.47c-8.11 1.17-15.78 2.27-22.33 3.73c-0.94 0.21-1.87 0.42-2.77 0.65c-4.85 1.2-9.18 2.51-13.37 3.79c-11.45 3.47-21.35 6.47-34.81 4.84c-17.04-2.05-37.01-15.37-53.41-35.63c-4.83-5.97-9.53-12.38-14.07-18.58c-5.21-7.11-10.6-14.48-16.34-21.38c-4.91-6.15-10.47-11.76-16.58-16.72c-2.73-2.15-5.62-4.1-8.64-5.83c-26.66-15.18-59.72-9.36-81.77 1.16c-17.54 8.37-32.31 20.42-47.96 33.18c-4.49 3.66-9.02 7.35-13.65 10.98c-6.77 5.33-13.88 10.62-21.14 15.74c-27.82 19.63-56.77 36.26-84.77 52.34l-12.8 7.36c-29.92 17.27-56.18 30.86-72.14 37.37v-3.49c15.93-6.63 41.48-19.91 70.52-36.66l12.8-7.37c27.93-16.03 56.82-32.62 84.52-52.18c7.21-5.08 14.28-10.34 21.01-15.64c4.62-3.63 9.13-7.3 13.6-10.95c15.8-12.89 30.73-25.06 48.61-33.59c14.44-6.88 30.21-10.53 46.2-10.7c13.09 0 26.44 2.75 38.55 9.64c3.16 1.81 6.18 3.85 9.04 6.1c6.29 5.1 12.01 10.87 17.07 17.2c5.79 6.98 11.21 14.38 16.45 21.53c4.52 6.17 9.2 12.54 13.97 18.46c15.89 19.62 35.07 32.5 51.29 34.46c12.8 1.53 22.39-1.36 33.5-4.73c4.23-1.28 8.61-2.61 13.53-3.83c0.93-0.23 1.88-0.46 2.85-0.67C500.19 500.64 507.92 499.53 516.1 498.35z M493.1 476.26c-0.95 0.27-1.89 0.56-2.81 0.84c-5.34 1.68-10.03 3.51-14.57 5.29c-10.6 4.15-19.77 7.75-32.25 7.01c-16.48-0.96-36.19-13.2-52.7-32.7c-5.09-6.02-10.05-12.55-14.84-18.87c-5.19-6.85-10.57-13.93-16.28-20.61c-5.14-6.24-10.94-11.93-17.28-16.95c-2.88-2.22-5.91-4.23-9.08-6.02c-12.34-6.93-25.96-9.67-39.3-9.67c-15.7 0.14-31.2 3.56-45.5 10.04c-18.6 8.47-34.2 20.83-50.73 33.92c-3.92 3.12-7.87 6.25-11.9 9.35c-6.81 5.26-13.86 10.47-20.96 15.48c-24.45 17.27-49.77 32.66-74.26 47.54c-7.39 4.49-14.65 8.9-21.72 13.26c-26.9 16.58-52.46 31.46-68.91 40.12v3.49c16.44-8.57 42.78-23.88 70.52-40.96c7.06-4.36 14.31-8.77 21.69-13.25c24.54-14.9 49.9-30.32 74.44-47.65c7.14-5.04 14.22-10.27 21.07-15.56c4.04-3.11 8-6.25 11.94-9.37c16.37-12.97 31.82-25.21 50.09-33.53c22.11-10.06 55.27-15.49 82-0.49c3.03 1.71 5.94 3.63 8.7 5.76c6.18 4.89 11.81 10.43 16.82 16.51c5.66 6.61 11 13.66 16.18 20.47c4.82 6.35 9.8 12.91 14.94 19c17.05 20.15 37.58 32.78 54.89 33.8c13.2 0.74 22.62-2.94 33.56-7.22c4.49-1.76 9.13-3.58 14.37-5.21c0.89-0.28 1.8-0.55 2.73-0.82c7.96-2.26 17.63-3.92 27.88-5.67c1.57-0.28 3.15-0.55 4.76-0.83v-3.14c-1.79 0.31-3.55 0.61-5.29 0.89C510.98 472.28 501.23 473.95 493.1 476.26z M491.08 334.14c-0.9 0.58-1.79 1.17-2.64 1.78c-5.62 4.12-10.93 8.63-15.91 13.5c-8.95 8.37-17.4 16.29-29.79 19.37c-20.91 5.14-45.06-8.52-60.66-23.1c-6.78-6.34-13.26-13.44-19.53-20.3c-4.98-5.45-10.12-11.09-15.45-16.39c-5.65-5.78-11.83-11.01-18.45-15.64c-2.98-2.03-6.09-3.88-9.3-5.53c-13.22-6.77-28.58-10.19-44.71-10.19c-13.74 0.07-27.38 2.38-40.37 6.85c-23 7.81-43.01 21.06-64.92 36.3c-6.91 4.82-13.81 9.68-20.7 14.57c-34.67 24.6-62.99 45.51-88.5 67.64c-26.07 22.58-46.29 42.41-60.14 58.98v3.55l0.09 0.07c13.79-16.88 34.53-37.34 61.61-60.8c25.44-22.07 53.7-42.94 88.32-67.5c6.87-4.87 13.77-9.74 20.68-14.55c21.75-15.14 41.61-28.3 64.32-36c29.43-9.99 59.77-8.82 83.24 3.2c3.13 1.6 6.15 3.4 9.05 5.37c6.5 4.55 12.57 9.69 18.11 15.37c5.28 5.26 10.41 10.88 15.37 16.3c6.3 6.9 12.82 14.04 19.66 20.45c20.8 19.42 44.3 28.26 62.86 23.66c13-3.22 21.67-11.35 30.85-19.94c4.9-4.79 10.13-9.24 15.65-13.3c0.83-0.59 1.68-1.17 2.55-1.72c8.57-5.51 19.63-10.05 33.81-13.9c0.14-0.04 0.27-0.07 0.41-0.11v-2.46c-0.35 0.09-0.69 0.18-1.04 0.28C511.14 323.87 499.86 328.5 491.08 334.14z M493.72 515.06c-0.97 0.18-1.92 0.38-2.86 0.58c-4.65 1-8.82 2.09-12.85 3.14c-11.88 3.1-21.27 5.55-34.28 3.56c-16.09-2.46-35-15.67-50.58-35.34c-4.63-5.86-9.16-12.16-13.55-18.26c-5.26-7.31-10.7-14.87-16.53-22c-5.01-6.37-10.7-12.18-16.96-17.32c-2.85-2.27-5.86-4.32-9.02-6.14c-12-6.89-25.22-9.64-38.2-9.64c-16.13 0.18-32.03 3.95-46.53 11.04c-17.55 8.57-32.16 20.66-47.64 33.46c-4.72 3.9-9.47 7.84-14.36 11.7c-6.76 5.35-13.83 10.64-21.03 15.72c-29.18 20.59-61.11 38.37-89.28 54.07l-8.71 4.86c-29.67 16.54-55.53 29.2-71.33 34.93v3.49c15.87-5.59 42.41-18.53 72.93-35.53l8.7-4.86c28.25-15.73 60.27-33.56 89.59-54.25c7.24-5.12 14.37-10.44 21.17-15.83c4.9-3.89 9.68-7.83 14.41-11.75c15.32-12.67 29.79-24.65 46.99-33.05c22.01-10.75 55.01-16.79 81.65-1.49c3.01 1.74 5.89 3.7 8.61 5.86c6.08 5 11.6 10.64 16.46 16.83c5.76 7.06 11.17 14.57 16.4 21.84c4.41 6.12 8.96 12.45 13.64 18.36c16.09 20.31 35.78 33.97 52.67 36.55c13.69 2.08 23.85-0.57 35.61-3.63c4-1.04 8.13-2.12 12.72-3.1c0.91-0.2 1.84-0.39 2.78-0.57c5.91-1.15 12.7-2.01 19.89-2.93c3.95-0.5 8.08-1.03 12.36-1.64v-3.32c-4.43 0.63-8.7 1.18-12.78 1.7C506.57 513.02 499.73 513.9 493.72 515.06z M493.92 527.98c-0.97 0.17-1.93 0.33-2.86 0.5c-4.32 0.8-8.27 1.66-12.01 2.48c-12.26 2.69-21.95 4.81-35.22 2.36c-15.95-2.95-34.6-16.49-49.88-36.22c-4.48-5.79-8.87-12.01-13.12-18.02c-5.28-7.47-10.74-15.19-16.61-22.48c-6.15-7.64-11.35-13.02-16.85-17.44c-2.84-2.29-5.85-4.36-9-6.19c-11.9-6.9-25-9.65-37.86-9.65c-16.28 0.2-32.3 4.09-46.86 11.38c-17.23 8.6-31.56 20.64-46.72 33.37c-4.95 4.14-9.93 8.32-15.07 12.43c-6.7 5.35-13.78 10.67-21.05 15.8c-30.65 21.61-64.3 39.76-94 55.78l-4.67 2.51c-30.25 16.3-56.4 28.33-72.13 33.2v3.51c15.83-4.74 42.66-17.02 73.71-33.75l4.66-2.51c29.79-16.06 63.53-34.26 94.34-55.99c7.33-5.16 14.47-10.52 21.22-15.92c5.16-4.12 10.17-8.31 15.13-12.48c15.01-12.61 29.19-24.51 46.07-32.94c21.98-10.98 54.93-17.24 81.54-1.83c3 1.74 5.87 3.71 8.57 5.89c5.31 4.28 10.34 9.5 16.35 16.93c5.8 7.21 11.22 14.88 16.47 22.31c4.28 6.04 8.69 12.29 13.22 18.14c15.77 20.37 35.18 34.37 51.92 37.47c13.94 2.56 24.41 0.27 36.55-2.39c3.7-0.81 7.61-1.67 11.89-2.45c0.92-0.17 1.85-0.33 2.81-0.49c5.26-0.86 11.22-1.51 17.53-2.21c4.7-0.53 9.52-1.06 14.58-1.72v-3.38c-5.18 0.68-10.12 1.23-14.94 1.76C505.28 526.44 499.27 527.11 493.92 527.98z M494.36 553.82l-2.9 0.33c-3.48 0.42-6.73 0.87-9.82 1.31c-13.24 1.86-23.69 3.31-37.62-0.2c-15.67-3.94-33.79-18.14-48.49-37.98c-4.16-5.64-8.27-11.66-12.24-17.49c-5.32-7.81-10.82-15.89-16.79-23.52c-6.06-7.75-11.19-13.2-16.64-17.68c-2.82-2.32-5.81-4.42-8.96-6.28c-11.7-6.88-24.55-9.64-37.2-9.64c-17.35 0-34.32 5.19-47.47 12.05c-16.65 8.7-30.42 20.6-45.01 33.22c-5.29 4.57-10.76 9.3-16.36 13.85c-6.68 5.44-13.78 10.81-21.09 15.96c-33.34 23.5-70.3 42.1-100.01 57.05c-31.33 15.75-58.09 26.52-73.75 29.73v3.55c21.65-4.21 56.42-20.67 75.32-30.17c29.8-15 66.9-33.67 100.44-57.31c7.38-5.2 14.54-10.62 21.28-16.1c5.64-4.58 11.14-9.33 16.45-13.92c14.43-12.47 28.06-24.25 44.35-32.76c27.53-14.38 59.43-15.36 81.29-2.5c2.99 1.77 5.83 3.76 8.51 5.97c5.24 4.31 10.22 9.59 16.11 17.13s11.37 15.58 16.65 23.34c3.99 5.85 8.11 11.9 12.32 17.6c15.16 20.46 34.01 35.15 50.43 39.29c14.6 3.67 25.35 2.16 38.96 0.27c3.06-0.43 6.29-0.88 9.75-1.3l2.85-0.33c4.12-0.44 8.59-0.77 13.36-1.11c5.66-0.41 11.93-0.86 18.52-1.58v-3.5c-6.67 0.73-13.03 1.19-18.77 1.61C503.03 553.05 498.52 553.38 494.36 553.82z M397.1 537.5c-3.86-5.48-7.69-11.3-11.38-16.93c-5.36-8.17-10.9-16.61-16.95-24.59c-5.94-7.84-11.01-13.37-16.42-17.92c-2.79-2.36-5.78-4.49-8.92-6.37c-11.38-6.8-24-9.49-36.41-9.49v-0.01c-17.92 0-35.42 5.61-48.22 12.58c-16.12 8.79-29.4 20.61-43.46 33.14c-5.65 5.02-11.48 10.22-17.49 15.19c-6.67 5.52-13.78 10.94-21.14 16.12c-32.65 22.99-69.43 40.86-101.33 55.8c-32.86 15.35-59.54 24.63-75.37 26.23v3.63c21.82-2.06 57.46-17.5 76.87-26.59c32.05-15.01 69-32.97 101.88-56.12c7.44-5.23 14.62-10.71 21.36-16.29c6.07-5.01 11.93-10.23 17.59-15.28c13.9-12.38 27.04-24.08 42.79-32.67c20.83-11.35 54.56-18.99 81.05-3.16c2.97 1.79 5.8 3.8 8.45 6.04c5.2 4.37 10.1 9.72 15.88 17.34c5.97 7.88 11.48 16.27 16.8 24.39c3.72 5.66 7.55 11.5 11.46 17.03c14.55 20.58 32.85 35.95 48.93 41.11c15.54 4.99 26.79 4.26 42.35 3.21c2.13-0.14 4.32-0.28 6.62-0.42l2.88-0.16c3.06-0.15 6.29-0.25 9.71-0.35c6.66-0.21 14.04-0.43 21.94-1.11v-3.62c-7.92 0.69-15.36 0.91-22.06 1.12c-3.43 0.11-6.7 0.21-9.77 0.36l-2.91 0.15c-2.31 0.14-4.51 0.29-6.64 0.43c-15.17 1-26.13 1.74-41-3.04C428.82 572.32 411.22 557.45 397.1 537.5z M494.13 540.88c-0.98 0.14-1.94 0.27-2.88 0.42c-3.94 0.6-7.57 1.25-11.02 1.86c-12.7 2.27-22.73 4.07-36.32 1.11c-15.8-3.45-34.19-17.31-49.18-37.1c-4.32-5.71-8.56-11.83-12.67-17.75c-5.3-7.64-10.79-15.54-16.71-23c-6.09-7.68-11.25-13.1-16.74-17.56c-2.83-2.3-5.83-4.39-8.98-6.23c-11.8-6.88-24.77-9.64-37.52-9.64c-17.24 0-34.09 5.04-47.17 11.72c-16.93 8.65-30.97 20.61-45.84 33.28c-5.1 4.34-10.36 8.82-15.74 13.15c-6.72 5.42-13.81 10.76-21.08 15.88c-32.04 22.59-67.37 41.01-98.54 57.26l-0.79 0.42c-30.81 16.04-57.26 27.44-72.94 31.46v3.53c15.82-3.89 42.93-15.52 74.53-32l0.8-0.41c31.26-16.31 66.7-34.78 98.92-57.5c7.33-5.16 14.49-10.55 21.26-16.01c5.41-4.36 10.7-8.87 15.81-13.22c14.7-12.54 28.6-24.37 45.17-32.84c21.95-11.2 54.85-17.66 81.41-2.16c2.99 1.76 5.85 3.74 8.54 5.94c5.29 4.3 10.3 9.55 16.23 17.03c5.85 7.37 11.3 15.23 16.57 22.82c4.13 5.95 8.4 12.1 12.76 17.87c15.46 20.41 34.6 34.76 51.18 38.38c14.23 3.1 24.56 1.26 37.65-1.08c3.41-0.62 7.02-1.25 10.92-1.85c0.92-0.14 1.86-0.28 2.82-0.4c4.7-0.64 9.91-1.12 15.44-1.62c5.08-0.48 10.7-0.99 16.56-1.69v-3.44c-5.88 0.72-11.45 1.23-16.87 1.73C504.15 539.76 498.89 540.24 494.13 540.88z M494.56 566.74c-0.99 0.08-1.96 0.16-2.91 0.25c-2.94 0.27-5.7 0.55-8.36 0.82c-14.41 1.48-24.82 2.55-39.18-1.57c-15.51-4.44-33.38-18.97-47.79-38.86c-4.02-5.57-7.99-11.49-11.83-17.23c-5.33-7.98-10.85-16.24-16.85-24.04s-11.1-13.27-16.53-17.79c-2.81-2.34-5.8-4.46-8.94-6.33c-11.48-6.79-24.2-9.48-36.72-9.48c-17.81 0-35.2 5.45-47.93 12.24c-16.37 8.74-29.9 20.6-44.21 33.17c-5.47 4.8-11.13 9.77-16.95 14.53c-6.7 5.49-13.8 10.89-21.12 16.04c-31.78 22.38-67.16 40.14-100.67 56.42c-31.86 15.44-58.9 25.58-74.56 27.98v3.59c21.72-3.13 56.93-19.08 76.13-28.4c33.65-16.34 69.17-34.18 101.17-56.72c7.38-5.19 14.55-10.65 21.32-16.2c5.86-4.8 11.55-9.79 17.04-14.62c14.15-12.42 27.52-24.15 43.54-32.69c20.86-11.13 54.63-18.56 81.17-2.83c2.98 1.77 5.82 3.78 8.48 6c5.21 4.34 10.15 9.65 15.99 17.23c5.92 7.7 11.41 15.91 16.71 23.84c3.85 5.77 7.84 11.72 11.9 17.34c14.86 20.52 33.44 35.55 49.68 40.2c15.03 4.31 26.28 3.16 40.52 1.7c2.64-0.27 5.4-0.56 8.32-0.82c0.94-0.09 1.89-0.17 2.86-0.24c3.58-0.28 7.42-0.48 11.5-0.69c6.17-0.32 13.01-0.67 20.25-1.38v-3.57c-7.3 0.73-14.21 1.09-20.44 1.41C502.05 566.26 498.17 566.46 494.56 566.74z M489.1 387.26c-5.54 3.19-10.87 6.72-15.96 10.58c-9.23 6.71-17.94 13.04-30.15 14.79c-17.07 2.45-39.2-7.73-57.73-26.58c-6.16-6.28-12.1-13.22-17.84-19.93c-5.05-5.91-10.27-12.02-15.73-17.77c-5.48-5.95-11.52-11.35-18.04-16.12c-2.94-2.1-6.02-4-9.22-5.69c-12.49-6.62-27.26-9.95-42.77-9.95c-14.44 0.08-28.74 2.77-42.21 7.95c-22.05 8.4-40.77 21.95-60.59 36.3l-3.5 2.53c-6.9 5-13.84 9.97-20.8 14.9c-9.14 6.48-18.33 12.88-27.44 19.24c-22.57 15.74-43.89 30.61-63.79 45.91c-28.75 22.09-49.5 39.17-63.32 52.14v3.5l0.07 0.06c13.74-13.09 34.96-30.62 64.87-53.6c19.85-15.27 41.14-30.12 63.69-45.84c9.12-6.36 18.3-12.77 27.46-19.25c6.96-4.93 13.9-9.9 20.82-14.92l3.5-2.53c19.67-14.24 38.25-27.7 59.98-35.97c28.9-11 59.85-10.3 82.8 1.86c3.09 1.64 6.07 3.48 8.92 5.51c6.38 4.67 12.29 9.95 17.64 15.78c5.41 5.71 10.62 11.8 15.65 17.68c5.76 6.75 11.73 13.72 17.96 20.06c19.4 19.72 41.85 29.91 59.99 27.35c12.85-1.84 21.83-8.37 31.33-15.28c5-3.79 10.24-7.27 15.68-10.41c0.85-0.48 1.72-0.93 2.61-1.38c8.2-4.16 18.59-7.62 33.61-11.2v-2.71c-15.56 3.68-26.3 7.25-34.79 11.56C490.88 386.29 489.98 386.77 489.1 387.26z M489.24 400.11c-5.49 2.95-10.8 6.24-15.9 9.83c-9.32 6.31-18.12 12.26-30.31 13.67c-16.98 1.98-38.8-8.56-57.01-27.46c-6.01-6.25-11.8-13.14-17.41-19.8c-5.08-6.04-10.33-12.28-15.82-18.16c-5.43-5.99-11.43-11.43-17.92-16.24c-2.94-2.11-6.01-4.03-9.2-5.74c-12.35-6.6-26.93-9.92-42.28-9.92c-14.61 0.08-29.08 2.88-42.66 8.26c-21.45 8.39-39.64 21.72-58.89 35.82l-4.99 3.66c-6.89 5.03-13.83 10.03-20.82 14.98c-11.93 8.44-24.08 16.82-35.84 24.91c-19.77 13.61-38.45 26.47-56.07 39.62c-29.92 22.3-50.39 38.39-64.11 50.41v3.51l0.07 0.06c13.66-12.12 34.52-28.59 65.68-51.81c17.58-13.11 36.24-25.96 55.99-39.56c11.76-8.09 23.92-16.46 35.86-24.92c6.98-4.95 13.94-9.95 20.85-15.01l5-3.66c19.11-14 37.16-27.21 58.28-35.48c28.86-11.28 59.77-10.72 82.68 1.52c3.08 1.64 6.05 3.5 8.89 5.54c6.35 4.7 12.22 10.02 17.52 15.89c5.44 5.84 10.67 12.04 15.72 18.06c5.64 6.7 11.46 13.62 17.53 19.93c19.07 19.78 41.24 30.34 59.28 28.27c12.84-1.48 21.91-7.62 31.51-14.12c5.01-3.53 10.23-6.76 15.63-9.67c0.85-0.45 1.73-0.88 2.63-1.3c10.03-4.76 22.44-7.99 33.46-10.51v-2.78c-11.31 2.58-24.17 5.89-34.63 10.85C491.03 399.19 490.13 399.66 489.24 400.11z M491.61 372.91c-0.92 0.5-1.82 1.01-2.69 1.52c-5.56 3.43-10.9 7.21-15.97 11.33c-9.15 7.12-17.79 13.84-30.03 15.92c-17.2 2.94-39.58-6.93-58.46-25.71c-6.32-6.29-12.39-13.27-18.26-20.03c-5.04-5.8-10.25-11.78-15.67-17.42c-5.51-5.91-11.58-11.26-18.13-16c-2.96-2.09-6.04-3.97-9.24-5.66c-12.62-6.63-27.57-9.97-43.27-9.97c-14.25 0.07-28.38 2.65-41.73 7.64c-22.72 8.41-42.03 22.24-62.48 36.9l-1.82 1.31c-6.91 4.94-13.83 9.88-20.78 14.81c-6.02 4.27-12.04 8.51-18.05 12.73c-25.73 18.13-50.06 35.26-72.5 53.05c-27.71 21.93-48.72 40.04-62.52 53.84v3.5l0.08 0.08c13.68-13.94 35.22-32.58 64.04-55.41c22.39-17.75 46.68-34.85 72.39-52.96c6.01-4.23 12.03-8.48 18.05-12.74c6.94-4.91 13.87-9.85 20.79-14.82l1.83-1.3c20.29-14.55 39.47-28.29 61.86-36.58c28.93-10.71 59.93-9.89 82.92 2.19c3.1 1.64 6.09 3.47 8.96 5.48c6.41 4.64 12.35 9.89 17.75 15.68c5.38 5.59 10.56 11.55 15.58 17.32c5.9 6.79 12 13.82 18.38 20.17c19.75 19.65 42.45 29.52 60.71 26.42c12.88-2.18 21.77-9.1 31.18-16.43c4.99-4.05 10.24-7.77 15.71-11.14c0.84-0.5 1.7-0.99 2.59-1.47c8.3-4.47 19.03-8.26 33.76-11.89v-2.65c-0.01 0.01-0.03 0.01-0.04 0.03C511.31 364.37 500.21 368.27 491.61 372.91z M491.43 359.98c-0.91 0.52-1.8 1.06-2.67 1.6c-5.58 3.66-10.92 7.69-15.97 12.06c-9.08 7.54-17.65 14.65-29.93 17.07c-17.31 3.4-39.98-6.12-59.19-24.84c-6.46-6.3-12.67-13.32-18.67-20.12c-5.03-5.67-10.21-11.54-15.61-17.07c-5.56-5.87-11.67-11.19-18.24-15.89c-2.96-2.06-6.06-3.93-9.26-5.6c-12.76-6.66-27.9-10.01-43.78-10.01c-14.07 0.06-28.02 2.54-41.25 7.33c-23.41 8.42-43.35 22.55-64.44 37.52l-28.22 20.03c-28.1 19.9-57.16 40.47-82.47 61.15c-27.12 22.14-47.87 40.81-61.72 55.55v3.52l0.09 0.08c13.75-14.93 35.02-34.17 63.23-57.2c25.24-20.63 54.26-41.17 82.33-61.05l28.15-19.98c21.01-14.91 40.8-28.94 63.9-37.25c28.95-10.42 59.99-9.48 83.02 2.52c3.11 1.63 6.11 3.45 8.99 5.45c6.44 4.62 12.42 9.83 17.87 15.58c5.35 5.48 10.52 11.33 15.52 16.98c6.03 6.82 12.27 13.89 18.8 20.26c20.1 19.58 43.07 29.1 61.43 25.5c12.89-2.53 21.71-9.85 31.04-17.59c4.97-4.3 10.22-8.27 15.71-11.87c0.85-0.53 1.71-1.04 2.59-1.55c8.46-4.86 19.24-8.86 33.91-12.59v-2.6c-0.13 0.03-0.25 0.06-0.37 0.09C511.2 350.87 500.15 354.98 491.43 359.98z M489.6 425.77c-5.37 2.49-10.6 5.27-15.67 8.31c-9.95 5.75-18.54 10.72-30.74 11.45c-16.71 0.98-38.02-10.2-55.57-29.21c-5.7-6.19-11.21-12.97-16.55-19.53c-5.12-6.29-10.41-12.8-15.97-18.94c-5.34-6.06-11.27-11.58-17.71-16.46c-2.91-2.15-5.98-4.1-9.16-5.83c-12.11-6.58-26.37-9.87-41.38-9.87c-14.95 0.1-29.73 3.12-43.52 8.89c-20.37 8.4-37.57 21.32-55.79 35c-2.55 1.9-5.11 3.81-7.68 5.73c-6.99 5.21-14.02 10.31-20.87 15.15c-16.75 11.85-33.88 23.26-50.46 34.3c-15.01 9.99-29.18 19.43-42.81 28.99c-25.41 17.79-49.55 34.77-65.71 46.98v3.56c16.1-12.26 41.04-29.8 67.34-48.22c13.6-9.54 27.76-18.98 42.76-28.95c16.59-11.05 33.73-22.47 50.52-34.34c6.86-4.85 13.91-9.97 20.92-15.19c2.58-1.91 5.14-3.84 7.69-5.75c18.07-13.56 35.13-26.37 55.17-34.64c28.8-11.87 59.62-11.55 82.46 0.86c3.07 1.66 6.02 3.54 8.83 5.61c6.29 4.77 12.09 10.16 17.29 16.1c5.52 6.07 10.79 12.55 15.88 18.81c5.36 6.6 10.9 13.41 16.66 19.66c18.38 19.92 39.97 31.19 57.82 30.12c12.88-0.77 22.16-6.14 32-11.83c4.99-2.99 10.13-5.72 15.41-8.17c0.87-0.39 1.76-0.77 2.66-1.14c9.59-3.93 21.56-6.69 33.17-9.15v-2.9c-11.92 2.52-24.27 5.34-34.24 9.42C491.41 424.97 490.5 425.36 489.6 425.77z M489.76 438.6c-5.43 2.35-10.7 5.05-15.79 8.07c-9.97 5.67-18.62 10.58-30.6 9.83c-18.16-1.12-39.22-12.65-54.98-30.09c-5.55-6.15-10.92-12.87-16.13-19.38c-5.14-6.42-10.45-13.07-16.05-19.33c-5.28-6.12-11.18-11.69-17.6-16.6c-2.9-2.16-5.95-4.12-9.13-5.87c-11.98-6.56-26.09-9.85-40.94-9.85c-15.11 0.12-30.04 3.25-43.92 9.22c-19.9 8.41-36.66 21.17-54.42 34.68c-2.94 2.23-5.87 4.46-8.85 6.69c-6.75 5.08-13.79 10.21-20.89 15.23c-18.87 13.34-38.23 25.98-56.95 38.2c-12.93 8.44-25.14 16.41-36.99 24.46l-20.09 13.61c-17.71 11.99-34.47 23.33-46.42 31.66v3.54c12.01-8.41 29.51-20.26 48.03-32.79l20.1-13.61c11.82-8.04 24.03-16 36.95-24.44c18.74-12.24 38.13-24.88 57.04-38.26c7.13-5.05 14.18-10.19 20.96-15.29c2.98-2.23 5.93-4.46 8.86-6.7c17.6-13.4 34.24-26.05 53.79-34.32c28.76-12.16 59.55-11.98 82.35 0.51c3.06 1.68 6 3.57 8.8 5.66c6.27 4.8 12.02 10.23 17.17 16.2c5.55 6.2 10.84 12.81 15.95 19.21c5.22 6.54 10.63 13.3 16.23 19.51c16.25 17.99 38.08 29.87 56.96 31.03c12.84 0.85 22.27-4.54 32.21-10.19c4.98-2.97 10.14-5.61 15.46-7.92c0.87-0.37 1.76-0.72 2.68-1.06c9.1-3.43 19.94-5.82 33.04-8.47v-2.96c-13.49 2.73-24.63 5.17-34.06 8.73C491.59 437.86 490.66 438.23 489.76 438.6z M489.43 412.93c-5.44 2.72-10.71 5.75-15.81 9.07c-9.83 6.17-18.31 11.49-30.51 12.56c-16.85 1.48-38.41-9.38-56.29-28.33c-5.85-6.22-11.51-13.06-16.98-19.67c-5.1-6.16-10.37-12.54-15.89-18.54c-5.38-6.03-11.35-11.51-17.81-16.36c-2.93-2.13-6-4.06-9.18-5.78c-12.23-6.59-26.66-9.9-41.83-9.9c-14.78 0.09-29.41 3-43.1 8.58c-20.89 8.38-38.57 21.49-57.28 35.37l-6.4 4.73c-7.01 5.17-14.03 10.24-20.84 15.07c-14.43 10.21-29.17 20.21-43.43 29.87c-17.28 11.72-33.6 22.78-49.15 34.04c-21.3 15.38-47.69 34.66-64.92 48.7v3.51l0.04 0.04c17.09-14.09 44.52-34.13 66.5-50.01c15.51-11.22 31.82-22.28 49.08-33.98c14.27-9.67 29.01-19.68 43.47-29.91c6.83-4.83 13.86-9.91 20.89-15.09l6.4-4.73c18.56-13.77 36.1-26.78 56.66-35.03c28.84-11.58 59.7-11.14 82.58 1.19c3.08 1.66 6.04 3.53 8.87 5.59c6.32 4.74 12.14 10.1 17.4 15.99c5.48 5.94 10.73 12.29 15.8 18.43c5.5 6.64 11.19 13.52 17.1 19.8c18.72 19.86 40.58 30.76 58.54 29.2c12.86-1.13 22.03-6.88 31.74-12.98c5.01-3.26 10.2-6.24 15.54-8.92c0.87-0.42 1.74-0.82 2.65-1.22c9.61-4.24 21.61-7.24 33.3-9.83v-2.83c-12 2.63-24.41 5.69-34.41 10.11C491.23 412.08 490.32 412.5 489.43 412.93z M489.94 451.45c-5.37 2.13-10.6 4.59-15.67 7.36c-10.09 5.27-18.82 9.82-30.8 8.68c-18.11-1.73-38.91-13.59-54.27-30.97c-5.4-6.12-10.64-12.79-15.71-19.24c-5.16-6.56-10.49-13.35-16.12-19.74c-5.23-6.16-11.1-11.76-17.49-16.71c-2.89-2.19-5.93-4.17-9.11-5.92c-11.88-6.56-25.83-9.84-40.53-9.84c-15.27 0.12-30.35 3.37-44.32 9.53c-19.44 8.43-35.79 21.05-53.11 34.39c-3.29 2.53-6.59 5.08-9.94 7.61c-6.86 5.2-13.9 10.35-20.92 15.32c-20.87 14.74-42.33 28.44-63.09 41.7c-11 7.02-21.38 13.64-31.54 20.33c-25.3 16.64-50.24 32.65-67.31 43.57v3.52c17.1-10.93 42.83-27.43 68.94-44.61c10.14-6.68 20.52-13.3 31.5-20.32c20.79-13.27 42.28-27 63.2-41.78c7.05-4.98 14.11-10.15 21-15.37c3.36-2.53 6.67-5.1 9.96-7.63c17.17-13.23 33.38-25.73 52.48-34.01c28.3-12.27 59.81-12.2 82.23 0.18c3.05 1.69 5.98 3.59 8.77 5.69c6.23 4.84 11.94 10.3 17.05 16.31c5.58 6.33 10.88 13.08 16.01 19.61c5.1 6.49 10.37 13.19 15.83 19.37c15.83 17.92 37.38 30.16 56.21 31.95c12.91 1.23 22.39-3.74 32.46-9c4.97-2.71 10.09-5.11 15.35-7.21c0.88-0.34 1.78-0.66 2.7-0.98c9.19-3.18 20.19-5.36 32.89-7.81v-3.02c-13.05 2.52-24.34 4.73-33.87 8.03C491.77 450.77 490.85 451.11 489.94 451.45z M492.92 463.36c-0.95 0.3-1.88 0.61-2.8 0.93c-5.29 1.91-10.46 4.13-15.5 6.63c-10.24 4.87-19.07 9.08-31.06 7.53c-18.07-2.33-38.6-14.54-53.57-31.84c-5.24-6.08-10.34-12.68-15.28-19.07c-5.17-6.7-10.53-13.63-16.2-20.16c-5.2-6.2-11.02-11.84-17.39-16.83c-2.89-2.2-5.93-4.2-9.1-5.97c-11.59-6.45-25.5-9.67-40.15-9.67c-15.41 0.1-30.62 3.4-44.67 9.71c-19 8.45-34.97 20.92-51.87 34.13c-3.62 2.84-7.28 5.67-10.97 8.51c-6.8 5.2-13.84 10.38-20.94 15.4c-22.68 16.02-46.1 30.62-68.75 44.74c-9.07 5.65-17.95 11.19-26.54 16.67c-24.82 15.8-50.7 31.68-68.12 41.83v3.51c17.45-10.12 44.16-26.5 69.78-42.79c8.58-5.47 17.47-11.01 26.52-16.65c22.68-14.14 46.13-28.76 68.89-44.85c7.14-5.04 14.21-10.24 21.04-15.46c3.71-2.83 7.36-5.69 10.99-8.53c16.75-13.08 32.57-25.44 51.24-33.74c22.13-9.85 55.33-15.05 82.11-0.15c3.04 1.7 5.96 3.61 8.73 5.73c6.2 4.86 11.88 10.36 16.94 16.4c5.61 6.47 10.93 13.37 16.08 20.03c4.96 6.42 10.08 13.06 15.38 19.2c15.44 17.85 36.69 30.43 55.47 32.86c12.89 1.64 22.53-2.94 32.75-7.81c4.93-2.45 10.01-4.63 15.19-6.51c0.89-0.3 1.8-0.6 2.72-0.89c8.73-2.75 19.02-4.64 30.95-6.82l1.8-0.33v-3.08l-2.35 0.44C512.71 458.57 501.83 460.57 492.92 463.36z M493.3 489.17c-0.96 0.25-1.9 0.5-2.83 0.76c-5.16 1.45-9.71 3.02-14.11 4.55c-10.84 3.76-20.19 6.99-32.82 5.88c-16.35-1.46-35.8-14.01-52-33.58c-4.93-5.97-9.75-12.43-14.41-18.67c-5.22-7-10.61-14.24-16.36-21.06c-5.1-6.29-10.86-12.01-17.18-17.07c-2.86-2.23-5.89-4.25-9.05-6.05c-12.22-6.92-25.7-9.66-38.92-9.66c-15.85 0.15-31.48 3.69-45.85 10.37c-18.23 8.5-33.49 20.76-49.64 33.74c-4.21 3.38-8.45 6.79-12.78 10.16c-6.73 5.25-13.79 10.48-20.98 15.56c-26.11 18.44-53.24 34.48-79.48 49.99c-5.82 3.44-11.54 6.84-17.16 10.18C41.86 540.9 16 555.13 0.01 562.66v3.49c15.95-7.4 42.59-22.02 71.33-39.17c5.61-3.35 11.33-6.74 17.15-10.17c26.29-15.54 53.48-31.62 79.7-50.13c7.23-5.11 14.33-10.37 21.1-15.65c4.34-3.37 8.6-6.79 12.82-10.18c16-12.85 31.1-25 48.99-33.34c22.08-10.3 55.18-15.92 81.89-0.82c3.03 1.72 5.92 3.66 8.67 5.8c6.14 4.93 11.74 10.49 16.7 16.61c5.69 6.76 11.06 13.95 16.25 20.91c4.68 6.27 9.52 12.77 14.51 18.8c16.73 20.2 36.97 33.17 54.15 34.71c13.31 1.2 22.96-2.17 34.13-6.04c4.36-1.51 8.86-3.07 13.93-4.49c0.9-0.25 1.82-0.5 2.75-0.74c7.25-1.83 15.88-3.2 25.02-4.64c2.45-0.39 4.94-0.78 7.49-1.2v-3.2c-2.72 0.45-5.38 0.87-8 1.26C509.38 485.93 500.68 487.3 493.3 489.17z M23.2 869.97c-8.52-3.67-16.12-8.66-22.13-15.36l-1.06 0.92v5.81c3.44 3.3 7.26 6.15 11.36 8.63H23.2z M114.62 10.79c5.4-3.85 10.73-7.44 16.01-10.77h-2.86c-4.64 2.98-9.32 6.15-14.04 9.52C66.95 42.91 28.19 86.04 0.01 135.77v3.13C28.19 88.36 67.28 44.56 114.62 10.79z M397.93 547.59c-3.72-5.39-7.4-11.1-10.96-16.63c-5.38-8.35-10.94-16.98-17.03-25.15c-5.9-7.9-10.94-13.46-16.32-18.04c-2.79-2.38-5.77-4.53-8.91-6.42c-11.3-6.8-23.8-9.5-36.12-9.5c-18.02 0-35.64 5.78-48.5 12.93c-15.88 8.84-28.92 20.63-42.73 33.12c-5.81 5.25-11.8 10.67-18.01 15.84c-6.67 5.56-13.78 11.01-21.16 16.2c-31.81 22.4-67.83 39.76-102 55.18c-33.37 15.03-60.35 23.68-76.18 24.47v3.69c21.9-1.02 57.98-15.93 77.7-24.82c34.34-15.5 70.54-32.95 102.61-55.53c7.46-5.24 14.65-10.76 21.4-16.38c6.27-5.21 12.3-10.67 18.13-15.94c13.65-12.35 26.54-24.01 42.05-32.64c20.79-11.57 54.46-19.42 80.93-3.49c2.96 1.79 5.78 3.82 8.41 6.07c5.17 4.39 10.03 9.77 15.76 17.44c6.01 8.06 11.53 16.64 16.88 24.93c3.58 5.56 7.27 11.3 11.03 16.74c14.26 20.64 32.27 36.35 48.17 42.02c16.12 5.76 28.03 5.37 44.53 4.83l7.47-0.22c2.53-0.05 5.19-0.07 7.96-0.1c7.14-0.05 15.04-0.12 23.56-0.75v-3.72c-7.85 0.58-15.72 0.85-23.59 0.8c-2.79 0.02-5.46 0.05-8.01 0.1l-7.51 0.23c-16.69 0.54-27.71 0.9-43.17-4.62C429.12 582.81 411.78 567.62 397.93 547.59z M126.1 38.73C152.88 19.62 178.15 6.89 203 0.02h-5.47c-23.4 7.2-47.21 19.54-72.33 37.46C71.71 75.65 28.7 126.57 0.01 185.53v3.53C28.58 129.11 71.95 77.35 126.1 38.73z M122.52 29.21c17.31-12.35 33.98-22.03 50.32-29.19h-3.76c-15.43 7.04-31.17 16.32-47.46 27.94C70.31 64.57 28.65 112.91 0.01 168.83v3.39C28.57 115.38 70.59 66.25 122.52 29.21z M60.31 0.01h-2.3c-21.72 19.57-41.17 41.49-58 65.33v2.67C17.38 43.11 37.61 20.28 60.31 0.01z M75.55 0.01h-2.38C45.01 23.86 20.4 51.53 0.01 82.15v2.78C20.9 53.15 46.33 24.53 75.55 0.01z M93.83 0.01h-2.51C55.16 28.2 24.28 62.45 0.01 101.12v2.9C24.72 64.08 56.48 28.82 93.83 0.01z M110.19 1.45c0.67-0.48 1.35-0.96 2.03-1.44h-2.66c-0.09 0.06-0.18 0.13-0.27 0.19C64.92 31.86 27.77 72.29 0.01 118.8v3.01C27.8 74.54 65.28 33.49 110.19 1.45z M119.47 20.74c11.25-8.02 22.23-14.92 33.02-20.73h-3.21c-10.05 5.56-20.27 12.04-30.71 19.49C69.06 54.83 28.52 101.08 0.01 154.52v3.28C28.47 103.48 69.35 56.5 119.47 20.74z M399.49 567.79c-3.41-5.18-6.72-10.53-10.06-15.92c-5.42-8.75-11.02-17.81-17.22-26.37c-5.81-8.01-10.77-13.65-16.11-18.28c-2.76-2.42-5.73-4.6-8.86-6.52c-11.12-6.8-23.42-9.5-35.55-9.51c-18.21 0-36.04 6.1-49.02 13.63c-15.42 8.94-28.03 20.69-41.38 33.13c-6.08 5.67-12.38 11.53-18.94 17.09c-6.62 5.61-13.75 11.12-21.2 16.36c-33.12 23.3-70.83 40.34-103.34 53.93c-34.37 14.35-61.96 21.76-77.8 20.95c0 0 0 3.81 0 3.81c22.1 1.04 59.04-12.8 79.27-21.25c32.7-13.68 70.64-30.82 104.06-54.33c7.55-5.31 14.77-10.89 21.47-16.57c6.63-5.61 12.97-11.51 19.08-17.21c13.18-12.29 25.64-23.89 40.68-32.62c20.72-12 54.28-20.3 80.69-4.15c2.95 1.8 5.74 3.85 8.35 6.13c5.1 4.43 9.89 9.88 15.52 17.64c6.12 8.45 11.69 17.44 17.07 26.14c3.35 5.43 6.68 10.81 10.12 16.02c13.7 20.76 31.14 37.14 46.67 43.82c17.6 7.56 30.92 7.96 49.35 8.49l7.8 0.28c7.96 0.3 16.79 0.64 26.44 0.16v-3.82c-9.57 0.5-18.37 0.16-26.3-0.14l-7.83-0.28c-18.68-0.55-31.03-0.9-47.96-8.19C429.62 603.81 412.79 587.96 399.49 567.79z M400.3 577.9c-3.27-5.08-6.44-10.3-9.64-15.58c-5.44-8.96-11.06-18.21-17.3-26.98c-5.76-8.06-10.71-13.74-16.01-18.4c-2.76-2.43-5.72-4.63-8.85-6.56c-11.04-6.8-23.24-9.51-35.28-9.51c-18.3-0.01-36.25 6.27-49.28 13.97c-15.2 9-27.6 20.74-40.74 33.17c-6.2 5.88-12.63 11.96-19.35 17.7c-6.64 5.67-13.78 11.2-21.23 16.44c-33.66 23.66-71.46 40.22-104 53.3c-34.88 13.99-62.74 20.77-78.61 19.17l0 3.87c22.26 2.07 59.58-11.26 80.06-19.47c32.75-13.17 70.81-29.84 104.79-53.73c7.55-5.3 14.78-10.91 21.51-16.66c6.8-5.8 13.26-11.91 19.51-17.82c12.97-12.27 25.22-23.87 40.05-32.64c20.67-12.22 54.17-20.74 80.57-4.49c2.94 1.82 5.73 3.88 8.32 6.17c5.08 4.46 9.83 9.93 15.4 17.75c6.16 8.65 11.74 17.84 17.14 26.74c3.22 5.3 6.4 10.55 9.69 15.65c13.43 20.84 30.6 37.56 45.93 44.73c17.12 8.02 30.11 9.29 49.47 10.41l6.4 0.39c8.33 0.53 17.57 1.11 27.75 0.72v-3.89c-10.06 0.39-19.23-0.18-27.51-0.7l-6.42-0.39c-18.84-1.09-31.24-2.17-48.06-10.05C429.91 614.33 413.34 598.15 400.3 577.9z M401.09 588c-3.1-4.95-6.14-10.05-9.19-15.18c-5.45-9.17-11.09-18.66-17.39-27.63c-5.7-8.11-10.6-13.82-15.89-18.52c-2.75-2.45-5.7-4.66-8.83-6.61c-10.54-6.41-22.69-9.71-35.03-9.53c-18.4 0-36.44 6.44-49.52 14.33c-15 9.05-27.2 20.77-40.12 33.19c-6.34 6.07-12.89 12.38-19.77 18.29c-6.63 5.72-13.78 11.28-21.24 16.52c-34.32 24.12-73.97 40.82-104.67 52.68c-35.39 13.63-63.53 19.79-79.43 17.4L0 666.91c22.37 3.08 60.11-9.71 80.85-17.71c30.91-11.93 70.84-28.76 105.51-53.13c7.57-5.32 14.82-10.96 21.55-16.76c6.97-6 13.56-12.33 19.93-18.45c12.76-12.25 24.8-23.82 39.43-32.65c22.25-13.42 55.77-20.12 80.44-4.82c2.94 1.83 5.71 3.9 8.29 6.2c5.06 4.49 9.77 9.99 15.29 17.84c6.21 8.86 11.82 18.27 17.23 27.38c3.07 5.17 6.11 10.29 9.24 15.27c13.15 20.91 30.04 37.96 45.17 45.62c17.75 9 31.17 10.72 49.61 12.32l5.05 0.44c8.28 0.73 18.19 1.61 29.01 1.33v-3.94c-10.53 0.28-20.07-0.55-28.66-1.31l-5.06-0.44c-17.98-1.56-31.05-3.23-48.16-11.9C430.19 624.85 413.88 608.33 401.09 588z M398.72 557.7c-3.57-5.29-7.03-10.77-10.51-16.29c-5.4-8.55-10.98-17.39-17.12-25.75c-5.86-7.96-10.86-13.56-16.22-18.16c-2.78-2.4-5.76-4.56-8.89-6.47c-11.21-6.8-23.61-9.5-35.83-9.5c-18.12 0-35.84 5.94-48.77 13.28c-15.64 8.88-28.46 20.65-42.04 33.12c-5.94 5.47-12.09 11.11-18.48 16.47c-6.67 5.6-13.8 11.08-21.19 16.28c-32.45 22.83-68.52 39.71-102.67 54.55c-33.88 14.69-61.18 22.73-76.99 22.71v3.74c22.09-0.12 58.5-14.36 78.49-23.02c34.33-14.92 70.61-31.9 103.33-54.92c7.48-5.26 14.7-10.81 21.44-16.48c6.45-5.41 12.63-11.08 18.6-16.57c13.42-12.32 26.09-23.95 41.36-32.63c20.76-11.78 54.38-19.85 80.82-3.83c2.95 1.8 5.76 3.85 8.38 6.11c5.13 4.4 9.96 9.82 15.64 17.54c6.07 8.25 11.61 17.04 16.97 25.53c3.5 5.56 6.98 11.07 10.57 16.39c13.98 20.69 31.72 36.74 47.43 42.92c16.81 6.61 28.9 6.58 47.17 6.59l4.97 0.01c2.05 0.01 4.18 0.03 6.39 0.07c8.34 0.27 16.69 0.14 25.02-0.37v-3.76c-8.31 0.52-16.64 0.65-24.96 0.39c-2.22-0.04-4.36-0.07-6.42-0.08l-2.94-0.01h-2.05c-17.88 0.04-29.66 0.02-45.8-6.34C429.39 593.32 412.3 577.79 398.72 557.7z M8.46 869.97c-2.65-2.12-5.12-4.45-7.36-7.02l-1.09 0.94v5.93c0.05 0.05 0.11 0.1 0.16 0.15H8.46z M401.87 598.1c-2.96-4.83-5.85-9.79-8.76-14.78c-5.47-9.39-11.12-19.1-17.47-28.28c-5.66-8.18-10.52-13.92-15.78-18.65c-2.74-2.46-5.69-4.69-8.81-6.65c-10.55-6.61-22.6-9.37-34.74-9.37c-17.87 0-35.93 5.98-49.79 14.5c-14.8 9.1-26.81 20.83-39.54 33.24c-6.44 6.29-13.1 12.79-20.13 18.88c-6.8 5.89-13.9 11.44-21.27 16.6c-34.75 24.42-74.54 40.65-105.32 52.06c-35.89 13.26-64.35 18.8-80.25 15.62c0 0 0 4.07 0 4.07c22.52 4.05 60.65-8.18 81.6-15.95c31.01-11.5 71.1-27.86 106.24-52.54c7.48-5.24 14.69-10.87 21.59-16.85c7.12-6.18 13.83-12.72 20.31-19.04c12.57-12.25 24.43-23.82 38.85-32.69c22.21-13.66 55.66-20.55 80.32-5.15c2.93 1.83 5.68 3.92 8.25 6.23c5.02 4.51 9.7 10.04 15.17 17.95c6.26 9.06 11.88 18.7 17.31 28.02c2.93 5.03 5.83 10.01 8.81 14.87c13.09 21.3 29.28 38.25 44.42 46.52c16.66 9.1 29.82 11.93 49.73 14.22l3.79 0.43c8.58 0.97 18.88 2.15 30.18 2v-4c-10.94 0.15-20.82-0.97-29.72-1.98l-3.79-0.42c-19.81-2.28-32.09-4.92-48.27-13.76C430.46 635.38 414.41 618.51 401.87 598.1z M377.94 574.69c-5.54-8.27-10.34-14.11-15.57-18.89c-2.72-2.5-5.66-4.76-8.77-6.75c-10.43-6.62-22.29-9.39-34.26-9.39c-18.03-0.01-36.29 6.29-50.26 15.21c-14.42 9.22-26.08 20.95-38.43 33.36c-6.64 6.67-13.51 13.58-20.82 20.02c-6.79 5.97-13.9 11.57-21.3 16.76c-35.94 25.24-78.08 41.09-106.65 50.81C45 688.38 15.96 692.65 0.01 687.91v4.29c22.8 5.99 61.72-5.13 83.2-12.42c28.81-9.81 71.32-25.8 107.7-51.34c7.53-5.28 14.76-10.96 21.67-17.04c7.41-6.53 14.32-13.48 21.01-20.21c12.18-12.24 23.68-23.81 37.72-32.78c22.13-14.14 55.46-21.43 80.07-5.82c2.91 1.86 5.65 3.97 8.19 6.31c4.97 4.55 9.58 10.15 14.94 18.14c3.42 5.11 6.63 10.39 9.71 15.69c-1.66-2.74-3.36-5.46-5.13-8.14c-5.5-8.33-10.26-14.2-15.46-19.02c-2.71-2.52-5.64-4.79-8.75-6.79c-10.37-6.62-22.15-9.4-34.03-9.4c-18.11 0-36.47 6.45-50.47 15.58c-14.25 9.27-25.73 21-37.89 33.42c-6.74 6.87-13.69 13.98-21.14 20.58c-6.78 6.01-13.9 11.63-21.33 16.84c-36.31 25.49-78.63 40.85-107.31 50.19c-37.38 12.11-66.72 15.75-82.7 10.23v4.41c22.93 6.98 62.26-3.62 83.99-10.67c28.94-9.42 71.65-24.92 108.42-50.73c7.56-5.29 14.8-11.02 21.71-17.14c7.54-6.7 14.56-13.86 21.35-20.79c12-12.24 23.33-23.81 37.19-32.84c22.07-14.38 55.36-21.86 79.95-6.15c2.9 1.87 5.63 3.99 8.15 6.34c4.94 4.59 9.52 10.22 14.81 18.25c2.28 3.46 4.46 6.99 6.58 10.57c-0.64-1.02-1.28-2.03-1.93-3.03c-5.45-8.39-10.18-14.29-15.36-19.14c-2.7-2.54-5.62-4.83-8.73-6.84c-10.31-6.62-22-9.41-33.8-9.41c-18.18 0-36.62 6.61-50.68 15.93c-14.08 9.34-25.4 21.08-37.39 33.5c-6.82 7.07-13.86 14.37-21.43 21.14c-6.78 6.05-13.9 11.7-21.35 16.92c-27.9 19.58-62.21 35.32-107.97 49.56c-37.87 11.76-67.51 14.75-83.5 8.45v4.54c21.83 7.55 57.97-0.6 84.78-8.93c46.19-14.37 80.87-30.3 109.15-50.14c7.58-5.31 14.84-11.06 21.75-17.23c7.67-6.86 14.78-14.23 21.65-21.35c11.82-12.25 22.99-23.82 36.68-32.91c22.04-14.61 55.25-22.28 79.82-6.47c2.89 1.87 5.61 4 8.11 6.37c4.92 4.6 9.45 10.26 14.7 18.35c1.38 2.12 2.71 4.27 4.02 6.44c-5.1-7.86-9.62-13.5-14.55-18.17c-2.69-2.56-5.61-4.87-8.72-6.9c-10.25-6.64-21.86-9.44-33.59-9.44c-18.26 0-36.77 6.77-50.88 16.29c-13.92 9.4-25.08 21.15-36.9 33.59c-6.9 7.25-14.03 14.75-21.71 21.68c-6.77 6.09-13.91 11.77-21.37 16.99C164.82 677 130.3 692.55 84.34 706.2c-38.36 11.36-68.3 13.72-84.33 6.65v4.68c21.97 8.46 58.45 0.85 85.56-7.18c46.43-13.79 81.35-29.53 109.88-49.55c7.61-5.32 14.88-11.11 21.78-17.32c7.81-7.03 14.99-14.6 21.95-21.91c11.65-12.26 22.66-23.84 36.19-32.99c21.98-14.86 55.15-22.72 79.69-6.8c2.89 1.88 5.6 4.02 8.09 6.4c4.89 4.63 9.39 10.32 14.58 18.45c0.72 1.13 1.43 2.27 2.13 3.41c-4.28-6.39-8.23-11.2-12.49-15.28c-2.68-2.57-5.59-4.9-8.69-6.93c-10.19-6.66-21.73-9.46-33.38-9.46c-18.32 0-36.93 6.92-51.07 16.66c-13.76 9.47-25.29 21.78-36.43 33.68c-6.97 7.44-14.17 15.13-21.97 22.21c-6.76 6.13-13.91 11.83-21.39 17.07c-27.98 19.62-63.74 35.43-109.29 48.32C46.33 727.27 16.1 729 0.04 721.17l-0.03 0.03v4.74c22.09 9.37 58.94 2.3 86.34-5.43c46.03-13.02 82.21-29.04 110.61-48.95c7.63-5.34 14.92-11.15 21.82-17.41c7.92-7.2 15.19-14.96 22.21-22.46c11.49-12.27 22.35-23.86 35.72-33.06c21.93-15.1 55.03-23.15 79.56-7.14c2.88 1.89 5.58 4.04 8.06 6.43c4.86 4.64 9.32 10.36 14.46 18.55c0.19 0.31 0.39 0.62 0.58 0.93c-3.62-5.24-7.06-9.37-10.75-12.93c-2.67-2.59-5.57-4.93-8.67-6.98c-10.15-6.68-21.61-9.49-33.19-9.49c-18.39 0-37.08 7.08-51.26 17.03c-13.6 9.53-24.97 21.85-35.96 33.77c-7.04 7.63-14.32 15.52-22.23 22.75c-6.75 6.18-13.9 11.91-21.4 17.15c-28.21 19.77-64.17 35.37-109.95 47.69c-39.26 10.54-69.74 11.64-85.86 3.09l-0.1 0.2v4.72c22.23 10.26 59.42 3.73 87.11-3.7c46.28-12.45 82.7-28.27 111.35-48.34c7.66-5.36 14.96-11.2 21.86-17.51c8.04-7.36 15.38-15.32 22.48-23.02c11.33-12.29 22.03-23.89 35.24-33.14c21.18-14.84 55.07-23.51 79.45-7.47c2.87 1.9 5.55 4.06 8.02 6.47c4.62 4.46 8.86 9.91 13.67 17.55c-3.1-4.35-6.1-7.91-9.3-11.03c-2.65-2.61-5.55-4.97-8.65-7.04c-9.93-6.58-21.27-9.32-32.75-9.32c-18.74 0-37.84 7.32-51.7 17.21c-13.45 9.59-24.67 21.94-35.52 33.87c-7.1 7.81-14.44 15.89-22.45 23.28c-6.75 6.22-13.9 11.97-21.42 17.22c-28.42 19.92-64.6 35.31-110.6 47.07c-39.67 10.12-70.43 10.58-86.6 1.31l-0.18 0.33v4.7c22.36 11.15 59.9 5.17 87.9-1.96c46.54-11.89 83.2-27.51 112.08-47.74c7.69-5.37 15-11.26 21.9-17.61c8.15-7.52 15.56-15.68 22.73-23.55c11.18-12.3 21.74-23.91 34.8-33.24c21.12-15.07 54.96-23.93 79.31-7.79c2.86 1.91 5.54 4.08 7.99 6.5c4.23 4.13 8.14 9.11 12.45 15.9c-2.66-3.63-5.28-6.68-8.04-9.42c-2.65-2.63-5.54-5-8.64-7.08c-9.88-6.58-21.14-9.34-32.54-9.34c-18.81 0-37.99 7.49-51.88 17.57c-13.31 9.67-24.39 22.03-35.1 34c-7.15 7.99-14.55 16.26-22.65 23.79c-6.74 6.25-13.91 12.03-21.45 17.3c-28.61 20.03-65.01 35.22-111.26 46.43c-40.09 9.7-71.11 9.53-87.35-0.45l-0.25 0.42v4.72c22.48 12.04 60.4 6.61 88.68-0.23c46.82-11.35 83.71-26.77 112.82-47.15c7.71-5.39 15.04-11.3 21.94-17.7c8.25-7.68 15.72-16.02 22.94-24.09c11.04-12.32 21.46-23.96 34.38-33.34c21.08-15.3 54.85-24.38 79.18-8.12c2.85 1.92 5.52 4.1 7.95 6.53c3.93 3.88 7.57 8.5 11.52 14.65c-2.31-3.09-4.62-5.76-7.04-8.17c-2.63-2.65-5.52-5.04-8.61-7.13c-9.83-6.61-21.03-9.37-32.37-9.37c-18.87 0-38.12 7.65-52.05 17.94c-13.17 9.73-24.11 22.12-34.68 34.11c-7.21 8.17-14.66 16.63-22.86 24.3c-6.73 6.3-13.91 12.1-21.46 17.38c-28.82 20.18-65.43 35.16-111.91 45.82c-40.52 9.26-71.81 8.48-88.1-2.22l-0.33 0.49v4.76c22.61 12.91 60.87 8.03 89.47 1.5c47.08-10.79 84.22-26.02 113.54-46.55c7.74-5.4 15.09-11.35 21.98-17.8c8.36-7.82 15.89-16.36 23.17-24.62c10.89-12.35 21.17-24.01 33.95-33.44c21.02-15.53 54.71-24.81 79.05-8.46c2.84 1.93 5.49 4.12 7.92 6.56c3.59 3.59 6.93 7.8 10.48 13.25c-1.94-2.52-3.9-4.76-5.94-6.81c-2.62-2.67-5.5-5.07-8.59-7.18c-9.78-6.62-20.91-9.39-32.18-9.39c-18.94 0-38.26 7.82-52.22 18.31c-13.03 9.8-23.83 22.22-34.27 34.22c-7.26 8.35-14.77 16.99-23.05 24.81c-6.73 6.33-13.91 12.17-21.48 17.46c-29.01 20.3-65.83 35.08-112.58 45.2c-40.94 8.83-72.5 7.42-88.85-3.99l-0.4 0.59v4.79c22.73 13.79 61.35 9.47 90.24 3.23c47.37-10.25 84.75-25.28 114.28-45.94c7.76-5.42 15.12-11.41 22.02-17.9c8.46-7.97 16.04-16.7 23.37-25.14c10.75-12.37 20.91-24.05 33.54-33.55c20.98-15.77 54.63-25.24 78.93-8.79c2.84 1.94 5.48 4.15 7.89 6.6c3.3 3.33 6.38 7.19 9.59 12.07c-1.63-2.06-3.27-3.93-4.98-5.67c-2.62-2.68-5.49-5.11-8.58-7.23c-9.73-6.63-20.8-9.41-32.01-9.41c-19 0-38.39 7.98-52.39 18.68c-12.9 9.86-23.57 22.32-33.87 34.35c-7.31 8.53-14.86 17.35-23.24 25.32c-6.72 6.37-13.91 12.24-21.51 17.53c-29.18 20.42-66.22 35-113.23 44.58c-41.36 8.41-73.19 6.36-89.6-5.75l-0.45 0.63v4.85c22.85 14.67 61.84 10.89 91.02 4.96c47.67-9.71 85.29-24.55 115.02-45.35c7.79-5.44 15.16-11.45 22.06-17.99c8.56-8.14 16.19-17.05 23.58-25.67c10.61-12.39 20.63-24.1 33.14-33.66c20.92-16 54.51-25.68 78.8-9.11c2.83 1.95 5.46 4.16 7.86 6.62c3.05 3.11 5.91 6.7 8.86 11.14c-1.37-1.7-2.76-3.27-4.19-4.74c-2.61-2.7-5.47-5.14-8.56-7.28c-9.69-6.66-20.7-9.44-31.84-9.45c-19.06 0-38.52 8.16-52.54 19.06c-12.78 9.93-23.31 22.41-33.49 34.47c-7.35 8.71-14.95 17.71-23.41 25.81c-6.71 6.41-13.91 12.3-21.52 17.61c-28.95 20.25-67.27 35.04-113.88 43.96c-41.79 7.97-73.89 5.3-90.36-7.52l-0.55 0.69v4.91c22.99 15.53 62.33 12.3 91.8 6.68c47.29-9.05 86.23-24.1 115.75-44.74c7.82-5.45 15.21-11.5 22.1-18.09c8.64-8.28 16.33-17.38 23.75-26.18c10.49-12.42 20.39-24.16 32.77-33.77c20.88-16.23 54.4-26.1 78.67-9.44c2.82 1.95 5.44 4.18 7.82 6.65c2.8 2.89 5.44 6.18 8.12 10.18c-1.11-1.35-2.24-2.62-3.4-3.82c-2.59-2.72-5.45-5.17-8.54-7.32c-9.33-6.34-20.4-9.66-31.68-9.48c-19.11 0-38.64 8.33-52.69 19.43c-12.65 10-23.05 22.51-33.11 34.6c-7.39 8.89-15.03 18.07-23.57 26.32c-6.7 6.45-13.9 12.37-21.53 17.69c-29.13 20.36-67.67 34.94-114.54 43.33c-29.86 5.33-69.91 8.05-91.12-9.28l-0.6 0.71v4.99c23.11 16.4 62.81 13.71 92.58 8.41c47.58-8.52 86.77-23.37 116.49-44.15c7.84-5.47 15.24-11.55 22.13-18.18c8.74-8.43 16.46-17.72 23.93-26.71c10.35-12.46 20.14-24.22 32.38-33.9c21.48-16.99 55.37-25.79 78.53-9.77c2.82 1.96 5.42 4.2 7.79 6.69c2.56 2.66 4.97 5.66 7.41 9.24c-0.86-1.01-1.72-1.98-2.61-2.92c-2.58-2.74-5.44-5.21-8.52-7.37c-9.33-6.51-20.2-9.3-31.35-9.3c-18.91-0.01-38.62 8.03-53.02 19.59c-12.53 10.07-22.8 22.61-32.75 34.74c-7.42 9.05-15.1 18.42-23.71 26.8c-6.7 6.49-13.91 12.43-21.56 17.76c-29.29 20.47-68.04 34.84-115.19 42.72c-30.15 5.02-70.58 7.17-91.89-11.04l-0.64 0.78v5.08c23.24 17.26 63.3 15.12 93.36 10.12c47.89-8 87.33-22.65 117.22-43.55c7.87-5.48 15.29-11.6 22.17-18.28c8.83-8.57 16.59-18.05 24.1-27.21c10.23-12.48 19.89-24.27 32.02-34.02c21.43-17.22 55.24-26.23 78.4-10.1c2.8 1.97 5.4 4.22 7.76 6.71c2.31 2.44 4.51 5.16 6.7 8.34c-0.6-0.7-1.21-1.37-1.83-2.03c-2.57-2.76-5.43-5.24-8.51-7.42c-9.29-6.52-20.11-9.32-31.2-9.32c-18.97 0-38.75 8.19-53.16 19.97c-12.41 10.14-22.57 22.72-32.39 34.88c-7.45 9.23-15.16 18.78-23.86 27.29c-6.69 6.53-13.9 12.5-21.57 17.84c-29.45 20.58-68.43 34.74-115.85 42.1c-30.47 4.71-71.27 6.31-92.65-12.82l-0.71 0.8v5.17c23.36 18.11 63.78 16.53 94.13 11.83c48.19-7.47 87.87-21.92 117.96-42.94c7.9-5.5 15.33-11.65 22.22-18.38c8.91-8.71 16.71-18.38 24.25-27.72c10.11-12.51 19.66-24.34 31.66-34.14c21.38-17.48 55.14-26.66 78.27-10.42c2.8 1.98 5.39 4.24 7.73 6.74c2.1 2.23 4.09 4.7 6.08 7.55c-0.38-0.43-0.77-0.86-1.16-1.28c-2.56-2.78-5.4-5.28-8.48-7.47c-9.26-6.54-20.02-9.35-31.05-9.35c-19.02 0-38.86 8.35-53.3 20.35c-12.3 10.22-22.34 22.83-32.05 35.03c-7.48 9.4-15.21 19.12-23.98 27.77c-6.68 6.57-13.9 12.56-21.59 17.92c-29.61 20.68-68.81 34.63-116.5 41.47c-30.76 4.4-71.94 5.43-93.42-14.58l-0.77 0.81v5.27c23.5 18.97 64.26 17.93 94.9 13.55c48.49-6.96 88.43-21.2 118.7-42.35c7.93-5.52 15.37-11.69 22.26-18.46c8.99-8.86 16.82-18.7 24.4-28.22c9.99-12.55 19.42-24.41 31.32-34.28c21.32-17.7 55-27.09 78.14-10.75c2.79 1.99 5.37 4.26 7.69 6.77c1.89 2.03 3.69 4.26 5.48 6.79c-0.16-0.18-0.33-0.36-0.49-0.54c-2.55-2.79-5.39-5.31-8.46-7.52c-9.23-6.56-19.93-9.39-30.91-9.39c-19.07 0-38.97 8.52-53.44 20.72c-12.18 10.28-22.11 22.94-31.71 35.18c-7.5 9.57-15.27 19.47-24.11 28.24c-6.67 6.61-13.91 12.63-21.62 18c-29.76 20.78-69.17 34.53-117.14 40.85c-31.06 4.09-72.62 4.57-94.19-16.35l-0.82 0.86v5.37c23.62 19.82 64.74 19.33 95.69 15.26c48.8-6.43 88.98-20.48 119.43-41.74c7.96-5.54 15.42-11.75 22.31-18.57c9.06-9 16.93-19.03 24.53-28.72c9.87-12.59 19.2-24.47 30.98-34.41c21.26-17.96 54.89-27.52 78.01-11.08c2.78 1.99 5.34 4.27 7.65 6.8c1.7 1.84 3.32 3.85 4.92 6.08c-2.5-2.75-5.28-5.24-8.3-7.42c-9.2-6.58-19.85-9.42-30.77-9.42c-19.12-0.01-39.08 8.68-53.57 21.11c-12.07 10.36-21.89 23.05-31.38 35.32c-7.53 9.74-15.32 19.82-24.23 28.72c-6.66 6.65-13.9 12.69-21.63 18.07c-29.91 20.88-69.55 34.42-117.8 40.24c-31.36 3.77-73.3 3.68-94.95-18.12l-0.89 0.88v5.47c23.74 20.66 65.23 20.72 96.47 16.97c49.12-5.93 89.55-19.77 120.17-41.14c7.98-5.55 15.46-11.8 22.34-18.66c9.14-9.15 17.03-19.35 24.66-29.23c9.76-12.62 18.98-24.55 30.64-34.55c21.22-18.19 54.78-27.95 77.89-11.4c2.77 2.01 5.33 4.3 7.62 6.84c1.49 1.64 2.92 3.39 4.32 5.33c-2.32-2.48-4.88-4.74-7.63-6.74c-9.16-6.61-19.76-9.45-30.63-9.45c-19.18-0.01-39.19 8.84-53.7 21.49c-11.97 10.42-21.67 23.17-31.06 35.48c-7.55 9.91-15.36 20.17-24.33 29.2c-6.65 6.69-13.9 12.76-21.64 18.14c-30.06 20.98-69.91 34.3-118.45 39.62c-31.66 3.44-73.98 2.8-95.73-19.88l-0.94 0.87v5.57c23.87 21.51 65.71 22.12 97.24 18.68c49.43-5.41 90.11-19.05 120.91-40.54c8.01-5.57 15.5-11.84 22.38-18.75c9.21-9.28 17.13-19.67 24.79-29.72c9.64-12.66 18.76-24.62 30.32-34.7c20.64-17.98 54.91-28.21 77.74-11.73c2.77 2.01 5.31 4.31 7.59 6.87c1.3 1.45 2.56 2.99 3.8 4.67c-2.15-2.25-4.5-4.31-7.02-6.16c-8.89-6.35-19.58-9.67-30.5-9.49c-19.23 0-39.29 9.02-53.82 21.88c-11.86 10.5-21.46 23.28-30.74 35.63c-7.57 10.08-15.4 20.5-24.43 29.67c-6.65 6.72-13.91 12.83-21.67 18.23c-30.2 21.07-70.27 34.19-119.1 39c-31.96 3.14-74.65 1.92-96.5-21.65l-0.99 0.91v5.69c9 8.39 20.57 13.79 33.2 17.1h89.69c38.65-6.48 71.13-18.76 96.78-36.65c8.03-5.59 15.54-11.9 22.42-18.86c9.28-9.42 17.22-19.99 24.9-30.21c9.54-12.7 18.55-24.7 30.01-34.84c20.58-18.22 54.77-28.65 77.62-12.06c2.76 2.02 5.29 4.33 7.55 6.9c1.12 1.25 2.2 2.58 3.27 4c-1.98-2.02-4.11-3.88-6.39-5.56c-8.93-6.52-19.36-9.32-30.08-9.32c-19.49-0.01-39.98 9.22-54.24 22.05c-11.76 10.57-21.25 23.39-30.43 35.8c-7.58 10.25-15.43 20.84-24.52 30.13c-6.64 6.76-13.9 12.89-21.69 18.3c-19.35 13.49-42.75 23.63-69.9 30.32h19.78c20.08-6.54 37.87-15.17 53.21-25.87c8.06-5.61 15.58-11.95 22.46-18.96c9.36-9.56 17.31-20.3 25-30.7c9.43-12.74 18.35-24.78 29.7-34.98c20.53-18.46 54.66-29.06 77.49-12.39c2.75 2.03 5.27 4.35 7.52 6.93c0.94 1.07 1.86 2.19 2.76 3.37c-1.81-1.81-3.75-3.49-5.8-5.01c-8.89-6.54-19.27-9.34-29.95-9.34c-19.54-0.01-40.08 9.39-54.36 22.43c-11.66 10.65-21.05 23.52-30.13 35.96c-7.6 10.41-15.46 21.18-24.61 30.6c-6.63 6.8-13.9 12.95-21.7 18.37c-10.96 7.64-23.23 14.17-36.73 19.59h13.72c9.37-4.44 18.09-9.47 26.14-15.08c8.09-5.62 15.63-12 22.51-19.06c9.42-9.69 17.39-20.61 25.11-31.19c9.33-12.78 18.14-24.86 29.39-35.13c20.47-18.69 54.54-29.51 77.35-12.71c2.74 2.04 5.25 4.37 7.49 6.96c0.77 0.89 1.53 1.81 2.28 2.78c-1.64-1.61-3.39-3.11-5.23-4.49c-8.87-6.57-19.2-9.39-29.84-9.39c-19.58 0-40.18 9.56-54.47 22.82c-11.56 10.71-20.85 23.63-29.83 36.11c-7.61 10.58-15.49 21.53-24.7 31.07c-6.63 6.84-13.9 13.01-21.72 18.45c-4.52 3.15-9.26 6.1-14.22 8.86h10.91c2.21-1.39 4.38-2.82 6.5-4.3c8.12-5.64 15.67-12.05 22.54-19.15c9.48-9.83 17.48-20.93 25.21-31.68c8.82-12.26 17.94-24.94 29.09-35.28c20.42-18.93 54.41-29.93 77.22-13.04c2.73 2.05 5.23 4.39 7.46 6.98c0.63 0.73 1.25 1.48 1.86 2.27c-1.5-1.44-3.08-2.78-4.74-4.03c-8.84-6.6-19.13-9.43-29.72-9.43c-19.63 0-40.27 9.73-54.59 23.2c-11.46 10.79-20.65 23.75-29.54 36.28c-7.62 10.75-15.51 21.86-24.77 31.52c-5.88 6.11-12.27 11.67-19.12 16.66h9.25c4.91-3.96 9.57-8.22 13.94-12.76c9.55-9.96 17.55-21.25 25.3-32.16c8.73-12.3 17.75-25.03 28.81-35.43c20.36-19.16 54.3-30.36 77.08-13.36c2.73 2.05 5.22 4.41 7.42 7.01c0.46 0.54 0.92 1.1 1.37 1.67c-1.32-1.24-2.71-2.42-4.16-3.52c-8.56-6.32-18.96-9.65-29.6-9.46c-19.67-0.01-40.37 9.9-54.69 23.59c-11.37 10.86-20.46 23.87-29.26 36.45c-7.63 10.91-15.53 22.19-24.84 31.98c-1.97 2.06-4 4.05-6.09 5.99h8.15c0.69-0.69 1.37-1.38 2.05-2.09c9.61-10.09 17.63-21.55 25.38-32.64c8.64-12.35 17.57-25.12 28.52-35.59c20.3-19.41 54.17-30.8 76.95-13.69c2.72 2.06 5.2 4.43 7.39 7.04c0.3 0.36 0.6 0.72 0.9 1.09c-1.15-1.06-2.35-2.06-3.59-3.01c-8.51-6.34-18.89-9.68-29.5-9.5c-19.72 0-40.45 10.07-54.79 23.98c-11.27 10.93-20.27 23.99-28.97 36.62c-6.47 9.39-13.14 19.04-20.72 27.79h7.54c6.47-7.91 12.28-16.31 17.93-24.52c8.54-12.39 17.38-25.21 28.24-35.75c20.54-19.92 54.87-30.6 76.82-14.01c2.71 2.07 5.18 4.45 7.36 7.07c0.18 0.21 0.36 0.43 0.53 0.65c-1.01-0.92-2.06-1.8-3.15-2.63c-8.47-6.36-18.81-9.72-29.4-9.54c-19.77-0.01-40.55 10.25-54.89 24.37c-11.19 11.01-20.09 24.12-28.7 36.79c-3.98 5.85-8.03 11.79-12.32 17.57h7.2c3.42-4.75 6.71-9.57 9.94-14.32c8.46-12.44 17.2-25.3 27.97-35.91c20.47-20.16 54.75-31.03 76.68-14.34c2.7 2.08 5.16 4.47 7.32 7.1c0.04 0.04 0.07 0.09 0.11 0.13c-0.85-0.76-1.73-1.49-2.63-2.18c-8.5-6.51-18.58-9.35-29.05-9.35c-19.69 0-40.74 10.03-55.24 24.52c-11.09 11.09-19.91 24.24-28.44 36.96c-1.64 2.45-3.3 4.92-4.98 7.39h7.1c0.93-1.37 1.85-2.74 2.76-4.11c8.36-12.49 17.02-25.4 27.7-36.08c20.42-20.4 54.64-31.46 76.55-14.66c2.57 1.99 4.91 4.26 6.98 6.77c-0.69-0.6-1.4-1.19-2.13-1.75c-8.45-6.52-18.48-9.36-28.89-9.36c-19.72 0-40.84 10.19-55.39 24.87c-10.18 10.36-18.41 22.45-26.27 34.32h7.16c7.06-10.56 14.5-21.12 23.38-30.14c20.39-20.61 54.55-31.84 76.41-14.98c2.4 1.87 4.6 3.99 6.57 6.32c-0.54-0.46-1.09-0.92-1.66-1.36c-8.45-6.55-18.44-9.41-28.82-9.41c-19.76 0-40.92 10.36-55.46 25.28c-7.22 7.46-13.45 15.79-19.26 24.29h7.34c4.98-7.08 10.28-13.95 16.24-20.1c20.31-20.85 54.41-32.29 76.27-15.3c2.24 1.76 4.29 3.73 6.15 5.89c-0.39-0.32-0.78-0.64-1.17-0.96c-8.43-6.6-18.4-9.47-28.75-9.47c-19.8-0.01-41 10.53-55.53 25.68c-4.29 4.49-8.22 9.3-11.92 14.26h7.69c2.73-3.48 5.58-6.85 8.62-10.02c20.25-21.11 54.27-32.73 76.13-15.63c2.09 1.65 4.03 3.5 5.78 5.51c-0.25-0.21-0.5-0.41-0.76-0.61c-8.21-6.38-18.32-9.74-28.68-9.55c-19.85-0.01-41.08 10.71-55.6 26.09c-1.3 1.38-2.56 2.78-3.8 4.21h8.27c20.19-21.36 54.12-33.17 76-15.96c5.49 4.31 9.61 10.06 12.81 15.96h42.02c-1.08-1.87-2.15-3.79-3.21-5.79c0.47 0.75 0.93 1.49 1.4 2.21c0.78 1.21 1.57 2.4 2.37 3.58h6.44c-1.46-2.1-2.91-4.24-4.34-6.45c-2.59-4.02-5.14-8.38-7.67-13.12c1.07 1.73 2.15 3.4 3.24 5.02c3.5 5.21 7.05 10.03 10.7 14.55h6.82c-4.53-5.32-8.89-11.1-13.17-17.47c-3.17-4.71-6.29-9.95-9.4-15.76c1.68 2.7 3.36 5.26 5.07 7.69c6.84 9.77 13.84 18.17 21.35 25.54h7.55c-8.8-8.02-16.84-17.33-24.66-28.51c-3.89-5.56-7.72-11.84-11.49-18.89c2.41 3.91 4.84 7.54 7.28 10.88c11.11 15.19 22.54 26.92 35.74 36.52h9.01c-15.37-10.02-28.19-22.54-40.62-39.53c-4.5-6.15-8.96-13.34-13.37-21.52c3.06 4.95 6.15 9.47 9.27 13.56c15.48 20.28 31.42 34.1 51.68 44.8c1.09 0.57 2.19 1.14 3.3 1.7c0.64 0.32 1.32 0.65 2 0.99h12.52c-4.67-1.81-8.81-3.77-12.26-5.5c-1.08-0.54-2.15-1.09-3.21-1.65c-19.85-10.49-34.81-23.46-50.03-43.41c-5.24-6.87-10.42-15.03-15.5-24.43c3.78 6.12 7.62 11.62 11.51 16.5c15.79 19.8 31.21 32.63 51.57 42.9c1.07 0.54 2.17 1.08 3.28 1.61c7.28 3.5 17.47 7.89 29.34 10.11v-5.07c-10.93-2.18-20.38-6.26-27.19-9.53c-1.08-0.52-2.15-1.04-3.2-1.57c-19.67-9.92-34.6-22.35-49.92-41.56c-5.93-7.44-11.89-16.67-17.69-27.35c4.55 7.38 9.18 13.92 13.83 19.48c15.88 19.03 31.27 31.29 51.45 40.98c1.07 0.52 2.16 1.03 3.26 1.53c7.31 3.35 17.56 7.55 29.45 9.62v-4.99c-10.99-2.03-20.54-5.95-27.41-9.09c-1.07-0.49-2.13-0.99-3.18-1.49c-19.51-9.37-34.41-21.24-49.81-39.7c-6.76-8.1-13.52-18.38-20.03-30.38c5.33 8.67 10.8 16.25 16.3 22.54c15.95 18.25 31.3 29.93 51.33 39.07l3.25 1.44c7.35 3.19 17.66 7.21 29.55 9.11v-4.89c-10.77-1.8-20.16-5.42-27.62-8.66l-3.17-1.41c-19.62-8.94-34.01-19.91-49.69-37.84c-7.57-8.67-15.12-19.9-22.31-33.13c6.07 9.88 12.36 18.41 18.68 25.32c16.21 17.7 31.05 28.46 51.22 37.16l3.23 1.36c7.98 3.28 18.07 6.94 29.67 8.62v-4.84c-10.82-1.65-20.31-5.11-27.84-8.21l-3.16-1.32c-19.5-8.41-33.87-18.84-49.58-35.99c-8.49-9.27-16.93-21.6-24.85-36.25c6.92 11.32 14.19 21.05 21.36 28.51c16.22 16.87 31.02 27.08 51.09 35.24l3.21 1.27c8.02 3.11 18.17 6.59 29.77 8.11v-4.76c-10.87-1.5-20.46-4.79-28.07-7.75l-3.15-1.24c-19.4-7.89-33.74-17.79-49.46-34.14c-9.16-9.53-18.52-22.95-27.09-38.73c7.62 12.46 15.73 23.09 23.72 31.02c16.21 16.05 30.98 25.7 50.98 33.33l3.18 1.19c8.08 2.94 18.3 6.22 29.89 7.58v-4.68c-10.92-1.35-20.6-4.47-28.3-7.27l-3.12-1.16c-19.34-7.38-33.65-16.74-49.36-32.29c-10.03-9.94-20.27-24.34-29.48-41.36c8.36 13.71 17.36 25.31 26.25 33.67c16.37 15.41 30.63 24.22 50.85 31.41l3.18 1.11c8.13 2.76 18.45 5.98 29.99 7.15v-4.68c-11.04-1.19-20.71-4.16-28.51-6.82l-3.12-1.08c-19.56-6.96-33.38-15.49-49.24-30.44c-10.83-10.19-21.88-25.41-31.67-43.5c9.01 14.79 18.85 27.19 28.56 35.87c16.29 14.55 30.52 22.83 50.73 29.5l3.16 1.02c8.2 2.6 18.48 5.45 30.09 6.51v-4.51c-10.77-1.01-20.41-3.69-28.73-6.32l-3.1-1c-19.56-6.46-33.34-14.48-49.13-28.58c-11.69-10.44-23.6-26.53-33.97-45.78c9.68 15.95 20.4 29.2 30.98 38.16c16.18 13.69 30.36 21.43 50.61 27.6l3.14 0.93c8.76 2.55 18.91 5.12 30.2 6v-4.47c-10.77-0.87-20.53-3.35-28.95-5.8l-3.09-0.92c-19.6-5.97-33.35-13.47-49.02-26.73c-12.43-10.52-25.6-28.02-36.47-48.36c10.36 17.18 22.27 31.68 33.62 40.77c16.22 13 29.9 19.96 50.48 25.69l3.12 0.84c8.83 2.36 19.07 4.74 30.31 5.46v-4.39c-10.77-0.72-20.64-3.03-29.18-5.31l-3.07-0.84c-19.94-5.56-33.2-12.3-48.91-24.88c-13.23-10.59-27.3-28.9-38.63-50.27c10.93 18.22 23.74 33.5 35.92 42.71c16.04 12.12 29.69 18.57 50.36 23.77l3.09 0.76c9.35 2.26 19.42 4.34 30.42 4.91v-4.32c-10.59-0.55-20.33-2.6-29.4-4.79l-3.06-0.76c-20.05-5.05-33.28-11.29-48.8-23.02c-13.52-10.22-27.89-28.3-39.45-49.61c-0.47-0.86-0.93-1.73-1.4-2.59c11.5 19.3 25.24 35.38 38.26 44.65c15.8 11.25 29.42 17.17 50.24 21.86l3.08 0.68c9.46 2.05 19.6 3.94 30.53 4.36v-4.26c-11.04-0.42-20.96-2.38-29.63-4.26l-3.05-0.67c-20.47-4.61-33.21-10.15-48.7-21.18c-13.74-9.77-28.37-27.53-40.15-48.7c-1.17-2.12-2.34-4.26-3.5-6.41c12.17 20.87 27.13 38.15 41.22 47.59c15.71 10.52 28.83 15.74 50.11 19.96l3.06 0.59c9.02 1.73 19.33 3.5 30.64 3.79v-4.2c-10.97-0.29-21.04-2.02-29.86-3.72l-3.02-0.58c-20.69-4.1-33.4-9.16-48.6-19.32c-13.95-9.34-28.83-26.76-40.84-47.8c-2.28-4-4.52-8.08-6.77-12.19c0.8 1.4 1.6 2.78 2.4 4.16c12.57 21.49 28.21 39.1 42.91 48.32c17.5 10.98 31.08 14.81 49.99 18.05l2.82 0.47c9.75 1.61 19.95 3.13 30.97 3.27v-4.14c-11.86-0.16-22.54-1.92-30.08-3.17l-3.02-0.51c-18.39-3.14-31.56-6.85-48.49-17.47c-14.15-8.88-29.29-25.97-41.54-46.9c-2.67-4.57-5.27-9.24-7.9-13.94c-2.03-3.62-4.08-7.29-6.18-10.96c-0.04-0.08-0.09-0.15-0.13-0.23C385.69 586.92 381.96 580.7 377.94 574.69z M402.68 608.21c-2.81-4.7-5.57-9.53-8.33-14.38c-5.48-9.6-11.16-19.54-17.55-28.94c-5.61-8.23-10.44-14.02-15.68-18.78c-2.73-2.48-5.68-4.73-8.8-6.7c-10.48-6.6-22.44-9.37-34.49-9.37c-17.95 0-36.12 6.14-50.02 14.86c-14.61 9.17-26.44 20.88-38.97 33.29c-6.55 6.49-13.33 13.19-20.5 19.46c-6.8 5.93-13.9 11.49-21.29 16.67c-35.18 24.71-75.12 40.46-105.99 51.43c-36.38 12.9-65.13 17.81-81.05 13.84v4.18c22.65 5.04 61.18-6.66 82.42-14.17c31.11-11.05 71.38-26.95 106.96-51.94c7.51-5.26 14.73-10.92 21.63-16.95c7.27-6.35 14.09-13.1 20.68-19.63c12.36-12.24 24.04-23.8 38.26-32.73c22.18-13.9 55.56-20.98 80.2-5.48c2.91 1.84 5.67 3.94 8.22 6.26c5 4.53 9.64 10.1 15.05 18.05c5.71 8.39 10.87 17.27 15.83 25.96c0.04 0.08 0.09 0.15 0.13 0.23c0.47 0.83 0.95 1.66 1.42 2.49c2.79 4.87 5.55 9.72 8.38 14.45c12.82 21.38 28.73 38.67 43.66 47.42c17.08 10 30.7 13.39 49.86 16.13l3.02 0.42c8.7 1.22 19.15 2.68 30.85 2.67v-4.07c-11.43 0.01-21.72-1.43-30.29-2.63l-3.01-0.42c-19.07-2.73-31.79-5.9-48.37-15.62C430.76 645.92 414.98 628.72 402.68 608.21z M491.27 347.05c-0.9 0.55-1.78 1.11-2.64 1.68c-5.61 3.89-10.94 8.17-15.96 12.8c-9 7.95-17.52 15.47-29.85 18.21c-20.78 4.63-44.6-9.34-59.93-23.96c-6.62-6.32-12.96-13.38-19.09-20.21c-5-5.57-10.17-11.33-15.54-16.74c-5.61-5.83-11.75-11.11-18.35-15.77c-2.97-2.05-6.07-3.91-9.28-5.57c-13.08-6.76-28.23-10.16-44.17-10.16c-13.94 0.08-27.76 2.5-40.89 7.16c-24.16 8.45-45.7 23.58-64.71 36.93c-6.91 4.87-13.82 9.75-20.73 14.66c-33.24 23.57-62.9 44.88-89.18 67.01c-26.6 22.37-47.08 41.62-60.94 57.27v3.53l0.11 0.1c13.78-15.91 34.78-35.76 62.42-59c26.2-22.07 55.82-43.35 89.02-66.9c6.89-4.89 13.81-9.79 20.71-14.65c18.88-13.25 40.27-28.28 64.11-36.62c28.99-10.12 60.06-9.05 83.13 2.87c3.11 1.62 6.13 3.42 9.02 5.41c6.47 4.58 12.49 9.75 17.99 15.46c5.32 5.37 10.47 11.11 15.46 16.65c6.16 6.87 12.53 13.95 19.22 20.34c20.44 19.51 43.68 28.71 62.14 24.59c12.94-2.89 21.68-10.6 30.93-18.77c4.94-4.56 10.18-8.76 15.7-12.59c0.83-0.56 1.68-1.1 2.56-1.63c8.49-5.17 19.6-9.51 33.98-13.28c0.03-0.01 0.05-0.01 0.08-0.02v-2.53c-0.24 0.06-0.47 0.12-0.69 0.18C511.3 337.33 499.97 341.76 491.27 347.05z M482.34 42.62c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 107.76 28.7 158.68 0.01 217.64v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 18.83 493.45 28.8 482.34 42.62z M480.77 59.25c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C71.11 123.69 28.69 173.46 0.01 231.06v3.47c28.58-58.56 71.35-109.14 124.51-147.08c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c11.15-13.89 27.24-23.8 44.62-28.22v-1.6C508.75 34.86 492.21 45.01 480.77 59.25z M480.77 50.81c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.5-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C71.11 115.25 28.69 165.02 0.01 222.62v3.47c28.58-58.56 71.35-109.13 124.51-147.07c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c11.15-13.9 27.24-23.8 44.62-28.22v-1.61C508.75 26.42 492.21 36.58 480.77 50.81z M483.5 33.16c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.89-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 98.81 28.7 150.58 0.01 210.55v3.59c28.55-60.98 72.36-113.61 127.25-152.77c30.54-21.78 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.56-13.16 25.56-22.74 41.89-27.47V5.05C509.79 9.82 494.35 19.66 483.5 33.16z M482.34 68.27c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 133.41 28.7 184.33 0.01 243.29v3.53c28.57-59.94 71.94-111.7 126.09-150.34c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 44.49 493.45 54.46 482.34 68.27z M483.5 24.49c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.9-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98C282.76 7.1 248.97 2.6 214.27 9.95c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 90.14 28.7 141.91 0.01 201.88v3.59C28.56 144.5 72.37 91.87 127.25 52.7c30.54-21.78 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.24-11.5 21.87-20.28 35.81-25.46h-4.2C503.56 5.41 492.09 13.8 483.5 24.49z M482.34 93.49c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 158.63 28.7 209.55 0.01 268.51v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 69.7 493.45 79.68 482.34 93.49z M482.34 102.19c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 167.33 28.7 218.25 0.01 277.21v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 78.4 493.45 88.37 482.34 102.19z M482.34 76.28c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.22-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 141.42 28.7 192.34 0.01 251.3v3.53c28.57-59.95 71.94-111.71 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 52.49 493.45 62.46 482.34 76.28z M482.34 84.13c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 149.27 28.7 200.19 0.01 259.15v3.53c28.57-59.94 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 60.34 493.45 70.32 482.34 84.13z M418.21 21.76c9.3-5.09 16.1-13 21.97-21.75h-1.83c-5.65 8.33-12.06 15.57-20.87 20.41c-22.56 12.34-51.13 2.07-70.35-11.67c-3.84-2.75-7.57-5.7-11.22-8.74h-2.39c4.12 3.49 8.34 6.87 12.71 9.99C365.83 24.02 395.04 34.46 418.21 21.76z M422.8 31.92c12.81-7 20.89-19.37 28.3-31.91h-1.79c-7.39 12.48-15 23.86-27.24 30.57c-22.55 12.34-51.12 2.07-70.34-11.67c-8.03-5.74-15.59-12.38-22.91-18.9h-2.31c7.75 6.91 15.76 14.03 24.32 20.15C370.43 34.18 399.64 44.63 422.8 31.92z M214.27 2.97c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 83.16 28.7 134.93 0.01 194.9v3.59c28.55-60.97 72.36-113.6 127.24-152.76c30.54-21.79 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c5.9-7.36 13.19-13.59 21.32-18.49h-2.92c-7.43 4.78-14.1 10.68-19.59 17.5c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.9-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98C294.23 6.79 276.72 1.53 258.05 0h-23.39C227.93 0.53 221.12 1.52 214.27 2.97z M347.59 0.01c18.18 9.3 40.4 13.82 58.8 3.73c2.04-1.11 3.95-2.36 5.77-3.73h-2.62c-1.25 0.85-2.54 1.65-3.89 2.39c-16.97 9.29-37.34 5.77-54.58-2.39H347.59z M426.5 39.91c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-2.85-2.55-5.73-5.12-8.65-7.66h-2.35c3.38 2.91 6.7 5.88 9.98 8.81c7.94 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c1.01-1.73 2.03-3.47 3.06-5.21h-1.79c-0.87 1.48-1.73 2.95-2.61 4.42C448.25 18.78 440.34 32.32 426.5 39.91z M431.36 49.87c-22.56 12.34-51.13 2.07-70.35-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-6.69-5.98-13.52-12.08-20.78-17.62h-2.56c7.83 5.82 15.15 12.36 22.32 18.77c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c2.96-5.08 5.99-10.27 9.32-15.17h-1.86c-3.12 4.68-5.98 9.58-8.78 14.38C453.11 28.74 445.19 42.28 431.36 49.87z M412.47 11.66c5.53-3.02 10.18-7.05 14.27-11.65h-2.03c-3.76 4.05-7.98 7.57-12.97 10.31c-21.8 11.94-49.23 2.73-68.4-10.31h-2.7C360.24 13.97 389.36 24.33 412.47 11.66z M464.53 22.85c-8.37 14.35-16.29 27.9-30.12 35.48c-22.56 12.34-51.13 2.07-70.35-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.34-9.25-21.02-18.78-33.09-26.08h-3.05c0.26 0.15 0.51 0.29 0.76 0.44c12.56 7.31 23.65 17.21 34.35 26.78c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c0.53-0.66 1.07-1.31 1.62-1.95h-2.01c-0.27 0.32-0.53 0.65-0.8 0.98C473.38 7.7 468.88 15.4 464.53 22.85z M482.34 10.5c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-5.85-3.4-12.04-6.28-18.51-8.61h-4.79c7.94 2.52 15.49 5.85 22.53 9.95c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c3.37-4.2 7.19-8.04 11.37-11.47h-2.39C488.82 3.2 485.41 6.71 482.34 10.5z M490.24 269.51c-0.87 0.71-1.72 1.44-2.55 2.19c-5.79 5.22-10.7 11.18-15.43 16.94c-8.7 10.58-16.92 20.57-29.75 25.32c-21.58 8.01-47.4-4.42-64.36-18.71c-7.53-6.34-14.67-13.56-21.57-20.54c-4.9-4.96-9.97-10.08-15.16-14.89c-5.87-5.57-12.23-10.61-18.99-15.05c-3.03-1.95-6.18-3.72-9.41-5.31c-14.09-6.92-30.53-10.42-47.74-10.42c-12.69 0.04-25.31 1.85-37.5 5.4c-24.89 7.19-47.3 20.78-65.94 33.12c-6.54 4.33-13.27 8.96-20.57 14.14c-33.17 23.57-61.78 47.37-85.07 70.73C32.89 375.8 13.53 399.09 0.01 420v3.7l0.04 0.03c13.49-21.45 33.41-45.6 57.59-69.84c23.2-23.28 51.73-47 84.8-70.5c7.29-5.18 14-9.79 20.52-14.11c18.51-12.26 40.75-25.75 65.38-32.86c29.53-8.54 60.07-6.76 83.78 4.88c3.16 1.56 6.23 3.29 9.2 5.19c6.66 4.38 12.92 9.35 18.7 14.84c5.17 4.78 10.21 9.88 15.1 14.82c6.94 7.02 14.11 14.28 21.7 20.68c17.41 14.66 44 27.35 66.4 19.07c13.36-4.96 21.75-15.16 30.63-25.96c4.69-5.7 9.54-11.59 15.22-16.72c0.81-0.72 1.63-1.43 2.48-2.12c8.63-7.1 19.73-12.83 32.98-17.04c0.68-0.22 1.37-0.43 2.06-0.64v-2.14c-0.9 0.27-1.8 0.54-2.7 0.83C510.39 256.39 499.07 262.24 490.24 269.51z M490.09 256.6c-0.86 0.75-1.71 1.5-2.53 2.27c-5.75 5.41-10.6 11.6-15.3 17.59c-8.67 11.03-16.85 21.45-29.79 26.55c-21.7 8.54-47.86-3.61-65.1-17.84c-7.67-6.34-14.94-13.58-21.97-20.57c-4.88-4.87-9.93-9.89-15.11-14.62c-5.91-5.53-12.3-10.53-19.09-14.94c-3.04-1.93-6.19-3.68-9.43-5.26c-14.29-6.95-30.98-10.48-48.43-10.48c-12.46 0.03-24.85 1.76-36.85 5.13c-25.45 7.1-47.72 20.4-66.15 32.48c-6.57 4.32-13.49 9.05-20.55 14.07c-32.56 23.16-60.95 47.16-84.38 71.35c-22.85 23.58-41.94 47.46-55.4 69.29v3.72l0.05 0.05c13.46-22.42 33.09-47.2 56.79-71.66c23.34-24.1 51.63-48.02 84.1-71.11c7.04-5.01 13.93-9.72 20.48-14.02c18.31-12 40.41-25.21 65.59-32.24c29.54-8.24 60.1-6.34 83.88 5.23c3.17 1.54 6.25 3.26 9.23 5.15c6.69 4.34 12.99 9.27 18.81 14.73c5.15 4.69 10.19 9.7 15.06 14.55c7.06 7.03 14.36 14.3 22.11 20.69c17.68 14.59 44.58 27.03 67.1 18.15c13.44-5.29 21.78-15.93 30.61-27.18c4.65-5.93 9.45-12.06 15.1-17.37c0.81-0.75 1.63-1.49 2.47-2.21c8.64-7.43 19.68-13.37 32.81-17.66c0.8-0.26 1.59-0.51 2.39-0.76v-2.09c-1.01 0.3-2.01 0.62-3.02 0.97C510.19 242.94 498.93 249.01 490.09 256.6z M482.34 109.23c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 174.37 28.7 225.29 0.01 284.25v3.53c28.57-59.94 71.94-111.7 126.09-150.34c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8V80.8C509.35 85.45 493.45 95.42 482.34 109.23z M489.92 243.63c-0.86 0.78-1.7 1.56-2.51 2.37c-5.7 5.61-10.51 12.03-15.16 18.23c-8.62 11.5-16.76 22.35-29.82 27.8c-21.84 9.08-48.33-2.8-65.85-16.96c-7.82-6.32-15.23-13.58-22.39-20.59c-4.87-4.77-9.9-9.7-15.05-14.33c-5.96-5.49-12.38-10.45-19.2-14.83c-3.05-1.91-6.21-3.65-9.45-5.22c-14.48-6.99-31.43-10.54-49.12-10.54c-12.23 0.02-24.4 1.65-36.2 4.85c-26.14 7.05-49.18 20.72-66.34 31.85c-6.6 4.3-13.51 9-20.52 13.98c-32.04 22.8-60.19 47.02-83.69 71.97c-22.38 23.76-41.21 48.25-54.61 71.01v3.77l0.04 0.02c13.41-23.41 32.77-48.82 55.99-73.47c23.41-24.86 51.46-49 83.4-71.71c6.98-4.97 13.87-9.66 20.45-13.94c17.04-11.05 39.92-24.63 65.8-31.6c29.55-7.96 60.15-5.93 83.99 5.56c3.18 1.53 6.27 3.24 9.26 5.11c6.72 4.31 13.06 9.2 18.93 14.62c5.12 4.6 10.14 9.53 15 14.28c7.19 7.05 14.62 14.33 22.51 20.72c17.95 14.52 45.2 26.66 67.8 17.24c13.54-5.65 21.84-16.71 30.62-28.42c4.6-6.15 9.37-12.51 14.97-18.02c0.8-0.78 1.6-1.54 2.45-2.3c8.65-7.74 19.63-13.9 32.64-18.27c0.91-0.31 1.82-0.6 2.73-0.89v-2.02c-1.12 0.34-2.24 0.7-3.36 1.06C509.98 229.42 498.77 235.7 489.92 243.63z M489.62 217.79c-0.85 0.82-1.68 1.67-2.48 2.53c-5.6 5.98-10.31 12.84-14.87 19.48c-8.53 12.43-16.6 24.17-29.9 30.31c-22.07 10.2-49.26-1.16-67.35-15.19c-8.12-6.31-15.79-13.59-23.2-20.63c-4.84-4.59-9.84-9.34-14.94-13.8c-6.05-5.41-12.54-10.29-19.42-14.59c-3.07-1.88-6.24-3.59-9.49-5.13c-15.09-7.15-32.29-10.77-50.33-10.77c-11.83 0.03-23.6 1.51-35.07 4.41c-20.93 5.22-42.15 14.93-66.75 30.57c-6.62 4.2-13.5 8.85-20.47 13.81c-30.09 21.23-57.7 45.79-82.3 73.2c-21.79 24.51-39.63 49.54-53.04 74.46v3.82c13.52-25.78 31.81-51.71 54.38-77.09c24.51-27.3 52.02-51.76 82-72.92c6.94-4.95 13.8-9.58 20.39-13.77c24.45-15.53 45.49-25.17 66.23-30.35c30-7.49 59.9-5.27 84.2 6.26c3.19 1.51 6.3 3.19 9.32 5.04c6.79 4.24 13.21 9.06 19.17 14.41c5.07 4.42 10.05 9.16 14.88 13.74c7.44 7.06 15.14 14.38 23.34 20.74c18.5 14.37 46.38 25.94 69.2 15.42c13.75-6.34 21.95-18.29 30.63-30.93c4.52-6.58 9.19-13.38 14.7-19.27c0.78-0.84 1.59-1.66 2.41-2.46c8.51-8.28 19.69-15.04 32.33-19.55c1.13-0.41 2.26-0.8 3.4-1.17v-1.88c-1.35 0.42-2.68 0.87-4.01 1.35C509.71 202.43 498.3 209.32 489.62 217.79z M490.57 295.36c-0.88 0.67-1.74 1.35-2.58 2.03c-5.6 4.81-10.83 10.02-15.66 15.6c-8.79 9.68-17.1 18.83-29.74 22.91c-21.3 6.88-46.45-6.06-62.87-20.47c-7.21-6.35-14.08-13.52-20.73-20.46c-4.93-5.16-10.04-10.48-15.3-15.49c-5.78-5.66-12.06-10.78-18.77-15.29c-3.02-1.98-6.14-3.78-9.37-5.39c-13.72-6.85-29.7-10.32-46.46-10.32c-13.13 0.04-26.18 2.06-38.71 5.97C208 261.37 188 273.2 164.84 288.84c-6.58 4.45-13.32 9.13-20.62 14.32c-35.12 24.95-63.4 47.68-86.44 69.5c-24.23 22.92-44.14 45.02-57.77 64.12v3.64l0.07 0.06c13.56-19.52 34.03-42.43 59.2-66.23c22.97-21.74 51.16-44.42 86.21-69.31c7.28-5.17 14.02-9.84 20.58-14.28c22.99-15.53 42.84-27.29 64.96-34.12c29.5-9.1 59.95-7.57 83.55 4.22c3.15 1.57 6.21 3.33 9.15 5.26c6.6 4.45 12.78 9.48 18.46 15.05c5.21 4.97 10.3 10.28 15.22 15.41c6.68 6.97 13.58 14.18 20.87 20.59c16.87 14.8 42.8 28.06 64.99 20.9c13.19-4.26 21.68-13.61 30.68-23.52c4.75-5.5 9.91-10.64 15.42-15.38c0.82-0.67 1.66-1.32 2.51-1.97c8.6-6.43 19.81-11.74 33.3-15.77c0.47-0.14 0.94-0.27 1.41-0.41v-2.27c-0.68 0.19-1.35 0.39-2.03 0.6C510.82 283.35 499.38 288.77 490.57 295.36z M490.91 321.23c-0.89 0.61-1.77 1.22-2.62 1.86c-5.61 4.35-10.9 9.1-15.83 14.21c-8.89 8.81-17.3 17.13-29.76 20.54c-21.07 5.76-45.53-7.71-61.4-22.22c-6.92-6.34-13.54-13.47-19.93-20.37c-4.96-5.34-10.09-10.87-15.4-16.07c-5.7-5.74-11.91-10.94-18.56-15.53c-2.99-2.02-6.1-3.85-9.32-5.48c-13.39-6.81-28.94-10.25-45.28-10.25c-13.54 0.06-26.99 2.28-39.84 6.56c-23.65 7.79-44.3 21.31-65.13 35.66c-6.91 4.77-13.8 9.6-20.67 14.49c-25.82 18.32-59.15 42.65-87.81 68.25c-25.56 22.81-45.52 43.22-59.35 60.7v3.57l0.1 0.06c13.8-17.86 34.25-38.93 60.8-62.62c28.59-25.53 61.84-49.8 87.62-68.1c6.84-4.85 13.74-9.7 20.64-14.46c20.69-14.25 41.18-27.68 64.54-35.37c29.44-9.68 59.83-8.4 83.34 3.55c3.13 1.59 6.16 3.37 9.08 5.33c6.53 4.52 12.64 9.63 18.23 15.27c5.26 5.15 10.37 10.67 15.31 15.99c6.42 6.93 13.07 14.09 20.07 20.5c16.32 14.94 41.61 28.78 63.57 22.75c13.05-3.56 21.67-12.1 30.78-21.12c4.86-5.03 10.07-9.71 15.59-14c0.82-0.61 1.67-1.22 2.53-1.8c8.63-5.84 19.63-10.59 33.64-14.52c0.24-0.07 0.49-0.14 0.74-0.21V306c-0.46 0.13-0.91 0.25-1.36 0.39C510.97 310.39 499.74 315.24 490.91 321.23z M489.47 204.86c-0.84 0.85-1.66 1.72-2.46 2.61c-5.55 6.18-10.21 13.25-14.72 20.09c-8.49 12.91-16.52 25.09-29.95 31.59c-22.18 10.73-49.73-0.36-68.09-14.32c-8.27-6.28-16.06-13.57-23.59-20.61c-4.83-4.52-9.82-9.19-14.9-13.57c-6.09-5.37-12.62-10.21-19.53-14.47c-3.09-1.86-6.26-3.56-9.52-5.09c-24.72-11.61-55.07-13.99-85.43-6.7c-21.34 5.12-42.61 14.64-66.96 29.94c-6.67 4.2-13.54 8.81-20.44 13.73c-30.05 21.26-57.44 46.04-81.61 73.81c-21.34 24.68-38.91 50.3-52.26 76.19v3.82c13.47-26.8 31.49-53.33 53.57-78.87c24.07-27.67 51.37-52.35 81.3-73.54c6.88-4.9 13.72-9.5 20.36-13.68c24.18-15.2 45.29-24.64 66.44-29.72c29.99-7.21 59.92-4.87 84.29 6.59c3.2 1.5 6.32 3.17 9.35 5c6.82 4.22 13.27 9 19.29 14.3c5.06 4.36 10.04 9.02 14.86 13.52c7.56 7.08 15.38 14.39 23.72 20.73c18.78 14.27 47 25.58 69.9 14.5c13.86-6.71 22.39-19.66 30.64-32.19c4.47-6.79 9.1-13.82 14.56-19.9c0.78-0.86 1.58-1.71 2.4-2.55c9.12-8.99 20.1-15.87 32.16-20.17c1.23-0.46 2.48-0.89 3.73-1.3v-1.82c-1.45 0.47-2.89 0.96-4.32 1.49C509.96 188.65 498.76 195.68 489.47 204.86z M490.73 308.27c-0.88 0.64-1.75 1.28-2.59 1.94c-5.61 4.58-10.87 9.57-15.75 14.92c-8.84 9.24-17.2 17.98-29.74 21.72c-21.2 6.32-46-6.88-62.13-21.35c-7.08-6.34-13.82-13.5-20.34-20.41c-4.95-5.25-10.07-10.67-15.34-15.78c-5.74-5.7-11.99-10.85-18.67-15.4c-3-1.99-6.12-3.81-9.34-5.43c-13.56-6.84-29.32-10.28-45.87-10.28c-13.34 0.06-26.59 2.17-39.29 6.26c-24.24 7.74-45.57 21.55-65.32 35.03c-6.57 4.49-13.33 9.2-20.65 14.4c-36.63 26.01-64.32 47.9-87.13 68.88c-25.08 23.05-44.76 44.03-58.56 62.41v3.6l0.11 0.08c13.77-18.82 33.95-40.49 59.99-64.42c22.74-20.91 50.36-42.74 86.91-68.7c7.31-5.19 14.05-9.89 20.62-14.38c19.61-13.39 40.78-27.1 64.74-34.74c29.47-9.4 59.9-7.99 83.45 3.87c3.13 1.59 6.18 3.36 9.11 5.3c6.57 4.48 12.71 9.56 18.35 15.16c5.24 5.06 10.34 10.47 15.27 15.7c6.55 6.95 13.32 14.13 20.47 20.55c16.59 14.87 42.2 28.42 64.27 21.82c13.12-3.92 21.67-12.86 30.72-22.32c4.8-5.27 9.99-10.18 15.51-14.7c0.82-0.64 1.66-1.27 2.52-1.88c8.55-6.1 19.81-11.2 33.47-15.16c0.36-0.11 0.71-0.21 1.07-0.31v-2.33c-0.57 0.16-1.13 0.32-1.71 0.47C510.98 296.82 499.5 302.03 490.73 308.27z M490.4 282.43c-0.88 0.7-1.73 1.4-2.56 2.11c-5.83 5.03-10.77 10.75-15.54 16.28c-8.74 10.13-17.01 19.7-29.74 24.12c-21.45 7.45-46.92-5.25-63.61-19.6c-7.38-6.35-14.4-13.56-21.18-20.52c-4.91-5.04-9.98-10.26-15.2-15.16c-5.83-5.61-12.15-10.69-18.88-15.17c-3.02-1.96-6.16-3.75-9.39-5.34c-13.91-6.9-30.12-10.38-47.1-10.38c-12.92 0.04-25.76 1.96-38.12 5.69c-24.26 7.25-45.93 20.51-65.73 33.75c-6.55 4.38-13.48 9.17-20.6 14.23c-34.31 24.39-62.37 47.33-85.76 70.12C33.22 385.7 13.59 408.4 0.01 428.4v3.67l0.08 0.04c13.53-20.48 33.72-44.01 58.39-68.03c23.31-22.73 51.28-45.59 85.5-69.91c7.1-5.05 14.01-9.83 20.55-14.2c19.67-13.15 41.17-26.31 65.16-33.48c29.51-8.83 60.01-7.16 83.67 4.55c3.16 1.56 6.22 3.3 9.17 5.22c6.63 4.41 12.85 9.41 18.58 14.94c5.19 4.87 10.25 10.07 15.14 15.09c6.82 7 13.87 14.24 21.32 20.66c17.13 14.73 43.38 27.71 65.69 19.99c13.27-4.6 21.71-14.38 30.65-24.74c4.72-5.47 9.6-11.13 15.32-16.05c0.81-0.7 1.64-1.39 2.49-2.05c8.62-6.77 19.77-12.28 33.13-16.4c0.58-0.18 1.16-0.36 1.74-0.53v-2.21c-0.79 0.23-1.58 0.47-2.37 0.72C510.61 269.88 499.22 275.51 490.4 282.43z M489.75 230.72c-0.85 0.8-1.68 1.61-2.49 2.45c-5.65 5.8-10.42 12.44-15.02 18.86c-8.57 11.95-16.67 23.25-29.86 29.04c-21.94 9.65-48.78-1.98-66.6-16.08c-7.96-6.31-15.49-13.57-22.77-20.59c-4.87-4.69-9.89-9.54-15.02-14.09c-6-5.45-12.46-10.37-19.31-14.71c-3.06-1.89-6.22-3.62-9.47-5.17c-14.86-7.11-31.79-10.71-49.57-10.71c-12.07 0.04-24.09 1.61-35.77 4.68c-20.82 5.4-41.35 15.03-66.55 31.22c-6.58 4.21-13.47 8.89-20.49 13.9c-31.58 22.48-59.5 46.9-82.99 72.58c-22.26 24.31-40.35 48.77-53.83 72.73v3.8l0.03 0.01c13.56-24.76 32.13-50.09 55.19-75.28c23.41-25.59 51.23-49.92 82.7-72.32c7-4.99 13.87-9.65 20.41-13.85c25.04-16.08 45.39-25.63 66.02-30.98c29.99-7.78 59.84-5.69 84.09 5.91c3.19 1.52 6.29 3.22 9.29 5.08c6.76 4.28 13.13 9.13 19.05 14.51c5.1 4.52 10.11 9.36 14.96 14.03c7.31 7.06 14.87 14.35 22.9 20.72c18.23 14.43 45.79 26.3 68.51 16.33c13.64-6 21.88-17.5 30.61-29.67c4.56-6.36 9.28-12.95 14.84-18.65c0.79-0.81 1.6-1.6 2.43-2.38c8.53-7.97 19.76-14.52 32.48-18.91c1.02-0.36 2.04-0.7 3.07-1.03v-1.95c-1.23 0.38-2.46 0.79-3.69 1.21C509.93 215.89 498.48 222.57 489.75 230.72z M486.59 127.18c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C73.25 194.25 28.62 248.42 0.01 311.2v3.73c28.43-63.85 73.43-118.94 130.33-159.55c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52V100C511 105.07 496.77 114.51 486.59 127.18z M485.1 142.82c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C72.73 209.2 28.67 262.2 0.01 323.61v3.66c28.5-62.45 72.93-116.34 128.84-156.24c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.22-12.72 24.59-22.11 40.29-26.99v-1.63C510.42 120.11 495.61 129.75 485.1 142.82z M486.59 135.41c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.85 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 113.3 496.77 122.73 486.59 135.41z M489.29 191.93c-0.83 0.88-1.64 1.78-2.43 2.69c-5.5 6.36-10.11 13.65-14.57 20.7c-8.46 13.37-16.44 26.01-30.01 32.86c-22.3 11.28-50.19 0.46-68.84-13.42c-8.42-6.27-16.33-13.56-23.99-20.61c-4.81-4.44-9.79-9.03-14.86-13.33c-6.13-5.32-12.69-10.12-19.62-14.35c-3.09-1.85-6.28-3.53-9.54-5.05c-24.7-11.5-55.05-14.01-85.46-7.03c-21.51 4.99-43.48 14.57-67.16 29.31c-6.67 4.15-13.54 8.74-20.41 13.64c-30 21.3-57.19 46.31-80.92 74.43c-20.22 23.82-37.5 49.99-51.47 77.94v3.77c14.16-28.98 31.88-56.07 52.75-80.66c23.64-28.01 50.72-52.92 80.61-74.14c6.85-4.88 13.69-9.44 20.33-13.58c23.52-14.63 45.33-24.15 66.66-29.1c30.03-6.87 60-4.43 84.38 6.92c3.22 1.5 6.35 3.16 9.39 4.97c6.85 4.18 13.34 8.92 19.4 14.19c5.04 4.28 10 8.86 14.81 13.28c7.69 7.08 15.63 14.4 24.12 20.72c19.05 14.19 47.6 25.2 70.58 13.58c13.97-7.06 22.45-20.49 30.66-33.47c4.42-7 9-14.23 14.41-20.49c0.77-0.88 1.57-1.77 2.39-2.63c8.98-9.24 19.91-16.35 32-20.8c1.35-0.52 2.71-1 4.08-1.45v-1.74c-1.56 0.5-3.12 1.05-4.66 1.63C509.6 175.25 498.45 182.5 489.29 191.93z M485.1 118.93c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C72.73 185.31 28.67 238.32 0.01 299.73v3.66c28.5-62.45 72.93-116.34 128.84-156.25c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.22-12.73 24.59-22.11 40.29-26.99v-1.63C510.42 96.23 495.61 105.86 485.1 118.93z M486.59 168.91c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.32 23.68-21.51 38.8-26.51v-1.64C511 146.79 496.77 156.23 486.59 168.91z M489.14 178.97c-0.82 0.9-1.63 1.82-2.42 2.77c-5.43 6.53-9.99 14.03-14.39 21.29c-8.42 13.87-16.36 26.96-30.07 34.16c-22.39 11.84-50.63 1.29-69.59-12.55c-8.55-6.24-16.6-13.53-24.36-20.58c-4.81-4.36-9.78-8.87-14.83-13.09c-6.18-5.29-12.78-10.05-19.74-14.24c-3.08-1.81-6.3-3.5-9.56-5.01c-24.79-11.43-55.15-14.05-85.5-7.36c-21.86 4.85-43.9 14.23-67.37 28.67c-6.64 4.09-13.5 8.65-20.38 13.56c-29.97 21.34-56.95 46.58-80.23 75.05c-20.06 24.41-37.08 51.16-50.69 79.67v3.75c13.79-29.53 31.24-57.22 51.92-82.4c23.19-28.36 50.07-53.5 79.91-74.75c6.85-4.89 13.68-9.43 20.29-13.5c23.33-14.36 45.2-23.67 66.88-28.48c30.01-6.6 60.02-4.04 84.49 7.26c3.22 1.49 6.38 3.14 9.42 4.93c6.88 4.15 13.41 8.86 19.52 14.09c5.03 4.19 9.98 8.69 14.78 13.05c7.8 7.08 15.87 14.4 24.5 20.69c19.35 14.12 48.23 24.85 71.28 12.68c14.1-7.39 22.53-21.3 30.69-34.73c4.37-7.21 8.89-14.67 14.26-21.11c0.77-0.92 1.56-1.82 2.37-2.71c8.84-9.49 19.73-16.83 31.85-21.45c1.46-0.57 2.93-1.1 4.41-1.59v-1.67c-1.67 0.54-3.33 1.13-4.98 1.77C509.25 161.84 498.15 169.32 489.14 178.97z M486.59 150.75c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 128.63 496.77 138.07 486.59 150.75z M486.59 160.47c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 138.35 496.77 147.79 486.59 160.47z'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='526.6px' height='869.97px' viewBox='0 0 526.6 869.97' enable-background='new 0 0 526.6 869.97' xml:space='preserve'%3E%3Cpath d='M516.1 498.35c3.38-0.49 6.89-0.99 10.49-1.55v3.27c-3.44 0.52-6.8 1-10.03 1.47c-8.11 1.17-15.78 2.27-22.33 3.73c-0.94 0.21-1.87 0.42-2.77 0.65c-4.85 1.2-9.18 2.51-13.37 3.79c-11.45 3.47-21.35 6.47-34.81 4.84c-17.04-2.05-37.01-15.37-53.41-35.63c-4.83-5.97-9.53-12.38-14.07-18.58c-5.21-7.11-10.6-14.48-16.34-21.38c-4.91-6.15-10.47-11.76-16.58-16.72c-2.73-2.15-5.62-4.1-8.64-5.83c-26.66-15.18-59.72-9.36-81.77 1.16c-17.54 8.37-32.31 20.42-47.96 33.18c-4.49 3.66-9.02 7.35-13.65 10.98c-6.77 5.33-13.88 10.62-21.14 15.74c-27.82 19.63-56.77 36.26-84.77 52.34l-12.8 7.36c-29.92 17.27-56.18 30.86-72.14 37.37v-3.49c15.93-6.63 41.48-19.91 70.52-36.66l12.8-7.37c27.93-16.03 56.82-32.62 84.52-52.18c7.21-5.08 14.28-10.34 21.01-15.64c4.62-3.63 9.13-7.3 13.6-10.95c15.8-12.89 30.73-25.06 48.61-33.59c14.44-6.88 30.21-10.53 46.2-10.7c13.09 0 26.44 2.75 38.55 9.64c3.16 1.81 6.18 3.85 9.04 6.1c6.29 5.1 12.01 10.87 17.07 17.2c5.79 6.98 11.21 14.38 16.45 21.53c4.52 6.17 9.2 12.54 13.97 18.46c15.89 19.62 35.07 32.5 51.29 34.46c12.8 1.53 22.39-1.36 33.5-4.73c4.23-1.28 8.61-2.61 13.53-3.83c0.93-0.23 1.88-0.46 2.85-0.67C500.19 500.64 507.92 499.53 516.1 498.35z M493.1 476.26c-0.95 0.27-1.89 0.56-2.81 0.84c-5.34 1.68-10.03 3.51-14.57 5.29c-10.6 4.15-19.77 7.75-32.25 7.01c-16.48-0.96-36.19-13.2-52.7-32.7c-5.09-6.02-10.05-12.55-14.84-18.87c-5.19-6.85-10.57-13.93-16.28-20.61c-5.14-6.24-10.94-11.93-17.28-16.95c-2.88-2.22-5.91-4.23-9.08-6.02c-12.34-6.93-25.96-9.67-39.3-9.67c-15.7 0.14-31.2 3.56-45.5 10.04c-18.6 8.47-34.2 20.83-50.73 33.92c-3.92 3.12-7.87 6.25-11.9 9.35c-6.81 5.26-13.86 10.47-20.96 15.48c-24.45 17.27-49.77 32.66-74.26 47.54c-7.39 4.49-14.65 8.9-21.72 13.26c-26.9 16.58-52.46 31.46-68.91 40.12v3.49c16.44-8.57 42.78-23.88 70.52-40.96c7.06-4.36 14.31-8.77 21.69-13.25c24.54-14.9 49.9-30.32 74.44-47.65c7.14-5.04 14.22-10.27 21.07-15.56c4.04-3.11 8-6.25 11.94-9.37c16.37-12.97 31.82-25.21 50.09-33.53c22.11-10.06 55.27-15.49 82-0.49c3.03 1.71 5.94 3.63 8.7 5.76c6.18 4.89 11.81 10.43 16.82 16.51c5.66 6.61 11 13.66 16.18 20.47c4.82 6.35 9.8 12.91 14.94 19c17.05 20.15 37.58 32.78 54.89 33.8c13.2 0.74 22.62-2.94 33.56-7.22c4.49-1.76 9.13-3.58 14.37-5.21c0.89-0.28 1.8-0.55 2.73-0.82c7.96-2.26 17.63-3.92 27.88-5.67c1.57-0.28 3.15-0.55 4.76-0.83v-3.14c-1.79 0.31-3.55 0.61-5.29 0.89C510.98 472.28 501.23 473.95 493.1 476.26z M491.08 334.14c-0.9 0.58-1.79 1.17-2.64 1.78c-5.62 4.12-10.93 8.63-15.91 13.5c-8.95 8.37-17.4 16.29-29.79 19.37c-20.91 5.14-45.06-8.52-60.66-23.1c-6.78-6.34-13.26-13.44-19.53-20.3c-4.98-5.45-10.12-11.09-15.45-16.39c-5.65-5.78-11.83-11.01-18.45-15.64c-2.98-2.03-6.09-3.88-9.3-5.53c-13.22-6.77-28.58-10.19-44.71-10.19c-13.74 0.07-27.38 2.38-40.37 6.85c-23 7.81-43.01 21.06-64.92 36.3c-6.91 4.82-13.81 9.68-20.7 14.57c-34.67 24.6-62.99 45.51-88.5 67.64c-26.07 22.58-46.29 42.41-60.14 58.98v3.55l0.09 0.07c13.79-16.88 34.53-37.34 61.61-60.8c25.44-22.07 53.7-42.94 88.32-67.5c6.87-4.87 13.77-9.74 20.68-14.55c21.75-15.14 41.61-28.3 64.32-36c29.43-9.99 59.77-8.82 83.24 3.2c3.13 1.6 6.15 3.4 9.05 5.37c6.5 4.55 12.57 9.69 18.11 15.37c5.28 5.26 10.41 10.88 15.37 16.3c6.3 6.9 12.82 14.04 19.66 20.45c20.8 19.42 44.3 28.26 62.86 23.66c13-3.22 21.67-11.35 30.85-19.94c4.9-4.79 10.13-9.24 15.65-13.3c0.83-0.59 1.68-1.17 2.55-1.72c8.57-5.51 19.63-10.05 33.81-13.9c0.14-0.04 0.27-0.07 0.41-0.11v-2.46c-0.35 0.09-0.69 0.18-1.04 0.28C511.14 323.87 499.86 328.5 491.08 334.14z M493.72 515.06c-0.97 0.18-1.92 0.38-2.86 0.58c-4.65 1-8.82 2.09-12.85 3.14c-11.88 3.1-21.27 5.55-34.28 3.56c-16.09-2.46-35-15.67-50.58-35.34c-4.63-5.86-9.16-12.16-13.55-18.26c-5.26-7.31-10.7-14.87-16.53-22c-5.01-6.37-10.7-12.18-16.96-17.32c-2.85-2.27-5.86-4.32-9.02-6.14c-12-6.89-25.22-9.64-38.2-9.64c-16.13 0.18-32.03 3.95-46.53 11.04c-17.55 8.57-32.16 20.66-47.64 33.46c-4.72 3.9-9.47 7.84-14.36 11.7c-6.76 5.35-13.83 10.64-21.03 15.72c-29.18 20.59-61.11 38.37-89.28 54.07l-8.71 4.86c-29.67 16.54-55.53 29.2-71.33 34.93v3.49c15.87-5.59 42.41-18.53 72.93-35.53l8.7-4.86c28.25-15.73 60.27-33.56 89.59-54.25c7.24-5.12 14.37-10.44 21.17-15.83c4.9-3.89 9.68-7.83 14.41-11.75c15.32-12.67 29.79-24.65 46.99-33.05c22.01-10.75 55.01-16.79 81.65-1.49c3.01 1.74 5.89 3.7 8.61 5.86c6.08 5 11.6 10.64 16.46 16.83c5.76 7.06 11.17 14.57 16.4 21.84c4.41 6.12 8.96 12.45 13.64 18.36c16.09 20.31 35.78 33.97 52.67 36.55c13.69 2.08 23.85-0.57 35.61-3.63c4-1.04 8.13-2.12 12.72-3.1c0.91-0.2 1.84-0.39 2.78-0.57c5.91-1.15 12.7-2.01 19.89-2.93c3.95-0.5 8.08-1.03 12.36-1.64v-3.32c-4.43 0.63-8.7 1.18-12.78 1.7C506.57 513.02 499.73 513.9 493.72 515.06z M493.92 527.98c-0.97 0.17-1.93 0.33-2.86 0.5c-4.32 0.8-8.27 1.66-12.01 2.48c-12.26 2.69-21.95 4.81-35.22 2.36c-15.95-2.95-34.6-16.49-49.88-36.22c-4.48-5.79-8.87-12.01-13.12-18.02c-5.28-7.47-10.74-15.19-16.61-22.48c-6.15-7.64-11.35-13.02-16.85-17.44c-2.84-2.29-5.85-4.36-9-6.19c-11.9-6.9-25-9.65-37.86-9.65c-16.28 0.2-32.3 4.09-46.86 11.38c-17.23 8.6-31.56 20.64-46.72 33.37c-4.95 4.14-9.93 8.32-15.07 12.43c-6.7 5.35-13.78 10.67-21.05 15.8c-30.65 21.61-64.3 39.76-94 55.78l-4.67 2.51c-30.25 16.3-56.4 28.33-72.13 33.2v3.51c15.83-4.74 42.66-17.02 73.71-33.75l4.66-2.51c29.79-16.06 63.53-34.26 94.34-55.99c7.33-5.16 14.47-10.52 21.22-15.92c5.16-4.12 10.17-8.31 15.13-12.48c15.01-12.61 29.19-24.51 46.07-32.94c21.98-10.98 54.93-17.24 81.54-1.83c3 1.74 5.87 3.71 8.57 5.89c5.31 4.28 10.34 9.5 16.35 16.93c5.8 7.21 11.22 14.88 16.47 22.31c4.28 6.04 8.69 12.29 13.22 18.14c15.77 20.37 35.18 34.37 51.92 37.47c13.94 2.56 24.41 0.27 36.55-2.39c3.7-0.81 7.61-1.67 11.89-2.45c0.92-0.17 1.85-0.33 2.81-0.49c5.26-0.86 11.22-1.51 17.53-2.21c4.7-0.53 9.52-1.06 14.58-1.72v-3.38c-5.18 0.68-10.12 1.23-14.94 1.76C505.28 526.44 499.27 527.11 493.92 527.98z M494.36 553.82l-2.9 0.33c-3.48 0.42-6.73 0.87-9.82 1.31c-13.24 1.86-23.69 3.31-37.62-0.2c-15.67-3.94-33.79-18.14-48.49-37.98c-4.16-5.64-8.27-11.66-12.24-17.49c-5.32-7.81-10.82-15.89-16.79-23.52c-6.06-7.75-11.19-13.2-16.64-17.68c-2.82-2.32-5.81-4.42-8.96-6.28c-11.7-6.88-24.55-9.64-37.2-9.64c-17.35 0-34.32 5.19-47.47 12.05c-16.65 8.7-30.42 20.6-45.01 33.22c-5.29 4.57-10.76 9.3-16.36 13.85c-6.68 5.44-13.78 10.81-21.09 15.96c-33.34 23.5-70.3 42.1-100.01 57.05c-31.33 15.75-58.09 26.52-73.75 29.73v3.55c21.65-4.21 56.42-20.67 75.32-30.17c29.8-15 66.9-33.67 100.44-57.31c7.38-5.2 14.54-10.62 21.28-16.1c5.64-4.58 11.14-9.33 16.45-13.92c14.43-12.47 28.06-24.25 44.35-32.76c27.53-14.38 59.43-15.36 81.29-2.5c2.99 1.77 5.83 3.76 8.51 5.97c5.24 4.31 10.22 9.59 16.11 17.13s11.37 15.58 16.65 23.34c3.99 5.85 8.11 11.9 12.32 17.6c15.16 20.46 34.01 35.15 50.43 39.29c14.6 3.67 25.35 2.16 38.96 0.27c3.06-0.43 6.29-0.88 9.75-1.3l2.85-0.33c4.12-0.44 8.59-0.77 13.36-1.11c5.66-0.41 11.93-0.86 18.52-1.58v-3.5c-6.67 0.73-13.03 1.19-18.77 1.61C503.03 553.05 498.52 553.38 494.36 553.82z M397.1 537.5c-3.86-5.48-7.69-11.3-11.38-16.93c-5.36-8.17-10.9-16.61-16.95-24.59c-5.94-7.84-11.01-13.37-16.42-17.92c-2.79-2.36-5.78-4.49-8.92-6.37c-11.38-6.8-24-9.49-36.41-9.49v-0.01c-17.92 0-35.42 5.61-48.22 12.58c-16.12 8.79-29.4 20.61-43.46 33.14c-5.65 5.02-11.48 10.22-17.49 15.19c-6.67 5.52-13.78 10.94-21.14 16.12c-32.65 22.99-69.43 40.86-101.33 55.8c-32.86 15.35-59.54 24.63-75.37 26.23v3.63c21.82-2.06 57.46-17.5 76.87-26.59c32.05-15.01 69-32.97 101.88-56.12c7.44-5.23 14.62-10.71 21.36-16.29c6.07-5.01 11.93-10.23 17.59-15.28c13.9-12.38 27.04-24.08 42.79-32.67c20.83-11.35 54.56-18.99 81.05-3.16c2.97 1.79 5.8 3.8 8.45 6.04c5.2 4.37 10.1 9.72 15.88 17.34c5.97 7.88 11.48 16.27 16.8 24.39c3.72 5.66 7.55 11.5 11.46 17.03c14.55 20.58 32.85 35.95 48.93 41.11c15.54 4.99 26.79 4.26 42.35 3.21c2.13-0.14 4.32-0.28 6.62-0.42l2.88-0.16c3.06-0.15 6.29-0.25 9.71-0.35c6.66-0.21 14.04-0.43 21.94-1.11v-3.62c-7.92 0.69-15.36 0.91-22.06 1.12c-3.43 0.11-6.7 0.21-9.77 0.36l-2.91 0.15c-2.31 0.14-4.51 0.29-6.64 0.43c-15.17 1-26.13 1.74-41-3.04C428.82 572.32 411.22 557.45 397.1 537.5z M494.13 540.88c-0.98 0.14-1.94 0.27-2.88 0.42c-3.94 0.6-7.57 1.25-11.02 1.86c-12.7 2.27-22.73 4.07-36.32 1.11c-15.8-3.45-34.19-17.31-49.18-37.1c-4.32-5.71-8.56-11.83-12.67-17.75c-5.3-7.64-10.79-15.54-16.71-23c-6.09-7.68-11.25-13.1-16.74-17.56c-2.83-2.3-5.83-4.39-8.98-6.23c-11.8-6.88-24.77-9.64-37.52-9.64c-17.24 0-34.09 5.04-47.17 11.72c-16.93 8.65-30.97 20.61-45.84 33.28c-5.1 4.34-10.36 8.82-15.74 13.15c-6.72 5.42-13.81 10.76-21.08 15.88c-32.04 22.59-67.37 41.01-98.54 57.26l-0.79 0.42c-30.81 16.04-57.26 27.44-72.94 31.46v3.53c15.82-3.89 42.93-15.52 74.53-32l0.8-0.41c31.26-16.31 66.7-34.78 98.92-57.5c7.33-5.16 14.49-10.55 21.26-16.01c5.41-4.36 10.7-8.87 15.81-13.22c14.7-12.54 28.6-24.37 45.17-32.84c21.95-11.2 54.85-17.66 81.41-2.16c2.99 1.76 5.85 3.74 8.54 5.94c5.29 4.3 10.3 9.55 16.23 17.03c5.85 7.37 11.3 15.23 16.57 22.82c4.13 5.95 8.4 12.1 12.76 17.87c15.46 20.41 34.6 34.76 51.18 38.38c14.23 3.1 24.56 1.26 37.65-1.08c3.41-0.62 7.02-1.25 10.92-1.85c0.92-0.14 1.86-0.28 2.82-0.4c4.7-0.64 9.91-1.12 15.44-1.62c5.08-0.48 10.7-0.99 16.56-1.69v-3.44c-5.88 0.72-11.45 1.23-16.87 1.73C504.15 539.76 498.89 540.24 494.13 540.88z M494.56 566.74c-0.99 0.08-1.96 0.16-2.91 0.25c-2.94 0.27-5.7 0.55-8.36 0.82c-14.41 1.48-24.82 2.55-39.18-1.57c-15.51-4.44-33.38-18.97-47.79-38.86c-4.02-5.57-7.99-11.49-11.83-17.23c-5.33-7.98-10.85-16.24-16.85-24.04s-11.1-13.27-16.53-17.79c-2.81-2.34-5.8-4.46-8.94-6.33c-11.48-6.79-24.2-9.48-36.72-9.48c-17.81 0-35.2 5.45-47.93 12.24c-16.37 8.74-29.9 20.6-44.21 33.17c-5.47 4.8-11.13 9.77-16.95 14.53c-6.7 5.49-13.8 10.89-21.12 16.04c-31.78 22.38-67.16 40.14-100.67 56.42c-31.86 15.44-58.9 25.58-74.56 27.98v3.59c21.72-3.13 56.93-19.08 76.13-28.4c33.65-16.34 69.17-34.18 101.17-56.72c7.38-5.19 14.55-10.65 21.32-16.2c5.86-4.8 11.55-9.79 17.04-14.62c14.15-12.42 27.52-24.15 43.54-32.69c20.86-11.13 54.63-18.56 81.17-2.83c2.98 1.77 5.82 3.78 8.48 6c5.21 4.34 10.15 9.65 15.99 17.23c5.92 7.7 11.41 15.91 16.71 23.84c3.85 5.77 7.84 11.72 11.9 17.34c14.86 20.52 33.44 35.55 49.68 40.2c15.03 4.31 26.28 3.16 40.52 1.7c2.64-0.27 5.4-0.56 8.32-0.82c0.94-0.09 1.89-0.17 2.86-0.24c3.58-0.28 7.42-0.48 11.5-0.69c6.17-0.32 13.01-0.67 20.25-1.38v-3.57c-7.3 0.73-14.21 1.09-20.44 1.41C502.05 566.26 498.17 566.46 494.56 566.74z M489.1 387.26c-5.54 3.19-10.87 6.72-15.96 10.58c-9.23 6.71-17.94 13.04-30.15 14.79c-17.07 2.45-39.2-7.73-57.73-26.58c-6.16-6.28-12.1-13.22-17.84-19.93c-5.05-5.91-10.27-12.02-15.73-17.77c-5.48-5.95-11.52-11.35-18.04-16.12c-2.94-2.1-6.02-4-9.22-5.69c-12.49-6.62-27.26-9.95-42.77-9.95c-14.44 0.08-28.74 2.77-42.21 7.95c-22.05 8.4-40.77 21.95-60.59 36.3l-3.5 2.53c-6.9 5-13.84 9.97-20.8 14.9c-9.14 6.48-18.33 12.88-27.44 19.24c-22.57 15.74-43.89 30.61-63.79 45.91c-28.75 22.09-49.5 39.17-63.32 52.14v3.5l0.07 0.06c13.74-13.09 34.96-30.62 64.87-53.6c19.85-15.27 41.14-30.12 63.69-45.84c9.12-6.36 18.3-12.77 27.46-19.25c6.96-4.93 13.9-9.9 20.82-14.92l3.5-2.53c19.67-14.24 38.25-27.7 59.98-35.97c28.9-11 59.85-10.3 82.8 1.86c3.09 1.64 6.07 3.48 8.92 5.51c6.38 4.67 12.29 9.95 17.64 15.78c5.41 5.71 10.62 11.8 15.65 17.68c5.76 6.75 11.73 13.72 17.96 20.06c19.4 19.72 41.85 29.91 59.99 27.35c12.85-1.84 21.83-8.37 31.33-15.28c5-3.79 10.24-7.27 15.68-10.41c0.85-0.48 1.72-0.93 2.61-1.38c8.2-4.16 18.59-7.62 33.61-11.2v-2.71c-15.56 3.68-26.3 7.25-34.79 11.56C490.88 386.29 489.98 386.77 489.1 387.26z M489.24 400.11c-5.49 2.95-10.8 6.24-15.9 9.83c-9.32 6.31-18.12 12.26-30.31 13.67c-16.98 1.98-38.8-8.56-57.01-27.46c-6.01-6.25-11.8-13.14-17.41-19.8c-5.08-6.04-10.33-12.28-15.82-18.16c-5.43-5.99-11.43-11.43-17.92-16.24c-2.94-2.11-6.01-4.03-9.2-5.74c-12.35-6.6-26.93-9.92-42.28-9.92c-14.61 0.08-29.08 2.88-42.66 8.26c-21.45 8.39-39.64 21.72-58.89 35.82l-4.99 3.66c-6.89 5.03-13.83 10.03-20.82 14.98c-11.93 8.44-24.08 16.82-35.84 24.91c-19.77 13.61-38.45 26.47-56.07 39.62c-29.92 22.3-50.39 38.39-64.11 50.41v3.51l0.07 0.06c13.66-12.12 34.52-28.59 65.68-51.81c17.58-13.11 36.24-25.96 55.99-39.56c11.76-8.09 23.92-16.46 35.86-24.92c6.98-4.95 13.94-9.95 20.85-15.01l5-3.66c19.11-14 37.16-27.21 58.28-35.48c28.86-11.28 59.77-10.72 82.68 1.52c3.08 1.64 6.05 3.5 8.89 5.54c6.35 4.7 12.22 10.02 17.52 15.89c5.44 5.84 10.67 12.04 15.72 18.06c5.64 6.7 11.46 13.62 17.53 19.93c19.07 19.78 41.24 30.34 59.28 28.27c12.84-1.48 21.91-7.62 31.51-14.12c5.01-3.53 10.23-6.76 15.63-9.67c0.85-0.45 1.73-0.88 2.63-1.3c10.03-4.76 22.44-7.99 33.46-10.51v-2.78c-11.31 2.58-24.17 5.89-34.63 10.85C491.03 399.19 490.13 399.66 489.24 400.11z M491.61 372.91c-0.92 0.5-1.82 1.01-2.69 1.52c-5.56 3.43-10.9 7.21-15.97 11.33c-9.15 7.12-17.79 13.84-30.03 15.92c-17.2 2.94-39.58-6.93-58.46-25.71c-6.32-6.29-12.39-13.27-18.26-20.03c-5.04-5.8-10.25-11.78-15.67-17.42c-5.51-5.91-11.58-11.26-18.13-16c-2.96-2.09-6.04-3.97-9.24-5.66c-12.62-6.63-27.57-9.97-43.27-9.97c-14.25 0.07-28.38 2.65-41.73 7.64c-22.72 8.41-42.03 22.24-62.48 36.9l-1.82 1.31c-6.91 4.94-13.83 9.88-20.78 14.81c-6.02 4.27-12.04 8.51-18.05 12.73c-25.73 18.13-50.06 35.26-72.5 53.05c-27.71 21.93-48.72 40.04-62.52 53.84v3.5l0.08 0.08c13.68-13.94 35.22-32.58 64.04-55.41c22.39-17.75 46.68-34.85 72.39-52.96c6.01-4.23 12.03-8.48 18.05-12.74c6.94-4.91 13.87-9.85 20.79-14.82l1.83-1.3c20.29-14.55 39.47-28.29 61.86-36.58c28.93-10.71 59.93-9.89 82.92 2.19c3.1 1.64 6.09 3.47 8.96 5.48c6.41 4.64 12.35 9.89 17.75 15.68c5.38 5.59 10.56 11.55 15.58 17.32c5.9 6.79 12 13.82 18.38 20.17c19.75 19.65 42.45 29.52 60.71 26.42c12.88-2.18 21.77-9.1 31.18-16.43c4.99-4.05 10.24-7.77 15.71-11.14c0.84-0.5 1.7-0.99 2.59-1.47c8.3-4.47 19.03-8.26 33.76-11.89v-2.65c-0.01 0.01-0.03 0.01-0.04 0.03C511.31 364.37 500.21 368.27 491.61 372.91z M491.43 359.98c-0.91 0.52-1.8 1.06-2.67 1.6c-5.58 3.66-10.92 7.69-15.97 12.06c-9.08 7.54-17.65 14.65-29.93 17.07c-17.31 3.4-39.98-6.12-59.19-24.84c-6.46-6.3-12.67-13.32-18.67-20.12c-5.03-5.67-10.21-11.54-15.61-17.07c-5.56-5.87-11.67-11.19-18.24-15.89c-2.96-2.06-6.06-3.93-9.26-5.6c-12.76-6.66-27.9-10.01-43.78-10.01c-14.07 0.06-28.02 2.54-41.25 7.33c-23.41 8.42-43.35 22.55-64.44 37.52l-28.22 20.03c-28.1 19.9-57.16 40.47-82.47 61.15c-27.12 22.14-47.87 40.81-61.72 55.55v3.52l0.09 0.08c13.75-14.93 35.02-34.17 63.23-57.2c25.24-20.63 54.26-41.17 82.33-61.05l28.15-19.98c21.01-14.91 40.8-28.94 63.9-37.25c28.95-10.42 59.99-9.48 83.02 2.52c3.11 1.63 6.11 3.45 8.99 5.45c6.44 4.62 12.42 9.83 17.87 15.58c5.35 5.48 10.52 11.33 15.52 16.98c6.03 6.82 12.27 13.89 18.8 20.26c20.1 19.58 43.07 29.1 61.43 25.5c12.89-2.53 21.71-9.85 31.04-17.59c4.97-4.3 10.22-8.27 15.71-11.87c0.85-0.53 1.71-1.04 2.59-1.55c8.46-4.86 19.24-8.86 33.91-12.59v-2.6c-0.13 0.03-0.25 0.06-0.37 0.09C511.2 350.87 500.15 354.98 491.43 359.98z M489.6 425.77c-5.37 2.49-10.6 5.27-15.67 8.31c-9.95 5.75-18.54 10.72-30.74 11.45c-16.71 0.98-38.02-10.2-55.57-29.21c-5.7-6.19-11.21-12.97-16.55-19.53c-5.12-6.29-10.41-12.8-15.97-18.94c-5.34-6.06-11.27-11.58-17.71-16.46c-2.91-2.15-5.98-4.1-9.16-5.83c-12.11-6.58-26.37-9.87-41.38-9.87c-14.95 0.1-29.73 3.12-43.52 8.89c-20.37 8.4-37.57 21.32-55.79 35c-2.55 1.9-5.11 3.81-7.68 5.73c-6.99 5.21-14.02 10.31-20.87 15.15c-16.75 11.85-33.88 23.26-50.46 34.3c-15.01 9.99-29.18 19.43-42.81 28.99c-25.41 17.79-49.55 34.77-65.71 46.98v3.56c16.1-12.26 41.04-29.8 67.34-48.22c13.6-9.54 27.76-18.98 42.76-28.95c16.59-11.05 33.73-22.47 50.52-34.34c6.86-4.85 13.91-9.97 20.92-15.19c2.58-1.91 5.14-3.84 7.69-5.75c18.07-13.56 35.13-26.37 55.17-34.64c28.8-11.87 59.62-11.55 82.46 0.86c3.07 1.66 6.02 3.54 8.83 5.61c6.29 4.77 12.09 10.16 17.29 16.1c5.52 6.07 10.79 12.55 15.88 18.81c5.36 6.6 10.9 13.41 16.66 19.66c18.38 19.92 39.97 31.19 57.82 30.12c12.88-0.77 22.16-6.14 32-11.83c4.99-2.99 10.13-5.72 15.41-8.17c0.87-0.39 1.76-0.77 2.66-1.14c9.59-3.93 21.56-6.69 33.17-9.15v-2.9c-11.92 2.52-24.27 5.34-34.24 9.42C491.41 424.97 490.5 425.36 489.6 425.77z M489.76 438.6c-5.43 2.35-10.7 5.05-15.79 8.07c-9.97 5.67-18.62 10.58-30.6 9.83c-18.16-1.12-39.22-12.65-54.98-30.09c-5.55-6.15-10.92-12.87-16.13-19.38c-5.14-6.42-10.45-13.07-16.05-19.33c-5.28-6.12-11.18-11.69-17.6-16.6c-2.9-2.16-5.95-4.12-9.13-5.87c-11.98-6.56-26.09-9.85-40.94-9.85c-15.11 0.12-30.04 3.25-43.92 9.22c-19.9 8.41-36.66 21.17-54.42 34.68c-2.94 2.23-5.87 4.46-8.85 6.69c-6.75 5.08-13.79 10.21-20.89 15.23c-18.87 13.34-38.23 25.98-56.95 38.2c-12.93 8.44-25.14 16.41-36.99 24.46l-20.09 13.61c-17.71 11.99-34.47 23.33-46.42 31.66v3.54c12.01-8.41 29.51-20.26 48.03-32.79l20.1-13.61c11.82-8.04 24.03-16 36.95-24.44c18.74-12.24 38.13-24.88 57.04-38.26c7.13-5.05 14.18-10.19 20.96-15.29c2.98-2.23 5.93-4.46 8.86-6.7c17.6-13.4 34.24-26.05 53.79-34.32c28.76-12.16 59.55-11.98 82.35 0.51c3.06 1.68 6 3.57 8.8 5.66c6.27 4.8 12.02 10.23 17.17 16.2c5.55 6.2 10.84 12.81 15.95 19.21c5.22 6.54 10.63 13.3 16.23 19.51c16.25 17.99 38.08 29.87 56.96 31.03c12.84 0.85 22.27-4.54 32.21-10.19c4.98-2.97 10.14-5.61 15.46-7.92c0.87-0.37 1.76-0.72 2.68-1.06c9.1-3.43 19.94-5.82 33.04-8.47v-2.96c-13.49 2.73-24.63 5.17-34.06 8.73C491.59 437.86 490.66 438.23 489.76 438.6z M489.43 412.93c-5.44 2.72-10.71 5.75-15.81 9.07c-9.83 6.17-18.31 11.49-30.51 12.56c-16.85 1.48-38.41-9.38-56.29-28.33c-5.85-6.22-11.51-13.06-16.98-19.67c-5.1-6.16-10.37-12.54-15.89-18.54c-5.38-6.03-11.35-11.51-17.81-16.36c-2.93-2.13-6-4.06-9.18-5.78c-12.23-6.59-26.66-9.9-41.83-9.9c-14.78 0.09-29.41 3-43.1 8.58c-20.89 8.38-38.57 21.49-57.28 35.37l-6.4 4.73c-7.01 5.17-14.03 10.24-20.84 15.07c-14.43 10.21-29.17 20.21-43.43 29.87c-17.28 11.72-33.6 22.78-49.15 34.04c-21.3 15.38-47.69 34.66-64.92 48.7v3.51l0.04 0.04c17.09-14.09 44.52-34.13 66.5-50.01c15.51-11.22 31.82-22.28 49.08-33.98c14.27-9.67 29.01-19.68 43.47-29.91c6.83-4.83 13.86-9.91 20.89-15.09l6.4-4.73c18.56-13.77 36.1-26.78 56.66-35.03c28.84-11.58 59.7-11.14 82.58 1.19c3.08 1.66 6.04 3.53 8.87 5.59c6.32 4.74 12.14 10.1 17.4 15.99c5.48 5.94 10.73 12.29 15.8 18.43c5.5 6.64 11.19 13.52 17.1 19.8c18.72 19.86 40.58 30.76 58.54 29.2c12.86-1.13 22.03-6.88 31.74-12.98c5.01-3.26 10.2-6.24 15.54-8.92c0.87-0.42 1.74-0.82 2.65-1.22c9.61-4.24 21.61-7.24 33.3-9.83v-2.83c-12 2.63-24.41 5.69-34.41 10.11C491.23 412.08 490.32 412.5 489.43 412.93z M489.94 451.45c-5.37 2.13-10.6 4.59-15.67 7.36c-10.09 5.27-18.82 9.82-30.8 8.68c-18.11-1.73-38.91-13.59-54.27-30.97c-5.4-6.12-10.64-12.79-15.71-19.24c-5.16-6.56-10.49-13.35-16.12-19.74c-5.23-6.16-11.1-11.76-17.49-16.71c-2.89-2.19-5.93-4.17-9.11-5.92c-11.88-6.56-25.83-9.84-40.53-9.84c-15.27 0.12-30.35 3.37-44.32 9.53c-19.44 8.43-35.79 21.05-53.11 34.39c-3.29 2.53-6.59 5.08-9.94 7.61c-6.86 5.2-13.9 10.35-20.92 15.32c-20.87 14.74-42.33 28.44-63.09 41.7c-11 7.02-21.38 13.64-31.54 20.33c-25.3 16.64-50.24 32.65-67.31 43.57v3.52c17.1-10.93 42.83-27.43 68.94-44.61c10.14-6.68 20.52-13.3 31.5-20.32c20.79-13.27 42.28-27 63.2-41.78c7.05-4.98 14.11-10.15 21-15.37c3.36-2.53 6.67-5.1 9.96-7.63c17.17-13.23 33.38-25.73 52.48-34.01c28.3-12.27 59.81-12.2 82.23 0.18c3.05 1.69 5.98 3.59 8.77 5.69c6.23 4.84 11.94 10.3 17.05 16.31c5.58 6.33 10.88 13.08 16.01 19.61c5.1 6.49 10.37 13.19 15.83 19.37c15.83 17.92 37.38 30.16 56.21 31.95c12.91 1.23 22.39-3.74 32.46-9c4.97-2.71 10.09-5.11 15.35-7.21c0.88-0.34 1.78-0.66 2.7-0.98c9.19-3.18 20.19-5.36 32.89-7.81v-3.02c-13.05 2.52-24.34 4.73-33.87 8.03C491.77 450.77 490.85 451.11 489.94 451.45z M492.92 463.36c-0.95 0.3-1.88 0.61-2.8 0.93c-5.29 1.91-10.46 4.13-15.5 6.63c-10.24 4.87-19.07 9.08-31.06 7.53c-18.07-2.33-38.6-14.54-53.57-31.84c-5.24-6.08-10.34-12.68-15.28-19.07c-5.17-6.7-10.53-13.63-16.2-20.16c-5.2-6.2-11.02-11.84-17.39-16.83c-2.89-2.2-5.93-4.2-9.1-5.97c-11.59-6.45-25.5-9.67-40.15-9.67c-15.41 0.1-30.62 3.4-44.67 9.71c-19 8.45-34.97 20.92-51.87 34.13c-3.62 2.84-7.28 5.67-10.97 8.51c-6.8 5.2-13.84 10.38-20.94 15.4c-22.68 16.02-46.1 30.62-68.75 44.74c-9.07 5.65-17.95 11.19-26.54 16.67c-24.82 15.8-50.7 31.68-68.12 41.83v3.51c17.45-10.12 44.16-26.5 69.78-42.79c8.58-5.47 17.47-11.01 26.52-16.65c22.68-14.14 46.13-28.76 68.89-44.85c7.14-5.04 14.21-10.24 21.04-15.46c3.71-2.83 7.36-5.69 10.99-8.53c16.75-13.08 32.57-25.44 51.24-33.74c22.13-9.85 55.33-15.05 82.11-0.15c3.04 1.7 5.96 3.61 8.73 5.73c6.2 4.86 11.88 10.36 16.94 16.4c5.61 6.47 10.93 13.37 16.08 20.03c4.96 6.42 10.08 13.06 15.38 19.2c15.44 17.85 36.69 30.43 55.47 32.86c12.89 1.64 22.53-2.94 32.75-7.81c4.93-2.45 10.01-4.63 15.19-6.51c0.89-0.3 1.8-0.6 2.72-0.89c8.73-2.75 19.02-4.64 30.95-6.82l1.8-0.33v-3.08l-2.35 0.44C512.71 458.57 501.83 460.57 492.92 463.36z M493.3 489.17c-0.96 0.25-1.9 0.5-2.83 0.76c-5.16 1.45-9.71 3.02-14.11 4.55c-10.84 3.76-20.19 6.99-32.82 5.88c-16.35-1.46-35.8-14.01-52-33.58c-4.93-5.97-9.75-12.43-14.41-18.67c-5.22-7-10.61-14.24-16.36-21.06c-5.1-6.29-10.86-12.01-17.18-17.07c-2.86-2.23-5.89-4.25-9.05-6.05c-12.22-6.92-25.7-9.66-38.92-9.66c-15.85 0.15-31.48 3.69-45.85 10.37c-18.23 8.5-33.49 20.76-49.64 33.74c-4.21 3.38-8.45 6.79-12.78 10.16c-6.73 5.25-13.79 10.48-20.98 15.56c-26.11 18.44-53.24 34.48-79.48 49.99c-5.82 3.44-11.54 6.84-17.16 10.18C41.86 540.9 16 555.13 0.01 562.66v3.49c15.95-7.4 42.59-22.02 71.33-39.17c5.61-3.35 11.33-6.74 17.15-10.17c26.29-15.54 53.48-31.62 79.7-50.13c7.23-5.11 14.33-10.37 21.1-15.65c4.34-3.37 8.6-6.79 12.82-10.18c16-12.85 31.1-25 48.99-33.34c22.08-10.3 55.18-15.92 81.89-0.82c3.03 1.72 5.92 3.66 8.67 5.8c6.14 4.93 11.74 10.49 16.7 16.61c5.69 6.76 11.06 13.95 16.25 20.91c4.68 6.27 9.52 12.77 14.51 18.8c16.73 20.2 36.97 33.17 54.15 34.71c13.31 1.2 22.96-2.17 34.13-6.04c4.36-1.51 8.86-3.07 13.93-4.49c0.9-0.25 1.82-0.5 2.75-0.74c7.25-1.83 15.88-3.2 25.02-4.64c2.45-0.39 4.94-0.78 7.49-1.2v-3.2c-2.72 0.45-5.38 0.87-8 1.26C509.38 485.93 500.68 487.3 493.3 489.17z M23.2 869.97c-8.52-3.67-16.12-8.66-22.13-15.36l-1.06 0.92v5.81c3.44 3.3 7.26 6.15 11.36 8.63H23.2z M114.62 10.79c5.4-3.85 10.73-7.44 16.01-10.77h-2.86c-4.64 2.98-9.32 6.15-14.04 9.52C66.95 42.91 28.19 86.04 0.01 135.77v3.13C28.19 88.36 67.28 44.56 114.62 10.79z M397.93 547.59c-3.72-5.39-7.4-11.1-10.96-16.63c-5.38-8.35-10.94-16.98-17.03-25.15c-5.9-7.9-10.94-13.46-16.32-18.04c-2.79-2.38-5.77-4.53-8.91-6.42c-11.3-6.8-23.8-9.5-36.12-9.5c-18.02 0-35.64 5.78-48.5 12.93c-15.88 8.84-28.92 20.63-42.73 33.12c-5.81 5.25-11.8 10.67-18.01 15.84c-6.67 5.56-13.78 11.01-21.16 16.2c-31.81 22.4-67.83 39.76-102 55.18c-33.37 15.03-60.35 23.68-76.18 24.47v3.69c21.9-1.02 57.98-15.93 77.7-24.82c34.34-15.5 70.54-32.95 102.61-55.53c7.46-5.24 14.65-10.76 21.4-16.38c6.27-5.21 12.3-10.67 18.13-15.94c13.65-12.35 26.54-24.01 42.05-32.64c20.79-11.57 54.46-19.42 80.93-3.49c2.96 1.79 5.78 3.82 8.41 6.07c5.17 4.39 10.03 9.77 15.76 17.44c6.01 8.06 11.53 16.64 16.88 24.93c3.58 5.56 7.27 11.3 11.03 16.74c14.26 20.64 32.27 36.35 48.17 42.02c16.12 5.76 28.03 5.37 44.53 4.83l7.47-0.22c2.53-0.05 5.19-0.07 7.96-0.1c7.14-0.05 15.04-0.12 23.56-0.75v-3.72c-7.85 0.58-15.72 0.85-23.59 0.8c-2.79 0.02-5.46 0.05-8.01 0.1l-7.51 0.23c-16.69 0.54-27.71 0.9-43.17-4.62C429.12 582.81 411.78 567.62 397.93 547.59z M126.1 38.73C152.88 19.62 178.15 6.89 203 0.02h-5.47c-23.4 7.2-47.21 19.54-72.33 37.46C71.71 75.65 28.7 126.57 0.01 185.53v3.53C28.58 129.11 71.95 77.35 126.1 38.73z M122.52 29.21c17.31-12.35 33.98-22.03 50.32-29.19h-3.76c-15.43 7.04-31.17 16.32-47.46 27.94C70.31 64.57 28.65 112.91 0.01 168.83v3.39C28.57 115.38 70.59 66.25 122.52 29.21z M60.31 0.01h-2.3c-21.72 19.57-41.17 41.49-58 65.33v2.67C17.38 43.11 37.61 20.28 60.31 0.01z M75.55 0.01h-2.38C45.01 23.86 20.4 51.53 0.01 82.15v2.78C20.9 53.15 46.33 24.53 75.55 0.01z M93.83 0.01h-2.51C55.16 28.2 24.28 62.45 0.01 101.12v2.9C24.72 64.08 56.48 28.82 93.83 0.01z M110.19 1.45c0.67-0.48 1.35-0.96 2.03-1.44h-2.66c-0.09 0.06-0.18 0.13-0.27 0.19C64.92 31.86 27.77 72.29 0.01 118.8v3.01C27.8 74.54 65.28 33.49 110.19 1.45z M119.47 20.74c11.25-8.02 22.23-14.92 33.02-20.73h-3.21c-10.05 5.56-20.27 12.04-30.71 19.49C69.06 54.83 28.52 101.08 0.01 154.52v3.28C28.47 103.48 69.35 56.5 119.47 20.74z M399.49 567.79c-3.41-5.18-6.72-10.53-10.06-15.92c-5.42-8.75-11.02-17.81-17.22-26.37c-5.81-8.01-10.77-13.65-16.11-18.28c-2.76-2.42-5.73-4.6-8.86-6.52c-11.12-6.8-23.42-9.5-35.55-9.51c-18.21 0-36.04 6.1-49.02 13.63c-15.42 8.94-28.03 20.69-41.38 33.13c-6.08 5.67-12.38 11.53-18.94 17.09c-6.62 5.61-13.75 11.12-21.2 16.36c-33.12 23.3-70.83 40.34-103.34 53.93c-34.37 14.35-61.96 21.76-77.8 20.95c0 0 0 3.81 0 3.81c22.1 1.04 59.04-12.8 79.27-21.25c32.7-13.68 70.64-30.82 104.06-54.33c7.55-5.31 14.77-10.89 21.47-16.57c6.63-5.61 12.97-11.51 19.08-17.21c13.18-12.29 25.64-23.89 40.68-32.62c20.72-12 54.28-20.3 80.69-4.15c2.95 1.8 5.74 3.85 8.35 6.13c5.1 4.43 9.89 9.88 15.52 17.64c6.12 8.45 11.69 17.44 17.07 26.14c3.35 5.43 6.68 10.81 10.12 16.02c13.7 20.76 31.14 37.14 46.67 43.82c17.6 7.56 30.92 7.96 49.35 8.49l7.8 0.28c7.96 0.3 16.79 0.64 26.44 0.16v-3.82c-9.57 0.5-18.37 0.16-26.3-0.14l-7.83-0.28c-18.68-0.55-31.03-0.9-47.96-8.19C429.62 603.81 412.79 587.96 399.49 567.79z M400.3 577.9c-3.27-5.08-6.44-10.3-9.64-15.58c-5.44-8.96-11.06-18.21-17.3-26.98c-5.76-8.06-10.71-13.74-16.01-18.4c-2.76-2.43-5.72-4.63-8.85-6.56c-11.04-6.8-23.24-9.51-35.28-9.51c-18.3-0.01-36.25 6.27-49.28 13.97c-15.2 9-27.6 20.74-40.74 33.17c-6.2 5.88-12.63 11.96-19.35 17.7c-6.64 5.67-13.78 11.2-21.23 16.44c-33.66 23.66-71.46 40.22-104 53.3c-34.88 13.99-62.74 20.77-78.61 19.17l0 3.87c22.26 2.07 59.58-11.26 80.06-19.47c32.75-13.17 70.81-29.84 104.79-53.73c7.55-5.3 14.78-10.91 21.51-16.66c6.8-5.8 13.26-11.91 19.51-17.82c12.97-12.27 25.22-23.87 40.05-32.64c20.67-12.22 54.17-20.74 80.57-4.49c2.94 1.82 5.73 3.88 8.32 6.17c5.08 4.46 9.83 9.93 15.4 17.75c6.16 8.65 11.74 17.84 17.14 26.74c3.22 5.3 6.4 10.55 9.69 15.65c13.43 20.84 30.6 37.56 45.93 44.73c17.12 8.02 30.11 9.29 49.47 10.41l6.4 0.39c8.33 0.53 17.57 1.11 27.75 0.72v-3.89c-10.06 0.39-19.23-0.18-27.51-0.7l-6.42-0.39c-18.84-1.09-31.24-2.17-48.06-10.05C429.91 614.33 413.34 598.15 400.3 577.9z M401.09 588c-3.1-4.95-6.14-10.05-9.19-15.18c-5.45-9.17-11.09-18.66-17.39-27.63c-5.7-8.11-10.6-13.82-15.89-18.52c-2.75-2.45-5.7-4.66-8.83-6.61c-10.54-6.41-22.69-9.71-35.03-9.53c-18.4 0-36.44 6.44-49.52 14.33c-15 9.05-27.2 20.77-40.12 33.19c-6.34 6.07-12.89 12.38-19.77 18.29c-6.63 5.72-13.78 11.28-21.24 16.52c-34.32 24.12-73.97 40.82-104.67 52.68c-35.39 13.63-63.53 19.79-79.43 17.4L0 666.91c22.37 3.08 60.11-9.71 80.85-17.71c30.91-11.93 70.84-28.76 105.51-53.13c7.57-5.32 14.82-10.96 21.55-16.76c6.97-6 13.56-12.33 19.93-18.45c12.76-12.25 24.8-23.82 39.43-32.65c22.25-13.42 55.77-20.12 80.44-4.82c2.94 1.83 5.71 3.9 8.29 6.2c5.06 4.49 9.77 9.99 15.29 17.84c6.21 8.86 11.82 18.27 17.23 27.38c3.07 5.17 6.11 10.29 9.24 15.27c13.15 20.91 30.04 37.96 45.17 45.62c17.75 9 31.17 10.72 49.61 12.32l5.05 0.44c8.28 0.73 18.19 1.61 29.01 1.33v-3.94c-10.53 0.28-20.07-0.55-28.66-1.31l-5.06-0.44c-17.98-1.56-31.05-3.23-48.16-11.9C430.19 624.85 413.88 608.33 401.09 588z M398.72 557.7c-3.57-5.29-7.03-10.77-10.51-16.29c-5.4-8.55-10.98-17.39-17.12-25.75c-5.86-7.96-10.86-13.56-16.22-18.16c-2.78-2.4-5.76-4.56-8.89-6.47c-11.21-6.8-23.61-9.5-35.83-9.5c-18.12 0-35.84 5.94-48.77 13.28c-15.64 8.88-28.46 20.65-42.04 33.12c-5.94 5.47-12.09 11.11-18.48 16.47c-6.67 5.6-13.8 11.08-21.19 16.28c-32.45 22.83-68.52 39.71-102.67 54.55c-33.88 14.69-61.18 22.73-76.99 22.71v3.74c22.09-0.12 58.5-14.36 78.49-23.02c34.33-14.92 70.61-31.9 103.33-54.92c7.48-5.26 14.7-10.81 21.44-16.48c6.45-5.41 12.63-11.08 18.6-16.57c13.42-12.32 26.09-23.95 41.36-32.63c20.76-11.78 54.38-19.85 80.82-3.83c2.95 1.8 5.76 3.85 8.38 6.11c5.13 4.4 9.96 9.82 15.64 17.54c6.07 8.25 11.61 17.04 16.97 25.53c3.5 5.56 6.98 11.07 10.57 16.39c13.98 20.69 31.72 36.74 47.43 42.92c16.81 6.61 28.9 6.58 47.17 6.59l4.97 0.01c2.05 0.01 4.18 0.03 6.39 0.07c8.34 0.27 16.69 0.14 25.02-0.37v-3.76c-8.31 0.52-16.64 0.65-24.96 0.39c-2.22-0.04-4.36-0.07-6.42-0.08l-2.94-0.01h-2.05c-17.88 0.04-29.66 0.02-45.8-6.34C429.39 593.32 412.3 577.79 398.72 557.7z M8.46 869.97c-2.65-2.12-5.12-4.45-7.36-7.02l-1.09 0.94v5.93c0.05 0.05 0.11 0.1 0.16 0.15H8.46z M401.87 598.1c-2.96-4.83-5.85-9.79-8.76-14.78c-5.47-9.39-11.12-19.1-17.47-28.28c-5.66-8.18-10.52-13.92-15.78-18.65c-2.74-2.46-5.69-4.69-8.81-6.65c-10.55-6.61-22.6-9.37-34.74-9.37c-17.87 0-35.93 5.98-49.79 14.5c-14.8 9.1-26.81 20.83-39.54 33.24c-6.44 6.29-13.1 12.79-20.13 18.88c-6.8 5.89-13.9 11.44-21.27 16.6c-34.75 24.42-74.54 40.65-105.32 52.06c-35.89 13.26-64.35 18.8-80.25 15.62c0 0 0 4.07 0 4.07c22.52 4.05 60.65-8.18 81.6-15.95c31.01-11.5 71.1-27.86 106.24-52.54c7.48-5.24 14.69-10.87 21.59-16.85c7.12-6.18 13.83-12.72 20.31-19.04c12.57-12.25 24.43-23.82 38.85-32.69c22.21-13.66 55.66-20.55 80.32-5.15c2.93 1.83 5.68 3.92 8.25 6.23c5.02 4.51 9.7 10.04 15.17 17.95c6.26 9.06 11.88 18.7 17.31 28.02c2.93 5.03 5.83 10.01 8.81 14.87c13.09 21.3 29.28 38.25 44.42 46.52c16.66 9.1 29.82 11.93 49.73 14.22l3.79 0.43c8.58 0.97 18.88 2.15 30.18 2v-4c-10.94 0.15-20.82-0.97-29.72-1.98l-3.79-0.42c-19.81-2.28-32.09-4.92-48.27-13.76C430.46 635.38 414.41 618.51 401.87 598.1z M377.94 574.69c-5.54-8.27-10.34-14.11-15.57-18.89c-2.72-2.5-5.66-4.76-8.77-6.75c-10.43-6.62-22.29-9.39-34.26-9.39c-18.03-0.01-36.29 6.29-50.26 15.21c-14.42 9.22-26.08 20.95-38.43 33.36c-6.64 6.67-13.51 13.58-20.82 20.02c-6.79 5.97-13.9 11.57-21.3 16.76c-35.94 25.24-78.08 41.09-106.65 50.81C45 688.38 15.96 692.65 0.01 687.91v4.29c22.8 5.99 61.72-5.13 83.2-12.42c28.81-9.81 71.32-25.8 107.7-51.34c7.53-5.28 14.76-10.96 21.67-17.04c7.41-6.53 14.32-13.48 21.01-20.21c12.18-12.24 23.68-23.81 37.72-32.78c22.13-14.14 55.46-21.43 80.07-5.82c2.91 1.86 5.65 3.97 8.19 6.31c4.97 4.55 9.58 10.15 14.94 18.14c3.42 5.11 6.63 10.39 9.71 15.69c-1.66-2.74-3.36-5.46-5.13-8.14c-5.5-8.33-10.26-14.2-15.46-19.02c-2.71-2.52-5.64-4.79-8.75-6.79c-10.37-6.62-22.15-9.4-34.03-9.4c-18.11 0-36.47 6.45-50.47 15.58c-14.25 9.27-25.73 21-37.89 33.42c-6.74 6.87-13.69 13.98-21.14 20.58c-6.78 6.01-13.9 11.63-21.33 16.84c-36.31 25.49-78.63 40.85-107.31 50.19c-37.38 12.11-66.72 15.75-82.7 10.23v4.41c22.93 6.98 62.26-3.62 83.99-10.67c28.94-9.42 71.65-24.92 108.42-50.73c7.56-5.29 14.8-11.02 21.71-17.14c7.54-6.7 14.56-13.86 21.35-20.79c12-12.24 23.33-23.81 37.19-32.84c22.07-14.38 55.36-21.86 79.95-6.15c2.9 1.87 5.63 3.99 8.15 6.34c4.94 4.59 9.52 10.22 14.81 18.25c2.28 3.46 4.46 6.99 6.58 10.57c-0.64-1.02-1.28-2.03-1.93-3.03c-5.45-8.39-10.18-14.29-15.36-19.14c-2.7-2.54-5.62-4.83-8.73-6.84c-10.31-6.62-22-9.41-33.8-9.41c-18.18 0-36.62 6.61-50.68 15.93c-14.08 9.34-25.4 21.08-37.39 33.5c-6.82 7.07-13.86 14.37-21.43 21.14c-6.78 6.05-13.9 11.7-21.35 16.92c-27.9 19.58-62.21 35.32-107.97 49.56c-37.87 11.76-67.51 14.75-83.5 8.45v4.54c21.83 7.55 57.97-0.6 84.78-8.93c46.19-14.37 80.87-30.3 109.15-50.14c7.58-5.31 14.84-11.06 21.75-17.23c7.67-6.86 14.78-14.23 21.65-21.35c11.82-12.25 22.99-23.82 36.68-32.91c22.04-14.61 55.25-22.28 79.82-6.47c2.89 1.87 5.61 4 8.11 6.37c4.92 4.6 9.45 10.26 14.7 18.35c1.38 2.12 2.71 4.27 4.02 6.44c-5.1-7.86-9.62-13.5-14.55-18.17c-2.69-2.56-5.61-4.87-8.72-6.9c-10.25-6.64-21.86-9.44-33.59-9.44c-18.26 0-36.77 6.77-50.88 16.29c-13.92 9.4-25.08 21.15-36.9 33.59c-6.9 7.25-14.03 14.75-21.71 21.68c-6.77 6.09-13.91 11.77-21.37 16.99C164.82 677 130.3 692.55 84.34 706.2c-38.36 11.36-68.3 13.72-84.33 6.65v4.68c21.97 8.46 58.45 0.85 85.56-7.18c46.43-13.79 81.35-29.53 109.88-49.55c7.61-5.32 14.88-11.11 21.78-17.32c7.81-7.03 14.99-14.6 21.95-21.91c11.65-12.26 22.66-23.84 36.19-32.99c21.98-14.86 55.15-22.72 79.69-6.8c2.89 1.88 5.6 4.02 8.09 6.4c4.89 4.63 9.39 10.32 14.58 18.45c0.72 1.13 1.43 2.27 2.13 3.41c-4.28-6.39-8.23-11.2-12.49-15.28c-2.68-2.57-5.59-4.9-8.69-6.93c-10.19-6.66-21.73-9.46-33.38-9.46c-18.32 0-36.93 6.92-51.07 16.66c-13.76 9.47-25.29 21.78-36.43 33.68c-6.97 7.44-14.17 15.13-21.97 22.21c-6.76 6.13-13.91 11.83-21.39 17.07c-27.98 19.62-63.74 35.43-109.29 48.32C46.33 727.27 16.1 729 0.04 721.17l-0.03 0.03v4.74c22.09 9.37 58.94 2.3 86.34-5.43c46.03-13.02 82.21-29.04 110.61-48.95c7.63-5.34 14.92-11.15 21.82-17.41c7.92-7.2 15.19-14.96 22.21-22.46c11.49-12.27 22.35-23.86 35.72-33.06c21.93-15.1 55.03-23.15 79.56-7.14c2.88 1.89 5.58 4.04 8.06 6.43c4.86 4.64 9.32 10.36 14.46 18.55c0.19 0.31 0.39 0.62 0.58 0.93c-3.62-5.24-7.06-9.37-10.75-12.93c-2.67-2.59-5.57-4.93-8.67-6.98c-10.15-6.68-21.61-9.49-33.19-9.49c-18.39 0-37.08 7.08-51.26 17.03c-13.6 9.53-24.97 21.85-35.96 33.77c-7.04 7.63-14.32 15.52-22.23 22.75c-6.75 6.18-13.9 11.91-21.4 17.15c-28.21 19.77-64.17 35.37-109.95 47.69c-39.26 10.54-69.74 11.64-85.86 3.09l-0.1 0.2v4.72c22.23 10.26 59.42 3.73 87.11-3.7c46.28-12.45 82.7-28.27 111.35-48.34c7.66-5.36 14.96-11.2 21.86-17.51c8.04-7.36 15.38-15.32 22.48-23.02c11.33-12.29 22.03-23.89 35.24-33.14c21.18-14.84 55.07-23.51 79.45-7.47c2.87 1.9 5.55 4.06 8.02 6.47c4.62 4.46 8.86 9.91 13.67 17.55c-3.1-4.35-6.1-7.91-9.3-11.03c-2.65-2.61-5.55-4.97-8.65-7.04c-9.93-6.58-21.27-9.32-32.75-9.32c-18.74 0-37.84 7.32-51.7 17.21c-13.45 9.59-24.67 21.94-35.52 33.87c-7.1 7.81-14.44 15.89-22.45 23.28c-6.75 6.22-13.9 11.97-21.42 17.22c-28.42 19.92-64.6 35.31-110.6 47.07c-39.67 10.12-70.43 10.58-86.6 1.31l-0.18 0.33v4.7c22.36 11.15 59.9 5.17 87.9-1.96c46.54-11.89 83.2-27.51 112.08-47.74c7.69-5.37 15-11.26 21.9-17.61c8.15-7.52 15.56-15.68 22.73-23.55c11.18-12.3 21.74-23.91 34.8-33.24c21.12-15.07 54.96-23.93 79.31-7.79c2.86 1.91 5.54 4.08 7.99 6.5c4.23 4.13 8.14 9.11 12.45 15.9c-2.66-3.63-5.28-6.68-8.04-9.42c-2.65-2.63-5.54-5-8.64-7.08c-9.88-6.58-21.14-9.34-32.54-9.34c-18.81 0-37.99 7.49-51.88 17.57c-13.31 9.67-24.39 22.03-35.1 34c-7.15 7.99-14.55 16.26-22.65 23.79c-6.74 6.25-13.91 12.03-21.45 17.3c-28.61 20.03-65.01 35.22-111.26 46.43c-40.09 9.7-71.11 9.53-87.35-0.45l-0.25 0.42v4.72c22.48 12.04 60.4 6.61 88.68-0.23c46.82-11.35 83.71-26.77 112.82-47.15c7.71-5.39 15.04-11.3 21.94-17.7c8.25-7.68 15.72-16.02 22.94-24.09c11.04-12.32 21.46-23.96 34.38-33.34c21.08-15.3 54.85-24.38 79.18-8.12c2.85 1.92 5.52 4.1 7.95 6.53c3.93 3.88 7.57 8.5 11.52 14.65c-2.31-3.09-4.62-5.76-7.04-8.17c-2.63-2.65-5.52-5.04-8.61-7.13c-9.83-6.61-21.03-9.37-32.37-9.37c-18.87 0-38.12 7.65-52.05 17.94c-13.17 9.73-24.11 22.12-34.68 34.11c-7.21 8.17-14.66 16.63-22.86 24.3c-6.73 6.3-13.91 12.1-21.46 17.38c-28.82 20.18-65.43 35.16-111.91 45.82c-40.52 9.26-71.81 8.48-88.1-2.22l-0.33 0.49v4.76c22.61 12.91 60.87 8.03 89.47 1.5c47.08-10.79 84.22-26.02 113.54-46.55c7.74-5.4 15.09-11.35 21.98-17.8c8.36-7.82 15.89-16.36 23.17-24.62c10.89-12.35 21.17-24.01 33.95-33.44c21.02-15.53 54.71-24.81 79.05-8.46c2.84 1.93 5.49 4.12 7.92 6.56c3.59 3.59 6.93 7.8 10.48 13.25c-1.94-2.52-3.9-4.76-5.94-6.81c-2.62-2.67-5.5-5.07-8.59-7.18c-9.78-6.62-20.91-9.39-32.18-9.39c-18.94 0-38.26 7.82-52.22 18.31c-13.03 9.8-23.83 22.22-34.27 34.22c-7.26 8.35-14.77 16.99-23.05 24.81c-6.73 6.33-13.91 12.17-21.48 17.46c-29.01 20.3-65.83 35.08-112.58 45.2c-40.94 8.83-72.5 7.42-88.85-3.99l-0.4 0.59v4.79c22.73 13.79 61.35 9.47 90.24 3.23c47.37-10.25 84.75-25.28 114.28-45.94c7.76-5.42 15.12-11.41 22.02-17.9c8.46-7.97 16.04-16.7 23.37-25.14c10.75-12.37 20.91-24.05 33.54-33.55c20.98-15.77 54.63-25.24 78.93-8.79c2.84 1.94 5.48 4.15 7.89 6.6c3.3 3.33 6.38 7.19 9.59 12.07c-1.63-2.06-3.27-3.93-4.98-5.67c-2.62-2.68-5.49-5.11-8.58-7.23c-9.73-6.63-20.8-9.41-32.01-9.41c-19 0-38.39 7.98-52.39 18.68c-12.9 9.86-23.57 22.32-33.87 34.35c-7.31 8.53-14.86 17.35-23.24 25.32c-6.72 6.37-13.91 12.24-21.51 17.53c-29.18 20.42-66.22 35-113.23 44.58c-41.36 8.41-73.19 6.36-89.6-5.75l-0.45 0.63v4.85c22.85 14.67 61.84 10.89 91.02 4.96c47.67-9.71 85.29-24.55 115.02-45.35c7.79-5.44 15.16-11.45 22.06-17.99c8.56-8.14 16.19-17.05 23.58-25.67c10.61-12.39 20.63-24.1 33.14-33.66c20.92-16 54.51-25.68 78.8-9.11c2.83 1.95 5.46 4.16 7.86 6.62c3.05 3.11 5.91 6.7 8.86 11.14c-1.37-1.7-2.76-3.27-4.19-4.74c-2.61-2.7-5.47-5.14-8.56-7.28c-9.69-6.66-20.7-9.44-31.84-9.45c-19.06 0-38.52 8.16-52.54 19.06c-12.78 9.93-23.31 22.41-33.49 34.47c-7.35 8.71-14.95 17.71-23.41 25.81c-6.71 6.41-13.91 12.3-21.52 17.61c-28.95 20.25-67.27 35.04-113.88 43.96c-41.79 7.97-73.89 5.3-90.36-7.52l-0.55 0.69v4.91c22.99 15.53 62.33 12.3 91.8 6.68c47.29-9.05 86.23-24.1 115.75-44.74c7.82-5.45 15.21-11.5 22.1-18.09c8.64-8.28 16.33-17.38 23.75-26.18c10.49-12.42 20.39-24.16 32.77-33.77c20.88-16.23 54.4-26.1 78.67-9.44c2.82 1.95 5.44 4.18 7.82 6.65c2.8 2.89 5.44 6.18 8.12 10.18c-1.11-1.35-2.24-2.62-3.4-3.82c-2.59-2.72-5.45-5.17-8.54-7.32c-9.33-6.34-20.4-9.66-31.68-9.48c-19.11 0-38.64 8.33-52.69 19.43c-12.65 10-23.05 22.51-33.11 34.6c-7.39 8.89-15.03 18.07-23.57 26.32c-6.7 6.45-13.9 12.37-21.53 17.69c-29.13 20.36-67.67 34.94-114.54 43.33c-29.86 5.33-69.91 8.05-91.12-9.28l-0.6 0.71v4.99c23.11 16.4 62.81 13.71 92.58 8.41c47.58-8.52 86.77-23.37 116.49-44.15c7.84-5.47 15.24-11.55 22.13-18.18c8.74-8.43 16.46-17.72 23.93-26.71c10.35-12.46 20.14-24.22 32.38-33.9c21.48-16.99 55.37-25.79 78.53-9.77c2.82 1.96 5.42 4.2 7.79 6.69c2.56 2.66 4.97 5.66 7.41 9.24c-0.86-1.01-1.72-1.98-2.61-2.92c-2.58-2.74-5.44-5.21-8.52-7.37c-9.33-6.51-20.2-9.3-31.35-9.3c-18.91-0.01-38.62 8.03-53.02 19.59c-12.53 10.07-22.8 22.61-32.75 34.74c-7.42 9.05-15.1 18.42-23.71 26.8c-6.7 6.49-13.91 12.43-21.56 17.76c-29.29 20.47-68.04 34.84-115.19 42.72c-30.15 5.02-70.58 7.17-91.89-11.04l-0.64 0.78v5.08c23.24 17.26 63.3 15.12 93.36 10.12c47.89-8 87.33-22.65 117.22-43.55c7.87-5.48 15.29-11.6 22.17-18.28c8.83-8.57 16.59-18.05 24.1-27.21c10.23-12.48 19.89-24.27 32.02-34.02c21.43-17.22 55.24-26.23 78.4-10.1c2.8 1.97 5.4 4.22 7.76 6.71c2.31 2.44 4.51 5.16 6.7 8.34c-0.6-0.7-1.21-1.37-1.83-2.03c-2.57-2.76-5.43-5.24-8.51-7.42c-9.29-6.52-20.11-9.32-31.2-9.32c-18.97 0-38.75 8.19-53.16 19.97c-12.41 10.14-22.57 22.72-32.39 34.88c-7.45 9.23-15.16 18.78-23.86 27.29c-6.69 6.53-13.9 12.5-21.57 17.84c-29.45 20.58-68.43 34.74-115.85 42.1c-30.47 4.71-71.27 6.31-92.65-12.82l-0.71 0.8v5.17c23.36 18.11 63.78 16.53 94.13 11.83c48.19-7.47 87.87-21.92 117.96-42.94c7.9-5.5 15.33-11.65 22.22-18.38c8.91-8.71 16.71-18.38 24.25-27.72c10.11-12.51 19.66-24.34 31.66-34.14c21.38-17.48 55.14-26.66 78.27-10.42c2.8 1.98 5.39 4.24 7.73 6.74c2.1 2.23 4.09 4.7 6.08 7.55c-0.38-0.43-0.77-0.86-1.16-1.28c-2.56-2.78-5.4-5.28-8.48-7.47c-9.26-6.54-20.02-9.35-31.05-9.35c-19.02 0-38.86 8.35-53.3 20.35c-12.3 10.22-22.34 22.83-32.05 35.03c-7.48 9.4-15.21 19.12-23.98 27.77c-6.68 6.57-13.9 12.56-21.59 17.92c-29.61 20.68-68.81 34.63-116.5 41.47c-30.76 4.4-71.94 5.43-93.42-14.58l-0.77 0.81v5.27c23.5 18.97 64.26 17.93 94.9 13.55c48.49-6.96 88.43-21.2 118.7-42.35c7.93-5.52 15.37-11.69 22.26-18.46c8.99-8.86 16.82-18.7 24.4-28.22c9.99-12.55 19.42-24.41 31.32-34.28c21.32-17.7 55-27.09 78.14-10.75c2.79 1.99 5.37 4.26 7.69 6.77c1.89 2.03 3.69 4.26 5.48 6.79c-0.16-0.18-0.33-0.36-0.49-0.54c-2.55-2.79-5.39-5.31-8.46-7.52c-9.23-6.56-19.93-9.39-30.91-9.39c-19.07 0-38.97 8.52-53.44 20.72c-12.18 10.28-22.11 22.94-31.71 35.18c-7.5 9.57-15.27 19.47-24.11 28.24c-6.67 6.61-13.91 12.63-21.62 18c-29.76 20.78-69.17 34.53-117.14 40.85c-31.06 4.09-72.62 4.57-94.19-16.35l-0.82 0.86v5.37c23.62 19.82 64.74 19.33 95.69 15.26c48.8-6.43 88.98-20.48 119.43-41.74c7.96-5.54 15.42-11.75 22.31-18.57c9.06-9 16.93-19.03 24.53-28.72c9.87-12.59 19.2-24.47 30.98-34.41c21.26-17.96 54.89-27.52 78.01-11.08c2.78 1.99 5.34 4.27 7.65 6.8c1.7 1.84 3.32 3.85 4.92 6.08c-2.5-2.75-5.28-5.24-8.3-7.42c-9.2-6.58-19.85-9.42-30.77-9.42c-19.12-0.01-39.08 8.68-53.57 21.11c-12.07 10.36-21.89 23.05-31.38 35.32c-7.53 9.74-15.32 19.82-24.23 28.72c-6.66 6.65-13.9 12.69-21.63 18.07c-29.91 20.88-69.55 34.42-117.8 40.24c-31.36 3.77-73.3 3.68-94.95-18.12l-0.89 0.88v5.47c23.74 20.66 65.23 20.72 96.47 16.97c49.12-5.93 89.55-19.77 120.17-41.14c7.98-5.55 15.46-11.8 22.34-18.66c9.14-9.15 17.03-19.35 24.66-29.23c9.76-12.62 18.98-24.55 30.64-34.55c21.22-18.19 54.78-27.95 77.89-11.4c2.77 2.01 5.33 4.3 7.62 6.84c1.49 1.64 2.92 3.39 4.32 5.33c-2.32-2.48-4.88-4.74-7.63-6.74c-9.16-6.61-19.76-9.45-30.63-9.45c-19.18-0.01-39.19 8.84-53.7 21.49c-11.97 10.42-21.67 23.17-31.06 35.48c-7.55 9.91-15.36 20.17-24.33 29.2c-6.65 6.69-13.9 12.76-21.64 18.14c-30.06 20.98-69.91 34.3-118.45 39.62c-31.66 3.44-73.98 2.8-95.73-19.88l-0.94 0.87v5.57c23.87 21.51 65.71 22.12 97.24 18.68c49.43-5.41 90.11-19.05 120.91-40.54c8.01-5.57 15.5-11.84 22.38-18.75c9.21-9.28 17.13-19.67 24.79-29.72c9.64-12.66 18.76-24.62 30.32-34.7c20.64-17.98 54.91-28.21 77.74-11.73c2.77 2.01 5.31 4.31 7.59 6.87c1.3 1.45 2.56 2.99 3.8 4.67c-2.15-2.25-4.5-4.31-7.02-6.16c-8.89-6.35-19.58-9.67-30.5-9.49c-19.23 0-39.29 9.02-53.82 21.88c-11.86 10.5-21.46 23.28-30.74 35.63c-7.57 10.08-15.4 20.5-24.43 29.67c-6.65 6.72-13.91 12.83-21.67 18.23c-30.2 21.07-70.27 34.19-119.1 39c-31.96 3.14-74.65 1.92-96.5-21.65l-0.99 0.91v5.69c9 8.39 20.57 13.79 33.2 17.1h89.69c38.65-6.48 71.13-18.76 96.78-36.65c8.03-5.59 15.54-11.9 22.42-18.86c9.28-9.42 17.22-19.99 24.9-30.21c9.54-12.7 18.55-24.7 30.01-34.84c20.58-18.22 54.77-28.65 77.62-12.06c2.76 2.02 5.29 4.33 7.55 6.9c1.12 1.25 2.2 2.58 3.27 4c-1.98-2.02-4.11-3.88-6.39-5.56c-8.93-6.52-19.36-9.32-30.08-9.32c-19.49-0.01-39.98 9.22-54.24 22.05c-11.76 10.57-21.25 23.39-30.43 35.8c-7.58 10.25-15.43 20.84-24.52 30.13c-6.64 6.76-13.9 12.89-21.69 18.3c-19.35 13.49-42.75 23.63-69.9 30.32h19.78c20.08-6.54 37.87-15.17 53.21-25.87c8.06-5.61 15.58-11.95 22.46-18.96c9.36-9.56 17.31-20.3 25-30.7c9.43-12.74 18.35-24.78 29.7-34.98c20.53-18.46 54.66-29.06 77.49-12.39c2.75 2.03 5.27 4.35 7.52 6.93c0.94 1.07 1.86 2.19 2.76 3.37c-1.81-1.81-3.75-3.49-5.8-5.01c-8.89-6.54-19.27-9.34-29.95-9.34c-19.54-0.01-40.08 9.39-54.36 22.43c-11.66 10.65-21.05 23.52-30.13 35.96c-7.6 10.41-15.46 21.18-24.61 30.6c-6.63 6.8-13.9 12.95-21.7 18.37c-10.96 7.64-23.23 14.17-36.73 19.59h13.72c9.37-4.44 18.09-9.47 26.14-15.08c8.09-5.62 15.63-12 22.51-19.06c9.42-9.69 17.39-20.61 25.11-31.19c9.33-12.78 18.14-24.86 29.39-35.13c20.47-18.69 54.54-29.51 77.35-12.71c2.74 2.04 5.25 4.37 7.49 6.96c0.77 0.89 1.53 1.81 2.28 2.78c-1.64-1.61-3.39-3.11-5.23-4.49c-8.87-6.57-19.2-9.39-29.84-9.39c-19.58 0-40.18 9.56-54.47 22.82c-11.56 10.71-20.85 23.63-29.83 36.11c-7.61 10.58-15.49 21.53-24.7 31.07c-6.63 6.84-13.9 13.01-21.72 18.45c-4.52 3.15-9.26 6.1-14.22 8.86h10.91c2.21-1.39 4.38-2.82 6.5-4.3c8.12-5.64 15.67-12.05 22.54-19.15c9.48-9.83 17.48-20.93 25.21-31.68c8.82-12.26 17.94-24.94 29.09-35.28c20.42-18.93 54.41-29.93 77.22-13.04c2.73 2.05 5.23 4.39 7.46 6.98c0.63 0.73 1.25 1.48 1.86 2.27c-1.5-1.44-3.08-2.78-4.74-4.03c-8.84-6.6-19.13-9.43-29.72-9.43c-19.63 0-40.27 9.73-54.59 23.2c-11.46 10.79-20.65 23.75-29.54 36.28c-7.62 10.75-15.51 21.86-24.77 31.52c-5.88 6.11-12.27 11.67-19.12 16.66h9.25c4.91-3.96 9.57-8.22 13.94-12.76c9.55-9.96 17.55-21.25 25.3-32.16c8.73-12.3 17.75-25.03 28.81-35.43c20.36-19.16 54.3-30.36 77.08-13.36c2.73 2.05 5.22 4.41 7.42 7.01c0.46 0.54 0.92 1.1 1.37 1.67c-1.32-1.24-2.71-2.42-4.16-3.52c-8.56-6.32-18.96-9.65-29.6-9.46c-19.67-0.01-40.37 9.9-54.69 23.59c-11.37 10.86-20.46 23.87-29.26 36.45c-7.63 10.91-15.53 22.19-24.84 31.98c-1.97 2.06-4 4.05-6.09 5.99h8.15c0.69-0.69 1.37-1.38 2.05-2.09c9.61-10.09 17.63-21.55 25.38-32.64c8.64-12.35 17.57-25.12 28.52-35.59c20.3-19.41 54.17-30.8 76.95-13.69c2.72 2.06 5.2 4.43 7.39 7.04c0.3 0.36 0.6 0.72 0.9 1.09c-1.15-1.06-2.35-2.06-3.59-3.01c-8.51-6.34-18.89-9.68-29.5-9.5c-19.72 0-40.45 10.07-54.79 23.98c-11.27 10.93-20.27 23.99-28.97 36.62c-6.47 9.39-13.14 19.04-20.72 27.79h7.54c6.47-7.91 12.28-16.31 17.93-24.52c8.54-12.39 17.38-25.21 28.24-35.75c20.54-19.92 54.87-30.6 76.82-14.01c2.71 2.07 5.18 4.45 7.36 7.07c0.18 0.21 0.36 0.43 0.53 0.65c-1.01-0.92-2.06-1.8-3.15-2.63c-8.47-6.36-18.81-9.72-29.4-9.54c-19.77-0.01-40.55 10.25-54.89 24.37c-11.19 11.01-20.09 24.12-28.7 36.79c-3.98 5.85-8.03 11.79-12.32 17.57h7.2c3.42-4.75 6.71-9.57 9.94-14.32c8.46-12.44 17.2-25.3 27.97-35.91c20.47-20.16 54.75-31.03 76.68-14.34c2.7 2.08 5.16 4.47 7.32 7.1c0.04 0.04 0.07 0.09 0.11 0.13c-0.85-0.76-1.73-1.49-2.63-2.18c-8.5-6.51-18.58-9.35-29.05-9.35c-19.69 0-40.74 10.03-55.24 24.52c-11.09 11.09-19.91 24.24-28.44 36.96c-1.64 2.45-3.3 4.92-4.98 7.39h7.1c0.93-1.37 1.85-2.74 2.76-4.11c8.36-12.49 17.02-25.4 27.7-36.08c20.42-20.4 54.64-31.46 76.55-14.66c2.57 1.99 4.91 4.26 6.98 6.77c-0.69-0.6-1.4-1.19-2.13-1.75c-8.45-6.52-18.48-9.36-28.89-9.36c-19.72 0-40.84 10.19-55.39 24.87c-10.18 10.36-18.41 22.45-26.27 34.32h7.16c7.06-10.56 14.5-21.12 23.38-30.14c20.39-20.61 54.55-31.84 76.41-14.98c2.4 1.87 4.6 3.99 6.57 6.32c-0.54-0.46-1.09-0.92-1.66-1.36c-8.45-6.55-18.44-9.41-28.82-9.41c-19.76 0-40.92 10.36-55.46 25.28c-7.22 7.46-13.45 15.79-19.26 24.29h7.34c4.98-7.08 10.28-13.95 16.24-20.1c20.31-20.85 54.41-32.29 76.27-15.3c2.24 1.76 4.29 3.73 6.15 5.89c-0.39-0.32-0.78-0.64-1.17-0.96c-8.43-6.6-18.4-9.47-28.75-9.47c-19.8-0.01-41 10.53-55.53 25.68c-4.29 4.49-8.22 9.3-11.92 14.26h7.69c2.73-3.48 5.58-6.85 8.62-10.02c20.25-21.11 54.27-32.73 76.13-15.63c2.09 1.65 4.03 3.5 5.78 5.51c-0.25-0.21-0.5-0.41-0.76-0.61c-8.21-6.38-18.32-9.74-28.68-9.55c-19.85-0.01-41.08 10.71-55.6 26.09c-1.3 1.38-2.56 2.78-3.8 4.21h8.27c20.19-21.36 54.12-33.17 76-15.96c5.49 4.31 9.61 10.06 12.81 15.96h42.02c-1.08-1.87-2.15-3.79-3.21-5.79c0.47 0.75 0.93 1.49 1.4 2.21c0.78 1.21 1.57 2.4 2.37 3.58h6.44c-1.46-2.1-2.91-4.24-4.34-6.45c-2.59-4.02-5.14-8.38-7.67-13.12c1.07 1.73 2.15 3.4 3.24 5.02c3.5 5.21 7.05 10.03 10.7 14.55h6.82c-4.53-5.32-8.89-11.1-13.17-17.47c-3.17-4.71-6.29-9.95-9.4-15.76c1.68 2.7 3.36 5.26 5.07 7.69c6.84 9.77 13.84 18.17 21.35 25.54h7.55c-8.8-8.02-16.84-17.33-24.66-28.51c-3.89-5.56-7.72-11.84-11.49-18.89c2.41 3.91 4.84 7.54 7.28 10.88c11.11 15.19 22.54 26.92 35.74 36.52h9.01c-15.37-10.02-28.19-22.54-40.62-39.53c-4.5-6.15-8.96-13.34-13.37-21.52c3.06 4.95 6.15 9.47 9.27 13.56c15.48 20.28 31.42 34.1 51.68 44.8c1.09 0.57 2.19 1.14 3.3 1.7c0.64 0.32 1.32 0.65 2 0.99h12.52c-4.67-1.81-8.81-3.77-12.26-5.5c-1.08-0.54-2.15-1.09-3.21-1.65c-19.85-10.49-34.81-23.46-50.03-43.41c-5.24-6.87-10.42-15.03-15.5-24.43c3.78 6.12 7.62 11.62 11.51 16.5c15.79 19.8 31.21 32.63 51.57 42.9c1.07 0.54 2.17 1.08 3.28 1.61c7.28 3.5 17.47 7.89 29.34 10.11v-5.07c-10.93-2.18-20.38-6.26-27.19-9.53c-1.08-0.52-2.15-1.04-3.2-1.57c-19.67-9.92-34.6-22.35-49.92-41.56c-5.93-7.44-11.89-16.67-17.69-27.35c4.55 7.38 9.18 13.92 13.83 19.48c15.88 19.03 31.27 31.29 51.45 40.98c1.07 0.52 2.16 1.03 3.26 1.53c7.31 3.35 17.56 7.55 29.45 9.62v-4.99c-10.99-2.03-20.54-5.95-27.41-9.09c-1.07-0.49-2.13-0.99-3.18-1.49c-19.51-9.37-34.41-21.24-49.81-39.7c-6.76-8.1-13.52-18.38-20.03-30.38c5.33 8.67 10.8 16.25 16.3 22.54c15.95 18.25 31.3 29.93 51.33 39.07l3.25 1.44c7.35 3.19 17.66 7.21 29.55 9.11v-4.89c-10.77-1.8-20.16-5.42-27.62-8.66l-3.17-1.41c-19.62-8.94-34.01-19.91-49.69-37.84c-7.57-8.67-15.12-19.9-22.31-33.13c6.07 9.88 12.36 18.41 18.68 25.32c16.21 17.7 31.05 28.46 51.22 37.16l3.23 1.36c7.98 3.28 18.07 6.94 29.67 8.62v-4.84c-10.82-1.65-20.31-5.11-27.84-8.21l-3.16-1.32c-19.5-8.41-33.87-18.84-49.58-35.99c-8.49-9.27-16.93-21.6-24.85-36.25c6.92 11.32 14.19 21.05 21.36 28.51c16.22 16.87 31.02 27.08 51.09 35.24l3.21 1.27c8.02 3.11 18.17 6.59 29.77 8.11v-4.76c-10.87-1.5-20.46-4.79-28.07-7.75l-3.15-1.24c-19.4-7.89-33.74-17.79-49.46-34.14c-9.16-9.53-18.52-22.95-27.09-38.73c7.62 12.46 15.73 23.09 23.72 31.02c16.21 16.05 30.98 25.7 50.98 33.33l3.18 1.19c8.08 2.94 18.3 6.22 29.89 7.58v-4.68c-10.92-1.35-20.6-4.47-28.3-7.27l-3.12-1.16c-19.34-7.38-33.65-16.74-49.36-32.29c-10.03-9.94-20.27-24.34-29.48-41.36c8.36 13.71 17.36 25.31 26.25 33.67c16.37 15.41 30.63 24.22 50.85 31.41l3.18 1.11c8.13 2.76 18.45 5.98 29.99 7.15v-4.68c-11.04-1.19-20.71-4.16-28.51-6.82l-3.12-1.08c-19.56-6.96-33.38-15.49-49.24-30.44c-10.83-10.19-21.88-25.41-31.67-43.5c9.01 14.79 18.85 27.19 28.56 35.87c16.29 14.55 30.52 22.83 50.73 29.5l3.16 1.02c8.2 2.6 18.48 5.45 30.09 6.51v-4.51c-10.77-1.01-20.41-3.69-28.73-6.32l-3.1-1c-19.56-6.46-33.34-14.48-49.13-28.58c-11.69-10.44-23.6-26.53-33.97-45.78c9.68 15.95 20.4 29.2 30.98 38.16c16.18 13.69 30.36 21.43 50.61 27.6l3.14 0.93c8.76 2.55 18.91 5.12 30.2 6v-4.47c-10.77-0.87-20.53-3.35-28.95-5.8l-3.09-0.92c-19.6-5.97-33.35-13.47-49.02-26.73c-12.43-10.52-25.6-28.02-36.47-48.36c10.36 17.18 22.27 31.68 33.62 40.77c16.22 13 29.9 19.96 50.48 25.69l3.12 0.84c8.83 2.36 19.07 4.74 30.31 5.46v-4.39c-10.77-0.72-20.64-3.03-29.18-5.31l-3.07-0.84c-19.94-5.56-33.2-12.3-48.91-24.88c-13.23-10.59-27.3-28.9-38.63-50.27c10.93 18.22 23.74 33.5 35.92 42.71c16.04 12.12 29.69 18.57 50.36 23.77l3.09 0.76c9.35 2.26 19.42 4.34 30.42 4.91v-4.32c-10.59-0.55-20.33-2.6-29.4-4.79l-3.06-0.76c-20.05-5.05-33.28-11.29-48.8-23.02c-13.52-10.22-27.89-28.3-39.45-49.61c-0.47-0.86-0.93-1.73-1.4-2.59c11.5 19.3 25.24 35.38 38.26 44.65c15.8 11.25 29.42 17.17 50.24 21.86l3.08 0.68c9.46 2.05 19.6 3.94 30.53 4.36v-4.26c-11.04-0.42-20.96-2.38-29.63-4.26l-3.05-0.67c-20.47-4.61-33.21-10.15-48.7-21.18c-13.74-9.77-28.37-27.53-40.15-48.7c-1.17-2.12-2.34-4.26-3.5-6.41c12.17 20.87 27.13 38.15 41.22 47.59c15.71 10.52 28.83 15.74 50.11 19.96l3.06 0.59c9.02 1.73 19.33 3.5 30.64 3.79v-4.2c-10.97-0.29-21.04-2.02-29.86-3.72l-3.02-0.58c-20.69-4.1-33.4-9.16-48.6-19.32c-13.95-9.34-28.83-26.76-40.84-47.8c-2.28-4-4.52-8.08-6.77-12.19c0.8 1.4 1.6 2.78 2.4 4.16c12.57 21.49 28.21 39.1 42.91 48.32c17.5 10.98 31.08 14.81 49.99 18.05l2.82 0.47c9.75 1.61 19.95 3.13 30.97 3.27v-4.14c-11.86-0.16-22.54-1.92-30.08-3.17l-3.02-0.51c-18.39-3.14-31.56-6.85-48.49-17.47c-14.15-8.88-29.29-25.97-41.54-46.9c-2.67-4.57-5.27-9.24-7.9-13.94c-2.03-3.62-4.08-7.29-6.18-10.96c-0.04-0.08-0.09-0.15-0.13-0.23C385.69 586.92 381.96 580.7 377.94 574.69z M402.68 608.21c-2.81-4.7-5.57-9.53-8.33-14.38c-5.48-9.6-11.16-19.54-17.55-28.94c-5.61-8.23-10.44-14.02-15.68-18.78c-2.73-2.48-5.68-4.73-8.8-6.7c-10.48-6.6-22.44-9.37-34.49-9.37c-17.95 0-36.12 6.14-50.02 14.86c-14.61 9.17-26.44 20.88-38.97 33.29c-6.55 6.49-13.33 13.19-20.5 19.46c-6.8 5.93-13.9 11.49-21.29 16.67c-35.18 24.71-75.12 40.46-105.99 51.43c-36.38 12.9-65.13 17.81-81.05 13.84v4.18c22.65 5.04 61.18-6.66 82.42-14.17c31.11-11.05 71.38-26.95 106.96-51.94c7.51-5.26 14.73-10.92 21.63-16.95c7.27-6.35 14.09-13.1 20.68-19.63c12.36-12.24 24.04-23.8 38.26-32.73c22.18-13.9 55.56-20.98 80.2-5.48c2.91 1.84 5.67 3.94 8.22 6.26c5 4.53 9.64 10.1 15.05 18.05c5.71 8.39 10.87 17.27 15.83 25.96c0.04 0.08 0.09 0.15 0.13 0.23c0.47 0.83 0.95 1.66 1.42 2.49c2.79 4.87 5.55 9.72 8.38 14.45c12.82 21.38 28.73 38.67 43.66 47.42c17.08 10 30.7 13.39 49.86 16.13l3.02 0.42c8.7 1.22 19.15 2.68 30.85 2.67v-4.07c-11.43 0.01-21.72-1.43-30.29-2.63l-3.01-0.42c-19.07-2.73-31.79-5.9-48.37-15.62C430.76 645.92 414.98 628.72 402.68 608.21z M491.27 347.05c-0.9 0.55-1.78 1.11-2.64 1.68c-5.61 3.89-10.94 8.17-15.96 12.8c-9 7.95-17.52 15.47-29.85 18.21c-20.78 4.63-44.6-9.34-59.93-23.96c-6.62-6.32-12.96-13.38-19.09-20.21c-5-5.57-10.17-11.33-15.54-16.74c-5.61-5.83-11.75-11.11-18.35-15.77c-2.97-2.05-6.07-3.91-9.28-5.57c-13.08-6.76-28.23-10.16-44.17-10.16c-13.94 0.08-27.76 2.5-40.89 7.16c-24.16 8.45-45.7 23.58-64.71 36.93c-6.91 4.87-13.82 9.75-20.73 14.66c-33.24 23.57-62.9 44.88-89.18 67.01c-26.6 22.37-47.08 41.62-60.94 57.27v3.53l0.11 0.1c13.78-15.91 34.78-35.76 62.42-59c26.2-22.07 55.82-43.35 89.02-66.9c6.89-4.89 13.81-9.79 20.71-14.65c18.88-13.25 40.27-28.28 64.11-36.62c28.99-10.12 60.06-9.05 83.13 2.87c3.11 1.62 6.13 3.42 9.02 5.41c6.47 4.58 12.49 9.75 17.99 15.46c5.32 5.37 10.47 11.11 15.46 16.65c6.16 6.87 12.53 13.95 19.22 20.34c20.44 19.51 43.68 28.71 62.14 24.59c12.94-2.89 21.68-10.6 30.93-18.77c4.94-4.56 10.18-8.76 15.7-12.59c0.83-0.56 1.68-1.1 2.56-1.63c8.49-5.17 19.6-9.51 33.98-13.28c0.03-0.01 0.05-0.01 0.08-0.02v-2.53c-0.24 0.06-0.47 0.12-0.69 0.18C511.3 337.33 499.97 341.76 491.27 347.05z M482.34 42.62c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 107.76 28.7 158.68 0.01 217.64v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 18.83 493.45 28.8 482.34 42.62z M480.77 59.25c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C71.11 123.69 28.69 173.46 0.01 231.06v3.47c28.58-58.56 71.35-109.14 124.51-147.08c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c11.15-13.89 27.24-23.8 44.62-28.22v-1.6C508.75 34.86 492.21 45.01 480.77 59.25z M480.77 50.81c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.5-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C71.11 115.25 28.69 165.02 0.01 222.62v3.47c28.58-58.56 71.35-109.13 124.51-147.07c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c11.15-13.9 27.24-23.8 44.62-28.22v-1.61C508.75 26.42 492.21 36.58 480.77 50.81z M483.5 33.16c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.89-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 98.81 28.7 150.58 0.01 210.55v3.59c28.55-60.98 72.36-113.61 127.25-152.77c30.54-21.78 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.56-13.16 25.56-22.74 41.89-27.47V5.05C509.79 9.82 494.35 19.66 483.5 33.16z M482.34 68.27c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 133.41 28.7 184.33 0.01 243.29v3.53c28.57-59.94 71.94-111.7 126.09-150.34c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 44.49 493.45 54.46 482.34 68.27z M483.5 24.49c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.9-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98C282.76 7.1 248.97 2.6 214.27 9.95c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 90.14 28.7 141.91 0.01 201.88v3.59C28.56 144.5 72.37 91.87 127.25 52.7c30.54-21.78 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.24-11.5 21.87-20.28 35.81-25.46h-4.2C503.56 5.41 492.09 13.8 483.5 24.49z M482.34 93.49c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 158.63 28.7 209.55 0.01 268.51v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 69.7 493.45 79.68 482.34 93.49z M482.34 102.19c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 167.33 28.7 218.25 0.01 277.21v3.53c28.57-59.95 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 78.4 493.45 88.37 482.34 102.19z M482.34 76.28c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.22-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 141.42 28.7 192.34 0.01 251.3v3.53c28.57-59.95 71.94-111.71 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 52.49 493.45 62.46 482.34 76.28z M482.34 84.13c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 149.27 28.7 200.19 0.01 259.15v3.53c28.57-59.94 71.94-111.7 126.09-150.35c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8v-1.61C509.35 60.34 493.45 70.32 482.34 84.13z M418.21 21.76c9.3-5.09 16.1-13 21.97-21.75h-1.83c-5.65 8.33-12.06 15.57-20.87 20.41c-22.56 12.34-51.13 2.07-70.35-11.67c-3.84-2.75-7.57-5.7-11.22-8.74h-2.39c4.12 3.49 8.34 6.87 12.71 9.99C365.83 24.02 395.04 34.46 418.21 21.76z M422.8 31.92c12.81-7 20.89-19.37 28.3-31.91h-1.79c-7.39 12.48-15 23.86-27.24 30.57c-22.55 12.34-51.12 2.07-70.34-11.67c-8.03-5.74-15.59-12.38-22.91-18.9h-2.31c7.75 6.91 15.76 14.03 24.32 20.15C370.43 34.18 399.64 44.63 422.8 31.92z M214.27 2.97c-28.44 6.02-57.2 19.59-87.92 41.51C72.15 83.16 28.7 134.93 0.01 194.9v3.59c28.55-60.97 72.36-113.6 127.24-152.76c30.54-21.79 59.12-35.28 87.34-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c5.9-7.36 13.19-13.59 21.32-18.49h-2.92c-7.43 4.78-14.1 10.68-19.59 17.5c-5.39 6.71-9.88 14.41-14.23 21.86c-8.38 14.35-16.29 27.9-30.13 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-10.78-9.63-21.92-19.58-34.62-26.98C294.23 6.79 276.72 1.53 258.05 0h-23.39C227.93 0.53 221.12 1.52 214.27 2.97z M347.59 0.01c18.18 9.3 40.4 13.82 58.8 3.73c2.04-1.11 3.95-2.36 5.77-3.73h-2.62c-1.25 0.85-2.54 1.65-3.89 2.39c-16.97 9.29-37.34 5.77-54.58-2.39H347.59z M426.5 39.91c-22.55 12.34-51.12 2.07-70.34-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-2.85-2.55-5.73-5.12-8.65-7.66h-2.35c3.38 2.91 6.7 5.88 9.98 8.81c7.94 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c1.01-1.73 2.03-3.47 3.06-5.21h-1.79c-0.87 1.48-1.73 2.95-2.61 4.42C448.25 18.78 440.34 32.32 426.5 39.91z M431.36 49.87c-22.56 12.34-51.13 2.07-70.35-11.67c-8.72-6.23-16.88-13.52-24.78-20.57c-6.69-5.98-13.52-12.08-20.78-17.62h-2.56c7.83 5.82 15.15 12.36 22.32 18.77c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.61-22.15 30.72-36.04c2.96-5.08 5.99-10.27 9.32-15.17h-1.86c-3.12 4.68-5.98 9.58-8.78 14.38C453.11 28.74 445.19 42.28 431.36 49.87z M412.47 11.66c5.53-3.02 10.18-7.05 14.27-11.65h-2.03c-3.76 4.05-7.98 7.57-12.97 10.31c-21.8 11.94-49.23 2.73-68.4-10.31h-2.7C360.24 13.97 389.36 24.33 412.47 11.66z M464.53 22.85c-8.37 14.35-16.29 27.9-30.12 35.48c-22.56 12.34-51.13 2.07-70.35-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.34-9.25-21.02-18.78-33.09-26.08h-3.05c0.26 0.15 0.51 0.29 0.76 0.44c12.56 7.31 23.65 17.21 34.35 26.78c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c0.53-0.66 1.07-1.31 1.62-1.95h-2.01c-0.27 0.32-0.53 0.65-0.8 0.98C473.38 7.7 468.88 15.4 464.53 22.85z M482.34 10.5c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-5.85-3.4-12.04-6.28-18.51-8.61h-4.79c7.94 2.52 15.49 5.85 22.53 9.95c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c3.37-4.2 7.19-8.04 11.37-11.47h-2.39C488.82 3.2 485.41 6.71 482.34 10.5z M490.24 269.51c-0.87 0.71-1.72 1.44-2.55 2.19c-5.79 5.22-10.7 11.18-15.43 16.94c-8.7 10.58-16.92 20.57-29.75 25.32c-21.58 8.01-47.4-4.42-64.36-18.71c-7.53-6.34-14.67-13.56-21.57-20.54c-4.9-4.96-9.97-10.08-15.16-14.89c-5.87-5.57-12.23-10.61-18.99-15.05c-3.03-1.95-6.18-3.72-9.41-5.31c-14.09-6.92-30.53-10.42-47.74-10.42c-12.69 0.04-25.31 1.85-37.5 5.4c-24.89 7.19-47.3 20.78-65.94 33.12c-6.54 4.33-13.27 8.96-20.57 14.14c-33.17 23.57-61.78 47.37-85.07 70.73C32.89 375.8 13.53 399.09 0.01 420v3.7l0.04 0.03c13.49-21.45 33.41-45.6 57.59-69.84c23.2-23.28 51.73-47 84.8-70.5c7.29-5.18 14-9.79 20.52-14.11c18.51-12.26 40.75-25.75 65.38-32.86c29.53-8.54 60.07-6.76 83.78 4.88c3.16 1.56 6.23 3.29 9.2 5.19c6.66 4.38 12.92 9.35 18.7 14.84c5.17 4.78 10.21 9.88 15.1 14.82c6.94 7.02 14.11 14.28 21.7 20.68c17.41 14.66 44 27.35 66.4 19.07c13.36-4.96 21.75-15.16 30.63-25.96c4.69-5.7 9.54-11.59 15.22-16.72c0.81-0.72 1.63-1.43 2.48-2.12c8.63-7.1 19.73-12.83 32.98-17.04c0.68-0.22 1.37-0.43 2.06-0.64v-2.14c-0.9 0.27-1.8 0.54-2.7 0.83C510.39 256.39 499.07 262.24 490.24 269.51z M490.09 256.6c-0.86 0.75-1.71 1.5-2.53 2.27c-5.75 5.41-10.6 11.6-15.3 17.59c-8.67 11.03-16.85 21.45-29.79 26.55c-21.7 8.54-47.86-3.61-65.1-17.84c-7.67-6.34-14.94-13.58-21.97-20.57c-4.88-4.87-9.93-9.89-15.11-14.62c-5.91-5.53-12.3-10.53-19.09-14.94c-3.04-1.93-6.19-3.68-9.43-5.26c-14.29-6.95-30.98-10.48-48.43-10.48c-12.46 0.03-24.85 1.76-36.85 5.13c-25.45 7.1-47.72 20.4-66.15 32.48c-6.57 4.32-13.49 9.05-20.55 14.07c-32.56 23.16-60.95 47.16-84.38 71.35c-22.85 23.58-41.94 47.46-55.4 69.29v3.72l0.05 0.05c13.46-22.42 33.09-47.2 56.79-71.66c23.34-24.1 51.63-48.02 84.1-71.11c7.04-5.01 13.93-9.72 20.48-14.02c18.31-12 40.41-25.21 65.59-32.24c29.54-8.24 60.1-6.34 83.88 5.23c3.17 1.54 6.25 3.26 9.23 5.15c6.69 4.34 12.99 9.27 18.81 14.73c5.15 4.69 10.19 9.7 15.06 14.55c7.06 7.03 14.36 14.3 22.11 20.69c17.68 14.59 44.58 27.03 67.1 18.15c13.44-5.29 21.78-15.93 30.61-27.18c4.65-5.93 9.45-12.06 15.1-17.37c0.81-0.75 1.63-1.49 2.47-2.21c8.64-7.43 19.68-13.37 32.81-17.66c0.8-0.26 1.59-0.51 2.39-0.76v-2.09c-1.01 0.3-2.01 0.62-3.02 0.97C510.19 242.94 498.93 249.01 490.09 256.6z M482.34 109.23c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C71.71 174.37 28.7 225.29 0.01 284.25v3.53c28.57-59.94 71.94-111.7 126.09-150.34c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.81-13.47 26.27-23.19 43.04-27.8V80.8C509.35 85.45 493.45 95.42 482.34 109.23z M489.92 243.63c-0.86 0.78-1.7 1.56-2.51 2.37c-5.7 5.61-10.51 12.03-15.16 18.23c-8.62 11.5-16.76 22.35-29.82 27.8c-21.84 9.08-48.33-2.8-65.85-16.96c-7.82-6.32-15.23-13.58-22.39-20.59c-4.87-4.77-9.9-9.7-15.05-14.33c-5.96-5.49-12.38-10.45-19.2-14.83c-3.05-1.91-6.21-3.65-9.45-5.22c-14.48-6.99-31.43-10.54-49.12-10.54c-12.23 0.02-24.4 1.65-36.2 4.85c-26.14 7.05-49.18 20.72-66.34 31.85c-6.6 4.3-13.51 9-20.52 13.98c-32.04 22.8-60.19 47.02-83.69 71.97c-22.38 23.76-41.21 48.25-54.61 71.01v3.77l0.04 0.02c13.41-23.41 32.77-48.82 55.99-73.47c23.41-24.86 51.46-49 83.4-71.71c6.98-4.97 13.87-9.66 20.45-13.94c17.04-11.05 39.92-24.63 65.8-31.6c29.55-7.96 60.15-5.93 83.99 5.56c3.18 1.53 6.27 3.24 9.26 5.11c6.72 4.31 13.06 9.2 18.93 14.62c5.12 4.6 10.14 9.53 15 14.28c7.19 7.05 14.62 14.33 22.51 20.72c17.95 14.52 45.2 26.66 67.8 17.24c13.54-5.65 21.84-16.71 30.62-28.42c4.6-6.15 9.37-12.51 14.97-18.02c0.8-0.78 1.6-1.54 2.45-2.3c8.65-7.74 19.63-13.9 32.64-18.27c0.91-0.31 1.82-0.6 2.73-0.89v-2.02c-1.12 0.34-2.24 0.7-3.36 1.06C509.98 229.42 498.77 235.7 489.92 243.63z M489.62 217.79c-0.85 0.82-1.68 1.67-2.48 2.53c-5.6 5.98-10.31 12.84-14.87 19.48c-8.53 12.43-16.6 24.17-29.9 30.31c-22.07 10.2-49.26-1.16-67.35-15.19c-8.12-6.31-15.79-13.59-23.2-20.63c-4.84-4.59-9.84-9.34-14.94-13.8c-6.05-5.41-12.54-10.29-19.42-14.59c-3.07-1.88-6.24-3.59-9.49-5.13c-15.09-7.15-32.29-10.77-50.33-10.77c-11.83 0.03-23.6 1.51-35.07 4.41c-20.93 5.22-42.15 14.93-66.75 30.57c-6.62 4.2-13.5 8.85-20.47 13.81c-30.09 21.23-57.7 45.79-82.3 73.2c-21.79 24.51-39.63 49.54-53.04 74.46v3.82c13.52-25.78 31.81-51.71 54.38-77.09c24.51-27.3 52.02-51.76 82-72.92c6.94-4.95 13.8-9.58 20.39-13.77c24.45-15.53 45.49-25.17 66.23-30.35c30-7.49 59.9-5.27 84.2 6.26c3.19 1.51 6.3 3.19 9.32 5.04c6.79 4.24 13.21 9.06 19.17 14.41c5.07 4.42 10.05 9.16 14.88 13.74c7.44 7.06 15.14 14.38 23.34 20.74c18.5 14.37 46.38 25.94 69.2 15.42c13.75-6.34 21.95-18.29 30.63-30.93c4.52-6.58 9.19-13.38 14.7-19.27c0.78-0.84 1.59-1.66 2.41-2.46c8.51-8.28 19.69-15.04 32.33-19.55c1.13-0.41 2.26-0.8 3.4-1.17v-1.88c-1.35 0.42-2.68 0.87-4.01 1.35C509.71 202.43 498.3 209.32 489.62 217.79z M490.57 295.36c-0.88 0.67-1.74 1.35-2.58 2.03c-5.6 4.81-10.83 10.02-15.66 15.6c-8.79 9.68-17.1 18.83-29.74 22.91c-21.3 6.88-46.45-6.06-62.87-20.47c-7.21-6.35-14.08-13.52-20.73-20.46c-4.93-5.16-10.04-10.48-15.3-15.49c-5.78-5.66-12.06-10.78-18.77-15.29c-3.02-1.98-6.14-3.78-9.37-5.39c-13.72-6.85-29.7-10.32-46.46-10.32c-13.13 0.04-26.18 2.06-38.71 5.97C208 261.37 188 273.2 164.84 288.84c-6.58 4.45-13.32 9.13-20.62 14.32c-35.12 24.95-63.4 47.68-86.44 69.5c-24.23 22.92-44.14 45.02-57.77 64.12v3.64l0.07 0.06c13.56-19.52 34.03-42.43 59.2-66.23c22.97-21.74 51.16-44.42 86.21-69.31c7.28-5.17 14.02-9.84 20.58-14.28c22.99-15.53 42.84-27.29 64.96-34.12c29.5-9.1 59.95-7.57 83.55 4.22c3.15 1.57 6.21 3.33 9.15 5.26c6.6 4.45 12.78 9.48 18.46 15.05c5.21 4.97 10.3 10.28 15.22 15.41c6.68 6.97 13.58 14.18 20.87 20.59c16.87 14.8 42.8 28.06 64.99 20.9c13.19-4.26 21.68-13.61 30.68-23.52c4.75-5.5 9.91-10.64 15.42-15.38c0.82-0.67 1.66-1.32 2.51-1.97c8.6-6.43 19.81-11.74 33.3-15.77c0.47-0.14 0.94-0.27 1.41-0.41v-2.27c-0.68 0.19-1.35 0.39-2.03 0.6C510.82 283.35 499.38 288.77 490.57 295.36z M490.91 321.23c-0.89 0.61-1.77 1.22-2.62 1.86c-5.61 4.35-10.9 9.1-15.83 14.21c-8.89 8.81-17.3 17.13-29.76 20.54c-21.07 5.76-45.53-7.71-61.4-22.22c-6.92-6.34-13.54-13.47-19.93-20.37c-4.96-5.34-10.09-10.87-15.4-16.07c-5.7-5.74-11.91-10.94-18.56-15.53c-2.99-2.02-6.1-3.85-9.32-5.48c-13.39-6.81-28.94-10.25-45.28-10.25c-13.54 0.06-26.99 2.28-39.84 6.56c-23.65 7.79-44.3 21.31-65.13 35.66c-6.91 4.77-13.8 9.6-20.67 14.49c-25.82 18.32-59.15 42.65-87.81 68.25c-25.56 22.81-45.52 43.22-59.35 60.7v3.57l0.1 0.06c13.8-17.86 34.25-38.93 60.8-62.62c28.59-25.53 61.84-49.8 87.62-68.1c6.84-4.85 13.74-9.7 20.64-14.46c20.69-14.25 41.18-27.68 64.54-35.37c29.44-9.68 59.83-8.4 83.34 3.55c3.13 1.59 6.16 3.37 9.08 5.33c6.53 4.52 12.64 9.63 18.23 15.27c5.26 5.15 10.37 10.67 15.31 15.99c6.42 6.93 13.07 14.09 20.07 20.5c16.32 14.94 41.61 28.78 63.57 22.75c13.05-3.56 21.67-12.1 30.78-21.12c4.86-5.03 10.07-9.71 15.59-14c0.82-0.61 1.67-1.22 2.53-1.8c8.63-5.84 19.63-10.59 33.64-14.52c0.24-0.07 0.49-0.14 0.74-0.21V306c-0.46 0.13-0.91 0.25-1.36 0.39C510.97 310.39 499.74 315.24 490.91 321.23z M489.47 204.86c-0.84 0.85-1.66 1.72-2.46 2.61c-5.55 6.18-10.21 13.25-14.72 20.09c-8.49 12.91-16.52 25.09-29.95 31.59c-22.18 10.73-49.73-0.36-68.09-14.32c-8.27-6.28-16.06-13.57-23.59-20.61c-4.83-4.52-9.82-9.19-14.9-13.57c-6.09-5.37-12.62-10.21-19.53-14.47c-3.09-1.86-6.26-3.56-9.52-5.09c-24.72-11.61-55.07-13.99-85.43-6.7c-21.34 5.12-42.61 14.64-66.96 29.94c-6.67 4.2-13.54 8.81-20.44 13.73c-30.05 21.26-57.44 46.04-81.61 73.81c-21.34 24.68-38.91 50.3-52.26 76.19v3.82c13.47-26.8 31.49-53.33 53.57-78.87c24.07-27.67 51.37-52.35 81.3-73.54c6.88-4.9 13.72-9.5 20.36-13.68c24.18-15.2 45.29-24.64 66.44-29.72c29.99-7.21 59.92-4.87 84.29 6.59c3.2 1.5 6.32 3.17 9.35 5c6.82 4.22 13.27 9 19.29 14.3c5.06 4.36 10.04 9.02 14.86 13.52c7.56 7.08 15.38 14.39 23.72 20.73c18.78 14.27 47 25.58 69.9 14.5c13.86-6.71 22.39-19.66 30.64-32.19c4.47-6.79 9.1-13.82 14.56-19.9c0.78-0.86 1.58-1.71 2.4-2.55c9.12-8.99 20.1-15.87 32.16-20.17c1.23-0.46 2.48-0.89 3.73-1.3v-1.82c-1.45 0.47-2.89 0.96-4.32 1.49C509.96 188.65 498.76 195.68 489.47 204.86z M490.73 308.27c-0.88 0.64-1.75 1.28-2.59 1.94c-5.61 4.58-10.87 9.57-15.75 14.92c-8.84 9.24-17.2 17.98-29.74 21.72c-21.2 6.32-46-6.88-62.13-21.35c-7.08-6.34-13.82-13.5-20.34-20.41c-4.95-5.25-10.07-10.67-15.34-15.78c-5.74-5.7-11.99-10.85-18.67-15.4c-3-1.99-6.12-3.81-9.34-5.43c-13.56-6.84-29.32-10.28-45.87-10.28c-13.34 0.06-26.59 2.17-39.29 6.26c-24.24 7.74-45.57 21.55-65.32 35.03c-6.57 4.49-13.33 9.2-20.65 14.4c-36.63 26.01-64.32 47.9-87.13 68.88c-25.08 23.05-44.76 44.03-58.56 62.41v3.6l0.11 0.08c13.77-18.82 33.95-40.49 59.99-64.42c22.74-20.91 50.36-42.74 86.91-68.7c7.31-5.19 14.05-9.89 20.62-14.38c19.61-13.39 40.78-27.1 64.74-34.74c29.47-9.4 59.9-7.99 83.45 3.87c3.13 1.59 6.18 3.36 9.11 5.3c6.57 4.48 12.71 9.56 18.35 15.16c5.24 5.06 10.34 10.47 15.27 15.7c6.55 6.95 13.32 14.13 20.47 20.55c16.59 14.87 42.2 28.42 64.27 21.82c13.12-3.92 21.67-12.86 30.72-22.32c4.8-5.27 9.99-10.18 15.51-14.7c0.82-0.64 1.66-1.27 2.52-1.88c8.55-6.1 19.81-11.2 33.47-15.16c0.36-0.11 0.71-0.21 1.07-0.31v-2.33c-0.57 0.16-1.13 0.32-1.71 0.47C510.98 296.82 499.5 302.03 490.73 308.27z M490.4 282.43c-0.88 0.7-1.73 1.4-2.56 2.11c-5.83 5.03-10.77 10.75-15.54 16.28c-8.74 10.13-17.01 19.7-29.74 24.12c-21.45 7.45-46.92-5.25-63.61-19.6c-7.38-6.35-14.4-13.56-21.18-20.52c-4.91-5.04-9.98-10.26-15.2-15.16c-5.83-5.61-12.15-10.69-18.88-15.17c-3.02-1.96-6.16-3.75-9.39-5.34c-13.91-6.9-30.12-10.38-47.1-10.38c-12.92 0.04-25.76 1.96-38.12 5.69c-24.26 7.25-45.93 20.51-65.73 33.75c-6.55 4.38-13.48 9.17-20.6 14.23c-34.31 24.39-62.37 47.33-85.76 70.12C33.22 385.7 13.59 408.4 0.01 428.4v3.67l0.08 0.04c13.53-20.48 33.72-44.01 58.39-68.03c23.31-22.73 51.28-45.59 85.5-69.91c7.1-5.05 14.01-9.83 20.55-14.2c19.67-13.15 41.17-26.31 65.16-33.48c29.51-8.83 60.01-7.16 83.67 4.55c3.16 1.56 6.22 3.3 9.17 5.22c6.63 4.41 12.85 9.41 18.58 14.94c5.19 4.87 10.25 10.07 15.14 15.09c6.82 7 13.87 14.24 21.32 20.66c17.13 14.73 43.38 27.71 65.69 19.99c13.27-4.6 21.71-14.38 30.65-24.74c4.72-5.47 9.6-11.13 15.32-16.05c0.81-0.7 1.64-1.39 2.49-2.05c8.62-6.77 19.77-12.28 33.13-16.4c0.58-0.18 1.16-0.36 1.74-0.53v-2.21c-0.79 0.23-1.58 0.47-2.37 0.72C510.61 269.88 499.22 275.51 490.4 282.43z M489.75 230.72c-0.85 0.8-1.68 1.61-2.49 2.45c-5.65 5.8-10.42 12.44-15.02 18.86c-8.57 11.95-16.67 23.25-29.86 29.04c-21.94 9.65-48.78-1.98-66.6-16.08c-7.96-6.31-15.49-13.57-22.77-20.59c-4.87-4.69-9.89-9.54-15.02-14.09c-6-5.45-12.46-10.37-19.31-14.71c-3.06-1.89-6.22-3.62-9.47-5.17c-14.86-7.11-31.79-10.71-49.57-10.71c-12.07 0.04-24.09 1.61-35.77 4.68c-20.82 5.4-41.35 15.03-66.55 31.22c-6.58 4.21-13.47 8.89-20.49 13.9c-31.58 22.48-59.5 46.9-82.99 72.58c-22.26 24.31-40.35 48.77-53.83 72.73v3.8l0.03 0.01c13.56-24.76 32.13-50.09 55.19-75.28c23.41-25.59 51.23-49.92 82.7-72.32c7-4.99 13.87-9.65 20.41-13.85c25.04-16.08 45.39-25.63 66.02-30.98c29.99-7.78 59.84-5.69 84.09 5.91c3.19 1.52 6.29 3.22 9.29 5.08c6.76 4.28 13.13 9.13 19.05 14.51c5.1 4.52 10.11 9.36 14.96 14.03c7.31 7.06 14.87 14.35 22.9 20.72c18.23 14.43 45.79 26.3 68.51 16.33c13.64-6 21.88-17.5 30.61-29.67c4.56-6.36 9.28-12.95 14.84-18.65c0.79-0.81 1.6-1.6 2.43-2.38c8.53-7.97 19.76-14.52 32.48-18.91c1.02-0.36 2.04-0.7 3.07-1.03v-1.95c-1.23 0.38-2.46 0.79-3.69 1.21C509.93 215.89 498.48 222.57 489.75 230.72z M486.59 127.18c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C73.25 194.25 28.62 248.42 0.01 311.2v3.73c28.43-63.85 73.43-118.94 130.33-159.55c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52V100C511 105.07 496.77 114.51 486.59 127.18z M485.1 142.82c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C72.73 209.2 28.67 262.2 0.01 323.61v3.66c28.5-62.45 72.93-116.34 128.84-156.24c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.22-12.72 24.59-22.11 40.29-26.99v-1.63C510.42 120.11 495.61 129.75 485.1 142.82z M486.59 135.41c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.85 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 113.3 496.77 122.73 486.59 135.41z M489.29 191.93c-0.83 0.88-1.64 1.78-2.43 2.69c-5.5 6.36-10.11 13.65-14.57 20.7c-8.46 13.37-16.44 26.01-30.01 32.86c-22.3 11.28-50.19 0.46-68.84-13.42c-8.42-6.27-16.33-13.56-23.99-20.61c-4.81-4.44-9.79-9.03-14.86-13.33c-6.13-5.32-12.69-10.12-19.62-14.35c-3.09-1.85-6.28-3.53-9.54-5.05c-24.7-11.5-55.05-14.01-85.46-7.03c-21.51 4.99-43.48 14.57-67.16 29.31c-6.67 4.15-13.54 8.74-20.41 13.64c-30 21.3-57.19 46.31-80.92 74.43c-20.22 23.82-37.5 49.99-51.47 77.94v3.77c14.16-28.98 31.88-56.07 52.75-80.66c23.64-28.01 50.72-52.92 80.61-74.14c6.85-4.88 13.69-9.44 20.33-13.58c23.52-14.63 45.33-24.15 66.66-29.1c30.03-6.87 60-4.43 84.38 6.92c3.22 1.5 6.35 3.16 9.39 4.97c6.85 4.18 13.34 8.92 19.4 14.19c5.04 4.28 10 8.86 14.81 13.28c7.69 7.08 15.63 14.4 24.12 20.72c19.05 14.19 47.6 25.2 70.58 13.58c13.97-7.06 22.45-20.49 30.66-33.47c4.42-7 9-14.23 14.41-20.49c0.77-0.88 1.57-1.77 2.39-2.63c8.98-9.24 19.91-16.35 32-20.8c1.35-0.52 2.71-1 4.08-1.45v-1.74c-1.56 0.5-3.12 1.05-4.66 1.63C509.6 175.25 498.45 182.5 489.29 191.93z M485.1 118.93c-5.38 6.71-9.87 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.63-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51C72.73 185.31 28.67 238.32 0.01 299.73v3.66c28.5-62.45 72.93-116.34 128.84-156.25c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c10.22-12.73 24.59-22.11 40.29-26.99v-1.63C510.42 96.23 495.61 105.86 485.1 118.93z M486.59 168.91c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.79 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.32 23.68-21.51 38.8-26.51v-1.64C511 146.79 496.77 156.23 486.59 168.91z M489.14 178.97c-0.82 0.9-1.63 1.82-2.42 2.77c-5.43 6.53-9.99 14.03-14.39 21.29c-8.42 13.87-16.36 26.96-30.07 34.16c-22.39 11.84-50.63 1.29-69.59-12.55c-8.55-6.24-16.6-13.53-24.36-20.58c-4.81-4.36-9.78-8.87-14.83-13.09c-6.18-5.29-12.78-10.05-19.74-14.24c-3.08-1.81-6.3-3.5-9.56-5.01c-24.79-11.43-55.15-14.05-85.5-7.36c-21.86 4.85-43.9 14.23-67.37 28.67c-6.64 4.09-13.5 8.65-20.38 13.56c-29.97 21.34-56.95 46.58-80.23 75.05c-20.06 24.41-37.08 51.16-50.69 79.67v3.75c13.79-29.53 31.24-57.22 51.92-82.4c23.19-28.36 50.07-53.5 79.91-74.75c6.85-4.89 13.68-9.43 20.29-13.5c23.33-14.36 45.2-23.67 66.88-28.48c30.01-6.6 60.02-4.04 84.49 7.26c3.22 1.49 6.38 3.14 9.42 4.93c6.88 4.15 13.41 8.86 19.52 14.09c5.03 4.19 9.98 8.69 14.78 13.05c7.8 7.08 15.87 14.4 24.5 20.69c19.35 14.12 48.23 24.85 71.28 12.68c14.1-7.39 22.53-21.3 30.69-34.73c4.37-7.21 8.89-14.67 14.26-21.11c0.77-0.92 1.56-1.82 2.37-2.71c8.84-9.49 19.73-16.83 31.85-21.45c1.46-0.57 2.93-1.1 4.41-1.59v-1.67c-1.67 0.54-3.33 1.13-4.98 1.77C509.25 161.84 498.15 169.32 489.14 178.97z M486.59 150.75c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.9-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.27 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 128.63 496.77 138.07 486.59 150.75z M486.59 160.47c-5.38 6.71-9.88 14.41-14.23 21.86c-8.37 14.35-16.28 27.89-30.12 35.48c-22.55 12.34-51.12 2.07-70.34-11.67c-8.71-6.23-16.88-13.52-24.78-20.57c-10.77-9.63-21.91-19.58-34.61-26.98c-26.64-15.51-60.43-20.01-95.13-12.66c-28.44 6.02-57.2 19.59-87.93 41.51c-56.2 40.1-100.83 94.27-129.44 157.05v3.73c28.43-63.86 73.43-118.94 130.33-159.55c30.55-21.78 59.13-35.28 87.35-41.25c34.35-7.26 67.74-2.83 94.04 12.5c12.56 7.31 23.64 17.21 34.36 26.79c7.93 7.08 16.13 14.41 24.9 20.68c19.6 14.02 48.81 24.46 71.98 11.76c14.21-7.78 22.6-22.15 30.72-36.04c4.32-7.4 8.79-15.05 14.1-21.67c9.89-12.33 23.68-21.52 38.8-26.52v-1.63C511 138.35 496.77 147.79 486.59 160.47z'/%3E%3C/svg%3E");
    -webkit-mask-position: var(--fancy-underlay-position, 0% 0%);
            mask-position: var(--fancy-underlay-position, 0% 0%);
  }
  .fancy-underlay.fancy-underlay-image-h:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='869.97px' height='526.6px' viewBox='0 0 869.97 526.6' enable-background='new 0 0 869.97 526.6' xml:space='preserve'%3E%3Cpath d='M371.62 516.1c0.49 3.38 0.99 6.89 1.55 10.49h-3.27c-0.52-3.44-1-6.8-1.47-10.03c-1.17-8.11-2.27-15.78-3.73-22.33c-0.21-0.94-0.42-1.87-0.65-2.77c-1.2-4.85-2.51-9.18-3.79-13.37c-3.47-11.45-6.47-21.35-4.84-34.81c2.05-17.04 15.37-37.01 35.63-53.41c5.97-4.83 12.38-9.53 18.58-14.07c7.11-5.21 14.48-10.6 21.38-16.34c6.15-4.91 11.76-10.47 16.72-16.58c2.15-2.73 4.1-5.62 5.83-8.64c15.18-26.66 9.36-59.72-1.16-81.77c-8.37-17.54-20.42-32.31-33.18-47.96c-3.66-4.49-7.35-9.02-10.98-13.65c-5.33-6.77-10.62-13.88-15.74-21.14c-19.63-27.82-36.26-56.77-52.34-84.77l-7.36-12.8c-17.27-29.92-30.86-56.18-37.37-72.14h3.49c6.63 15.93 19.91 41.48 36.66 70.52l7.37 12.8c16.03 27.93 32.62 56.82 52.18 84.52c5.08 7.21 10.34 14.28 15.64 21.01c3.63 4.62 7.3 9.13 10.95 13.6c12.89 15.8 25.06 30.73 33.59 48.61c6.88 14.44 10.53 30.21 10.7 46.2c0 13.09-2.75 26.44-9.64 38.55c-1.81 3.16-3.85 6.18-6.1 9.04c-5.1 6.29-10.87 12.01-17.2 17.07c-6.98 5.79-14.38 11.21-21.53 16.45c-6.17 4.52-12.54 9.2-18.46 13.97c-19.62 15.89-32.5 35.07-34.46 51.29c-1.53 12.8 1.36 22.39 4.73 33.5c1.28 4.23 2.61 8.61 3.83 13.53c0.23 0.93 0.46 1.88 0.67 2.85C369.33 500.19 370.44 507.92 371.62 516.1z M393.71 493.1c-0.27-0.95-0.56-1.89-0.84-2.81c-1.68-5.34-3.51-10.03-5.29-14.57c-4.15-10.6-7.75-19.77-7.01-32.25c0.96-16.48 13.2-36.19 32.7-52.7c6.02-5.09 12.55-10.05 18.87-14.84c6.85-5.19 13.93-10.57 20.61-16.28c6.24-5.14 11.93-10.94 16.95-17.28c2.22-2.88 4.23-5.91 6.02-9.08c6.93-12.34 9.67-25.96 9.67-39.3c-0.14-15.7-3.56-31.2-10.04-45.5c-8.47-18.6-20.83-34.2-33.92-50.73c-3.12-3.92-6.25-7.87-9.35-11.9c-5.26-6.81-10.47-13.86-15.48-20.96c-17.27-24.45-32.66-49.77-47.54-74.26c-4.49-7.39-8.9-14.65-13.26-21.72c-16.58-26.9-31.46-52.46-40.12-68.91h-3.49c8.57 16.44 23.88 42.78 40.96 70.52c4.36 7.06 8.77 14.31 13.25 21.69c14.9 24.54 30.32 49.9 47.65 74.44c5.04 7.14 10.27 14.22 15.56 21.07c3.11 4.04 6.25 8 9.37 11.94c12.97 16.37 25.21 31.82 33.53 50.09c10.06 22.11 15.49 55.27 0.49 82c-1.71 3.03-3.63 5.94-5.76 8.7c-4.89 6.18-10.43 11.81-16.51 16.82c-6.61 5.66-13.66 11-20.47 16.18c-6.35 4.82-12.91 9.8-19 14.94c-20.15 17.05-32.78 37.58-33.8 54.89c-0.74 13.2 2.94 22.62 7.22 33.56c1.76 4.49 3.58 9.13 5.21 14.37c0.28 0.89 0.55 1.8 0.82 2.73c2.26 7.96 3.92 17.63 5.67 27.88c0.28 1.57 0.55 3.15 0.83 4.76h3.14c-0.31-1.79-0.61-3.55-0.89-5.29C397.69 510.98 396.02 501.23 393.71 493.1z M535.83 491.08c-0.58-0.9-1.17-1.79-1.78-2.64c-4.12-5.62-8.63-10.93-13.5-15.91c-8.37-8.95-16.29-17.4-19.37-29.79c-5.14-20.91 8.52-45.06 23.1-60.66c6.34-6.78 13.44-13.26 20.3-19.53c5.45-4.98 11.09-10.12 16.39-15.45c5.78-5.65 11.01-11.83 15.64-18.45c2.03-2.98 3.88-6.09 5.53-9.3c6.77-13.22 10.19-28.58 10.19-44.71c-0.07-13.74-2.38-27.38-6.85-40.37c-7.81-23-21.06-43.01-36.3-64.92c-4.82-6.91-9.68-13.81-14.57-20.7c-24.6-34.67-45.51-62.99-67.64-88.5c-22.58-26.07-42.41-46.29-58.98-60.14h-3.55l-0.07 0.09c16.88 13.79 37.34 34.53 60.8 61.61c22.07 25.44 42.94 53.7 67.5 88.32c4.87 6.87 9.74 13.77 14.55 20.68c15.14 21.75 28.3 41.61 36 64.32c9.99 29.43 8.82 59.77-3.2 83.24c-1.6 3.13-3.4 6.15-5.37 9.05c-4.55 6.5-9.69 12.57-15.37 18.11c-5.26 5.28-10.88 10.41-16.3 15.37c-6.9 6.3-14.04 12.82-20.45 19.66c-19.42 20.8-28.26 44.3-23.66 62.86c3.22 13 11.35 21.67 19.94 30.85c4.79 4.9 9.24 10.13 13.3 15.65c0.59 0.83 1.17 1.68 1.72 2.55c5.51 8.57 10.05 19.63 13.9 33.81c0.04 0.14 0.07 0.27 0.11 0.41h2.46c-0.09-0.35-0.18-0.69-0.28-1.04C546.1 511.14 541.47 499.86 535.83 491.08z M354.91 493.72c-0.18-0.97-0.38-1.92-0.58-2.86c-1-4.65-2.09-8.82-3.14-12.85c-3.1-11.88-5.55-21.27-3.56-34.28c2.46-16.09 15.67-35 35.34-50.58c5.86-4.63 12.16-9.16 18.26-13.55c7.31-5.26 14.87-10.7 22-16.53c6.37-5.01 12.18-10.7 17.32-16.96c2.27-2.85 4.32-5.86 6.14-9.02c6.89-12 9.64-25.22 9.64-38.2c-0.18-16.13-3.95-32.03-11.04-46.53c-8.57-17.55-20.66-32.16-33.46-47.64c-3.9-4.72-7.84-9.47-11.7-14.36c-5.35-6.76-10.64-13.83-15.72-21.03c-20.59-29.18-38.37-61.11-54.07-89.28l-4.86-8.71c-16.54-29.67-29.2-55.53-34.93-71.33h-3.49c5.59 15.87 18.53 42.41 35.53 72.93l4.86 8.7c15.73 28.25 33.56 60.27 54.25 89.59c5.12 7.24 10.44 14.37 15.83 21.17c3.89 4.9 7.83 9.68 11.75 14.41c12.67 15.32 24.65 29.79 33.05 46.99c10.75 22.01 16.79 55.01 1.49 81.65c-1.74 3.01-3.7 5.89-5.86 8.61c-5 6.08-10.64 11.6-16.83 16.46c-7.06 5.76-14.57 11.17-21.84 16.4c-6.12 4.41-12.45 8.96-18.36 13.64c-20.31 16.09-33.97 35.78-36.55 52.67c-2.08 13.69 0.57 23.85 3.63 35.61c1.04 4 2.12 8.13 3.1 12.72c0.2 0.91 0.39 1.84 0.57 2.78c1.15 5.91 2.01 12.7 2.93 19.89c0.5 3.95 1.03 8.08 1.64 12.36h3.32c-0.63-4.43-1.18-8.7-1.7-12.78C356.95 506.57 356.07 499.73 354.91 493.72z M341.99 493.92c-0.17-0.97-0.33-1.93-0.5-2.86c-0.8-4.32-1.66-8.27-2.48-12.01c-2.69-12.26-4.81-21.95-2.36-35.22c2.95-15.95 16.49-34.6 36.22-49.88c5.79-4.48 12.01-8.87 18.02-13.12c7.47-5.28 15.19-10.74 22.48-16.61c7.64-6.15 13.02-11.35 17.44-16.85c2.29-2.84 4.36-5.85 6.19-9c6.9-11.9 9.65-25 9.65-37.86c-0.2-16.28-4.09-32.3-11.38-46.86c-8.6-17.23-20.64-31.56-33.37-46.72c-4.14-4.95-8.32-9.93-12.43-15.07c-5.35-6.7-10.67-13.78-15.8-21.05c-21.61-30.65-39.76-64.3-55.78-94l-2.51-4.67c-16.3-30.25-28.33-56.4-33.2-72.13h-3.51c4.74 15.83 17.02 42.66 33.75 73.71l2.51 4.66c16.06 29.79 34.26 63.53 55.99 94.34c5.16 7.33 10.52 14.47 15.92 21.22c4.12 5.16 8.31 10.17 12.48 15.13c12.61 15.01 24.51 29.19 32.94 46.07c10.98 21.98 17.24 54.93 1.83 81.54c-1.74 3-3.71 5.87-5.89 8.57c-4.28 5.31-9.5 10.34-16.93 16.35c-7.21 5.8-14.88 11.22-22.31 16.47c-6.04 4.28-12.29 8.69-18.14 13.22c-20.37 15.77-34.37 35.18-37.47 51.92c-2.56 13.94-0.27 24.41 2.39 36.55c0.81 3.7 1.67 7.61 2.45 11.89c0.17 0.92 0.33 1.85 0.49 2.81c0.86 5.26 1.51 11.22 2.21 17.53c0.53 4.7 1.06 9.52 1.72 14.58h3.38c-0.68-5.18-1.23-10.12-1.76-14.94C343.53 505.28 342.86 499.27 341.99 493.92z M316.15 494.36l-0.33-2.9c-0.42-3.48-0.87-6.73-1.31-9.82c-1.86-13.24-3.31-23.69 0.2-37.62c3.94-15.67 18.14-33.79 37.98-48.49c5.64-4.16 11.66-8.27 17.49-12.24c7.81-5.32 15.89-10.82 23.52-16.79c7.75-6.06 13.2-11.19 17.68-16.64c2.32-2.82 4.42-5.81 6.28-8.96c6.88-11.7 9.64-24.55 9.64-37.2c0-17.35-5.19-34.32-12.05-47.47c-8.7-16.65-20.6-30.42-33.22-45.01c-4.57-5.29-9.3-10.76-13.85-16.36c-5.44-6.68-10.81-13.78-15.96-21.09c-23.5-33.34-42.1-70.3-57.05-100.01c-15.75-31.33-26.52-58.09-29.73-73.75h-3.55c4.21 21.65 20.67 56.42 30.17 75.32c15 29.8 33.67 66.9 57.31 100.44c5.2 7.38 10.62 14.54 16.1 21.28c4.58 5.64 9.33 11.14 13.92 16.45c12.47 14.43 24.25 28.06 32.76 44.35c14.38 27.53 15.36 59.43 2.5 81.29c-1.77 2.99-3.76 5.83-5.97 8.51c-4.31 5.24-9.59 10.22-17.13 16.11s-15.58 11.37-23.34 16.65c-5.85 3.99-11.9 8.11-17.6 12.32c-20.46 15.16-35.15 34.01-39.29 50.43c-3.67 14.6-2.16 25.35-0.27 38.96c0.43 3.06 0.88 6.29 1.3 9.75l0.33 2.85c0.44 4.12 0.77 8.59 1.11 13.36c0.41 5.66 0.86 11.93 1.58 18.52h3.5c-0.73-6.67-1.19-13.03-1.61-18.77C316.92 503.03 316.59 498.52 316.15 494.36z M332.47 397.1c5.48-3.86 11.3-7.69 16.93-11.38c8.17-5.36 16.61-10.9 24.59-16.95c7.84-5.94 13.37-11.01 17.92-16.42c2.36-2.79 4.49-5.78 6.37-8.92c6.8-11.38 9.49-24 9.49-36.41h0.01c0-17.92-5.61-35.42-12.58-48.22c-8.79-16.12-20.61-29.4-33.14-43.46c-5.02-5.65-10.22-11.48-15.19-17.49c-5.52-6.67-10.94-13.78-16.12-21.14c-22.99-32.65-40.86-69.43-55.8-101.33c-15.35-32.86-24.63-59.54-26.23-75.37h-3.63c2.06 21.82 17.5 57.46 26.59 76.87c15.01 32.05 32.97 69 56.12 101.88c5.23 7.44 10.71 14.62 16.29 21.36c5.01 6.07 10.23 11.93 15.28 17.59c12.38 13.9 24.08 27.04 32.67 42.79c11.35 20.83 18.99 54.56 3.16 81.05c-1.79 2.97-3.8 5.8-6.04 8.45c-4.37 5.2-9.72 10.1-17.34 15.88c-7.88 5.97-16.27 11.48-24.39 16.8c-5.66 3.72-11.5 7.55-17.03 11.46c-20.58 14.55-35.95 32.85-41.11 48.93c-4.99 15.54-4.26 26.79-3.21 42.35c0.14 2.13 0.28 4.32 0.42 6.62l0.16 2.88c0.15 3.06 0.25 6.29 0.35 9.71c0.21 6.66 0.43 14.04 1.11 21.94h3.62c-0.69-7.92-0.91-15.36-1.12-22.06c-0.11-3.43-0.21-6.7-0.36-9.77l-0.15-2.91c-0.14-2.31-0.29-4.51-0.43-6.64c-1-15.17-1.74-26.13 3.04-41C297.65 428.82 312.52 411.22 332.47 397.1z M329.09 494.13c-0.14-0.98-0.27-1.94-0.42-2.88c-0.6-3.94-1.25-7.57-1.86-11.02c-2.27-12.7-4.07-22.73-1.11-36.32c3.45-15.8 17.31-34.19 37.1-49.18c5.71-4.32 11.83-8.56 17.75-12.67c7.64-5.3 15.54-10.79 23-16.71c7.68-6.09 13.1-11.25 17.56-16.74c2.3-2.83 4.39-5.83 6.23-8.98c6.88-11.8 9.64-24.77 9.64-37.52c0-17.24-5.04-34.09-11.72-47.17c-8.65-16.93-20.61-30.97-33.28-45.84c-4.34-5.1-8.82-10.36-13.15-15.74c-5.42-6.72-10.76-13.81-15.88-21.08c-22.59-32.04-41.01-67.37-57.26-98.54l-0.42-0.79c-16.04-30.81-27.44-57.26-31.46-72.94h-3.53c3.89 15.82 15.52 42.93 32 74.53l0.41 0.8c16.31 31.26 34.78 66.7 57.5 98.92c5.16 7.33 10.55 14.49 16.01 21.26c4.36 5.41 8.87 10.7 13.22 15.81c12.54 14.7 24.37 28.6 32.84 45.17c11.2 21.95 17.66 54.85 2.16 81.41c-1.76 2.99-3.74 5.85-5.94 8.54c-4.3 5.29-9.55 10.3-17.03 16.23c-7.37 5.85-15.23 11.3-22.82 16.57c-5.95 4.13-12.1 8.4-17.87 12.76c-20.41 15.46-34.76 34.6-38.38 51.18c-3.1 14.23-1.26 24.56 1.08 37.65c0.62 3.41 1.25 7.02 1.85 10.92c0.14 0.92 0.28 1.86 0.4 2.82c0.64 4.7 1.12 9.91 1.62 15.44c0.48 5.08 0.99 10.7 1.69 16.56h3.44c-0.72-5.88-1.23-11.45-1.73-16.87C330.21 504.15 329.73 498.89 329.09 494.13z M303.23 494.56c-0.08-0.99-0.16-1.96-0.25-2.91c-0.27-2.94-0.55-5.7-0.82-8.36c-1.48-14.41-2.55-24.82 1.57-39.18c4.44-15.51 18.97-33.38 38.86-47.79c5.57-4.02 11.49-7.99 17.23-11.83c7.98-5.33 16.24-10.85 24.04-16.85s13.27-11.1 17.79-16.53c2.34-2.81 4.46-5.8 6.33-8.94c6.79-11.48 9.48-24.2 9.48-36.72c0-17.81-5.45-35.2-12.24-47.93c-8.74-16.37-20.6-29.9-33.17-44.21c-4.8-5.47-9.77-11.13-14.53-16.95c-5.49-6.7-10.89-13.8-16.04-21.12c-22.38-31.78-40.14-67.16-56.42-100.67c-15.44-31.86-25.58-58.9-27.98-74.56h-3.59c3.13 21.72 19.08 56.93 28.4 76.13c16.34 33.65 34.18 69.17 56.72 101.17c5.19 7.38 10.65 14.55 16.2 21.32c4.8 5.86 9.79 11.55 14.62 17.04c12.42 14.15 24.15 27.52 32.69 43.54c11.13 20.86 18.56 54.63 2.83 81.17c-1.77 2.98-3.78 5.82-6 8.48c-4.34 5.21-9.65 10.15-17.23 15.99c-7.7 5.92-15.91 11.41-23.84 16.71c-5.77 3.85-11.72 7.84-17.34 11.9c-20.52 14.86-35.55 33.44-40.2 49.68c-4.31 15.03-3.16 26.28-1.7 40.52c0.27 2.64 0.56 5.4 0.82 8.32c0.09 0.94 0.17 1.89 0.24 2.86c0.28 3.58 0.48 7.42 0.69 11.5c0.32 6.17 0.67 13.01 1.38 20.25h3.57c-0.73-7.3-1.09-14.21-1.41-20.44C303.71 502.05 303.51 498.17 303.23 494.56z M482.71 489.1c-3.19-5.54-6.72-10.87-10.58-15.96c-6.71-9.23-13.04-17.94-14.79-30.15c-2.45-17.07 7.73-39.2 26.58-57.73c6.28-6.16 13.22-12.1 19.93-17.84c5.91-5.05 12.02-10.27 17.77-15.73c5.95-5.48 11.35-11.52 16.12-18.04c2.1-2.94 4-6.02 5.69-9.22c6.62-12.49 9.95-27.26 9.95-42.77c-0.08-14.44-2.77-28.74-7.95-42.21c-8.4-22.05-21.95-40.77-36.3-60.59l-2.53-3.5c-5-6.9-9.97-13.84-14.9-20.8c-6.48-9.14-12.88-18.33-19.24-27.44c-15.74-22.57-30.61-43.89-45.91-63.79c-22.09-28.75-39.17-49.5-52.14-63.32h-3.5l-0.06 0.07c13.09 13.74 30.62 34.96 53.6 64.87c15.27 19.85 30.12 41.14 45.84 63.69c6.36 9.12 12.77 18.3 19.25 27.46c4.93 6.96 9.9 13.9 14.92 20.82l2.53 3.5c14.24 19.67 27.7 38.25 35.97 59.98c11 28.9 10.3 59.85-1.86 82.8c-1.64 3.09-3.48 6.07-5.51 8.92c-4.67 6.38-9.95 12.29-15.78 17.64c-5.71 5.41-11.8 10.62-17.68 15.65c-6.75 5.76-13.72 11.73-20.06 17.96c-19.72 19.4-29.91 41.85-27.35 59.99c1.84 12.85 8.37 21.83 15.28 31.33c3.79 5 7.27 10.24 10.41 15.68c0.48 0.85 0.93 1.72 1.38 2.61c4.16 8.2 7.62 18.59 11.2 33.61h2.71c-3.68-15.56-7.25-26.3-11.56-34.79C483.68 490.88 483.2 489.98 482.71 489.1z M469.86 489.24c-2.95-5.49-6.24-10.8-9.83-15.9c-6.31-9.32-12.26-18.12-13.67-30.31c-1.98-16.98 8.56-38.8 27.46-57.01c6.25-6.01 13.14-11.8 19.8-17.41c6.04-5.08 12.28-10.33 18.16-15.82c5.99-5.43 11.43-11.43 16.24-17.92c2.11-2.94 4.03-6.01 5.74-9.2c6.6-12.35 9.92-26.93 9.92-42.28c-0.08-14.61-2.88-29.08-8.26-42.66c-8.39-21.45-21.72-39.64-35.82-58.89l-3.66-4.99c-5.03-6.89-10.03-13.83-14.98-20.82c-8.44-11.93-16.82-24.08-24.91-35.84c-13.61-19.77-26.47-38.45-39.62-56.07c-22.3-29.92-38.39-50.39-50.41-64.11h-3.51l-0.06 0.07c12.12 13.66 28.59 34.52 51.81 65.68c13.11 17.58 25.96 36.24 39.56 55.99c8.09 11.76 16.46 23.92 24.92 35.86c4.95 6.98 9.95 13.94 15.01 20.85l3.66 5c14 19.11 27.21 37.16 35.48 58.28c11.28 28.86 10.72 59.77-1.52 82.68c-1.64 3.08-3.5 6.05-5.54 8.89c-4.7 6.35-10.02 12.22-15.89 17.52c-5.84 5.44-12.04 10.67-18.06 15.72c-6.7 5.64-13.62 11.46-19.93 17.53c-19.78 19.07-30.34 41.24-28.27 59.28c1.48 12.84 7.62 21.91 14.12 31.51c3.53 5.01 6.76 10.23 9.67 15.63c0.45 0.85 0.88 1.73 1.3 2.63c4.76 10.03 7.99 22.44 10.51 33.46h2.78c-2.58-11.31-5.89-24.17-10.85-34.63C470.78 491.03 470.31 490.13 469.86 489.24z M497.06 491.61c-0.5-0.92-1.01-1.82-1.52-2.69c-3.43-5.56-7.21-10.9-11.33-15.97c-7.12-9.15-13.84-17.79-15.92-30.03c-2.94-17.2 6.93-39.58 25.71-58.46c6.29-6.32 13.27-12.39 20.03-18.26c5.8-5.04 11.78-10.25 17.42-15.67c5.91-5.51 11.26-11.58 16-18.13c2.09-2.96 3.97-6.04 5.66-9.24c6.63-12.62 9.97-27.57 9.97-43.27c-0.07-14.25-2.65-28.38-7.64-41.73c-8.41-22.72-22.24-42.03-36.9-62.48l-1.31-1.82c-4.94-6.91-9.88-13.83-14.81-20.78c-4.27-6.02-8.51-12.04-12.73-18.05c-18.13-25.73-35.26-50.06-53.05-72.5C414.71 34.82 396.6 13.81 382.8 0.01h-3.5l-0.08 0.08c13.94 13.68 32.58 35.22 55.41 64.04c17.75 22.39 34.85 46.68 52.96 72.39c4.23 6.01 8.48 12.03 12.74 18.05c4.91 6.94 9.85 13.87 14.82 20.79l1.3 1.83c14.55 20.29 28.29 39.47 36.58 61.86c10.71 28.93 9.89 59.93-2.19 82.92c-1.64 3.1-3.47 6.09-5.48 8.96c-4.64 6.41-9.89 12.35-15.68 17.75c-5.59 5.38-11.55 10.56-17.32 15.58c-6.79 5.9-13.82 12-20.17 18.38c-19.65 19.75-29.52 42.45-26.42 60.71c2.18 12.88 9.1 21.77 16.43 31.18c4.05 4.99 7.77 10.24 11.14 15.71c0.5 0.84 0.99 1.7 1.47 2.59c4.47 8.3 8.26 19.03 11.89 33.76h2.65c-0.01-0.01-0.01-0.03-0.03-0.04C505.6 511.31 501.7 500.21 497.06 491.61z M509.99 491.43c-0.52-0.91-1.06-1.8-1.6-2.67c-3.66-5.58-7.69-10.92-12.06-15.97c-7.54-9.08-14.65-17.65-17.07-29.93c-3.4-17.31 6.12-39.98 24.84-59.19c6.3-6.46 13.32-12.67 20.12-18.67c5.67-5.03 11.54-10.21 17.07-15.61c5.87-5.56 11.19-11.67 15.89-18.24c2.06-2.96 3.93-6.06 5.6-9.26c6.66-12.76 10.01-27.9 10.01-43.78c-0.06-14.07-2.54-28.02-7.33-41.25c-8.42-23.41-22.55-43.35-37.52-64.44l-20.03-28.22c-19.9-28.1-40.47-57.16-61.15-82.47c-22.14-27.12-40.81-47.87-55.55-61.72h-3.52l-0.08 0.09c14.93 13.75 34.17 35.02 57.2 63.23c20.63 25.24 41.17 54.26 61.05 82.33l19.98 28.15c14.91 21.01 28.94 40.8 37.25 63.9c10.42 28.95 9.48 59.99-2.52 83.02c-1.63 3.11-3.45 6.11-5.45 8.99c-4.62 6.44-9.83 12.42-15.58 17.87c-5.48 5.35-11.33 10.52-16.98 15.52c-6.82 6.03-13.89 12.27-20.26 18.8c-19.58 20.1-29.1 43.07-25.5 61.43c2.53 12.89 9.85 21.71 17.59 31.04c4.3 4.97 8.27 10.22 11.87 15.71c0.53 0.85 1.04 1.71 1.55 2.59c4.86 8.46 8.86 19.24 12.59 33.91h2.6c-0.03-0.13-0.06-0.25-0.09-0.37C519.1 511.2 514.99 500.15 509.99 491.43z M444.2 489.6c-2.49-5.37-5.27-10.6-8.31-15.67c-5.75-9.95-10.72-18.54-11.45-30.74c-0.98-16.71 10.2-38.02 29.21-55.57c6.19-5.7 12.97-11.21 19.53-16.55c6.29-5.12 12.8-10.41 18.94-15.97c6.06-5.34 11.58-11.27 16.46-17.71c2.15-2.91 4.1-5.98 5.83-9.16c6.58-12.11 9.87-26.37 9.87-41.38c-0.1-14.95-3.12-29.73-8.89-43.52c-8.4-20.37-21.32-37.57-35-55.79c-1.9-2.55-3.81-5.11-5.73-7.68c-5.21-6.99-10.31-14.02-15.15-20.87c-11.85-16.75-23.26-33.88-34.3-50.46c-9.99-15.01-19.43-29.18-28.99-42.81c-17.79-25.41-34.77-49.55-46.98-65.71h-3.56c12.26 16.1 29.8 41.04 48.22 67.34c9.54 13.6 18.98 27.76 28.95 42.76c11.05 16.59 22.47 33.73 34.34 50.52c4.85 6.86 9.97 13.91 15.19 20.92c1.91 2.58 3.84 5.14 5.75 7.69c13.56 18.07 26.37 35.13 34.64 55.17c11.87 28.8 11.55 59.62-0.86 82.46c-1.66 3.07-3.54 6.02-5.61 8.83c-4.77 6.29-10.16 12.09-16.1 17.29c-6.07 5.52-12.55 10.79-18.81 15.88c-6.6 5.36-13.41 10.9-19.66 16.66c-19.92 18.38-31.19 39.97-30.12 57.82c0.77 12.88 6.14 22.16 11.83 32c2.99 4.99 5.72 10.13 8.17 15.41c0.39 0.87 0.77 1.76 1.14 2.66c3.93 9.59 6.69 21.56 9.15 33.17h2.9c-2.52-11.92-5.34-24.27-9.42-34.24C445 491.41 444.61 490.5 444.2 489.6z M431.37 489.76c-2.35-5.43-5.05-10.7-8.07-15.79c-5.67-9.97-10.58-18.62-9.83-30.6c1.12-18.16 12.65-39.22 30.09-54.98c6.15-5.55 12.87-10.92 19.38-16.13c6.42-5.14 13.07-10.45 19.33-16.05c6.12-5.28 11.69-11.18 16.6-17.6c2.16-2.9 4.12-5.95 5.87-9.13c6.56-11.98 9.85-26.09 9.85-40.94c-0.12-15.11-3.25-30.04-9.22-43.92c-8.41-19.9-21.17-36.66-34.68-54.42c-2.23-2.94-4.46-5.87-6.69-8.85c-5.08-6.75-10.21-13.79-15.23-20.89c-13.34-18.87-25.98-38.23-38.2-56.95c-8.44-12.93-16.41-25.14-24.46-36.99L372.5 46.43c-11.99-17.71-23.33-34.47-31.66-46.42h-3.54c8.41 12.01 20.26 29.51 32.79 48.03l13.61 20.1c8.04 11.82 16 24.03 24.44 36.95c12.24 18.74 24.88 38.13 38.26 57.04c5.05 7.13 10.19 14.18 15.29 20.96c2.23 2.98 4.46 5.93 6.7 8.86c13.4 17.6 26.05 34.24 34.32 53.79c12.16 28.76 11.98 59.55-0.51 82.35c-1.68 3.06-3.57 6-5.66 8.8c-4.8 6.27-10.23 12.02-16.2 17.17c-6.2 5.55-12.81 10.84-19.21 15.95c-6.54 5.22-13.3 10.63-19.51 16.23c-17.99 16.25-29.87 38.08-31.03 56.96c-0.85 12.84 4.54 22.27 10.19 32.21c2.97 4.98 5.61 10.14 7.92 15.46c0.37 0.87 0.72 1.76 1.06 2.68c3.43 9.1 5.82 19.94 8.47 33.04h2.96c-2.73-13.49-5.17-24.63-8.73-34.06C432.11 491.59 431.74 490.66 431.37 489.76z M457.04 489.43c-2.72-5.44-5.75-10.71-9.07-15.81c-6.17-9.83-11.49-18.31-12.56-30.51c-1.48-16.85 9.38-38.41 28.33-56.29c6.22-5.85 13.06-11.51 19.67-16.98c6.16-5.1 12.54-10.37 18.54-15.89c6.03-5.38 11.51-11.35 16.36-17.81c2.13-2.93 4.06-6 5.78-9.18c6.59-12.23 9.9-26.66 9.9-41.83c-0.09-14.78-3-29.41-8.58-43.1c-8.38-20.89-21.49-38.57-35.37-57.28l-4.73-6.4c-5.17-7.01-10.24-14.03-15.07-20.84c-10.21-14.43-20.21-29.17-29.87-43.43c-11.72-17.28-22.78-33.6-34.04-49.15c-15.38-21.3-34.66-47.69-48.7-64.92h-3.51l-0.04 0.04c14.09 17.09 34.13 44.52 50.01 66.5c11.22 15.51 22.28 31.82 33.98 49.08c9.67 14.27 19.68 29.01 29.91 43.47c4.83 6.83 9.91 13.86 15.09 20.89l4.73 6.4c13.77 18.56 26.78 36.1 35.03 56.66c11.58 28.84 11.14 59.7-1.19 82.58c-1.66 3.08-3.53 6.04-5.59 8.87c-4.74 6.32-10.1 12.14-15.99 17.4c-5.94 5.48-12.29 10.73-18.43 15.8c-6.64 5.5-13.52 11.19-19.8 17.1c-19.86 18.72-30.76 40.58-29.2 58.54c1.13 12.86 6.88 22.03 12.98 31.74c3.26 5.01 6.24 10.2 8.92 15.54c0.42 0.87 0.82 1.74 1.22 2.65c4.24 9.61 7.24 21.61 9.83 33.3h2.83c-2.63-12-5.69-24.41-10.11-34.41C457.89 491.23 457.47 490.32 457.04 489.43z M418.52 489.94c-2.13-5.37-4.59-10.6-7.36-15.67c-5.27-10.09-9.82-18.82-8.68-30.8c1.73-18.11 13.59-38.91 30.97-54.27c6.12-5.4 12.79-10.64 19.24-15.71c6.56-5.16 13.35-10.49 19.74-16.12c6.16-5.23 11.76-11.1 16.71-17.49c2.19-2.89 4.17-5.93 5.92-9.11c6.56-11.88 9.84-25.83 9.84-40.53c-0.12-15.27-3.37-30.35-9.53-44.32c-8.43-19.44-21.05-35.79-34.39-53.11c-2.53-3.29-5.08-6.59-7.61-9.94c-5.2-6.86-10.35-13.9-15.32-20.92c-14.74-20.87-28.44-42.33-41.7-63.09c-7.02-11-13.64-21.38-20.33-31.54c-16.64-25.3-32.65-50.24-43.57-67.31h-3.52c10.93 17.1 27.43 42.83 44.61 68.94c6.68 10.14 13.3 20.52 20.32 31.5c13.27 20.79 27 42.28 41.78 63.2c4.98 7.05 10.15 14.11 15.37 21c2.53 3.36 5.1 6.67 7.63 9.96c13.23 17.17 25.73 33.38 34.01 52.48c12.27 28.3 12.2 59.81-0.18 82.23c-1.69 3.05-3.59 5.98-5.69 8.77c-4.84 6.23-10.3 11.94-16.31 17.05c-6.33 5.58-13.08 10.88-19.61 16.01c-6.49 5.1-13.19 10.37-19.37 15.83c-17.92 15.83-30.16 37.38-31.95 56.21c-1.23 12.91 3.74 22.39 9 32.46c2.71 4.97 5.11 10.09 7.21 15.35c0.34 0.88 0.66 1.78 0.98 2.7c3.18 9.19 5.36 20.19 7.81 32.89h3.02c-2.52-13.05-4.73-24.34-8.03-33.87C419.2 491.77 418.86 490.85 418.52 489.94z M406.61 492.92c-0.3-0.95-0.61-1.88-0.93-2.8c-1.91-5.29-4.13-10.46-6.63-15.5c-4.87-10.24-9.08-19.07-7.53-31.06c2.33-18.07 14.54-38.6 31.84-53.57c6.08-5.24 12.68-10.34 19.07-15.28c6.7-5.17 13.63-10.53 20.16-16.2c6.2-5.2 11.84-11.02 16.83-17.39c2.2-2.89 4.2-5.93 5.97-9.1c6.45-11.59 9.67-25.5 9.67-40.15c-0.1-15.41-3.4-30.62-9.71-44.67c-8.45-19-20.92-34.97-34.13-51.87c-2.84-3.62-5.67-7.28-8.51-10.97c-5.2-6.8-10.38-13.84-15.4-20.94c-16.02-22.68-30.62-46.1-44.74-68.75c-5.65-9.07-11.19-17.95-16.67-26.54c-15.8-24.82-31.68-50.7-41.83-68.12h-3.51c10.12 17.45 26.5 44.16 42.79 69.78c5.47 8.58 11.01 17.47 16.65 26.52c14.14 22.68 28.76 46.13 44.85 68.89c5.04 7.14 10.24 14.21 15.46 21.04c2.83 3.71 5.69 7.36 8.53 10.99c13.08 16.75 25.44 32.57 33.74 51.24c9.85 22.13 15.05 55.33 0.15 82.11c-1.7 3.04-3.61 5.96-5.73 8.73c-4.86 6.2-10.36 11.88-16.4 16.94c-6.47 5.61-13.37 10.93-20.03 16.08c-6.42 4.96-13.06 10.08-19.2 15.38c-17.85 15.44-30.43 36.69-32.86 55.47c-1.64 12.89 2.94 22.53 7.81 32.75c2.45 4.93 4.63 10.01 6.51 15.19c0.3 0.89 0.6 1.8 0.89 2.72c2.75 8.73 4.64 19.02 6.82 30.95l0.33 1.8h3.08l-0.44-2.35C411.4 512.71 409.4 501.83 406.61 492.92z M380.8 493.3c-0.25-0.96-0.5-1.9-0.76-2.83c-1.45-5.16-3.02-9.71-4.55-14.11c-3.76-10.84-6.99-20.19-5.88-32.82c1.46-16.35 14.01-35.8 33.58-52c5.97-4.93 12.43-9.75 18.67-14.41c7-5.22 14.24-10.61 21.06-16.36c6.29-5.1 12.01-10.86 17.07-17.18c2.23-2.86 4.25-5.89 6.05-9.05c6.92-12.22 9.66-25.7 9.66-38.92c-0.15-15.85-3.69-31.48-10.37-45.85c-8.5-18.23-20.76-33.49-33.74-49.64c-3.38-4.21-6.79-8.45-10.16-12.78c-5.25-6.73-10.48-13.79-15.56-20.98c-18.44-26.11-34.48-53.24-49.99-79.48c-3.44-5.82-6.84-11.54-10.18-17.16C329.07 41.86 314.84 16 307.31 0.01h-3.49c7.4 15.95 22.02 42.59 39.17 71.33c3.35 5.61 6.74 11.33 10.17 17.15c15.54 26.29 31.62 53.48 50.13 79.7c5.11 7.23 10.37 14.33 15.65 21.1c3.37 4.34 6.79 8.6 10.18 12.82c12.85 16 25 31.1 33.34 48.99c10.3 22.08 15.92 55.18 0.82 81.89c-1.72 3.03-3.66 5.92-5.8 8.67c-4.93 6.14-10.49 11.74-16.61 16.7c-6.76 5.69-13.95 11.06-20.91 16.25c-6.27 4.68-12.77 9.52-18.8 14.51c-20.2 16.73-33.17 36.97-34.71 54.15c-1.2 13.31 2.17 22.96 6.04 34.13c1.51 4.36 3.07 8.86 4.49 13.93c0.25 0.9 0.5 1.82 0.74 2.75c1.83 7.25 3.2 15.88 4.64 25.02c0.39 2.45 0.78 4.94 1.2 7.49h3.2c-0.45-2.72-0.87-5.38-1.26-8C384.04 509.38 382.67 500.68 380.8 493.3z M0 23.2C3.67 14.68 8.66 7.08 15.36 1.07l-0.92-1.06H8.63C5.33 3.45 2.48 7.27 0 11.37V23.2z M859.18 114.62c3.85 5.4 7.44 10.73 10.77 16.01v-2.86c-2.98-4.64-6.15-9.32-9.52-14.04C827.06 66.95 783.93 28.19 734.2 0.01h-3.13C781.61 28.19 825.41 67.28 859.18 114.62z M322.38 397.93c5.39-3.72 11.1-7.4 16.63-10.96c8.35-5.38 16.98-10.94 25.15-17.03c7.9-5.9 13.46-10.94 18.04-16.32c2.38-2.79 4.53-5.77 6.42-8.91c6.8-11.3 9.5-23.8 9.5-36.12c0-18.02-5.78-35.64-12.93-48.5c-8.84-15.88-20.63-28.92-33.12-42.73c-5.25-5.81-10.67-11.8-15.84-18.01c-5.56-6.67-11.01-13.78-16.2-21.16c-22.4-31.81-39.76-67.83-55.18-102c-15.03-33.37-23.68-60.35-24.47-76.18h-3.69c1.02 21.9 15.93 57.98 24.82 77.7c15.5 34.34 32.95 70.54 55.53 102.61c5.24 7.46 10.76 14.65 16.38 21.4c5.21 6.27 10.67 12.3 15.94 18.13c12.35 13.65 24.01 26.54 32.64 42.05c11.57 20.79 19.42 54.46 3.49 80.93c-1.79 2.96-3.82 5.78-6.07 8.41c-4.39 5.17-9.77 10.03-17.44 15.76c-8.06 6.01-16.64 11.53-24.93 16.88c-5.56 3.58-11.3 7.27-16.74 11.03c-20.64 14.26-36.35 32.27-42.02 48.17c-5.76 16.12-5.37 28.03-4.83 44.53l0.22 7.47c0.05 2.53 0.07 5.19 0.1 7.96c0.05 7.14 0.12 15.04 0.75 23.56h3.72c-0.58-7.85-0.85-15.72-0.8-23.59c-0.02-2.79-0.05-5.46-0.1-8.01l-0.23-7.51c-0.54-16.69-0.9-27.71 4.62-43.17C287.16 429.12 302.35 411.78 322.38 397.93z M831.24 126.1c19.11 26.78 31.84 52.05 38.71 76.9v-5.47c-7.2-23.4-19.54-47.21-37.46-72.33C794.32 71.71 743.4 28.7 684.44 0.01h-3.53C740.86 28.58 792.62 71.95 831.24 126.1z M840.76 122.52c12.35 17.31 22.03 33.98 29.19 50.32v-3.76c-7.04-15.43-16.32-31.17-27.94-47.46C805.4 70.31 757.06 28.65 701.14 0.01h-3.39C754.59 28.57 803.72 70.59 840.76 122.52z M869.96 60.31v-2.3c-19.57-21.72-41.49-41.17-65.33-58h-2.67C826.86 17.38 849.69 37.61 869.96 60.31z M869.96 75.55v-2.38c-23.85-28.16-51.52-52.77-82.14-73.16h-2.78C816.82 20.9 845.44 46.33 869.96 75.55z M869.96 93.83v-2.51c-28.19-36.16-62.44-67.04-101.11-91.31h-2.9C805.89 24.72 841.15 56.48 869.96 93.83z M868.52 110.19c0.48 0.67 0.96 1.35 1.44 2.03v-2.66c-0.06-0.09-0.13-0.18-0.19-0.27c-31.66-44.37-72.09-81.52-118.6-109.28h-3.01C795.43 27.8 836.48 65.28 868.52 110.19z M849.23 119.47c8.02 11.25 14.92 22.23 20.73 33.02v-3.21c-5.56-10.05-12.04-20.27-19.49-30.71C815.14 69.06 768.89 28.52 715.45 0.01h-3.28C766.49 28.47 813.47 69.35 849.23 119.47z M302.18 399.49c5.18-3.41 10.53-6.72 15.92-10.06c8.75-5.42 17.81-11.02 26.37-17.22c8.01-5.81 13.65-10.77 18.28-16.11c2.42-2.76 4.6-5.73 6.52-8.86c6.8-11.12 9.5-23.42 9.51-35.55c0-18.21-6.1-36.04-13.63-49.02c-8.94-15.42-20.69-28.03-33.13-41.38c-5.67-6.08-11.53-12.38-17.09-18.94c-5.61-6.62-11.12-13.75-16.36-21.2c-23.3-33.12-40.34-70.83-53.93-103.34c-14.35-34.37-21.76-61.96-20.95-77.8c0 0-3.81 0-3.81 0c-1.04 22.1 12.8 59.04 21.25 79.27c13.68 32.7 30.82 70.64 54.33 104.06c5.31 7.55 10.89 14.77 16.57 21.47c5.61 6.63 11.51 12.97 17.21 19.08c12.29 13.18 23.89 25.64 32.62 40.68c12 20.72 20.3 54.28 4.15 80.69c-1.8 2.95-3.85 5.74-6.13 8.35c-4.43 5.1-9.88 9.89-17.64 15.52c-8.45 6.12-17.44 11.69-26.14 17.07c-5.43 3.35-10.81 6.68-16.02 10.12c-20.76 13.7-37.14 31.14-43.82 46.67c-7.56 17.6-7.96 30.92-8.49 49.35l-0.28 7.8c-0.3 7.96-0.64 16.79-0.16 26.44h3.82c-0.5-9.57-0.16-18.37 0.14-26.3l0.28-7.83c0.55-18.68 0.9-31.03 8.19-47.96C266.16 429.62 282.01 412.79 302.18 399.49z M292.07 400.3c5.08-3.27 10.3-6.44 15.58-9.64c8.96-5.44 18.21-11.06 26.98-17.3c8.06-5.76 13.74-10.71 18.4-16.01c2.43-2.76 4.63-5.72 6.56-8.85c6.8-11.04 9.51-23.24 9.51-35.28c0.01-18.3-6.27-36.25-13.97-49.28c-9-15.2-20.74-27.6-33.17-40.74c-5.88-6.2-11.96-12.63-17.7-19.35c-5.67-6.64-11.2-13.78-16.44-21.23c-23.66-33.66-40.22-71.46-53.3-104c-13.99-34.88-20.77-62.74-19.17-78.61l-3.87 0c-2.07 22.26 11.26 59.58 19.47 80.06c13.17 32.75 29.84 70.81 53.73 104.79c5.3 7.55 10.91 14.78 16.66 21.51c5.8 6.8 11.91 13.26 17.82 19.51c12.27 12.97 23.87 25.22 32.64 40.05c12.22 20.67 20.74 54.17 4.49 80.57c-1.82 2.94-3.88 5.73-6.17 8.32c-4.46 5.08-9.93 9.83-17.75 15.4c-8.65 6.16-17.84 11.74-26.74 17.14c-5.3 3.22-10.55 6.4-15.65 9.69c-20.84 13.43-37.56 30.6-44.73 45.93c-8.02 17.12-9.29 30.11-10.41 49.47l-0.39 6.4c-0.53 8.33-1.11 17.57-0.72 27.75h3.89c-0.39-10.06 0.18-19.23 0.7-27.51l0.39-6.42c1.09-18.84 2.17-31.24 10.05-48.06C255.64 429.91 271.82 413.34 292.07 400.3z M281.97 401.09c4.95-3.1 10.05-6.14 15.18-9.19c9.17-5.45 18.66-11.09 27.63-17.39c8.11-5.7 13.82-10.6 18.52-15.89c2.45-2.75 4.66-5.7 6.61-8.83c6.41-10.54 9.71-22.69 9.53-35.03c0-18.4-6.44-36.44-14.33-49.52c-9.05-15-20.77-27.2-33.19-40.12c-6.07-6.34-12.38-12.89-18.29-19.77c-5.72-6.63-11.28-13.78-16.52-21.24c-24.12-34.32-40.82-73.97-52.68-104.67c-13.63-35.39-19.79-63.53-17.4-79.43L203.06 0c-3.08 22.37 9.71 60.11 17.71 80.85c11.93 30.91 28.76 70.84 53.13 105.51c5.32 7.57 10.96 14.82 16.76 21.55c6 6.97 12.33 13.56 18.45 19.93c12.25 12.76 23.82 24.8 32.65 39.43c13.42 22.25 20.12 55.77 4.82 80.44c-1.83 2.94-3.9 5.71-6.2 8.29c-4.49 5.06-9.99 9.77-17.84 15.29c-8.86 6.21-18.27 11.82-27.38 17.23c-5.17 3.07-10.29 6.11-15.27 9.24c-20.91 13.15-37.96 30.04-45.62 45.17c-9 17.75-10.72 31.17-12.32 49.61l-0.44 5.05c-0.73 8.28-1.61 18.19-1.33 29.01h3.94c-0.28-10.53 0.55-20.07 1.31-28.66l0.44-5.06c1.56-17.98 3.23-31.05 11.9-48.16C245.12 430.19 261.64 413.88 281.97 401.09z M312.27 398.72c5.29-3.57 10.77-7.03 16.29-10.51c8.55-5.4 17.39-10.98 25.75-17.12c7.96-5.86 13.56-10.86 18.16-16.22c2.4-2.78 4.56-5.76 6.47-8.89c6.8-11.21 9.5-23.61 9.5-35.83c0-18.12-5.94-35.84-13.28-48.77c-8.88-15.64-20.65-28.46-33.12-42.04c-5.47-5.94-11.11-12.09-16.47-18.48c-5.6-6.67-11.08-13.8-16.28-21.19c-22.83-32.45-39.71-68.52-54.55-102.67c-14.69-33.88-22.73-61.18-22.71-76.99h-3.74c0.12 22.09 14.36 58.5 23.02 78.49c14.92 34.33 31.9 70.61 54.92 103.33c5.26 7.48 10.81 14.7 16.48 21.44c5.41 6.45 11.08 12.63 16.57 18.6c12.32 13.42 23.95 26.09 32.63 41.36c11.78 20.76 19.85 54.38 3.83 80.82c-1.8 2.95-3.85 5.76-6.11 8.38c-4.4 5.13-9.82 9.96-17.54 15.64c-8.25 6.07-17.04 11.61-25.53 16.97c-5.56 3.5-11.07 6.98-16.39 10.57c-20.69 13.98-36.74 31.72-42.92 47.43c-6.61 16.81-6.58 28.9-6.59 47.17l-0.01 4.97c-0.01 2.05-0.03 4.18-0.07 6.39c-0.27 8.34-0.14 16.69 0.37 25.02h3.76c-0.52-8.31-0.65-16.64-0.39-24.96c0.04-2.22 0.07-4.36 0.08-6.42l0.01-2.94v-2.05c-0.04-17.88-0.02-29.66 6.34-45.8C276.65 429.39 292.18 412.3 312.27 398.72z M0 8.46C2.12 5.81 4.45 3.34 7.02 1.1L6.08 0.01H0.15C0.1 0.06 0.05 0.12 0 0.17V8.46z M271.87 401.87c4.83-2.96 9.79-5.85 14.78-8.76c9.39-5.47 19.1-11.12 28.28-17.47c8.18-5.66 13.92-10.52 18.65-15.78c2.46-2.74 4.69-5.69 6.65-8.81c6.61-10.55 9.37-22.6 9.37-34.74c0-17.87-5.98-35.93-14.5-49.79c-9.1-14.8-20.83-26.81-33.24-39.54c-6.29-6.44-12.79-13.1-18.88-20.13c-5.89-6.8-11.44-13.9-16.6-21.27c-24.42-34.75-40.65-74.54-52.06-105.32c-13.26-35.89-18.8-64.35-15.62-80.25c0 0-4.07 0-4.07 0c-4.05 22.52 8.18 60.65 15.95 81.6c11.5 31.01 27.86 71.1 52.54 106.24c5.24 7.48 10.87 14.69 16.85 21.59c6.18 7.12 12.72 13.83 19.04 20.31c12.25 12.57 23.82 24.43 32.69 38.85c13.66 22.21 20.55 55.66 5.15 80.32c-1.83 2.93-3.92 5.68-6.23 8.25c-4.51 5.02-10.04 9.7-17.95 15.17c-9.06 6.26-18.7 11.88-28.02 17.31c-5.03 2.93-10.01 5.83-14.87 8.81c-21.3 13.09-38.25 29.28-46.52 44.42c-9.1 16.66-11.93 29.82-14.22 49.73l-0.43 3.79c-0.97 8.58-2.15 18.88-2 30.18h4c-0.15-10.94 0.97-20.82 1.98-29.72l0.42-3.79c2.28-19.81 4.92-32.09 13.76-48.27C234.59 430.46 251.46 414.41 271.87 401.87z M295.28 377.94c8.27-5.54 14.11-10.34 18.89-15.57c2.5-2.72 4.76-5.66 6.75-8.77c6.62-10.43 9.39-22.29 9.39-34.26c0.01-18.03-6.29-36.29-15.21-50.26c-9.22-14.42-20.95-26.08-33.36-38.43c-6.67-6.64-13.58-13.51-20.02-20.82c-5.97-6.79-11.57-13.9-16.76-21.3c-25.24-35.94-41.09-78.08-50.81-106.65C181.59 45 177.32 15.96 182.06 0.01h-4.29c-5.99 22.8 5.13 61.72 12.42 83.2c9.81 28.81 25.8 71.32 51.34 107.7c5.28 7.53 10.96 14.76 17.04 21.67c6.53 7.41 13.48 14.32 20.21 21.01c12.24 12.18 23.81 23.68 32.78 37.72c14.14 22.13 21.43 55.46 5.82 80.07c-1.86 2.91-3.97 5.65-6.31 8.19c-4.55 4.97-10.15 9.58-18.14 14.94c-5.11 3.42-10.39 6.63-15.69 9.71c2.74-1.66 5.46-3.36 8.14-5.13c8.33-5.5 14.2-10.26 19.02-15.46c2.52-2.71 4.79-5.64 6.79-8.75c6.62-10.37 9.4-22.15 9.4-34.03c0-18.11-6.45-36.47-15.58-50.47c-9.27-14.25-21-25.73-33.42-37.89c-6.87-6.74-13.98-13.69-20.58-21.14c-6.01-6.78-11.63-13.9-16.84-21.33c-25.49-36.31-40.85-78.63-50.19-107.31c-12.11-37.38-15.75-66.72-10.23-82.7h-4.41c-6.98 22.93 3.62 62.26 10.67 83.99c9.42 28.94 24.92 71.65 50.73 108.42c5.29 7.56 11.02 14.8 17.14 21.71c6.7 7.54 13.86 14.56 20.79 21.35c12.24 12 23.81 23.33 32.84 37.19c14.38 22.07 21.86 55.36 6.15 79.95c-1.87 2.9-3.99 5.63-6.34 8.15c-4.59 4.94-10.22 9.52-18.25 14.81c-3.46 2.28-6.99 4.46-10.57 6.58c1.02-0.64 2.03-1.28 3.03-1.93c8.39-5.45 14.29-10.18 19.14-15.36c2.54-2.7 4.83-5.62 6.84-8.73c6.62-10.31 9.41-22 9.41-33.8c0-18.18-6.61-36.62-15.93-50.68c-9.34-14.08-21.08-25.4-33.5-37.39c-7.07-6.82-14.37-13.86-21.14-21.43c-6.05-6.78-11.7-13.9-16.92-21.35c-19.58-27.9-35.32-62.21-49.56-107.97c-11.76-37.87-14.75-67.51-8.45-83.5h-4.54c-7.55 21.83 0.6 57.97 8.93 84.78c14.37 46.19 30.3 80.87 50.14 109.15c5.31 7.58 11.06 14.84 17.23 21.75c6.86 7.67 14.23 14.78 21.35 21.65c12.25 11.82 23.82 22.99 32.91 36.68c14.61 22.04 22.28 55.25 6.47 79.82c-1.87 2.89-4 5.61-6.37 8.11c-4.6 4.92-10.26 9.45-18.35 14.7c-2.12 1.38-4.27 2.71-6.44 4.02c7.86-5.1 13.5-9.62 18.17-14.55c2.56-2.69 4.87-5.61 6.9-8.72c6.64-10.25 9.44-21.86 9.44-33.59c0-18.26-6.77-36.77-16.29-50.88c-9.4-13.92-21.15-25.08-33.59-36.9c-7.25-6.9-14.75-14.03-21.68-21.71c-6.09-6.77-11.77-13.91-16.99-21.37c-19.74-28.14-35.29-62.66-48.94-108.62c-11.36-38.36-13.72-68.3-6.65-84.33h-4.68c-8.46 21.97-0.85 58.45 7.18 85.56c13.79 46.43 29.53 81.35 49.55 109.88c5.32 7.61 11.11 14.88 17.32 21.78c7.03 7.81 14.6 14.99 21.91 21.95c12.26 11.65 23.84 22.66 32.99 36.19c14.86 21.98 22.72 55.15 6.8 79.69c-1.88 2.89-4.02 5.6-6.4 8.09c-4.63 4.89-10.32 9.39-18.45 14.58c-1.13 0.72-2.27 1.43-3.41 2.13c6.39-4.28 11.2-8.23 15.28-12.49c2.57-2.68 4.9-5.59 6.93-8.69c6.66-10.19 9.46-21.73 9.46-33.38c0-18.32-6.92-36.93-16.66-51.07c-9.47-13.76-21.78-25.29-33.68-36.43c-7.44-6.97-15.13-14.17-22.21-21.97c-6.13-6.76-11.83-13.91-17.07-21.39c-19.62-27.98-35.43-63.74-48.32-109.29C142.7 46.33 140.97 16.1 148.8 0.04l-0.03-0.03h-4.74c-9.37 22.09-2.3 58.94 5.43 86.34c13.02 46.03 29.04 82.21 48.95 110.61c5.34 7.63 11.15 14.92 17.41 21.82c7.2 7.92 14.96 15.19 22.46 22.21c12.27 11.49 23.86 22.35 33.06 35.72c15.1 21.93 23.15 55.03 7.14 79.56c-1.89 2.88-4.04 5.58-6.43 8.06c-4.64 4.86-10.36 9.32-18.55 14.46c-0.31 0.19-0.62 0.39-0.93 0.58c5.24-3.62 9.37-7.06 12.93-10.75c2.59-2.67 4.93-5.57 6.98-8.67c6.68-10.15 9.49-21.61 9.49-33.19c0-18.39-7.08-37.08-17.03-51.26c-9.53-13.6-21.85-24.97-33.77-35.96c-7.63-7.04-15.52-14.32-22.75-22.23c-6.18-6.75-11.91-13.9-17.15-21.4c-19.77-28.21-35.37-64.17-47.69-109.95c-10.54-39.26-11.64-69.74-3.09-85.86l-0.2-0.1h-4.72c-10.26 22.23-3.73 59.42 3.7 87.11c12.45 46.28 28.27 82.7 48.34 111.35c5.36 7.66 11.2 14.96 17.51 21.86c7.36 8.04 15.32 15.38 23.02 22.48c12.29 11.33 23.89 22.03 33.14 35.24c14.84 21.18 23.51 55.07 7.47 79.45c-1.9 2.87-4.06 5.55-6.47 8.02c-4.46 4.62-9.91 8.86-17.55 13.67c4.35-3.1 7.91-6.1 11.03-9.3c2.61-2.65 4.97-5.55 7.04-8.65c6.58-9.93 9.32-21.27 9.32-32.75c0-18.74-7.32-37.84-17.21-51.7c-9.59-13.45-21.94-24.67-33.87-35.52c-7.81-7.1-15.89-14.44-23.28-22.45c-6.22-6.75-11.97-13.9-17.22-21.42c-19.92-28.42-35.31-64.6-47.07-110.6c-10.12-39.67-10.58-70.43-1.31-86.6l-0.33-0.18h-4.7c-11.15 22.36-5.17 59.9 1.96 87.9c11.89 46.54 27.51 83.2 47.74 112.08c5.37 7.69 11.26 15 17.61 21.9c7.52 8.15 15.68 15.56 23.55 22.73c12.3 11.18 23.91 21.74 33.24 34.8c15.07 21.12 23.93 54.96 7.79 79.31c-1.91 2.86-4.08 5.54-6.5 7.99c-4.13 4.23-9.11 8.14-15.9 12.45c3.63-2.66 6.68-5.28 9.42-8.04c2.63-2.65 5-5.54 7.08-8.64c6.58-9.88 9.34-21.14 9.34-32.54c0-18.81-7.49-37.99-17.57-51.88c-9.67-13.31-22.03-24.39-34-35.1c-7.99-7.15-16.26-14.55-23.79-22.65c-6.25-6.74-12.03-13.91-17.3-21.45c-20.03-28.61-35.22-65.01-46.43-111.26c-9.7-40.09-9.53-71.11 0.45-87.35l-0.42-0.25h-4.72c-12.04 22.48-6.61 60.4 0.23 88.68c11.35 46.82 26.77 83.71 47.15 112.82c5.39 7.71 11.3 15.04 17.7 21.94c7.68 8.25 16.02 15.72 24.09 22.94c12.32 11.04 23.96 21.46 33.34 34.38c15.3 21.08 24.38 54.85 8.12 79.18c-1.92 2.85-4.1 5.52-6.53 7.95c-3.88 3.93-8.5 7.57-14.65 11.52c3.09-2.31 5.76-4.62 8.17-7.04c2.65-2.63 5.04-5.52 7.13-8.61c6.61-9.83 9.37-21.03 9.37-32.37c0-18.87-7.65-38.12-17.94-52.05c-9.73-13.17-22.12-24.11-34.11-34.68c-8.17-7.21-16.63-14.66-24.3-22.86c-6.3-6.73-12.1-13.91-17.38-21.46c-20.18-28.82-35.16-65.43-45.82-111.91c-9.26-40.52-8.48-71.81 2.22-88.1l-0.49-0.33h-4.76c-12.91 22.61-8.03 60.87-1.5 89.47c10.79 47.08 26.02 84.22 46.55 113.54c5.4 7.74 11.35 15.09 17.8 21.98c7.82 8.36 16.36 15.89 24.62 23.17c12.35 10.89 24.01 21.17 33.44 33.95c15.53 21.02 24.81 54.71 8.46 79.05c-1.93 2.84-4.12 5.49-6.56 7.92c-3.59 3.59-7.8 6.93-13.25 10.48c2.52-1.94 4.76-3.9 6.81-5.94c2.67-2.62 5.07-5.5 7.18-8.59c6.62-9.78 9.39-20.91 9.39-32.18c0-18.94-7.82-38.26-18.31-52.22c-9.8-13.03-22.22-23.83-34.22-34.27c-8.35-7.26-16.99-14.77-24.81-23.05c-6.33-6.73-12.17-13.91-17.46-21.48c-20.3-29.01-35.08-65.83-45.2-112.58c-8.83-40.94-7.42-72.5 3.99-88.85l-0.59-0.4h-4.79c-13.79 22.73-9.47 61.35-3.23 90.24c10.25 47.37 25.28 84.75 45.94 114.28c5.42 7.76 11.41 15.12 17.9 22.02c7.97 8.46 16.7 16.04 25.14 23.37c12.37 10.75 24.05 20.91 33.55 33.54c15.77 20.98 25.24 54.63 8.79 78.93c-1.94 2.84-4.15 5.48-6.6 7.89c-3.33 3.3-7.19 6.38-12.07 9.59c2.06-1.63 3.93-3.27 5.67-4.98c2.68-2.62 5.11-5.49 7.23-8.58c6.63-9.73 9.41-20.8 9.41-32.01c0-19-7.98-38.39-18.68-52.39c-9.86-12.9-22.32-23.57-34.35-33.87c-8.53-7.31-17.35-14.86-25.32-23.24c-6.37-6.72-12.24-13.91-17.53-21.51c-20.42-29.18-35-66.22-44.58-113.23c-8.41-41.36-6.36-73.19 5.75-89.6l-0.63-0.45h-4.85c-14.67 22.85-10.89 61.84-4.96 91.02c9.71 47.67 24.55 85.29 45.35 115.02c5.44 7.79 11.45 15.16 17.99 22.06c8.14 8.56 17.05 16.19 25.67 23.58c12.39 10.61 24.1 20.63 33.66 33.14c16 20.92 25.68 54.51 9.11 78.8c-1.95 2.83-4.16 5.46-6.62 7.86c-3.11 3.05-6.7 5.91-11.14 8.86c1.7-1.37 3.27-2.76 4.74-4.19c2.7-2.61 5.14-5.47 7.28-8.56c6.66-9.69 9.44-20.7 9.45-31.84c0-19.06-8.16-38.52-19.06-52.54c-9.93-12.78-22.41-23.31-34.47-33.49c-8.71-7.35-17.71-14.95-25.81-23.41c-6.41-6.71-12.3-13.91-17.61-21.52c-20.25-28.95-35.04-67.27-43.96-113.88c-7.97-41.79-5.3-73.89 7.52-90.36l-0.69-0.55h-4.91C69.32 23 72.55 62.34 78.17 91.81c9.05 47.29 24.1 86.23 44.74 115.75c5.45 7.82 11.5 15.21 18.09 22.1c8.28 8.64 17.38 16.33 26.18 23.75c12.42 10.49 24.16 20.39 33.77 32.77c16.23 20.88 26.1 54.4 9.44 78.67c-1.95 2.82-4.18 5.44-6.65 7.82c-2.89 2.8-6.18 5.44-10.18 8.12c1.35-1.11 2.62-2.24 3.82-3.4c2.72-2.59 5.17-5.45 7.32-8.54c6.34-9.33 9.66-20.4 9.48-31.68c0-19.11-8.33-38.64-19.43-52.69c-10-12.65-22.51-23.05-34.6-33.11c-8.89-7.39-18.07-15.03-26.32-23.57c-6.45-6.7-12.37-13.9-17.69-21.53C95.78 177.14 81.2 138.6 72.81 91.73c-5.33-29.86-8.05-69.91 9.28-91.12l-0.71-0.6h-4.99c-16.4 23.11-13.71 62.81-8.41 92.58c8.52 47.58 23.37 86.77 44.15 116.49c5.47 7.84 11.55 15.24 18.18 22.13c8.43 8.74 17.72 16.46 26.71 23.93c12.46 10.35 24.22 20.14 33.9 32.38c16.99 21.48 25.79 55.37 9.77 78.53c-1.96 2.82-4.2 5.42-6.69 7.79c-2.66 2.56-5.66 4.97-9.24 7.41c1.01-0.86 1.98-1.72 2.92-2.61c2.74-2.58 5.21-5.44 7.37-8.52c6.51-9.33 9.3-20.2 9.3-31.35c0.01-18.91-8.03-38.62-19.59-53.02c-10.07-12.53-22.61-22.8-34.74-32.75c-9.05-7.42-18.42-15.1-26.8-23.71c-6.49-6.7-12.43-13.91-17.76-21.56c-20.47-29.29-34.84-68.04-42.72-115.19c-5.02-30.15-7.17-70.58 11.04-91.89L73 0.01h-5.08C50.66 23.25 52.8 63.31 57.8 93.37c8 47.89 22.65 87.33 43.55 117.22c5.48 7.87 11.6 15.29 18.28 22.17c8.57 8.83 18.05 16.59 27.21 24.1c12.48 10.23 24.27 19.89 34.02 32.02c17.22 21.43 26.23 55.24 10.1 78.4c-1.97 2.8-4.22 5.4-6.71 7.76c-2.44 2.31-5.16 4.51-8.34 6.7c0.7-0.6 1.37-1.21 2.03-1.83c2.76-2.57 5.24-5.43 7.42-8.51c6.52-9.29 9.32-20.11 9.32-31.2c0-18.97-8.19-38.75-19.97-53.16c-10.14-12.41-22.72-22.57-34.88-32.39c-9.23-7.45-18.78-15.16-27.29-23.86c-6.53-6.69-12.5-13.9-17.84-21.57c-20.58-29.45-34.74-68.43-42.1-115.85C47.89 62.9 46.29 22.1 65.42 0.72l-0.8-0.71h-5.17C41.34 23.37 42.92 63.79 47.62 94.14c7.47 48.19 21.92 87.87 42.94 117.96c5.5 7.9 11.65 15.33 18.38 22.22c8.71 8.91 18.38 16.71 27.72 24.25c12.51 10.11 24.34 19.66 34.14 31.66c17.48 21.38 26.66 55.14 10.42 78.27c-1.98 2.8-4.24 5.39-6.74 7.73c-2.23 2.1-4.7 4.09-7.55 6.08c0.43-0.38 0.86-0.77 1.28-1.16c2.78-2.56 5.28-5.4 7.47-8.48c6.54-9.26 9.35-20.02 9.35-31.05c0-19.02-8.35-38.86-20.35-53.3c-10.22-12.3-22.83-22.34-35.03-32.05c-9.4-7.48-19.12-15.21-27.77-23.98c-6.57-6.68-12.56-13.9-17.92-21.59c-20.68-29.61-34.63-68.81-41.47-116.5c-4.4-30.76-5.43-71.94 14.58-93.42l-0.81-0.77h-5.27c-18.97 23.5-17.93 64.26-13.55 94.9c6.96 48.49 21.2 88.43 42.35 118.7c5.52 7.93 11.69 15.37 18.46 22.26c8.86 8.99 18.7 16.82 28.22 24.4c12.55 9.99 24.41 19.42 34.28 31.32c17.7 21.32 27.09 55 10.75 78.14c-1.99 2.79-4.26 5.37-6.77 7.69c-2.03 1.89-4.26 3.69-6.79 5.48c0.18-0.16 0.36-0.33 0.54-0.49c2.79-2.55 5.31-5.39 7.52-8.46c6.56-9.23 9.39-19.93 9.39-30.91c0-19.07-8.52-38.97-20.72-53.44c-10.28-12.18-22.94-22.11-35.18-31.71c-9.57-7.5-19.47-15.27-28.24-24.11c-6.61-6.67-12.63-13.91-18-21.62C52.47 182.4 38.72 142.99 32.4 95.02C28.31 63.96 27.83 22.4 48.75 0.83l-0.86-0.82h-5.37C22.7 23.63 23.19 64.75 27.26 95.7c6.43 48.8 20.48 88.98 41.74 119.43c5.54 7.96 11.75 15.42 18.57 22.31c9 9.06 19.03 16.93 28.72 24.53c12.59 9.87 24.47 19.2 34.41 30.98c17.96 21.26 27.52 54.89 11.08 78.01c-1.99 2.78-4.27 5.34-6.8 7.65c-1.84 1.7-3.85 3.32-6.08 4.92c2.75-2.5 5.24-5.28 7.42-8.3c6.58-9.2 9.42-19.85 9.42-30.77c0.01-19.12-8.68-39.08-21.11-53.57c-10.36-12.07-23.05-21.89-35.32-31.38c-9.74-7.53-19.82-15.32-28.72-24.23c-6.65-6.66-12.69-13.9-18.07-21.63C41.64 183.74 28.1 144.1 22.28 95.85C18.51 64.49 18.6 22.55 40.4 0.9l-0.88-0.89h-5.47C13.39 23.75 13.33 65.24 17.08 96.48c5.93 49.12 19.77 89.55 41.14 120.17c5.55 7.98 11.8 15.46 18.66 22.34c9.15 9.14 19.35 17.03 29.23 24.66c12.62 9.76 24.55 18.98 34.55 30.64c18.19 21.22 27.95 54.78 11.4 77.89c-2.01 2.77-4.3 5.33-6.84 7.62c-1.64 1.49-3.39 2.92-5.33 4.32c2.48-2.32 4.74-4.88 6.74-7.63c6.61-9.16 9.45-19.76 9.45-30.63c0.01-19.18-8.84-39.19-21.49-53.7c-10.42-11.97-23.17-21.67-35.48-31.06c-9.91-7.55-20.17-15.36-29.2-24.33c-6.69-6.65-12.76-13.9-18.14-21.64c-20.98-30.06-34.3-69.91-39.62-118.45C8.71 65.02 9.35 22.7 32.03 0.95l-0.87-0.94h-5.57C4.08 23.88 3.47 65.72 6.91 97.25c5.41 49.43 19.05 90.11 40.54 120.91c5.57 8.01 11.84 15.5 18.75 22.38c9.28 9.21 19.67 17.13 29.72 24.79c12.66 9.64 24.62 18.76 34.7 30.32c17.98 20.64 28.21 54.91 11.73 77.74c-2.01 2.77-4.31 5.31-6.87 7.59c-1.45 1.3-2.99 2.56-4.67 3.8c2.25-2.15 4.31-4.5 6.16-7.02c6.35-8.89 9.67-19.58 9.49-30.5c0-19.23-9.02-39.29-21.88-53.82c-10.5-11.86-23.28-21.46-35.63-30.74c-10.08-7.57-20.5-15.4-29.67-24.43c-6.72-6.65-12.83-13.91-18.23-21.67c-21.07-30.2-34.19-70.27-39-119.1C-1.09 65.54 0.13 22.85 23.7 1l-0.91-0.99H17.1C8.72 9.01 3.31 20.58 0 33.21v89.69c6.48 38.65 18.76 71.13 36.65 96.78c5.59 8.03 11.9 15.54 18.86 22.42c9.42 9.28 19.99 17.22 30.21 24.9c12.7 9.54 24.7 18.55 34.84 30.01c18.22 20.58 28.65 54.77 12.06 77.62c-2.02 2.76-4.33 5.29-6.9 7.55c-1.25 1.12-2.58 2.2-4 3.27c2.02-1.98 3.88-4.11 5.56-6.39c6.52-8.93 9.32-19.36 9.32-30.08c0.01-19.49-9.22-39.98-22.05-54.24c-10.57-11.76-23.39-21.25-35.8-30.43c-10.25-7.58-20.84-15.43-30.13-24.52c-6.76-6.64-12.89-13.9-18.3-21.69C16.83 198.75 6.69 175.35 0 148.2v19.78c6.54 20.08 15.17 37.87 25.87 53.21c5.61 8.06 11.95 15.58 18.96 22.46c9.56 9.36 20.3 17.31 30.7 25c12.74 9.43 24.78 18.35 34.98 29.7c18.46 20.53 29.06 54.66 12.39 77.49c-2.03 2.75-4.35 5.27-6.93 7.52c-1.07 0.94-2.19 1.86-3.37 2.76c1.81-1.81 3.49-3.75 5.01-5.8c6.54-8.89 9.34-19.27 9.34-29.95c0.01-19.54-9.39-40.08-22.43-54.36C93.87 284.35 81 274.96 68.56 265.88c-10.41-7.6-21.18-15.46-30.6-24.61c-6.8-6.63-12.95-13.9-18.37-21.7C11.95 208.61 5.42 196.34 0 182.84v13.72c4.44 9.37 9.47 18.09 15.08 26.14c5.62 8.09 12 15.63 19.06 22.51c9.69 9.42 20.61 17.39 31.19 25.11c12.78 9.33 24.86 18.14 35.13 29.39c18.69 20.47 29.51 54.54 12.71 77.35c-2.04 2.74-4.37 5.25-6.96 7.49c-0.89 0.77-1.81 1.53-2.78 2.28c1.61-1.64 3.11-3.39 4.49-5.23c6.57-8.87 9.39-19.2 9.39-29.84c0-19.58-9.56-40.18-22.82-54.47c-10.71-11.56-23.63-20.85-36.11-29.83c-10.58-7.61-21.53-15.49-31.07-24.7c-6.84-6.63-13.01-13.9-18.45-21.72c-3.15-4.52-6.1-9.26-8.86-14.22v10.91c1.39 2.21 2.82 4.38 4.3 6.5c5.64 8.12 12.05 15.67 19.15 22.54c9.83 9.48 20.93 17.48 31.68 25.21c12.26 8.82 24.94 17.94 35.28 29.09c18.93 20.42 29.93 54.41 13.04 77.22c-2.05 2.73-4.39 5.23-6.98 7.46c-0.73 0.63-1.48 1.25-2.27 1.86c1.44-1.5 2.78-3.08 4.03-4.74c6.6-8.84 9.43-19.13 9.43-29.72c0-19.63-9.73-40.27-23.2-54.59c-10.79-11.46-23.75-20.65-36.28-29.54c-10.75-7.62-21.86-15.51-31.52-24.77C10.55 238.36 4.99 231.97 0 225.12v9.25c3.96 4.91 8.22 9.57 12.76 13.94c9.96 9.55 21.25 17.55 32.16 25.3c12.3 8.73 25.03 17.75 35.43 28.81c19.16 20.36 30.36 54.3 13.36 77.08c-2.05 2.73-4.41 5.22-7.01 7.42c-0.54 0.46-1.1 0.92-1.67 1.37c1.24-1.32 2.42-2.71 3.52-4.16c6.32-8.56 9.65-18.96 9.46-29.6c0.01-19.67-9.9-40.37-23.59-54.69c-10.86-11.37-23.87-20.46-36.45-29.26c-10.91-7.63-22.19-15.53-31.98-24.84c-2.06-1.97-4.05-4-5.99-6.09v8.15c0.69 0.69 1.38 1.37 2.09 2.05c10.09 9.61 21.55 17.63 32.64 25.38c12.35 8.64 25.12 17.57 35.59 28.52c19.41 20.3 30.8 54.17 13.69 76.95c-2.06 2.72-4.43 5.2-7.04 7.39c-0.36 0.3-0.72 0.6-1.09 0.9c1.06-1.15 2.06-2.35 3.01-3.59c6.34-8.51 9.68-18.89 9.5-29.5c0-19.72-10.07-40.45-23.98-54.79c-10.93-11.27-23.99-20.27-36.62-28.97C18.4 265.67 8.75 259 0 251.42v7.54c7.91 6.47 16.31 12.28 24.52 17.93c12.39 8.54 25.21 17.38 35.75 28.24c19.92 20.54 30.6 54.87 14.01 76.82c-2.07 2.71-4.45 5.18-7.07 7.36c-0.21 0.18-0.43 0.36-0.65 0.53c0.92-1.01 1.8-2.06 2.63-3.15c6.36-8.47 9.72-18.81 9.54-29.4c0.01-19.77-10.25-40.55-24.37-54.89c-11.01-11.19-24.12-20.09-36.79-28.7c-5.85-3.98-11.79-8.03-17.57-12.32v7.2c4.75 3.42 9.57 6.71 14.32 9.94c12.44 8.46 25.3 17.2 35.91 27.97c20.16 20.47 31.03 54.75 14.34 76.68c-2.08 2.7-4.47 5.16-7.1 7.32c-0.04 0.04-0.09 0.07-0.13 0.11c0.76-0.85 1.49-1.73 2.18-2.63c6.51-8.5 9.35-18.58 9.35-29.05c0-19.69-10.03-40.74-24.52-55.24c-11.09-11.09-24.24-19.91-36.96-28.44c-2.45-1.64-4.92-3.3-7.39-4.98v7.1c1.37 0.93 2.74 1.85 4.11 2.76c12.49 8.36 25.4 17.02 36.08 27.7c20.4 20.42 31.46 54.64 14.66 76.55c-1.99 2.57-4.26 4.91-6.77 6.98c0.6-0.69 1.19-1.4 1.75-2.13c6.52-8.45 9.36-18.48 9.36-28.89c0-19.72-10.19-40.84-24.87-55.39C23.96 294.76 11.87 286.53 0 278.67v7.16c10.56 7.06 21.12 14.5 30.14 23.38c20.61 20.39 31.84 54.55 14.98 76.41c-1.87 2.4-3.99 4.6-6.32 6.57c0.46-0.54 0.92-1.09 1.36-1.66c6.55-8.45 9.41-18.44 9.41-28.82c0-19.76-10.36-40.92-25.28-55.46C16.83 299.02 8.5 292.79 0 286.98v7.34c7.08 4.98 13.95 10.28 20.1 16.24c20.85 20.31 32.29 54.41 15.3 76.27c-1.76 2.24-3.73 4.29-5.89 6.15c0.32-0.39 0.64-0.78 0.96-1.17c6.6-8.43 9.47-18.4 9.47-28.75c0.01-19.8-10.53-41-25.68-55.53c-4.49-4.29-9.3-8.22-14.26-11.92v7.69c3.48 2.73 6.85 5.58 10.02 8.62c21.11 20.25 32.73 54.27 15.63 76.13c-1.65 2.09-3.5 4.03-5.51 5.78c0.21-0.25 0.41-0.5 0.61-0.76c6.38-8.21 9.74-18.32 9.55-28.68c0.01-19.85-10.71-41.08-26.09-55.6c-1.38-1.3-2.78-2.56-4.21-3.8v8.27c21.36 20.19 33.17 54.12 15.96 76C11.65 394.75 5.9 398.87 0 402.07v42.02c1.87-1.08 3.79-2.15 5.79-3.21c-0.75 0.47-1.49 0.93-2.21 1.4c-1.21 0.78-2.4 1.57-3.58 2.37v6.44c2.1-1.46 4.24-2.91 6.45-4.34c4.02-2.59 8.38-5.14 13.12-7.67c-1.73 1.07-3.4 2.15-5.02 3.24c-5.21 3.5-10.03 7.05-14.55 10.7v6.82c5.32-4.53 11.1-8.89 17.47-13.17c4.71-3.17 9.95-6.29 15.76-9.4c-2.7 1.68-5.26 3.36-7.69 5.07C15.77 449.17 7.37 456.17 0 463.68v7.55c8.02-8.8 17.33-16.84 28.51-24.66c5.56-3.89 11.84-7.72 18.89-11.49c-3.91 2.41-7.54 4.84-10.88 7.28C21.33 453.47 9.6 464.9 0 478.1v9.01c10.02-15.37 22.54-28.19 39.53-40.62c6.15-4.5 13.34-8.96 21.52-13.37c-4.95 3.06-9.47 6.15-13.56 9.27c-20.28 15.48-34.1 31.42-44.8 51.68c-0.57 1.09-1.14 2.19-1.7 3.3c-0.32 0.64-0.65 1.32-0.99 2v12.52c1.81-4.67 3.77-8.81 5.5-12.26c0.54-1.08 1.09-2.15 1.65-3.21c10.49-19.85 23.46-34.81 43.41-50.03c6.87-5.24 15.03-10.42 24.43-15.5c-6.12 3.78-11.62 7.62-16.5 11.51c-19.8 15.79-32.63 31.21-42.9 51.57c-0.54 1.07-1.08 2.17-1.61 3.28c-3.5 7.28-7.89 17.47-10.11 29.34h5.07c2.18-10.93 6.26-20.38 9.53-27.19c0.52-1.08 1.04-2.15 1.57-3.2c9.92-19.67 22.35-34.6 41.56-49.92c7.44-5.93 16.67-11.89 27.35-17.69c-7.38 4.55-13.92 9.18-19.48 13.83c-19.03 15.88-31.29 31.27-40.98 51.45c-0.52 1.07-1.03 2.16-1.53 3.26c-3.35 7.31-7.55 17.56-9.62 29.45h4.99c2.03-10.99 5.95-20.54 9.09-27.41c0.49-1.07 0.99-2.13 1.49-3.18c9.37-19.51 21.24-34.41 39.7-49.81c8.1-6.76 18.38-13.52 30.38-20.03c-8.67 5.33-16.25 10.8-22.54 16.3c-18.25 15.95-29.93 31.3-39.07 51.33l-1.44 3.25c-3.19 7.35-7.21 17.66-9.11 29.55h4.89c1.8-10.77 5.42-20.16 8.66-27.62l1.41-3.17c8.94-19.62 19.91-34.01 37.84-49.69c8.67-7.57 19.9-15.12 33.13-22.31c-9.88 6.07-18.41 12.36-25.32 18.68c-17.7 16.21-28.46 31.05-37.16 51.22l-1.36 3.23c-3.28 7.98-6.94 18.07-8.62 29.67h4.84c1.65-10.82 5.11-20.31 8.21-27.84l1.32-3.16c8.41-19.5 18.84-33.87 35.99-49.58c9.27-8.49 21.6-16.93 36.25-24.85c-11.32 6.92-21.05 14.19-28.51 21.36c-16.87 16.22-27.08 31.02-35.24 51.09l-1.27 3.21c-3.11 8.02-6.59 18.17-8.11 29.77h4.76c1.5-10.87 4.79-20.46 7.75-28.07l1.24-3.15c7.89-19.4 17.79-33.74 34.14-49.46c9.53-9.16 22.95-18.52 38.73-27.09c-12.46 7.62-23.09 15.73-31.02 23.72c-16.05 16.21-25.7 30.98-33.33 50.98l-1.19 3.18c-2.94 8.08-6.22 18.3-7.58 29.89h4.68c1.35-10.92 4.47-20.6 7.27-28.3l1.16-3.12c7.38-19.34 16.74-33.65 32.29-49.36c9.94-10.03 24.34-20.27 41.36-29.48c-13.71 8.36-25.31 17.36-33.67 26.25c-15.41 16.37-24.22 30.63-31.41 50.85l-1.11 3.18c-2.76 8.13-5.98 18.45-7.15 29.99h4.68c1.19-11.04 4.16-20.71 6.82-28.51l1.08-3.12c6.96-19.56 15.49-33.38 30.44-49.24c10.19-10.83 25.41-21.88 43.5-31.67c-14.79 9.01-27.19 18.85-35.87 28.56c-14.55 16.29-22.83 30.52-29.5 50.73l-1.02 3.16c-2.6 8.2-5.45 18.48-6.51 30.09h4.51c1.01-10.77 3.69-20.41 6.32-28.73l1-3.1c6.46-19.56 14.48-33.34 28.58-49.13c10.44-11.69 26.53-23.6 45.78-33.97c-15.95 9.68-29.2 20.4-38.16 30.98c-13.69 16.18-21.43 30.36-27.6 50.61l-0.93 3.14c-2.55 8.76-5.12 18.91-6 30.2h4.47c0.87-10.77 3.35-20.53 5.8-28.95l0.92-3.09c5.97-19.6 13.47-33.35 26.73-49.02c10.52-12.43 28.02-25.6 48.36-36.47c-17.18 10.36-31.68 22.27-40.77 33.62c-13 16.22-19.96 29.9-25.69 50.48l-0.84 3.12c-2.36 8.83-4.74 19.07-5.46 30.31h4.39c0.72-10.77 3.03-20.64 5.31-29.18l0.84-3.07c5.56-19.94 12.3-33.2 24.88-48.91c10.59-13.23 28.9-27.3 50.27-38.63c-18.22 10.93-33.5 23.74-42.71 35.92c-12.12 16.04-18.57 29.69-23.77 50.36l-0.76 3.09c-2.26 9.35-4.34 19.42-4.91 30.42h4.32c0.55-10.59 2.6-20.33 4.79-29.4l0.76-3.06c5.05-20.05 11.29-33.28 23.02-48.8c10.22-13.52 28.3-27.89 49.61-39.45c0.86-0.47 1.73-0.93 2.59-1.4c-19.3 11.5-35.38 25.24-44.65 38.26c-11.25 15.8-17.17 29.42-21.86 50.24l-0.68 3.08c-2.05 9.46-3.94 19.6-4.36 30.53h4.26c0.42-11.04 2.38-20.96 4.26-29.63l0.67-3.05c4.61-20.47 10.15-33.21 21.18-48.7c9.77-13.74 27.53-28.37 48.7-40.15c2.12-1.17 4.26-2.34 6.41-3.5c-20.87 12.17-38.15 27.13-47.59 41.22c-10.52 15.71-15.74 28.83-19.96 50.11l-0.59 3.06c-1.73 9.02-3.5 19.33-3.79 30.64h4.2c0.29-10.97 2.02-21.04 3.72-29.86l0.58-3.02c4.1-20.69 9.16-33.4 19.32-48.6c9.34-13.95 26.76-28.83 47.8-40.84c4-2.28 8.08-4.52 12.19-6.77c-1.4 0.8-2.78 1.6-4.16 2.4c-21.49 12.57-39.1 28.21-48.32 42.91c-10.98 17.5-14.81 31.08-18.05 49.99l-0.47 2.82c-1.61 9.75-3.13 19.95-3.27 30.97h4.14c0.16-11.86 1.92-22.54 3.17-30.08l0.51-3.02c3.14-18.39 6.85-31.56 17.47-48.49c8.88-14.15 25.97-29.29 46.9-41.54c4.57-2.67 9.24-5.27 13.94-7.9c3.62-2.03 7.29-4.08 10.96-6.18c0.08-0.04 0.15-0.09 0.23-0.13C283.05 385.69 289.27 381.96 295.28 377.94z M261.76 402.68c4.7-2.81 9.53-5.57 14.38-8.33c9.6-5.48 19.54-11.16 28.94-17.55c8.23-5.61 14.02-10.44 18.78-15.68c2.48-2.73 4.73-5.68 6.7-8.8c6.6-10.48 9.37-22.44 9.37-34.49c0-17.95-6.14-36.12-14.86-50.02c-9.17-14.61-20.88-26.44-33.29-38.97c-6.49-6.55-13.19-13.33-19.46-20.5c-5.93-6.8-11.49-13.9-16.67-21.29c-24.71-35.18-40.46-75.12-51.43-105.99c-12.9-36.38-17.81-65.13-13.84-81.05h-4.18c-5.04 22.65 6.66 61.18 14.17 82.42c11.05 31.11 26.95 71.38 51.94 106.96c5.26 7.51 10.92 14.73 16.95 21.63c6.35 7.27 13.1 14.09 19.63 20.68c12.24 12.36 23.8 24.04 32.73 38.26c13.9 22.18 20.98 55.56 5.48 80.2c-1.84 2.91-3.94 5.67-6.26 8.22c-4.53 5-10.1 9.64-18.05 15.05c-8.39 5.71-17.27 10.87-25.96 15.83c-0.08 0.04-0.15 0.09-0.23 0.13c-0.83 0.47-1.66 0.95-2.49 1.42c-4.87 2.79-9.72 5.55-14.45 8.38c-21.38 12.82-38.67 28.73-47.42 43.66c-10 17.08-13.39 30.7-16.13 49.86l-0.42 3.02c-1.22 8.7-2.68 19.15-2.67 30.85h4.07c-0.01-11.43 1.43-21.72 2.63-30.29l0.42-3.01c2.73-19.07 5.9-31.79 15.62-48.37C224.05 430.76 241.25 414.98 261.76 402.68z M522.92 491.27c-0.55-0.9-1.11-1.78-1.68-2.64c-3.89-5.61-8.17-10.94-12.8-15.96c-7.95-9-15.47-17.52-18.21-29.85c-4.63-20.78 9.34-44.6 23.96-59.93c6.32-6.62 13.38-12.96 20.21-19.09c5.57-5 11.33-10.17 16.74-15.54c5.83-5.61 11.11-11.75 15.77-18.35c2.05-2.97 3.91-6.07 5.57-9.28c6.76-13.08 10.16-28.23 10.16-44.17c-0.08-13.94-2.5-27.76-7.16-40.89c-8.45-24.16-23.58-45.7-36.93-64.71c-4.87-6.91-9.75-13.82-14.66-20.73c-23.57-33.24-44.88-62.9-67.01-89.18c-22.37-26.6-41.62-47.08-57.27-60.94h-3.53l-0.1 0.11c15.91 13.78 35.76 34.78 59 62.42c22.07 26.2 43.35 55.82 66.9 89.02c4.89 6.89 9.79 13.81 14.65 20.71c13.25 18.88 28.28 40.27 36.62 64.11c10.12 28.99 9.05 60.06-2.87 83.13c-1.62 3.11-3.42 6.13-5.41 9.02c-4.58 6.47-9.75 12.49-15.46 17.99c-5.37 5.32-11.11 10.47-16.65 15.46c-6.87 6.16-13.95 12.53-20.34 19.22c-19.51 20.44-28.71 43.68-24.59 62.14c2.89 12.94 10.6 21.68 18.77 30.93c4.56 4.94 8.76 10.18 12.59 15.7c0.56 0.83 1.1 1.68 1.63 2.56c5.17 8.49 9.51 19.6 13.28 33.98c0.01 0.03 0.01 0.05 0.02 0.08h2.53c-0.06-0.24-0.12-0.47-0.18-0.69C532.64 511.3 528.21 499.97 522.92 491.27z M827.35 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C762.21 71.71 711.29 28.7 652.33 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C851.14 509.35 841.17 493.45 827.35 482.34z M810.72 480.77c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C746.28 71.11 696.51 28.69 638.91 0.01h-3.47C694 28.59 744.58 71.36 782.52 124.52c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.89 11.15 23.8 27.24 28.22 44.62h1.6C835.11 508.75 824.96 492.21 810.72 480.77z M819.16 480.77c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.5-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C754.72 71.11 704.95 28.69 647.35 0.01h-3.47c58.56 28.58 109.13 71.35 147.07 124.51c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.9 11.15 23.8 27.24 28.22 44.62h1.61C843.55 508.75 833.39 492.21 819.16 480.77z M836.81 483.5c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.89-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C771.16 72.15 719.39 28.7 659.42 0.01h-3.59c60.98 28.55 113.61 72.36 152.77 127.25c21.78 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.16 10.56 22.74 25.56 27.47 41.89h1.62C860.15 509.79 850.31 494.35 836.81 483.5z M801.7 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C736.56 71.71 685.64 28.7 626.68 0.01h-3.53c59.94 28.57 111.7 71.94 150.34 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C825.48 509.35 815.51 493.45 801.7 482.34z M845.48 483.5c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.9-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C779.83 72.15 728.06 28.7 668.09 0.01h-3.59c60.97 28.55 113.6 72.36 152.77 127.24c21.78 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c11.5 9.24 20.28 21.87 25.46 35.81v-4.2C864.56 503.56 856.17 492.09 845.48 483.5z M776.48 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C711.34 71.71 660.42 28.7 601.46 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C800.27 509.35 790.29 493.45 776.48 482.34z M767.78 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C702.64 71.71 651.72 28.7 592.76 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C791.57 509.35 781.6 493.45 767.78 482.34z M793.69 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.22-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C728.55 71.71 677.63 28.7 618.67 0.01h-3.53c59.95 28.57 111.71 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C817.48 509.35 807.51 493.45 793.69 482.34z M785.84 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C720.7 71.71 669.78 28.7 610.82 0.01h-3.53c59.94 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C809.63 509.35 799.65 493.45 785.84 482.34z M848.21 418.21c5.09 9.3 13 16.1 21.75 21.97v-1.83c-8.33-5.65-15.57-12.06-20.41-20.87c-12.34-22.56-2.07-51.13 11.67-70.35c2.75-3.84 5.7-7.57 8.74-11.22v-2.39c-3.49 4.12-6.87 8.34-9.99 12.71C845.95 365.83 835.51 395.04 848.21 418.21z M838.05 422.8c7 12.81 19.37 20.89 31.91 28.3v-1.79c-12.48-7.39-23.86-15-30.57-27.24c-12.34-22.55-2.07-51.12 11.67-70.34c5.74-8.03 12.38-15.59 18.9-22.91v-2.31c-6.91 7.75-14.03 15.76-20.15 24.32C835.79 370.43 825.34 399.64 838.05 422.8z M867 214.27c-6.02-28.44-19.59-57.2-41.51-87.92C786.81 72.15 735.04 28.7 675.07 0.01h-3.59c60.97 28.55 113.6 72.36 152.76 127.24c21.79 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c7.36 5.9 13.59 13.19 18.49 21.32v-2.92c-4.78-7.43-10.68-14.1-17.5-19.59c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.9-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c8.84-15.17 14.1-32.68 15.63-51.35v-23.39C869.44 227.93 868.45 221.12 867 214.27z M869.96 347.59c-9.3 18.18-13.82 40.4-3.73 58.8c1.11 2.04 2.36 3.95 3.73 5.77v-2.62c-0.85-1.25-1.65-2.54-2.39-3.89c-9.29-16.97-5.77-37.34 2.39-54.58V347.59z M830.06 426.5c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c2.55-2.85 5.12-5.73 7.66-8.65v-2.35c-2.91 3.38-5.88 6.7-8.81 9.98c-7.08 7.94-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c1.73 1.01 3.47 2.03 5.21 3.06v-1.79c-1.48-0.87-2.95-1.73-4.42-2.61C851.19 448.25 837.65 440.34 830.06 426.5z M820.1 431.36c-12.34-22.56-2.07-51.13 11.67-70.35c6.23-8.72 13.52-16.88 20.57-24.78c5.98-6.69 12.08-13.52 17.62-20.78v-2.56c-5.82 7.83-12.36 15.15-18.77 22.32c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c5.08 2.96 10.27 5.99 15.17 9.32v-1.86c-4.68-3.12-9.58-5.98-14.38-8.78C841.23 453.11 827.69 445.19 820.1 431.36z M858.31 412.47c3.02 5.53 7.05 10.18 11.65 14.27v-2.03c-4.05-3.76-7.57-7.98-10.31-12.97c-11.94-21.8-2.73-49.23 10.31-68.4v-2.7C856 360.24 845.64 389.36 858.31 412.47z M847.12 464.53c-14.35-8.37-27.9-16.29-35.48-30.12c-12.34-22.56-2.07-51.13 11.67-70.35c6.23-8.71 13.52-16.88 20.57-24.78c9.25-10.34 18.78-21.02 26.08-33.09v-3.05c-0.15 0.26-0.29 0.51-0.44 0.76c-7.31 12.56-17.21 23.65-26.78 34.35c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c0.66 0.53 1.31 1.07 1.95 1.62v-2.01c-0.32-0.27-0.65-0.53-0.98-0.8C862.27 473.38 854.57 468.88 847.12 464.53z M859.47 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c3.4-5.85 6.28-12.04 8.61-18.51v-4.79c-2.52 7.94-5.85 15.49-9.95 22.53c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c4.2 3.37 8.04 7.19 11.47 11.37v-2.39C866.77 488.82 863.26 485.41 859.47 482.34z M600.46 490.24c-0.71-0.87-1.44-1.72-2.19-2.55c-5.22-5.79-11.18-10.7-16.94-15.43c-10.58-8.7-20.57-16.92-25.32-29.75c-8.01-21.58 4.42-47.4 18.71-64.36c6.34-7.53 13.56-14.67 20.54-21.57c4.96-4.9 10.08-9.97 14.89-15.16c5.57-5.87 10.61-12.23 15.05-18.99c1.95-3.03 3.72-6.18 5.31-9.41c6.92-14.09 10.42-30.53 10.42-47.74c-0.04-12.69-1.85-25.31-5.4-37.5c-7.19-24.89-20.78-47.3-33.12-65.94c-4.33-6.54-8.96-13.27-14.14-20.57C564.7 108.1 540.9 79.49 517.54 56.2c-23.37-23.31-46.66-42.67-67.57-56.19h-3.7l-0.03 0.04c21.45 13.49 45.6 33.41 69.84 57.59c23.28 23.2 47 51.73 70.5 84.8c5.18 7.29 9.79 14 14.11 20.52c12.26 18.51 25.75 40.75 32.86 65.38c8.54 29.53 6.76 60.07-4.88 83.78c-1.56 3.16-3.29 6.23-5.19 9.2c-4.38 6.66-9.35 12.92-14.84 18.7c-4.78 5.17-9.88 10.21-14.82 15.1c-7.02 6.94-14.28 14.11-20.68 21.7c-14.66 17.41-27.35 44-19.07 66.4c4.96 13.36 15.16 21.75 25.96 30.63c5.7 4.69 11.59 9.54 16.72 15.22c0.72 0.81 1.43 1.63 2.12 2.48c7.1 8.63 12.83 19.73 17.04 32.98c0.22 0.68 0.43 1.37 0.64 2.06h2.14c-0.27-0.9-0.54-1.8-0.83-2.7C613.58 510.39 607.73 499.07 600.46 490.24z M613.37 490.09c-0.75-0.86-1.5-1.71-2.27-2.53c-5.41-5.75-11.6-10.6-17.59-15.3c-11.03-8.67-21.45-16.85-26.55-29.79c-8.54-21.7 3.61-47.86 17.84-65.1c6.34-7.67 13.58-14.94 20.57-21.97c4.87-4.88 9.89-9.93 14.62-15.11c5.53-5.91 10.53-12.3 14.94-19.09c1.93-3.04 3.68-6.19 5.26-9.43c6.95-14.29 10.48-30.98 10.48-48.43c-0.03-12.46-1.76-24.85-5.13-36.85c-7.1-25.45-20.4-47.72-32.48-66.15c-4.32-6.57-9.05-13.49-14.07-20.55c-23.16-32.56-47.16-60.95-71.35-84.38c-23.58-22.85-47.46-41.94-69.29-55.4h-3.72l-0.05 0.05c22.42 13.46 47.2 33.09 71.66 56.79c24.1 23.34 48.02 51.63 71.11 84.1c5.01 7.04 9.72 13.93 14.02 20.48c12 18.31 25.21 40.41 32.24 65.59c8.24 29.54 6.34 60.1-5.23 83.88c-1.54 3.17-3.26 6.25-5.15 9.23c-4.34 6.69-9.27 12.99-14.73 18.81c-4.69 5.15-9.7 10.19-14.55 15.06c-7.03 7.06-14.3 14.36-20.69 22.11c-14.59 17.68-27.03 44.58-18.15 67.1c5.29 13.44 15.93 21.78 27.18 30.61c5.93 4.65 12.06 9.45 17.37 15.1c0.75 0.81 1.49 1.63 2.21 2.47c7.43 8.64 13.37 19.68 17.66 32.81c0.26 0.8 0.51 1.59 0.76 2.39h2.09c-0.3-1.01-0.62-2.01-0.97-3.02C627.03 510.19 620.96 498.93 613.37 490.09z M760.74 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C695.6 71.71 644.68 28.7 585.72 0.01h-3.53c59.94 28.57 111.7 71.94 150.34 126.09c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C784.52 509.35 774.55 493.45 760.74 482.34z M626.34 489.92c-0.78-0.86-1.56-1.7-2.37-2.51c-5.61-5.7-12.03-10.51-18.23-15.16c-11.5-8.62-22.35-16.76-27.8-29.82c-9.08-21.84 2.8-48.33 16.96-65.85c6.32-7.82 13.58-15.23 20.59-22.39c4.77-4.87 9.7-9.9 14.33-15.05c5.49-5.96 10.45-12.38 14.83-19.2c1.91-3.05 3.65-6.21 5.22-9.45c6.99-14.48 10.54-31.43 10.54-49.12c-0.02-12.23-1.65-24.4-4.85-36.2c-7.05-26.14-20.72-49.18-31.85-66.34c-4.3-6.6-9-13.51-13.98-20.52c-22.8-32.04-47.02-60.19-71.97-83.69C514 32.24 489.51 13.41 466.75 0.01h-3.77l-0.02 0.04c23.41 13.41 48.82 32.77 73.47 55.99c24.86 23.41 49 51.46 71.71 83.4c4.97 6.98 9.66 13.87 13.94 20.45c11.05 17.04 24.63 39.92 31.6 65.8c7.96 29.55 5.93 60.15-5.56 83.99c-1.53 3.18-3.24 6.27-5.11 9.26c-4.31 6.72-9.2 13.06-14.62 18.93c-4.6 5.12-9.53 10.14-14.28 15c-7.05 7.19-14.33 14.62-20.72 22.51c-14.52 17.95-26.66 45.2-17.24 67.8c5.65 13.54 16.71 21.84 28.42 30.62c6.15 4.6 12.51 9.37 18.02 14.97c0.78 0.8 1.54 1.6 2.3 2.45c7.74 8.65 13.9 19.63 18.27 32.64c0.31 0.91 0.6 1.82 0.89 2.73h2.02c-0.34-1.12-0.7-2.24-1.06-3.36C640.55 509.98 634.27 498.77 626.34 489.92z M652.18 489.62c-0.82-0.85-1.67-1.68-2.53-2.48c-5.98-5.6-12.84-10.31-19.48-14.87c-12.43-8.53-24.17-16.6-30.31-29.9c-10.2-22.07 1.16-49.26 15.19-67.35c6.31-8.12 13.59-15.79 20.63-23.2c4.59-4.84 9.34-9.84 13.8-14.94c5.41-6.05 10.29-12.54 14.59-19.42c1.88-3.07 3.59-6.24 5.13-9.49c7.15-15.09 10.77-32.29 10.77-50.33c-0.03-11.83-1.51-23.6-4.41-35.07c-5.22-20.93-14.93-42.15-30.57-66.75c-4.2-6.62-8.85-13.5-13.81-20.47c-21.23-30.09-45.79-57.7-73.2-82.3c-24.51-21.79-49.54-39.63-74.46-53.04h-3.82c25.78 13.52 51.71 31.81 77.09 54.38c27.3 24.51 51.76 52.02 72.92 82c4.95 6.94 9.58 13.8 13.77 20.39c15.53 24.45 25.17 45.49 30.35 66.23c7.49 30 5.27 59.9-6.26 84.2c-1.51 3.19-3.19 6.3-5.04 9.32c-4.24 6.79-9.06 13.21-14.41 19.17c-4.42 5.07-9.16 10.05-13.74 14.88c-7.06 7.44-14.38 15.14-20.74 23.34c-14.37 18.5-25.94 46.38-15.42 69.2c6.34 13.75 18.29 21.95 30.93 30.63c6.58 4.52 13.38 9.19 19.27 14.7c0.84 0.78 1.66 1.59 2.46 2.41c8.28 8.51 15.04 19.69 19.55 32.33c0.41 1.13 0.8 2.26 1.17 3.4h1.88c-0.42-1.35-0.87-2.68-1.35-4.01C667.54 509.71 660.65 498.3 652.18 489.62z M574.61 490.57c-0.67-0.88-1.35-1.74-2.03-2.58c-4.81-5.6-10.02-10.83-15.6-15.66c-9.68-8.79-18.83-17.1-22.91-29.74c-6.88-21.3 6.06-46.45 20.47-62.87c6.35-7.21 13.52-14.08 20.46-20.73c5.16-4.93 10.48-10.04 15.49-15.3c5.66-5.78 10.78-12.06 15.29-18.77c1.98-3.02 3.78-6.14 5.39-9.37c6.85-13.72 10.32-29.7 10.32-46.46c-0.04-13.13-2.06-26.18-5.97-38.71C608.6 208 596.77 188 581.13 164.84c-4.45-6.58-9.13-13.32-14.32-20.62c-24.95-35.12-47.68-63.4-69.5-86.44c-22.92-24.23-45.02-44.14-64.12-57.77h-3.64l-0.06 0.07c19.52 13.56 42.43 34.03 66.23 59.2c21.74 22.97 44.42 51.16 69.31 86.21c5.17 7.28 9.84 14.02 14.28 20.58c15.53 22.99 27.29 42.84 34.12 64.96c9.1 29.5 7.57 59.95-4.22 83.55c-1.57 3.15-3.33 6.21-5.26 9.15c-4.45 6.6-9.48 12.78-15.05 18.46c-4.97 5.21-10.28 10.3-15.41 15.22c-6.97 6.68-14.18 13.58-20.59 20.87c-14.8 16.87-28.06 42.8-20.9 64.99c4.26 13.19 13.61 21.68 23.52 30.68c5.5 4.75 10.64 9.91 15.38 15.42c0.67 0.82 1.32 1.66 1.97 2.51c6.43 8.6 11.74 19.81 15.77 33.3c0.14 0.47 0.27 0.94 0.41 1.41h2.27c-0.19-0.68-0.39-1.35-0.6-2.03C586.62 510.82 581.2 499.38 574.61 490.57z M548.74 490.91c-0.61-0.89-1.22-1.77-1.86-2.62c-4.35-5.61-9.1-10.9-14.21-15.83c-8.81-8.89-17.13-17.3-20.54-29.76c-5.76-21.07 7.71-45.53 22.22-61.4c6.34-6.92 13.47-13.54 20.37-19.93c5.34-4.96 10.87-10.09 16.07-15.4c5.74-5.7 10.94-11.91 15.53-18.56c2.02-2.99 3.85-6.1 5.48-9.32c6.81-13.39 10.25-28.94 10.25-45.28c-0.06-13.54-2.28-26.99-6.56-39.84c-7.79-23.65-21.31-44.3-35.66-65.13c-4.77-6.91-9.6-13.8-14.49-20.67c-18.32-25.82-42.65-59.15-68.25-87.81c-22.81-25.56-43.22-45.52-60.7-59.35h-3.57l-0.06 0.1c17.86 13.8 38.93 34.25 62.62 60.8c25.53 28.59 49.8 61.84 68.1 87.62c4.85 6.84 9.7 13.74 14.46 20.64c14.25 20.69 27.68 41.18 35.37 64.54c9.68 29.44 8.4 59.83-3.55 83.34c-1.59 3.13-3.37 6.16-5.33 9.08c-4.52 6.53-9.63 12.64-15.27 18.23c-5.15 5.26-10.67 10.37-15.99 15.31c-6.93 6.42-14.09 13.07-20.5 20.07c-14.94 16.32-28.78 41.61-22.75 63.57c3.56 13.05 12.1 21.67 21.12 30.78c5.03 4.86 9.71 10.07 14 15.59c0.61 0.82 1.22 1.67 1.8 2.53c5.84 8.63 10.59 19.63 14.52 33.64c0.07 0.24 0.14 0.49 0.21 0.74h2.4c-0.13-0.46-0.25-0.91-0.39-1.36C559.58 510.97 554.73 499.74 548.74 490.91z M665.11 489.47c-0.85-0.84-1.72-1.66-2.61-2.46c-6.18-5.55-13.25-10.21-20.09-14.72c-12.91-8.49-25.09-16.52-31.59-29.95c-10.73-22.18 0.36-49.73 14.32-68.09c6.28-8.27 13.57-16.06 20.61-23.59c4.52-4.83 9.19-9.82 13.57-14.9c5.37-6.09 10.21-12.62 14.47-19.53c1.86-3.09 3.56-6.26 5.09-9.52c11.61-24.72 13.99-55.07 6.7-85.43c-5.12-21.34-14.64-42.61-29.94-66.96c-4.2-6.67-8.81-13.54-13.73-20.44c-21.26-30.05-46.04-57.44-73.81-81.61c-24.68-21.34-50.3-38.91-76.19-52.26h-3.82c26.8 13.47 53.33 31.49 78.87 53.57c27.67 24.07 52.35 51.37 73.54 81.3c4.9 6.88 9.5 13.72 13.68 20.36c15.2 24.18 24.64 45.29 29.72 66.44c7.21 29.99 4.87 59.92-6.59 84.29c-1.5 3.2-3.17 6.32-5 9.35c-4.22 6.82-9 13.27-14.3 19.29c-4.36 5.06-9.02 10.04-13.52 14.86c-7.08 7.56-14.39 15.38-20.73 23.72c-14.27 18.78-25.58 47-14.5 69.9c6.71 13.86 19.66 22.39 32.19 30.64c6.79 4.47 13.82 9.1 19.9 14.56c0.86 0.78 1.71 1.58 2.55 2.4c8.99 9.12 15.87 20.1 20.17 32.16c0.46 1.23 0.89 2.48 1.3 3.73h1.82c-0.47-1.45-0.96-2.89-1.49-4.32C681.32 509.96 674.29 498.76 665.11 489.47z M561.7 490.73c-0.64-0.88-1.28-1.75-1.94-2.59c-4.58-5.61-9.57-10.87-14.92-15.75c-9.24-8.84-17.98-17.2-21.72-29.74c-6.32-21.2 6.88-46 21.35-62.13c6.34-7.08 13.5-13.82 20.41-20.34c5.25-4.95 10.67-10.07 15.78-15.34c5.7-5.74 10.85-11.99 15.4-18.67c1.99-3 3.81-6.12 5.43-9.34c6.84-13.56 10.28-29.32 10.28-45.87c-0.06-13.34-2.17-26.59-6.26-39.29c-7.74-24.24-21.55-45.57-35.03-65.32c-4.49-6.57-9.2-13.33-14.4-20.65c-26.01-36.63-47.9-64.32-68.88-87.13c-23.05-25.08-44.03-44.76-62.41-58.56h-3.6l-0.08 0.11c18.82 13.77 40.49 33.95 64.42 59.99c20.91 22.74 42.74 50.36 68.7 86.91c5.19 7.31 9.89 14.05 14.38 20.62c13.39 19.61 27.1 40.78 34.74 64.74c9.4 29.47 7.99 59.9-3.87 83.45c-1.59 3.13-3.36 6.18-5.3 9.11c-4.48 6.57-9.56 12.71-15.16 18.35c-5.06 5.24-10.47 10.34-15.7 15.27c-6.95 6.55-14.13 13.32-20.55 20.47c-14.87 16.59-28.42 42.2-21.82 64.27c3.92 13.12 12.86 21.67 22.32 30.72c5.27 4.8 10.18 9.99 14.7 15.51c0.64 0.82 1.27 1.66 1.88 2.52c6.1 8.55 11.2 19.81 15.16 33.47c0.11 0.36 0.21 0.71 0.31 1.07h2.33c-0.16-0.57-0.32-1.13-0.47-1.71C573.15 510.98 567.94 499.5 561.7 490.73z M587.54 490.4c-0.7-0.88-1.4-1.73-2.11-2.56c-5.03-5.83-10.75-10.77-16.28-15.54c-10.13-8.74-19.7-17.01-24.12-29.74c-7.45-21.45 5.25-46.92 19.6-63.61c6.35-7.38 13.56-14.4 20.52-21.18c5.04-4.91 10.26-9.98 15.16-15.2c5.61-5.83 10.69-12.15 15.17-18.88c1.96-3.02 3.75-6.16 5.34-9.39c6.9-13.91 10.38-30.12 10.38-47.1c-0.04-12.92-1.96-25.76-5.69-38.12c-7.25-24.26-20.51-45.93-33.75-65.73c-4.38-6.55-9.17-13.48-14.23-20.6c-24.39-34.31-47.33-62.37-70.12-85.76c-23.14-23.77-45.84-43.4-65.84-56.98h-3.67l-0.04 0.08c20.48 13.53 44.01 33.72 68.03 58.39c22.73 23.31 45.59 51.28 69.91 85.5c5.05 7.1 9.83 14.01 14.2 20.55c13.15 19.67 26.31 41.17 33.48 65.16c8.83 29.51 7.16 60.01-4.55 83.67c-1.56 3.16-3.3 6.22-5.22 9.17c-4.41 6.63-9.41 12.85-14.94 18.58c-4.87 5.19-10.07 10.25-15.09 15.14c-7 6.82-14.24 13.87-20.66 21.32c-14.73 17.13-27.71 43.38-19.99 65.69c4.6 13.27 14.38 21.71 24.74 30.65c5.47 4.72 11.13 9.6 16.05 15.32c0.7 0.81 1.39 1.64 2.05 2.49c6.77 8.62 12.28 19.77 16.4 33.13c0.18 0.58 0.36 1.16 0.53 1.74h2.21c-0.23-0.79-0.47-1.58-0.72-2.37C600.09 510.61 594.46 499.22 587.54 490.4z M639.25 489.75c-0.8-0.85-1.61-1.68-2.45-2.49c-5.8-5.65-12.44-10.42-18.86-15.02c-11.95-8.57-23.25-16.67-29.04-29.86c-9.65-21.94 1.98-48.78 16.08-66.6c6.31-7.96 13.57-15.49 20.59-22.77c4.69-4.87 9.54-9.89 14.09-15.02c5.45-6 10.37-12.46 14.71-19.31c1.89-3.06 3.62-6.22 5.17-9.47c7.11-14.86 10.71-31.79 10.71-49.57c-0.04-12.07-1.61-24.09-4.68-35.77c-5.4-20.82-15.03-41.35-31.22-66.55c-4.21-6.58-8.89-13.47-13.9-20.49c-22.48-31.58-46.9-59.5-72.58-82.99c-24.31-22.26-48.77-40.35-72.73-53.83h-3.8l-0.01 0.03c24.76 13.56 50.09 32.13 75.28 55.19c25.59 23.41 49.92 51.23 72.32 82.7c4.99 7 9.65 13.87 13.85 20.41c16.08 25.04 25.63 45.39 30.98 66.02c7.78 29.99 5.69 59.84-5.91 84.09c-1.52 3.19-3.22 6.29-5.08 9.29c-4.28 6.76-9.13 13.13-14.51 19.05c-4.52 5.1-9.36 10.11-14.03 14.96c-7.06 7.31-14.35 14.87-20.72 22.9c-14.43 18.23-26.3 45.79-16.33 68.51c6 13.64 17.5 21.88 29.67 30.61c6.36 4.56 12.95 9.28 18.65 14.84c0.81 0.79 1.6 1.6 2.38 2.43c7.97 8.53 14.52 19.76 18.91 32.48c0.36 1.02 0.7 2.04 1.03 3.07h1.95c-0.38-1.23-0.79-2.46-1.21-3.69C654.08 509.93 647.4 498.48 639.25 489.75z M742.79 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.85 28.43 118.94 73.43 159.55 130.33c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C764.9 511 755.46 496.77 742.79 486.59z M727.15 485.1c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C660.77 72.73 607.77 28.67 546.36 0.01h-3.66c62.45 28.5 116.34 72.93 156.24 128.84c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.72 10.22 22.11 24.59 26.99 40.29h1.63C749.86 510.42 740.22 495.61 727.15 485.1z M734.56 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.85 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C756.67 511 747.24 496.77 734.56 486.59z M678.04 489.29c-0.88-0.83-1.78-1.64-2.69-2.43c-6.36-5.5-13.65-10.11-20.7-14.57c-13.37-8.46-26.01-16.44-32.86-30.01c-11.28-22.3-0.46-50.19 13.42-68.84c6.27-8.42 13.56-16.33 20.61-23.99c4.44-4.81 9.03-9.79 13.33-14.86c5.32-6.13 10.12-12.69 14.35-19.62c1.85-3.09 3.53-6.28 5.05-9.54c11.5-24.7 14.01-55.05 7.03-85.46c-4.99-21.51-14.57-43.48-29.31-67.16c-4.15-6.67-8.74-13.54-13.64-20.41c-21.3-30-46.31-57.19-74.43-80.92c-23.82-20.22-49.99-37.5-77.94-51.47h-3.77c28.98 14.16 56.07 31.88 80.66 52.75c28.01 23.64 52.92 50.72 74.14 80.61c4.88 6.85 9.44 13.69 13.58 20.33c14.63 23.52 24.15 45.33 29.1 66.66c6.87 30.03 4.43 60-6.92 84.38c-1.5 3.22-3.16 6.35-4.97 9.39c-4.18 6.85-8.92 13.34-14.19 19.4c-4.28 5.04-8.86 10-13.28 14.81c-7.08 7.69-14.4 15.63-20.72 24.12c-14.19 19.05-25.2 47.6-13.58 70.58c7.06 13.97 20.49 22.45 33.47 30.66c7 4.42 14.23 9 20.49 14.41c0.88 0.77 1.77 1.57 2.63 2.39c9.24 8.98 16.35 19.91 20.8 32c0.52 1.35 1 2.71 1.45 4.08h1.74c-0.5-1.56-1.05-3.12-1.63-4.66C694.72 509.6 687.47 498.45 678.04 489.29z M751.04 485.1c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C684.66 72.73 631.65 28.67 570.24 0.01h-3.66c62.45 28.5 116.34 72.93 156.25 128.84c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.73 10.22 22.11 24.59 26.99 40.29h1.63C773.74 510.42 764.11 495.61 751.04 485.1z M701.06 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.32 9.89 21.51 23.68 26.51 38.8h1.64C723.18 511 713.74 496.77 701.06 486.59z M691 489.14c-0.9-0.82-1.82-1.63-2.77-2.42c-6.53-5.43-14.03-9.99-21.29-14.39c-13.87-8.42-26.96-16.36-34.16-30.07c-11.84-22.39-1.29-50.63 12.55-69.59c6.24-8.55 13.53-16.6 20.58-24.36c4.36-4.81 8.87-9.78 13.09-14.83c5.29-6.18 10.05-12.78 14.24-19.74c1.81-3.08 3.5-6.3 5.01-9.56c11.43-24.79 14.05-55.15 7.36-85.5c-4.85-21.86-14.23-43.9-28.67-67.37c-4.09-6.64-8.65-13.5-13.56-20.38c-21.34-29.97-46.58-56.95-75.05-80.23c-24.41-20.06-51.16-37.08-79.67-50.69h-3.75c29.53 13.79 57.22 31.24 82.4 51.92c28.36 23.19 53.5 50.07 74.75 79.91c4.89 6.85 9.43 13.68 13.5 20.29c14.36 23.33 23.67 45.2 28.48 66.88c6.6 30.01 4.04 60.02-7.26 84.49c-1.49 3.22-3.14 6.38-4.93 9.42c-4.15 6.88-8.86 13.41-14.09 19.52c-4.19 5.03-8.69 9.98-13.05 14.78c-7.08 7.8-14.4 15.87-20.69 24.5c-14.12 19.35-24.85 48.23-12.68 71.28c7.39 14.1 21.3 22.53 34.73 30.69c7.21 4.37 14.67 8.89 21.11 14.26c0.92 0.77 1.82 1.56 2.71 2.37c9.49 8.84 16.83 19.73 21.45 31.85c0.57 1.46 1.1 2.93 1.59 4.41h1.67c-0.54-1.67-1.13-3.33-1.77-4.98C708.13 509.25 700.65 498.15 691 489.14z M719.22 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C652.15 73.25 597.98 28.62 535.2 0.01h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C741.34 511 731.9 496.77 719.22 486.59z M709.5 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C731.62 511 722.18 496.77 709.5 486.59z'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='869.97px' height='526.6px' viewBox='0 0 869.97 526.6' enable-background='new 0 0 869.97 526.6' xml:space='preserve'%3E%3Cpath d='M371.62 516.1c0.49 3.38 0.99 6.89 1.55 10.49h-3.27c-0.52-3.44-1-6.8-1.47-10.03c-1.17-8.11-2.27-15.78-3.73-22.33c-0.21-0.94-0.42-1.87-0.65-2.77c-1.2-4.85-2.51-9.18-3.79-13.37c-3.47-11.45-6.47-21.35-4.84-34.81c2.05-17.04 15.37-37.01 35.63-53.41c5.97-4.83 12.38-9.53 18.58-14.07c7.11-5.21 14.48-10.6 21.38-16.34c6.15-4.91 11.76-10.47 16.72-16.58c2.15-2.73 4.1-5.62 5.83-8.64c15.18-26.66 9.36-59.72-1.16-81.77c-8.37-17.54-20.42-32.31-33.18-47.96c-3.66-4.49-7.35-9.02-10.98-13.65c-5.33-6.77-10.62-13.88-15.74-21.14c-19.63-27.82-36.26-56.77-52.34-84.77l-7.36-12.8c-17.27-29.92-30.86-56.18-37.37-72.14h3.49c6.63 15.93 19.91 41.48 36.66 70.52l7.37 12.8c16.03 27.93 32.62 56.82 52.18 84.52c5.08 7.21 10.34 14.28 15.64 21.01c3.63 4.62 7.3 9.13 10.95 13.6c12.89 15.8 25.06 30.73 33.59 48.61c6.88 14.44 10.53 30.21 10.7 46.2c0 13.09-2.75 26.44-9.64 38.55c-1.81 3.16-3.85 6.18-6.1 9.04c-5.1 6.29-10.87 12.01-17.2 17.07c-6.98 5.79-14.38 11.21-21.53 16.45c-6.17 4.52-12.54 9.2-18.46 13.97c-19.62 15.89-32.5 35.07-34.46 51.29c-1.53 12.8 1.36 22.39 4.73 33.5c1.28 4.23 2.61 8.61 3.83 13.53c0.23 0.93 0.46 1.88 0.67 2.85C369.33 500.19 370.44 507.92 371.62 516.1z M393.71 493.1c-0.27-0.95-0.56-1.89-0.84-2.81c-1.68-5.34-3.51-10.03-5.29-14.57c-4.15-10.6-7.75-19.77-7.01-32.25c0.96-16.48 13.2-36.19 32.7-52.7c6.02-5.09 12.55-10.05 18.87-14.84c6.85-5.19 13.93-10.57 20.61-16.28c6.24-5.14 11.93-10.94 16.95-17.28c2.22-2.88 4.23-5.91 6.02-9.08c6.93-12.34 9.67-25.96 9.67-39.3c-0.14-15.7-3.56-31.2-10.04-45.5c-8.47-18.6-20.83-34.2-33.92-50.73c-3.12-3.92-6.25-7.87-9.35-11.9c-5.26-6.81-10.47-13.86-15.48-20.96c-17.27-24.45-32.66-49.77-47.54-74.26c-4.49-7.39-8.9-14.65-13.26-21.72c-16.58-26.9-31.46-52.46-40.12-68.91h-3.49c8.57 16.44 23.88 42.78 40.96 70.52c4.36 7.06 8.77 14.31 13.25 21.69c14.9 24.54 30.32 49.9 47.65 74.44c5.04 7.14 10.27 14.22 15.56 21.07c3.11 4.04 6.25 8 9.37 11.94c12.97 16.37 25.21 31.82 33.53 50.09c10.06 22.11 15.49 55.27 0.49 82c-1.71 3.03-3.63 5.94-5.76 8.7c-4.89 6.18-10.43 11.81-16.51 16.82c-6.61 5.66-13.66 11-20.47 16.18c-6.35 4.82-12.91 9.8-19 14.94c-20.15 17.05-32.78 37.58-33.8 54.89c-0.74 13.2 2.94 22.62 7.22 33.56c1.76 4.49 3.58 9.13 5.21 14.37c0.28 0.89 0.55 1.8 0.82 2.73c2.26 7.96 3.92 17.63 5.67 27.88c0.28 1.57 0.55 3.15 0.83 4.76h3.14c-0.31-1.79-0.61-3.55-0.89-5.29C397.69 510.98 396.02 501.23 393.71 493.1z M535.83 491.08c-0.58-0.9-1.17-1.79-1.78-2.64c-4.12-5.62-8.63-10.93-13.5-15.91c-8.37-8.95-16.29-17.4-19.37-29.79c-5.14-20.91 8.52-45.06 23.1-60.66c6.34-6.78 13.44-13.26 20.3-19.53c5.45-4.98 11.09-10.12 16.39-15.45c5.78-5.65 11.01-11.83 15.64-18.45c2.03-2.98 3.88-6.09 5.53-9.3c6.77-13.22 10.19-28.58 10.19-44.71c-0.07-13.74-2.38-27.38-6.85-40.37c-7.81-23-21.06-43.01-36.3-64.92c-4.82-6.91-9.68-13.81-14.57-20.7c-24.6-34.67-45.51-62.99-67.64-88.5c-22.58-26.07-42.41-46.29-58.98-60.14h-3.55l-0.07 0.09c16.88 13.79 37.34 34.53 60.8 61.61c22.07 25.44 42.94 53.7 67.5 88.32c4.87 6.87 9.74 13.77 14.55 20.68c15.14 21.75 28.3 41.61 36 64.32c9.99 29.43 8.82 59.77-3.2 83.24c-1.6 3.13-3.4 6.15-5.37 9.05c-4.55 6.5-9.69 12.57-15.37 18.11c-5.26 5.28-10.88 10.41-16.3 15.37c-6.9 6.3-14.04 12.82-20.45 19.66c-19.42 20.8-28.26 44.3-23.66 62.86c3.22 13 11.35 21.67 19.94 30.85c4.79 4.9 9.24 10.13 13.3 15.65c0.59 0.83 1.17 1.68 1.72 2.55c5.51 8.57 10.05 19.63 13.9 33.81c0.04 0.14 0.07 0.27 0.11 0.41h2.46c-0.09-0.35-0.18-0.69-0.28-1.04C546.1 511.14 541.47 499.86 535.83 491.08z M354.91 493.72c-0.18-0.97-0.38-1.92-0.58-2.86c-1-4.65-2.09-8.82-3.14-12.85c-3.1-11.88-5.55-21.27-3.56-34.28c2.46-16.09 15.67-35 35.34-50.58c5.86-4.63 12.16-9.16 18.26-13.55c7.31-5.26 14.87-10.7 22-16.53c6.37-5.01 12.18-10.7 17.32-16.96c2.27-2.85 4.32-5.86 6.14-9.02c6.89-12 9.64-25.22 9.64-38.2c-0.18-16.13-3.95-32.03-11.04-46.53c-8.57-17.55-20.66-32.16-33.46-47.64c-3.9-4.72-7.84-9.47-11.7-14.36c-5.35-6.76-10.64-13.83-15.72-21.03c-20.59-29.18-38.37-61.11-54.07-89.28l-4.86-8.71c-16.54-29.67-29.2-55.53-34.93-71.33h-3.49c5.59 15.87 18.53 42.41 35.53 72.93l4.86 8.7c15.73 28.25 33.56 60.27 54.25 89.59c5.12 7.24 10.44 14.37 15.83 21.17c3.89 4.9 7.83 9.68 11.75 14.41c12.67 15.32 24.65 29.79 33.05 46.99c10.75 22.01 16.79 55.01 1.49 81.65c-1.74 3.01-3.7 5.89-5.86 8.61c-5 6.08-10.64 11.6-16.83 16.46c-7.06 5.76-14.57 11.17-21.84 16.4c-6.12 4.41-12.45 8.96-18.36 13.64c-20.31 16.09-33.97 35.78-36.55 52.67c-2.08 13.69 0.57 23.85 3.63 35.61c1.04 4 2.12 8.13 3.1 12.72c0.2 0.91 0.39 1.84 0.57 2.78c1.15 5.91 2.01 12.7 2.93 19.89c0.5 3.95 1.03 8.08 1.64 12.36h3.32c-0.63-4.43-1.18-8.7-1.7-12.78C356.95 506.57 356.07 499.73 354.91 493.72z M341.99 493.92c-0.17-0.97-0.33-1.93-0.5-2.86c-0.8-4.32-1.66-8.27-2.48-12.01c-2.69-12.26-4.81-21.95-2.36-35.22c2.95-15.95 16.49-34.6 36.22-49.88c5.79-4.48 12.01-8.87 18.02-13.12c7.47-5.28 15.19-10.74 22.48-16.61c7.64-6.15 13.02-11.35 17.44-16.85c2.29-2.84 4.36-5.85 6.19-9c6.9-11.9 9.65-25 9.65-37.86c-0.2-16.28-4.09-32.3-11.38-46.86c-8.6-17.23-20.64-31.56-33.37-46.72c-4.14-4.95-8.32-9.93-12.43-15.07c-5.35-6.7-10.67-13.78-15.8-21.05c-21.61-30.65-39.76-64.3-55.78-94l-2.51-4.67c-16.3-30.25-28.33-56.4-33.2-72.13h-3.51c4.74 15.83 17.02 42.66 33.75 73.71l2.51 4.66c16.06 29.79 34.26 63.53 55.99 94.34c5.16 7.33 10.52 14.47 15.92 21.22c4.12 5.16 8.31 10.17 12.48 15.13c12.61 15.01 24.51 29.19 32.94 46.07c10.98 21.98 17.24 54.93 1.83 81.54c-1.74 3-3.71 5.87-5.89 8.57c-4.28 5.31-9.5 10.34-16.93 16.35c-7.21 5.8-14.88 11.22-22.31 16.47c-6.04 4.28-12.29 8.69-18.14 13.22c-20.37 15.77-34.37 35.18-37.47 51.92c-2.56 13.94-0.27 24.41 2.39 36.55c0.81 3.7 1.67 7.61 2.45 11.89c0.17 0.92 0.33 1.85 0.49 2.81c0.86 5.26 1.51 11.22 2.21 17.53c0.53 4.7 1.06 9.52 1.72 14.58h3.38c-0.68-5.18-1.23-10.12-1.76-14.94C343.53 505.28 342.86 499.27 341.99 493.92z M316.15 494.36l-0.33-2.9c-0.42-3.48-0.87-6.73-1.31-9.82c-1.86-13.24-3.31-23.69 0.2-37.62c3.94-15.67 18.14-33.79 37.98-48.49c5.64-4.16 11.66-8.27 17.49-12.24c7.81-5.32 15.89-10.82 23.52-16.79c7.75-6.06 13.2-11.19 17.68-16.64c2.32-2.82 4.42-5.81 6.28-8.96c6.88-11.7 9.64-24.55 9.64-37.2c0-17.35-5.19-34.32-12.05-47.47c-8.7-16.65-20.6-30.42-33.22-45.01c-4.57-5.29-9.3-10.76-13.85-16.36c-5.44-6.68-10.81-13.78-15.96-21.09c-23.5-33.34-42.1-70.3-57.05-100.01c-15.75-31.33-26.52-58.09-29.73-73.75h-3.55c4.21 21.65 20.67 56.42 30.17 75.32c15 29.8 33.67 66.9 57.31 100.44c5.2 7.38 10.62 14.54 16.1 21.28c4.58 5.64 9.33 11.14 13.92 16.45c12.47 14.43 24.25 28.06 32.76 44.35c14.38 27.53 15.36 59.43 2.5 81.29c-1.77 2.99-3.76 5.83-5.97 8.51c-4.31 5.24-9.59 10.22-17.13 16.11s-15.58 11.37-23.34 16.65c-5.85 3.99-11.9 8.11-17.6 12.32c-20.46 15.16-35.15 34.01-39.29 50.43c-3.67 14.6-2.16 25.35-0.27 38.96c0.43 3.06 0.88 6.29 1.3 9.75l0.33 2.85c0.44 4.12 0.77 8.59 1.11 13.36c0.41 5.66 0.86 11.93 1.58 18.52h3.5c-0.73-6.67-1.19-13.03-1.61-18.77C316.92 503.03 316.59 498.52 316.15 494.36z M332.47 397.1c5.48-3.86 11.3-7.69 16.93-11.38c8.17-5.36 16.61-10.9 24.59-16.95c7.84-5.94 13.37-11.01 17.92-16.42c2.36-2.79 4.49-5.78 6.37-8.92c6.8-11.38 9.49-24 9.49-36.41h0.01c0-17.92-5.61-35.42-12.58-48.22c-8.79-16.12-20.61-29.4-33.14-43.46c-5.02-5.65-10.22-11.48-15.19-17.49c-5.52-6.67-10.94-13.78-16.12-21.14c-22.99-32.65-40.86-69.43-55.8-101.33c-15.35-32.86-24.63-59.54-26.23-75.37h-3.63c2.06 21.82 17.5 57.46 26.59 76.87c15.01 32.05 32.97 69 56.12 101.88c5.23 7.44 10.71 14.62 16.29 21.36c5.01 6.07 10.23 11.93 15.28 17.59c12.38 13.9 24.08 27.04 32.67 42.79c11.35 20.83 18.99 54.56 3.16 81.05c-1.79 2.97-3.8 5.8-6.04 8.45c-4.37 5.2-9.72 10.1-17.34 15.88c-7.88 5.97-16.27 11.48-24.39 16.8c-5.66 3.72-11.5 7.55-17.03 11.46c-20.58 14.55-35.95 32.85-41.11 48.93c-4.99 15.54-4.26 26.79-3.21 42.35c0.14 2.13 0.28 4.32 0.42 6.62l0.16 2.88c0.15 3.06 0.25 6.29 0.35 9.71c0.21 6.66 0.43 14.04 1.11 21.94h3.62c-0.69-7.92-0.91-15.36-1.12-22.06c-0.11-3.43-0.21-6.7-0.36-9.77l-0.15-2.91c-0.14-2.31-0.29-4.51-0.43-6.64c-1-15.17-1.74-26.13 3.04-41C297.65 428.82 312.52 411.22 332.47 397.1z M329.09 494.13c-0.14-0.98-0.27-1.94-0.42-2.88c-0.6-3.94-1.25-7.57-1.86-11.02c-2.27-12.7-4.07-22.73-1.11-36.32c3.45-15.8 17.31-34.19 37.1-49.18c5.71-4.32 11.83-8.56 17.75-12.67c7.64-5.3 15.54-10.79 23-16.71c7.68-6.09 13.1-11.25 17.56-16.74c2.3-2.83 4.39-5.83 6.23-8.98c6.88-11.8 9.64-24.77 9.64-37.52c0-17.24-5.04-34.09-11.72-47.17c-8.65-16.93-20.61-30.97-33.28-45.84c-4.34-5.1-8.82-10.36-13.15-15.74c-5.42-6.72-10.76-13.81-15.88-21.08c-22.59-32.04-41.01-67.37-57.26-98.54l-0.42-0.79c-16.04-30.81-27.44-57.26-31.46-72.94h-3.53c3.89 15.82 15.52 42.93 32 74.53l0.41 0.8c16.31 31.26 34.78 66.7 57.5 98.92c5.16 7.33 10.55 14.49 16.01 21.26c4.36 5.41 8.87 10.7 13.22 15.81c12.54 14.7 24.37 28.6 32.84 45.17c11.2 21.95 17.66 54.85 2.16 81.41c-1.76 2.99-3.74 5.85-5.94 8.54c-4.3 5.29-9.55 10.3-17.03 16.23c-7.37 5.85-15.23 11.3-22.82 16.57c-5.95 4.13-12.1 8.4-17.87 12.76c-20.41 15.46-34.76 34.6-38.38 51.18c-3.1 14.23-1.26 24.56 1.08 37.65c0.62 3.41 1.25 7.02 1.85 10.92c0.14 0.92 0.28 1.86 0.4 2.82c0.64 4.7 1.12 9.91 1.62 15.44c0.48 5.08 0.99 10.7 1.69 16.56h3.44c-0.72-5.88-1.23-11.45-1.73-16.87C330.21 504.15 329.73 498.89 329.09 494.13z M303.23 494.56c-0.08-0.99-0.16-1.96-0.25-2.91c-0.27-2.94-0.55-5.7-0.82-8.36c-1.48-14.41-2.55-24.82 1.57-39.18c4.44-15.51 18.97-33.38 38.86-47.79c5.57-4.02 11.49-7.99 17.23-11.83c7.98-5.33 16.24-10.85 24.04-16.85s13.27-11.1 17.79-16.53c2.34-2.81 4.46-5.8 6.33-8.94c6.79-11.48 9.48-24.2 9.48-36.72c0-17.81-5.45-35.2-12.24-47.93c-8.74-16.37-20.6-29.9-33.17-44.21c-4.8-5.47-9.77-11.13-14.53-16.95c-5.49-6.7-10.89-13.8-16.04-21.12c-22.38-31.78-40.14-67.16-56.42-100.67c-15.44-31.86-25.58-58.9-27.98-74.56h-3.59c3.13 21.72 19.08 56.93 28.4 76.13c16.34 33.65 34.18 69.17 56.72 101.17c5.19 7.38 10.65 14.55 16.2 21.32c4.8 5.86 9.79 11.55 14.62 17.04c12.42 14.15 24.15 27.52 32.69 43.54c11.13 20.86 18.56 54.63 2.83 81.17c-1.77 2.98-3.78 5.82-6 8.48c-4.34 5.21-9.65 10.15-17.23 15.99c-7.7 5.92-15.91 11.41-23.84 16.71c-5.77 3.85-11.72 7.84-17.34 11.9c-20.52 14.86-35.55 33.44-40.2 49.68c-4.31 15.03-3.16 26.28-1.7 40.52c0.27 2.64 0.56 5.4 0.82 8.32c0.09 0.94 0.17 1.89 0.24 2.86c0.28 3.58 0.48 7.42 0.69 11.5c0.32 6.17 0.67 13.01 1.38 20.25h3.57c-0.73-7.3-1.09-14.21-1.41-20.44C303.71 502.05 303.51 498.17 303.23 494.56z M482.71 489.1c-3.19-5.54-6.72-10.87-10.58-15.96c-6.71-9.23-13.04-17.94-14.79-30.15c-2.45-17.07 7.73-39.2 26.58-57.73c6.28-6.16 13.22-12.1 19.93-17.84c5.91-5.05 12.02-10.27 17.77-15.73c5.95-5.48 11.35-11.52 16.12-18.04c2.1-2.94 4-6.02 5.69-9.22c6.62-12.49 9.95-27.26 9.95-42.77c-0.08-14.44-2.77-28.74-7.95-42.21c-8.4-22.05-21.95-40.77-36.3-60.59l-2.53-3.5c-5-6.9-9.97-13.84-14.9-20.8c-6.48-9.14-12.88-18.33-19.24-27.44c-15.74-22.57-30.61-43.89-45.91-63.79c-22.09-28.75-39.17-49.5-52.14-63.32h-3.5l-0.06 0.07c13.09 13.74 30.62 34.96 53.6 64.87c15.27 19.85 30.12 41.14 45.84 63.69c6.36 9.12 12.77 18.3 19.25 27.46c4.93 6.96 9.9 13.9 14.92 20.82l2.53 3.5c14.24 19.67 27.7 38.25 35.97 59.98c11 28.9 10.3 59.85-1.86 82.8c-1.64 3.09-3.48 6.07-5.51 8.92c-4.67 6.38-9.95 12.29-15.78 17.64c-5.71 5.41-11.8 10.62-17.68 15.65c-6.75 5.76-13.72 11.73-20.06 17.96c-19.72 19.4-29.91 41.85-27.35 59.99c1.84 12.85 8.37 21.83 15.28 31.33c3.79 5 7.27 10.24 10.41 15.68c0.48 0.85 0.93 1.72 1.38 2.61c4.16 8.2 7.62 18.59 11.2 33.61h2.71c-3.68-15.56-7.25-26.3-11.56-34.79C483.68 490.88 483.2 489.98 482.71 489.1z M469.86 489.24c-2.95-5.49-6.24-10.8-9.83-15.9c-6.31-9.32-12.26-18.12-13.67-30.31c-1.98-16.98 8.56-38.8 27.46-57.01c6.25-6.01 13.14-11.8 19.8-17.41c6.04-5.08 12.28-10.33 18.16-15.82c5.99-5.43 11.43-11.43 16.24-17.92c2.11-2.94 4.03-6.01 5.74-9.2c6.6-12.35 9.92-26.93 9.92-42.28c-0.08-14.61-2.88-29.08-8.26-42.66c-8.39-21.45-21.72-39.64-35.82-58.89l-3.66-4.99c-5.03-6.89-10.03-13.83-14.98-20.82c-8.44-11.93-16.82-24.08-24.91-35.84c-13.61-19.77-26.47-38.45-39.62-56.07c-22.3-29.92-38.39-50.39-50.41-64.11h-3.51l-0.06 0.07c12.12 13.66 28.59 34.52 51.81 65.68c13.11 17.58 25.96 36.24 39.56 55.99c8.09 11.76 16.46 23.92 24.92 35.86c4.95 6.98 9.95 13.94 15.01 20.85l3.66 5c14 19.11 27.21 37.16 35.48 58.28c11.28 28.86 10.72 59.77-1.52 82.68c-1.64 3.08-3.5 6.05-5.54 8.89c-4.7 6.35-10.02 12.22-15.89 17.52c-5.84 5.44-12.04 10.67-18.06 15.72c-6.7 5.64-13.62 11.46-19.93 17.53c-19.78 19.07-30.34 41.24-28.27 59.28c1.48 12.84 7.62 21.91 14.12 31.51c3.53 5.01 6.76 10.23 9.67 15.63c0.45 0.85 0.88 1.73 1.3 2.63c4.76 10.03 7.99 22.44 10.51 33.46h2.78c-2.58-11.31-5.89-24.17-10.85-34.63C470.78 491.03 470.31 490.13 469.86 489.24z M497.06 491.61c-0.5-0.92-1.01-1.82-1.52-2.69c-3.43-5.56-7.21-10.9-11.33-15.97c-7.12-9.15-13.84-17.79-15.92-30.03c-2.94-17.2 6.93-39.58 25.71-58.46c6.29-6.32 13.27-12.39 20.03-18.26c5.8-5.04 11.78-10.25 17.42-15.67c5.91-5.51 11.26-11.58 16-18.13c2.09-2.96 3.97-6.04 5.66-9.24c6.63-12.62 9.97-27.57 9.97-43.27c-0.07-14.25-2.65-28.38-7.64-41.73c-8.41-22.72-22.24-42.03-36.9-62.48l-1.31-1.82c-4.94-6.91-9.88-13.83-14.81-20.78c-4.27-6.02-8.51-12.04-12.73-18.05c-18.13-25.73-35.26-50.06-53.05-72.5C414.71 34.82 396.6 13.81 382.8 0.01h-3.5l-0.08 0.08c13.94 13.68 32.58 35.22 55.41 64.04c17.75 22.39 34.85 46.68 52.96 72.39c4.23 6.01 8.48 12.03 12.74 18.05c4.91 6.94 9.85 13.87 14.82 20.79l1.3 1.83c14.55 20.29 28.29 39.47 36.58 61.86c10.71 28.93 9.89 59.93-2.19 82.92c-1.64 3.1-3.47 6.09-5.48 8.96c-4.64 6.41-9.89 12.35-15.68 17.75c-5.59 5.38-11.55 10.56-17.32 15.58c-6.79 5.9-13.82 12-20.17 18.38c-19.65 19.75-29.52 42.45-26.42 60.71c2.18 12.88 9.1 21.77 16.43 31.18c4.05 4.99 7.77 10.24 11.14 15.71c0.5 0.84 0.99 1.7 1.47 2.59c4.47 8.3 8.26 19.03 11.89 33.76h2.65c-0.01-0.01-0.01-0.03-0.03-0.04C505.6 511.31 501.7 500.21 497.06 491.61z M509.99 491.43c-0.52-0.91-1.06-1.8-1.6-2.67c-3.66-5.58-7.69-10.92-12.06-15.97c-7.54-9.08-14.65-17.65-17.07-29.93c-3.4-17.31 6.12-39.98 24.84-59.19c6.3-6.46 13.32-12.67 20.12-18.67c5.67-5.03 11.54-10.21 17.07-15.61c5.87-5.56 11.19-11.67 15.89-18.24c2.06-2.96 3.93-6.06 5.6-9.26c6.66-12.76 10.01-27.9 10.01-43.78c-0.06-14.07-2.54-28.02-7.33-41.25c-8.42-23.41-22.55-43.35-37.52-64.44l-20.03-28.22c-19.9-28.1-40.47-57.16-61.15-82.47c-22.14-27.12-40.81-47.87-55.55-61.72h-3.52l-0.08 0.09c14.93 13.75 34.17 35.02 57.2 63.23c20.63 25.24 41.17 54.26 61.05 82.33l19.98 28.15c14.91 21.01 28.94 40.8 37.25 63.9c10.42 28.95 9.48 59.99-2.52 83.02c-1.63 3.11-3.45 6.11-5.45 8.99c-4.62 6.44-9.83 12.42-15.58 17.87c-5.48 5.35-11.33 10.52-16.98 15.52c-6.82 6.03-13.89 12.27-20.26 18.8c-19.58 20.1-29.1 43.07-25.5 61.43c2.53 12.89 9.85 21.71 17.59 31.04c4.3 4.97 8.27 10.22 11.87 15.71c0.53 0.85 1.04 1.71 1.55 2.59c4.86 8.46 8.86 19.24 12.59 33.91h2.6c-0.03-0.13-0.06-0.25-0.09-0.37C519.1 511.2 514.99 500.15 509.99 491.43z M444.2 489.6c-2.49-5.37-5.27-10.6-8.31-15.67c-5.75-9.95-10.72-18.54-11.45-30.74c-0.98-16.71 10.2-38.02 29.21-55.57c6.19-5.7 12.97-11.21 19.53-16.55c6.29-5.12 12.8-10.41 18.94-15.97c6.06-5.34 11.58-11.27 16.46-17.71c2.15-2.91 4.1-5.98 5.83-9.16c6.58-12.11 9.87-26.37 9.87-41.38c-0.1-14.95-3.12-29.73-8.89-43.52c-8.4-20.37-21.32-37.57-35-55.79c-1.9-2.55-3.81-5.11-5.73-7.68c-5.21-6.99-10.31-14.02-15.15-20.87c-11.85-16.75-23.26-33.88-34.3-50.46c-9.99-15.01-19.43-29.18-28.99-42.81c-17.79-25.41-34.77-49.55-46.98-65.71h-3.56c12.26 16.1 29.8 41.04 48.22 67.34c9.54 13.6 18.98 27.76 28.95 42.76c11.05 16.59 22.47 33.73 34.34 50.52c4.85 6.86 9.97 13.91 15.19 20.92c1.91 2.58 3.84 5.14 5.75 7.69c13.56 18.07 26.37 35.13 34.64 55.17c11.87 28.8 11.55 59.62-0.86 82.46c-1.66 3.07-3.54 6.02-5.61 8.83c-4.77 6.29-10.16 12.09-16.1 17.29c-6.07 5.52-12.55 10.79-18.81 15.88c-6.6 5.36-13.41 10.9-19.66 16.66c-19.92 18.38-31.19 39.97-30.12 57.82c0.77 12.88 6.14 22.16 11.83 32c2.99 4.99 5.72 10.13 8.17 15.41c0.39 0.87 0.77 1.76 1.14 2.66c3.93 9.59 6.69 21.56 9.15 33.17h2.9c-2.52-11.92-5.34-24.27-9.42-34.24C445 491.41 444.61 490.5 444.2 489.6z M431.37 489.76c-2.35-5.43-5.05-10.7-8.07-15.79c-5.67-9.97-10.58-18.62-9.83-30.6c1.12-18.16 12.65-39.22 30.09-54.98c6.15-5.55 12.87-10.92 19.38-16.13c6.42-5.14 13.07-10.45 19.33-16.05c6.12-5.28 11.69-11.18 16.6-17.6c2.16-2.9 4.12-5.95 5.87-9.13c6.56-11.98 9.85-26.09 9.85-40.94c-0.12-15.11-3.25-30.04-9.22-43.92c-8.41-19.9-21.17-36.66-34.68-54.42c-2.23-2.94-4.46-5.87-6.69-8.85c-5.08-6.75-10.21-13.79-15.23-20.89c-13.34-18.87-25.98-38.23-38.2-56.95c-8.44-12.93-16.41-25.14-24.46-36.99L372.5 46.43c-11.99-17.71-23.33-34.47-31.66-46.42h-3.54c8.41 12.01 20.26 29.51 32.79 48.03l13.61 20.1c8.04 11.82 16 24.03 24.44 36.95c12.24 18.74 24.88 38.13 38.26 57.04c5.05 7.13 10.19 14.18 15.29 20.96c2.23 2.98 4.46 5.93 6.7 8.86c13.4 17.6 26.05 34.24 34.32 53.79c12.16 28.76 11.98 59.55-0.51 82.35c-1.68 3.06-3.57 6-5.66 8.8c-4.8 6.27-10.23 12.02-16.2 17.17c-6.2 5.55-12.81 10.84-19.21 15.95c-6.54 5.22-13.3 10.63-19.51 16.23c-17.99 16.25-29.87 38.08-31.03 56.96c-0.85 12.84 4.54 22.27 10.19 32.21c2.97 4.98 5.61 10.14 7.92 15.46c0.37 0.87 0.72 1.76 1.06 2.68c3.43 9.1 5.82 19.94 8.47 33.04h2.96c-2.73-13.49-5.17-24.63-8.73-34.06C432.11 491.59 431.74 490.66 431.37 489.76z M457.04 489.43c-2.72-5.44-5.75-10.71-9.07-15.81c-6.17-9.83-11.49-18.31-12.56-30.51c-1.48-16.85 9.38-38.41 28.33-56.29c6.22-5.85 13.06-11.51 19.67-16.98c6.16-5.1 12.54-10.37 18.54-15.89c6.03-5.38 11.51-11.35 16.36-17.81c2.13-2.93 4.06-6 5.78-9.18c6.59-12.23 9.9-26.66 9.9-41.83c-0.09-14.78-3-29.41-8.58-43.1c-8.38-20.89-21.49-38.57-35.37-57.28l-4.73-6.4c-5.17-7.01-10.24-14.03-15.07-20.84c-10.21-14.43-20.21-29.17-29.87-43.43c-11.72-17.28-22.78-33.6-34.04-49.15c-15.38-21.3-34.66-47.69-48.7-64.92h-3.51l-0.04 0.04c14.09 17.09 34.13 44.52 50.01 66.5c11.22 15.51 22.28 31.82 33.98 49.08c9.67 14.27 19.68 29.01 29.91 43.47c4.83 6.83 9.91 13.86 15.09 20.89l4.73 6.4c13.77 18.56 26.78 36.1 35.03 56.66c11.58 28.84 11.14 59.7-1.19 82.58c-1.66 3.08-3.53 6.04-5.59 8.87c-4.74 6.32-10.1 12.14-15.99 17.4c-5.94 5.48-12.29 10.73-18.43 15.8c-6.64 5.5-13.52 11.19-19.8 17.1c-19.86 18.72-30.76 40.58-29.2 58.54c1.13 12.86 6.88 22.03 12.98 31.74c3.26 5.01 6.24 10.2 8.92 15.54c0.42 0.87 0.82 1.74 1.22 2.65c4.24 9.61 7.24 21.61 9.83 33.3h2.83c-2.63-12-5.69-24.41-10.11-34.41C457.89 491.23 457.47 490.32 457.04 489.43z M418.52 489.94c-2.13-5.37-4.59-10.6-7.36-15.67c-5.27-10.09-9.82-18.82-8.68-30.8c1.73-18.11 13.59-38.91 30.97-54.27c6.12-5.4 12.79-10.64 19.24-15.71c6.56-5.16 13.35-10.49 19.74-16.12c6.16-5.23 11.76-11.1 16.71-17.49c2.19-2.89 4.17-5.93 5.92-9.11c6.56-11.88 9.84-25.83 9.84-40.53c-0.12-15.27-3.37-30.35-9.53-44.32c-8.43-19.44-21.05-35.79-34.39-53.11c-2.53-3.29-5.08-6.59-7.61-9.94c-5.2-6.86-10.35-13.9-15.32-20.92c-14.74-20.87-28.44-42.33-41.7-63.09c-7.02-11-13.64-21.38-20.33-31.54c-16.64-25.3-32.65-50.24-43.57-67.31h-3.52c10.93 17.1 27.43 42.83 44.61 68.94c6.68 10.14 13.3 20.52 20.32 31.5c13.27 20.79 27 42.28 41.78 63.2c4.98 7.05 10.15 14.11 15.37 21c2.53 3.36 5.1 6.67 7.63 9.96c13.23 17.17 25.73 33.38 34.01 52.48c12.27 28.3 12.2 59.81-0.18 82.23c-1.69 3.05-3.59 5.98-5.69 8.77c-4.84 6.23-10.3 11.94-16.31 17.05c-6.33 5.58-13.08 10.88-19.61 16.01c-6.49 5.1-13.19 10.37-19.37 15.83c-17.92 15.83-30.16 37.38-31.95 56.21c-1.23 12.91 3.74 22.39 9 32.46c2.71 4.97 5.11 10.09 7.21 15.35c0.34 0.88 0.66 1.78 0.98 2.7c3.18 9.19 5.36 20.19 7.81 32.89h3.02c-2.52-13.05-4.73-24.34-8.03-33.87C419.2 491.77 418.86 490.85 418.52 489.94z M406.61 492.92c-0.3-0.95-0.61-1.88-0.93-2.8c-1.91-5.29-4.13-10.46-6.63-15.5c-4.87-10.24-9.08-19.07-7.53-31.06c2.33-18.07 14.54-38.6 31.84-53.57c6.08-5.24 12.68-10.34 19.07-15.28c6.7-5.17 13.63-10.53 20.16-16.2c6.2-5.2 11.84-11.02 16.83-17.39c2.2-2.89 4.2-5.93 5.97-9.1c6.45-11.59 9.67-25.5 9.67-40.15c-0.1-15.41-3.4-30.62-9.71-44.67c-8.45-19-20.92-34.97-34.13-51.87c-2.84-3.62-5.67-7.28-8.51-10.97c-5.2-6.8-10.38-13.84-15.4-20.94c-16.02-22.68-30.62-46.1-44.74-68.75c-5.65-9.07-11.19-17.95-16.67-26.54c-15.8-24.82-31.68-50.7-41.83-68.12h-3.51c10.12 17.45 26.5 44.16 42.79 69.78c5.47 8.58 11.01 17.47 16.65 26.52c14.14 22.68 28.76 46.13 44.85 68.89c5.04 7.14 10.24 14.21 15.46 21.04c2.83 3.71 5.69 7.36 8.53 10.99c13.08 16.75 25.44 32.57 33.74 51.24c9.85 22.13 15.05 55.33 0.15 82.11c-1.7 3.04-3.61 5.96-5.73 8.73c-4.86 6.2-10.36 11.88-16.4 16.94c-6.47 5.61-13.37 10.93-20.03 16.08c-6.42 4.96-13.06 10.08-19.2 15.38c-17.85 15.44-30.43 36.69-32.86 55.47c-1.64 12.89 2.94 22.53 7.81 32.75c2.45 4.93 4.63 10.01 6.51 15.19c0.3 0.89 0.6 1.8 0.89 2.72c2.75 8.73 4.64 19.02 6.82 30.95l0.33 1.8h3.08l-0.44-2.35C411.4 512.71 409.4 501.83 406.61 492.92z M380.8 493.3c-0.25-0.96-0.5-1.9-0.76-2.83c-1.45-5.16-3.02-9.71-4.55-14.11c-3.76-10.84-6.99-20.19-5.88-32.82c1.46-16.35 14.01-35.8 33.58-52c5.97-4.93 12.43-9.75 18.67-14.41c7-5.22 14.24-10.61 21.06-16.36c6.29-5.1 12.01-10.86 17.07-17.18c2.23-2.86 4.25-5.89 6.05-9.05c6.92-12.22 9.66-25.7 9.66-38.92c-0.15-15.85-3.69-31.48-10.37-45.85c-8.5-18.23-20.76-33.49-33.74-49.64c-3.38-4.21-6.79-8.45-10.16-12.78c-5.25-6.73-10.48-13.79-15.56-20.98c-18.44-26.11-34.48-53.24-49.99-79.48c-3.44-5.82-6.84-11.54-10.18-17.16C329.07 41.86 314.84 16 307.31 0.01h-3.49c7.4 15.95 22.02 42.59 39.17 71.33c3.35 5.61 6.74 11.33 10.17 17.15c15.54 26.29 31.62 53.48 50.13 79.7c5.11 7.23 10.37 14.33 15.65 21.1c3.37 4.34 6.79 8.6 10.18 12.82c12.85 16 25 31.1 33.34 48.99c10.3 22.08 15.92 55.18 0.82 81.89c-1.72 3.03-3.66 5.92-5.8 8.67c-4.93 6.14-10.49 11.74-16.61 16.7c-6.76 5.69-13.95 11.06-20.91 16.25c-6.27 4.68-12.77 9.52-18.8 14.51c-20.2 16.73-33.17 36.97-34.71 54.15c-1.2 13.31 2.17 22.96 6.04 34.13c1.51 4.36 3.07 8.86 4.49 13.93c0.25 0.9 0.5 1.82 0.74 2.75c1.83 7.25 3.2 15.88 4.64 25.02c0.39 2.45 0.78 4.94 1.2 7.49h3.2c-0.45-2.72-0.87-5.38-1.26-8C384.04 509.38 382.67 500.68 380.8 493.3z M0 23.2C3.67 14.68 8.66 7.08 15.36 1.07l-0.92-1.06H8.63C5.33 3.45 2.48 7.27 0 11.37V23.2z M859.18 114.62c3.85 5.4 7.44 10.73 10.77 16.01v-2.86c-2.98-4.64-6.15-9.32-9.52-14.04C827.06 66.95 783.93 28.19 734.2 0.01h-3.13C781.61 28.19 825.41 67.28 859.18 114.62z M322.38 397.93c5.39-3.72 11.1-7.4 16.63-10.96c8.35-5.38 16.98-10.94 25.15-17.03c7.9-5.9 13.46-10.94 18.04-16.32c2.38-2.79 4.53-5.77 6.42-8.91c6.8-11.3 9.5-23.8 9.5-36.12c0-18.02-5.78-35.64-12.93-48.5c-8.84-15.88-20.63-28.92-33.12-42.73c-5.25-5.81-10.67-11.8-15.84-18.01c-5.56-6.67-11.01-13.78-16.2-21.16c-22.4-31.81-39.76-67.83-55.18-102c-15.03-33.37-23.68-60.35-24.47-76.18h-3.69c1.02 21.9 15.93 57.98 24.82 77.7c15.5 34.34 32.95 70.54 55.53 102.61c5.24 7.46 10.76 14.65 16.38 21.4c5.21 6.27 10.67 12.3 15.94 18.13c12.35 13.65 24.01 26.54 32.64 42.05c11.57 20.79 19.42 54.46 3.49 80.93c-1.79 2.96-3.82 5.78-6.07 8.41c-4.39 5.17-9.77 10.03-17.44 15.76c-8.06 6.01-16.64 11.53-24.93 16.88c-5.56 3.58-11.3 7.27-16.74 11.03c-20.64 14.26-36.35 32.27-42.02 48.17c-5.76 16.12-5.37 28.03-4.83 44.53l0.22 7.47c0.05 2.53 0.07 5.19 0.1 7.96c0.05 7.14 0.12 15.04 0.75 23.56h3.72c-0.58-7.85-0.85-15.72-0.8-23.59c-0.02-2.79-0.05-5.46-0.1-8.01l-0.23-7.51c-0.54-16.69-0.9-27.71 4.62-43.17C287.16 429.12 302.35 411.78 322.38 397.93z M831.24 126.1c19.11 26.78 31.84 52.05 38.71 76.9v-5.47c-7.2-23.4-19.54-47.21-37.46-72.33C794.32 71.71 743.4 28.7 684.44 0.01h-3.53C740.86 28.58 792.62 71.95 831.24 126.1z M840.76 122.52c12.35 17.31 22.03 33.98 29.19 50.32v-3.76c-7.04-15.43-16.32-31.17-27.94-47.46C805.4 70.31 757.06 28.65 701.14 0.01h-3.39C754.59 28.57 803.72 70.59 840.76 122.52z M869.96 60.31v-2.3c-19.57-21.72-41.49-41.17-65.33-58h-2.67C826.86 17.38 849.69 37.61 869.96 60.31z M869.96 75.55v-2.38c-23.85-28.16-51.52-52.77-82.14-73.16h-2.78C816.82 20.9 845.44 46.33 869.96 75.55z M869.96 93.83v-2.51c-28.19-36.16-62.44-67.04-101.11-91.31h-2.9C805.89 24.72 841.15 56.48 869.96 93.83z M868.52 110.19c0.48 0.67 0.96 1.35 1.44 2.03v-2.66c-0.06-0.09-0.13-0.18-0.19-0.27c-31.66-44.37-72.09-81.52-118.6-109.28h-3.01C795.43 27.8 836.48 65.28 868.52 110.19z M849.23 119.47c8.02 11.25 14.92 22.23 20.73 33.02v-3.21c-5.56-10.05-12.04-20.27-19.49-30.71C815.14 69.06 768.89 28.52 715.45 0.01h-3.28C766.49 28.47 813.47 69.35 849.23 119.47z M302.18 399.49c5.18-3.41 10.53-6.72 15.92-10.06c8.75-5.42 17.81-11.02 26.37-17.22c8.01-5.81 13.65-10.77 18.28-16.11c2.42-2.76 4.6-5.73 6.52-8.86c6.8-11.12 9.5-23.42 9.51-35.55c0-18.21-6.1-36.04-13.63-49.02c-8.94-15.42-20.69-28.03-33.13-41.38c-5.67-6.08-11.53-12.38-17.09-18.94c-5.61-6.62-11.12-13.75-16.36-21.2c-23.3-33.12-40.34-70.83-53.93-103.34c-14.35-34.37-21.76-61.96-20.95-77.8c0 0-3.81 0-3.81 0c-1.04 22.1 12.8 59.04 21.25 79.27c13.68 32.7 30.82 70.64 54.33 104.06c5.31 7.55 10.89 14.77 16.57 21.47c5.61 6.63 11.51 12.97 17.21 19.08c12.29 13.18 23.89 25.64 32.62 40.68c12 20.72 20.3 54.28 4.15 80.69c-1.8 2.95-3.85 5.74-6.13 8.35c-4.43 5.1-9.88 9.89-17.64 15.52c-8.45 6.12-17.44 11.69-26.14 17.07c-5.43 3.35-10.81 6.68-16.02 10.12c-20.76 13.7-37.14 31.14-43.82 46.67c-7.56 17.6-7.96 30.92-8.49 49.35l-0.28 7.8c-0.3 7.96-0.64 16.79-0.16 26.44h3.82c-0.5-9.57-0.16-18.37 0.14-26.3l0.28-7.83c0.55-18.68 0.9-31.03 8.19-47.96C266.16 429.62 282.01 412.79 302.18 399.49z M292.07 400.3c5.08-3.27 10.3-6.44 15.58-9.64c8.96-5.44 18.21-11.06 26.98-17.3c8.06-5.76 13.74-10.71 18.4-16.01c2.43-2.76 4.63-5.72 6.56-8.85c6.8-11.04 9.51-23.24 9.51-35.28c0.01-18.3-6.27-36.25-13.97-49.28c-9-15.2-20.74-27.6-33.17-40.74c-5.88-6.2-11.96-12.63-17.7-19.35c-5.67-6.64-11.2-13.78-16.44-21.23c-23.66-33.66-40.22-71.46-53.3-104c-13.99-34.88-20.77-62.74-19.17-78.61l-3.87 0c-2.07 22.26 11.26 59.58 19.47 80.06c13.17 32.75 29.84 70.81 53.73 104.79c5.3 7.55 10.91 14.78 16.66 21.51c5.8 6.8 11.91 13.26 17.82 19.51c12.27 12.97 23.87 25.22 32.64 40.05c12.22 20.67 20.74 54.17 4.49 80.57c-1.82 2.94-3.88 5.73-6.17 8.32c-4.46 5.08-9.93 9.83-17.75 15.4c-8.65 6.16-17.84 11.74-26.74 17.14c-5.3 3.22-10.55 6.4-15.65 9.69c-20.84 13.43-37.56 30.6-44.73 45.93c-8.02 17.12-9.29 30.11-10.41 49.47l-0.39 6.4c-0.53 8.33-1.11 17.57-0.72 27.75h3.89c-0.39-10.06 0.18-19.23 0.7-27.51l0.39-6.42c1.09-18.84 2.17-31.24 10.05-48.06C255.64 429.91 271.82 413.34 292.07 400.3z M281.97 401.09c4.95-3.1 10.05-6.14 15.18-9.19c9.17-5.45 18.66-11.09 27.63-17.39c8.11-5.7 13.82-10.6 18.52-15.89c2.45-2.75 4.66-5.7 6.61-8.83c6.41-10.54 9.71-22.69 9.53-35.03c0-18.4-6.44-36.44-14.33-49.52c-9.05-15-20.77-27.2-33.19-40.12c-6.07-6.34-12.38-12.89-18.29-19.77c-5.72-6.63-11.28-13.78-16.52-21.24c-24.12-34.32-40.82-73.97-52.68-104.67c-13.63-35.39-19.79-63.53-17.4-79.43L203.06 0c-3.08 22.37 9.71 60.11 17.71 80.85c11.93 30.91 28.76 70.84 53.13 105.51c5.32 7.57 10.96 14.82 16.76 21.55c6 6.97 12.33 13.56 18.45 19.93c12.25 12.76 23.82 24.8 32.65 39.43c13.42 22.25 20.12 55.77 4.82 80.44c-1.83 2.94-3.9 5.71-6.2 8.29c-4.49 5.06-9.99 9.77-17.84 15.29c-8.86 6.21-18.27 11.82-27.38 17.23c-5.17 3.07-10.29 6.11-15.27 9.24c-20.91 13.15-37.96 30.04-45.62 45.17c-9 17.75-10.72 31.17-12.32 49.61l-0.44 5.05c-0.73 8.28-1.61 18.19-1.33 29.01h3.94c-0.28-10.53 0.55-20.07 1.31-28.66l0.44-5.06c1.56-17.98 3.23-31.05 11.9-48.16C245.12 430.19 261.64 413.88 281.97 401.09z M312.27 398.72c5.29-3.57 10.77-7.03 16.29-10.51c8.55-5.4 17.39-10.98 25.75-17.12c7.96-5.86 13.56-10.86 18.16-16.22c2.4-2.78 4.56-5.76 6.47-8.89c6.8-11.21 9.5-23.61 9.5-35.83c0-18.12-5.94-35.84-13.28-48.77c-8.88-15.64-20.65-28.46-33.12-42.04c-5.47-5.94-11.11-12.09-16.47-18.48c-5.6-6.67-11.08-13.8-16.28-21.19c-22.83-32.45-39.71-68.52-54.55-102.67c-14.69-33.88-22.73-61.18-22.71-76.99h-3.74c0.12 22.09 14.36 58.5 23.02 78.49c14.92 34.33 31.9 70.61 54.92 103.33c5.26 7.48 10.81 14.7 16.48 21.44c5.41 6.45 11.08 12.63 16.57 18.6c12.32 13.42 23.95 26.09 32.63 41.36c11.78 20.76 19.85 54.38 3.83 80.82c-1.8 2.95-3.85 5.76-6.11 8.38c-4.4 5.13-9.82 9.96-17.54 15.64c-8.25 6.07-17.04 11.61-25.53 16.97c-5.56 3.5-11.07 6.98-16.39 10.57c-20.69 13.98-36.74 31.72-42.92 47.43c-6.61 16.81-6.58 28.9-6.59 47.17l-0.01 4.97c-0.01 2.05-0.03 4.18-0.07 6.39c-0.27 8.34-0.14 16.69 0.37 25.02h3.76c-0.52-8.31-0.65-16.64-0.39-24.96c0.04-2.22 0.07-4.36 0.08-6.42l0.01-2.94v-2.05c-0.04-17.88-0.02-29.66 6.34-45.8C276.65 429.39 292.18 412.3 312.27 398.72z M0 8.46C2.12 5.81 4.45 3.34 7.02 1.1L6.08 0.01H0.15C0.1 0.06 0.05 0.12 0 0.17V8.46z M271.87 401.87c4.83-2.96 9.79-5.85 14.78-8.76c9.39-5.47 19.1-11.12 28.28-17.47c8.18-5.66 13.92-10.52 18.65-15.78c2.46-2.74 4.69-5.69 6.65-8.81c6.61-10.55 9.37-22.6 9.37-34.74c0-17.87-5.98-35.93-14.5-49.79c-9.1-14.8-20.83-26.81-33.24-39.54c-6.29-6.44-12.79-13.1-18.88-20.13c-5.89-6.8-11.44-13.9-16.6-21.27c-24.42-34.75-40.65-74.54-52.06-105.32c-13.26-35.89-18.8-64.35-15.62-80.25c0 0-4.07 0-4.07 0c-4.05 22.52 8.18 60.65 15.95 81.6c11.5 31.01 27.86 71.1 52.54 106.24c5.24 7.48 10.87 14.69 16.85 21.59c6.18 7.12 12.72 13.83 19.04 20.31c12.25 12.57 23.82 24.43 32.69 38.85c13.66 22.21 20.55 55.66 5.15 80.32c-1.83 2.93-3.92 5.68-6.23 8.25c-4.51 5.02-10.04 9.7-17.95 15.17c-9.06 6.26-18.7 11.88-28.02 17.31c-5.03 2.93-10.01 5.83-14.87 8.81c-21.3 13.09-38.25 29.28-46.52 44.42c-9.1 16.66-11.93 29.82-14.22 49.73l-0.43 3.79c-0.97 8.58-2.15 18.88-2 30.18h4c-0.15-10.94 0.97-20.82 1.98-29.72l0.42-3.79c2.28-19.81 4.92-32.09 13.76-48.27C234.59 430.46 251.46 414.41 271.87 401.87z M295.28 377.94c8.27-5.54 14.11-10.34 18.89-15.57c2.5-2.72 4.76-5.66 6.75-8.77c6.62-10.43 9.39-22.29 9.39-34.26c0.01-18.03-6.29-36.29-15.21-50.26c-9.22-14.42-20.95-26.08-33.36-38.43c-6.67-6.64-13.58-13.51-20.02-20.82c-5.97-6.79-11.57-13.9-16.76-21.3c-25.24-35.94-41.09-78.08-50.81-106.65C181.59 45 177.32 15.96 182.06 0.01h-4.29c-5.99 22.8 5.13 61.72 12.42 83.2c9.81 28.81 25.8 71.32 51.34 107.7c5.28 7.53 10.96 14.76 17.04 21.67c6.53 7.41 13.48 14.32 20.21 21.01c12.24 12.18 23.81 23.68 32.78 37.72c14.14 22.13 21.43 55.46 5.82 80.07c-1.86 2.91-3.97 5.65-6.31 8.19c-4.55 4.97-10.15 9.58-18.14 14.94c-5.11 3.42-10.39 6.63-15.69 9.71c2.74-1.66 5.46-3.36 8.14-5.13c8.33-5.5 14.2-10.26 19.02-15.46c2.52-2.71 4.79-5.64 6.79-8.75c6.62-10.37 9.4-22.15 9.4-34.03c0-18.11-6.45-36.47-15.58-50.47c-9.27-14.25-21-25.73-33.42-37.89c-6.87-6.74-13.98-13.69-20.58-21.14c-6.01-6.78-11.63-13.9-16.84-21.33c-25.49-36.31-40.85-78.63-50.19-107.31c-12.11-37.38-15.75-66.72-10.23-82.7h-4.41c-6.98 22.93 3.62 62.26 10.67 83.99c9.42 28.94 24.92 71.65 50.73 108.42c5.29 7.56 11.02 14.8 17.14 21.71c6.7 7.54 13.86 14.56 20.79 21.35c12.24 12 23.81 23.33 32.84 37.19c14.38 22.07 21.86 55.36 6.15 79.95c-1.87 2.9-3.99 5.63-6.34 8.15c-4.59 4.94-10.22 9.52-18.25 14.81c-3.46 2.28-6.99 4.46-10.57 6.58c1.02-0.64 2.03-1.28 3.03-1.93c8.39-5.45 14.29-10.18 19.14-15.36c2.54-2.7 4.83-5.62 6.84-8.73c6.62-10.31 9.41-22 9.41-33.8c0-18.18-6.61-36.62-15.93-50.68c-9.34-14.08-21.08-25.4-33.5-37.39c-7.07-6.82-14.37-13.86-21.14-21.43c-6.05-6.78-11.7-13.9-16.92-21.35c-19.58-27.9-35.32-62.21-49.56-107.97c-11.76-37.87-14.75-67.51-8.45-83.5h-4.54c-7.55 21.83 0.6 57.97 8.93 84.78c14.37 46.19 30.3 80.87 50.14 109.15c5.31 7.58 11.06 14.84 17.23 21.75c6.86 7.67 14.23 14.78 21.35 21.65c12.25 11.82 23.82 22.99 32.91 36.68c14.61 22.04 22.28 55.25 6.47 79.82c-1.87 2.89-4 5.61-6.37 8.11c-4.6 4.92-10.26 9.45-18.35 14.7c-2.12 1.38-4.27 2.71-6.44 4.02c7.86-5.1 13.5-9.62 18.17-14.55c2.56-2.69 4.87-5.61 6.9-8.72c6.64-10.25 9.44-21.86 9.44-33.59c0-18.26-6.77-36.77-16.29-50.88c-9.4-13.92-21.15-25.08-33.59-36.9c-7.25-6.9-14.75-14.03-21.68-21.71c-6.09-6.77-11.77-13.91-16.99-21.37c-19.74-28.14-35.29-62.66-48.94-108.62c-11.36-38.36-13.72-68.3-6.65-84.33h-4.68c-8.46 21.97-0.85 58.45 7.18 85.56c13.79 46.43 29.53 81.35 49.55 109.88c5.32 7.61 11.11 14.88 17.32 21.78c7.03 7.81 14.6 14.99 21.91 21.95c12.26 11.65 23.84 22.66 32.99 36.19c14.86 21.98 22.72 55.15 6.8 79.69c-1.88 2.89-4.02 5.6-6.4 8.09c-4.63 4.89-10.32 9.39-18.45 14.58c-1.13 0.72-2.27 1.43-3.41 2.13c6.39-4.28 11.2-8.23 15.28-12.49c2.57-2.68 4.9-5.59 6.93-8.69c6.66-10.19 9.46-21.73 9.46-33.38c0-18.32-6.92-36.93-16.66-51.07c-9.47-13.76-21.78-25.29-33.68-36.43c-7.44-6.97-15.13-14.17-22.21-21.97c-6.13-6.76-11.83-13.91-17.07-21.39c-19.62-27.98-35.43-63.74-48.32-109.29C142.7 46.33 140.97 16.1 148.8 0.04l-0.03-0.03h-4.74c-9.37 22.09-2.3 58.94 5.43 86.34c13.02 46.03 29.04 82.21 48.95 110.61c5.34 7.63 11.15 14.92 17.41 21.82c7.2 7.92 14.96 15.19 22.46 22.21c12.27 11.49 23.86 22.35 33.06 35.72c15.1 21.93 23.15 55.03 7.14 79.56c-1.89 2.88-4.04 5.58-6.43 8.06c-4.64 4.86-10.36 9.32-18.55 14.46c-0.31 0.19-0.62 0.39-0.93 0.58c5.24-3.62 9.37-7.06 12.93-10.75c2.59-2.67 4.93-5.57 6.98-8.67c6.68-10.15 9.49-21.61 9.49-33.19c0-18.39-7.08-37.08-17.03-51.26c-9.53-13.6-21.85-24.97-33.77-35.96c-7.63-7.04-15.52-14.32-22.75-22.23c-6.18-6.75-11.91-13.9-17.15-21.4c-19.77-28.21-35.37-64.17-47.69-109.95c-10.54-39.26-11.64-69.74-3.09-85.86l-0.2-0.1h-4.72c-10.26 22.23-3.73 59.42 3.7 87.11c12.45 46.28 28.27 82.7 48.34 111.35c5.36 7.66 11.2 14.96 17.51 21.86c7.36 8.04 15.32 15.38 23.02 22.48c12.29 11.33 23.89 22.03 33.14 35.24c14.84 21.18 23.51 55.07 7.47 79.45c-1.9 2.87-4.06 5.55-6.47 8.02c-4.46 4.62-9.91 8.86-17.55 13.67c4.35-3.1 7.91-6.1 11.03-9.3c2.61-2.65 4.97-5.55 7.04-8.65c6.58-9.93 9.32-21.27 9.32-32.75c0-18.74-7.32-37.84-17.21-51.7c-9.59-13.45-21.94-24.67-33.87-35.52c-7.81-7.1-15.89-14.44-23.28-22.45c-6.22-6.75-11.97-13.9-17.22-21.42c-19.92-28.42-35.31-64.6-47.07-110.6c-10.12-39.67-10.58-70.43-1.31-86.6l-0.33-0.18h-4.7c-11.15 22.36-5.17 59.9 1.96 87.9c11.89 46.54 27.51 83.2 47.74 112.08c5.37 7.69 11.26 15 17.61 21.9c7.52 8.15 15.68 15.56 23.55 22.73c12.3 11.18 23.91 21.74 33.24 34.8c15.07 21.12 23.93 54.96 7.79 79.31c-1.91 2.86-4.08 5.54-6.5 7.99c-4.13 4.23-9.11 8.14-15.9 12.45c3.63-2.66 6.68-5.28 9.42-8.04c2.63-2.65 5-5.54 7.08-8.64c6.58-9.88 9.34-21.14 9.34-32.54c0-18.81-7.49-37.99-17.57-51.88c-9.67-13.31-22.03-24.39-34-35.1c-7.99-7.15-16.26-14.55-23.79-22.65c-6.25-6.74-12.03-13.91-17.3-21.45c-20.03-28.61-35.22-65.01-46.43-111.26c-9.7-40.09-9.53-71.11 0.45-87.35l-0.42-0.25h-4.72c-12.04 22.48-6.61 60.4 0.23 88.68c11.35 46.82 26.77 83.71 47.15 112.82c5.39 7.71 11.3 15.04 17.7 21.94c7.68 8.25 16.02 15.72 24.09 22.94c12.32 11.04 23.96 21.46 33.34 34.38c15.3 21.08 24.38 54.85 8.12 79.18c-1.92 2.85-4.1 5.52-6.53 7.95c-3.88 3.93-8.5 7.57-14.65 11.52c3.09-2.31 5.76-4.62 8.17-7.04c2.65-2.63 5.04-5.52 7.13-8.61c6.61-9.83 9.37-21.03 9.37-32.37c0-18.87-7.65-38.12-17.94-52.05c-9.73-13.17-22.12-24.11-34.11-34.68c-8.17-7.21-16.63-14.66-24.3-22.86c-6.3-6.73-12.1-13.91-17.38-21.46c-20.18-28.82-35.16-65.43-45.82-111.91c-9.26-40.52-8.48-71.81 2.22-88.1l-0.49-0.33h-4.76c-12.91 22.61-8.03 60.87-1.5 89.47c10.79 47.08 26.02 84.22 46.55 113.54c5.4 7.74 11.35 15.09 17.8 21.98c7.82 8.36 16.36 15.89 24.62 23.17c12.35 10.89 24.01 21.17 33.44 33.95c15.53 21.02 24.81 54.71 8.46 79.05c-1.93 2.84-4.12 5.49-6.56 7.92c-3.59 3.59-7.8 6.93-13.25 10.48c2.52-1.94 4.76-3.9 6.81-5.94c2.67-2.62 5.07-5.5 7.18-8.59c6.62-9.78 9.39-20.91 9.39-32.18c0-18.94-7.82-38.26-18.31-52.22c-9.8-13.03-22.22-23.83-34.22-34.27c-8.35-7.26-16.99-14.77-24.81-23.05c-6.33-6.73-12.17-13.91-17.46-21.48c-20.3-29.01-35.08-65.83-45.2-112.58c-8.83-40.94-7.42-72.5 3.99-88.85l-0.59-0.4h-4.79c-13.79 22.73-9.47 61.35-3.23 90.24c10.25 47.37 25.28 84.75 45.94 114.28c5.42 7.76 11.41 15.12 17.9 22.02c7.97 8.46 16.7 16.04 25.14 23.37c12.37 10.75 24.05 20.91 33.55 33.54c15.77 20.98 25.24 54.63 8.79 78.93c-1.94 2.84-4.15 5.48-6.6 7.89c-3.33 3.3-7.19 6.38-12.07 9.59c2.06-1.63 3.93-3.27 5.67-4.98c2.68-2.62 5.11-5.49 7.23-8.58c6.63-9.73 9.41-20.8 9.41-32.01c0-19-7.98-38.39-18.68-52.39c-9.86-12.9-22.32-23.57-34.35-33.87c-8.53-7.31-17.35-14.86-25.32-23.24c-6.37-6.72-12.24-13.91-17.53-21.51c-20.42-29.18-35-66.22-44.58-113.23c-8.41-41.36-6.36-73.19 5.75-89.6l-0.63-0.45h-4.85c-14.67 22.85-10.89 61.84-4.96 91.02c9.71 47.67 24.55 85.29 45.35 115.02c5.44 7.79 11.45 15.16 17.99 22.06c8.14 8.56 17.05 16.19 25.67 23.58c12.39 10.61 24.1 20.63 33.66 33.14c16 20.92 25.68 54.51 9.11 78.8c-1.95 2.83-4.16 5.46-6.62 7.86c-3.11 3.05-6.7 5.91-11.14 8.86c1.7-1.37 3.27-2.76 4.74-4.19c2.7-2.61 5.14-5.47 7.28-8.56c6.66-9.69 9.44-20.7 9.45-31.84c0-19.06-8.16-38.52-19.06-52.54c-9.93-12.78-22.41-23.31-34.47-33.49c-8.71-7.35-17.71-14.95-25.81-23.41c-6.41-6.71-12.3-13.91-17.61-21.52c-20.25-28.95-35.04-67.27-43.96-113.88c-7.97-41.79-5.3-73.89 7.52-90.36l-0.69-0.55h-4.91C69.32 23 72.55 62.34 78.17 91.81c9.05 47.29 24.1 86.23 44.74 115.75c5.45 7.82 11.5 15.21 18.09 22.1c8.28 8.64 17.38 16.33 26.18 23.75c12.42 10.49 24.16 20.39 33.77 32.77c16.23 20.88 26.1 54.4 9.44 78.67c-1.95 2.82-4.18 5.44-6.65 7.82c-2.89 2.8-6.18 5.44-10.18 8.12c1.35-1.11 2.62-2.24 3.82-3.4c2.72-2.59 5.17-5.45 7.32-8.54c6.34-9.33 9.66-20.4 9.48-31.68c0-19.11-8.33-38.64-19.43-52.69c-10-12.65-22.51-23.05-34.6-33.11c-8.89-7.39-18.07-15.03-26.32-23.57c-6.45-6.7-12.37-13.9-17.69-21.53C95.78 177.14 81.2 138.6 72.81 91.73c-5.33-29.86-8.05-69.91 9.28-91.12l-0.71-0.6h-4.99c-16.4 23.11-13.71 62.81-8.41 92.58c8.52 47.58 23.37 86.77 44.15 116.49c5.47 7.84 11.55 15.24 18.18 22.13c8.43 8.74 17.72 16.46 26.71 23.93c12.46 10.35 24.22 20.14 33.9 32.38c16.99 21.48 25.79 55.37 9.77 78.53c-1.96 2.82-4.2 5.42-6.69 7.79c-2.66 2.56-5.66 4.97-9.24 7.41c1.01-0.86 1.98-1.72 2.92-2.61c2.74-2.58 5.21-5.44 7.37-8.52c6.51-9.33 9.3-20.2 9.3-31.35c0.01-18.91-8.03-38.62-19.59-53.02c-10.07-12.53-22.61-22.8-34.74-32.75c-9.05-7.42-18.42-15.1-26.8-23.71c-6.49-6.7-12.43-13.91-17.76-21.56c-20.47-29.29-34.84-68.04-42.72-115.19c-5.02-30.15-7.17-70.58 11.04-91.89L73 0.01h-5.08C50.66 23.25 52.8 63.31 57.8 93.37c8 47.89 22.65 87.33 43.55 117.22c5.48 7.87 11.6 15.29 18.28 22.17c8.57 8.83 18.05 16.59 27.21 24.1c12.48 10.23 24.27 19.89 34.02 32.02c17.22 21.43 26.23 55.24 10.1 78.4c-1.97 2.8-4.22 5.4-6.71 7.76c-2.44 2.31-5.16 4.51-8.34 6.7c0.7-0.6 1.37-1.21 2.03-1.83c2.76-2.57 5.24-5.43 7.42-8.51c6.52-9.29 9.32-20.11 9.32-31.2c0-18.97-8.19-38.75-19.97-53.16c-10.14-12.41-22.72-22.57-34.88-32.39c-9.23-7.45-18.78-15.16-27.29-23.86c-6.53-6.69-12.5-13.9-17.84-21.57c-20.58-29.45-34.74-68.43-42.1-115.85C47.89 62.9 46.29 22.1 65.42 0.72l-0.8-0.71h-5.17C41.34 23.37 42.92 63.79 47.62 94.14c7.47 48.19 21.92 87.87 42.94 117.96c5.5 7.9 11.65 15.33 18.38 22.22c8.71 8.91 18.38 16.71 27.72 24.25c12.51 10.11 24.34 19.66 34.14 31.66c17.48 21.38 26.66 55.14 10.42 78.27c-1.98 2.8-4.24 5.39-6.74 7.73c-2.23 2.1-4.7 4.09-7.55 6.08c0.43-0.38 0.86-0.77 1.28-1.16c2.78-2.56 5.28-5.4 7.47-8.48c6.54-9.26 9.35-20.02 9.35-31.05c0-19.02-8.35-38.86-20.35-53.3c-10.22-12.3-22.83-22.34-35.03-32.05c-9.4-7.48-19.12-15.21-27.77-23.98c-6.57-6.68-12.56-13.9-17.92-21.59c-20.68-29.61-34.63-68.81-41.47-116.5c-4.4-30.76-5.43-71.94 14.58-93.42l-0.81-0.77h-5.27c-18.97 23.5-17.93 64.26-13.55 94.9c6.96 48.49 21.2 88.43 42.35 118.7c5.52 7.93 11.69 15.37 18.46 22.26c8.86 8.99 18.7 16.82 28.22 24.4c12.55 9.99 24.41 19.42 34.28 31.32c17.7 21.32 27.09 55 10.75 78.14c-1.99 2.79-4.26 5.37-6.77 7.69c-2.03 1.89-4.26 3.69-6.79 5.48c0.18-0.16 0.36-0.33 0.54-0.49c2.79-2.55 5.31-5.39 7.52-8.46c6.56-9.23 9.39-19.93 9.39-30.91c0-19.07-8.52-38.97-20.72-53.44c-10.28-12.18-22.94-22.11-35.18-31.71c-9.57-7.5-19.47-15.27-28.24-24.11c-6.61-6.67-12.63-13.91-18-21.62C52.47 182.4 38.72 142.99 32.4 95.02C28.31 63.96 27.83 22.4 48.75 0.83l-0.86-0.82h-5.37C22.7 23.63 23.19 64.75 27.26 95.7c6.43 48.8 20.48 88.98 41.74 119.43c5.54 7.96 11.75 15.42 18.57 22.31c9 9.06 19.03 16.93 28.72 24.53c12.59 9.87 24.47 19.2 34.41 30.98c17.96 21.26 27.52 54.89 11.08 78.01c-1.99 2.78-4.27 5.34-6.8 7.65c-1.84 1.7-3.85 3.32-6.08 4.92c2.75-2.5 5.24-5.28 7.42-8.3c6.58-9.2 9.42-19.85 9.42-30.77c0.01-19.12-8.68-39.08-21.11-53.57c-10.36-12.07-23.05-21.89-35.32-31.38c-9.74-7.53-19.82-15.32-28.72-24.23c-6.65-6.66-12.69-13.9-18.07-21.63C41.64 183.74 28.1 144.1 22.28 95.85C18.51 64.49 18.6 22.55 40.4 0.9l-0.88-0.89h-5.47C13.39 23.75 13.33 65.24 17.08 96.48c5.93 49.12 19.77 89.55 41.14 120.17c5.55 7.98 11.8 15.46 18.66 22.34c9.15 9.14 19.35 17.03 29.23 24.66c12.62 9.76 24.55 18.98 34.55 30.64c18.19 21.22 27.95 54.78 11.4 77.89c-2.01 2.77-4.3 5.33-6.84 7.62c-1.64 1.49-3.39 2.92-5.33 4.32c2.48-2.32 4.74-4.88 6.74-7.63c6.61-9.16 9.45-19.76 9.45-30.63c0.01-19.18-8.84-39.19-21.49-53.7c-10.42-11.97-23.17-21.67-35.48-31.06c-9.91-7.55-20.17-15.36-29.2-24.33c-6.69-6.65-12.76-13.9-18.14-21.64c-20.98-30.06-34.3-69.91-39.62-118.45C8.71 65.02 9.35 22.7 32.03 0.95l-0.87-0.94h-5.57C4.08 23.88 3.47 65.72 6.91 97.25c5.41 49.43 19.05 90.11 40.54 120.91c5.57 8.01 11.84 15.5 18.75 22.38c9.28 9.21 19.67 17.13 29.72 24.79c12.66 9.64 24.62 18.76 34.7 30.32c17.98 20.64 28.21 54.91 11.73 77.74c-2.01 2.77-4.31 5.31-6.87 7.59c-1.45 1.3-2.99 2.56-4.67 3.8c2.25-2.15 4.31-4.5 6.16-7.02c6.35-8.89 9.67-19.58 9.49-30.5c0-19.23-9.02-39.29-21.88-53.82c-10.5-11.86-23.28-21.46-35.63-30.74c-10.08-7.57-20.5-15.4-29.67-24.43c-6.72-6.65-12.83-13.91-18.23-21.67c-21.07-30.2-34.19-70.27-39-119.1C-1.09 65.54 0.13 22.85 23.7 1l-0.91-0.99H17.1C8.72 9.01 3.31 20.58 0 33.21v89.69c6.48 38.65 18.76 71.13 36.65 96.78c5.59 8.03 11.9 15.54 18.86 22.42c9.42 9.28 19.99 17.22 30.21 24.9c12.7 9.54 24.7 18.55 34.84 30.01c18.22 20.58 28.65 54.77 12.06 77.62c-2.02 2.76-4.33 5.29-6.9 7.55c-1.25 1.12-2.58 2.2-4 3.27c2.02-1.98 3.88-4.11 5.56-6.39c6.52-8.93 9.32-19.36 9.32-30.08c0.01-19.49-9.22-39.98-22.05-54.24c-10.57-11.76-23.39-21.25-35.8-30.43c-10.25-7.58-20.84-15.43-30.13-24.52c-6.76-6.64-12.89-13.9-18.3-21.69C16.83 198.75 6.69 175.35 0 148.2v19.78c6.54 20.08 15.17 37.87 25.87 53.21c5.61 8.06 11.95 15.58 18.96 22.46c9.56 9.36 20.3 17.31 30.7 25c12.74 9.43 24.78 18.35 34.98 29.7c18.46 20.53 29.06 54.66 12.39 77.49c-2.03 2.75-4.35 5.27-6.93 7.52c-1.07 0.94-2.19 1.86-3.37 2.76c1.81-1.81 3.49-3.75 5.01-5.8c6.54-8.89 9.34-19.27 9.34-29.95c0.01-19.54-9.39-40.08-22.43-54.36C93.87 284.35 81 274.96 68.56 265.88c-10.41-7.6-21.18-15.46-30.6-24.61c-6.8-6.63-12.95-13.9-18.37-21.7C11.95 208.61 5.42 196.34 0 182.84v13.72c4.44 9.37 9.47 18.09 15.08 26.14c5.62 8.09 12 15.63 19.06 22.51c9.69 9.42 20.61 17.39 31.19 25.11c12.78 9.33 24.86 18.14 35.13 29.39c18.69 20.47 29.51 54.54 12.71 77.35c-2.04 2.74-4.37 5.25-6.96 7.49c-0.89 0.77-1.81 1.53-2.78 2.28c1.61-1.64 3.11-3.39 4.49-5.23c6.57-8.87 9.39-19.2 9.39-29.84c0-19.58-9.56-40.18-22.82-54.47c-10.71-11.56-23.63-20.85-36.11-29.83c-10.58-7.61-21.53-15.49-31.07-24.7c-6.84-6.63-13.01-13.9-18.45-21.72c-3.15-4.52-6.1-9.26-8.86-14.22v10.91c1.39 2.21 2.82 4.38 4.3 6.5c5.64 8.12 12.05 15.67 19.15 22.54c9.83 9.48 20.93 17.48 31.68 25.21c12.26 8.82 24.94 17.94 35.28 29.09c18.93 20.42 29.93 54.41 13.04 77.22c-2.05 2.73-4.39 5.23-6.98 7.46c-0.73 0.63-1.48 1.25-2.27 1.86c1.44-1.5 2.78-3.08 4.03-4.74c6.6-8.84 9.43-19.13 9.43-29.72c0-19.63-9.73-40.27-23.2-54.59c-10.79-11.46-23.75-20.65-36.28-29.54c-10.75-7.62-21.86-15.51-31.52-24.77C10.55 238.36 4.99 231.97 0 225.12v9.25c3.96 4.91 8.22 9.57 12.76 13.94c9.96 9.55 21.25 17.55 32.16 25.3c12.3 8.73 25.03 17.75 35.43 28.81c19.16 20.36 30.36 54.3 13.36 77.08c-2.05 2.73-4.41 5.22-7.01 7.42c-0.54 0.46-1.1 0.92-1.67 1.37c1.24-1.32 2.42-2.71 3.52-4.16c6.32-8.56 9.65-18.96 9.46-29.6c0.01-19.67-9.9-40.37-23.59-54.69c-10.86-11.37-23.87-20.46-36.45-29.26c-10.91-7.63-22.19-15.53-31.98-24.84c-2.06-1.97-4.05-4-5.99-6.09v8.15c0.69 0.69 1.38 1.37 2.09 2.05c10.09 9.61 21.55 17.63 32.64 25.38c12.35 8.64 25.12 17.57 35.59 28.52c19.41 20.3 30.8 54.17 13.69 76.95c-2.06 2.72-4.43 5.2-7.04 7.39c-0.36 0.3-0.72 0.6-1.09 0.9c1.06-1.15 2.06-2.35 3.01-3.59c6.34-8.51 9.68-18.89 9.5-29.5c0-19.72-10.07-40.45-23.98-54.79c-10.93-11.27-23.99-20.27-36.62-28.97C18.4 265.67 8.75 259 0 251.42v7.54c7.91 6.47 16.31 12.28 24.52 17.93c12.39 8.54 25.21 17.38 35.75 28.24c19.92 20.54 30.6 54.87 14.01 76.82c-2.07 2.71-4.45 5.18-7.07 7.36c-0.21 0.18-0.43 0.36-0.65 0.53c0.92-1.01 1.8-2.06 2.63-3.15c6.36-8.47 9.72-18.81 9.54-29.4c0.01-19.77-10.25-40.55-24.37-54.89c-11.01-11.19-24.12-20.09-36.79-28.7c-5.85-3.98-11.79-8.03-17.57-12.32v7.2c4.75 3.42 9.57 6.71 14.32 9.94c12.44 8.46 25.3 17.2 35.91 27.97c20.16 20.47 31.03 54.75 14.34 76.68c-2.08 2.7-4.47 5.16-7.1 7.32c-0.04 0.04-0.09 0.07-0.13 0.11c0.76-0.85 1.49-1.73 2.18-2.63c6.51-8.5 9.35-18.58 9.35-29.05c0-19.69-10.03-40.74-24.52-55.24c-11.09-11.09-24.24-19.91-36.96-28.44c-2.45-1.64-4.92-3.3-7.39-4.98v7.1c1.37 0.93 2.74 1.85 4.11 2.76c12.49 8.36 25.4 17.02 36.08 27.7c20.4 20.42 31.46 54.64 14.66 76.55c-1.99 2.57-4.26 4.91-6.77 6.98c0.6-0.69 1.19-1.4 1.75-2.13c6.52-8.45 9.36-18.48 9.36-28.89c0-19.72-10.19-40.84-24.87-55.39C23.96 294.76 11.87 286.53 0 278.67v7.16c10.56 7.06 21.12 14.5 30.14 23.38c20.61 20.39 31.84 54.55 14.98 76.41c-1.87 2.4-3.99 4.6-6.32 6.57c0.46-0.54 0.92-1.09 1.36-1.66c6.55-8.45 9.41-18.44 9.41-28.82c0-19.76-10.36-40.92-25.28-55.46C16.83 299.02 8.5 292.79 0 286.98v7.34c7.08 4.98 13.95 10.28 20.1 16.24c20.85 20.31 32.29 54.41 15.3 76.27c-1.76 2.24-3.73 4.29-5.89 6.15c0.32-0.39 0.64-0.78 0.96-1.17c6.6-8.43 9.47-18.4 9.47-28.75c0.01-19.8-10.53-41-25.68-55.53c-4.49-4.29-9.3-8.22-14.26-11.92v7.69c3.48 2.73 6.85 5.58 10.02 8.62c21.11 20.25 32.73 54.27 15.63 76.13c-1.65 2.09-3.5 4.03-5.51 5.78c0.21-0.25 0.41-0.5 0.61-0.76c6.38-8.21 9.74-18.32 9.55-28.68c0.01-19.85-10.71-41.08-26.09-55.6c-1.38-1.3-2.78-2.56-4.21-3.8v8.27c21.36 20.19 33.17 54.12 15.96 76C11.65 394.75 5.9 398.87 0 402.07v42.02c1.87-1.08 3.79-2.15 5.79-3.21c-0.75 0.47-1.49 0.93-2.21 1.4c-1.21 0.78-2.4 1.57-3.58 2.37v6.44c2.1-1.46 4.24-2.91 6.45-4.34c4.02-2.59 8.38-5.14 13.12-7.67c-1.73 1.07-3.4 2.15-5.02 3.24c-5.21 3.5-10.03 7.05-14.55 10.7v6.82c5.32-4.53 11.1-8.89 17.47-13.17c4.71-3.17 9.95-6.29 15.76-9.4c-2.7 1.68-5.26 3.36-7.69 5.07C15.77 449.17 7.37 456.17 0 463.68v7.55c8.02-8.8 17.33-16.84 28.51-24.66c5.56-3.89 11.84-7.72 18.89-11.49c-3.91 2.41-7.54 4.84-10.88 7.28C21.33 453.47 9.6 464.9 0 478.1v9.01c10.02-15.37 22.54-28.19 39.53-40.62c6.15-4.5 13.34-8.96 21.52-13.37c-4.95 3.06-9.47 6.15-13.56 9.27c-20.28 15.48-34.1 31.42-44.8 51.68c-0.57 1.09-1.14 2.19-1.7 3.3c-0.32 0.64-0.65 1.32-0.99 2v12.52c1.81-4.67 3.77-8.81 5.5-12.26c0.54-1.08 1.09-2.15 1.65-3.21c10.49-19.85 23.46-34.81 43.41-50.03c6.87-5.24 15.03-10.42 24.43-15.5c-6.12 3.78-11.62 7.62-16.5 11.51c-19.8 15.79-32.63 31.21-42.9 51.57c-0.54 1.07-1.08 2.17-1.61 3.28c-3.5 7.28-7.89 17.47-10.11 29.34h5.07c2.18-10.93 6.26-20.38 9.53-27.19c0.52-1.08 1.04-2.15 1.57-3.2c9.92-19.67 22.35-34.6 41.56-49.92c7.44-5.93 16.67-11.89 27.35-17.69c-7.38 4.55-13.92 9.18-19.48 13.83c-19.03 15.88-31.29 31.27-40.98 51.45c-0.52 1.07-1.03 2.16-1.53 3.26c-3.35 7.31-7.55 17.56-9.62 29.45h4.99c2.03-10.99 5.95-20.54 9.09-27.41c0.49-1.07 0.99-2.13 1.49-3.18c9.37-19.51 21.24-34.41 39.7-49.81c8.1-6.76 18.38-13.52 30.38-20.03c-8.67 5.33-16.25 10.8-22.54 16.3c-18.25 15.95-29.93 31.3-39.07 51.33l-1.44 3.25c-3.19 7.35-7.21 17.66-9.11 29.55h4.89c1.8-10.77 5.42-20.16 8.66-27.62l1.41-3.17c8.94-19.62 19.91-34.01 37.84-49.69c8.67-7.57 19.9-15.12 33.13-22.31c-9.88 6.07-18.41 12.36-25.32 18.68c-17.7 16.21-28.46 31.05-37.16 51.22l-1.36 3.23c-3.28 7.98-6.94 18.07-8.62 29.67h4.84c1.65-10.82 5.11-20.31 8.21-27.84l1.32-3.16c8.41-19.5 18.84-33.87 35.99-49.58c9.27-8.49 21.6-16.93 36.25-24.85c-11.32 6.92-21.05 14.19-28.51 21.36c-16.87 16.22-27.08 31.02-35.24 51.09l-1.27 3.21c-3.11 8.02-6.59 18.17-8.11 29.77h4.76c1.5-10.87 4.79-20.46 7.75-28.07l1.24-3.15c7.89-19.4 17.79-33.74 34.14-49.46c9.53-9.16 22.95-18.52 38.73-27.09c-12.46 7.62-23.09 15.73-31.02 23.72c-16.05 16.21-25.7 30.98-33.33 50.98l-1.19 3.18c-2.94 8.08-6.22 18.3-7.58 29.89h4.68c1.35-10.92 4.47-20.6 7.27-28.3l1.16-3.12c7.38-19.34 16.74-33.65 32.29-49.36c9.94-10.03 24.34-20.27 41.36-29.48c-13.71 8.36-25.31 17.36-33.67 26.25c-15.41 16.37-24.22 30.63-31.41 50.85l-1.11 3.18c-2.76 8.13-5.98 18.45-7.15 29.99h4.68c1.19-11.04 4.16-20.71 6.82-28.51l1.08-3.12c6.96-19.56 15.49-33.38 30.44-49.24c10.19-10.83 25.41-21.88 43.5-31.67c-14.79 9.01-27.19 18.85-35.87 28.56c-14.55 16.29-22.83 30.52-29.5 50.73l-1.02 3.16c-2.6 8.2-5.45 18.48-6.51 30.09h4.51c1.01-10.77 3.69-20.41 6.32-28.73l1-3.1c6.46-19.56 14.48-33.34 28.58-49.13c10.44-11.69 26.53-23.6 45.78-33.97c-15.95 9.68-29.2 20.4-38.16 30.98c-13.69 16.18-21.43 30.36-27.6 50.61l-0.93 3.14c-2.55 8.76-5.12 18.91-6 30.2h4.47c0.87-10.77 3.35-20.53 5.8-28.95l0.92-3.09c5.97-19.6 13.47-33.35 26.73-49.02c10.52-12.43 28.02-25.6 48.36-36.47c-17.18 10.36-31.68 22.27-40.77 33.62c-13 16.22-19.96 29.9-25.69 50.48l-0.84 3.12c-2.36 8.83-4.74 19.07-5.46 30.31h4.39c0.72-10.77 3.03-20.64 5.31-29.18l0.84-3.07c5.56-19.94 12.3-33.2 24.88-48.91c10.59-13.23 28.9-27.3 50.27-38.63c-18.22 10.93-33.5 23.74-42.71 35.92c-12.12 16.04-18.57 29.69-23.77 50.36l-0.76 3.09c-2.26 9.35-4.34 19.42-4.91 30.42h4.32c0.55-10.59 2.6-20.33 4.79-29.4l0.76-3.06c5.05-20.05 11.29-33.28 23.02-48.8c10.22-13.52 28.3-27.89 49.61-39.45c0.86-0.47 1.73-0.93 2.59-1.4c-19.3 11.5-35.38 25.24-44.65 38.26c-11.25 15.8-17.17 29.42-21.86 50.24l-0.68 3.08c-2.05 9.46-3.94 19.6-4.36 30.53h4.26c0.42-11.04 2.38-20.96 4.26-29.63l0.67-3.05c4.61-20.47 10.15-33.21 21.18-48.7c9.77-13.74 27.53-28.37 48.7-40.15c2.12-1.17 4.26-2.34 6.41-3.5c-20.87 12.17-38.15 27.13-47.59 41.22c-10.52 15.71-15.74 28.83-19.96 50.11l-0.59 3.06c-1.73 9.02-3.5 19.33-3.79 30.64h4.2c0.29-10.97 2.02-21.04 3.72-29.86l0.58-3.02c4.1-20.69 9.16-33.4 19.32-48.6c9.34-13.95 26.76-28.83 47.8-40.84c4-2.28 8.08-4.52 12.19-6.77c-1.4 0.8-2.78 1.6-4.16 2.4c-21.49 12.57-39.1 28.21-48.32 42.91c-10.98 17.5-14.81 31.08-18.05 49.99l-0.47 2.82c-1.61 9.75-3.13 19.95-3.27 30.97h4.14c0.16-11.86 1.92-22.54 3.17-30.08l0.51-3.02c3.14-18.39 6.85-31.56 17.47-48.49c8.88-14.15 25.97-29.29 46.9-41.54c4.57-2.67 9.24-5.27 13.94-7.9c3.62-2.03 7.29-4.08 10.96-6.18c0.08-0.04 0.15-0.09 0.23-0.13C283.05 385.69 289.27 381.96 295.28 377.94z M261.76 402.68c4.7-2.81 9.53-5.57 14.38-8.33c9.6-5.48 19.54-11.16 28.94-17.55c8.23-5.61 14.02-10.44 18.78-15.68c2.48-2.73 4.73-5.68 6.7-8.8c6.6-10.48 9.37-22.44 9.37-34.49c0-17.95-6.14-36.12-14.86-50.02c-9.17-14.61-20.88-26.44-33.29-38.97c-6.49-6.55-13.19-13.33-19.46-20.5c-5.93-6.8-11.49-13.9-16.67-21.29c-24.71-35.18-40.46-75.12-51.43-105.99c-12.9-36.38-17.81-65.13-13.84-81.05h-4.18c-5.04 22.65 6.66 61.18 14.17 82.42c11.05 31.11 26.95 71.38 51.94 106.96c5.26 7.51 10.92 14.73 16.95 21.63c6.35 7.27 13.1 14.09 19.63 20.68c12.24 12.36 23.8 24.04 32.73 38.26c13.9 22.18 20.98 55.56 5.48 80.2c-1.84 2.91-3.94 5.67-6.26 8.22c-4.53 5-10.1 9.64-18.05 15.05c-8.39 5.71-17.27 10.87-25.96 15.83c-0.08 0.04-0.15 0.09-0.23 0.13c-0.83 0.47-1.66 0.95-2.49 1.42c-4.87 2.79-9.72 5.55-14.45 8.38c-21.38 12.82-38.67 28.73-47.42 43.66c-10 17.08-13.39 30.7-16.13 49.86l-0.42 3.02c-1.22 8.7-2.68 19.15-2.67 30.85h4.07c-0.01-11.43 1.43-21.72 2.63-30.29l0.42-3.01c2.73-19.07 5.9-31.79 15.62-48.37C224.05 430.76 241.25 414.98 261.76 402.68z M522.92 491.27c-0.55-0.9-1.11-1.78-1.68-2.64c-3.89-5.61-8.17-10.94-12.8-15.96c-7.95-9-15.47-17.52-18.21-29.85c-4.63-20.78 9.34-44.6 23.96-59.93c6.32-6.62 13.38-12.96 20.21-19.09c5.57-5 11.33-10.17 16.74-15.54c5.83-5.61 11.11-11.75 15.77-18.35c2.05-2.97 3.91-6.07 5.57-9.28c6.76-13.08 10.16-28.23 10.16-44.17c-0.08-13.94-2.5-27.76-7.16-40.89c-8.45-24.16-23.58-45.7-36.93-64.71c-4.87-6.91-9.75-13.82-14.66-20.73c-23.57-33.24-44.88-62.9-67.01-89.18c-22.37-26.6-41.62-47.08-57.27-60.94h-3.53l-0.1 0.11c15.91 13.78 35.76 34.78 59 62.42c22.07 26.2 43.35 55.82 66.9 89.02c4.89 6.89 9.79 13.81 14.65 20.71c13.25 18.88 28.28 40.27 36.62 64.11c10.12 28.99 9.05 60.06-2.87 83.13c-1.62 3.11-3.42 6.13-5.41 9.02c-4.58 6.47-9.75 12.49-15.46 17.99c-5.37 5.32-11.11 10.47-16.65 15.46c-6.87 6.16-13.95 12.53-20.34 19.22c-19.51 20.44-28.71 43.68-24.59 62.14c2.89 12.94 10.6 21.68 18.77 30.93c4.56 4.94 8.76 10.18 12.59 15.7c0.56 0.83 1.1 1.68 1.63 2.56c5.17 8.49 9.51 19.6 13.28 33.98c0.01 0.03 0.01 0.05 0.02 0.08h2.53c-0.06-0.24-0.12-0.47-0.18-0.69C532.64 511.3 528.21 499.97 522.92 491.27z M827.35 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C762.21 71.71 711.29 28.7 652.33 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C851.14 509.35 841.17 493.45 827.35 482.34z M810.72 480.77c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C746.28 71.11 696.51 28.69 638.91 0.01h-3.47C694 28.59 744.58 71.36 782.52 124.52c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.89 11.15 23.8 27.24 28.22 44.62h1.6C835.11 508.75 824.96 492.21 810.72 480.77z M819.16 480.77c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.5-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C754.72 71.11 704.95 28.69 647.35 0.01h-3.47c58.56 28.58 109.13 71.35 147.07 124.51c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.9 11.15 23.8 27.24 28.22 44.62h1.61C843.55 508.75 833.39 492.21 819.16 480.77z M836.81 483.5c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.89-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C771.16 72.15 719.39 28.7 659.42 0.01h-3.59c60.98 28.55 113.61 72.36 152.77 127.25c21.78 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.16 10.56 22.74 25.56 27.47 41.89h1.62C860.15 509.79 850.31 494.35 836.81 483.5z M801.7 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C736.56 71.71 685.64 28.7 626.68 0.01h-3.53c59.94 28.57 111.7 71.94 150.34 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C825.48 509.35 815.51 493.45 801.7 482.34z M845.48 483.5c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.9-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.92C779.83 72.15 728.06 28.7 668.09 0.01h-3.59c60.97 28.55 113.6 72.36 152.77 127.24c21.78 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c11.5 9.24 20.28 21.87 25.46 35.81v-4.2C864.56 503.56 856.17 492.09 845.48 483.5z M776.48 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C711.34 71.71 660.42 28.7 601.46 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C800.27 509.35 790.29 493.45 776.48 482.34z M767.78 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C702.64 71.71 651.72 28.7 592.76 0.01h-3.53c59.95 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C791.57 509.35 781.6 493.45 767.78 482.34z M793.69 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.22-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C728.55 71.71 677.63 28.7 618.67 0.01h-3.53c59.95 28.57 111.71 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C817.48 509.35 807.51 493.45 793.69 482.34z M785.84 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C720.7 71.71 669.78 28.7 610.82 0.01h-3.53c59.94 28.57 111.7 71.94 150.35 126.09c21.79 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C809.63 509.35 799.65 493.45 785.84 482.34z M848.21 418.21c5.09 9.3 13 16.1 21.75 21.97v-1.83c-8.33-5.65-15.57-12.06-20.41-20.87c-12.34-22.56-2.07-51.13 11.67-70.35c2.75-3.84 5.7-7.57 8.74-11.22v-2.39c-3.49 4.12-6.87 8.34-9.99 12.71C845.95 365.83 835.51 395.04 848.21 418.21z M838.05 422.8c7 12.81 19.37 20.89 31.91 28.3v-1.79c-12.48-7.39-23.86-15-30.57-27.24c-12.34-22.55-2.07-51.12 11.67-70.34c5.74-8.03 12.38-15.59 18.9-22.91v-2.31c-6.91 7.75-14.03 15.76-20.15 24.32C835.79 370.43 825.34 399.64 838.05 422.8z M867 214.27c-6.02-28.44-19.59-57.2-41.51-87.92C786.81 72.15 735.04 28.7 675.07 0.01h-3.59c60.97 28.55 113.6 72.36 152.76 127.24c21.79 30.54 35.28 59.12 41.25 87.34c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c7.36 5.9 13.59 13.19 18.49 21.32v-2.92c-4.78-7.43-10.68-14.1-17.5-19.59c-6.71-5.39-14.41-9.88-21.86-14.23c-14.35-8.38-27.9-16.29-35.48-30.13c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c9.63-10.78 19.58-21.92 26.98-34.62c8.84-15.17 14.1-32.68 15.63-51.35v-23.39C869.44 227.93 868.45 221.12 867 214.27z M869.96 347.59c-9.3 18.18-13.82 40.4-3.73 58.8c1.11 2.04 2.36 3.95 3.73 5.77v-2.62c-0.85-1.25-1.65-2.54-2.39-3.89c-9.29-16.97-5.77-37.34 2.39-54.58V347.59z M830.06 426.5c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.72 13.52-16.88 20.57-24.78c2.55-2.85 5.12-5.73 7.66-8.65v-2.35c-2.91 3.38-5.88 6.7-8.81 9.98c-7.08 7.94-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c1.73 1.01 3.47 2.03 5.21 3.06v-1.79c-1.48-0.87-2.95-1.73-4.42-2.61C851.19 448.25 837.65 440.34 830.06 426.5z M820.1 431.36c-12.34-22.56-2.07-51.13 11.67-70.35c6.23-8.72 13.52-16.88 20.57-24.78c5.98-6.69 12.08-13.52 17.62-20.78v-2.56c-5.82 7.83-12.36 15.15-18.77 22.32c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.61 36.04 30.72c5.08 2.96 10.27 5.99 15.17 9.32v-1.86c-4.68-3.12-9.58-5.98-14.38-8.78C841.23 453.11 827.69 445.19 820.1 431.36z M858.31 412.47c3.02 5.53 7.05 10.18 11.65 14.27v-2.03c-4.05-3.76-7.57-7.98-10.31-12.97c-11.94-21.8-2.73-49.23 10.31-68.4v-2.7C856 360.24 845.64 389.36 858.31 412.47z M847.12 464.53c-14.35-8.37-27.9-16.29-35.48-30.12c-12.34-22.56-2.07-51.13 11.67-70.35c6.23-8.71 13.52-16.88 20.57-24.78c9.25-10.34 18.78-21.02 26.08-33.09v-3.05c-0.15 0.26-0.29 0.51-0.44 0.76c-7.31 12.56-17.21 23.65-26.78 34.35c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c0.66 0.53 1.31 1.07 1.95 1.62v-2.01c-0.32-0.27-0.65-0.53-0.98-0.8C862.27 473.38 854.57 468.88 847.12 464.53z M859.47 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c3.4-5.85 6.28-12.04 8.61-18.51v-4.79c-2.52 7.94-5.85 15.49-9.95 22.53c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c4.2 3.37 8.04 7.19 11.47 11.37v-2.39C866.77 488.82 863.26 485.41 859.47 482.34z M600.46 490.24c-0.71-0.87-1.44-1.72-2.19-2.55c-5.22-5.79-11.18-10.7-16.94-15.43c-10.58-8.7-20.57-16.92-25.32-29.75c-8.01-21.58 4.42-47.4 18.71-64.36c6.34-7.53 13.56-14.67 20.54-21.57c4.96-4.9 10.08-9.97 14.89-15.16c5.57-5.87 10.61-12.23 15.05-18.99c1.95-3.03 3.72-6.18 5.31-9.41c6.92-14.09 10.42-30.53 10.42-47.74c-0.04-12.69-1.85-25.31-5.4-37.5c-7.19-24.89-20.78-47.3-33.12-65.94c-4.33-6.54-8.96-13.27-14.14-20.57C564.7 108.1 540.9 79.49 517.54 56.2c-23.37-23.31-46.66-42.67-67.57-56.19h-3.7l-0.03 0.04c21.45 13.49 45.6 33.41 69.84 57.59c23.28 23.2 47 51.73 70.5 84.8c5.18 7.29 9.79 14 14.11 20.52c12.26 18.51 25.75 40.75 32.86 65.38c8.54 29.53 6.76 60.07-4.88 83.78c-1.56 3.16-3.29 6.23-5.19 9.2c-4.38 6.66-9.35 12.92-14.84 18.7c-4.78 5.17-9.88 10.21-14.82 15.1c-7.02 6.94-14.28 14.11-20.68 21.7c-14.66 17.41-27.35 44-19.07 66.4c4.96 13.36 15.16 21.75 25.96 30.63c5.7 4.69 11.59 9.54 16.72 15.22c0.72 0.81 1.43 1.63 2.12 2.48c7.1 8.63 12.83 19.73 17.04 32.98c0.22 0.68 0.43 1.37 0.64 2.06h2.14c-0.27-0.9-0.54-1.8-0.83-2.7C613.58 510.39 607.73 499.07 600.46 490.24z M613.37 490.09c-0.75-0.86-1.5-1.71-2.27-2.53c-5.41-5.75-11.6-10.6-17.59-15.3c-11.03-8.67-21.45-16.85-26.55-29.79c-8.54-21.7 3.61-47.86 17.84-65.1c6.34-7.67 13.58-14.94 20.57-21.97c4.87-4.88 9.89-9.93 14.62-15.11c5.53-5.91 10.53-12.3 14.94-19.09c1.93-3.04 3.68-6.19 5.26-9.43c6.95-14.29 10.48-30.98 10.48-48.43c-0.03-12.46-1.76-24.85-5.13-36.85c-7.1-25.45-20.4-47.72-32.48-66.15c-4.32-6.57-9.05-13.49-14.07-20.55c-23.16-32.56-47.16-60.95-71.35-84.38c-23.58-22.85-47.46-41.94-69.29-55.4h-3.72l-0.05 0.05c22.42 13.46 47.2 33.09 71.66 56.79c24.1 23.34 48.02 51.63 71.11 84.1c5.01 7.04 9.72 13.93 14.02 20.48c12 18.31 25.21 40.41 32.24 65.59c8.24 29.54 6.34 60.1-5.23 83.88c-1.54 3.17-3.26 6.25-5.15 9.23c-4.34 6.69-9.27 12.99-14.73 18.81c-4.69 5.15-9.7 10.19-14.55 15.06c-7.03 7.06-14.3 14.36-20.69 22.11c-14.59 17.68-27.03 44.58-18.15 67.1c5.29 13.44 15.93 21.78 27.18 30.61c5.93 4.65 12.06 9.45 17.37 15.1c0.75 0.81 1.49 1.63 2.21 2.47c7.43 8.64 13.37 19.68 17.66 32.81c0.26 0.8 0.51 1.59 0.76 2.39h2.09c-0.3-1.01-0.62-2.01-0.97-3.02C627.03 510.19 620.96 498.93 613.37 490.09z M760.74 482.34c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C695.6 71.71 644.68 28.7 585.72 0.01h-3.53c59.94 28.57 111.7 71.94 150.34 126.09c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c13.47 10.81 23.19 26.27 27.8 43.04h1.61C784.52 509.35 774.55 493.45 760.74 482.34z M626.34 489.92c-0.78-0.86-1.56-1.7-2.37-2.51c-5.61-5.7-12.03-10.51-18.23-15.16c-11.5-8.62-22.35-16.76-27.8-29.82c-9.08-21.84 2.8-48.33 16.96-65.85c6.32-7.82 13.58-15.23 20.59-22.39c4.77-4.87 9.7-9.9 14.33-15.05c5.49-5.96 10.45-12.38 14.83-19.2c1.91-3.05 3.65-6.21 5.22-9.45c6.99-14.48 10.54-31.43 10.54-49.12c-0.02-12.23-1.65-24.4-4.85-36.2c-7.05-26.14-20.72-49.18-31.85-66.34c-4.3-6.6-9-13.51-13.98-20.52c-22.8-32.04-47.02-60.19-71.97-83.69C514 32.24 489.51 13.41 466.75 0.01h-3.77l-0.02 0.04c23.41 13.41 48.82 32.77 73.47 55.99c24.86 23.41 49 51.46 71.71 83.4c4.97 6.98 9.66 13.87 13.94 20.45c11.05 17.04 24.63 39.92 31.6 65.8c7.96 29.55 5.93 60.15-5.56 83.99c-1.53 3.18-3.24 6.27-5.11 9.26c-4.31 6.72-9.2 13.06-14.62 18.93c-4.6 5.12-9.53 10.14-14.28 15c-7.05 7.19-14.33 14.62-20.72 22.51c-14.52 17.95-26.66 45.2-17.24 67.8c5.65 13.54 16.71 21.84 28.42 30.62c6.15 4.6 12.51 9.37 18.02 14.97c0.78 0.8 1.54 1.6 2.3 2.45c7.74 8.65 13.9 19.63 18.27 32.64c0.31 0.91 0.6 1.82 0.89 2.73h2.02c-0.34-1.12-0.7-2.24-1.06-3.36C640.55 509.98 634.27 498.77 626.34 489.92z M652.18 489.62c-0.82-0.85-1.67-1.68-2.53-2.48c-5.98-5.6-12.84-10.31-19.48-14.87c-12.43-8.53-24.17-16.6-30.31-29.9c-10.2-22.07 1.16-49.26 15.19-67.35c6.31-8.12 13.59-15.79 20.63-23.2c4.59-4.84 9.34-9.84 13.8-14.94c5.41-6.05 10.29-12.54 14.59-19.42c1.88-3.07 3.59-6.24 5.13-9.49c7.15-15.09 10.77-32.29 10.77-50.33c-0.03-11.83-1.51-23.6-4.41-35.07c-5.22-20.93-14.93-42.15-30.57-66.75c-4.2-6.62-8.85-13.5-13.81-20.47c-21.23-30.09-45.79-57.7-73.2-82.3c-24.51-21.79-49.54-39.63-74.46-53.04h-3.82c25.78 13.52 51.71 31.81 77.09 54.38c27.3 24.51 51.76 52.02 72.92 82c4.95 6.94 9.58 13.8 13.77 20.39c15.53 24.45 25.17 45.49 30.35 66.23c7.49 30 5.27 59.9-6.26 84.2c-1.51 3.19-3.19 6.3-5.04 9.32c-4.24 6.79-9.06 13.21-14.41 19.17c-4.42 5.07-9.16 10.05-13.74 14.88c-7.06 7.44-14.38 15.14-20.74 23.34c-14.37 18.5-25.94 46.38-15.42 69.2c6.34 13.75 18.29 21.95 30.93 30.63c6.58 4.52 13.38 9.19 19.27 14.7c0.84 0.78 1.66 1.59 2.46 2.41c8.28 8.51 15.04 19.69 19.55 32.33c0.41 1.13 0.8 2.26 1.17 3.4h1.88c-0.42-1.35-0.87-2.68-1.35-4.01C667.54 509.71 660.65 498.3 652.18 489.62z M574.61 490.57c-0.67-0.88-1.35-1.74-2.03-2.58c-4.81-5.6-10.02-10.83-15.6-15.66c-9.68-8.79-18.83-17.1-22.91-29.74c-6.88-21.3 6.06-46.45 20.47-62.87c6.35-7.21 13.52-14.08 20.46-20.73c5.16-4.93 10.48-10.04 15.49-15.3c5.66-5.78 10.78-12.06 15.29-18.77c1.98-3.02 3.78-6.14 5.39-9.37c6.85-13.72 10.32-29.7 10.32-46.46c-0.04-13.13-2.06-26.18-5.97-38.71C608.6 208 596.77 188 581.13 164.84c-4.45-6.58-9.13-13.32-14.32-20.62c-24.95-35.12-47.68-63.4-69.5-86.44c-22.92-24.23-45.02-44.14-64.12-57.77h-3.64l-0.06 0.07c19.52 13.56 42.43 34.03 66.23 59.2c21.74 22.97 44.42 51.16 69.31 86.21c5.17 7.28 9.84 14.02 14.28 20.58c15.53 22.99 27.29 42.84 34.12 64.96c9.1 29.5 7.57 59.95-4.22 83.55c-1.57 3.15-3.33 6.21-5.26 9.15c-4.45 6.6-9.48 12.78-15.05 18.46c-4.97 5.21-10.28 10.3-15.41 15.22c-6.97 6.68-14.18 13.58-20.59 20.87c-14.8 16.87-28.06 42.8-20.9 64.99c4.26 13.19 13.61 21.68 23.52 30.68c5.5 4.75 10.64 9.91 15.38 15.42c0.67 0.82 1.32 1.66 1.97 2.51c6.43 8.6 11.74 19.81 15.77 33.3c0.14 0.47 0.27 0.94 0.41 1.41h2.27c-0.19-0.68-0.39-1.35-0.6-2.03C586.62 510.82 581.2 499.38 574.61 490.57z M548.74 490.91c-0.61-0.89-1.22-1.77-1.86-2.62c-4.35-5.61-9.1-10.9-14.21-15.83c-8.81-8.89-17.13-17.3-20.54-29.76c-5.76-21.07 7.71-45.53 22.22-61.4c6.34-6.92 13.47-13.54 20.37-19.93c5.34-4.96 10.87-10.09 16.07-15.4c5.74-5.7 10.94-11.91 15.53-18.56c2.02-2.99 3.85-6.1 5.48-9.32c6.81-13.39 10.25-28.94 10.25-45.28c-0.06-13.54-2.28-26.99-6.56-39.84c-7.79-23.65-21.31-44.3-35.66-65.13c-4.77-6.91-9.6-13.8-14.49-20.67c-18.32-25.82-42.65-59.15-68.25-87.81c-22.81-25.56-43.22-45.52-60.7-59.35h-3.57l-0.06 0.1c17.86 13.8 38.93 34.25 62.62 60.8c25.53 28.59 49.8 61.84 68.1 87.62c4.85 6.84 9.7 13.74 14.46 20.64c14.25 20.69 27.68 41.18 35.37 64.54c9.68 29.44 8.4 59.83-3.55 83.34c-1.59 3.13-3.37 6.16-5.33 9.08c-4.52 6.53-9.63 12.64-15.27 18.23c-5.15 5.26-10.67 10.37-15.99 15.31c-6.93 6.42-14.09 13.07-20.5 20.07c-14.94 16.32-28.78 41.61-22.75 63.57c3.56 13.05 12.1 21.67 21.12 30.78c5.03 4.86 9.71 10.07 14 15.59c0.61 0.82 1.22 1.67 1.8 2.53c5.84 8.63 10.59 19.63 14.52 33.64c0.07 0.24 0.14 0.49 0.21 0.74h2.4c-0.13-0.46-0.25-0.91-0.39-1.36C559.58 510.97 554.73 499.74 548.74 490.91z M665.11 489.47c-0.85-0.84-1.72-1.66-2.61-2.46c-6.18-5.55-13.25-10.21-20.09-14.72c-12.91-8.49-25.09-16.52-31.59-29.95c-10.73-22.18 0.36-49.73 14.32-68.09c6.28-8.27 13.57-16.06 20.61-23.59c4.52-4.83 9.19-9.82 13.57-14.9c5.37-6.09 10.21-12.62 14.47-19.53c1.86-3.09 3.56-6.26 5.09-9.52c11.61-24.72 13.99-55.07 6.7-85.43c-5.12-21.34-14.64-42.61-29.94-66.96c-4.2-6.67-8.81-13.54-13.73-20.44c-21.26-30.05-46.04-57.44-73.81-81.61c-24.68-21.34-50.3-38.91-76.19-52.26h-3.82c26.8 13.47 53.33 31.49 78.87 53.57c27.67 24.07 52.35 51.37 73.54 81.3c4.9 6.88 9.5 13.72 13.68 20.36c15.2 24.18 24.64 45.29 29.72 66.44c7.21 29.99 4.87 59.92-6.59 84.29c-1.5 3.2-3.17 6.32-5 9.35c-4.22 6.82-9 13.27-14.3 19.29c-4.36 5.06-9.02 10.04-13.52 14.86c-7.08 7.56-14.39 15.38-20.73 23.72c-14.27 18.78-25.58 47-14.5 69.9c6.71 13.86 19.66 22.39 32.19 30.64c6.79 4.47 13.82 9.1 19.9 14.56c0.86 0.78 1.71 1.58 2.55 2.4c8.99 9.12 15.87 20.1 20.17 32.16c0.46 1.23 0.89 2.48 1.3 3.73h1.82c-0.47-1.45-0.96-2.89-1.49-4.32C681.32 509.96 674.29 498.76 665.11 489.47z M561.7 490.73c-0.64-0.88-1.28-1.75-1.94-2.59c-4.58-5.61-9.57-10.87-14.92-15.75c-9.24-8.84-17.98-17.2-21.72-29.74c-6.32-21.2 6.88-46 21.35-62.13c6.34-7.08 13.5-13.82 20.41-20.34c5.25-4.95 10.67-10.07 15.78-15.34c5.7-5.74 10.85-11.99 15.4-18.67c1.99-3 3.81-6.12 5.43-9.34c6.84-13.56 10.28-29.32 10.28-45.87c-0.06-13.34-2.17-26.59-6.26-39.29c-7.74-24.24-21.55-45.57-35.03-65.32c-4.49-6.57-9.2-13.33-14.4-20.65c-26.01-36.63-47.9-64.32-68.88-87.13c-23.05-25.08-44.03-44.76-62.41-58.56h-3.6l-0.08 0.11c18.82 13.77 40.49 33.95 64.42 59.99c20.91 22.74 42.74 50.36 68.7 86.91c5.19 7.31 9.89 14.05 14.38 20.62c13.39 19.61 27.1 40.78 34.74 64.74c9.4 29.47 7.99 59.9-3.87 83.45c-1.59 3.13-3.36 6.18-5.3 9.11c-4.48 6.57-9.56 12.71-15.16 18.35c-5.06 5.24-10.47 10.34-15.7 15.27c-6.95 6.55-14.13 13.32-20.55 20.47c-14.87 16.59-28.42 42.2-21.82 64.27c3.92 13.12 12.86 21.67 22.32 30.72c5.27 4.8 10.18 9.99 14.7 15.51c0.64 0.82 1.27 1.66 1.88 2.52c6.1 8.55 11.2 19.81 15.16 33.47c0.11 0.36 0.21 0.71 0.31 1.07h2.33c-0.16-0.57-0.32-1.13-0.47-1.71C573.15 510.98 567.94 499.5 561.7 490.73z M587.54 490.4c-0.7-0.88-1.4-1.73-2.11-2.56c-5.03-5.83-10.75-10.77-16.28-15.54c-10.13-8.74-19.7-17.01-24.12-29.74c-7.45-21.45 5.25-46.92 19.6-63.61c6.35-7.38 13.56-14.4 20.52-21.18c5.04-4.91 10.26-9.98 15.16-15.2c5.61-5.83 10.69-12.15 15.17-18.88c1.96-3.02 3.75-6.16 5.34-9.39c6.9-13.91 10.38-30.12 10.38-47.1c-0.04-12.92-1.96-25.76-5.69-38.12c-7.25-24.26-20.51-45.93-33.75-65.73c-4.38-6.55-9.17-13.48-14.23-20.6c-24.39-34.31-47.33-62.37-70.12-85.76c-23.14-23.77-45.84-43.4-65.84-56.98h-3.67l-0.04 0.08c20.48 13.53 44.01 33.72 68.03 58.39c22.73 23.31 45.59 51.28 69.91 85.5c5.05 7.1 9.83 14.01 14.2 20.55c13.15 19.67 26.31 41.17 33.48 65.16c8.83 29.51 7.16 60.01-4.55 83.67c-1.56 3.16-3.3 6.22-5.22 9.17c-4.41 6.63-9.41 12.85-14.94 18.58c-4.87 5.19-10.07 10.25-15.09 15.14c-7 6.82-14.24 13.87-20.66 21.32c-14.73 17.13-27.71 43.38-19.99 65.69c4.6 13.27 14.38 21.71 24.74 30.65c5.47 4.72 11.13 9.6 16.05 15.32c0.7 0.81 1.39 1.64 2.05 2.49c6.77 8.62 12.28 19.77 16.4 33.13c0.18 0.58 0.36 1.16 0.53 1.74h2.21c-0.23-0.79-0.47-1.58-0.72-2.37C600.09 510.61 594.46 499.22 587.54 490.4z M639.25 489.75c-0.8-0.85-1.61-1.68-2.45-2.49c-5.8-5.65-12.44-10.42-18.86-15.02c-11.95-8.57-23.25-16.67-29.04-29.86c-9.65-21.94 1.98-48.78 16.08-66.6c6.31-7.96 13.57-15.49 20.59-22.77c4.69-4.87 9.54-9.89 14.09-15.02c5.45-6 10.37-12.46 14.71-19.31c1.89-3.06 3.62-6.22 5.17-9.47c7.11-14.86 10.71-31.79 10.71-49.57c-0.04-12.07-1.61-24.09-4.68-35.77c-5.4-20.82-15.03-41.35-31.22-66.55c-4.21-6.58-8.89-13.47-13.9-20.49c-22.48-31.58-46.9-59.5-72.58-82.99c-24.31-22.26-48.77-40.35-72.73-53.83h-3.8l-0.01 0.03c24.76 13.56 50.09 32.13 75.28 55.19c25.59 23.41 49.92 51.23 72.32 82.7c4.99 7 9.65 13.87 13.85 20.41c16.08 25.04 25.63 45.39 30.98 66.02c7.78 29.99 5.69 59.84-5.91 84.09c-1.52 3.19-3.22 6.29-5.08 9.29c-4.28 6.76-9.13 13.13-14.51 19.05c-4.52 5.1-9.36 10.11-14.03 14.96c-7.06 7.31-14.35 14.87-20.72 22.9c-14.43 18.23-26.3 45.79-16.33 68.51c6 13.64 17.5 21.88 29.67 30.61c6.36 4.56 12.95 9.28 18.65 14.84c0.81 0.79 1.6 1.6 2.38 2.43c7.97 8.53 14.52 19.76 18.91 32.48c0.36 1.02 0.7 2.04 1.03 3.07h1.95c-0.38-1.23-0.79-2.46-1.21-3.69C654.08 509.93 647.4 498.48 639.25 489.75z M742.79 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.85 28.43 118.94 73.43 159.55 130.33c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C764.9 511 755.46 496.77 742.79 486.59z M727.15 485.1c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C660.77 72.73 607.77 28.67 546.36 0.01h-3.66c62.45 28.5 116.34 72.93 156.24 128.84c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.72 10.22 22.11 24.59 26.99 40.29h1.63C749.86 510.42 740.22 495.61 727.15 485.1z M734.56 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.85 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C756.67 511 747.24 496.77 734.56 486.59z M678.04 489.29c-0.88-0.83-1.78-1.64-2.69-2.43c-6.36-5.5-13.65-10.11-20.7-14.57c-13.37-8.46-26.01-16.44-32.86-30.01c-11.28-22.3-0.46-50.19 13.42-68.84c6.27-8.42 13.56-16.33 20.61-23.99c4.44-4.81 9.03-9.79 13.33-14.86c5.32-6.13 10.12-12.69 14.35-19.62c1.85-3.09 3.53-6.28 5.05-9.54c11.5-24.7 14.01-55.05 7.03-85.46c-4.99-21.51-14.57-43.48-29.31-67.16c-4.15-6.67-8.74-13.54-13.64-20.41c-21.3-30-46.31-57.19-74.43-80.92c-23.82-20.22-49.99-37.5-77.94-51.47h-3.77c28.98 14.16 56.07 31.88 80.66 52.75c28.01 23.64 52.92 50.72 74.14 80.61c4.88 6.85 9.44 13.69 13.58 20.33c14.63 23.52 24.15 45.33 29.1 66.66c6.87 30.03 4.43 60-6.92 84.38c-1.5 3.22-3.16 6.35-4.97 9.39c-4.18 6.85-8.92 13.34-14.19 19.4c-4.28 5.04-8.86 10-13.28 14.81c-7.08 7.69-14.4 15.63-20.72 24.12c-14.19 19.05-25.2 47.6-13.58 70.58c7.06 13.97 20.49 22.45 33.47 30.66c7 4.42 14.23 9 20.49 14.41c0.88 0.77 1.77 1.57 2.63 2.39c9.24 8.98 16.35 19.91 20.8 32c0.52 1.35 1 2.71 1.45 4.08h1.74c-0.5-1.56-1.05-3.12-1.63-4.66C694.72 509.6 687.47 498.45 678.04 489.29z M751.04 485.1c-6.71-5.38-14.41-9.87-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.63 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C684.66 72.73 631.65 28.67 570.24 0.01h-3.66c62.45 28.5 116.34 72.93 156.25 128.84c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.73 10.22 22.11 24.59 26.99 40.29h1.63C773.74 510.42 764.11 495.61 751.04 485.1z M701.06 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.79 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.32 9.89 21.51 23.68 26.51 38.8h1.64C723.18 511 713.74 496.77 701.06 486.59z M691 489.14c-0.9-0.82-1.82-1.63-2.77-2.42c-6.53-5.43-14.03-9.99-21.29-14.39c-13.87-8.42-26.96-16.36-34.16-30.07c-11.84-22.39-1.29-50.63 12.55-69.59c6.24-8.55 13.53-16.6 20.58-24.36c4.36-4.81 8.87-9.78 13.09-14.83c5.29-6.18 10.05-12.78 14.24-19.74c1.81-3.08 3.5-6.3 5.01-9.56c11.43-24.79 14.05-55.15 7.36-85.5c-4.85-21.86-14.23-43.9-28.67-67.37c-4.09-6.64-8.65-13.5-13.56-20.38c-21.34-29.97-46.58-56.95-75.05-80.23c-24.41-20.06-51.16-37.08-79.67-50.69h-3.75c29.53 13.79 57.22 31.24 82.4 51.92c28.36 23.19 53.5 50.07 74.75 79.91c4.89 6.85 9.43 13.68 13.5 20.29c14.36 23.33 23.67 45.2 28.48 66.88c6.6 30.01 4.04 60.02-7.26 84.49c-1.49 3.22-3.14 6.38-4.93 9.42c-4.15 6.88-8.86 13.41-14.09 19.52c-4.19 5.03-8.69 9.98-13.05 14.78c-7.08 7.8-14.4 15.87-20.69 24.5c-14.12 19.35-24.85 48.23-12.68 71.28c7.39 14.1 21.3 22.53 34.73 30.69c7.21 4.37 14.67 8.89 21.11 14.26c0.92 0.77 1.82 1.56 2.71 2.37c9.49 8.84 16.83 19.73 21.45 31.85c0.57 1.46 1.1 2.93 1.59 4.41h1.67c-0.54-1.67-1.13-3.33-1.77-4.98C708.13 509.25 700.65 498.15 691 489.14z M719.22 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.9-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93C652.15 73.25 597.98 28.62 535.2 0.01h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.27 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C741.34 511 731.9 496.77 719.22 486.59z M709.5 486.59c-6.71-5.38-14.41-9.88-21.86-14.23c-14.35-8.37-27.89-16.28-35.48-30.12c-12.34-22.55-2.07-51.12 11.67-70.34c6.23-8.71 13.52-16.88 20.57-24.78c9.63-10.77 19.58-21.91 26.98-34.61c15.51-26.64 20.01-60.43 12.66-95.13c-6.02-28.44-19.59-57.2-41.51-87.93c-40.1-56.2-94.27-100.83-157.05-129.44h-3.73c63.86 28.43 118.94 73.43 159.55 130.33c21.78 30.55 35.28 59.13 41.25 87.35c7.26 34.35 2.83 67.74-12.5 94.04c-7.31 12.56-17.21 23.64-26.79 34.36c-7.08 7.93-14.41 16.13-20.68 24.9c-14.02 19.6-24.46 48.81-11.76 71.98c7.78 14.21 22.15 22.6 36.04 30.72c7.4 4.32 15.05 8.79 21.67 14.1c12.33 9.89 21.52 23.68 26.52 38.8h1.63C731.62 511 722.18 496.77 709.5 486.59z'/%3E%3C/svg%3E");
    -webkit-mask-position: var(--fancy-underlay-position, 90% 90%);
            mask-position: var(--fancy-underlay-position, 90% 90%);
  }
  .fancy-underlay:after {
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  @media only screen and (min-width: 1200px) {
    .fancy-underlay.fancy-underlay-animated {
      --fancy-underlay-animated-transform:
      	translateX(calc(var(--fancy-underlay-animated-offset) * (var(--fancy-underlay-animated-factor-x) * var(--parallax-calculation,0))))
      	translateY(calc(var(--fancy-underlay-animated-offset) * (var(--fancy-underlay-animated-factor-y) * var(--parallax-calculation,0)))) ;
    }
    .fancy-underlay.fancy-underlay-animated.fancy-underlay-contrast:before, .fancy-underlay.fancy-underlay-animated:after {
      --fancy-underlay-animated-transform-pseudo:
      	translateX(calc(var(--fancy-underlay-animated-offset) * ((var(--fancy-underlay-animated-factor-x) * -2)) * var(--parallax-calculation,0)))
      	translateY(calc(var(--fancy-underlay-animated-offset) * ((var(--fancy-underlay-animated-factor-y) * -2)) * var(--parallax-calculation,0))) ;
    }
    .fancy-underlay.fancy-underlay-animated-x-n {
      --fancy-underlay-animated-factor-x: -1;
    }
    .fancy-underlay.fancy-underlay-animated-y-n {
      --fancy-underlay-animated-factor-y: -1;
    }
    .fancy-underlay.fancy-underlay-animated-x-p {
      --fancy-underlay-animated-factor-x: 1;
    }
    .fancy-underlay.fancy-underlay-animated-y-p {
      --fancy-underlay-animated-factor-y: 1;
    }
  }
  @media only screen and (min-width: 1400px) {
    .fancy-underlay {
      --fancy-underlay-offset: 30px;
    }
  }
}
@media only screen and (max-width: 1199px) {
  .fancy-underlay.fancy-underlay-adjust-touch.fancy-underlay-extend-left.fancy-underlay-cut-right, .fancy-underlay.fancy-underlay-adjust-touch.fancy-underlay-cut-left.fancy-underlay-extend-right {
    margin-left: auto;
    margin-right: auto;
    left: calc(var(--fancy-underlay-offset) * -0.5);
  }
}
@media only screen and (max-width: 767px) {
  .fancy-underlay {
    --fancy-underlay-offset: 16px;
  }
  .fancy-underlay.fancy-underlay-adjust-xs.fancy-underlay-extend-left.fancy-underlay-cut-right, .fancy-underlay.fancy-underlay-adjust-xs.fancy-underlay-cut-left.fancy-underlay-extend-right {
    margin-left: auto;
    margin-right: auto;
    left: calc(var(--fancy-underlay-offset) * -0.5);
  }
}

.fancy-border-box {
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  background-image: linear-gradient(to bottom, var(--scheme-bg-contrast), var(--scheme-bg));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1333333333), 0 0px 5px 0 rgba(0, 0, 0, 0.3333333333);
}

/* Widgets https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md
--------------------------------------------------------------- */
/* Widgets Skeleton. No need to Edit 
--------------------------------------------------------------- */
.widget {
  padding-top: var(--widget-padding-top);
  padding-bottom: var(--widget-padding-bottom);
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
  position: relative;
  max-width: 100%;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li {
  padding-left: var(--widget-list-offset-x);
  padding-right: var(--widget-list-offset-x);
}
.widget > :where(ul, .widget-content, .menu):not(.content) {
  margin-left: calc(var(--widget-padding-x) * -1);
  margin-right: calc(var(--widget-padding-x) * -1);
}
.widget > :where(ul, .widget-content, .menu):not(.content) :where(ul, .sub-menu) {
  margin-left: calc(var(--widget-list-offset-x) * -1);
  margin-right: calc(var(--widget-list-offset-x) * -1);
}
.widget > :where(ul, .widget-content, .menu):not(.content) :where(ul, .sub-menu) {
  margin-left: calc(var(--widget-list-offset-x) * -1);
  margin-right: calc(var(--widget-list-offset-x) * -1);
}
.widget > :where(ul, .widget-content, .menu):not(.content) li {
  margin: 0;
  list-style: none;
  clear: both;
  display: flex;
  flex-direction: column;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li a {
  padding-top: calc((var(--widget-item-height) - var(--widget-item-border-width) - 1em * var(--widget-item-lines) * var(--widget-item-line-height)) * var(--widget-item-baseline-offset));
  padding-bottom: calc((var(--widget-item-height) - var(--widget-item-border-width) - 1em * var(--widget-item-lines) * var(--widget-item-line-height)) * (1 - var(--widget-item-baseline-offset)));
  padding-left: var(--widget-item-padding-x);
  padding-right: var(--widget-item-padding-x);
  color: inherit;
  text-decoration: none;
  flex: 1 1;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li ul {
  border-top: var(--widget-item-border-width) solid transparent;
  border-bottom: var(--widget-item-border-width) solid transparent;
  padding-top: var(--widget-dropdown-padding-top);
  margin-top: var(--widget-dropdown-margin-top);
  padding-bottom: var(--widget-dropdown-padding-bottom);
  margin-bottom: var(--widget-dropdown-margin-bottom);
  flex: 0 0 auto;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li:last-child > ul {
  /* fix sub item dropdown bottom gaps */
  margin-bottom: calc(var(--widget-dropdown-padding-bottom) * -1);
  border-bottom: 0;
}
.widget > :where(ul, .widget-content, .menu):not(.content) > li:last-child > ul {
  /* fix top level item dropdown bottom gaps */
  margin-bottom: calc(var(--widget-padding-bottom) * -1);
}
.widget:not(.widget-style-no-toggle):not(.open) > :where(ul, .widget-content, .menu),
.widget:not(.widget-style-no-toggle) li:not(.open) > ul {
  /* close it all, javascript will take care of opening what needs to be opened */
  display: none;
}
.widget :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), select, textarea, [aria-invalid=true]) {
  width: 100%;
  display: block;
}

/* Widget Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md#css-vars
--------------------------------------------------------------- */
.widget {
  --widget-padding-x: 40px;
  --widget-padding-top: 3rem;
  --widget-padding-bottom: var(--widget-padding-top);
  --widget-list-offset-x: 0;
  --widget-dropdown-padding-top: 0rem;
  --widget-dropdown-padding-bottom: var(--widget-dropdown-padding-top);
  --widget-dropdown-margin-top: 0rem;
  --widget-dropdown-margin-bottom: var(--widget-dropdown-margin-top);
  --widget-item-height: 3.125rem;
  --widget-item-border-width: 0px;
  --widget-item-lines: 1;
  /* Padding to distance between only the anchor tags' and parent widget li item. Neither affected by --widget-padding-x or --widget-offset-x. NOTE: li is being padded with --widget-padding-x to align the padding perfectly with the title, li, and uls/content block */
  --widget-item-padding-x: var(--widget-padding-x);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --widget-item-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work. Usually there's no need to modify this unless a multiline widget list item is present in the design.
  * Formula is line-height-px / font-size-px */
  --widget-item-line-height: 1.5;
  line-height: var(--widget-item-line-height);
  color: var(--scheme-fg, var(--color-dark));
  text-align: left;
  text-decoration: none;
  background-color: var(--scheme-bg, var(--color-light));
  width: 100%;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
}
.widget .content {
  font-size: 1em;
}
.widget:nth-last-child(n+2) {
  margin-bottom: 3.125rem;
}
.widget > :where(ul, .widget-content) {
  margin-top: 1em;
  margin-bottom: 0;
}
.widget > :where(ul, .widget-content):not(.content) li {
  background-color: transparent;
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a {
  background-color: var(--color-secondary);
  color: var(--color-light);
}
.widget > :where(ul, .widget-content):not(.content) li ul {
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
  text-align: left;
}
.widget > :where(ul, .widget-content):not(.content) li ul ul {
  background: rgba(0, 0, 0, 0.05);
}
.widget > :where(ul, .widget-content):not(.content) li.open {
  border-bottom: 0;
}
.widget > :where(ul, .widget-content):not(.content) li.open > a {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .widget {
    --widget-padding-x: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .widget {
    --widget-padding-x: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .widget {
    --widget-padding-x: 55px;
  }
}
@media only screen and (min-width: 1800px) {
  .widget {
    --widget-padding-x: 64px;
  }
}
/* Widget Title
--------------------------------------------------------------- */
:is(.widget-title, .widget-title, .widgettitle) {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  flex-wrap: wrap;
  --fancy-border-margin-y: .75em;
}
:is(.widget-title, .widget-title, .widgettitle).fancy-border-after:after, :is(.widget-title, .widget-title, .widgettitle).fancy-border-before:before {
  flex: 0 0 auto;
}
/* Widget Toggle
--------------------------------------------------------------- */
.widget-toggle {
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-toggle::before {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  flex: 0 0 auto;
}
.widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle)) {
  justify-content: space-between;
}
.widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle))::before {
  content: "+";
  margin-left: 0.5em;
  transform-origin: center center;
}
.widget-toggle:is(.widget-title, .widget-title, .widgettitle)::before {
  content: "";
  font-size: 0.75rem;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  margin-left: auto;
}
.open > .widget-toggle:is(.widget-title, .widget-title, .widgettitle)::before {
  transform: rotate(-135deg);
}
.widget_search form {
  margin-top: 1rem;
}

/* Accordion: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/accordion.md#accordion
--------------------------------------------------------------- */
.accordion {
  padding-top: 1.875rem;
}
.accordion:not(.open) {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .accordion {
    padding-top: 2.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  .accordion {
    padding-top: 2.25em;
  }
}

.list-block {
  padding-block: 1.875rem;
}
.list-block:nth-child(n+2) {
  border-top: 1px solid var(--color-neutral);
}
.list-block:last-child {
  padding-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .list-block {
    padding-block: 2.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  .list-block {
    padding-block: 2.5rem;
  }
}

/* Accordion: Toggle  https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/accordion.md#data-toggle-accordion
--------------------------------------------------------------- */
.accordion-trigger {
  cursor: pointer;
  clear: both;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.accordion-trigger > * {
  pointer-events: none;
}
.accordion-trigger::after {
  content: "";
  font-size: 0.625em;
  display: block;
  width: 1em;
  height: 1em;
  color: var(--color-primary-alt);
  transform: rotate(45deg);
  border-top: 2px solid;
  border-top: 2px solid;
  border-left: 2px solid;
  margin-block: 1em -1em;
  margin-right: 0.5em;
  transform-origin: center center;
  flex: 0 0 auto;
}
.accordion-trigger.open::after {
  transform: rotate(-135deg);
}
/* useful for a more js-friendly way of background and contrasting text colors for sections from dark on light text vs light on dark text, vice versa, and other schemes as needed by the design (eg: wallkuplawoffices.com, www.westvirginiapersonalinjurylawyer.net, hsjinjurylaw, etc).

To enable, follow the steps:
- Uncomment the sass import declaration in the style.scss file
- Unccoment classes to the body tag VIA functions-body-class.php

CLASSES:
	.scheme-applied
		=> you need this class applied to the section's element for the rest of the classes to work >:| 
	.scheme-palette-light
		=> apply to .scheme-applied; default/global scheme. eg: dark text on light background 
	.scheme-palette-dark
		=> apply to .scheme-applied; inverted/dark scheme. eg: dark mode 
	.scheme-palette-inherit
		=> apply to .scheme-applied; inherits the closest set theme (theme-light vs. theme-dark) 
	.scheme-palette-invert
		=> apply to .scheme-applied; uses the color scheme opposite to the closest set theme (theme-light vs. theme-dark) 
	.scheme-applied-contrast-bg
		=> apply to .scheme-applied; applies alternate color for background
	.scheme-applied-contrast-fg
		=> apply to .scheme-applied; applies alternate color for foreground
--------------------------------------------------------------- */
.scheme-applied {
  /* apply css vars' color scheme */
  background-color: var(--scheme-bg);
  color: var(--scheme-fg);
}
.scheme-applied.scheme-applied-contrast-bg, .scheme-applied .scheme-applied-contrast-bg {
  background-color: var(--scheme-bg-contrast);
}
.scheme-applied.scheme-applied-contrast-fg, .scheme-applied .scheme-applied-contrast-fg {
  color: var(--scheme-fg-contrast);
}
.scheme-applied-gradient {
  background-image: linear-gradient(to bottom, var(--scheme-bg-gradient-start), var(--scheme-bg-gradient-end));
}
:where(.scheme-palette-light,
.scheme-palette-light-on-hover:is(:hover, :focus-within),
:is(html, body).scheme-palette-dark .scheme-palette-invert,
:is(html, body).scheme-palette-light .scheme-palette-inherit) {
  /* default background color */
  --scheme-bg: var(--color-light);
  /* alternate background color */
  --scheme-bg-contrast: var(--color-light-alt);
  --scheme-bg-gradient-start: var(--color-light);
  /* alternate background color */
  --scheme-bg-gradient-end: var(--color-light-alt);
  /* default contrasting color. good for text, svg icons, etc. */
  --scheme-fg: var(--color-dark);
  /* alternate contrasting color */
  --scheme-fg-contrast: var(--color-dark-alt);
  --scheme-fg-gradient-start: var(--color-secondary-gradient-start);
  /* alternate background color */
  --scheme-fg-gradient-end: var(--color-secondary-gradient-end);
  /* default color for special stuff */
  --scheme-sp: var(--color-primary);
  /* alternate contrasting special color */
  --scheme-sp-contrast: var(--color-primary-alt);
  /* default color for subspecial stuff */
  --scheme-sb: var(--color-accent);
  /* alternate contrasting subspecial color */
  --scheme-sb-contrast: var(--color-accent-alt);
}

:where(.scheme-palette-dark,
.scheme-palette-dark-on-hover:is(:hover, :focus-within),
:is(html, body).scheme-palette-light .scheme-palette-invert,
:is(html, body).scheme-palette-dark .scheme-palette-inherit,
.content-palette-dark) {
  --scheme-bg: var(--color-dark-alt);
  --scheme-bg-contrast: var(--color-secondary);
  --scheme-bg-gradient-start: var(--color-secondary-gradient-start);
  /* alternate background color */
  --scheme-bg-gradient-end: var(--color-secondary-gradient-end);
  --scheme-fg: var(--color-light);
  --scheme-fg-contrast: var(--color-light-alt);
  --scheme-fg-gradient-start: var(--scheme-fg);
  /* alternate background color */
  --scheme-fg-gradient-end: var(--scheme-fg-contrast);
  --scheme-sp: var(--color-primary-alt);
  --scheme-sp-contrast: var(--color-primary);
  --scheme-sb: var(--color-accent-alt);
  --scheme-sb-contrast: var(--color-accent);
}
/* ================================================================================
* Header
================================================================================ */
/* Layout Header
Note: The styles will be setup mobile first starting with the smallest device comp where the header menu toggle is no longer visible  (usually initially at md/laptop)
And then Desktop first starting with the largest device comp where the the header toggle is visible (Usually sm/tablet)
Tip: setting up mobile navigation desktop-first starting at sm-max for touch screen styles, and then mobile-first starting at md for desktop styles helps simplify the styles and lessen the need for overrides.
Also Tip: Default styles are set based on its sticky state, and then overriding these styles when no scroll has happened yet (.doc-header-not-sticky). This is to keep styles less repetitive and as simple as possible
--------------------------------------------------------------- */
/* Layout Header Variables
--------------------------------------------------------------- */
/* Tip: placing the css var on :root can allow elements outside of the layout header utilize the variable if needed ie sticky stuff, offsets, jump link scroll etc. */
:root {
  --layout-header-height: 136px;
  /* height of the whole header at a given state or layout */
  --layout-header-logo-height: var(--layout-header-height);
  /* height of logo including its padding at a given state or layout. */
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1800px) {
  :root {
    --layout-header-height: 108px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --layout-header-logo-height: 76px;
    --layout-header-height: 150px;
  }
}

.doc-header-not-sticky .header-overlay-on-banner {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    /* override logo height apart form the header height on this state only. Adjust as needed */
  }
}
@media only screen and (min-width: 1800px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    --layout-header-logo-height: 130px;
  }
}

.doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open {
    overflow-y: hidden;
  }
}
/* Layout Header Itself
--------------------------------------------------------------- */
.layout-header {
  /* Note: position must be set initially, NOT based on whether or not a scroll has occured (sticky vs not-sticky class). This is to prevent layout jumps on scroll */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background-color: var(--scheme-bg);
  color: var(--scheme-fg, var(--color-light));
  transition: 0.25s all ease-in-out;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .layout-header {
    background: var(--scheme-bg);
    /* header: one top value might work for the design. NOTE: adjust ilawyer alertbar settings accordingly if enabled (dynamic margin, offset to bottom on touch devices, position, etc.) */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .layout-header {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* remove background color */
    background: transparent;
    /* drop shadow */
    box-shadow: none;
  }
  .doc-header-not-sticky .header-overlay-on-banner .layout-header#home-header {
    color: var(--scheme-fg-gradient-start);
  }
}
.doc-header-not-sticky .layout-header {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
  /* remove dropdown shadow on all devices when not scrolling yet */
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .layout-header {
    /* reset offset when no scrolling yet */
    top: 0;
  }
}
.doc-header-menu-open .layout-header {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-overlay-on-banner .layout-header {
  /* Overlay header on header-overlay-on-banner. best for setting position on large devices AND NOTHING ELSE */
}
@media only screen and (min-width: 1200px) {
  .header-overlay-on-banner .layout-header {
    position: fixed;
  }
}

/* Header Blocks
--------------------------------------------------------------- */
.header-blocks {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  /* set as min instead in case alertbar needs to be added within header */
  min-height: var(--layout-header-height);
}
@media only screen and (min-width: 1200px) {
  .header-blocks {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-blocks {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-blocks {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-blocks {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-blocks .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  padding: 0.9rem 2rem;
  height: var(--layout-header-logo-height);
  flex: 0 0 auto;
  /* support logo offseting on overlay banner + not sticky state. comment if not needed */
  position: relative;
}
.header-logo .logo-wrapper-touch, .header-logo .logo-wrapper-before-sticky {
  /* hide possible variations of logo */
  display: none;
}
.header-logo svg *[fill*=FFF] {
  fill: currentColor;
}
.header-logo svg *[fill*="#00CE6F"] {
  fill: var(--scheme-sp-contrast);
}
@media only screen and (min-width: 1200px) {
  .header-logo {
    /* Non-touch Devices Header Styles Start */
    padding: 1.875rem 3.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header-logo {
    padding: 2rem 3.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-logo {
    padding: 1.25rem 3.785rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 100%;
    max-width: 100%;
  }
  .header-logo .logo-wrapper-touch {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-touch ~ .logo-wrapper-nontouch {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-sticky {
    /* hide default logo on before sticky */
    display: none;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-before-sticky {
    /* show  */
    display: block;
  }
}
@media only screen and (min-width: 1800px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    left: -1px;
    top: 27px;
  }
}
.doc-header-not-sticky .header-logo {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-logo {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Toggle/s
--------------------------------------------------------------- */
.header-toggle {
  width: 72px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
}
.header-toggle-menu {
  position: relative;
  z-index: 99999;
  top: 0;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu-icon {
  color: var(--scheme-sp-contrast);
  --fancy-icon-menu-width: 38px;
  --fancy-icon-menu-height: 25px;
  --fancy-icon-menu-bar-height: 3px;
}
.header-toggle-menu-label {
  font-size: 0.8125rem;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5em;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu.open .header-toggle-menu-label {
  margin-top: -1em;
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  .header-toggle {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-toggle-menu.open {
    top: calc(var(--layout-header-logo-height) * -1);
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-toggle {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-toggle {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-toggle {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Main
--------------------------------------------------------------- */
.header-main {
  display: flex;
  justify-content: flex-end;
  flex: 1 1;
}
@media only screen and (min-width: 1200px) {
  .header-main {
    /* Non-touch Devices Header Styles Start */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-height: var(--layout-header-height);
    /* justify-content: center; */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-main {
    flex-direction: column;
    align-items: flex-end;
    padding-right: 2.75rem;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1199px) {
  .header-main {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-main {
    min-height: calc(var(--layout-header-height) - var(--layout-header-logo-height));
    width: 100%;
    background: var(--scheme-bg) linear-gradient(to bottom, var(--scheme-bg-contrast), var(--scheme-bg));
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-main {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-main {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-main {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header CTA
--------------------------------------------------------------- */
.header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
  padding-right: 2.25rem;
  padding-left: 2.25rem;
}
.header-cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-cta {
    order: -1;
    padding: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .header-cta {
    gap: 1.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-cta {
    margin-bottom: 0;
    gap: 1.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta {
    /* Touch Devices Header Styles Start */
    gap: 1.625rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex: 1 1;
    font-size: 0.75rem;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-cta {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-cta {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header CTA - Text
--------------------------------------------------------------- */
.header-cta-text {
  font-size: 0.5625rem;
  line-height: 1.5;
  font-family: var(--font-accent);
  color: var(--scheme-sp-contrast);
  font-weight: 600;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--scheme-fg);
  margin: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .header-cta-text {
    /* Non-touch Devices Header Styles Start */
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-cta-text {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header-cta-text {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-cta-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-cta-text {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-cta-text {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Number/s
--------------------------------------------------------------- */
.header-numbers {
  display: inline-flex;
}
.header-numbers .number-block {
  margin-left: 1rem;
  line-height: 1;
}
.header-numbers .number-label {
  font-family: var(--font-secondary);
}
.header-numbers .number-link {
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .header-numbers .number-link {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-numbers {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1400px) {
  .header-numbers .number-link {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-numbers .number-link {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
  .header-numbers .number-link {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-numbers .number-link {
    font-size: 1.3125rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-numbers {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-numbers {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-numbers {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-buttons .button {
  --button-border-width: 2px;
}
@media only screen and (max-width: 767px) {
  .header-buttons .button {
    --button-height: 2rem;
    font-size: 0.5625rem;
  }
}

/* Header Navigation
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
    display: flex;
    justify-content: center;
    align-self: flex-end;
    padding-right: 1.5rem;
    flex: 1 1;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-nav {
    justify-content: flex-end;
    flex: 0 0 auto;
    padding-right: 0;
    align-self: stretch;
  }
}
@media only screen and (min-width: 1800px) {
  .header-nav {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    /* Touch Devices Header Styles Start */
    transition: top 0.25s ease-in-out, left 0.5s ease-in-out, opacity 0.5s ease-in-out;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: 9999;
    scrollbar-width: none;
    position: fixed;
    bottom: 0;
    left: 100%;
    top: 0;
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav {
    top: 0;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    color: inherit;
  }
}
.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open .header-nav {
    left: 0%;
    opacity: 1;
  }
}
.doc-header-menu-open.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Navigation Menu
--------------------------------------------------------------- */
.header-nav .menu {
  --layout-header-menu-touch-menu-padding-x: 2rem;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-dropdown-padding-x: 1.875rem;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-current-height: 3px;
  /* current item border indicator height */
  font-size: 0.9375em;
  line-height: 1.125;
  font-family: var(--font-accent);
  color: inherit;
  font-weight: 600;
}
.header-nav .menu li {
  display: flex;
  flex-wrap: wrap;
}
.header-nav .menu li,
.header-nav .menu li > a {
  position: relative;
}
.header-nav .menu li > a {
  padding: 1em 0;
  display: inline-flex;
  align-items: center;
  transition: 0.125s ease-in-out all;
  flex: 1 0;
  justify-content: flex-start;
}
.header-nav .menu li:last-child, .header-nav .menu li:last-child > a {
  /* disable border for last items */
  border: none;
}
.header-nav .menu li.menu-item-has-children > a::after {
  display: inline-block;
  align-self: center;
  flex: 0 0 auto;
  content: "+";
  transform-origin: center center;
  margin-left: 0.375em;
}
.header-nav .menu ul {
  background-color: var(--scheme-bg-contrast);
  color: var(--scheme-fg);
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1.125em;
  }
  .header-nav .menu li:not(:hover, :focus-within) > ul {
    display: none;
  }
  .header-nav .menu li {
    position: relative;
    padding-left: var(--layout-header-menu-nontouch-dropdown-padding-x);
    padding-right: var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li > a {
    /* flush dropdown indicator and text to the left */
    justify-content: center;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for nontouch */
    color: var(--scheme-sp-contrast);
  }
  .header-nav .menu li.menu-item-special > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    width: 600px;
    padding: 2rem var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li.menu-item-special > ul li {
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu li.menu-item-special > ul li.view-all {
    grid-column: 1/span 3;
  }
  .header-nav .menu li.menu-item-special > ul ul {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    width: auto;
  }
  .header-nav .menu ul {
    text-align: center;
    width: 195px;
    top: 0;
    left: 100%;
    /* Take dropdowns out of doc flow + setup for hover/focus effects */
    position: absolute;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .header-nav .menu > li {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li, .header-nav .menu > li > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    margin: 0;
  }
  .header-nav .menu > li > a {
    padding: 1.5rem 0;
  }
  .header-nav .menu > li::before {
    /* current menu item indicator */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.125s ease-in-out width;
    width: 0;
    height: var(--layout-header-menu-nontouch-current-height);
    background: var(--scheme-sp-contrast);
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor, :hover, :focus-within)::before {
    /* current menu item indicator if active */
    width: 100%;
  }
  .header-nav .menu > li > ul {
    background-color: var(--color-light);
    color: var(--color-dark);
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    /* additional border styles + align to current item indicator. comment out if not needed */
    border-top: var(--layout-header-menu-nontouch-current-height) solid var(--scheme-sp-contrast);
    margin-top: calc(var(--layout-header-menu-nontouch-current-height) * -1);
  }
  .header-nav .menu > li > ul > li:is(:hover, :focus-within) > a {
    color: var(--color-primary-alt);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-nav .menu > li:nth-last-child(-n+2) > ul {
    /* top level level dropdown edge case dropdown fix */
    left: auto;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-nav .menu > li:nth-last-child(-n+2) > ul ul,
  .header-nav .menu ul ul ul {
    /* deep deep deep inner level dropdown edge case dropdown fix */
    left: 25%;
  }
}
@media only screen and (min-width: 1400px) {
  .header-nav .menu {
    font-size: 1rem;
    gap: 1.625em;
  }
  .header-nav .menu ul {
    width: 215px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .menu {
    background: var(--color-light-alt);
    color: var(--scheme-bg-contrast);
    font-size: 1rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    width: 100%;
    text-align: center;
    /* shift menu to the right edge and limit width. comment if not needed*/
    margin-left: auto;
  }
  .header-nav .menu li:not(.open) > ul {
    display: none;
  }
  .header-nav .menu li {
    padding-left: var(--layout-header-menu-touch-menu-padding-x);
    padding-right: var(--layout-header-menu-touch-menu-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 0 100%;
    padding: 1.375em 0;
    justify-content: center;
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a {
    /* activated styles upon interaction for touch */
    color: var(--scheme-sp-contrast);
  }
  .header-nav .menu li:is(.open) {
    border-bottom: 0;
  }
  .header-nav .menu li:is(.open) > a {
    border-bottom: 0;
  }
  .header-nav .menu ul {
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    /* basic borders to contrast multiple dropdown levels */
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
  }
  .header-nav .menu > li:is(:hover, :focus-within, .open) > a {
    color: var(--scheme-sp);
  }
  .header-nav .menu > li > ul ul {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .menu {
    max-width: 100%;
  }
  .header-nav .menu li > a {
    text-align: center;
    justify-content: center;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu:after {
    content: "";
    display: block;
    height: 1px;
    width: 100vw;
    background: currentColor;
    opacity: 0.2;
    position: absolute;
    top: 100%;
  }
}
.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Form
--------------------------------------------------------------- */
/* ================================================================================
* Banner
================================================================================ */
/* Layout Banner
--------------------------------------------------------------- */
.layout-banner {
  overflow: hidden;
}
.layout-banner .banner-background .responsive-background-bg {
  background-position: center top;
}
.banner-has-background-image .layout-banner {
  /* Styles specific for when banner has background image */
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
.banner-no-background-image .layout-banner {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Main
--------------------------------------------------------------- */
.banner-main {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-main-blocks {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: 100%;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.banner-main-block, .banner-main-blocks {
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .banner-main {
    padding: 4.25rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-main {
    padding: 5.25rem 0;
  }
  .banner-main-block, .banner-main-blocks {
    min-width: 0;
  }
  .banner-main-block:first-child:last-child {
    flex: 1 1;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-main {
    padding: 6.5rem 0;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-main {
    padding: 8.25rem 0;
  }
}
.banner-has-background-image .banner-main {
  /* Styles specific for when banner has background image */
  min-height: 175px;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image .banner-main {
    padding: 3rem 0;
    min-height: 255px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-main {
    padding: 5rem 0;
    min-height: 390px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-background-image .banner-main {
    min-height: 415px;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-has-background-image .banner-main {
    min-height: 435px;
  }
}
.banner-has-background-image.header-overlay-on-banner .banner-main {
  /* Styles specific for when banner has the header overlay before scroll + Styles specific for when banner has background image */
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image.header-overlay-on-banner .banner-main {
    padding-top: 10rem;
    align-items: flex-end;
  }
}
.banner-no-background-image .banner-main {
  /* Styles specific for when banner doesnt support background image OR global fallback heading*/
  padding-bottom: 0;
}
/* Banner Body
--------------------------------------------------------------- */
.banner-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.banner-has-background-image .banner-body {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-body {
  /* Styles specific for when banner doesnt support background image */
}
/* Global Secondary Heading
--------------------------------------------------------------- */
.secondary-heading {
  font-size: 1rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  text-align: inherit;
  margin-bottom: 0.75em;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
.secondary-heading > span {
  /* split words */
}
.secondary-heading > span::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  margin: 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .secondary-heading > span:first-child::before {
    content: none;
  }
}
@media only screen and (max-width: 1199px) {
  .secondary-heading > span {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .secondary-heading > span:first-child::before {
    content: none;
  }
  .secondary-heading > span::before, .secondary-heading > span {
    display: block;
  }
}
.has-banner .secondary-heading {
  margin-left: auto;
  margin-right: auto;
}
.banner-has-background-image .secondary-heading {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .secondary-heading {
  /* Styles specific for when banner doesnt support background image */
}
/* Global Primary Heading
--------------------------------------------------------------- */
/* Note: default styles are set to custom internal templates w/ no banner background images  (Case Results, Testimonials, etc.) to reduce repetitive styles and or lengthy selectors */
.primary-heading {
  /* Global Styles / custom page template heading styles (Testimonials Grid, Attorney Grid, etc.) */
  font-size: 2.1875rem;
  line-height: calc(1em + 5px);
  margin-bottom: 0;
  --fancy-border-margin-y: .875em;
  --fancy-border-width: 12rem;
}
.primary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .primary-heading {
    font-size: 2.8125rem;
    --fancy-border-width: 15.625rem;
    --fancy-border-margin-y: 0.6em;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading {
    font-size: 3.4375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading {
    font-size: 4.0625rem;
  }
}
@media only screen and (min-width: 1800px) {
  .primary-heading {
    font-size: 4.6875rem;
  }
}
.primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
  font-size: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .primary-heading.primary-heading-default {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading.primary-heading-default {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading.primary-heading-default {
    font-size: 2.625rem;
  }
}
@media only screen and (min-width: 1800px) {
  .primary-heading.primary-heading-default {
    font-size: 3rem;
  }
}
.ilaw-default .primary-heading.primary-heading-default-h1 {
  /* Styles specific for default template primary heading set as an h1 (Single Post, Single Page) */
}
.primary-heading.primary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-title {
  /* Styles specific for blog post/ blog archive custom primary heading set as blog page's title eg 'Our Blog', 'Firm Blog', etc... Note: This will be an H1 on Blog/Archive but not in Single Posts for SEO (Single Posts, Blog/ Archive) */
}
.layout-banner .primary-heading {
  /* Styles specific for when it's inside a banner */
  margin-left: auto;
  margin-right: auto;
}
.primary-heading.h1-fallback-heading {
  /* Styles specific for when banner does not exist/ rendered as a helper class for the fallback h1 */
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .primary-heading.h1-fallback-heading {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading.h1-fallback-heading {
    font-size: 3.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading.h1-fallback-heading {
    font-size: 4.6875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .primary-heading.h1-fallback-heading {
    font-size: 5.625rem;
  }
}
.banner-has-background-image .primary-heading {
  /* Styles specific for when banner has background image */
  color: inherit;
  text-shadow: 0 2px 0.125em rgba(0, 0, 0, 0.8);
}
.banner-no-background-image .primary-heading {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner video (Optional depending on comps)
--------------------------------------------------------------- */
.banner-has-background-image .banner-video {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-video {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Content (Optional depending on comps)
--------------------------------------------------------------- */
.banner-content {
  width: 90%;
}
.banner-has-background-image .banner-content {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-content {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Buttons
--------------------------------------------------------------- */
.banner-buttons {
  margin-top: 1.25rem;
}
.banner-buttons-touch:nth-child(n+2) {
  margin-top: -0.5em;
}
.banner-buttons-touch:first-child {
  margin-top: 0.875rem;
}
.banner-buttons-touch:nth-last-child(n+2) {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .banner-buttons .button:nth-child(n+2) {
    margin-left: 1rem;
  }
  .banner-button-shift .banner-buttons-touch, .banner-has-h1.banner-button-shift .banner-buttons-touch + hr {
    /* hide buttons outside of banner */
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-buttons {
    margin-top: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-buttons .button:nth-child(n+2) {
    margin-top: 1rem;
  }
  .banner-button-shift .layout-banner .banner-buttons {
    /* hide buttons inside of banner */
    display: none;
  }
}

/* Banner Form
--------------------------------------------------------------- */
#banner-form .gfield.gfield_type_textarea textarea, #banner-form .gfield.gfield_type_multiselect select {
  /* set heights of multiline textareas */
}
/* ================================================================================
* Sidebar
================================================================================ */
/* Layout Sidebar
--------------------------------------------------------------- */
/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  --sidebar-form-border-width: 15px;
  background-color: var(--color-secondary);
  background-size: calc(100% + var(--sidebar-form-border-width) * 2) calc(100% + var(--sidebar-form-border-width) * 2);
  background-position: calc(var(--sidebar-form-border-width) * -1) calc(var(--sidebar-form-border-width) * -1);
  color: var(--color-light);
  --widget-padding-x: 25px;
  --widget-padding-top: 2rem;
  --widget-padding-bottom: calc(var(--widget-padding-top) + 2.5rem);
  border: var(--sidebar-form-border-width) solid transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px) {
  #sidebar-form {
    --widget-padding-x: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  #sidebar-form {
    --widget-padding-x: 35px;
  }
}
@media only screen and (min-width: 1400px) {
  #sidebar-form {
    --widget-padding-x: 40px;
  }
}
@media only screen and (min-width: 1800px) {
  #sidebar-form {
    --widget-padding-x: 49px;
  }
}
#sidebar-form .sidebar-field-form .gform_wrapper {
  position: relative;
}
#sidebar-form .sidebar-field-form .gform_heading {
  margin-bottom: 1.375rem;
}
#sidebar-form .sidebar-field-form .gform_title {
  font-size: 1.875rem;
  line-height: calc(1em + 6px);
  --fancy-border-width: 2.5rem;
  --fancy-border-margin-y: .5em;
}
#sidebar-form .sidebar-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#sidebar-form .sidebar-field-form .gform_description {
  max-width: 80ch;
}
#sidebar-form .sidebar-field-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#sidebar-form .sidebar-field-form .gform_button {
  --button-height: 3.5rem;
}
#sidebar-form .sidebar-field-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}
#sidebar-form .sidebar-field-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#sidebar-form .sidebar-field-form .gfield.required-message {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  margin-top: 1.25em;
}
@media only screen and (min-width: 1400px) {
  #sidebar-form .sidebar-field-form .gform_title {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 1199px) {
  #sidebar-form .sidebar-field-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
/* ================================================================================
Contact Template
================================================================================ */
/* Contact  Related Classes

Note: 
This file is for styles applied globally for the contact information (both footer and contact page)
For Contact Page only overrides for the contact informatio, apply styles to templates/template-contact.scss -> #contact-page
For Footer section only overrides for the contact informatio, apply styles to layout/layout-footer.scss -> .footer-contact styles section
-------------------------------------------------------------------------------- */
/* Global Stylees - Numbers (eg. header phone number, footer phone number, etc.)
-------------------------------------------------------------------------------- */
.number-link {
  display: inline-block;
}
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 1.375rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
  max-width: 9ch;
}
.social li {
  list-style: none;
}
.social li a {
  color: inherit;
}
.social li a svg * {
  fill: currentColor;
}
.social li:is(:hover, :focus) {
  color: var(--scheme-sp, var(--color-primary));
}
@media only screen and (min-width: 1200px) {
  .social {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .social {
    font-size: 1.625rem;
  }
}
/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
.location .location-number {
  margin-bottom: 0.25rem;
}
.location .location-directions-button {
  margin-top: 1.875rem;
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title {
  --fancy-border-margin-y: 1.25rem;
  margin-bottom: var(--fancy-border-margin-y);
}
@media only screen and (min-width: 768px) {
  .contact-block-title {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content {
  flex: 1 1;
  font-size: 1.0625rem;
  line-height: calc(1em + 10px);
}
.contact-block-content a:not(.button) {
  color: inherit;
  text-decoration: none;
}
.contact-block-content a:not(.button):is(:hover, :focus) {
  text-decoration: underline;
}
.contact-block-content :where(p, address):where(:nth-last-child(n+3)) {
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .contact-block-content {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-block-content {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1800px) {
  .contact-block-content {
    font-size: 1.375rem;
  }
}

/* Confact Info Block - Grid setup
-------------------------------------------------------------------------------- */
.contact-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-between;
  -moz-column-gap: 5.5rem;
       column-gap: 5.5rem;
  row-gap: 2.625rem;
}
.contact-block, .contact-blocks {
  min-width: 0;
}
.contact-block {
  align-self: stretch;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
.contact-block, .contact-block-content {
  display: flex;
  flex-direction: column;
}
.contact-block.contact-special {
  grid-column: 1/-1;
  text-align: center;
  max-width: 100%;
}
.contact-block.contact-special .logo {
  margin: 0 auto;
  height: 58px;
}
.contact-block.contact-special .content {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5em;
  max-width: 48ch;
}
.contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.contact-block.contact-number .number-title {
  display: block;
}
.contact-block.contact-numbers {
  /*
  @Variation B: One block
  Requires PHP: templates/template-contact.php - @Variation B: One block
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numbersColumn / @Variation B: One block
  */
}
.contact-block.contact-numbers .contact-numbers-content {
  display: grid;
  align-self: start;
  align-content: start;
  row-gap: 1.875rem;
}
.contact-block.contact-numbers .number-title {
  display: block;
}
.contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
.contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
.contact-block.contact-locations .contact-locations-content {
  display: grid;
  row-gap: 4rem;
}
.contact-block.contact-list-email {
  /* This is an example and can be omitted if not needed. each column added here will be separated by a class named after the block's title, unless the corresponding layout-contact.php markup has been modified.  */
  font-size: 1.5em;
  font-family: var(--font-secondary);
}
@media only screen and (min-width: 768px) {
  .contact-blocks {
    grid-template-columns: repeat(3, auto);
    row-gap: 5rem;
  }
  .contact-block.contact-special .content {
    max-width: 50.5ch;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-block.contact-special .content {
    max-width: 40ch;
  }
  .contact-block.contact-numbers .contact-numbers-content {
    row-gap: 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-block.contact-special .logo {
    height: 72px;
  }
}
@media only screen and (min-width: 1800px) {
  .contact-block.contact-special .logo {
    height: 78px;
  }
  .contact-block.contact-location .location-directions, .contact-block.contact-locations .location-directions {
    margin-top: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-blocks {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-block.contact-special {
    order: 99;
  }
}
@media only screen and (max-width: 767px) {
  .contact-blocks {
    justify-items: center;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
  }
  .contact-block.contact-social .social {
    justify-content: center;
  }
}

/* ================================================================================
* Footer
================================================================================ */
/* Branding logo sizes
--------------------------------------------------------------- */
.ilawyer-legacy,
.ilawyer,
.onep21 {
  color: inherit;
}

.ilawyer-legacy,
.ilawyer {
  font-size: 1.125rem;
}

.onep21 {
  font-size: 3.125rem;
}

/* Layout Footer
--------------------------------------------------------------- */
.layout-footer {
  --layout-offset: 162px;
  --layout-negate: 1px;
  padding-top: var(--layout-negate);
  margin-top: var(--layout-offset);
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
@media only screen and (min-width: 768px) {
  .layout-footer {
    --layout-offset: 195px;
  }
}
/* Footer Split - Top
--------------------------------------------------------------- */
/* Footer Form
--------------------------------------------------------------- */
#footer-form {
  padding: 2.5rem 1.875rem 5rem;
  margin-top: calc((var(--layout-negate) + var(--layout-offset)) * -1);
  max-width: 528px;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  #footer-form {
    padding: 3rem 4rem 3.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form {
    padding: 4.25rem 4rem 3.625rem;
    max-width: 900px;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form {
    padding: 5rem 4rem 6rem;
    max-width: 1050px;
  }
}
@media only screen and (min-width: 1800px) {
  #footer-form {
    padding: 5.75rem 4rem 5rem;
    max-width: 1360px;
  }
}
#footer-form .footer-field-form .gform_heading {
  margin-bottom: 1.75rem;
}
#footer-form .footer-field-form .gform_title {
  font-size: 2.0625rem;
  line-height: calc(1em + 10px);
  margin-bottom: 1rem;
}
#footer-form .footer-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#footer-form .footer-field-form .gform_description {
  font-size: 1rem;
  line-height: 1.375;
  color: var(--scheme-sp-contrast);
  max-width: 80ch;
}
#footer-form .footer-field-form .gform_body {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#footer-form .footer-field-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 2.625rem;
}
#footer-form .footer-field-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (min-width: 768px) {
  #footer-form .footer-field-form .gform_heading {
    margin-bottom: 2.75rem;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 2.8125rem;
  }
  #footer-form .footer-field-form .gform_description {
    font-size: 1.125rem;
  }
  #footer-form .footer-field-form .gform_footer {
    margin-top: 1.125rem;
  }
  #footer-form .footer-field-form .gfield_label {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form .footer-field-form .gform_heading {
    margin-bottom: 3.5rem;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 3.4375rem;
    margin-bottom: 1.625rem;
  }
  #footer-form .footer-field-form .gform_description {
    font-size: 1.1875rem;
  }
  #footer-form .footer-field-form .gform_footer {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form .footer-field-form .gform_heading {
    margin-bottom: 3.75rem;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 4.0625rem;
    margin-bottom: 2rem;
  }
  #footer-form .footer-field-form .gform_description {
    font-size: 1.3125rem;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 815px;
  }
}
@media only screen and (min-width: 1800px) {
  #footer-form .footer-field-form .gform_title {
    font-size: 4.6875rem;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 905px;
  }
}
@media only screen and (max-width: 1199px) {
  #footer-form .footer-field-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
  #footer-form .footer-field-form .gform_description {
    max-width: 37ch;
  }
}
@media only screen and (max-width: 767px) {
  #footer-form .footer-field-form .gform_wrapper {
    position: relative;
  }
  #footer-form .footer-field-form .gfield.required-message {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 1.5em;
  }
}

/* Footer Contact

Note: 
This file is for Contact Page only overrides for the contact information
For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Footer section only overrides for the contact information, apply styles to layout/layout-footer.scss -> .footer-contact styles section
--------------------------------------------------------------- */
.footer-contact {
  padding: 2.75rem 0;
}
.footer-contacts {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .footer-contact-container {
    --container-gutter: 95px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-contact {
    padding: 4.875rem 0 3rem;
  }
  .footer-contact .contact-blocks {
    grid-template-columns: repeat(4, auto);
  }
  .footer-contact .contact-block.contact-special {
    grid-column: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact {
    padding: 6.5rem 0 4rem;
  }
  .footer-contact-container {
    --container-gutter: 135px;
  }
  .footer-contact .contact-block:not(.contact-special) {
    padding-top: 0.25rem;
  }
  .footer-contact .contact-block.contact-special .content {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1800px) {
  .footer-contact {
    padding: 7.875rem 0 6rem;
  }
  .footer-contact-container {
    --container-gutter: 345px;
  }
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
.footer-disclaimer {
  margin-top: 1.25em;
  font-size: 0.9em;
}

/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  padding: 2.25rem 0;
  /* border separation all the way to the edge */
  border-top: 1px solid var(--scheme-bg-gradient-start);
  font-size: 0.875rem;
  line-height: calc(1em + 4px);
}
.footer-utility-blocks {
  display: grid;
  row-gap: 1.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
.footer-utility-content li {
  display: inline;
  margin: 0;
}
.footer-utility-content li:nth-child(n+2)::before {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .footer-utility-content p:not(.footer-disclaimer),
  .footer-utility-content ul,
  .footer-utility-content li {
    display: inline;
  }
  .footer-utility-content p:not(.footer-disclaimer):nth-child(n+2)::before,
  .footer-utility-content ul:nth-child(n+2)::before {
    content: " | ";
    display: inline-block;
    margin: 0 0.5em 0 0.25em;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-utility-blocks {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 6.5rem;
         column-gap: 6.5rem;
  }
  .footer-utility-content {
    margin-right: auto;
    order: -1;
  }
  .footer-utility-content:first-child {
    grid-column: span 2;
  }
  .footer-utility .social {
    text-align: center;
  }
  .footer-utility .social::before {
    content: none;
  }
  .footer-utility :is(.ilawyer-legacy, .ilawyer, .onep21) {
    order: 99;
    justify-self: self-end;
    align-self: self-start;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-utility-blocks {
    text-align: center;
    justify-content: center;
    justify-items: center;
  }
}
/* ================================================================================
* Internals/ Default
================================================================================ */
/*!
* Default Layout/Template
-------------------------------------------------------------------------------- */
/* Default Entries
-------------------------------------------------------------------------------- */
.entry-thumbnail {
  --entry-thumbnail-aspect-w: 864;
  --entry-thumbnail-aspect-l: 450;
  padding-bottom: 2rem;
  display: block;
}
.entry-thumbnail:is(a) {
  color: inherit;
}
.entry-thumbnail-img {
  position: relative;
  overflow: hidden;
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
.entry-thumbnail-img::before {
  content: "";
  display: block;
  padding-top: calc(100% * var(--entry-thumbnail-aspect-l) / var(--entry-thumbnail-aspect-w));
}
.entry-thumbnail-img::after {
  content: "No Image Available";
  opacity: 0.2;
  font-size: 1.5rem;
  line-height: 1.125;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2em 2em;
}
.entry-thumbnail-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  z-index: 1;
}
.entry-meta {
  color: var(--scheme-sp-contrast);
}
.entry-meta a:not(:hover, :focus) {
  text-decoration: underline;
  color: var(--scheme-fg);
}
.entry-buttons .button:nth-child(n+2) {
  margin-left: 1em;
}
.entries .entry {
  display: grid;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.entries .entry:nth-child(n+2) {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-neutral-light);
}
.entries .entry-thumbnail, .entries .entry-body {
  /* grid fix */
  min-width: 0;
}
@media only screen and (min-width: 1400px) {
  .entries .entry {
    grid-template-columns: 250px 1fr;
  }
  .entries .entry-thumbnail {
    margin-bottom: 0;
    --entry-thumbnail-aspect-w: 250;
    --entry-thumbnail-aspect-l: 200;
  }
  .entries .entry-body {
    align-self: center;
  }
  .entries .entry-body:first-child:last-child {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 1199px) {
  .entry-thumbnail {
    --entry-thumbnail-aspect-w: 648;
    --entry-thumbnail-aspect-l: 260;
  }
}
/*!
* Default Sections: Main + Aside: Can also be reused on other templates with similar wireframes (eg. Profile Page, etc.)
-------------------------------------------------------------------------------- */
/* Default Sections: Main + Aside: Skeletons - no need to edit
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .default-section {
    /* 2 column styles. move to media queries by design as needed */
  }
  .default-sections, .default-section-main, .default-section-sidebar {
    min-width: 0; /* grid/flex fixes*/
  }
  .default-sections {
    --default-sidebar-width: 100%;
    --default-gap: 0px;
    -moz-column-gap: var(--default-gap);
         column-gap: var(--default-gap);
  }
  .default-section-main {
    width: calc(100% - (var(--default-sidebar-width)) - var(--default-gap));
    max-width: calc(var(--comp) - (var(--default-sidebar-width)) - var(--default-gap));
  }
  .default-section-main:first-child:last-child {
    /* no sidebar disabled adjust */
    margin-left: auto;
    margin-right: auto;
  }
  .default-section-sidebar {
    order: 9;
    width: var(--default-sidebar-width);
  }
  .default-sections-reverse .default-section-sidebar {
    order: -1;
  }
  .default-sections-reverse .default-section-main {
    order: 9;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-sidebar {
    float: left;
    clear: left;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-main {
    float: right;
    clear: right;
  }
  .default-sections.default-sections-grid.default-sections-reverse {
    grid-template-columns: var(--default-sidebar-width) 1fr;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-sidebar {
    grid-column: 1;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-main {
    grid-column: 2;
  }
  .default-sections.default-sections-float .default-section-sidebar {
    float: right;
    clear: right;
  }
  .default-sections.default-sections-float .default-section-main {
    float: left;
    clear: left;
  }
  .default-sections.default-sections-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .default-sections.default-sections-full {
    --default-gap: 0rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .default-sections.default-sections-full .default-section-main {
    margin-left: auto;
    margin-right: auto;
  }
  .default-sections.default-sections-grid {
    display: grid;
    grid-template-columns: 1fr var(--default-sidebar-width);
    grid-column-gap: var(--default-gap);
  }
  .default-sections.default-sections-grid .default-section-main {
    grid-column: 1;
    justify-self: center;
  }
  .default-sections.default-sections-grid .default-section-sidebar {
    grid-column: 2;
  }
  .default-sections.default-sections-grid .default-section-main, .default-sections.default-sections-grid .default-section-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .default-sections:not(.default-sections-full) .default-section-sidebar.aside, .default-sections:not(.default-sections-full) aside.default-section-sidebar {
    /* remove double spacing between sections on one column layout if .aside */
    padding-top: 0;
  }
}

/* Default Sections Customizations
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 340px;
    --default-gap: 102px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-gap: 110px;
  }
}
@media only screen and (min-width: 1800px) {
  .default-sections {
    --default-sidebar-width: 400px;
    --default-gap: var(--container-gutter);
  }
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-split .default-section-sidebar-container {
    --container-gutter: 1rem;
  }
}
.default-sections.default-sections-full .default-section-sidebar {
  background: var(--color-light-alt);
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 120px;
  }
}
@media only screen and (min-width: 1800px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 250px;
  }
}
/*!
* Default Header
-------------------------------------------------------------------------------- */
.default-header {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .banner-has-h1.banner-button-shift .default-header {
    margin-bottom: 0;
  }
}
/*!
* Default Heading
-------------------------------------------------------------------------------- */
.default-heading {
  margin-bottom: 2rem;
}
/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
/* ================================================================================
* Includes 
================================================================================ */
/* Awards slider
--------------------------------------------------------------- */
.carousel {
  /* height of award. best to set to the tallest award logo provided  */
  --carousel-height: 108px;
  --carousel-arrow-offset-x: var(--container-gutter,25px);
  /* distance of arrows from the slider  */
  --carousel-arrow-offset-x-negate: var(--carousel-arrow-offset-x);
  --carousel-arrow-offset-x-negate: calc(var(--carousel-arrow-offset-x) - 1rem);
  /* distance to compensate the arrow distance against the width of the .carousel element's parent  */
  /* distance of dots to the awards */
  --swiper-pagination-margin: 3rem;
  overflow: hidden;
}
.carousel .swiper {
  padding-left: var(--carousel-arrow-offset-x);
  margin-left: calc(var(--carousel-arrow-offset-x-negate) * -1);
  padding-right: var(--carousel-arrow-offset-x);
  margin-right: calc(var(--carousel-arrow-offset-x-negate) * -1);
}
.carousel-slide {
  text-align: center;
}
.carousel-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  line-height: 1.5;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
}
.carousel-slide-image {
  height: var(--carousel-height);
  position: relative;
}
.carousel-slide-image, .carousel-slide-image picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.carousel-slide-image :where(svg, object, img) {
  height: auto !important;
}
.carousel-slide-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.carousel-slide-image :where(img, svg, object, picture) {
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
}
.carousel-slide-image :where(img, svg, object, picture) {
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) {
  .carousel {
    --carousel-height: 115px;
  }
}
@media only screen and (min-width: 1400px) {
  .carousel {
    --carousel-height: 118px;
    --swiper-pagination-margin: 4rem;
  }
}
@media only screen and (min-width: 1800px) {
  .carousel {
    --carousel-height: 134px;
  }
}
/* Carousel Variations
--------------------------------------------------------------- */
/* remove jpg white backgrounds. This fix will only work if the awards are on light backgrounds */
.carousel.carousel-style-remove-background .carousel-slider {
  mix-blend-mode: multiply;
}

/* Background Block: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/partials/responsive-background
--------------------------------------------------------------- */
/* Responsive Background skeletons. Do not Edit.
--------------------------------------------------------------- */
.responsive-background {
	pointer-events: none;
	overflow: hidden;
	transform-style: preserve-3d;
	z-index: -1;
	background-color: var(--responsive-background-bg-color,var(--scheme-bg, var(--color-dark-alt)));
  }
  .responsive-background::after {
	content: "";
	display: block;
	inset: 0;
	position: absolute;
	pointer-events: none;
	mix-blend-mode: var(--responsive-background-overlay-mix-blend, none);
	background: var(--responsive-background-overlay-background, normal);
  }
  .responsive-background-wrapper {
	position: relative;
	z-index: 0;
  }
  .responsive-background, .responsive-background-bg {
	position: absolute !important;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  }
  .responsive-background-bg {
	/* Note: when styling instances of this block, make sure properties are NOT set as shorthand to avoid override issues */
	background-size: cover;
	background-position: center center;
	/* Note: Best practice to add fallback background-colors to your background images */
	background-color: inherit;
	z-index: -2;
	background-image: var(--responsive-background-image, none) !important;
  }
  .responsive-background-bg:is(img) {
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center center;
	   object-position: center center;
	width: 100%;
	height: 100%;
  }
  @media only screen and (min-width: 1200px) {
	:is(.responsive-background-animated-on-loaded, .responsive-background-animated-on-visible.visible) .responsive-background-bg {
	  /* make background block animate for document ready or when visible*/
	  transition: opacity ease-in-out 1.5s, transform ease-in-out 1.5s;
	  opacity: 1;
	  transform: scale(1);
	  transform-style: preserve-3d;
	}
	:is(html:not(.doc-images-loaded) .responsive-background-animated-on-loaded,
	.responsive-background-animated-on-visible:not(.visible)) .responsive-background-bg {
	  /* hide if not ready to let the world to know got to let it show */
	  opacity: 0;
	  transform: scale(1.125);
	}
  }
  
  /* Responsive Background Customizations
  --------------------------------------------------------------- */
  .responsive-background {
	--responsive-background-overlay-mix-blend: normal;
	--responsive-background-overlay-background: none;
  }

/*
* Case Result Icon
-------------------------------------------------------------------------------- */
.result-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4375em;
}
.result-icon svg * {
  fill: var(--scheme-sp-contrast);
}
@media only screen and (min-width: 1200px) {
  .result-icon {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result-icon {
    font-size: 1.875rem;
    margin-bottom: 0.75em;
  }
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 1.875rem;
  line-height: 1;
  font-family: var(--font-secondary);
  color: var(--scheme-fg-gradient-start);
  text-transform: uppercase;
  font-weight: 700;
  --fancy-border-margin-y: 1.1875rem;
  margin-bottom: var(--fancy-border-margin-y);
  max-width: -webkit-min-content;
  max-width: -moz-min-content;
  max-width: min-content;
  --fancy-border-width: 2rem;
}
.result-value-confidential {
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .result-value {
    font-size: 2.1875rem;
    --fancy-border-margin-y: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .result-value {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result-value {
    font-size: 2.8125rem;
    --fancy-border-margin-y: 1.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  .result-value {
    font-size: 3.125rem;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
.result-title {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  max-width: 11.75em;
}
@media only screen and (min-width: 768px) {
  .result-title {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .result-title {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result-title {
    font-size: 1.125rem;
  }
}
/*
* Case Result Description
-------------------------------------------------------------------------------- */
.result-description {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  color: var(--scheme-sb);
}
@media only screen and (min-width: 768px) {
  .result-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .result-description {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result-description {
    font-size: 1.125rem;
  }
}
/*
* Case Result Learn More - Optional
-------------------------------------------------------------------------------- */
.result-learn-more {
  margin-top: 2rem;
}
/*
* Case Result Description + Details Split
-------------------------------------------------------------------------------- */
.result-summary {
  margin-bottom: auto;
}
.result-details {
  padding-top: 1.5rem;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
@media only screen and (min-width: 1400px) {
  .result-details {
    padding-top: 2.125rem;
  }
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  text-align: center;
  position: relative;
}
:is(.result, .result-container, .result-summary) {
  display: flex;
  min-width: 0;
}

:is(.result-container, .result-summary) {
  flex-direction: column;
  flex: 1 1;
}
.result.fancy-underlay .result-container {
  padding: 2rem;
}
.result.fancy-underlay .result-container:not(.fancy-border-box) {
  background: var(--scheme-bg);
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
.result :where(.result-description, .result-content) {
  margin-left: auto;
  margin-right: auto;
}
:is(.result, .result .fancy-underlay) {
  --fancy-underlay-size: auto 120%;
  --fancy-underlay-position: bottom right;
}

.result-summary {
  align-items: center;
}
.result-details-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}
.result-details-default .result-description {
  flex: 1 1;
}
.result-details-default .result-learn-more:first-child {
  margin-top: auto;
}
.result-details-hover {
  max-width: none;
  position: absolute;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  scrollbar-width: none;
  overflow-y: scroll;
  transition: 0.25s all ease-in-out;
  padding: 2rem;
  opacity: 1;
}
.result-details-hover::-webkit-scrollbar {
  display: none;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
/*
* Practice Area Menu Skeleton. Do not Edit
-------------------------------------------------------------------------------- */
.practice-area-menu li {
  padding-left: var(--pa-item-padding-x);
  padding-right: var(--pa-item-padding-x);
}
.practice-area-menu li,
.practice-area-menu li a {
  display: flex;
  flex-direction: column;
}
.practice-area-menu li:nth-child(-n+1) {
  border-top: 0;
}
.practice-area-menu li a {
  justify-content: center;
  flex: 1 1;
  padding-top: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * var(--pa-item-baseline-offset));
  padding-bottom: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * (1 - var(--pa-item-baseline-offset)));
  min-height: var(--pa-item-height);
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-primary);
}
@media only screen and (max-width: 767px) {
  .practice-area-menu li a {
    min-height: 0;
  }
}

/*
* Practice Area Vars/ Scaffolding
-------------------------------------------------------------------------------- */
.practice-area {
  /* horizontal padding for the practice area item */
  --pa-item-padding-x: 0rem;
  /* height of practice area item. designers will prefer to design buttons based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case buttons */
  --pa-item-height: 2.75em;
  /* Note: this value has to be unitless for calc values to work.
  	* Number of lines to compensate for the item height */
  --pa-item-lines: 2;
  /* Note: this value has to be unitless for calc values to work.
  	* 1 moves the text to the very bottom. 0 moves the text to the very top */
  --pa-item-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work.
  	* Formula is line-height-px / font-size-px */
  --pa-item-line-height: 1.5;
  line-height: var(--pa-item-line-height);
}
@media only screen and (min-width: 768px) {
  .practice-area {
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .practice-area {
    /* reset heights to normal flow */
    --pa-item-lines: 1;
  }
}

/*
* Practice Area Category Title
-------------------------------------------------------------------------------- */
.practice-area-title {
  margin-bottom: 1rem;
}
/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--scheme-sp-contrast);
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area {
  width: 100%;
  --fancy-underlay-position: 90% 80%;
}
.practice-area, .practice-area-container {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.practice-area-container {
  flex: 1 1;
}
.practice-area.fancy-underlay .practice-area-container {
  padding: 2.25rem 2rem;
}
.practice-area.fancy-underlay .practice-area-container:not(.fancy-border-box) {
  background: var(--scheme-bg);
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 768px) {
  .practice-area.fancy-underlay .practice-area-container {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .practice-area {
    --fancy-underlay-offset: 30px;
    --fancy-underlay-position: 100% 80%;
  }
}
/* Pagination
-------------------------------------------------------------------------------- */
/* pagination skeletion. no need to edit */
.pagination {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.pagination-block {
  grid-row: 1;
}
.pagination-block-left {
  grid-column: 1;
  text-align: left;
}
.pagination-block-center {
  grid-column: 2;
}
.pagination-block-right {
  grid-column: 3;
  text-align: right;
}
.pagination-num-list.pagination-block-left span:first-child,
.pagination-num-list.pagination-block-left a:first-child {
  margin-left: 0;
}
.pagination-num-list.pagination-block-right span:last-child,
.pagination-num-list.pagination-block-right a:last-child {
  margin-left: 0;
}
@media only screen and (max-width: 1199px) {
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
  }
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) a:nth-last-child(n+2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) a:nth-last-child(n+2) {
    margin-right: 0.5em;
  }
}
/* pagination styles. customize as needed */
.pagination {
  border-top: 1px solid var(--color-neutral-light);
  padding-top: 2rem;
  margin-top: 3rem;
}
.pagination .current,
.pagination a:is(:hover, :focus) {
  color: var(--color-primary);
}
.pagination-num-list a,
.pagination-num-list span {
  margin: 0 0.5em;
}
/*
* Profile Image
-------------------------------------------------------------------------------- */
.profile-image {
  --profile-image-aspect-w: 345;
  --profile-image-aspect-l: 412;
  --profile-image-overlay-background: var(--color-dark-alt) linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  --profile-image-overlay-opacity: .8;
  width: 100%;
  display: block;
  position: relative;
}
.profile-image::before {
  /* aspect ratio keeper + hover overlay */
  content: "";
  display: block;
  position: relative;
  padding-top: calc(100% * var(--profile-image-aspect-l) / var(--profile-image-aspect-w));
}
.profile-image-img, .profile-image-placeholder, .profile-image-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.profile-image-img, .profile-image-placeholder-img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--color-neutral-lighter);
  background-color: var(--color-dark);
  --fancy-border-width: 3rem;
  font-size: 1.125rem;
  font-family: var(--font-secondary);
  color: var(--scheme-fg, var(--color-light));
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.profile-image-placeholder-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.profile-image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
* Profile Image Pseudos: wheh linking to a bio page only
-------------------------------------------------------------------------------- */
.profile-image[href]:is(:hover, :focus-within)::before, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href]::before {
  opacity: var(--profile-image-overlay-opacity);
  pointer-events: auto;
}
.profile-image[href]:is(:hover, :focus-within) .profile-view, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view {
  opacity: 1;
  pointer-events: auto;
}
.profile-image[href]::before,
.profile-image[href] .profile-view {
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
}
.profile-image[href]::before {
  /* Overlay effect */
  z-index: 1;
  background: var(--profile-image-overlay-background);
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.profile-image[href] .profile-view {
  /*  */
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

/*
* Profile View text
-------------------------------------------------------------------------------- */
/*
* Profile Thumbnail
-------------------------------------------------------------------------------- */
.profile-thumbnail {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  position: relative;
}

/*
* Profile Additional Details
-------------------------------------------------------------------------------- */
.profile-details {
  /* view profile hit space/ additional details container */
  padding: 2rem 1rem;
  transition: 0.5s ease-in-out all;
  color: var(--color-light);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: var(--color-dark-alt);
}
.profile-details::before {
  content: "";
  color: var(--color-light);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.profile-details:is(:hover, :focus-within), .profile-pointer-reference:is(:hover, :focus-within) .profile-details {
  opacity: 1;
  pointer-events: auto;
}
.profile-details-body {
  flex: 1 1;
  overflow-y: scroll;
  scrollbar-width: none;
}
.profile-details-body::-webkit-scrollbar {
  display: none;
}
.profile-details-body + .profile-details-footer {
  padding-top: 2rem;
  align-self: stretch;
}

/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-name {
  font-size: 1.625rem;
  font-family: var(--font-secondary);
  align-content: center;
  margin-bottom: 0.25em;
}
@media only screen and (min-width: 1200px) {
  .profile-name {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .profile-name {
    font-size: 2rem;
  }
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-position {
  font-size: 0.875rem;
  color: var(--scheme-sp-contrast);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 0;
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile:is(:hover, :focus-within) {
  /* styles when the profile has a link */
}
.profile, .profile-container {
  display: flex;
  min-width: 0;
}
.profile-container {
  flex-direction: column;
  flex: 1 1;
  margin-left: auto;
  margin-right: auto;
}
.profile-info {
  flex: 1 1;
  padding-left: 20px;
}
.profile-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1400px) {
  .profile-info {
    padding-left: 30px;
  }
}
/*
* Testimonial Stars
-------------------------------------------------------------------------------- */
.testimonial-stars {
  font-size: 2rem;
  margin-bottom: 1.2em;
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 1.875rem;
  line-height: calc(1em + 8px);
  text-align: inherit;
  margin-top: 0;
  margin-bottom: 2.35rem;
}
.testimonial-highlight.blockquote:before {
  content: none;
}
@media only screen and (min-width: 768px) {
  .testimonial-highlight {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-highlight {
    font-size: 2.5rem;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  margin-top: 0;
  margin-bottom: 3em;
  --fancy-border-width: 11rem;
  --fancy-border-margin-y: 2em;
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
/*
* Testimonial Source
-------------------------------------------------------------------------------- */
.testimonial-source {
  margin-bottom: 0;
}
.testimonial-source span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  margin: 0 0.25em;
}
/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial, .testimonial-container {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial-container {
  align-self: stretch;
  flex: 1 1;
}
.testimonial.fancy-underlay .testimonial-container {
  padding: 4rem 2rem;
}
.testimonial.fancy-underlay .testimonial-container:not(.fancy-border-box) {
  background: var(--scheme-bg);
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
.testimonial :where(.testimonial-stars, .testimonial-highlight, .testimonial-quote, .testimonial-divider),
.testimonial :not(.testimonial-divider) + .testimonial-source {
  margin-top: auto;
}
.testimonial, .testimonial-container {
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .testimonial :where(.testimonial-highlight, .testimonial-quote) {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial .testimonial-highlight {
    max-width: 60ch;
  }
  .testimonial .testimonial-quote {
    width: 80%;
    max-width: 87ch;
  }
}
/* Video Button - Default (One that doesnt have custom markup in it, just the usual one with a play symbol)
--------------------------------------------------------------- */
.video-button-default {
  --video-button-size: 98px;
  /* size of video button by height and or width */
  --video-button-text-svg-radius-ratio: 1.25;
  /*  ratio of svg path for rounded text. */
  --video-button-glyph-height: 0.1836734694em;
  /* height for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-width: 0.1632653061em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  display: inline-flex;
  width: 1em;
  height: 1em;
  position: relative;
  font-size: var(--video-button-size);
  z-index: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
}
@media only screen and (min-width: 1400px) {
  .video-button-default {
    --video-button-size: 120px;
  }
}
.video-button-default, .video-button-default-image, .video-button-default-text, .video-button-default::before, .video-button-default::after, .video-button-default-thumbnail-markup::after {
  transition: 0.25s ease-in-out all;
}
.video-button-default-image, .video-button-default-text, .video-button-default-text-svg, .video-button-default-text span, .video-button-default::before, .video-button-default::after {
  position: absolute;
  margin: auto;
  pointer-events: none;
}
.video-button-default-text, .video-button-default-image {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-button-default.video-button-default-no-icon::before, .video-button-default.video-button-default-no-icon::after {
  content: "";
  display: block;
}
.video-button-default > .wistia_click_to_play {
  position: static !important;
  width: auto !important;
  height: auto !important;
}
.video-button-default-glyph {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.video-button-default-glyph::before {
  content: "";
  display: block;
  width: var(--video-button-glyph-width);
  height: var(--video-button-glyph-height);
  background: var(--video-button-glyph-color, currentColor);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-button-default-glyph:not(.video-button-default-glyph-has-text) {
  padding-left: calc(var(--video-button-glyph-width) * 0.25);
}
.video-button-default-glyph-has-text::before {
  content: none;
}
.video-button-default-glyph-text {
  font-size: var(--video-button-glyph-height);
}
.video-button-default-text {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-neutral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-text-svg {
  transform-style: preserve-3d;
  max-width: none;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  font-size: calc(1em * 1 / var(--video-button-text-svg-radius-ratio));
  width: calc(200% * var(--video-button-text-svg-radius-ratio));
  height: calc(200% * var(--video-button-text-svg-radius-ratio));
}
.video-button-default-text-svg path {
  transform-origin: center center;
}
.video-button-default-text-html span {
  top: 0;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.video-button-default-text-html span:nth-child(odd) {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:nth-child(even) {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image {
  transition: all 0.25s ease-in-out;
}
.video-button-default-image-init, .video-button-default:is(:hover, :focus) .video-button-default-image-hover, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-hover {
  opacity: 1;
}

.video-button-default-image-hover, .video-button-default:is(:hover, :focus) .video-button-default-image-init, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-init {
  opacity: 0;
}

.video-button-default.video-button-default-no-icon {
  /* these are basic styles. overhaul as needed */
}
.video-button-default.video-button-default-no-icon, .video-button-default.video-button-default-no-icon::before, .video-button-default.video-button-default-no-icon::after {
  /* these are basic styles. overhaul as needed */
  border-radius: 999em;
}
.video-button-default.video-button-default-no-icon::before {
  /* fake background */
  /* these are basic styles. overhaul as needed */
  z-index: -1;
  top: 0.1em;
  bottom: 0.1em;
  left: 0.1em;
  right: 0.1em;
}
.video-button-default.video-button-default-no-icon::after {
  /* other element for fx */
  /* these are basic styles. overhaul as needed */
  border: 1px solid currentColor;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-button-default.video-button-default-no-icon, .video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse {
  --video-button-glyph-color: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
}
.video-button-default.video-button-default-no-icon:before, .video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse:is(:hover, :focus):before, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse:before {
  background: linear-gradient(to bottom, currentColor, currentColor);
}
.video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse, .video-button-default.video-button-default-no-icon:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon {
  /* on hover on itself/ containing repeater/ .video-pointer-reference */
  /* these are basic styles. overhaul as needed */
  --video-button-glyph-color: currentColor;
}
.video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse::before, .video-button-default.video-button-default-no-icon:is(:hover, :focus)::before, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::before {
  /* these are basic styles. overhaul as needed */
  background: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
}
.video-button-default.video-button-default-no-icon.video-button-default.video-button-default-no-icon-reverse::after, .video-button-default.video-button-default-no-icon:is(:hover, :focus)::after, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::after {
  /* these are basic styles. overhaul as needed */
}

/* Video Thumbnail
--------------------------------------------------------------- */
.video-thumbnail {
  --video-thumbnail-aspect-w: 460;
  --video-thumbnail-aspect-l: 255;
  --video-thumbnail-overlay-background: var(--color-dark-alt) linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  --video-thumbnail-overlay-opacity: .8;
  position: relative;
  display: block;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-light-alt);
  cursor: pointer;
}
.video-thumbnail::before {
  /* aspect ratio keeper  */
  content: "";
  display: block;
  padding-top: calc(100% * var(--video-thumbnail-aspect-l) / var(--video-thumbnail-aspect-w));
}
.video-thumbnail-markup {
  overflow: hidden;
}
.video-thumbnail-markup[href]::after, .video-thumbnail-markup.wistia_embed::after {
  /* overlay */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: var(--color-primary);
  background: var(--video-thumbnail-overlay-background);
  opacity: 0.1;
  mix-blend-mode: multiply;
  transition: 0.25s ease-in-out all;
}
.video-thumbnail-markup-img img {
  max-width: none;
}
.video-thumbnail:is(:hover, :focus) .video-thumbnail-markup::after, .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail .video-thumbnail-markup::after {
  opacity: var(--video-thumbnail-overlay-opacity);
}
.video-thumbnail .video-button-default {
  /* customize instances of video button within thumbnail*/
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  --video-button-size: 64px;
}
@media only screen and (min-width: 1400px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 75px;
  }
}
@media only screen and (min-width: 1800px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 96px;
  }
}
/* force object fit cover where we need to, im looking at you wistia
--------------------------------------------------------------- */
.video-thumbnail-markup,
.video-thumbnail-markup > *,
.video-thumbnail-markup img,
.video-button-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  margin: 0 !important;
}

/* includes/repeater-video
--------------------------------------------------------------- */
.video, .video-container {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.video-container {
  flex: 1 1;
}
.video-thumbnail {
  --fancy-underlay-offset: 25px;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.2777777778;
  max-width: 22em;
  margin-bottom: 0;
  margin-top: 1.75em;
}

/* ================================================================================
* Parts 
================================================================================ */
/* Review Us Page
--------------------------------------------------------------- */
.review-us {
  text-align: center;
}
.review-us-columns {
  --columns-gap-x: 4em;
  --columns-gap-y: 2em;
  align-items: flex-end;
  justify-content: center;
}
.review-us-columns .button {
  margin-top: 1em;
}
.review-us, .review-us-video {
  margin-top: 3em;
}
@media only screen and (min-width: 768px) {
  .review-us-columns {
    --columns-number: 2;
  }
  .review-us-columns .button {
    width: 100%;
  }
}
/* Awards
--------------------------------------------------------------- */
/* ================================================================================
* Home Template
================================================================================ */
/*
* Home Related Classes
-------------------------------------------------------------------------------- */
.home-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home-section .section-header, .home-section .section-footer {
  /* set centering as a scaffolding setting for all sections */
  text-align: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.home-section .section-header {
  margin-bottom: 2rem;
}
.home-section .section-heading:is(h4) {
  letter-spacing: 0.12em;
}
.home-section .section-blocks {
  display: grid;
  grid-template-columns: 100%;
}
.home-section .section-block, .home-section .section-blocks {
  min-width: 0;
}
.home-section .section-footer {
  margin-top: 2rem;
}
.home-section .section-heading {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .home-section .section-header, .home-section .section-footer {
    /* set centering as a scaffolding setting for all sections */
    text-align: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
* Home Template
-------------------------------------------------------------------------------- */
body.ilaw-template-home {
  /* body selector for home template */
}

#home-banner {
  --banner-offset: 365px;
  --banner-gradient-offset-dark: 40%;
  --banner-gradient-offset-light: 0%;
  background-color: var(--scheme-fg);
  margin-bottom: calc(var(--banner-offset) * -1);
}
#home-banner:before, #home-banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
#home-banner:before {
  background-image: linear-gradient(to bottom, transparent calc(var(--banner-gradient-offset-dark) + var(--layout-header-height)), var(--scheme-bg-gradient-start) 100%);
}
#home-banner:after {
  mix-blend-mode: multiply;
  opacity: 0.9;
  background-image: linear-gradient(to bottom, transparent calc(var(--banner-gradient-offset-dark) * 0.625 + var(--layout-header-height)), #000 100%);
}
#home-banner + main {
  position: relative;
}
#home-banner .primary-heading {
  font-size: 2.375rem;
}
#home-banner .banner-background {
  background-color: var(--scheme-bg);
  z-index: -2;
}
#home-banner .banner-main {
  min-height: 845px;
  align-items: flex-end;
  padding-top: 3.125rem;
  padding-bottom: 2.5rem;
}
#home-banner .banner-main:after {
  content: "";
  height: var(--banner-offset);
  display: block;
  flex: 0 0 auto;
  width: 100%;
}
#home-banner .banner-video {
  --fancy-underlay-opacity: .5;
  --fancy-underlay-position: 50% 20%;
  --fancy-underlay-size: cover;
  width: 360px;
}
#home-banner .banner-video-cta {
  font-size: 0.8125rem;
  text-align: right;
  padding-top: 1em;
  padding-bottom: 1em;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: block;
  margin-left: auto;
}
#home-banner .video-thumbnail {
  --video-thumbnail-aspect-w: 460;
  --video-thumbnail-aspect-l: 257;
}
#home-banner .banner-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.0625rem;
}
#home-banner .banner-slides {
  font-size: 1.0625rem;
  line-height: 1.7058823529;
  font-style: 600;
  justify-self: normal;
  margin-top: 3rem;
}
#home-banner .banner-slide-counter {
  font-size: 1.875rem;
  flex: 0 0 auto;
}
#home-banner .banner-slide-divider {
  --fancy-border-height: 1px;
  max-width: 14em;
  background: var(--scheme-sb);
}
#home-banner .banner-slide-text {
  max-width: 15em;
}
@media only screen and (min-width: 768px) {
  #home-banner {
    --banner-offset: 210px;
  }
  #home-banner .banner-main {
    min-height: 550px;
  }
  #home-banner .primary-heading {
    font-size: 3.125rem;
  }
  #home-banner .banner-main {
    padding-top: 2.375rem;
  }
  #home-banner .banner-slides {
    font-size: 1.125rem;
    margin-top: 3.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner {
    --banner-offset: 235px;
  }
  #home-banner .banner-main {
    min-height: 1060px;
    padding-top: 16rem;
    padding-bottom: 2.75rem;
  }
  #home-banner .banner-main-blocks {
    grid-template-columns: 1fr auto;
    justify-content: start;
    justify-items: normal;
    padding-left: 4.375rem;
  }
  #home-banner .banner-body {
    /* align left on a breakpoint */
    text-align: left;
    align-items: flex-start;
  }
  #home-banner .layout-banner-container {
    --container-gutter: 60px;
  }
  #home-banner .primary-heading {
    font-size: 3.75rem;
  }
  #home-banner .banner-buttons {
    margin-top: 2rem;
  }
  #home-banner .banner-video {
    --fancy-underlay-animated-offset: calc(var(--fancy-underlay-offset) * 2);
    align-self: self-end;
  }
  #home-banner .video-thumbnail {
    max-width: calc(100% - 0.75rem);
    margin-left: 0;
  }
  #home-banner .banner-body {
    order: -1;
  }
  #home-banner .banner-slides {
    grid-column: span 2;
    margin-top: 4.625rem;
    max-width: 52em;
  }
  #home-banner .banner-slide-counter {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #home-banner .banner-slide-text {
    max-width: 13em;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .responsive-background {
    transform: translateY(calc(0% + 200px * (var(--parallax-calculation, 0)))) scale(calc(1 + 0.025 * (var(--parallax-calculation, 0))));
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner {
    --banner-offset: 273px;
  }
  #home-banner .banner-main {
    min-height: 1170px;
    padding-top: 15.5rem;
  }
  #home-banner .banner-main-blocks {
    padding-left: 5.375rem;
  }
  #home-banner .primary-heading {
    font-size: 4.6875rem;
  }
  #home-banner .banner-video {
    width: 405px;
    --fancy-underlay-offset: 28px;
  }
  #home-banner .banner-video-cta {
    font-size: 0.875rem;
  }
  #home-banner .banner-slide {
    gap: 1.125rem;
  }
  #home-banner .banner-slides {
    margin-top: 4.375rem;
    font-size: 1.25rem;
  }
  #home-banner .banner-slide-counter {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1800px) {
  #home-banner {
    --banner-offset: 245px;
  }
  #home-banner .layout-banner-container {
    --container-gutter: 160px;
  }
  #home-banner .banner-main {
    min-height: 1225px;
    padding-top: 15rem;
    padding-bottom: 7.5rem;
  }
  #home-banner .banner-main-blocks {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  #home-banner .primary-heading {
    font-size: 5.625rem;
  }
  #home-banner .banner-buttons {
    margin-top: 2.375rem;
  }
  #home-banner .banner-video {
    --fancy-underlay-offset: 32px;
    width: 524px;
  }
  #home-banner .banner-video-cta {
    padding-right: 0.25em;
    font-size: 1.125rem;
  }
  #home-banner .banner-slides {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 1199px) {
  #home-banner {
    --banner-gradient-offset-dark: 1%;
  }
  #home-banner .banner-video {
    --fancy-underlay-offset: 12px;
    width: 205px;
    padding-bottom: var(--fancy-underlay-offset);
  }
  #home-banner .banner-video + .banner-body {
    margin-top: 1.75rem;
  }
  #home-banner .video-button-default {
    --video-button-size: 40px !useant;
  }
  #home-banner .banner-slide {
    align-items: center;
  }
  #home-banner .banner-slides {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #home-banner .banner-video {
    width: 185px;
  }
  #home-banner .banner-video + .banner-body {
    margin-top: 2rem;
  }
}

#home-page {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
.home-section-1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.home-section-1 .swiper {
  --swiper-pagination-margin: 2.5rem;
}
.home-section-1 .result {
  position: relative;
  --fancy-border-width: 0;
}
.home-section-1 .result-container {
  padding: 2rem 1.5rem;
  background-image: none;
}
.home-section-1 .section-blocks {
  gap: 3rem;
  padding: 2.75rem 2rem 2rem;
}
.home-section-1 .section-block-right {
  padding: 0;
}
.home-section-1 .section-header {
  --fancy-border-width: 2rem;
  --fancy-border-margin-y: 1rem;
  margin-bottom: var(--fancy-border-margin-y);
}
.home-section-1 .section-heading {
  font-size: 1.5rem;
}
.home-section-1 .section-content {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.home-section-1 .section-footer {
  margin-top: 1.75rem;
}
.home-section-1 :is(.section-block-right, .result:not(:hover, :focus-within)) {
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .home-section-1 .swiper {
    padding: 0 3rem;
  }
  .home-section-1 .result:is(:hover, :focus-within) {
    --fancy-border-width: 100%;
  }
  .home-section-1 .result:after {
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    pointer-events: none;
  }
  .home-section-1 .section-container {
    --container-gutter: 60px;
  }
  .home-section-1 .section-wrapper {
    --fancy-underlay-offset: 30px;
  }
  .home-section-1 .section-blocks {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.875rem;
    padding-bottom: 2.875rem;
    padding-right: 1.25rem;
    padding-left: 3rem;
  }
  .home-section-1 .section-block-left {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .home-section-1 .section-block-right {
    box-shadow: none;
  }
  .home-section-1 .section-header, .home-section-1 .section-footer {
    margin-left: 0;
    text-align: left;
  }
  .home-section-1 .section-header {
    --fancy-border-margin-l: 0;
    --fancy-border-margin-y: 1.375rem;
  }
  .home-section-1 .section-heading {
    font-size: 1.75rem;
  }
  .home-section-1 .section-content {
    font-size: 0.9375rem;
    max-width: 13em;
  }
  .home-section-1 .section-footer {
    margin-top: 2.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-1 .section-container {
    --container-gutter: 90px;
  }
  .home-section-1 .section-blocks {
    gap: 2.25rem;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    padding-right: 1.25rem;
    padding-left: 4.25rem;
  }
  .home-section-1 .section-header {
    text-align: left;
  }
  .home-section-1 .section-heading {
    font-size: 2rem;
  }
  .home-section-1 .section-content {
    max-width: 12.9em;
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-1 .result-container {
    padding: 2.25rem 2.5rem;
  }
  .home-section-1 .section-container {
    --container-gutter: 105px;
  }
  .home-section-1 .section-blocks {
    padding-top: 3.625rem;
    padding-bottom: 3.625rem;
    padding-right: 2.5rem;
    padding-left: 5.25rem;
  }
  .home-section-1 .section-heading {
    font-size: 2.125rem;
  }
  .home-section-1 .section-content {
    max-width: 15em;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-1 .section-container {
    --container-gutter: 135px;
  }
  .home-section-1 .section-blocks {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    padding-right: 5rem;
    padding-left: 6rem;
    gap: 7rem;
  }
  .home-section-1 .section-heading {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-section-1 .swiper {
    padding-bottom: 3rem;
  }
  .home-section-1 .result {
    box-shadow: none;
    background: none;
  }
  .home-section-1 .section-block-left {
    text-align: center;
  }
}

/*
* Home Section 2
-------------------------------------------------------------------------------- */
.home-section-2 {
  padding-top: 3.75rem;
  padding-bottom: 5.625rem;
}
.home-section-2 .section-heading {
  font-size: 2.5rem;
}
.home-section-2 .section-divider {
  --fancy-border-width: 200px;
}
.home-section-2 .section-lead {
  max-width: 31em;
  margin-inline: auto;
}
.home-section-2 .section-content {
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
}
.home-section-2 .section-bottom {
  margin-top: 2.625rem;
}
.home-section-2 .section-blocks {
  gap: 1.25rem;
  align-items: stretch;
}
.home-section-2 .section-cta, .home-section-2 .section-image {
  --fancy-underlay-offset: 24px;
}
.home-section-2 .section-cta {
  text-align: center;
  padding: 1.25rem;
}
.home-section-2 .section-cta-icon {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}
.home-section-2 .section-cta-text {
  font-size: 1.25rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-secondary);
  max-width: 8em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}
.home-section-2 .section-cta-text em, .home-section-2 .section-cta-text i {
  color: var(--scheme-sp-contrast);
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .home-section-2 {
    padding-top: 6.25rem;
    padding-bottom: 7rem;
  }
  .home-section-2 .section-container {
    --container-gutter:80px;
  }
  .home-section-2 .section-header {
    margin-bottom: 2.5rem;
  }
  .home-section-2 .section-heading {
    font-size: 3.125rem;
  }
  .home-section-2 .section-divider {
    --fancy-border-margin-y: 2rem;
  }
  .home-section-2 .section-bottom {
    margin-top: 3.625rem;
  }
  .home-section-2 .section-blocks {
    grid-template-columns: auto 1fr;
  }
  .home-section-2 .section-block-left {
    width: 208px;
  }
  .home-section-2 .section-block-right {
    align-self: stretch;
    position: relative;
    display: flex;
  }
  .home-section-2 .section-block-right img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .home-section-2 .section-cta {
    --fancy-underlay-offset: 20px;
  }
  .home-section-2 .section-cta-icon {
    font-size: 3.4375rem;
  }
  .home-section-2 .section-image {
    --fancy-underlay-offset: 25px;
    flex: 1 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-2 {
    padding-top: 7.25rem;
    padding-bottom: 11.25rem;
  }
  .home-section-2 .section-container {
    --container-gutter: 102px;
  }
  .home-section-2 .section-header {
    margin-bottom: 2.75rem;
  }
  .home-section-2 .section-heading {
    font-size: 3.75rem;
  }
  .home-section-2 .section-lead {
    max-width: 32em;
  }
  .home-section-2 .section-bottom {
    margin-top: 5.375rem;
  }
  .home-section-2 .section-block-left {
    width: 238px;
  }
  .home-section-2 .section-cta {
    padding: 1.25em 1.25em 1.75rem;
  }
  .home-section-2 .section-cta-icon {
    font-size: 3.625rem;
  }
  .home-section-2 .section-cta-text {
    font-size: 1.375rem;
    margin-bottom: 1.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-2 {
    padding-top: 9.125rem;
    padding-bottom: 14.25rem;
  }
  .home-section-2 .section-container {
    --container-gutter: 135px;
  }
  .home-section-2 .section-header {
    margin-bottom: 3.5rem;
  }
  .home-section-2 .section-heading {
    font-size: 4.6875rem;
  }
  .home-section-2 .section-divider {
    --fancy-border-margin-y: 2.5rem;
    --fancy-border-width: 250px;
  }
  .home-section-2 .section-content {
    max-width: 55rem;
  }
  .home-section-2 .section-bottom {
    margin-top: 6.75rem;
  }
  .home-section-2 .section-block-left {
    width: 262px;
  }
  .home-section-2 .section-cta-icon {
    font-size: 4.0625rem;
  }
  .home-section-2 .section-cta-text {
    font-size: 1.5625rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-2 {
    padding-top: 11.25rem;
    padding-bottom: 16.5rem;
  }
  .home-section-2 .section-container {
    --container-gutter: 184px;
  }
  .home-section-2 .section-heading {
    font-size: 5.625rem;
  }
  .home-section-2 .section-divider {
    --fancy-border-margin-y: 3rem;
  }
  .home-section-2 .section-lead {
    max-width: 31em;
  }
  .home-section-2 .section-content {
    max-width: 56.625rem;
  }
  .home-section-2 .section-bottom {
    margin-top: 8.5rem;
  }
  .home-section-2 .section-blocks {
    gap: 2.75rem;
  }
  .home-section-2 .section-block-left {
    width: 360px;
  }
  .home-section-2 .section-cta {
    --fancy-underlay-offset: 30px;
    padding: 2.25em 2.25em 2.5em;
  }
  .home-section-2 .section-cta-icon {
    font-size: 5.25rem;
    margin-bottom: 1.75rem;
  }
  .home-section-2 .section-cta-text {
    font-size: 2.125rem;
    margin-bottom: 2.375rem;
  }
  .home-section-2 .section-image {
    --fancy-underlay-offset: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .home-section-2 .section-bottom-container {
    --container-gutter: 60px;
  }
}

/*
* Home Section 3
-------------------------------------------------------------------------------- */
.home-section-3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
  --section-offset: 77px;
  overflow: hidden;
}
.home-section-3 .section-top:after {
  height: var(--section-offset);
  content: "";
  display: block;
}
.home-section-3 .section-bottom {
  padding-top: 1px;
  position: relative;
}
.home-section-3 .section-bottom-container {
  margin-top: calc(var(--section-offset) * -1);
}
.home-section-3 .section-top {
  padding-top: 9.5rem;
  padding-bottom: 3.25rem;
}
.home-section-3 .section-top-slider {
  --swiper-pagination-margin: 3.75rem;
}
.home-section-3 .section-top-slider-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  margin: 0 auto 1rem;
  --fancy-border-margin-y: 1em;
}
.home-section-3 .section-block {
  min-width: 100%;
}
.home-section-3 .section-blocks {
  gap: 2.75rem;
}
.home-section-3 .section-header .button {
  --button-lines: 2;
  vertical-align: middle;
}
.home-section-3 .section-header .button:nth-child(n+2) {
  margin-left: 1.5em;
}
.home-section-3 .section-subheading {
  margin-bottom: 0.25em;
}
.home-section-3 .section-lead {
  text-align: center;
  margin-bottom: 1.625rem;
}
.home-section-3 .section-heading {
  font-size: 2.6875rem;
}
.home-section-3 .section-content {
  font-size: 0.9375rem;
  line-height: calc(1em + 10px);
  max-width: 17em;
  margin-top: 1.5em;
  margin-bottom: 1.875rem;
}
.home-section-3 .section-carousel {
  --carousel-height: 32px;
}
.home-section-3 .section-bottom {
  padding-bottom: 3.75rem;
}
.home-section-3 .section-bottom .swiper {
  padding: 0 2.5rem;
}
.home-section-3 .section-bottom .section-slide,
.home-section-3 .section-bottom .entry-body {
  display: flex;
  flex-direction: column;
}
.home-section-3 .section-bottom .entry-meta a {
  text-decoration: underline;
}
.home-section-3 .section-bottom .entry-meta a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
.home-section-3 .section-bottom .entry-meta > span:nth-child(n+2):before {
  content: "\2022";
  color: var(--scheme-fg);
  margin: 0 0.5em;
}
.home-section-3 .section-bottom .entry-body {
  flex: 1 1;
}
.home-section-3 .section-bottom .entry-title {
  --title-line-height: calc(1em + 8px);
  --title-lines: 4;
  font-size: 1.125rem;
  line-height: var(--title-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: var(--title-lines);
  -webkit-box-orient: vertical;
  max-height: calc(var(--title-line-height) * var(--title-lines));
  margin-bottom: 1rem;
}
.home-section-3 .section-bottom .entry-buttons {
  margin-top: auto;
}
.home-section-3 .section-bottom .entry-read-more {
  border-color: var(--scheme-sb-contrast);
}
.home-section-3 .section-bottom .section-slide {
  padding: 3.5rem 2rem;
}
@media only screen and (min-width: 768px) {
  .home-section-3 {
    --section-offset: 90px;
  }
  .home-section-3 .section-container {
    --container-gutter: 90px;
  }
  .home-section-3 .section-top {
    padding-top: 12.5rem;
  }
  .home-section-3 .section-blocks {
    grid-template-columns: auto 1fr;
    gap: 5rem;
  }
  .home-section-3 .section-block-right {
    margin-right: -4rem;
  }
  .home-section-3 .section-block-left {
    align-self: center;
  }
  .home-section-3 .section-header {
    text-align: left;
  }
  .home-section-3 .section-header, .home-section-3 .section-heading {
    margin-left: 0;
  }
  .home-section-3 .section-heading {
    font-size: 3.4375rem;
  }
  .home-section-3 .section-content {
    font-size: 1rem;
  }
  .home-section-3 .section-bottom {
    padding-bottom: 4.25rem;
  }
  .home-section-3 .section-bottom .swiper {
    padding: 0 3rem;
    margin: 0 -3rem;
  }
  .home-section-3 .section-bottom .section-slide {
    padding: 4.375rem 2.5rem;
  }
  .home-section-3 .section-bottom .entry-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-3 {
    --section-offset: 110px;
  }
  .home-section-3 .carousel {
    --carousel-height: 55px;
  }
  .home-section-3 .swiper-wrapper {
    align-items: center;
  }
  .home-section-3 .section-top {
    padding-top: 15.5rem;
    padding-bottom: 7.5rem;
  }
  .home-section-3 .section-top-container {
    --container-gutter: 110px;
  }
  .home-section-3 .section-blocks {
    gap: 8rem;
  }
  .home-section-3 .section-block-right {
    margin-right: -2rem;
  }
  .home-section-3 .section-heading {
    font-size: 4.0625rem;
  }
  .home-section-3 .section-content {
    font-size: 1.125rem;
    max-width: 22em;
    margin-top: 1.25em;
    margin-bottom: 1.25rem;
  }
  .home-section-3 .section-bottom {
    padding-bottom: 5.5rem;
  }
  .home-section-3 .section-bottom-container {
    --container-gutter: 100px;
  }
  .home-section-3 .section-bottom .section-slide {
    padding: 4.875rem 2.5rem;
  }
  .home-section-3 .section-bottom .entry-title {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-3 {
    --section-offset: 135px;
  }
  .home-section-3 .carousel {
    --carousel-height: 75px;
  }
  .home-section-3 .section-top {
    padding-top: 17.25rem;
    padding-bottom: 5rem;
  }
  .home-section-3 .section-top-container {
    --container-gutter: 150px;
  }
  .home-section-3 .section-heading {
    font-size: 4.6875rem;
  }
  .home-section-3 .section-content {
    font-size: 1.1875rem;
  }
  .home-section-3 .section-blocks {
    gap: 10rem;
  }
  .home-section-3 .section-block-right {
    margin-right: -4rem;
  }
  .home-section-3 .section-bottom {
    padding-bottom: 6.75rem;
  }
  .home-section-3 .section-bottom-container {
    --container-gutter: 130px;
  }
  .home-section-3 .section-bottom .swiper {
    padding: 0 3.75rem;
    margin: 0 -3.75rem;
  }
  .home-section-3 .section-bottom .section-slide {
    padding: 5.75rem 2.5rem 5rem;
  }
  .home-section-3 .section-bottom .entry-title {
    font-size: 1.5rem;
    margin-bottom: 2.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-3 .section-top {
    padding-top: 18rem;
    padding-bottom: 6.5rem;
  }
  .home-section-3 .section-top-container {
    --container-gutter: 260px ;
  }
  .home-section-3 .section-heading {
    font-size: 5.3125rem;
  }
  .home-section-3 .section-blocks {
    gap: 21rem;
  }
  .home-section-3 .section-block-right {
    margin-right: -5rem;
  }
  .home-section-3 .section-bottom-container {
    --container-gutter: 194px;
  }
}
@media only screen and (max-width: 767px) {
  .home-section-3 .section-content {
    margin-left: auto;
    margin-right: auto;
  }
  .home-section-3 .section-bottom-container {
    --container-padding: 10px;
  }
}

/*
* Home Section 4
-------------------------------------------------------------------------------- */
.home-section-4 {
  padding-top: 4.375rem;
  padding-bottom: 5.625rem;
  color: var(--scheme-fg, var(--color-light));
}
.home-section-4 .swiper .button {
  color: inherit;
}
.home-section-4 .testimonial-highlight {
  max-width: 29ch;
  width: 100%;
}
.home-section-4 .section-header {
  margin-bottom: 2.5rem;
}
.home-section-4 .section-heading {
  --fancy-border-margin-y: .75em;
}
.home-section-4 .section-footer {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .home-section-4 {
    padding-top: 5.5rem;
    padding-bottom: 7.5rem;
  }
  .home-section-4 .testimonial-stars {
    font-size: 2.1875rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 40px;
  }
  .home-section-4 .section .testimonial-stars {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-4 {
    padding-top: 7.375rem;
    padding-bottom: 9.25rem;
  }
  .home-section-4 .testimonial-stars {
    font-size: 2.5rem;
    margin-bottom: 1em;
  }
  .home-section-4 .testimonial-highlight {
    font-size: 3.25rem;
    line-height: 1.3461538462;
    margin-bottom: 3.5rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 110px;
  }
  .home-section-4 .section-header {
    margin-bottom: 3.25rem;
  }
  .home-section-4 .section-footer {
    margin-top: 3.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-4 {
    padding-top: 9rem;
    padding-bottom: 12.125rem;
  }
  .home-section-4 .testimonial-highlight {
    margin-bottom: 3rem;
  }
  .home-section-4 .section-header {
    margin-bottom: 4rem;
  }
  .home-section-4 .section-footer {
    margin-top: 3.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-4 {
    padding-top: 11.25rem;
    padding-bottom: 13.125rem;
  }
  .home-section-4 .testimonial-highlight {
    font-size: 3.75rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 320px;
  }
}
/*
* Home Section 5
-------------------------------------------------------------------------------- */
.home-section-5 {
  padding-top: 3rem;
  padding-bottom: 5.25rem;
}
.home-section-5 .section-blocks {
  gap: 3.25rem;
  justify-items: center;
}
.home-section-5 .section-block-left {
  max-width: 100%;
  width: 350px;
}
.home-section-5 .section-block-left .blockquote {
  text-align: left;
  margin-left: 0;
  width: auto;
  max-width: 9em;
}
.home-section-5 .section-block-left .blockquote:before {
  content: none;
}
.home-section-5 .section-header {
  margin-bottom: 1.75rem;
}
.home-section-5 .section-heading {
  margin-bottom: var(--fancy-border-margin-y);
}
.home-section-5 .section-heading.primary-heading {
  font-size: 2.8125rem;
}
.home-section-5 .section-lead {
  max-width: 31em;
}
.home-section-5 .section-image {
  position: relative;
}
.home-section-5 .section-image-img {
  --fancy-underlay-offset: 30px;
}
.home-section-5 .section-image .video-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.home-section-5 .section-subheading {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  --fancy-border-margin-y: .5em;
  margin-bottom: 1.5rem;
}
.home-section-5 .section-footer {
  margin-top: 3rem;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .home-section-5 {
    padding-top: 4.375rem;
    padding-bottom: 7.75rem;
  }
  .home-section-5 .section-blocks {
    gap: 4.25rem;
  }
  .home-section-5 .section-header {
    margin-bottom: 3.5rem;
  }
  .home-section-5 .section-heading.primary-heading {
    font-size: 3.4375rem;
  }
  .home-section-5 .section-subheading {
    margin-bottom: 2rem;
  }
  .home-section-5 .section-footer {
    margin-top: 5.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-5 {
    padding-top: 5rem;
    padding-bottom: 9rem;
  }
  .home-section-5 .section-blocks {
    grid-template-columns: auto 1fr;
    gap: 6.25rem;
  }
  .home-section-5 .section-block-left {
    order: -99;
    width: 390px;
  }
  .home-section-5 .section-heading {
    --fancy-border-margin-y: 1.875rem;
  }
  .home-section-5 .section-heading.primary-heading {
    font-size: 4.0625rem;
  }
  .home-section-5 .section-footer {
    margin-top: 6.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-5 {
    padding-top: 6rem;
    padding-bottom: 10.75rem;
  }
  .home-section-5 .section-blocks {
    gap: 6.875rem;
  }
  .home-section-5 .section-block-left {
    width: 400px;
  }
  .home-section-5 .section-header {
    margin-bottom: 6.75rem;
  }
  .home-section-5 .section-heading.primary-heading {
    font-size: 4.6875rem;
  }
  .home-section-5 .section-footer {
    margin-top: 8.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-5 {
    padding-top: 8rem;
    padding-bottom: 14rem;
  }
  .home-section-5 .section-blocks {
    gap: 7.5rem;
  }
  .home-section-5 .section-block-left {
    width: 500px;
  }
  .home-section-5 .section-header {
    margin-bottom: 8.5rem;
  }
  .home-section-5 .section-heading.primary-heading {
    font-size: 5rem;
    --fancy-border-margin-y: .42em;
  }
  .home-section-5 .section-footer {
    margin-top: 9.75rem;
  }
}
#home-section-5 {
  padding-top: 0;
}
@media only screen and (min-width: 1200px) {
  #home-section-5 .section-block-left {
    position: relative;
    padding-bottom: 4.5rem;
  }
  #home-section-5 .section-image {
    position: -webkit-sticky;
    position: sticky;
    bottom: 11vh;
    top: calc(var(--layout-header-height) + 11vh);
  }
  #home-section-5 .section-image-img {
    max-height: calc(75vh - var(--layout-header-height));
  }
}

/*
* Home Section 6
-------------------------------------------------------------------------------- */
.home-section-6 {
  padding-top: 0;
}
.home-section-6 .section-divider {
  --fancy-border-margin-y: 1.25rem;
}
.home-section-6 .section-lead {
  font-weight: normal;
}
.home-section-6 .section-button-wrapper {
  margin-top: 1.25rem;
}
.home-section-6 .section-divider {
  --fancy-border-width: 40px;
}
.home-section-6 .section-content .video {
  max-width: 340px;
  width: 100%;
}
.home-section-6 .section-content .video-thumbnail {
  --fancy-underlay-offset: 15px;
}
@media only screen and (min-width: 1200px) {
  .home-section-6 {
    padding-bottom: 8.75rem;
  }
  .home-section-6 .section-heading {
    font-size: 3.4375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-6 {
    padding-bottom: 10.5rem;
  }
  .home-section-6 .section-heading {
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-6 {
    padding-bottom: 13.5rem;
  }
  .home-section-6 .section-divider {
    --fancy-border-margin-y: 1.75rem;
  }
  .home-section-6 .section-button-wrapper {
    margin-top: 1.75rem;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-6 .video:is(.alignleft) {
    margin-inline: auto;
  }
}
/*
* Home Section 7
-------------------------------------------------------------------------------- */
.home-section-7 {
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
}
/* ================================================================================
* 404
================================================================================ */
/*
* 404 Related Classes
-------------------------------------------------------------------------------- */
/*
* 404 Page
-------------------------------------------------------------------------------- */
body.error404 {
  /* body selector for 404 template */
}

#error404-page {
  text-align: center;
}
/* ================================================================================
* Case Results + Case Results Template
================================================================================ */
/*
* Case Results Template
-------------------------------------------------------------------------------- */
body.ilaw-template-results {
  /* body selector for results template */
}

#results-banner {
  /* selector for results banner if enabled */
}
#results-page {
  /* template main styles */
  padding-top: 1.5rem;
}
#results-page .pagination {
  margin-top: 8rem;
}
#results-page .results:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
}
#results-page .result {
  flex: 1 1;
}
#results-page .result-wrapper {
  max-width: 433px;
  display: flex;
}
#results-page .result:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
#results-page .result-description {
  /* max-width: 40ch; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}
#results-page .section-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25em;
  text-align: center;
  max-width: 49em;
}
@media only screen and (min-width: 768px) {
  #results-page .results:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #results-page .results:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 3.75rem;
    --columns-gap-y: 5.25rem;
  }
  #results-page .result-container {
    padding: 3rem 2rem;
  }
  #results-page .section-content {
    margin-bottom: 5.25em;
  }
}
@media only screen and (min-width: 1800px) {
  #results-page {
    padding-top: 2.75rem;
  }
  #results-page .result-icon {
    font-size: 2.3125rem;
  }
  #results-page .result-value {
    font-size: 3.625rem;
    --fancy-border-width: 2.5rem;
    --fancy-border-margin-y: 1.4375rem;
  }
  #results-page .result-title {
    font-size: 1.375rem;
  }
  #results-page .section-content {
    margin-bottom: 7.25em;
  }
}
@media only screen and (max-width: 1199px) {
  #results-page .result {
    max-width: 500px;
  }
}
/* ================================================================================
* Practice Areas + Practice Areas Template
================================================================================ */
/*
* Practice Areas Grid Template
-------------------------------------------------------------------------------- */
body.ilaw-template-practice-areas {
  /* body selector for practice-areas template */
}

#practice-areas-banner {
  /* selector for practice-areas banner if enabled */
}
#practice-areas-page {
  /* template main styles */
}
#practice-areas-page .practice-area-menu:is(.columns) {
  --columns-gap-x: 3rem;
}
#practice-areas-page .practice-area:nth-last-child(n+2) {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 2;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+2) {
    border-top: 0;
  }
  #practice-areas-page .practice-area:nth-last-child(n+2) {
    margin-bottom: 4.75rem;
  }
  #practice-areas-page .section-container {
    --container-gutter: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 3;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
  #practice-areas-page .practice-area:nth-last-child(n+2) {
    margion-bottom: 5.5rem;
  }
  #practice-areas-page .section-container {
    --container-gutter: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  #practice-areas-page .section-container {
    --container-gutter: 95px;
  }
}
@media only screen and (min-width: 1800px) {
  #practice-areas-page .practice-area-menu li:nth-child(-n+4) {
    border-top: 0;
  }
  #practice-areas-page .section-container {
    --container-gutter: 205px;
  }
}
/* ================================================================================
* Testimonials + Testimonial Template
================================================================================ */
/*
* Testimonials Template
-------------------------------------------------------------------------------- */
body.ilaw-template-testimonials {
  /* body selector for testimonials template */
}

#testimonials-banner {
  /* selector for testimonials banner if enabled */
}
#testimonials-page {
  /* template main styles */
}
#testimonials-page .testimonials:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
}
#testimonials-page .testimonials-featured {
  text-align: center;
}
#testimonials-page .testimonial {
  --fancy-underlay-size: auto 110%;
}
@media only screen and (min-width: 768px) {
  #testimonials-page .section-container {
    --container-gutter: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-x: 4.375rem;
    --columns-gap-y: 4.375rem;
  }
  #testimonials-page .section-container {
    --container-gutter: 130px;
  }
}
@media only screen and (min-width: 1400px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-number: 2;
  }
  #testimonials-page .testimonial-container {
    padding: 6rem 2rem 5.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-x: 8rem;
    --columns-gap-y: 8rem;
  }
  #testimonials-page .section-container {
    --container-gutter: 230px;
  }
}
/* ================================================================================
* Profiles/ Team Grid + Profiles/ Team Grid Template
================================================================================ */
/*
* Team/Profiles Groups - Optional
-------------------------------------------------------------------------------- */
.team-group:nth-child(n+2) {
  margin-top: 4rem;
}
.team-title {
  margin-bottom: 2rem;
}
.team .profile {
  max-width: 440px;
}

/*
* Team/Profiles Page
-------------------------------------------------------------------------------- */
body.ilaw-template-team {
  /* body selector for team template */
}

#team-banner {
  /* selector for team banner if enabled */
}
#team-page {
  /* template main styles */
}
#team-page .profiles:is(.columns) {
  --columns-gap-x: 1.5rem;
  --columns-gap-y: 2.875rem;
  justify-content: center;
  justify-items: center;
}
#team-page .profile {
  max-width: 280px;
}
@media only screen and (min-width: 768px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 3;
  }
  #team-page .profile {
    max-width: 335px;
  }
}
@media only screen and (min-width: 1400px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 4;
  }
}
@media only screen and (min-width: 1800px) {
  #team-page .profiles:is(.columns) {
    --columns-gap-y: 5.5rem;
  }
  #team-page .profile {
    --fancy-underlay-offset: 25px;
    max-width: 375px;
  }
}
@media only screen and (max-width: 767px) {
  #team-page .profile {
    max-width: 400px;
  }
}

/* ================================================================================
* Profile Detail Template
================================================================================ */
/*
* Profile Contact Info
-------------------------------------------------------------------------------- */
.profile-contact a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
.profile-contact-title {
  margin-bottom: 2rem;
}
.profile-contact-label {
  margin-right: 0.5em;
}
/*
* Profile Detail Template
-------------------------------------------------------------------------------- */
body.ilaw-template-profile {
  /* body selector for profile template */
}

#profile-banner {
  /* selector for profile banner if enabled */
}
#profile-page {
  /* template main styles */
}
#profile-page :where(.section-subheader,
.section-list):nth-last-child(n+2) {
  margin-bottom: 1.875rem;
}
#profile-page .default-sections {
  justify-content: center;
}
#profile-page .profile-oto {
  --widget-padding-bottom: 2rem;
}
#profile-page .profile-oto-carousel {
  margin-top: var(--widget-padding-bottom);
  --carousel-arrow-offset-x: var(--widget-padding-x);
  --carousel-arrow-offset-x-negate: 0px;
  --carousel-height: 220px;
}
#profile-page .profile-oto-carousel .carousel-slide-image img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100% !important;
  height: 100% !important;
}
#profile-page .profile-oto-carousel .swiper {
  --swiper-pagination-margin: var(--widget-padding-bottom);
}
#profile-page .section-header {
  margin-bottom: 1.875rem;
}
#profile-page .section-heading {
  font-size: 2.1875rem;
  max-width: none;
}
#profile-page .section-image {
  position: relative;
  width: var(--default-sidebar-width);
  max-width: 100%;
  margin: 0 auto;
}
#profile-page .section-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, var(--scheme-bg));
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: multiply;
}
#profile-page .section-video {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: auto minmax(0, -webkit-max-content);
  grid-template-columns: auto minmax(0, max-content);
  justify-content: center;
  justify-items: center;
  gap: 1.5rem;
  text-align: left;
  align-items: center;
}
#profile-page .video-button {
  --video-button-size: 50px;
}
#profile-page .video-cta {
  max-width: 19ch;
  font-size: 0.9375rem;
  line-height: calc(1em + 5px);
}
@media only screen and (min-width: 768px) {
  #profile-page .profile-oto-carousel {
    --carousel-height: 428px;
  }
  #profile-page .section-container {
    --container-gutter: 120px;
  }
  #profile-page .section-header {
    margin-bottom: 3.875rem;
  }
  #profile-page .section-heading {
    font-size: 2.8125rem;
    margin-bottom: 1.25rem;
  }
  #profile-page .video-button {
    --video-button-size: 64px;
  }
  #profile-page .video-cta {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-page .default-sections {
    --default-sidebar-width: 325px;
    --default-gap: 5rem;
  }
  #profile-page .profile-oto-carousel {
    --carousel-height: 245px;
  }
  #profile-page .section-container {
    --container-gutter: 155px;
  }
  #profile-page .section-header {
    margin-bottom: 2.75rem;
  }
  #profile-page .section-heading {
    font-size: 3.4375rem;
  }
  #profile-page .video-cta {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page .default-sections {
    --default-sidebar-width: 345px;
    --default-gap: 8rem;
  }
  #profile-page .profile-oto {
    --widget-padding-bottom: 2.25rem;
  }
  #profile-page .profile-oto-carousel {
    --carousel-arrow-offset-x-negate: 20px;
    --carousel-height: 285px;
  }
  #profile-page .profile-oto-carousel .swiper {
    --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-width) * 3);
  }
  #profile-page .section-container {
    --container-gutter: 180px;
  }
  #profile-page .section-heading {
    font-size: 4.0625rem;
  }
}
@media only screen and (min-width: 1800px) {
  #profile-page .default-sections {
    --default-sidebar-width: 400px;
  }
  #profile-page .profile-oto {
    --widget-padding-bottom: 2.5rem;
  }
  #profile-page .profile-oto-carousel {
    --carousel-arrow-offset-x-negate: 35px;
    --carousel-height: 340px;
  }
  #profile-page .section-container {
    --container-gutter: 284px;
  }
  #profile-page .section-heading {
    font-size: 4.6875rem;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page .profile-image {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  #profile-page .section-header {
    text-align: center;
  }
}
/*
Profile Page Template 
	@Variation B: Split to top and bottom + profile image offset
	Requires PHP: templates/template-profile.php - @Variation B: Split to top and bottom + profile image offset
	Requires SCSS: scss/templates/profile.scss - @Variation B: Split to top and bottom + profile image offset
*/
.profile-page-sections {
  padding: 0;
}
.profile-page-sections #profile-section-1 {
  padding-top: 2rem;
  padding-bottom: 0;
  position: relative;
}
.profile-page-sections #profile-section-1 .section-wrapper {
  --section-padding-x: 2rem;
}
.profile-page-sections #profile-section-1 .section-image {
  margin-bottom: 0;
}
.profile-page-sections #profile-section-1 .default-sections {
  padding-left: var(--section-padding-x) !important;
  padding-right: var(--section-padding-x) !important;
  padding-top: var(--section-padding-x);
  padding-bottom: var(--section-padding-x);
}
@media only screen and (min-width: 768px) {
  .profile-page-sections #profile-section-1 {
    padding-top: 3.75rem;
  }
  .profile-page-sections #profile-section-1 .profile-position {
    font-size: 1.0625rem;
  }
  .profile-page-sections #profile-section-1 .section-wrapper {
    --section-padding-x: 2.5rem;
    margin: 0 calc(var(--section-padding-x) * -1);
  }
  .profile-page-sections #profile-section-1 .default-sections {
    padding-top: 2.875rem;
    padding-bottom: 3.5rem;
  }
  .profile-page-sections #profile-section-1 .default-sections-wrapper {
    --fancy-underlay-offset: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .profile-page-sections #profile-section-1 {
    padding-top: 4.5rem;
  }
  .profile-page-sections #profile-section-1 .default-sections {
    justify-content: center;
    align-content: end;
    padding-top: 4.875rem;
    padding-bottom: 6rem;
  }
  .profile-page-sections #profile-section-1 .section-wrapper {
    --section-padding-x: 5.25rem;
  }
  .profile-page-sections #profile-section-1 .section-header {
    align-self: end;
  }
  .profile-page-sections #profile-section-1 .section-subheader {
    align-self: start;
  }
  .profile-page-sections #profile-section-1 .section-image {
    align-self: center;
    grid-row: 1/span 2;
  }
}
@media only screen and (min-width: 1400px) {
  .profile-page-sections #profile-section-1 {
    padding-top: 5rem;
  }
  .profile-page-sections #profile-section-1 .default-sections {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }
  .profile-page-sections #profile-section-1 .section-wrapper {
    --section-padding-x: 5.5rem;
  }
  .profile-page-sections #profile-section-1 .section-header {
    margin-bottom: 3rem;
  }
  .profile-page-sections #profile-section-1 .section-heading {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  .profile-page-sections #profile-section-1 .profile-position {
    font-size: 1.125rem;
  }
  .profile-page-sections #profile-section-1 .section-wrapper {
    --section-padding-x: 8.25rem;
  }
  .profile-page-sections #profile-section-1 .section-header {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 1199px) {
  .profile-page-sections #profile-section-1 {
    text-align: center;
  }
  .profile-page-sections #profile-section-1 .default-sections {
    --default-sidebar-width: 350px;
  }
}
@media only screen and (min-width: 1200px) {
  .profile-page-sections #profile-section-2 .profile-column-main, .profile-page-sections #profile-section-2 .profile-column-sidebar {
    padding-top: 4rem;
  }
  .profile-page-sections #profile-section-2 .section-lists::before {
    content: "";
    display: block;
    height: var(--profile-image-offset);
  }
}
@media only screen and (max-width: 1199px) {
  .profile-page-sections #profile-section-2 .section-body::before {
    content: "";
    display: block;
    height: var(--profile-image-offset);
  }
}
.profile-page-sections #profile-section-3 {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .profile-page-sections #profile-section-3 {
    padding-bottom: 3.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .profile-page-sections #profile-section-3 {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .profile-page-sections #profile-section-3 {
    padding-top: 2rem;
    padding-bottom: 6.375rem;
  }
}
@media only screen and (min-width: 1800px) {
  .profile-page-sections #profile-section-3 {
    padding-top: 3rem;
    padding-bottom: 8.5rem;
  }
}

/* ================================================================================
* Videos + Video Template
================================================================================ */
/*
* Videos Template
-------------------------------------------------------------------------------- */
body.ilaw-template-videos {
  /* body selector for videos template */
}

#videos-banner {
  /* selector for videos banner if enabled */
}
#videos-page {
  /* template main styles */
}
#videos-page .videos:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 4rem;
  justify-content: center;
}
#videos-page .video {
  max-width: 485px;
}
@media only screen and (min-width: 1200px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1400px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (min-width: 1800px) {
  #videos-page .videos:is(.columns) {
    --columns-gap-x: 3.75rem;
    --columns-gap-y: 5.25rem;
  }
}
@media only screen and (max-width: 767px) {
  #videos-page .video {
    max-width: 400px;
  }
}

/* ================================================================================
* About Template
================================================================================ */
/*
* About Related Classes
-------------------------------------------------------------------------------- */
.about-section .section-heading:last-child:not(.primary-heading) {
  margin-bottom: 0;
}
/*
* About Template
-------------------------------------------------------------------------------- */
body.ilaw-template-about {
  /* body selector for about template */
}

#about-banner {
  /* selector about banner if enabled */
}
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
  #about-page .section-blocks {
    grid-template-columns: 100%;
    gap: 3rem;
  }
  #about-page .section-block-left {
    order: unset;
    width: 420px;
  }
  #about-page .section-block-left .blockquote {
    font-size: 2.25rem;
  }
  #about-page .section-container {
    --container-gutter: 200px;
  }
  #about-page .section-footer {
    margin-top: 4.75rem;
  }
}
/* ================================================================================
Contact Template
================================================================================ */
/* Contact Template

Note: 
This file is for Contact Page only overrides for the contact information
For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Footer section only overrides for the contact information, apply styles to layout/layout-footer.scss -> .footer-contact styles section
-------------------------------------------------------------------------------- */
body.ilaw-template-contact {
  /* body selector for contact template */
}

#contact-banner {
  /* selector for contact banner if enabled */
}
#contact-page {
  /* template main styles */
}
#contact-page .section-block {
  min-width: 0;
}
#contact-page .section-blocks {
  display: grid;
  gap: 3rem;
  justify-items: center;
}
#contact-page .section-block-right {
  max-width: 345px;
}
#contact-page .section-header {
  margin-bottom: 1.5rem;
}
#contact-page .section-heading {
  --fancy-border-margin-l: 0;
  --fancy-border-width: 100%;
}
#contact-page .section-content {
  margin-bottom: 2.5rem;
}
#contact-page .section-content .lead {
  max-width: 28em;
}
@media only screen and (min-width: 768px) {
  #contact-page .section-header {
    margin-bottom: 2rem;
  }
  #contact-page .section-content {
    margin-bottom: 4.75rem;
  }
  #contact-page .section-blocks {
    gap: 3.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  #contact-page .section-blocks {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    gap: 6.25rem;
  }
  #contact-page .section-block-right {
    max-width: 360px;
  }
}
@media only screen and (min-width: 1400px) {
  #contact-page .section-blocks {
    gap: 8.75rem;
  }
  #contact-page .section-block-right {
    max-width: 448px;
  }
  #contact-page .section-content .lead {
    font-size: 1.375rem;
  }
  #contact-page .section-image {
    --fancy-underlay-offset: 30px;
  }
}
@media only screen and (min-width: 1800px) {
  #contact-page .section-blocks {
    gap: 14.75rem;
  }
  #contact-page .section-block-right {
    max-width: 616px;
  }
  #contact-page .section-content .lead {
    font-size: 1.5rem;
  }
  #contact-page .section-image {
    --fancy-underlay-offset: 38px;
  }
}
@media only screen and (max-width: 767px) {
  #contact-page .section-block-left {
    text-align: center;
  }
  #contact-page .section-content {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 1rem);
  }
}

/*# sourceMappingURL=style.css.map */