@geneui/components
Version:
The Gene UI components library designed for BI tools
67 lines (62 loc) • 137 kB
JavaScript
import { _ as _extends } from '../_rollupPluginBabelHelpers-e8fb2e5c.js';
import React__default, { useRef, useState, useEffect, useMemo, useCallback } from 'react';
import PropTypes from 'prop-types';
import { c as classnames } from '../index-031ff73c.js';
import { s as screenTypes } from '../configs-00612ce0.js';
import { c as childrenOf, n as noop } from '../index-a0e4e333.js';
import useToggle from '../hooks/useToggle.js';
import useDeviceType from '../hooks/useDeviceType.js';
import useClickOutside from '../hooks/useClickOutside.js';
import Empty from '../Empty/index.js';
import Icon from '../Icon/index.js';
import Popover from '../Popover/index.js';
import Avatar from '../Avatar/index.js';
import { T as Tooltip } from '../index-6d7e99cd.js';
import Menu from '../Menu/index.js';
import Search from '../Search/index.js';
import Divider from '../Divider/index.js';
import { s as styleInject } from '../style-inject.es-746bb8ed.js';
import '../dateValidation-67caec66.js';
import '../_commonjsHelpers-24198af3.js';
import 'react-dom';
import '../hooks/useWindowSize.js';
import '../hooks/useDebounce.js';
import '../tslib.es6-f211516f.js';
import '../index-122432cd.js';
import '../hooks/useUpdatableRef.js';
import '../hooks/useForceUpdate.js';
import '../GeneUIProvider/index.js';
import '../Portal/index.js';
import '../Scrollbar/index.js';
import '../guid-8ddf77b3.js';
import '../Option/index.js';
import '../useEllipsisDetection-4d997d5d.js';
import '../ExtendedInput/index.js';
import '../SuggestionList/index.js';
import '../hooks/useKeyDown.js';
import '../config-1053d64d.js';
import '../callAfterDelay-7272faca.js';
var css_248z = "[data-gene-ui-version=\"2.16.5\"] .profile-menu-holder{min-width:25rem;width:100%}[data-gene-ui-version=\"2.16.5\"] .user-profile-c{align-items:center;background:rgba(var(--background-sc-rgb),.05);border-radius:1.6rem;box-shadow:0 .3rem .6rem 0 #00000029;color:var(--background-sc);cursor:pointer;display:flex;font:600 1.2rem/1.6rem var(--font-family);padding:.3rem;transition:color .3s,background .3s}[data-gene-ui-version=\"2.16.5\"] .user-profile-c:focus-visible{border-radius:1.6rem;outline:.2rem var(--hero) solid}[data-gene-ui-version=\"2.16.5\"] .user-profile-c>p{max-width:25.6rem;padding:.3rem 1.6rem;-webkit-user-select:none;user-select:none}[data-gene-ui-version=\"2.16.5\"] .user-profile-c .user-profile-text-select{-webkit-user-select:auto;user-select:auto}[data-gene-ui-version=\"2.16.5\"] .user-profile-c>.icon{margin:0 .7rem 0 0}html[dir=rtl] .user-profile-c>.icon{margin:0 0 0 .7rem}[data-gene-ui-version=\"2.16.5\"] .user-profile-c:hover{background:rgba(var(--background-sc-rgb),.2)}[data-gene-ui-version=\"2.16.5\"] .user-profile-c.active{background-color:rgba(var(--background-sc-rgb),.1)}[data-gene-ui-version=\"2.16.5\"] .profile-module{align-items:center;display:flex;font:600 1.7rem/2.3rem var(--font-family);margin:20px 0;width:100%}[data-gene-ui-version=\"2.16.5\"] .popover-content .profile-module{padding:0 1.5rem}[data-gene-ui-version=\"2.16.5\"] .profile-module>li:first-child{flex-shrink:0}html:not([dir=rtl]) .profile-module>li:first-child{padding-right:1.8rem}html[dir=rtl] .profile-module>li:first-child{padding-left:1.8rem}[data-gene-ui-version=\"2.16.5\"] .profile-module>li:nth-child(2){flex:auto;overflow:hidden}[data-gene-ui-version=\"2.16.5\"] .popover-holder.mobile-view .profile-module{border-bottom:1px solid rgba(var(--background-sc-rgb),.05);margin-bottom:2rem;padding:.8rem 1.4rem}[data-gene-ui-version=\"2.16.5\"] .profile-module-sub-title{font:600 1.3rem/1.7rem var(--font-family);margin:.4rem 0 0;opacity:.7}[data-gene-ui-version=\"2.16.5\"] .popover-content:has(#partners){max-height:100%;overflow:hidden}[data-gene-ui-version=\"2.16.5\"] .languages__imgWrapper{border-radius:100%;height:2.4rem;overflow:hidden;position:relative;width:2.4rem}[data-gene-ui-version=\"2.16.5\"] .languages__flagImg{display:block;height:100%;left:50%;max-width:inherit;position:absolute;top:50%;transform:translate(-50%,-50%)}[data-gene-ui-version=\"2.16.5\"] .languages__title{align-items:center;display:flex;height:100%}[data-gene-ui-version=\"2.16.5\"] .languages__titleImgContainer{border-radius:100%;display:inline-block;height:1.6rem;margin:0 .8rem;overflow:hidden;position:relative;width:1.6rem}[data-gene-ui-version=\"2.16.5\"] .languages__selectedTitle{margin-inline-start:.8rem}[data-gene-ui-version=\"2.16.5\"] .languages__titleImg{display:block;height:100%;left:50%;max-width:inherit;position:absolute;top:50%;transform:translate(-50%,-50%)}[data-gene-ui-version=\"2.16.5\"] .partners__searchHolder{background:var(--background);left:0;padding:10px;position:-webkit-sticky;position:sticky;top:0;z-index:10}[data-gene-ui-version=\"2.16.5\"] .partners__emptyTitle{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}[data-gene-ui-version=\"2.16.5\"] .partners__title{display:flex}";
styleInject(css_248z);
function ProfileModule(_ref) {
let {
username,
email,
avatarProps
} = _ref;
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("ul", {
className: "profile-module"
}, /*#__PURE__*/React__default.createElement("li", null, /*#__PURE__*/React__default.createElement(Avatar, _extends({
size: "big"
}, avatarProps))), /*#__PURE__*/React__default.createElement("li", null, /*#__PURE__*/React__default.createElement("div", {
className: "ellipsis-text"
}, username), /*#__PURE__*/React__default.createElement("div", {
className: "profile-module-sub-title ellipsis-text"
}, email))), /*#__PURE__*/React__default.createElement(Divider, {
type: "horizontal",
size: "100%"
}));
}
var img$a = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' id='flag-icon-css-gb' viewBox='0 0 512 512'%3e %3cpath fill='%23012169' d='M0 0h512v512H0z'/%3e %3cpath fill='white' d='M512 0v64L322 256l190 187v69h-67L254 324 68 512H0v-68l186-187L0 74V0h62l192 188L440 0z'/%3e %3cpath d='M184 324l11 34L42 512H0v-3l184-185zm124-12l54 8 150 147v45L308 312zM512 0L320 196l-4-44L466 0h46zM0 1l193 189-59-8L0 49V1z' fill='%23C8102E'/%3e %3cpath d='M176 0v512h160V0H176zM0 176v160h512V176H0z' fill='white'/%3e %3cpath d='M0 208v96h512v-96H0zM208 0v512h96V0h-96z' fill='%23C8102E'/%3e%3c/svg%3e";
var img$9 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' id='flag-icon-css-de' viewBox='0 0 512 512'%3e %3cpath fill='%23ffce00' d='M0 341.3h512V512H0z'/%3e %3cpath d='M0 0h512v170.7H0z'/%3e %3cpath fill='%23d00' d='M0 170.7h512v170.6H0z'/%3e%3c/svg%3e";
var img$8 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' id='flag-icon-css-es' viewBox='0 0 512 512'%3e %3cpath fill='%23AA151B' d='M0 0h512v512H0z'/%3e %3cpath fill='%23F1BF00' d='M0 128h512v256H0z'/%3e %3cpath fill='%23ad1519' d='M171.7 227.6s-.5 0-.8-.2a12.1 12.1 0 01-1.1-1l-.7-.5-.7-.9s-.7-1.2-.4-2c.4-1 1-1.3 1.5-1.6.5-.3 1.6-.6 1.6-.6l1.2-.5 1.3-.3.6-.3.9-.1 1.1-.3 1.7.1h5.1a41 41 0 003.6 1.2c.6.1 1.9.3 2.4.6.6.3 1 .8 1.3 1.1.3.4.3.8.4 1.1v1.1l-.5.9-.6 1-.8.7s-.6.5-1.1.5c-.5 0-5.1-.9-8.2-.9-3 0-7.8.9-7.8.9'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.3' d='M171.7 227.6s-.5 0-.8-.2a12.1 12.1 0 01-1.1-1l-.7-.5-.7-.9s-.7-1.2-.4-2c.4-1 1-1.3 1.5-1.6.5-.3 1.6-.6 1.6-.6l1.2-.5 1.3-.3.6-.3.9-.1 1.1-.3 1.7.1h5.1a41 41 0 003.6 1.2c.6.1 1.9.3 2.4.6.6.3 1 .8 1.3 1.1.3.4.3.8.4 1.1v1.1l-.5.9-.6 1-.8.7s-.6.5-1.1.5c-.5 0-5.1-.9-8.2-.9-3 0-7.8.9-7.8.9z'/%3e %3cpath fill='%23c8b100' d='M178.2 220.9c0-1.5.6-2.6 1.4-2.6.8 0 1.4 1.1 1.4 2.6 0 1.4-.6 2.5-1.4 2.5-.8 0-1.4-1.1-1.4-2.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M178.2 220.9c0-1.5.6-2.6 1.4-2.6.8 0 1.4 1.1 1.4 2.6 0 1.4-.6 2.5-1.4 2.5-.8 0-1.4-1.1-1.4-2.5z'/%3e %3cpath fill='%23c8b100' d='M179 220.9c0-1.3.3-2.4.6-2.4.4 0 .7 1 .7 2.4 0 1.3-.3 2.3-.7 2.3-.3 0-.6-1-.6-2.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179 220.9c0-1.3.3-2.4.6-2.4.4 0 .7 1 .7 2.4 0 1.3-.3 2.3-.7 2.3-.3 0-.6-1-.6-2.3z'/%3e %3cpath fill='%23c8b100' d='M178.7 218.2c0-.5.4-1 .9-1s1 .5 1 1-.5.9-1 .9a1 1 0 01-1-1'/%3e %3cpath fill='%23c8b100' d='M180.3 217.8v.6h-1.5v-.6h.5v-1.3h-.7v-.6h.7v-.6h.6v.6h.6v.6h-.6v1.3h.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M180.3 217.8v.6h-1.5v-.6h.5v-1.3h-.7v-.6h.7v-.6h.6v.6h.6v.6h-.6v1.3h.4'/%3e %3cpath fill='%23c8b100' d='M181 217.8v.6h-2.7v-.6h1v-1.3h-.7v-.6h.7v-.6h.6v.6h.6v.6h-.6v1.3h1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M181 217.8v.6h-2.7v-.6h1v-1.3h-.7v-.6h.7v-.6h.6v.6h.6v.6h-.6v1.3h1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.9 217.3a.9.9 0 01.6.9c0 .5-.4.9-.9.9s-1-.4-1-1c0-.3.4-.7.8-.8'/%3e %3cpath fill='%23c8b100' d='M179.6 227.4h-5v-1.2l-.3-1.2-.2-1.6c-1.4-1.8-2.6-3-3-2.7 0-.4.2-.6.4-.8 1.2-.7 3.7 1 5.6 3.9l.5.7h4l.5-.7c1.9-2.9 4.4-4.6 5.6-3.9.2.2.4.4.5.8-.5-.3-1.7.9-3 2.7l-.3 1.6-.2 1.2-.1 1.2h-5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.6 227.4h-5v-1.2l-.3-1.2-.2-1.6c-1.4-1.8-2.6-3-3-2.7 0-.4.2-.6.4-.8 1.2-.7 3.7 1 5.6 3.9l.5.7h4l.5-.7c1.9-2.9 4.4-4.6 5.6-3.9.2.2.4.4.5.8-.5-.3-1.7.9-3 2.7l-.3 1.6-.2 1.2-.1 1.2h-5z'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M171.3 220.6c1-.5 3 1.2 4.8 3.8m11.9-3.8c-1-.5-3.1 1.2-4.9 3.8'/%3e %3cpath fill='%23c8b100' d='M172.3 229.6a4.8 4.8 0 00-.6-1c2-.7 4.8-1 7.9-1 3 0 5.9.3 7.9 1l-.6.9-.3.8c-1.8-.6-4.2-.8-7-.8-2.9 0-5.6.3-7 .8l-.3-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M172.3 229.6a4.8 4.8 0 00-.6-1c2-.7 4.8-1 7.9-1 3 0 5.9.3 7.9 1l-.6.9-.3.8c-1.8-.6-4.2-.8-7-.8-2.9 0-5.6.3-7 .8l-.3-.7'/%3e %3cpath fill='%23c8b100' d='M179.6 232.2a27 27 0 006.2-.7c.7-.2 1.1-.5 1-.8 0-.2-.1-.3-.3-.4a25.8 25.8 0 00-7-.9c-2.6 0-5.3.4-6.8.9-.2 0-.3.2-.4.4 0 .3.4.6 1 .8 1 .3 3.8.7 6.3.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.6 232.2a27 27 0 006.2-.7c.7-.2 1.1-.5 1-.8 0-.2-.1-.3-.3-.4a25.8 25.8 0 00-7-.9c-2.6 0-5.3.4-6.8.9-.2 0-.3.2-.4.4 0 .3.4.6 1 .8 1 .3 3.8.7 6.3.7z'/%3e %3cpath fill='%23c8b100' d='M187.6 227.4l-.6-.5s-.6.3-1.3.2c-.7-.1-1-1-1-1s-.8.7-1.5.6c-.6 0-1-.6-1-.6s-.8.5-1.4.5c-.7 0-1.3-.9-1.3-.9s-.6.9-1.2 1c-.7 0-1.2-.6-1.2-.6s-.3.6-1 .7c-.9.1-1.6-.6-1.6-.6s-.5.7-1 1c-.6.1-1.3-.4-1.3-.4l-.2.5-.3.2.2.4a32.5 32.5 0 0115.5.1l.2-.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M187.6 227.4l-.6-.5s-.6.3-1.3.2c-.7-.1-1-1-1-1s-.8.7-1.5.6c-.6 0-1-.6-1-.6s-.8.5-1.4.5c-.7 0-1.3-.9-1.3-.9s-.6.9-1.2 1c-.7 0-1.2-.6-1.2-.6s-.3.6-1 .7c-.9.1-1.6-.6-1.6-.6s-.5.7-1 1c-.6.1-1.3-.4-1.3-.4l-.2.5-.3.2.2.4a32.5 32.5 0 0115.5.1l.2-.6z'/%3e %3cpath fill='%23c8b100' d='M179.6 224.8h.3a1.1 1.1 0 001 1.5c.6 0 1-.3 1.2-.8l.1-.4v.5c.1.5.6.9 1.2.9a1.1 1.1 0 001.1-1.1v-.1l.4-.4.2.4a1 1 0 00-.1.5c0 .6.5 1 1 1 .4 0 .8-.1 1-.4l.2-.3v.4c0 .3.2.6.5.7 0 0 .4 0 1-.4l.8-.8v.5s-.5.8-1 1.1l-1 .3c-.3-.1-.5-.4-.7-.7a1.6 1.6 0 01-.8.3c-.6 0-1.2-.4-1.4-1a1.6 1.6 0 01-1.2.6 2 2 0 01-1.3-.6 1.6 1.6 0 01-1.1.4c-.6 0-1.1-.3-1.4-.7-.3.4-.8.7-1.4.7a1.6 1.6 0 01-1-.4c-.4.3-.9.6-1.4.6a1.6 1.6 0 01-1.2-.5c-.2.5-.8.8-1.4.8-.3 0-.6 0-.8-.2-.1.3-.4.6-.7.7a2 2 0 01-1-.3 4.4 4.4 0 01-1-1.1v-.5l.9.8c.5.4.9.4.9.4.4 0 .5-.4.5-.7v-.4l.2.3c.2.3.6.5 1 .5.5 0 1-.5 1-1a1 1 0 000-.6l.1-.4.4.4c0 .7.5 1.2 1 1.2.7 0 1.2-.4 1.2-1v-.3l.2.3c.2.5.6.8 1.1.8.7 0 1.2-.5 1.2-1.1a1 1 0 00-.1-.4h.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.6 224.8h.3a1.1 1.1 0 001 1.5c.6 0 1-.3 1.2-.8l.1-.4v.5c.1.5.6.9 1.2.9a1.1 1.1 0 001.1-1.1v-.1l.4-.4.2.4a1 1 0 00-.1.5c0 .6.5 1 1 1 .4 0 .8-.1 1-.4l.2-.3v.4c0 .3.2.6.5.7 0 0 .4 0 1-.4l.8-.8v.5s-.5.8-1 1.1l-1 .3c-.3-.1-.5-.4-.7-.7a1.6 1.6 0 01-.8.3c-.6 0-1.2-.4-1.4-1a1.6 1.6 0 01-1.2.6 2 2 0 01-1.3-.6 1.6 1.6 0 01-1.1.4c-.6 0-1.1-.3-1.4-.7-.3.4-.8.7-1.4.7a1.6 1.6 0 01-1-.4c-.4.3-.9.6-1.4.6a1.6 1.6 0 01-1.2-.5c-.2.5-.8.8-1.4.8-.3 0-.6 0-.8-.2-.1.3-.4.6-.7.7a2 2 0 01-1-.3 4.4 4.4 0 01-1-1.1v-.5l.9.8c.5.4.9.4.9.4.4 0 .5-.4.5-.7v-.4l.2.3c.2.3.6.5 1 .5.5 0 1-.5 1-1a1 1 0 000-.6l.1-.4.4.4c0 .7.5 1.2 1 1.2.7 0 1.2-.4 1.2-1v-.3l.2.3c.2.5.6.8 1.1.8.7 0 1.2-.5 1.2-1.1a1 1 0 00-.1-.4h.3z'/%3e %3cpath fill='%23c8b100' d='M179.6 227.6c-3.1 0-5.9.3-7.9 1l-.3-.2c0-.2 0-.3.2-.4 2-.6 4.8-1 8-1s6 .4 8 1l.2.3c0 .2-.2.3-.3.2-2-.6-4.8-1-8-1'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.3' d='M179.6 227.6c-3.1 0-5.9.3-7.9 1l-.3-.2c0-.2 0-.3.2-.4 2-.6 4.8-1 8-1s6 .4 8 1l.2.3c0 .2-.2.3-.3.2-2-.6-4.8-1-8-1z'/%3e %3cpath fill='white' d='M176.6 228.7c0-.3.2-.5.5-.5.2 0 .4.2.4.5 0 .2-.2.4-.5.4s-.4-.2-.4-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M176.6 228.7c0-.3.2-.5.5-.5.2 0 .4.2.4.5 0 .2-.2.4-.5.4s-.4-.2-.4-.4z'/%3e %3cpath fill='%23ad1519' d='M179.6 228.8h-1a.3.3 0 01-.3-.3c0-.1.1-.3.3-.3h2a.3.3 0 01.4.3.3.3 0 01-.4.3h-1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.6 228.8h-1a.3.3 0 01-.3-.3c0-.1.1-.3.3-.3h2a.3.3 0 01.4.3.3.3 0 01-.4.3h-1'/%3e %3cpath fill='%23058e6e' d='M174.7 229.2h-.7c-.2.1-.4 0-.4-.2a.3.3 0 01.2-.3l.7-.1.8-.2c.2 0 .3.1.4.3 0 .2-.1.3-.3.4h-.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M174.7 229.2h-.7c-.2.1-.4 0-.4-.2a.3.3 0 01.2-.3l.7-.1.8-.2c.2 0 .3.1.4.3 0 .2-.1.3-.3.4h-.8'/%3e %3cpath fill='%23ad1519' d='M171.8 229.7l.3-.5.7.1-.4.6-.6-.2'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M171.8 229.7l.3-.5.7.1-.4.6-.6-.2'/%3e %3cpath fill='white' d='M181.7 228.7c0-.3.2-.5.4-.5.3 0 .5.2.5.5 0 .2-.2.4-.5.4s-.4-.2-.4-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M181.7 228.7c0-.3.2-.5.4-.5.3 0 .5.2.5.5 0 .2-.2.4-.5.4s-.4-.2-.4-.4z'/%3e %3cpath fill='%23058e6e' d='M184.5 229.2h.8c.1.1.3 0 .3-.2a.3.3 0 00-.2-.3l-.8-.1-.7-.2c-.2 0-.3.1-.4.3 0 .2.1.3.3.4h.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M184.5 229.2h.8c.1.1.3 0 .3-.2a.3.3 0 00-.2-.3l-.8-.1-.7-.2c-.2 0-.3.1-.4.3 0 .2.1.3.3.4h.7'/%3e %3cpath fill='%23ad1519' d='M187.3 229.7l-.2-.5h-.7l.3.6h.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M187.3 229.7l-.2-.5h-.7l.3.6h.7'/%3e %3cpath fill='%23ad1519' d='M179.6 231.6c-2.5 0-4.8-.2-6.5-.7a27.2 27.2 0 016.5-.7c2.5 0 4.7.3 6.5.7-1.8.5-4 .7-6.5.7'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.3' d='M179.6 231.6c-2.5 0-4.8-.2-6.5-.7a27.2 27.2 0 016.5-.7c2.5 0 4.7.3 6.5.7-1.8.5-4 .7-6.5.7z'/%3e %3cpath fill='%23c8b100' d='M187.4 226.2c.1-.2 0-.4 0-.4-.2 0-.4 0-.5.2 0 .2 0 .4.2.5.1 0 .3-.1.3-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M187.4 226.2c.1-.2 0-.4 0-.4-.2 0-.4 0-.5.2 0 .2 0 .4.2.5.1 0 .3-.1.3-.3z'/%3e %3cpath fill='%23c8b100' d='M182.5 225.2c0-.2 0-.3-.2-.4-.2 0-.3.2-.3.4s0 .3.2.4c.1 0 .3-.2.3-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M182.5 225.2c0-.2 0-.3-.2-.4-.2 0-.3.2-.3.4s0 .3.2.4c.1 0 .3-.2.3-.4z'/%3e %3cpath fill='%23c8b100' d='M176.7 225.2c0-.2 0-.3.2-.4.2 0 .3.2.3.4s0 .3-.2.4l-.3-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M176.7 225.2c0-.2 0-.3.2-.4.2 0 .3.2.3.4s0 .3-.2.4l-.3-.4z'/%3e %3cpath fill='%23c8b100' d='M171.8 226.2c-.1-.2 0-.4.1-.4s.3 0 .4.2c0 .2 0 .4-.2.5-.1 0-.3-.1-.3-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M171.8 226.2c-.1-.2 0-.4.1-.4s.3 0 .4.2c0 .2 0 .4-.2.5-.1 0-.3-.1-.3-.3z'/%3e %3cpath fill='%23c8b100' d='M179.6 222.4l-.9.5.7 1.4.2.2.2-.2.7-1.4-1-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179.6 222.4l-.9.5.7 1.4.2.2.2-.2.7-1.4-1-.5'/%3e %3cpath fill='%23c8b100' d='M177.7 224.5l.4.6 1.3-.4.2-.2-.2-.2-1.3-.4-.4.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M177.7 224.5l.4.6 1.3-.4.2-.2-.2-.2-1.3-.4-.4.6'/%3e %3cpath fill='%23c8b100' d='M181.5 224.5l-.4.6-1.3-.4-.2-.2.1-.2 1.4-.4.4.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M181.5 224.5l-.4.6-1.3-.4-.2-.2.1-.2 1.4-.4.4.6'/%3e %3cpath fill='%23c8b100' d='M173.9 223l-.7.6.9 1.2.2.1.2-.2.3-1.4-1-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M173.9 223l-.7.6.9 1.2.2.1.2-.2.3-1.4-1-.3'/%3e %3cpath fill='%23c8b100' d='M172.4 225.3l.5.5 1.3-.7v-.4h-1.5l-.3.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M172.4 225.3l.5.5 1.3-.7v-.4h-1.5l-.3.6'/%3e %3cpath fill='%23c8b100' d='M176.2 224.6l-.3.6-1.4-.1-.2-.2.1-.2 1.3-.7.5.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M176.2 224.6l-.3.6-1.4-.1-.2-.2.1-.2 1.3-.7.5.6'/%3e %3cpath fill='%23c8b100' d='M171 225.5v.7l-1.5.1h-.2v-.3l1.1-1 .6.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M171 225.5v.7l-1.5.1h-.2v-.3l1.1-1 .6.5'/%3e %3cpath fill='%23c8b100' d='M173.8 225c0-.4.2-.6.5-.6s.5.2.5.5a.5.5 0 01-.5.5.5.5 0 01-.5-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M173.8 225c0-.4.2-.6.5-.6s.5.2.5.5a.5.5 0 01-.5.5.5.5 0 01-.5-.5z'/%3e %3cpath fill='%23c8b100' d='M185.3 223l.7.6-.9 1.2-.2.1-.2-.2-.3-1.4 1-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M185.3 223l.7.6-.9 1.2-.2.1-.2-.2-.3-1.4 1-.3'/%3e %3cpath fill='%23c8b100' d='M186.8 225.3l-.6.5-1.2-.7-.1-.2.2-.2h1.4l.3.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M186.8 225.3l-.6.5-1.2-.7-.1-.2.2-.2h1.4l.3.6'/%3e %3cpath fill='%23c8b100' d='M183 224.6l.3.6 1.4-.1.2-.2-.1-.2-1.3-.7-.5.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M183 224.6l.3.6 1.4-.1.2-.2-.1-.2-1.3-.7-.5.6'/%3e %3cpath fill='%23c8b100' d='M188 225.5v.7l1.5.1h.2v-.3l-1.1-1-.6.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M188 225.5v.7l1.5.1h.2v-.3l-1.1-1-.6.5'/%3e %3cpath fill='%23c8b100' d='M179 224.5a.5.5 0 01.6-.5c.3 0 .5.2.5.5a.5.5 0 01-.5.4.5.5 0 01-.5-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M179 224.5a.5.5 0 01.6-.5c.3 0 .5.2.5.5a.5.5 0 01-.5.4.5.5 0 01-.5-.4z'/%3e %3cpath fill='%23c8b100' d='M184.4 225a.5.5 0 01.5-.6.5.5 0 01.5.5.5.5 0 01-.5.5.5.5 0 01-.5-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M184.4 225a.5.5 0 01.5-.6.5.5 0 01.5.5.5.5 0 01-.5.5.5.5 0 01-.5-.5z'/%3e %3cpath fill='%23c8b100' d='M169.1 226.3l-.7-.8-.7-.3s.3-.3.6-.3l.5.2v-.2s.3 0 .4.4v1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M169.1 226.3l-.7-.8-.7-.3s.3-.3.6-.3l.5.2v-.2s.3 0 .4.4v1z'/%3e %3cpath fill='%23c8b100' d='M169.1 226l.6.1c.2.2.2.4 0 .5s-.3.1-.4 0c-.2-.2-.3-.4-.2-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M169.1 226l.6.1c.2.2.2.4 0 .5s-.3.1-.4 0c-.2-.2-.3-.4-.2-.5z'/%3e %3cpath fill='%23c8b100' d='M189.9 226.3l.7-.8.7-.3s-.3-.3-.6-.3a.6.6 0 00-.5.2v-.2s-.3 0-.4.4v.7l.1.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M189.9 226.3l.7-.8.7-.3s-.3-.3-.6-.3a.6.6 0 00-.5.2v-.2s-.3 0-.4.4v.7l.1.3z'/%3e %3cpath fill='%23c8b100' d='M189.9 226l-.5.1c-.2.2-.3.4-.2.5h.6c.2-.2.2-.4.1-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M189.9 226l-.5.1c-.2.2-.3.4-.2.5h.6c.2-.2.2-.4.1-.5z'/%3e %3cpath fill='%23c8b100' d='M168.2 238h22.9v-6h-22.9v6z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M168.2 238h22.9v-6h-22.9v6z'/%3e %3cpath fill='%23c8b100' d='M170.6 242l.5-.1h17.5c-.6-.2-1-.7-1-1.3 0-.6.5-1.2 1-1.4a1.8 1.8 0 01-.5.1h-17a1.5 1.5 0 01-.5 0c.7.2 1 .7 1 1.3 0 .6-.4 1.1-1 1.3'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M170.6 242l.5-.1h17.5c-.6-.2-1-.7-1-1.3 0-.6.5-1.2 1-1.4a1.8 1.8 0 01-.5.1h-17a1.5 1.5 0 01-.5 0c.7.2 1 .7 1 1.3 0 .6-.4 1.1-1 1.3z'/%3e %3cpath fill='%23c8b100' d='M171 241.9h17.2c.5 0 1 .3 1 .8 0 .4-.5.8-1 .8H171c-.6 0-1.1-.4-1.1-.8 0-.5.5-.8 1-.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M171 241.9h17.2c.5 0 1 .3 1 .8 0 .4-.5.8-1 .8H171c-.6 0-1.1-.4-1.1-.8 0-.5.5-.8 1-.8z'/%3e %3cpath fill='%23c8b100' d='M171 238h17.2c.5 0 1 .2 1 .6 0 .4-.5.7-1 .7H171c-.6 0-1-.3-1-.7 0-.4.4-.7 1-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M171 238h17.2c.5 0 1 .2 1 .6 0 .4-.5.7-1 .7H171c-.6 0-1-.3-1-.7 0-.4.4-.7 1-.7z'/%3e %3cpath fill='%23005bbf' d='M195.6 338.6a8.7 8.7 0 01-4-.9 8.9 8.9 0 00-4-.8c-1.6 0-3 .3-4 .8a8.8 8.8 0 01-4 1 8.7 8.7 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-3.9.8c-1 .6-2.4 1-4 1v2.4a8.9 8.9 0 004-1 8.8 8.8 0 014-.8 9 9 0 013.9.9 9 9 0 004 .9 9 9 0 004-.9 9 9 0 014-.9c1.5 0 3 .4 4 .9a8.6 8.6 0 004 .9v-2.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M195.6 338.6a8.7 8.7 0 01-4-.9 8.9 8.9 0 00-4-.8c-1.6 0-3 .3-4 .8a8.8 8.8 0 01-4 1 8.7 8.7 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-3.9.8c-1 .6-2.4 1-4 1v2.4a8.9 8.9 0 004-1 8.8 8.8 0 014-.8 9 9 0 013.9.9 9 9 0 004 .9 9 9 0 004-.9 9 9 0 014-.9c1.5 0 3 .4 4 .9a8.6 8.6 0 004 .9v-2.5z'/%3e %3cpath fill='%23ccc' d='M195.6 341a8.7 8.7 0 01-4-.8 8.9 8.9 0 00-4-.8c-1.6 0-3 .3-4 .8a9 9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.8c-1.5 0-2.9.3-3.9.9a9 9 0 01-4 .9v2.4a8.9 8.9 0 004-.9 8.6 8.6 0 014-.8 9 9 0 013.9.8 8.7 8.7 0 004 1 8.9 8.9 0 004-1 9 9 0 014-.8 8.9 8.9 0 014 .9 9 9 0 004 .9V341'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M195.6 341a8.7 8.7 0 01-4-.8 8.9 8.9 0 00-4-.8c-1.6 0-3 .3-4 .8a9 9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.8c-1.5 0-2.9.3-3.9.9a9 9 0 01-4 .9v2.4a8.9 8.9 0 004-.9 8.6 8.6 0 014-.8 9 9 0 013.9.8 8.7 8.7 0 004 1 8.9 8.9 0 004-1 9 9 0 014-.8 8.9 8.9 0 014 .9 9 9 0 004 .9V341'/%3e %3cpath fill='%23005bbf' d='M195.6 343.6a8.7 8.7 0 01-4-1 8.9 8.9 0 00-4-.8 9 9 0 00-4 .9 8.9 8.9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-3.9.8 8.9 8.9 0 01-4 1v2.4c1.5 0 3-.3 4-.9a8.7 8.7 0 014-.8 9 9 0 013.9.8 9 9 0 008 0 9 9 0 014-.8c1.5 0 3 .3 4 .8 1 .6 2.4 1 4 1v-2.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M195.6 343.6a8.7 8.7 0 01-4-1 8.9 8.9 0 00-4-.8 9 9 0 00-4 .9 8.9 8.9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-3.9.8 8.9 8.9 0 01-4 1v2.4c1.5 0 3-.3 4-.9a8.7 8.7 0 014-.8 9 9 0 013.9.8 9 9 0 008 0 9 9 0 014-.8c1.5 0 3 .3 4 .8 1 .6 2.4 1 4 1v-2.6'/%3e %3cpath fill='%23ccc' d='M195.6 348.5a8.6 8.6 0 01-4-1 9 9 0 00-4-.7 9 9 0 00-4 .8 8.9 8.9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.7 9 9 0 00-3.9.8 9 9 0 01-4 .9V346a9 9 0 004-.9 8.8 8.8 0 014-.8 9 9 0 013.9.8c1 .6 2.4 1 4 1a9 9 0 004-1 9 9 0 014-.8 9 9 0 014 .8c1 .6 2.4 1 4 1v2.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M195.6 348.5a8.6 8.6 0 01-4-1 9 9 0 00-4-.7 9 9 0 00-4 .8 8.9 8.9 0 01-4 .9 8.7 8.7 0 01-4-1 9 9 0 00-4-.7 9 9 0 00-3.9.8 9 9 0 01-4 .9V346a9 9 0 004-.9 8.8 8.8 0 014-.8 9 9 0 013.9.8c1 .6 2.4 1 4 1a9 9 0 004-1 9 9 0 014-.8 9 9 0 014 .8c1 .6 2.4 1 4 1v2.4'/%3e %3cpath fill='%23005bbf' d='M195.6 351a8.7 8.7 0 01-4-1 8.8 8.8 0 00-4-.8 9 9 0 00-4 .9 9 9 0 01-4 .8 8.7 8.7 0 01-4-.9 9 9 0 00-4-.8 9 9 0 00-3.9.8c-1 .6-2.4 1-4 1v-2.5c1.5 0 3-.4 4-1a8.8 8.8 0 014-.7 9 9 0 013.9.8 9 9 0 004 .9 8.9 8.9 0 004-.9 9 9 0 014-.8 9 9 0 014 .8 9 9 0 004 .9v2.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M195.6 351a8.7 8.7 0 01-4-1 8.8 8.8 0 00-4-.8 9 9 0 00-4 .9 9 9 0 01-4 .8 8.7 8.7 0 01-4-.9 9 9 0 00-4-.8 9 9 0 00-3.9.8c-1 .6-2.4 1-4 1v-2.5c1.5 0 3-.4 4-1a8.8 8.8 0 014-.7 9 9 0 013.9.8 9 9 0 004 .9 8.9 8.9 0 004-.9 9 9 0 014-.8 9 9 0 014 .8 9 9 0 004 .9v2.5z'/%3e %3cpath fill='%23c8b100' d='M170.6 328.5l.2.6c0 1.5-1.3 2.7-3 2.7h23.6c-1.6 0-2.9-1.2-2.9-2.7l.1-.6a1.4 1.4 0 01-.5 0h-17.5'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M170.6 328.5l.2.6c0 1.5-1.3 2.7-3 2.7h23.6c-1.6 0-2.9-1.2-2.9-2.7l.1-.6a1.4 1.4 0 01-.5 0h-17.5z'/%3e %3cpath fill='%23c8b100' d='M171 327h17.2c.5 0 1 .3 1 .7 0 .5-.5.8-1 .8H171c-.6 0-1.1-.3-1.1-.8 0-.4.5-.8 1-.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M171 327h17.2c.5 0 1 .3 1 .7 0 .5-.5.8-1 .8H171c-.6 0-1.1-.3-1.1-.8 0-.4.5-.8 1-.8z'/%3e %3cpath fill='%23c8b100' d='M168 337.8h23.3v-6H168v6z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M168 337.8h23.3v-6H168v6z'/%3e %3cpath fill='%23ad1519' d='M166 305.8c-2.2 1.3-3.8 2.7-3.5 3.4 0 .6.8 1 1.9 1.8 1.6 1.1 2.6 3.2 1.8 4.1a5.9 5.9 0 00-.1-9.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M166 305.8c-2.2 1.3-3.8 2.7-3.5 3.4 0 .6.8 1 1.9 1.8 1.6 1.1 2.6 3.2 1.8 4.1a5.9 5.9 0 00-.1-9.3z'/%3e %3cpath fill='%23ccc' d='M171.3 326h16.6v-81.6h-16.6V326z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M183.1 244.5V326m2-81.4V326m-13.8 0h16.6v-81.5h-16.6V326z'/%3e %3cpath fill='%23ad1519' d='M205 275a52.8 52.8 0 00-17-3 51.6 51.6 0 00-8 .8c-9.9 1.7-17.5 5.6-16.9 8.9v.2l-3.7-8.7c-.7-3.6 7.7-8 18.8-9.8a57 57 0 019.8-.8c7 0 13.2.9 16.9 2.3v10'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M205 275a52.8 52.8 0 00-17-3 51.6 51.6 0 00-8 .8c-9.9 1.7-17.5 5.6-16.9 8.9v.2l-3.7-8.7c-.7-3.6 7.7-8 18.8-9.8a57 57 0 019.8-.8c7 0 13.2.9 16.9 2.3v10'/%3e %3cpath fill='%23ad1519' d='M171.3 285.1c-4.7-.3-7.8-1.5-8.2-3.5-.3-1.5 1.3-3.2 4-4.7 1.3.1 2.7.3 4.2.3v8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M171.3 285.1c-4.7-.3-7.8-1.5-8.2-3.5-.3-1.5 1.3-3.2 4-4.7 1.3.1 2.7.3 4.2.3v8'/%3e %3cpath fill='%23ad1519' d='M188 279c2.8.4 5 1 6 2l.2.1c.5 1-2 3.3-6.3 5.8v-8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M188 279c2.8.4 5 1 6 2l.2.1c.5 1-2 3.3-6.3 5.8v-8'/%3e %3cpath fill='%23ad1519' d='M160.9 300.9c-.4-1.3 4-4 10.4-6.3 3-1 5.3-2.1 8.3-3.4 8.9-4 15.4-8.4 14.6-10l-.1-.2c.5.4 1.2 8.4 1.2 8.4.8 1.5-5.2 6-13.3 9.8-2.6 1.3-8.1 3.3-10.7 4.2-4.7 1.6-9.3 4.7-8.9 5.8l-1.5-8.3'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M160.9 300.9c-.4-1.3 4-4 10.4-6.3 3-1 5.3-2.1 8.3-3.4 8.9-4 15.4-8.4 14.6-10l-.1-.2c.5.4 1.2 8.4 1.2 8.4.8 1.5-5.2 6-13.3 9.8-2.6 1.3-8.1 3.3-10.7 4.2-4.7 1.6-9.3 4.7-8.9 5.8l-1.5-8.3z'/%3e %3cpath fill='%23c8b100' d='M170.1 271c2-.7 3.4-1.6 2.7-3.2-.4-1-1.4-1.2-3-.7l-2.8 1 2.5 6.2.9-.3.8-.3-1-2.7zm-1.2-3l.7-.2c.6-.3 1.3 0 1.5.8.3.5.2 1.1-.5 1.6a4.7 4.7 0 01-.7.3l-1-2.5m7.7-2.6l-.8.3h-1l1.5 6.5 4.5-.9-.2-.4v-.4l-2.7.7-1.3-5.8m9 5.6l2.9-6.8a5.4 5.4 0 01-1.1 0 58.5 58.5 0 01-2 5c-.8-1.6-1.7-3.1-2.4-4.7l-1 .1h-1.1l3.7 6.5.5-.1h.5m9.4-5l.5-.9a3.7 3.7 0 00-1.9-.6c-1.8-.2-2.8.6-3 1.7-.2 2.3 3.4 2.1 3.3 3.7-.1.6-.8.9-1.6.8-.8 0-1.4-.5-1.5-1.2h-.2a8 8 0 01-.5 1.2c.5.3 1.2.5 1.9.6 1.8.2 3.3-.6 3.4-1.8.2-2.2-3.4-2.3-3.3-3.6 0-.6.5-1 1.4-.8.7 0 1.1.4 1.3 1h.2'/%3e %3cpath fill='%23ad1519' d='M332.4 225.7s-.8.8-1.3 1c-.6 0-1.3-.6-1.3-.6s-.5.5-1.1.7c-.6.1-1.4-.7-1.4-.7s-.6.8-1.2 1c-.5.2-1.1-.2-1.1-.2s-.2.4-.7.6h-.5l-.6-.5-.7-.7-.6-.2-.3-1.1-.1-.6c-.1-.7.9-1.4 2.4-1.8.8-.2 1.5-.1 2 0a6 6 0 013.3-.8 6 6 0 013.2.7 5.9 5.9 0 013-.7c1.5 0 2.7.3 3.3.8a4.2 4.2 0 012.1 0c1.5.4 2.5 1.1 2.4 1.8v.6l-.4 1-.6.3-.7.8-.6.3s-.3.2-.5.1c-.5-.2-.7-.6-.7-.6s-.6.4-1.2.2c-.5-.2-1-1-1-1s-.9.8-1.5.7c-.6-.2-1.1-.7-1.1-.7s-.7.6-1.2.5c-.6 0-1.4-.9-1.4-.9'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.4 225.7s-.8.8-1.3 1c-.6 0-1.3-.6-1.3-.6s-.5.5-1.1.7c-.6.1-1.4-.7-1.4-.7s-.6.8-1.2 1c-.5.2-1.1-.2-1.1-.2s-.2.4-.7.6h-.5l-.6-.5-.7-.7-.6-.2-.3-1.1-.1-.6c-.1-.7.9-1.4 2.4-1.8.8-.2 1.5-.1 2 0a6 6 0 013.3-.8 6 6 0 013.2.7 5.9 5.9 0 013-.7c1.5 0 2.7.3 3.3.8a4.2 4.2 0 012.1 0c1.5.4 2.5 1.1 2.4 1.8v.6l-.4 1-.6.3-.7.8-.6.3s-.3.2-.5.1c-.5-.2-.7-.6-.7-.6s-.6.4-1.2.2c-.5-.2-1-1-1-1s-.9.8-1.5.7c-.6-.2-1.1-.7-1.1-.7s-.7.6-1.2.5c-.6 0-1.4-.9-1.4-.9z'/%3e %3cpath fill='%23c8b100' d='M331 221.4c0-1.1.6-2 1.3-2 .8 0 1.4.9 1.4 2s-.6 2-1.4 2c-.8 0-1.4-.9-1.4-2'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M331 221.4c0-1.1.6-2 1.3-2 .8 0 1.4.9 1.4 2s-.6 2-1.4 2c-.8 0-1.4-.9-1.4-2z'/%3e %3cpath fill='%23c8b100' d='M331.7 221.4c0-1 .3-1.9.7-1.9.3 0 .6.9.6 1.9 0 1-.3 1.8-.7 1.8-.3 0-.6-.8-.6-1.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M331.7 221.4c0-1 .3-1.9.7-1.9.3 0 .6.9.6 1.9 0 1-.3 1.8-.7 1.8-.3 0-.6-.8-.6-1.8z'/%3e %3cpath fill='%23c8b100' d='M325 229.6a4.8 4.8 0 00-.5-1c2-.7 4.7-1 7.8-1 3.1 0 6 .3 8 1l-.6.9-.4.8c-1.8-.6-4.1-.8-7-.8-2.8 0-5.6.3-7 .8l-.2-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M325 229.6a4.8 4.8 0 00-.5-1c2-.7 4.7-1 7.8-1 3.1 0 6 .3 8 1l-.6.9-.4.8c-1.8-.6-4.1-.8-7-.8-2.8 0-5.6.3-7 .8l-.2-.7'/%3e %3cpath fill='%23c8b100' d='M332.3 232.2c2.5 0 5.3-.4 6.3-.7.7-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4a25.7 25.7 0 00-6.9-.9 26 26 0 00-6.8.9c-.2 0-.4.2-.4.4 0 .3.3.6 1 .8 1 .3 3.7.7 6.2.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.3 232.2c2.5 0 5.3-.4 6.3-.7.7-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4a25.7 25.7 0 00-6.9-.9 26 26 0 00-6.8.9c-.2 0-.4.2-.4.4 0 .3.3.6 1 .8 1 .3 3.7.7 6.2.7z'/%3e %3cpath fill='white' d='M338.4 222.3a.5.5 0 01.4-.5c.3 0 .5.2.5.5 0 .2-.2.4-.5.4a.5.5 0 01-.4-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.2' d='M338.4 222.3a.5.5 0 01.4-.5c.3 0 .5.2.5.5 0 .2-.2.4-.5.4a.5.5 0 01-.4-.4zm-.3-1.6a.5.5 0 01.5-.4c.2 0 .4.2.4.4s-.2.5-.4.5a.5.5 0 01-.5-.4zm-1.1-1a.5.5 0 01.4-.3c.3 0 .5.1.5.4s-.2.4-.5.4a.5.5 0 01-.4-.4zm-1.5-.4c0-.2.2-.4.5-.4a.5.5 0 01.4.4.5.5 0 01-.4.5c-.3 0-.5-.2-.5-.5zm-1.5 0a.5.5 0 01.5-.4c.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 01-.5-.4z'/%3e %3cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='.3' d='M343 225.3a3 3 0 00.2-1.1 3 3 0 00-3-3 2.8 2.8 0 00-1.3.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M337.8 223.2l.3-.9c0-1.2-1.3-2.1-2.7-2.1-.7 0-1.3.1-1.7.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.2' d='M343.4 224c0-.3.2-.5.4-.5s.5.2.5.4-.2.5-.5.5c-.2 0-.4-.2-.4-.5zm-.2-1.7c0-.2.2-.4.5-.4.2 0 .4.2.4.4s-.2.4-.5.4c-.2 0-.4-.1-.4-.4zm-1-1.2a.5.5 0 01.4-.5c.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 01-.5-.4zm-1.5-.7c0-.2.3-.4.5-.4.3 0 .5.2.5.4a.5.5 0 01-.5.5.5.5 0 01-.4-.5zm-1.4 0c0-.2.2-.4.4-.4s.5.2.5.5-.2.4-.5.4-.4-.2-.4-.4z'/%3e %3cpath fill='%23c8b100' d='M340.3 227.4l-.6-.5s-.6.3-1.3.2c-.7-.1-1-1-1-1s-.7.7-1.4.6c-.7 0-1.1-.6-1.1-.6s-.7.5-1.4.5c-.6 0-1.2-.9-1.2-.9s-.7.9-1.3 1c-.6 0-1.1-.6-1.1-.6s-.3.6-1.1.7c-.8.1-1.5-.6-1.5-.6s-.5.7-1 1c-.6.1-1.3-.4-1.3-.4l-.2.5-.4.2.2.4a32.5 32.5 0 0115.5.1l.2-.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M340.3 227.4l-.6-.5s-.6.3-1.3.2c-.7-.1-1-1-1-1s-.7.7-1.4.6c-.7 0-1.1-.6-1.1-.6s-.7.5-1.4.5c-.6 0-1.2-.9-1.2-.9s-.7.9-1.3 1c-.6 0-1.1-.6-1.1-.6s-.3.6-1.1.7c-.8.1-1.5-.6-1.5-.6s-.5.7-1 1c-.6.1-1.3-.4-1.3-.4l-.2.5-.4.2.2.4a32.5 32.5 0 0115.5.1l.2-.6z'/%3e %3cpath fill='white' d='M325.3 222.3a.5.5 0 01.5-.5.5.5 0 01.4.5.5.5 0 01-.4.4c-.3 0-.5-.2-.5-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.2' d='M325.3 222.3a.5.5 0 01.5-.5.5.5 0 01.4.5.5.5 0 01-.4.4c-.3 0-.5-.2-.5-.4zm.3-1.6a.5.5 0 01.4-.4.5.5 0 01.5.4.5.5 0 01-.5.5.4.4 0 01-.4-.4zm1.1-1c0-.1.2-.3.5-.3s.5.1.5.4-.2.4-.5.4a.5.5 0 01-.5-.4zm1.5-.4c0-.2.2-.4.4-.4s.5.2.5.4c0 .3-.2.5-.5.5-.2 0-.4-.2-.4-.5zm1.5 0a.5.5 0 01.4-.4.5.5 0 01.5.5c0 .2-.2.4-.5.4a.5.5 0 01-.4-.4z'/%3e %3cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='.3' d='M321.7 225.3a3 3 0 01-.3-1.1 3 3 0 013-3c.4 0 1 .2 1.3.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M326.9 223.2l-.3-.9c0-1.2 1.2-2.1 2.7-2.1.6 0 1.2.1 1.6.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.2' d='M320.3 224c0-.3.2-.5.5-.5s.5.2.5.4a.5.5 0 01-.5.5c-.3 0-.5-.2-.5-.5zm.2-1.7c0-.2.2-.4.5-.4s.4.2.4.4-.2.4-.4.4a.5.5 0 01-.5-.4zm1-1.2c0-.3.3-.5.5-.5a.5.5 0 01.5.5.5.5 0 01-.5.4.5.5 0 01-.4-.4zm1.5-.7a.5.5 0 01.4-.4c.3 0 .5.2.5.4a.5.5 0 01-.5.5.5.5 0 01-.5-.5zm1.4 0c0-.2.2-.4.5-.4a.5.5 0 01.4.5c0 .2-.2.4-.4.4s-.5-.2-.5-.4z'/%3e %3cpath fill='%23c8b100' d='M332.4 224.8h.2v.4c0 .6.5 1 1.1 1 .5 0 1-.2 1.1-.7l.2-.4v.5c0 .5.6.9 1.1.9a1.1 1.1 0 001.2-1.1.7.7 0 000-.1l.3-.4.2.4a1 1 0 000 .5c0 .6.4 1 1 1a1.1 1.1 0 001-.4l.1-.3v.4c0 .3.2.6.5.7 0 0 .4 0 1-.4l.8-.8v.5s-.5.8-1 1.1c-.2.1-.6.3-1 .3-.3-.1-.5-.4-.6-.7a1.6 1.6 0 01-.8.3c-.7 0-1.3-.4-1.5-1a1.6 1.6 0 01-1.2.6 1.7 1.7 0 01-1.3-.6c-.3.3-.7.4-1 .4a1.7 1.7 0 01-1.5-.7 1.7 1.7 0 01-2.4.3 1.7 1.7 0 01-1.3.6c-.5 0-1-.2-1.2-.5-.2.5-.8.8-1.5.8-.3 0-.5 0-.8-.2-.1.3-.3.6-.7.7a2 2 0 01-1-.3l-1-1.1v-.5l1 .8c.4.4.8.4.8.4.4 0 .5-.4.5-.7v-.4l.3.3c.2.3.5.5.9.5.6 0 1-.5 1-1a1 1 0 000-.6l.2-.4.3.4c0 .7.5 1.2 1.1 1.2.6 0 1.1-.4 1.2-1v-.3l.2.3c.1.5.6.8 1 .8a1.1 1.1 0 001.2-1.5h.2'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.4 224.8h.2v.4c0 .6.5 1 1.1 1 .5 0 1-.2 1.1-.7l.2-.4v.5c0 .5.6.9 1.1.9a1.1 1.1 0 001.2-1.1.7.7 0 000-.1l.3-.4.2.4a1 1 0 000 .5c0 .6.4 1 1 1a1.1 1.1 0 001-.4l.1-.3v.4c0 .3.2.6.5.7 0 0 .4 0 1-.4l.8-.8v.5s-.5.8-1 1.1c-.2.1-.6.3-1 .3-.3-.1-.5-.4-.6-.7a1.6 1.6 0 01-.8.3c-.7 0-1.3-.4-1.5-1a1.6 1.6 0 01-1.2.6 1.7 1.7 0 01-1.3-.6c-.3.3-.7.4-1 .4a1.7 1.7 0 01-1.5-.7 1.7 1.7 0 01-2.4.3 1.7 1.7 0 01-1.3.6c-.5 0-1-.2-1.2-.5-.2.5-.8.8-1.5.8-.3 0-.5 0-.8-.2-.1.3-.3.6-.7.7a2 2 0 01-1-.3l-1-1.1v-.5l1 .8c.4.4.8.4.8.4.4 0 .5-.4.5-.7v-.4l.3.3c.2.3.5.5.9.5.6 0 1-.5 1-1a1 1 0 000-.6l.2-.4.3.4c0 .7.5 1.2 1.1 1.2.6 0 1.1-.4 1.2-1v-.3l.2.3c.1.5.6.8 1 .8a1.1 1.1 0 001.2-1.5h.2z'/%3e %3cpath fill='%23c8b100' d='M332.3 227.6c-3 0-5.8.3-7.8 1l-.4-.2.2-.4c2-.6 4.9-1 8-1s6 .4 8 1c.2 0 .3.2.2.3 0 .2-.2.3-.3.2-2-.6-4.8-1-7.9-1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.3 227.6c-3 0-5.8.3-7.8 1l-.4-.2.2-.4c2-.6 4.9-1 8-1s6 .4 8 1c.2 0 .3.2.2.3 0 .2-.2.3-.3.2-2-.6-4.8-1-7.9-1z'/%3e %3cpath fill='white' d='M329.4 228.7c0-.3.2-.5.4-.5s.5.2.5.5c0 .2-.3.4-.5.4s-.5-.2-.5-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M329.4 228.7c0-.3.2-.5.4-.5s.5.2.5.5c0 .2-.3.4-.5.4s-.5-.2-.5-.4z'/%3e %3cpath fill='%23ad1519' d='M332.4 228.8h-1c-.2 0-.4-.1-.4-.3 0-.1.2-.3.4-.3h2a.3.3 0 01.3.3c0 .2-.1.3-.3.3h-1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.4 228.8h-1c-.2 0-.4-.1-.4-.3 0-.1.2-.3.4-.3h2a.3.3 0 01.3.3c0 .2-.1.3-.3.3h-1'/%3e %3cpath fill='%23058e6e' d='M327.4 229.2h-.7a.3.3 0 01-.4-.2.3.3 0 01.3-.3l.7-.1.7-.2c.2 0 .4.1.4.3 0 .2 0 .3-.3.4h-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M327.4 229.2h-.7a.3.3 0 01-.4-.2.3.3 0 01.3-.3l.7-.1.7-.2c.2 0 .4.1.4.3 0 .2 0 .3-.3.4h-.7'/%3e %3cpath fill='%23ad1519' d='M324.5 229.7l.4-.5.6.1-.4.6-.6-.2'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M324.5 229.7l.4-.5.6.1-.4.6-.6-.2'/%3e %3cpath fill='white' d='M334.4 228.7c0-.3.2-.5.5-.5.2 0 .4.2.4.5 0 .2-.2.4-.4.4s-.5-.2-.5-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M334.4 228.7c0-.3.2-.5.5-.5.2 0 .4.2.4.5 0 .2-.2.4-.4.4s-.5-.2-.5-.4z'/%3e %3cpath fill='%23058e6e' d='M337.3 229.2h.7c.2.1.3 0 .4-.2a.3.3 0 00-.3-.3l-.7-.1-.7-.2c-.2 0-.4.1-.4.3 0 .2 0 .3.3.4h.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M337.3 229.2h.7c.2.1.3 0 .4-.2a.3.3 0 00-.3-.3l-.7-.1-.7-.2c-.2 0-.4.1-.4.3 0 .2 0 .3.3.4h.7'/%3e %3cpath fill='%23ad1519' d='M340.1 229.7l-.3-.5h-.7l.4.6h.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M340.1 229.7l-.3-.5h-.7l.4.6h.6'/%3e %3cpath fill='%23ad1519' d='M332.3 231.6a27.1 27.1 0 01-6.4-.7 27.9 27.9 0 0113 0 27.1 27.1 0 01-6.6.7'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.3' d='M332.3 231.6a27.1 27.1 0 01-6.4-.7 27.9 27.9 0 0113 0 27.1 27.1 0 01-6.6.7z'/%3e %3cpath fill='%23c8b100' d='M340.2 226.2l-.1-.4c-.2 0-.3 0-.4.2l.1.5c.2 0 .3-.1.4-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M340.2 226.2l-.1-.4c-.2 0-.3 0-.4.2l.1.5c.2 0 .3-.1.4-.3z'/%3e %3cpath fill='%23c8b100' d='M335.2 225.2c0-.2 0-.3-.2-.4-.1 0-.3.2-.3.4s0 .3.2.4c.2 0 .3-.2.3-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M335.2 225.2c0-.2 0-.3-.2-.4-.1 0-.3.2-.3.4s0 .3.2.4c.2 0 .3-.2.3-.4z'/%3e %3cpath fill='%23c8b100' d='M329.5 225.2c0-.2 0-.3.2-.4.1 0 .3.2.3.4s0 .3-.2.4c-.2 0-.3-.2-.3-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M329.5 225.2c0-.2 0-.3.2-.4.1 0 .3.2.3.4s0 .3-.2.4c-.2 0-.3-.2-.3-.4z'/%3e %3cpath fill='%23c8b100' d='M324.5 226.2l.1-.4c.2 0 .3 0 .4.2l-.1.5c-.2 0-.3-.1-.4-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M324.5 226.2l.1-.4c.2 0 .3 0 .4.2l-.1.5c-.2 0-.3-.1-.4-.3z'/%3e %3cpath fill='%23c8b100' d='M332.3 222.4l-.8.5.6 1.4.2.2.3-.2.6-1.4-.9-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.3 222.4l-.8.5.6 1.4.2.2.3-.2.6-1.4-.9-.5'/%3e %3cpath fill='%23c8b100' d='M330.4 224.5l.4.6 1.4-.4.1-.2-.1-.2-1.4-.4-.4.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M330.4 224.5l.4.6 1.4-.4.1-.2-.1-.2-1.4-.4-.4.6'/%3e %3cpath fill='%23c8b100' d='M334.3 224.5l-.4.6-1.4-.4-.1-.2.1-.2 1.4-.4.4.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M334.3 224.5l-.4.6-1.4-.4-.1-.2.1-.2 1.4-.4.4.6'/%3e %3cpath fill='%23c8b100' d='M326.6 223l-.7.6 1 1.2.2.1.1-.2.3-1.4-.9-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M326.6 223l-.7.6 1 1.2.2.1.1-.2.3-1.4-.9-.3'/%3e %3cpath fill='%23c8b100' d='M325.2 225.3l.5.5 1.2-.7.1-.2-.1-.2h-1.5l-.2.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M325.2 225.3l.5.5 1.2-.7.1-.2-.1-.2h-1.5l-.2.6'/%3e %3cpath fill='%23c8b100' d='M329 224.6l-.3.6-1.4-.1-.2-.2v-.2l1.3-.7.6.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M329 224.6l-.3.6-1.4-.1-.2-.2v-.2l1.3-.7.6.6'/%3e %3cpath fill='%23c8b100' d='M323.8 225.5l-.1.7-1.5.1h-.2v-.3l1.2-1 .6.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M323.8 225.5l-.1.7-1.5.1h-.2v-.3l1.2-1 .6.5'/%3e %3cpath fill='%23c8b100' d='M326.6 225a.5.5 0 01.5-.6.5.5 0 01.5.5.5.5 0 01-.5.5.5.5 0 01-.5-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M326.6 225a.5.5 0 01.5-.6.5.5 0 01.5.5.5.5 0 01-.5.5.5.5 0 01-.5-.5z'/%3e %3cpath fill='%23c8b100' d='M338 223l.8.6-1 1.2-.2.1-.1-.2-.3-1.4.9-.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M338 223l.8.6-1 1.2-.2.1-.1-.2-.3-1.4.9-.3'/%3e %3cpath fill='%23c8b100' d='M339.5 225.3l-.5.5-1.3-.7v-.2l.1-.2h1.5l.2.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M339.5 225.3l-.5.5-1.3-.7v-.2l.1-.2h1.5l.2.6'/%3e %3cpath fill='%23c8b100' d='M335.7 224.6l.3.6 1.4-.1.2-.2v-.2l-1.3-.7-.6.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M335.7 224.6l.3.6 1.4-.1.2-.2v-.2l-1.3-.7-.6.6'/%3e %3cpath fill='%23c8b100' d='M340.7 225.5l.1.7 1.4.1h.3v-.3l-1.2-1-.6.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M340.7 225.5l.1.7 1.4.1h.3v-.3l-1.2-1-.6.5'/%3e %3cpath fill='%23c8b100' d='M331.8 224.5c0-.3.3-.5.5-.5s.5.2.5.5c0 .2-.2.4-.5.4a.5.5 0 01-.5-.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M331.8 224.5c0-.3.3-.5.5-.5s.5.2.5.5c0 .2-.2.4-.5.4a.5.5 0 01-.5-.4z'/%3e %3cpath fill='%23c8b100' d='M337.1 225a.5.5 0 01.5-.6c.3 0 .5.2.5.5s-.2.5-.5.5a.5.5 0 01-.5-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M337.1 225a.5.5 0 01.5-.6c.3 0 .5.2.5.5s-.2.5-.5.5a.5.5 0 01-.5-.5z'/%3e %3cpath fill='%23c8b100' d='M331.4 219c0-.4.4-.8 1-.8s.9.4.9.9-.4.9-1 .9a1 1 0 01-.9-1'/%3e %3cpath fill='%23c8b100' d='M333 218.8v.6h-1.5v-.6h.5v-1.4h-.6v-.6h.6v-.5h.7v.5h.6v.6h-.6v1.4h.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M333 218.8v.6h-1.5v-.6h.5v-1.4h-.6v-.6h.6v-.5h.7v.5h.6v.6h-.6v1.4h.3z'/%3e %3cpath fill='%23c8b100' d='M333.7 218.8v.6H331v-.6h1v-1.4h-.7v-.6h.6v-.5h.7v.5h.6v.6h-.6v1.4h1'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M332.6 218.2a.9.9 0 01.7.9c0 .5-.4.9-1 .9a1 1 0 01-.9-1c0-.3.3-.7.7-.8'/%3e %3cpath fill='%23c8b100' d='M321.9 226.3l-.7-.8-.7-.3s.3-.3.6-.3l.5.2v-.2s.2 0 .3.4c.2.3 0 .7 0 .7v.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M321.9 226.3l-.7-.8-.7-.3s.3-.3.6-.3l.5.2v-.2s.2 0 .3.4c.2.3 0 .7 0 .7v.3z'/%3e %3cpath fill='%23c8b100' d='M321.9 226l.5.1c.2.2.3.4.1.5h-.5c-.2-.2-.2-.4-.1-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M321.9 226l.5.1c.2.2.3.4.1.5h-.5c-.2-.2-.2-.4-.1-.5z'/%3e %3cpath fill='%23c8b100' d='M342.6 226.3l.7-.8.7-.3s-.3-.3-.6-.3a.6.6 0 00-.5.2v-.2s-.3 0-.4.4v.7l.1.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M342.6 226.3l.7-.8.7-.3s-.3-.3-.6-.3a.6.6 0 00-.5.2v-.2s-.3 0-.4.4v.7l.1.3z'/%3e %3cpath fill='%23c8b100' d='M342.6 226l-.5.1c-.2.2-.2.4-.1.5.1.2.3.1.5 0 .2-.2.3-.4.1-.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M342.6 226l-.5.1c-.2.2-.2.4-.1.5.1.2.3.1.5 0 .2-.2.3-.4.1-.5z'/%3e %3cpath fill='%23c8b100' d='M321 238h22.8v-6h-22.9v6z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M321 238h22.8v-6h-22.9v6z'/%3e %3cpath fill='%23c8b100' d='M341.4 242a1 1 0 00-.4-.1h-17.6c.6-.2 1-.7 1-1.3 0-.6-.5-1.2-1-1.4l.4.1h17.6c-.7.2-1 .7-1 1.3 0 .6.4 1.1 1 1.3'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M341.4 242a1 1 0 00-.4-.1h-17.6c.6-.2 1-.7 1-1.3 0-.6-.5-1.2-1-1.4l.4.1h17.6c-.7.2-1 .7-1 1.3 0 .6.4 1.1 1 1.3z'/%3e %3cpath fill='%23c8b100' d='M323.9 241.9h17c.6 0 1.1.3 1.1.8 0 .4-.5.8-1 .8h-17.1c-.6 0-1-.4-1-.8 0-.5.4-.8 1-.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M323.9 241.9h17c.6 0 1.1.3 1.1.8 0 .4-.5.8-1 .8h-17.1c-.6 0-1-.4-1-.8 0-.5.4-.8 1-.8z'/%3e %3cpath fill='%23c8b100' d='M323.9 238h17c.6 0 1.1.2 1.1.6 0 .4-.5.7-1 .7h-17.1c-.6 0-1.1-.3-1.1-.7 0-.4.5-.7 1-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M323.9 238h17c.6 0 1.1.2 1.1.6 0 .4-.5.7-1 .7h-17.1c-.6 0-1.1-.3-1.1-.7 0-.4.5-.7 1-.7z'/%3e %3cpath fill='%23005bbf' d='M316.4 338.6c1.6 0 3-.3 4-.9a8.9 8.9 0 014-.8c1.5 0 3 .3 4 .8 1 .6 2.5 1 4 1a8.7 8.7 0 004-1 9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v2.4a8.9 8.9 0 01-4-1 8.8 8.8 0 00-4-.8c-1.5 0-2.8.4-3.9.9a8.8 8.8 0 01-4 .9 9 9 0 01-4-.9 9 9 0 00-4-.9c-1.5 0-3 .4-4 .9a8.6 8.6 0 01-4 .9v-2.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M316.4 338.6c1.6 0 3-.3 4-.9a8.9 8.9 0 014-.8c1.5 0 3 .3 4 .8 1 .6 2.5 1 4 1a8.7 8.7 0 004-1 9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v2.4a8.9 8.9 0 01-4-1 8.8 8.8 0 00-4-.8c-1.5 0-2.8.4-3.9.9a8.8 8.8 0 01-4 .9 9 9 0 01-4-.9 9 9 0 00-4-.9c-1.5 0-3 .4-4 .9a8.6 8.6 0 01-4 .9v-2.5z'/%3e %3cpath fill='%23ccc' d='M316.4 341a8.7 8.7 0 004-.8 8.9 8.9 0 014-.8c1.5 0 3 .3 4 .8a9 9 0 004 .9c1.6 0 3-.4 4-1a8.9 8.9 0 014-.8 8 8 0 013.9.9 8.9 8.9 0 004 .9v2.4a8.9 8.9 0 01-4-.9 8.6 8.6 0 00-4-.8c-1.5 0-2.8.3-3.9.8a8.7 8.7 0 01-4 1 8.9 8.9 0 01-4-1 9 9 0 00-4-.8 8.9 8.9 0 00-4 .9 8.6 8.6 0 01-4 .9V341'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M316.4 341a8.7 8.7 0 004-.8 8.9 8.9 0 014-.8c1.5 0 3 .3 4 .8a9 9 0 004 .9c1.6 0 3-.4 4-1a8.9 8.9 0 014-.8 8 8 0 013.9.9 8.9 8.9 0 004 .9v2.4a8.9 8.9 0 01-4-.9 8.6 8.6 0 00-4-.8c-1.5 0-2.8.3-3.9.8a8.7 8.7 0 01-4 1 8.9 8.9 0 01-4-1 9 9 0 00-4-.8 8.9 8.9 0 00-4 .9 8.6 8.6 0 01-4 .9V341'/%3e %3cpath fill='%23005bbf' d='M316.4 343.6c1.6 0 3-.4 4-1a8.9 8.9 0 014-.8 9 9 0 014 .9c1 .5 2.5.9 4 .9 1.6 0 3-.4 4-1a9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v2.4a8.9 8.9 0 01-4-.9 8.7 8.7 0 00-4-.8 9 9 0 00-3.9.8 8.7 8.7 0 01-4 1 9 9 0 01-4-1 9 9 0 00-4-.8c-1.5 0-3 .3-4 .8a8.6 8.6 0 01-4 1v-2.6'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M316.4 343.6c1.6 0 3-.4 4-1a8.9 8.9 0 014-.8 9 9 0 014 .9c1 .5 2.5.9 4 .9 1.6 0 3-.4 4-1a9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v2.4a8.9 8.9 0 01-4-.9 8.7 8.7 0 00-4-.8 9 9 0 00-3.9.8 8.7 8.7 0 01-4 1 9 9 0 01-4-1 9 9 0 00-4-.8c-1.5 0-3 .3-4 .8a8.6 8.6 0 01-4 1v-2.6'/%3e %3cpath fill='%23ccc' d='M316.4 348.5a8.6 8.6 0 004-1 9 9 0 014-.7 9 9 0 014 .8c1 .5 2.5.9 4 .9 1.6 0 3-.4 4-1a9 9 0 014-.7c1.5 0 2.8.3 3.9.8 1 .5 2.5.9 4 .9V346a8.8 8.8 0 01-4-.9 8.8 8.8 0 00-4-.8 9 9 0 00-3.9.8 8.7 8.7 0 01-4 1 9 9 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-4 .8 8.7 8.7 0 01-4 1v2.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M316.4 348.5a8.6 8.6 0 004-1 9 9 0 014-.7 9 9 0 014 .8c1 .5 2.5.9 4 .9 1.6 0 3-.4 4-1a9 9 0 014-.7c1.5 0 2.8.3 3.9.8 1 .5 2.5.9 4 .9V346a8.8 8.8 0 01-4-.9 8.8 8.8 0 00-4-.8 9 9 0 00-3.9.8 8.7 8.7 0 01-4 1 9 9 0 01-4-1 9 9 0 00-4-.8 9 9 0 00-4 .8 8.7 8.7 0 01-4 1v2.4'/%3e %3cpath fill='%23005bbf' d='M316.4 351c1.6 0 3-.4 4-1a8.8 8.8 0 014-.8 9 9 0 014 .9c1 .5 2.5.8 4 .8 1.6 0 3-.3 4-.9a9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v-2.5a8.8 8.8 0 01-4-1 8.8 8.8 0 00-4-.7c-1.5 0-2.8.3-3.9.8a8.8 8.8 0 01-4 .9 8.9 8.9 0 01-4-.9 9 9 0 00-4-.8 8.9 8.9 0 00-4 .8 8.7 8.7 0 01-4 .9v2.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M316.4 351c1.6 0 3-.4 4-1a8.8 8.8 0 014-.8 9 9 0 014 .9c1 .5 2.5.8 4 .8 1.6 0 3-.3 4-.9a9 9 0 014-.8c1.5 0 2.8.3 3.9.8 1 .6 2.5 1 4 1v-2.5a8.8 8.8 0 01-4-1 8.8 8.8 0 00-4-.7c-1.5 0-2.8.3-3.9.8a8.8 8.8 0 01-4 .9 8.9 8.9 0 01-4-.9 9 9 0 00-4-.8 8.9 8.9 0 00-4 .8 8.7 8.7 0 01-4 .9v2.5z'/%3e %3cpath fill='%23c8b100' d='M341.4 328.5l-.2.6c0 1.5 1.3 2.7 3 2.7h-23.6c1.6 0 2.9-1.2 2.9-2.7a2.8 2.8 0 000-.6h17.9'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M341.4 328.5l-.2.6c0 1.5 1.3 2.7 3 2.7h-23.6c1.6 0 2.9-1.2 2.9-2.7a2.8 2.8 0 000-.6h17.9z'/%3e %3cpath fill='%23c8b100' d='M323.9 327h17c.6 0 1.1.3 1.1.7 0 .5-.5.8-1 .8h-17.1c-.6 0-1-.3-1-.8 0-.4.4-.8 1-.8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M323.9 327h17c.6 0 1.1.3 1.1.7 0 .5-.5.8-1 .8h-17.1c-.6 0-1-.3-1-.8 0-.4.4-.8 1-.8z'/%3e %3cpath fill='%23c8b100' d='M320.7 337.8H344v-6h-23.4v6z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M320.7 337.8H344v-6h-23.4v6z'/%3e %3cpath fill='%23ad1519' d='M346 305.8c2.2 1.3 3.8 2.7 3.6 3.4-.2.6-1 1-2 1.8-1.6 1.1-2.6 3.2-1.8 4.1a5.9 5.9 0 01.1-9.3'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M346 305.8c2.2 1.3 3.8 2.7 3.6 3.4-.2.6-1 1-2 1.8-1.6 1.1-2.6 3.2-1.8 4.1a5.9 5.9 0 01.1-9.3z'/%3e %3cpath fill='%23ccc' d='M324 326h16.7v-81.6h-16.6V326z'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M336.2 244.4v81.4m1.8-81.4v81.4m-14 .2h16.7v-81.6h-16.6V326z'/%3e %3cpath fill='%23ad1519' d='M307 275a53 53 0 0125-2.2c9.9 1.7 17.5 5.6 16.9 8.9v.2s3.7-8.4 3.7-8.7c.7-3.6-7.7-8-18.8-9.8a57 57 0 00-9.8-.8c-7 0-13.2.9-16.9 2.3v10'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M307 275a53 53 0 0125-2.2c9.9 1.7 17.5 5.6 16.9 8.9v.2s3.7-8.4 3.7-8.7c.7-3.6-7.7-8-18.8-9.8a57 57 0 00-9.8-.8c-7 0-13.2.9-16.9 2.3v10'/%3e %3cpath fill='%23ad1519' d='M340.8 285.1c4.6-.3 7.7-1.5 8-3.5.4-1.5-1.2-3.2-4-4.7-1.2.1-2.6.3-4 .3v8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M340.8 285.1c4.6-.3 7.7-1.5 8-3.5.4-1.5-1.2-3.2-4-4.7-1.2.1-2.6.3-4 .3v8'/%3e %3cpath fill='%23ad1519' d='M324 279c-2.8.4-5 1-6 2l-.2.1c-.5 1 2 3.3 6.3 5.8v-8'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M324 279c-2.8.4-5 1-6 2l-.2.1c-.5 1 2 3.3 6.3 5.8v-8'/%3e %3cpath fill='%23ad1519' d='M351.1 300.9c.4-1.3-4-4-10.4-6.3-3-1-5.3-2.1-8.3-3.4-8.8-4-15.4-8.4-14.6-10l.1-.2c-.4.4-1.2 8.4-1.2 8.4-.8 1.5 5.2 6 13.3 9.8 2.6 1.3 8.1 3.3 10.7 4.2 4.7 1.6 9.3 4.7 8.9 5.8l1.5-8.3'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M351.1 300.9c.4-1.3-4-4-10.4-6.3-3-1-5.3-2.1-8.3-3.4-8.8-4-15.4-8.4-14.6-10l.1-.2c-.4.4-1.2 8.4-1.2 8.4-.8 1.5 5.2 6 13.3 9.8 2.6 1.3 8.1 3.3 10.7 4.2 4.7 1.6 9.3 4.7 8.9 5.8l1.5-8.3z'/%3e %3cpath fill='%23c8b100' d='M317.5 271.3c.6-2.4 1.4-4.7 2.2-7a5.7 5.7 0 01-.5.1 5.4 5.4 0 01-.6 0c-.4 1.8-.9 3.4-1.5 5.1l-2.9-4.4-1 .2-1 .1a140 140 0 014.2 6h1.1m6.3-7H322l-.2 6.5h4.6v-.8a32 32 0 01-2.7.1v-5.9m7.3 1.1l2.1.3v-.4l.1-.4-6.2-.5v.8h2.2l-.6 6h1l.8.1.6-5.9m2.5 6.5c.3 0 .6 0 1 .2l.8.2.7-3h.1l.5 1.2 1 2.3c.3 0 .7 0 1 .2l1.1.2-.3-.6-1.5-3.1c1.2 0 2-.4 2.3-1.3.1-.7-.1-1.2-.7-1.6a6 6 0 00-1.9-.6l-2.5-.5-1.6 6.4m3.2-5.6c.8.2 1.7.3 1.7 1.1a2 2 0 010 .5c-.3 1-1 1.3-2.3 1l.6-2.6m8.7 7.6l-.3 2.1.9.5.9.5.6-7.4a3.6 3.6 0 01-.8-.4l-6.6 4.1.6.3.4.3 1.8-1.4 2.5 1.4zm-1.9-1.7l2.2-1.4-.3 2.4-1.9-1'/%3e %3cpath fill='none' stroke='black' stroke-width='.1' d='M230.3 205.3c0-1.2 1-2.1 2.2-2.1 1.3 0 2.3.9 2.3 2 0 1.2-1 2.2-2.3 2.2a2.2 2.2 0 01-2.2-2.1z'/%3e %3cpath fill='%23ad1519' stroke='black' stroke-width='.3' d='M255.3 187.1c6.8 0 13 1 16.8 2.6a32 32 0 008.6 2.2c2.6.3 5 .4 7 .2 2.9 0 6.9.8 11 2.6a29.2 29.2 0 018 5l-1.7 1.5-.4 4-4.4 5-2.2 2-5.3 4-2.6.3-.8 2.3-33.7-4-33.8 4-.9-2.3-2.6-.2-5.2-4.2-2.2-1.9-4.4-5-.5-4-1.6-1.5a29.5 29.5 0 018-5c4-1.8 8-2.6 10.9-2.6 2 .2 4.4.1 7-.2a32 32 0 008.6-2.2c4-1.6 9.6-2.6 16.4-2.6z'/%3e %3cpath fill='%23c8b100' stroke='black' stroke-width='.4' d='M255.9 231.6c-12.6 0-23.8-1.5-31.9-4-.6 0-.9-.6-.8-1.2a1.2 1.2 0 01.8-1.2 120 120 0 0131.9-4c12.5.1 23.8 1.6 31.8 4 .6.2.9.7.9 1.2 0 .6-.3 1.1-1 1.3a119 119 0 01-31.7 4'/%3e %3cpath fill='%23ad1519' d='M255.8 230a121 121 0 01-29.3-3.4c7.8-2 18-3.2 29.3-3.2a123 123 0 0129.5 3.2c-7.8 2-18.1 3.4-29.5 3.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.1' d='M256.7 230v-6.7m-1.9 6.7v-6.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.2' d='M253.1 230v-6.7m-1.7 6.7v-6.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.3' d='M249.9 230v-6.7m-2.9 6.4v-6.2m1.4 6.2v-6.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.4' d='M244.3 229.4v-5.7m1.4 5.9v-6m-5 5.4v-4.9m1.2 5V224m1.2 5.4V224'/%3e %3cpath fill='none' stroke='black' stroke-width='.5' d='M239.4 229v-4.8m-1.1 4.6v-4.5'/%3e %3cpath fill='none' stroke='black' stroke-width='.6' d='M237 228.7v-4.2m-2.6 3.8V225m1.4 3.5v-3.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.7' d='M233.1 228v-2.9m-1.2 2.7v-2.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.8' d='M230.6 227.5v-2m-1.4 1.8v-1.4'/%3e %3cpath fill='none' stroke='black' stroke-width='.9' d='M227.8 227v-.7'/%3e %3cpath fill='none' stroke='black' stroke-width='.1' d='M264 229.7v-6.2m-3.2 6.4v-6.6m-2.2 6.6v-6.6'/%3e %3cpath fill='%23c8b100' stroke='black' stroke-width='.4' d='M255.8 221.3a115 115 0 00-32.2 4c.7-.3.6-1-.2-3.2-1-2.6-2.6-2.5-2.6-2.5a130 130 0 0135-4.3c13.8 0 26.2 1.7 35.1 4.3 0 0-1.5-.1-2.5 2.5-.9 2.1-1 3-.3 3.3-8-2.5-19.6-4.1-32.3-4.1'/%3e %3cpath fill='%23c8b100' stroke='black' stroke-width='.4' d='M255.8 215.3a131 131 0 00-35 4.3c-.5.2-1.2 0-1.4-.6a1.1 1.1 0 01.8-1.4c8.9-2.7 21.6-4.4 35.6-4.4 14.1 0 26.9 1.7 35.8 4.4.6.2.9.9.7 1.4-.2.6-.8.8-1.4.6-8.9-2.6-21.3-4.2-35-4.3'/%3e %3cpath fill='none' stroke='black' stroke-linejoin='round' stroke-width='.4' d='M255.8 230a121 121 0 01-29.3-3.4c7.8-2 18-3.2 29.3-3.2a123 123 0 0129.5 3.2c-7.8 2-18.1 3.4-29.5 3.4z'/%3e %3cpath fill='white' stroke='black' stroke-width='.4' d='M246 218.5c0-.6.5-1.1 1.1-1.1.7 0 1.2.5 1.2 1 0 .6-.5 1.1-1.2 1.1a1.1 1.1 0 01-1-1'/%3e %3cpath fill='%23ad1519' stroke='black' stroke-width='.4' d='M255.9 219.3h-3.4c-.6 0-1.1-.5-1.1-1 0-.6.5-1.1 1-1.1h6.9a1 1 0 011.1 1c0 .6-.5 1.