app-MAIL-temp/static/assets/images/flags/ad.svg
Son NK c18d9f5280 create BaseForm to enable CSRF
register page

redirect user to dashboard if they are logged in

enable csrf for login page

Set models more strict

bootstrap developer page

add helper method to ModelMixin, remove CRUDMixin

display list of clients on developer index, add copy client-secret to clipboard using clipboardjs

add toastr and use jquery non slim

display a toast when user copies the client-secret

create new client, generate client-id using unidecode

client detail page: can edit client

add delete client

implement /oauth/authorize and /oauth/allow-deny

implement /oauth/token

add /oauth/user_info endpoint

handle scopes: wip

take into account scope: display scope, return user data according to scope

create virtual-domain, gen email, client_user model WIP

create authorize_nonlogin_user page

user can choose to generate a new email

no need to interfere with root logger

log for before and after request

if user has already allowed a client: generate a auth-code and redirect user to client

get_user_info takes into account gen email

display list of clients that have user has authorised

use yk-client domain instead of localhost as cookie depends on the domain name

use wtforms instead of flask_wtf

Dockerfile

delete virtual domain

EMAIL_DOMAIN can come from env var

bind to host 0.0.0.0

fix signup error: use session as default csrf_context

rename yourkey to simplelogin

add python-dotenv, ipython, sqlalchemy_utils

create DB_URI, FLASK_SECRET. Load config from CONFIG file if exist

add shortcuts to logging

create shell

add psycopg2

do not add local data in Dockerfile

add drop_db into shell

add shell.prepare_db()

fix prepare_db

setup sentry

copy assets from tabler/dist

add icon downloaded from https://commons.wikimedia.org/wiki/File:Simpleicons_Interface_key-tool-1.svg

integrate tabler - login and register page

add favicon

template: default, header. Use gravatar for user avatar url

use default template for dashboard, developer page

use another icon

add clipboard and notie

prettify dashboard

add notie css

add fake gen email and client-user

prettify list client page, use notie for toast

add email, name scope to new client

display client scope in client list

prettify new-client, client-detail

add sentry-sdk and blinker

add arrow, add dt jinja filter, prettify logout, dashboard

comment "last used" in dashboard for now

prettify date display

add copy email to clipboard to dashboard

use "users" as table name for User as "user" is reserved key in postgres

call prepare_db() when creating new db

error page 400, 401, 403, 404

prettify authorize_login_user

create already_authorize.html for user who has already authorized a client

user can generate new email

display all other generated emails

add ENV variable, only reset DB when ENV=local

fix: not return other users gen emails

display nb users for each client

refactor shell: remove prepare_db()

add sendgrid

add /favicon.ico route

add new config: URL, SUPPORT_EMAIL, SENDGRID_API_KEY

user needs to activate their account before login

create copy button on dashboard

client can have multiple redirect uris, in client detail can add/remove redirect-uri,

use redirect_uri passed in /authorize

refactor: move get_user_info into ClientUser model

dashboard: display all apps, all generated emails

add "id" into user_info

add trigger email button

invalidate the session at each new version by changing the secret

centralize Client creation into Client.create_new

user can enable/disable email forwarding

setup auto dismiss alert: just add .alert-auto-dismiss

move name down in register form

add shell.add_real_data

move blueprint template to its own package

prettify authorize page for non-authenticated user

update readme, return error if not redirect_uri

add flask-wtf, use psycopg2-binary

use flask-wtf FlaskForm instead of Form

rename email -> email_utils

add AWS_REGION, BUCKET, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY to config

add s3 module

add File model, add Client.icon_id

handle client icon update

can create client with icon

display client icon in client list page

add Client.home_url

take into account Client.home_url

add boto3

register: ask name first

only show "trigger test email" if email forwarding is enabled

display gen email in alphabetical order, client in client.name alphabetical order

better error page

the modal does not get close when user clicks outside of modal

add Client.published column

discover page that displays all published Client

add missing bootstrap.bundle.min.js.map

developer can publish/unpublish their app in discover

use notie for display flash message

create hotmail account

fix missing jquery

add footer, add global jinja2 variable

strengthen model: use nullable=False whenever possible,

rename client_id to oauth_client_id, client_secret to oauth_client_secret

add flask-migrate

init migrate

1st migrate version

fix rename client_id -> oauth_client_id

prettify UI

use flask_migrate.upgrade() instead of db.create_all()

make sure requirejs.config is called for all page

enable sentry for js, use uppercase for global jinja2 variables

add flask-admin

add User.is_admin column

setup flask admin, only accessible to admin user

fix migration: add server_default

replace session[redirect_after_login] by "next" request args

add pyproject.toml: ignore migrations/ in black

add register waiting_activation_email page

better email wording

add pytest

add get_host_name_and_scheme and tests

example fail test

fix test

fix client-id display

add flask-cors

/user_info supports cors, add /me as /user_info synonym

return client in /me

support implicit flow

no need to use with "app.app_context()"

add watchtower to requirement

add param ENABLE_CLOUDWATCH, CLOUDWATCH_LOG_GROUP, CLOUDWATCH_LOG_STREAM

add cloudwatch logger if cloudwatch is enabled

add 500 error page

add help text for list of used client

display list of app/website that an email has been used

click on client name brings to client detail page

create style.css to add additional style, append its url with the current sha1 to avoid cache

POC on how to send email using postfix

add sqlalchemy-utils

use arrow instead of datetime

add new params STRIPE_API, STRIPE_YEARLY_SKU, STRIPE_MONTHLY_PLAN

show full error in local

add plan, plan_expiration to User, need to create enum directly in migration script, cf https://github.com/sqlalchemy/alembic/issues/67

reformat all html files: use space instead of tab

new user will have trial plan for 15 days

add new param MAX_NB_EMAIL_FREE_PLAN

only user with enough quota can create new email

if user cannot create new gen email, pick randomly one from existing gen emails. Use flush instead of commit

rename STRIPE_YEARLY_SKU -> STRIPE_YEARLY_PLAN

open client page in discover in a new tab

add stripe

not logging /static call: disable flask logging, replace by after_request

add param STRIPE_SECRET_KEY

add 3 columns stripe_customer_id, stripe_card_token, stripe_subscription_id

user can upgrade their pricing

add setting page as coming-soon

add GenEmail, ClientUser to admin

ignore /admin/static logging

add more fake data

add ondelete="cascade" whenever possible

rename plan_expiration -> trial_expiration

reset migration: delete old migrations, create new one

rename test_send_email -> poc_send_email to avoid the file being called by pytest

add new param LYRA_ANALYTICS_ID, add lyra analytics

add how to create new migration into readme

add drift to base.html

notify admin when new user signs up or pays subscription

log exception in case of 500

use sendgrid to notify admin

add alias /userinfo to user_info endpoint

add change_password to shell

add info on how payment is handled

invite user to retry if card not working

remove drift and add "contact us" link

move poc_send_email into poc/

support getting client-id, client-secret from form-data in addition to basic auth

client-id, client-secret is passed in form-data by passport-oauth2 for ex

add jwtRS256 private and public key

add jwk-jws-jwt poc

add new param OPENID_PRIVATE_KEY_PATH, OPENID_PRIVATE_KEY_PATH

add scope, redirect_url to AuthorizationCode and OauthToken

take into scope when creating oauth-token, authorization-code

add jwcrypto

add jose_utils: make_id_token and verify_id_token

add &scope to redirect uri

add "email_verified": True into user_info

fix user not activated

add /oauth2 as alias for /oauth

handle case where scope and state are empty

remove threaded=False

Use Email Alias as wording

remove help text

user can re-send activation email

add "expired" into ActivationCode

Handle the case activation code is expired

reformat: use form.validate_on_submit instead of request.method == post && form.validate

use error text instead of flash()

display client oauth-id and oauth-secret on client detail page

not display oauth-secret on client listing

fix expiration check

improve page title, footer

add /jwks and /.well-known/openid-configuration

init properly tests, fix blueprint conflict bug in flask-admin

create oauth_models module

rename Scope -> ScopeE to distinguish with Scope DB model

set app.url_map.strict_slashes = False

use ScopeE instead of SCOPE_NAME, ...

support access_token passed as args in /userinfo

merge /allow-deny into /authorize

improve wording

take into account the case response_type=code and openid is in scope

take into account response_type=id_token, id_token token, id_token code

make sure to use in-memory db in test

fix scope can be null

allow cross_origin for /.well-known/openid-configuration and /jwks

fix footer link

center authorize form

rename trial_expiration to plan_expiration

move stripe init to create_app()

use real email to be able to receive email notification

add user.profile_picture_id column

use user profile picture and fallback to gravatar

use nguyenkims+local@gm to distinguish with staging

handle plan cancel, reactivation, user profile update

fix can_create_new_email

create cron.py that set plan to free when expired

add crontab.yml

add yacron

use notify_admin instead of LOG.error

add ResetPasswordCode model

user can change password in setting

increase display time for notie

add forgot_password page

If login error: redirect to this page upon success login.

hide discover tab

add column user.is_developer

only show developer menu to developer

comment out the publish button

set local user to developer

make sure only developer can access /developer blueprint

User is invited to upgrade if they are in free plan or their trial ends soon

not sending email when in local mode

create Partner model

create become partner page

use normal error handling on local

fix migration

add "import sqlalchemy_utils" into migration template

small refactoring on setting page

handle promo code. TODO: add migration file

add migration for user.promo_codes

move email alias on top of apps in dashboard

add introjs

move encode_url to utils

create GenEmail.create_new_gen_email

create a first alias mail to show user how to use when they login

show intro when user visits the website the first time

fix register
2019-07-02 10:20:12 +03:00

1 line
54 KiB
XML
Executable File

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480"><path fill="#d0103a" d="M0 0h640v480H0z"/><path fill="#fedf00" d="M0 0h435.2v480H0z"/><path fill="#0018a8" d="M0 0h204.8v480H0z"/><path d="M300.397 136.627c7.712 0 10.866 6.617 18.578 6.617 4.76 0 7.538-1.555 11.687-3.896 2.895-1.64 4.743-2.514 8.068-2.514 3.404 0 5.49 1.03 7.232 3.947.984 1.652 1.8 4.883 1.368 6.737-.82 3.516-1.325 5.044-2.727 8.29-.668 1.56-1.298 2.495-1.298 4.202 0 4.093 5.57 5.5 9.358 5.558.826.013 7.77.127 12.042-4.2-2.32-.1-4.913-1.896-4.913-4.214 0-2.624 1.844-4.4 4.343-5.157.475-.136 1.284.284 1.714.057.61-.316.323-1.003.866-1.433 1.244-.994 2.053-1.615 3.647-1.615 1.04 0 1.65.146 2.487.746.44.317.603.71 1.146.71 1.142 0 1.708-.725 2.85-.725.927 0 1.493.125 2.307.543.678.35.663 1.503 1.432 1.503.385 0 2.42-.828 3.48-.828 2.207 0 3.384.8 4.81 2.472.384.453.63 1.368 1.02 1.368.788 0 2.602.507 3.733 1.638.486.486.702.716 1.075 1.304.26.42.66 1.44 1.12 1.617.538.208.99.168 1.698.623 1.618 1.036 2.86 2.983 2.803 4.87-.02.633-.31 1.516-.48 2.12-1.883 6.58-6.363 8.67-10.886 14.323-1.923 2.41-3.44 4.33-3.44 7.418 0 .747.92 2.114 1.326 2.736-.248-1.45.415-3.233 1.948-3.316 2.1-.113 3.724 1.484 4.007 3.564.056.487-.125 1.327-.332 1.824 1.13-.746 2.62-1.25 3.978-1.41.736-.078 1.16-.1 1.907-.082 3.357.083 7.062 1.97 9.31 3.88 6.88 5.844 7.71 14.396 7.336 16.77-.835 5.278-.31 14.828-13.8 18.636 2.496 1.05 4.193 2.927 4.193 5.234 0 2.51-1.924 4.66-4.434 4.66-1.436 0-2.432-.352-3.438-1.358-2.805 2.804-3.347 5.665-3.347 9.634 0 2.375.453 3.777 1.448 5.926 1.052 2.273 1.81 3.607 3.71 5.247 1.006-1.516 2.07-2.625 3.89-2.625 1.764 0 3.257.566 3.98 2.172.215.486.023.882.272 1.357.316.61.848.746 1.176 1.357.51.94.01 1.742.452 2.715.283.633.905.724 1.176 1.357.43.972.543 1.64.543 2.714 0 3.008-2.737 5.157-5.745 5.157-.905 0-1.402-.362-2.307-.272 1.72 1.72 3.03 2.466 4.343 4.525 1.9 2.974 2.375 5.09 2.804 8.594.08.655.09 1.05.09 1.718 0 4.5-.7 7.193-2.713 11.218-1.924 3.856-3.563 5.994-7.058 8.504-5.45 3.924-9.42 5.055-16.013 6.333-4.23.814-6.65 1.176-10.948 1.447-5.496.35-8.628.362-14.113.724-7.193.486-12.18 1.504-17.28 6.604 2.408 1.764 4.07 3.494 4.07 6.47 0 3.052-1.888 5.234-4.794 6.196-.68.226-1.176.022-1.81.362-.757.395-.723 1.266-1.447 1.718-1.28.815-2.274.996-3.8.996-2.692 0-4.524-.634-6.424-2.534-2.206 1.832-2.952 3.484-5.43 4.886-.813.452-1.23 1.085-2.17 1.085-1.48 0-2.16-.938-3.347-1.81-1.89-1.38-2.896-2.295-4.434-4.07-2.25 1.346-3.63 2.443-6.243 2.443-1.606 0-2.623-.227-3.98-1.086-.713-.44-.826-1.097-1.538-1.538-.747-.464-1.37-.294-2.172-.633-3.02-1.3-4.976-3.54-4.976-6.83 0-2.884 1.82-4.716 4.433-5.926-5.01-5.01-9.94-5.88-17.008-6.333-5.462-.35-8.572-.362-14.023-.724-4.332-.294-6.74-.735-11.04-1.447-3.244-.532-5.167-.7-8.14-2.08-10.235-4.773-16.76-11.32-18.095-22.528-.113-.96-.09-1.515-.09-2.488 0-5.835 2.295-9.397 6.423-13.525-1.063-.25-1.775.102-2.805-.27-2.578-.94-4.433-2.727-4.433-5.475 0-1.017.046-1.696.543-2.578.35-.623 1.018-.747 1.176-1.448.203-.928-.07-1.584.36-2.443.284-.578.815-.69 1.087-1.268.893-1.854 2.013-3.347 4.07-3.347 1.765 0 2.896.927 3.8 2.443 1.72-.792 2.194-2.08 3.167-3.71 1.617-2.702 2.352-4.59 2.352-7.734 0-2.194-.215-3.484-.904-5.564-.498-1.493-.702-2.51-1.81-3.62-1.006 1.007-2.002 1.358-3.438 1.358-2.872 0-5.066-2.465-5.066-5.338 0-2.137 1.052-3.72 2.986-4.614-1.55-1.334-2.895-1.447-4.614-2.533-2.613-1.65-3.53-3.392-5.248-5.97-1.12-1.686-1.413-2.862-1.99-4.795-.69-2.33-1.086-3.72-1.086-6.152 0-.633.012-1.007.09-1.63.645-4.907 1.528-7.983 4.615-11.85 1.833-2.296 3.077-3.71 5.79-4.885 2.308-.995 3.687-1.72 6.198-1.72.758 0 1.2 0 1.945.092 1.154.147 1.89.25 2.895.814.385.215 1.086.86 1.086.407 0-.52-.272-.79-.272-1.31 0-2.082 1.493-3.982 3.574-3.982 1.504 0 2.115 1.324 2.85 2.625.475-.792.723-1.335.723-2.262 0-3.438-1.844-5.19-3.98-7.87-4.66-5.825-10.496-8.55-10.496-16.014 0-2.228 1.075-3.744 2.986-4.886.554-.328 1.3 0 1.842-.347.463-.294.41-.893.704-1.368.464-.736.874-1.052 1.52-1.617 1.062-.927 1.995-.65 3.17-1.464.59-.408.728-.937 1.18-1.48 1.312-1.583 2.49-2.347 4.56-2.347 1.04 0 1.623.006 2.585.388.328.126.94.62 1.02.525.208-.25.77-.844 1.437-1.16.87-.42 1.224-.58 2.196-.58 1.108 0 1.835.62 2.943.62.407 0 .5-.406.83-.62.983-.668 1.55-1.045 2.748-1.045 1.153 0 1.79.38 2.763 1.003.916.576 1.048 1.35 1.986 1.892.52.305.96.17 1.538.362 2.58.86 4.525 2.578 4.525 5.292 0 1.47-.35 2.52-1.448 3.482-.87.77-1.696.633-2.804.995 3.596 2.872 6.725 3.585 11.316 3.585 4.206 0 9.35-1.72 9.35-5.926 0-1.957-1.08-3.008-1.85-4.806-1.38-3.2-2.128-5.083-2.128-8.566 0-2.76.3-4.433 1.907-6.672 1.65-2.307 3.667-2.845 6.505-2.845z" fill="#c7b37f"/><g fill="none" stroke="#703d29"><path d="M272.378 159.014c.276 1.045 1.12 2.023 2.444 2.437.796.25 2.638.15 3.832-1.393.968-1.25.894-2.8.532-4.03-.234-.796-.877-1.565-1.726-2.22l-5.08 5.157-.002.05z" stroke-width=".666" stroke-linejoin="round"/><path d="M401.03 236.122c-1.194-2.886-4.28-1.593-4.47 0-.436 3.668 2.78 4.776 5.068 4.18 1.133-.296 1.963-1.01 2.493-1.94.6-1.05.78-2.42.39-3.728a4.9 4.9 0 0 0-.847-1.652 4.973 4.973 0 0 0-1.28-1.21c-.88-.56-1.84-.617-3.343-.617-5.573 0-10.45 6.585-12.087 13.425-.54 2.253-1.28 7.278-.253 12.042 1.094 5.075 3.288 8.59 5.862 11.254 1.393 1.443 3.293 2.728 5.753 4.12.76.428 2.765 1.318 4.158 1.716 1.43.41 2.752.35 3.942.09 3.302-.716 4.837-3.787 3.174-6.93-1.363-2.573-5.375-3.98-7.266-.696-.16.278-.41.885-.402 1.542.01.876.374 1.93 1 2.33 1.436.914 3.736.655 3.63-1.882" stroke-width=".664" stroke-linecap="round"/><path d="M383.802 273.965c1.118-1.316 3.684-3.29 6.62-3.65 2.978-.366 5.566.5 8.21 1.923 5.157 2.774 8.034 5.756 9.95 11.29.487 1.405.89 3.523.835 5.773-.09 3.588-1 7.51-1.98 9.404-.852 1.654-3.084 8.956-15.324 13.996-7.143 2.94-18.112 3.618-25.676 3.917-10.404.41-20.002.796-25.576 7.663" stroke-width=".817"/><g stroke-width=".717"><path d="M386.4 285.728c-.298-1.095-.022-2.144.846-3.334 1.16-1.59 3.632-2.14 5.872-.895.75.415 1.688.963 2.537 2.088.32.426.864 1.113 1.145 1.593.677 1.16.956 2.108 1.09 2.49 2.46 6.993-1.45 14.572-6.564 17.613-3.972 2.362-8.71 3.415-14.38 4.08-2.55.3-4.004.28-6.568.398-2.063.097-3.845.062-5.523.042-1.38-.017-2.69-.01-4.03-.04-2.186-.052-4.448-.103-7.216.1-2.913.21-5.103.285-7.564.695-1.608.268-3.492.527-5.467.97-.594.133-1.195.24-1.8.423l-1.203.368c-3.566 1.088-7.03 2.413-9.765 4.174-.844.544-1.798 1.088-2.48 1.733-.426.4-.943.804-1.36 1.214-1.914 1.882-3.87 3.92-4.328 6.68-.084.51-.084 1.042-.084 1.604 0 1.79 1.457 4.23 5.388 5.026m5.531-170.12c.822 1.488 1.275 2.393.796 3.93-.542 1.744-1.778 2.788-3.533 2.788-3.98 0-6.322-4.713-4.528-7.713 3.185-5.324 9.305-2.334 14.977.303-.274-1.365-.752-1.81-.702-3.5.124-4.202 3.24-6.108 4.483-9.988.742-2.312 1.037-4.32-.655-5.962-1.477-1.434-3.188-1.412-5.116-.656-3.852 1.51-8.478 5.848-16.622 5.968-8.143-.12-12.808-4.46-16.66-5.968-1.926-.756-3.638-.778-5.115.656-1.692 1.642-1.397 3.65-.656 5.962 1.244 3.88 4.36 5.786 4.483 9.987.05 1.692-.428 2.136-.7 3.5 5.67-2.636 12.03-5.894 14.976-.302 1.642 3.116-.547 7.713-4.528 7.713-1.755 0-2.987-1.12-3.533-2.787-.486-1.485 0-2.785.796-3.93"/><path d="M314.56 159.866c1.538 1.176 2.624 2.623 2.443 4.975-.197 2.553-.815 3.168-2.805 4.525m2.397-3.798c-.09 1.538-.723 2.533-2.26 3.166" stroke-linecap="round"/></g><path d="M276.736 153.274l.697.497.746.797.496.996.25.846.05 1.093-.05.746-.25.845-.497.597-.598.647-.846.447-1.095.25-.944.148-.995-.448-.895-.646-.547-.796-.398-.995v-.4l4.876-4.626z" fill="#c7b37f" stroke="none"/><path d="M275.206 157.165c-.306-1.652-2.237-1.99-2.985-1.015-1.15 1.502-.31 4.004 2.034 4.737.796.25 2.637.15 3.83-1.394.97-1.25.895-2.8.533-4.03-.234-.796-.873-1.49-1.726-2.14-2.72-2.07-7.115-1.592-8.558 1.89-1.862 4.494 2.19 7.863 5.92 10.4 4.7 3.195 10.052 3.776 14.083 3.733 9.156-.1 16.122-4.48 20.65-6.966 1.055-.58 2.14-.46 2.687.2.616.744.606 1.946-.25 2.735" stroke-width=".666" stroke-linecap="round"/><path d="M248.064 281.184l-2.04.746-2.09 1.593-.896 1.244-1.144 1.99-.498 1.493-.398 1.84-.2 1.394m19.01-10.102l-.15 1.792-.298 1.244-.896 2.14-1.393 1.84-1.492 1.195-1.094.547-1.543.348" stroke-width=".676"/><path d="M319.744 329.107c-.37 1.656-1.922 3.55-5.3 4.235l-.655.136" stroke-width=".766"/><path d="M404.218 276.205c2.137 1.993 3.638 4.42 4.792 7.75.487 1.404.89 3.523.834 5.773-.09 3.587-1 7.507-1.98 9.403-.852 1.655-3.083 8.957-15.324 13.996-7.143 2.94-18.112 3.62-25.676 3.918-10.254.404-19.726.785-25.332 7.37" stroke-width=".868"/><path d="M387.488 282.848c.76-1.038 3.53-2.35 5.77-1.107.737.41 1.61.928 2.377 2.076" stroke-width=".595"/><path d="M401.606 273.786c.5.192 1 .366 1.436.49 1.43.41 2.776.44 3.942.09 2.83-.848 4.647-3.492 3.174-6.93-.342-.796-.996-1.56-1.74-2.133" stroke-width=".868"/><path d="M240.282 199.763c-1.9 1.176-3.317 1.455-4.795 3.167-1.472 2.914-2.05 4.48-2.624 6.816m46.1-51.692c0 1.72-1.266 2.805-2.985 3.167" stroke-width=".666" stroke-linecap="round"/><path d="M397.114 192.02c4.73-.097 18.47 3.608 18.567 19.76.098 15.952-9.844 18.558-13.827 19.62" stroke-width=".638"/><path d="M398.355 192.02c8.156-.355 16.57 5.648 16.942 20.63.29 11.705-8.01 17.014-11.995 18.076" stroke-width=".664"/><path d="M393.81 248.422l.127-1.6.533-2.544.754-1.978.848-1.633 1.1-1.32m7.782-3.397l-.125 1.566-.45 1.07-.695 1.02-.796.597-1.22.448-1.07.076-.796-.125M385.49 187.79l.35-1.693.746-1.567.97-1.568 1.667-2.14 1.32-1.467 2.138-2.165 1.842-1.866 1.17-1.343 1.542-1.865 1.368-2.065.822-1.692.447-2.19.137-2.714-.248-.787m-12.279 128.174l1.617-.324 1.218-.647.672-.67.472-.772.324-1.244.025-.87m-158.248-12.152l1.194.1 1.542-.125 1.543-.547m5.001-36.548l-.2 1.393-.323.622-.474.597-.647.498-.722.323-.945.15-.647.05m9.903-15.62l-.348 2.164-.424.946-.87 1.194-1.17.896-1.194.597-2.314.572m15.299-39.758l-.447 1.294-.55.946-.745 1.045-1.045.947-1.244.597-1.045.248-.646-.05m.378-6.198l.025.995" stroke-width=".564"/><g stroke-width=".632"><path d="M254.285 224.058a6.855 6.855 0 0 1-2.09 1.298m150.519 44.826c.085.093.372.14.472.2 1.418.845 4.21-.21 3.39-2.4" stroke-linecap="round"/><path d="M397.786 239.603c1.006 1.315 2.904 1.657 4.405 1.265 1.134-.296 1.964-1.01 2.494-1.94.598-1.05.78-2.42.39-3.727a4.907 4.907 0 0 0-.848-1.65c-.426-.563-.955-1.16-1.364-1.428-.11-.07-.217-.167-.332-.245m6.423 34.016a3.94 3.94 0 0 0 .066-.72c0-1.158-.485-2.22-1.286-2.934-.274-.245-.54-.624-.87-.79m.476.47c-.046-1.864-1.57-3.197-3.462-3.53m-4.172 2.84c-.435-.356-.9-.657-1.307-1.082-2.45-2.563-4.292-6.352-4.316-10.674-.024-4.143 1.642-8.36 3.582-10m-56.5 84.648l1.79-1.643 1.245-.946 2.34-1.443 2.188-1.044 1.543-.398 3.086-.696 3.582-.548m-29.509 19.364c-1.293 1.99-4.378 4.976-7.613 6.17-3.234-1.194-6.32-4.18-7.613-6.17"/><path d="M314.42 332.627c-.406 1.503-1.143 2.96-2.22 4.13" stroke-linecap="round"/><path d="M314.74 330.54l-.45 2.19m-2.335 4.18l-.945.944-1.692.946-1.94.597m-5.644-177.829c.243-.757.49-1.326.455-2.57-.125-4.2-3.24-6.106-4.484-9.987-.74-2.31-1.036-4.32.656-5.96 1.477-1.434 3.188-1.412 5.116-.657 3.85 1.51 8.517 5.848 16.66 5.97-8.143-.122-12.81-4.46-16.66-5.97-1.928-.755-3.798-.976-5.275.457-1.692 1.642-1.238 3.85-.497 6.16 1.244 3.882 4.2 5.787 4.323 9.99.036 1.242-.292 1.81-.534 2.568m18.621-13.492c8.01-.423 14.877-5.806 17.092-6.245 1.975-.392 3.078-.215 4.526 1.102-1.45-1.317-3.1-1.276-4.973-.54-3.85 1.51-8.477 5.847-16.62 5.968m79.598 112.886c-3.334-2.388-6.19-6.948-6.22-12.335-.023-4.144 1.642-8.36 3.582-10.002m-69.95 97.575c-1.295 1.99-4.38 4.976-7.614 6.17-3.234-1.194-6.32-4.18-7.613-6.17"/><path d="M306.67 163.674c.832-.462 1.605-.9 2.318-1.292 1.055-.58 2.323-.458 2.87.202.615.745.71 2.037-.145 2.826" stroke-linecap="round"/><path d="M294.707 169.274c5.496-1.147 9.975-3.61 13.36-5.502m32.273 164.183c.454.31.746.955.746.955.125.3.288.584.333.85.257 1.522-.74 2.47-1.974 2.614-1.695.197-2.967-.81-3.51-2.03m-41.509-161.352c5.496-1.147 9.974-3.61 13.36-5.502m97.577 106.904c-1.045.402-1.616.348-2.916-.23-.534-.236-1.145-.603-1.86-1.01-2.548-1.446-5.574-3.727-8.41-9.05a18.812 18.812 0 0 1-1.71-4.476c-.27-1.11-.458-2.208-.5-3.335-.068-1.92.14-3.925.618-6.222.79-3.79 1.744-5.85 4.08-9.055 1.15-1.576 2.14-2.537 4.28-2.587M255.25 195.123c1.78 1.512 2.64 3.384 2.64 5.722 0 3.1-2.594 8.16-8.963 9.952-2.44.686-4.856.132-6.317-.756"/><path d="M256.294 205.62c1.145.795 1.593 1.69 1.593 3.244 0 1.065-.69 2.446-1.86 3.754-1.92 2.142-5.173 3.962-8.78 4.007-1.955.024-3.986-.384-6.03-1.75-2.184-1.46-3.333-3.434-3.83-5.375"/><path d="M256.192 212.294c1.297 1.192 1.695 2.684 1.695 4.563 0 2.745-1.115 4.864-3.68 7.108-.573.502-1.22.972-1.94 1.395m129.429-22.077v3.532m-.282-4.402v4.975m.282-15.746v6.518m-.282-7.958v8.907m-1.9 81.961c-1.236 2.453-2.223 3.742-4.18 5.67-1.975 1.947-3.343 2.84-5.822 4.08-2.414 1.21-3.934 1.596-6.568 2.19-2.632.595-4.17.725-6.867.847-2.47.112-3.874.008-6.342-.163-2.64-.183-4.107-.55-6.744-.783-2.178-.19-3.408-.366-5.595-.36-2.248.006-3.536.02-5.75.41-2.062.366-3.232.657-5.174 1.444-2.685 1.088-5.72 2.985-6.368 3.83-.647-.845-3.683-2.742-6.37-3.83-1.94-.787-3.11-1.078-5.174-1.443-2.214-.39-3.5-.405-5.75-.41-2.186-.007-3.417.17-5.595.36-2.638.233-4.103.6-6.744.784-2.47.17-3.872.275-6.343.163-2.696-.122-4.235-.25-6.867-.846-2.633-.596-4.153-.98-6.568-2.19-2.48-1.238-3.847-2.133-5.822-4.08-.213-.21-.415-.412-.607-.61m42.168 53.367l1.79-.223m30.274-2.355l1.808-.173 1.722-.69 1.205-.73 1.637-1.94.345-.73.258-1.68.086-.774m46.91-136.695c.777-2.64-.17-5.43-2.73-5.354M257.786 234.72c-.65 2.194-2.044 3.693-3.597 4.668m3.641-46.716c-.64 1.85-1.81 3.17-3.663 4.007-1.847.833-3.985.054-5.13-.828"/><path d="M243.808 202.368c1.53.802 3.084-.374 2.766-2.365-.15-.933-1.155-2.112-2.517-2.198" stroke-linecap="round"/><path d="M250.157 286.63c.33.31.4.714.846.796.67.125 1.194.374 1.866-.522.827-1.104.382-2.82-.48-3.902-.922-1.157-3.592-2.18-5.83-.936-.75.416-1.69.964-2.54 2.09-.32.426-.863 1.113-1.143 1.592-.678 1.16-.956 2.107-1.09 2.488-2.05 5.823.384 11.945 4.152 15.676"/><path d="M340.218 327.827c.408.426.646.796.646.796.126.3.23.584.274.85.258 1.522-.74 2.47-1.973 2.614-1.695.197-2.83-.802-3.37-2.02" stroke-linecap="round"/><path d="M389.44 154.758c3.346.408 6.262 3.602 6.262 7.035 0 4.43-1.492 6.078-3.824 9.246-2.495 3.39-10.648 9.602-10.648 16.668 0 4.28 1.194 7.015 4.28 8.408 1.988.9 4.314-.074 5.373-1.03 2.587-2.34 1.553-6.44-1.144-6.93-3.286-.598-3.903 4.573-.698 4.23m17.826 69.061c-.294-1.772-1.8-3.122-3.615-3.122-2.024 0-3.666 1.68-3.666 3.756 0 1.016.394 1.938 1.034 2.615"/><path d="M383.866 195.123c-1.78 1.512-2.638 3.384-2.638 5.722 0 3.1 2.592 8.16 8.962 9.952 2.44.686 4.772.62 6.233-.267M240.39 200.192c-1.522.508-3.423 1.458-4.83 3.453-1.19 1.683-1.882 4.023-2.31 6.07-.19.896-.413 3.733.16 6.663.424 2.163 1.317 4.177 2.306 5.636a7.94 7.94 0 0 0 1.037 1.236c.33.33.802.624 1.135.88m64.012 92.043c4.85 2.15 8.404 3.76 11.418 8.518.945 1.494 1.194 3.634 1.194 4.877 0 2.687-1.095 5.723-3.334 7.613-2.078 1.755-4.13 2.29-6.667 2.04-1.924-.188-3.73-1.592-4.03-2.587m-46.478-112.506c2.737 2.14 3.88 4.215 3.88 7.514 0 3.78-1.84 6.12-3.98 7.463"/><path d="M251.514 236.422c4.08 5.076 6.245 8.088 6.37 14.132.115 5.672-1.693 9.553-5.077 13.634" stroke-linecap="round"/><path d="M329.747 169.325c.742-.487 1.286-1.267 1.6-2.23.48-1.49.49-2.757-.305-3.902.982 1.285 1.072 2.37.796 3.93-.176.994-.81 1.517-1.6 2.23m51.458 86.161v16.154h.043c0 .01-.007 1.53-.137 2.488a34.413 34.413 0 0 1-.274 1.73"/><path d="M381.414 253.958v17.423h.043c0 .013-.005 1.53-.135 2.49-.136 1-.28 1.847-.467 2.64m.559-42.949v14.53m.282-13.385v11.817m0-26.844v8.858m-.282-9.901v10.92m.282-18.933v3.436m-.282-4.134v4.977m-1.844 65.193c-.105.224-.218.455-.338.694-1.235 2.454-2.222 3.743-4.18 5.672-1.974 1.947-3.343 2.838-5.82 4.08-2.415 1.21-3.936 1.595-6.57 2.19-2.63.594-4.17.724-6.866.846-2.472.11-3.874.007-6.342-.163-2.642-.183-4.107-.55-6.744-.783-2.18-.19-3.41-.367-5.596-.362-2.248.007-3.536.02-5.75.412-2.062.365-3.232.656-5.174 1.443-2.687 1.088-5.722 2.985-6.37 3.83-.646-.845-3.682-2.742-6.368-3.83-1.942-.787-3.112-1.078-5.175-1.443-2.214-.392-3.502-.406-5.75-.412-2.186-.006-3.417.17-5.595.362-2.638.232-4.103.6-6.745.783-2.468.17-3.87.274-6.342.163-2.695-.122-4.235-.25-6.866-.846-2.635-.597-4.154-.982-6.57-2.19-2.48-1.24-3.847-2.133-5.82-4.08-1.035-1.02-1.798-1.86-2.47-2.787m-2.009-3.189c.425 3.163-.905 6.272-2.256 7.702-.846.896-2.688 2.607-4.976 2.637-3.78.05-4.91-2.55-5.14-3.184"/><path d="M255.616 278.848c.702.693 1.325 1.54 1.852 2.538.945 1.79.654 4.787-.095 6.17a4.427 4.427 0 0 1-.304.478m-20.243 18.014c2.248 2.36 5.65 4.923 10.873 7.073 7.142 2.942 18.11 3.62 25.675 3.918 10.057.397 19.323.81 24.966 7.04m17.366-4.073c1.662 1.636 3.358 3.39 4.074 5.63m-7.345 11.452a8.22 8.22 0 0 1-.693.66c-2.078 1.753-4.13 2.288-6.668 2.04-1.924-.19-3.78-1.632-4.278-2.577m-5.353-2.907c.093.127.19.25.293.37 1.208 1.406 3.115 2.288 5.106 2.452m26.87-.076c-1.294 1.99-4.38 4.975-7.613 6.17-3.235-1.195-6.32-4.18-7.614-6.17l-.302-.465m15.58.452c.23.25.478.488.74.71 2.078 1.754 4.13 2.288 6.668 2.04 1.925-.19 3.453-1.475 4.07-2.588 0 0 .347-.373.444-.73"/><path d="M339.04 336.634l-.743 1.194-1.13.937-1.71.71-1.55.065"/><path d="M343.06 325.26c.915.703 1.814 1.767 2.302 2.903.314.73.46 1.533.505 2.366a5.854 5.854 0 0 1-1.423 4.142c-1.278 1.49-3.272 2.39-5.395 2.475a5.482 5.482 0 0 1-.47 0m.186-.282c-2.03.08-3.843-.788-5.18-2.16m63.675-67.869c-1.582-1.46-3.222-3.48-4.804-6.45a18.803 18.803 0 0 1-1.71-4.474c-.27-1.11-.458-2.208-.5-3.334-.068-1.92.14-3.925.618-6.222.79-3.792 2.203-6.726 4.08-9.056.64-.795 1.38-1.786 2.08-2.232m-1.376-75.817c2.538.2 4.89 2.932 4.858 5.61-.045 3.89-1.35 5.497-4.41 9.31-2.637 3.283-10.55 9.055-10.35 14.578.036.98.564 1.994 1.154 2.81m-3.162 3.462c.562.556 1.242 1.014 2.052 1.38 1.447.654 3.073.317 4.26-.283m-21.173-43.221c.85.58 1.716 1.466 2.185 2.6 1.862 4.492-2.19 7.86-5.92 10.4-2.677 1.818-5.565 2.79-8.3 3.28"/><path d="M364.602 161.555c-.905-.01-1.98-.267-3.15-1.497-.268-.283-.583-.658-.707-.994m-14.857 4.904c-.473-.237-.98-.582-1.32-.962-.887-.993-1.48-2.336-.795-4.386.632-1.897 3.677-7.216 3.827-10.898.228-5.625-1.936-8.945-5.32-10.24"/><path d="M347.315 146.464l-.132 2.115-.573 2.16-1.1 2.95-.84 1.896-.88 1.895-.44 1.323-.177.97.133.925m38.012 126.278c.175.423.597.836.597.836.647 1.08 3.162 2.98 5.45 3.01 3.78.05 4.68-2.598 4.777-3.186.477-2.885-.51-3.675-1.99-4.488 0 0-.872-.45-1.917-.277" stroke-linecap="round"/><path d="M236.947 274.35c-1.335.34-2.59.35-3.685.02-2.83-.85-5.124-3.56-3.954-6.93m13.386-31.824c.284.285.375.71.418 1.07.437 3.667-2.777 4.736-5.066 4.14-1.134-.297-2.485-1.35-3.015-2.28a4.707 4.707 0 0 1-.614-2.303m22.057-23.667c.573.527.97 1.112 1.236 1.764m-1.134-8.516c.53.37.912.84 1.168 1.307"/><path d="M257.862 210.522c-.31.762-.843 1.584-1.555 2.38-1.92 2.14-5.173 3.96-8.778 4.005-1.957.025-3.988-.384-6.03-1.75-2.186-1.46-3.61-3.538-4.082-5.578" stroke-linecap="round"/><path d="M255.43 195.283c1.108.942 1.958 2.142 2.367 3.39"/><path d="M257.83 203.238c-.885 2.928-3.526 6.548-8.622 7.84-2.435.616-5.57-.155-6.64-1.066" stroke-linecap="round"/><path d="M240.038 202.554c.267 2.637 2.032 4.613 5.377 4.677 4.704.09 7.564-6.767 3.384-11.58"/><path d="M229.453 225.53c.687.862 1.496 1.64 2.323 2.327 1.677 1.396 3.655 2.625 5.934 3.298m5.28.493c4.203-.505 6.573-3.638 6.103-7.302-.358-2.793-2.92-4.94-4.662-5.064" stroke-linecap="round"/><path d="M249.85 188.11c1.823-.07 2.86 1.588 2.844 2.984"/><path d="M249.42 163.078c1 2.614 2.947 4.657 5.032 5.824m144.178 30.964c1.72 2.354.594 6.996-4.082 7.084-1.827.035-3.475-.978-4.44-2.51" stroke-linecap="round"/><path d="M381.696 169.12v15.8"/><path d="M243.757 202.33c1.443 1.044 3.296-.72 2.58-2.592-.485-1.264-2.282-2.628-4.77-.937-2.747 1.87-1.99 7.764 3.285 7.863 4.703.09 7.563-6.767 3.383-11.58-4.02-4.63-11.345-3.546-16.12.254-2.034 1.617-5.873 5.853-7.067 11.625-.372 1.797-.612 3.272-.584 5.075.02 1.188.13 2.52.484 4.18.72 3.354 1.9 5.81 3.076 7.517.45.654.862 1.197 1.303 1.638.82.82 1.064 1.253 1.89 1.94 2.704 2.25 6.186 4.014 10.45 3.832 4.677-.2 7.365-3.483 6.867-7.364-.483-3.763-4.282-5.636-6.768-3.88-1.692 1.193-2.293 4.89.697 5.77 1.692.498 3.184-1.64 1.99-2.885m129.563-71.951c2.7-1.466 4.78-1.195 6.32.94 1.672 2.322 1.91 5.41 1.542 7.22-.547 2.687-1.324 3.803-3.46 5.752" stroke-linecap="round"/><path d="M380.53 152.032c3.086-2.04 6.427-1.174 8.26 1.543 1.345 1.99 1.688 3.655 1.593 6.12-.162 4.224-2.805 7.572-5.722 9.205" stroke-linecap="round"/><path d="M395.06 159.15c2.537.198 4.577 2.495 4.577 5.174 0 3.83-1.07 5.493-4.13 9.305-2.637 3.283-10.55 9.055-10.35 14.578.076 2.088 1.836 4.056 3.355 4.166"/><path d="M395.36 202.33c-1.443 1.044-3.284-.643-2.488-2.434.55-1.237 2.19-2.786 4.677-1.095 2.747 1.87 1.99 7.764-3.285 7.863-4.704.09-7.883-6.59-3.383-11.58 4.106-4.554 11.72-3.662 16.498.138 2.032 1.618 6.122 6.06 7 11.887 1.06 7.053.924 15.728-6.36 21.07-2.93 2.148-6.988 3.125-10.57 2.968-4.678-.205-7.365-3.483-6.867-7.365.482-3.762 4.105-5.355 6.767-3.88 2.764 1.53 2.28 5.417-.697 5.77-1.75.21-3.184-1.64-1.99-2.885" stroke-linecap="round"/><path d="M392.87 199.898c.776-3.49 3.767-3.816 6.18-3.78 6.59.096 11.148 7.912 11.224 15.473.096 9.552-4.054 15.176-11.035 15.475-1.807.078-4.918-.782-4.972-2.985"/><path d="M396.928 198.336c6.95 1.544 9.39 7.805 9.39 13.78 0 4.875-.484 11.535-9.97 13.877" stroke-linecap="square"/><path d="M408.39 265.33a3.906 3.906 0 1 0-6.264 2.343"/><path d="M394.45 259.41c1.31 1.942 2.892 4.1 6.235 5.913m-1.255 10.549c-3.276-2.15-9.496-4.967-15.12-2.194-2.085 1.03-3.482 2.302-4.27 4.378-1.422 3.737.166 7.856 1.783 9.567.846.896 2.688 2.607 4.976 2.637 3.78.05 4.68-2.596 4.776-3.184.448-2.737-1.145-3.832-1.99-4.13-.65-.23-2.76-.17-3.208 1.322-.15.497-.176 1.365.222 2.012" stroke-linecap="round"/><path d="M340.474 328.422c1.045 2.14-.144 3.215-1.593 3.384-2.138.25-3.283-1.443-3.432-2.986-.242-2.5 1.866-4.767 4.38-4.727 2.26.037 4.104 1.497 4.968 3.505.314.73.46 1.533.504 2.367a5.852 5.852 0 0 1-1.422 4.143c-1.28 1.49-3.273 2.39-5.395 2.475-4.224.17-7.513-3.782-7.513-7.812 0-7.712 11.438-11.918 15.972-13 5.573-1.33 8.964-1.828 17.913-2.325 3.583-.2 6.207-.098 10.15-.507 3.53-.366 5.375-.538 9.007-1.384 4.533-1.055 8.758-2.936 12.54-6.37 2.91-2.643 4.577-4.527 5.925-8.16 1.164-3.133 1.698-9.34-1.248-13.93-2.605-4.06-6.22-6.166-10.35-6.763-3.732-.54-7.004 1.07-8.958 4.773-.945 1.79-.654 4.787.095 6.17.647 1.194 2.494 2.955 4.782 2.985 3.78.05 4.68-2.596 4.776-3.184.447-2.737-1.145-3.832-1.99-4.13-.65-.23-2.76-.17-3.208 1.322-.15.497-.176 1.365.222 2.012" stroke-linecap="round"/><path d="M337.216 316.173c-4.85 2.15-8.403 3.76-11.417 8.518-.946 1.494-1.195 3.634-1.195 4.877 0 2.687 1.094 5.723 3.334 7.613 2.076 1.755 4.13 2.29 6.666 2.04 1.925-.188 3.732-1.592 4.03-2.587" stroke-linecap="round"/><path d="M385.107 224.128c-2.268.757-3.88 4.215-3.88 7.514 0 3.78 1.84 6.12 3.98 7.463"/><path d="M387.597 236.422c-4.08 5.076-6.245 8.088-6.37 14.132-.116 5.672 1.693 9.553 5.076 13.634" stroke-linecap="round"/><path d="M365.85 152.05c.105-.155.22-.327.35-.517 1.692-2.488 4.68-3.143 6.866-1.493 2.638 1.99 3.304 5.378 2.588 8.957-.448 2.24-1.967 4.104-4.048 5.453"/><path d="M265.1 150.835c-2.587-1.194-4.717-.964-6.32.94-1.84 2.19-1.91 5.41-1.54 7.22.546 2.687 1.323 3.803 3.46 5.752" stroke-linecap="round"/><path d="M258.58 152.032c-3.086-2.04-6.427-1.174-8.26 1.543-1.344 1.99-1.688 3.655-1.593 6.12.162 4.224 2.806 7.572 5.722 9.205"/><path d="M249.677 154.758c-3.346.408-6.016 3.244-6.016 6.678 0 4.428 1.09 6.22 3.58 9.603 2.492 3.39 10.647 9.602 10.647 16.668 0 4.28-1.194 7.015-4.28 8.408-1.99.9-4.314-.074-5.373-1.03-2.588-2.34-1.553-6.44 1.144-6.93 3.284-.598 3.9 4.573.697 4.23"/><path d="M244.05 159.15c-2.537.198-5.033 2.38-5.033 5.06 0 3.83 1.526 5.607 4.586 9.418 2.638 3.284 10.088 8.942 9.89 14.465-.076 2.09-1.48 4.642-2.873 4.344"/><path d="M238.08 236.122c1.194-2.886 4.28-1.593 4.47 0 .436 3.668-2.778 4.776-5.067 4.18-1.134-.296-1.963-1.01-2.493-1.94-.598-1.05-.78-2.42-.39-3.728a4.903 4.903 0 0 1 .848-1.652 4.97 4.97 0 0 1 1.28-1.21c.88-.56 1.838-.617 3.342-.617 5.573 0 10.45 6.585 12.087 13.425.54 2.253 1.28 7.278.254 12.042-1.094 5.075-3.288 8.59-5.86 11.254-1.395 1.443-3.295 2.728-5.755 4.12-.76.428-2.764 1.318-4.158 1.716-1.43.41-2.775.44-3.94.09-2.83-.848-4.648-3.493-3.175-6.93 1.147-2.676 5.374-3.98 7.265-.696.16.278.41.885.402 1.542-.01.876-.375 1.93-1 2.33-1.438.914-3.737.655-3.63-1.882" stroke-linecap="round"/><path d="M233.754 270.394c1.045.402 1.616.348 2.916-.23.534-.236 1.145-.603 1.86-1.01 2.548-1.446 5.573-3.727 8.41-9.05a18.803 18.803 0 0 0 1.71-4.476c.27-1.11.458-2.208.5-3.335.068-1.92-.14-3.925-.618-6.222-.79-3.79-1.744-5.85-4.08-9.055-1.15-1.576-2.14-2.537-4.28-2.587m-9.446 30.901a3.906 3.906 0 1 1 6.264 2.343"/><path d="M232.243 261.446c.294-1.772 1.8-3.122 3.615-3.122 2.025 0 3.666 1.68 3.666 3.756a3.793 3.793 0 0 1-1.033 2.615"/><path d="M239.373 261.248c3.334-2.388 6.19-6.948 6.22-12.335.022-4.144-1.643-8.36-3.583-10.002"/><path d="M244.666 259.41c-1.308 1.942-2.89 4.1-6.234 5.913" stroke-linecap="round"/><path d="M254.598 273.683c-.927-2.18-2.77-3.19-5.772-3.51-2.984-.32-5.567.5-8.21 1.922-5.158 2.775-8.034 5.757-9.952 11.29-.486 1.406-.89 3.524-.834 5.774.09 3.586 1 7.506 1.98 9.402.852 1.654 3.084 8.956 15.324 13.996 7.143 2.94 18.112 3.618 25.676 3.916 10.404.41 20.003.797 25.576 7.663"/><path d="M239.68 275.872c3.277-2.15 9.496-4.967 15.12-2.194 2.085 1.03 3.482 2.302 4.27 4.378 1.422 3.737-.166 7.856-1.783 9.567-.846.896-2.688 2.607-4.976 2.637-3.78.05-4.68-2.596-4.775-3.184-.448-2.737 1.144-3.832 1.99-4.13.65-.23 2.76-.17 3.207 1.322.15.497.176 1.365-.222 2.012" stroke-linecap="round"/><path d="M252.71 285.728c.3-1.095.145-2.244-.845-3.334-.996-1.094-3.633-2.14-5.872-.895-.75.415-1.688.963-2.538 2.088-.32.426-.864 1.113-1.144 1.593-.677 1.16-.955 2.108-1.09 2.49-2.46 6.993 1.545 14.42 6.565 17.613 4.378 2.786 8.857 3.582 14.38 4.08 2.556.23 4.004.28 6.568.398 2.063.097 3.845.062 5.523.042 1.38-.017 2.69-.01 4.03-.04 2.186-.052 4.448-.103 7.216.1 2.912.21 5.102.285 7.563.695 1.608.268 3.492.527 5.467.97.593.133 1.194.24 1.798.423.406.123.807.247 1.204.368 3.566 1.088 7.03 2.413 9.764 4.174.845.544 1.818 1.07 2.482 1.733.51.51.942.804 1.36 1.214 1.913 1.882 3.87 3.92 4.327 6.68.084.51.084 1.042.084 1.604 0 1.79-1.456 4.23-5.387 5.026"/><path d="M298.637 328.422c-1.045 2.14.143 3.215 1.592 3.384 2.14.25 3.283-1.443 3.432-2.986.242-2.5-1.866-4.767-4.38-4.727-2.26.037-4.104 1.497-4.968 3.505-.314.73-.46 1.533-.504 2.367a5.853 5.853 0 0 0 1.423 4.143c1.278 1.49 3.272 2.39 5.394 2.475 4.224.17 7.514-3.782 7.514-7.812 0-7.712-11.438-11.918-15.972-13-5.573-1.33-8.964-1.828-17.913-2.325-3.582-.2-6.206-.098-10.15-.507-3.53-.366-5.375-.538-9.008-1.384-4.532-1.055-8.757-2.936-12.538-6.37-2.913-2.643-4.58-4.527-5.927-8.16-1.164-3.133-1.698-9.34 1.248-13.93 2.605-4.06 6.22-6.166 10.35-6.763 3.732-.54 7.004 1.07 8.958 4.773.945 1.79.654 4.787-.095 6.17-.647 1.194-2.494 2.955-4.78 2.985-3.783.05-4.682-2.596-4.778-3.184-.448-2.737 1.144-3.832 1.99-4.13.65-.23 2.76-.17 3.208 1.322.15.497.176 1.365-.222 2.012"/><path d="M273.26 152.05c-.104-.155-.22-.327-.35-.517-1.69-2.488-4.68-3.143-6.866-1.493-2.637 1.99-3.303 5.378-2.588 8.957.448 2.24 1.967 4.104 4.048 5.453" stroke-linecap="round"/><path d="M366.746 159.597c-4.03 4.378-8.06 5.777-14.082 5.97-1.88.062-5.474-.596-7.564-2.084-1.342-.956-2.836-2.593-1.89-5.43.63-1.895 3.677-7.213 3.826-10.896.228-5.625-1.936-8.708-5.32-9.902-6.255-2.208-12.97 3.975-17.016 5.324-2.116.704-3.194.787-5.126.795-1.93-.008-3.048-.09-5.163-.796-4.046-1.35-10.76-7.533-17.017-5.325-3.383 1.194-5.547 4.277-5.32 9.902.15 3.682 3.196 9 3.827 10.897.946 2.836-.548 4.473-1.89 5.43-2.09 1.487-5.683 2.144-7.564 2.084-6.02-.194-10.05-1.593-14.082-5.97"/><path d="M297.33 314.413c.8.31.195-.19 5.246 2.05 4.85 2.15 8.29 4.032 11.304 8.79.946 1.494 1.194 3.633 1.194 4.877 0 .802-.097 1.635-.293 2.46" stroke-linecap="round"/><path d="M297.658 336.038a7.98 7.98 0 0 0 3.25.825c4.226.17 7.515-3.78 7.515-7.81 0-2.796-1.52-5.15-3.652-7.04"/><path d="M298.573 328.416c-1.02 2.274.433 3.504 1.88 3.672 2.14.25 3.345-1.443 3.495-2.985.162-1.678-.733-3.31-2.098-4.15" stroke-linecap="round"/><path d="M390.1 154.797c3.21 0 6.01 3.575 6.01 7.243 0 4.227-2.247 6.814-3.894 8.77-1.326 1.576-2.762 2.985-4.47 4.704"/><path d="M386.29 151.41c1.093.507 2.052 1.363 2.782 2.445 1.344 1.99 1.686 3.656 1.593 6.12-.16 4.225-3.2 7.15-5.918 8.934m-4.773-17.499c.222.19.436.407.64.65 1.842 2.19 1.984 5.426 1.543 7.22-.662 2.696-1.553 3.858-3.742 5.47m-5.065-14.446c2.638 1.99 3.422 5.433 2.548 8.977-.624 2.533-2.217 4.05-4.202 5.26m11.126 41.079c.316.925.837 1.246 1.493 1.934 1.426 1.494 3.517 2.78 6.158 3.522 2.44.687 4.64.17 6.318-.875m-163.005 54.036c1.24-.023 2.476.815 3.284 2.22.16.278.41.885.403 1.542-.01.875-.394 1.81-1.02 2.21-1.437.913-3.99.52-3.882-2.017" stroke-linecap="round"/><path d="M241.49 231.296c4.93.92 9.677 6.867 11.23 13.354.54 2.252 1.282 7.277.254 12.04-1.095 5.076-3.288 8.59-5.862 11.256a16.494 16.494 0 0 1-2.127 1.827l-1.05.712m-7.929-12.135c2.025 0 3.798 1.94 3.798 4.014a3.793 3.793 0 0 1-1.034 2.614"/><path d="M234.637 260.704c2.11 0 4.117 2.033 4.117 4.19a3.9 3.9 0 0 1-1.482 3.062"/><path d="M253.978 239.488c1.937 2.6 3.216 4.84 3.81 7.725m-.066 8.487a17.27 17.27 0 0 1-1.45 4.045c-.814 1.62-2.234 3.423-3.553 4.642" stroke-linecap="round"/><path d="M254.285 224.333c1.868 1.46 2.994 2.97 3.52 4.78"/><path d="M257.856 219.47c-.49 1.7-1.604 2.99-3.37 4.602m-9.156-17.179l2.157-.568 1.276-.964.823-1.162.71-1.816.283-1.475" stroke-linecap="round"/><path d="M240.966 199.302c-.68.17-1.543.422-2.447.853-1.212.578-2.5 1.476-3.525 2.93-1.188 1.682-1.88 4.022-2.31 6.07-.187.895-.41 3.732.162 6.662.423 2.163 1.317 4.177 2.305 5.635.355.523.676.975 1.037 1.336 1.293 1.294 2.487 2.09 4.478 1.692"/><path d="M253.043 189.81c-.35 1.285-1.04 2.877-3.055 2.703" stroke-linecap="round"/><path d="M245.677 198.528c-1.935-1.892-6.035-2.385-10.11.193-.525.333-1.05.76-1.568 1.19-.56.468-1.01 1.005-1.44 1.59-.47.635-1.048 1.715-1.397 2.432-.48.988-.68 1.637-.943 2.65-.745 2.852-.74 5.5-.654 6.257.113.967.205 1.857.364 2.675.54 2.798 1.368 4.76 2.224 6.18.9 1.493 3.14 4.922 7.717 5.374 1.8.177 4.873-.647 4.972-2.986"/><path d="M363.763 157.07c.306-1.653 2.297-1.972 3.045-.996 1.153 1.502.39 4.084-1.953 4.816-.796.25-2.637.15-3.83-1.393-.97-1.25-.895-2.8-.533-4.03.234-.797.873-1.49 1.726-2.14 2.72-2.07 7.116-1.592 8.558 1.89 1.862 4.494-2.19 7.863-5.92 10.4-4.7 3.195-10.052 3.776-14.083 3.732-9.156-.1-16.12-4.48-20.65-6.967-1.054-.58-2.14-.46-2.686.2-.616.745-.607 1.947.25 2.736" stroke-linecap="round"/><path d="M365.606 155.52c.97.045 1.23.423 1.528.81 1.152 1.504.31 4.086-2.033 4.818m17.837 51.542c-3.49 3.798-.28 10.315 2.327 11.79.902.7 1.288.33 2.01.75" stroke-linecap="round"/><path d="M383.123 205.434c-1.144.796-1.548 1.69-1.592 3.244-.036 1.3.19 2.745 1.41 4.015 1.903 1.978 5.624 3.7 9.23 3.746 1.956.024 3.987-.385 6.03-1.75 2.184-1.462 3.334-3.435 3.83-5.375m-20.861 61.79c0 .012-.005 1.53-.134 2.488-.38 2.792-.823 4.4-2.09 6.916-1.236 2.455-2.223 3.744-4.18 5.673-1.974 1.947-3.343 2.84-5.822 4.08-2.413 1.21-3.934 1.595-6.568 2.19-2.632.595-4.17.724-6.867.846-2.472.112-3.874.007-6.343-.163-2.64-.183-4.106-.55-6.744-.782-2.178-.19-3.41-.367-5.595-.36-2.248.005-3.536.02-5.75.41-2.063.366-3.233.657-5.175 1.444-2.686 1.088-5.722 2.985-6.37 3.83-.646-.845-3.68-2.742-6.368-3.83-1.942-.787-3.112-1.078-5.175-1.443-2.213-.39-3.5-.406-5.75-.41-2.186-.008-3.416.17-5.595.36-2.638.232-4.103.6-6.744.783-2.467.17-3.87.275-6.34.163-2.697-.122-4.236-.25-6.868-.846-2.633-.595-4.154-.98-6.568-2.19-2.48-1.24-3.847-2.133-5.822-4.08-1.957-1.928-2.944-3.217-4.18-5.672-1.266-2.517-1.71-4.123-2.09-6.916-.13-.96-.135-2.476-.135-2.488V169.33H381.13v101.774h.042z"/></g><g fill="#c7b37f" stroke="#c7b37f"><path d="M247.942 285.645a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0zm-15.352-17.671c0-1.236.79-2.24 1.765-2.24.976 0 1.767 1.004 1.767 2.24 0 1.237-.79 2.24-1.767 2.24-.975 0-1.766-1.003-1.766-2.24z" stroke-width=".328"/><path d="M241.312 223.59c0-1.015.764-1.84 1.706-1.84.94 0 1.705.825 1.705 1.84 0 1.016-.764 1.84-1.705 1.84-.942 0-1.706-.824-1.706-1.84zm30.63-65.632c-.107-1.018.504-1.918 1.367-2.008.86-.09 1.648.663 1.755 1.68.108 1.02-.504 1.92-1.366 2.01-.864.09-1.65-.663-1.758-1.682z" stroke="none"/></g><g stroke="#c7b37f" stroke-width=".632" stroke-linecap="round"><path d="M239.31 233.946c-.368.16-.57.292-.847.582-.264.277-.32.378-.523.83-.15.332-.188.716-.243 1.19m4.716 26.748c.347-.42.557-.648.89-1.08.278-.36.443-.557.687-.94.22-.345.318-.555.513-.916.273-.508.41-.804.67-1.318m-1.263 13.938c-.592.27-.942.39-1.517.696-.438.232-.675.38-1.095.642a17.4 17.4 0 0 0-1.244.836c-.49.36-.744.595-1.22.975m14.964-37.889c-.32-.33-.494-.523-.82-.846-.343-.337-.53-.536-.896-.846-.357-.3-.583-.437-.956-.716"/><path d="M254.19 224.94c-.477.212-.726.38-1.22.543-.567.187-.95.284-1.498.31" stroke-linecap="butt"/><path d="M237.44 208.435c.163.58.2.927.418 1.488.276.705.506 1.076.926 1.707.437.657.71 1.02 1.273 1.572.495.485.81.73 1.39 1.11.55.36.906.485 1.487.796m-.988-5.86c.485.26.735.456 1.244.667.46.19.733.27 1.22.383.656.15 1.04.188 1.715.204.73.017.946 0 1.866-.15m7.171-40.656c-.798-.466-1.286-.67-2.046-1.194-.773-.534-1.198-.86-1.87-1.518-.485-.473-.757-.75-1.16-1.294-.36-.486-.498-.804-.816-1.318m7.498-4.552c.25.67.322 1.078.642 1.717.434.868.77 1.323 1.423 2.04.905.994 1.672 1.275 2.742 2.09m1.452-5.917c.25.602.324.972.637 1.543.277.504.467.773.83 1.22.465.568.767.864 1.345 1.317.67.528 1.146.683 1.88 1.12"/></g><path d="M333.3 151.622c-.052-1.695-1.722-1.87-2.362-1.87-1.847 0-2.346 1.15-4.65 2.388-2.888 1.55-4.13 1.895-6.698 1.918-2.567-.023-3.843-.367-6.73-1.918-2.305-1.237-2.693-2.352-4.54-2.352a2.33 2.33 0 0 0-2.248 2.453s-.02.515.06.863c.03.13.19.09.24.204-.025-.77.132-1.168.51-1.685.488-.664 1.297-.84 1.626-.84 1.847 0 2.53 1.185 4.835 2.422 2.887 1.55 4.13 1.895 6.697 1.918 2.566-.023 3.844-.367 6.732-1.918 2.303-1.237 2.965-2.52 4.812-2.52.64 0 1.092.414 1.3 1.066.13.4.058.67.09.828.017.077.112.07.133.153.064-.297.214-.404.192-1.108z" fill="#703d29" stroke-width=".177"/></g><g fill="#703d29"><path d="M264.397 294.03c.518-.56.91-.35 1.006-.607.07-.19-.082-.21-.293-.288-.282-.105-.58-.166-.863-.27-.292-.11-.557-.26-.85-.37-.12-.045-.4-.187-.478.025-.148.392 1.024.358.63 1.41-.066.178-.233.562-.815 1.2l-2.65 2.883c-.06.067-.158.21-.22.186-.06-.023-.05-.2-.052-.288l.038-4.09c.004-.777.07-1.352.196-1.688.175-.47.716-.076.83-.378.07-.19.016-.197-.306-.318-.16-.06-.47-.125-1.114-.365-.342-.128-.668-.3-1-.425-.15-.057-.43-.263-.53.006-.03.08.077.195.103.217.37.267.464.443.472.943l.073 7.446c.006.537.064.686.165.724.11.042.186-.007.406-.256l5.25-5.7z"/><path d="M267.488 295.18c.34-1.08.98-.43 1.103-.816.044-.137 0-.176-.308-.272-.584-.185-.967-.255-1.336-.372-.36-.113-.744-.285-1.144-.41-.092-.03-.338-.145-.4.05-.125.397 1.134.444.807 1.48l-1.724 5.466c-.34 1.082-.986.553-1.11.952-.02.057-.024.143.068.172.267.084.722.178 1.162.316.8.253 1.165.418 1.544.537.236.075.342.058.382-.067.115-.365-1.198-.203-.757-1.604l1.713-5.432zm3.699 1.095c.204-.687.523-.592.904-.48 1.042.31 1.368 1.327 1.036 2.45-.2.675-.452 1.298-2.018.834-.31-.093-.69-.206-.606-.492l.685-2.313zm-2.837 4.926c-.428 1.443-1.15.818-1.26 1.185-.067.23.16.258.273.292.515.152 1.044.26 1.6.424.433.13.698.258.873.31.237.07.34.025.37-.078.122-.412-1.037-.245-.674-1.47l.587-1.98c.118-.4.08-.5.626-.338.515.153.67.31.757.885l.33 2.064c.123.76.24 1.578 1.053 1.82.412.12 1.167.07 1.272-.284.027-.092-.014-.18-.107-.206-.102-.03-.225.007-.33-.023-.08-.024-.277-.082-.315-.292-.315-1.663-.7-3.582-.68-3.65.035-.116.365-.13.74-.305.382-.186.806-.52 1.023-1.254.156-.528.428-2.203-1.828-2.87-.69-.206-1.405-.368-2.095-.572-.65-.192-.718-.263-1.192-.403-.124-.037-.244-.01-.278.104-.122.41 1.127.32.747 1.603l-1.492 5.037zm8.424 2.466c-.33 1.382-1.378.54-1.487.994-.06.256.12.287.307.333.418.1.774.136 1.474.304.7.168 1.034.298 1.452.398.303.073.504.158.57-.12.08-.326-1.34-.31-.997-1.74l1.26-5.247c.134-.557.252-.59.68-.487l.89.214c1.212.242.568 1.45.986 1.55.27.066.265-.414.277-.558l.142-1.096c.016-.12.055-.28-.1-.32-.973-.232-1.685-.354-3.21-.72-1.526-.367-2.215-.58-3.187-.814-.156-.038-.195.124-.234.238l-.536 1.493c-.057.145-.18.386.038.44.47.11.522-1.485 1.703-1.2l.878.21c.428.102.52.185.385.743l-1.293 5.387zm12.698-3.237c.414-.64.836-.502.886-.772.037-.2-.117-.192-.34-.233-.295-.055-.6-.063-.896-.117-.306-.057-.593-.16-.9-.216-.126-.024-.426-.115-.468.108-.076.41 1.072.174.867 1.278-.033.188-.13.595-.593 1.322l-2.11 3.3c-.047.078-.12.234-.183.222-.063-.01-.085-.186-.102-.274l-.673-4.035c-.133-.765-.167-1.342-.102-1.694.09-.494.693-.2.75-.518.038-.2-.017-.198-.355-.26-.17-.032-.484-.04-1.16-.167-.36-.066-.71-.18-1.06-.244-.157-.03-.467-.184-.52.098-.015.082.11.178.14.196.41.198.534.354.63.845l1.364 7.32c.1.53.183.666.288.685.116.022.182-.04.355-.323l4.182-6.523zm.595 6.725c.006.292-.02.384.233.5.59.255 1.082.628 1.73.736 1.387.234 2.538-.65 2.796-2.194.25-1.496-.365-2.12-1.406-2.862-1.304-.933-1.862-1.184-1.73-1.973.132-.788.684-1.155 1.384-1.038 1.823.305 1.615 2.522 1.86 2.563.232.04.288-.097.31-.36l.147-1.598c.026-.274.087-.445-.072-.472-.138-.023-.435.12-.572.098-.318-.053-.686-.587-1.556-.732-1.24-.207-2.253.64-2.48 1.995-.207 1.236.342 1.8 1.178 2.4 1.567 1.122 2.21 1.387 2.042 2.388-.158.942-.89 1.4-1.716 1.263-1.176-.197-1.654-1.38-1.804-2.566-.016-.16-.02-.27-.19-.298-.265-.045-.216.315-.212.485l.06 1.668zm15.821-4.461c.345-.68.78-.585.8-.86.017-.2-.136-.177-.36-.195-.3-.025-.605 0-.905-.024-.31-.025-.607-.096-.918-.12-.128-.01-.436-.07-.454.155-.032.418 1.085.063.997 1.182-.015.19-.07.605-.453 1.378l-1.753 3.503c-.038.08-.094.244-.158.24-.064-.008-.105-.177-.13-.263l-1.09-3.943c-.212-.747-.307-1.317-.28-1.674.04-.5.67-.27.694-.593.016-.202-.038-.194-.38-.22-.173-.014-.487.01-1.173-.045-.364-.03-.724-.105-1.078-.133-.16-.013-.485-.134-.508.15-.007.085.128.167.16.182.428.153.568.296.714.775l2.123 7.136c.154.516.25.643.36.65.116.01.176-.057.318-.357l3.478-6.926z"/><path d="M307.584 308.48c-.01 1.218-1.04.994-1.045 1.472-.002.203.213.145.33.146.292 0 .582-.043.926-.04.376.007.74.055 1.268.06.14 0 .408.014.41-.153.004-.56-1.38.24-1.36-2.053l.037-4.06c0-.108.024-.19.088-.19.054 0 .118.06.193.156l5.115 6.255c.075.096.128.168.278.17.13 0 .13-.095.133-.358l.058-6.698c.01-1.254.922-.96.925-1.318 0-.036 0-.156-.204-.158-.097 0-.473.044-1.15.038-.742-.007-1.053-.057-1.225-.058-.14 0-.172.118-.173.2-.003.395 1.31.192 1.3 1.278l-.034 3.977c-.004.298-.026.44-.09.44-.065 0-.192-.144-.33-.313l-4.275-5.303c-.19-.228-.062-.31-.405-.313-.57-.006-.85.04-1.13.038-.203 0-.396-.05-.6-.053-.13 0-.184.093-.185.2-.006.574 1.205-.192 1.185 2.1l-.04 4.538zm10.406-5.376c.01-1.134.813-.697.816-1.103 0-.143-.052-.167-.375-.17-.61-.006-.998.04-1.385.036-.376 0-.795-.055-1.214-.058-.096 0-.364-.04-.366.164-.003.418 1.154.094 1.144 1.18l.01 5.732c-.01 1.134-.78.817-.784 1.235 0 .058.02.142.117.143.28.007.743-.04 1.205-.037.838.007 1.235.058 1.633.062.247 0 .344-.045.345-.176.003-.382-1.205.157-1.192-1.312l.05-5.696zm4.506 5.549c.013 1.42-1.207.858-1.203 1.324.003.263.185.25.38.247.428-.006.782-.054 1.503-.06.72-.007 1.075.038 1.504.034.312 0 .527.03.525-.255-.003-.335-1.375.023-1.388-1.445l-.047-5.397c-.005-.572.102-.633.542-.637l.913-.007c1.236-.058.904 1.27 1.334 1.266.278 0 .156-.467.133-.61l-.128-1.097c-.012-.12-.013-.287-.174-.285-1 .01-1.718.062-3.287.076-1.57.013-2.29-.028-3.29-.02-.16 0-.16.17-.17.29l-.157 1.577c-.02.155-.082.418.144.416.483-.007.147-1.566 1.36-1.577l.904-.01c.44-.005.55.056.554.63l.048 5.54zm6.259-2.259c-.193.015-.342.04-.35-.08-.014-.167.04-.303.082-.45l.66-2.172c.042-.135.084-.15.106-.152.053-.007.02 0 .093.088l1.048 2.086c.065.138.14.264.153.43.008.12-.142.12-.335.135l-1.457.114zm1.84.502c.278-.022.34.093.768.993.143.31.235.52.256.782.056.726-.715.655-.688 1 .013.167.15.132.343.117.31-.026.704-.105 1.175-.142.707-.055 1-.03 1.386-.06.29-.024.388-.008.372-.21-.03-.393-.573.117-.983-.7l-3.466-7.06c-.168-.345-.19-.367-.288-.36-.14.012-.175.24-.235.438l-2.337 7.43c-.215.688-.767.66-.745.933.013.154.18.117.33.105.312-.024.62-.097.94-.122.343-.027.668-.006 1.01-.03.226-.02.565.038.545-.212-.025-.32-1.167-.038-1.235-.896-.022-.286.095-.714.15-.958.186-.805.407-.87.59-.885l2.11-.165zm8.305-4.95c-.11-.817-.068-.835 1.222-1.004 2.056-.27 1.407 1.223 1.908 1.157.245-.033.14-.416.11-.57l-.197-1.165c-.015-.107-.104-.215-.243-.197-.938.123-1.667.267-2.423.367-1.63.214-2.404.268-2.84.326-.15.02-.222.126-.208.233.06.473 1.215-.064 1.356 1l.73 5.542c.19 1.444-.705.912-.633 1.456.01.072.08.123.22.105.585-.077 1.027-.184 1.357-.227.47-.062.87-.066 1.274-.12.266-.035.496-.017.465-.254-.043-.32-1.208.135-1.38-1.18l-.232-1.75c-.09-.688-.15-.824.34-.89l.787-.102c1.108-.146.975 1.148 1.316 1.103.257-.034.137-.45.106-.604l-.352-2.096c-.053-.32-.167-.28-.24-.27-.214.028-.103 1.122-1.02 1.242l-.67.09c-.46.06-.47-.024-.537-.533l-.218-1.657zm3.93 2.714c.44 2.383 2.16 3.703 4.285 3.31 3.37-.625 3.482-3.62 3.177-5.265-.46-2.49-2.316-3.712-4.372-3.306-2.52.49-3.568 2.688-3.09 5.26zm1.174-.91c-.315-1.703-.087-3.422 1.692-3.788 1.36-.276 2.9.847 3.38 3.442.363 1.95.063 3.632-1.748 4.004-1.885.386-3.006-1.945-3.324-3.66zm8.336-4.16c-.168-.696.156-.774.543-.867 1.055-.253 1.847.465 2.12 1.603.164.685.258 1.35-1.33 1.732-.314.075-.7.168-.77-.122l-.564-2.345zm.005 5.685c.35 1.463-.587 1.283-.498 1.654.056.23.267.144.382.116.52-.125 1.033-.297 1.597-.432.44-.106.732-.127.91-.17.24-.057.307-.147.282-.252-.1-.418-1.022.307-1.32-.936l-.482-2.008c-.098-.407-.18-.473.374-.606.522-.125.735-.066 1.098.387l1.32 1.623c.484.596.994 1.247 1.82 1.05.418-.1 1.046-.523.96-.883-.022-.092-.102-.147-.196-.124-.105.025-.192.12-.297.145-.083.02-.282.068-.42-.095-1.104-1.282-2.397-2.753-2.413-2.822-.028-.116.25-.294.49-.634.235-.352.435-.854.256-1.597-.128-.534-.73-2.12-3.018-1.572-.7.17-1.4.386-2.1.554-.658.158-.753.132-1.234.247-.125.03-.216.114-.188.23.1.42 1.136-.284 1.448 1.016l1.227 5.11zm8.621-1.928c.356 1.376-.963 1.125-.846 1.576.065.254.24.197.427.15.416-.11.747-.244 1.444-.424.698-.182 1.054-.224 1.47-.332.3-.078.518-.097.447-.375-.084-.323-1.33.357-1.697-1.065l-1.35-5.226c-.145-.555-.056-.64.37-.75l.885-.228c1.185-.356 1.184 1.013 1.6.906.27-.07.04-.492-.017-.625l-.39-1.034c-.04-.112-.082-.274-.238-.233-.968.25-1.653.477-3.172.87-1.52.392-2.228.526-3.195.776-.156.04-.115.203-.095.32l.228 1.57c.018.156.02.426.24.37.468-.12-.236-1.555.94-1.86l.874-.225c.427-.11.545-.08.69.475l1.386 5.364zm5.498-7.334c-.303-1.093.588-.894.48-1.286-.038-.138-.097-.146-.407-.06-.59.163-.95.313-1.323.416-.363.1-.78.166-1.183.278-.093.027-.36.064-.307.26.112.403 1.193-.244 1.483.803l1.532 5.523c.303 1.093-.526 1-.414 1.404.016.058.06.132.152.106.27-.074.702-.244 1.147-.367.808-.225 1.204-.286 1.587-.392.24-.066.32-.138.284-.264-.102-.368-1.115.482-1.508-.933l-1.522-5.487zm2.291 2.669c.77 2.298 2.657 3.367 4.705 2.68 3.25-1.086 2.945-4.07 2.414-5.654-.803-2.4-2.81-3.353-4.79-2.666-2.428.838-3.158 3.16-2.33 5.64zm1.038-1.065c-.55-1.642-.563-3.375 1.148-3.986 1.308-.46 2.99.436 3.828 2.94.63 1.88.566 3.587-1.175 4.208-1.813.644-3.247-1.508-3.8-3.16zm7.627-5.419c-.262-.666.048-.788.418-.934 1.01-.398 1.894.204 2.323 1.292.26.656.444 1.302-1.076 1.9-.3.12-.67.264-.78-.014l-.883-2.244zm.797 5.63c.552 1.398-.403 1.35-.263 1.706.088.223.285.107.395.063.5-.197.98-.438 1.52-.65.42-.166.71-.228.878-.295.23-.09.284-.19.245-.29-.158-.4-.968.447-1.436-.742l-.758-1.922c-.154-.39-.244-.443.286-.652.5-.197.72-.168 1.14.23l1.533 1.425c.563.523 1.158 1.097 1.948.786.4-.157.964-.662.828-1.006-.035-.09-.12-.132-.21-.097-.1.04-.175.146-.275.185-.08.03-.27.106-.43-.036-1.27-1.116-2.755-2.392-2.78-2.46-.045-.11.206-.324.395-.694.185-.38.313-.906.033-1.617-.2-.51-1.018-1.998-3.208-1.135-.67.264-1.332.576-2.002.84-.63.248-.728.235-1.188.416-.12.05-.198.143-.154.254.157.4 1.086-.44 1.576.804l1.925 4.89z"/></g><g fill="#fedf00" transform="matrix(.64 0 0 .64 0 16)"><path d="M412.66 249.25h82.18v82.023h-82.18z" fill="#d52b1e"/><path id="a" d="M451.2 313.83s-.048 2.93-.855 5.287c-.933 2.72-.94 2.72-1.796 4.043-1.153 1.78-2.558 3.082-3.81 3.887-1.96 1.258-3.95 1.888-5.95 1.71-5.49-.486-8.037-6.44-9.282-11.273-1.32-5.13-5.073-7.923-7.463-6.064-1.4 1.09-1.48 2.914-.31 4.665 1.243 1.866 4.098 2.8 4.098 2.8l-2.933 3.73s-6.302-.82-7.535-7.392c-.466-2.488.742-7.134 4.89-8.522 5.298-1.773 8.687 2.005 10.32 5.192 2.245 4.384 3.21 12.434 9.43 11.19 3.383-.677 4.975-5.598 4.975-7.852l2.467-2.644 3.654 1.167.1.078z" fill="#fff"/><use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 907.52 0)"/><path d="M461.12 278.95l10.76-11.643s1.624-1.31 1.61-3.401l-2.22.345-.496-1.14-.11-1.148 2.98-.63c.05-.484.008-.85.093-1.384.08-.494.19-.76.31-1.244l-3.264.218c.166-.57.128-.875.31-1.406.155-.447.198-.618.504-1.103.606-.09 1.158-.228 1.907-.304.728-.074 1.143-.04 1.873-.086 1.78-3.32 9.19-6.373 14.454-.904 3.81 3.958 2.99 11.22-1.95 13.14-2.798 1.087-5.053.444-6.86-1.11l1.97-3.867c2.72 1.625 4.975-.396 4.82-2.495-.197-2.654-1.92-4.297-4.354-4.51-2.254-.197-3.872 1.093-4.898 3.11-.626 1.23-.336 2.134-.544 3.5-.226 1.482-.1 2.31-.537 3.81-.32 1.087-1.155 2.433-2.37 3.59l-11.03 11.936-42.94 46.445-3.228-2.984 43.21-46.737z"/><path d="M429.51 283.04s2.7 13.372 11.874 33.43c4.665-1.71 7.42-2.798 12.362-2.798 4.943 0 7.697.933 12.362 2.8 9.174-20.06 11.874-33.432 11.874-33.432l-24.236-31.177-24.236 31.177z" fill="#fff"/><path d="M456.12 262.41l16.82 21.637s-2.243 10.52-9.078 26.354c-2.646-.6-4.916-1.127-7.733-1.318l-.01-46.67zm-4.74 0l-16.82 21.637s2.243 10.52 9.078 26.354c2.646-.6 4.916-1.127 7.733-1.318l.01-46.67z"/></g><g fill="#d52b1e"><path d="M322.304 175.52H374.9v52.495h-52.596z" fill="#fedf00"/><path d="M329.67 175.52h7.842v52.495h-7.842zm15.028 0h7.842v52.495h-7.842zm15.027 0h7.842v52.495h-7.842z"/></g><g fill="#d52b1e" stroke="#d52b1e" stroke-width=".513"><path d="M264.3 273.542c.15.946.487 2.568 1.385 4.23.945 1.493.597 1.452 2.737 3.84 1.053 1.176 2.696 2.183 3.985 2.877 1.294.696 2.25 1.038 4.38 1.596 4.17 1.095 7.097 1.163 10.606 1.023 2.738-.11 4.828-.447 6.56-.68 2.468-.332 4.307-.53 7.115-.647 1.365-.057 2.655-.07 3.93 0 1.54.085 3.06.323 4.678.647 3.483.696 7.016 2.04 7.016 2.04l.01-54.82-52.605-.014v37.467s.108 1.83.204 2.44z" fill="#fedf00" stroke="none"/><path d="M270.406 283.155l2.466 1.435 3.378 1.215-.004-52.177h-5.84zm29.224 2.375l.006-51.904h-5.852v52.734s4.005-.514 5.844-.633zm11.672-51.898h-5.832v52.084c1.9.205 3.855.545 5.844 1.077l-.012-53.16zm-23.352 0v53.332c-.06.006-3.906.202-5.872-.002v-53.32z" stroke-width=".328"/></g><g transform="matrix(.64 0 0 .64 0 16)"><path d="M585.48 402.39c-.233 1.477-.76 4.012-2.163 6.608-1.477 2.333-.932 2.27-4.275 6-1.646 1.838-4.214 3.412-6.228 4.496-2.02 1.09-3.516 1.623-6.84 2.495-6.52 1.71-11.092 1.817-16.575 1.598-4.28-.17-7.545-.698-10.25-1.062-3.858-.518-6.73-.827-11.118-1.01-2.133-.09-4.15-.11-6.142 0-2.406.132-4.782.505-7.31 1.01-5.44 1.09-11.032 3.188-11.032 3.188l.057-85.655 82.193-.024v58.543s-.168 2.86-.318 3.81z" fill="#fedf00"/><g id="b"><path d="M524.62 346.91s-.366.175-.594.28c-.298.33-.447.52-.78.814-.444.39-.77.503-1.25.843-.23.164-.42.216-.595.438-.25.32-.078.63-.25 1-.185.405-.368.597-.655.938-.366.434-.65.61-1.063 1-.418.395-.587.726-1.093 1-.135.072-.2.142-.345.187-.216.067-.35-.01-.563.062-.388.134-.51.563-.78.72.11.217.106.37.218.593.158.323.705 1.215.812 1.437.21.305.27.7.532.78.537.17.858.155 1.312.126.792.182 1.28.158 2.03.47.614.253.864.574 1.47.843.474.21.772.34 1.28.438.388.074.61.132 1 .094.25-.024.378-.12.626-.156.05-.01.08 0 .125 0l-.03.375c-.006 0 .004.03 0 .032v.062h.062l2.06.906a1.72 1.72 0 0 0-.186.375c-.098.32-.114.69-.063.844.63 1.887 1.16 3.067 1.47 3.187.615.236.806.865 1.156 1.5-.123.132-.227.2-.344.312-.614.59-1.152 1.008-1.656 1.812-.745 1.188-1.248 1.203-.312 2.78.55.926.814 1.1 1.53 2.407.363.658.563 1.172.782 1.968.207.752.278 1.19.313 1.97l.967.374.657-.657.625-1.187.03-.906c-.24-.203-.308-.474-.25-.782.07-.368.514-.29.72-.625.282-.46-.333-.734-.658-1.093-.605-.67-1.43-.833-1.625-1.844-.052-.273.078-.427.375-.72.856-.84 1.13-.972 1.97-1.81.24.14.61.192.968.124.28-.053.53.125 1.406.375.61.173.873.086 1.22.03l.374-.093c.05.21.11.415.125.687.053 1.062-.155 2.996.156 3.5.132.214.187.333.282.564.1.24.214.396.22.656.01.696.046 1.14 0 1.875-.045.69-.104 1.042-.22 1.75-.074.45-.165.714-.437 1.062-.283.364-.595.418-.97.688l-.092 1 1.125.47 1.28.31.688-.28c0-.254.04-.4.156-.625.128-.247.232-.44.47-.53.362-.144.76.128.905-.095.16-.242.06-.338.032-.75-.047-.662-.185-.99-.283-1.657-.164-1.11-.21-1.686-.156-2.75.032-.616.04-.956.157-1.562.172-.883.486-1.31.688-2.188.225-.977.265-1.606.375-2.468 3.17.452 5.807.397 9.344-.375.17-.037.75-.25.75-.25.8.69 1.706 1.264 2.718 1.625-.006.1-.015.845 0 .968.037.288-.04.482.125.72.106.15.197.24.375.28.263.06.455.023.657-.156.225-.2.183-.454.25-.75.03-.14.006-.564 0-.687.365.055.49.062.874.062.357 0 .53.014.875-.03.004.08.02.368.03.467.027.245-.076.435.03.657.112.23.25.36.5.407a.66.66 0 0 0 .532-.094c.296-.185.264-.498.313-.844.015-.11.01-.693 0-.782.212-.067.827-.292 1.03-.375a5.12 5.12 0 0 1-.093.812c-.07.376-.12.58-.25.938-.206.568-.44.856-.75 1.375-.376.634-.572.985-1.03 1.562-.212.266-.358.386-.563.657-.257.337-.343.566-.595.906-.324.438-.51.724-.938 1.062-.693.55-1.15.11-2.093.844l-.22 1.03 1.438.532 1.282.25.437-.25c-.01-.3.033-.514.22-.75.213-.27.44-.35.78-.407.362-.06.748.034 1.032-.218.35-.31.35-.914.625-1.47.86-1.723 1.62-2.562 3-3.905.613-.597 1.138-.758 1.657-1.438.246-.322.52-.47.53-.875.01-.284-.143-.416-.218-.688-.104-.377-.187-1-.187-1 1.52.744.97.646 1.25 1.406.224.615-.034 1.04.06 1.687.112.756.467 1.114.532 1.875.078.905-.143 1.42-.312 2.313-.15.785-.13 1.277-.47 2-.32.69-.57 1.077-1.155 1.562-.21.175-.37.25-.594.407l-.124 1.03 1.125.376 1.626.437.375-.343c.165-.655-.054-1.617.407-1.688.406-.062.693 0 .782-.312.035-.132.057-.326.092-.625.22-1.886.422-3.646.625-4.5.23-.968.215-1.178.407-1.907.175-.664-.086-.282.406-1.687.734-2.097-.208-2.375-1.063-3.656-.462-.693-.622-.944-.687-1.5-.097-.817.164-1.495.125-2.75-.04-1.32-.023-2.16 0-2.875.115-.053.222-.12.344-.188 1.17-.642 1.635-.836 2.374-2.47a3.43 3.43 0 0 0 .312-1.467c-.005-.332-.065-.652-.094-1.032-.03-.4-.19-.637-.312-.937-.13-.318-.325-.56-.563-.844-.772-.924-1.78-1.132-2.718-1.47-1.485-.53-2.506-.433-4.126-.56-1.673-.133-2.607-.16-4.282-.063-2.006.115-3.128.52-5.125.75-1.915.223-2.977.37-4.906.407-2.26.042-4.42-.46-5.78-.344-2.45.21-2.493.762-6.188 1.063a66.916 66.916 0 0 1-3.843.187l-2.158-.687c.857-.306 1.067-.488 1.47-1.03.27-.367.232-.68.562-1.064.266-.312.443-.622.78-.97a2.2 2.2 0 0 0-.937-.436c-.363-.076-.573-.042-.937 0-.494.056-.772.124-1.22.344-.358.177-.623.357-.843.593 0 0-1.285-.828-2.187-1.218-1.12-.485-1.6-.712-3-.907zm1.97 11.906h.06c-.01.01-.018.022-.03.03l-.03-.03z" fill="#d52b1e"/><g fill="none" stroke="#fedf00" stroke-width=".987" stroke-linecap="round"><path d="M568.77 359.52l-.763.244c-.867.402-1.578.418-2.6.496-2.644.202-4.272-1.057-6.998-.847-1.405.108-2.026 1.19-3.46 1.548a9.247 9.247 0 0 1-1.702.283l.512-1.034s-1.284.26-2.115.263a7.55 7.55 0 0 1-1.523-.13l1.018-.95s-.814-.133-1.294-.336a3.918 3.918 0 0 1-1.06-.63 20.484 20.484 0 0 0 1.69-.353c1.556-.385 2.04-1.147 3.89-1.325 1.15-.112 3.032-.047 7.643.716 3.035.502 4.38.267 5.535-.258.76-.345 1.01-1.01 1.103-1.788.092-.776-.404-1.404-.874-1.81-.123-.106-.444-.335-1.113-.363"/><path d="M524.8 350.61c-.53-.066-.884.01-1.34.291-.48.297-.54.698-.888 1.144.445.1.7.36 1.142.253.347-.084.527-.238.76-.507.317-.363.433-.676.43-1.156l-.104-.024z" fill="#fcd900" stroke-width=".513" stroke-linecap="butt"/><path d="M536.04 363.79s.264.48.407.8c.248.554.376.878.524 1.467.2.8.115 1.284.242 2.098.022.143.05.263.076.376l-.05 1.13m6.801-6.951s-.22.812-.354 1.333c-.352 1.353-.676 2.087-.944 3.46-.045.23-.078.442-.103.644m-10.859-3.977c.79.176.544 3.36 1.79 4.09"/><path d="M560.12 369.78l.384-.25a8.154 8.154 0 0 0 2.686-1.79" stroke-linecap="butt"/><path d="M552.38 368.02h.007c3.533-.883 5.885-2.648 7.58-2.87"/><path d="M555.97 363.61c.3-.01.585-.033.83-.068 1.467-.21 1.703.687 2.725 1.258 1.857 1.04 2.098 2.307 4.3 3.356.116.055.223.107.32.155l.848.43"/><path d="M517.7 354.53c.268.067.432.08.707.054.332-.03.484-.238.817-.25.27-.01.462-.03.684.126.14.1.2.19.28.342.087.166.163.282.124.466-.06.284-.324.418-.614.42-.237 0-.434-.062-.544-.272a.467.467 0 0 1-.04-.39c-.283.108-.49.112-.776.017a1.04 1.04 0 0 1-.638-.513z" fill="#fcd900" stroke-width=".513" stroke-linecap="butt"/></g><path d="M525.13 364.17c-.797-.237-1.966-.826-1.966-.826.323-.25.587-.265.863-.555.39-.41.373-.79.593-1.32.215-.52.184-.954.67-1.343.29-.23.763-.27 1.12-.165.352.113.758.4.847.766.137.56-.16.886-.246 1.454-.085.568-.292.894-.194 1.46.066.375.227.52.354.907 0 0-1.264-.15-2.04-.38zm-.99.95a.628.628 0 1 1 .64.618.627.627 0 0 1-.64-.618zm-1.76-16.51s-.09-.06-.144-.104c-.383-.31-.42-.653-.6-1.11-.173-.434-.258-.69-.316-1.154-.05-.406 0-.64 0-1.048 0-.37.04-.578 0-.944-.04-.375-.03-.612-.21-.944-.097-.18-.394-.337-.314-.42.094-.096.257-.02.42 0 .4.05.63.166.943.42.376.306.525.57.67 1.05.167.547.25.897.408 1.467.083.295.13.47.284.734.16.275.32.383.524.63l-.01.022c-.3.326-.445.538-.778.833-.305.27-.56.403-.846.573l-.033-.01zm3.6 10.64l2.23 1.03c1.15-.634 2.474-1.923 3.497-3.918.88-1.718 1.02-2.65 1.364-4.313l-1.788-.582-.357.073c-.552 1.724-.693 2.705-1.618 4.193-.802 1.29-1.718 2.305-2.65 3.034l-.677.483zm4.94 18.12c.36-.493.513-.81.922-1.264.456-.505.8-.702 1.312-1.15.155.015.335-.012.48.07-.027.546-.055.95-.18 1.542-.1.48-.186.746-.346 1.21-.135.388-.16.64-.39.98-.154.225-.29.315-.476.517-.51-.742-1.33-1.297-1.322-1.906zm33.01 1.85c.573.21.92.27 1.47.538.61.3.894.576 1.466.944.027.154.104.32.063.483-.532.122-.928.207-1.53.25a8.39 8.39 0 0 1-1.26 0c-.41-.022-.658.025-1.048-.104-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-9.76-2.04c.573.21.92.27 1.468.538.61.3.896.576 1.468.944.027.154.104.32.063.482-.532.123-.928.208-1.532.252-.49.036-.768.027-1.258 0-.41-.023-.658.024-1.048-.105-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-17.34 2.13c.573.21.92.27 1.47.538.61.3.894.576 1.467.944.026.154.103.32.063.483-.532.122-.928.207-1.53.25-.49.037-.77.028-1.26 0-.41-.02-.658.025-1.048-.104-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-8.98-29.8c-.613-.278-1.05-1.045-.66-1.594.155-.22.412-.174.565-.395.19-.272.142-.507.136-.838-.006-.377-.142-.573-.208-.944-.072-.405-.14-.636-.136-1.048.005-.628-.038-1.076.345-1.573.246-.317.662-.592.826-.612.147.136-.057.502-.033.822.036.462.13.717.288 1.153.203.563.48.81.704 1.363.208.516.4.808.42 1.363.015.457-.025.736-.21 1.154-.165.37-.3.58-.61.84-.27.224-.458.324-.796.418a1.15 1.15 0 0 1-.628-.108z" fill="#0065bd"/></g><use height="100%" width="100%" xlink:href="#b" y="36.591"/></g><path d="M264.102 175.52h52.595v52.495h-52.595zm58.202 0H374.9v52.495h-52.596zM264.3 273.542c.15.946.487 2.568 1.385 4.23.945 1.493.597 1.452 2.737 3.84 1.053 1.176 2.696 2.183 3.985 2.877 1.294.696 2.25 1.038 4.38 1.596 4.17 1.095 7.097 1.163 10.606 1.023 2.738-.11 4.828-.447 6.56-.68 2.468-.332 4.307-.53 7.115-.647 1.365-.057 2.655-.07 3.93 0 1.54.085 3.06.323 4.678.647 3.483.696 7.016 2.04 7.016 2.04l.01-54.82-52.605-.014v37.467s.108 1.83.204 2.44zm110.407-.012c-.15.945-.486 2.567-1.384 4.23-.945 1.492-.597 1.45-2.736 3.84-1.054 1.175-2.697 2.182-3.986 2.876-1.293.697-2.25 1.04-4.377 1.597-4.172 1.095-7.1 1.163-10.608 1.023-2.738-.11-4.828-.446-6.56-.68-2.468-.33-4.307-.53-7.115-.646-1.365-.057-2.655-.07-3.93 0-1.54.085-3.06.323-4.678.647-3.483.697-7.06 2.04-7.06 2.04l.035-54.82 52.604-.014v37.468s-.107 1.83-.203 2.44z" stroke-width=".51" fill="none" stroke="#703d29"/></svg>