app-MAIL-temp/static/assets/images/flags/vi.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
12 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="#fff" d="M0 0h640v480H0z"/><path d="M204.348 314.932s-.518-3.508 6.144-6.08c6.66-2.573 7.18-12.162 5.847-18.554 0 0-3.48 6.08-7.7 8.107 0 0-6.883 3.586-7.198 10.436 0 0-.055 2.506-.573 4.454-.284 1.067-3.332-8.574 2.442-15.746 5.958-7.4 7.624-13.408 2.886-25.1 0 0-.444 7.093-5.107 11.146-4.662 4.054-5.255 4.366-5.18 14.032 0 0 .074 3.352-1.703 4.443 0 0-3.627-5.302-4.59-8.81-.96-3.507-1.405-4.99 2.74-9.042 0 0 13.28-8.58 3.7-27.362 0 0-.295 6.47-4.884 10.29-4.59 3.82-4.22 6.392-4.442 13.018-.22 6.626-.665 6.16-1.183 7.094 0 0-8.438-15.513-1.924-23.776 6.513-8.263 10.14-9.978 2.96-25.335 0 0 .32 7.874-5.43 11.77-5.747 3.9-4.414 13.02-4.414 13.02s.37 3.43-.815 5.924c0 0-8.13-15.858-.37-24.398 6.587-7.25 7.032-12.317 3.48-22.607 0 0-.446 4.755-4.072 7.328-3.627 2.572-6.514 5.145-5.848 15.045 0 0 .296 6.937-.592 8.886 0 0-3.405-6.314-4.367-10.445-.962-4.133-1.333-6.55 1.184-10.68 2.517-4.132 12.51-15.98.592-33.053 0 0-.37 5.535-3.405 10.524-3.035 4.99-1.628 10.914-.962 15.435.666 4.522-1.554 8.887-1.554 8.887s-5.18-9.51-4.07-20.424c1.11-10.913-3.33-19.878-13.398-26.348 0 0-7.328 16.994 2.665 25.647 0 0 8.512 8.42 10.66 18.63 0 0-6.44-.623-12.29-12.004-5.846-11.38-17.985-9.59-18.8-9.667 0 0 2 17.618 20.652 22.607 0 0 11.916 2.027 14.136 10.757 0 0 2 6.003 2.813 9.2 0 0-3.776-1.482-7.255-6.627-3.48-5.145-3.035-5.77-14.804-6.938 0 0-4.736-.546-7.253-3.898 0 0 4.96 18.63 17.69 18.475 0 0 11.622-1.247 18.136 14.032 0 0-1.26-.78-2.96-1.95-1.704-1.168-5.997-3.35-14.51-2.338-8.51 1.014-10.88-.39-13.026-1.09 0 0 8.586 15.746 20.725 11.07 12.14-4.68 18.003 12.377 18.135 12.705 0 0-1.628-1.246-3.775-3.35-2.147-2.106-6.603-4.7-15.026-2.028 0 0-6.07 2.34-12.213.468 0 0 5.92 11.46 19.763 9.51 13.842-1.95 17.32 10.212 17.32 10.212s-1.85-1.09-3.108-2.105c-1.26-1.013-5.922-3.664-15.914-.7-9.993 2.96-13.62-.47-13.62-.47s5.55 10.135 16.21 11.304c0 0 5.922-.077 8.438-1.012 2.517-.936 9.18-2.417 13.768 4.21 0 0-1.258.233-3.183-.624 0 0-7.106-2.573-12.51 1.948 0 0-4.81 4.91-11.62 3.976 0 0 8.808 8.575 22.798 1.325 0 0 4.737-3.43 8.216-.78 3.48 2.652 11.548-2.57 11.548-2.57z" stroke-miterlimit="10" fill="#369443" stroke="#010002" stroke-width="1.506"/><g stroke-miterlimit="10" fill="#f4c53d" stroke="#010002" stroke-width="10"><path d="M282.21 103.676s-1.624-14.507 9.968-15.902c12.09-1.455 18.06 1.091 18.06 1.091l5.429 10.654-1.875 7.171-7.5 3.43s1.282-11.017-8.817-11.246c-2.559-.058-4.063.957-8.11.315-4.07-.647-6.247 3.826-7.154 4.487z" stroke-width="1.505"/><path d="M363.778 139.586c-1.727 2.234-8.635 3.014-8.635 3.014s7.106 5.457 10.165 13.252c3.06 7.795-82.357.052-82.357.052s3.702-2.65 6.22-7.64c0 0-3.776 1.404-7.55-2.338 0 0 2.81.935 6.512-4.677 0 0 5.478-7.017 9.327-8.888 0 0-1.778 1.092-6.07-1.247 0 0 7.4-.935 10.066-13.564 0 0 .444-2.805 3.256-6.858 2.813-4.054 2.22.78 7.402-5.457 0 0 2.37-4.417.296-7.12-2.072-2.702-4.293-1.714-8.635-4.313-4.343-2.598-6.267-4.053-4.787-8.055 1.48-4 5.33-3.378 5.872-3.378.543 0 .84-3.483 5.577-5.873s17.32-1.35 19.195-.312c1.875 1.04 9.474 3.274 13.915 14.5 4.44 11.224-1.184 15.434 10.906 32.375 0 0-4.836 1.04-7.945.104 0 0 6.266 11.12 17.27 16.422z" stroke-width="1.505"/><path d="M310.93 92.217c-9.845-.468-6.07-9.848-6.07-9.848" fill="none" stroke-width="1.505"/><path d="M328.028 93.503s-1.74-.818-3.21-2.767c-2.066-2.735-6.672-4.053-9.15-1.48 0 0-2.518 2.805-4.74 2.96 0 0 2.518.78 4.258 2.38 1.74 1.597 3.552 2.766 6.143 2.415 2.59-.35 2.997-1.714 4.218-2.532 1.22-.82 2.48-.975 2.48-.975z" stroke-width="1.505"/></g><path d="M202.813 336.456s-.222-6.314 7.772-6.782l23.537 32.74s-.888 2.103-11.547 1.87c0 0-1.128-.008-1.72 1.24-.91 1.914-18.042-29.068-18.042-29.068z" stroke-miterlimit="10" fill="#369443" stroke="#010002" stroke-width="1.506"/><g id="a" transform="translate(3.597 26.17) scale(.15055)" fill="#f4c53d" stroke="#010002" stroke-width="10"><path d="M1494.918 1807.886s-49.82 85.606-110.13 86.987c0 0-103.74-12.628-133.073 14.498-20.454 18.916-41.3 34.52-49.82 82.846-8.523 48.326 16.387 58.682 22.287 60.753 0 0 4.59 34.518 38.676 25.543 0 0 1.967 35.9 62.276 18.64 60.31-17.26 85.22-11.736 97.02-71.8 11.8-60.06 22.693-59.078 33.43-66.275 14.423-9.665 41.518-18.8 61.62-30.376 18.062-10.4 87.187-45.565 110.786-48.326 23.6-2.76 18.355-82.154 18.355-82.154h-60.964l-29.498-43.493-60.964 53.156zm192.01-429.409s-60.965 49.707-112.096 0c0 0-20.65 24.853-61.948 17.604-41.3-7.248-48.182-28.995-52.115-41.42 0 0-35.728 20.84-65.882 4.38-30.155-16.463-30.155-41.316-30.155-41.316s-52.443 10.338-79.32-25.207c-26.876-35.545-10.488-70.754 3.934-74.897 0 0-56.7 14.854-72.11-33.828-13.11-41.422 16.39-62.824 16.39-62.824s-119.47-.574-168.473-37.97c0 0-40.643-25.544-16.388-52.468 0 0-107.507-17.26-134.384-60.062 0 0-11.8-11.736-7.866-32.448 0 0 .656-11.736 12.455-12.427 0 0-122.6-18.937-157.982-59.372 0 0-17.044-18.64-8.522-43.492 0 0 1.803-6.56 4.753-10.96 0 0-111.605-23.56-166.67-73.266 0 0-31.787-28.32-15.4-66.29 0 0-186.505-51.073-143.24-133.228 0 0-87.185-28.305-59.653-107.008 0 0-72.11-36.59-40.643-94.58 30.114-55.5 122.585 9.664 232.08 39.96 0 0 296.28 93.28 442.188 118.106l414.573 617.222 241.892 93.2 24.58 172.593z"/><path d="M1689.878 923.866s-38.857-29.17-108.163 5.178c0 0-23.333 16.068-41.687-1.536-15.336-14.71-16.775-41.83 4.322-57.49 51.623-38.316 70.798-153.263-7.866-200.898 0 0-114.063-67.656-532.32-174.095 0 0-35.044-9.717-53.727-5.057-20.572 5.13-34.743 22.782-37.65 37.886 0 0-18.715 53.188 44.206 83.62 0 0 28.408 13 57.687 21.402 0 0-32.16-6.952-45.887 24.853-13.11 30.375 5.9 61.442 64.898 81.463 0 0 15.958 6.21 38.677 11.736 0 0-50.476 14.497-26.22 55.23 0 0 21.632 42.802 98 50.396 0 0-57.03 6.213-16.715 60.408 0 0 17.7 29.686 73.42 40.732 0 0-42.282 1.38-20.977 39.35 21.305 37.972 71.44 59.373 120.775 62.825 0 0 26.72 1.382 45.403-2.76 0 0-46.87 23.473-19.338 62.824 0 0 20.32 27.96 71.125 26.58 0 0-13.187 43.944 24.09 60.58 29.008 12.943 53.1-7.768 53.1-7.768s-9.834 47.118 32.448 63.687c0 0 21.14 10.873 52.606 0 0 0 24.09 53.85 109.638 16.05 85.545-37.798 20.156-355.197 20.156-355.197zm5.074 489.39s-12.552 67.393-112.09 152.22c0 0-76.8 67.745-74.834 145.757 2.003 79.44-13.766 88.368-43.92 115.292 0 0 62.275 4.833 92.43-36.59 0 0-1.312 69.037-10.49 75.25 0 0 19.532 1.246 47.854-29.685 0 0 17.044-17.95 32.777-24.853 0 0-18.356 47.636-3.934 91.82 0 0 4.59-17.26 28.843-24.854 0 0 43.92-8.975 60.964-72.49 0 0 11.144-42.112 79.975-79.392 0 0 78.007-29.42 76.04-67.87-1.965-38.447-173.618-244.604-173.618-244.604z"/><path d="M2056.524 2282.172s-17.87 78.856-79.975 72.49c0 0-43.922-4.143-40.644-77.323 0 0-64.898 34.518-75.386-51.088 0 0-58.998 13.807-58.342-66.276 0 0-55.065 9.665-48.51-61.443 0 0-59.653 15.88-59.653-51.088 0 0-139.628-23.157 151.428-288.576l259.59 154.642-48.51 368.66z" stroke-miterlimit="10"/><path d="M2085.368 1928.287s-43.265 38.385-74.075-18.915c0 0-41.954-2.07-48.51-33.828 0 0-34.087-3.452-40.642-35.9 0 0-46.542-4.832-45.23-44.183 0 0-84.62-6.53-.028-102.333 84.59-95.802 228.153 158.945 228.153 158.945l-19.667 76.215zm48.275-23.747c41.94 0 89.463 261.995 77.13 419.84-4.48 57.328-35.19 104.152-77.13 104.152s-72.65-46.824-77.13-104.15c-12.333-157.846 35.19-419.843 77.13-419.843"/><ellipse ry="85.951" rx="58.032" cy="1902.468" cx="2133.643"/><path d="M1935.906 2277.34s6.555-138.765 126.824-337.594m-202.21 286.506s-18.683-80.083 150.773-316.88c0 0-19.666-56.612 40.643-92.856m-249.76 343.46s-5.243-86.642 160.607-284.433c0 0-14.65-51.088 45.445-91.82m-254.56 314.81s6.228-87.677 168.472-258.89c0 0-8.117-52.468 50.023-84.916m-278.15 292.72s11.8-100.105 182.895-251.987c0 0-5.9-39.35 51.132-79.393" stroke-miterlimit="10" fill="none"/><path d="M372.257 431.976s134.384 77.806 552.895 155.612M431.91 538.984S795.627 657.63 965.01 672.21m-389.86 0s213.37 66.98 463.238 109.247m-281.17 30.31s241.072 57.905 356.164 67.515m-194.41 46.31s203.908 42.526 255.572 47.64m-125.777 57.297s148.806 22.61 208.03 21.4m-23.17 69.038s60.166-2.826 89.08-7.626m-33.36 104.278s51.132-13.807 81.286-33.138m-5.9 133.242s39.333-15.188 58.343-56.61m37.693 93.545s30.48-27.27 32.448-57.647m81.614 81.464s-11.413-9.845-3.605-52.64m-11.145-62.825s-5.9-12.254-3.933-31.585m-211.082-581.293s68.83 27.615 91.775 65.585c22.944 37.97 7.833 74.873 0 96.047-3.936 10.64-52.443 104.16 4.59 171.816m-95.382 73.525s.33-.345 24.584-7.94m-169.784-91.473s41.026 8.26 81.286 8.63m-137.99-109.77s48.183 4.833 93.414 4.142m-165.194-109.77s69.486 13.808 106.852 14.5m-164.54-132.553s85.7 24.46 149.463 33.138m141.596 50.397s-61.62 57.3 12.455 110.46c0 0-30.81 48.325 30.81 98.722m-16.388 23.82s-9.177 92.154 103.574 92.16c0 0-21.633 82.157 87.186 79.396 0 0 12.455 65.585 91.12 52.468m-173.327 721.441s-17.84 3.97-56.54 0m-108.818 48.326s-54.41-8.286-51.787 109.768m84.565-82.845s-49.165-6.213-45.887 108.388m520.654-384.536s-23.6 4.833-39.988 23.473c-16.39 18.64-47.854 15.188-47.854 15.188s17.044-13.807 22.944-48.326c5.9-34.52 24.91-44.875 24.91-44.875m-56.3-32.688s-23.598 4.833-39.986 23.473c-16.388 18.64-47.854 15.188-47.854 15.188s17.044-13.807 22.944-48.326c5.9-34.52 24.91-44.874 24.91-44.874m23.76 188.537s-20.604 4.22-34.913 20.495c-14.31 16.275-41.783 13.26-41.783 13.26s14.882-12.055 20.033-42.194c5.15-30.14 21.75-39.18 21.75-39.18" fill="none"/></g><use transform="matrix(-1 0 0 1 647.195 0)" xlink:href="#a" width="100%" height="100%" stroke="#010002" stroke-width="10"/><path fill="#0081c6" stroke="#010002" stroke-width="1.505" stroke-miterlimit="10" d="M466.05 255.929l-14.32 61.815-5.908-4.244 13.94-59.222-9.72.178 23.071-42.248 1.538 48.71zm36.97 13.05l-42.979 50.784-4.654-5.21 42.816-50.14-8.661-4.649 39.205-25.896-20.357 43.77z"/><path fill="#0081c6" stroke="#010002" stroke-width="1.505" stroke-miterlimit="10" d="M492.61 242.045l-38.466 73.965-5.928-3.46 38.726-73.813-9.432-2.477 32.668-34.52-10.486 47.47z"/><path d="M444.625 338.57l-2.88 11.78 7.887 7.86-11.15 47.092-9.915-13.32-14.694 6.858 11.15-47.093 10.336-2.88 2.682-11.76s3.127-1.225 6.583 1.464z" fill="#0081c6" stroke="#010002" stroke-width="1.506" stroke-miterlimit="10"/><path d="M447.266 330.802l-5.678 10.594 5.688 9.74-22.342 42.45-6.306-15.57-15.878 2.62 22.343-42.45 10.692.035 5.483-10.627s3.988-.008 5.998 3.21z" fill="#0081c6" stroke="#010002" stroke-width="1.506" stroke-miterlimit="10"/><path d="M448.225 333.883L433.12 353.07l3.463 10.84-30.837 36.068-2.818-16.664-16.03-1.21 30.837-36.068 10.41 2.566 16.02-20.37s4.298 2.134 4.06 5.65zM65.524 288.898c3.6-1.47 6.193-2.888 6.182-6.73-.002-.916-.51-2.943-1.533-6.08l-24.177-73.89c-1.432-4.39-2.514-7-3.017-7.962-1.087-2.08-3.22-2.928-6.094-4.125h30.729c-3.338 1.578-6.382 2.83-6.353 6.37.01 1.35.39 3.256 1.175 5.717l18.52 57.983 18.504-57.983c.785-2.46 1.19-4.366 1.177-5.718-.036-3.638-3.205-4.95-6.32-6.37H124.1c-2.724 1.092-4.943 1.947-6.083 4.126-.503.96-1.585 3.57-3.016 7.96L90.825 276.09c-1.023 3.137-1.393 5.198-1.534 6.152 0 0-1.112 4.673 6.183 6.658h-29.95zm515.231-7.598v-83.663c0-1.447-.238-2.556-.715-3.33-.477-.77-2.554-2.994-5.518-4.196h27.689c-2.963.982-5.04 3.366-5.517 4.162-.477.796-.715 1.918-.715 3.366v83.66c0 1.497.247 2.643.74 3.44.494.795 2.53 2.738 5.493 4.16h-27.689c2.964-1.348 5.04-3.425 5.518-4.197.477-.77.715-1.905.715-3.4z" fill="#0081c6" stroke="#010002" stroke-width="1.506" stroke-miterlimit="10"/><path d="M324.823 309.767s74.102-32.838 74.287-108.803H250.536c.185 75.965 74.287 108.803 74.287 108.803z" fill="#fff" stroke="#010002" stroke-width="1.506"/><g fill="#a60032" stroke="#010002" stroke-width="10"><path d="M261.96 200.96v48.537s5.675 11.257 11.428 18.317V200.96H261.96z" stroke-width="1.505"/><path d="M284.817 200.96v80.01s7.147 7.008 11.428 10.386V200.96h-11.428zm22.857 0v98.9s8.154 5.265 11.43 6.993V200.96h-11.43zm80 0v48.537s-5.676 11.257-11.43 18.317V200.96h11.43zm-22.857 0v80.01s-7.147 7.008-11.43 10.386V200.96h11.43zm-22.857 0v98.9s-8.154 5.265-11.43 6.993V200.96h11.43z" stroke-width="1.505"/></g><path d="M399.11 145.773s-36.36 19.02-74.287-1.56c-37.926 20.58-74.287 1.56-74.287 1.56v55.19H399.11v-55.19z" stroke-miterlimit="10" fill="#162667" stroke="#010002" stroke-width="1.506"/></svg>