alpes-martimes-2022: new theme (#70929)

This commit is contained in:
Thomas Jund 2022-11-02 14:41:53 +01:00
parent 1afeae68c1
commit ad3ec42170
24 changed files with 2838 additions and 0 deletions

View File

@ -0,0 +1,901 @@
//
// Utils
//
@mixin fill-viewport() {
width: 100vw;
margin-left: calc(-50vw + 50%);
padding-right: calc(50vw - 50%);
padding-left: calc(50vw - 50%);
}
//
// TYPO
//
html {
overflow-x: hidden;
@media ($max-mobile-viewport) {
font-size: 100% / ( 16 / $base-font-m );
}
}
%title {
border-bottom: 1px dotted;
font-size: $fz-2m;
@media ($min-desktop-viewport) {
font-size: $fz-2;
}
}
h1, .h1 {
font-size: $fz-1m;
font-weight: normal;
@media ($min-desktop-viewport) {
font-size: $fz-1;
}
}
h2, .h2 {
font-size: $fz-2m;
@media ($min-desktop-viewport) {
font-size: $fz-2;
}
}
h3, .h3 {
font-size: $fz-3m;
@media ($min-desktop-viewport) {
font-size: $fz-3;
}
}
.small {
font-size: $fz-smallm;
@media ($min-desktop-viewport) {
font-size: $fz-small;
}
}
//
// Components
//
%button {
display: inline-block;
text-transform: uppercase;
font-weight: 700;
box-shadow: none !important;
&:hover {
text-decoration: none;
}
}
.gray-button {
@extend .button;
background-color: $gray;
}
%button-arrow {
@extend %button;
&::before,
&::after {
content: none;
display: inline-flex;
align-items: center;
justify-content: center;
font-family: fontAwesome;
font-size: 0.5em;
width: 1rem;
height: 1rem;
border-radius: 50%;
border: 1px solid;
vertical-align: 0.4em;
}
}
%button-arrow-right {
@extend %button-arrow;
&::after {
content: "\f061"; // arrow right
margin-left: .66em;
}
}
%button-arrow-left {
@extend %button-arrow;
&::before {
content: "\f060"; // arrow left
margin-right: .66em;
}
}
@mixin floating-nav {
position: absolute;
width: 100%;
min-width: 15em;
border: 1px solid $primary-color;
background-color: white;
box-shadow: 0 3px 4px hsla(0, 0%, 0%, 0.25);
}
%chevron-link {
position: relative;
padding: 1em 1em 1em 2.5em;
&::before {
content: "\f054"; // chevron right
font-family: fontAwesome, roboto, sans-serif;
font-size: $fz-small;
position: absolute;
left: 1em;
color: $cyan;
}
}
%nav-chevron-link {
@extend %chevron-link;
display: block;
border-bottom: 1px dashed #000;
color: black;
font-weight: 700;
text-transform: none;
&:hover {
color: white;
background-color: $primary-color;
text-decoration: none;
&::before {
color: currentColor;
}
}
}
.page-title {
@extend .h1;
color: $primary-color;
padding-bottom: 2rem;
padding-left: 0;
border-bottom: 1px dashed $gray;
margin-bottom: 3rem;
}
.trapeze-title {
overflow: hidden;
&::before {
content:"";
@extend .h2;
display: inline-block;
height: 0.9em;
background-color: $cyan;
transform: skewX(-30deg);
transform-origin: top right;
vertical-align: text-top;
width: $cell-image-size;
margin-right: 0.5em;
}
}
@mixin mask($zindex) {
position: fixed;
z-index: $zindex;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: hsla(0, 0%, 0%, 0.25);
display: none;
}
//
// HEADER
//
.site-header {
border-top: $top-gray-line-height-m solid $gray-dark;
@media ($min-desktop-viewport) {
border-width: $top-gray-line-height;
}
}
#top {
display: flex;
}
// logo & site title
#logo.has-logo{
flex-grow: 1;
a {
display: flex;
&::before {
margin-right: 0;
@media ($min-desktop-viewport) {
width: 136px;
height: 150px;
}
}
}
}
.site-title {
font-size: 18rem / $base-font;
color: black;
font-weight: 700;
align-self: center;
margin: $nav-item-padding;
@media ($min-desktop-viewport) {
font-size: 24rem / $base-font;
align-self: end;
border-left: 1px solid #000;
padding-left: 0.75rem;
}
}
// Top links
#toplinks {
text-align: left;
@media ($min-desktop-viewport) {
transform: translateY(-$top-gray-line-height);
}
@media ($max-mobile-viewport) {
position: relative;
align-self: center;
}
.toplinks-icon {
width: 25px;
height: 25px;
fill: currentcolor;
vertical-align: -0.5em;
& + * {
margin-left: .66em;
}
}
a.registration,
a.user-info--separator {
display: none;
}
a:not(.login-link) {
@extend %nav-chevron-link;
&:last-child {
border-bottom: none;
}
}
a.login-link,
.toplinks--togglable-btn {
@extend %button;
margin-right: 0;
@media ($max-mobile-viewport) {
&, &:hover {
background-color: white;
color: $primary-color;
}
}
}
.logged-in {
display: block;
@include floating-nav;
z-index: 100;
top: 100%;
@media ($max-mobile-viewport) {
right: 0;
}
display: none;
}
.toplinks--togglable-btn.toggled + .logged-in {
display: block;
}
}
// Nav
.site-nav {
align-self: end;
}
div.gru-nav > ul {
margin: 0;
}
div.gru-nav > ul > li a {
padding: $nav-item-padding;
text-transform: uppercase;
@media ($max-mobile-viewport) {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
}
div.gru-nav > ul ul {
@media ($min-desktop-viewport) {
@include floating-nav;
width: auto;
}
}
div.gru-nav > ul ul > li a {
@extend %nav-chevron-link;
@media ($max-mobile-viewport) {
border-bottom: 0 none;
padding-top: 0.5em;
padding-bottom: 0.5em;
&:hover {
background-color: transparent;
color: $primary-color;
}
}
}
@media ($max-mobile-viewport) {
// right-to-left adaptation
@if $responsive-menu == left-to-right {
#logo {
padding-left: 0;
}
div#header {
padding-right: $nav-menu-side;
}
div.gru-nav .gru-nav-button {
left: auto;
right: 0;
top: $top-gray-line-height-m;
border: 14px solid transparent;
+ ul {
padding-left: .5em;
padding-right: .5em;
transform: translateX(100%);
left: auto;
right: 0;
border-left: 2px solid $primary-color;
}
~ .gru-nav-mask {
@include mask(1999)
}
&.toggled {
.icon-bar {
background-color: $primary-color;
}
~ .gru-nav-mask {
display: block;
}
}
}
}
}
//
// HOME PAGE BANNER
//
.homepage-banner {
line-height: $font-line-height;
@media ($max-mobile-viewport) {
text-align: center
}
@media ($min-desktop-viewport) {
background-image: var(--page-picture);
background-position: center;
background-size: cover;
}
}
.homepage-banner--wrapper {
@media ($min-desktop-viewport) {
padding: 2em 2.5em;
display: flex;
}
}
.homepage-banner--left, .homepage-banner--right {
@media ($min-desktop-viewport) {
margin: 1.5em;
div.textcell {
padding: 1em;
}
}
}
.homepage-banner--left {
@media ($min-desktop-viewport) {
background: rgba(0, 0, 0, 0.6);
color: #fff;
min-width: 72%;
}
}
.homepage-banner--right {
background: rgba(255, 255, 255, 0.5);
@media screen and ($max-mobile-viewport) {
display: none;
}
}
//
// MAIN
//
main {
margin-top: 2em;
}
#main-content {
@media ($min-desktop-viewport) {
padding: 0 0.7em;
}
}
// placeholder 'page-title'
.combo-placeholder--page-title {
@media ($max-mobile-viewport) {
padding: 0 0.7em;
}
.text-cell h1 {
@extend .page-title;
margin-left: 0;
margin-right: 0;
}
}
// placeholder 'columns bottom'
// gray and bg full viewport if not sidebar
body:not([class*="sidebar"])
.combo-placeholder--columns-bottom {
margin-top: 2rem;
background-color: $gray-xlight;
padding-top: 2rem;
padding-bottom: 2rem;
@include fill-viewport;
}
//
// CELLS
//
%cell {
overflow: hidden;
@media ($min-desktop-viewport) {
padding-left: $cell-image-size;
}
&:not(.has-asset-picture) > div h2:first-child::before {
@extend .trapeze-title;
position: absolute;
bottom: 0;
top: 0;
margin: auto;
right: 100%;
}
&.has-asset-picture > div {
display: flex;
flex-wrap: wrap;
align-items: center;
> * {
flex: 0 0 100%;
}
> h2:first-child {
flex: 1 0 50%;
}
> picture {
order: -1;
display: block;
flex: 0 0 $cell-image-size;
align-self: center;
position: relative;
z-index: 1;
@media ($min-desktop-viewport) {
margin-left: -$cell-image-size;
}
img {
@extend .h2;
padding: 0;
object-fit: contain;
height: 1.2em;
width: $cell-image-size;
}
}
}
}
%cell-links-list {
& > li > a {
@extend %chevron-link;
&:hover {
text-decoration: underline;
}
}
// custom class .voir-plus
& > li.voir-plus {
padding: 1em;
@media ($max-mobile-viewport) {
text-align: center
}
> a {
&::before {
content: none;
}
@extend %button-arrow-right;
}
}
}
div.cell.foldable > div > h2:first-child::after {
right: 0;
color: $cyan;
}
div.links-list li.required-authentication a {
flex-wrap: nowrap;
&::after {
position: static;
content: "\f023"; // lock
color: inherit;
margin-left: 0.66rem;
font-size: 1.2em;
align-self: flex-start;
}
}
div.textcell {
h1 {
margin: 0.7em 1rem;
}
}
.gru-content div.tracking-code-input-cell form input {
border-width: 0 0 extract-width($widget-border) 0;
&:not(:focus) {
background-color: transparent;
}
}
#mon-espace + .tracking-code-input-cell {
h2:first-child {
display: none;
+ div {
padding-top: 0;
}
}
}
// Custom cell class
.gray-cell {
.gru-content &.cell {
background-color: $gray-xlight;
}
}
.buttons-list {
div.links-list ul {
padding-top: 0.5em;
margin: 1em $cell-image-size;
@media ($min-desktop-viewport) {
margin-left: 0.5em;
}
> li {
border: none !important;
padding: 0.5em;
> a {
&::before {
content: none;
}
@extend %button;
margin-right: 0;
display: block;
}
}
}
}
.inline-buttons-list {
@extend .buttons-list;
div.links-list ul {
display: flex;
flex-wrap: wrap;
> li {
min-width: fit-content;
flex: 1 0 0;
> a {
margin-left: 0;
}
}
}
}
.bordered-cell {
.gru-content &.cell {
background-color: transparent;
border: 1px solid $cyan;
h2:first-child {
border: none;
&::before {
content: none !important;
}
}
}
}
//
// Footer
//
footer {
position: relative;
margin-top: 1.5rem;
}
div#footer-wrapper {
margin-top: 0;
padding: 0;
}
div#footer{
background: $footer-background url('img/footer.png') no-repeat;
background-position: right 230px top 0;
background-size: contain;
padding-bottom: 3rem;
padding-right: 300px;
@media ($max-mobile-viewport) {
background-size: auto calc(100% - 45px);
background-position: bottom right;
padding-right: 250px;
}
@media (max-width: $very-small-limit) {
background-size: 30% auto;
padding-right: 30%;
}
@media ($min-desktop-viewport) {
min-height: 200px;
}
a {
color: #fff;
}
ul {
padding-left: 0;
margin-left: 1rem;
}
li {
list-style-type: none;
padding: 3px 0;
font-size: 90%;
&::before {
content: '\f054';
font-family: FontAwesome;
margin-right: 0.5em;
font-size: 0.438rem;
display: inline-block;
vertical-align: middle;
}
}
}
// Partners logos
$mobile-partners-block-height: 120px;
footer {
@media ($max-mobile-viewport) {
padding-top: $mobile-partners-block-height;
}
}
.footer-logos-partners {
.partner-link {
display: inline-block;
background-color: #fff;
padding: 0.7rem;
img {
height: 70px;
width: auto;
}
}
@media ($max-mobile-viewport) {
margin: 0 !important;
position: absolute;
bottom: 100%;
left: 0;
float: none;
width: 100%;
display: flex;
justify-content: center;
}
}
// social medias
div#footer {
position: relative;
padding-top: 1em;
@media ($max-mobile-viewport) {
padding-top: 45px;
}
div.social-media {
position: absolute;
top: 0;
right: 0;
margin: 0 0 45px 0;
ul {
padding: 0;
margin: 0;
}
li {
display: inline-block;
font-size: 1em;
width: 70px;
height: 45px;
padding: 0;
@each $media in (rss, facebook, twitter, instagram) {
&.#{$media} {
background: url('img/footer-#{$media}-bg.png') no-repeat 0 0;
margin-left: -13px;
}
}
a {
margin: 0 0 0 16px;
display: block;
width: 36px;
height: 36px;
}
&::before {
display: none;
}
}
}
}
//
// WCS / FORMS
//
.form-content--title {
@extend .page-title;
padding-left: 0.5rem;
padding-right: 0.5rem;
}
div.widget div.title {
font-weight: 700;
margin-bottom: 0.8rem;
}
span.required {
color: $error-color;
}
.form-content--sidebox {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
#gauche #tracking-code {
font-size: 1em;
order: 0;
* {
display: inline-block;
vertical-align: middle;
}
h3, a {
@extend .h3;
}
h3 {
@extend .trapeze-title;
border-bottom: 0;
padding-bottom: 0;
padding-top: 0;
padding-left: 0;
}
a {
font-weight: bold;
}
div.tracking-code-part + form {
margin-top: 0;
}
}
.form-content--body {
h3 {
@extend .trapeze-title;
color: $cyan-dark;
font-size: $fz-2;
}
}
//
// CUSTOM STEPS
//
.theme-steps {
text-align: left;
&--page-nb {
color: #00444B;
font-weight: normal;
}
&--title {
@extend %title;
padding-left: 0;
text-transform: uppercase;
display: block !important;
}
&--progress-bar {
@extend .h3;
height: 1em;
background-color: $gray-light;
background-image: linear-gradient(
to right,
$cyan var(--gradient-stop, 1%),
transparent var(--gradient-stop, 1%)
);
border-radius: 5px;
}
&--voir-etapes {
color: $primary-color;
text-align: right;
}
&--voir {
&::before {
content: "\f06e";
font-family: fontAwesome;
}
}
&--panel {
position: fixed;
z-index: 3001;
height: 100vh;
overflow-y: auto;
right: 0;
top: 0;
background-color: white;
padding: 2rem;
transform: translateX(100%);
transition: transform 0.25s ease;
&-close {
@extend .h2;
float: right;
margin-bottom: 2rem;
&-icon {
&::before {
@extend .h3;
color: black;
content: "\f00d";
font-family: fontAwesome;
}
}
}
&-mask {
@include mask(3000);
}
}
// toogled
&--voir-etapes.toggled + &--panel {
transform: translateX(0);
}
&--voir-etapes.toggled ~ &--panel-mask {
display: block;
}
}
@include vertical-steps();
@if (str-index('#{$wcs-step-marker-type}', 'tied')) {
@include tied-vertical-steps();
}
.wcs-steps {
font-size: 1em;
&--list {
font-family: $title-font-family;
clear: both;
}
}
.wcs-step {
@extend .h2;
&::before {
content: "";
display: block;
width: calc( #{$wcs-steps-spacing} - 1rem );
height: 1px;
background-color: currentColor;
order: 1;
margin: 0.5rem;
align-self: center;
}
&--label {
@extend .small;
text-align: left;
width: auto;
order: 2;
margin-left: 0;
}
&--marker {
border: 1px solid $gray-dark;
box-shadow: 0 0 0 0.5rem white;
}
&.current &--marker {
font-weight: normal;
border-color: $gray-dark;
}
&.step-before &--marker {
color: $gray;
border-color: $gray;
}
}
//
// PWA NAV
//
.pwa-navigation {
div > ul li {
&:not(:last-child) {
border-right: 1px dashed $primary-color;
}
a {
background-size: auto 25px;
padding-top: 35px;
display: flex;
align-items: center;
justify-content: center;
span {
height: auto;
font-size: $fz-small;
}
}
&.selected a,
a:hover {
background-blend-mode: color-dodge;
}
}
}

View File

@ -0,0 +1,131 @@
$cyan: #00A7BD;
$cyan-dark: #00727E;
$gray-xlight: #F8F8F8;
$gray-light: #E7E7E7;
$gray: #7D7D7D;
$gray-dark: #343434;
$red: #CE0500;
$green: #18753C;
$brown: #B34000;
// typo
$base-font: 15;
$base-font-m: 13;
$fz-1: 32em / $base-font;
$fz-1m: 26em / $base-font-m;
$fz-2: 20em / $base-font;
$fz-2m: 18em / $base-font-m;
$fz-3: 18em / $base-font;
$fz-3m: 15em / $base-font-m;
$fz-small: 13em / $base-font;
$fz-smallm: 12em / $base-font-m;
// Custom
$nav-item-padding: 15px 1rem;
$top-gray-line-height: 14px;
$top-gray-line-height-m: 8px;
$cell-image-size: 2.3rem;
// Core vars
$primary-color: $cyan-dark;
$font-size: 100% / ( 16 / $base-font );
$font-family: roboto, sans-serif;
$font-color: black;
$link-color: $primary-color;
$width: 1280em / $base-font;
$mobile-limit: 64em;
$very-small-limit: 35em;
$columns-gutter: 100px;
$sidebar-width: 33%;
$fx-grid-gutter: $columns-gutter;
$header-logo-size: 63px 60px;
$show-site-title: true;
$toplinks-style: none;
$toplinks-background: white;
$nav-background: none;
$nav-menu-color: $font-color;
$nav-active-color: $primary-color;
$nav-border-color: none;
$nav-button-background: transparent;
$nav-submenu-background: white;
$nav-item-selected-color: $nav-active-color;
$nav-item-selected-background: none;
$nav-item-hover-color: $nav-active-color;
$responsive-menu: left-to-right; // custom right-to-left adaptation
$nav-mobile-menu-background: white;
$nav-after-image: false;
$nav-menu-side: 60px;
$nav-button-background: $primary-color;
$nav-button-color: white;
$nav-mobile-bottom-bar-background: $gray-xlight;
$nav-mobile-bottom-bar-color: $primary-color;
$nav-mobile-bottom-bar-item-hover-background: $primary-color;
$nav-mobile-bottom-bar-item-hover-color: white;
$nav-mobile-bottom-bar-item-selected-background: $nav-mobile-bottom-bar-item-hover-background;
$nav-mobile-bottom-bar-item-selected-color: $nav-mobile-bottom-bar-item-hover-color;
$title-transform: uppercase;
$title-background: transparent;
$title-font-size: $fz-2;
$title-weight: 700;
$title-font-family: 'Roboto Condensed', sans-serif;
$cell-border: none;
$cell-title-cover-border: false;
$cell-entry-color: $primary-color;
$cell-entry-font-weight: 700;
$cell-entry-border-color: $gray-light;
$cell-entry-hover-color: $font-color;
$cell-entry-hover-background: transparent;
$cell-image-padding: 0;
$button-background: $primary-color;
$button-color: white;
$button-border: none;
$button-hover-background: gray;
$cancel-button-style: ".gray-button";
$error-color: #CE0500;
$form-sidebar-position: top;
$form-accent-color: $primary-color;
$buttons-order: cancel (grow), previous, submit;
$widget-border: 1px solid $gray-dark;
$widget-border-radius: 3px;
$widget-unique-checkbox-position: left;
$wcs-steps-small-layout-limit: 0px;
$wcs-steps-spacing: 2rem;
$wcs-step-color: $gray-dark;
$wcs-step-border-bottom: none;
$wcs-step-marker-type: disc tied;
$wcs-step-marker-color: $primary-color;
$wcs-step-marker-background: white;
$wcs-step-current-marker-color: white;
$wcs-step-current-marker-background: $primary-color;
$wcs-step-marker-tie-width: 1px;
$notification_error_color: $error-color;
$notification_warning_color: $brown;
$notification_success_color: $green;
$notification_info_color: $cyan-dark;
$notification-style: border-bar;
$notification-icon-size: 2rem;
$footer-background: $gray-dark;
$footer-color: white;
$footer-link-color: $footer-color;

View File

@ -0,0 +1,332 @@
{
"label": "Alpes-Maritimes (CD06) (2022)",
"variables": {
"theme_color": "#00A7BD",
"email_header_asset": "emails:logo",
"email_header_img": "img/logo.png",
"email_header_right_img": "img/logo-departement.png"
},
"settings": {
"combo": {
"COMBO_ASSET_SLOTS.update": {
"header:logo": { "label": "Têtière : logo" },
"logo:feder": { "label": "Logo FEDER"},
"social:dossiers:autonomie": {
"label": "Pictogramme dossier autonomie"
},
"social:dossiers:handicap": {
"label": "Pictogramme dossier handicap"
}
},
"COMBO_SEARCH_SERVICES.update": {
"users": {
"url": "{{eservices_url}}api/users/?q=%(q)s{% if user_nameid %}&NameID={{ user_nameid }}{% endif %}",
"label": "Usagers",
"signature": true,
"hit_url_template": "fiche-usager/{{user_name_identifier_0}}/",
"hit_label_template": "{{text}}",
"hit_description_template": "{% if user_var_city %}{{ user_var_address|default:'' }} {{ user_var_city }}{% endif %}"
},
"users-senior-a2": {
"url": "{{ idp_url }}api/users/?ou__slug=senior&q=%(q)s&limit=30",
"label": "Seniors",
"signature": true,
"data_key": "results",
"hit_url_template": "page-senior/{{ uuid }}/",
"hit_label_template": "{{ last_name|upper }} {{ first_name }} {% if birthdate %} - {{ birthdate|date:'d/m/Y' }}{% endif %}",
"hit_description_template": "{% if address or zipcode or city %}📨 {% endif %}{% if address %}{{ address }} {% endif %}{% if zipcode %}{{ zipcode }} {% endif %}{% if city %}{{ city }}{% endif %}"
}
},
"JSON_CELL_TYPES.update": {
"desappairage": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "D\u00e9sappairage",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"detail-dune-demande-ad": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "D\u00e9tail d'une demande AD",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{dossier }}"
},
"detail-dune-demande-ph": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "D\u00e9tail d'une demande PH",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"enlever-un-dossier-avec-preselection": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Enlever un dossier avec pr\u00e9s\u00e9lection",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"enlever-un-dossier-sans-preselection": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Enlever un dossier sans pr\u00e9s\u00e9lection",
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}"
},
"informations-generales-dun-dossier": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Informations g\u00e9n\u00e9rales d'un dossier",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"lien-retour-dans-dossier": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Lien retour dans dossier",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"lien-signalement-changement-coordonnees": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Lien vers le signalement de changement de coordonn\u00e9es pr\u00e9remplie",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"lien-vers-demande-de-revision-apa-preremplie": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Lien vers demande de r\u00e9vision APA pr\u00e9remplie",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"liens-vers-les-sous-dossiers": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Liens vers les sous-dossiers",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"liste-des-dossiers": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Liste des dossiers",
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}"
},
"menu-des-beneficiaires": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Menu des b\u00e9n\u00e9ficiaires",
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}"
},
"sous-dossier-autonomie": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Sous-dossier Autonomie",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"sous-dossier-handicap": {
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"cache_duration": 1,
"name": "Sous-dossier Handicap",
"varnames": ["dossier"],
"url": "{{ passerelle_url }}atos-genesys/{% firstof slug genesys_slug \"genesys-prod\" %}/dossiers?NameID={{user_nameid}}&link_id={{ dossier }}"
},
"informations-association": {
"cache_duration": 1,
"name": "Informations de l'organisme",
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"additional-data": [
{"key": "json_contact",
"url": "{{ passerelle_url }}astregs/{{ slug }}/get-contact?contact_id={{ json.data.EncodeKeyContact }}"
}
],
"varnames": ["association_id"],
"url": "{{ passerelle_url }}astregs/{{ slug }}/get-association-by-id?association_id={{ association_id }}&NameID={{ user_nameid }}"
},
"mes-associations": {
"cache_duration": 1,
"name": "Mes organismes",
"form": [
{
"label": "Identifiant du connecteur",
"varname": "slug",
"required": true
}
],
"url": "{{ passerelle_url }}astregs/{{ slug }}/links?NameID={{ user_nameid }}"
},
"seniors-page-senior-contenu": {
"name": "Seniors - Page du senior - Contenu",
"url": "{{ idp_url }}api/users/{{ name_id }}",
"varnames": [],
"log_errors": false,
"cache_duration": 0,
"force_async": true,
"additional-data": [
{
"key": "liste_fiches",
"url": "{{ eservices_url }}api/cards/senior/list?NameID={{ user_nameid }}&filter-user-uuid={{ name_id }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
},
{
"key": "fiche",
"url": "{{ eservices_url }}api/cards/senior/{{ liste_fiches.data.0.id }}/?NameID={{ user_nameid }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
},
{
"key": "conjoint",
"url": "{{ eservices_url }}api/cards/senior/{{ fiche.fields.conjoint_senior_raw }}/?NameID={{ user_nameid }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
}
]
},
"seniors-page-senior-sidebar": {
"name": "Seniors - Page du senior - Barre latérale",
"url": "{{ idp_url }}api/users/{{ name_id }}",
"varnames": [],
"log_errors": false,
"cache_duration": 0,
"force_async": true,
"additional-data": [
{
"key": "liste_fiches",
"url": "{{ eservices_url }}api/cards/senior/list?NameID={{ user_nameid }}&filter-user-uuid={{ name_id }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
},
{
"key": "fiche",
"url": "{{ eservices_url }}api/cards/senior/{{ liste_fiches.data.0.id }}/?NameID={{ user_nameid }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
}
]
},
"seniors-affectation-agent": {
"name": "Seniors - Affectation de l'agent",
"url": "{{ idp_url }}api/users/{{ user_nameid }}",
"varnames": [],
"log_errors": false,
"cache_duration": 0,
"force_async": true,
"additional-data": [
{
"key": "liste_fiches",
"url": "{{ eservices_url }}api/cards/seniors-fiche-agent/list?NameID={{ user_nameid }}&filter-user-uuid={{ user_nameid }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
},
{
"key": "fiche",
"url": "{{ eservices_url }}api/cards/seniors-fiche-agent/{{ liste_fiches.data.0.id }}/?NameID={{ user_nameid }}",
"cache_duration": 0,
"log_errors": false,
"timeout": 5
}
]
}
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 846 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,446 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 158 196" style="enable-background:new 0 0 158 196;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00A6BC;}
.st1{fill:#00ABC1;}
.st2{fill:#DA261B;}
.st3{clip-path:url(#SVGID_2_);}
.st4{fill:#DB261B;}
.st5{fill:#C2AD71;}
.st6{fill:#124394;}
.st7{fill:#124395;}
.st8{fill:#C3AE71;}
.st9{fill-rule:evenodd;clip-rule:evenodd;fill:#D1C093;}
.st10{fill:#B3A06E;}
.st11{fill:#1D1D1B;}
</style>
<path class="st0" d="M25.73,146.35c-13.15,0-25.51-8.36-25.51-24.73v-31.2c0-16.38,12.37-24.74,25.51-24.74
c13.15,0,25.51,8.36,25.51,24.74v31.2C51.25,137.99,38.88,146.35,25.73,146.35 M32.97,90.42c0-5.57-3.34-8.25-7.24-8.25
c-3.9,0-7.24,2.67-7.24,8.25v31.31c0,5.57,3.34,8.13,7.24,8.13c3.9,0,7.24-2.56,7.24-8.13V90.42z"/>
<path class="st0" d="M71.75,146.35c-14.26,0-26.41-8.69-26.41-25.51c0-8.13,3.9-15.6,7.58-23.06L99.67,0h18.98L72.53,97.44
c1.56-0.56,3.23-0.56,4.46-0.56c9.69,0,21.17,8.25,21.17,23.95C98.15,137.66,86.01,146.35,71.75,146.35 M71.75,111.81
c-4.46,0-8.13,3.12-8.13,9.02c0,5.91,3.68,9.02,8.13,9.02c4.46,0,8.13-3.12,8.13-9.02C79.88,114.93,76.2,111.81,71.75,111.81"/>
<polygon class="st1" points="30.07,185.47 10.87,185.47 5.65,196.05 24.92,196.05 "/>
<path class="st2" d="M24.09,179.32c6.76,0,12.25-5.48,12.25-12.25c0-6.76-5.48-12.25-12.25-12.25c-6.76,0-12.25,5.48-12.25,12.25
C11.85,173.84,17.33,179.32,24.09,179.32L24.09,179.32z"/>
<g>
<defs>
<rect id="SVGID_1_" x="11.41" y="154.41" width="25.39" height="25.39"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g class="st3">
<path class="st4" d="M11.78,167.08c0,6.79,5.52,12.31,12.31,12.31c6.79,0,12.31-5.52,12.31-12.31c0-6.79-5.52-12.31-12.31-12.31
C17.31,154.77,11.78,160.29,11.78,167.08z M11.91,167.08c0-6.72,5.47-12.18,12.18-12.18c6.72,0,12.19,5.47,12.19,12.18
c0,6.72-5.47,12.18-12.19,12.18C17.37,179.26,11.91,173.8,11.91,167.08z"/>
</g>
<g class="st3">
<path class="st5" d="M24.1,154.41c-7,0-12.69,5.7-12.69,12.69c0,7,5.69,12.69,12.69,12.69l0,0c7,0,12.69-5.7,12.69-12.7
C36.79,160.1,31.1,154.41,24.1,154.41z M24.1,179.05c-6.59,0-11.95-5.36-11.95-11.95c0-6.59,5.36-11.95,11.95-11.95
c6.59,0,11.95,5.36,11.95,11.95C36.05,173.69,30.69,179.05,24.1,179.05L24.1,179.05z"/>
</g>
</g>
<path class="st5" d="M30.73,160.49c-0.41-3.3-3.23-5.86-6.65-5.86c-3.42,0-6.23,2.56-6.65,5.86l0,0.01
c-3.27,0.44-5.79,3.25-5.79,6.64c0,3.4,2.53,6.21,5.81,6.64l0-0.01c0.46,3.26,3.25,5.76,6.63,5.76c3.38,0,6.18-2.5,6.63-5.76
l-0.01,0.01c3.28-0.43,5.82-3.24,5.82-6.64C36.54,163.74,34.01,160.93,30.73,160.49L30.73,160.49L30.73,160.49z"/>
<path class="st6" d="M19.51,171.71c-0.48,0.16-0.99,0.24-1.52,0.24c-2.66,0-4.82-2.16-4.82-4.82c0-2.66,2.16-4.82,4.82-4.82
c0.54,0,1.06,0.09,1.54,0.25l0,0.01c-0.18-0.5-0.27-1.04-0.27-1.6c0-2.66,2.16-4.82,4.82-4.82s4.82,2.16,4.82,4.82
c0,0.57-0.1,1.1-0.28,1.6l0,0c0.49-0.17,1.02-0.26,1.57-0.26c2.66,0,4.82,2.16,4.82,4.82c0,2.66-2.16,4.82-4.82,4.82
c-0.53,0-1.03-0.09-1.51-0.25l0,0c0,0,0.23,0.96,0.23,1.48c0,2.66-2.16,4.82-4.82,4.82c-2.66,0-4.82-2.16-4.82-4.82
C19.28,172.67,19.36,172.17,19.51,171.71L19.51,171.71"/>
<g>
<path class="st7" d="M19.26,160.97c0,0.55,0.09,1.09,0.27,1.6h0c-0.17-0.52-0.26-1.05-0.26-1.6c0-2.65,2.16-4.81,4.81-4.81
c2.65,0,4.81,2.16,4.81,4.81c0,0.54-0.09,1.07-0.28,1.6c0.51-0.16,1.04-0.25,1.58-0.25c1.29,0,2.49,0.5,3.4,1.41
c0.91,0.91,1.41,2.12,1.41,3.4c0,1.28-0.5,2.49-1.41,3.4c-0.91,0.91-2.12,1.41-3.4,1.41c-0.51,0-1.01-0.08-1.5-0.25
c-0.01,0.02,0.22,0.98,0.22,1.49c0,2.65-2.16,4.81-4.81,4.81c-1.28,0-2.49-0.5-3.4-1.41c-0.91-0.91-1.41-2.12-1.41-3.4
c0-0.5,0.08-1,0.23-1.47c-0.17,0.47-0.25,0.97-0.25,1.47c0,1.29,0.5,2.5,1.41,3.41c0.91,0.91,2.12,1.41,3.41,1.41
c2.66,0,4.83-2.16,4.83-4.83c0-0.51-0.23-1.47-0.23-1.48c0.49,0.18,0.98,0.26,1.5,0.26c1.29,0,2.5-0.5,3.41-1.41
c0.91-0.91,1.41-2.12,1.41-3.41c0-1.29-0.5-2.5-1.41-3.41c-0.91-0.91-2.12-1.41-3.41-1.41c-0.54,0-1.07,0.09-1.57,0.26
c0.2-0.52,0.29-1.06,0.29-1.6c0-2.66-2.17-4.83-4.83-4.83C21.42,156.15,19.26,158.31,19.26,160.97z M14.58,163.72
c-0.91,0.91-1.41,2.12-1.41,3.41c0,2.66,2.17,4.83,4.83,4.83c0.52,0,1.03-0.08,1.52-0.24l0-0.02c-0.49,0.16-1,0.24-1.51,0.24
c-2.65,0-4.81-2.16-4.81-4.81c0-1.28,0.5-2.49,1.41-3.4c0.91-0.91,2.12-1.41,3.4-1.41c0.51,0,1.01,0.09,1.49,0.24
c-0.47-0.17-0.97-0.26-1.49-0.26C16.7,162.31,15.49,162.81,14.58,163.72z M19.53,162.58C19.53,162.58,19.53,162.58,19.53,162.58
c-0.02-0.01-0.04,0-0.05-0.01C19.5,162.57,19.52,162.57,19.53,162.58z"/>
</g>
<path class="st5" d="M25.08,168.87c-0.02,0.04-0.05-0.01-0.07,0c-0.07-0.01-0.15,0.06-0.17,0.13c-0.06,0.17-0.07,0.37-0.03,0.55
c0.21-0.2,0.55-0.28,0.84-0.16c0.23,0.1,0.45,0.29,0.48,0.55c0.01,0.2-0.11,0.36-0.27,0.46c0.12,0.24,0.09,0.57-0.04,0.79
c-0.07-0.03-0.05-0.13-0.08-0.19c-0.1-0.22-0.34-0.43-0.61-0.43l0,0c0.34,0.34,0.49,0.75,0.67,1.16c-0.22-0.01-0.44-0.09-0.57-0.28
c-0.02-0.04-0.06-0.07-0.09-0.11c0.02,0.24,0.05,0.56-0.02,0.78c-0.16-0.05-0.25-0.22-0.37-0.34c-0.13-0.14-0.23-0.29-0.32-0.44
c-0.03,0.05-0.01,0.1-0.01,0.16c0.01,0.22,0,0.45,0.04,0.66c-0.01,0.17-0.04,0.32-0.02,0.49c0.06,0.34-0.05,0.66-0.01,0.98
c-0.03,0.16,0,0.36-0.06,0.52c0.02,0.51-0.04,1.02-0.01,1.53c0.06,0.11-0.05,0.23,0.02,0.34c-0.05,0.15,0.1,0.25,0.05,0.4
c0.07,0.13,0.02,0.31-0.06,0.42c-0.09,0.07-0.19,0.11-0.31,0.13c-0.1-0.1-0.26-0.02-0.32-0.17c-0.15-0.13-0.08-0.32-0.03-0.48
c0.1-0.11,0.03-0.29,0.1-0.41c0.01-0.33,0.04-0.61,0.04-0.94c0.05-0.57,0.08-1.13,0.1-1.7c0.01-0.13,0.03-0.28,0-0.42
c0.06-0.45,0.06-0.95,0.09-1.4c0.03-0.04,0.04-0.1,0.02-0.14c-0.14,0.37-0.28,0.76-0.47,1.12h-0.05c-0.06-0.26-0.17-0.53-0.1-0.84
l-0.02-0.01c-0.18,0.29-0.34,0.6-0.55,0.89c-0.15-0.27-0.12-0.69-0.08-0.99c0.01-0.12,0.03-0.24,0.09-0.34
c-0.03-0.19-0.04-0.4,0.02-0.58l0-0.01c-0.18,0.23-0.37,0.47-0.42,0.76c-0.09-0.03-0.12-0.12-0.16-0.19
c-0.08-0.44,0.1-0.81,0.39-1.11c0.19-0.16,0.41-0.24,0.64-0.3c-0.31-0.21-0.77-0.08-1.09-0.27c0.27-0.35,0.68-0.56,1.13-0.44
c0.04-0.08,0.11-0.16,0.2-0.18c0.18,0.07,0.3,0.26,0.32,0.45c0.03,0.07,0,0.15,0.05,0.22c0.07-0.25-0.05-0.5-0.25-0.68
c0.08-0.05,0.24-0.05,0.32,0c0.08,0.05,0.08,0.13,0.13,0.19c0.1-0.22,0.32-0.38,0.56-0.38C24.87,168.62,25,168.73,25.08,168.87
L25.08,168.87z"/>
<path class="st5" d="M17.99,163.76c0,0-1.8,0.99-0.17,4.26v1.08c0,0-0.59,1.03,0.17,1.74c0,0,0.8-0.58,0.19-1.74V168
C18.18,168,19.84,165.05,17.99,163.76L17.99,163.76z"/>
<path class="st5" d="M15.8,168.12c0,0-0.81-0.23-0.68-1.21c0.13-0.99,1.89-1.23,2.35,0.31l0.39,0.79l-0.02,1.34
c0,0-0.02,0.89-0.65,0.91c-0.63,0.02-0.63-0.44-0.63-0.44s1.48,0.22,0.86-1.65C16.84,166.42,15.48,167.45,15.8,168.12L15.8,168.12z"
/>
<path class="st5" d="M20.21,168.12c0,0,0.81-0.23,0.68-1.21c-0.13-0.99-1.89-1.23-2.35,0.31L18.16,168l0.02,1.34
c0,0,0.02,0.89,0.65,0.91c0.63,0.02,0.63-0.44,0.63-0.44s-1.48,0.22-0.86-1.65C19.18,166.42,20.54,167.45,20.21,168.12L20.21,168.12
z"/>
<polygon class="st8" points="18.78,169.15 18.78,168.63 17.18,168.63 17.18,169.15 18.78,169.15 "/>
<polygon class="st5" points="31.22,166.52 31.22,164.01 31.21,164.01 29.51,164.01 29.51,164.01 29.51,166.52 29.51,166.52
27.38,166.52 27.37,166.52 27.37,168.23 27.37,168.23 29.51,168.23 29.51,168.23 29.51,170.74 31.22,170.74 31.22,170.74
31.22,168.23 31.22,168.23 33.35,168.23 33.35,168.23 33.35,166.52 33.35,166.52 31.22,166.52 "/>
<rect x="30.94" y="167.92" transform="matrix(0.2484 -0.9687 0.9687 0.2484 -139.4031 156.1778)" class="st9" width="0" height="0"/>
<path class="st10" d="M22.29,163.21c0.01,0.02-0.02,0.02-0.03,0.03c-0.01,0-0.02,0-0.02,0C22.24,163.22,22.26,163.18,22.29,163.21
L22.29,163.21z"/>
<path class="st5" d="M25.19,161.23c0.05,0.03,0.06,0.09,0.1,0.13c0.1-0.01-0.06-0.14,0.03-0.17c0.03,0.05,0.07,0.12,0.13,0.13
c-0.03-0.06,0-0.11-0.02-0.17c0.09-0.04,0.07,0.11,0.14,0.12c0.03-0.07-0.03-0.1-0.04-0.15l0.03-0.02c0.04-0.01,0.07,0.04,0.09,0.07
c0.02,0.02,0.06,0.03,0.09,0.01c0-0.06-0.04-0.11-0.06-0.16c0.06-0.05,0.09,0.1,0.15,0.03c0.05,0.03,0.07-0.05,0.12-0.02v-0.02
c-0.02-0.02-0.06-0.02-0.09-0.01c-0.02-0.01-0.06-0.04-0.06-0.07c0.04-0.06,0.06,0.03,0.1,0.02c0.04-0.04,0.11,0.03,0.15-0.02
c-0.01-0.01-0.01-0.04-0.03-0.03c-0.02-0.01-0.07,0-0.06-0.04l0.01-0.01c0.03,0.01,0.1-0.02,0.11,0.04l0.02-0.03
c0.01,0,0.02,0,0.03,0.01c0-0.01,0.02-0.02,0.01-0.03H26.1c-0.04,0-0.04-0.05-0.03-0.07c0.04,0.04,0.07,0,0.13,0
c0-0.05-0.07-0.01-0.09-0.04c0,0,0-0.01,0-0.01c0.04,0.01,0.1-0.07,0.11,0.01c0.02-0.01,0.06,0.01,0.06-0.02l-0.06-0.03
c-0.03-0.03-0.06,0.02-0.08-0.03c0-0.04,0.05-0.01,0.07-0.03c0.01,0.01,0.02,0.01,0.02,0.02c0.07-0.02,0.09,0.05,0.14-0.01
l-0.17-0.05c0.04-0.03,0.14-0.01,0.14-0.07l-0.11,0c0.02-0.03,0-0.07-0.02-0.09l-0.02,0.01c-0.01,0.17-0.17,0.2-0.26,0.34
c-0.08,0.03-0.13,0.08-0.2,0.12c-0.03,0.02,0,0.07-0.06,0.05c-0.03-0.04-0.04-0.1-0.05-0.14c0.05,0,0.08,0.06,0.13,0.04
c0.02-0.05-0.04-0.05-0.06-0.1c0.04-0.05,0.1,0.04,0.16,0.01l0.01-0.05c-0.01-0.01-0.02-0.03-0.04-0.03
c0.02-0.12,0.07,0.03,0.13-0.01c0.03-0.05-0.02-0.06-0.05-0.08c0.02-0.04,0.08,0,0.1-0.03c0-0.02,0-0.03-0.01-0.05l0.07-0.03
l-0.05-0.06c0.03-0.04,0.09,0.03,0.1-0.03c-0.09-0.01,0.03-0.09,0-0.13l-0.03,0.03l-0.03-0.02l-0.02,0.08
c-0.21,0.33-0.58,0.47-0.96,0.41l-0.03-0.02c0.03,0,0.06-0.01,0.09,0c0.1-0.01,0.2,0,0.27-0.05l0.03,0.03
c0.02-0.02,0.06-0.08,0.11-0.04l0.03-0.07c0.04-0.01,0.05,0.02,0.09,0.03v-0.09h0.11l-0.03-0.08c0.05-0.04,0.1,0.07,0.15,0
c-0.03-0.02-0.08-0.03-0.08-0.07c0.04-0.05,0.09,0.02,0.13-0.01l-0.07-0.07c0.04-0.05,0.1,0.03,0.13-0.03
c-0.02-0.01-0.06-0.01-0.07-0.03c0.04-0.02,0.08-0.04,0.13-0.04v-0.02h-0.1c-0.02-0.04,0.04-0.06,0.05-0.08
c-0.01-0.02-0.01-0.03-0.03-0.03c-0.09,0.14-0.22,0.28-0.37,0.36c-0.08,0.06-0.21,0.06-0.25-0.06c0-0.02-0.01-0.05,0-0.06l0.13,0.09
c0.04,0.02,0.07,0,0.09-0.03c0-0.04-0.03-0.07-0.07-0.04c-0.01-0.07-0.1-0.01-0.09-0.09c0.11-0.09,0.18,0.15,0.29,0.04l-0.08-0.04
c0.01-0.07-0.08-0.05-0.11-0.09l0.02-0.01c0.13-0.04,0.12,0.1,0.25,0.1c0.05-0.06-0.07-0.02-0.07-0.09c0.02-0.02,0.05,0,0.07,0
c0.02-0.02,0.08-0.01,0.08-0.05c-0.06,0.01-0.13,0-0.18-0.03c0.04-0.01,0.12-0.02,0.18-0.01c0.05-0.02,0.13-0.06,0.14-0.11
c-0.06,0.02-0.11,0.08-0.17,0.07v-0.03c0.08-0.01,0.13-0.08,0.17-0.13c-0.06-0.04-0.1,0.04-0.13,0.06
c-0.06-0.09,0.18-0.12,0.04-0.19c-0.08,0.02-0.04,0.11-0.11,0.14c-0.04-0.03,0.02-0.07,0.02-0.1l-0.05,0.02
c-0.01-0.01,0-0.03-0.01-0.04h-0.01c0.04,0.17-0.15,0.21-0.24,0.29c-0.01-0.02,0-0.06-0.04-0.05c-0.01-0.04-0.09-0.03-0.11-0.08
c0.07-0.03,0.16-0.01,0.19-0.06l-0.08-0.03c0.02-0.06,0.12-0.01,0.13-0.08c-0.04,0-0.06,0.01-0.09-0.02
c0.03-0.03,0.09-0.03,0.14-0.03c0.01-0.05-0.07,0-0.09-0.04l0.1-0.08l-0.06-0.02c0-0.04,0.04-0.02,0.05-0.05
c0.01-0.03-0.02-0.04-0.04-0.03l-0.21,0.28c-0.01,0-0.03,0.01-0.03-0.01c-0.01-0.05,0.04-0.07,0.08-0.09l-0.03-0.04
c0.02-0.03,0.05-0.02,0.08-0.04l-0.03-0.04c0.03-0.05,0.09,0.03,0.1-0.03c-0.01-0.04-0.01-0.06-0.04-0.09l0.02-0.01
c0.05-0.02,0.11,0,0.16,0.03c0-0.02,0.03-0.04,0-0.06c-0.04-0.01-0.11,0.03-0.14-0.03c0.03-0.02,0.08-0.02,0.11-0.03
c-0.01-0.02-0.06,0-0.05-0.04c0.04-0.02,0.12-0.01,0.17,0.02c0.01,0,0-0.02,0-0.03c0-0.01,0-0.04-0.02-0.03v0.01
c-0.05-0.01-0.12,0-0.17-0.03c0.05-0.06,0.13,0.01,0.17-0.06c-0.01-0.01-0.01-0.04-0.03-0.03c-0.01,0.08-0.1-0.01-0.15,0.02
c0.01-0.02,0-0.05,0.02-0.06l0.05,0.03c0.04-0.02-0.01-0.04,0-0.06c0.02,0,0.08-0.01,0.1,0.01c0-0.02-0.01-0.03-0.02-0.04
c-0.08,0-0.16,0.02-0.21,0.07c-0.01-0.02-0.02-0.04-0.01-0.06c0.06,0,0.11-0.07,0.18-0.04l-0.07-0.08c0.03-0.04,0.08,0,0.11,0
c-0.11-0.14-0.25,0.04-0.36,0.05c-0.05-0.03,0.05-0.06-0.01-0.09c0.01-0.02,0.04-0.03,0.06-0.04l-0.05-0.02
c0.02-0.09,0.1,0.02,0.15,0c-0.02-0.05-0.09-0.05-0.13-0.07c0.05-0.09,0.1,0.03,0.16-0.01c0-0.01-0.03-0.04-0.05-0.04l0.06-0.08
c-0.01,0-0.01,0.01-0.01,0.01l-0.04-0.05l-0.04,0.08c-0.15,0.06-0.16,0.26-0.29,0.32c0.02-0.07-0.05-0.09-0.05-0.15
c0.07-0.05,0.04,0.1,0.13,0.03v-0.02c-0.05,0.01-0.01-0.06-0.06-0.07c0.03-0.03,0.04,0.02,0.08,0.01c0.06-0.03,0-0.05,0-0.09
c0.02-0.02,0.06,0.01,0.09,0l0.01-0.05c0.03-0.03,0.1-0.03,0.1-0.08c-0.04,0-0.09,0.04-0.13,0c0.03-0.07,0.12-0.04,0.17-0.06
c-0.01-0.1-0.1,0.01-0.16-0.03c-0.01-0.06,0.07-0.04,0.11-0.07c0,0-0.01-0.01-0.01-0.02l-0.1-0.01c0-0.07,0.13,0,0.12-0.09
c-0.03,0-0.07,0.01-0.09-0.02c0.04-0.02,0.08-0.08,0.06-0.14c0,0.04-0.03,0.09-0.08,0.08c0.02-0.05,0.02-0.11,0.06-0.16l-0.03,0.01
c-0.04-0.02,0.01-0.05-0.03-0.05c-0.02,0.2-0.12,0.37-0.2,0.54c-0.07-0.05,0.06-0.13-0.04-0.15c0.02-0.07,0.06,0.01,0.09-0.03
c-0.06-0.04,0.03-0.07,0.04-0.1c-0.02-0.01-0.05,0-0.05-0.03c0.03-0.02,0.05-0.07,0.09-0.05v-0.05c-0.03,0-0.05,0.07-0.09,0.04
c0.04-0.05,0.02-0.1,0.04-0.16l-0.04,0.04c-0.03,0.15-0.14,0.29-0.15,0.42c-0.04,0-0.08,0-0.1-0.02c-0.04-0.08,0.09-0.01,0.06-0.1
c-0.03,0-0.06,0.01-0.08-0.02c0.04-0.04,0.13-0.03,0.14-0.08c-0.09-0.01,0.02-0.03,0-0.08c-0.03-0.01-0.05,0.06-0.09,0.02l0.09-0.1
c-0.02-0.01-0.06,0.01-0.06-0.02c0.02-0.04,0.07-0.01,0.1-0.01c-0.05-0.03,0.01-0.08,0.04-0.09c-0.04-0.02-0.07,0.04-0.11,0.02
v-0.02c0.01-0.03,0.04-0.05,0.08-0.04c0-0.01-0.01-0.02-0.01-0.03c-0.18,0.1-0.13,0.34-0.31,0.46c-0.04,0.03-0.08,0-0.11,0.04
c-0.02-0.03,0.01-0.06-0.03-0.09c-0.02-0.03-0.01-0.09,0.01-0.11c0,0.06,0.08,0.08,0.08,0.13c0.1-0.04-0.02-0.14,0.01-0.2
c0.05,0.01,0.07,0.07,0.11,0.08c0-0.01,0-0.03-0.01-0.03c0.01-0.01,0.01-0.02,0.02-0.02c-0.01-0.03-0.09-0.06-0.09-0.09
c0.02,0,0.04,0,0.04,0.01c0.04,0.01,0.08,0.01,0.09-0.03c-0.02-0.01-0.07-0.02-0.06-0.05c0.03-0.01,0.09-0.02,0.1-0.05
c-0.03,0-0.06,0.01-0.08-0.02c0.01-0.05,0.08-0.01,0.11-0.02c-0.01-0.04-0.06-0.02-0.1-0.03c0.02-0.04,0.07-0.04,0.1-0.04
c0-0.03-0.05-0.01-0.06-0.04l0.05-0.04c0-0.01-0.02-0.01-0.02-0.01v-0.05l-0.03,0.01c-0.09,0.18-0.21,0.4-0.4,0.48
c0.01-0.06-0.04-0.09-0.05-0.13c-0.05-0.02-0.04,0.07-0.09,0.01c0.16-0.08,0.26-0.32,0.43-0.33l-0.06-0.02l0.02-0.05l-0.11,0.03
c0.05-0.04,0.07-0.13,0.14-0.14l-0.09-0.03c0.02-0.02,0.05-0.02,0.08-0.04c-0.13-0.01-0.18,0.16-0.22,0.25c0,0.08-0.08,0-0.1-0.01
l0.02-0.03l0.04,0.03c0.02-0.03-0.02-0.03-0.03-0.06c0.11,0.01,0-0.08,0.09-0.1l-0.02-0.01c0.02-0.02,0.03-0.05,0.05-0.07
c-0.1,0-0.1,0.11-0.14,0.18c-0.05,0.09-0.16,0.2-0.27,0.18c0.07-0.01-0.02-0.06,0.03-0.09c0.03-0.01,0.02,0.02,0.03,0.04
c0.06,0,0.01-0.05,0.04-0.07c0.02-0.01,0.03,0.02,0.04,0.03c0.13-0.08,0.08-0.29,0.24-0.32c-0.03,0-0.06,0.01-0.08-0.03l0.02-0.01
l-0.01-0.04l0.09-0.05l-0.02-0.02c-0.15,0.08-0.19,0.3-0.35,0.4c-0.04,0-0.07,0.08-0.1,0.02c0.01-0.04-0.03-0.09,0.01-0.11
c0.03,0.01,0.06,0.04,0.06,0.07c0.02-0.07,0.09-0.09,0.15-0.14c0-0.04,0.06-0.09,0.02-0.13c0.01-0.01,0.04-0.02,0.03-0.05
c-0.08,0.06-0.13,0.12-0.22,0.18c-0.06,0.01-0.02-0.06-0.07-0.08c0.06-0.15-0.2-0.08-0.24-0.22l-0.02,0.04h0.03
c0.05,0.02-0.02,0.04,0,0.07l0.04-0.01c0.04,0.04,0.11,0.09,0.15,0.14c-0.06,0.02-0.12-0.02-0.19-0.02
c-0.07-0.03-0.11-0.13-0.2-0.11l0.07,0.05c-0.02,0.03-0.06,0.04-0.1,0.05c0.02,0.07,0.07,0,0.11,0.02l-0.02,0.05
c0.03,0.03,0.05-0.01,0.09-0.02c0.02,0.02-0.02,0.04-0.02,0.07c0.05,0.02,0.04-0.04,0.08-0.04c0.02,0.02,0.01,0.05,0.01,0.08
c0.04,0,0.02-0.05,0.05-0.06c0.03,0.02,0.01,0.09,0.05,0.09c0-0.02,0-0.05,0.02-0.06c0.04,0.03,0.03,0.08,0.06,0.11
c-0.1,0.03-0.19-0.08-0.29-0.08c0.02,0.04,0.05,0.06,0.02,0.1c0.04,0.02,0.06-0.05,0.1-0.02c-0.01,0.03-0.03,0.07-0.07,0.08
c-0.09-0.06-0.08-0.27-0.24-0.21l0.08,0.04c-0.03,0.03-0.09,0.02-0.12,0.01v0.02h0.02c0.03,0.01,0,0.04,0.03,0.06l0.05-0.05
l0.02,0.02c-0.01,0.04-0.07,0.07-0.08,0.11c0.06,0.04,0.07-0.08,0.11-0.02l-0.06,0.06c0.03,0.03,0.06-0.06,0.1-0.01
c-0.02,0.05-0.1,0.03-0.07,0.09c0.02-0.04,0.09-0.02,0.11-0.02l-0.05,0.07c0.03,0.08,0.07-0.04,0.11,0v0.02
c-0.02,0.06-0.1,0.09-0.13,0.02c-0.09-0.1-0.16-0.22-0.24-0.3l0.03,0.08c-0.01,0.02-0.05-0.02-0.04,0.02
c0.02,0.02,0.09-0.01,0.09,0.04c-0.03,0.01-0.07,0-0.11,0.01c-0.01,0.08,0.1-0.02,0.12,0.05c-0.02,0.07-0.09,0.02-0.12,0.04v0.03
c0.04,0.04,0.1-0.03,0.16,0.01c-0.03,0.02-0.06,0.03-0.1,0.04c-0.01,0.05,0.05,0,0.06,0.04c0,0.02-0.04,0.02-0.03,0.05
c0.04,0,0.06-0.08,0.1-0.03l-0.1,0.11c-0.05-0.04-0.04-0.13-0.1-0.15c-0.02-0.01-0.03,0.01-0.03,0.02c0.12,0.05-0.04,0.03-0.03,0.1
c0.03,0,0.06-0.01,0.08,0.03l-0.08,0.07h0.08c0.01,0.04-0.02,0.07-0.04,0.08l0.06,0.05l-0.06,0.05l0.03,0.04
c0,0.01-0.01,0.02-0.02,0.02c0,0.01,0,0.03,0.01,0.03c0.03,0,0.04,0.04,0.01,0.07c0.07,0.07,0.09,0.18,0.17,0.25
c-0.15-0.04-0.19-0.25-0.27-0.35l-0.02,0.02c-0.01,0-0.03,0.01-0.03-0.01c-0.02,0.01-0.06,0.01-0.06,0.04
c0.04-0.01,0.08,0.01,0.1,0.03c0,0.08-0.1,0.01-0.13,0.06c0.04,0,0.02,0.05,0.01,0.08c0.05,0,0.07-0.08,0.12-0.04l-0.11,0.13
c0.05,0,0.09-0.05,0.14-0.02l-0.01,0.02c-0.03,0.04-0.1,0.04-0.12,0.08c0.1,0.04,0.14-0.08,0.21-0.04l-0.14,0.13
c0.07,0.01,0.11-0.08,0.17-0.07c0,0.07-0.09,0.09-0.11,0.15c0.02,0,0.05,0.04,0.01,0.06c-0.09-0.01-0.15-0.13-0.22-0.16
c-0.02,0-0.07-0.01-0.08,0.02l0.03,0c-0.01,0.06,0.07,0.01,0.09,0.04c0,0.06-0.09,0.02-0.09,0.07c0.04-0.01,0.08-0.01,0.09,0.03
c-0.01,0.01-0.02,0.03-0.04,0.03c0,0.01,0,0.03,0.01,0.04c0.02,0,0.03,0,0.04-0.02c0.07,0.03-0.03,0.06-0.01,0.09
c0.03,0.01,0.04-0.01,0.06-0.02v0.09l0.06-0.01c0.02,0,0.01,0.02,0.01,0.03c-0.02,0.04-0.03,0.07-0.08,0.1
c-0.03-0.07-0.08-0.13-0.15-0.13l0.03,0.03c-0.01,0.02-0.08,0.02-0.06,0.05l0.08-0.01c0.01,0,0.04,0.02,0.03,0.04
c-0.01,0.01-0.02,0.02-0.03,0.02c-0.03-0.01-0.06,0.02-0.04,0.04c0.05-0.01,0.09,0,0.13,0.03l-0.1,0.03
c0.05,0.02,0.11,0.06,0.17,0.03c0.01,0.04-0.03,0.04-0.04,0.06c0.02,0.01,0.05,0.01,0.05,0.03c0.02,0.02,0.04-0.02,0.07-0.01
c0.02,0.02,0.03,0.04,0.01,0.06h0.03c0.04-0.05,0.07,0.01,0.1,0.04c0.04-0.02,0.12-0.01,0.19,0.01c-0.17,0.07-0.34-0.04-0.5-0.1
c0,0.01,0.03,0.04,0.05,0.04c0.02,0.02,0,0.03,0,0.05l0.1,0.04c-0.03,0.02,0.02,0.05,0,0.07c-0.1-0.06-0.2-0.15-0.27-0.24
c-0.04-0.07-0.11-0.11-0.14-0.17c-0.07-0.01,0.01-0.07-0.05-0.07c-0.02,0.04,0.02,0.09,0.03,0.11c-0.02,0.01-0.06,0.02-0.06,0.05
c0.01,0.01,0.03,0,0.04,0.02h0.01c0.02-0.01,0-0.05,0.03-0.04c0.02,0.02,0.05,0.05,0.03,0.08c-0.05,0-0.1,0.02-0.1,0.06h0.02
c0.04-0.04,0.11-0.04,0.14,0.02c-0.04,0.01-0.11,0.01-0.1,0.07c0.03-0.02,0.08-0.03,0.11-0.01l-0.03,0.04l0.03,0.03
c-0.19,0.11-0.16-0.2-0.32-0.19c0,0.08,0.13,0.07,0.1,0.15c-0.04-0.07-0.16-0.01-0.22-0.06c0.03,0.06,0.12,0.05,0.18,0.1
c-0.04,0.07-0.12-0.01-0.13,0.08c0.02,0,0.04,0.01,0.04,0c0.04,0.07,0.08-0.04,0.12,0c-0.04,0.02-0.03,0.1-0.09,0.08
c-0.02,0.01-0.03,0.03-0.02,0.04c0.03-0.05,0.11-0.01,0.13-0.06l0.02,0.02c-0.05,0.04-0.05,0.11-0.1,0.14
c0.06,0.01,0.07-0.08,0.14-0.07c0.06,0.08-0.09,0.08-0.05,0.16c0.09-0.01,0.1-0.14,0.19-0.13c0,0.09-0.11,0.11-0.12,0.21l0.02,0.01
c0.06-0.04,0.11-0.11,0.18-0.1c-0.05,0.04-0.04,0.12-0.1,0.15c0.06,0.04,0.12-0.05,0.18-0.02c-0.02,0.03-0.06,0.07-0.07,0.1
c0.02,0.01,0.06-0.03,0.09-0.01c0.02,0.02,0,0.04-0.01,0.07c0.06,0.01,0.1-0.05,0.15-0.02c-0.06,0.02-0.04,0.11-0.11,0.12
l-0.44-0.28c-0.05-0.04-0.16,0.01-0.19-0.05c0.03,0.1,0.15,0.02,0.19,0.1c-0.06,0.02-0.13,0.03-0.18,0
c0.04,0.08,0.15,0.04,0.21,0.08c-0.03,0.07-0.12,0.04-0.18,0.06c0.01,0.02,0.02,0.03,0.04,0.03l0.01,0.06l0.11-0.06
c0.04,0.01,0.04-0.09,0.09-0.03l-0.1,0.08c0.07,0.04,0.11-0.04,0.17-0.02c-0.02,0.13-0.19,0.04-0.21,0.14
c0.04-0.02,0.09-0.04,0.14-0.02c0.04,0,0.08-0.07,0.12-0.03c-0.03,0.09-0.13,0.08-0.18,0.11c0.03,0.02,0.06-0.01,0.09,0
c0.06,0.01,0.1-0.1,0.16-0.04c-0.04,0.03-0.06,0.1-0.11,0.1v0.03h0.01c0.06,0,0.13-0.08,0.15-0.02c-0.13,0.13-0.29-0.07-0.4,0.03
l0.01,0c0.02,0.06,0.08,0.02,0.11,0.03c-0.02,0.02-0.04,0.05-0.02,0.08h0.01v-0.02c0.01-0.01,0.02-0.02,0.04-0.01
c0.06,0.01,0,0.06,0.02,0.09c0.05-0.01,0.11-0.02,0.16,0.01c-0.01,0.01-0.02,0.02-0.04,0.01v0.03c0.08-0.03,0.1,0.04,0.16,0.07
c-0.22,0-0.44-0.12-0.55-0.33c-0.01-0.02,0.02-0.09-0.04-0.08c0.01,0.02-0.03,0.06,0.01,0.08c-0.04,0.08,0.08,0.06,0.06,0.12
c-0.08-0.01-0.12-0.1-0.19-0.13c-0.03,0.07,0.08,0.07,0.09,0.14c-0.03,0.08-0.09,0-0.12,0c0.03,0.12,0.18-0.02,0.25,0.04
c0.02,0.01,0,0.02,0,0.03c-0.08-0.04-0.09,0.08-0.16,0.03v0.03c0.04,0.03,0.08-0.02,0.11-0.03c0.04,0.01,0.1-0.02,0.14,0.03
c-0.05,0.02-0.15,0.03-0.12,0.1c0.02,0,0.04,0,0.05-0.02c0.06,0.01,0.12-0.06,0.16-0.01c-0.06,0.03-0.11,0.11-0.18,0.08v0.03
c0.02,0.01,0.04-0.01,0.06-0.03c0.07,0.04,0.11-0.06,0.17-0.02l-0.12,0.12c0.1,0.02,0.16-0.12,0.25-0.08
c-0.05,0.06-0.12,0.09-0.15,0.15l0.01,0.01c0.11,0.03,0.08-0.12,0.18-0.11c0.03,0.06-0.06,0.12-0.09,0.18
c-0.18-0.04-0.36-0.12-0.49-0.27c-0.1,0-0.08-0.12-0.12-0.18v0.09h-0.09c0.02,0.04,0.07,0.02,0.1,0.05
c-0.02,0.04-0.07,0.02-0.11,0.03v0.02c0.07-0.01,0.14,0.02,0.19,0.06c-0.03,0.05-0.05-0.02-0.07-0.02c-0.01,0.01,0,0.02,0,0.03
c0.03,0.04,0.07,0.04,0.11,0.06l-0.02,0.05c0.03,0.04,0.07-0.01,0.1,0.02v0.01c-0.16,0.18-0.14-0.2-0.32-0.15
c-0.02,0-0.04,0.02-0.04,0.04c0.02,0,0.03-0.02,0.05-0.01c0.03,0,0.04,0.04,0.04,0.06c-0.03,0.03-0.1,0.01-0.12,0.07
c0.05,0.02,0.1-0.04,0.15-0.02c-0.02,0.06-0.1,0.06-0.11,0.11c0.13-0.11,0.22-0.03,0.33,0.03l-0.08,0.04
c-0.06,0.02-0.12,0.05-0.13,0.1l-0.21-0.08c-0.08-0.02-0.11-0.15-0.21-0.09c0,0.06,0.08,0,0.1,0.05c-0.01,0.01-0.02,0.02-0.03,0.02
v0.03c0.04,0.03,0.1-0.04,0.12,0.03c-0.04,0.01-0.09,0.06-0.1,0.1c0.01,0.01,0.02,0,0.04,0c0-0.01,0.02-0.02,0.03-0.04
c0.02-0.01,0.07-0.03,0.1,0l-0.01,0.01c-0.01,0.03-0.07,0.06-0.03,0.09l0.07-0.05l0.01,0.01c0.03,0.05-0.03,0.09-0.06,0.12
c0.04,0.05,0.08-0.04,0.11-0.04c0.02,0.01,0.01,0.03,0.01,0.05c0,0-0.01,0.05-0.03,0.06c-0.02,0.01-0.04,0.01-0.04,0.01
s0.01,0,0.02,0.01c0.01,0.01,0.02,0.02,0.04,0.03c0.02,0.01,0.01,0.02-0.01,0.02c-0.02,0-0.05-0.02-0.05-0.02
c-0.01,0-0.02,0.01-0.03,0.01c0,0.01-0.01,0.01,0.02,0.03c0.03,0.01,0.06,0.01,0.06,0.01s0.05,0,0.05,0.01c0.01,0.01,0,0.02,0,0.02
l-0.05,0c0,0-0.02,0-0.03,0c-0.01,0-0.02,0.03-0.02,0.03l0.07,0c0,0,0.06,0,0.04,0.01c-0.02,0.01-0.05,0.03-0.05,0.03l-0.01,0.03
c0,0,0,0.01-0.01,0.03c-0.01,0.02,0,0.03,0,0.03s0.02-0.01,0.05-0.04c0.03-0.03,0.02-0.04,0.03-0.03c0.01,0.01,0.02,0.03,0.02,0.03
s0.02,0.01,0,0.02c-0.02,0.01-0.04,0.05-0.07,0.06c-0.03,0.01-0.06,0.01-0.04,0.04c0.02,0.03,0.01,0.01,0.03,0.02
c0.03,0.01,0.04,0,0.05,0.01c0.01,0.01,0,0.03,0,0.03c-0.02,0-0.03,0.01-0.05,0.01c0.01,0.06,0.07-0.02,0.09,0.04
c-0.03,0.03-0.1,0.03-0.1,0.09c0,0.01,0.02,0,0.03,0c0.02-0.05,0.09-0.05,0.14-0.06c0.02,0.07-0.08,0.05-0.11,0.09
c-0.01,0.01-0.01,0.04,0.01,0.05c0.06-0.03,0.12-0.05,0.2-0.03c0,0.09-0.14,0-0.1,0.1c0.04-0.04,0.1,0.01,0.14-0.02
c0,0.06-0.06,0.05-0.09,0.08c0.02,0.05,0.03,0.02-0.03,0.06c-0.19-0.03-0.34-0.2-0.44-0.38c-0.01-0.05,0.03-0.06,0.05-0.09
c-0.05,0.01-0.06-0.05-0.05-0.08c-0.05,0.04,0,0.13-0.05,0.18l-0.07-0.02c-0.02,0.05,0.05,0.03,0.06,0.07l-0.01,0.02
c-0.04,0.03-0.1-0.01-0.11-0.04l-0.01,0.02c0,0.03,0.03,0.02,0.04,0.04c0,0.01,0,0.03-0.01,0.03c-0.02,0-0.03,0-0.04-0.01
c0.05,0.14,0.15-0.06,0.22,0.02l-0.14,0.09c-0.05-0.02-0.09,0.02-0.11,0.06c0.04-0.02,0.08,0.02,0.11-0.02
c0.05,0.06,0.09-0.05,0.15,0c-0.07,0.01-0.07,0.14-0.16,0.1l0.09,0.05c0,0.02-0.05,0.04-0.01,0.06c0.04-0.03,0.07-0.07,0.12-0.09
c0.03,0.06-0.09,0.08-0.06,0.15c0.01,0.01,0.02-0.01,0.03-0.01c0.01-0.04,0.06-0.04,0.09-0.04c0.01,0.06-0.08,0.12-0.05,0.15
l0.01-0.01c0.03-0.02,0.09-0.02,0.11,0c0,0.05-0.03,0.09-0.04,0.13l0.13-0.03c0.02,0.02-0.01,0.04,0,0.06
c0.08-0.03,0.12,0.09,0.18,0.12c-0.06,0.08-0.1-0.05-0.17,0c-0.02,0.04,0.02,0.03,0.03,0.05c-0.02,0.02-0.04,0.04-0.06,0.04
c0,0.02,0,0.04,0.01,0.05c0.05,0.04,0.03-0.03,0.07-0.04c0.06-0.05,0.16-0.07,0.22-0.06c-0.03,0.09-0.21,0.02-0.2,0.16
c0.02,0.05,0.1,0,0.12,0c-0.05,0.05,0.02,0.08-0.02,0.13c0.02,0,0.03,0,0.05,0c0,0,0.02-0.01,0.03,0c0.01,0.01,0,0.01,0.01,0.03
c0.01,0.02,0.03,0.01,0.03,0.01s0.04-0.06,0.05-0.02c0.01,0.04,0,0.05,0,0.05l0.02,0l0.01,0c0,0.01-0.01,0.01-0.01,0.02
c0,0,0.01,0.01,0.02,0.01c0.02,0.03,0.05-0.01,0.07-0.02c0.01,0.03,0.06,0.04,0.04,0.09c0.04,0.02,0.03-0.03,0.07-0.03l0.06,0.06
c-0.2,0.1-0.36-0.08-0.51-0.16c-0.05,0.04-0.13,0.02-0.21,0.05l0.01,0.02c0.07,0.03,0.14-0.01,0.21-0.02
c-0.02,0.08-0.17,0.05-0.22,0.13l-0.01-0.02c-0.14-0.1-0.21-0.27-0.29-0.4c-0.01,0.01-0.01,0.02-0.02,0.02
c0.02,0.04-0.01,0.11,0.04,0.12c-0.01,0.01-0.02,0.02-0.03,0.02c-0.03-0.07-0.11-0.11-0.16-0.12c-0.02,0.07,0.07,0.05,0.1,0.08
c-0.01,0.04-0.06-0.01-0.05,0.04c0,0,0.01,0.01,0.02,0.01c0.04-0.04,0.1,0.03,0.1,0.05c-0.07-0.01-0.14,0.01-0.19-0.04v0.02
c0.01,0.04,0.07,0.03,0.1,0.04l-0.05,0.03c0.05,0.04,0.14-0.04,0.18,0.01c-0.05,0.06-0.14,0.03-0.2,0.06
c0.01,0.07,0.05-0.01,0.1,0.01l-0.03,0.05l0.05,0.02c-0.02,0.04-0.08,0.04-0.1,0.04c0.04,0.07,0.11-0.01,0.15,0
c0,0.04-0.05,0.04-0.06,0.07c0.08,0.04,0.11-0.13,0.2-0.11c-0.03,0.06-0.1,0.14-0.16,0.17h0.1c0.01,0.04-0.05,0.06-0.03,0.1
c0.1-0.06,0.07-0.18,0.16-0.22c0.01,0.1-0.07,0.19-0.11,0.28l-0.05,0.01c0.01,0.03,0.05,0.04,0.08,0.03
c0.06-0.08,0.09-0.21,0.15-0.27c0.02,0.13-0.1,0.23-0.13,0.34c0.01,0.02,0.03,0.03,0.05,0.03c0.07-0.1,0.08-0.22,0.13-0.32h0.03
c0,0.05-0.01,0.1-0.03,0.15c0.01,0.06-0.05,0.18,0.01,0.21c0.01-0.07,0.02-0.13,0.03-0.19c0.01-0.05,0-0.15,0.08-0.15
c0,0.09-0.05,0.16-0.02,0.24c0.01-0.01,0.02-0.01,0.03-0.01c-0.04-0.09,0.09-0.12,0.03-0.2l0.19,0c0.05,0,0.03,0.08,0.09,0.09
c0.01-0.03-0.03-0.05,0.01-0.08c0.05-0.02,0.06,0.04,0.09,0.06c-0.1,0.02,0.04,0.08-0.05,0.11l-0.04-0.06
c-0.06,0.03,0.02,0.09-0.02,0.14l-0.07-0.11c-0.03,0.03-0.02,0.11-0.01,0.14l0.02-0.03l0.02,0.02c-0.01,0.09-0.09,0.15-0.1,0.23
c0,0.01,0.02,0.03,0.04,0.02c0.01-0.03-0.02-0.04-0.01-0.07c0.07-0.07,0.1-0.17,0.17-0.24c0.01,0.07-0.04,0.12-0.04,0.19
c-0.02,0.02-0.06,0.05-0.04,0.08h0.03c0.08-0.09,0.12-0.21,0.18-0.3c0.01,0.06-0.01,0.12-0.04,0.17c0,0.04-0.04,0.08,0,0.12
c0,0,0.02,0,0.02,0c0-0.02-0.01-0.02-0.01-0.04c0.1-0.07,0.06-0.19,0.1-0.28c0.06,0.07-0.02,0.17,0.02,0.25
c0.04,0,0.02-0.05,0.04-0.07c0.04-0.07-0.05-0.18,0.04-0.22c0,0.06,0.02,0.14,0.01,0.2c0.16,0-0.02-0.15,0.06-0.24
c0.03,0.04,0.05,0.11,0.04,0.16h0.02c0.03-0.05,0.05-0.12,0.01-0.18c0.01-0.02,0.03-0.05,0.05-0.03l0.01,0.1
c0.05,0.02,0.02-0.03,0.05-0.04c0.01,0,0.02-0.01,0.03-0.01l0.02,0.03c-0.05,0.04-0.11,0.09-0.11,0.15c0.06-0.03,0.07-0.12,0.15-0.1
c0,0.04-0.02,0.09-0.04,0.12l-0.04-0.02c-0.06,0.04-0.11,0.1-0.14,0.16c0.05,0,0.1-0.13,0.18-0.11l-0.05,0.17
c-0.01,0.06-0.1,0.1-0.04,0.15c0.01-0.01,0.02-0.02,0.01-0.04c0.04-0.01,0.05-0.1,0.11-0.08c0.01,0.05-0.07,0.09-0.03,0.11
c0.14-0.03,0.04-0.21,0.15-0.24c0,0.04-0.01,0.06-0.02,0.1c0.01,0.01,0.01,0.04,0.03,0.02c0.02-0.06,0.07-0.12,0.03-0.18
c0.05-0.05,0.03,0.08,0.09,0.06c0-0.02,0.11-0.06,0.11-0.08l0.03,0.02c-0.02,0.05,0.04,0.17,0.02,0.21c0.07-0.04,0.1-0.15,0.16-0.19
c-0.01,0.22-0.02,0.48-0.17,0.62l-0.01-0.1l-0.11,0.25v-0.16c-0.05,0.03-0.05,0.11-0.1,0.12c0-0.09,0.03-0.16,0.05-0.23
c-0.1,0.08-0.16,0.2-0.22,0.29c0.17,0.02,0.39,0.06,0.51-0.09c0.11-0.24,0.1-0.54,0.14-0.81l0.05-0.07l0.01,0.02l-0.04,0.65
l0.03,0.03c0.1-0.23,0.04-0.53,0.1-0.77l0.06-0.07c0.02,0.09-0.01,0.17,0.03,0.23l0.02-0.39l0.08,0.02c0,0.05-0.06,0.09-0.04,0.14
c0.12,0-0.02,0.1,0.02,0.17h0.02c0,0.28,0.02,0.58,0.15,0.82l0.01,0c-0.04-0.23-0.06-0.47-0.09-0.71l0.02-0.05
c0.03,0.07,0,0.17,0.06,0.21v-0.01c-0.02-0.02-0.01-0.09,0.02-0.08c0.01,0.06,0.04,0.12,0.07,0.17c0.01-0.03-0.03-0.05,0.01-0.06
l0.12,0.1c-0.01-0.06-0.09-0.1-0.05-0.16l0.05,0.04c0-0.06-0.08-0.1-0.05-0.15l0.02,0.02c0.07-0.04-0.08-0.09-0.05-0.16l0.05,0.01
c0.01-0.05-0.09-0.08-0.03-0.13c-0.01-0.01-0.01-0.02-0.02-0.01c0-0.06-0.08-0.13-0.03-0.17l-0.06-0.12
c0.05-0.05,0.04,0.05,0.08,0.05c0.01-0.01,0.01-0.02,0.02-0.03l0.02,0.01c0.04,0.05,0,0.11-0.02,0.15c0.04,0.02,0.02,0.09,0.07,0.1
c0.02-0.04,0-0.13,0.05-0.12c0.04,0.08-0.01,0.15-0.02,0.23c0.05-0.01,0.03,0.05,0.06,0.05c0.04-0.07-0.02-0.15,0.06-0.2
c0.02,0.08,0,0.16,0,0.25c0.02,0.03,0.01,0.08,0.05,0.08c-0.02-0.07,0-0.17,0.04-0.22c0.01,0.05,0.02,0.09,0.01,0.14
c0.01,0.05-0.03,0.16,0.04,0.19c0.06-0.07-0.04-0.16,0.04-0.21c0.03,0.08,0.01,0.21,0.05,0.29c0.02-0.03,0-0.09,0.03-0.11
c0.03,0.01,0.03,0.04,0.03,0.07c0.01,0.03,0.02,0.07,0.05,0.08c0.02-0.03,0-0.07-0.03-0.09c-0.01-0.05,0.02-0.07,0.03-0.11
c0.04,0.02-0.01,0.1,0.04,0.11v-0.1c-0.02-0.05-0.09-0.1-0.07-0.14c0.01-0.03-0.01-0.07-0.04-0.09c0.01-0.07-0.08-0.1-0.07-0.15
c0.24,0.03,0.39,0.3,0.65,0.28c-0.03-0.06-0.12-0.06-0.16-0.13c0.2,0,0.42,0.02,0.62,0.08v-0.03c-0.13-0.03-0.24-0.12-0.35-0.18
c-0.1,0.03-0.16-0.08-0.23-0.1c0.02-0.01,0.05-0.01,0.06-0.04c0.1,0.07,0.27,0.05,0.37,0.15c0.01-0.01,0-0.03,0.01-0.04
c0.02,0,0.04,0,0.05,0.01v-0.02c-0.1-0.03-0.26-0.03-0.27-0.15c0.02,0.01,0.05,0,0.07,0.01c0.09,0.05,0.2,0.04,0.28,0.11
c0.01-0.06,0.06-0.02,0.1-0.02v-0.01c-0.03-0.02-0.05-0.05-0.1-0.03c-0.06-0.03-0.14-0.04-0.18-0.1c0.1-0.06,0.19,0.03,0.3,0.01
c-0.03-0.04-0.07-0.06-0.12-0.08c0.01-0.01,0.03-0.03,0.04-0.03c0.05,0.02,0.13,0.01,0.15,0.08c0.01-0.02,0.01-0.07,0.03-0.08
c0-0.03-0.07-0.01-0.06-0.06c0.05-0.07,0.1,0.02,0.15,0.02c-0.02-0.01-0.04-0.09,0-0.09c-0.02-0.04-0.04,0-0.07-0.02v-0.02
c0.04-0.03,0.12-0.03,0.15,0c0.01-0.05-0.05-0.02-0.05-0.06c0.01-0.01,0.02-0.03,0.05-0.03v-0.01h-0.06v-0.03
c-0.05,0-0.03,0.06-0.08,0.08c-0.16,0.08-0.29,0.19-0.48,0.2c-0.04-0.06-0.1-0.1-0.12-0.17c0.07,0.01,0.15,0.08,0.22,0.13
c-0.02-0.07-0.09-0.12-0.13-0.19c0.06-0.02,0.13,0.03,0.18,0.08c0.04-0.03,0.07,0.07,0.11,0.02c-0.05-0.05-0.09-0.11-0.16-0.15
l0.01-0.02c0.1,0.01,0.17,0.1,0.25,0.1c-0.06-0.03-0.02-0.07,0-0.09c-0.05-0.03-0.13-0.01-0.17-0.07l0.03-0.02
c0.11-0.01,0.15,0.1,0.25,0.06c-0.02,0-0.06-0.01-0.06-0.05l0.05-0.03l-0.02-0.02c-0.03,0-0.05,0.01-0.07,0.02
c-0.04,0-0.06-0.04-0.07-0.05c0.06-0.01,0.17-0.03,0.2,0.03l0.01-0.02c-0.01-0.06-0.07-0.11-0.12-0.11
c0.01-0.04,0.08-0.03,0.11-0.05c0.04-0.01,0.1,0.07,0.1,0c-0.04-0.03-0.09-0.05-0.14-0.04v-0.02c0.03-0.05,0.09-0.08,0.15-0.05
c-0.06-0.09,0.09-0.06,0.06-0.15c-0.04,0.06-0.11,0.1-0.18,0.09c0-0.06,0.09-0.06,0.09-0.09c-0.13-0.08-0.09,0.19-0.19,0.14
c0.04,0.06-0.02,0.13-0.07,0.15c0.02-0.07-0.06-0.07-0.08-0.11c-0.01,0.02-0.08,0.05-0.06,0.09l0.01-0.01c0.05,0,0.06,0.06,0.08,0.1
c-0.05,0.09-0.05-0.07-0.1,0c-0.02-0.01-0.03-0.03-0.03-0.06c-0.2,0.1-0.16,0.06-0.15-0.06c-0.01-0.03-0.02-0.08-0.05-0.09
c-0.08,0.04,0.03,0.11-0.02,0.17c-0.08-0.01-0.02-0.1-0.08-0.13c0.01-0.01,0.04-0.01,0.03-0.04H25.8c0-0.05-0.12-0.03-0.05-0.1
c0.07,0.02,0.13,0.07,0.21,0.05c0-0.06-0.1-0.04-0.13-0.09c0.02-0.02,0.04-0.04,0.07-0.02c0.06,0.05,0.15,0.04,0.24,0.04
c-0.02-0.05-0.11-0.01-0.12-0.09l0.02-0.02c0.04,0.06,0.13,0.04,0.2,0.05v-0.01c-0.01-0.02-0.03-0.02-0.05-0.02
c-0.02-0.02-0.05-0.05-0.03-0.07c0.04,0.02,0.1-0.03,0.14,0.01v-0.03c-0.04-0.02-0.13,0.02-0.13-0.05c0.04-0.02,0.1-0.04,0.14-0.01
c0.02,0,0.05-0.01,0.03-0.04l-0.08,0l0.02-0.05c-0.05-0.01-0.05,0.04-0.07,0.07c-0.1-0.03-0.1,0.09-0.16,0.11
c-0.05,0.02-0.13,0.03-0.18,0c-0.01-0.03,0.03-0.01,0.04-0.03l-0.04-0.08l0.03-0.01c0.04,0.04,0.11,0.04,0.17,0.03
c0-0.02-0.01-0.04-0.02-0.06c0.03-0.05,0.07,0,0.11-0.02v-0.02c-0.15-0.03-0.29,0.04-0.42-0.05c0-0.01-0.01-0.03,0.01-0.03
c0-0.05,0-0.1-0.04-0.13c0.02-0.03,0-0.08,0.04-0.09c0.04,0.06,0.1,0.13,0.12,0.2c0.01,0,0.04,0,0.05-0.01c0.04-0.02,0-0.06,0-0.09
c-0.08,0,0.01-0.06-0.05-0.07c0-0.03-0.04-0.05-0.01-0.08c0.06,0.02,0.12,0.05,0.15,0.1c0.04,0.06,0.1,0,0.14,0.03v-0.01
c-0.07-0.02-0.1-0.1-0.13-0.13c-0.02,0.01-0.02-0.01-0.02-0.02c0.09-0.04,0.17,0.05,0.24,0.07v-0.02h-0.01
c-0.01-0.07-0.1-0.07-0.1-0.16c0.07-0.02,0.14,0.08,0.21,0.04l-0.02-0.03c-0.05-0.01-0.08-0.07-0.13-0.1
c0.05-0.02,0.1,0.04,0.17,0.02c0.01-0.05-0.06-0.04-0.09-0.08c0.05-0.01,0.08-0.07,0.14-0.04c-0.01-0.06-0.09,0-0.1-0.05
c0.04-0.02,0.06-0.07,0.11-0.05c0-0.03-0.06-0.04-0.05-0.08c0.04-0.01,0.07-0.04,0.12-0.03c0-0.03-0.07-0.03-0.1-0.03
c-0.01-0.05,0.06-0.05,0.06-0.06c-0.03-0.02-0.07,0.01-0.09,0c-0.02-0.04,0.03-0.04,0.02-0.07c-0.03-0.01-0.02,0.03-0.05,0.04
c-0.01,0.13-0.1,0.25-0.2,0.35c-0.15,0.12-0.33,0.2-0.52,0.2l0-0.07c0,0-0.01,0-0.01-0.01l0.07-0.05c0.01,0,0.02,0,0.03-0.01
c0-0.05-0.06-0.03-0.07-0.07l0.02-0.04l-0.05-0.02c0.01-0.03-0.03-0.05,0.01-0.07c0.09,0.04,0.08,0.15,0.15,0.21
c0.03,0,0.06,0.05,0.09,0.01c-0.08-0.02-0.09-0.14-0.11-0.2c0.07,0.07,0.1,0.18,0.19,0.18l-0.04-0.05c0.04-0.02,0.07,0.01,0.11,0.02
c0-0.09-0.12-0.07-0.13-0.15c0.01-0.01,0.03-0.01,0.05-0.01c0.05,0.03,0.11,0.08,0.15,0.12l0.02-0.03c0.06-0.05-0.06-0.07-0.07-0.11
c0.05-0.03,0.09,0.05,0.14,0.04c-0.09-0.09,0.09-0.07,0.06-0.14c-0.07,0-0.14-0.02-0.19-0.05c0.06,0.01,0.13-0.02,0.19,0.02
c-0.03-0.02,0.01-0.07,0.04-0.06c-0.05-0.04-0.14,0-0.17-0.05c0.08-0.06,0.19,0.05,0.23-0.06c-0.04,0-0.09,0-0.09-0.03
c0.04-0.04,0.1-0.01,0.14-0.04l-0.09-0.04c0.03,0,0.05-0.06,0.09-0.03c0-0.03-0.04-0.06-0.08-0.05c-0.04-0.03,0.06-0.05,0-0.09
c-0.04,0.07-0.09,0.14-0.15,0.18l0.01,0.01c-0.21,0.14-0.45,0.24-0.7,0.29l-0.01-0.02c0.07-0.03,0.17-0.03,0.21-0.12
c0.04,0,0.11-0.04,0.15,0v-0.01c-0.01-0.08,0.07-0.04,0.1-0.05l-0.01-0.04c0.02-0.08,0.08,0,0.11,0c0-0.03-0.02-0.06,0-0.1
l0.08,0.05c0.01-0.05-0.02-0.07-0.04-0.1l0.02-0.01c0.05-0.01,0.08,0.03,0.11,0.03c0-0.03-0.02-0.07-0.05-0.08
c0.03-0.04,0.09,0,0.11,0c-0.01-0.03,0.01-0.04,0.02-0.06l-0.06-0.01c0.02-0.03,0.05-0.07,0.09-0.08c0-0.1-0.05,0.03-0.09-0.01
c0.05-0.03,0.03-0.09,0.09-0.1c-0.11-0.04-0.11,0.1-0.16,0.14c-0.28,0.24-0.57,0.45-0.92,0.48"/>
<path class="st8" d="M22.13,163.39c0,0.02,0,0.03-0.02,0.04l-0.04-0.01l0.03-0.05C22.11,163.37,22.12,163.38,22.13,163.39
L22.13,163.39z"/>
<path class="st8" d="M22.3,163.46c-0.03-0.01-0.09-0.03-0.12,0.01l-0.03-0.01C22.16,163.39,22.27,163.41,22.3,163.46L22.3,163.46z"
/>
<path class="st8" d="M22.39,163.54c-0.08,0.01-0.16-0.01-0.21,0.04l-0.02-0.02c0-0.05,0.07-0.04,0.08-0.08
C22.27,163.54,22.36,163.47,22.39,163.54L22.39,163.54z"/>
<path class="st8" d="M22.46,164.12c-0.03-0.01-0.07-0.06-0.04-0.11l0.01-0.02C22.48,164,22.45,164.07,22.46,164.12L22.46,164.12z"/>
<path class="st8" d="M22.54,164.05v0.04c-0.01,0.01-0.05-0.01-0.04-0.04v-0.06C22.54,163.98,22.55,164.03,22.54,164.05L22.54,164.05
z"/>
<path class="st8" d="M22.47,164.16c-0.06,0.13,0.1,0.2-0.03,0.29v0.07c-0.03,0.01-0.02-0.02-0.03-0.03
c-0.01-0.08,0.05-0.13,0.04-0.19c-0.06,0.04-0.08,0.13-0.1,0.2c-0.04,0-0.02-0.07-0.01-0.1C22.43,164.34,22.33,164.16,22.47,164.16
L22.47,164.16z"/>
<path class="st8" d="M22.35,164.19c0,0.1-0.05,0.19-0.1,0.27l-0.01,0c0-0.09,0.02-0.16,0.04-0.24
C22.31,164.2,22.32,164.18,22.35,164.19L22.35,164.19z"/>
<path class="st8" d="M23.23,164.41c0,0.06-0.08,0.07-0.09,0.11c-0.03-0.01,0-0.05,0.01-0.07C23.17,164.42,23.2,164.39,23.23,164.41
L23.23,164.41z"/>
<path class="st8" d="M24.66,165.16c0.06-0.06,0.11-0.17,0.1-0.26c0.05,0.07,0.05,0.19,0.03,0.27c0.1-0.01,0.15-0.11,0.2-0.19
c0,0.03-0.02,0.14-0.07,0.2c0.11,0.06,0.2-0.07,0.29-0.12l-0.05,0.14l0.08,0.02l-0.07,0.03c-0.32-0.03-0.68-0.01-0.98-0.05
l-0.05-0.1c0.03-0.01,0.07,0.05,0.11,0.06c0.01-0.08-0.05-0.15-0.08-0.21c0.07,0.02,0.1,0.09,0.14,0.14c0.05-0.07,0-0.14-0.02-0.2
c0.09,0.07,0.14,0.17,0.17,0.27c0.06-0.04,0.07-0.13,0.09-0.2l-0.04-0.2C24.62,164.85,24.65,165.01,24.66,165.16L24.66,165.16z"/>
<path class="st8" d="M23.26,165.07c-0.03,0.01-0.08,0-0.11,0.01l0.08-0.13C23.24,164.98,23.26,165.02,23.26,165.07L23.26,165.07z"/>
<path class="st8" d="M24.21,156.95c0.03-0.01,0.06-0.07,0.1-0.04c-0.01,0.07-0.1,0.09-0.12,0.15c-0.04-0.06-0.11-0.08-0.17-0.13
c0.04-0.05,0.09,0.01,0.13,0.01l0.01-0.16C24.21,156.81,24.17,156.91,24.21,156.95L24.21,156.95z"/>
<path class="st8" d="M24.49,156.96c0,0.06-0.16,0.04-0.07,0.12c0.03-0.02,0.05,0.02,0.08,0.03v0.01c-0.1-0.03-0.21,0.01-0.31,0.06
c0,0.02,0.01,0.05,0,0.07c-0.04,0-0.04-0.05-0.05-0.09c0-0.02,0-0.04,0.01-0.05c0.13,0.03,0.19-0.12,0.31-0.16
C24.46,156.95,24.48,156.95,24.49,156.96L24.49,156.96z"/>
<path class="st8" d="M24.05,157.1c-0.06,0-0.11,0-0.14-0.06l0.01-0.02C23.97,157.04,24.07,157.02,24.05,157.1L24.05,157.1z"/>
<path class="st8" d="M24.4,157.18c-0.05,0.09-0.17,0.1-0.2,0.2l0.01-0.15C24.28,157.23,24.34,157.17,24.4,157.18L24.4,157.18z"/>
<path class="st8" d="M24.79,157.7c0.01,0.1-0.09,0.04-0.09,0H24.79L24.79,157.7z"/>
<path class="st8" d="M24.72,157.84c-0.03,0.03-0.05-0.01-0.08-0.02l0.02-0.03C24.68,157.79,24.71,157.82,24.72,157.84L24.72,157.84z
"/>
<path class="st8" d="M24.67,157.91c-0.01,0.01-0.04,0.02-0.07,0.01c0.01-0.02-0.01-0.02-0.01-0.04h-0.02l0.03-0.03
C24.63,157.85,24.63,157.9,24.67,157.91L24.67,157.91z"/>
<path class="st8" d="M24.61,157.98c-0.02,0.01-0.03,0.06-0.06,0.04c0-0.03-0.07-0.08-0.02-0.11L24.61,157.98L24.61,157.98z"/>
<path class="st8" d="M25.33,158.9c-0.01,0-0.03,0.03-0.04,0.01C25.29,158.9,25.31,158.88,25.33,158.9L25.33,158.9z"/>
<path class="st8" d="M21.97,163.68c-0.04,0.02-0.06,0.09-0.12,0.08C21.85,163.72,21.92,163.69,21.97,163.68L21.97,163.68z"/>
<path class="st8" d="M22.37,163.74c-0.02,0.01-0.04,0.07-0.09,0.04v-0.03C22.31,163.75,22.35,163.75,22.37,163.74L22.37,163.74z"/>
<path class="st8" d="M25.27,160.49c0.19,0.13,0.16,0.12,0.21,0.17c0.06,0.05,0.16,0.16,0.16,0.26c0,0.09-0.01,0.11,0.02,0.17
c0.03,0.05,0.07,0.08,0.07,0.09c0.01,0.02,0.03,0.07,0.03,0.07s-0.12,0.08-0.18,0.09c-0.06,0.02-0.1,0.03-0.14,0.08
c-0.04,0.05,0.17,0.21-0.02,0.18c-0.19-0.03,0.01,0.35-0.31-0.14c-0.32-0.49-0.31-0.68-0.31-0.68l0.33-0.29L25.27,160.49
L25.27,160.49z"/>
<g>
<g>
<path class="st11" d="M42.02,158.22c0-1.15-0.12-1.66-0.67-1.79v-0.11h3.28c4.77,0,4.77,3.99,4.77,4.61
c0,4.34-3.64,4.47-5.67,4.47h-2.38v-0.11c0.55-0.13,0.67-0.64,0.67-1.79V158.22z M43.38,162.93c0,1.16,0,1.4,1.39,1.4
c1.68,0,3.23-1,3.23-3.4c0-2.63-1.8-3.54-3.43-3.54c-0.4,0-0.79,0.05-1.19,0.11V162.93z"/>
<path class="st11" d="M53.29,165.3c0.55-0.13,0.67-0.64,0.67-1.79v-5.29c0-1.15-0.12-1.66-0.67-1.79v-0.11h5.55v1.68h-0.11
c-0.29-0.51-0.4-0.64-1.86-0.64h-1.56v2.71h1.56c1.32,0,1.41-0.32,1.62-0.72h0.11v2.44H58.5c-0.33-0.57-0.41-0.68-1.62-0.68h-1.56
v2c0,1.08,0.13,1.24,1.02,1.24h0.81c1.37,0,1.44-0.25,1.78-0.73h0.11l-0.2,1.78h-5.54V165.3z M56.28,153.45h1.44l-1.62,1.75h-0.72
L56.28,153.45z"/>
<path class="st11" d="M63.47,158.22c0-1.15-0.12-1.66-0.67-1.79v-0.11h3.18c1.18,0,3.27,0.2,3.27,2.55c0,1.47-0.93,2.75-3.23,2.75
c-0.29,0-0.29,0-0.29-0.05l-0.33-1.03c0.2,0,0.39,0.01,0.57,0.01c1.08,0,1.88-0.6,1.88-1.6c0-1.08-0.84-1.56-2.03-1.56
c-0.33,0-0.67,0.04-0.99,0.11v6.01c0,1.15,0.12,1.66,0.67,1.79v0.11h-2.7v-0.11c0.55-0.13,0.67-0.64,0.67-1.79V158.22z"/>
<path class="st11" d="M71.94,165.3c0.37-0.01,0.55-0.39,1.01-1.42l3.52-7.8h0.17l3.57,7.73c0.39,0.87,0.55,1.2,1.08,1.48v0.11
h-2.63v-0.11c0.09-0.01,0.37-0.17,0.37-0.47c0-0.21-0.07-0.45-0.13-0.67l-0.51-1.2h-3.7l-0.49,1.18c-0.09,0.24-0.2,0.53-0.2,0.76
c0,0.31,0.16,0.33,0.35,0.4v0.11h-2.42V165.3z M75.15,161.92h2.82l-1.4-3.32L75.15,161.92z"/>
<path class="st11" d="M85.44,158.22c0-1.15-0.12-1.66-0.67-1.79v-0.11h3.04c2.68,0,3.52,0.8,3.52,2.54c0,1.73-1.28,2.3-2.03,2.47
l2.11,2.99c0.44,0.64,0.41,0.65,0.96,0.96v0.12l-0.73,0.07c-1.12,0-1.17-0.09-1.66-0.81l-2.68-4.01l0.15-0.08
c0.13,0.01,0.27,0.04,0.4,0.04c1.47,0,2.08-0.77,2.08-1.62c0-1.57-1.63-1.6-2.52-1.6c-0.2,0-0.41,0.04-0.61,0.07v6.05
c0,1.15,0.12,1.66,0.67,1.79v0.11h-2.7v-0.11c0.55-0.13,0.67-0.64,0.67-1.79V158.22z"/>
<path class="st11" d="M97.75,157.37h-0.63c-1.24,0-1.4,0.17-1.68,0.64h-0.11l0.16-1.68h5.87l0.16,1.68h-0.11
c-0.28-0.47-0.44-0.64-1.68-0.64h-0.63v6.14c0,1.15,0.12,1.66,0.67,1.79v0.11h-2.7v-0.11c0.55-0.13,0.67-0.64,0.67-1.79V157.37z"
/>
<path class="st11" d="M105.19,165.3c0.55-0.13,0.67-0.64,0.67-1.79v-5.29c0-1.15-0.12-1.66-0.67-1.79v-0.11h5.55v1.68h-0.11
c-0.29-0.51-0.4-0.64-1.86-0.64h-1.56v2.71h1.56c1.32,0,1.42-0.32,1.62-0.72h0.11v2.44h-0.11c-0.33-0.57-0.41-0.68-1.62-0.68
h-1.56v2c0,1.08,0.13,1.24,1.01,1.24h0.81c1.37,0,1.44-0.25,1.78-0.73h0.11l-0.2,1.78h-5.54V165.3z"/>
<path class="st11" d="M117,155.87h0.12l3.27,7.22l3.27-7.22h0.12l1.76,7.68c0.27,1.16,0.33,1.51,0.89,1.75v0.11h-2.47v-0.11
c0.33-0.07,0.44-0.28,0.44-0.47c0-0.4-0.13-0.8-0.21-1.2l-0.85-4.29h-0.03l-2.84,6.3h-0.16l-2.84-6.3h-0.03l-0.85,4.29
c-0.08,0.4-0.21,0.8-0.21,1.2c0,0.19,0.11,0.4,0.44,0.47v0.11h-2.47v-0.11c0.56-0.24,0.63-0.59,0.89-1.75L117,155.87z"/>
<path class="st11" d="M129.85,165.3c0.55-0.13,0.67-0.64,0.67-1.79v-5.29c0-1.15-0.12-1.66-0.67-1.79v-0.11h5.55v1.68h-0.11
c-0.29-0.51-0.4-0.64-1.86-0.64h-1.56v2.71h1.56c1.32,0,1.42-0.32,1.62-0.72h0.11v2.44h-0.11c-0.33-0.57-0.41-0.68-1.62-0.68
h-1.56v2c0,1.08,0.13,1.24,1.01,1.24h0.82c1.37,0,1.44-0.25,1.78-0.73h0.11l-0.2,1.78h-5.54V165.3z"/>
<path class="st11" d="M139.76,155.82h0.12l6.34,6.92v-4.51c0-1.15-0.12-1.66-0.67-1.79v-0.11h2.7v0.11
c-0.55,0.13-0.67,0.64-0.67,1.79v7.61h-0.12l-6.34-6.88v4.55c0,1.15,0.12,1.66,0.67,1.79v0.11h-2.7v-0.11
c0.55-0.13,0.67-0.64,0.67-1.79V155.82z"/>
<path class="st11" d="M154.11,157.37h-0.63c-1.24,0-1.4,0.17-1.68,0.64h-0.11l0.16-1.68h5.87l0.16,1.68h-0.11
c-0.28-0.47-0.44-0.64-1.68-0.64h-0.63v6.14c0,1.15,0.12,1.66,0.67,1.79v0.11h-2.7v-0.11c0.55-0.13,0.67-0.64,0.67-1.79V157.37z"
/>
</g>
<g>
<path class="st11" d="M42.34,171.16c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.79c4.05,0,4.05,3.39,4.05,3.91c0,3.69-3.1,3.8-4.82,3.8
h-2.02v-0.09c0.46-0.11,0.57-0.54,0.57-1.52V171.16z M43.5,175.17c0,0.99,0,1.19,1.18,1.19c1.43,0,2.75-0.85,2.75-2.89
c0-2.24-1.53-3.01-2.92-3.01c-0.34,0-0.67,0.05-1.01,0.09V175.17z"/>
<path class="st11" d="M49.63,177.17c0.47-0.11,0.57-0.54,0.57-1.52v-4.49c0-0.98-0.1-1.41-0.57-1.52v-0.09h4.72v1.43h-0.09
c-0.25-0.43-0.34-0.54-1.58-0.54h-1.33v2.3h1.33c1.12,0,1.2-0.27,1.37-0.61h0.09v2.08h-0.09c-0.28-0.49-0.35-0.58-1.37-0.58h-1.33
v1.7c0,0.92,0.11,1.05,0.86,1.05h0.69c1.17,0,1.23-0.22,1.51-0.62h0.09l-0.17,1.51h-4.71V177.17z"/>
<path class="st11" d="M59.48,170.96c-0.22-0.22-0.6-0.7-1.5-0.7c-0.91,0-1.33,0.56-1.33,1.03c0.01,1.67,3.22,1.2,3.22,3.89
c0,1.3-0.94,2.29-2.71,2.29c-0.57,0-1.1-0.14-1.66-0.32l-0.11-1.4h0.09c0.22,0.26,0.77,0.81,1.71,0.81c0.92,0,1.49-0.66,1.49-1.38
c0-1.67-3.22-1.46-3.22-3.74c0-1.44,1.27-2.09,2.35-2.09c0.6,0,1.33,0.24,1.44,0.24c0.09,0,0.2-0.02,0.23-0.08h0.09v1.45H59.48z"
/>
<path class="st11" d="M63.93,177.17c0.32-0.01,0.46-0.33,0.86-1.2l2.99-6.63h0.15l3.03,6.57c0.33,0.74,0.46,1.02,0.92,1.26v0.09
h-2.23v-0.09c0.08-0.01,0.32-0.15,0.32-0.4c0-0.18-0.06-0.39-0.11-0.57l-0.43-1.02h-3.14l-0.42,1c-0.08,0.2-0.17,0.45-0.17,0.65
c0,0.26,0.14,0.28,0.3,0.34v0.09h-2.05V177.17z M66.67,174.3h2.39l-1.19-2.82L66.67,174.3z"/>
<path class="st11" d="M73.15,171.16c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.29v0.09c-0.47,0.11-0.57,0.55-0.57,1.52v4.3
c0,0.73,0.07,0.92,0.6,0.92h0.82c0.76,0,0.99-0.11,1.25-0.6h0.09l-0.17,1.49h-4.32v-0.09c0.48-0.11,0.58-0.53,0.58-1.52V171.16z"
/>
<path class="st11" d="M78.24,171.16c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.7c1,0,2.78,0.17,2.78,2.17c0,1.25-0.79,2.34-2.75,2.34
c-0.25,0-0.25,0-0.25-0.05l-0.28-0.87c0.17,0,0.33,0.01,0.49,0.01c0.92,0,1.6-0.51,1.6-1.36c0-0.92-0.71-1.33-1.72-1.33
c-0.28,0-0.57,0.03-0.84,0.09v5.11c0,0.98,0.1,1.41,0.57,1.52v0.09h-2.29v-0.09c0.46-0.11,0.57-0.54,0.57-1.52V171.16z"/>
<path class="st11" d="M84.06,177.17c0.46-0.11,0.57-0.54,0.57-1.52v-4.49c0-0.98-0.1-1.41-0.57-1.52v-0.09h4.72v1.43h-0.09
c-0.25-0.43-0.34-0.54-1.58-0.54h-1.33v2.3h1.33c1.12,0,1.2-0.27,1.37-0.61h0.09v2.08h-0.09c-0.28-0.49-0.35-0.58-1.37-0.58h-1.33
v1.7c0,0.92,0.11,1.05,0.86,1.05h0.69c1.17,0,1.22-0.22,1.51-0.62h0.09l-0.17,1.51h-4.71V177.17z"/>
<path class="st11" d="M93.91,170.96c-0.22-0.22-0.6-0.7-1.5-0.7c-0.91,0-1.33,0.56-1.33,1.03c0.01,1.67,3.22,1.2,3.22,3.89
c0,1.3-0.94,2.29-2.71,2.29c-0.57,0-1.1-0.14-1.66-0.32l-0.11-1.4h0.09c0.22,0.26,0.77,0.81,1.71,0.81c0.92,0,1.49-0.66,1.49-1.38
c0-1.67-3.22-1.46-3.22-3.74c0-1.44,1.27-2.09,2.35-2.09c0.6,0,1.33,0.24,1.44,0.24c0.09,0,0.2-0.02,0.23-0.08H94v1.45H93.91z"/>
<path class="st11" d="M95.2,174.01h2.53v0.85H95.2V174.01z"/>
<path class="st11" d="M100.63,169.16h0.1l2.78,6.14l2.78-6.14h0.1l1.5,6.52c0.23,0.99,0.28,1.28,0.76,1.49v0.09h-2.1v-0.09
c0.28-0.06,0.37-0.24,0.37-0.4c0-0.34-0.11-0.68-0.18-1.02l-0.73-3.64h-0.02l-2.42,5.35h-0.14l-2.42-5.35H101l-0.73,3.64
c-0.07,0.34-0.18,0.68-0.18,1.02c0,0.16,0.09,0.34,0.37,0.4v0.09h-2.1v-0.09c0.48-0.2,0.53-0.5,0.76-1.49L100.63,169.16z"/>
<path class="st11" d="M108.98,177.17c0.32-0.01,0.47-0.33,0.86-1.2l2.99-6.63h0.15l3.03,6.57c0.33,0.74,0.46,1.02,0.92,1.26v0.09
h-2.24v-0.09c0.08-0.01,0.32-0.15,0.32-0.4c0-0.18-0.06-0.39-0.11-0.57l-0.43-1.02h-3.14l-0.42,1c-0.08,0.2-0.17,0.45-0.17,0.65
c0,0.26,0.14,0.28,0.29,0.34v0.09h-2.05V177.17z M111.71,174.3h2.39l-1.19-2.82L111.71,174.3z"/>
<path class="st11" d="M118.17,171.16c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.59c2.28,0,3,0.68,3,2.16s-1.09,1.95-1.72,2.1l1.79,2.54
c0.37,0.54,0.35,0.56,0.82,0.82v0.1l-0.62,0.06c-0.95,0-1-0.08-1.41-0.69l-2.28-3.4l0.13-0.07c0.11,0.01,0.23,0.03,0.34,0.03
c1.25,0,1.77-0.66,1.77-1.37c0-1.34-1.38-1.36-2.14-1.36c-0.17,0-0.35,0.03-0.52,0.06v5.14c0,0.98,0.1,1.41,0.57,1.52v0.09h-2.29
v-0.09c0.46-0.11,0.57-0.54,0.57-1.52V171.16z"/>
<path class="st11" d="M124.62,177.17c0.47-0.11,0.57-0.54,0.57-1.52v-4.49c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.29v0.09
c-0.46,0.11-0.57,0.55-0.57,1.52v4.49c0,0.98,0.1,1.41,0.57,1.52v0.09h-2.29V177.17z"/>
<path class="st11" d="M129.81,170.44h-0.53c-1.05,0-1.19,0.15-1.43,0.54h-0.09l0.14-1.43h4.99l0.14,1.43h-0.09
c-0.24-0.4-0.37-0.54-1.43-0.54h-0.53v5.22c0,0.98,0.1,1.41,0.57,1.52v0.09h-2.29v-0.09c0.46-0.11,0.57-0.54,0.57-1.52V170.44z"/>
<path class="st11" d="M133.87,177.17c0.46-0.11,0.57-0.54,0.57-1.52v-4.49c0-0.98-0.1-1.41-0.57-1.52v-0.09h2.29v0.09
c-0.46,0.11-0.57,0.55-0.57,1.52v4.49c0,0.98,0.1,1.41,0.57,1.52v0.09h-2.29V177.17z"/>
<path class="st11" d="M139.06,169.16h0.1l2.78,6.14l2.78-6.14h0.1l1.5,6.52c0.23,0.99,0.28,1.28,0.76,1.49v0.09h-2.1v-0.09
c0.28-0.06,0.37-0.24,0.37-0.4c0-0.34-0.11-0.68-0.18-1.02l-0.73-3.64h-0.02l-2.42,5.35h-0.14l-2.42-5.35h-0.02l-0.73,3.64
c-0.07,0.34-0.18,0.68-0.18,1.02c0,0.16,0.09,0.34,0.37,0.4v0.09h-2.1v-0.09c0.48-0.2,0.53-0.5,0.76-1.49L139.06,169.16z"/>
<path class="st11" d="M147.7,177.17c0.46-0.11,0.57-0.54,0.57-1.52v-4.49c0-0.98-0.1-1.41-0.57-1.52v-0.09h4.72v1.43h-0.09
c-0.25-0.43-0.34-0.54-1.58-0.54h-1.33v2.3h1.33c1.12,0,1.2-0.27,1.37-0.61h0.09v2.08h-0.09c-0.28-0.49-0.35-0.58-1.37-0.58h-1.33
v1.7c0,0.92,0.11,1.05,0.86,1.05h0.69c1.17,0,1.22-0.22,1.51-0.62h0.09l-0.17,1.51h-4.71V177.17z"/>
<path class="st11" d="M157.55,170.96c-0.22-0.22-0.6-0.7-1.5-0.7c-0.91,0-1.33,0.56-1.33,1.03c0.01,1.67,3.22,1.2,3.22,3.89
c0,1.3-0.94,2.29-2.71,2.29c-0.57,0-1.1-0.14-1.66-0.32l-0.11-1.4h0.09c0.22,0.26,0.77,0.81,1.71,0.81c0.92,0,1.49-0.66,1.49-1.38
c0-1.67-3.22-1.46-3.22-3.74c0-1.44,1.27-2.09,2.35-2.09c0.6,0,1.33,0.24,1.44,0.24c0.09,0,0.2-0.02,0.23-0.08h0.09v1.45H157.55z"
/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,881 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 472.9 191.6" style="enable-background:new 0 0 472.9 191.6;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#164193;}
.st1{fill:#FFEC00;}
.st2{fill:#164193;}
.st3{clip-path:url(#SVGID_00000134251465307845823950000010810914918002039978_);fill:#F7AB18;}
.st4{clip-path:url(#SVGID_00000099643007998752518140000017120791554566903183_);fill:#FFFFFF;}
.st5{clip-path:url(#SVGID_00000057133488054449198830000003993170581727980210_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;}
.st6{clip-path:url(#SVGID_00000040538482796330982010000015125076981552721825_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;}
.st7{clip-path:url(#SVGID_00000144299500426903105710000012305933394981116043_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;}
.st8{clip-path:url(#SVGID_00000083775539870769645800000004754808198673561533_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;}
.st9{fill:none;stroke:#271F1D;stroke-width:0.509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st10{fill:#271F1D;stroke:#FFFFFF;stroke-width:3.400000e-02;}
.st11{fill:#271F1D;stroke:#FFFFFF;stroke-width:8.500000e-02;}
.st12{fill:#E42523;stroke:#271F1D;stroke-width:0.112;}
.st13{fill:#004A85;stroke:#271F1D;stroke-width:0.236;}
.st14{fill:none;stroke:#FFFFFF;stroke-width:0.254;}
.st15{fill:#271F1D;}
.st16{fill:#E42523;stroke:#271F1D;stroke-width:9.400000e-02;stroke-linejoin:round;}
.st17{fill:#004A85;stroke:#271F1D;stroke-width:9.400000e-02;stroke-linejoin:round;}
.st18{fill:none;stroke:#271F1D;stroke-width:9.400000e-02;stroke-linejoin:round;}
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#271F1D;}
.st20{fill:#F7AB18;}
</style>
<g>
<polygon class="st0" points="14.3,6.6 184.3,6.6 184.3,120.1 14.3,120.1 "/>
<polygon class="st1" points="95.6,30.5 97.1,26.4 93.3,23.8 97.9,23.8 99.4,19.6 100.8,23.8 105.4,23.8 101.7,26.4 103.1,30.5
99.4,27.9 "/>
<polygon class="st1" points="95.6,105.4 97.1,101.2 93.3,98.6 97.9,98.6 99.4,94.5 100.8,98.6 105.4,98.6 101.7,101.2 103.1,105.4
99.4,102.8 "/>
<polygon class="st1" points="76.9,35.5 78.4,31.4 74.6,28.8 79.3,28.8 80.7,24.6 82.1,28.8 86.7,28.8 83,31.4 84.4,35.5 80.7,33
"/>
<polygon class="st1" points="114.3,35.5 115.8,31.4 112,28.8 116.6,28.8 118.1,24.6 119.5,28.8 124.1,28.8 120.4,31.4 121.8,35.5
118.1,33 "/>
<polygon class="st1" points="76.9,100.3 78.4,96.2 74.6,93.6 79.3,93.6 80.7,89.4 82.1,93.6 86.7,93.6 83,96.2 84.4,100.3
80.7,97.8 "/>
<polygon class="st1" points="63.3,86.7 64.7,82.5 60.9,79.9 65.6,79.9 67,75.8 68.4,79.9 73,79.9 69.3,82.5 70.7,86.7 67,84.1 "/>
<polygon class="st1" points="128.1,86.7 129.5,82.5 125.8,79.9 130.4,79.9 131.8,75.8 133.2,79.9 137.8,79.9 134.1,82.5
135.5,86.7 131.8,84.1 "/>
<polygon class="st1" points="63.3,49.2 64.7,45.1 60.9,42.5 65.6,42.5 67,38.3 68.4,42.5 73,42.5 69.3,45.1 70.7,49.2 67,46.7 "/>
<polygon class="st1" points="58.2,67.9 59.6,63.8 55.9,61.2 60.5,61.2 61.9,57 63.3,61.2 67.9,61.2 64.2,63.8 65.6,67.9 61.9,65.4
"/>
<polygon class="st1" points="133.1,67.9 134.5,63.8 130.8,61.2 135.4,61.2 136.8,57 138.2,61.2 142.8,61.2 139.1,63.8 140.5,67.9
136.8,65.4 "/>
<polygon class="st1" points="128.1,49.2 129.5,45.1 125.8,42.5 130.4,42.5 131.8,38.3 133.2,42.5 137.8,42.5 134.1,45.1
135.5,49.2 131.8,46.7 "/>
<polygon class="st1" points="114.3,100.3 115.8,96.2 112,93.6 116.6,93.6 118.1,89.4 119.5,93.6 124.1,93.6 120.4,96.2
121.8,100.3 118.1,97.8 "/>
<polygon class="st2" points="33.4,161 33.4,150 40.7,150 40.7,151.3 34.8,151.3 34.8,154.7 39.9,154.7 39.9,156 34.8,156 34.8,161
"/>
<path class="st2" d="M43.3,157c0,1,0.2,1.8,0.7,2.3c0.4,0.5,1,0.8,1.7,0.8c0.7,0,1.2-0.2,1.7-0.8c0.4-0.5,0.7-1.3,0.7-2.3
c0-1-0.2-1.7-0.7-2.2c-0.4-0.5-1-0.8-1.7-0.8c-0.7,0-1.2,0.2-1.7,0.8C43.5,155.2,43.3,156,43.3,157 M41.9,157
c0-1.5,0.4-2.6,1.2-3.3c0.7-0.6,1.5-0.9,2.5-0.9c1.1,0,2,0.4,2.7,1.1c0.7,0.7,1,1.7,1,3c0,1-0.2,1.8-0.4,2.4
c-0.3,0.6-0.7,1-1.3,1.4c-0.6,0.3-1.2,0.5-1.9,0.5c-1.1,0-2-0.4-2.7-1.1C42.3,159.4,41.9,158.3,41.9,157"/>
<path class="st2" d="M50.9,161V153h1.2v1.1c0.6-0.9,1.4-1.3,2.5-1.3c0.5,0,0.9,0.1,1.3,0.2c0.4,0.2,0.7,0.4,0.9,0.7
c0.2,0.3,0.3,0.6,0.4,1c0,0.2,0.1,0.7,0.1,1.3v4.9H56v-4.8c0-0.5,0-1-0.2-1.2c-0.1-0.3-0.3-0.5-0.6-0.7c-0.3-0.2-0.6-0.2-0.9-0.2
c-0.6,0-1.1,0.2-1.5,0.5c-0.4,0.4-0.6,1.1-0.6,2.1v4.3L50.9,161L50.9,161z"/>
<path class="st2" d="M60.3,157c0,1,0.2,1.8,0.7,2.3c0.4,0.5,0.9,0.8,1.5,0.8s1.1-0.2,1.5-0.7c0.4-0.5,0.6-1.2,0.6-2.2
c0-1.1-0.2-1.9-0.6-2.4c-0.4-0.5-0.9-0.8-1.5-0.8c-0.6,0-1.1,0.2-1.5,0.7C60.5,155.2,60.3,156,60.3,157 M64.6,161v-1
c-0.5,0.8-1.2,1.2-2.2,1.2c-0.6,0-1.2-0.2-1.7-0.5c-0.5-0.4-0.9-0.8-1.2-1.5c-0.3-0.6-0.4-1.3-0.4-2.2c0-0.8,0.1-1.5,0.4-2.2
c0.3-0.7,0.7-1.1,1.2-1.5s1.1-0.5,1.8-0.5c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8V150h1.3V161L64.6,161L64.6,161z"/>
<path class="st2" d="M67.4,158.6l1.3-0.2c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.8,0.4,1.4,0.4c0.6,0,1.1-0.1,1.4-0.4
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.1-0.5-0.4-0.7c-0.2-0.1-0.7-0.3-1.4-0.4c-1-0.2-1.7-0.5-2-0.7s-0.7-0.4-0.9-0.8
c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-0.7,0.2-1c0.2-0.3,0.4-0.6,0.7-0.8c0.2-0.2,0.5-0.3,0.9-0.4c0.4-0.1,0.7-0.2,1.2-0.2
c0.6,0,1.2,0.1,1.6,0.3s0.8,0.4,1,0.7c0.2,0.3,0.4,0.7,0.5,1.2l-1.3,0.2c-0.1-0.4-0.2-0.7-0.5-1c-0.3-0.2-0.7-0.3-1.2-0.3
c-0.6,0-1.1,0.1-1.3,0.3c-0.3,0.2-0.4,0.4-0.4,0.7c0,0.2,0,0.3,0.2,0.5s0.3,0.3,0.5,0.4c0.1,0,0.5,0.2,1.2,0.3
c0.9,0.2,1.6,0.5,2,0.6c0.4,0.2,0.7,0.4,0.9,0.7c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9
c-0.5,0.2-1.1,0.3-1.7,0.3c-1,0-1.8-0.2-2.4-0.7C67.9,160.1,67.5,159.4,67.4,158.6"/>
<polygon class="st2" points="80,161 80,150 87.9,150 87.9,151.3 81.5,151.3 81.5,154.7 87.5,154.7 87.5,156 81.5,156 81.5,159.7
88.2,159.7 88.2,161 "/>
<path class="st2" d="M95.2,161v-1.2c-0.6,0.9-1.5,1.3-2.5,1.3c-0.5,0-0.9-0.1-1.3-0.3s-0.7-0.4-0.9-0.7c-0.2-0.3-0.3-0.6-0.4-1
c0-0.3-0.1-0.7-0.1-1.3V153h1.3v4.4c0,0.7,0,1.2,0.1,1.4c0.1,0.4,0.3,0.6,0.5,0.8c0.3,0.2,0.6,0.3,1,0.3s0.8-0.1,1.1-0.3
c0.4-0.2,0.6-0.5,0.7-0.8c0.2-0.4,0.2-0.9,0.2-1.5V153h1.3v7.9L95.2,161L95.2,161z"/>
<path class="st2" d="M98.5,161V153h1.2v1.2c0.3-0.6,0.6-0.9,0.9-1.1c0.3-0.2,0.5-0.3,0.9-0.3c0.4,0,0.9,0.2,1.4,0.4l-0.5,1.3
c-0.3-0.2-0.7-0.3-1-0.3c-0.3,0-0.6,0.1-0.8,0.3c-0.2,0.2-0.4,0.4-0.5,0.7c-0.2,0.5-0.2,1-0.2,1.6v4.1H98.5L98.5,161z"/>
<path class="st2" d="M104.5,157c0,1,0.2,1.8,0.7,2.3c0.4,0.5,1,0.8,1.7,0.8c0.7,0,1.2-0.2,1.7-0.8c0.4-0.5,0.7-1.3,0.7-2.3
c0-1-0.2-1.7-0.7-2.2c-0.4-0.5-1-0.8-1.7-0.8c-0.7,0-1.2,0.2-1.7,0.8C104.7,155.2,104.5,156,104.5,157 M103.1,157
c0-1.5,0.4-2.6,1.2-3.3c0.7-0.6,1.5-0.9,2.5-0.9c1.1,0,2,0.4,2.7,1.1c0.7,0.7,1,1.7,1,3c0,1-0.2,1.8-0.4,2.4
c-0.3,0.6-0.8,1-1.3,1.4c-0.6,0.3-1.2,0.5-1.9,0.5c-1.1,0-2-0.4-2.7-1.1C103.4,159.4,103.1,158.3,103.1,157"/>
<path class="st2" d="M113.3,157.1c0,1,0.2,1.8,0.6,2.3c0.4,0.5,0.9,0.7,1.5,0.7c0.6,0,1.1-0.2,1.5-0.8c0.4-0.5,0.7-1.3,0.7-2.4
c0-1-0.2-1.8-0.6-2.3s-0.9-0.8-1.5-0.8c-0.6,0-1.1,0.3-1.5,0.8C113.5,155.2,113.3,156,113.3,157.1 M112.1,164v-11h1.2v1
c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c0.7,0,1.3,0.2,1.8,0.5c0.5,0.4,0.9,0.8,1.2,1.5c0.3,0.6,0.4,1.3,0.4,2.1
c0,0.8-0.1,1.5-0.4,2.2c-0.3,0.7-0.7,1.1-1.3,1.5c-0.6,0.3-1.1,0.5-1.7,0.5c-0.4,0-0.9-0.1-1.2-0.3c-0.4-0.2-0.7-0.4-0.9-0.7v3.9
L112.1,164L112.1,164z"/>
<path class="st2" d="M123,152.1l1-2.1h1.8l-1.6,2.1H123L123,152.1z M121.6,156.3h4.4c-0.1-0.7-0.2-1.2-0.5-1.5
c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6C121.9,155,121.6,155.6,121.6,156.3 M126,158.4l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9
s-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1c-0.7-0.7-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1
s1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9c0,0.9,0.3,1.5,0.7,2c0.4,0.5,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4
C125.5,159.4,125.8,159,126,158.4"/>
<path class="st2" d="M130.1,156.3h4.4c-0.1-0.7-0.2-1.2-0.5-1.5c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6
C130.4,155,130.1,155.6,130.1,156.3 M134.5,158.4l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9c-0.6,0.4-1.3,0.7-2.3,0.7
c-1.2,0-2.1-0.4-2.8-1.1c-0.7-0.7-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1
c0.7,0.7,1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9c0,0.9,0.3,1.5,0.7,2c0.4,0.5,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4
C134,159.4,134.3,159,134.5,158.4"/>
<path class="st2" d="M137.6,161V153h1.2v1.1c0.6-0.9,1.4-1.3,2.5-1.3c0.5,0,0.9,0.1,1.3,0.2c0.4,0.2,0.7,0.4,0.9,0.7
c0.2,0.3,0.3,0.6,0.4,1c0,0.2,0.1,0.7,0.1,1.3v4.9h-1.3v-4.8c0-0.5,0-1-0.2-1.2c-0.1-0.3-0.3-0.5-0.6-0.7c-0.3-0.2-0.6-0.2-0.9-0.2
c-0.6,0-1.1,0.2-1.5,0.5s-0.6,1.1-0.6,2.1v4.3L137.6,161L137.6,161z"/>
<path class="st2" d="M151.2,157c0,1,0.2,1.8,0.7,2.3c0.4,0.5,0.9,0.8,1.5,0.8c0.6,0,1.1-0.2,1.5-0.7c0.4-0.5,0.6-1.2,0.6-2.2
c0-1.1-0.2-1.9-0.6-2.4c-0.4-0.5-0.9-0.8-1.5-0.8c-0.6,0-1.1,0.2-1.5,0.7C151.4,155.2,151.2,156,151.2,157 M155.5,161v-1
c-0.5,0.8-1.2,1.2-2.2,1.2c-0.6,0-1.2-0.2-1.7-0.5c-0.5-0.4-0.9-0.8-1.2-1.5s-0.4-1.3-0.4-2.2c0-0.8,0.1-1.5,0.4-2.2
c0.3-0.7,0.7-1.1,1.2-1.5c0.5-0.3,1.1-0.5,1.8-0.5c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8V150h1.3V161L155.5,161L155.5,161
z"/>
<path class="st2" d="M159.8,156.3h4.4c-0.1-0.7-0.2-1.2-0.5-1.5c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6
C160.1,155,159.9,155.6,159.8,156.3 M164.2,158.4l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9s-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1
s-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1s1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9
c0,0.9,0.3,1.5,0.7,2c0.4,0.5,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4C163.8,159.4,164,159,164.2,158.4"/>
<path class="st2" d="M16.3,178h2.3c0.7,0,1.3-0.1,1.7-0.2c0.4-0.1,0.7-0.3,1-0.6c0.3-0.3,0.6-0.8,0.8-1.4c0.2-0.6,0.3-1.3,0.3-2.1
c0-1.1-0.2-2-0.6-2.6c-0.4-0.6-0.8-1-1.4-1.2c-0.4-0.2-1-0.2-1.9-0.2h-2.3V178L16.3,178z M14.9,179.3v-10.9h3.8c0.9,0,1.5,0,2,0.2
c0.6,0.1,1.2,0.4,1.6,0.8c0.6,0.5,1,1.1,1.3,1.9s0.4,1.6,0.4,2.6c0,0.8-0.1,1.6-0.3,2.2c-0.2,0.6-0.4,1.2-0.7,1.6
c-0.3,0.4-0.7,0.8-1,1c-0.4,0.2-0.8,0.4-1.3,0.6c-0.5,0.1-1.1,0.2-1.8,0.2H14.9L14.9,179.3z"/>
<path class="st2" d="M28.2,170.4l1-2.1h1.7l-1.6,2.1H28.2L28.2,170.4z M26.7,174.6h4.4c0-0.7-0.2-1.2-0.5-1.5
c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6C27,173.3,26.8,173.9,26.7,174.6 M31.1,176.7l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9
c-0.6,0.4-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1s-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1
s1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9c0,0.9,0.3,1.5,0.7,2c0.4,0.4,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4
C30.7,177.7,30.9,177.3,31.1,176.7"/>
<path class="st2" d="M36.4,179.3l-3-7.9h1.4l1.7,4.8c0.2,0.5,0.4,1,0.5,1.6c0.1-0.4,0.3-0.9,0.5-1.5l1.8-4.8h1.4l-3,7.9L36.4,179.3
L36.4,179.3z"/>
<path class="st2" d="M42.9,174.6h4.4c-0.1-0.7-0.2-1.2-0.5-1.5c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6
C43.1,173.3,42.9,173.9,42.9,174.6 M47.3,176.7l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9c-0.6,0.4-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1
s-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1s1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9
c0,0.9,0.3,1.5,0.7,2c0.4,0.4,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4C46.8,177.7,47.1,177.3,47.3,176.7"/>
<polygon class="st0" points="51.7,168.3 50.3,168.3 50.3,179.3 51.7,179.3 "/>
<path class="st2" d="M54.6,175.3c0,1,0.2,1.8,0.7,2.3c0.4,0.5,1,0.8,1.7,0.8c0.7,0,1.2-0.2,1.7-0.8c0.4-0.5,0.7-1.3,0.7-2.3
c0-1-0.2-1.7-0.7-2.2c-0.4-0.5-1-0.8-1.7-0.8c-0.7,0-1.2,0.2-1.7,0.8C54.8,173.5,54.6,174.3,54.6,175.3 M53.3,175.3
c0-1.5,0.4-2.6,1.2-3.3c0.7-0.6,1.5-0.9,2.5-0.9c1.1,0,2,0.4,2.7,1.1c0.7,0.7,1,1.7,1,3c0,1-0.2,1.8-0.4,2.4
c-0.3,0.6-0.7,1-1.3,1.4c-0.6,0.3-1.2,0.5-1.9,0.5c-1.1,0-2-0.4-2.7-1.1C53.6,177.7,53.3,176.6,53.3,175.3"/>
<path class="st2" d="M63.5,175.4c0,1,0.2,1.8,0.6,2.2c0.4,0.5,0.9,0.7,1.5,0.7c0.6,0,1.1-0.2,1.5-0.8c0.4-0.5,0.6-1.3,0.6-2.4
c0-1-0.2-1.8-0.6-2.3c-0.4-0.5-0.9-0.8-1.5-0.8c-0.6,0-1.1,0.3-1.5,0.8C63.7,173.5,63.5,174.3,63.5,175.4 M62.2,182.3v-10.9h1.2v1
c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c0.7,0,1.3,0.2,1.8,0.5c0.5,0.4,0.9,0.8,1.2,1.5c0.3,0.6,0.4,1.3,0.4,2.1
c0,0.8-0.1,1.5-0.4,2.2c-0.3,0.7-0.7,1.1-1.3,1.5c-0.6,0.3-1.1,0.5-1.7,0.5c-0.4,0-0.9-0.1-1.2-0.3c-0.4-0.2-0.7-0.4-0.9-0.7v3.9
L62.2,182.3L62.2,182.3z"/>
<path class="st2" d="M72,175.4c0,1,0.2,1.8,0.6,2.2c0.4,0.5,0.9,0.7,1.5,0.7s1.1-0.2,1.5-0.8s0.6-1.3,0.6-2.4c0-1-0.2-1.8-0.6-2.3
c-0.4-0.5-0.9-0.8-1.5-0.8c-0.6,0-1.1,0.3-1.5,0.8C72.2,173.5,72,174.3,72,175.4 M70.7,182.3v-10.9H72v1c0.3-0.4,0.6-0.7,1-0.9
c0.4-0.2,0.8-0.3,1.3-0.3c0.7,0,1.3,0.2,1.8,0.5c0.5,0.4,0.9,0.8,1.2,1.5c0.3,0.6,0.4,1.3,0.4,2.1c0,0.8-0.1,1.5-0.4,2.2
c-0.3,0.7-0.7,1.1-1.3,1.5c-0.6,0.3-1.1,0.5-1.7,0.5c-0.4,0-0.9-0.1-1.2-0.3c-0.4-0.2-0.7-0.4-0.9-0.7v3.9L70.7,182.3L70.7,182.3z"
/>
<path class="st2" d="M80.2,174.6h4.4c-0.1-0.7-0.2-1.2-0.5-1.5c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6
C80.5,173.3,80.3,173.9,80.2,174.6 M84.7,176.7l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9c-0.6,0.4-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1
c-0.7-0.7-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1c0.7,0.7,1,1.7,1,3.1c0,0.1,0,0.2,0,0.4
h-5.9c0,0.9,0.3,1.5,0.7,2c0.4,0.4,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4C84.2,177.7,84.5,177.3,84.7,176.7"/>
<path class="st2" d="M87.7,179.3v-7.9h1.2v1.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.4,1.4-0.4c0.6,0,1.1,0.1,1.4,0.4
c0.4,0.2,0.7,0.6,0.8,1c0.6-0.9,1.4-1.4,2.4-1.4c0.8,0,1.4,0.2,1.8,0.7c0.4,0.4,0.6,1.1,0.6,2v5.4h-1.3v-5c0-0.5,0-0.9-0.1-1.2
c-0.1-0.2-0.2-0.4-0.5-0.6s-0.5-0.2-0.8-0.2c-0.6,0-1,0.2-1.4,0.6c-0.4,0.4-0.6,1-0.6,1.8v4.6h-1.3v-5.2c0-0.6-0.1-1-0.3-1.3
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.4,0-0.7,0.1-1.1,0.3c-0.3,0.2-0.6,0.5-0.7,0.9s-0.2,0.9-0.2,1.7v4.1L87.7,179.3L87.7,179.3z"/>
<path class="st2" d="M101.5,174.6h4.4c-0.1-0.7-0.2-1.2-0.5-1.5c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6
C101.8,173.3,101.5,173.9,101.5,174.6 M105.9,176.7l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9c-0.6,0.4-1.3,0.7-2.3,0.7
c-1.2,0-2.1-0.4-2.8-1.1c-0.7-0.7-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1c1.1,0,1.9,0.4,2.6,1.1
c0.7,0.7,1,1.7,1,3.1c0,0.1,0,0.2,0,0.4h-5.9c0,0.9,0.3,1.5,0.7,2c0.4,0.4,1,0.7,1.7,0.7c0.5,0,0.9-0.1,1.3-0.4
C105.4,177.7,105.7,177.3,105.9,176.7"/>
<path class="st2" d="M109,179.3v-7.9h1.2v1.1c0.6-0.9,1.4-1.3,2.5-1.3c0.5,0,0.9,0.1,1.3,0.2c0.4,0.2,0.7,0.4,0.9,0.7
s0.3,0.6,0.4,1c0,0.2,0.1,0.7,0.1,1.3v4.9H114v-4.8c0-0.5,0-1-0.2-1.2s-0.3-0.5-0.6-0.7c-0.3-0.2-0.6-0.2-0.9-0.2
c-0.6,0-1.1,0.2-1.5,0.5c-0.4,0.4-0.6,1.1-0.6,2.1v4.3L109,179.3L109,179.3z"/>
<path class="st2" d="M120.4,178.1l0.2,1.2c-0.4,0.1-0.7,0.1-1,0.1c-0.5,0-0.9-0.1-1.1-0.2c-0.3-0.2-0.4-0.4-0.6-0.6
c-0.1-0.2-0.2-0.8-0.2-1.6v-4.6h-1v-1.1h1v-2l1.3-0.8v2.8h1.3v1h-1.3v4.6c0,0.4,0,0.6,0.1,0.7c0,0.1,0.1,0.2,0.2,0.2
c0.1,0.1,0.3,0.1,0.4,0.1C119.9,178.1,120.1,178.1,120.4,178.1"/>
<path class="st2" d="M127.6,173.2h3.1c0.7,0,1.2-0.1,1.5-0.2c0.4-0.1,0.7-0.4,0.9-0.7c0.2-0.3,0.3-0.6,0.3-1c0-0.5-0.2-0.9-0.6-1.3
c-0.4-0.3-1-0.5-1.8-0.5h-3.5L127.6,173.2L127.6,173.2z M126.1,179.3v-10.9h4.8c1,0,1.7,0.1,2.2,0.3c0.5,0.2,0.9,0.5,1.2,1
s0.4,1.1,0.4,1.7c0,0.8-0.2,1.4-0.7,2c-0.5,0.5-1.3,0.9-2.3,1c0.4,0.2,0.7,0.4,0.9,0.5c0.4,0.4,0.8,0.9,1.2,1.5l1.9,3H134l-1.4-2.3
c-0.4-0.7-0.8-1.2-1-1.5c-0.3-0.4-0.5-0.6-0.7-0.7c-0.2-0.1-0.4-0.2-0.7-0.3c-0.2,0-0.4,0-0.8,0h-1.7v4.8L126.1,179.3L126.1,179.3z
"/>
<path class="st2" d="M139.4,170.4l1-2.1h1.7l-1.6,2.1H139.4L139.4,170.4z M138,174.6h4.4c-0.1-0.7-0.2-1.2-0.5-1.5
c-0.4-0.5-1-0.8-1.7-0.8c-0.6,0-1.1,0.2-1.5,0.6C138.3,173.3,138,173.9,138,174.6 M142.4,176.7l1.4,0.2c-0.2,0.8-0.6,1.4-1.2,1.9
c-0.6,0.4-1.3,0.7-2.3,0.7c-1.2,0-2.1-0.4-2.8-1.1c-0.7-0.7-1-1.7-1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.7-1.1
c1.1,0,1.9,0.4,2.6,1.1c0.7,0.7,1,1.7,1,3.1c0,0.1,0,0.2,0,0.4H138c0,0.9,0.3,1.5,0.7,2c0.4,0.4,1,0.7,1.7,0.7
c0.5,0,0.9-0.1,1.3-0.4C141.9,177.7,142.2,177.3,142.4,176.7"/>
<path class="st2" d="M146.3,175.2c0,1,0.2,1.8,0.6,2.3c0.4,0.5,0.9,0.7,1.5,0.7c0.6,0,1.1-0.2,1.5-0.7s0.6-1.2,0.6-2.2
c0-1-0.2-1.7-0.7-2.2c-0.4-0.5-0.9-0.7-1.5-0.7c-0.6,0-1.1,0.2-1.5,0.7C146.5,173.5,146.3,174.2,146.3,175.2 M145.2,179.9l1.3,0.2
c0,0.4,0.2,0.7,0.4,0.9c0.3,0.2,0.8,0.4,1.4,0.4c0.6,0,1.1-0.1,1.4-0.4c0.3-0.2,0.6-0.6,0.7-1.1c0.1-0.3,0.1-0.9,0.1-1.7
c-0.6,0.7-1.3,1-2.2,1c-1.1,0-1.9-0.4-2.5-1.2c-0.6-0.8-0.9-1.7-0.9-2.8c0-0.8,0.1-1.5,0.4-2.1c0.3-0.6,0.7-1.1,1.2-1.5
c0.5-0.3,1.1-0.5,1.8-0.5c0.9,0,1.7,0.4,2.3,1.1v-0.9h1.2v6.8c0,1.2-0.1,2.1-0.4,2.6c-0.2,0.5-0.7,0.9-1.2,1.2
c-0.5,0.3-1.2,0.4-2,0.4c-0.9,0-1.7-0.2-2.3-0.6C145.5,181.4,145.2,180.8,145.2,179.9"/>
<path class="st2" d="M154,171.3h1.3v7.9H154V171.3L154,171.3z M154,168.3h1.3v1.5H154V168.3L154,168.3z"/>
<path class="st2" d="M158.2,175.3c0,1,0.2,1.8,0.7,2.3c0.4,0.5,1,0.8,1.7,0.8s1.2-0.2,1.7-0.8s0.7-1.3,0.7-2.3c0-1-0.2-1.7-0.7-2.2
c-0.4-0.5-1-0.8-1.7-0.8c-0.7,0-1.2,0.2-1.7,0.8C158.5,173.5,158.2,174.3,158.2,175.3 M156.9,175.3c0-1.5,0.4-2.6,1.2-3.3
c0.7-0.6,1.5-0.9,2.5-0.9c1.1,0,2,0.4,2.7,1.1c0.7,0.7,1,1.7,1,3c0,1-0.2,1.8-0.4,2.4c-0.3,0.6-0.7,1-1.3,1.4
c-0.6,0.3-1.2,0.5-1.9,0.5c-1.1,0-2-0.4-2.7-1.1C157.2,177.7,156.9,176.6,156.9,175.3"/>
<path class="st2" d="M165.9,179.3v-7.9h1.2v1.1c0.6-0.9,1.4-1.3,2.5-1.3c0.5,0,0.9,0.1,1.3,0.2c0.4,0.2,0.7,0.4,0.9,0.7
c0.2,0.3,0.3,0.6,0.4,1c0,0.2,0.1,0.7,0.1,1.3v4.9H171v-4.8c0-0.5,0-1-0.2-1.2c-0.1-0.3-0.3-0.5-0.6-0.7c-0.3-0.2-0.6-0.2-0.9-0.2
c-0.6,0-1.1,0.2-1.5,0.5s-0.6,1.1-0.6,2.1v4.3L165.9,179.3L165.9,179.3z"/>
<path class="st2" d="M179.4,175.3c-0.5,0.2-1.2,0.4-2.2,0.5c-0.6,0.1-0.9,0.2-1.2,0.3c-0.2,0.1-0.4,0.2-0.5,0.4
c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.4,0.1,0.7,0.4,0.9s0.7,0.4,1.2,0.4c0.5,0,1-0.1,1.4-0.3c0.4-0.2,0.7-0.5,0.9-0.9
c0.1-0.3,0.2-0.8,0.2-1.3L179.4,175.3L179.4,175.3z M179.5,178.3c-0.5,0.4-1,0.7-1.4,0.9c-0.5,0.2-0.9,0.2-1.5,0.2
c-0.9,0-1.5-0.2-2-0.6s-0.7-1-0.7-1.6c0-0.4,0.1-0.7,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8c0.3-0.2,0.6-0.3,1-0.4
c0.3-0.1,0.7-0.1,1.2-0.2c1.1-0.1,1.9-0.3,2.4-0.4c0-0.2,0-0.3,0-0.4c0-0.6-0.1-0.9-0.4-1.2c-0.3-0.3-0.9-0.4-1.5-0.4
c-0.6,0-1.1,0.1-1.4,0.3s-0.5,0.6-0.7,1.2l-1.3-0.2c0.1-0.6,0.3-1,0.6-1.4c0.3-0.3,0.7-0.6,1.2-0.8c0.5-0.2,1.1-0.3,1.8-0.3
s1.2,0.1,1.7,0.2c0.4,0.2,0.7,0.4,0.9,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0,0.2,0.1,0.7,0.1,1.2v1.8c0,1.2,0,2,0.1,2.4
c0,0.3,0.2,0.7,0.3,0.9h-1.4C179.7,179,179.6,178.7,179.5,178.3"/>
<polygon class="st0" points="184.2,168.3 182.8,168.3 182.8,179.3 184.2,179.3 "/>
<path class="st2" d="M14,129.3h2.4v6.3c0,1,0,1.7,0.1,2c0.1,0.5,0.3,0.9,0.7,1.1c0.4,0.3,0.9,0.4,1.6,0.4c0.7,0,1.2-0.1,1.5-0.4
c0.3-0.3,0.5-0.6,0.6-1c0.1-0.4,0.1-1.1,0.1-2v-6.5h2.4v6.1c0,1.4-0.1,2.4-0.2,3c-0.1,0.6-0.4,1.1-0.7,1.5
c-0.3,0.4-0.8,0.7-1.4,0.9c-0.6,0.2-1.3,0.4-2.2,0.4c-1.1,0-2-0.1-2.5-0.4c-0.6-0.2-1-0.6-1.4-1c-0.3-0.4-0.6-0.9-0.7-1.3
c-0.2-0.6-0.2-1.6-0.2-2.9V129.3L14,129.3z"/>
<polygon class="st2" points="25.9,141 25.9,129.3 28.2,129.3 33,137.1 33,129.3 35.2,129.3 35.2,141 32.8,141 28.1,133.4 28.1,141
"/>
<polygon class="st0" points="40,129.3 37.6,129.3 37.6,141 40,141 "/>
<path class="st2" d="M44.2,135.1c0,1.3,0.3,2.3,0.9,3c0.6,0.7,1.4,1,2.3,1c0.9,0,1.7-0.3,2.3-1c0.6-0.7,0.9-1.7,0.9-3.1
c0-1.3-0.3-2.4-0.9-3c-0.6-0.7-1.4-1-2.3-1s-1.8,0.3-2.4,1C44.5,132.8,44.2,133.8,44.2,135.1 M41.7,135.2c0-1.2,0.2-2.2,0.5-3
c0.3-0.6,0.6-1.1,1.1-1.6c0.5-0.5,1-0.8,1.5-1.1c0.7-0.3,1.6-0.5,2.5-0.5c1.7,0,3.1,0.5,4.1,1.6c1,1.1,1.5,2.6,1.5,4.5
c0,1.9-0.5,3.4-1.5,4.4c-1,1.1-2.4,1.6-4.1,1.6c-1.7,0-3.1-0.5-4.1-1.6C42.2,138.6,41.7,137.1,41.7,135.2"/>
<polygon class="st2" points="55,141 55,129.3 57.3,129.3 62.1,137.1 62.1,129.3 64.3,129.3 64.3,141 61.9,141 57.2,133.4 57.2,141
"/>
<polygon class="st2" points="71.3,141 71.3,129.3 80,129.3 80,131.3 73.7,131.3 73.7,133.9 79.5,133.9 79.5,135.8 73.7,135.8
73.7,139 80.2,139 80.2,141 "/>
<path class="st2" d="M82.2,129.3h2.4v6.3c0,1,0,1.7,0.1,2c0.1,0.5,0.3,0.9,0.7,1.1c0.4,0.3,0.9,0.4,1.6,0.4s1.2-0.1,1.5-0.4
c0.3-0.3,0.5-0.6,0.6-1c0.1-0.4,0.1-1.1,0.1-2v-6.5h2.4v6.1c0,1.4-0.1,2.4-0.2,3c-0.1,0.6-0.4,1.1-0.7,1.5
c-0.3,0.4-0.8,0.7-1.4,0.9c-0.6,0.2-1.3,0.4-2.2,0.4c-1.1,0-2-0.1-2.5-0.4c-0.6-0.2-1-0.6-1.4-1c-0.3-0.4-0.6-0.9-0.7-1.3
c-0.2-0.7-0.2-1.7-0.2-3L82.2,129.3L82.2,129.3z"/>
<path class="st2" d="M96.4,134.2h1.7c1.1,0,1.8,0,2.1-0.1c0.3-0.1,0.5-0.3,0.7-0.5c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.3-1
c-0.2-0.2-0.5-0.4-0.9-0.5c-0.2,0-0.8,0-1.7,0h-1.8L96.4,134.2L96.4,134.2z M94.1,141v-11.7h5c1.3,0,2.2,0.1,2.7,0.3
c0.6,0.2,1,0.6,1.4,1.1s0.5,1.1,0.5,1.8c0,0.9-0.2,1.6-0.8,2.2c-0.5,0.6-1.3,0.9-2.3,1.1c0.5,0.3,0.9,0.6,1.3,1
c0.3,0.4,0.8,1,1.3,1.9l1.4,2.3h-2.8l-1.7-2.6c-0.6-0.9-1-1.5-1.3-1.7c-0.2-0.2-0.5-0.4-0.7-0.5c-0.2-0.1-0.7-0.1-1.2-0.1h-0.5v4.9
L94.1,141L94.1,141z"/>
<path class="st2" d="M107.8,135.1c0,1.3,0.3,2.3,0.9,3c0.6,0.7,1.4,1,2.3,1c0.9,0,1.7-0.3,2.3-1c0.6-0.7,0.9-1.7,0.9-3.1
c0-1.3-0.3-2.4-0.9-3c-0.6-0.7-1.4-1-2.4-1c-1,0-1.8,0.3-2.4,1C108.1,132.8,107.8,133.8,107.8,135.1 M105.4,135.2
c0-1.2,0.2-2.2,0.5-3c0.3-0.6,0.6-1.1,1.1-1.6c0.5-0.5,1-0.8,1.5-1.1c0.7-0.3,1.6-0.5,2.5-0.5c1.7,0,3.1,0.5,4.1,1.6
c1,1.1,1.5,2.6,1.5,4.5c0,1.9-0.5,3.4-1.5,4.4c-1,1.1-2.4,1.6-4.1,1.6c-1.7,0-3.1-0.5-4.1-1.6C105.9,138.6,105.4,137.1,105.4,135.2
"/>
<path class="st2" d="M121,131.3v3.3h1.3c0.9,0,1.5-0.1,1.9-0.2c0.3-0.1,0.6-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-0.9
c0-0.4-0.1-0.8-0.4-1.1c-0.2-0.3-0.6-0.4-0.9-0.5c-0.3,0-0.9-0.1-1.7-0.1L121,131.3L121,131.3z M118.6,141v-11.7h3.8
c1.4,0,2.4,0.1,2.8,0.2c0.7,0.2,1.2,0.6,1.7,1.1c0.4,0.6,0.7,1.3,0.7,2.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1,1.1
c-0.4,0.3-0.8,0.5-1.2,0.6c-0.6,0.1-1.4,0.2-2.4,0.2h-1.5v4.4H118.6L118.6,141z"/>
<path class="st2" d="M132.5,128.6l1.1-2.4h2.5l-2.2,2.4H132.5L132.5,128.6z M129.5,141v-11.7h8.7v2h-6.3v2.6h5.9v2h-5.9v3.2h6.5v2
H129.5L129.5,141z"/>
<polygon class="st2" points="140.4,141 140.4,129.3 149.1,129.3 149.1,131.3 142.8,131.3 142.8,133.9 148.7,133.9 148.7,135.8
142.8,135.8 142.8,139 149.3,139 149.3,141 "/>
<polygon class="st2" points="151.3,141 151.3,129.3 153.7,129.3 158.5,137.1 158.5,129.3 160.7,129.3 160.7,141 158.3,141
153.6,133.4 153.6,141 "/>
<polygon class="st2" points="163.2,141 163.2,129.3 165.5,129.3 170.3,137.1 170.3,129.3 172.5,129.3 172.5,141 170.1,141
165.4,133.4 165.4,141 "/>
<polygon class="st2" points="175,141 175,129.3 183.6,129.3 183.6,131.3 177.3,131.3 177.3,133.9 183.2,133.9 183.2,135.8
177.3,135.8 177.3,139 183.9,139 183.9,141 "/>
<g>
<g>
<defs>
<path id="SVGID_1_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5
c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000013884881698084500680000007314447781180652935_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000013884881698084500680000007314447781180652935_);fill:#F7AB18;" points="454,136.1
453.7,0.5 350.7,0.5 351,136.1 "/>
</g>
<g>
<defs>
<path id="SVGID_00000126281398253629107140000015390818832522356666_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1
c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000178913038225576653810000016947552350109504443_">
<use xlink:href="#SVGID_00000126281398253629107140000015390818832522356666_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000178913038225576653810000016947552350109504443_);fill:#FFFFFF;" points="450.4,122.5
453.7,64.2 402.9,64.2 402.9,135.5 "/>
</g>
<g>
<defs>
<path id="SVGID_00000147217846259021412040000012383941730734007224_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1
c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000018936034406240314520000014308439975862779583_">
<use xlink:href="#SVGID_00000147217846259021412040000012383941730734007224_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000018936034406240314520000014308439975862779583_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;" points="
359.5,0.5 364.8,0.5 364.8,120.4 359.5,120.4 "/>
</g>
<g>
<defs>
<path id="SVGID_00000098927677784582302100000013891092096152682396_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1
c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000150824942646334248060000005004878043516110248_">
<use xlink:href="#SVGID_00000098927677784582302100000013891092096152682396_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000150824942646334248060000005004878043516110248_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;" points="
370.3,0.5 375.5,0.5 375.5,124.8 370.3,124.8 "/>
</g>
<g>
<defs>
<path id="SVGID_00000093884914335219598800000001632284686535196600_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1
c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000090291451322877209170000009345769420468426680_">
<use xlink:href="#SVGID_00000093884914335219598800000001632284686535196600_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000090291451322877209170000009345769420468426680_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;" points="
381,0.5 386.3,0.5 386.3,129.6 381,129.6 "/>
</g>
<g>
<defs>
<path id="SVGID_00000159452669276801128290000013064761273579227013_" d="M354.2,13c0,0-0.1,85.6-0.1,102.1
c0,0,30.6,12.9,36.1,14.7l12.3,5.2l3.1-1.1l3.6-1.5c8.2-3.5,9.9-4,19.1-8c5.4-2.3,22.4-9.3,22.4-9.3V13H354.2L354.2,13z"/>
</defs>
<clipPath id="SVGID_00000052822898360373149060000003056640190563402140_">
<use xlink:href="#SVGID_00000159452669276801128290000013064761273579227013_" style="overflow:visible;"/>
</clipPath>
<polygon style="clip-path:url(#SVGID_00000052822898360373149060000003056640190563402140_);fill-rule:evenodd;clip-rule:evenodd;fill:#E42523;" points="
391.7,0.5 397,0.5 397,133.5 391.7,133.5 "/>
</g>
</g>
<polygon class="st9" points="450.5,115 450.5,13 354.1,13 354.1,115 402.9,134.9 "/>
<path class="st10" d="M441.3,105.8c-0.8-6.3-3.5-10.2-6.5-10.2c-3,0-5.7,4.6-6.4,11.2"/>
<path class="st10" d="M425,106.9c-0.7-6.9-3.4-11.2-6.6-11.2c-2.9,0-5.5,4.2-6.3,10.3"/>
<path class="st11" d="M432.5,106.2c-1.2-4.5-3.4-7.2-5.9-7.2c-2.4,0-4.6,3-5.8,7.6"/>
<polygon class="st12" points="424.6,75.8 424.3,75.7 424.1,75.7 423.9,75.7 423.6,75.7 423.4,75.8 423.2,75.9 423,76 422.8,76
422.5,76 422.3,75.9 422,75.9 421.8,75.7 421.7,75.5 421.6,75.2 421.5,75 421.5,74.8 421.4,74.7 421.3,74.8 421.3,75.1 421.3,75.4
421.4,75.7 421.5,76 421.7,76.1 421.8,76.3 422,76.4 422.3,76.4 422.6,76.4 422.8,76.4 423,76.3 423.3,76.2 423.6,76.1 423.9,76.1
424.2,76.2 424.4,76.3 424.6,76.4 424.9,76.5 425,76.7 425.3,76.7 425.3,76.5 425.2,76.2 425.1,76 425,75.9 424.8,75.7 "/>
<polyline class="st12" points="425.1,76.8 424.7,76.8 424.3,76.6 423.8,76.5 423.4,76.6 423,76.7 422.6,77 422.8,77 423.1,76.9
423.5,76.9 423.9,77 424.3,77.2 424.6,77.3 424.9,77.5 426.5,77.2 426.4,75.9 425.5,74.9 424.9,74.9 424.7,73.8 424.2,74 424,73.7
423.7,73.5 423.4,73.5 423,73.5 422.6,73.7 422.3,74 422.2,74.3 422,74.8 422.1,75.3 422.2,75.7 422.4,75.4 422.5,75.2 422.8,75.1
423.2,75.2 423.6,75.3 424.1,75.5 424.5,75.7 424.8,76 425,76.2 425.1,76.6 425.1,76.8 "/>
<path class="st12" d="M429.5,71.8l-1,1.3l0.2-1.9l-0.9,1.6l0.2-1.9l-0.8,1.7l0.1-1.9l-0.6,1.7l0-1.8l-0.6,1.7l0-1.8l-0.5,1.7l0,0
l-0.2-1.8L425,72l-0.4-1.7l-0.2,1.8l-0.5-1.7l0.1,1.8v0V73v0.4l0,0l0,0v0.3c0,0,0.7,0,0.7,0l3.1,0.8c0.2,0.1,0.8,0.1,0.8,0.2
l0.1-0.5v0l0.2-0.7l0,0c0,0,0,0,0,0l0-0.1L429.5,71.8L429.5,71.8z"/>
<path class="st13" d="M442.3,106.2v-0.4c-0.9-0.2-1.3-0.7-1.3-1.4c0,0.6-0.7,1.2-1.5,1.4l-1.6,0c-0.9-0.2-1.6-0.8-1.6-1.4l0,0
c0,0.7-0.7,1.2-1.5,1.4H433c-0.9-0.2-1.6-0.8-1.6-1.4h0c0,0.7-0.7,1.3-1.7,1.5h-1.3c-1-0.2-1.7-0.7-1.7-1.4c0,0.7-0.7,1.2-1.7,1.4
h-1.4c-0.9-0.2-1.6-0.7-1.7-1.3c0,0.6-0.7,1.2-1.6,1.4h-1.5c-0.9-0.2-1.6-0.7-1.6-1.4c-0.1,0.7-0.9,1.2-1.8,1.4h-1
c-1-0.1-1.8-0.7-1.8-1.4c-0.1,0.7-0.6,1.2-1.5,1.3v0.2v2.8h31.3L442.3,106.2L442.3,106.2z"/>
<polygon class="st12" points="424,85.7 422.9,84.6 422.9,84.6 422.9,84.6 422.6,84.4 422.7,84.6 422,84.4 422.5,83.1 419.9,82.5
417.2,81.4 415.9,79.3 413.9,79.4 413.5,81.4 413.3,81.9 412.8,82 412.8,83.5 412.4,84.9 412.4,86 412.3,86.9 412.3,87.9
412.4,88.7 412.3,89.6 412.4,90.6 412.3,91.6 412.4,92.6 412.5,93.5 412.8,94.1 412.8,94.8 413,95.8 413,96.7 413.3,97.5
413.4,98.3 413.7,98.1 413.8,97.3 413.8,94.8 413.9,93.3 414.3,93.4 414.5,92.7 414.5,92.1 414.8,92.3 415.1,91.8 415.2,91.2
415.4,91.5 415.8,91.1 416,90.3 416.2,90.5 416.7,90.1 416.9,89.4 416.9,89.4 417,89.4 417.4,89.4 417.3,90 417.7,90.4 418,90.3
418.3,90.7 418.8,90.9 418.8,90.6 419,91 419.4,91.3 419.9,91.2 420.5,91.4 420.7,90.7 420.7,89.7 420.6,88.8 420.6,88.5
420.7,88.5 420.7,89 421,89.5 421.3,89.4 421.6,89.9 422.1,90.1 422.2,89.5 422.3,88.3 422.3,87.6 422.5,88.3 422.8,88.6 423,87.9
423,86.8 423,86.2 423.5,88.4 423.8,88.7 424,88 424,86.8 "/>
<path class="st12" d="M442,87.3l-0.1-0.9v-1.1l-0.4-1.3c0-0.1,0-0.3,0-0.4l0-1.2l-0.2,0c-0.2-0.9-0.5-1.7-0.7-2
c-0.4-0.6-2.8,0.5-3.6,0.6c-0.8,0.1-2,0.3-2,0.3s-0.2,1.1-1.4,1.5c-1.1,0.4-2.6,0.3-2.6,0.3l-0.5,1.7l-1,1l-0.1,1.1v1.2l0.2,0.7
l0.4-0.3l0.2-1.2v1l0.2,0.7l0.4-0.3l0.4-2.2l0,0.6v1.1l0.2,0.7l0.4-0.3l0.1-0.7v0.7l0.1,1.2l0.2,0.6l0.4-0.2l0.3-0.5l0.4,0.1
l0.3-0.5l0-0.5h0.1l0,0.2l-0.1,1v1l0.2,0.7l0.6-0.2l0.5,0.1l0.4-0.2l0.1-0.4l0.1,0.3l0.4-0.2l0.3-0.4l0.4,0.1l0.3-0.4l0-0.6
l0.4,0.1l0.1-0.1v0l0.2,0.7l0.4,0.3l0.2-0.2l0.2,0.8l0.4,0.3l0.2-0.2l0.1,0.6l0.3,0.5l0.3-0.2v0.6l0.2,0.7l0.4-0.2l0.1,1.5v1.4v1.1
l0.1,0.7l0.3,0.2l0.2-0.8l0.2-0.8l0.1-0.8l0.2-1v-0.7l0.3-0.6L442,93l0.1-1l-0.1-1L442,90l-0.2-0.9l0.2-0.7L442,87.3L442,87.3z"/>
<path class="st14" d="M434.8,107.4c-0.7-0.3-1.1-0.7-1.1-1.3l0,0c0,0.9-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5h0
c0,0.9-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5v0c0,0.8-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.9-1.1,1.5-2.4,1.5
c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.8-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.5-0.3,0.9-1,1.2 M444.3,107.4
c-0.7-0.3-1.1-0.7-1.1-1.3l0,0c0,0.8-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5h0c0,0.8-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5v0
c0,0.8-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.9-1.1,1.5-2.4,1.5c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.8-1.1,1.5-2.4,1.5
c-1.3,0-2.4-0.7-2.4-1.5l0,0c0,0.5-0.3,0.9-1,1.2"/>
<path class="st12" d="M438.4,96.3l-0.2-0.2l-0.2-0.2l-0.2-0.2l-0.3-0.1l-0.3-0.1h-0.4h-0.1l0,0l0.3-0.2l0.3-0.1c0,0,0.1,0,0.1,0h0
l0.3-0.1l0.2,0l0.2,0.1l0.2,0.2l0.1,0.3l0.1-0.2l0-0.4l0-0.3l-0.1-0.3l-0.2-0.2l-0.2-0.2l0,0l0-0.1l-0.3-0.2l-0.3,0l-0.4,0.2
l-0.3,0.1l-0.3,0.3l-0.3,0.2l-0.4,0.2l-0.4,0.2l-0.4,0.2l-0.3,0.1l-0.4-0.2l-0.4-0.1l-0.4-0.2l-0.5-0.3l-0.4-0.2l-0.4-0.2l-0.4-0.4
l-0.3-0.3l-0.2-0.3l-0.3-0.4l-0.3-0.4l-0.4-0.4l-1.2-0.3l0.8,2l0.4,0.3l0.4,0.2l0.4,0.4l0.6,0.4l0.5,0.2l0.4,0.1l0.5,0.1l0.4,0.1
L434,96l0.2,0.1l-0.4,0.1l-0.3,0l-0.3,0l-0.4,0l-0.3,0.1l-0.3,0.2l-0.2,0.2l-0.1,0.4l0,0.2l0,0l-0.1,0.3l0,0.3l0,0.3l0.1,0.2
l0.2,0.2l0.2,0.1l0.3,0h0.2l0.2-0.1l-0.2,0l-0.2,0l-0.1-0.2l-0.1-0.2V98l0-0.1l0.1,0l0.2-0.1l0.1-0.2l0.1-0.2l0.1-0.2l0.1-0.2
l0.2,0.1l0.4,0l0.4,0l0.3-0.1l0.2-0.1l0.2-0.2l0.2,0.1l0.2,0.1l0.3,0.2l0.3,0.2l0.3,0.2l0.2,0.2l0,0.1l0,0.2v0.3l0.1,0.2l0.2,0.1
l0,0l0,0.2l0.1,0.2l0.1,0.3l0,0.3l-0.2,0.2l-0.2,0.1l-0.3,0l0.2,0.1l0.3,0l0.2-0.1l0.2-0.1l0.2-0.2l0.2-0.2l0.1-0.3l0-0.4l0-0.3
l-0.1-0.1l0,0l0-0.3l-0.1-0.2l-0.2-0.2v-0.2l-0.1-0.2l-0.2-0.2l-0.2-0.2l-0.3-0.2h0.1l0.2,0l0.2,0l0.2,0h0.4l0.1,0.1l-0.1,0.1
l0,0.3l0.1,0.3l0.2,0.1l0,0.1l0.1,0.2v0.3l-0.1,0.3l-0.1,0.2h0.1l0.2-0.2l0.2-0.2l0-0.2l0.1-0.3l0-0.3l0-0.1l0.1-0.1l0.1-0.3l0-0.2
L438.4,96.3L438.4,96.3z"/>
<path class="st12" d="M423.6,92.2l-0.4,0.4l-0.3,0.4l-0.3,0.4l-0.2,0.3l-0.3,0.3l-0.4,0.4l-0.4,0.2l-0.4,0.2l-0.4,0.2l-0.4,0.2
l-0.4,0.1l-0.4,0.1l-0.3-0.1l-0.4-0.2l-0.4-0.3l-0.4-0.2l-0.3-0.2l-0.3-0.3l-0.3-0.1l-0.4-0.2l-0.3,0l-0.3,0.3l0,0.1l0,0l-0.2,0.2
l-0.2,0.2l-0.1,0.2l0,0.3l0,0.4l0.1,0.2l0.1-0.3l0.2-0.2l0.2-0.1l0.2,0l0.3,0.1h0c0,0,0.1,0,0.2,0l0.3,0l0.3,0.2l0,0H417h-0.4
l-0.3,0.1l-0.3,0.1l-0.2,0.2l-0.2,0.2l-0.2,0.2l-0.1,0.2l-0.1,0.2l0.1,0.3l0.1,0.1l0,0.1l0,0.3l0,0.3l0.1,0.2l0.2,0.2l0.2,0.2h0.1
l-0.1-0.2l0-0.3v-0.3l0.1-0.2l0-0.1l0.2-0.1l0.1-0.3l0-0.2l-0.1-0.1l0.1-0.1h0.4l0.2,0l0.2,0l0.2,0h0.1l-0.3,0.2l-0.2,0.3l-0.2,0.2
l-0.1,0.2v0.2l-0.2,0.2l0,0.2l0,0.3l0,0l-0.1,0.1l0,0.3l0,0.4l0.1,0.3l0.2,0.3l0.2,0.2l0.2,0.1l0.2,0.1l0.3,0l0.2-0.1l-0.3,0
l-0.2-0.1l-0.2-0.2l0-0.2l0.1-0.3l0.1-0.3l0-0.2l0,0l0.2-0.1l0.1-0.2V98l-0.1-0.2l0.1-0.1l0.2-0.2l0.3-0.2l0.3-0.2l0.3-0.2l0.2-0.1
l0.2-0.1l0.2,0.2l0.2,0.1l0.3,0.1l0.4,0l0.4,0l0.2-0.1l0.1,0.2l0.1,0.2l0.1,0.2l0.1,0.2l0.2,0.1l0.1,0l0,0.1v0.2l-0.1,0.2l-0.1,0.2
l-0.2,0l-0.2,0l0.2,0.1h0.2l0.3,0l0.2-0.1l0.2-0.2l0.1-0.2l0-0.3l0-0.3l-0.1-0.3l0,0l0-0.2l-0.1-0.4l-0.2-0.2l-0.3-0.2l-0.3-0.1
l-0.3,0l-0.3,0l-0.3,0l-0.4-0.1l0.2-0.1l0.5-0.3l0.4-0.1l0.5-0.1l0.4-0.1l0.5-0.2l0.6-0.4l0.4-0.4l0.4-0.2L424,94l0.8-2L423.6,92.2
L423.6,92.2z"/>
<path class="st12" d="M442.1,82.7l-0.1-0.8l-0.2-0.7l-0.3-0.5l-0.4-0.6c-0.2-0.4-0.4-0.8-0.6-1c-0.2-0.2-1.1-0.8-1.9-0.8
c-0.8,0-1.2,0.6-1.3,0.8s-0.2,1.5-0.5,1.6c-0.3,0.1-0.8-0.1-1.1-0.4c-0.3-0.2-0.7-0.6-1.1-0.3c-0.4,0.3-0.1,2.1-0.9,2.4
c-0.2,0.1-0.6-0.2-0.9-0.2c-0.2,0-1.1,0.6-1.5,0.5s-0.9-0.8-1.1-1c-0.2-0.3-0.5-0.5-0.7-0.6l-0.4-0.3l-0.2-0.3l0-0.1
c-0.3-0.6-0.3-1.1-0.3-1.4c0-0.4,0.1-1.5,0-2.1c0-0.6-0.2-1.4-0.2-1.6c0-0.1-0.1-0.3-0.1-0.6v0l-0.3-0.4l-0.1-0.1
c0,0-0.1,0-0.1-0.1c0,0-0.1,0-0.1-0.1l-0.2-0.1l-0.1-0.1c-0.4-0.2-0.9-0.4-1.3-0.5l-0.2,0l-0.4,0l-0.4-0.1h-0.4h-0.2l-0.2,0.1
l-0.1,0.2l-0.1,0.3l0.2,0.3l0.2,0.3l0.2,0.3l0.2,0.4l0.2,0.6l0.2,0.4l0.2,0.2l0.2,0.4v0.4l-0.3,0.2l-0.4,0l-0.2,0l0.4,0.4l0.3,0.3
l0.2,0.2v0.4l-0.1,0.4l-0.2,0.3l-0.1,0.4l0,0.3c0,0.1-0.3,0.2-0.7,0.6c-0.4,0.4-0.4,0.7-0.6,0.9s-0.4,0.2-0.6,0.3
c-0.1,0.1-0.3,0.6-0.5,0.6c-0.2,0-0.9-0.2-1.3-0.4c-0.4-0.1-0.4-0.1-0.7,0.1s-0.8-0.4-1-0.7c-0.2-0.3,0-1.3-0.2-1.6
c-0.2-0.3-0.7-0.2-1,0c-0.2,0.2-0.9,0.6-1.3,0.5c-0.4-0.1-0.4-1.6-0.8-2c-0.3-0.3-0.7-0.6-1.6-0.4c-1,0.3-1.4,0.9-1.5,1.1l-0.3,0.6
l-0.4,0.6l-0.3,0.5l-0.2,0.7l-0.1,0.8l-0.1,0.9l0.1,1l0.2,0.7l0.3,0.2l0.2-0.3l0.2-0.6l0.2-0.6l0.2-0.7l0.2-0.7l0.2,0.6l0.2,0.4
l0.4,0.2l0.4-0.2l0.3-0.5l0.2-0.5l0.1-0.7l0.2,0.7l0.2,0.6l0.3,0.3l0.4,0.1l0.4-0.3v-0.6l0.4,0.5l0.4,0.2l0.4,0.4l0.4,0.3h0.5
l0.3,0.5l0.3-0.1l0.3,0.3h0.4l0.3-0.2l0.2-0.5l0.4,0.4l0.4-0.1l0.3,0.4l0.7,0.4l0.6,0.7l0.9,0.2l0,0l0,0.2l0,0.4l0.1,0.5l0.1,0.2
l0,0.1l0,0.2l0,0.4l0,0.2l0,0.1l-0.1,0.3v0.4l0,0.3l-0.2,0.3l-0.2,0.2l-0.2,0.3l-0.2,0.3l-0.2,0.4l-0.1,0.4l0,0.4h-0.5l-0.5,0.2
l-0.2,0.3v0.3l0.1-0.3l0.2-0.2l0.2-0.1l0.4,0l-0.4,0.2l-0.2,0.3l0.2-0.2l0.2-0.1h0.2l0.3,0l-0.3,0.3l-0.3,0.4l-0.1,0.5l0.1,0.2
l0.1-0.3l0.1-0.3l0.2-0.1l0.3-0.1h0.2l0.3-0.1l-0.2,0.3l-0.2,0.3l-0.2,0.2l-0.3,0.2l0.2,0l0.2,0l0.2-0.1l0.3-0.2l-0.1,0.3l-0.1,0.3
l-0.1,0.3l-0.2,0.3l0.3,0l0.3-0.2l0.2-0.3l0.3-0.3l-0.2,0.4l-0.1,0.3l-0.2,0.4l-0.4,0.3l-0.3,0.1l0.1,0.1h0.3l0.3,0l0.3-0.1
l0.4-0.1l0.2-0.2l0.3-0.2l-0.1,0.3l-0.1,0.3l-0.1,0.3l0.2-0.3l0.1-0.2l0.2-0.5l0,0.2l-0.1,0.4l-0.1,0.3l-0.1,0.3l-0.2,0.2l-0.2,0.2
l-0.3,0.2l-0.4,0.1l-0.4,0l-0.5,0l-0.6,0l-0.4-0.2l-0.4-0.1l0.2,0.2l0.2,0.2l0.2,0.3l0.3,0.2l0.3,0.1l0.4,0l0.4,0l0.4,0l0.3-0.1
l0.2-0.2l0.3-0.3l0,0.5l-0.1,0.3l-0.1,0.3l-0.2,0.3l-0.2,0.3l-0.3,0.3l-0.3,0.3l-0.3,0.1l-0.3,0.1l-0.4,0.1l-0.4,0l-0.5,0l-0.4,0
h-0.4l-0.4,0.1l-0.3,0.1l-0.4,0.2l-0.3,0.2l-0.2,0.3l-0.1,0.3l0,0.4l0,0.3l0.1,0.4l0.2,0.2l0.2,0.1l0.2,0l0.2-0.1l0.2-0.3l-0.2,0.2
l-0.2,0.1h-0.2l-0.2-0.1l-0.1-0.2v-0.2l0-0.3l0.1-0.3l0.3-0.3l0.4-0.1l0.4-0.1l0.3,0h0.4l-0.3,0.2l-0.2,0.3l-0.1,0.4l0,0.4l0.2,0.2
l0.3,0.2h0.4l-0.2-0.1l-0.2-0.2L422,101l0.1-0.3l0.2-0.3l0.3-0.1l0.4,0l0.4-0.1l0.4-0.2l0.5-0.1l0.4-0.2l0.4-0.3l0.4-0.3l0.2-0.3
l0.3-0.5l0,0.5V99l-0.2,0.4l-0.2,0.3l-0.4,0.3l-0.3,0.3l-0.3,0.3l-0.2,0.2l-0.3,0.2l-0.4,0.1h-0.4l-0.3,0l-0.3-0.1l-0.4-0.3
l0.3,0.3l0.2,0.2l0.4,0.2l0.2,0.1l0.4,0l0.5-0.1l0.3-0.2l0.3-0.3l0.3-0.2l0.3-0.4l0.3-0.3l-0.1,0.2l0,0.3l0,0.4l0,0.4l-0.1,0.4
l-0.2,0.2l-0.2,0.1l-0.4,0l0.3,0.2h0.3l0.2,0l0.3-0.2v0.3l0,0.4l0.1,0.5l0.1,0.3l0.1-0.3l0.1-0.4l0.1-0.5l0.1-0.4l0-0.3l0.2,0.3
l0.2,0.2l0.2,0.1l0.4-0.1l-0.3-0.1l-0.1-0.2l-0.2-0.3l-0.1-0.2l-0.1-0.3l0-0.2l0.1-0.4l0.2,0.4l0.2,0.3l0.4,0.2l0.3,0.1l0.3,0.1
l0.4,0l0.4-0.1l0.4-0.1l0.3-0.3l0.2-0.2l0.2-0.4l-0.1,0.2l-0.2,0.1l-0.2,0.1l-0.2,0.1l-0.2,0l-0.4-0.1l-0.4-0.2l-0.4-0.2l-0.3-0.2
l-0.2-0.2l-0.2-0.3l-0.2-0.4l-0.2-0.6l-0.1-0.7l-0.1-0.8l-0.1-1l0.2,0.5l0.2,0.4l0.2,0.5l0.3,0.3l0.4,0.4l0.3,0.3l0.4,0.2l0.4,0.3
l0.4,0.2l0.4,0.1l0.2,0.1l0.2,0.2l0.1,0.2l0.1,0.4v0.4l-0.1,0.3l-0.5,0.3l0.4,0l0.3-0.2l0.2-0.3l0.1-0.3v-0.3L431,100l-0.2-0.4
l-0.3-0.2l-0.5-0.2l0.4,0h1.2l0.5,0.1l0.5,0.2l0.3,0.2l0.3,0.3l0.2,0.3l0.1,0.5v0.7l0.1-0.5v-0.5l-0.1-0.5l-0.2-0.4l-0.3-0.3
l-0.4-0.3L432,99l-0.4-0.2l-0.5,0h-0.6h-0.5l-0.5-0.1l-0.4-0.2l-0.4-0.3l-0.4-0.3l-0.2-0.3l-0.2-0.5l-0.2-0.4l-0.4-0.5l0.4,0.3
l0.3,0.3l0.4,0.2l0.5,0.2l0.5,0l0.6,0l0.4-0.1l0.4-0.3l0.4-0.5l0.3-0.6l-0.2,0.3l-0.3,0.2l-0.3,0.2l-0.4,0.1l-0.4,0l-0.5-0.1
l-0.5-0.1l-0.4-0.2l-0.4-0.3l-0.3-0.5l-0.2-0.4l-0.2-0.6l0.2,0.4l0.2,0.3l0.4,0.3l0.3,0.1l-0.4-0.3l-0.2-0.3l-0.2-0.3l-0.2-0.8
l0.2,0.5l0.3,0.4L428,95l0.3,0.2h0.4l0.2-0.1l0.1-0.1l-0.3,0h-0.3l-0.3-0.2l-0.2-0.3l-0.2-0.4v-0.6l0.1-0.4l0-0.5l0.1,0.6l0.2,0.4
l0.3,0.4l0.4,0.4l0.2,0.6l0.1,0.3l0.1-0.4l-0.1-0.4l-0.2-0.5l0.3,0.4l0.2,0.4l0.2,0.7l0-0.6v-0.4l-0.2-0.4l-0.1-0.4l0.2,0.2
l0.3,0.3l0.2,0.3l0.1,0.3l0.1,0.4l0.1,0.3l0.1-0.4v-0.5l-0.1-0.4l-0.2-0.3l-0.3-0.5l0.3,0.2l0.2,0.2l0.2,0.3l0.2,0.5l0.2,0
l-0.1-0.6l-0.1-0.4l-0.2-0.4l-0.1-0.3l0.2,0.1l0.2,0.1l0.4,0.3l-0.2-0.5l-0.4-0.6l-0.2-0.5l-0.2-0.5l-0.2-0.5l-0.4-0.5l-0.3-0.4
l-0.3-0.1l0.2-0.6l0.1-0.5v-0.7l0-0.1l0.1-0.4l0.1-0.6l0-0.5l1.5-0.2l0.6-0.7l0.7-0.4l0.3-0.4l0.4,0.1l0.4-0.4l0.2,0.5l0.3,0.2h0.4
l0.3-0.3l0.3,0.1l0.3-0.5h0.5l0.4-0.3l0.4-0.4l0.4-0.2l0.4-0.5v0.6l0.4,0.3l0.4-0.1l0.3-0.3l0.2-0.6l0.2-0.7l0.1,0.7l0.2,0.5
l0.3,0.5l0.4,0.2l0.4-0.2l0.2-0.4l0.2-0.6l0.2,0.7l0.2,0.7l0.2,0.6l0.2,0.6l0.2,0.3l0.3-0.2l0.2-0.7l0.1-1L442.1,82.7L442.1,82.7z"
/>
<path class="st15" d="M425.2,74.6c0.1,0,0.1,0.1,0.1-0.1s-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2C425,74.7,425.1,74.6,425.2,74.6"
/>
<path class="st16" d="M425.5,30.3c0.2,1.1,0.2,2.3,0.1,2.8s0.2,2-1.6,1.8c0.5-0.7,0.4-1,0.3-1.8c-0.1-0.8-0.5-2.2-0.9-2.7
c-0.4-0.4-0.6-0.6-0.6-0.6s0.1,0.4,0.2,0.9c0.1,0.5,0.1,1.4-0.1,1.7c-0.2,0.3-0.6,0.6-1.5,0.5c0.5-0.5,0.7-0.7,0.6-1.5
c-0.1-0.9-0.8-2.2-1.4-2.9c0.7-0.3,3.1,0.5,3.1,0.5L425.5,30.3L425.5,30.3z"/>
<path class="st16" d="M434.6,41.3c0.5-0.2,1.2-0.6,1.6-0.6c0.4,0,1,0.5,1.1,1c0.3-0.5,0.4-1.6,0.9-2c0.5-0.4,1.5-0.3,2.1-0.2
c-0.9-0.4-1.5-1.1-2.3-2.4c-0.7-1.3-1.4-2.2-1.6-2.6c-0.2-0.5-0.1,0.8-0.1,0.8l-0.6,2.1l-0.9,3.1L434.6,41.3L434.6,41.3z"/>
<path class="st16" d="M428.6,36.6c-0.7,1.3-1.5,4.5-2.8,5.5c-1.4,1-1.7,1.3-2.9,1.4c0.9,0.2,2.4,0.4,2.2,0.9s-0.2,0.3-0.2,0.3
s0.5-0.1,0.7,0c0.1,0.1,0.3,0.7,0.3,1c0,0.3-0.2,0.8,0.3,0.3c0.5-0.5,2.7-4.6,2.7-5.2C428.8,40.1,428.6,36.6,428.6,36.6L428.6,36.6
z"/>
<path class="st16" d="M434.5,41.9c-0.2,2.1-1.1,4.8-1,7.2c0.1,2.4,0.1,3.9,1.1,5.9c0.2,0.5-0.3,0.5-0.6,0.1
c-0.2-0.4-0.9-3.2-1.5-3.8c-0.7-0.6-1.4-0.7-1.4,0c0,0.7-0.6,0.7-0.7-0.1c-0.1-0.7-0.1-1.6-2.4-1.3c-1.1,0.1-1.9,0.7-1.9,0.7
L434.5,41.9L434.5,41.9z"/>
<path class="st17" d="M420.3,48.4c2.4-0.7,8.3-2.6,8-9s-2.2-8.5-5.2-10.1c-1.2-0.6-2.4-0.5-2.4-0.5l-0.4-0.5c0,0-0.7-0.3-1.8-0.7
s-3.2-0.3-3.7-0.2c-0.5,0.1-0.6-0.3-0.1-0.5c0.5-0.2,4.4-0.2,4.9,0c0-0.5-1.1-1.2-2.4-1.4c-1.4-0.2-3.5-0.2-3.9-0.9
c-0.4-0.6-0.8-1-0.4-1.1c0.4-0.2,2,0.8,2.5,0.5c0.5-0.2,1.1-0.3,1.6-0.7c-0.7-0.6-0.8-1.3-0.4-2c0.3-0.7,1.8-2.2,5.5-1.5
c3.7,0.7,9.5,4.5,11.3,6.8c1.8,2.3,4,4.8,3.2,9.7c-0.8,4.9-3.1,8.5-5.8,10.7c-2.7,2.3-6.1,5.9-6.1,5.9l-0.5-3.4L420.3,48.4
L420.3,48.4z"/>
<line class="st18" x1="416.9" y1="23.2" x2="417.5" y2="23.2"/>
<path class="st15" d="M419.8,23.7c0,0.1,0.1,0.2,0.3,0.2c0.2,0,0.3-0.1,0.3-0.3c0-0.1-0.1-0.2-0.3-0.2S419.8,23.5,419.8,23.7"/>
<path class="st16" d="M428.5,45.8c-3.6,2.3-7.9,4.2-12.4-0.1c-2.8-2.7-2.2-2.8-3.1-2.9c-0.9-0.1-1.6,0.2-1.7,0.6
c0.7,0,1.7-0.3,2.4,0.9c0.8,1.1,1,2.3,0.6,2.6c-0.4,0.4-0.1-0.2-0.5,0c-0.4,0.3-0.1,0.7,0.5,1.2c0.7,0.5,0.8,0.3,1,0.5
c0.2,0.2,0.8,1.5,1.2,1.8c0.4,0.3,4.3,1.5,7.3-0.4c-3,2.2-4.5,2.5-7.1,2.8c1.9,0.6,2.9,0.8,3.7,1.7c0.9,1,0.1,1.7,0.9,1.7
c0.8,0,0.2-0.7,0.5-0.7s1.5,0.5,1.8,1.2c0.3,0.8,0.8,2.5,2.4,2.9s2.1-0.3,2.2-0.7c-0.8,0-0.9,0.9-2.1-0.2c-1.2-1-2.5-3.6-0.6-6.9
c1.9-3.3,3.5-4.6,3.6-5.7c-0.7,0.4-1.1,0.5-1.1,0.5L428.5,45.8L428.5,45.8z"/>
<path class="st16" d="M417.3,22.6c0.6,0.2,0.7,0.3,0.8,0.3s2-0.6,2.8-0.6c0.8,0,2,0.7,2.6,2.4c0.2-1.4-0.1-1.6-0.5-2.1
c-0.4-0.4-1-0.7-1.5-0.7c0.3-0.2,0.9-0.2,1.1-0.2c-0.6-0.2-1.5-0.3-2.7,0c-1.2,0.3-1.6,0.9-1.7,0.9
C418.1,22.7,417.3,22.6,417.3,22.6L417.3,22.6z"/>
<path class="st16" d="M419.6,19.5c0.7,0,3.9,0.2,5.3-1.6c0,0.6-0.4,1.1-1,1.4c0.8,0.1,1.9,0.1,2.7,0c0.9-0.1,2.2-0.7,2.6-1.5
c-0.1,0.9-0.8,1.2-1.2,1.6s-0.5,0.7-1.5,0.7c1,0.2,2.2,0.7,3.1,0.8c0.9,0.1,2.7,0.2,4-1.1c-0.3,1.1-0.7,1.6-1.8,1.9
c-1.1,0.3-1.2,0.4-1.8,0.4c0.7,0.7,1.6,1.7,2.7,2.7c1.1,1.1,2.8,2.8,5.2,1.2c-0.3,1-1.3,1.3-2.4,1.2c-1.1-0.2-2.1-0.4-3-0.9
c-0.8-0.5-1-0.9-1.3-1.7c0.2,1,0.5,2.2,0.8,2.4c-0.4-0.2-1.4-1.2-1.6-1.7c-0.3,0.3-0.6,0.6-0.9,0.7c0.1-0.4,0.4-0.9,0-1.6
c-0.5-0.7-1.3-1.4-1.6-1.7c0.2,0.8,0.4,1.5,0.3,1.8s-0.6,1-0.9,1.3c0.1-0.5,0.2-1,0.2-1s-0.4,0.9-0.7,1.1c-0.2,0.2-0.7,0.5-2,0.5
c1.1-0.5,1.9-0.9,1.8-2.1c-0.1-1.2-0.4-2.1-1.4-2.9c-1.1-0.9-2.1-1.3-2.9-1.5c-0.8-0.1-1.7-0.1-2.1-0.2
C419.8,19.6,419.6,19.5,419.6,19.5L419.6,19.5z"/>
<path class="st18" d="M426.5,20.1c-0.3,0-0.9-0.1-0.9-0.1 M423.9,19.3c-0.3,0-0.6,0.1-0.8,0.1"/>
<path class="st15" d="M272.3,77.9h2.2c2.1,0,3.8,1.1,3.8,3.1c0,1.9-1.5,3.1-3.3,3.1c-0.3,0-0.4,0-0.7,0v-1c0.2,0,0.3,0,0.5,0
c1.2,0,2.2-0.8,2.2-2c0-1.4-1.1-2.1-2.6-2.1h-0.7v8.6h-1.3L272.3,77.9L272.3,77.9z"/>
<path class="st15" d="M281.9,79h-0.8v3.8c0,0,0.7,0,1.5,0c1.1,0,1.9-0.7,1.9-1.9C284.6,79.6,283.5,79,281.9,79 M284.1,85.6l-1-1.7
h-1.9v3.8h-1.3v-9.7h2.2c2.2,0,3.8,1,3.8,2.9c0,1-0.4,2-1.6,2.6l0.9,1.5c0.9,1.4,1.3,1.7,2.1,1.8l-0.1,0.9
C285.7,87.6,285.1,87.4,284.1,85.6"/>
<path class="st15" d="M292.8,78.9c-2.2,0-3.7,1.5-3.7,3.6c0,2.3,1.5,4.1,3.6,4.1h0.1c2.4,0,3.8-1.6,3.8-3.9
C296.7,80.4,295.2,78.9,292.8,78.9 M292.8,87.7c-2.9,0-4.9-2.1-4.9-5.1c0-2.9,2.1-4.9,5.1-4.9c3,0,5,2,5,4.8
C298,85.7,295.9,87.7,292.8,87.7"/>
<polygon class="st15" points="302,87.6 298.4,77.9 299.8,77.9 302.8,86.2 305.7,77.9 307,77.9 303.5,87.6 "/>
<polygon class="st15" points="308,87.6 308,77.9 313.2,77.9 313.2,79 309.3,79 309.3,82.2 312.9,82.2 312.9,83.2 309.3,83.2
309.3,86.5 313.5,86.5 313.5,87.6 "/>
<polygon class="st15" points="315.4,77.9 316.8,77.9 322.5,85.7 322.5,77.9 323.7,77.9 323.7,87.6 322.3,87.6 316.6,79.8
316.6,87.6 315.4,87.6 "/>
<path class="st15" d="M330.6,87.7c-3.2,0-5.3-1.9-5.3-4.9c0-3.1,2.1-5,5.3-5c0.9,0,1.9,0.1,3,0.6l-0.1,1.1c-1.1-0.4-2-0.6-2.9-0.6
c-2.5,0-3.9,1.4-3.9,3.8c0,2.1,1.4,3.9,4.1,3.9c0.8,0,1.9-0.2,3.2-0.7l-0.1,1.2C332.6,87.5,331.5,87.7,330.6,87.7"/>
<polygon class="st15" points="335.7,87.6 335.7,77.9 340.9,77.9 340.9,79 337,79 337,82.2 340.6,82.2 340.6,83.2 337,83.2
337,86.5 341.2,86.5 341.1,87.6 "/>
<path class="st15" d="M306.5,97.5h3.2l-1.7-4.6L306.5,97.5L306.5,97.5z M310.1,98.5h-3.9l-0.9,2.7H304l3.5-9.6l1.4,0l3.7,9.7h-1.4
L310.1,98.5L310.1,98.5z"/>
<polygon class="st15" points="313.9,101.3 313.9,91.6 315.2,91.6 315.2,100.2 319.4,100.2 319.3,101.3 "/>
<path class="st15" d="M320.9,91.6h2.2c2.1,0,3.8,1.1,3.8,3.1c0,1.9-1.5,3.1-3.3,3.1c-0.3,0-0.4,0-0.7,0v-1c0.2,0,0.3,0,0.5,0
c1.2,0,2.2-0.8,2.2-2c0-1.4-1.1-2.1-2.6-2.1h-0.7v8.6h-1.3L320.9,91.6L320.9,91.6z"/>
<polygon class="st15" points="328.5,101.3 328.5,91.6 333.7,91.6 333.7,92.7 329.8,92.7 329.8,95.8 333.4,95.8 333.4,96.9
329.8,96.9 329.8,100.2 334,100.2 333.9,101.3 "/>
<path class="st15" d="M338,101.4c-0.8,0-1.7-0.1-2.6-0.5l0-1.2c1.1,0.4,1.8,0.5,2.6,0.5c1.6,0,2-0.8,2-1.5c0-0.7-0.2-1.1-1.5-1.7
l-0.8-0.3c-1.6-0.7-2.1-1.5-2.1-2.6c0-1.4,1.1-2.6,3.3-2.6c0.6,0,1.4,0.1,2.2,0.3l-0.1,1.1c-0.9-0.2-1.5-0.3-2-0.3
c-1.4,0-2,0.6-2,1.4c0,0.7,0.3,1.1,1.6,1.7l0.8,0.3c1.6,0.7,2.1,1.6,2.1,2.7C341.4,99.9,340.5,101.4,338,101.4"/>
<path class="st15" d="M262.6,115.1c-3.2,0-5.3-1.9-5.3-4.9c0-3.1,2.1-5,5.3-5c0.9,0,1.9,0.1,3,0.6l-0.1,1.1c-1.1-0.4-2-0.6-2.9-0.6
c-2.5,0-3.9,1.4-3.9,3.8c0,2.1,1.4,3.9,4.1,3.9c0.8,0,1.9-0.2,3.2-0.7l-0.1,1.2C264.7,114.9,263.5,115.1,262.6,115.1"/>
<path class="st15" d="M271.8,103.1l-1.9,1.4l-0.6-0.7l2.6-2l2.4,1.9l-0.7,0.7L271.8,103.1L271.8,103.1z M271.9,106.2
c-2.2,0-3.7,1.5-3.7,3.6c0,2.3,1.5,4.1,3.6,4.1h0.1c2.4,0,3.8-1.6,3.8-3.9C275.7,107.8,274.2,106.2,271.9,106.2 M271.8,115.1
c-2.9,0-4.9-2.1-4.9-5.1c0-2.9,2.1-4.9,5.1-4.9c3,0,5,2,5,4.8C277,113,274.9,115.1,271.8,115.1"/>
<polygon class="st15" points="281.7,106.4 281.7,114.9 280.5,114.9 280.5,106.4 277.4,106.4 277.4,105.3 284.9,105.3 284.8,106.4
"/>
<polygon class="st15" points="286.1,114.9 286.1,105.3 291.3,105.3 291.3,106.3 287.4,106.3 287.4,109.5 291,109.5 291,110.5
287.4,110.5 287.4,113.9 291.7,113.9 291.5,114.9 "/>
<path class="st15" d="M298.7,106.3c-0.9,0-1.3,0-1.8,0v7.5c0.7,0,1.2,0,2.1,0c2.5,0,4.1-1.4,4.1-3.8
C303.1,107.4,301.1,106.3,298.7,106.3 M299,115c-1.1,0-2.1,0-3.3,0v-9.7c1,0,1.7,0,3.1,0c3.1,0,5.6,1.5,5.6,4.7
C304.4,113.2,302.3,115,299,115"/>
<path class="st15" d="M305.7,108.5l-0.7-0.4c0.7-0.8,1-1.4,1-1.9c0-0.3-0.1-0.7-0.5-1c0.2-0.3,0.5-0.5,0.7-0.5c0.6,0,1,0.6,1,1.3
C307.2,106.4,307.1,107.2,305.7,108.5"/>
<path class="st15" d="M309,111.2h3.2l-1.7-4.6L309,111.2L309,111.2z M312.6,112.2h-3.9l-0.9,2.7h-1.3l3.5-9.6l1.4,0l3.7,9.7h-1.4
L312.6,112.2L312.6,112.2z"/>
<polygon class="st15" points="315.6,114.9 315.6,114 320.7,106.4 315.6,106.4 315.6,105.3 322.3,105.3 322.3,106.1 317.2,113.8
322.8,113.8 322.7,114.9 "/>
<path class="st15" d="M328.1,115.1c-2.8,0-3.9-1.4-3.9-4.4v-5.4h1.3v5.3c0,2.2,0.7,3.4,2.7,3.4c1.9,0,2.6-1.2,2.6-3.3v-5.4h1.2v5.6
C332.1,113.5,330.8,115.1,328.1,115.1"/>
<path class="st15" d="M336.1,106.3h-0.8v3.8c0,0,0.7,0,1.5,0c1.1,0,1.9-0.7,1.9-1.9C338.8,106.9,337.7,106.3,336.1,106.3
M338.3,112.9l-1-1.7h-1.9v3.8h-1.3v-9.7h2.2c2.2,0,3.8,1,3.8,2.9c0,1-0.4,2-1.6,2.6l0.9,1.5c0.9,1.4,1.3,1.7,2.1,1.8l-0.1,0.9
C339.9,114.9,339.3,114.7,338.3,112.9"/>
<path class="st15" d="M220.2,17.8H219v6.8c0,0,1.1,0.1,2.4,0.1c1.9,0,3.2-1.1,3.2-3.2C224.6,18.8,222.8,17.8,220.2,17.8
M223.3,32.1l-1.7-3.1H219v7.9h-6.3v-24h7.3c6.7,0,11.1,2.6,11.1,8.1c0,2.5-1.1,4.6-3.5,5.9l1.7,2.6c1.7,2.7,2.4,3.1,4.1,3.3
l-0.5,4.4C226.9,37,225.7,36.6,223.3,32.1"/>
<polygon class="st15" points="236.4,36.8 236.4,12.8 250.8,12.8 250.8,18 242.8,18 242.8,22.2 250.2,22.2 250.2,27.3 242.8,27.3
242.8,31.6 251.8,31.6 251.4,36.8 "/>
<path class="st15" d="M268,37.2c-8.5,0-13.7-4.1-13.7-12.4c0-7.9,5.5-12.2,13.8-12.2c2,0,4.9,0.3,7.2,1.1l-0.5,5.1
c-2.9-0.8-5-0.9-6.7-0.9c-4.6,0-7.2,2.2-7.2,6.7c0,4.9,2.8,7.6,6.8,7.6c0.7,0,1.5-0.1,2.3-0.3v-6.4h6.3v7.4c0,1.7,0.1,3.1,0.1,3.1
C273.2,36.7,270.5,37.2,268,37.2"/>
<polygon class="st19" points="286.7,12.8 280.3,12.8 280.3,36.8 286.7,36.8 "/>
<path class="st15" d="M302.3,17.7c-3.8,0-6.1,2.8-6.1,6.6c0,4.2,2.4,7.7,6.2,7.7h0.2c4,0,6.2-3.3,6.2-7.3
C308.8,20.5,306.4,17.7,302.3,17.7 M302.3,37.2c-7.5,0-12.6-5-12.6-12.6c0-7.5,5.2-12.1,13-12.1c7.6,0,12.6,4.6,12.6,11.8
C315.3,32,310.2,37.2,302.3,37.2"/>
<polygon class="st15" points="318.3,12.8 325.3,12.8 335.4,27.5 335.4,12.8 341.5,12.8 341.5,36.8 334.3,36.8 324.4,22.2
324.4,36.8 318.3,36.8 "/>
<path class="st15" d="M280.8,69.2c-1.9,0-4.9-0.3-7.1-1.1l-0.1-5.2c3.1,0.9,5.2,1.2,6.9,1.2c2.4,0,3.1-1.1,3.1-2
c0-0.8-0.3-1.5-2.3-2.3l-1.4-0.6c-5-1.8-6.1-4.4-6-7.1c0-3.8,2.8-7.6,9.4-7.6c1.7,0,4.2,0.2,6.2,0.9l-0.5,4.9
c-2.3-0.6-4-0.8-5.1-0.8c-2.5,0-3.2,0.9-3.2,2c0,0.9,0.4,1.5,3,2.5l1.4,0.5c4.6,1.7,5.6,4.2,5.6,6.9
C290.6,64.6,288.5,69.2,280.8,69.2"/>
<path class="st15" d="M304.8,69.2c-7.7,0-10.9-3.8-10.9-11.6V44.8h6.3v13.1c0,3.8,1.3,5.9,5.2,5.9c3.2,0,4.4-2,4.4-5.7V44.8h6.1
v12.7C315.9,65,312.2,69.2,304.8,69.2"/>
<path class="st15" d="M328.6,49.9c-1.1,0-1.5,0-2.3,0v13.6c0.9,0.1,1.7,0.1,2.8,0.1c4.4,0,7-2.3,7-6.6
C336,52.2,332.7,49.9,328.6,49.9 M329.1,68.9c-3.1,0-5.2,0-9.2,0v-24h8.3c8.1,0,14.4,4,14.4,11.8C342.5,64.8,337.3,68.9,329.1,68.9
"/>
<polygon class="st20" points="250.8,10.9 236.4,10.9 250.8,6.6 "/>
</g>
<g>
<path d="M219.2,148.1l1,0.3c-0.2,0.9-0.6,1.5-1.2,2c-0.6,0.5-1.3,0.7-2.1,0.7c-0.8,0-1.5-0.2-2.1-0.5c-0.5-0.3-0.9-0.8-1.2-1.5
c-0.3-0.7-0.4-1.4-0.4-2.1c0-0.8,0.2-1.5,0.5-2.1c0.3-0.6,0.8-1.1,1.3-1.4c0.6-0.3,1.2-0.5,1.9-0.5c0.8,0,1.5,0.2,2,0.6
s0.9,1,1.1,1.7l-1,0.2c-0.2-0.6-0.4-1-0.8-1.3s-0.8-0.4-1.3-0.4c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.7,0.7-0.9,1.2
c-0.2,0.5-0.2,1-0.2,1.5c0,0.7,0.1,1.3,0.3,1.8c0.2,0.5,0.5,0.9,0.9,1.1s0.9,0.4,1.3,0.4c0.6,0,1.1-0.2,1.5-0.5
C218.7,149.3,219,148.8,219.2,148.1z"/>
<path d="M225.3,149.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3H222
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C224.9,149.8,225.1,149.5,225.3,149.1z M222.1,147.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C222.3,146.6,222.1,147,222.1,147.5z"/>
<path d="M229.6,150l0.1,0.9c-0.3,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.6-0.1-0.8-0.2c-0.2-0.1-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.6-0.1-1.1
v-3.3H227v-0.8h0.7v-1.4l1-0.6v2h1v0.8h-1v3.3c0,0.3,0,0.5,0.1,0.5c0,0.1,0.1,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1
C229.3,150.1,229.4,150.1,229.6,150z"/>
<path d="M232.6,150l0.1,0.9c-0.3,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.6-0.1-0.8-0.2c-0.2-0.1-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.6-0.1-1.1
v-3.3H230v-0.8h0.7v-1.4l1-0.6v2h1v0.8h-1v3.3c0,0.3,0,0.5,0.1,0.5c0,0.1,0.1,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1
C232.3,150.1,232.5,150.1,232.6,150z"/>
<path d="M237.5,149.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C237.2,149.8,237.4,149.5,237.5,149.1z M234.3,147.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C234.5,146.6,234.4,147,234.3,147.5z"/>
<path d="M246.5,150.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7c0,0.2,0.1,0.5,0.2,0.7h-1C246.6,150.7,246.5,150.5,246.5,150.2z M246.4,148
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V148z"/>
<path d="M252.6,148.8l1,0.1c-0.1,0.7-0.4,1.2-0.8,1.5c-0.4,0.4-1,0.6-1.6,0.6c-0.8,0-1.4-0.3-1.9-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-0.6,0.1-1.2,0.3-1.6s0.5-0.8,0.9-1c0.4-0.2,0.9-0.3,1.4-0.3c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.8,0.8,1.3l-0.9,0.1
c-0.1-0.4-0.2-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.9-0.5,1.7c0,0.8,0.1,1.3,0.4,1.7
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.7-0.1,1-0.3C252.4,149.6,252.5,149.3,252.6,148.8z"/>
<path d="M256.5,150l0.1,0.9c-0.3,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.6-0.1-0.8-0.2c-0.2-0.1-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.6-0.1-1.1
v-3.3h-0.7v-0.8h0.7v-1.4l1-0.6v2h1v0.8h-1v3.3c0,0.3,0,0.5,0.1,0.5c0,0.1,0.1,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1
C256.2,150.1,256.3,150.1,256.5,150z"/>
<path d="M257.4,144.1V143h1v1.1H257.4z M257.4,150.9v-5.7h1v5.7H257.4z"/>
<path d="M259.5,148c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C259.8,149.7,259.5,149,259.5,148z
M260.5,148c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C260.7,146.8,260.5,147.3,260.5,148z"/>
<path d="M266,150.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H266z"/>
<path d="M279.1,149.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C278.7,149.8,278.9,149.5,279.1,149.1z M275.9,147.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C276.1,146.6,275.9,147,275.9,147.5z"/>
<path d="M280.9,149.2l1-0.2c0.1,0.4,0.2,0.7,0.4,0.9c0.2,0.2,0.6,0.3,1,0.3c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.3-0.4,0.3-0.6
c0-0.2-0.1-0.4-0.3-0.5c-0.1-0.1-0.5-0.2-1-0.3c-0.7-0.2-1.2-0.3-1.5-0.5c-0.3-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8
c0-0.3,0.1-0.5,0.2-0.7c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.8,0.1,1.2,0.2
c0.3,0.1,0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.5,0.3,0.9l-0.9,0.1c0-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.5-0.2-0.9-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.2c0.7,0.2,1.2,0.3,1.4,0.4
c0.3,0.1,0.5,0.3,0.6,0.5c0.2,0.2,0.2,0.5,0.2,0.8c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.3-0.5,0.5-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2
c-0.7,0-1.3-0.2-1.7-0.5C281.3,150.3,281,149.8,280.9,149.2z"/>
<path d="M288.9,150l0.1,0.9c-0.3,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.6-0.1-0.8-0.2c-0.2-0.1-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.6-0.1-1.1
v-3.3h-0.7v-0.8h0.7v-1.4l1-0.6v2h1v0.8h-1v3.3c0,0.3,0,0.5,0.1,0.5c0,0.1,0.1,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1
C288.6,150.1,288.7,150.1,288.9,150z"/>
<path d="M296.6,148.8l1,0.1c-0.1,0.7-0.4,1.2-0.8,1.5c-0.4,0.4-1,0.6-1.6,0.6c-0.8,0-1.4-0.3-1.9-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-0.6,0.1-1.2,0.3-1.6s0.5-0.8,0.9-1c0.4-0.2,0.9-0.3,1.4-0.3c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.8,0.8,1.3l-0.9,0.1
c-0.1-0.4-0.2-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.9-0.5,1.7c0,0.8,0.1,1.3,0.4,1.7
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.7-0.1,1-0.3C296.4,149.6,296.6,149.3,296.6,148.8z"/>
<path d="M298,148c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C298.3,149.7,298,149,298,148z
M299,148c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C299.2,146.8,299,147.3,299,148z"/>
<path d="M304.8,150.9v-5h-0.9v-0.8h0.9v-0.6c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.2,0.6-0.2,1-0.2
c0.3,0,0.6,0,0.9,0.1l-0.1,0.8c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.6,0.2s-0.2,0.4-0.2,0.7v0.5h1.1v0.8h-1.1v5H304.8z"/>
<path d="M307.6,144.1V143h1v1.1H307.6z M307.6,150.9v-5.7h1v5.7H307.6z"/>
<path d="M310,150.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H310z"/>
<path d="M319.9,150.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7c0,0.2,0.1,0.5,0.2,0.7h-1C320,150.7,319.9,150.5,319.9,150.2z M319.8,148
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V148z"/>
<path d="M322.3,150.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H322.3z"/>
<path d="M332.1,148.8l1,0.1c-0.1,0.7-0.4,1.2-0.8,1.5c-0.4,0.4-1,0.6-1.6,0.6c-0.8,0-1.4-0.3-1.9-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-0.6,0.1-1.2,0.3-1.6s0.5-0.8,0.9-1c0.4-0.2,0.9-0.3,1.4-0.3c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.8,0.8,1.3L332,147
c-0.1-0.4-0.2-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.9-0.5,1.7c0,0.8,0.1,1.3,0.4,1.7
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.7-0.1,1-0.3C331.9,149.6,332,149.3,332.1,148.8z"/>
<path d="M337.8,149.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C337.4,149.8,337.6,149.5,337.8,149.1z M334.6,147.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C334.8,146.6,334.6,147,334.6,147.5z M335.7,144.5l0.7-1.5
h1.3l-1.2,1.5H335.7z"/>
<path d="M343.9,149.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C343.6,149.8,343.8,149.5,343.9,149.1z M340.7,147.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C340.9,146.6,340.8,147,340.7,147.5z"/>
<path d="M349.2,153.1v-7.9h0.9v0.7c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.6,0.8,1.1
c0.2,0.5,0.3,1,0.3,1.5c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.8-0.9,1.1c-0.4,0.2-0.8,0.4-1.3,0.4c-0.3,0-0.6-0.1-0.9-0.2
c-0.3-0.1-0.5-0.3-0.6-0.5v2.8H349.2z M350,148.1c0,0.7,0.1,1.3,0.4,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5
c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.1-1.3-0.4-1.6c-0.3-0.4-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.6C350.2,146.8,350,147.3,350,148.1
z"/>
<path d="M359,150.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6s0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7s0.1,0.5,0.2,0.7h-1C359.1,150.7,359,150.5,359,150.2z M358.9,148
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
s0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V148z"/>
<path d="M361.4,150.9v-5.7h0.9v0.9c0.2-0.4,0.4-0.7,0.6-0.8c0.2-0.1,0.4-0.2,0.6-0.2c0.3,0,0.7,0.1,1,0.3l-0.3,0.9
c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.3-0.2,0.7-0.2,1.1v3H361.4z"/>
<path d="M213.4,165.9V158h1v7.9H213.4z"/>
<path d="M215.8,159.1v-1.1h1v0.9c0,0.5-0.1,0.8-0.2,1c-0.2,0.3-0.4,0.5-0.7,0.7l-0.2-0.4c0.2-0.1,0.3-0.2,0.4-0.4
c0.1-0.2,0.1-0.4,0.2-0.7H215.8z"/>
<path d="M223.6,158h1v4.5c0,0.8-0.1,1.4-0.3,1.9c-0.2,0.5-0.5,0.8-1,1.1c-0.5,0.3-1.1,0.4-1.8,0.4c-0.7,0-1.3-0.1-1.8-0.4
c-0.5-0.3-0.8-0.6-1-1.1s-0.3-1.1-0.3-2V158h1v4.5c0,0.7,0.1,1.2,0.2,1.5c0.1,0.3,0.3,0.6,0.7,0.8c0.3,0.2,0.7,0.3,1.1,0.3
c0.8,0,1.3-0.2,1.6-0.5c0.3-0.3,0.5-1,0.5-2V158z"/>
<path d="M226.3,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H226.3z"/>
<path d="M232.4,159.1V158h1v1.1H232.4z M232.4,165.9v-5.7h1v5.7H232.4z"/>
<path d="M234.5,163c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C234.7,164.7,234.5,164,234.5,163z
M235.4,163c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C235.6,161.8,235.4,162.3,235.4,163z"/>
<path d="M240.9,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H240.9z"/>
<path d="M254,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C253.7,164.8,253.9,164.5,254,164.1z M250.8,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C251,161.6,250.9,162,250.8,162.5z"/>
<path d="M260,165.9v-0.8c-0.4,0.6-1,1-1.8,1c-0.3,0-0.7-0.1-0.9-0.2c-0.3-0.1-0.5-0.3-0.7-0.5c-0.1-0.2-0.2-0.4-0.3-0.7
c0-0.2-0.1-0.5-0.1-0.9v-3.5h1v3.2c0,0.5,0,0.8,0.1,1c0.1,0.3,0.2,0.5,0.4,0.6c0.2,0.1,0.4,0.2,0.7,0.2s0.6-0.1,0.8-0.2
c0.3-0.1,0.4-0.4,0.5-0.6c0.1-0.3,0.2-0.6,0.2-1.1v-3.1h1v5.7H260z"/>
<path d="M262.3,165.9v-5.7h0.9v0.9c0.2-0.4,0.4-0.7,0.6-0.8c0.2-0.1,0.4-0.2,0.6-0.2c0.3,0,0.7,0.1,1,0.3l-0.3,0.9
c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.3-0.2,0.7-0.2,1.1v3H262.3z"/>
<path d="M265.6,163c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C265.9,164.7,265.6,164,265.6,163z
M266.6,163c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C266.8,161.8,266.6,162.3,266.6,163z"/>
<path d="M272.1,168.1v-7.9h0.9v0.7c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.6,0.8,1.1
c0.2,0.5,0.3,1,0.3,1.5c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.8-0.9,1.1c-0.4,0.2-0.8,0.4-1.3,0.4c-0.3,0-0.6-0.1-0.9-0.2
c-0.3-0.1-0.5-0.3-0.6-0.5v2.8H272.1z M273,163.1c0,0.7,0.1,1.3,0.4,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5
c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.1-1.3-0.4-1.6c-0.3-0.4-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.6C273.2,161.8,273,162.3,273,163.1
z"/>
<path d="M282.1,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C281.8,164.8,282,164.5,282.1,164.1z M279,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C279.2,161.6,279,162,279,162.5z M280,159.5l0.7-1.5h1.3
l-1.2,1.5H280z"/>
<path d="M288.3,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3H285
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C287.9,164.8,288.1,164.5,288.3,164.1z M285.1,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C285.3,161.6,285.1,162,285.1,162.5z"/>
<path d="M290.5,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H290.5z"/>
<path d="M296.6,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H296.6z"/>
<path d="M306.6,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C306.3,164.8,306.5,164.5,306.6,164.1z M303.4,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C303.6,161.6,303.5,162,303.4,162.5z"/>
<path d="M315.6,165.9v-0.7c-0.4,0.6-0.9,0.8-1.6,0.8c-0.5,0-0.9-0.1-1.3-0.4c-0.4-0.3-0.7-0.6-0.9-1c-0.2-0.4-0.3-1-0.3-1.5
c0-0.6,0.1-1.1,0.3-1.5c0.2-0.5,0.5-0.8,0.9-1.1s0.8-0.4,1.3-0.4c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.6V158h1v7.9H315.6z
M312.5,163c0,0.7,0.2,1.3,0.5,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.4-0.9,0.4-1.6c0-0.8-0.2-1.4-0.5-1.7
s-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5C312.7,161.7,312.5,162.3,312.5,163z"/>
<path d="M321.7,165.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7c0,0.2,0.1,0.5,0.2,0.7h-1C321.8,165.7,321.8,165.5,321.7,165.2z M321.6,163
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V163z"/>
<path d="M324.1,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H324.1z"/>
<path d="M329.9,164.2l1-0.2c0.1,0.4,0.2,0.7,0.4,0.9c0.2,0.2,0.6,0.3,1,0.3c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.3-0.4,0.3-0.6
c0-0.2-0.1-0.4-0.3-0.5c-0.1-0.1-0.5-0.2-1-0.3c-0.7-0.2-1.2-0.3-1.5-0.5c-0.3-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8
c0-0.3,0.1-0.5,0.2-0.7c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.8,0.1,1.2,0.2
c0.3,0.1,0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.5,0.3,0.9l-0.9,0.1c0-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.5-0.2-0.9-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.2c0.7,0.2,1.2,0.3,1.4,0.4
c0.3,0.1,0.5,0.3,0.6,0.5c0.2,0.2,0.2,0.5,0.2,0.8c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.3-0.5,0.5-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2
c-0.7,0-1.3-0.2-1.7-0.5C330.2,165.3,330,164.8,329.9,164.2z"/>
<path d="M338.8,165.9V158h1v7.9H338.8z"/>
<path d="M345.1,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C344.8,164.8,345,164.5,345.1,164.1z M342,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C342.2,161.6,342,162,342,162.5z"/>
<path d="M354.1,163.8l1,0.1c-0.1,0.7-0.4,1.2-0.8,1.5c-0.4,0.4-1,0.6-1.6,0.6c-0.8,0-1.4-0.3-1.9-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-0.6,0.1-1.2,0.3-1.6s0.5-0.8,0.9-1c0.4-0.2,0.9-0.3,1.4-0.3c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.8,0.8,1.3l-0.9,0.1
c-0.1-0.4-0.2-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.9-0.5,1.7c0,0.8,0.1,1.3,0.4,1.7
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.7-0.1,1-0.3C353.9,164.6,354.1,164.3,354.1,163.8z"/>
<path d="M359.6,165.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6s0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7s0.1,0.5,0.2,0.7h-1C359.7,165.7,359.7,165.5,359.6,165.2z M359.6,163
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
s0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V163z"/>
<path d="M365.7,165.9v-0.7c-0.4,0.6-0.9,0.8-1.6,0.8c-0.5,0-0.9-0.1-1.3-0.4c-0.4-0.3-0.7-0.6-0.9-1c-0.2-0.4-0.3-1-0.3-1.5
c0-0.6,0.1-1.1,0.3-1.5c0.2-0.5,0.5-0.8,0.9-1.1s0.8-0.4,1.3-0.4c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.6V158h1v7.9H365.7z
M362.7,163c0,0.7,0.2,1.3,0.5,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.4-0.9,0.4-1.6c0-0.8-0.2-1.4-0.5-1.7
s-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5C362.8,161.7,362.7,162.3,362.7,163z"/>
<path d="M368.1,165.9v-5.7h0.9v0.9c0.2-0.4,0.4-0.7,0.6-0.8c0.2-0.1,0.4-0.2,0.6-0.2c0.3,0,0.7,0.1,1,0.3l-0.3,0.9
c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.3-0.2,0.7-0.2,1.1v3H368.1z"/>
<path d="M375.7,164.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4c-0.4,0.3-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C375.4,164.8,375.6,164.5,375.7,164.1z M372.5,162.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C372.7,161.6,372.6,162,372.5,162.5z"/>
<path d="M384.7,165.9v-0.7c-0.4,0.6-0.9,0.8-1.6,0.8c-0.5,0-0.9-0.1-1.3-0.4c-0.4-0.3-0.7-0.6-0.9-1c-0.2-0.4-0.3-1-0.3-1.5
c0-0.6,0.1-1.1,0.3-1.5c0.2-0.5,0.5-0.8,0.9-1.1s0.8-0.4,1.3-0.4c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.6V158h1v7.9H384.7z
M381.6,163c0,0.7,0.2,1.3,0.5,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.4-0.9,0.4-1.6c0-0.8-0.2-1.4-0.5-1.7
s-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5C381.8,161.7,381.6,162.3,381.6,163z"/>
<path d="M390.8,165.9v-0.8c-0.4,0.6-1,1-1.8,1c-0.3,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.5c-0.1-0.2-0.2-0.4-0.3-0.7
c0-0.2-0.1-0.5-0.1-0.9v-3.5h1v3.2c0,0.5,0,0.8,0.1,1c0.1,0.3,0.2,0.5,0.4,0.6c0.2,0.1,0.4,0.2,0.7,0.2s0.6-0.1,0.8-0.2
c0.3-0.1,0.4-0.4,0.5-0.6s0.2-0.6,0.2-1.1v-3.1h1v5.7H390.8z"/>
<path d="M396.5,165.9V158h5.3v0.9h-4.3v2.4h3.7v0.9h-3.7v3.6H396.5z"/>
<path d="M402.6,163c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C402.9,164.7,402.6,164,402.6,163z
M403.6,163c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C403.8,161.8,403.6,162.3,403.6,163z"/>
<path d="M409.1,165.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5s-0.4-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.1,0.4
c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H409.1z"/>
<path d="M418.9,165.9v-0.7c-0.4,0.6-0.9,0.8-1.6,0.8c-0.5,0-0.9-0.1-1.3-0.4c-0.4-0.3-0.7-0.6-0.9-1c-0.2-0.4-0.3-1-0.3-1.5
c0-0.6,0.1-1.1,0.3-1.5c0.2-0.5,0.5-0.8,0.9-1.1s0.8-0.4,1.3-0.4c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.6V158h1v7.9H418.9z
M415.9,163c0,0.7,0.2,1.3,0.5,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.4-0.9,0.4-1.6c0-0.8-0.2-1.4-0.5-1.7
s-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5C416,161.7,415.9,162.3,415.9,163z"/>
<path d="M421,164.2l1-0.2c0.1,0.4,0.2,0.7,0.4,0.9s0.6,0.3,1,0.3c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.3-0.4,0.3-0.6
c0-0.2-0.1-0.4-0.3-0.5c-0.1-0.1-0.5-0.2-1-0.3c-0.7-0.2-1.2-0.3-1.5-0.5c-0.3-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8
c0-0.3,0.1-0.5,0.2-0.7s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.8,0.1,1.2,0.2
c0.3,0.1,0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.5,0.3,0.9l-0.9,0.1c0-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.5-0.2-0.9-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.2c0.7,0.2,1.2,0.3,1.4,0.4
c0.3,0.1,0.5,0.3,0.6,0.5c0.2,0.2,0.2,0.5,0.2,0.8c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.3-0.5,0.5-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2
c-0.7,0-1.3-0.2-1.7-0.5C421.3,165.3,421.1,164.8,421,164.2z"/>
<path d="M213.6,180.9V173h5.7v0.9h-4.7v2.4h4.4v0.9h-4.4v2.7h4.8v0.9H213.6z"/>
<path d="M224.5,180.9v-0.8c-0.4,0.6-1,1-1.8,1c-0.3,0-0.7-0.1-0.9-0.2c-0.3-0.1-0.5-0.3-0.7-0.5c-0.1-0.2-0.2-0.4-0.3-0.7
c0-0.2-0.1-0.5-0.1-0.9v-3.5h1v3.2c0,0.5,0,0.8,0.1,1c0.1,0.3,0.2,0.5,0.4,0.6c0.2,0.1,0.4,0.2,0.7,0.2s0.6-0.1,0.8-0.2
c0.3-0.1,0.4-0.4,0.5-0.6c0.1-0.3,0.2-0.6,0.2-1.1v-3.1h1v5.7H224.5z"/>
<path d="M226.9,180.9v-5.7h0.9v0.9c0.2-0.4,0.4-0.7,0.6-0.8c0.2-0.1,0.4-0.2,0.6-0.2c0.3,0,0.7,0.1,1,0.3l-0.3,0.9
c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.3-0.2,0.7-0.2,1.1v3H226.9z"/>
<path d="M230.2,178c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C230.4,179.7,230.2,179,230.2,178z
M231.2,178c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C231.3,176.8,231.2,177.3,231.2,178z"/>
<path d="M236.7,183.1v-7.9h0.9v0.7c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.6,0.8,1.1
c0.2,0.5,0.3,1,0.3,1.5c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.8-0.9,1.1c-0.4,0.2-0.8,0.4-1.3,0.4c-0.3,0-0.6-0.1-0.9-0.2
c-0.3-0.1-0.5-0.3-0.6-0.5v2.8H236.7z M237.5,178.1c0,0.7,0.1,1.3,0.4,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5
c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.1-1.3-0.4-1.6c-0.3-0.4-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.6
C237.7,176.8,237.5,177.3,237.5,178.1z"/>
<path d="M246.7,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C246.3,179.8,246.5,179.5,246.7,179.1z M243.5,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C243.7,176.6,243.5,177,243.5,177.5z M244.5,174.5l0.7-1.5
h1.3l-1.2,1.5H244.5z"/>
<path d="M252.8,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C252.5,179.8,252.6,179.5,252.8,179.1z M249.6,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C249.8,176.6,249.7,177,249.6,177.5z"/>
<path d="M255,180.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H255z"/>
<path d="M267.9,180.9v-0.7c-0.4,0.6-0.9,0.8-1.6,0.8c-0.5,0-0.9-0.1-1.3-0.4c-0.4-0.3-0.7-0.6-0.9-1c-0.2-0.4-0.3-1-0.3-1.5
c0-0.6,0.1-1.1,0.3-1.5c0.2-0.5,0.5-0.8,0.9-1.1s0.8-0.4,1.3-0.4c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.6V173h1v7.9H267.9z
M264.8,178c0,0.7,0.2,1.3,0.5,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.4-0.9,0.4-1.6c0-0.8-0.2-1.4-0.5-1.7
s-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5C265,176.7,264.8,177.3,264.8,178z"/>
<path d="M274.2,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3H271
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C273.9,179.8,274.1,179.5,274.2,179.1z M271,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C271.2,176.6,271.1,177,271,177.5z"/>
<path d="M279.6,180.9V173h2.7c0.6,0,1.1,0,1.4,0.1c0.5,0.1,0.8,0.3,1.2,0.6c0.4,0.4,0.7,0.8,0.9,1.3c0.2,0.5,0.3,1.2,0.3,1.9
c0,0.6-0.1,1.1-0.2,1.6s-0.3,0.8-0.5,1.1s-0.5,0.5-0.7,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0.1-1.3,0.1H279.6z M280.6,180
h1.7c0.5,0,0.9,0,1.2-0.1c0.3-0.1,0.5-0.2,0.7-0.4c0.2-0.2,0.4-0.6,0.6-1c0.1-0.4,0.2-0.9,0.2-1.5c0-0.8-0.1-1.5-0.4-1.9
c-0.3-0.4-0.6-0.7-1-0.9c-0.3-0.1-0.7-0.2-1.3-0.2h-1.7V180z"/>
<path d="M291.3,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C291,179.8,291.2,179.5,291.3,179.1z M288.1,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C288.3,176.6,288.2,177,288.1,177.5z M289.2,174.5l0.7-1.5
h1.3l-1.2,1.5H289.2z"/>
<path d="M295.1,180.9l-2.2-5.7h1l1.2,3.4c0.1,0.4,0.3,0.8,0.4,1.1c0.1-0.3,0.2-0.7,0.4-1.1l1.3-3.5h1l-2.2,5.7H295.1z"/>
<path d="M302.9,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C302.6,179.8,302.8,179.5,302.9,179.1z M299.8,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C300,176.6,299.8,177,299.8,177.5z"/>
<path d="M305.1,180.9V173h1v7.9H305.1z"/>
<path d="M307.2,178c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C307.5,179.7,307.2,179,307.2,178z
M308.2,178c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5s0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C308.4,176.8,308.2,177.3,308.2,178z"/>
<path d="M313.7,183.1v-7.9h0.9v0.7c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.6,0.8,1.1
c0.2,0.5,0.3,1,0.3,1.5c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.8-0.9,1.1c-0.4,0.2-0.8,0.4-1.3,0.4c-0.3,0-0.6-0.1-0.9-0.2
c-0.3-0.1-0.5-0.3-0.6-0.5v2.8H313.7z M314.6,178.1c0,0.7,0.1,1.3,0.4,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5
c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.1-1.3-0.4-1.6c-0.3-0.4-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.6
C314.7,176.8,314.6,177.3,314.6,178.1z"/>
<path d="M319.8,183.1v-7.9h0.9v0.7c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.6,0.8,1.1
c0.2,0.5,0.3,1,0.3,1.5c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.8-0.9,1.1c-0.4,0.2-0.8,0.4-1.3,0.4c-0.3,0-0.6-0.1-0.9-0.2
c-0.3-0.1-0.5-0.3-0.6-0.5v2.8H319.8z M320.7,178.1c0,0.7,0.1,1.3,0.4,1.6c0.3,0.4,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5
c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.1-1.3-0.4-1.6c-0.3-0.4-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.6
C320.9,176.8,320.7,177.3,320.7,178.1z"/>
<path d="M329.9,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C329.5,179.8,329.7,179.5,329.9,179.1z M326.7,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C326.9,176.6,326.7,177,326.7,177.5z"/>
<path d="M332.1,180.9v-5.7h0.9v0.8c0.2-0.3,0.4-0.5,0.7-0.7c0.3-0.2,0.6-0.3,1-0.3c0.4,0,0.8,0.1,1,0.3c0.3,0.2,0.5,0.4,0.6,0.7
c0.5-0.7,1-1,1.8-1c0.6,0,1,0.2,1.3,0.5c0.3,0.3,0.5,0.8,0.5,1.4v3.9h-1v-3.6c0-0.4,0-0.7-0.1-0.8c-0.1-0.2-0.2-0.3-0.3-0.4
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3v3.3h-1v-3.7c0-0.4-0.1-0.8-0.2-1s-0.4-0.3-0.8-0.3
c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.4-0.5,0.6c-0.1,0.3-0.2,0.7-0.2,1.2v3H332.1z"/>
<path d="M345.1,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4s-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C344.8,179.8,345,179.5,345.1,179.1z M342,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C342.2,176.6,342,177,342,177.5z"/>
<path d="M347.3,180.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.4-0.2-0.7-0.2
c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H347.3z"/>
<path d="M355.6,180l0.1,0.9c-0.3,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.6-0.1-0.8-0.2c-0.2-0.1-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.6-0.1-1.1
v-3.3h-0.7v-0.8h0.7v-1.4l1-0.6v2h1v0.8h-1v3.3c0,0.3,0,0.5,0.1,0.5c0,0.1,0.1,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1
C355.3,180.1,355.4,180.1,355.6,180z"/>
<path d="M359.7,180.9V173h3.5c0.7,0,1.2,0.1,1.6,0.2c0.4,0.1,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.8,0.3,1.2c0,0.6-0.2,1-0.5,1.4
c-0.4,0.4-0.9,0.6-1.7,0.7c0.3,0.1,0.5,0.3,0.6,0.4c0.3,0.3,0.6,0.6,0.9,1l1.4,2.1h-1.3l-1-1.6c-0.3-0.5-0.6-0.8-0.8-1.1
c-0.2-0.3-0.4-0.4-0.5-0.5c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.2v3.5H359.7z M360.8,176.5h2.2c0.5,0,0.8,0,1.1-0.1
c0.3-0.1,0.5-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.2-0.7c0-0.4-0.1-0.7-0.4-0.9c-0.3-0.2-0.7-0.4-1.3-0.4h-2.5V176.5z"/>
<path d="M371.4,179.1l1,0.1c-0.2,0.6-0.4,1-0.9,1.4c-0.4,0.3-1,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.7-1.2-0.7-2.2
c0-1,0.2-1.7,0.7-2.2c0.5-0.5,1.1-0.8,1.9-0.8c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.1,0,0.1,0,0.3h-4.3
c0,0.6,0.2,1.1,0.5,1.4s0.7,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3C371.1,179.8,371.3,179.5,371.4,179.1z M368.3,177.5h3.2
c0-0.5-0.2-0.8-0.4-1.1c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.1-1.1,0.4C368.5,176.6,368.3,177,368.3,177.5z M369.3,174.5l0.7-1.5
h1.3l-1.2,1.5H369.3z"/>
<path d="M373.5,181.4l0.9,0.1c0,0.3,0.1,0.5,0.3,0.6c0.2,0.2,0.6,0.3,1,0.3c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.4,0.5-0.8
c0-0.2,0.1-0.6,0.1-1.2c-0.4,0.5-0.9,0.7-1.6,0.7c-0.8,0-1.4-0.3-1.8-0.8c-0.4-0.6-0.6-1.2-0.6-2c0-0.5,0.1-1,0.3-1.5
c0.2-0.5,0.5-0.8,0.9-1.1c0.4-0.3,0.8-0.4,1.3-0.4c0.7,0,1.2,0.3,1.7,0.8v-0.7h0.9v4.9c0,0.9-0.1,1.5-0.3,1.9
c-0.2,0.4-0.5,0.7-0.9,0.9c-0.4,0.2-0.9,0.3-1.4,0.3c-0.7,0-1.2-0.2-1.6-0.5C373.7,182.4,373.4,182,373.5,181.4z M374.3,177.9
c0,0.7,0.1,1.3,0.4,1.6s0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5c0.3-0.3,0.5-0.9,0.5-1.6c0-0.7-0.2-1.2-0.5-1.6s-0.7-0.5-1.1-0.5
c-0.4,0-0.8,0.2-1.1,0.5C374.4,176.7,374.3,177.3,374.3,177.9z"/>
<path d="M379.8,174.1V173h1v1.1H379.8z M379.8,180.9v-5.7h1v5.7H379.8z"/>
<path d="M381.8,178c0-1.1,0.3-1.8,0.9-2.3c0.5-0.4,1.1-0.6,1.8-0.6c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.7,1.2,0.7,2.1
c0,0.7-0.1,1.3-0.3,1.7c-0.2,0.4-0.5,0.7-1,1c-0.4,0.2-0.9,0.3-1.4,0.3c-0.8,0-1.4-0.3-1.9-0.8C382.1,179.7,381.8,179,381.8,178z
M382.8,178c0,0.7,0.2,1.3,0.5,1.6s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5c0.3-0.4,0.5-0.9,0.5-1.7c0-0.7-0.2-1.2-0.5-1.6
s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C383,176.8,382.8,177.3,382.8,178z"/>
<path d="M388.3,180.9v-5.7h0.9v0.8c0.4-0.6,1-0.9,1.8-0.9c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5c0.1,0.2,0.2,0.4,0.3,0.7
c0,0.2,0.1,0.5,0.1,0.9v3.5h-1v-3.5c0-0.4,0-0.7-0.1-0.9c-0.1-0.2-0.2-0.4-0.4-0.5s-0.4-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.1,0.4
c-0.3,0.3-0.4,0.8-0.4,1.5v3.1H388.3z"/>
<path d="M398.2,180.2c-0.4,0.3-0.7,0.5-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.6,0-1.1-0.2-1.4-0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6s0.4-0.2,0.7-0.3c0.2-0.1,0.5-0.1,0.9-0.1c0.8-0.1,1.4-0.2,1.7-0.3
c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.8c-0.2-0.2-0.6-0.3-1.1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.4,0.4-0.5,0.8l-0.9-0.1
c0.1-0.4,0.2-0.7,0.4-1s0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.3-0.2c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.5,0.3,0.7,0.4s0.2,0.4,0.3,0.7
c0,0.2,0,0.5,0,0.9v1.3c0,0.9,0,1.5,0.1,1.7s0.1,0.5,0.2,0.7h-1C398.3,180.7,398.2,180.5,398.2,180.2z M398.1,178
c-0.4,0.1-0.9,0.3-1.6,0.4c-0.4,0.1-0.7,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.6
s0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.6-0.7c0.1-0.2,0.2-0.5,0.2-1V178z"/>
<path d="M400.5,180.9V173h1v7.9H400.5z"/>
<path d="M407.9,183.2c-0.5-0.7-1-1.5-1.4-2.4c-0.4-0.9-0.6-1.8-0.6-2.8c0-0.9,0.1-1.7,0.4-2.4c0.3-0.9,0.8-1.8,1.5-2.7h0.7
c-0.4,0.7-0.7,1.3-0.9,1.6c-0.2,0.5-0.4,1-0.5,1.5c-0.2,0.7-0.2,1.3-0.2,2c0,1.7,0.5,3.4,1.6,5.2H407.9z"/>
<path d="M409.9,180.9V173h5.3v0.9h-4.3v2.4h3.7v0.9h-3.7v3.6H409.9z"/>
<path d="M416.6,180.9V173h5.7v0.9h-4.7v2.4h4.4v0.9h-4.4v2.7h4.8v0.9H416.6z"/>
<path d="M423.9,180.9V173h2.7c0.6,0,1.1,0,1.4,0.1c0.5,0.1,0.8,0.3,1.2,0.6c0.4,0.4,0.7,0.8,0.9,1.3s0.3,1.2,0.3,1.9
c0,0.6-0.1,1.1-0.2,1.6c-0.1,0.5-0.3,0.8-0.5,1.1c-0.2,0.3-0.5,0.5-0.7,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0.1-1.3,0.1
H423.9z M424.9,180h1.7c0.5,0,0.9,0,1.2-0.1c0.3-0.1,0.5-0.2,0.7-0.4c0.2-0.2,0.4-0.6,0.6-1s0.2-0.9,0.2-1.5c0-0.8-0.1-1.5-0.4-1.9
s-0.6-0.7-1-0.9c-0.3-0.1-0.7-0.2-1.3-0.2h-1.7V180z"/>
<path d="M431.9,180.9V173h5.7v0.9h-4.7v2.4h4.4v0.9h-4.4v2.7h4.8v0.9H431.9z"/>
<path d="M439.2,180.9V173h3.5c0.7,0,1.2,0.1,1.6,0.2c0.4,0.1,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.8,0.3,1.2c0,0.6-0.2,1-0.5,1.4
c-0.4,0.4-0.9,0.6-1.7,0.7c0.3,0.1,0.5,0.3,0.6,0.4c0.3,0.3,0.6,0.6,0.9,1l1.4,2.1h-1.3l-1-1.6c-0.3-0.5-0.6-0.8-0.8-1.1
c-0.2-0.3-0.4-0.4-0.5-0.5c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.2v3.5H439.2z M440.2,176.5h2.2c0.5,0,0.8,0,1.1-0.1
c0.3-0.1,0.5-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.2-0.7c0-0.4-0.1-0.7-0.4-0.9c-0.3-0.2-0.7-0.4-1.3-0.4h-2.5V176.5z"/>
<path d="M447.6,183.2h-0.7c1.1-1.7,1.6-3.4,1.6-5.2c0-0.7-0.1-1.3-0.2-2c-0.1-0.5-0.3-1.1-0.5-1.5c-0.1-0.3-0.4-0.9-0.9-1.6h0.7
c0.7,0.9,1.2,1.8,1.5,2.7c0.3,0.8,0.4,1.6,0.4,2.4c0,1-0.2,1.9-0.6,2.8C448.6,181.8,448.2,182.5,447.6,183.2z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg">
<symbol id="icon" viewBox="0 0 25 25" >
<path d="M12.5 5.46875C10.127 5.46875 8.20312 7.39258 8.20312 9.76562C8.20312 12.1387 10.127 14.0625 12.5 14.0625C14.873 14.0625 16.7969 12.1387 16.7969 9.76562C16.7969 7.39258 14.873 5.46875 12.5 5.46875ZM12.5 11.7188C11.4229 11.7188 10.5469 10.8423 10.5469 9.76562C10.5469 8.68652 11.4209 7.8125 12.5 7.8125C13.5791 7.8125 14.4531 8.68848 14.4531 9.76562C14.4531 10.8447 13.5791 11.7188 12.5 11.7188ZM12.5 0C5.5957 0 0 5.5957 0 12.5C0 19.4043 5.5957 25 12.5 25C19.4043 25 25 19.4043 25 12.5C25 5.5957 19.4043 0 12.5 0ZM12.5 22.6562C10.2183 22.6562 8.11719 21.8906 6.4209 20.6157C7.26562 18.9941 8.90625 17.9688 10.752 17.9688H14.2524C16.0957 17.9688 17.7344 18.9946 18.5825 20.6157C16.8848 21.8896 14.7803 22.6562 12.5 22.6562ZM20.3223 18.9697C19.0039 16.9092 16.7578 15.625 14.248 15.625H10.752C8.24414 15.625 5.99854 16.9067 4.67773 18.9688C3.2207 17.2119 2.34375 14.9561 2.34375 12.5C2.34375 6.89941 6.8999 2.34375 12.5 2.34375C18.1001 2.34375 22.6562 6.8999 22.6562 12.5C22.6562 14.9561 21.7773 17.2119 20.3223 18.9697Z"/>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,7 @@
@charset "UTF-8";
@import '../includes/fonts/roboto';
@import '../includes/fonts/roboto-condensed';
@import 'vars';
@import '../includes/publik';
@import 'custom';

View File

@ -0,0 +1 @@
../../alpes-maritimes-2018/combo/json/

View File

@ -0,0 +1,16 @@
{% extends "combo/page_template_2cols.html" %}
{% load combo %}
{% block before-main-content %}
{{ block.super }}
<div class="homepage-banner">
<div class="homepage-banner--wrapper page-width">
<div class="homepage-banner--left">
{% placeholder "banner-left" name="Bannière (bloc gauche)" %}
</div>
<div class="homepage-banner--right">
{% placeholder "banner-right" name="Bannière (bloc droit)" %}
</div>
</div>
</div>
{% endblock %}

View File

@ -0,0 +1,12 @@
{% extends "combo/wcs/tracking_code_input.html" %}
{% block intro-text %}
<p>
Vous navez pas de compte ? <br>
<span class="small">
Retrouvez votre démarche à laide du code de suivi qui vous a été envoyé par mail ou pas courrier
</span>
</p>
{% endblock %}
{% block submit-content %}Rechercher{% endblock %}

View File

@ -0,0 +1,12 @@
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="max-width: 600px;">
<tr>
<td style="padding: 20px 0; text-align: left; font-family: sans-serif;">
{% if email_header_img %}<img style="max-width: 80%" alt="{% firstof global_title "Compte Citoyen" %}" src="{{portal_url}}static/{{css_variant}}/{{ email_header_img }}"/>{% endif %}
</td>
{% if email_header_right_img %}
<td style="padding: 20px 0; text-align: right; font-family: sans-serif;">
<img style="max-width: 80%" src="{{portal_url}}static/{{css_variant}}/{{ email_header_right_img }}"/>
</td>
{% endif %}
</tr>
</table>

View File

@ -0,0 +1,5 @@
{% extends "includes/nav.html" %}
{% block nav-bottom %}
<div class="gru-nav-mask"></div>
{% endblock %}

View File

@ -0,0 +1,34 @@
{% extends "includes/user-info.html" %}
{% block user-info %}
{% if user.is_authenticated %}
<div class="toplinks--toggled-wrapper togglable">
<button aria-label="{% include "includes/user-info-user-name.html" %}" class="toplinks--togglable-btn togglable">
<svg class="toplinks-icon">
<use href="/static/{{css_variant}}/img/toplinks-icon.svg#icon" />
</svg>
<span class="desktop-only">
{% include "includes/user-info-user-name.html" %}
</span>
</button>
{{ block.super }}
</div>
{% else %}
{{ block.super }}
{% endif %}
{% endblock %}
{% block user-info-login-label %}
<span aria-label="{{ block.super }}">
<svg class="toplinks-icon">
<use href="static/{{css_variant}}/img/toplinks-icon.svg#icon" />
</svg>
<span class="desktop-only">
{{ block.super }}
</span>
</span>
{% endblock%}
{% block user-info-user-name %}
Mon compte
{% endblock %}

View File

@ -0,0 +1,14 @@
{% extends 'theme.html' %}
{% load static %}
{# move nav inside header-content block #}
{% block header-content %}
{{ block.super }}
{% block nav %}{% endblock %}
{% endblock %}
{% block after-header %}{% endblock %}
{# page title #}
{% block content-pre %}
{% placeholder "page-title" outer_tag="header" name="Titre de la page" %}
{% endblock %}

View File

@ -0,0 +1,41 @@
{% extends "wcs/front/formdata_steps.html" %}
{% block steps-list %}
<div class="theme-steps">
{% for page_label in page_labels %}
{% if forloop.counter == current_page_no %}
<strong class="theme-steps--page-nb">Étape {{ forloop.counter }} sur {{ page_labels|length }}</strong>
<h2 class="theme-steps--title">
{{ page_label }}
</h2>
<div class="theme-steps--progress-bar" style="--gradient-stop: calc(1% * {{ forloop.counter }} * 100 / {{ page_labels|length }})"></div>
{% endif%}
{% endfor%}
<p class="theme-steps--voir-etapes togglable">
<span class="theme-steps--voir" aria-label="Voir"></span>
<a class="theme-steps--panel-open" role="button">Toutes les étapes</a>
</p>
<div class="theme-steps--panel" >
<a class="theme-steps--panel-close" role="button
">
FERMER
<span class="theme-steps--panel-close-icon"></span>
</a>
{{ block.super }}
</div>
<div class="theme-steps--panel-mask"></div>
</div>
<script>
const openStepsBtn = document.querySelector('.theme-steps--panel-open')
const closeStepsBtn = document.querySelector('.theme-steps--panel-close')
const stepsMask = document.querySelector('.theme-steps--panel-mask')
closeStepsBtn.addEventListener('click', function(){
openStepsBtn.click()
});
stepsMask.addEventListener('click', function(){
openStepsBtn.click()
});
</script>
{% endblock%}