app-MAIL-temp/static/assets/images/payments/clickandbuy.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 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>Clickandbuy-light</title><desc>Created with Sketch.</desc><g id="Light-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-770.000000, -789.000000)"><g id="Clickandbuy-light" transform="translate(770.000000, 789.000000)"><rect id="Rectangle" fill="#FFF" x="0" y="0" width="100" height="60" rx="4"/><path d="M66.490919,18.6341514 L57.8776331,10.0665884 C57.8776331,10.0665884 56.7618475,8.95547495 55.1859625,8.95547495 C55.1859625,8.95547495 53.6102268,8.95547495 52.494292,10.0665884 C52.494292,10.0665884 51.3785064,11.1777019 51.3785064,12.7469882 C51.3785064,12.7469882 51.3785064,14.3162744 52.494292,15.4273879 L54.5889076,17.503576 L46.5529836,17.503576 C46.5529836,17.503576 44.9577041,17.503576 43.8419185,18.6243462 C43.8419185,18.6243462 42.7162864,19.7354596 42.7162864,21.3145511 C42.7162864,21.3145511 42.7162864,22.8934941 43.8419185,24.0144128 C43.8419185,24.0144128 44.9577041,25.1255263 46.5529836,25.1255263 L54.5889076,25.1255263 L52.494292,27.2113711 C52.494292,27.2113711 51.3785064,28.3224846 51.3785064,29.8917708 C51.3785064,29.8917708 51.3785064,31.461057 52.494292,32.5723191 C52.494292,32.5723191 53.6100776,33.6736273 55.1859625,33.6736273 C55.1859625,33.6736273 56.7616983,33.6736273 57.8776331,32.5723191 L66.4812217,23.9949509 C66.4812217,23.9949509 67.5970073,22.8838374 67.5970073,21.3145511 C67.5970073,21.3145511 67.5970073,19.7452649 66.490919,18.6341514" id="path7283_4_" fill="#FF8000"/><path d="M35.4925481,16.031748 C35.4925481,16.031748 37.5970102,16.031748 39.0847243,17.5132327 C39.0847243,17.5132327 40.5725876,18.9947173 40.5725876,21.0903674 C40.5725876,21.0903674 40.5725876,23.1858689 39.0847243,24.6675021 C39.0847243,24.6675021 37.5970102,26.1491353 35.4925481,26.1491353 C35.4925481,26.1491353 33.3882353,26.1491353 31.900372,24.6675021 C31.900372,24.6675021 30.4126578,23.1860174 30.4126578,21.0903674 C30.4126578,21.0903674 30.4126578,18.9947173 31.900372,17.5132327 C31.9005212,17.5132327 33.3882353,16.031748 35.4925481,16.031748" id="path7285_4_" fill="#FF8000"/><path d="M21.8469632,48.152421 C21.8469632,48.152421 21.1398067,48.2902888 20.5100793,48.2902888 C18.6505858,48.2902888 17.6056651,47.2801991 17.6056651,45.382734 L17.6056651,43.2404348 C17.6056651,41.3431182 18.6352194,40.3331771 20.5100793,40.3331771 C21.2014218,40.3331771 21.8469632,40.4708964 21.8469632,40.4708964 C22.0464291,40.5016492 22.1387772,40.6087642 22.1387772,40.7770877 L22.1387772,41.7103695 C22.1387772,41.8789902 22.0312118,41.970803 21.8469632,41.9552037 C21.8469632,41.9552037 21.1859061,41.8632423 20.6176447,41.8632423 C19.6186742,41.8632423 19.2961273,42.4447236 19.2961273,43.271039 L19.2961273,45.3366791 C19.2961273,46.1940445 19.6497055,46.760075 20.6330112,46.760075 C21.2324531,46.760075 21.8623297,46.6682622 21.8623297,46.6682622 C22.031361,46.6529601 22.1389264,46.7296193 22.1389264,46.8979428 L22.1389264,47.8312247 C22.1387772,47.9993996 22.062094,48.1065146 21.8469632,48.152421" id="path4056_4_" fill="#FF8000"/><path d="M24.6132283,48.1371189 L23.5066924,48.1371189 C23.3373628,48.1371189 23.2145801,48.0147018 23.2145801,47.8463782 L23.2145801,37.5636387 C23.2145801,37.394721 23.3373628,37.272601 23.5066924,37.272601 L24.6132283,37.272601 C24.7821104,37.272601 24.9050423,37.394721 24.9050423,37.5636387 L24.9050423,47.8463782 C24.9048931,48.0147018 24.7821104,48.1371189 24.6132283,48.1371189" id="path4058_4_" fill="#FF8000"/><path d="M27.6092447,48.1371189 L26.5030072,48.1371189 C26.3339759,48.1371189 26.2108948,48.0147018 26.2108948,47.8463782 L26.2108948,40.7769391 C26.2108948,40.6086156 26.3339759,40.4860499 26.5030072,40.4860499 L27.6092447,40.4860499 C27.7784252,40.4860499 27.9015062,40.6086156 27.9015062,40.7769391 L27.9015062,47.8463782 C27.9016554,48.0147018 27.7785743,48.1371189 27.6092447,48.1371189 M27.6092447,38.9561333 L26.5030072,38.9561333 C26.3339759,38.9561333 26.2108948,38.8337162 26.2108948,38.6655412 L26.2108948,37.5636387 C26.2108948,37.394721 26.3339759,37.272601 26.5030072,37.272601 L27.6092447,37.272601 C27.7784252,37.272601 27.9015062,37.394721 27.9015062,37.5636387 L27.9015062,38.6655412 C27.9016554,38.8337162 27.7785743,38.9561333 27.6092447,38.9561333" id="path4060_4_" fill="#FF8000"/><path d="M33.4485077,48.152421 C33.4485077,48.152421 32.7416495,48.2902888 32.1120714,48.2902888 C30.2524287,48.2902888 29.2076571,47.2801991 29.2076571,45.382734 L29.2076571,43.2404348 C29.2076571,41.3431182 30.2370622,40.3331771 32.1120714,40.3331771 C32.8034139,40.3331771 33.4485077,40.4708964 33.4485077,40.4708964 C33.648272,40.5016492 33.74062,40.6087642 33.74062,40.7770877 L33.74062,41.7103695 C33.74062,41.8789902 33.6330547,41.970803 33.4485077,41.9552037 C33.4485077,41.9552037 32.787749,41.8632423 32.2191892,41.8632423 C31.2205171,41.8632423 30.8976717,42.4447236 30.8976717,43.271039 L30.8976717,45.3366791 C30.8976717,46.1940445 31.2513992,46.760075 32.2347048,46.760075 C32.8338484,46.760075 33.4640234,46.6682622 33.4640234,46.6682622 C33.6329055,46.6529601 33.7404709,46.7296193 33.7404709,46.8979428 L33.7404709,47.8312247 C33.74062,47.9993996 33.6636385,48.1065146 33.4485077,48.152421" id="path4062_4_" fill="#FF8000"/><path d="M40.3176234,48.1371189 L39.0727892,48.1371189 C38.9039071,48.1371189 38.7657579,47.9993996 38.6887763,47.8463782 L36.5989348,43.8526688 L38.5042294,40.7769391 C38.5964283,40.6389228 38.7345774,40.4860499 38.9039071,40.4860499 L40.1487413,40.4860499 C40.3176234,40.4860499 40.4096731,40.6389228 40.3176234,40.7769391 L38.4120305,43.821916 L40.5172385,47.8463782 C40.5942201,47.9840975 40.4866547,48.1371189 40.3176234,48.1371189 M36.214922,48.1371189 L35.1083861,48.1371189 C34.939504,48.1371189 34.8162738,48.0147018 34.8162738,47.8463782 L34.8162738,37.5636387 C34.8162738,37.394721 34.939504,37.272601 35.1083861,37.272601 L36.214922,37.272601 C36.3838041,37.272601 36.5070343,37.394721 36.5070343,37.5636387 L36.5070343,47.8463782 C36.5068851,48.0147018 36.3838041,48.1371189 36.214922,48.1371189" id="path4064_4_" fill="#FF8000"/><path d="M44.8816177,44.9388235 L43.5909824,44.9388235 C42.7611924,44.9388235 42.4229806,45.2909212 42.4229806,45.9489131 C42.4229806,46.5302458 42.7611924,46.8670414 43.4371684,46.8670414 C43.9135293,46.8670414 44.4361389,46.6834158 44.8816177,46.4538837 L44.8816177,44.9388235 L44.8816177,44.9388235 Z M46.2798183,48.1371189 L45.2504132,48.1371189 C45.0815311,48.1371189 44.9585992,48.0147018 44.9585992,47.8463782 L44.9585992,47.7088076 C44.4667226,48.0147018 43.8214796,48.2902888 43.0989566,48.2902888 C41.6087062,48.2902888 40.7325184,47.5401869 40.7325184,45.9949681 C40.7325184,44.4186994 41.7006068,43.6384389 43.4062862,43.6384389 C43.929045,43.6384389 44.6820026,43.6992018 44.8814685,43.7304003 L44.8814685,43.1181662 C44.8814685,42.3223065 44.5280394,41.8939952 43.6215662,41.8939952 C42.7149437,41.8939952 41.5621592,42.1541315 41.5621592,42.1541315 C41.3779106,42.1998894 41.2703453,42.0777694 41.2703453,41.9091488 L41.2703453,40.9760155 C41.2703453,40.8073948 41.3779106,40.700577 41.5621592,40.654522 C41.5621592,40.654522 42.5611297,40.3333257 43.8519142,40.3333257 C45.8956563,40.3333257 46.5716323,41.2820582 46.5716323,43.1183148 L46.5716323,47.8465268 C46.5717814,48.0147018 46.4488496,48.1371189 46.2798183,48.1371189 L46.2798183,48.1371189 Z" id="path4066_4_" fill="gray"/><path d="M53.4255307,48.1371189 L52.3192932,48.1371189 C52.1504111,48.1371189 52.02733,48.0147018 52.02733,47.8463782 L52.02733,43.0874134 C52.02733,42.3686586 51.8120501,41.9090002 50.9979249,41.9090002 C50.521564,41.9090002 49.9989544,42.1233787 49.5686929,42.3530593 L49.5686929,47.8463782 C49.5686929,48.0147018 49.4459103,48.1371189 49.2767298,48.1371189 L48.1704923,48.1371189 C48.0011626,48.1371189 47.87838,48.0147018 47.87838,47.8463782 L47.87838,40.7769391 C47.87838,40.6086156 48.0011626,40.4860499 48.1704923,40.4860499 L49.1998974,40.4860499 C49.3689287,40.4860499 49.4920097,40.6086156 49.4920097,40.7769391 L49.4920097,41.0066198 C49.9373393,40.6698242 50.598098,40.3331771 51.4736891,40.3331771 C53.148934,40.3331771 53.7173446,41.3431182 53.7173446,42.9345406 L53.7173446,47.8463782 C53.7173446,48.0147018 53.594562,48.1371189 53.4255307,48.1371189" id="path4068_4_" fill="gray"/><path d="M58.8655636,42.1082251 C58.4508177,41.9399016 57.9898233,41.8173359 57.5749283,41.8173359 C56.7296226,41.8173359 56.4070757,42.3530593 56.4070757,43.1181662 L56.4070757,45.4899976 C56.4070757,46.2551045 56.7296226,46.7905307 57.5749283,46.7905307 C57.9898233,46.7905307 58.4508177,46.6375094 58.8655636,46.4385816 L58.8655636,42.1082251 L58.8655636,42.1082251 Z M60.2639134,48.1371189 L59.2342099,48.1371189 C59.0651786,48.1371189 58.942396,48.0147018 58.942396,47.8463782 L58.942396,47.7548625 C58.466035,48.045306 57.8822579,48.2902888 57.2214992,48.2902888 C55.5156705,48.2902888 54.7167627,47.2494463 54.7167627,45.6122661 L54.7167627,43.0107541 C54.7167627,41.3734254 55.5156705,40.3331771 57.2214992,40.3331771 C57.851525,40.3331771 58.4047183,40.5166542 58.8657127,40.7464834 L58.8657127,37.5636387 C58.8657127,37.394721 58.9887938,37.272601 59.1578251,37.272601 L60.2640626,37.272601 C60.4330939,37.272601 60.5561749,37.394721 60.5561749,37.5636387 L60.5561749,47.8463782 C60.5560257,48.0147018 60.4329447,48.1371189 60.2639134,48.1371189 L60.2639134,48.1371189 Z" id="path4070_4_" fill="gray"/><path d="M66.0112759,43.1181662 C66.0112759,42.3532079 65.7036479,41.8173359 64.8584914,41.8173359 C64.4435964,41.8173359 63.9672355,41.9706544 63.5523405,42.1694337 L63.5523405,46.6834158 L64.7354104,46.6834158 C65.6576977,46.6834158 66.0112759,46.1787423 66.0112759,45.4134869 L66.0112759,43.1181662 L66.0112759,43.1181662 Z M64.8893736,48.1371189 L62.154289,48.1371189 C61.9849593,48.1371189 61.8621767,48.0147018 61.8621767,47.8463782 L61.8621767,37.5636387 C61.8621767,37.394721 61.9849593,37.272601 62.154289,37.272601 L63.2605265,37.272601 C63.429707,37.272601 63.5524897,37.394721 63.5524897,37.5636387 L63.5524897,40.8072463 C64.0134841,40.5319564 64.5820439,40.3331771 65.2120697,40.3331771 C66.9176,40.3331771 67.7017381,41.3735739 67.7017381,43.0107541 L67.7017381,45.4590962 C67.7015889,47.1268806 66.7945189,48.1371189 64.8893736,48.1371189 L64.8893736,48.1371189 Z" id="path4072_4_" fill="#FF8000"/><path d="M74.5551889,48.1371189 L73.5256347,48.1371189 C73.3566034,48.1371189 73.2336715,48.0147018 73.2336715,47.8463782 L73.2336715,47.6166976 C72.7881927,47.9537903 72.1272848,48.2902888 71.2513954,48.2902888 C69.5764489,48.2902888 69.007889,47.2801991 69.007889,45.6887768 L69.007889,40.7769391 C69.007889,40.6086156 69.1306717,40.4860499 69.3000014,40.4860499 L70.4065372,40.4860499 C70.5754194,40.4860499 70.6985004,40.6086156 70.6985004,40.7769391 L70.6985004,45.535904 C70.6985004,46.2551045 70.913482,46.7138715 71.7277563,46.7138715 C72.203968,46.7138715 72.7265776,46.5000872 73.1569883,46.270258 L73.1569883,40.7769391 C73.1569883,40.6086156 73.2799201,40.4860499 73.4488022,40.4860499 L74.5551889,40.4860499 C74.7242202,40.4860499 74.8471521,40.6086156 74.8471521,40.7769391 L74.8471521,47.8463782 C74.8471521,48.0147018 74.724071,48.1371189 74.5551889,48.1371189" id="path4074_4_" fill="#FF8000"/><path d="M78.9655184,50.7690866 C78.9040524,50.9221079 78.8118535,51.044525 78.6429714,51.044525 L77.397988,51.044525 C77.2291059,51.044525 77.1063233,50.9068058 77.16764,50.7540816 L78.0433803,48.198476 L75.5999605,40.7770877 C75.5541594,40.6243634 75.6465075,40.4861985 75.8307561,40.4861985 L77.0448573,40.4861985 C77.2137394,40.4861985 77.3365221,40.5936106 77.3827707,40.761637 L78.9503011,45.6124147 L80.5945146,40.761637 C80.6559805,40.6089127 80.7635459,40.4861985 80.9325772,40.4861985 L82.1466784,40.4861985 C82.330927,40.4861985 82.4383432,40.6390713 82.3770265,40.7925384 L78.9655184,50.7690866 L78.9655184,50.7690866 Z" id="path4076_4_" fill="#FF8000"/></g></g></svg>