app-MAIL-temp/static/assets/images/payments/eway-dark.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
13 KiB
XML
Executable File

<svg width="100" height="60" viewBox="0 0 100 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Eway-dark</title><desc>Created with Sketch.</desc><g id="Dark-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-610.000000, -989.000000)"><g id="Eway-dark" transform="translate(610.000000, 989.000000)"><rect id="Rectangle" fill="#424143" x="0" y="0" width="100" height="60" rx="4"/><path d="M30.9873418,14.0506329 C31.3518987,14.1670886 31.7417722,14.1721519 32.1164557,14.2379747 C34.2835443,14.643038 36.2177215,15.5493671 37.8936709,16.9822785 C39.964557,18.7493671 41.356962,20.956962 41.9341772,23.6202532 C42.8253165,27.721519 41.8987342,31.3974684 39.1443038,34.5721519 C37.321519,36.6734177 35.0126582,37.9949367 32.278481,38.5164557 C28.8202532,39.1746835 25.6202532,38.4962025 22.7443038,36.4607595 C20.1924051,34.6531646 18.5417722,32.2025316 17.8531646,29.1493671 C17.0936709,25.7924051 17.6556962,22.6329114 19.4987342,19.721519 C20.6987342,17.8278481 22.3240506,16.3848101 24.3189873,15.3620253 C25.6810127,14.6632911 27.1341772,14.243038 28.6582278,14.0911392 C28.7139241,14.0860759 28.7797468,14.1113924 28.8101266,14.0405063 C29.5341772,14.0506329 30.2632911,14.0506329 30.9873418,14.0506329 L30.9873418,14.0506329 Z M29.9037975,16.3746835 C24.5670886,16.3189873 19.9493671,20.6632911 19.8582278,26.2227848 C19.7620253,31.9139241 24.3797468,36.4202532 29.8531646,36.4405063 C35.321519,36.4607595 39.8987342,32.0556962 39.9392405,26.4962025 C39.9696203,20.8759494 35.478481,16.3746835 29.9037975,16.3746835 L29.9037975,16.3746835 Z" id="Shape" fill="#FCB922"/><path d="M47.4936709,45.9493671 C46.9518987,45.878481 46.4,45.9139241 45.8582278,45.8936709 C44.156962,45.8227848 42.4556962,45.7468354 40.7594937,45.6151899 C39.4075949,45.5139241 38.0556962,45.3924051 36.7088608,45.2455696 C35.1848101,45.078481 33.6658228,44.8810127 32.1468354,44.6531646 C30.3240506,44.3797468 28.5063291,44.0556962 26.7037975,43.6759494 C21.8379747,42.6481013 17.0835443,41.2708861 12.5417722,39.2050633 C12.5063291,39.1898734 12.4708861,39.164557 12.4202532,39.1392405 C12.5518987,39.0835443 12.6582278,39.1240506 12.7696203,39.1544304 C16.1063291,40.0455696 19.478481,40.7898734 22.8810127,41.3873418 C25.4379747,41.8379747 28.0050633,42.2177215 30.5822785,42.521519 C32.3898734,42.7341772 34.1974684,42.921519 36.0151899,43.078481 C38.1316456,43.2607595 40.2481013,43.3974684 42.3696203,43.4936709 C44.1367089,43.5746835 45.9088608,43.6151899 47.6759494,43.6506329 C49.0531646,43.6759494 50.4253165,43.6810127 51.8025316,43.6658228 C54.035443,43.6405063 56.2683544,43.5797468 58.5012658,43.4632911 C60.6632911,43.3518987 62.8253165,43.2050633 64.9822785,43.0075949 C67.1696203,42.8050633 69.356962,42.5620253 71.5392405,42.2683544 C75.3822785,41.7518987 79.1949367,41.0835443 82.9772152,40.2278481 C84.5316456,39.878481 86.0759494,39.4936709 87.6101266,39.0734177 C87.6405063,39.0632911 87.6759494,39.0683544 87.7822785,39.0582278 C87.6556962,39.1291139 87.5949367,39.1696203 87.5240506,39.2 C84.7493671,40.4759494 81.8734177,41.478481 78.9367089,42.3139241 C76.5620253,42.9873418 74.156962,43.5443038 71.7316456,44.0101266 C69.7873418,44.3848101 67.8329114,44.6886076 65.8683544,44.9468354 C63.6303797,45.2455696 61.3822785,45.4683544 59.1291139,45.635443 C57.6506329,45.7468354 56.1670886,45.8227848 54.6886076,45.878481 C54.3341772,45.8936709 53.9746835,45.843038 53.6253165,45.9544304 C51.5797468,45.9493671 49.5341772,45.9493671 47.4936709,45.9493671 L47.4936709,45.9493671 Z" id="Shape" fill="#FCB922"/><path d="M49.635443,22.2987342 C49.2506329,23.5443038 48.8708861,24.7848101 48.4860759,26.0303797 C47.9341772,27.8329114 47.3772152,29.635443 46.835443,31.4379747 C46.7696203,31.6556962 46.6379747,31.6101266 46.4962025,31.6202532 C46.3392405,31.635443 46.2632911,31.5949367 46.2126582,31.4227848 C45.478481,28.764557 44.7341772,26.1113924 43.9949367,23.4531646 C43.8227848,22.8253165 43.6455696,22.2025316 43.4632911,21.5797468 C43.4126582,21.4126582 43.4531646,21.3772152 43.6202532,21.3772152 C44.121519,21.3721519 44.1164557,21.3670886 44.2531646,21.878481 C44.9873418,24.678481 45.721519,27.478481 46.4556962,30.2835443 C46.4708861,30.3341772 46.4860759,30.3848101 46.5265823,30.5113924 C46.6582278,30.0708861 46.7746835,29.6962025 46.8860759,29.321519 C47.6658228,26.7594937 48.4405063,24.1974684 49.2101266,21.635443 C49.2708861,21.4379747 49.3468354,21.3721519 49.5493671,21.3772152 C50.0253165,21.3924051 50.0303797,21.3822785 50.1670886,21.8379747 C51.0126582,24.6379747 51.8632911,27.443038 52.7088608,30.243038 C52.7291139,30.3139241 52.7544304,30.3797468 52.8,30.5113924 C52.9620253,29.9037975 53.1088608,29.3518987 53.2556962,28.8 C53.8886076,26.3898734 54.521519,23.9797468 55.1493671,21.5696203 C55.1898734,21.4126582 55.2556962,21.3670886 55.4075949,21.3772152 C55.564557,21.3873418 55.7265823,21.3822785 55.9088608,21.3822785 C55.6759494,22.2278481 55.4481013,23.043038 55.2202532,23.8632911 C54.521519,26.3746835 53.8177215,28.8860759 53.1139241,31.3974684 C53.078481,31.5341772 53.0481013,31.6506329 52.8607595,31.6202532 C52.7037975,31.6 52.556962,31.6607595 52.4860759,31.4126582 C51.5898734,28.4607595 50.678481,25.5139241 49.7721519,22.5620253 C49.7468354,22.4759494 49.7113924,22.3898734 49.6860759,22.3037975 C49.6658228,22.3037975 49.6506329,22.2987342 49.635443,22.2987342 L49.635443,22.2987342 Z" id="Shape" fill="#FFF"/><path d="M58.243038,22.2481013 C58.2177215,21.5696203 58.1316456,21.7063291 58.6987342,21.5696203 C60.1164557,21.2405063 61.5493671,21.1189873 62.9772152,21.4936709 C64.0860759,21.7822785 64.678481,22.5063291 64.8101266,23.6455696 C64.8455696,23.9544304 64.8607595,24.2683544 64.8607595,24.5772152 C64.8607595,26.8050633 64.8607595,29.0329114 64.8556962,31.2556962 C64.8556962,31.3417722 64.9518987,31.4835443 64.764557,31.5139241 C64.5822785,31.5493671 64.5113924,31.4582278 64.4607595,31.3012658 C64.4101266,31.1240506 64.3797468,30.8708861 64.2582278,30.8050633 C64.1265823,30.7291139 63.9493671,30.9417722 63.7772152,31.0126582 C62.364557,31.5898734 60.9063291,31.8278481 59.4075949,31.4278481 C58.1367089,31.0886076 57.3822785,30.1113924 57.3164557,28.7949367 C57.2759494,27.9493671 57.3924051,27.1443038 58,26.4911392 C58.5265823,25.9291139 59.2101266,25.6759494 59.9392405,25.5493671 C61.0177215,25.3620253 62.1063291,25.3772152 63.1898734,25.2911392 C63.4734177,25.2658228 63.7620253,25.2556962 64.0455696,25.2405063 C64.121519,25.235443 64.2025316,25.2405063 64.2025316,25.1291139 C64.2025316,24.4405063 64.2481013,23.7417722 63.9949367,23.078481 C63.7265823,22.3696203 63.1443038,22.0607595 62.4405063,21.9493671 C61.0734177,21.7265823 59.721519,21.8481013 58.3898734,22.2126582 C58.3392405,22.2278481 58.2936709,22.2379747 58.243038,22.2481013 L58.243038,22.2481013 Z M64.2025316,27.9797468 C64.2025316,27.3063291 64.1974684,26.6329114 64.2025316,25.9544304 C64.2025316,25.8177215 64.1822785,25.7670886 64.0253165,25.7822785 C63.4126582,25.8329114 62.8,25.8531646 62.1873418,25.9037975 C61.443038,25.964557 60.6886076,25.9594937 59.9493671,26.1012658 C59.1392405,26.2582278 58.4708861,26.6227848 58.1417722,27.4278481 C57.9594937,27.8734177 57.9392405,28.3443038 57.9696203,28.8202532 C58.0303797,29.9037975 58.6075949,30.6582278 59.6607595,30.9113924 C61.235443,31.2911392 62.7139241,30.9620253 64.1113924,30.1924051 C64.2177215,30.1316456 64.2025316,30.0455696 64.2025316,29.9544304 C64.2025316,29.2962025 64.2025316,28.6379747 64.2025316,27.9797468 L64.2025316,27.9797468 Z" id="Shape" fill="#FFF"/><path d="M68.1873418,36.5822785 C68.7240506,35.3113924 69.2405063,34.0810127 69.756962,32.8455696 C69.9341772,32.4253165 70.1012658,32.0050633 70.2835443,31.5898734 C70.3392405,31.4632911 70.3392405,31.356962 70.2886076,31.2303797 C69.3924051,28.9367089 68.5012658,26.6379747 67.6101266,24.3392405 C67.235443,23.3670886 66.8607595,22.3949367 66.4658228,21.3822785 C66.7037975,21.3822785 66.9164557,21.3772152 67.1291139,21.3822785 C67.2556962,21.3873418 67.2506329,21.5037975 67.2810127,21.5848101 C67.7468354,22.8151899 68.2025316,24.0455696 68.6582278,25.2759494 C69.3012658,27.0126582 69.9443038,28.7443038 70.5873418,30.4810127 C70.6025316,30.521519 70.6278481,30.5518987 70.6582278,30.6075949 C71.1037975,29.4177215 71.5443038,28.243038 71.9797468,27.0734177 C72.6582278,25.2556962 73.3417722,23.4329114 74.0101266,21.6101266 C74.0810127,21.4227848 74.1620253,21.3721519 74.3493671,21.3772152 C74.8253165,21.3873418 74.8253165,21.3822785 74.6531646,21.8278481 C72.9772152,26.1265823 71.3012658,30.4303797 69.6202532,34.7291139 C69.4075949,35.2759494 69.1848101,35.8227848 68.9822785,36.3746835 C68.921519,36.5316456 68.8556962,36.6075949 68.678481,36.5873418 C68.5265823,36.5670886 68.3746835,36.5822785 68.1873418,36.5822785 L68.1873418,36.5822785 Z" id="Shape" fill="#FFF"/><path d="M77.8177215,24.4962025 C77.6658228,24.4860759 77.5139241,24.4962025 77.3620253,24.4708861 C76.3341772,24.3088608 76.0253165,23.6202532 76.0708861,22.556962 C76.0759494,22.4151899 76.1063291,22.2734177 76.1367089,22.1367089 C76.2582278,21.564557 76.6227848,21.2253165 77.1797468,21.1037975 C77.6455696,21.0025316 78.1164557,21.0075949 78.5822785,21.1392405 C79.0582278,21.2759494 79.3620253,21.5898734 79.4886076,22.0658228 C79.6101266,22.5265823 79.6101266,22.9974684 79.4936709,23.4632911 C79.3417722,24.0607595 78.8607595,24.4303797 78.1721519,24.4860759 C78.0556962,24.4962025 77.9341772,24.4860759 77.8177215,24.4860759 L77.8177215,24.4962025 L77.8177215,24.4962025 Z M77.8177215,24.1670886 C77.9291139,24.1670886 78.035443,24.1772152 78.1468354,24.1670886 C78.7189873,24.1164557 79.0227848,23.8835443 79.1544304,23.3772152 C79.2658228,22.956962 79.2607595,22.5265823 79.1392405,22.1063291 C79.0227848,21.7113924 78.7544304,21.4835443 78.3594937,21.4075949 C78.121519,21.3620253 77.8734177,21.3468354 77.6303797,21.3620253 C76.8,21.4126582 76.4405063,21.7873418 76.4101266,22.6227848 L76.4101266,22.7746835 C76.4101266,23.7873418 76.8,24.1772152 77.8177215,24.1670886 L77.8177215,24.1670886 Z" id="Shape" fill="#FFF"/><path d="M34.6835443,29.7164557 C34.6835443,30.5367089 34.678481,31.3620253 34.6886076,32.1873418 C34.6886076,32.3341772 34.5924051,32.3443038 34.5012658,32.3797468 C33.2810127,32.9063291 32,33.1544304 30.6734177,33.2 C29.6911392,33.235443 28.7189873,33.2 27.7772152,32.9164557 C26.0050633,32.3848101 24.9518987,31.1544304 24.4607595,29.4126582 C24.0202532,27.8582278 23.9949367,26.2683544 24.1316456,24.6734177 C24.2075949,23.7721519 24.3898734,22.8911392 24.7544304,22.0556962 C25.4278481,20.5113924 26.6075949,19.5949367 28.2481013,19.2506329 C29.3924051,19.0075949 30.5417722,18.9873418 31.6860759,19.2253165 C33.4075949,19.5797468 34.4860759,20.643038 34.9873418,22.3088608 C35.2911392,23.3265823 35.3873418,24.3746835 35.4075949,25.4278481 C35.4177215,26.0202532 35.4075949,26.6075949 35.4227848,27.2 C35.4278481,27.3822785 35.3822785,27.443038 35.1848101,27.443038 C32.5164557,27.4379747 29.8481013,27.443038 27.1746835,27.4379747 C26.9620253,27.4379747 26.9113924,27.4936709 26.9518987,27.6911392 C27.0177215,28.0101266 27.078481,28.3341772 27.1848101,28.6481013 C27.6202532,29.9443038 28.5468354,30.6227848 29.9037975,30.6481013 C31.4936709,30.678481 33.0227848,30.4101266 34.4810127,29.7620253 C34.5367089,29.7367089 34.5924051,29.6911392 34.6835443,29.7164557 L34.6835443,29.7164557 Z M29.6962025,25.0379747 C30.5822785,25.0379747 31.4683544,25.0329114 32.3544304,25.043038 C32.5063291,25.043038 32.556962,25.0075949 32.5518987,24.8506329 C32.5316456,24.3088608 32.4962025,23.7721519 32.3493671,23.2506329 C32.1772152,22.6531646 31.8734177,22.1620253 31.2860759,21.8835443 C30.7037975,21.6050633 30.0911392,21.6050633 29.478481,21.6759494 C28.6987342,21.7670886 28.0405063,22.0860759 27.5898734,22.7544304 C27.1797468,23.3670886 27.0329114,24.0607595 26.9265823,24.7746835 C26.8911392,25.0177215 26.9518987,25.0481013 27.1696203,25.0481013 C28.0101266,25.0329114 28.8506329,25.0379747 29.6962025,25.0379747 L29.6962025,25.0379747 Z" id="Shape" fill="#FFF"/><path d="M78.6835443,23.7063291 C78.4050633,23.7974684 78.2531646,23.6911392 78.1670886,23.443038 C78.1367089,23.356962 78.0708861,23.2810127 78.0455696,23.1949367 C77.9696203,22.9012658 77.7417722,22.9721519 77.5392405,22.9670886 C77.4531646,22.9670886 77.4531646,23.0278481 77.4531646,23.0886076 C77.4531646,23.2303797 77.4481013,23.3721519 77.4531646,23.5189873 C77.4582278,23.6506329 77.4531646,23.7367089 77.2759494,23.7367089 C77.1088608,23.7316456 77.1088608,23.6556962 77.1088608,23.5341772 C77.1139241,23.0227848 77.1189873,22.5063291 77.1088608,21.9949367 C77.1037975,21.8329114 77.1594937,21.7924051 77.3113924,21.7974684 C77.5696203,21.8126582 77.8329114,21.8025316 78.0911392,21.8227848 C78.2987342,21.8379747 78.4658228,21.9493671 78.5113924,22.1620253 C78.5620253,22.3949367 78.6025316,22.6531646 78.3949367,22.8202532 C78.2531646,22.9367089 78.2936709,23.0075949 78.3594937,23.1240506 C78.4759494,23.3164557 78.5822785,23.5139241 78.6835443,23.7063291 L78.6835443,23.7063291 Z M77.8177215,22.1164557 C77.4683544,22.1164557 77.3721519,22.2632911 77.4582278,22.5670886 C77.478481,22.6329114 77.5088608,22.643038 77.564557,22.643038 C77.7164557,22.6379747 77.8632911,22.6379747 78.0151899,22.6278481 C78.1518987,22.6177215 78.2227848,22.5367089 78.2278481,22.4 C78.2329114,22.2531646 78.1670886,22.156962 78.0202532,22.1367089 C77.9341772,22.121519 77.8531646,22.121519 77.8177215,22.1164557 L77.8177215,22.1164557 Z" id="Shape" fill="#FFF"/></g></g></svg>