feat: add new theme assets, snippets, and styling components for Theme Alan
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import controllers
|
||||
@@ -0,0 +1,93 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': "Theme Alan",
|
||||
'category': 'Theme/eCommerce',
|
||||
'version': '1.0',
|
||||
'license': 'OPL-1',
|
||||
'author': 'Atharva System',
|
||||
'support': 'support@atharvasystem.com',
|
||||
'website' : 'https://www.atharvasystem.com',
|
||||
'live_test_url': 'https://alan-v17.atharvasystem.com',
|
||||
'description': """Theme Alan is one of the most powerful, amazing and flexible theme on Odoo store.""",
|
||||
'summary': 'Theme Alan is one of the most powerful, amazing and flexible theme on Odoo store.',
|
||||
'depends': ['atharva_theme_base'],
|
||||
'data': [
|
||||
'views/headers_footers/header.xml',
|
||||
'views/headers_footers/footer.xml',
|
||||
'views/headers_footers/options.xml',
|
||||
'views/shop/shop.xml',
|
||||
'views/shop/templates.xml',
|
||||
'views/mixins.xml',
|
||||
'views/product/product.xml',
|
||||
'views/snippets/s_img_hotspot.xml',
|
||||
'views/snippets/snippets.xml',
|
||||
'views/snippets/s_website_builder.xml',
|
||||
|
||||
# Frame Builder
|
||||
'views/snippets/s_blog_slider.xml',
|
||||
'views/snippets/s_brand_product.xml',
|
||||
'views/snippets/s_brand_slider.xml',
|
||||
'views/snippets/s_category_product.xml',
|
||||
'views/snippets/s_category_slider.xml',
|
||||
'views/snippets/s_dynamic.xml',
|
||||
'views/snippets/s_product_banner.xml',
|
||||
'views/snippets/s_product_slider.xml',
|
||||
'views/snippets/s_megamenu.xml'
|
||||
],
|
||||
'assets': {
|
||||
'web._assets_primary_variables': [
|
||||
'/theme_alan/static/src/scss/base/*',
|
||||
],
|
||||
'web.assets_frontend': [
|
||||
'/theme_alan/static/src/js/frontend/**/*.js',
|
||||
'/theme_alan/static/src/js/snippets/Hotspot/000.js',
|
||||
'/theme_alan/static/src/xml/templates.xml',
|
||||
'/theme_alan/static/src/scss/feather/*',
|
||||
'/theme_alan/static/src/scss/general/*',
|
||||
'/theme_alan/static/src/scss/dynamic/*',
|
||||
'/theme_alan/static/src/scss/product-details/*',
|
||||
'/theme_alan/static/src/scss/shop/*',
|
||||
'/theme_alan/static/src/scss/header/*',
|
||||
'/theme_alan/static/src/scss/footer/*',
|
||||
],
|
||||
'web._assets_frontend_helpers': [],
|
||||
'web.assets_backend': [
|
||||
'/theme_alan/static/src/scss/dynamic/*',
|
||||
'/theme_alan/static/src/scss/feather/*',
|
||||
'/theme_alan/static/src/scss/backend.scss',
|
||||
],
|
||||
'website.assets_editor':[
|
||||
'/theme_alan/static/src/js/AlanTouch/*',
|
||||
'/theme_alan/static/src/js/components/Menus/*'
|
||||
],
|
||||
'website.assets_wysiwyg':[
|
||||
'/theme_alan/static/src/js/snippets/Hotspot/options.js',
|
||||
'/theme_alan/static/src/xml/templates.xml',
|
||||
'/theme_alan/static/src/xml/website_builder/*.xml',
|
||||
'/theme_alan/static/src/xml/website_builder/**/*.xml',
|
||||
'/theme_alan/static/src/js/snippets/WebsiteBuilder/*',
|
||||
# Frame Builder
|
||||
'/theme_alan/static/src/xml/frame_static_snippets/**/*',
|
||||
'/theme_alan/static/src/xml/mixins/*',
|
||||
'/theme_alan/static/src/js/frontend/base/mixins.js',
|
||||
'/theme_alan/static/src/js/frontend/registries.js',
|
||||
'/theme_alan/static/src/js/components/UserInfo/*',
|
||||
'/theme_alan/static/src/js/snippets/DynamicSnippets/**/*',
|
||||
'/theme_alan/static/src/js/snippets/StaticSnippets/*',
|
||||
'/theme_alan/static/src/js/components/SelectData/*',
|
||||
'/theme_alan/static/src/js/snippets/Megamenu/**/*',
|
||||
'/theme_alan/static/src/js/components/SnippetPicker/*',
|
||||
'/theme_alan/static/src/js/components/SnippetBox/*',
|
||||
'/theme_alan/static/src/js/components/FramePreview/*',
|
||||
'/theme_alan/static/src/js/components/FrameData/*',
|
||||
'/theme_alan/static/src/js/components/FrameMaker/*',
|
||||
'/theme_alan/static/src/js/components/SnippetBuilder/*',
|
||||
'/theme_alan/static/src/js/snippet_config.js',
|
||||
|
||||
],
|
||||
},
|
||||
'price': 222.00,
|
||||
'currency': 'EUR',
|
||||
'images': ['static/description/alan_description.jpg','static/description/alan_screenshot.gif'],
|
||||
'application': False,
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import controllers
|
||||
from . import snippets
|
||||
@@ -0,0 +1,404 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import logging
|
||||
|
||||
import odoo
|
||||
from odoo import http, _, fields
|
||||
from odoo.http import request, route
|
||||
from odoo.tools import lazy
|
||||
from odoo.osv import expression
|
||||
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.addons.web.controllers.home import Home
|
||||
from odoo.addons.web.controllers.utils import ensure_db
|
||||
from odoo.addons.website.controllers.main import QueryURL
|
||||
from odoo.addons.auth_oauth.controllers.main import OAuthLogin
|
||||
from odoo.addons.auth_signup.models.res_users import SignupError
|
||||
from odoo.addons.website_sale.controllers.main import WebsiteSale, TableCompute
|
||||
from odoo.addons.website_sale.controllers.variant import WebsiteSaleVariantController
|
||||
from odoo.addons.website.controllers.main import Website
|
||||
from odoo.addons.http_routing.models.ir_http import slug
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
class WebsiteSaleAlanVariant(WebsiteSaleVariantController):
|
||||
@route()
|
||||
def get_combination_info_website(self, *args, **kwargs):
|
||||
res = super().get_combination_info_website(*args, **kwargs)
|
||||
res.update({'bulk_save': False})
|
||||
if "product_id" in res.keys():
|
||||
product_id = request.env['product.product'].sudo().browse(res.get("product_id", 0))
|
||||
current_pricelist = request.website._get_current_pricelist()
|
||||
if current_pricelist:
|
||||
pricelist_item_ids = current_pricelist.sudo()._get_applicable_rules(product_id, fields.Date.today())
|
||||
template = request.env['ir.ui.view']._render_template("theme_alan.bulk_save_offers",{
|
||||
'product': product_id,
|
||||
'pricelist_item_ids': pricelist_item_ids })
|
||||
|
||||
get_offer_date = product_id._get_offer_timing(current_pricelist)
|
||||
res.update({'bulk_save': template, 'offer_timer':get_offer_date})
|
||||
res.update({'default_code':product_id.default_code, 'last_month_count': product_id.get_sale_count_last_month()})
|
||||
return res
|
||||
|
||||
class WebsiteSaleAlanShop(WebsiteSale):
|
||||
|
||||
def hide_out_of_stock(self, product):
|
||||
combination = product.sudo()._get_first_possible_combination()
|
||||
combination = product.sudo()._get_combination_info(combination, add_qty=1)
|
||||
product_id = request.env['product.product'].sudo().browse([combination['product_id']])
|
||||
website = request.env['website'].get_current_website()
|
||||
if not product_id.sudo().allow_out_of_stock_order and product_id.sudo().with_context(warehouse=website._get_warehouse_available()).virtual_available < 1:
|
||||
return False
|
||||
else:
|
||||
return product.id
|
||||
|
||||
def _shop_lookup_products(self, attrib_set, options, post, search, website):
|
||||
# No limit because attributes are obtained from complete product list
|
||||
product_count, details, fuzzy_search_term = website._search_with_fuzzy("products_only", search,
|
||||
limit=None,
|
||||
order=self._get_search_order(post),
|
||||
options=options)
|
||||
search_result = details[0].get('results', request.env['product.template']).with_context(bin_size=True)
|
||||
|
||||
only_stock = request.session.get("stock", False)
|
||||
if only_stock:
|
||||
search_result = request.env["product.template"].sudo().browse(list([prod_id for prod_id in map(self.hide_out_of_stock, search_result) if prod_id != False]))
|
||||
|
||||
return fuzzy_search_term, product_count, search_result
|
||||
|
||||
def _rbt_count(self, search_product, brand_list, tag_list, attributes):
|
||||
tag_count = { tag.id: len(tag.product_template_ids.sudo().filtered(lambda x: x in search_product)) for tag in tag_list}
|
||||
attr_count = { attr.id : len(attr.pav_attribute_line_ids.mapped('product_tmpl_id').sudo().filtered(lambda x: x in search_product)) for attr in attributes.mapped('value_ids')}
|
||||
brand_count = { brand.id : len(brand.brand_product_ids.sudo().filtered(lambda x: x in search_product)) for brand in brand_list}
|
||||
return tag_count, attr_count, brand_count
|
||||
|
||||
def _count_category_products(self):
|
||||
category_count = {}
|
||||
all_categs = request.env['product.public.category'].search([('website_id', 'in', [False, request.website.id])]).sudo()
|
||||
for rec in all_categs:
|
||||
child_ids = all_categs.search([('id', 'child_of', rec.ids), ('website_id', 'in', [False, request.website.id])])
|
||||
category_count[rec.id] = len(child_ids.mapped('product_tmpl_ids').sudo().filtered(lambda x: x.is_published))
|
||||
return category_count
|
||||
|
||||
@route()
|
||||
def shop(self, page=0, category=None, search='', min_price=0.0, max_price=0.0, ppg=False, **post):
|
||||
# Session based PPG
|
||||
if ppg:
|
||||
request.session['ppg'] = ppg
|
||||
else:
|
||||
if request.session.get('ppg', False):
|
||||
ppg = request.session['ppg']
|
||||
else:
|
||||
ppg = False
|
||||
|
||||
only_stock = request.session.get("stock", False)
|
||||
if post.get("stock", False) == 'active':
|
||||
only_stock = True
|
||||
elif post.get("stock", False) == 'inactive':
|
||||
only_stock = False
|
||||
request.session["stock"] = only_stock
|
||||
|
||||
brand_list = request.httprequest.args.getlist('brand')
|
||||
rating_list = request.httprequest.args.getlist('rating')
|
||||
env_context = dict(request.env.context)
|
||||
env_context.update({ 'brands':brand_list, 'rating':rating_list})
|
||||
request.env.context = env_context
|
||||
|
||||
# Calling Super
|
||||
res = super(WebsiteSaleAlanShop, self).shop(page, category, search, min_price, max_price, ppg, **post)
|
||||
url = '/shop'
|
||||
if category:
|
||||
url = "/shop/category/%s" % slug(category)
|
||||
as_search_prds = res.qcontext['search_product']
|
||||
# Load More
|
||||
if request.website.active_load_more:
|
||||
as_ppg = res.qcontext['ppg']
|
||||
ofst = 0
|
||||
alan_pager = request.website.pager(url=url, total=res.qcontext['search_count'], page=page, step=as_ppg, scope=res.qcontext['search_count'], url_args=post)
|
||||
for page in alan_pager.get('pages'):
|
||||
page.update(prd_ids=as_search_prds[ofst:ofst + as_ppg].ids)
|
||||
ofst += as_ppg
|
||||
res.qcontext.update({'alan_pager':alan_pager})
|
||||
|
||||
# For Brands Filters
|
||||
brand_ids = as_search_prds.mapped("product_brand_id")
|
||||
brand_set = [int(brand) for brand in brand_list]
|
||||
|
||||
# For Rating Filters
|
||||
rating_max = 1
|
||||
if len(as_search_prds.sudo().mapped("rating_avg")):
|
||||
rating_max = int(max(as_search_prds.sudo().mapped("rating_avg"))) + 1
|
||||
rating_set = [int(rating) for rating in rating_list]
|
||||
|
||||
tag_count, attr_count, brand_count = self._rbt_count(res.qcontext.get('search_product'), brand_ids, res.qcontext.get('all_tags', False), res.qcontext.get('attributes', False))
|
||||
category_count = self._count_category_products()
|
||||
|
||||
res.qcontext.update({
|
||||
'stock_only':request.session["stock"],
|
||||
'ppg_list':request.env['as.ppg'].search([]),
|
||||
'as_shop':True,
|
||||
'brands':brand_ids,
|
||||
'brand_set': brand_set,
|
||||
'ratings':rating_max,
|
||||
'rating_set': rating_set,
|
||||
'category_count': category_count,
|
||||
'tag_count': tag_count,
|
||||
'attr_count': attr_count,
|
||||
'brand_count': brand_count,
|
||||
'selected_brands': request.env['as.product.brand'].browse(brand_set),
|
||||
'selected_tags' : request.env['product.tag'].browse(res.qcontext.get('tags')),
|
||||
})
|
||||
return res
|
||||
|
||||
@route('/nextpage/products', auth='public', type="json", website=True)
|
||||
def nextpage_products(self, **kw):
|
||||
if kw.get('product_ids'):
|
||||
products = request.env['product.template'].sudo()
|
||||
if kw.get('products'):
|
||||
products = request.env['product.template'].sudo().browse(kw.get('products'))
|
||||
website = request.env['website'].get_current_website()
|
||||
pricelist = website.pricelist_id
|
||||
ppg = int(request.session.get('ppg') or 20)
|
||||
ppr = int(kw.get('ppr') or 4)
|
||||
product_ids = request.env['product.template'].sudo().browse(kw.get('product_ids'))
|
||||
products |= product_ids
|
||||
fiscal_position_sudo = website.fiscal_position_id.sudo()
|
||||
products_prices = lazy(lambda: product_ids._get_sales_prices(pricelist, fiscal_position_sudo))
|
||||
keep = QueryURL('/shop',)
|
||||
|
||||
return request.env['ir.ui.view']._render_template("theme_alan.shop_page_next_products",{
|
||||
'bins': lazy(lambda: TableCompute().process(product_ids.sudo(), ppg, ppr)),
|
||||
'ppg':ppg,
|
||||
'ppr':ppr,
|
||||
'keep': keep,
|
||||
'products': products,
|
||||
'products_prices': products_prices,
|
||||
'get_product_prices': lambda product: lazy(lambda: products_prices[product.id]),
|
||||
'products_in_wishlist': request.env['product.wishlist'].sudo().current().product_id.product_tmpl_id,
|
||||
})
|
||||
return {}
|
||||
|
||||
@route('/get_similar_product', auth='public', type="json", website=True)
|
||||
def similar_product(self, **kw):
|
||||
product_id = kw.get('product_id')
|
||||
domain = expression.AND([request.website.sale_product_domain(), [('id', '=', product_id)]])
|
||||
product = request.env['product.template'].sudo().search(domain, limit=1)
|
||||
if not product:
|
||||
return False
|
||||
else:
|
||||
return request.env['ir.ui.view']._render_template("theme_alan.as_similar_product", {'products':product.alternative_product_ids})
|
||||
|
||||
@route()
|
||||
def product(self, product, category='', search='', **kwargs):
|
||||
res = super(WebsiteSaleAlanShop, self).product(product, category, search, **kwargs)
|
||||
res.qcontext.update({'as_product_detail':True})
|
||||
domain = request.website.sale_product_domain() + [('active','=',True), ('website_published','=',True)]
|
||||
prod_lst = product.search(domain , order="website_sequence").mapped("id")
|
||||
previous_product = next_product = False
|
||||
if product.id in prod_lst:
|
||||
last_product_idx = len(prod_lst) - 1
|
||||
current_product_idx = prod_lst.index(product.id)
|
||||
if current_product_idx != last_product_idx:
|
||||
next_prod_id = prod_lst[current_product_idx + 1]
|
||||
next_product = product.browse(next_prod_id)
|
||||
if current_product_idx != 0:
|
||||
prev_prod_id = prod_lst[current_product_idx - 1]
|
||||
previous_product = product.browse(prev_prod_id)
|
||||
res.qcontext.update({'next_product':next_product,'previous_product':previous_product})
|
||||
return res
|
||||
|
||||
@route('/get_quick_view', auth='public', type="json", website=True)
|
||||
def quick_view(self, **kw):
|
||||
product_id = kw.get('product_id')
|
||||
domain = expression.AND([request.website.sale_product_domain(), [('id', '=', product_id)]])
|
||||
product = request.env['product.template'].search(domain, limit=1)
|
||||
if not product:
|
||||
return False
|
||||
values = self._prepare_product_values(product, category='', search='', **kw)
|
||||
return request.env['ir.ui.view']._render_template("theme_alan.as_quick_view", values=values)
|
||||
|
||||
@route('/advance/info/editor/<model("as.product.extra.info"):offer>', auth='user', type="http", website=True)
|
||||
def offer_design(self, offer):
|
||||
return request.render('theme_alan.as_product_advance_info_design', {'layout': offer})
|
||||
|
||||
@route('/get_advance_info', auth='public', type="json", website=True)
|
||||
def get_advance_info(self, advance_info_id):
|
||||
offer = request.env['as.product.extra.info'].sudo().search([('id','=',advance_info_id)], limit=1)
|
||||
if offer.detail_description:
|
||||
return offer.detail_description
|
||||
return ""
|
||||
|
||||
@route('/get_color_product', auth='public', type="json", website=True)
|
||||
def get_color_product(self, **kw):
|
||||
product_id = kw.get('product_id')
|
||||
domain = expression.AND([request.website.sale_product_domain(), [('id', '=', product_id)]])
|
||||
product = request.env['product.template'].sudo().search(domain, limit=1)
|
||||
if not product:
|
||||
return False
|
||||
else:
|
||||
return request.env['ir.ui.view']._render_template("theme_alan.as_color_product_dialog",{
|
||||
'product':product,
|
||||
'product_variant':product.product_variant_ids,
|
||||
})
|
||||
|
||||
class AlanShops(http.Controller):
|
||||
|
||||
@route(['/shop/brands', '/shop/brands/page/<int:page>'], type='http', auth="public", website=True)
|
||||
def BrandPage(self, page=0):
|
||||
domain = ['&',('active','=',True), ('website_id', 'in', (False, request.website.id))]
|
||||
brands = request.env['as.product.brand'].sudo().search(domain, order="name asc")
|
||||
total = brands.sudo().search_count([])
|
||||
pager = request.website.pager(
|
||||
url='/shop/brands',
|
||||
total=total,
|
||||
page=page,
|
||||
step=30,
|
||||
)
|
||||
offset = pager['offset']
|
||||
brands = brands[offset: offset + 30]
|
||||
return request.render("theme_alan.brand_list", {'brands':brands, 'pager': pager})
|
||||
|
||||
@route('/get_mini_cart', auth='public', type="json", website=True)
|
||||
def mini_cart(self, **kw):
|
||||
order = request.website.sale_get_order()
|
||||
suggested_products = order.website_order_line.sudo().product_id.mapped('accessory_product_ids').filtered(lambda x: (x.is_published and x.sale_ok) and x.allow_out_of_stock_order)
|
||||
context = {'website_sale_order': order,'suggested_products':suggested_products}
|
||||
value = { 'as_mini_cart_lines':request.env["ir.ui.view"]._render_template("theme_alan.as_mini_cart_lines", context),'as_mini_cart': request.env["ir.ui.view"]._render_template("theme_alan.as_mini_cart", context)}
|
||||
return value
|
||||
|
||||
@route('/as_clear_cart', type="json", auth="public", website=True)
|
||||
def as_clear_cart(self, **kw):
|
||||
order = request.website.sale_get_order()
|
||||
request.session['website_sale_cart_quantity'] = 0
|
||||
order.unlink()
|
||||
return {'empty_mini_cart': request.env["ir.ui.view"]._render_template("theme_alan.as_empty_mini_cart")}
|
||||
|
||||
@route('/get_alan_configuration', auth='public', type="json", website=True)
|
||||
def get_alan_configuration(self, **kw):
|
||||
website = request.website
|
||||
data = {
|
||||
'active_login_popup':website.active_login_popup,
|
||||
'active_mini_cart':website.active_mini_cart,
|
||||
'active_scroll_top':website.active_scroll_top,
|
||||
'active_b2b_mode':website.active_b2b_mode,
|
||||
|
||||
'active_shop_quick_view': website.active_shop_quick_view,
|
||||
'active_shop_rating': website.active_shop_rating,
|
||||
'active_shop_similar_product': website.active_shop_similar_product,
|
||||
'active_shop_offer_timer': website.active_shop_offer_timer ,
|
||||
'active_shop_color_variant': website.active_shop_color_variant,
|
||||
'active_shop_stock_info': website.active_shop_stock_info,
|
||||
'active_shop_brand_info': website.active_shop_brand_info,
|
||||
'active_shop_hover_image':website.active_shop_hover_image,
|
||||
'active_shop_label':website.active_shop_label,
|
||||
'active_shop_clear_filter':website.active_shop_clear_filter,
|
||||
'active_shop_ppg':website.active_shop_ppg,
|
||||
'active_stock_only':website.active_stock_only,
|
||||
'active_load_more':website.active_load_more,
|
||||
'active_brand_filter':website.active_brand_filter,
|
||||
'active_rating_filter':website.active_rating_filter,
|
||||
'active_attribute_count':website.active_attribute_count,
|
||||
'active_attribute_search':website.active_attribute_search,
|
||||
|
||||
'active_product_label':website.active_product_label,
|
||||
'active_product_offer_timer':website.active_product_offer_timer,
|
||||
'active_product_reference':website.active_product_reference,
|
||||
'active_product_category':website.active_product_category,
|
||||
'active_product_brand':website.active_product_brand,
|
||||
'active_product_advance_info':website.active_product_advance_info,
|
||||
'active_product_variant_info':website.active_product_variant_info,
|
||||
'active_product_accessory':website.active_product_accessory,
|
||||
'active_product_alternative':website.active_product_alternative,
|
||||
'active_product_pager':website.active_product_pager,
|
||||
'active_product_sticky':website.active_product_sticky,
|
||||
'active_product_bulk_save':website.active_product_bulk_save,
|
||||
'active_last_month_count': website.active_last_month_count
|
||||
}
|
||||
return data
|
||||
|
||||
@route('/set_alan_configuration', auth='public', type="json", website=True)
|
||||
def set_alan_configuration(self, is_active, setting):
|
||||
request.website.write({ setting: is_active })
|
||||
return True
|
||||
|
||||
class LoginPopup(Home):
|
||||
|
||||
@route('/get_login_popup', type='json', auth="public", website=True)
|
||||
def alan_login_popup(self, **kwargs):
|
||||
context = {}
|
||||
providers = OAuthLogin.list_providers(self)
|
||||
context.update(super().get_auth_signup_config())
|
||||
context.update({'providers':providers})
|
||||
signup_enabled = request.env['res.users']._get_signup_invitation_scope() == 'b2c'
|
||||
reset_password_enabled = request.env['ir.config_parameter'].sudo().get_param('auth_signup.reset_password') == 'True'
|
||||
website_logo = request.website.image_url(request.website,'logo')
|
||||
context.update({'signup_enabled':signup_enabled ,"reset_password_enabled":reset_password_enabled,'website_logo':website_logo})
|
||||
return request.env['ir.ui.view']._render_template("theme_alan.as_shop_login",context)
|
||||
|
||||
@route('/alan/login/authenticate', type='json', auth="none")
|
||||
def alan_login_authenticate(self, **kwargs):
|
||||
''' Login Authentication '''
|
||||
ensure_db()
|
||||
request.params['login_success'] = False
|
||||
if not request.uid:
|
||||
request.update_env(user=odoo.SUPERUSER_ID)
|
||||
values = request.params.copy()
|
||||
if request.httprequest.method == 'POST':
|
||||
try:
|
||||
uid = request.session.authenticate(request.db, request.params['login'], request.params['password'])
|
||||
request.params['login_success'] = True
|
||||
request.redirect(self._login_redirect(uid, redirect=None))
|
||||
return request.params
|
||||
except odoo.exceptions.AccessDenied as e:
|
||||
if e.args == odoo.exceptions.AccessDenied().args:
|
||||
values['error'] = _("Wrong login/password")
|
||||
else:
|
||||
values['error'] = e.args[0]
|
||||
if 'login' not in values and request.session.get('auth_login'):
|
||||
values['login'] = request.session.get('auth_login')
|
||||
return values
|
||||
|
||||
@route('/alan/signup/authenticate', type="json", auth="public")
|
||||
def alan_signup_authenticate(self,*args, **kw):
|
||||
''' Signup Authentication '''
|
||||
qcontext = super(LoginPopup,self).get_auth_signup_qcontext()
|
||||
if 'error' not in qcontext and request.httprequest.method == 'POST':
|
||||
try:
|
||||
super(LoginPopup,self).do_signup(qcontext)
|
||||
User = request.env['res.users']
|
||||
user_sudo = User.sudo().search(
|
||||
User._get_login_domain(qcontext.get('login')), order=User._get_login_order(), limit=1
|
||||
)
|
||||
template = request.env.ref('auth_signup.mail_template_user_signup_account_created', raise_if_not_found=False)
|
||||
if user_sudo and template:
|
||||
template.sudo().send_mail(user_sudo.id, force_send=True)
|
||||
return {'signup_success':True}
|
||||
except UserError as e:
|
||||
qcontext['error'] = e.args[0]
|
||||
except (SignupError, AssertionError) as e:
|
||||
if request.env['res.users'].sudo().search([('login', '=', qcontext.get('login'))]):
|
||||
qcontext['error'] = _('Another user is already registered using this email address.')
|
||||
else:
|
||||
_logger.error("%s", e)
|
||||
qcontext['error'] = _('Could not create a new account.')
|
||||
return qcontext
|
||||
|
||||
class B2BWebsite(Website):
|
||||
|
||||
@route()
|
||||
def autocomplete(self, search_type=None, term=None, order=None, limit=5, max_nb_chars=999, options=None):
|
||||
result = super().autocomplete(search_type, term, order, limit, max_nb_chars, options)
|
||||
if request.env.user._is_public() and request.website.active_b2b_mode:
|
||||
result['parts']['is_b2b_mode'] = True
|
||||
else:
|
||||
result['parts']['is_b2b_mode'] = False
|
||||
return result
|
||||
|
||||
@route()
|
||||
def hybrid_list(self, page=1, search='', search_type='all', **kw):
|
||||
result = super().hybrid_list(page, search, search_type, **kw)
|
||||
if request.env.user._is_public() and request.website.active_b2b_mode:
|
||||
result.qcontext['is_b2b_mode'] = True
|
||||
else:
|
||||
result.qcontext['is_b2b_mode'] = False
|
||||
return result
|
||||
@@ -0,0 +1,432 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import json
|
||||
import ast
|
||||
import random
|
||||
import logging
|
||||
|
||||
from odoo import http, _
|
||||
from odoo.http import request, route
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
class ThemeAlan(http.Controller):
|
||||
|
||||
@route('/get_hotspot_product', auth='public', type="json", website=True)
|
||||
def getHotSpotInfo(self, product_tmpl_id=0, style="st1"):
|
||||
product_id = request.env['product.template'].sudo().browse(int(product_tmpl_id))
|
||||
template = request.env['ir.ui.view']._render_template("theme_alan.as_img_hotspot_product_popover", {
|
||||
'product':product_id,
|
||||
'style':style,
|
||||
})
|
||||
return {'template':template}
|
||||
|
||||
@http.route('/select/data/fetch', auth='user', type="http", website=True)
|
||||
def select2DataFetch(self, terms=False, searchIn=False, **kwargs):
|
||||
results = []
|
||||
parent_category = kwargs.get("parent_category", 0)
|
||||
website_domain = request.website.website_domain()
|
||||
if searchIn:
|
||||
searchIn = ast.literal_eval(searchIn)
|
||||
for search in searchIn:
|
||||
if parent_category:
|
||||
kwargs.get("parent_category", 0)
|
||||
domain = website_domain + [('parent_id','=',int(parent_category)),('name','ilike',terms)]
|
||||
records = request.env[search].search(domain)
|
||||
else:
|
||||
domain = website_domain + [('name','ilike',terms)]
|
||||
if search in ["product.template", "blog.post"]:
|
||||
domain += [('is_published','=',True)]
|
||||
records = request.env[search].search(domain)
|
||||
for record in records:
|
||||
if search == "product.public.category":
|
||||
if parent_category:
|
||||
data = { 'id':record.id, 'name':record.name, 'modal':search,
|
||||
'img': request.website.image_url(record, "image_256") }
|
||||
results.append(data)
|
||||
else:
|
||||
# if not record.parent_id:
|
||||
data = { 'id':record.id, 'name':record.name, 'modal':search ,
|
||||
'img': request.website.image_url(record, "image_256")}
|
||||
results.append(data)
|
||||
elif search == "blog.post":
|
||||
data = { 'id':record.id, 'name':record.display_name, 'modal':search ,
|
||||
'img': request.website.image_url(record, "author_avatar")}
|
||||
results.append(data)
|
||||
else:
|
||||
data = { 'id':record.id, 'name':record.display_name, 'modal':search ,
|
||||
'img': request.website.image_url(record, "image_256")}
|
||||
results.append(data)
|
||||
return json.dumps(results)
|
||||
|
||||
@route('/get_template', auth='user', type="json", website=True)
|
||||
def getTemplate(self, template, context={}):
|
||||
return request.env['ir.ui.view']._render_template(template, context)
|
||||
|
||||
@route('/get_select2_data', auth='user', type="json", website=True)
|
||||
def getSelect2Data(self, **kwargs):
|
||||
model = kwargs.get("model", False)
|
||||
if model:
|
||||
ids = kwargs.get("record_ids", [0])
|
||||
data = request.env[model].browse([int(i) for i in ids])
|
||||
if len(data) == 1:
|
||||
return {'id':data.id, 'text':data.display_name}
|
||||
return False
|
||||
|
||||
@route('/save_user_custom_frame', auth='public', type="json", website=True)
|
||||
def saveUserFrame(self, frame=False, is_default_frame=False, default_frame_id=False, frame_config=False):
|
||||
response = {}
|
||||
name = request.env['ir.sequence'].sudo().next_by_code('as.frames.seq')
|
||||
if not is_default_frame:
|
||||
frame_id = request.env['as.snippet.frame'].create({'name':name, 'snippet_frame':frame, 'snippet_frame_html':frame})
|
||||
response.update({'frame':frame_id.id})
|
||||
else:
|
||||
response.update({'frame':default_frame_id})
|
||||
name = request.env['ir.sequence'].sudo().next_by_code('as.frame.config.seq')
|
||||
frame_config_id = request.env['as.snippet.frame.config'].create({'name':name,'snippet_frame_config':frame_config})
|
||||
response.update({'frame_config':frame_config_id.id})
|
||||
return response
|
||||
|
||||
@route('/get_snippet_frame', auth='public', type="json", website=True)
|
||||
def getSnippetFrame(self, frame_id=False, frame_config=False):
|
||||
if frame_id and frame_config:
|
||||
frame_config_id = request.env['as.snippet.frame.config'].search([('id','=', int(frame_config))])
|
||||
frame = request.env['as.snippet.frame'].search([('id','=', int(frame_id))])
|
||||
return {'frame_id':frame.snippet_frame, 'frame_config':frame_config_id.snippet_frame_config}
|
||||
return { 'frame_id':False, 'frame_config':False }
|
||||
|
||||
@route('/get_default_frame', auth='public', type="json", website=True)
|
||||
def getDefaultSnippetFrame(self):
|
||||
frame_ids = request.env['as.snippet.frame'].search([])
|
||||
template = request.env['ir.ui.view']._render_template("theme_alan.s_default_frame",{'frame_ids':frame_ids})
|
||||
return { 'response':template }
|
||||
|
||||
@route('/delete_default_frame', auth='public', type="json", website=True)
|
||||
def deleteDefaultSnippetFrame(self, frame_id=False):
|
||||
if frame_id:
|
||||
request.env['as.snippet.frame'].search([('id','=', frame_id)]).unlink()
|
||||
return True
|
||||
|
||||
@route('/get_record_detail', auth='public', type="json", website=True)
|
||||
def getDetailInfo(self, record_id=False, model=False, **kwargs):
|
||||
if record_id and model:
|
||||
rec_info = request.env[model].browse(record_id)
|
||||
if model == "blog.post":
|
||||
return {"id": rec_info.id,
|
||||
"display_name":rec_info.display_name,
|
||||
"image": request.website.image_url(rec_info,"author_avatar") }
|
||||
else:
|
||||
return {"id": rec_info.id,
|
||||
"display_name":rec_info.display_name,
|
||||
"image": request.website.image_url(rec_info,"image_1024") }
|
||||
|
||||
@route('/get_records_details', auth='public', type="json", website=True)
|
||||
def getDetailsInfos(self, record_ids=[], model=False):
|
||||
if record_ids and model:
|
||||
record_ids = [int(i) for i in record_ids]
|
||||
rec_info = request.env[model].browse(record_ids)
|
||||
if model == "blog.post":
|
||||
return [{"id": rec.id, "display_name":rec.display_name,
|
||||
"name":rec.name,
|
||||
"image": request.website.image_url(rec,"author_avatar") }
|
||||
for rec in rec_info ]
|
||||
else:
|
||||
return [{"id": rec.id, "display_name":rec.display_name,
|
||||
"name":rec.name,
|
||||
"image": request.website.image_url(rec,"image_1024") }
|
||||
for rec in rec_info ]
|
||||
|
||||
def sort_records(self, modal, sort, limit, domain, random_record=False):
|
||||
if modal in ["product.template", "blog.post"]:
|
||||
domain += [('is_published','=',True)]
|
||||
if sort:
|
||||
records = request.env[modal].search(domain, limit=limit, order=sort)
|
||||
else:
|
||||
if random_record:
|
||||
records = request.env[modal].search(domain)
|
||||
rec_lst = [{"id": rec.id, "display_name":rec.display_name,
|
||||
"image": request.website.image_url(rec,"image_1024") }
|
||||
for rec in records ]
|
||||
random.shuffle(rec_lst)
|
||||
return rec_lst[:16]
|
||||
else:
|
||||
records = request.env[modal].search(domain, limit=limit )
|
||||
return records
|
||||
|
||||
@route('/get_quick_record', auth='public', type="json", website=True)
|
||||
def getQuickRecords(self, mode=False):
|
||||
website = request.website
|
||||
limit = 50
|
||||
from_date = 182
|
||||
website_domain = request.website.website_domain()
|
||||
if mode == "get_latest_product":
|
||||
limit = 15
|
||||
records = self.sort_records('product.template', 'create_date DESC', limit, website_domain)
|
||||
elif mode == "get_top_product":
|
||||
limit = 15
|
||||
records = self.sort_records('product.template', 'product_rating DESC', limit, website_domain)
|
||||
elif mode == "get_best_sold_product":
|
||||
limit = 15
|
||||
records = request.env['product.template']._get_best_seller_product(from_date, website.id, limit)
|
||||
elif mode == "_get_parent_category":
|
||||
website_domain = website_domain + [('parent_id','=', False)]
|
||||
records = self.sort_records('product.public.category', False, limit, website_domain)
|
||||
elif mode == "_get_a_to_z_category":
|
||||
records = self.sort_records('product.public.category', 'name ASC', limit, website_domain)
|
||||
elif mode == "_get_z_to_a_category":
|
||||
records = self.sort_records('product.public.category', 'name DESC', limit, website_domain)
|
||||
elif mode == "_get_z_to_a_brand":
|
||||
records = self.sort_records('as.product.brand', 'name DESC', limit, website_domain)
|
||||
elif mode == "_get_a_to_z_brand":
|
||||
records = self.sort_records('as.product.brand', 'name ASC', limit, website_domain)
|
||||
elif mode == "_get_random_brand":
|
||||
return self.sort_records('as.product.brand', False, limit, website_domain, True)
|
||||
elif mode == "_get_random_product":
|
||||
return self.sort_records('product.template', False, limit, website_domain, True)
|
||||
elif mode == "_get_random_category":
|
||||
return self.sort_records('product.public.category', False, limit, website_domain, True)
|
||||
elif mode == "_get_z_to_a_blog":
|
||||
records = self.sort_records('blog.post', 'name DESC', limit, website_domain)
|
||||
elif mode == "_get_a_to_z_blog":
|
||||
records = self.sort_records('blog.post', 'name ASC', limit, website_domain)
|
||||
elif mode == "_get_random_blog":
|
||||
return self.sort_records('blog.post', False, limit, website_domain, True)
|
||||
return [{"id": product_info.id, "display_name":product_info.display_name,
|
||||
"image": request.website.image_url(product_info,"image_1024") }
|
||||
for product_info in records ]
|
||||
|
||||
@route('/get_mega_snippet_template', auth='public', type="json", website=True)
|
||||
def getSnipprtTemplate(self, snippet, record_ids, modal, design_editor, **kw):
|
||||
if snippet in ["MegaMenuProduct", "MegaMenuBrand"]:
|
||||
active_view = design_editor.get("active_view",'slider');
|
||||
col_item = int(design_editor.get("col_item",4));
|
||||
slider_config = {}
|
||||
if active_view == "slider":
|
||||
style = design_editor.get("slider_style",'');
|
||||
slider_config = {
|
||||
'slidesPerView': 1.5,
|
||||
'spaceBetween': 20,
|
||||
'pagination': {
|
||||
'el': ".swiper-pagination",
|
||||
'clickable': True,
|
||||
},
|
||||
'breakpoints': {
|
||||
767: {
|
||||
'slidesPerView': 2,
|
||||
},
|
||||
1024: {
|
||||
'slidesPerView': col_item,
|
||||
},
|
||||
},
|
||||
'navigation': {
|
||||
'nextEl': ".swiper-button-next",
|
||||
'prevEl': ".swiper-button-prev",
|
||||
},
|
||||
}
|
||||
if design_editor.get("auto_slider",False):
|
||||
slider_config.update({'autoplay': {'delay': int(design_editor.get('slider_time',4)) * 1000}})
|
||||
else:
|
||||
style = design_editor.get("grid_style",'');
|
||||
col_item = int(12 / col_item);
|
||||
template_id = design_editor.get("template_id",False);
|
||||
product_ids = request.env[modal].browse(record_ids)
|
||||
context = {'data':product_ids, 'style':style, 'col_item':col_item}
|
||||
if design_editor.get("allow_link", False):
|
||||
context.update({'allow_link':True})
|
||||
template = request.env['ir.ui.view']._render_template(template_id, context)
|
||||
return {'template':template, 'slider_config':slider_config}
|
||||
elif snippet in ["MegaMenuCategory"]:
|
||||
active_view = design_editor.get("active_view",'slider');
|
||||
col_item = int(design_editor.get("col_item",4));
|
||||
slider_config = {}
|
||||
if active_view == "slider":
|
||||
style = design_editor.get("slider_style",'as-mm-category-slider_1');
|
||||
slider_config = {
|
||||
'slidesPerView': 1.5,
|
||||
'spaceBetween': 20,
|
||||
'pagination': {
|
||||
'el': ".swiper-pagination",
|
||||
'clickable': True,
|
||||
},
|
||||
'breakpoints': {
|
||||
767: {
|
||||
'slidesPerView': 2,
|
||||
},
|
||||
1024: {
|
||||
'slidesPerView': col_item,
|
||||
},
|
||||
},
|
||||
'navigation': {
|
||||
'nextEl': ".swiper-button-next",
|
||||
'prevEl': ".swiper-button-prev",
|
||||
},
|
||||
}
|
||||
if design_editor.get("auto_slider",False):
|
||||
slider_config.update({'autoplay': {'delay': int(design_editor.get('slider_time',4)) * 1000}})
|
||||
|
||||
cat_ids = request.env[modal].browse(record_ids)
|
||||
template_id = design_editor.get("template_id",'theme_alan.m_category_slider');
|
||||
context = {'data':cat_ids}
|
||||
else:
|
||||
style = design_editor.get("grid_style",'as-mm-category-grid_1');
|
||||
col_item = int(12 / col_item);
|
||||
extra_info = kw.get("extra_info", False)
|
||||
template_id = design_editor.get("template_id",'theme_alan.m_category_grid');
|
||||
data = {}
|
||||
sub_data = {}
|
||||
if extra_info:
|
||||
for cats in extra_info:
|
||||
parent_id = request.env[modal].browse(cats['parent'])
|
||||
child_ids = []
|
||||
lst = [int(i) for i in cats['childs']]
|
||||
if len(lst):
|
||||
child_ids = request.env[modal].browse(lst)
|
||||
sub_data.update({parent_id: child_ids})
|
||||
for rec in record_ids:
|
||||
parent_id = request.env[modal].browse([rec])
|
||||
if parent_id in sub_data.keys():
|
||||
data.update({parent_id: sub_data[parent_id]})
|
||||
else:
|
||||
data.update({parent_id: []})
|
||||
else:
|
||||
for rec in record_ids:
|
||||
parent_id = request.env[modal].browse([rec])
|
||||
if parent_id in sub_data.keys():
|
||||
data.update({parent_id: sub_data[parent_id]})
|
||||
else:
|
||||
data.update({parent_id: []})
|
||||
context = {'data':data}
|
||||
context.update({'style':style, 'col_item':col_item})
|
||||
template = request.env['ir.ui.view']._render_template(template_id, context)
|
||||
return {'template':template, 'slider_config':slider_config}
|
||||
|
||||
@route('/remove_records', auth='public', type="json", website=True)
|
||||
def getRemoveRecords(self, model, ids):
|
||||
request.env[model].browse(ids).unlink()
|
||||
return True
|
||||
|
||||
@route('/get_frame', auth='public', type="json", website=True)
|
||||
def getFrame(self, frame_id=0):
|
||||
return request.env["as.snippet.frame"].browse(int(frame_id)).snippet_frame
|
||||
|
||||
@route('/get_products_snippet_template', auth='public', type="json", website=True)
|
||||
def getProductSnippets(self, **kw):
|
||||
snippet_type = kw.get("snippet", False)
|
||||
website_domain = request.website.website_domain()
|
||||
return_context = {}
|
||||
if snippet_type:
|
||||
modal = kw.get("modal", "product.template")
|
||||
ids = kw.get("record_ids",[0])
|
||||
context = {}
|
||||
# if snippet_type products_slider_lst:
|
||||
configuration = kw.get("design_editor",{})
|
||||
if snippet_type == "BestSellingProduct":
|
||||
record_ids = request.env[modal].browse(ids)
|
||||
return_context.update({'record_ids':[i.id for i in record_ids]})
|
||||
elif snippet_type == "LatestProduct":
|
||||
record_ids = request.env['product.template'].search(website_domain, limit=15, order="create_date DESC")
|
||||
return_context.update({'record_ids':[i.id for i in record_ids]})
|
||||
elif snippet_type == "BrandProduct":
|
||||
domain = website_domain + [('product_brand_id', 'in', ids)]
|
||||
record_ids = request.env['product.template'].search(domain)
|
||||
tab_ids = request.env[modal].browse(ids)
|
||||
context.update({'tab_ids':tab_ids})
|
||||
elif snippet_type == "CategoryProduct":
|
||||
domain = website_domain + [('public_categ_ids', 'in', ids)]
|
||||
record_ids = request.env['product.template'].search(domain)
|
||||
tab_ids = request.env[modal].browse(ids)
|
||||
context.update({'tab_ids':tab_ids})
|
||||
else:
|
||||
if modal == "blog.post":
|
||||
record_ids = request.env[modal].browse(ids)
|
||||
if not request.env.user._is_internal():
|
||||
record_ids = [blog for blog in record_ids if blog.sudo().is_published == True]
|
||||
else:
|
||||
record_ids = request.env[modal].browse(ids)
|
||||
|
||||
template = False
|
||||
slider_config = {}
|
||||
context.update({'records':record_ids, 'configuration':configuration })
|
||||
template = request.env['ir.ui.view']._render_template(configuration.get('template_id'), context)
|
||||
# slider config
|
||||
return_context.update({'template':template ,'slider_config':slider_config})
|
||||
if configuration.get("view",False) == 'slider':
|
||||
slider_config.update({
|
||||
'loop':configuration.get("loop"),
|
||||
'spaceBetween': 15,
|
||||
'slidesPerView': configuration.get("default_col_mob"),
|
||||
'navigation': {
|
||||
'nextEl': ".swiper-button-next",
|
||||
'prevEl': ".swiper-button-prev",
|
||||
},
|
||||
'breakpoints': {
|
||||
640: {
|
||||
'slidesPerView': configuration.get("default_col_mob"),
|
||||
},
|
||||
768: {
|
||||
'slidesPerView': configuration.get("default_col_mob"),
|
||||
},
|
||||
1024: {
|
||||
'slidesPerView': configuration.get("default_col_desk"),
|
||||
},
|
||||
1200: {
|
||||
'slidesPerView': configuration.get("default_col_desk"),
|
||||
},
|
||||
},
|
||||
'observer': True,
|
||||
'observeSlideChildren': True,
|
||||
'observeParents': True,
|
||||
})
|
||||
if configuration.get("auto_slider"):
|
||||
slider_config.update({
|
||||
'autoplay':{ 'delay': int(configuration.get("slider_time")) * 1000,
|
||||
'disableOnInteraction':False }
|
||||
})
|
||||
if configuration.get("pagination"):
|
||||
pagination_style = {}
|
||||
if configuration.get("pagination") == 'simple':
|
||||
pagination_style = {
|
||||
'el': ".swiper-pagination"
|
||||
}
|
||||
elif configuration.get("pagination") == 'dynamic':
|
||||
pagination_style = {
|
||||
'el': ".swiper-pagination",
|
||||
'dynamicBullets': True,
|
||||
}
|
||||
elif configuration.get("pagination") == 'progress_bar':
|
||||
pagination_style = {
|
||||
'el': ".swiper-pagination",
|
||||
'type': "progressbar",
|
||||
}
|
||||
elif configuration.get("pagination") == 'fraction':
|
||||
pagination_style = {
|
||||
'el': ".swiper-pagination",
|
||||
'type': "fraction",
|
||||
}
|
||||
elif configuration.get("pagination") == 'scroll_bar':
|
||||
pagination_style = {
|
||||
'el': ".swiper-scrollbar",
|
||||
'hide': True,
|
||||
}
|
||||
elif configuration.get("pagination") == 'coverflow':
|
||||
pagination_style = {
|
||||
'el': ".swiper-pagination",
|
||||
}
|
||||
slider_config.update({
|
||||
"effect": "coverflow",
|
||||
"grabCursor": True,
|
||||
"centeredSlides": True,
|
||||
})
|
||||
elif configuration.get("pagination") == 'cards':
|
||||
slider_config.update({
|
||||
"effect": "cards",
|
||||
"grabCursor": True,
|
||||
"centeredSlides": True,
|
||||
})
|
||||
if configuration.get("pagination") == 'scroll_bar':
|
||||
slider_config.update({'scrollbar':pagination_style })
|
||||
else:
|
||||
slider_config.update({'pagination':pagination_style })
|
||||
|
||||
return_context.update({'slider_config':slider_config})
|
||||
return return_context
|
||||
@@ -0,0 +1 @@
|
||||
Get Alan User Guide at https://alan-v16.atharvasystem.com/theme_alan/static/src/documentation/index.html
|
||||
@@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
@@ -0,0 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 9.6 MiB |
|
After Width: | Height: | Size: 412 KiB |
|
After Width: | Height: | Size: 265 KiB |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 238 KiB |
|
After Width: | Height: | Size: 465 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 330 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 50 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="230" height="9" viewBox="0 0 230 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M229.739 6.75471C157.106 1.35913 -8.45492 -4.39418 0.487881 5.84833C6.27817 12.4801 145.087 5.03625 229.739 6.75471Z" fill="#D5FE5E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 247 B |
@@ -0,0 +1,137 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1440 450">
|
||||
<defs>
|
||||
<g id="gradients">
|
||||
<linearGradient id="gradient_1" x1="306.5" y1="110.8" x2="100.54" y2="417.02" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#F36D30" style="stop-opacity:0"/>
|
||||
<stop offset="1" stop-color="#F36D30"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="gradient_2" x1="39.43" y1="19" x2="118.98" y2="107.27" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#D5FE5F" style="stop-opacity:0"/>
|
||||
<stop offset="1" stop-color="#D5FE5F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="gradient_2-2" x1="49.76" y1="9.69" x2="129.31" y2="97.96" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-3" x1="60.09" y1="0.39" x2="139.64" y2="88.65" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-4" x1="30.12" y1="27.39" x2="109.67" y2="115.66" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-5" x1="40.45" y1="18.08" x2="120" y2="106.35" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-6" x1="50.78" y1="8.77" x2="130.33" y2="97.04" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-7" x1="20.81" y1="35.78" x2="100.37" y2="124.05" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-8" x1="31.14" y1="26.47" x2="110.69" y2="114.74" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_2-9" x1="41.47" y1="17.16" x2="121.02" y2="105.43" xlink:href="#gradient_2"/>
|
||||
<linearGradient id="gradient_3" x1="1208.09" y1="-11.9" x2="1440.2" y2="267.4" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#F36D30"/>
|
||||
<stop offset="1" stop-color="#D5FE5F" style="stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
</g>
|
||||
</defs>
|
||||
<polygon id="shape_1" points="1314.26 29.42 1349.55 80.57 1400.7 115.86 1349.55 151.15 1314.26 202.3 1278.97 151.15 1227.82 115.86 1278.97 80.57 1314.26 29.42" fill="url(#gradient_3)">
|
||||
<animate attributeName="points" dur="45s" repeatCount="indefinite"
|
||||
values="
|
||||
1314.26 29.42 1349.55 80.57 1400.7 115.86 1349.55 151.15 1314.26 202.3 1278.97 151.15 1227.82 115.86 1278.97 80.57 1314.26 29.42;
|
||||
1293.88 103.21 1372.04 104.76 1373.58 182.91 1372.04 261.07 1293.88 262.62 1215.72 261.07 1214.18 182.91 1215.72 104.76 1293.88 103.21;
|
||||
1238.95 152.19 1306.99 177.84 1332.64 245.88 1306.99 313.93 1238.95 339.57 1170.91 313.93 1145.26 245.88 1170.91 177.84 1238.95 152.19;
|
||||
1231.12 48.94 1302.76 80.23 1274.34 153.05 1243.05 224.69 1170.23 196.26 1098.59 164.98 1127.02 92.16 1158.3 20.51 1231.12 48.94;
|
||||
1314.26 29.42 1349.55 80.57 1400.7 115.86 1349.55 151.15 1314.26 202.3 1278.97 151.15 1227.82 115.86 1278.97 80.57 1314.26 29.42"
|
||||
calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95;.445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</polygon>
|
||||
<path id="shape_2" d="M262.66 299.63c.66 31.1-22.32 61.4-54.7 85.85C175.74 410 134.35 428.59 107.1 415.87C79.85 403.15 66.59 359 71.82 326.48c5.14-32.79 28.63-54.1 55.14-72.32c26.75-18.31 56.37-33.59 83.53-25.49C237.56 236.94 262 268.53 262.66 299.63Z" fill="url(#gradient_1)">
|
||||
<animate attributeName="d" dur="30s" repeatCount="indefinite"
|
||||
values="
|
||||
M262.66 299.63c.66 31.1-22.32 61.4-54.7 85.85C175.74 410 134.35 428.59 107.1 415.87C79.85 403.15 66.59 359 71.82 326.48c5.14-32.79 28.63-54.1 55.14-72.32c26.75-18.31 56.37-33.59 83.53-25.49C237.56 236.94 262 268.53 262.66 299.63Z;
|
||||
M238.16 203.32c18.77 25.63 7 75.79-17.68 107.91c-24.68 32.12-62.25 46.19-92 41.5c-29.59-4.51-51.6-27.61-67.12-54.49c-15.52-26.71-24.54-57.38-13.71-78.5c11-21.11 42-32.84 82.28-38.07C170 176.44 219.22 177.52 238.16 203.32Z;
|
||||
M294.9 176.2c19.88 37.27 33.59 75 20.55 95.26c-13.04 20.26-52.64 22.73-93.42 23.4c-40.78.67-82.73-.5-93.92-19.72c-11.37-19.22 8.18-56.32 29.08-94.26c21.05-37.77 43.62-76.21 67.68-77.21C249.1 102.67 275 139.1 294.9 176.2Z;
|
||||
M262.66 299.63c.66 31.1-22.32 61.4-54.7 85.85C175.74 410 134.35 428.59 107.1 415.87C79.85 403.15 66.59 359 71.82 326.48c5.14-32.79 28.63-54.1 55.14-72.32c26.75-18.31 56.37-33.59 83.53-25.49C237.56 236.94 262 268.53 262.66 299.63Z"
|
||||
calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</path>
|
||||
<line id="line_1" x1="335.3" y1="106.6" x2="208.7" y2="233.2" fill="none" stroke="#CF85F8" opacity="0.1" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="10s" values="0 0;10 -10;0 0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</line>
|
||||
<line id="line_2" x1="335.3" y1="121.31" x2="208.7" y2="247.91" fill="none" stroke="#CF85F8" opacity="0.1" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="10s" begin="1s" values="0 0;10 -10;0 0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</line>
|
||||
<line id="line_3" x1="335.3" y1="136.02" x2="208.7" y2="262.62" fill="none" stroke="#CF85F8" opacity="0.1" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="10s" begin="2s" values="0 0;10 -10;0 0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</line>
|
||||
<line id="line_4" x1="335.3" y1="150.73" x2="208.7" y2="277.33" fill="none" stroke="#CF85F8" opacity="0.1" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="10s" begin="3s" values="0 0;10 -10;0 0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
</line>
|
||||
<g id="circles" style="transform-box: fill-box;">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="15s" values="0;15;0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="15s" values="0 0;5 15;0 0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95" additive="sum"/>
|
||||
<circle cx="73.33" cy="56.62" r="4.36" fill="url(#gradient_2)"/>
|
||||
<circle cx="92.05" cy="56.62" r="4.36" fill="url(#gradient_2-2)"/>
|
||||
<circle cx="110.77" cy="56.62" r="4.36" fill="url(#gradient_2-3)"/>
|
||||
<circle cx="73.33" cy="75.34" r="4.36" fill="url(#gradient_2-4)"/>
|
||||
<circle cx="92.05" cy="75.34" r="4.36" fill="url(#gradient_2-5)"/>
|
||||
<circle cx="110.77" cy="75.34" r="4.36" fill="url(#gradient_2-6)"/>
|
||||
<circle cx="73.33" cy="94.05" r="4.36" fill="url(#gradient_2-7)"/>
|
||||
<circle cx="92.05" cy="94.05" r="4.36" fill="url(#gradient_2-8)"/>
|
||||
<circle cx="110.77" cy="94.05" r="4.36" fill="url(#gradient_2-9)"/>
|
||||
</g>
|
||||
<g id="squares" style="transform-box: fill-box;" transform-origin="right bottom">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="15s" values="0;-2;0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95"/>
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate" dur="15s" values="0;-20;0" repeatCount="indefinite" calcMode="spline" keySplines=".445 .05 .55 .95;.445 .05 .55 .95" additive="sum"/>
|
||||
<rect id="square_1" x="1242.56" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_2" x="1266.49" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.1s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_3" x="1290.41" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.2s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_4" x="1314.33" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.3s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_5" x="1338.26" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.4s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_6" x="1362.18" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.5s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_7" x="1386.1" y="352.31" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.6s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_8" x="1242.56" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.7s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_9" x="1266.49" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.8s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_10" x="1290.41" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="0.9s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_11" x="1314.33" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_12" x="1338.26" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.1s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_13" x="1362.18" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.2s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_14" x="1386.1" y="375.01" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.3s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_15" x="1242.56" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.4s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_16" x="1266.49" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.5s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_17" x="1290.41" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.6s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_18" x="1314.33" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.7s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_19" x="1338.26" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.8s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_20" x="1362.18" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="1.9s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
<rect id="square_21" x="1386.1" y="397.7" width="7" height="7" fill="#D5FE5F">
|
||||
<animate attributeName="opacity" dur="5s" begin="2s" repeatCount="indefinite" values="1;0;1;1;1"/>
|
||||
</rect>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 679 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,441 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<title>Theme Alan New</title>
|
||||
<link type="text/css" rel="stylesheet" href="https://apps.odoo.com/web/assets/15380454-60c4580/1/web.assets_common.min.css" data-asset-bundle="web.assets_common" data-asset-version="60c4580"/>
|
||||
<link type="text/css" rel="stylesheet" href="https://apps.odoo.com/web/assets/15380466-e7e0d1a/1/web.assets_frontend.min.css" data-asset-bundle="web.assets_frontend" data-asset-version="e7e0d1a"/>
|
||||
<style>
|
||||
html, body {
|
||||
overflow: inherit;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container position-relative py-3">
|
||||
<div class="position-absolute d-none d-lg-block" style="background-color:#F7FFDF; width:100vw; height:100%; margin-left:calc((1080px - 100vw) / 2); margin-top:-30px">
|
||||
<img src="home-effect-1.svg" title="" alt="">
|
||||
</div>
|
||||
<!-- 1st panel start -->
|
||||
<div class="my-5 position-relative">
|
||||
<div>
|
||||
<img class="w-100" src="section-1-header.png" title="" alt="">
|
||||
</div>
|
||||
<div style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<div class="text-center p-4">
|
||||
<img class="w-100" src="preview.png">
|
||||
</div>
|
||||
<div class="text-center py-4">
|
||||
<h1 class="text-white fw-bold m-0 p-0">Why Choose Alan</h1>
|
||||
<img src="heading-bg.svg">
|
||||
</div>
|
||||
<div class="text-center p-3">
|
||||
<img src="why-choose.png">
|
||||
</div>
|
||||
<div style="padding: 40px 5% 0;">
|
||||
<div class="p-3" style="background-color: #D5FE5F;border-radius: 15px;">
|
||||
<h3 class="m-0 text-center" style="color: #000;">Time to unleash <b>Theme ALAN's</b> design powers!</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">The Most Powerful Features</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">You don't require the technical knowledge as you can create your web pages in a few clicks only.</p>
|
||||
<img src="section-2.png">
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Powerful Alan Frame Builder</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Let's bring the next level of creativity to your e-Commerce using Alan frame builder. Frame builder gives you the ability to create a customized grid view in which you can put all your dynamic and static snippets. Frame builder is activated by default in all Mega-menu, Dynamic and static snippets. Store your frame creativity so you can use it later on.</p>
|
||||
<img class="w-100" src="section-2-flow.png">
|
||||
<div class="my-4 overflow-hidden" style="border-radius: 20px;">
|
||||
<img class="w-100" src="frm.png">
|
||||
</div>
|
||||
<img class="w-100" src="section-3-flow.png">
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="section-4-flow.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Powerful Mega Menu</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Alan comes with the most advanced mega menu integrated with a frame builder by which creativity never ends.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="mega-menu.png">
|
||||
</div>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="mega-menu-featurs.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Powerful Product Card</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Alan comes with a stunning product card in which users can see features like Product Labels, Images Swatches, Stock Availability, Quick View, Offer Timers, Product Discounts and Product Ratings with different awesome styles.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="product-card.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">B2B Mode</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">B2B mode gives you the ability to hide product price and add to cart from the guest user in just one click.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="b2b.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Dynamic Hotspot</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Dynamic Image Hotspot allows you to show the hotspot on the images shown on your Odoo Website. These hotspots can be linked with the URL hence it offers an interactive way of marketing.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="hotspot.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Advance Shop Filter</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="shop-filter.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Advance Clear Filter</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">The Clear Advanced Filter gives you super customer experience for filtering products quickly and efficiently.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="clear-filter.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Advance Shop Page Design</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Alan comes with 6 stunning shop design which gives different look and feel to your website.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="shop-pages.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="tabs.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="sticky-card.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="offer-timer.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="product-info.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="user-guides.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="brand.png">
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Alternative / Accessory Products</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Show the attractive alternative and accessory products slider on product page.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="alt-acc.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="login.png">
|
||||
</div>
|
||||
<div class="col-md-6 py-3">
|
||||
<img class="w-100" src="snippet.png">
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">11 Header Options</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Alan comes with 11 different types of header which make different looks and feels to your website.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="header-op.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">13 Footer Options</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Alan comes with 13 different types of footer which make different looks and feels to your website.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="footer-op.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Multi website Compatible</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Allow to create mutliple websites.</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="websites.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Fully Mobile Responsive</h1>
|
||||
</div>
|
||||
<div class="p-5" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="responsive.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Product Sales Count</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">show how many units of a product were sold last month with our 'Last Month Sale Count' feature</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="sales-count.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Buy more Save more</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Show the amazing discounts on buying bulk quantity of product to the end users</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="save-more.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Frequently Asked Questions</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Display quick answers to commonly asked questions in FAQs tab</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="faq.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Colour Variant Popup</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<p class="text-white lead fw-normal">Display our color variant popup for color comparison, allowing you to view all color options instantly for quick and easy decision-making</p>
|
||||
<div class="pt-4">
|
||||
<img class="w-100" src="variant-popup.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="my-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -210px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Why Choose Theme Alan?</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<div class="nav bg-transparent flex-row nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||
<a style="border-radius:0; padding-bottom:2px !important" class="nav-link p-0 border-bottom col active" id="v-al-why-01" data-toggle="pill" href="#v-al-why-01in" role="tab" aria-controls="v-al-why-01in" aria-selected="true">
|
||||
<div class="align-items-center px-2 py-3 justify-content-center" style="background-color: #000;">
|
||||
<div class="pl-2 pr-3 position-relative">
|
||||
<h5 class="h6 d-flex align-items-center m-0 text-center justify-content-center" style="color:#fff">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#fff" class="bi bi-question-circle-fill mr-2" viewBox="0 0 16 16">
|
||||
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.496 6.033h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286a.237.237 0 0 0 .241.247zm2.325 6.443c.61 0 1.029-.394 1.029-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94 0 .533.425.927 1.01.927z" />
|
||||
</svg>
|
||||
Why Choose us?</h5>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a style="border-radius:0; padding-bottom:2px !important" class="nav-link p-0 border-bottom col" id="v-al-why-03" data-toggle="pill" href="#v-al-why-03in" role="tab" aria-controls="v-al-why-03in" aria-selected="false">
|
||||
<div class="align-items-center px-2 py-3 justify-content-center" style="background-color: #000;">
|
||||
<div class="pl-2 pr-3 position-relative">
|
||||
<h5 class="h6 d-flex align-items-center m-0 text-center justify-content-center" style="color:#fff">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="1=20" fill="#fff" class="bi bi-ui-checks-grid mr-2" viewBox="0 0 16 16">
|
||||
<path d="M2 10h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1zm9-9h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zm0 9a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3zm0-10a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2h-3zM2 9a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H2zm7 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3zM0 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm5.354.854a.5.5 0 1 0-.708-.708L3 3.793l-.646-.647a.5.5 0 1 0-.708.708l1 1a.5.5 0 0 0 .708 0l2-2z" />
|
||||
</svg>
|
||||
FAQs</h5>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="tab-content p-md-4 p-2" style="" id="v-pills-tabContent" style="background-color: #000;">
|
||||
<div class="tab-pane fade active show" id="v-al-why-01in" role="tabpanel" aria-labelledby="v-al-why-01">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<h3 class="font-weight-bold h4 mb-4 text-white">Why Choose Theme Alan?</h3>
|
||||
<p class="text-white">Alan is one of the most powerful, amazing, and flexible theme in Odoo store. Alan is the professional and multipurpose bootstrap base theme for any business and website. The code is very well organized and modular so you can build any layout with your imagination.</p>
|
||||
<p class="text-white">Some salient features of Alan are flexible design, advanced mega menu, drag and drop snippets, HTML builder block, amazing header footer options, beautiful shop details page, shop full-width options with the list and grid view, optimized responsive behavior, infinite product loader, Product Quick Overview.</p>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<img src="faq-pre.png" class="img-fluid" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="v-al-why-03in" role="tabpanel" aria-labelledby="v-al-why-03">
|
||||
<div class="accordion s_faq bg-transparent" id="as_al_faq">
|
||||
<div class="card shadow-light mb-2 bg-transparent">
|
||||
<div class="card-header p-3" id="as_faq_1" style="border-radius: 6px;margin-bottom: 10px;border: 1px solid rgba(255, 255, 255, 0.3);cursor: pointer;">
|
||||
<span data-toggle="collapse" data-target="#as_faq__1" aria-expanded="false" aria-controls="as_faq__1" style="position: relative;display: inline-block;width: 100%;" class="font-weight-bold text-white collapsed text-decoration-none">
|
||||
<img src="ellipse-icon.svg" width="12px;" height="12px;" class="mr-2"> Is this theme compatible with Odoo Enterprise as well as Community and odoo.sh?
|
||||
</span>
|
||||
</div>
|
||||
<div id="as_faq__1" class="collapse show" aria-labelledby="as_faq_1" data-parent="#as_al_faq" style="border-top: 0px solid #dee2e640!important;">
|
||||
<div class="card-body text-white" style="background-color:transparent !important;">
|
||||
Yes! The theme perfectly works fine with Odoo Enterprise and odoo.sh version.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow-light mb-2 bg-transparent">
|
||||
<div class="card-header p-3" id="as_faq_2" style="border-radius: 6px;margin-bottom: 10px;border: 1px solid rgba(255, 255, 255, 0.3);cursor: pointer;">
|
||||
<span data-toggle="collapse" data-target="#as_faq__2" aria-expanded="false" aria-controls="as_faq__2" style="position: relative;display: inline-block;width: 100%;" class="font-weight-bold text-white collapsed text-decoration-none">
|
||||
<img src="ellipse-icon.svg" width="12px;" height="12px;" class="mr-2"> Is this theme One-click installable?
|
||||
</span>
|
||||
</div>
|
||||
<div id="as_faq__2" class="collapse" aria-labelledby="as_faq_2" data-parent="#as_al_faq" style="border-top: 0px solid #dee2e640!important;">
|
||||
<div class="card-body text-white" style="background-color:transparent !important;">
|
||||
<p>Yes! You can install this theme in just one-click. Theme installation is very simple.</p>
|
||||
<p>Login into your website and just install the Atharva Theme General module and Go to Website --> Configuration --> Settings. Select the Website and then click on the "Choose a Theme" button. You will be redirected to the available themes. and from there you can use "Theme Alan".</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow-light mb-2 bg-transparent">
|
||||
<div class="card-header p-3" id="as_faq_3" style="border-radius: 6px;margin-bottom: 10px;border: 1px solid rgba(255, 255, 255, 0.3);cursor: pointer;">
|
||||
<span data-toggle="collapse" data-target="#as_faq__3" aria-expanded="false" aria-controls="as_faq__3" style="position: relative;display: inline-block;width: 100%;" class="font-weight-bold text-white collapsed text-decoration-none">
|
||||
<img src="ellipse-icon.svg" width="12px;" height="12px;" class="mr-2"> Do I resell or distribute the theme?
|
||||
</span>
|
||||
</div>
|
||||
<div id="as_faq__3" class="collapse" aria-labelledby="as_faq_3" data-parent="#as_al_faq" style="border-top: 0px solid #dee2e640!important;">
|
||||
<div class="card-body text-white" style="background-color:transparent !important;">
|
||||
No! You can not resell or distribute this theme. You can use this theme only for your website.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow-light mb-2 bg-transparent">
|
||||
<div class="card-header p-3" id="as_faq_4" style="border-radius: 6px;margin-bottom: 10px;border: 1px solid rgba(255, 255, 255, 0.3);cursor: pointer;">
|
||||
<span data-toggle="collapse" data-target="#as_faq__4" aria-expanded="false" aria-controls="as_faq__4" style="position: relative;display: inline-block;width: 100%;" class="font-weight-bold text-white collapsed text-decoration-none">
|
||||
<img src="ellipse-icon.svg" width="12px;" height="12px;" class="mr-2"> Do I request for extra customization in theme after purchase?
|
||||
</span>
|
||||
</div>
|
||||
<div id="as_faq__4" class="collapse" aria-labelledby="as_faq_4" data-parent="#as_al_faq" style="border-top: 0px solid #dee2e640!important;">
|
||||
<div class="card-body text-white" style="background-color:transparent !important;">
|
||||
Yes! We would love to provide you the best services possible. You can provide all customization requests on <a href="mailto:support@atharvasystem.com"></a> email and our technical team will get back to.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow-light mb-2 bg-transparent">
|
||||
<div class="card-header p-3" id="as_faq_5" style="border-radius: 6px;margin-bottom: 10px;border: 1px solid rgba(255, 255, 255, 0.3);cursor: pointer;">
|
||||
<span data-toggle="collapse" data-target="#as_faq__5" aria-expanded="false" aria-controls="as_faq__5" style="position: relative;display: inline-block;width: 100%;" class="font-weight-bold text-white collapsed text-decoration-none">
|
||||
<img src="ellipse-icon.svg" width="12px;" height="12px;" class="mr-2"> Do I get free updates and upgrades?
|
||||
</span>
|
||||
</div>
|
||||
<div id="as_faq__5" class="collapse" aria-labelledby="as_faq_5" data-parent="#as_al_faq" style="border-top: 0px solid #dee2e640!important;">
|
||||
<div class="card-body text-white" style="background-color:transparent !important;">
|
||||
Yes, we provide free upgrades to our theme for the same Odoo Version. You can always download the latest version of the theme, replace your old theme module with the latest theme module and update the Theme. <u>Starting version 13, every version of Theme Alan will be sold separately</u>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-4">
|
||||
<img src="header-bg.png">
|
||||
<div class="position-relative p-4" style="margin-top: -194px;color: #fff;max-width: 670px;">
|
||||
<h1 class="text-white display-2 fw-bold m-0" style="font-weight: 600;">Release Note</h1>
|
||||
</div>
|
||||
<div class="p-4" style="background-color: #000;padding-bottom: 50px;border-radius: 0 0 30px 30px;">
|
||||
<h4 class="pb-2 text-white">
|
||||
<span class="pr-2">Version 1.0</span>-<span class="pl-2 small font-weight-normal">01 JAN 2024</span>
|
||||
</h4>
|
||||
<ul class="list-unstyled">
|
||||
<li class="d-flex align-items-start mb-2 text-white">V17 Initial Release</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="py-4 px-md-5 p-3 my-4" style="background-color: #000;border-radius: 20px;">
|
||||
<div class="row">
|
||||
<div class="col-12 p-4 deep-2 text-center overflow-hidden" style="border-radius:10px">
|
||||
<h2 class="text-white h1">Technical Help, Queries & Support</h2>
|
||||
<p class="text-white">Please feel free to contact for any suggestion, issue & queries</p>
|
||||
<div class="d-flex mt-4 justify-content-center">
|
||||
<a href="mailto:support@atharvasystem.com?subject=Free Demo of Theme Alan 17" class="mr-4" style="background-color: #000;color: #fff;border: 1px solid #fff;border-radius: 10px;padding: 10px 25px;text-transform: uppercase;font-size: 15px;font-weight: 500;text-decoration: none;">
|
||||
<img src="mail-icon.svg" class="mr-2" /> Support
|
||||
</a>
|
||||
<a href="skype:live:support_53719?chat" style="background-color: #000;color: #fff;border: 1px solid #fff;border-radius: 10px;padding: 10px 25px;text-transform: uppercase;font-size: 15px;font-weight: 500;text-decoration: none;">
|
||||
<img src="skype-logo.svg" class="mr-2" /> Skype
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 1st panel end -->
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 88 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="23" height="20" viewBox="0 0 23 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.76025 19.1667C1.30192 19.1667 0.900879 18.9948 0.557129 18.6511C0.213379 18.3073 0.0415039 17.9063 0.0415039 17.4479V2.55209C0.0415039 2.09376 0.213379 1.69272 0.557129 1.34897C0.900879 1.00522 1.30192 0.833344 1.76025 0.833344H21.2394C21.6978 0.833344 22.0988 1.00522 22.4425 1.34897C22.7863 1.69272 22.9582 2.09376 22.9582 2.55209V17.4479C22.9582 17.9063 22.7863 18.3073 22.4425 18.6511C22.0988 18.9948 21.6978 19.1667 21.2394 19.1667H1.76025ZM11.4998 10.5156L1.76025 4.12761V17.4479H21.2394V4.12761L11.4998 10.5156ZM11.4998 8.79689L21.1248 2.55209H1.90348L11.4998 8.79689ZM1.76025 4.12761V2.55209V17.4479V4.12761Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 748 B |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 386 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 760 KiB |
|
After Width: | Height: | Size: 275 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 457 KiB |
|
After Width: | Height: | Size: 171 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 159 KiB |
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 338 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.5898 10.7109C16.7031 10.1641 16.7734 9.58203 16.7734 9C16.7734 4.56641 13.1836 0.980469 8.75391 0.980469C8.17188 0.980469 7.59375 1.04688 7.04297 1.16406C6.30078 0.589844 5.37891 0.25 4.375 0.25C1.96094 0.25 0 2.21094 0 4.625C0 5.62891 0.339844 6.55078 0.910156 7.28906C0.796875 7.83594 0.726562 8.41797 0.726562 9C0.726562 13.4336 4.31641 17.0195 8.74609 17.0195C9.32812 17.0195 9.90625 16.9531 10.457 16.8359C11.1992 17.4062 12.1211 17.7461 13.1211 17.7461C15.5352 17.7461 17.4961 15.7852 17.4961 13.3711C17.5 12.3711 17.1602 11.4492 16.5898 10.7109ZM8.98828 14.2852C6.42578 14.2852 4.28125 13.1445 4.28125 11.7461C4.28125 11.1211 4.63281 10.5508 5.43359 10.5508C6.65234 10.5508 6.76562 12.3047 8.875 12.3047C9.87891 12.3047 10.5273 11.8594 10.5273 11.2773C10.5273 10.5469 9.90234 10.4336 8.88672 10.1836C6.44531 9.58203 4.28516 9.32422 4.28516 6.77734C4.28516 4.46484 6.57422 3.60938 8.54688 3.60938C10.6992 3.60938 12.875 4.46484 12.875 5.77344C12.875 6.43359 12.4297 7.01562 11.6914 7.01562C10.5859 7.01562 10.5508 5.70703 8.76172 5.70703C7.75781 5.70703 7.12109 5.98047 7.12109 6.58594C7.12109 7.35938 7.93359 7.4375 9.82031 7.875C11.4375 8.23828 13.3633 8.92188 13.3633 10.9062C13.3633 13.2148 11.1328 14.2852 8.98828 14.2852Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 152 KiB |
|
After Width: | Height: | Size: 288 KiB |
|
After Width: | Height: | Size: 290 KiB |
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 279 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.12" d="M28.1997 21.0268C26.0667 20.0538 23.3127 19.1268 22.0997 20.3598C21.1727 21.2998 21.7267 22.9068 21.5397 25.3198C21.4727 26.1528 21.3197 27.1398 20.9727 28.2468C20.9727 28.2468 26.3997 26.2738 28.2527 21.2538L28.1997 21.0268Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M9.84736 3.91992C11.2744 5.39292 15.0874 10.4399 11.9944 12.7599C10.6414 13.7729 6.67436 13.2129 6.36736 14.3529C6.02036 15.6329 8.20036 16.5399 8.94736 18.6399C9.42036 19.9669 8.88736 21.6469 6.40736 25.2669C6.40736 25.2669 2.12036 20.9399 2.66736 13.8939C3.21436 6.84792 9.84736 3.91992 9.84736 3.91992Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M28.5922 8.0002L27.2522 8.9202C26.1192 9.7002 24.6592 9.8472 23.3922 9.3002L20.0652 7.8602C19.1652 7.4732 18.1322 7.5732 17.3252 8.1272L21.5452 12.8602L18.5382 14.9332C17.9782 15.3202 17.2852 15.4402 16.6312 15.2662C16.0112 15.1062 15.3512 15.2192 14.8242 15.5792L15.7172 16.8722L15.9902 17.2652C16.8232 18.4782 18.4832 18.7852 19.6972 17.9452L30.4502 10.5322C31.2102 10.0122 31.3632 8.9392 30.7572 8.2192C30.2442 7.6262 29.2372 7.5522 28.5902 7.9992L28.5922 8.0002Z" fill="#fff"/>
|
||||
<path d="M31.2531 7.8C30.5461 6.967 29.1601 6.813 28.2201 7.46L27.4731 7.973C24.8461 4.226 20.6131 2 16.0001 2C8.2801 2 2.0001 8.28 2.0001 16C2.0001 18.273 2.5531 20.413 3.5201 22.313C-0.0468957 27.653 1.0871 28.813 1.4671 29.2C1.7801 29.513 2.2141 29.653 2.7271 29.653C4.0601 29.653 5.9741 28.7 7.9341 27.426C10.2211 29.039 13.0011 29.999 16.0011 29.999C23.7211 29.999 30.0011 23.719 30.0011 15.999C30.0011 14.652 29.8011 13.326 29.4211 12.046L30.8211 11.079C31.3411 10.719 31.6811 10.159 31.7681 9.539C31.8551 8.912 31.6611 8.279 31.2551 7.799L31.2531 7.8ZM9.9201 4.893C11.1731 6.373 12.7071 8.82 12.5601 10.6C12.5071 11.3 12.2001 11.847 11.6331 12.273C11.1261 12.646 9.9661 12.773 8.9461 12.88C7.3931 13.047 6.0531 13.187 5.7861 14.193C5.5191 15.193 6.2331 15.973 6.9191 16.72C7.4591 17.307 8.0721 17.973 8.3791 18.84C8.7061 19.753 8.4721 21.04 6.3791 24.22C4.4861 22.007 3.3321 19.133 3.3321 16C3.3321 11.22 5.9991 7.053 9.9191 4.893H9.9201ZM2.4131 28.253C2.2201 28.06 2.2201 26.8 4.2661 23.606C4.9791 24.699 5.8391 25.686 6.8191 26.546C4.2461 28.159 2.7321 28.573 2.4121 28.253H2.4131ZM21.9401 27.18C22.0671 26.58 22.1601 25.973 22.2071 25.373C22.2741 24.506 22.2541 23.753 22.2271 23.086C22.1871 21.873 22.1871 21.219 22.5741 20.826C22.9671 20.426 24.1271 19.999 27.4271 21.419C26.2601 23.872 24.3341 25.9 21.9401 27.18ZM28.6671 16C28.6671 17.473 28.4001 18.88 27.9401 20.193C24.8271 18.86 22.7531 18.753 21.6271 19.893C20.8201 20.713 20.8541 21.833 20.8941 23.126C20.9141 23.759 20.9341 24.473 20.8741 25.266C20.8071 26.146 20.6411 26.999 20.3871 27.866C19.0201 28.373 17.5471 28.666 16.0001 28.666C13.4671 28.666 11.1071 27.913 9.1201 26.619C11.1731 25.172 13.1671 23.512 14.5271 22.332L14.5341 24.599H15.8671L15.8541 19.926L11.1871 19.939V21.272L13.7201 21.265C11.4931 23.218 9.5671 24.705 7.9671 25.792C7.7071 25.579 7.4671 25.352 7.2271 25.125C9.4671 21.772 10.0671 19.992 9.5141 18.432C9.1211 17.332 8.3871 16.539 7.8011 15.905C7.2081 15.265 6.8541 14.852 6.9341 14.532C7.1141 14.292 8.3341 14.165 9.0671 14.085C10.3001 13.952 11.5801 13.818 12.3541 13.245C13.2071 12.612 13.6811 11.752 13.7611 10.705C13.9341 8.525 12.3281 5.945 11.0341 4.358C12.5611 3.691 14.2411 3.331 16.0011 3.331C20.1481 3.331 23.9611 5.318 26.3411 8.678C25.4941 9.058 24.5281 9.071 23.6611 8.698L20.3281 7.258C19.2151 6.778 17.9551 6.898 16.9551 7.585L16.3421 8.005L20.5621 12.738L18.1691 14.391C17.7691 14.664 17.2691 14.751 16.8021 14.631C15.9951 14.418 15.1421 14.571 14.4621 15.038L13.9221 15.411L15.4551 17.638C15.9621 18.371 16.7151 18.858 17.5881 19.018C17.7881 19.058 17.9951 19.071 18.1951 19.071C18.8621 19.071 19.5151 18.871 20.0751 18.484L28.2681 12.837C28.5281 13.87 28.6681 14.924 28.6681 15.997L28.6671 16ZM30.4671 9.367C30.4341 9.627 30.2941 9.854 30.0801 10L19.3271 17.413C18.8871 17.72 18.3471 17.833 17.8201 17.733C17.2931 17.633 16.8331 17.34 16.5271 16.893L15.8201 15.866C16.0331 15.833 16.2531 15.839 16.4601 15.899C17.3001 16.119 18.1931 15.966 18.9071 15.472L22.5271 12.979L18.4001 8.346C18.8601 8.226 19.3531 8.266 19.8071 8.459L23.1401 9.899C24.6201 10.539 26.3001 10.379 27.6331 9.459L28.9731 8.539C29.3601 8.272 29.9861 8.319 30.2661 8.646C30.4261 8.853 30.4991 9.106 30.4661 9.366L30.4671 9.367Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,19 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1577_1066)">
|
||||
<path opacity="0.12" d="M17.332 30.667H14.665C13.932 30.667 13.332 30.067 13.332 29.334C13.332 28.601 13.932 28.001 14.665 28.001H17.332C18.065 28.001 18.665 28.601 18.665 29.334C18.665 30.067 18.065 30.667 17.332 30.667Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M28 17.667V13.667C28 12.934 28.6 12.334 29.333 12.334C30.44 12.334 31.333 13.227 31.333 14.334V17.001C31.333 18.108 30.44 19.001 29.333 19.001C28.6 19.001 28 18.4 28 17.667Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M4.00097 18V14C4.00097 13.267 3.40097 12.667 2.66797 12.667C1.56097 12.667 0.667969 13.56 0.667969 14.667V17.334C0.667969 18.441 1.56097 19.334 2.66797 19.334C3.40097 19.334 4.00097 18.733 4.00097 18Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M14.2329 6.33984C13.9129 5.71984 13.6659 5.04684 13.5129 4.33984C10.8929 5.06684 8.73994 6.89984 7.58594 9.30684C7.72594 9.31984 7.85894 9.33384 7.99894 9.33384C10.5189 9.33384 12.7659 8.16684 14.2319 6.34084L14.2329 6.33984Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M15.9997 4C15.8397 4 15.6867 4.013 15.5267 4.027C14.9267 4.06 14.3397 4.14 13.7737 4.28C13.6867 4.3 13.6007 4.327 13.5137 4.347C13.5407 4.48 13.5737 4.614 13.6067 4.747C13.7597 5.307 13.9667 5.84 14.2337 6.347C15.5667 8.907 18.2407 10.667 21.3337 10.667C22.5337 10.667 23.6607 10.394 24.6807 9.927C23.3207 6.46 19.9527 4 15.9997 4Z" fill="#fff"/>
|
||||
<path d="M14 13.667C14 14.403 13.403 15 12.667 15C11.931 15 11.334 14.403 11.334 13.667C11.334 12.931 11.931 12.334 12.667 12.334C13.403 12.334 14 12.931 14 13.667Z" fill="#fff"/>
|
||||
<path d="M20.668 13.667C20.668 14.403 20.071 15 19.335 15C18.599 15 18.002 14.403 18.002 13.667C18.002 12.931 18.599 12.334 19.335 12.334C20.071 12.334 20.668 12.931 20.668 13.667Z" fill="#fff"/>
|
||||
<path d="M19.8062 20.1129L18.8662 19.1729C17.2862 20.7529 14.7192 20.7529 13.1392 19.1729L12.1992 20.1129C13.2462 21.1599 14.6262 21.6859 16.0062 21.6859C17.3792 21.6859 18.7532 21.1659 19.8062 20.1129Z" fill="#fff"/>
|
||||
<path d="M29.332 11.667C29.072 11.667 28.832 11.72 28.605 11.807C27.972 5.37398 22.558 0.333984 15.998 0.333984C9.32505 0.333984 3.85105 5.55398 3.37805 12.141C3.15805 12.054 2.91805 12.001 2.66505 12.001C1.19205 12.001 -0.00195312 13.194 -0.00195312 14.668V17.335C-0.00195312 18.808 1.19105 20.002 2.66505 20.002C3.76505 20.002 4.66505 19.102 4.66505 18.002V13.069C4.66505 6.78198 9.75205 1.66898 15.998 1.66898C22.244 1.66898 27.331 6.78198 27.331 13.069V20.002C27.331 24.602 23.731 28.362 19.198 28.642C18.918 27.882 18.191 27.335 17.331 27.335H14.664C13.564 27.335 12.664 28.235 12.664 29.335C12.664 30.435 13.564 31.335 14.664 31.335H17.331C18.211 31.335 18.951 30.762 19.218 29.975C24.471 29.682 28.665 25.328 28.665 20.002V19.549C28.872 19.622 29.098 19.669 29.332 19.669C30.805 19.669 31.999 18.476 31.999 17.002V14.335C31.999 12.862 30.806 11.668 29.332 11.668V11.667ZM3.33205 18C3.33205 18.367 3.03205 18.667 2.66505 18.667C1.93205 18.667 1.33205 18.067 1.33205 17.334V14.667C1.33205 13.934 1.93205 13.334 2.66505 13.334C3.03205 13.334 3.33205 13.634 3.33205 14.001V18ZM17.332 30H14.665C14.298 30 13.998 29.7 13.998 29.333C13.998 28.966 14.298 28.666 14.665 28.666H17.332C17.699 28.666 17.999 28.966 17.999 29.333C17.999 29.7 17.699 30 17.332 30ZM30.666 17C30.666 17.733 30.066 18.333 29.333 18.333C28.966 18.333 28.666 18.033 28.666 17.666V13.666C28.666 13.299 28.966 12.999 29.333 12.999C30.066 12.999 30.666 13.599 30.666 14.332V17Z" fill="#fff"/>
|
||||
<path d="M17.333 26C22.113 26 26 22.113 26 17.333V13.333C26 7.82001 21.513 3.33301 16 3.33301C10.487 3.33301 6 7.82001 6 13.333V17.333C6 22.113 9.887 26 14.667 26H17.333ZM23.687 9.34001C22.72 9.77301 21.707 10 20.667 10C17.92 10 15.427 8.48001 14.16 6.03301C13.98 5.69301 13.847 5.34001 13.727 4.98001C14.447 4.78001 15.214 4.66701 16 4.66701C19.34 4.66701 22.24 6.56701 23.687 9.34001ZM12.467 5.42701C12.607 5.84001 12.767 6.25401 12.974 6.64701C13.054 6.80701 13.147 6.96001 13.241 7.11401C11.941 8.44701 10.201 9.22701 8.328 9.30701C9.235 7.60001 10.695 6.22701 12.468 5.42701H12.467ZM7.333 17.333V13.333C7.333 12.4 7.486 11.5 7.76 10.653C7.84 10.66 7.92 10.666 8 10.666C10.273 10.666 12.413 9.78601 14.02 8.21901C15.647 10.172 18.06 11.332 20.667 11.332C21.887 11.332 23.08 11.072 24.207 10.565C24.5 11.432 24.667 12.365 24.667 13.332V17.332C24.667 21.379 21.38 24.665 17.334 24.665H14.667C10.62 24.665 7.334 21.378 7.334 17.332L7.333 17.333Z" fill="#fff"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1577_1066">
|
||||
<rect width="32" height="32" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.12" d="M11.668 19.333C11.668 20.438 10.773 21.333 9.66797 21.333C8.56297 21.333 7.66797 20.438 7.66797 19.333C7.66797 18.228 8.56297 17.333 9.66797 17.333C10.773 17.333 11.668 18.228 11.668 19.333Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M21.333 30.667C18.2 29.88 16 27.067 16 23.834V20.001L21.333 18.001L26.666 20.001V23.834C26.666 27.067 24.466 29.881 21.333 30.667Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M1.33203 8H30.665V12H1.33203V8Z" fill="#fff"/>
|
||||
<path d="M6.3323 21.8868C6.9523 21.8868 7.5323 21.6538 7.9993 21.2538C8.4463 21.6408 9.0263 21.8868 9.6663 21.8868C11.0733 21.8868 12.2193 20.7398 12.2193 19.3338C12.2193 17.9278 11.0723 16.7808 9.6663 16.7808C9.0263 16.7808 8.4463 17.0278 7.9993 17.4138C7.0193 16.5738 5.4463 16.6068 4.5263 17.5268C4.0463 18.0068 3.7793 18.6538 3.7793 19.3338C3.7793 20.0138 4.0463 20.6608 4.5263 21.1408C5.0063 21.6208 5.6533 21.8878 6.3333 21.8878L6.3323 21.8868ZM9.6663 17.8868C10.4593 17.8868 11.1133 18.5338 11.1133 19.3338C11.1133 20.1338 10.4663 20.7808 9.6663 20.7808C8.8663 20.7808 8.2193 20.1338 8.2193 19.3338C8.2193 18.5338 8.8723 17.8868 9.6663 17.8868ZM5.3123 18.3128C5.8523 17.7728 6.7853 17.7658 7.3323 18.2998C7.1923 18.6198 7.1053 18.9668 7.1053 19.3398C7.1053 19.7128 7.1853 20.0598 7.3323 20.3798C6.7853 20.9068 5.8453 20.9068 5.3123 20.3668C5.0393 20.0798 4.8853 19.7198 4.8853 19.3338C4.8853 18.9478 5.0383 18.5858 5.3123 18.3128Z" fill="#fff"/>
|
||||
<path d="M28.001 2H4.00097C2.16097 2 0.667969 3.493 0.667969 5.333V21.333C0.667969 23.173 2.16097 24.666 4.00097 24.666H15.381C15.721 27.853 18.008 30.519 21.168 31.313L21.335 31.353L21.495 31.313C24.662 30.52 26.942 27.853 27.282 24.666H28.002C29.842 24.666 31.335 23.173 31.335 21.333V5.333C31.335 3.493 29.841 2 28.001 2ZM2.00097 8.667H30.001V11.334H2.00097V8.667ZM26.001 23.833C26.001 26.706 24.088 29.206 21.334 29.973C18.581 29.206 16.667 26.706 16.667 23.833V20.46L21.334 18.713L26.001 20.46V23.833ZM30.001 21.333C30.001 22.433 29.101 23.333 28.001 23.333H27.334V19.54L21.334 17.287L15.334 19.54V23.333H4.00097C2.90097 23.333 2.00097 22.433 2.00097 21.333V12.666H30.001V21.333ZM2.00097 7.333V5.333C2.00097 4.233 2.90097 3.333 4.00097 3.333H28.001C29.101 3.333 30.001 4.233 30.001 5.333V7.333H2.00097Z" fill="#fff"/>
|
||||
<path d="M19.0408 23.9529L18.3008 24.6929L20.4478 26.8459L24.3748 22.9189L23.6348 22.1719L20.4478 25.3589L19.0408 23.9529Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.12" d="M15.5 22.667C15.5 26.533 12.366 29.667 8.5 29.667C4.634 29.667 1.5 26.533 1.5 22.667C1.5 18.801 4.634 15.667 8.5 15.667C12.366 15.667 15.5 18.801 15.5 22.667Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M25.832 18.3331V21.4731L28.499 19.9061V16.7661L25.832 18.3331Z" fill="#fff"/>
|
||||
<path opacity="0.12" d="M15.4724 3.29297L26.8324 9.97297L26.8524 14.9L22.8524 17.253L22.8324 12.266L11.5254 5.61297L15.4724 3.29297Z" fill="#fff"/>
|
||||
<path d="M29.5266 6.44012L20.8596 1.34012C19.8196 0.727121 18.5196 0.727121 17.4796 1.34012L8.81258 6.44012C7.79958 7.03312 7.17258 8.14012 7.17258 9.31312V15.1861C3.60558 15.8131 0.892578 18.9261 0.892578 22.6661C0.892578 26.8591 4.30558 30.2731 8.49958 30.2731C11.4066 30.2731 13.9326 28.6331 15.2126 26.2331L17.4726 27.5661C17.9926 27.8731 18.5796 28.0261 19.1656 28.0261C19.7516 28.0261 20.3326 27.8731 20.8586 27.5661L29.5256 22.4661C30.5386 21.8731 31.1656 20.7661 31.1656 19.5931V9.31312C31.1656 8.13312 30.5386 7.03312 29.5256 6.44012H29.5266ZM18.1526 2.48712C18.7796 2.12012 19.5526 2.12012 20.1796 2.48712L28.8466 7.58712C28.9536 7.64712 29.0466 7.73412 29.1396 7.81412L26.8066 9.18712L16.7866 3.29412L18.1526 2.48712ZM12.8396 5.61312L15.4666 4.06612L26.1596 10.3591L26.1726 14.1391C26.1726 14.3721 26.0456 14.5991 25.8456 14.7191L23.5056 16.0921L23.4926 11.8851L12.8396 5.61312ZM11.5266 6.38712L21.5466 12.2801L19.1666 13.6801L9.19358 7.81312C9.28658 7.73312 9.37358 7.64612 9.48658 7.58612L11.5266 6.38712ZM8.49958 29.0601C4.97258 29.0601 2.10658 26.1931 2.10658 22.6671C2.10658 19.1411 4.97358 16.2741 8.49958 16.2741C12.0256 16.2741 14.8926 19.1411 14.8926 22.6671C14.8926 26.1931 12.0256 29.0601 8.49958 29.0601ZM15.7396 25.0001C15.9796 24.2671 16.1066 23.4801 16.1066 22.6671C16.1066 18.4741 12.6936 15.0601 8.49958 15.0601V9.31312C8.49958 9.20012 8.52658 9.09312 8.54658 8.98012L18.4996 14.8331V26.5601C18.3796 26.5201 18.2596 26.4801 18.1526 26.4131L15.7396 25.0001ZM29.8326 19.5931C29.8326 20.3001 29.4526 20.9601 28.8456 21.3131L20.1786 26.4131C20.0656 26.4801 19.9516 26.5201 19.8316 26.5601V14.8331L22.1716 13.4601L22.1786 16.0931C22.1786 16.5801 22.4316 17.0061 22.8516 17.2461C23.0586 17.3661 23.2846 17.4261 23.5116 17.4261C23.7446 17.4261 23.9786 17.3661 24.1846 17.2391L26.5246 15.8661C27.1376 15.5061 27.5116 14.8461 27.5116 14.1331L27.4986 10.3261L29.7856 8.97912C29.8056 9.09212 29.8326 9.19912 29.8326 9.31212V19.5921V19.5931Z" fill="#fff"/>
|
||||
<path d="M28.7064 16.4002C28.4934 16.2802 28.2264 16.2802 28.0134 16.4072L25.8734 17.6672C25.5004 17.8872 25.2734 18.2872 25.2734 18.7202V21.2402C25.2734 21.4872 25.4064 21.7132 25.6204 21.8402C25.7274 21.9002 25.8474 21.9332 25.9604 21.9332C26.0804 21.9332 26.2004 21.9002 26.3134 21.8402L28.4534 20.5802C28.8264 20.3602 29.0534 19.9602 29.0534 19.5272V17.0002C29.0534 16.7532 28.9204 16.5272 28.7064 16.4002ZM27.9464 19.5272C27.9464 19.5672 27.9264 19.6002 27.8934 19.6202L26.3934 20.5002V18.7132C26.3934 18.6732 26.4134 18.6402 26.4464 18.6202L27.9464 17.7402V19.5272Z" fill="#fff"/>
|
||||
<path d="M8.83389 21.4468H6.84689L8.55989 19.7338L7.77289 18.9468L4.71289 21.9998L7.77289 25.0598L8.55989 24.2728L6.83989 22.5528H8.83289C9.99989 22.5528 10.9459 23.4998 10.9459 24.6658V25.2188H12.0589V24.6658C12.0519 22.8858 10.6119 21.4458 8.83189 21.4458L8.83389 21.4468Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,34 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2573)">
|
||||
<path d="M233.756 0.501099H-0.0144043V50.4521H233.756V0.501099Z" fill="white"/>
|
||||
<path d="M233.756 0.501099H-0.0144043V11.4903H233.756V0.501099Z" fill="#9181FF"/>
|
||||
<path d="M134.687 41.2402C134.687 42.4656 133.693 43.4589 132.468 43.4589H121.92C120.695 43.4589 119.701 42.4658 119.701 41.2402V40.6823C119.701 39.457 120.695 38.4637 121.92 38.4637H132.468C133.693 38.4637 134.687 39.4567 134.687 40.6823V41.2402Z" fill="#6D5ED4"/>
|
||||
<path d="M116.371 41.2402C116.371 42.4656 115.378 43.4589 114.152 43.4589H103.605C102.38 43.4589 101.386 42.4658 101.386 41.2402V40.6823C101.386 39.457 102.379 38.4637 103.605 38.4637H114.152C115.377 38.4637 116.371 39.4567 116.371 40.6823V41.2402Z" fill="#6D5ED4"/>
|
||||
<path d="M153.002 41.2402C153.002 42.4656 152.009 43.4589 150.783 43.4589H140.236C139.01 43.4589 138.017 42.4658 138.017 41.2402V40.6823C138.017 39.457 139.01 38.4637 140.236 38.4637H150.783C152.008 38.4637 153.002 39.4567 153.002 40.6823V41.2402Z" fill="#6D5ED4"/>
|
||||
<path d="M171.317 41.2402C171.317 42.4656 170.323 43.4589 169.098 43.4589H158.551C157.326 43.4589 156.332 42.4658 156.332 41.2402V40.6823C156.332 39.457 157.325 38.4637 158.551 38.4637H169.098C170.323 38.4637 171.317 39.4567 171.317 40.6823V41.2402Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.501099H-0.0761719V50.4521H36.9685V0.501099Z" fill="#6D5ED4"/>
|
||||
<path d="M11.3326 23.7675C12.1279 22.52 13.4488 21.8963 15.295 21.8963C17.1406 21.8963 18.4618 22.5203 19.2574 23.7675C20.0527 25.0153 20.4508 26.7403 20.4508 28.9426C20.4508 31.1578 20.0527 32.8955 19.2574 34.1559C18.4615 35.4161 17.1406 36.0464 15.295 36.0464C13.4488 36.0464 12.1279 35.4163 11.3326 34.1559C10.5367 32.8957 10.1392 31.1578 10.1392 28.9426C10.1392 26.7403 10.5367 25.0153 11.3326 23.7675ZM17.6342 26.5653C17.5131 25.9225 17.2713 25.3972 16.9086 24.9899C16.5456 24.5826 16.0077 24.3788 15.295 24.3788C14.5817 24.3788 14.0443 24.5826 13.6813 24.9899C13.3186 25.3975 13.0766 25.9228 12.9557 26.5653C12.8345 27.2083 12.7743 28.0007 12.7743 28.9426C12.7743 29.9103 12.8316 30.7217 12.9462 31.3774C13.0607 32.0331 13.3025 32.5613 13.6718 32.9623C14.0409 33.3632 14.5817 33.5638 15.295 33.5638C16.0077 33.5638 16.5488 33.3632 16.9181 32.9623C17.2871 32.5613 17.5292 32.0331 17.6437 31.3774C17.7583 30.722 17.8156 29.9103 17.8156 28.9426C17.8156 28.0007 17.7551 27.2081 17.6342 26.5653Z" fill="white"/>
|
||||
<path d="M22.1504 24.627V22.1637H26.7526V36.0847H24.0026V24.627H22.1504Z" fill="white"/>
|
||||
<path d="M10.8135 10.1958V14.9172H9.86658V12.9082H7.84419V14.9172H6.89722V10.1958H7.84419V12.137H9.86658V10.1958H10.8135V10.1958Z" fill="white"/>
|
||||
<path d="M15.2035 13.3275H12.464C12.4865 13.598 12.5813 13.8101 12.7482 13.9632C12.915 14.1165 13.1202 14.1933 13.3637 14.1933C13.7154 14.1933 13.9658 14.0421 14.1145 13.7401H15.1358C15.0276 14.1009 14.8201 14.3975 14.5135 14.6296C14.2068 14.8619 13.8303 14.9779 13.3839 14.9779C13.0232 14.9779 12.6995 14.8977 12.4133 14.7378C12.1269 14.5776 11.9037 14.3512 11.7435 14.058C11.5834 13.765 11.5034 13.4267 11.5034 13.0432C11.5034 12.6554 11.5821 12.3152 11.7401 12.0219C11.8978 11.7289 12.1189 11.5035 12.4029 11.3455C12.6871 11.1878 13.0139 11.1088 13.3837 11.1088C13.7398 11.1088 14.0591 11.1856 14.3409 11.3387C14.6227 11.492 14.8416 11.7097 14.9971 11.9915C15.1526 12.2732 15.2306 12.5967 15.2306 12.9621C15.2306 13.0976 15.2216 13.2192 15.2035 13.3275ZM14.25 12.6918C14.2454 12.4482 14.1576 12.2532 13.986 12.1068C13.8144 11.9603 13.605 11.8869 13.3569 11.8869C13.1224 11.8869 12.925 11.9578 12.7651 12.0999C12.6049 12.242 12.5067 12.4392 12.4709 12.6918H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.0219C16.0546 11.7289 16.2596 11.5035 16.5189 11.3455C16.7783 11.1878 17.0678 11.1088 17.3881 11.1088C17.6677 11.1088 17.9124 11.1651 18.1221 11.278C18.3317 11.3909 18.4996 11.5327 18.6259 11.7041V11.1698H19.5797V14.9172H18.6259V14.3692C18.504 14.5452 18.3361 14.6905 18.1221 14.8056C17.9078 14.9206 17.6609 14.9781 17.3813 14.9781C17.0656 14.9781 16.778 14.897 16.5187 14.7344C16.2593 14.5718 16.0541 14.3434 15.9032 14.048C15.7521 13.7528 15.6768 13.4133 15.6768 13.0298C15.677 12.651 15.7526 12.3152 15.9034 12.0219ZM18.4909 12.4514C18.4007 12.2869 18.2788 12.1606 18.1255 12.0726C17.9722 11.9846 17.8076 11.9405 17.6316 11.9405C17.4559 11.9405 17.2936 11.9834 17.1446 12.069C16.9959 12.1548 16.8753 12.2798 16.7829 12.4443C16.6905 12.6091 16.6442 12.8041 16.6442 13.0293C16.6442 13.2551 16.6903 13.4523 16.7829 13.6212C16.8753 13.7903 16.9969 13.92 17.1483 14.0102C17.2994 14.1006 17.4605 14.1455 17.6319 14.1455C17.8079 14.1455 17.9724 14.1016 18.1257 14.0136C18.279 13.9256 18.4007 13.7996 18.4911 13.6348C18.5813 13.4703 18.6264 13.2729 18.6264 13.043C18.6264 12.8131 18.581 12.6162 18.4909 12.4514Z" fill="white"/>
|
||||
<path d="M20.4896 12.0219C20.6408 11.7289 20.847 11.5035 21.1088 11.3455C21.3703 11.1878 21.6611 11.1088 21.9814 11.1088C22.2249 11.1088 22.4572 11.162 22.678 11.2678C22.8989 11.3738 23.0748 11.5147 23.2057 11.6904V9.91154H24.1661V14.9172H23.2057V14.3627C23.0885 14.5477 22.924 14.6964 22.7119 14.8092C22.4998 14.9218 22.2541 14.9784 21.9746 14.9784C21.6589 14.9784 21.3703 14.8972 21.1088 14.7346C20.8472 14.5723 20.6408 14.3437 20.4896 14.0482C20.3385 13.753 20.2632 13.4135 20.2632 13.0301C20.2629 12.6511 20.3385 12.3152 20.4896 12.0219ZM23.0768 12.4514C22.9866 12.2869 22.8647 12.1606 22.7114 12.0726C22.5581 11.9846 22.3936 11.9405 22.2176 11.9405C22.0418 11.9405 21.8795 11.9834 21.7306 12.069C21.5819 12.1548 21.4612 12.2798 21.3688 12.4444C21.2765 12.6091 21.2301 12.8041 21.2301 13.0294C21.2301 13.2551 21.2762 13.4523 21.3688 13.6212C21.4612 13.7903 21.5828 13.92 21.7342 14.0102C21.8853 14.1006 22.0465 14.1455 22.2178 14.1455C22.3938 14.1455 22.5583 14.1016 22.7117 14.0136C22.865 13.9256 22.9866 13.7996 23.077 13.6348C23.1672 13.4703 23.2123 13.2729 23.2123 13.043C23.2123 12.8131 23.1672 12.6162 23.0768 12.4514Z" fill="white"/>
|
||||
<path d="M28.5492 13.3275H25.8097C25.8322 13.598 25.927 13.8101 26.094 13.9632C26.2607 14.1165 26.4659 14.1933 26.7094 14.1933C27.0612 14.1933 27.3115 14.0421 27.4602 13.7401H28.4815C28.3733 14.1009 28.1658 14.3975 27.8592 14.6296C27.5526 14.8619 27.176 14.9779 26.7297 14.9779C26.3689 14.9779 26.0452 14.8977 25.759 14.7378C25.4726 14.5776 25.2494 14.3512 25.0892 14.058C24.9291 13.765 24.8491 13.4267 24.8491 13.0432C24.8491 12.6554 24.9279 12.3152 25.0858 12.0219C25.2435 11.7289 25.4646 11.5035 25.7486 11.3455C26.0328 11.1878 26.3596 11.1088 26.7294 11.1088C27.0855 11.1088 27.4048 11.1856 27.6866 11.3387C27.9684 11.492 28.1873 11.7097 28.3428 11.9915C28.4983 12.2732 28.5763 12.5967 28.5763 12.9621C28.5763 13.0976 28.567 13.2192 28.5492 13.3275ZM27.5955 12.6918C27.5908 12.4482 27.5031 12.2532 27.3315 12.1068C27.1599 11.9603 26.9505 11.8869 26.7024 11.8869C26.4679 11.8869 26.2704 11.9578 26.1105 12.0999C25.9504 12.242 25.8522 12.4392 25.8163 12.6918H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.2846C30.8863 11.172 31.1106 11.1157 31.3631 11.1157V12.1099H31.1128C30.8151 12.1099 30.5906 12.1799 30.4398 12.3196C30.2886 12.4595 30.2131 12.703 30.2131 13.0501V14.917H29.2661V11.1698H30.2131V11.7516C30.335 11.553 30.4939 11.3975 30.6901 11.2846Z" fill="white"/>
|
||||
<path d="M49.5852 26.3259V27.4009H45.4849V20.3999H46.7875V26.3257H49.5852V26.3259Z" fill="#6D5ED4"/>
|
||||
<path d="M56.9447 23.9004C56.9447 24.4147 56.8594 24.8888 56.6902 25.3268C56.5208 25.7629 56.281 26.1414 55.9716 26.4614C55.6613 26.7815 55.2887 27.0301 54.8531 27.2098C54.417 27.3882 53.9332 27.4781 53.4003 27.4781C52.8711 27.4781 52.3885 27.3884 51.9529 27.2098C51.5169 27.0301 51.1432 26.7815 50.8319 26.4614C50.5202 26.1414 50.2793 25.7629 50.108 25.3268C49.9369 24.8888 49.8513 24.4147 49.8513 23.9004C49.8513 23.3863 49.9366 22.9122 50.108 22.4742C50.2791 22.0381 50.5202 21.6596 50.8319 21.3395C51.1432 21.0195 51.5169 20.7709 51.9529 20.5912C52.3885 20.4128 52.8709 20.3231 53.4003 20.3231C53.7555 20.3231 54.0896 20.364 54.4021 20.4459C54.7153 20.5278 55.0027 20.6448 55.2645 20.7943C55.5256 20.9456 55.7606 21.127 55.9685 21.3427C56.1769 21.5572 56.3533 21.7963 56.4986 22.0618C56.6441 22.3262 56.7543 22.6131 56.8304 22.9232C56.9062 23.2322 56.9447 23.5589 56.9447 23.9004ZM55.6131 23.9004C55.6131 23.516 55.5614 23.1725 55.4581 22.8664C55.3549 22.5629 55.2077 22.3023 55.0176 22.0898C54.827 21.877 54.5957 21.7142 54.3229 21.6011C54.0497 21.488 53.7425 21.4312 53.4006 21.4312C53.0581 21.4312 52.7507 21.4877 52.478 21.6011C52.2055 21.7142 51.9732 21.877 51.7808 22.0898C51.5885 22.3026 51.4413 22.5629 51.3379 22.8664C51.2346 23.1728 51.1829 23.5162 51.1829 23.9004C51.1829 24.2848 51.2346 24.6282 51.3379 24.9346C51.4413 25.239 51.5888 25.4964 51.7808 25.7083C51.9732 25.9211 52.2052 26.0829 52.478 26.195C52.7507 26.3081 53.0581 26.3657 53.4006 26.3657C53.7425 26.3657 54.0499 26.3081 54.3229 26.195C54.5957 26.0829 54.8267 25.9208 55.0176 25.7083C55.208 25.4967 55.3552 25.239 55.4581 24.9346C55.5614 24.6282 55.6131 24.2848 55.6131 23.9004Z" fill="#6D5ED4"/>
|
||||
<path d="M63.8634 23.8906V26.7227C63.5082 26.9843 63.1297 27.1754 62.7277 27.2963C62.3258 27.4182 61.8961 27.4779 61.4376 27.4779C60.8662 27.4779 60.3487 27.3901 59.8859 27.2115C59.4225 27.0347 59.0274 26.7881 58.7 26.471C58.3722 26.1558 58.1194 25.7772 57.942 25.3373C57.7648 24.8993 57.676 24.4203 57.676 23.9001C57.676 23.3734 57.7613 22.8915 57.9327 22.4532C58.1033 22.0133 58.3463 21.6357 58.661 21.3205C58.9757 21.0034 59.3577 20.7575 59.8059 20.5839C60.2547 20.4094 60.7585 20.3224 61.3167 20.3224C61.6006 20.3224 61.8663 20.3448 62.1133 20.3896C62.3599 20.4355 62.5893 20.4969 62.8006 20.5759C63.0122 20.6548 63.205 20.7504 63.379 20.8645C63.5531 20.9776 63.7132 21.1007 63.8585 21.2362L63.4858 21.8275C63.4278 21.9221 63.3517 21.9789 63.2581 21.9994C63.1645 22.0208 63.0631 21.9974 62.9532 21.9301C62.8464 21.8687 62.7399 21.8073 62.6337 21.7459C62.5267 21.6844 62.4082 21.6306 62.2775 21.5869C62.1474 21.5411 61.9999 21.5031 61.8371 21.4748C61.6743 21.4465 61.4858 21.4309 61.2733 21.4309C60.9279 21.4309 60.6152 21.4885 60.3363 21.6055C60.0572 21.7225 59.8193 21.8875 59.6221 22.103C59.4254 22.3206 59.2738 22.579 59.167 22.8834C59.0608 23.1859 59.0074 23.5265 59.0074 23.9001C59.0074 24.3001 59.0644 24.6582 59.1792 24.9734C59.2938 25.2875 59.4552 25.554 59.6636 25.7714C59.8715 25.9898 60.1225 26.1558 60.4163 26.2708C60.71 26.3859 61.0378 26.4424 61.3993 26.4424C61.6574 26.4424 61.888 26.4142 62.0916 26.3605C62.2948 26.305 62.4935 26.2309 62.6873 26.136V24.8678H61.8059C61.722 24.8678 61.6567 24.8454 61.6104 24.7986C61.5636 24.7508 61.5397 24.6943 61.5397 24.627V23.8904H63.8634V23.8906Z" fill="#6D5ED4"/>
|
||||
<path d="M71.7989 23.9004C71.7989 24.4147 71.7136 24.8888 71.5442 25.3268C71.3746 25.7629 71.135 26.1414 70.8252 26.4614C70.5153 26.7815 70.1427 27.0301 69.7066 27.2098C69.271 27.3882 68.7867 27.4781 68.2543 27.4781C67.7251 27.4781 67.2425 27.3884 66.8069 27.2098C66.3709 27.0301 65.9972 26.7815 65.6859 26.4614C65.3742 26.1414 65.1329 25.7629 64.962 25.3268C64.7909 24.8888 64.7056 24.4147 64.7056 23.9004C64.7056 23.3863 64.7909 22.9122 64.962 22.4742C65.1326 22.0381 65.3742 21.6596 65.6859 21.3395C65.9972 21.0195 66.3709 20.7709 66.8069 20.5912C67.2425 20.4128 67.7251 20.3231 68.2543 20.3231C68.6095 20.3231 68.9436 20.364 69.2564 20.4459C69.5693 20.5278 69.8567 20.6448 70.1183 20.7943C70.3798 20.9456 70.6143 21.127 70.8225 21.3427C71.0309 21.5572 71.2074 21.7963 71.3529 22.0618C71.4981 22.3262 71.6086 22.6131 71.6846 22.9232C71.7604 23.2322 71.7989 23.5589 71.7989 23.9004ZM70.4668 23.9004C70.4668 23.516 70.4157 23.1725 70.3123 22.8664C70.209 22.5629 70.062 22.3023 69.8718 22.0898C69.6812 21.877 69.4499 21.7142 69.1772 21.6011C68.9039 21.488 68.5965 21.4312 68.2546 21.4312C67.9121 21.4312 67.6047 21.4877 67.3322 21.6011C67.0595 21.7142 66.8274 21.877 66.6351 22.0898C66.443 22.3026 66.2951 22.5629 66.1922 22.8664C66.0888 23.1728 66.0369 23.5162 66.0369 23.9004C66.0369 24.2848 66.0886 24.6282 66.1922 24.9346C66.2951 25.239 66.443 25.4964 66.6351 25.7083C66.8274 25.9211 67.0595 26.0829 67.3322 26.195C67.6047 26.3081 67.9123 26.3657 68.2546 26.3657C68.5965 26.3657 68.9039 26.3081 69.1772 26.195C69.4497 26.0829 69.681 25.9208 69.8718 25.7083C70.062 25.4967 70.209 25.239 70.3123 24.9346C70.4154 24.6282 70.4668 24.2848 70.4668 23.9004Z" fill="#6D5ED4"/>
|
||||
<path d="M167.004 20.4813H105.065V27.4745H167.004V20.4813Z" fill="#9181FF"/>
|
||||
<path d="M167.004 20.4813H160.011V27.4745H167.004V20.4813Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 33.4685H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M205.404 27.4745H198.172C197.962 27.4745 197.792 27.3043 197.792 27.0945V19.8624C197.792 19.6525 197.962 19.4824 198.172 19.4824H205.404C205.614 19.4824 205.784 19.6525 205.784 19.8624V27.0947C205.784 27.3043 205.614 27.4745 205.404 27.4745Z" fill="#6D5ED4"/>
|
||||
<path d="M216.357 27.4745H209.197C208.967 27.4745 208.781 27.2882 208.781 27.0586V19.8982C208.781 19.6686 208.967 19.4824 209.197 19.4824H216.357C216.587 19.4824 216.773 19.6686 216.773 19.8982V27.0589C216.773 27.2882 216.587 27.4745 216.357 27.4745Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 27.4745H221.163C220.946 27.4745 220.769 27.298 220.769 27.0801V19.8765C220.769 19.6589 220.946 19.4821 221.163 19.4821H228.367C228.585 19.4821 228.761 19.6586 228.761 19.8765V27.0801C228.761 27.298 228.585 27.4745 228.367 27.4745Z" fill="#6D5ED4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2573">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.212494)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,33 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2612)">
|
||||
<path d="M233.756 0.713593H-0.0144043V50.6645H233.756V0.713593Z" fill="white"/>
|
||||
<path d="M233.756 0.442299H-0.0144043V11.4315H233.756V0.442299Z" fill="#9181FF"/>
|
||||
<path d="M55.7118 35.6257C55.7118 36.851 54.7183 37.8443 53.4927 37.8443H42.9454C41.7201 37.8443 40.7263 36.8512 40.7263 35.6257V35.0677C40.7263 33.8424 41.7198 32.8491 42.9454 32.8491H53.4927C54.7181 32.8491 55.7118 33.8421 55.7118 35.0677V35.6257V35.6257Z" fill="#6D5ED4"/>
|
||||
<path d="M74.0273 35.6257C74.0273 36.851 73.0337 37.8443 71.8082 37.8443H61.2608C60.0355 37.8443 59.0417 36.8512 59.0417 35.6257V35.0677C59.0417 33.8424 60.0353 32.8491 61.2608 32.8491H71.8082C73.0335 32.8491 74.0273 33.8421 74.0273 35.0677V35.6257Z" fill="#6D5ED4"/>
|
||||
<path d="M92.3427 35.6257C92.3427 36.851 91.3487 37.8443 90.1231 37.8443H79.5768C78.3509 37.8443 77.3572 36.8512 77.3572 35.6257V35.0677C77.3572 33.8424 78.3507 32.8491 79.5768 32.8491H90.1231C91.3484 32.8491 92.3427 33.8421 92.3427 35.0677V35.6257Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.713593H-0.0761719V50.6645H36.9685V0.713593Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.4083V15.1297H9.86658V13.1207H7.84419V15.1297H6.89722V10.4083H7.84419V12.3495H9.86658V10.4083H10.8135V10.4083Z" fill="white"/>
|
||||
<path d="M15.2035 13.54H12.464C12.4865 13.8105 12.5813 14.0226 12.7482 14.1757C12.915 14.329 13.1202 14.4058 13.3637 14.4058C13.7154 14.4058 13.9658 14.2546 14.1145 13.9526H15.1358C15.0276 14.3134 14.8201 14.61 14.5135 14.8421C14.2068 15.0744 13.8303 15.1904 13.3839 15.1904C13.0232 15.1904 12.6995 15.1102 12.4133 14.9503C12.1269 14.7902 11.9037 14.5637 11.7435 14.2705C11.5834 13.9775 11.5034 13.6392 11.5034 13.2558C11.5034 12.8679 11.5821 12.5277 11.7401 12.2344C11.8978 11.9415 12.1189 11.716 12.4029 11.558C12.6871 11.4003 13.0139 11.3214 13.3837 11.3214C13.7398 11.3214 14.0591 11.3981 14.3409 11.5512C14.6227 11.7045 14.8416 11.9222 14.9971 12.204C15.1526 12.4857 15.2306 12.8092 15.2306 13.1746C15.2306 13.3101 15.2216 13.4317 15.2035 13.54ZM14.25 12.9043C14.2454 12.6608 14.1576 12.4658 13.986 12.3193C13.8144 12.1728 13.605 12.0994 13.3569 12.0994C13.1224 12.0994 12.925 12.1703 12.7651 12.3124C12.6049 12.4545 12.5067 12.6517 12.4709 12.9043H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.2344C16.0546 11.9415 16.2596 11.716 16.5189 11.558C16.7783 11.4003 17.0678 11.3214 17.3881 11.3214C17.6677 11.3214 17.9124 11.3777 18.1221 11.4905C18.3317 11.6034 18.4996 11.7452 18.6259 11.9166V11.3823H19.5797V15.1297H18.6259V14.5818C18.504 14.7577 18.3361 14.903 18.1221 15.0181C17.9078 15.1331 17.6609 15.1906 17.3813 15.1906C17.0656 15.1906 16.778 15.1095 16.5187 14.9469C16.2593 14.7843 16.0541 14.5559 15.9032 14.2605C15.7521 13.9653 15.6768 13.6258 15.6768 13.2423C15.677 12.8636 15.7526 12.5277 15.9034 12.2344ZM18.4909 12.6639C18.4007 12.4994 18.2788 12.3731 18.1255 12.2851C17.9722 12.1971 17.8076 12.153 17.6316 12.153C17.4559 12.153 17.2936 12.1959 17.1446 12.2815C16.9959 12.3673 16.8753 12.4923 16.7829 12.6569C16.6905 12.8216 16.6442 13.0166 16.6442 13.2419C16.6442 13.4676 16.6903 13.6648 16.7829 13.8337C16.8753 14.0028 16.9969 14.1325 17.1483 14.2227C17.2994 14.3131 17.4605 14.358 17.6319 14.358C17.8079 14.358 17.9724 14.3141 18.1257 14.2261C18.279 14.1381 18.4007 14.0121 18.4911 13.8473C18.5813 13.6828 18.6264 13.4854 18.6264 13.2555C18.6264 13.0257 18.581 12.8287 18.4909 12.6639Z" fill="white"/>
|
||||
<path d="M20.4896 12.2344C20.6408 11.9415 20.847 11.716 21.1088 11.558C21.3703 11.4003 21.6611 11.3214 21.9814 11.3214C22.2249 11.3214 22.4572 11.3745 22.678 11.4803C22.8989 11.5863 23.0748 11.7272 23.2057 11.9029V10.1241H24.1661V15.1297H23.2057V14.5752C23.0885 14.7602 22.924 14.9089 22.7119 15.0217C22.4998 15.1343 22.2541 15.1909 21.9746 15.1909C21.6589 15.1909 21.3703 15.1097 21.1088 14.9471C20.8472 14.7848 20.6408 14.5562 20.4896 14.2607C20.3385 13.9656 20.2632 13.626 20.2632 13.2426C20.2629 12.8636 20.3385 12.5277 20.4896 12.2344ZM23.0768 12.6639C22.9866 12.4994 22.8647 12.3731 22.7114 12.2851C22.5581 12.1971 22.3936 12.153 22.2176 12.153C22.0418 12.153 21.8795 12.1959 21.7306 12.2815C21.5819 12.3673 21.4612 12.4923 21.3688 12.6569C21.2765 12.8216 21.2301 13.0166 21.2301 13.2419C21.2301 13.4676 21.2762 13.6648 21.3688 13.8337C21.4612 14.0028 21.5828 14.1325 21.7342 14.2227C21.8853 14.3131 22.0465 14.358 22.2178 14.358C22.3938 14.358 22.5583 14.3141 22.7117 14.2261C22.865 14.1381 22.9866 14.0121 23.077 13.8473C23.1672 13.6828 23.2123 13.4854 23.2123 13.2555C23.2123 13.0257 23.1672 12.8287 23.0768 12.6639Z" fill="white"/>
|
||||
<path d="M28.5492 13.54H25.8097C25.8322 13.8105 25.927 14.0226 26.094 14.1757C26.2607 14.329 26.4659 14.4058 26.7094 14.4058C27.0612 14.4058 27.3115 14.2546 27.4602 13.9526H28.4815C28.3733 14.3134 28.1658 14.61 27.8592 14.8421C27.5526 15.0744 27.176 15.1904 26.7297 15.1904C26.3689 15.1904 26.0452 15.1102 25.759 14.9503C25.4726 14.7902 25.2494 14.5637 25.0892 14.2705C24.9291 13.9775 24.8491 13.6392 24.8491 13.2558C24.8491 12.8679 24.9279 12.5277 25.0858 12.2344C25.2435 11.9415 25.4646 11.716 25.7486 11.558C26.0328 11.4003 26.3596 11.3214 26.7294 11.3214C27.0855 11.3214 27.4048 11.3981 27.6866 11.5512C27.9684 11.7045 28.1873 11.9222 28.3428 12.204C28.4983 12.4857 28.5763 12.8092 28.5763 13.1746C28.5763 13.3101 28.567 13.4317 28.5492 13.54ZM27.5955 12.9043C27.5908 12.6608 27.5031 12.4658 27.3315 12.3193C27.1599 12.1728 26.9505 12.0994 26.7024 12.0994C26.4679 12.0994 26.2704 12.1703 26.1105 12.3124C25.9504 12.4545 25.8522 12.6517 25.8163 12.9043H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.4971C30.8863 11.3845 31.1106 11.3282 31.3631 11.3282V12.3224H31.1128C30.8151 12.3224 30.5906 12.3924 30.4398 12.5321C30.2886 12.672 30.2131 12.9155 30.2131 13.2626V15.1295H29.2661V11.3823H30.2131V11.9641C30.335 11.7655 30.4939 11.61 30.6901 11.4971Z" fill="white"/>
|
||||
<path d="M128.821 37.7721V38.8471H124.72V31.8461H126.023V37.7719H128.821V37.7721Z" fill="#6D5ED4"/>
|
||||
<path d="M136.18 35.3466C136.18 35.8609 136.095 36.335 135.926 36.773C135.756 37.2091 135.516 37.5876 135.207 37.9077C134.897 38.2277 134.524 38.4763 134.088 38.656C133.652 38.8344 133.169 38.9243 132.636 38.9243C132.106 38.9243 131.624 38.8346 131.188 38.656C130.752 38.4766 130.379 38.2277 130.067 37.9077C129.756 37.5876 129.515 37.2091 129.343 36.773C129.172 36.335 129.087 35.8609 129.087 35.3466C129.087 34.8325 129.172 34.3584 129.343 33.9204C129.514 33.4843 129.756 33.1058 130.067 32.7857C130.379 32.4657 130.752 32.2171 131.188 32.0374C131.624 31.859 132.106 31.7693 132.636 31.7693C132.991 31.7693 133.325 31.8102 133.637 31.8921C133.951 31.974 134.238 32.091 134.5 32.2405C134.761 32.3918 134.996 32.5732 135.204 32.7889C135.412 33.0034 135.589 33.2425 135.734 33.508C135.879 33.7724 135.99 34.0593 136.066 34.3694C136.142 34.6785 136.18 35.0051 136.18 35.3466ZM134.848 35.3466C134.848 34.9622 134.797 34.6187 134.693 34.3126C134.59 34.0091 134.443 33.7485 134.253 33.536C134.062 33.3232 133.831 33.1604 133.558 33.0473C133.285 32.9342 132.978 32.8774 132.636 32.8774C132.293 32.8774 131.986 32.9339 131.713 33.0473C131.441 33.1604 131.209 33.3232 131.016 33.536C130.824 33.7488 130.677 34.0091 130.573 34.3126C130.47 34.619 130.418 34.9624 130.418 35.3466C130.418 35.731 130.47 36.0744 130.573 36.3808C130.677 36.6852 130.824 36.9426 131.016 37.1545C131.209 37.3673 131.441 37.5291 131.713 37.6412C131.986 37.7543 132.293 37.8119 132.636 37.8119C132.978 37.8119 133.285 37.7543 133.558 37.6412C133.831 37.5291 134.062 37.367 134.253 37.1545C134.443 36.9429 134.591 36.6852 134.693 36.3808C134.797 36.0744 134.848 35.731 134.848 35.3466Z" fill="#6D5ED4"/>
|
||||
<path d="M143.099 35.3371V38.1692C142.744 38.4307 142.365 38.6218 141.963 38.7427C141.561 38.8646 141.131 38.9243 140.673 38.9243C140.102 38.9243 139.584 38.8366 139.121 38.6579C138.658 38.4812 138.263 38.2345 137.935 37.9174C137.608 37.6022 137.355 37.2237 137.177 36.7837C137 36.3457 136.911 35.8667 136.911 35.3466C136.911 34.8198 136.997 34.3379 137.168 33.8997C137.339 33.4597 137.582 33.0821 137.896 32.767C138.211 32.4498 138.593 32.2039 139.041 32.0303C139.49 31.8558 139.994 31.7688 140.552 31.7688C140.836 31.7688 141.102 31.7912 141.349 31.8361C141.595 31.8819 141.825 31.9433 142.036 32.0223C142.248 32.1013 142.44 32.1968 142.614 32.3109C142.788 32.424 142.949 32.5471 143.094 32.6826L142.721 33.274C142.663 33.3685 142.587 33.4253 142.493 33.4458C142.4 33.4673 142.299 33.4439 142.189 33.3766C142.082 33.3152 141.975 33.2537 141.869 33.1923C141.762 33.1309 141.644 33.077 141.513 33.0334C141.383 32.9876 141.235 32.9495 141.072 32.9213C140.91 32.893 140.721 32.8774 140.509 32.8774C140.163 32.8774 139.851 32.9349 139.572 33.0519C139.293 33.1689 139.055 33.3339 138.857 33.5494C138.661 33.7671 138.509 34.0254 138.402 34.3299C138.296 34.6324 138.243 34.9729 138.243 35.3466C138.243 35.7466 138.3 36.1046 138.415 36.4198C138.529 36.734 138.691 37.0004 138.899 37.2178C139.107 37.4362 139.358 37.6022 139.652 37.7173C139.945 37.8323 140.273 37.8889 140.635 37.8889C140.893 37.8889 141.123 37.8606 141.327 37.807C141.53 37.7514 141.729 37.6773 141.923 37.5825V36.3143H141.041C140.957 36.3143 140.892 36.2918 140.846 36.245C140.799 36.1973 140.775 36.1407 140.775 36.0734V35.3368H143.099V35.3371Z" fill="#6D5ED4"/>
|
||||
<path d="M151.034 35.3466C151.034 35.8609 150.949 36.335 150.78 36.773C150.61 37.2091 150.37 37.5876 150.061 37.9077C149.751 38.2277 149.378 38.4763 148.942 38.656C148.506 38.8344 148.022 38.9243 147.49 38.9243C146.96 38.9243 146.478 38.8346 146.042 38.656C145.606 38.4766 145.233 38.2277 144.921 37.9077C144.61 37.5876 144.368 37.2091 144.197 36.773C144.026 36.335 143.941 35.8609 143.941 35.3466C143.941 34.8325 144.026 34.3584 144.197 33.9204C144.368 33.4843 144.61 33.1058 144.921 32.7857C145.233 32.4657 145.606 32.2171 146.042 32.0374C146.478 31.859 146.96 31.7693 147.49 31.7693C147.845 31.7693 148.179 31.8102 148.492 31.8921C148.805 31.974 149.092 32.091 149.354 32.2405C149.615 32.3918 149.85 32.5732 150.058 32.7889C150.266 33.0034 150.443 33.2425 150.588 33.508C150.733 33.7724 150.844 34.0593 150.92 34.3694C150.996 34.6785 151.034 35.0051 151.034 35.3466ZM149.702 35.3466C149.702 34.9622 149.651 34.6187 149.548 34.3126C149.444 34.0091 149.297 33.7485 149.107 33.536C148.917 33.3232 148.685 33.1604 148.413 33.0473C148.139 32.9342 147.832 32.8774 147.49 32.8774C147.147 32.8774 146.84 32.9339 146.568 33.0473C146.295 33.1604 146.063 33.3232 145.87 33.536C145.678 33.7488 145.53 34.0091 145.428 34.3126C145.324 34.619 145.273 34.9624 145.273 35.3466C145.273 35.731 145.324 36.0744 145.428 36.3808C145.53 36.6852 145.678 36.9426 145.87 37.1545C146.063 37.3673 146.295 37.5291 146.568 37.6412C146.84 37.7543 147.148 37.8119 147.49 37.8119C147.832 37.8119 148.139 37.7543 148.413 37.6412C148.685 37.5291 148.916 37.367 149.107 37.1545C149.297 36.9429 149.444 36.6852 149.548 36.3808C149.651 36.0744 149.702 35.731 149.702 35.3466Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 25.6373H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M205.404 39.3428H198.172C197.962 39.3428 197.792 39.1727 197.792 38.9628V31.7305C197.792 31.5207 197.962 31.3505 198.172 31.3505H205.404C205.614 31.3505 205.784 31.5207 205.784 31.7305V38.9628C205.784 39.1727 205.614 39.3428 205.404 39.3428Z" fill="#6D5ED4"/>
|
||||
<path d="M216.357 39.3428H209.197C208.967 39.3428 208.781 39.1566 208.781 38.927V31.7664C208.781 31.5368 208.967 31.3505 209.197 31.3505H216.357C216.587 31.3505 216.773 31.5368 216.773 31.7664V38.927C216.773 39.1566 216.587 39.3428 216.357 39.3428Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 39.3428H221.163C220.946 39.3428 220.769 39.1664 220.769 38.9485V31.7449C220.769 31.5273 220.946 31.3505 221.163 31.3505H228.367C228.585 31.3505 228.761 31.527 228.761 31.7449V38.9485C228.761 39.1664 228.585 39.3428 228.367 39.3428Z" fill="#6D5ED4"/>
|
||||
<path d="M8.79667 23.9747C9.59203 22.7272 10.9129 22.1034 12.7591 22.1034C14.6047 22.1034 15.9259 22.7274 16.7215 23.9747C17.5168 25.2224 17.9149 26.9474 17.9149 29.1497C17.9149 31.3649 17.5168 33.1026 16.7215 34.363C15.9256 35.6232 14.6047 36.2536 12.7591 36.2536C10.9129 36.2536 9.59203 35.6235 8.79667 34.363C8.00083 33.1029 7.60327 31.3649 7.60327 29.1497C7.60327 26.9474 8.00083 25.2224 8.79667 23.9747ZM15.0983 26.7722C14.9772 26.1294 14.7354 25.6041 14.3727 25.1968C14.0098 24.7895 13.4718 24.5857 12.7591 24.5857C12.0459 24.5857 11.5084 24.7895 11.1454 25.1968C10.7827 25.6044 10.5407 26.1297 10.4198 26.7722C10.2987 27.4152 10.2385 28.2076 10.2385 29.1495C10.2385 30.1172 10.2957 30.9286 10.4103 31.5843C10.5249 32.24 10.7667 32.7682 11.1359 33.1692C11.505 33.5701 12.0459 33.7707 12.7591 33.7707C13.4718 33.7707 14.0129 33.5701 14.3822 33.1692C14.7512 32.7682 14.9933 32.24 15.1078 31.5843C15.2224 30.9289 15.2797 30.1172 15.2797 29.1495C15.2799 28.2076 15.2192 27.4152 15.0983 26.7722Z" fill="white"/>
|
||||
<path d="M20.7794 33.2745C22.0015 32.2561 22.9756 31.4061 23.7012 30.7251C24.4269 30.0443 25.0314 29.3342 25.5152 28.5959C25.9988 27.8578 26.2408 27.1322 26.2408 26.419C26.2408 25.7696 26.088 25.2607 25.7826 24.8914C25.4772 24.5224 25.0058 24.3376 24.3696 24.3376C23.7329 24.3376 23.243 24.5509 22.8993 24.9774C22.5556 25.404 22.3772 25.9866 22.3645 26.7247H19.7673C19.818 25.1968 20.2734 24.0385 21.1328 23.249C21.992 22.4598 23.0836 22.0651 24.4078 22.0651C25.8591 22.0651 26.9728 22.4502 27.7497 23.2205C28.526 23.991 28.9145 25.006 28.9145 26.2664C28.9145 27.2594 28.6471 28.2079 28.1126 29.1117C27.5778 30.0158 26.9667 30.8019 26.2794 31.47C25.592 32.1383 24.6945 32.9437 23.5869 33.8858H29.2202V36.101H19.7863V34.1149L20.7794 33.2745Z" fill="white"/>
|
||||
<path d="M66.5438 16.7562H40.7063V21.3875H66.5438V16.7562Z" fill="#9181FF"/>
|
||||
<path d="M228.881 16.7562H203.044V21.3875H228.881V16.7562Z" fill="#9181FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2612">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.424995)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,35 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2832)">
|
||||
<path d="M233.756 0.92609H-0.0144043V50.877H233.756V0.92609Z" fill="white"/>
|
||||
<path d="M233.756 0.654797H-0.0144043V11.644H233.756V0.654797Z" fill="#9181FF"/>
|
||||
<path d="M107.538 37.3007C107.538 38.526 106.544 39.5193 105.319 39.5193H94.7716C93.5463 39.5193 92.5525 38.5262 92.5525 37.3007V36.7427C92.5525 35.5174 93.546 34.5241 94.7716 34.5241H105.319C106.544 34.5241 107.538 35.5171 107.538 36.7427V37.3007Z" fill="#6D5ED4"/>
|
||||
<path d="M89.2226 37.3007C89.2226 38.526 88.229 39.5193 87.0035 39.5193H76.4562C75.2308 39.5193 74.2371 38.5262 74.2371 37.3007V36.7427C74.2371 35.5174 75.2306 34.5241 76.4562 34.5241H87.0035C88.2288 34.5241 89.2226 35.5171 89.2226 36.7427V37.3007Z" fill="#6D5ED4"/>
|
||||
<path d="M125.853 37.3007C125.853 38.526 124.86 39.5193 123.634 39.5193H113.087C111.862 39.5193 110.868 38.5262 110.868 37.3007V36.7427C110.868 35.5174 111.861 34.5241 113.087 34.5241H123.634C124.86 34.5241 125.853 35.5171 125.853 36.7427V37.3007Z" fill="#6D5ED4"/>
|
||||
<path d="M144.169 37.3007C144.169 38.526 143.175 39.5193 141.949 39.5193H131.403C130.177 39.5193 129.183 38.5262 129.183 37.3007V36.7427C129.183 35.5174 130.177 34.5241 131.403 34.5241H141.949C143.174 34.5241 144.169 35.5171 144.169 36.7427V37.3007Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.92609H-0.0761719V50.877H36.9685V0.92609Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.6208V15.3422H9.86658V13.3332H7.84419V15.3422H6.89722V10.6208H7.84419V12.562H9.86658V10.6208H10.8135V10.6208Z" fill="white"/>
|
||||
<path d="M15.2035 13.7525H12.464C12.4865 14.023 12.5813 14.2351 12.7482 14.3882C12.915 14.5415 13.1202 14.6183 13.3637 14.6183C13.7154 14.6183 13.9658 14.4671 14.1145 14.1651H15.1358C15.0276 14.5259 14.8201 14.8225 14.5135 15.0546C14.2068 15.2869 13.8303 15.4029 13.3839 15.4029C13.0232 15.4029 12.6995 15.3227 12.4133 15.1628C12.1269 15.0027 11.9037 14.7762 11.7435 14.483C11.5834 14.19 11.5034 13.8517 11.5034 13.4682C11.5034 13.0804 11.5821 12.7402 11.7401 12.4469C11.8978 12.1539 12.1189 11.9285 12.4029 11.7705C12.6871 11.6128 13.0139 11.5338 13.3837 11.5338C13.7398 11.5338 14.0591 11.6106 14.3409 11.7637C14.6227 11.917 14.8416 12.1347 14.9971 12.4165C15.1526 12.6982 15.2306 13.0217 15.2306 13.3871C15.2306 13.5226 15.2216 13.6442 15.2035 13.7525ZM14.25 13.1168C14.2454 12.8733 14.1576 12.6783 13.986 12.5318C13.8144 12.3853 13.605 12.3119 13.3569 12.3119C13.1224 12.3119 12.925 12.3828 12.7651 12.5249C12.6049 12.667 12.5067 12.8642 12.4709 13.1168H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.4469C16.0546 12.1539 16.2596 11.9285 16.5189 11.7705C16.7783 11.6128 17.0678 11.5338 17.3881 11.5338C17.6677 11.5338 17.9124 11.5902 18.1221 11.703C18.3317 11.8159 18.4996 11.9577 18.6259 12.1291V11.5948H19.5797V15.3422H18.6259V14.7942C18.504 14.9702 18.3361 15.1155 18.1221 15.2306C17.9078 15.3456 17.6609 15.4031 17.3813 15.4031C17.0656 15.4031 16.778 15.322 16.5187 15.1594C16.2593 14.9968 16.0541 14.7684 15.9032 14.473C15.7521 14.1778 15.6768 13.8383 15.6768 13.4548C15.677 13.0761 15.7526 12.7402 15.9034 12.4469ZM18.4909 12.8764C18.4007 12.7119 18.2788 12.5856 18.1255 12.4976C17.9722 12.4096 17.8076 12.3655 17.6316 12.3655C17.4559 12.3655 17.2936 12.4084 17.1446 12.494C16.9959 12.5798 16.8753 12.7048 16.7829 12.8694C16.6905 13.0341 16.6442 13.2291 16.6442 13.4544C16.6442 13.6801 16.6903 13.8773 16.7829 14.0462C16.8753 14.2153 16.9969 14.345 17.1483 14.4352C17.2994 14.5256 17.4605 14.5705 17.6319 14.5705C17.8079 14.5705 17.9724 14.5266 18.1257 14.4386C18.279 14.3506 18.4007 14.2246 18.4911 14.0598C18.5813 13.8953 18.6264 13.6979 18.6264 13.468C18.6264 13.2381 18.581 13.0412 18.4909 12.8764Z" fill="white"/>
|
||||
<path d="M20.4896 12.4469C20.6408 12.1539 20.847 11.9285 21.1088 11.7705C21.3703 11.6128 21.6611 11.5338 21.9814 11.5338C22.2249 11.5338 22.4572 11.587 22.678 11.6928C22.8989 11.7988 23.0748 11.9397 23.2057 12.1154V10.3365H24.1661V15.3422H23.2057V14.7877C23.0885 14.9727 22.924 15.1214 22.7119 15.2342C22.4998 15.3468 22.2541 15.4034 21.9746 15.4034C21.6589 15.4034 21.3703 15.3222 21.1088 15.1596C20.8472 14.9973 20.6408 14.7687 20.4896 14.4732C20.3385 14.178 20.2632 13.8385 20.2632 13.4551C20.2629 13.0761 20.3385 12.7402 20.4896 12.4469ZM23.0768 12.8764C22.9866 12.7119 22.8647 12.5856 22.7114 12.4976C22.5581 12.4096 22.3936 12.3655 22.2176 12.3655C22.0418 12.3655 21.8795 12.4084 21.7306 12.494C21.5819 12.5798 21.4612 12.7048 21.3688 12.8694C21.2765 13.0341 21.2301 13.2291 21.2301 13.4544C21.2301 13.6801 21.2762 13.8773 21.3688 14.0462C21.4612 14.2153 21.5828 14.345 21.7342 14.4352C21.8853 14.5256 22.0465 14.5705 22.2178 14.5705C22.3938 14.5705 22.5583 14.5266 22.7117 14.4386C22.865 14.3506 22.9866 14.2246 23.077 14.0598C23.1672 13.8953 23.2123 13.6979 23.2123 13.468C23.2123 13.2381 23.1672 13.0412 23.0768 12.8764Z" fill="white"/>
|
||||
<path d="M28.5492 13.7525H25.8097C25.8322 14.023 25.927 14.2351 26.094 14.3882C26.2607 14.5415 26.4659 14.6183 26.7094 14.6183C27.0612 14.6183 27.3115 14.4671 27.4602 14.1651H28.4815C28.3733 14.5259 28.1658 14.8225 27.8592 15.0546C27.5526 15.2869 27.176 15.4029 26.7297 15.4029C26.3689 15.4029 26.0452 15.3227 25.759 15.1628C25.4726 15.0027 25.2494 14.7762 25.0892 14.483C24.9291 14.19 24.8491 13.8517 24.8491 13.4682C24.8491 13.0804 24.9279 12.7402 25.0858 12.4469C25.2435 12.1539 25.4646 11.9285 25.7486 11.7705C26.0328 11.6128 26.3596 11.5338 26.7294 11.5338C27.0855 11.5338 27.4048 11.6106 27.6866 11.7637C27.9684 11.917 28.1873 12.1347 28.3428 12.4165C28.4983 12.6982 28.5763 13.0217 28.5763 13.3871C28.5763 13.5226 28.567 13.6442 28.5492 13.7525ZM27.5955 13.1168C27.5908 12.8733 27.5031 12.6783 27.3315 12.5318C27.1599 12.3853 26.9505 12.3119 26.7024 12.3119C26.4679 12.3119 26.2704 12.3828 26.1105 12.5249C25.9504 12.667 25.8522 12.8642 25.8163 13.1168H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.7096C30.8863 11.597 31.1106 11.5407 31.3631 11.5407V12.5349H31.1128C30.8151 12.5349 30.5906 12.6049 30.4398 12.7446C30.2886 12.8845 30.2131 13.128 30.2131 13.4751V15.342H29.2661V11.5948H30.2131V12.1766C30.335 11.978 30.4939 11.8224 30.6901 11.7096Z" fill="white"/>
|
||||
<path d="M44.971 39.2034V40.2783H40.8706V33.2773H42.1732V39.2031H44.971V39.2034Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 36.7778C52.3302 37.2921 52.2449 37.7662 52.0757 38.2042C51.9063 38.6403 51.6665 39.0189 51.3571 39.3389C51.0468 39.6589 50.6741 39.9076 50.2386 40.0872C49.8025 40.2656 49.3187 40.3556 48.7858 40.3556C48.2566 40.3556 47.774 40.2659 47.3384 40.0872C46.9024 39.9078 46.5287 39.6589 46.2174 39.3389C45.9057 39.0189 45.6648 38.6403 45.4935 38.2042C45.3224 37.7662 45.2368 37.2921 45.2368 36.7778C45.2368 36.2637 45.3221 35.7897 45.4935 35.3516C45.6646 34.9156 45.9057 34.537 46.2174 34.217C46.5287 33.8969 46.9024 33.6483 47.3384 33.4687C47.774 33.2902 48.2564 33.2005 48.7858 33.2005C49.141 33.2005 49.4751 33.2415 49.7876 33.3234C50.1008 33.4053 50.3882 33.5223 50.65 33.6717C50.9111 33.8231 51.146 34.0044 51.354 34.2201C51.5624 34.4346 51.7388 34.6738 51.8841 34.9392C52.0296 35.2037 52.1398 35.4906 52.2159 35.8006C52.2919 36.1097 52.3302 36.4363 52.3302 36.7778ZM50.9986 36.7778C50.9986 36.3934 50.9469 36.05 50.8436 35.7438C50.7404 35.4404 50.5932 35.1798 50.4031 34.9672C50.2125 34.7544 49.9812 34.5916 49.7084 34.4785C49.4352 34.3654 49.128 34.3086 48.7861 34.3086C48.4436 34.3086 48.1362 34.3652 47.8635 34.4785C47.591 34.5916 47.3587 34.7544 47.1663 34.9672C46.974 35.18 46.8268 35.4404 46.7234 35.7438C46.6201 36.0502 46.5684 36.3937 46.5684 36.7778C46.5684 37.1622 46.6201 37.5057 46.7234 37.812C46.8268 38.1165 46.9743 38.3739 47.1663 38.5857C47.3587 38.7985 47.5907 38.9604 47.8635 39.0725C48.1362 39.1856 48.4436 39.2431 48.7861 39.2431C49.128 39.2431 49.4354 39.1856 49.7084 39.0725C49.9812 38.9604 50.2122 38.7983 50.4031 38.5857C50.5935 38.3741 50.7407 38.1165 50.8436 37.812C50.9469 37.5057 50.9986 37.1622 50.9986 36.7778Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 36.7683V39.6004C58.8937 39.862 58.5152 40.0531 58.1132 40.174C57.7113 40.2959 57.2816 40.3556 56.8231 40.3556C56.2517 40.3556 55.7342 40.2678 55.2714 40.0892C54.808 39.9124 54.4129 39.6658 54.0855 39.3486C53.7577 39.0335 53.5049 38.6549 53.3275 38.215C53.1502 37.7769 53.0615 37.298 53.0615 36.7778C53.0615 36.2511 53.1468 35.7692 53.3182 35.3309C53.4888 34.8909 53.7318 34.5134 54.0465 34.1982C54.3612 33.8811 54.7432 33.6351 55.1914 33.4616C55.6402 33.2871 56.144 33.2001 56.7022 33.2001C56.9861 33.2001 57.2518 33.2225 57.4987 33.2673C57.7454 33.3132 57.9748 33.3746 58.1861 33.4536C58.3977 33.5325 58.5905 33.6281 58.7645 33.7422C58.9386 33.8553 59.0987 33.9783 59.244 34.1139L58.8713 34.7052C58.8133 34.7998 58.7372 34.8566 58.6436 34.8771C58.55 34.8985 58.4486 34.8751 58.3387 34.8078C58.2319 34.7464 58.1254 34.685 58.0192 34.6235C57.9121 34.5621 57.7937 34.5083 57.663 34.4646C57.5329 34.4188 57.3854 34.3808 57.2226 34.3525C57.0598 34.3242 56.8713 34.3086 56.6588 34.3086C56.3134 34.3086 56.0007 34.3662 55.7218 34.4832C55.4427 34.6002 55.2048 34.7652 55.0076 34.9806C54.8109 35.1983 54.6593 35.4567 54.5525 35.7611C54.4463 36.0636 54.3929 36.4041 54.3929 36.7778C54.3929 37.1778 54.4499 37.5359 54.5647 37.851C54.6793 38.1652 54.8407 38.4317 55.0491 38.6491C55.257 38.8675 55.508 39.0335 55.8018 39.1485C56.0955 39.2636 56.4233 39.3201 56.7848 39.3201C57.0429 39.3201 57.2735 39.2919 57.4771 39.2382C57.6803 39.1827 57.879 39.1085 58.0728 39.0137V37.7455H57.1914C57.1075 37.7455 57.0422 37.7231 56.9959 37.6763C56.9491 37.6285 56.9252 37.572 56.9252 37.5047V36.7681H59.2489V36.7683Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 36.7778C67.1844 37.2921 67.0991 37.7662 66.9297 38.2042C66.7601 38.6403 66.5205 39.0189 66.2107 39.3389C65.9008 39.6589 65.5282 39.9076 65.0921 40.0872C64.6565 40.2656 64.1722 40.3556 63.6398 40.3556C63.1106 40.3556 62.628 40.2659 62.1924 40.0872C61.7564 39.9078 61.3827 39.6589 61.0714 39.3389C60.7597 39.0189 60.5184 38.6403 60.3475 38.2042C60.1764 37.7662 60.0908 37.2921 60.0908 36.7778C60.0908 36.2637 60.1761 35.7897 60.3475 35.3516C60.5181 34.9156 60.7597 34.537 61.0714 34.217C61.3827 33.8969 61.7564 33.6483 62.1924 33.4687C62.628 33.2902 63.1106 33.2005 63.6398 33.2005C63.995 33.2005 64.3291 33.2415 64.6419 33.3234C64.9548 33.4053 65.2422 33.5223 65.5038 33.6717C65.7653 33.8231 65.9998 34.0044 66.208 34.2201C66.4164 34.4346 66.5929 34.6738 66.7384 34.9392C66.8836 35.2037 66.9941 35.4906 67.0701 35.8006C67.1459 36.1097 67.1844 36.4363 67.1844 36.7778ZM65.8523 36.7778C65.8523 36.3934 65.8011 36.05 65.6978 35.7438C65.5944 35.4404 65.4475 35.1798 65.2573 34.9672C65.0667 34.7544 64.8354 34.5916 64.5627 34.4785C64.2894 34.3654 63.982 34.3086 63.6401 34.3086C63.2976 34.3086 62.9902 34.3652 62.7177 34.4785C62.445 34.5916 62.2129 34.7544 62.0206 34.9672C61.8285 35.18 61.6806 35.4404 61.5777 35.7438C61.4743 36.0502 61.4224 36.3937 61.4224 36.7778C61.4224 37.1622 61.4741 37.5057 61.5777 37.812C61.6806 38.1165 61.8285 38.3739 62.0206 38.5857C62.2129 38.7985 62.445 38.9604 62.7177 39.0725C62.9902 39.1856 63.2978 39.2431 63.6401 39.2431C63.982 39.2431 64.2894 39.1856 64.5627 39.0725C64.8352 38.9604 65.0665 38.7983 65.2573 38.5857C65.4475 38.3741 65.5944 38.1165 65.6978 37.812C65.8011 37.5057 65.8523 37.1622 65.8523 36.7778Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 25.8498H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M205.404 39.5553H198.172C197.962 39.5553 197.792 39.3852 197.792 39.1753V31.943C197.792 31.7332 197.962 31.563 198.172 31.563H205.404C205.614 31.563 205.784 31.7332 205.784 31.943V39.1753C205.784 39.3852 205.614 39.5553 205.404 39.5553Z" fill="#6D5ED4"/>
|
||||
<path d="M200.958 21.6093H197.255C197.045 21.6093 196.875 21.4391 196.875 21.2292V17.5269C196.875 17.3171 197.045 17.1469 197.255 17.1469H200.958C201.167 17.1469 201.338 17.3171 201.338 17.5269V21.2292C201.338 21.4391 201.167 21.6093 200.958 21.6093Z" fill="#6D5ED4"/>
|
||||
<path d="M216.357 39.5553H209.197C208.967 39.5553 208.781 39.3691 208.781 39.1395V31.9789C208.781 31.7493 208.967 31.563 209.197 31.563H216.357C216.587 31.563 216.773 31.7493 216.773 31.9789V39.1395C216.773 39.3691 216.587 39.5553 216.357 39.5553Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 39.5553H221.163C220.946 39.5553 220.769 39.3789 220.769 39.161V31.9574C220.769 31.7397 220.946 31.563 221.163 31.563H228.367C228.585 31.563 228.761 31.7395 228.761 31.9574V39.161C228.761 39.3789 228.585 39.5553 228.367 39.5553Z" fill="#6D5ED4"/>
|
||||
<path d="M66.5438 16.9687H40.7063V21.6H66.5438V16.9687Z" fill="#9181FF"/>
|
||||
<path d="M228.881 17.0623H203.044V21.6936H228.881V17.0623Z" fill="#9181FF"/>
|
||||
<path d="M8.79667 24.0007C9.59203 22.7532 10.9129 22.1294 12.7591 22.1294C14.6047 22.1294 15.9259 22.7534 16.7215 24.0007C17.5168 25.2484 17.9149 26.9735 17.9149 29.1757C17.9149 31.3909 17.5168 33.1286 16.7215 34.3891C15.9256 35.6492 14.6047 36.2796 12.7591 36.2796C10.9129 36.2796 9.59203 35.6495 8.79667 34.3891C8.00083 33.1289 7.60327 31.3909 7.60327 29.1757C7.60327 26.9735 8.00083 25.2484 8.79667 24.0007ZM15.0983 26.7984C14.9772 26.1557 14.7354 25.6304 14.3727 25.2231C14.0098 24.8158 13.4718 24.612 12.7591 24.612C12.0459 24.612 11.5084 24.8158 11.1454 25.2231C10.7827 25.6306 10.5407 26.1559 10.4198 26.7984C10.2987 27.4415 10.2385 28.2339 10.2385 29.1757C10.2385 30.1434 10.2957 30.9549 10.4103 31.6106C10.5249 32.2662 10.7667 32.7944 11.1359 33.1954C11.505 33.5964 12.0459 33.797 12.7591 33.797C13.4718 33.797 14.0129 33.5964 14.3822 33.1954C14.7512 32.7944 14.9933 32.2662 15.1078 31.6106C15.2224 30.9551 15.2797 30.1434 15.2797 29.1757C15.2799 28.2339 15.2192 27.4412 15.0983 26.7984Z" fill="white"/>
|
||||
<path d="M21.3237 23.1129C22.1573 22.4192 23.2554 22.0721 24.6177 22.0721C25.5469 22.0721 26.3428 22.2345 27.0048 22.5591C27.6666 22.8838 28.1663 23.3228 28.5039 23.8766C28.841 24.4304 29.0099 25.0576 29.0099 25.7576C29.0099 26.5598 28.8027 27.2377 28.3893 27.7915C27.9754 28.3453 27.4823 28.7175 26.9092 28.9086V28.9849C27.6476 29.214 28.2238 29.6216 28.6374 30.207C29.0508 30.7928 29.258 31.5438 29.258 32.4605C29.258 33.2244 29.083 33.9055 28.733 34.5039C28.3827 35.1025 27.8672 35.5703 27.1861 35.9074C26.5051 36.245 25.6871 36.4134 24.7323 36.4134C23.2935 36.4134 22.1222 36.0507 21.2187 35.3251C20.3146 34.5994 19.8371 33.5301 19.7864 32.1168H22.3835C22.4089 32.7408 22.6222 33.2405 23.0234 33.6159C23.4243 33.9915 23.9747 34.1792 24.675 34.1792C25.3244 34.1792 25.8238 33.9978 26.1741 33.6349C26.5241 33.2722 26.6994 32.8042 26.6994 32.2314C26.6994 31.4675 26.4573 30.9203 25.9737 30.589C25.4896 30.2582 24.7386 30.0925 23.7203 30.0925H23.1665V27.8963H23.7203C25.5279 27.8963 26.432 27.2918 26.432 26.0823C26.432 25.5351 26.2696 25.1083 25.945 24.8029C25.6203 24.4974 25.1525 24.3446 24.5415 24.3446C23.9428 24.3446 23.4816 24.5069 23.157 24.8316C22.8323 25.1563 22.6443 25.5668 22.5936 26.0633H19.9775C20.0411 24.7902 20.4898 23.8069 21.3237 23.1129Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2832">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.637489)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="234" height="52" viewBox="0 0 234 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2790)">
|
||||
<path d="M233.756 1.13858H-0.0144043V51.0895H233.756V1.13858Z" fill="white"/>
|
||||
<path d="M233.756 0.867279H-0.0144043V11.8565H233.756V0.867279Z" fill="#9181FF"/>
|
||||
<path d="M74.8754 42.4164C74.8754 43.6418 73.8819 44.635 72.6563 44.635H62.109C60.8837 44.635 59.8899 43.642 59.8899 42.4164V41.8585C59.8899 40.6331 60.8834 39.6399 62.109 39.6399H72.6563C73.8816 39.6399 74.8754 40.6329 74.8754 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M56.56 42.4164C56.56 43.6418 55.5664 44.635 54.3409 44.635H43.7936C42.5682 44.635 41.5745 43.642 41.5745 42.4164V41.8585C41.5745 40.6331 42.568 39.6399 43.7936 39.6399H54.3409C55.5662 39.6399 56.56 40.6329 56.56 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M93.1908 42.4164C93.1908 43.6418 92.1973 44.635 90.9717 44.635H80.4244C79.1991 44.635 78.2053 43.642 78.2053 42.4164V41.8585C78.2053 40.6331 79.1988 39.6399 80.4244 39.6399H90.9717C92.1971 39.6399 93.1908 40.6329 93.1908 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M111.506 42.4164C111.506 43.6418 110.512 44.635 109.286 44.635H98.7401C97.5143 44.635 96.5205 43.642 96.5205 42.4164V41.8585C96.5205 40.6331 97.514 39.6399 98.7401 39.6399H109.286C110.512 39.6399 111.506 40.6329 111.506 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M130.519 42.4164C130.519 43.6418 129.525 44.635 128.299 44.635H117.753C116.527 44.635 115.533 43.642 115.533 42.4164V41.8585C115.533 40.6331 116.527 39.6399 117.753 39.6399H128.299C129.524 39.6399 130.519 40.6329 130.519 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M149.531 42.4164C149.531 43.6418 148.537 44.635 147.312 44.635H136.765C135.539 44.635 134.546 43.642 134.546 42.4164V41.8585C134.546 40.6331 135.539 39.6399 136.765 39.6399H147.312C148.537 39.6399 149.531 40.6329 149.531 41.8585V42.4164Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 1.13858H-0.0761719V51.0895H36.9685V1.13858Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.8332V15.5547H9.86658V13.5457H7.84419V15.5547H6.89722V10.8332H7.84419V12.7745H9.86658V10.8332H10.8135V10.8332Z" fill="white"/>
|
||||
<path d="M15.2035 13.9649H12.464C12.4865 14.2355 12.5813 14.4476 12.7482 14.6006C12.915 14.754 13.1202 14.8307 13.3637 14.8307C13.7154 14.8307 13.9658 14.6796 14.1145 14.3776H15.1358C15.0276 14.7384 14.8201 15.035 14.5135 15.267C14.2068 15.4993 13.8303 15.6154 13.3839 15.6154C13.0232 15.6154 12.6995 15.5352 12.4133 15.3753C12.1269 15.2151 11.9037 14.9887 11.7435 14.6955C11.5834 14.4025 11.5034 14.0641 11.5034 13.6807C11.5034 13.2929 11.5821 12.9526 11.7401 12.6594C11.8978 12.3664 12.1189 12.141 12.4029 11.983C12.6871 11.8253 13.0139 11.7463 13.3837 11.7463C13.7398 11.7463 14.0591 11.8231 14.3409 11.9762C14.6227 12.1295 14.8416 12.3472 14.9971 12.6289C15.1526 12.9107 15.2306 13.2342 15.2306 13.5996C15.2306 13.7351 15.2216 13.8567 15.2035 13.9649ZM14.25 13.3292C14.2454 13.0857 14.1576 12.8907 13.986 12.7442C13.8144 12.5977 13.605 12.5244 13.3569 12.5244C13.1224 12.5244 12.925 12.5953 12.7651 12.7374C12.6049 12.8795 12.5067 13.0767 12.4709 13.3292H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.6594C16.0546 12.3664 16.2596 12.141 16.5189 11.983C16.7783 11.8253 17.0678 11.7463 17.3881 11.7463C17.6677 11.7463 17.9124 11.8026 18.1221 11.9155C18.3317 12.0283 18.4996 12.1702 18.6259 12.3416V11.8073H19.5797V15.5547H18.6259V15.0067C18.504 15.1827 18.3361 15.328 18.1221 15.443C17.9078 15.5581 17.6609 15.6156 17.3813 15.6156C17.0656 15.6156 16.778 15.5344 16.5187 15.3719C16.2593 15.2093 16.0541 14.9809 15.9032 14.6855C15.7521 14.3903 15.6768 14.0507 15.6768 13.6673C15.677 13.2885 15.7526 12.9526 15.9034 12.6594ZM18.4909 13.0889C18.4007 12.9244 18.2788 12.7981 18.1255 12.7101C17.9722 12.6221 17.8076 12.578 17.6316 12.578C17.4559 12.578 17.2936 12.6209 17.1446 12.7065C16.9959 12.7923 16.8753 12.9173 16.7829 13.0818C16.6905 13.2466 16.6442 13.4416 16.6442 13.6668C16.6442 13.8925 16.6903 14.0897 16.7829 14.2587C16.8753 14.4278 16.9969 14.5575 17.1483 14.6477C17.2994 14.7381 17.4605 14.783 17.6319 14.783C17.8079 14.783 17.9724 14.7391 18.1257 14.6511C18.279 14.5631 18.4007 14.4371 18.4911 14.2723C18.5813 14.1078 18.6264 13.9103 18.6264 13.6805C18.6264 13.4506 18.581 13.2537 18.4909 13.0889Z" fill="white"/>
|
||||
<path d="M20.4896 12.6594C20.6408 12.3664 20.847 12.141 21.1088 11.983C21.3703 11.8253 21.6611 11.7463 21.9814 11.7463C22.2249 11.7463 22.4572 11.7995 22.678 11.9053C22.8989 12.0113 23.0748 12.1522 23.2057 12.3279V10.549H24.1661V15.5547H23.2057V15.0001C23.0885 15.1852 22.924 15.3338 22.7119 15.4467C22.4998 15.5593 22.2541 15.6159 21.9746 15.6159C21.6589 15.6159 21.3703 15.5347 21.1088 15.3721C20.8472 15.2098 20.6408 14.9811 20.4896 14.6857C20.3385 14.3905 20.2632 14.051 20.2632 13.6676C20.2629 13.2885 20.3385 12.9526 20.4896 12.6594ZM23.0768 13.0889C22.9866 12.9244 22.8647 12.7981 22.7114 12.7101C22.5581 12.6221 22.3936 12.578 22.2176 12.578C22.0418 12.578 21.8795 12.6209 21.7306 12.7065C21.5819 12.7923 21.4612 12.9173 21.3688 13.0818C21.2765 13.2466 21.2301 13.4416 21.2301 13.6668C21.2301 13.8925 21.2762 14.0897 21.3688 14.2587C21.4612 14.4278 21.5828 14.5575 21.7342 14.6477C21.8853 14.7381 22.0465 14.783 22.2178 14.783C22.3938 14.783 22.5583 14.7391 22.7117 14.6511C22.865 14.5631 22.9866 14.4371 23.077 14.2723C23.1672 14.1078 23.2123 13.9103 23.2123 13.6805C23.2123 13.4506 23.1672 13.2537 23.0768 13.0889Z" fill="white"/>
|
||||
<path d="M28.5492 13.9649H25.8097C25.8322 14.2355 25.927 14.4476 26.094 14.6006C26.2607 14.754 26.4659 14.8307 26.7094 14.8307C27.0612 14.8307 27.3115 14.6796 27.4602 14.3776H28.4815C28.3733 14.7384 28.1658 15.035 27.8592 15.267C27.5526 15.4993 27.176 15.6154 26.7297 15.6154C26.3689 15.6154 26.0452 15.5352 25.759 15.3753C25.4726 15.2151 25.2494 14.9887 25.0892 14.6955C24.9291 14.4025 24.8491 14.0641 24.8491 13.6807C24.8491 13.2929 24.9279 12.9526 25.0858 12.6594C25.2435 12.3664 25.4646 12.141 25.7486 11.983C26.0328 11.8253 26.3596 11.7463 26.7294 11.7463C27.0855 11.7463 27.4048 11.8231 27.6866 11.9762C27.9684 12.1295 28.1873 12.3472 28.3428 12.6289C28.4983 12.9107 28.5763 13.2342 28.5763 13.5996C28.5763 13.7351 28.567 13.8567 28.5492 13.9649ZM27.5955 13.3292C27.5908 13.0857 27.5031 12.8907 27.3315 12.7442C27.1599 12.5977 26.9505 12.5244 26.7024 12.5244C26.4679 12.5244 26.2704 12.5953 26.1105 12.7374C25.9504 12.8795 25.8522 13.0767 25.8163 13.3292H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.9221C30.8863 11.8095 31.1106 11.7532 31.3631 11.7532V12.7474H31.1128C30.8151 12.7474 30.5906 12.8174 30.4398 12.957C30.2886 13.097 30.2131 13.3405 30.2131 13.6876V15.5544H29.2661V11.8073H30.2131V12.3891C30.335 12.1904 30.4939 12.0349 30.6901 11.9221Z" fill="white"/>
|
||||
<path d="M44.971 26.0096V27.0845H40.8706V20.0836H42.1732V26.0094H44.971V26.0096Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 23.584C52.3302 24.0984 52.2449 24.5725 52.0757 25.0105C51.9063 25.4465 51.6665 25.8251 51.3571 26.1451C51.0468 26.4652 50.6741 26.7138 50.2386 26.8934C49.8025 27.0719 49.3187 27.1618 48.7858 27.1618C48.2566 27.1618 47.774 27.0721 47.3384 26.8934C46.9024 26.7138 46.5287 26.4652 46.2174 26.1451C45.9057 25.8251 45.6648 25.4465 45.4935 25.0105C45.3224 24.5725 45.2368 24.0984 45.2368 23.584C45.2368 23.07 45.3221 22.5959 45.4935 22.1579C45.6646 21.7218 45.9057 21.3433 46.2174 21.0232C46.5287 20.7032 46.9024 20.4545 47.3384 20.2749C47.774 20.0965 48.2564 20.0068 48.7858 20.0068C49.141 20.0068 49.4751 20.0477 49.7876 20.1296C50.1008 20.2115 50.3882 20.3285 50.65 20.4779C50.9111 20.6293 51.146 20.8107 51.354 21.0264C51.5624 21.2409 51.7388 21.48 51.8841 21.7454C52.0296 22.0099 52.1398 22.2968 52.2159 22.6069C52.2919 22.9159 52.3302 23.2426 52.3302 23.584ZM50.9986 23.584C50.9986 23.1997 50.9469 22.8562 50.8436 22.5501C50.7404 22.2466 50.5932 21.986 50.4031 21.7735C50.2125 21.5607 49.9812 21.3979 49.7084 21.2848C49.4352 21.1717 49.128 21.1149 48.7861 21.1149C48.4436 21.1149 48.1362 21.1714 47.8635 21.2848C47.591 21.3979 47.3587 21.5607 47.1663 21.7735C46.974 21.9863 46.8268 22.2466 46.7234 22.5501C46.6201 22.8565 46.5684 23.1999 46.5684 23.584C46.5684 23.9684 46.6201 24.3119 46.7234 24.6183C46.8268 24.9227 46.9743 25.1801 47.1663 25.3919C47.3587 25.6047 47.5907 25.7666 47.8635 25.8787C48.1362 25.9918 48.4436 26.0493 48.7861 26.0493C49.128 26.0493 49.4354 25.9918 49.7084 25.8787C49.9812 25.7666 50.2122 25.6045 50.4031 25.3919C50.5935 25.1804 50.7407 24.9227 50.8436 24.6183C50.9469 24.3119 50.9986 23.9684 50.9986 23.584Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 23.5745V26.4067C58.8937 26.6682 58.5152 26.8593 58.1132 26.9802C57.7113 27.1021 57.2816 27.1618 56.8231 27.1618C56.2517 27.1618 55.7342 27.0741 55.2714 26.8954C54.808 26.7187 54.4129 26.472 54.0855 26.1549C53.7577 25.8397 53.5049 25.4612 53.3275 25.0212C53.1502 24.5832 53.0615 24.1042 53.0615 23.584C53.0615 23.0573 53.1468 22.5754 53.3182 22.1372C53.4888 21.6972 53.7318 21.3196 54.0465 21.0044C54.3612 20.6873 54.7432 20.4414 55.1914 20.2678C55.6402 20.0933 56.144 20.0063 56.7022 20.0063C56.9861 20.0063 57.2518 20.0287 57.4987 20.0736C57.7454 20.1194 57.9748 20.1808 58.1861 20.2598C58.3977 20.3388 58.5905 20.4343 58.7645 20.5484C58.9386 20.6615 59.0987 20.7846 59.244 20.9201L58.8713 21.5114C58.8133 21.606 58.7372 21.6628 58.6436 21.6833C58.55 21.7047 58.4486 21.6813 58.3387 21.6141C58.2319 21.5526 58.1254 21.4912 58.0192 21.4298C57.9121 21.3684 57.7937 21.3145 57.663 21.2709C57.5329 21.225 57.3854 21.187 57.2226 21.1587C57.0598 21.1305 56.8713 21.1149 56.6588 21.1149C56.3134 21.1149 56.0007 21.1724 55.7218 21.2894C55.4427 21.4064 55.2048 21.5714 55.0076 21.7869C54.8109 22.0045 54.6593 22.2629 54.5525 22.5674C54.4463 22.8699 54.3929 23.2104 54.3929 23.584C54.3929 23.984 54.4499 24.3421 54.5647 24.6573C54.6793 24.9715 54.8407 25.2379 55.0491 25.4553C55.257 25.6737 55.508 25.8397 55.8018 25.9548C56.0955 26.0698 56.4233 26.1264 56.7848 26.1264C57.0429 26.1264 57.2735 26.0981 57.4771 26.0445C57.6803 25.9889 57.879 25.9148 58.0728 25.82V24.5517H57.1914C57.1075 24.5517 57.0422 24.5293 56.9959 24.4825C56.9491 24.4347 56.9252 24.3782 56.9252 24.3109V23.5743H59.2489V23.5745Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 23.584C67.1844 24.0984 67.0991 24.5725 66.9297 25.0105C66.7601 25.4465 66.5205 25.8251 66.2107 26.1451C65.9008 26.4652 65.5282 26.7138 65.0921 26.8934C64.6565 27.0719 64.1722 27.1618 63.6398 27.1618C63.1106 27.1618 62.628 27.0721 62.1924 26.8934C61.7564 26.7138 61.3827 26.4652 61.0714 26.1451C60.7597 25.8251 60.5184 25.4465 60.3475 25.0105C60.1764 24.5725 60.0908 24.0984 60.0908 23.584C60.0908 23.07 60.1761 22.5959 60.3475 22.1579C60.5181 21.7218 60.7597 21.3433 61.0714 21.0232C61.3827 20.7032 61.7564 20.4545 62.1924 20.2749C62.628 20.0965 63.1106 20.0068 63.6398 20.0068C63.995 20.0068 64.3291 20.0477 64.6419 20.1296C64.9548 20.2115 65.2422 20.3285 65.5038 20.4779C65.7653 20.6293 65.9998 20.8107 66.208 21.0264C66.4164 21.2409 66.5929 21.48 66.7384 21.7454C66.8836 22.0099 66.9941 22.2968 67.0701 22.6069C67.1459 22.9159 67.1844 23.2426 67.1844 23.584ZM65.8523 23.584C65.8523 23.1997 65.8011 22.8562 65.6978 22.5501C65.5944 22.2466 65.4475 21.986 65.2573 21.7735C65.0667 21.5607 64.8354 21.3979 64.5627 21.2848C64.2894 21.1717 63.982 21.1149 63.6401 21.1149C63.2976 21.1149 62.9902 21.1714 62.7177 21.2848C62.445 21.3979 62.2129 21.5607 62.0206 21.7735C61.8285 21.9863 61.6806 22.2466 61.5777 22.5501C61.4743 22.8565 61.4224 23.1999 61.4224 23.584C61.4224 23.9684 61.4741 24.3119 61.5777 24.6183C61.6806 24.9227 61.8285 25.1801 62.0206 25.3919C62.2129 25.6047 62.445 25.7666 62.7177 25.8787C62.9902 25.9918 63.2978 26.0493 63.6401 26.0493C63.982 26.0493 64.2894 25.9918 64.5627 25.8787C64.8352 25.7666 65.0665 25.6045 65.2573 25.3919C65.4475 25.1804 65.5944 24.9227 65.6978 24.6183C65.8011 24.3119 65.8523 23.9684 65.8523 23.584Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 33.8623H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.075 26.6053H198.843C198.633 26.6053 198.463 26.4352 198.463 26.2253V18.993C198.463 18.7831 198.633 18.613 198.843 18.613H206.075C206.285 18.613 206.455 18.7831 206.455 18.993V26.2253C206.455 26.4352 206.285 26.6053 206.075 26.6053Z" fill="#6D5ED4"/>
|
||||
<path d="M194.922 26.6053H187.69C187.48 26.6053 187.31 26.4352 187.31 26.2253V18.993C187.31 18.7831 187.48 18.613 187.69 18.613H194.922C195.132 18.613 195.302 18.7831 195.302 18.993V26.2253C195.302 26.4352 195.132 26.6053 194.922 26.6053Z" fill="#6D5ED4"/>
|
||||
<path d="M217.192 26.6053H210.032C209.802 26.6053 209.616 26.4191 209.616 26.1895V19.0288C209.616 18.7992 209.802 18.613 210.032 18.613H217.192C217.422 18.613 217.608 18.7992 217.608 19.0288V26.1895C217.608 26.4191 217.422 26.6053 217.192 26.6053Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 26.6053H221.163C220.946 26.6053 220.769 26.4289 220.769 26.2109V19.0074C220.769 18.7897 220.946 18.613 221.163 18.613H228.367C228.585 18.613 228.761 18.7895 228.761 19.0074V26.2109C228.761 26.4286 228.585 26.6053 228.367 26.6053Z" fill="#6D5ED4"/>
|
||||
<path d="M228.881 39.8217H203.044V44.453H228.881V39.8217Z" fill="#9181FF"/>
|
||||
<path d="M7.96513 24.3136C8.76048 23.0661 10.0814 22.4423 11.9275 22.4423C13.7732 22.4423 15.0943 23.0663 15.8899 24.3136C16.6853 25.5613 17.0833 27.2864 17.0833 29.4886C17.0833 31.7038 16.6853 33.4415 15.8899 34.702C15.0941 35.9622 13.7732 36.5925 11.9275 36.5925C10.0814 36.5925 8.76048 35.9624 7.96513 34.702C7.16928 33.4418 6.77173 31.7038 6.77173 29.4886C6.77173 27.2864 7.16928 25.5613 7.96513 24.3136ZM14.2668 27.1111C14.1457 26.4683 13.9039 25.9431 13.5412 25.5358C13.1782 25.1284 12.6403 24.9247 11.9275 24.9247C11.2143 24.9247 10.6768 25.1284 10.3139 25.5358C9.9512 25.9433 9.70916 26.4686 9.58826 27.1111C9.46712 27.7541 9.40691 28.5466 9.40691 29.4884C9.40691 30.4561 9.46419 31.2675 9.57875 31.9232C9.69332 32.5789 9.93512 33.1071 10.3044 33.5081C10.6734 33.9091 11.2143 34.1097 11.9275 34.1097C12.6403 34.1097 13.1814 33.9091 13.5507 33.5081C13.9197 33.1071 14.1617 32.5789 14.2763 31.9232C14.3909 31.2678 14.4481 30.4561 14.4481 29.4884C14.4481 28.5466 14.3877 27.7541 14.2668 27.1111Z" fill="white"/>
|
||||
<path d="M18.9932 33.9188V31.8182L25.2376 22.8811H28.3502V31.5888H30.0307V33.9186H28.3502V36.6303H25.6768V33.9186H18.9932V33.9188ZM25.8486 25.7459L21.934 31.5893H25.8486V25.7459Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2790">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.849976)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2703)">
|
||||
<path d="M233.756 0.351105H-0.0144043V50.3021H233.756V0.351105Z" fill="white"/>
|
||||
<path d="M233.756 0.187775H-0.0144043V11.177H233.756V0.187775Z" fill="#9181FF"/>
|
||||
<path d="M129.353 41.6289C129.353 42.8543 128.359 43.8476 127.134 43.8476H116.586C115.361 43.8476 114.367 42.8545 114.367 41.6289V41.071C114.367 39.8457 115.361 38.8524 116.586 38.8524H127.134C128.359 38.8524 129.353 39.8454 129.353 41.071V41.6289Z" fill="#6D5ED4"/>
|
||||
<path d="M111.037 41.6289C111.037 42.8543 110.044 43.8476 108.818 43.8476H98.2709C97.0455 43.8476 96.0518 42.8545 96.0518 41.6289V41.071C96.0518 39.8457 97.0453 38.8524 98.2709 38.8524H108.818C110.043 38.8524 111.037 39.8454 111.037 41.071V41.6289Z" fill="#6D5ED4"/>
|
||||
<path d="M147.668 41.6289C147.668 42.8543 146.675 43.8476 145.449 43.8476H134.902C133.676 43.8476 132.683 42.8545 132.683 41.6289V41.071C132.683 39.8457 133.676 38.8524 134.902 38.8524H145.449C146.674 38.8524 147.668 39.8454 147.668 41.071V41.6289Z" fill="#6D5ED4"/>
|
||||
<path d="M165.983 41.6289C165.983 42.8543 164.989 43.8476 163.764 43.8476H153.217C151.992 43.8476 150.998 42.8545 150.998 41.6289V41.071C150.998 39.8457 151.991 38.8524 153.217 38.8524H163.764C164.989 38.8524 165.983 39.8454 165.983 41.071V41.6289Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.351105H-0.0761719V50.3021H36.9685V0.351105Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.0458V14.7672H9.86658V12.7582H7.84419V14.7672H6.89722V10.0458H7.84419V11.987H9.86658V10.0458H10.8135V10.0458Z" fill="white"/>
|
||||
<path d="M15.2035 13.1775H12.464C12.4865 13.448 12.5813 13.6601 12.7482 13.8132C12.915 13.9665 13.1202 14.0433 13.3637 14.0433C13.7154 14.0433 13.9658 13.8922 14.1145 13.5901H15.1358C15.0276 13.9509 14.8201 14.2475 14.5135 14.4796C14.2068 14.7119 13.8303 14.8279 13.3839 14.8279C13.0232 14.8279 12.6995 14.7477 12.4133 14.5878C12.1269 14.4277 11.9037 14.2012 11.7435 13.908C11.5834 13.615 11.5034 13.2767 11.5034 12.8933C11.5034 12.5055 11.5821 12.1652 11.7401 11.872C11.8978 11.579 12.1189 11.3535 12.4029 11.1955C12.6871 11.0378 13.0139 10.9589 13.3837 10.9589C13.7398 10.9589 14.0591 11.0356 14.3409 11.1887C14.6227 11.342 14.8416 11.5597 14.9971 11.8415C15.1526 12.1233 15.2306 12.4467 15.2306 12.8121C15.2306 12.9476 15.2216 13.0693 15.2035 13.1775ZM14.25 12.5418C14.2454 12.2983 14.1576 12.1033 13.986 11.9568C13.8144 11.8103 13.605 11.7369 13.3569 11.7369C13.1224 11.7369 12.925 11.8078 12.7651 11.95C12.6049 12.0921 12.5067 12.2892 12.4709 12.5418H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 11.872C16.0546 11.579 16.2596 11.3535 16.5189 11.1955C16.7783 11.0378 17.0678 10.9589 17.3881 10.9589C17.6677 10.9589 17.9124 11.0152 18.1221 11.128C18.3317 11.2409 18.4996 11.3827 18.6259 11.5541V11.0198H19.5797V14.7672H18.6259V14.2193C18.504 14.3952 18.3361 14.5405 18.1221 14.6556C17.9078 14.7706 17.6609 14.8282 17.3813 14.8282C17.0656 14.8282 16.778 14.747 16.5187 14.5844C16.2593 14.4218 16.0541 14.1934 15.9032 13.898C15.7521 13.6028 15.6768 13.2633 15.6768 12.8799C15.677 12.5011 15.7526 12.1652 15.9034 11.872ZM18.4909 12.3014C18.4007 12.1369 18.2788 12.0106 18.1255 11.9227C17.9722 11.8347 17.8076 11.7905 17.6316 11.7905C17.4559 11.7905 17.2936 11.8334 17.1446 11.919C16.9959 12.0048 16.8753 12.1298 16.7829 12.2944C16.6905 12.4591 16.6442 12.6541 16.6442 12.8794C16.6442 13.1051 16.6903 13.3023 16.7829 13.4712C16.8753 13.6404 16.9969 13.77 17.1483 13.8602C17.2994 13.9506 17.4605 13.9955 17.6319 13.9955C17.8079 13.9955 17.9724 13.9516 18.1257 13.8636C18.279 13.7756 18.4007 13.6496 18.4911 13.4848C18.5813 13.3203 18.6264 13.1229 18.6264 12.893C18.6264 12.6632 18.581 12.4662 18.4909 12.3014Z" fill="white"/>
|
||||
<path d="M20.4896 11.872C20.6408 11.579 20.847 11.3535 21.1088 11.1955C21.3703 11.0378 21.6611 10.9589 21.9814 10.9589C22.2249 10.9589 22.4572 11.012 22.678 11.1178C22.8989 11.2238 23.0748 11.3647 23.2057 11.5405V9.76157H24.1661V14.7672H23.2057V14.2127C23.0885 14.3977 22.924 14.5464 22.7119 14.6592C22.4998 14.7718 22.2541 14.8284 21.9746 14.8284C21.6589 14.8284 21.3703 14.7472 21.1088 14.5846C20.8472 14.4223 20.6408 14.1937 20.4896 13.8982C20.3385 13.6031 20.2632 13.2635 20.2632 12.8801C20.2629 12.5011 20.3385 12.1652 20.4896 11.872ZM23.0768 12.3014C22.9866 12.1369 22.8647 12.0106 22.7114 11.9227C22.5581 11.8347 22.3936 11.7905 22.2176 11.7905C22.0418 11.7905 21.8795 11.8334 21.7306 11.919C21.5819 12.0048 21.4612 12.1298 21.3688 12.2944C21.2765 12.4591 21.2301 12.6541 21.2301 12.8794C21.2301 13.1051 21.2762 13.3023 21.3688 13.4712C21.4612 13.6404 21.5828 13.77 21.7342 13.8602C21.8853 13.9507 22.0465 13.9955 22.2178 13.9955C22.3938 13.9955 22.5583 13.9516 22.7117 13.8636C22.865 13.7756 22.9866 13.6496 23.077 13.4848C23.1672 13.3203 23.2123 13.1229 23.2123 12.893C23.2123 12.6632 23.1672 12.4662 23.0768 12.3014Z" fill="white"/>
|
||||
<path d="M28.5492 13.1775H25.8097C25.8322 13.448 25.927 13.6601 26.094 13.8132C26.2607 13.9665 26.4659 14.0433 26.7094 14.0433C27.0612 14.0433 27.3115 13.8922 27.4602 13.5901H28.4815C28.3733 13.9509 28.1658 14.2475 27.8592 14.4796C27.5526 14.7119 27.176 14.8279 26.7297 14.8279C26.3689 14.8279 26.0452 14.7477 25.759 14.5878C25.4726 14.4277 25.2494 14.2012 25.0892 13.908C24.9291 13.615 24.8491 13.2767 24.8491 12.8933C24.8491 12.5055 24.9279 12.1652 25.0858 11.872C25.2435 11.579 25.4646 11.3535 25.7486 11.1955C26.0328 11.0378 26.3596 10.9589 26.7294 10.9589C27.0855 10.9589 27.4048 11.0356 27.6866 11.1887C27.9684 11.342 28.1873 11.5597 28.3428 11.8415C28.4983 12.1233 28.5763 12.4467 28.5763 12.8121C28.5763 12.9476 28.567 13.0693 28.5492 13.1775ZM27.5955 12.5418C27.5908 12.2983 27.5031 12.1033 27.3315 11.9568C27.1599 11.8103 26.9505 11.7369 26.7024 11.7369C26.4679 11.7369 26.2704 11.8078 26.1105 11.95C25.9504 12.0921 25.8522 12.2892 25.8163 12.5418H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.1346C30.8863 11.022 31.1106 10.9657 31.3631 10.9657V11.96H31.1128C30.8151 11.96 30.5906 12.0299 30.4398 12.1696C30.2886 12.3095 30.2131 12.553 30.2131 12.9001V14.767H29.2661V11.0198H30.2131V11.6016C30.335 11.403 30.4939 11.2475 30.6901 11.1346Z" fill="white"/>
|
||||
<path d="M44.971 24.7176V25.7925H40.8706V18.7918H42.1732V24.7176H44.971Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 22.292C52.3302 22.8063 52.2449 23.2804 52.0757 23.7185C51.9063 24.1545 51.6665 24.5331 51.3571 24.8531C51.0468 25.1732 50.6741 25.4218 50.2386 25.6014C49.8025 25.7798 49.3187 25.8698 48.7858 25.8698C48.2566 25.8698 47.774 25.7801 47.3384 25.6014C46.9024 25.4218 46.5287 25.1732 46.2174 24.8531C45.9057 24.5331 45.6648 24.1545 45.4935 23.7185C45.3224 23.2804 45.2368 22.8063 45.2368 22.292C45.2368 21.778 45.3221 21.3039 45.4935 20.8658C45.6646 20.4298 45.9057 20.0512 46.2174 19.7312C46.5287 19.4111 46.9024 19.1625 47.3384 18.9829C47.774 18.8045 48.2564 18.7148 48.7858 18.7148C49.141 18.7148 49.4751 18.7557 49.7876 18.8376C50.1008 18.9195 50.3882 19.0365 50.65 19.1859C50.9111 19.3373 51.146 19.5186 51.354 19.7344C51.5624 19.9489 51.7388 20.188 51.8841 20.4534C52.0296 20.7179 52.1398 21.0048 52.2159 21.3148C52.2919 21.6239 52.3302 21.9508 52.3302 22.292ZM50.9986 22.292C50.9986 21.9076 50.9469 21.5642 50.8436 21.258C50.7404 20.9546 50.5932 20.694 50.4031 20.4815C50.2125 20.2687 49.9812 20.1058 49.7084 19.9927C49.4352 19.8796 49.128 19.8228 48.7861 19.8228C48.4436 19.8228 48.1362 19.8794 47.8635 19.9927C47.591 20.1058 47.3587 20.2687 47.1663 20.4815C46.974 20.6942 46.8268 20.9546 46.7234 21.258C46.6201 21.5644 46.5684 21.9079 46.5684 22.292C46.5684 22.6764 46.6201 23.0199 46.7234 23.3263C46.8268 23.6307 46.9743 23.8881 47.1663 24.0999C47.3587 24.3127 47.5907 24.4746 47.8635 24.5867C48.1362 24.6998 48.4436 24.7573 48.7861 24.7573C49.128 24.7573 49.4354 24.6998 49.7084 24.5867C49.9812 24.4746 50.2122 24.3125 50.4031 24.0999C50.5935 23.8883 50.7407 23.6307 50.8436 23.3263C50.9469 23.0199 50.9986 22.6767 50.9986 22.292Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 22.2825V25.1147C58.8937 25.3762 58.5152 25.5673 58.1132 25.6882C57.7113 25.8101 57.2816 25.8698 56.8231 25.8698C56.2517 25.8698 55.7342 25.782 55.2714 25.6034C54.808 25.4267 54.4129 25.18 54.0855 24.8629C53.7577 24.5477 53.5049 24.1691 53.3275 23.7292C53.1502 23.2912 53.0615 22.8122 53.0615 22.292C53.0615 21.7653 53.1468 21.2834 53.3182 20.8451C53.4888 20.4052 53.7318 20.0276 54.0465 19.7124C54.3612 19.3953 54.7432 19.1494 55.1914 18.9758C55.6402 18.8013 56.144 18.7143 56.7022 18.7143C56.9861 18.7143 57.2518 18.7367 57.4987 18.7815C57.7454 18.8274 57.9748 18.8888 58.1861 18.9678C58.3977 19.0467 58.5905 19.1423 58.7645 19.2564C58.9386 19.3695 59.0987 19.4926 59.244 19.6281L58.8713 20.2194C58.8133 20.314 58.7372 20.3708 58.6436 20.3913C58.55 20.4127 58.4486 20.3893 58.3387 20.322C58.2319 20.2606 58.1254 20.1992 58.0192 20.1378C57.9121 20.0763 57.7937 20.0225 57.663 19.9788C57.5329 19.933 57.3854 19.895 57.2226 19.8667C57.0598 19.8384 56.8713 19.8228 56.6588 19.8228C56.3134 19.8228 56.0007 19.8804 55.7218 19.9974C55.4427 20.1144 55.2048 20.2794 55.0076 20.4949C54.8109 20.7125 54.6593 20.9709 54.5525 21.2753C54.4463 21.5778 54.3929 21.9184 54.3929 22.292C54.3929 22.692 54.4499 23.0501 54.5647 23.3653C54.6793 23.6795 54.8407 23.9459 55.0491 24.1633C55.257 24.3817 55.508 24.5477 55.8018 24.6627C56.0955 24.7778 56.4233 24.8343 56.7848 24.8343C57.0429 24.8343 57.2735 24.8061 57.4771 24.7524C57.6803 24.6969 57.879 24.6228 58.0728 24.5279V23.2597H57.1914C57.1075 23.2597 57.0422 23.2373 56.9959 23.1905C56.9491 23.1427 56.9252 23.0862 56.9252 23.0189V22.2823H59.2489V22.2825Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 22.292C67.1844 22.8063 67.0991 23.2804 66.9297 23.7185C66.7601 24.1545 66.5205 24.5331 66.2107 24.8531C65.9008 25.1732 65.5282 25.4218 65.0921 25.6014C64.6565 25.7798 64.1722 25.8698 63.6398 25.8698C63.1106 25.8698 62.628 25.7801 62.1924 25.6014C61.7564 25.4218 61.3827 25.1732 61.0714 24.8531C60.7597 24.5331 60.5184 24.1545 60.3475 23.7185C60.1764 23.2804 60.0908 22.8063 60.0908 22.292C60.0908 21.778 60.1761 21.3039 60.3475 20.8658C60.5181 20.4298 60.7597 20.0512 61.0714 19.7312C61.3827 19.4111 61.7564 19.1625 62.1924 18.9829C62.628 18.8045 63.1106 18.7148 63.6398 18.7148C63.995 18.7148 64.3291 18.7557 64.6419 18.8376C64.9548 18.9195 65.2422 19.0365 65.5038 19.1859C65.7653 19.3373 65.9998 19.5186 66.208 19.7344C66.4164 19.9489 66.5929 20.188 66.7384 20.4534C66.8836 20.7179 66.9941 21.0048 67.0701 21.3148C67.1459 21.6239 67.1844 21.9508 67.1844 22.292ZM65.8523 22.292C65.8523 21.9076 65.8011 21.5642 65.6978 21.258C65.5944 20.9546 65.4475 20.694 65.2573 20.4815C65.0667 20.2687 64.8354 20.1058 64.5627 19.9927C64.2894 19.8796 63.982 19.8228 63.6401 19.8228C63.2976 19.8228 62.9902 19.8794 62.7177 19.9927C62.445 20.1058 62.2129 20.2687 62.0206 20.4815C61.8285 20.6942 61.6806 20.9546 61.5777 21.258C61.4743 21.5644 61.4224 21.9079 61.4224 22.292C61.4224 22.6764 61.4741 23.0199 61.5777 23.3263C61.6806 23.6307 61.8285 23.8881 62.0206 24.0999C62.2129 24.3127 62.445 24.4746 62.7177 24.5867C62.9902 24.6998 63.2978 24.7573 63.6401 24.7573C63.982 24.7573 64.2894 24.6998 64.5627 24.5867C64.8352 24.4746 65.0665 24.3125 65.2573 24.0999C65.4475 23.8883 65.5944 23.6307 65.6978 23.3263C65.8011 23.0199 65.8523 22.6767 65.8523 22.292Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 33.0748H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.075 26.2883H198.843C198.633 26.2883 198.463 26.1182 198.463 25.9083V18.676C198.463 18.4661 198.633 18.296 198.843 18.296H206.075C206.285 18.296 206.455 18.4661 206.455 18.676V25.9083C206.455 26.1182 206.285 26.2883 206.075 26.2883Z" fill="#6D5ED4"/>
|
||||
<path d="M217.192 26.2883H210.032C209.802 26.2883 209.616 26.1021 209.616 25.8725V18.7118C209.616 18.4822 209.802 18.296 210.032 18.296H217.192C217.422 18.296 217.608 18.4822 217.608 18.7118V25.8725C217.608 26.1021 217.422 26.2883 217.192 26.2883Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 26.2883H221.163C220.946 26.2883 220.769 26.1118 220.769 25.8939V18.6904C220.769 18.4727 220.946 18.296 221.163 18.296H228.367C228.585 18.296 228.761 18.4725 228.761 18.6904V25.8939C228.761 26.1118 228.585 26.2883 228.367 26.2883Z" fill="#6D5ED4"/>
|
||||
<path d="M8.07987 23.4686C8.87523 22.2211 10.1961 21.5973 12.0423 21.5973C13.8879 21.5973 15.2091 22.2213 16.0047 23.4686C16.8 24.7163 17.1981 26.4414 17.1981 28.6436C17.1981 30.8588 16.8 32.5965 16.0047 33.857C15.2088 35.1172 13.8879 35.7475 12.0423 35.7475C10.1961 35.7475 8.87523 35.1174 8.07987 33.857C7.28403 32.5968 6.88647 30.8588 6.88647 28.6436C6.88623 26.4414 7.28403 24.7166 8.07987 23.4686ZM14.3815 26.2664C14.2604 25.6236 14.0186 25.0983 13.6559 24.691C13.293 24.2837 12.755 24.0799 12.0423 24.0799C11.3291 24.0799 10.7916 24.2837 10.4286 24.691C10.0659 25.0985 9.82391 25.6238 9.70301 26.2664C9.58186 26.9094 9.52166 27.7018 9.52166 28.6436C9.52166 29.6113 9.57894 30.4228 9.6935 31.0785C9.80806 31.7342 10.0499 32.2624 10.4191 32.6633C10.7882 33.0643 11.3291 33.2649 12.0423 33.2649C12.755 33.2649 13.2961 33.0643 13.6654 32.6633C14.0344 32.2624 14.2765 31.7342 14.391 31.0785C14.5056 30.423 14.5629 29.6113 14.5629 28.6436C14.5629 27.7018 14.5024 26.9094 14.3815 26.2664Z" fill="white"/>
|
||||
<path d="M28.5795 24.1752H22.3924V27.4405C22.6598 27.1097 23.0418 26.8389 23.5381 26.6288C24.0346 26.4187 24.5628 26.3139 25.1229 26.3139C26.1413 26.3139 26.9754 26.5367 27.6245 26.9822C28.2739 27.4281 28.7446 27.9977 29.0376 28.6914C29.3303 29.3856 29.4768 30.1269 29.4768 30.9161C29.4768 32.3803 29.0597 33.5579 28.2261 34.449C27.3922 35.3402 26.2049 35.7858 24.6647 35.7858C23.2134 35.7858 22.0546 35.4231 21.1893 34.6974C20.3232 33.9718 19.8336 33.0233 19.7188 31.8521H22.3159C22.4305 32.3616 22.6884 32.7689 23.0893 33.0743C23.4903 33.3797 24.0027 33.5325 24.6267 33.5325C25.3776 33.5325 25.9444 33.2971 26.3263 32.8262C26.708 32.3552 26.8991 31.7315 26.8991 30.9546C26.8991 30.1654 26.7049 29.5638 26.3166 29.1502C25.928 28.7365 25.3584 28.5296 24.6074 28.5296C24.0729 28.5296 23.627 28.6631 23.2707 28.9305C22.9141 29.1979 22.6596 29.5545 22.5068 29.9999H19.9481V21.8264H28.5795V24.1752Z" fill="white"/>
|
||||
<path d="M186.786 18.7957H80.7546V25.7888H186.786V18.7957Z" fill="#9181FF"/>
|
||||
<path d="M186.885 18.7957H179.892V25.7888H186.885V18.7957Z" fill="#6D5ED4"/>
|
||||
<path d="M65.5687 3.47501H39.7312V8.10626H65.5687V3.47501Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M229.369 3.47501H203.531V8.10626H229.369V3.47501Z" fill="white" fill-opacity="0.58"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2703">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.0625)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,34 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2747)">
|
||||
<path d="M233.756 0.563629H-0.0144043V50.5146H233.756V0.563629Z" fill="white"/>
|
||||
<path d="M233.756 0.400299H-0.0144043V11.3895H233.756V0.400299Z" fill="#9181FF"/>
|
||||
<path d="M132.155 36.855C132.155 38.0804 131.161 39.0737 129.936 39.0737H119.388C118.163 39.0737 117.169 38.0806 117.169 36.855V36.2971C117.169 35.0718 118.163 34.0785 119.388 34.0785H129.936C131.161 34.0785 132.155 35.0715 132.155 36.2971V36.855Z" fill="#6D5ED4"/>
|
||||
<path d="M113.839 36.855C113.839 38.0804 112.846 39.0737 111.62 39.0737H101.073C99.8475 39.0737 98.8538 38.0806 98.8538 36.855V36.2971C98.8538 35.0718 99.8473 34.0785 101.073 34.0785H111.62C112.845 34.0785 113.839 35.0715 113.839 36.2971V36.855Z" fill="#6D5ED4"/>
|
||||
<path d="M150.47 36.855C150.47 38.0804 149.477 39.0737 148.251 39.0737H137.704C136.478 39.0737 135.485 38.0806 135.485 36.855V36.2971C135.485 35.0718 136.478 34.0785 137.704 34.0785H148.251C149.476 34.0785 150.47 35.0715 150.47 36.2971V36.855Z" fill="#6D5ED4"/>
|
||||
<path d="M168.785 36.855C168.785 38.0804 167.791 39.0737 166.566 39.0737H156.019C154.794 39.0737 153.8 38.0806 153.8 36.855V36.2971C153.8 35.0718 154.793 34.0785 156.019 34.0785H166.566C167.791 34.0785 168.785 35.0715 168.785 36.2971V36.855Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.563629H-0.0761719V50.5146H36.9685V0.563629Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.2583V14.9797H9.86658V12.9708H7.84419V14.9797H6.89722V10.2583H7.84419V12.1995H9.86658V10.2583H10.8135V10.2583Z" fill="white"/>
|
||||
<path d="M15.2035 13.39H12.464C12.4865 13.6606 12.5813 13.8726 12.7482 14.0257C12.915 14.179 13.1202 14.2558 13.3637 14.2558C13.7154 14.2558 13.9658 14.1047 14.1145 13.8027H15.1358C15.0276 14.1634 14.8201 14.4601 14.5135 14.6921C14.2068 14.9244 13.8303 15.0404 13.3839 15.0404C13.0232 15.0404 12.6995 14.9602 12.4133 14.8003C12.1269 14.6402 11.9037 14.4137 11.7435 14.1205C11.5834 13.8275 11.5034 13.4892 11.5034 13.1058C11.5034 12.718 11.5821 12.3777 11.7401 12.0845C11.8978 11.7915 12.1189 11.566 12.4029 11.4081C12.6871 11.2504 13.0139 11.1714 13.3837 11.1714C13.7398 11.1714 14.0591 11.2482 14.3409 11.4012C14.6227 11.5546 14.8416 11.7722 14.9971 12.054C15.1526 12.3358 15.2306 12.6592 15.2306 13.0246C15.2306 13.1601 15.2216 13.2818 15.2035 13.39ZM14.25 12.7543C14.2454 12.5108 14.1576 12.3158 13.986 12.1693C13.8144 12.0228 13.605 11.9494 13.3569 11.9494C13.1224 11.9494 12.925 12.0204 12.7651 12.1625C12.6049 12.3046 12.5067 12.5018 12.4709 12.7543H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.0845C16.0546 11.7915 16.2596 11.566 16.5189 11.4081C16.7783 11.2504 17.0678 11.1714 17.3881 11.1714C17.6677 11.1714 17.9124 11.2277 18.1221 11.3405C18.3317 11.4534 18.4996 11.5953 18.6259 11.7666V11.2323H19.5797V14.9797H18.6259V14.4318C18.504 14.6078 18.3361 14.753 18.1221 14.8681C17.9078 14.9831 17.6609 15.0407 17.3813 15.0407C17.0656 15.0407 16.778 14.9595 16.5187 14.7969C16.2593 14.6343 16.0541 14.4059 15.9032 14.1105C15.7521 13.8153 15.6768 13.4758 15.6768 13.0924C15.677 12.7136 15.7526 12.3777 15.9034 12.0845ZM18.4909 12.514C18.4007 12.3494 18.2788 12.2232 18.1255 12.1352C17.9722 12.0472 17.8076 12.0031 17.6316 12.0031C17.4559 12.0031 17.2936 12.046 17.1446 12.1315C16.9959 12.2173 16.8753 12.3424 16.7829 12.5069C16.6905 12.6717 16.6442 12.8667 16.6442 13.0919C16.6442 13.3176 16.6903 13.5148 16.7829 13.6837C16.8753 13.8529 16.9969 13.9826 17.1483 14.0727C17.2994 14.1632 17.4605 14.208 17.6319 14.208C17.8079 14.208 17.9724 14.1641 18.1257 14.0762C18.279 13.9882 18.4007 13.8621 18.4911 13.6974C18.5813 13.5328 18.6264 13.3354 18.6264 13.1055C18.6264 12.8757 18.581 12.6787 18.4909 12.514Z" fill="white"/>
|
||||
<path d="M20.4896 12.0845C20.6408 11.7915 20.847 11.566 21.1088 11.4081C21.3703 11.2504 21.6611 11.1714 21.9814 11.1714C22.2249 11.1714 22.4572 11.2245 22.678 11.3303C22.8989 11.4363 23.0748 11.5772 23.2057 11.753V9.97409H24.1661V14.9797H23.2057V14.4252C23.0885 14.6102 22.924 14.7589 22.7119 14.8718C22.4998 14.9844 22.2541 15.0409 21.9746 15.0409C21.6589 15.0409 21.3703 14.9598 21.1088 14.7972C20.8472 14.6348 20.6408 14.4062 20.4896 14.1108C20.3385 13.8156 20.2632 13.476 20.2632 13.0926C20.2629 12.7136 20.3385 12.3777 20.4896 12.0845ZM23.0768 12.514C22.9866 12.3494 22.8647 12.2232 22.7114 12.1352C22.5581 12.0472 22.3936 12.0031 22.2176 12.0031C22.0418 12.0031 21.8795 12.046 21.7306 12.1315C21.5819 12.2173 21.4612 12.3424 21.3688 12.5069C21.2765 12.6717 21.2301 12.8667 21.2301 13.0919C21.2301 13.3176 21.2762 13.5148 21.3688 13.6837C21.4612 13.8529 21.5828 13.9826 21.7342 14.0727C21.8853 14.1632 22.0465 14.208 22.2178 14.208C22.3938 14.208 22.5583 14.1642 22.7117 14.0762C22.865 13.9882 22.9866 13.8621 23.077 13.6974C23.1672 13.5328 23.2123 13.3354 23.2123 13.1055C23.2123 12.8757 23.1672 12.6787 23.0768 12.514Z" fill="white"/>
|
||||
<path d="M28.5492 13.39H25.8097C25.8322 13.6606 25.927 13.8726 26.094 14.0257C26.2607 14.179 26.4659 14.2558 26.7094 14.2558C27.0612 14.2558 27.3115 14.1047 27.4602 13.8027H28.4815C28.3733 14.1634 28.1658 14.4601 27.8592 14.6921C27.5526 14.9244 27.176 15.0404 26.7297 15.0404C26.3689 15.0404 26.0452 14.9602 25.759 14.8003C25.4726 14.6402 25.2494 14.4137 25.0892 14.1205C24.9291 13.8275 24.8491 13.4892 24.8491 13.1058C24.8491 12.718 24.9279 12.3777 25.0858 12.0845C25.2435 11.7915 25.4646 11.566 25.7486 11.4081C26.0328 11.2504 26.3596 11.1714 26.7294 11.1714C27.0855 11.1714 27.4048 11.2482 27.6866 11.4012C27.9684 11.5546 28.1873 11.7722 28.3428 12.054C28.4983 12.3358 28.5763 12.6592 28.5763 13.0246C28.5763 13.1601 28.567 13.2818 28.5492 13.39ZM27.5955 12.7543C27.5908 12.5108 27.5031 12.3158 27.3315 12.1693C27.1599 12.0228 26.9505 11.9494 26.7024 11.9494C26.4679 11.9494 26.2704 12.0204 26.1105 12.1625C25.9504 12.3046 25.8522 12.5018 25.8163 12.7543H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.3471C30.8863 11.2345 31.1106 11.1782 31.3631 11.1782V12.1725H31.1128C30.8151 12.1725 30.5906 12.2424 30.4398 12.3821C30.2886 12.522 30.2131 12.7655 30.2131 13.1126V14.9795H29.2661V11.2323H30.2131V11.8142C30.335 11.6155 30.4939 11.46 30.6901 11.3471Z" fill="white"/>
|
||||
<path d="M44.971 39.0013V40.0762H40.8706V33.0753H42.1732V39.0011H44.971V39.0013Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 36.576C52.3302 37.0903 52.2449 37.5644 52.0757 38.0024C51.9063 38.4385 51.6665 38.817 51.3571 39.1371C51.0468 39.4571 50.6741 39.7057 50.2386 39.8854C49.8025 40.0638 49.3187 40.1538 48.7858 40.1538C48.2566 40.1538 47.774 40.0641 47.3384 39.8854C46.9024 39.7057 46.5287 39.4571 46.2174 39.1371C45.9057 38.817 45.6648 38.4385 45.4935 38.0024C45.3224 37.5644 45.2368 37.0903 45.2368 36.576C45.2368 36.0619 45.3221 35.5878 45.4935 35.1498C45.6646 34.7137 45.9057 34.3352 46.2174 34.0152C46.5287 33.6951 46.9024 33.4465 47.3384 33.2668C47.774 33.0884 48.2564 32.9987 48.7858 32.9987C49.141 32.9987 49.4751 33.0397 49.7876 33.1216C50.1008 33.2035 50.3882 33.3205 50.65 33.4699C50.9111 33.6213 51.146 33.8026 51.354 34.0183C51.5624 34.2328 51.7388 34.4719 51.8841 34.7374C52.0296 35.0019 52.1398 35.2887 52.2159 35.5988C52.2919 35.9076 52.3302 36.2345 52.3302 36.576ZM50.9986 36.576C50.9986 36.1916 50.9469 35.8482 50.8436 35.542C50.7404 35.2385 50.5932 34.978 50.4031 34.7654C50.2125 34.5526 49.9812 34.3898 49.7084 34.2767C49.4352 34.1636 49.128 34.1068 48.7861 34.1068C48.4436 34.1068 48.1362 34.1634 47.8635 34.2767C47.591 34.3898 47.3587 34.5526 47.1663 34.7654C46.974 34.9782 46.8268 35.2385 46.7234 35.542C46.6201 35.8484 46.5684 36.1918 46.5684 36.576C46.5684 36.9604 46.6201 37.3038 46.7234 37.6102C46.8268 37.9147 46.9743 38.1721 47.1663 38.3839C47.3587 38.5967 47.5907 38.7585 47.8635 38.8707C48.1362 38.9838 48.4436 39.0413 48.7861 39.0413C49.128 39.0413 49.4354 38.9838 49.7084 38.8707C49.9812 38.7585 50.2122 38.5964 50.4031 38.3839C50.5935 38.1723 50.7407 37.9147 50.8436 37.6102C50.9469 37.3038 50.9986 36.9604 50.9986 36.576Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 36.5662V39.3984C58.8937 39.6599 58.5152 39.851 58.1132 39.9719C57.7113 40.0938 57.2816 40.1535 56.8231 40.1535C56.2517 40.1535 55.7342 40.0658 55.2714 39.8871C54.808 39.7104 54.4129 39.4637 54.0855 39.1466C53.7577 38.8314 53.5049 38.4529 53.3275 38.0129C53.1502 37.5749 53.0615 37.0959 53.0615 36.5757C53.0615 36.049 53.1468 35.5671 53.3182 35.1288C53.4888 34.6889 53.7318 34.3113 54.0465 33.9961C54.3612 33.679 54.7432 33.4331 55.1914 33.2595C55.6402 33.085 56.144 32.998 56.7022 32.998C56.9861 32.998 57.2518 33.0204 57.4987 33.0653C57.7454 33.1111 57.9748 33.1725 58.1861 33.2515C58.3977 33.3305 58.5905 33.426 58.7645 33.5401C58.9386 33.6532 59.0987 33.7763 59.244 33.9118L58.8713 34.5031C58.8133 34.5977 58.7372 34.6545 58.6436 34.675C58.55 34.6964 58.4486 34.673 58.3387 34.6058C58.2319 34.5443 58.1254 34.4829 58.0192 34.4215C57.9121 34.3601 57.7937 34.3062 57.663 34.2626C57.5329 34.2167 57.3854 34.1787 57.2226 34.1504C57.0598 34.1222 56.8713 34.1066 56.6588 34.1066C56.3134 34.1066 56.0007 34.1641 55.7218 34.2811C55.4427 34.3981 55.2048 34.5631 55.0076 34.7786C54.8109 34.9962 54.6593 35.2546 54.5525 35.5591C54.4463 35.8616 54.3929 36.2021 54.3929 36.5757C54.3929 36.9757 54.4499 37.3338 54.5647 37.649C54.6793 37.9632 54.8407 38.2296 55.0491 38.447C55.257 38.6654 55.508 38.8314 55.8018 38.9465C56.0955 39.0615 56.4233 39.1181 56.7848 39.1181C57.0429 39.1181 57.2735 39.0898 57.4771 39.0362C57.6803 38.9806 57.879 38.9065 58.0728 38.8117V37.5434H57.1914C57.1075 37.5434 57.0422 37.521 56.9959 37.4742C56.9491 37.4264 56.9252 37.3699 56.9252 37.3026V36.566H59.2489V36.5662Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 36.576C67.1844 37.0903 67.0991 37.5644 66.9297 38.0024C66.7601 38.4385 66.5205 38.817 66.2107 39.1371C65.9008 39.4571 65.5282 39.7057 65.0921 39.8854C64.6565 40.0638 64.1722 40.1538 63.6398 40.1538C63.1106 40.1538 62.628 40.0641 62.1924 39.8854C61.7564 39.7057 61.3827 39.4571 61.0714 39.1371C60.7597 38.817 60.5184 38.4385 60.3475 38.0024C60.1764 37.5644 60.0908 37.0903 60.0908 36.576C60.0908 36.0619 60.1761 35.5878 60.3475 35.1498C60.5181 34.7137 60.7597 34.3352 61.0714 34.0152C61.3827 33.6951 61.7564 33.4465 62.1924 33.2668C62.628 33.0884 63.1106 32.9987 63.6398 32.9987C63.995 32.9987 64.3291 33.0397 64.6419 33.1216C64.9548 33.2035 65.2422 33.3205 65.5038 33.4699C65.7653 33.6213 65.9998 33.8026 66.208 34.0183C66.4164 34.2328 66.5929 34.4719 66.7384 34.7374C66.8836 35.0019 66.9941 35.2887 67.0701 35.5988C67.1459 35.9076 67.1844 36.2345 67.1844 36.576ZM65.8523 36.576C65.8523 36.1916 65.8011 35.8482 65.6978 35.542C65.5944 35.2385 65.4475 34.978 65.2573 34.7654C65.0667 34.5526 64.8354 34.3898 64.5627 34.2767C64.2894 34.1636 63.982 34.1068 63.6401 34.1068C63.2976 34.1068 62.9902 34.1634 62.7177 34.2767C62.445 34.3898 62.2129 34.5526 62.0206 34.7654C61.8285 34.9782 61.6806 35.2385 61.5777 35.542C61.4743 35.8484 61.4224 36.1918 61.4224 36.576C61.4224 36.9604 61.4741 37.3038 61.5777 37.6102C61.6806 37.9147 61.8285 38.1721 62.0206 38.3839C62.2129 38.5967 62.445 38.7585 62.7177 38.8707C62.9902 38.9838 63.2978 39.0413 63.6401 39.0413C63.982 39.0413 64.2894 38.9838 64.5627 38.8707C64.8352 38.7585 65.0665 38.5964 65.2573 38.3839C65.4475 38.1723 65.5944 37.9147 65.6978 37.6102C65.8011 37.3038 65.8523 36.9604 65.8523 36.576Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 27.1935H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.075 40.572H198.843C198.633 40.572 198.463 40.4019 198.463 40.192V32.9597C198.463 32.7499 198.633 32.5797 198.843 32.5797H206.075C206.285 32.5797 206.455 32.7499 206.455 32.9597V40.192C206.455 40.4019 206.285 40.572 206.075 40.572Z" fill="#6D5ED4"/>
|
||||
<path d="M217.192 40.572H210.032C209.802 40.572 209.616 40.3858 209.616 40.1562V32.9956C209.616 32.7659 209.802 32.5797 210.032 32.5797H217.192C217.422 32.5797 217.608 32.7659 217.608 32.9956V40.1562C217.608 40.3861 217.422 40.572 217.192 40.572Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 40.572H221.163C220.946 40.572 220.769 40.3956 220.769 40.1776V32.9741C220.769 32.7564 220.946 32.5797 221.163 32.5797H228.367C228.585 32.5797 228.761 32.7562 228.761 32.9741V40.1776C228.761 40.3956 228.585 40.572 228.367 40.572Z" fill="#6D5ED4"/>
|
||||
<path d="M65.5687 17.5813H39.7312V22.2125H65.5687V17.5813Z" fill="#9181FF"/>
|
||||
<path d="M229.369 17.5813H203.531V22.2125H229.369V17.5813Z" fill="#9181FF"/>
|
||||
<path d="M7.89335 23.5951C8.68871 22.3476 10.0096 21.7238 11.8558 21.7238C13.7014 21.7238 15.0226 22.3478 15.8182 23.5951C16.6135 24.8428 17.0116 26.5679 17.0116 28.7701C17.0116 30.9853 16.6135 32.723 15.8182 33.9835C15.0223 35.2437 13.7014 35.874 11.8558 35.874C10.0096 35.874 8.68871 35.2439 7.89335 33.9835C7.09751 32.7233 6.69995 30.9853 6.69995 28.7701C6.69995 26.5679 7.09751 24.8431 7.89335 23.5951ZM14.195 26.3928C14.0739 25.7501 13.8321 25.2248 13.4694 24.8175C13.1064 24.4102 12.5685 24.2064 11.8558 24.2064C11.1425 24.2064 10.6051 24.4102 10.2421 24.8175C9.87943 25.225 9.63738 25.7503 9.51648 26.3928C9.39534 27.0359 9.33513 27.8283 9.33513 28.7701C9.33513 29.7378 9.39241 30.5493 9.50698 31.205C9.62154 31.8606 9.86334 32.3889 10.2326 32.7898C10.6017 33.1908 11.1425 33.3914 11.8558 33.3914C12.5685 33.3914 13.1096 33.1908 13.4789 32.7898C13.8479 32.3889 14.09 31.8606 14.2045 31.205C14.3191 30.5495 14.3764 29.7378 14.3764 28.7701C14.3764 27.8283 14.3159 27.0359 14.195 26.3928Z" fill="white"/>
|
||||
<path d="M25.5954 24.2637C25.2834 23.9963 24.8345 23.8627 24.2492 23.8627C23.3707 23.8627 22.7246 24.2159 22.3109 24.9225C21.897 25.6291 21.6837 26.7782 21.6711 28.3694C21.9765 27.8604 22.4221 27.4624 23.0078 27.176C23.5933 26.8896 24.23 26.7463 24.9173 26.7463C25.7449 26.7463 26.4766 26.9247 27.1133 27.2808C27.7497 27.6374 28.2462 28.1563 28.6028 28.8371C28.959 29.5182 29.1376 30.3362 29.1376 31.291C29.1376 32.195 28.956 33.0001 28.5933 33.7065C28.2304 34.4132 27.6988 34.964 26.9987 35.3584C26.2984 35.7533 25.4646 35.9505 24.4971 35.9505C23.1728 35.9505 22.1322 35.6578 21.3749 35.072C20.6173 34.4868 20.0889 33.6685 19.7901 32.6182C19.4907 31.5679 19.3413 30.2726 19.3413 28.7321C19.3413 26.4023 19.7423 24.6427 20.5445 23.452C21.3466 22.2617 22.6132 21.6665 24.3445 21.6665C25.6812 21.6665 26.7186 22.0294 27.4572 22.7551C28.1955 23.4807 28.6221 24.3848 28.7367 25.4668H26.2541C26.1268 24.932 25.9072 24.5308 25.5954 24.2637ZM22.6068 29.534C22.1486 29.9289 21.9195 30.5017 21.9195 31.2527C21.9195 32.0042 22.1325 32.596 22.5593 33.0287C22.9856 33.4616 23.5872 33.678 24.3638 33.678C25.0512 33.678 25.5954 33.4679 25.9964 33.0479C26.3976 32.6277 26.598 32.0615 26.598 31.3483C26.598 30.6102 26.4037 30.0244 26.0157 29.5913C25.6271 29.1586 25.0575 28.942 24.3065 28.942C23.6316 28.942 23.0651 29.1396 22.6068 29.534Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2747">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.275024)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2873)">
|
||||
<path d="M233.871 0.728638H0.100342V50.6796H233.871V0.728638Z" fill="white"/>
|
||||
<path d="M233.871 0.809082H0.100342V11.7983H233.871V0.809082Z" fill="#9181FF"/>
|
||||
<path d="M74.8673 42.2502C74.8673 43.4755 73.8738 44.4688 72.6482 44.4688H62.1009C60.8756 44.4688 59.8818 43.4758 59.8818 42.2502V41.6922C59.8818 40.4669 60.8754 39.4736 62.1009 39.4736H72.6482C73.8736 39.4736 74.8673 40.4667 74.8673 41.6922V42.2502Z" fill="#6D5ED4"/>
|
||||
<path d="M56.5519 42.2502C56.5519 43.4755 55.5584 44.4688 54.3328 44.4688H43.7855C42.5602 44.4688 41.5664 43.4758 41.5664 42.2502V41.6922C41.5664 40.4669 42.5599 39.4736 43.7855 39.4736H54.3328C55.5581 39.4736 56.5519 40.4667 56.5519 41.6922V42.2502V42.2502Z" fill="#6D5ED4"/>
|
||||
<path d="M93.1828 42.2502C93.1828 43.4755 92.1892 44.4688 90.9637 44.4688H80.4164C79.191 44.4688 78.1973 43.4758 78.1973 42.2502V41.6922C78.1973 40.4669 79.1908 39.4736 80.4164 39.4736H90.9637C92.189 39.4736 93.1828 40.4667 93.1828 41.6922V42.2502Z" fill="#6D5ED4"/>
|
||||
<path d="M111.498 42.2502C111.498 43.4755 110.504 44.4688 109.278 44.4688H98.732C97.5062 44.4688 96.5125 43.4758 96.5125 42.2502V41.6922C96.5125 40.4669 97.506 39.4736 98.732 39.4736H109.278C110.504 39.4736 111.498 40.4667 111.498 41.6922V42.2502Z" fill="#6D5ED4"/>
|
||||
<path d="M45.0857 25.3388V26.4138H40.9854V19.413H42.288V25.3388H45.0857V25.3388Z" fill="#6D5ED4"/>
|
||||
<path d="M52.4449 22.9133C52.4449 23.4276 52.3596 23.9017 52.1905 24.3397C52.0211 24.7758 51.7812 25.1543 51.4719 25.4744C51.1616 25.7944 50.7889 26.043 50.3533 26.2227C49.9172 26.4011 49.4334 26.491 48.9006 26.491C48.3714 26.491 47.8888 26.4013 47.4532 26.2227C47.0171 26.043 46.6434 25.7944 46.3322 25.4744C46.0204 25.1543 45.7796 24.7758 45.6082 24.3397C45.4371 23.9017 45.3516 23.4276 45.3516 22.9133C45.3516 22.3992 45.4369 21.9251 45.6082 21.4871C45.7793 21.051 46.0204 20.6725 46.3322 20.3524C46.6434 20.0324 47.0171 19.7838 47.4532 19.6041C47.8888 19.4257 48.3711 19.336 48.9006 19.336C49.2557 19.336 49.5899 19.3769 49.9024 19.4588C50.2156 19.5407 50.503 19.6577 50.7648 19.8072C51.0258 19.9585 51.2608 20.1399 51.4687 20.3556C51.6771 20.5701 51.8536 20.8092 51.9989 21.0747C52.1444 21.3391 52.2546 21.626 52.3306 21.9361C52.4067 22.2452 52.4449 22.572 52.4449 22.9133ZM51.1133 22.9133C51.1133 22.5289 51.0616 22.1854 50.9583 21.8793C50.8552 21.5758 50.708 21.3152 50.5178 21.1027C50.3272 20.8899 50.0959 20.7271 49.8232 20.614C49.5499 20.5009 49.2428 20.4441 48.9008 20.4441C48.5583 20.4441 48.251 20.5006 47.9782 20.614C47.7057 20.7271 47.4734 20.8899 47.2811 21.1027C47.0888 21.3155 46.9415 21.5758 46.8382 21.8793C46.7348 22.1857 46.6832 22.5291 46.6832 22.9133C46.6832 23.2977 46.7348 23.6411 46.8382 23.9475C46.9415 24.2519 47.089 24.5093 47.2811 24.7212C47.4734 24.934 47.7055 25.0958 47.9782 25.2079C48.251 25.321 48.5583 25.3786 48.9008 25.3786C49.2428 25.3786 49.5502 25.321 49.8232 25.2079C50.0959 25.0958 50.327 24.9337 50.5178 24.7212C50.7082 24.5096 50.8554 24.2519 50.9583 23.9475C51.0616 23.6411 51.1133 23.2979 51.1133 22.9133Z" fill="#6D5ED4"/>
|
||||
<path d="M59.3636 22.9038V25.7359C59.0085 25.9974 58.6299 26.1885 58.228 26.3094C57.826 26.4313 57.3963 26.491 56.9378 26.491C56.3665 26.491 55.849 26.4033 55.3861 26.2246C54.9227 26.0479 54.5276 25.8012 54.2003 25.4841C53.8724 25.1689 53.6197 24.7904 53.4422 24.3504C53.265 23.9124 53.1763 23.4334 53.1763 22.9133C53.1763 22.3865 53.2616 21.9046 53.4329 21.4664C53.6036 21.0264 53.8466 20.6488 54.1613 20.3337C54.4759 20.0165 54.8579 19.7706 55.3062 19.5971C55.7549 19.4225 56.2587 19.3355 56.8169 19.3355C57.1009 19.3355 57.3666 19.3579 57.6135 19.4028C57.8602 19.4486 58.0895 19.51 58.3009 19.589C58.5124 19.668 58.7053 19.7635 58.8793 19.8776C59.0533 19.9907 59.2135 20.1138 59.3587 20.2493L58.9861 20.8407C58.928 20.9352 58.852 20.992 58.7584 21.0125C58.6648 21.034 58.5634 21.0106 58.4535 20.9433C58.3467 20.8819 58.2402 20.8204 58.1339 20.759C58.0269 20.6976 57.9084 20.6437 57.7778 20.6001C57.6476 20.5543 57.5002 20.5162 57.3373 20.488C57.1745 20.4597 56.9861 20.4441 56.7735 20.4441C56.4281 20.4441 56.1154 20.5016 55.8366 20.6186C55.5575 20.7356 55.3196 20.9006 55.1224 21.1161C54.9257 21.3338 54.7741 21.5921 54.6673 21.8966C54.561 22.1991 54.5076 22.5396 54.5076 22.9133C54.5076 23.3133 54.5647 23.6713 54.6795 23.9865C54.794 24.3007 54.9554 24.5671 55.1638 24.7845C55.3717 25.0029 55.6228 25.1689 55.9165 25.284C56.2102 25.399 56.5381 25.4556 56.8996 25.4556C57.1577 25.4556 57.3883 25.4273 57.5918 25.3737C57.7951 25.3181 57.9937 25.244 58.1875 25.1492V23.881H57.3061C57.2223 23.881 57.157 23.8585 57.1106 23.8117C57.0638 23.764 57.04 23.7074 57.04 23.6401V22.9035L59.3636 22.9038Z" fill="#6D5ED4"/>
|
||||
<path d="M67.2992 22.9133C67.2992 23.4276 67.2139 23.9017 67.0445 24.3397C66.8748 24.7758 66.6352 25.1543 66.3254 25.4744C66.0156 25.7944 65.6429 26.043 65.2068 26.2227C64.7713 26.4011 64.2869 26.491 63.7546 26.491C63.2254 26.491 62.7428 26.4013 62.3072 26.2227C61.8711 26.043 61.4974 25.7944 61.1862 25.4744C60.8744 25.1543 60.6331 24.7758 60.4622 24.3397C60.2911 23.9017 60.2056 23.4276 60.2056 22.9133C60.2056 22.3992 60.2909 21.9251 60.4622 21.4871C60.6329 21.051 60.8744 20.6725 61.1862 20.3524C61.4974 20.0324 61.8711 19.7838 62.3072 19.6041C62.7428 19.4257 63.2254 19.336 63.7546 19.336C64.1097 19.336 64.4439 19.3769 64.7566 19.4588C65.0696 19.5407 65.357 19.6577 65.6185 19.8072C65.8801 19.9585 66.1146 20.1399 66.3227 20.3556C66.5311 20.5701 66.7076 20.8092 66.8531 21.0747C66.9984 21.3391 67.1088 21.626 67.1849 21.9361C67.2607 22.2452 67.2992 22.572 67.2992 22.9133ZM65.9671 22.9133C65.9671 22.5289 65.9159 22.1854 65.8125 21.8793C65.7092 21.5758 65.5622 21.3152 65.3721 21.1027C65.1815 20.8899 64.9502 20.7271 64.6774 20.614C64.4042 20.5009 64.0968 20.4441 63.7548 20.4441C63.4123 20.4441 63.105 20.5006 62.8325 20.614C62.5597 20.7271 62.3277 20.8899 62.1353 21.1027C61.9433 21.3155 61.7953 21.5758 61.6924 21.8793C61.5891 22.1857 61.5372 22.5291 61.5372 22.9133C61.5372 23.2977 61.5888 23.6411 61.6924 23.9475C61.7953 24.2519 61.9433 24.5093 62.1353 24.7212C62.3277 24.934 62.5597 25.0958 62.8325 25.2079C63.105 25.321 63.4126 25.3786 63.7548 25.3786C64.0968 25.3786 64.4042 25.321 64.6774 25.2079C64.9499 25.0958 65.1812 24.9337 65.3721 24.7212C65.5622 24.5096 65.7092 24.2519 65.8125 23.9475C65.9159 23.6411 65.9671 23.2979 65.9671 22.9133Z" fill="#6D5ED4"/>
|
||||
<path d="M37.0642 33.696H233.871" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.19 26.9096H198.958C198.748 26.9096 198.578 26.7394 198.578 26.5295V19.2972C198.578 19.0874 198.748 18.9172 198.958 18.9172H206.19C206.4 18.9172 206.57 19.0874 206.57 19.2972V26.5295C206.57 26.7394 206.4 26.9096 206.19 26.9096Z" fill="#6D5ED4"/>
|
||||
<path d="M217.307 26.9096H210.147C209.917 26.9096 209.731 26.7233 209.731 26.4937V19.3331C209.731 19.1035 209.917 18.9172 210.147 18.9172H217.307C217.537 18.9172 217.723 19.1035 217.723 19.3331V26.4937C217.723 26.7233 217.537 26.9096 217.307 26.9096Z" fill="#6D5ED4"/>
|
||||
<path d="M228.482 26.9096H221.278C221.061 26.9096 220.884 26.7331 220.884 26.5152V19.3116C220.884 19.094 221.061 18.9172 221.278 18.9172H228.482C228.7 18.9172 228.876 19.0937 228.876 19.3116V26.5152C228.876 26.7331 228.7 26.9096 228.482 26.9096Z" fill="#6D5ED4"/>
|
||||
<path d="M186.901 19.4169H80.8694V26.4101H186.901V19.4169Z" fill="#9181FF"/>
|
||||
<path d="M187 19.4169H180.007V26.4101H187V19.4169Z" fill="#6D5ED4"/>
|
||||
<path d="M65.6835 4.09625H39.8459V8.7275H65.6835V4.09625Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M229.483 4.09625H203.646V8.7275H229.483V4.09625Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M36.9685 0.776123H-0.0761719V50.7271H36.9685V0.776123Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.4708V15.1923H9.86658V13.1833H7.84419V15.1923H6.89722V10.4708H7.84419V12.4121H9.86658V10.4708H10.8135V10.4708Z" fill="white"/>
|
||||
<path d="M15.2035 13.6025H12.464C12.4865 13.8731 12.5813 14.0851 12.7482 14.2382C12.915 14.3915 13.1202 14.4683 13.3637 14.4683C13.7154 14.4683 13.9658 14.3172 14.1145 14.0152H15.1358C15.0276 14.3759 14.8201 14.6726 14.5135 14.9046C14.2068 15.1369 13.8303 15.253 13.3839 15.253C13.0232 15.253 12.6995 15.1728 12.4133 15.0129C12.1269 14.8527 11.9037 14.6263 11.7435 14.333C11.5834 14.0401 11.5034 13.7017 11.5034 13.3183C11.5034 12.9305 11.5821 12.5902 11.7401 12.297C11.8978 12.004 12.1189 11.7785 12.4029 11.6206C12.6871 11.4629 13.0139 11.3839 13.3837 11.3839C13.7398 11.3839 14.0591 11.4607 14.3409 11.6138C14.6227 11.7671 14.8416 11.9848 14.9971 12.2665C15.1526 12.5483 15.2306 12.8718 15.2306 13.2371C15.2306 13.3727 15.2216 13.4943 15.2035 13.6025ZM14.25 12.9668C14.2454 12.7233 14.1576 12.5283 13.986 12.3818C13.8144 12.2353 13.605 12.162 13.3569 12.162C13.1224 12.162 12.925 12.2329 12.7651 12.375C12.6049 12.5171 12.5067 12.7143 12.4709 12.9668H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.297C16.0546 12.004 16.2596 11.7785 16.5189 11.6206C16.7783 11.4629 17.0678 11.3839 17.3881 11.3839C17.6677 11.3839 17.9124 11.4402 18.1221 11.5531C18.3317 11.6659 18.4996 11.8078 18.6259 11.9791V11.4448H19.5797V15.1923H18.6259V14.6443C18.504 14.8203 18.3361 14.9656 18.1221 15.0806C17.9078 15.1957 17.6609 15.2532 17.3813 15.2532C17.0656 15.2532 16.778 15.172 16.5187 15.0094C16.2593 14.8469 16.0541 14.6185 15.9032 14.323C15.7521 14.0279 15.6768 13.6883 15.6768 13.3049C15.677 12.9261 15.7526 12.5902 15.9034 12.297ZM18.4909 12.7265C18.4007 12.562 18.2788 12.4357 18.1255 12.3477C17.9722 12.2597 17.8076 12.2156 17.6316 12.2156C17.4559 12.2156 17.2936 12.2585 17.1446 12.344C16.9959 12.4298 16.8753 12.5549 16.7829 12.7194C16.6905 12.8842 16.6442 13.0792 16.6442 13.3044C16.6442 13.5301 16.6903 13.7273 16.7829 13.8962C16.8753 14.0654 16.9969 14.1951 17.1483 14.2853C17.2994 14.3757 17.4605 14.4205 17.6319 14.4205C17.8079 14.4205 17.9724 14.3767 18.1257 14.2887C18.279 14.2007 18.4007 14.0747 18.4911 13.9099C18.5813 13.7454 18.6264 13.5479 18.6264 13.3181C18.6264 13.0882 18.581 12.8913 18.4909 12.7265Z" fill="white"/>
|
||||
<path d="M20.4896 12.297C20.6408 12.004 20.847 11.7785 21.1088 11.6206C21.3703 11.4629 21.6611 11.3839 21.9814 11.3839C22.2249 11.3839 22.4572 11.437 22.678 11.5428C22.8989 11.6488 23.0748 11.7897 23.2057 11.9655V10.1866H24.1661V15.1922H23.2057V14.6377C23.0885 14.8227 22.924 14.9714 22.7119 15.0843C22.4998 15.1969 22.2541 15.2534 21.9746 15.2534C21.6589 15.2534 21.3703 15.1722 21.1088 15.0097C20.8472 14.8473 20.6408 14.6187 20.4896 14.3233C20.3385 14.0281 20.2632 13.6885 20.2632 13.3051C20.2629 12.9261 20.3385 12.5902 20.4896 12.297ZM23.0768 12.7265C22.9866 12.5619 22.8647 12.4357 22.7114 12.3477C22.5581 12.2597 22.3936 12.2156 22.2176 12.2156C22.0418 12.2156 21.8795 12.2585 21.7306 12.344C21.5819 12.4298 21.4612 12.5549 21.3688 12.7194C21.2765 12.8842 21.2301 13.0792 21.2301 13.3044C21.2301 13.5301 21.2762 13.7273 21.3688 13.8962C21.4612 14.0654 21.5828 14.1951 21.7342 14.2852C21.8853 14.3757 22.0465 14.4205 22.2178 14.4205C22.3938 14.4205 22.5583 14.3766 22.7117 14.2887C22.865 14.2007 22.9866 14.0746 23.077 13.9099C23.1672 13.7453 23.2123 13.5479 23.2123 13.318C23.2123 13.0882 23.1672 12.8912 23.0768 12.7265Z" fill="white"/>
|
||||
<path d="M28.5492 13.6025H25.8097C25.8322 13.8731 25.927 14.0851 26.094 14.2382C26.2607 14.3915 26.4659 14.4683 26.7094 14.4683C27.0612 14.4683 27.3115 14.3172 27.4602 14.0152H28.4815C28.3733 14.3759 28.1658 14.6726 27.8592 14.9046C27.5526 15.1369 27.176 15.253 26.7297 15.253C26.3689 15.253 26.0452 15.1728 25.759 15.0129C25.4726 14.8527 25.2494 14.6263 25.0892 14.333C24.9291 14.0401 24.8491 13.7017 24.8491 13.3183C24.8491 12.9305 24.9279 12.5902 25.0858 12.297C25.2435 12.004 25.4646 11.7785 25.7486 11.6206C26.0328 11.4629 26.3596 11.3839 26.7294 11.3839C27.0855 11.3839 27.4048 11.4607 27.6866 11.6138C27.9684 11.7671 28.1873 11.9848 28.3428 12.2665C28.4983 12.5483 28.5763 12.8718 28.5763 13.2371C28.5763 13.3727 28.567 13.4943 28.5492 13.6025ZM27.5955 12.9668C27.5908 12.7233 27.5031 12.5283 27.3315 12.3818C27.1599 12.2353 26.9505 12.162 26.7024 12.162C26.4679 12.162 26.2704 12.2329 26.1105 12.375C25.9504 12.5171 25.8522 12.7143 25.8163 12.9668H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.5596C30.8863 11.447 31.1106 11.3907 31.3631 11.3907V12.3849H31.1128C30.8151 12.3849 30.5906 12.4549 30.4398 12.5946C30.2886 12.7345 30.2131 12.978 30.2131 13.3251V15.192H29.2661V11.4448H30.2131V12.0266C30.335 11.828 30.4939 11.6725 30.6901 11.5596Z" fill="white"/>
|
||||
<path d="M8.36747 23.7527C9.16283 22.5052 10.4837 21.8815 12.3299 21.8815C14.1755 21.8815 15.4967 22.5055 16.2923 23.7527C17.0876 25.0005 17.4857 26.7255 17.4857 28.9278C17.4857 31.143 17.0876 32.8807 16.2923 34.1411C15.4964 35.4013 14.1755 36.0316 12.3299 36.0316C10.4837 36.0316 9.16283 35.4016 8.36747 34.1411C7.57163 32.8809 7.17407 31.143 7.17407 28.9278C7.17383 26.7255 7.57138 25.0005 8.36747 23.7527ZM14.6691 26.5503C14.548 25.9075 14.3062 25.3822 13.9435 24.9749C13.5806 24.5676 13.0426 24.3638 12.3299 24.3638C11.6167 24.3638 11.0792 24.5676 10.7162 24.9749C10.3535 25.3825 10.1115 25.9077 9.9906 26.5503C9.86946 27.1933 9.80925 27.9857 9.80925 28.9276C9.80925 29.8952 9.86654 30.7067 9.9811 31.3624C10.0957 32.0181 10.3375 32.5463 10.7067 32.9472C11.0758 33.3482 11.6167 33.5488 12.3299 33.5488C13.0426 33.5488 13.5837 33.3482 13.953 32.9472C14.322 32.5463 14.5641 32.0181 14.6786 31.3624C14.7932 30.7069 14.8505 29.8952 14.8505 28.9276C14.8505 27.9857 14.7898 27.1933 14.6691 26.5503Z" fill="white"/>
|
||||
<path d="M28.3705 24.1727L23.291 36.0697H20.5793L25.6971 24.4784H19.166V22.1869H28.3703V24.1727H28.3705Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2873">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.487549)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,34 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2964)">
|
||||
<path d="M233.871 1.10321H0.100342V51.0542H233.871V1.10321Z" fill="white"/>
|
||||
<path d="M233.871 1.10321H0.100342V12.0924H233.871V1.10321Z" fill="#9181FF"/>
|
||||
<path d="M134.802 41.8427C134.802 43.068 133.808 44.0613 132.583 44.0613H122.035C120.81 44.0613 119.816 43.0682 119.816 41.8427V41.2845C119.816 40.0591 120.81 39.0659 122.035 39.0659H132.583C133.808 39.0659 134.802 40.0589 134.802 41.2845V41.8427Z" fill="#6D5ED4"/>
|
||||
<path d="M116.486 41.8427C116.486 43.068 115.493 44.0613 114.267 44.0613H103.72C102.495 44.0613 101.501 43.0682 101.501 41.8427V41.2845C101.501 40.0591 102.494 39.0659 103.72 39.0659H114.267C115.492 39.0659 116.486 40.0589 116.486 41.2845V41.8427Z" fill="#6D5ED4"/>
|
||||
<path d="M153.117 41.8427C153.117 43.068 152.124 44.0613 150.898 44.0613H140.351C139.125 44.0613 138.132 43.0682 138.132 41.8427V41.2845C138.132 40.0591 139.125 39.0659 140.351 39.0659H150.898C152.123 39.0659 153.117 40.0589 153.117 41.2845V41.8427Z" fill="#6D5ED4"/>
|
||||
<path d="M171.432 41.8427C171.432 43.068 170.438 44.0613 169.213 44.0613H158.666C157.441 44.0613 156.447 43.0682 156.447 41.8427V41.2845C156.447 40.0591 157.44 39.0659 158.666 39.0659H169.213C170.438 39.0659 171.432 40.0589 171.432 41.2845V41.8427Z" fill="#6D5ED4"/>
|
||||
<path d="M124.954 26.9281V28.003H120.853V21.0023H122.156V26.9281H124.954Z" fill="#6D5ED4"/>
|
||||
<path d="M132.313 24.5028C132.313 25.0171 132.228 25.4912 132.059 25.9292C131.889 26.3652 131.649 26.7438 131.34 27.0638C131.03 27.3839 130.657 27.6325 130.221 27.8121C129.785 27.9906 129.302 28.0805 128.769 28.0805C128.24 28.0805 127.757 27.9908 127.321 27.8121C126.885 27.6325 126.512 27.3839 126.2 27.0638C125.889 26.7438 125.648 26.3652 125.476 25.9292C125.305 25.4912 125.22 25.0171 125.22 24.5028C125.22 23.9887 125.305 23.5146 125.476 23.0766C125.648 22.6405 125.889 22.262 126.2 21.9419C126.512 21.6219 126.885 21.3732 127.321 21.1936C127.757 21.0152 128.239 20.9255 128.769 20.9255C129.124 20.9255 129.458 20.9664 129.771 21.0483C130.084 21.1302 130.371 21.2472 130.633 21.3966C130.894 21.548 131.129 21.7294 131.337 21.9451C131.545 22.1596 131.722 22.3987 131.867 22.6641C132.013 22.9286 132.123 23.2155 132.199 23.5256C132.275 23.8344 132.313 24.1613 132.313 24.5028ZM130.981 24.5028C130.981 24.1184 130.93 23.7749 130.826 23.4688C130.723 23.1653 130.576 22.9047 130.386 22.6922C130.195 22.4794 129.964 22.3166 129.691 22.2035C129.418 22.0904 129.111 22.0336 128.769 22.0336C128.426 22.0336 128.119 22.0901 127.846 22.2035C127.573 22.3166 127.341 22.4794 127.149 22.6922C126.957 22.905 126.809 23.1653 126.706 23.4688C126.603 23.7752 126.551 24.1186 126.551 24.5028C126.551 24.8871 126.603 25.2306 126.706 25.537C126.809 25.8414 126.957 26.0988 127.149 26.3106C127.341 26.5234 127.573 26.6853 127.846 26.7974C128.119 26.9105 128.426 26.968 128.769 26.968C129.111 26.968 129.418 26.9105 129.691 26.7974C129.964 26.6853 130.195 26.5232 130.386 26.3106C130.576 26.0991 130.723 25.8414 130.826 25.537C130.93 25.2303 130.981 24.8871 130.981 24.5028Z" fill="#6D5ED4"/>
|
||||
<path d="M139.232 24.493V27.3251C138.876 27.5867 138.498 27.7778 138.096 27.8987C137.694 28.0206 137.264 28.0803 136.806 28.0803C136.234 28.0803 135.717 27.9925 135.254 27.8139C134.791 27.6371 134.396 27.3905 134.068 27.0733C133.74 26.7582 133.488 26.3796 133.31 25.9397C133.133 25.5016 133.044 25.0227 133.044 24.5025C133.044 23.9758 133.129 23.4939 133.301 23.0556C133.471 22.6156 133.714 22.2381 134.029 21.9229C134.344 21.6058 134.726 21.3598 135.174 21.1863C135.623 21.0118 136.127 20.9247 136.685 20.9247C136.969 20.9247 137.234 20.9472 137.481 20.992C137.728 21.0378 137.957 21.0993 138.169 21.1782C138.38 21.2572 138.573 21.3528 138.747 21.4668C138.921 21.5799 139.081 21.703 139.227 21.8386L138.854 22.4299C138.796 22.5245 138.72 22.5813 138.626 22.6017C138.533 22.6232 138.431 22.5998 138.321 22.5325C138.215 22.4711 138.108 22.4097 138.002 22.3482C137.895 22.2868 137.776 22.233 137.646 22.1893C137.516 22.1435 137.368 22.1055 137.205 22.0772C137.042 22.0489 136.854 22.0333 136.641 22.0333C136.296 22.0333 135.983 22.0908 135.704 22.2078C135.425 22.3248 135.187 22.4899 134.99 22.7053C134.794 22.923 134.642 23.1814 134.535 23.4858C134.429 23.7883 134.376 24.1288 134.376 24.5025C134.376 24.9025 134.433 25.2606 134.547 25.5757C134.662 25.8899 134.823 26.1564 135.032 26.3738C135.239 26.5922 135.491 26.7582 135.784 26.8732C136.078 26.9883 136.406 27.0448 136.767 27.0448C137.026 27.0448 137.256 27.0165 137.46 26.9629C137.663 26.9073 137.862 26.8332 138.055 26.7384V25.4702H137.174C137.09 25.4702 137.025 25.4478 136.979 25.401C136.932 25.3532 136.908 25.2966 136.908 25.2294V24.4928H139.232V24.493Z" fill="#6D5ED4"/>
|
||||
<path d="M147.167 24.5028C147.167 25.0171 147.082 25.4912 146.913 25.9292C146.743 26.3652 146.503 26.7438 146.194 27.0638C145.884 27.3839 145.511 27.6325 145.075 27.8121C144.639 27.9906 144.155 28.0805 143.623 28.0805C143.094 28.0805 142.611 27.9908 142.175 27.8121C141.739 27.6325 141.366 27.3839 141.054 27.0638C140.743 26.7438 140.501 26.3652 140.33 25.9292C140.159 25.4912 140.074 25.0171 140.074 24.5028C140.074 23.9887 140.159 23.5146 140.33 23.0766C140.501 22.6405 140.743 22.262 141.054 21.9419C141.366 21.6219 141.739 21.3732 142.175 21.1936C142.611 21.0152 143.094 20.9255 143.623 20.9255C143.978 20.9255 144.312 20.9664 144.625 21.0483C144.938 21.1302 145.225 21.2472 145.487 21.3966C145.748 21.548 145.983 21.7294 146.191 21.9451C146.399 22.1596 146.576 22.3987 146.721 22.6641C146.867 22.9286 146.977 23.2155 147.053 23.5256C147.129 23.8344 147.167 24.1613 147.167 24.5028ZM145.835 24.5028C145.835 24.1184 145.784 23.7749 145.68 23.4688C145.577 23.1653 145.43 22.9047 145.24 22.6922C145.049 22.4794 144.818 22.3166 144.545 22.2035C144.272 22.0904 143.965 22.0336 143.623 22.0336C143.28 22.0336 142.973 22.0901 142.7 22.2035C142.428 22.3166 142.196 22.4794 142.003 22.6922C141.811 22.905 141.663 23.1653 141.56 23.4688C141.457 23.7752 141.405 24.1186 141.405 24.5028C141.405 24.8871 141.457 25.2306 141.56 25.537C141.663 25.8414 141.811 26.0988 142.003 26.3106C142.196 26.5234 142.428 26.6853 142.7 26.7974C142.973 26.9105 143.281 26.968 143.623 26.968C143.965 26.968 144.272 26.9105 144.545 26.7974C144.818 26.6853 145.049 26.5232 145.24 26.3106C145.43 26.0991 145.577 25.8414 145.68 25.537C145.784 25.2303 145.835 24.8871 145.835 24.5028Z" fill="#6D5ED4"/>
|
||||
<path d="M87.0187 21.0837H45.217V28.0769H87.0187V21.0837Z" fill="#9181FF"/>
|
||||
<path d="M86.9251 21.0837H79.9319V28.0769H86.9251V21.0837Z" fill="#6D5ED4"/>
|
||||
<path d="M37.0642 34.0709H233.871" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M205.519 28.0769H198.286C198.076 28.0769 197.906 27.9067 197.906 27.6968V20.4645C197.906 20.2547 198.076 20.0845 198.286 20.0845H205.519C205.728 20.0845 205.899 20.2547 205.899 20.4645V27.6968C205.898 27.9067 205.728 28.0769 205.519 28.0769Z" fill="#6D5ED4"/>
|
||||
<path d="M216.472 28.0769H209.311C209.081 28.0769 208.895 27.8906 208.895 27.661V20.5004C208.895 20.2708 209.081 20.0845 209.311 20.0845H216.472C216.701 20.0845 216.888 20.2708 216.888 20.5004V27.661C216.888 27.8906 216.702 28.0769 216.472 28.0769Z" fill="#6D5ED4"/>
|
||||
<path d="M228.481 28.0769H221.278C221.06 28.0769 220.884 27.9004 220.884 27.6825V20.4789C220.884 20.2613 221.06 20.0845 221.278 20.0845H228.481C228.699 20.0845 228.876 20.261 228.876 20.4789V27.6825C228.876 27.9001 228.699 28.0769 228.481 28.0769Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.988647H-0.0761719V50.9396H36.9685V0.988647Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.6833V15.4048H9.86658V13.3958H7.84419V15.4048H6.89722V10.6833H7.84419V12.6246H9.86658V10.6833H10.8135V10.6833Z" fill="white"/>
|
||||
<path d="M15.2035 13.815H12.464C12.4865 14.0856 12.5813 14.2977 12.7482 14.4507C12.915 14.6041 13.1202 14.6808 13.3637 14.6808C13.7154 14.6808 13.9658 14.5297 14.1145 14.2277H15.1358C15.0276 14.5885 14.8201 14.8851 14.5135 15.1172C14.2068 15.3495 13.8303 15.4655 13.3839 15.4655C13.0232 15.4655 12.6995 15.3853 12.4133 15.2254C12.1269 15.0652 11.9037 14.8388 11.7435 14.5456C11.5834 14.2526 11.5034 13.9143 11.5034 13.5308C11.5034 13.143 11.5821 12.8028 11.7401 12.5095C11.8978 12.2165 12.1189 11.9911 12.4029 11.8331C12.6871 11.6754 13.0139 11.5964 13.3837 11.5964C13.7398 11.5964 14.0591 11.6732 14.3409 11.8263C14.6227 11.9796 14.8416 12.1973 14.9971 12.4791C15.1526 12.7608 15.2306 13.0843 15.2306 13.4497C15.2306 13.5852 15.2216 13.7068 15.2035 13.815ZM14.25 13.1793C14.2454 12.9358 14.1576 12.7408 13.986 12.5943C13.8144 12.4479 13.605 12.3745 13.3569 12.3745C13.1224 12.3745 12.925 12.4454 12.7651 12.5875C12.6049 12.7296 12.5067 12.9268 12.4709 13.1793H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.5095C16.0546 12.2165 16.2596 11.9911 16.5189 11.8331C16.7783 11.6754 17.0678 11.5964 17.3881 11.5964C17.6677 11.5964 17.9124 11.6527 18.1221 11.7656C18.3317 11.8785 18.4996 12.0203 18.6259 12.1917V11.6574H19.5797V15.4048H18.6259V14.8568C18.504 15.0328 18.3361 15.1781 18.1221 15.2931C17.9078 15.4082 17.6609 15.4657 17.3813 15.4657C17.0656 15.4657 16.778 15.3846 16.5187 15.222C16.2593 15.0594 16.0541 14.831 15.9032 14.5356C15.7521 14.2404 15.6768 13.9008 15.6768 13.5174C15.677 13.1386 15.7526 12.8028 15.9034 12.5095ZM18.4909 12.939C18.4007 12.7745 18.2788 12.6482 18.1255 12.5602C17.9722 12.4722 17.8076 12.4281 17.6316 12.4281C17.4559 12.4281 17.2936 12.471 17.1446 12.5566C16.9959 12.6424 16.8753 12.7674 16.7829 12.9319C16.6905 13.0967 16.6442 13.2917 16.6442 13.5169C16.6442 13.7427 16.6903 13.9398 16.7829 14.1088C16.8753 14.2779 16.9969 14.4076 17.1483 14.4978C17.2994 14.5882 17.4605 14.6331 17.6319 14.6331C17.8079 14.6331 17.9724 14.5892 18.1257 14.5012C18.279 14.4132 18.4007 14.2872 18.4911 14.1224C18.5813 13.9579 18.6264 13.7604 18.6264 13.5306C18.6264 13.3007 18.581 13.1038 18.4909 12.939Z" fill="white"/>
|
||||
<path d="M20.4896 12.5095C20.6408 12.2165 20.847 11.991 21.1088 11.8331C21.3703 11.6754 21.6611 11.5964 21.9814 11.5964C22.2249 11.5964 22.4572 11.6495 22.678 11.7553C22.8989 11.8614 23.0748 12.0023 23.2057 12.178V10.3991H24.1661V15.4048H23.2057V14.8502C23.0885 15.0352 22.924 15.1839 22.7119 15.2968C22.4998 15.4094 22.2541 15.4659 21.9746 15.4659C21.6589 15.4659 21.3703 15.3848 21.1088 15.2222C20.8472 15.0599 20.6408 14.8312 20.4896 14.5358C20.3385 14.2406 20.2632 13.9011 20.2632 13.5176C20.2629 13.1386 20.3385 12.8027 20.4896 12.5095ZM23.0768 12.939C22.9866 12.7745 22.8647 12.6482 22.7114 12.5602C22.5581 12.4722 22.3936 12.4281 22.2176 12.4281C22.0418 12.4281 21.8795 12.471 21.7306 12.5565C21.5819 12.6423 21.4612 12.7674 21.3688 12.9319C21.2765 13.0967 21.2301 13.2917 21.2301 13.5169C21.2301 13.7426 21.2762 13.9398 21.3688 14.1087C21.4612 14.2779 21.5828 14.4076 21.7342 14.4978C21.8853 14.5882 22.0465 14.633 22.2178 14.633C22.3938 14.633 22.5583 14.5892 22.7117 14.5012C22.865 14.4132 22.9866 14.2872 23.077 14.1224C23.1672 13.9579 23.2123 13.7604 23.2123 13.5306C23.2123 13.3007 23.1672 13.1038 23.0768 12.939Z" fill="white"/>
|
||||
<path d="M28.5492 13.815H25.8097C25.8322 14.0856 25.927 14.2977 26.094 14.4507C26.2607 14.6041 26.4659 14.6808 26.7094 14.6808C27.0612 14.6808 27.3115 14.5297 27.4602 14.2277H28.4815C28.3733 14.5885 28.1658 14.8851 27.8592 15.1172C27.5526 15.3495 27.176 15.4655 26.7297 15.4655C26.3689 15.4655 26.0452 15.3853 25.759 15.2254C25.4726 15.0652 25.2494 14.8388 25.0892 14.5456C24.9291 14.2526 24.8491 13.9143 24.8491 13.5308C24.8491 13.143 24.9279 12.8028 25.0858 12.5095C25.2435 12.2165 25.4646 11.9911 25.7486 11.8331C26.0328 11.6754 26.3596 11.5964 26.7294 11.5964C27.0855 11.5964 27.4048 11.6732 27.6866 11.8263C27.9684 11.9796 28.1873 12.1973 28.3428 12.4791C28.4983 12.7608 28.5763 13.0843 28.5763 13.4497C28.5763 13.5852 28.567 13.7068 28.5492 13.815ZM27.5955 13.1793C27.5908 12.9358 27.5031 12.7408 27.3315 12.5943C27.1599 12.4479 26.9505 12.3745 26.7024 12.3745C26.4679 12.3745 26.2704 12.4454 26.1105 12.5875C25.9504 12.7296 25.8522 12.9268 25.8163 13.1793H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.7721C30.8863 11.6595 31.1106 11.6032 31.3631 11.6032V12.5975H31.1128C30.8151 12.5975 30.5906 12.6674 30.4398 12.8071C30.2886 12.947 30.2131 13.1905 30.2131 13.5376V15.4045H29.2661V11.6573H30.2131V12.2392C30.335 12.0405 30.4939 11.885 30.6901 11.7721Z" fill="white"/>
|
||||
<path d="M8.3809 23.7764C9.17626 22.5288 10.4971 21.9051 12.3433 21.9051C14.189 21.9051 15.5101 22.5291 16.3057 23.7764C17.1011 25.0241 17.4991 26.7491 17.4991 28.9514C17.4991 31.1666 17.1011 32.9043 16.3057 34.1647C15.5099 35.4249 14.189 36.0553 12.3433 36.0553C10.4971 36.0553 9.17626 35.4252 8.3809 34.1647C7.58506 32.9046 7.1875 31.1666 7.1875 28.9514C7.1875 26.7491 7.58506 25.0244 8.3809 23.7764ZM14.6826 26.5741C14.5614 25.9314 14.3196 25.4061 13.9569 24.9988C13.594 24.5915 13.056 24.3877 12.3433 24.3877C11.6301 24.3877 11.0926 24.5915 10.7297 24.9988C10.367 25.4063 10.1249 25.9316 10.004 26.5741C9.88289 27.2171 9.82268 28.0096 9.82268 28.9514C9.82268 29.9191 9.87996 30.7305 9.99452 31.3862C10.1091 32.0419 10.3509 32.5701 10.7202 32.9711C11.0892 33.3721 11.6301 33.5727 12.3433 33.5727C13.056 33.5727 13.5971 33.3721 13.9664 32.9711C14.3355 32.5701 14.5775 32.0419 14.6921 31.3862C14.8066 30.7308 14.8639 29.9191 14.8639 28.9514C14.8639 28.0096 14.8035 27.2171 14.6826 26.5741Z" fill="white"/>
|
||||
<path d="M19.9433 25.6479C19.9433 24.9605 20.1183 24.3336 20.4686 23.7669C20.8186 23.2006 21.3471 22.7485 22.0535 22.4111C22.7599 22.074 23.6222 21.9051 24.6409 21.9051C25.6593 21.9051 26.5219 22.074 27.2285 22.4111C27.9349 22.7487 28.4631 23.2006 28.8134 23.7669C29.1634 24.3336 29.3384 24.9603 29.3384 25.6479C29.3384 26.3482 29.1666 26.9627 28.8229 27.4906C28.4792 28.0191 28.0207 28.4295 27.4479 28.7223C28.148 29.0277 28.6954 29.4735 29.09 30.059C29.4844 30.6447 29.6821 31.3385 29.6821 32.1406C29.6821 33.0064 29.4625 33.7608 29.0233 34.4036C28.584 35.0466 27.9824 35.5397 27.2185 35.8834C26.4549 36.2271 25.5954 36.399 24.6406 36.399C23.6859 36.399 22.8296 36.2271 22.0722 35.8834C21.3147 35.5397 20.7165 35.0464 20.2773 34.4036C19.838 33.7608 19.6184 33.0067 19.6184 32.1406C19.6184 31.3385 19.8156 30.6416 20.2105 30.0495C20.6049 29.4574 21.1523 29.0153 21.8526 28.7223C20.58 28.0605 19.9433 27.0355 19.9433 25.6479ZM22.8747 30.441C22.4228 30.8105 22.1968 31.3385 22.1968 32.0258C22.1968 32.6625 22.4164 33.1812 22.8557 33.5822C23.2949 33.9834 23.8899 34.1838 24.6411 34.1838C25.3921 34.1838 25.9842 33.9805 26.4171 33.5727C26.8497 33.1654 27.0664 32.6498 27.0664 32.0258C27.0664 31.3511 26.8434 30.8261 26.3981 30.4505C25.9523 30.0751 25.367 29.8872 24.6411 29.8872C23.9152 29.8872 23.3263 30.0719 22.8747 30.441ZM26.1782 24.5785C25.8026 24.2349 25.2902 24.063 24.6409 24.063C24.0042 24.063 23.4982 24.2349 23.1228 24.5785C22.7469 24.9222 22.5595 25.4124 22.5595 26.0488C22.5595 26.6219 22.7533 27.0799 23.1418 27.4238C23.5301 27.7678 24.0298 27.9396 24.6409 27.9396C25.252 27.9396 25.7548 27.7646 26.1494 27.4143C26.5441 27.0643 26.7415 26.6026 26.7415 26.0298C26.7415 25.4061 26.5536 24.9222 26.1782 24.5785Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2964">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.700073)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,35 @@
|
||||
<svg width="234" height="52" viewBox="0 0 234 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2919)">
|
||||
<path d="M233.756 1.20117H-0.0144043V51.1521H233.756V1.20117Z" fill="white"/>
|
||||
<path d="M233.756 1.0379H-0.0144043V12.0271H233.756V1.0379Z" fill="#9181FF"/>
|
||||
<path d="M106.561 37.6011C106.561 38.8265 105.567 39.8198 104.342 39.8198H93.7945C92.5692 39.8198 91.5754 38.8267 91.5754 37.6011V37.0432C91.5754 35.8179 92.569 34.8246 93.7945 34.8246H104.342C105.567 34.8246 106.561 35.8176 106.561 37.0432V37.6011Z" fill="#6D5ED4"/>
|
||||
<path d="M88.2455 37.6011C88.2455 38.8265 87.252 39.8198 86.0264 39.8198H75.4791C74.2538 39.8198 73.26 38.8267 73.26 37.6011V37.0432C73.26 35.8179 74.2535 34.8246 75.4791 34.8246H86.0264C87.2517 34.8246 88.2455 35.8176 88.2455 37.0432V37.6011Z" fill="#6D5ED4"/>
|
||||
<path d="M124.876 37.6011C124.876 38.8265 123.883 39.8198 122.657 39.8198H112.11C110.885 39.8198 109.891 38.8267 109.891 37.6011V37.0432C109.891 35.8179 110.884 34.8246 112.11 34.8246H122.657C123.883 34.8246 124.876 35.8176 124.876 37.0432V37.6011Z" fill="#6D5ED4"/>
|
||||
<path d="M143.192 37.6011C143.192 38.8265 142.198 39.8198 140.972 39.8198H130.426C129.2 39.8198 128.206 38.8267 128.206 37.6011V37.0432C128.206 35.8179 129.2 34.8246 130.426 34.8246H140.972C142.197 34.8246 143.192 35.8176 143.192 37.0432V37.6011Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 1.20117H-0.0761719V51.1521H36.9685V1.20117Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.8959V15.6173H9.86658V13.6083H7.84419V15.6173H6.89722V10.8959H7.84419V12.8371H9.86658V10.8959H10.8135V10.8959Z" fill="white"/>
|
||||
<path d="M15.2035 14.0276H12.464C12.4865 14.2981 12.5813 14.5102 12.7482 14.6633C12.915 14.8166 13.1202 14.8934 13.3637 14.8934C13.7154 14.8934 13.9658 14.7422 14.1145 14.4402H15.1358C15.0276 14.801 14.8201 15.0976 14.5135 15.3297C14.2068 15.562 13.8303 15.678 13.3839 15.678C13.0232 15.678 12.6995 15.5978 12.4133 15.4379C12.1269 15.2778 11.9037 15.0513 11.7435 14.7581C11.5834 14.4651 11.5034 14.1268 11.5034 13.7434C11.5034 13.3556 11.5821 13.0153 11.7401 12.722C11.8978 12.4291 12.1189 12.2036 12.4029 12.0456C12.6871 11.8879 13.0139 11.809 13.3837 11.809C13.7398 11.809 14.0591 11.8857 14.3409 12.0388C14.6227 12.1921 14.8416 12.4098 14.9971 12.6916C15.1526 12.9734 15.2306 13.2968 15.2306 13.6622C15.2306 13.7977 15.2216 13.9193 15.2035 14.0276ZM14.25 13.3919C14.2454 13.1484 14.1576 12.9534 13.986 12.8069C13.8144 12.6604 13.605 12.587 13.3569 12.587C13.1224 12.587 12.925 12.6579 12.7651 12.8C12.6049 12.9422 12.5067 13.1393 12.4709 13.3919H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.722C16.0546 12.4291 16.2596 12.2036 16.5189 12.0456C16.7783 11.8879 17.0678 11.809 17.3881 11.809C17.6677 11.809 17.9124 11.8653 18.1221 11.9781C18.3317 12.091 18.4996 12.2328 18.6259 12.4042V11.8699H19.5797V15.6173H18.6259V15.0694C18.504 15.2453 18.3361 15.3906 18.1221 15.5057C17.9078 15.6207 17.6609 15.6782 17.3813 15.6782C17.0656 15.6782 16.778 15.5971 16.5187 15.4345C16.2593 15.2719 16.0541 15.0435 15.9032 14.7481C15.7521 14.4529 15.6768 14.1134 15.6768 13.73C15.677 13.3512 15.7526 13.0153 15.9034 12.722ZM18.4909 13.1515C18.4007 12.987 18.2788 12.8607 18.1255 12.7727C17.9722 12.6848 17.8076 12.6406 17.6316 12.6406C17.4559 12.6406 17.2936 12.6835 17.1446 12.7691C16.9959 12.8549 16.8753 12.9799 16.7829 13.1445C16.6905 13.3092 16.6442 13.5042 16.6442 13.7295C16.6442 13.9552 16.6903 14.1524 16.7829 14.3213C16.8753 14.4905 16.9969 14.6201 17.1483 14.7103C17.2994 14.8007 17.4605 14.8456 17.6319 14.8456C17.8079 14.8456 17.9724 14.8017 18.1257 14.7137C18.279 14.6257 18.4007 14.4997 18.4911 14.3349C18.5813 14.1704 18.6264 13.973 18.6264 13.7431C18.6264 13.5133 18.581 13.3163 18.4909 13.1515Z" fill="white"/>
|
||||
<path d="M20.4896 12.722C20.6408 12.429 20.847 12.2036 21.1088 12.0456C21.3703 11.8879 21.6611 11.8089 21.9814 11.8089C22.2249 11.8089 22.4572 11.8621 22.678 11.9679C22.8989 12.0739 23.0748 12.2148 23.2057 12.3905V10.6116H24.1661V15.6173H23.2057V15.0628C23.0885 15.2478 22.924 15.3964 22.7119 15.5093C22.4998 15.6219 22.2541 15.6785 21.9746 15.6785C21.6589 15.6785 21.3703 15.5973 21.1088 15.4347C20.8472 15.2724 20.6408 15.0437 20.4896 14.7483C20.3385 14.4531 20.2632 14.1136 20.2632 13.7302C20.2629 13.3511 20.3385 13.0153 20.4896 12.722ZM23.0768 13.1515C22.9866 12.987 22.8647 12.8607 22.7114 12.7727C22.5581 12.6847 22.3936 12.6406 22.2176 12.6406C22.0418 12.6406 21.8795 12.6835 21.7306 12.7691C21.5819 12.8549 21.4612 12.9799 21.3688 13.1444C21.2765 13.3092 21.2301 13.5042 21.2301 13.7294C21.2301 13.9552 21.2762 14.1523 21.3688 14.3213C21.4612 14.4904 21.5828 14.6201 21.7342 14.7103C21.8853 14.8007 22.0465 14.8456 22.2178 14.8456C22.3938 14.8456 22.5583 14.8017 22.7117 14.7137C22.865 14.6257 22.9866 14.4997 23.077 14.3349C23.1672 14.1704 23.2123 13.9729 23.2123 13.7431C23.2123 13.5132 23.1672 13.3163 23.0768 13.1515Z" fill="white"/>
|
||||
<path d="M28.5492 14.0276H25.8097C25.8322 14.2981 25.927 14.5102 26.094 14.6633C26.2607 14.8166 26.4659 14.8934 26.7094 14.8934C27.0612 14.8934 27.3115 14.7422 27.4602 14.4402H28.4815C28.3733 14.801 28.1658 15.0976 27.8592 15.3297C27.5526 15.562 27.176 15.678 26.7297 15.678C26.3689 15.678 26.0452 15.5978 25.759 15.4379C25.4726 15.2778 25.2494 15.0513 25.0892 14.7581C24.9291 14.4651 24.8491 14.1268 24.8491 13.7434C24.8491 13.3556 24.9279 13.0153 25.0858 12.722C25.2435 12.4291 25.4646 12.2036 25.7486 12.0456C26.0328 11.8879 26.3596 11.809 26.7294 11.809C27.0855 11.809 27.4048 11.8857 27.6866 12.0388C27.9684 12.1921 28.1873 12.4098 28.3428 12.6916C28.4983 12.9734 28.5763 13.2968 28.5763 13.6622C28.5763 13.7977 28.567 13.9193 28.5492 14.0276ZM27.5955 13.3919C27.5908 13.1484 27.5031 12.9534 27.3315 12.8069C27.1599 12.6604 26.9505 12.587 26.7024 12.587C26.4679 12.587 26.2704 12.6579 26.1105 12.8C25.9504 12.9422 25.8522 13.1393 25.8163 13.3919H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.9847C30.8863 11.872 31.1106 11.8157 31.3631 11.8157V12.81H31.1128C30.8151 12.81 30.5906 12.8799 30.4398 13.0196C30.2886 13.1595 30.2131 13.403 30.2131 13.7501V15.617H29.2661V11.8698H30.2131V12.4517C30.335 12.253 30.4939 12.0975 30.6901 11.9847Z" fill="white"/>
|
||||
<path d="M44.971 39.7473V40.8223H40.8706V33.8213H42.1732V39.7471H44.971V39.7473Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 37.322C52.3302 37.8363 52.2449 38.3104 52.0757 38.7484C51.9063 39.1845 51.6665 39.5631 51.3571 39.8831C51.0468 40.2031 50.6741 40.4518 50.2386 40.6314C49.8025 40.8098 49.3187 40.8998 48.7858 40.8998C48.2566 40.8998 47.774 40.8101 47.3384 40.6314C46.9024 40.4518 46.5287 40.2031 46.2174 39.8831C45.9057 39.5631 45.6648 39.1845 45.4935 38.7484C45.3224 38.3104 45.2368 37.8363 45.2368 37.322C45.2368 36.808 45.3221 36.3339 45.4935 35.8956C45.6646 35.4595 45.9057 35.081 46.2174 34.7609C46.5287 34.4409 46.9024 34.1923 47.3384 34.0126C47.774 33.8342 48.2564 33.7445 48.7858 33.7445C49.141 33.7445 49.4751 33.7855 49.7876 33.8674C50.1008 33.9493 50.3882 34.0663 50.65 34.2157C50.9111 34.367 51.146 34.5484 51.354 34.7641C51.5624 34.9786 51.7388 35.2177 51.8841 35.4832C52.0296 35.7476 52.1398 36.0345 52.2159 36.3446C52.2919 36.6537 52.3302 36.9805 52.3302 37.322ZM50.9986 37.322C50.9986 36.9376 50.9469 36.5942 50.8436 36.288C50.7404 35.9846 50.5932 35.724 50.4031 35.5114C50.2125 35.2987 49.9812 35.1358 49.7084 35.0227C49.4352 34.9096 49.128 34.8528 48.7861 34.8528C48.4436 34.8528 48.1362 34.9094 47.8635 35.0227C47.591 35.1358 47.3587 35.2987 47.1663 35.5114C46.974 35.7242 46.8268 35.9846 46.7234 36.288C46.6201 36.5944 46.5684 36.9379 46.5684 37.322C46.5684 37.7064 46.6201 38.0499 46.7234 38.3563C46.8268 38.6607 46.9743 38.9181 47.1663 39.1299C47.3587 39.3427 47.5907 39.5046 47.8635 39.6167C48.1362 39.7298 48.4436 39.7873 48.7861 39.7873C49.128 39.7873 49.4354 39.7298 49.7084 39.6167C49.9812 39.5046 50.2122 39.3425 50.4031 39.1299C50.5935 38.9183 50.7407 38.6607 50.8436 38.3563C50.9469 38.0496 50.9986 37.7064 50.9986 37.322Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 37.3123V40.1444C58.8937 40.406 58.5152 40.5971 58.1132 40.718C57.7113 40.8398 57.2816 40.8995 56.8231 40.8995C56.2517 40.8995 55.7342 40.8118 55.2714 40.6331C54.808 40.4564 54.4129 40.2097 54.0855 39.8926C53.7577 39.5774 53.5049 39.1989 53.3275 38.7589C53.1502 38.3209 53.0615 37.8419 53.0615 37.3218C53.0615 36.795 53.1468 36.3131 53.3182 35.8749C53.4888 35.4349 53.7318 35.0573 54.0465 34.7422C54.3612 34.4251 54.7432 34.1791 55.1914 34.0056C55.6402 33.831 56.144 33.744 56.7022 33.744C56.9861 33.744 57.2518 33.7664 57.4987 33.8113C57.7454 33.8571 57.9748 33.9185 58.1861 33.9975C58.3977 34.0765 58.5905 34.172 58.7645 34.2861C58.9386 34.3992 59.0987 34.5223 59.244 34.6578L58.8713 35.2492C58.8133 35.3438 58.7372 35.4005 58.6436 35.421C58.55 35.4425 58.4486 35.4191 58.3387 35.3518C58.2319 35.2904 58.1254 35.2289 58.0192 35.1675C57.9121 35.1061 57.7937 35.0522 57.663 35.0086C57.5329 34.9628 57.3854 34.9247 57.2226 34.8965C57.0598 34.8682 56.8713 34.8526 56.6588 34.8526C56.3134 34.8526 56.0007 34.9101 55.7218 35.0271C55.4427 35.1441 55.2048 35.3091 55.0076 35.5246C54.8109 35.7423 54.6593 36.0007 54.5525 36.3051C54.4463 36.6076 54.3929 36.9481 54.3929 37.3218C54.3929 37.7218 54.4499 38.0798 54.5647 38.395C54.6793 38.7092 54.8407 38.9756 55.0491 39.1931C55.257 39.4115 55.508 39.5774 55.8018 39.6925C56.0955 39.8075 56.4233 39.8641 56.7848 39.8641C57.0429 39.8641 57.2735 39.8358 57.4771 39.7822C57.6803 39.7266 57.879 39.6525 58.0728 39.5577V38.2895H57.1914C57.1075 38.2895 57.0422 38.267 56.9959 38.2202C56.9491 38.1725 56.9252 38.1159 56.9252 38.0486V37.312H59.2489V37.3123Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 37.322C67.1844 37.8363 67.0991 38.3104 66.9297 38.7484C66.7601 39.1845 66.5205 39.5631 66.2107 39.8831C65.9008 40.2031 65.5282 40.4518 65.0921 40.6314C64.6565 40.8098 64.1722 40.8998 63.6398 40.8998C63.1106 40.8998 62.628 40.8101 62.1924 40.6314C61.7564 40.4518 61.3827 40.2031 61.0714 39.8831C60.7597 39.5631 60.5184 39.1845 60.3475 38.7484C60.1764 38.3104 60.0908 37.8363 60.0908 37.322C60.0908 36.808 60.1761 36.3339 60.3475 35.8956C60.5181 35.4595 60.7597 35.081 61.0714 34.7609C61.3827 34.4409 61.7564 34.1923 62.1924 34.0126C62.628 33.8342 63.1106 33.7445 63.6398 33.7445C63.995 33.7445 64.3291 33.7855 64.6419 33.8674C64.9548 33.9493 65.2422 34.0663 65.5038 34.2157C65.7653 34.367 65.9998 34.5484 66.208 34.7641C66.4164 34.9786 66.5929 35.2177 66.7384 35.4832C66.8836 35.7476 66.9941 36.0345 67.0701 36.3446C67.1459 36.6537 67.1844 36.9805 67.1844 37.322ZM65.8523 37.322C65.8523 36.9376 65.8011 36.5942 65.6978 36.288C65.5944 35.9846 65.4475 35.724 65.2573 35.5114C65.0667 35.2987 64.8354 35.1358 64.5627 35.0227C64.2894 34.9096 63.982 34.8528 63.6401 34.8528C63.2976 34.8528 62.9902 34.9094 62.7177 35.0227C62.445 35.1358 62.2129 35.2987 62.0206 35.5114C61.8285 35.7242 61.6806 35.9846 61.5777 36.288C61.4743 36.5944 61.4224 36.9379 61.4224 37.322C61.4224 37.7064 61.4741 38.0499 61.5777 38.3563C61.6806 38.6607 61.8285 38.9181 62.0206 39.1299C62.2129 39.3427 62.445 39.5046 62.7177 39.6167C62.9902 39.7298 63.2978 39.7873 63.6401 39.7873C63.982 39.7873 64.2894 39.7298 64.5627 39.6167C64.8352 39.5046 65.0665 39.3425 65.2573 39.1299C65.4475 38.9183 65.5944 38.6607 65.6978 38.3563C65.8011 38.0496 65.8523 37.7064 65.8523 37.322Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 27.8311H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M217.192 41.3181H210.032C209.802 41.3181 209.616 41.1318 209.616 40.9022V33.7416C209.616 33.512 209.802 33.3257 210.032 33.3257H217.192C217.422 33.3257 217.608 33.512 217.608 33.7416V40.9022C217.608 41.1318 217.422 41.3181 217.192 41.3181Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 41.3181H221.163C220.946 41.3181 220.769 41.1416 220.769 40.9237V33.7201C220.769 33.5025 220.946 33.3257 221.163 33.3257H228.367C228.585 33.3257 228.761 33.5022 228.761 33.7201V40.9237C228.761 41.1416 228.585 41.3181 228.367 41.3181Z" fill="#6D5ED4"/>
|
||||
<path d="M65.5687 18.2189H39.7312V22.8501H65.5687V18.2189Z" fill="#9181FF"/>
|
||||
<path d="M229.369 18.2189H203.531V22.8501H229.369V18.2189Z" fill="#9181FF"/>
|
||||
<path d="M8.62455 23.9889C9.41991 22.7414 10.7408 22.1177 12.587 22.1177C14.4326 22.1177 15.7538 22.7417 16.5494 23.9889C17.3447 25.2367 17.7428 26.9617 17.7428 29.164C17.7428 31.3792 17.3447 33.1169 16.5494 34.3773C15.7535 35.6375 14.4326 36.2678 12.587 36.2678C10.7408 36.2678 9.41991 35.6378 8.62455 34.3773C7.82871 33.1171 7.43115 31.3792 7.43115 29.164C7.43115 26.9617 7.82871 25.2369 8.62455 23.9889ZM14.9262 26.7867C14.8051 26.1439 14.5633 25.6187 14.2006 25.2113C13.8376 24.804 13.2997 24.6003 12.587 24.6003C11.8737 24.6003 11.3363 24.804 10.9733 25.2113C10.6106 25.6189 10.3686 26.1442 10.2477 26.7867C10.1265 27.4297 10.0663 28.2222 10.0663 29.164C10.0663 30.1317 10.1236 30.9431 10.2382 31.5988C10.3527 32.2545 10.5945 32.7827 10.9638 33.1837C11.3329 33.5846 11.8737 33.7853 12.587 33.7853C13.2997 33.7853 13.8408 33.5846 14.2101 33.1837C14.5791 32.7827 14.8212 32.2545 14.9357 31.5988C15.0503 30.9434 15.1076 30.1317 15.1076 29.164C15.1076 28.2222 15.0471 27.4297 14.9262 26.7867Z" fill="white"/>
|
||||
<path d="M23.5578 33.6804C23.9207 33.9797 24.4075 34.1292 25.0186 34.1292C25.8078 34.1292 26.3806 33.8016 26.7372 33.1456C27.0936 32.4902 27.272 31.3858 27.272 29.8326C26.979 30.2401 26.5686 30.5582 26.0404 30.7873C25.5119 31.0165 24.9425 31.131 24.3312 31.131C23.5163 31.131 22.7812 30.9626 22.1257 30.625C21.4698 30.2879 20.9514 29.7848 20.5694 29.1164C20.1874 28.4481 19.9966 27.6364 19.9966 26.6816C19.9966 25.2686 20.4168 24.1452 21.2568 23.311C22.097 22.4774 23.2428 22.0604 24.6941 22.0604C26.5018 22.0604 27.7781 22.6398 28.523 23.7981C29.2679 24.9566 29.6401 26.7006 29.6401 29.0304C29.6401 30.6855 29.497 32.0414 29.2103 33.0979C28.9239 34.1548 28.4337 34.9567 27.74 35.5039C27.0461 36.0516 26.1008 36.3251 24.9042 36.3251C23.9619 36.3251 23.16 36.1438 22.4979 35.7811C21.8359 35.4181 21.3299 34.9408 20.9799 34.3488C20.6296 33.7567 20.429 33.1047 20.3783 32.3915H22.8609C22.9625 32.9516 23.1951 33.3813 23.5578 33.6804ZM26.4508 28.343C26.8328 27.9357 27.0236 27.3883 27.0236 26.7009C27.0236 25.9499 26.823 25.3673 26.4221 24.9537C26.0211 24.54 25.4768 24.3331 24.7894 24.3331C24.1021 24.3331 23.5578 24.5464 23.1568 24.9729C22.7556 25.3995 22.5552 25.963 22.5552 26.6631C22.5552 27.338 22.749 27.8884 23.1375 28.3147C23.5258 28.7413 24.1082 28.9546 24.8847 28.9546C25.5468 28.9541 26.0689 28.7506 26.4508 28.343Z" fill="white"/>
|
||||
<path d="M205.693 33.422H166.656V41.222H205.693V33.422Z" fill="#9181FF"/>
|
||||
<path d="M205.693 33.422H197.893V41.222H205.693V33.422Z" fill="#6D5ED4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2919">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.912598)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,35 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_3007)">
|
||||
<path d="M233.756 0.413696H-0.0144043V50.3647H233.756V0.413696Z" fill="white"/>
|
||||
<path d="M233.756 0.250366H-0.0144043V11.2396H233.756V0.250366Z" fill="#9181FF"/>
|
||||
<path d="M106.561 36.8137C106.561 38.039 105.567 39.0323 104.342 39.0323H93.7945C92.5692 39.0323 91.5754 38.0392 91.5754 36.8137V36.2557C91.5754 35.0304 92.569 34.0371 93.7945 34.0371H104.342C105.567 34.0371 106.561 35.0301 106.561 36.2557V36.8137Z" fill="#6D5ED4"/>
|
||||
<path d="M88.2455 36.8137C88.2455 38.039 87.252 39.0323 86.0264 39.0323H75.4791C74.2538 39.0323 73.26 38.0392 73.26 36.8137V36.2557C73.26 35.0304 74.2535 34.0371 75.4791 34.0371H86.0264C87.2517 34.0371 88.2455 35.0301 88.2455 36.2557V36.8137Z" fill="#6D5ED4"/>
|
||||
<path d="M124.876 36.8137C124.876 38.039 123.883 39.0323 122.657 39.0323H112.11C110.885 39.0323 109.891 38.0392 109.891 36.8137V36.2557C109.891 35.0304 110.884 34.0371 112.11 34.0371H122.657C123.883 34.0371 124.876 35.0301 124.876 36.2557V36.8137Z" fill="#6D5ED4"/>
|
||||
<path d="M143.192 36.8137C143.192 38.039 142.198 39.0323 140.972 39.0323H130.426C129.2 39.0323 128.206 38.0392 128.206 36.8137V36.2557C128.206 35.0304 129.2 34.0371 130.426 34.0371H140.972C142.197 34.0371 143.192 35.0301 143.192 36.2557V36.8137Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.413696H-0.0761719V50.3647H36.9685V0.413696Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.1084V14.8298H9.86658V12.8208H7.84419V14.8298H6.89722V10.1084H7.84419V12.0496H9.86658V10.1084H10.8135V10.1084Z" fill="white"/>
|
||||
<path d="M15.2035 13.2401H12.464C12.4865 13.5107 12.5813 13.7227 12.7482 13.8758C12.915 14.0291 13.1202 14.1059 13.3637 14.1059C13.7154 14.1059 13.9658 13.9548 14.1145 13.6528H15.1358C15.0276 14.0135 14.8201 14.3102 14.5135 14.5422C14.2068 14.7745 13.8303 14.8905 13.3839 14.8905C13.0232 14.8905 12.6995 14.8103 12.4133 14.6504C12.1269 14.4903 11.9037 14.2638 11.7435 13.9706C11.5834 13.6776 11.5034 13.3393 11.5034 12.9559C11.5034 12.5681 11.5821 12.2278 11.7401 11.9346C11.8978 11.6416 12.1189 11.4161 12.4029 11.2582C12.6871 11.1005 13.0139 11.0215 13.3837 11.0215C13.7398 11.0215 14.0591 11.0983 14.3409 11.2513C14.6227 11.4047 14.8416 11.6223 14.9971 11.9041C15.1526 12.1859 15.2306 12.5093 15.2306 12.8747C15.2306 13.0102 15.2216 13.1319 15.2035 13.2401ZM14.25 12.6044C14.2454 12.3609 14.1576 12.1659 13.986 12.0194C13.8144 11.8729 13.605 11.7995 13.3569 11.7995C13.1224 11.7995 12.925 11.8705 12.7651 12.0126C12.6049 12.1547 12.5067 12.3519 12.4709 12.6044H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 11.9346C16.0546 11.6416 16.2596 11.4161 16.5189 11.2582C16.7783 11.1005 17.0678 11.0215 17.3881 11.0215C17.6677 11.0215 17.9124 11.0778 18.1221 11.1906C18.3317 11.3035 18.4996 11.4454 18.6259 11.6167V11.0824H19.5797V14.8298H18.6259V14.2819C18.504 14.4579 18.3361 14.6031 18.1221 14.7182C17.9078 14.8332 17.6609 14.8908 17.3813 14.8908C17.0656 14.8908 16.778 14.8096 16.5187 14.647C16.2593 14.4844 16.0541 14.256 15.9032 13.9606C15.7521 13.6654 15.6768 13.3259 15.6768 12.9425C15.677 12.5637 15.7526 12.2278 15.9034 11.9346ZM18.4909 12.3641C18.4007 12.1995 18.2788 12.0733 18.1255 11.9853C17.9722 11.8973 17.8076 11.8532 17.6316 11.8532C17.4559 11.8532 17.2936 11.8961 17.1446 11.9816C16.9959 12.0674 16.8753 12.1925 16.7829 12.357C16.6905 12.5218 16.6442 12.7168 16.6442 12.942C16.6442 13.1677 16.6903 13.3649 16.7829 13.5338C16.8753 13.703 16.9969 13.8327 17.1483 13.9228C17.2994 14.0133 17.4605 14.0581 17.6319 14.0581C17.8079 14.0581 17.9724 14.0142 18.1257 13.9263C18.279 13.8383 18.4007 13.7122 18.4911 13.5475C18.5813 13.3829 18.6264 13.1855 18.6264 12.9556C18.6264 12.7258 18.581 12.5288 18.4909 12.3641Z" fill="white"/>
|
||||
<path d="M20.4896 11.9346C20.6408 11.6416 20.847 11.4161 21.1088 11.2582C21.3703 11.1005 21.6611 11.0215 21.9814 11.0215C22.2249 11.0215 22.4572 11.0747 22.678 11.1804C22.8989 11.2865 23.0748 11.4274 23.2057 11.6031V9.82422H24.1661V14.8299H23.2057V14.2753C23.0885 14.4603 22.924 14.609 22.7119 14.7219C22.4998 14.8345 22.2541 14.891 21.9746 14.891C21.6589 14.891 21.3703 14.8099 21.1088 14.6473C20.8472 14.485 20.6408 14.2563 20.4896 13.9609C20.3385 13.6657 20.2632 13.3262 20.2632 12.9428C20.2629 12.5637 20.3385 12.2278 20.4896 11.9346ZM23.0768 12.3641C22.9866 12.1996 22.8647 12.0733 22.7114 11.9853C22.5581 11.8973 22.3936 11.8532 22.2176 11.8532C22.0418 11.8532 21.8795 11.8961 21.7306 11.9816C21.5819 12.0674 21.4612 12.1925 21.3688 12.357C21.2765 12.5218 21.2301 12.7168 21.2301 12.942C21.2301 13.1677 21.2762 13.3649 21.3688 13.5338C21.4612 13.703 21.5828 13.8327 21.7342 13.9229C21.8853 14.0133 22.0465 14.0582 22.2178 14.0582C22.3938 14.0582 22.5583 14.0143 22.7117 13.9263C22.865 13.8383 22.9866 13.7123 23.077 13.5475C23.1672 13.383 23.2123 13.1855 23.2123 12.9557C23.2123 12.7258 23.1672 12.5289 23.0768 12.3641Z" fill="white"/>
|
||||
<path d="M28.5492 13.2401H25.8097C25.8322 13.5107 25.927 13.7227 26.094 13.8758C26.2607 14.0291 26.4659 14.1059 26.7094 14.1059C27.0612 14.1059 27.3115 13.9548 27.4602 13.6528H28.4815C28.3733 14.0135 28.1658 14.3102 27.8592 14.5422C27.5526 14.7745 27.176 14.8905 26.7297 14.8905C26.3689 14.8905 26.0452 14.8103 25.759 14.6504C25.4726 14.4903 25.2494 14.2638 25.0892 13.9706C24.9291 13.6776 24.8491 13.3393 24.8491 12.9559C24.8491 12.5681 24.9279 12.2278 25.0858 11.9346C25.2435 11.6416 25.4646 11.4161 25.7486 11.2582C26.0328 11.1005 26.3596 11.0215 26.7294 11.0215C27.0855 11.0215 27.4048 11.0983 27.6866 11.2513C27.9684 11.4047 28.1873 11.6223 28.3428 11.9041C28.4983 12.1859 28.5763 12.5093 28.5763 12.8747C28.5763 13.0102 28.567 13.1319 28.5492 13.2401ZM27.5955 12.6044C27.5908 12.3609 27.5031 12.1659 27.3315 12.0194C27.1599 11.8729 26.9505 11.7995 26.7024 11.7995C26.4679 11.7995 26.2704 11.8705 26.1105 12.0126C25.9504 12.1547 25.8522 12.3519 25.8163 12.6044H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.1972C30.8863 11.0846 31.1106 11.0283 31.3631 11.0283V12.0226H31.1128C30.8151 12.0226 30.5906 12.0925 30.4398 12.2322C30.2886 12.3721 30.2131 12.6156 30.2131 12.9627V14.8296H29.2661V11.0824H30.2131V11.6643C30.335 11.4656 30.4939 11.3101 30.6901 11.1972Z" fill="white"/>
|
||||
<path d="M44.971 38.9599V40.0348H40.8706V33.0338H42.1732V38.9596H44.971V38.9599Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 36.5345C52.3302 37.0489 52.2449 37.523 52.0757 37.961C51.9063 38.397 51.6665 38.7756 51.3571 39.0956C51.0468 39.4157 50.6741 39.6643 50.2386 39.8439C49.8025 40.0224 49.3187 40.1123 48.7858 40.1123C48.2566 40.1123 47.774 40.0226 47.3384 39.8439C46.9024 39.6643 46.5287 39.4157 46.2174 39.0956C45.9057 38.7756 45.6648 38.397 45.4935 37.961C45.3224 37.523 45.2368 37.0489 45.2368 36.5345C45.2368 36.0205 45.3221 35.5464 45.4935 35.1081C45.6646 34.6721 45.9057 34.2935 46.2174 33.9735C46.5287 33.6534 46.9024 33.4048 47.3384 33.2252C47.774 33.0467 48.2564 32.957 48.7858 32.957C49.141 32.957 49.4751 32.998 49.7876 33.0799C50.1008 33.1618 50.3882 33.2788 50.65 33.4282C50.9111 33.5796 51.146 33.7609 51.354 33.9766C51.5624 34.1911 51.7388 34.4303 51.8841 34.6957C52.0296 34.9602 52.1398 35.2471 52.2159 35.5571C52.2919 35.8662 52.3302 36.1931 52.3302 36.5345ZM50.9986 36.5345C50.9986 36.1502 50.9469 35.8067 50.8436 35.5006C50.7404 35.1971 50.5932 34.9365 50.4031 34.724C50.2125 34.5112 49.9812 34.3484 49.7084 34.2353C49.4352 34.1222 49.128 34.0654 48.7861 34.0654C48.4436 34.0654 48.1362 34.1219 47.8635 34.2353C47.591 34.3484 47.3587 34.5112 47.1663 34.724C46.974 34.9368 46.8268 35.1971 46.7234 35.5006C46.6201 35.807 46.5684 36.1504 46.5684 36.5345C46.5684 36.9189 46.6201 37.2624 46.7234 37.5688C46.8268 37.8732 46.9743 38.1306 47.1663 38.3424C47.3587 38.5552 47.5907 38.7171 47.8635 38.8292C48.1362 38.9423 48.4436 38.9998 48.7861 38.9998C49.128 38.9998 49.4354 38.9423 49.7084 38.8292C49.9812 38.7171 50.2122 38.555 50.4031 38.3424C50.5935 38.1309 50.7407 37.8732 50.8436 37.5688C50.9469 37.2621 50.9986 36.9189 50.9986 36.5345Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 36.5248V39.3569C58.8937 39.6185 58.5152 39.8096 58.1132 39.9305C57.7113 40.0524 57.2816 40.1121 56.8231 40.1121C56.2517 40.1121 55.7342 40.0243 55.2714 39.8456C54.808 39.6689 54.4129 39.4223 54.0855 39.1051C53.7577 38.79 53.5049 38.4114 53.3275 37.9715C53.1502 37.5334 53.0615 37.0545 53.0615 36.5343C53.0615 36.0076 53.1468 35.5257 53.3182 35.0874C53.4888 34.6474 53.7318 34.2699 54.0465 33.9547C54.3612 33.6376 54.7432 33.3916 55.1914 33.2181C55.6402 33.0436 56.144 32.9565 56.7022 32.9565C56.9861 32.9565 57.2518 32.979 57.4987 33.0238C57.7454 33.0696 57.9748 33.1311 58.1861 33.21C58.3977 33.289 58.5905 33.3846 58.7645 33.4986C58.9386 33.6117 59.0987 33.7348 59.244 33.8704L58.8713 34.4617C58.8133 34.5563 58.7372 34.6131 58.6436 34.6335C58.55 34.655 58.4486 34.6316 58.3387 34.5643C58.2319 34.5029 58.1254 34.4415 58.0192 34.38C57.9121 34.3186 57.7937 34.2648 57.663 34.2211C57.5329 34.1753 57.3854 34.1373 57.2226 34.109C57.0598 34.0807 56.8713 34.0651 56.6588 34.0651C56.3134 34.0651 56.0007 34.1226 55.7218 34.2396C55.4427 34.3566 55.2048 34.5217 55.0076 34.7371C54.8109 34.9548 54.6593 35.2132 54.5525 35.5176C54.4463 35.8201 54.3929 36.1606 54.3929 36.5343C54.3929 36.9343 54.4499 37.2924 54.5647 37.6075C54.6793 37.9217 54.8407 38.1882 55.0491 38.4056C55.257 38.624 55.508 38.79 55.8018 38.905C56.0955 39.0201 56.4233 39.0766 56.7848 39.0766C57.0429 39.0766 57.2735 39.0483 57.4771 38.9947C57.6803 38.9391 57.879 38.865 58.0728 38.7702V37.502H57.1914C57.1075 37.502 57.0422 37.4796 56.9959 37.4328C56.9491 37.385 56.9252 37.3284 56.9252 37.2612V36.5246H59.2489V36.5248Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 36.5345C67.1844 37.0489 67.0991 37.523 66.9297 37.961C66.7601 38.397 66.5205 38.7756 66.2107 39.0956C65.9008 39.4157 65.5282 39.6643 65.0921 39.8439C64.6565 40.0224 64.1722 40.1123 63.6398 40.1123C63.1106 40.1123 62.628 40.0226 62.1924 39.8439C61.7564 39.6643 61.3827 39.4157 61.0714 39.0956C60.7597 38.7756 60.5184 38.397 60.3475 37.961C60.1764 37.523 60.0908 37.0489 60.0908 36.5345C60.0908 36.0205 60.1761 35.5464 60.3475 35.1081C60.5181 34.6721 60.7597 34.2935 61.0714 33.9735C61.3827 33.6534 61.7564 33.4048 62.1924 33.2252C62.628 33.0467 63.1106 32.957 63.6398 32.957C63.995 32.957 64.3291 32.998 64.6419 33.0799C64.9548 33.1618 65.2422 33.2788 65.5038 33.4282C65.7653 33.5796 65.9998 33.7609 66.208 33.9766C66.4164 34.1911 66.5929 34.4303 66.7384 34.6957C66.8836 34.9602 66.9941 35.2471 67.0701 35.5571C67.1459 35.8662 67.1844 36.1931 67.1844 36.5345ZM65.8523 36.5345C65.8523 36.1502 65.8011 35.8067 65.6978 35.5006C65.5944 35.1971 65.4475 34.9365 65.2573 34.724C65.0667 34.5112 64.8354 34.3484 64.5627 34.2353C64.2894 34.1222 63.982 34.0654 63.6401 34.0654C63.2976 34.0654 62.9902 34.1219 62.7177 34.2353C62.445 34.3484 62.2129 34.5112 62.0206 34.724C61.8285 34.9368 61.6806 35.1971 61.5777 35.5006C61.4743 35.807 61.4224 36.1504 61.4224 36.5345C61.4224 36.9189 61.4741 37.2624 61.5777 37.5688C61.6806 37.8732 61.8285 38.1306 62.0206 38.3424C62.2129 38.5552 62.445 38.7171 62.7177 38.8292C62.9902 38.9423 63.2978 38.9998 63.6401 38.9998C63.982 38.9998 64.2894 38.9423 64.5627 38.8292C64.8352 38.7171 65.0665 38.555 65.2573 38.3424C65.4475 38.1309 65.5944 37.8732 65.6978 37.5688C65.8011 37.2621 65.8523 36.9189 65.8523 36.5345Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9492 27.0437H233.756" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M217.192 40.5306H210.032C209.802 40.5306 209.616 40.3444 209.616 40.1148V32.9542C209.616 32.7246 209.802 32.5383 210.032 32.5383H217.192C217.422 32.5383 217.608 32.7246 217.608 32.9542V40.1148C217.608 40.3444 217.422 40.5306 217.192 40.5306Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 40.5306H221.163C220.946 40.5306 220.769 40.3542 220.769 40.1363V32.9327C220.769 32.715 220.946 32.5383 221.163 32.5383H228.367C228.585 32.5383 228.761 32.7148 228.761 32.9327V40.1363C228.761 40.3542 228.585 40.5306 228.367 40.5306Z" fill="#6D5ED4"/>
|
||||
<path d="M205.98 40.5306H198.819C198.59 40.5306 198.404 40.3444 198.404 40.1148V32.9542C198.404 32.7246 198.59 32.5383 198.819 32.5383H205.98C206.21 32.5383 206.396 32.7246 206.396 32.9542V40.1148C206.396 40.3444 206.21 40.5306 205.98 40.5306Z" fill="#6D5ED4"/>
|
||||
<path d="M217.155 40.5306H209.951C209.733 40.5306 209.557 40.3542 209.557 40.1363V32.9327C209.557 32.715 209.733 32.5383 209.951 32.5383H217.155C217.372 32.5383 217.549 32.7148 217.549 32.9327V40.1363C217.549 40.3542 217.372 40.5306 217.155 40.5306Z" fill="#6D5ED4"/>
|
||||
<path d="M65.5687 17.4314H39.7312V22.0626H65.5687V17.4314Z" fill="#9181FF"/>
|
||||
<path d="M229.369 17.4314H203.531V22.0626H229.369V17.4314Z" fill="#9181FF"/>
|
||||
<path d="M11.0781 24.2042V21.7408H15.6804V35.6619H12.9304V24.2042H11.0781Z" fill="white"/>
|
||||
<path d="M19.5088 23.345C20.3042 22.0975 21.6251 21.4738 23.4712 21.4738C25.3169 21.4738 26.638 22.0978 27.4336 23.345C28.229 24.5928 28.627 26.3178 28.627 28.5201C28.627 30.7353 28.229 32.473 27.4336 33.7334C26.6378 34.9936 25.3169 35.6239 23.4712 35.6239C21.6251 35.6239 20.3042 34.9938 19.5088 33.7334C18.713 32.4732 18.3154 30.7353 18.3154 28.5201C18.3154 26.3178 18.713 24.5928 19.5088 23.345ZM25.8105 26.1425C25.6894 25.4998 25.4476 24.9745 25.0849 24.5672C24.7219 24.1599 24.184 23.9561 23.4712 23.9561C22.758 23.9561 22.2205 24.1599 21.8576 24.5672C21.4949 24.9747 21.2529 25.5 21.132 26.1425C21.0108 26.7856 20.9506 27.578 20.9506 28.5198C20.9506 29.4875 21.0079 30.299 21.1225 30.9547C21.237 31.6103 21.4788 32.1385 21.8481 32.5395C22.2171 32.9405 22.758 33.1411 23.4712 33.1411C24.184 33.1411 24.7251 32.9405 25.0944 32.5395C25.4634 32.1385 25.7054 31.6103 25.82 30.9547C25.9346 30.2992 25.9918 29.4875 25.9918 28.5198C25.9918 27.578 25.9314 26.7856 25.8105 26.1425Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_3007">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.125122)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,32 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_3099)">
|
||||
<path d="M233.756 0.626099H-0.0144043V50.5771H233.756V0.626099Z" fill="white"/>
|
||||
<path d="M233.756 0.462769H-0.0144043V11.452H233.756V0.462769Z" fill="#9181FF"/>
|
||||
<path d="M106.561 31.1761C106.561 32.4014 105.567 33.3947 104.342 33.3947H93.7945C92.5692 33.3947 91.5754 32.4017 91.5754 31.1761V30.6181C91.5754 29.3928 92.569 28.3995 93.7945 28.3995H104.342C105.567 28.3995 106.561 29.3926 106.561 30.6181V31.1761Z" fill="#6D5ED4"/>
|
||||
<path d="M88.2455 31.1761C88.2455 32.4014 87.252 33.3947 86.0264 33.3947H75.4791C74.2538 33.3947 73.26 32.4017 73.26 31.1761V30.6181C73.26 29.3928 74.2535 28.3995 75.4791 28.3995H86.0264C87.2517 28.3995 88.2455 29.3926 88.2455 30.6181V31.1761Z" fill="#6D5ED4"/>
|
||||
<path d="M124.876 31.1761C124.876 32.4014 123.883 33.3947 122.657 33.3947H112.11C110.885 33.3947 109.891 32.4017 109.891 31.1761V30.6181C109.891 29.3928 110.884 28.3995 112.11 28.3995H122.657C123.883 28.3995 124.876 29.3926 124.876 30.6181V31.1761Z" fill="#6D5ED4"/>
|
||||
<path d="M143.192 31.1761C143.192 32.4014 142.198 33.3947 140.972 33.3947H130.426C129.2 33.3947 128.206 32.4017 128.206 31.1761V30.6181C128.206 29.3928 129.2 28.3995 130.426 28.3995H140.972C142.197 28.3995 143.192 29.3926 143.192 30.6181V31.1761Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.626099H-0.0761719V50.5771H36.9685V0.626099Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.3208V15.0422H9.86658V13.0333H7.84419V15.0422H6.89722V10.3208H7.84419V12.262H9.86658V10.3208H10.8135V10.3208Z" fill="white"/>
|
||||
<path d="M15.2035 13.4525H12.464C12.4865 13.7231 12.5813 13.9351 12.7482 14.0882C12.915 14.2415 13.1202 14.3183 13.3637 14.3183C13.7154 14.3183 13.9658 14.1672 14.1145 13.8652H15.1358C15.0276 14.2259 14.8201 14.5226 14.5135 14.7546C14.2068 14.9869 13.8303 15.1029 13.3839 15.1029C13.0232 15.1029 12.6995 15.0227 12.4133 14.8628C12.1269 14.7027 11.9037 14.4762 11.7435 14.183C11.5834 13.89 11.5034 13.5517 11.5034 13.1683C11.5034 12.7805 11.5821 12.4402 11.7401 12.147C11.8978 11.854 12.1189 11.6285 12.4029 11.4706C12.6871 11.3129 13.0139 11.2339 13.3837 11.2339C13.7398 11.2339 14.0591 11.3107 14.3409 11.4637C14.6227 11.6171 14.8416 11.8347 14.9971 12.1165C15.1526 12.3983 15.2306 12.7217 15.2306 13.0871C15.2306 13.2226 15.2216 13.3443 15.2035 13.4525ZM14.25 12.8168C14.2454 12.5733 14.1576 12.3783 13.986 12.2318C13.8144 12.0853 13.605 12.0119 13.3569 12.0119C13.1224 12.0119 12.925 12.0829 12.7651 12.225C12.6049 12.3671 12.5067 12.5643 12.4709 12.8168H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.147C16.0546 11.854 16.2596 11.6285 16.5189 11.4706C16.7783 11.3129 17.0678 11.2339 17.3881 11.2339C17.6677 11.2339 17.9124 11.2902 18.1221 11.403C18.3317 11.5159 18.4996 11.6578 18.6259 11.8291V11.2948H19.5797V15.0422H18.6259V14.4943C18.504 14.6703 18.3361 14.8155 18.1221 14.9306C17.9078 15.0456 17.6609 15.1032 17.3813 15.1032C17.0656 15.1032 16.778 15.022 16.5187 14.8594C16.2593 14.6968 16.0541 14.4684 15.9032 14.173C15.7521 13.8778 15.6768 13.5383 15.6768 13.1549C15.677 12.7761 15.7526 12.4402 15.9034 12.147ZM18.4909 12.5765C18.4007 12.4119 18.2788 12.2857 18.1255 12.1977C17.9722 12.1097 17.8076 12.0656 17.6316 12.0656C17.4559 12.0656 17.2936 12.1085 17.1446 12.194C16.9959 12.2798 16.8753 12.4049 16.7829 12.5694C16.6905 12.7342 16.6442 12.9292 16.6442 13.1544C16.6442 13.3801 16.6903 13.5773 16.7829 13.7462C16.8753 13.9154 16.9969 14.0451 17.1483 14.1352C17.2994 14.2257 17.4605 14.2705 17.6319 14.2705C17.8079 14.2705 17.9724 14.2266 18.1257 14.1387C18.279 14.0507 18.4007 13.9246 18.4911 13.7599C18.5813 13.5953 18.6264 13.3979 18.6264 13.168C18.6264 12.9382 18.581 12.7412 18.4909 12.5765Z" fill="white"/>
|
||||
<path d="M20.4896 12.147C20.6408 11.854 20.847 11.6286 21.1088 11.4706C21.3703 11.3129 21.6611 11.2339 21.9814 11.2339C22.2249 11.2339 22.4572 11.2871 22.678 11.3928C22.8989 11.4989 23.0748 11.6398 23.2057 11.8155V10.0366H24.1661V15.0423H23.2057V14.4877C23.0885 14.6727 22.924 14.8214 22.7119 14.9343C22.4998 15.0469 22.2541 15.1035 21.9746 15.1035C21.6589 15.1035 21.3703 15.0223 21.1088 14.8597C20.8472 14.6974 20.6408 14.4687 20.4896 14.1733C20.3385 13.8781 20.2632 13.5386 20.2632 13.1552C20.2629 12.7761 20.3385 12.4402 20.4896 12.147ZM23.0768 12.5765C22.9866 12.412 22.8647 12.2857 22.7114 12.1977C22.5581 12.1097 22.3936 12.0656 22.2176 12.0656C22.0418 12.0656 21.8795 12.1085 21.7306 12.1941C21.5819 12.2799 21.4612 12.4049 21.3688 12.5694C21.2765 12.7342 21.2301 12.9292 21.2301 13.1544C21.2301 13.3801 21.2762 13.5773 21.3688 13.7463C21.4612 13.9154 21.5828 14.0451 21.7342 14.1353C21.8853 14.2257 22.0465 14.2706 22.2178 14.2706C22.3938 14.2706 22.5583 14.2267 22.7117 14.1387C22.865 14.0507 22.9866 13.9247 23.077 13.7599C23.1672 13.5954 23.2123 13.3979 23.2123 13.1681C23.2123 12.9382 23.1672 12.7413 23.0768 12.5765Z" fill="white"/>
|
||||
<path d="M28.5492 13.4525H25.8097C25.8322 13.7231 25.927 13.9351 26.094 14.0882C26.2607 14.2415 26.4659 14.3183 26.7094 14.3183C27.0612 14.3183 27.3115 14.1672 27.4602 13.8652H28.4815C28.3733 14.2259 28.1658 14.5226 27.8592 14.7546C27.5526 14.9869 27.176 15.1029 26.7297 15.1029C26.3689 15.1029 26.0452 15.0227 25.759 14.8628C25.4726 14.7027 25.2494 14.4762 25.0892 14.183C24.9291 13.89 24.8491 13.5517 24.8491 13.1683C24.8491 12.7805 24.9279 12.4402 25.0858 12.147C25.2435 11.854 25.4646 11.6285 25.7486 11.4706C26.0328 11.3129 26.3596 11.2339 26.7294 11.2339C27.0855 11.2339 27.4048 11.3107 27.6866 11.4637C27.9684 11.6171 28.1873 11.8347 28.3428 12.1165C28.4983 12.3983 28.5763 12.7217 28.5763 13.0871C28.5763 13.2226 28.567 13.3443 28.5492 13.4525ZM27.5955 12.8168C27.5908 12.5733 27.5031 12.3783 27.3315 12.2318C27.1599 12.0853 26.9505 12.0119 26.7024 12.0119C26.4679 12.0119 26.2704 12.0829 26.1105 12.225C25.9504 12.3671 25.8522 12.5643 25.8163 12.8168H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.4096C30.8863 11.297 31.1106 11.2407 31.3631 11.2407V12.235H31.1128C30.8151 12.235 30.5906 12.3049 30.4398 12.4446C30.2886 12.5845 30.2131 12.828 30.2131 13.1751V15.042H29.2661V11.2948H30.2131V11.8767C30.335 11.678 30.4939 11.5225 30.6901 11.4096Z" fill="white"/>
|
||||
<path d="M44.971 33.3223V34.3972H40.8706V27.3962H42.1732V33.322H44.971V33.3223Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 30.897C52.3302 31.4113 52.2449 31.8854 52.0757 32.3234C51.9063 32.7595 51.6665 33.138 51.3571 33.4581C51.0468 33.7781 50.6741 34.0267 50.2386 34.2064C49.8025 34.3848 49.3187 34.4747 48.7858 34.4747C48.2566 34.4747 47.774 34.385 47.3384 34.2064C46.9024 34.0267 46.5287 33.7781 46.2174 33.4581C45.9057 33.138 45.6648 32.7595 45.4935 32.3234C45.3224 31.8854 45.2368 31.4113 45.2368 30.897C45.2368 30.3829 45.3221 29.9088 45.4935 29.4708C45.6646 29.0347 45.9057 28.6562 46.2174 28.3361C46.5287 28.0161 46.9024 27.7675 47.3384 27.5878C47.774 27.4094 48.2564 27.3197 48.7858 27.3197C49.141 27.3197 49.4751 27.3607 49.7876 27.4426C50.1008 27.5245 50.3882 27.6415 50.65 27.7909C50.9111 27.9422 51.146 28.1236 51.354 28.3393C51.5624 28.5538 51.7388 28.7929 51.8841 29.0584C52.0296 29.3228 52.1398 29.6097 52.2159 29.9198C52.2919 30.2286 52.3302 30.5555 52.3302 30.897ZM50.9986 30.897C50.9986 30.5126 50.9469 30.1691 50.8436 29.863C50.7404 29.5595 50.5932 29.299 50.4031 29.0864C50.2125 28.8736 49.9812 28.7108 49.7084 28.5977C49.4352 28.4846 49.128 28.4278 48.7861 28.4278C48.4436 28.4278 48.1362 28.4843 47.8635 28.5977C47.591 28.7108 47.3587 28.8736 47.1663 29.0864C46.974 29.2992 46.8268 29.5595 46.7234 29.863C46.6201 30.1694 46.5684 30.5128 46.5684 30.897C46.5684 31.2814 46.6201 31.6248 46.7234 31.9312C46.8268 32.2357 46.9743 32.4931 47.1663 32.7049C47.3587 32.9177 47.5907 33.0795 47.8635 33.1916C48.1362 33.3047 48.4436 33.3623 48.7861 33.3623C49.128 33.3623 49.4354 33.3047 49.7084 33.1916C49.9812 33.0795 50.2122 32.9174 50.4031 32.7049C50.5935 32.4933 50.7407 32.2357 50.8436 31.9312C50.9469 31.6246 50.9986 31.2814 50.9986 30.897Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 30.8872V33.7194C58.8937 33.9809 58.5152 34.172 58.1132 34.2929C57.7113 34.4148 57.2816 34.4745 56.8231 34.4745C56.2517 34.4745 55.7342 34.3867 55.2714 34.2081C54.808 34.0314 54.4129 33.7847 54.0855 33.4676C53.7577 33.1524 53.5049 32.7739 53.3275 32.3339C53.1502 31.8959 53.0615 31.4169 53.0615 30.8967C53.0615 30.37 53.1468 29.8881 53.3182 29.4498C53.4888 29.0099 53.7318 28.6323 54.0465 28.3171C54.3612 28 54.7432 27.7541 55.1914 27.5805C55.6402 27.406 56.144 27.319 56.7022 27.319C56.9861 27.319 57.2518 27.3414 57.4987 27.3862C57.7454 27.4321 57.9748 27.4935 58.1861 27.5725C58.3977 27.6514 58.5905 27.747 58.7645 27.8611C58.9386 27.9742 59.0987 28.0973 59.244 28.2328L58.8713 28.8241C58.8133 28.9187 58.7372 28.9755 58.6436 28.996C58.55 29.0174 58.4486 28.994 58.3387 28.9267C58.2319 28.8653 58.1254 28.8039 58.0192 28.7425C57.9121 28.681 57.7937 28.6272 57.663 28.5835C57.5329 28.5377 57.3854 28.4997 57.2226 28.4714C57.0598 28.4431 56.8713 28.4275 56.6588 28.4275C56.3134 28.4275 56.0007 28.4851 55.7218 28.6021C55.4427 28.7191 55.2048 28.8841 55.0076 29.0996C54.8109 29.3172 54.6593 29.5756 54.5525 29.8801C54.4463 30.1825 54.3929 30.5231 54.3929 30.8967C54.3929 31.2967 54.4499 31.6548 54.5647 31.97C54.6793 32.2842 54.8407 32.5506 55.0491 32.768C55.257 32.9864 55.508 33.1524 55.8018 33.2674C56.0955 33.3825 56.4233 33.439 56.7848 33.439C57.0429 33.439 57.2735 33.4108 57.4771 33.3571C57.6803 33.3016 57.879 33.2275 58.0728 33.1327V31.8644H57.1914C57.1075 31.8644 57.0422 31.842 56.9959 31.7952C56.9491 31.7474 56.9252 31.6909 56.9252 31.6236V30.887H59.2489V30.8872Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 30.897C67.1844 31.4113 67.0991 31.8854 66.9297 32.3234C66.7601 32.7595 66.5205 33.138 66.2107 33.4581C65.9008 33.7781 65.5282 34.0267 65.0921 34.2064C64.6565 34.3848 64.1722 34.4747 63.6398 34.4747C63.1106 34.4747 62.628 34.385 62.1924 34.2064C61.7564 34.0267 61.3827 33.7781 61.0714 33.4581C60.7597 33.138 60.5184 32.7595 60.3475 32.3234C60.1764 31.8854 60.0908 31.4113 60.0908 30.897C60.0908 30.3829 60.1761 29.9088 60.3475 29.4708C60.5181 29.0347 60.7597 28.6562 61.0714 28.3361C61.3827 28.0161 61.7564 27.7675 62.1924 27.5878C62.628 27.4094 63.1106 27.3197 63.6398 27.3197C63.995 27.3197 64.3291 27.3607 64.6419 27.4426C64.9548 27.5245 65.2422 27.6415 65.5038 27.7909C65.7653 27.9422 65.9998 28.1236 66.208 28.3393C66.4164 28.5538 66.5929 28.7929 66.7384 29.0584C66.8836 29.3228 66.9941 29.6097 67.0701 29.9198C67.1459 30.2286 67.1844 30.5555 67.1844 30.897ZM65.8523 30.897C65.8523 30.5126 65.8011 30.1691 65.6978 29.863C65.5944 29.5595 65.4475 29.299 65.2573 29.0864C65.0667 28.8736 64.8354 28.7108 64.5627 28.5977C64.2894 28.4846 63.982 28.4278 63.6401 28.4278C63.2976 28.4278 62.9902 28.4843 62.7177 28.5977C62.445 28.7108 62.2129 28.8736 62.0206 29.0864C61.8285 29.2992 61.6806 29.5595 61.5777 29.863C61.4743 30.1694 61.4224 30.5128 61.4224 30.897C61.4224 31.2814 61.4741 31.6248 61.5777 31.9312C61.6806 32.2357 61.8285 32.4931 62.0206 32.7049C62.2129 32.9177 62.445 33.0795 62.7177 33.1916C62.9902 33.3047 63.2978 33.3623 63.6401 33.3623C63.982 33.3623 64.2894 33.3047 64.5627 33.1916C64.8352 33.0795 65.0665 32.9174 65.2573 32.7049C65.4475 32.4933 65.5944 32.2357 65.6978 31.9312C65.8011 31.6246 65.8523 31.2814 65.8523 30.897Z" fill="#6D5ED4"/>
|
||||
<path d="M217.192 34.893H210.032C209.802 34.893 209.616 34.7067 209.616 34.4771V27.3165C209.616 27.0869 209.802 26.9006 210.032 26.9006H217.192C217.422 26.9006 217.608 27.0869 217.608 27.3165V34.4771C217.608 34.7067 217.422 34.893 217.192 34.893Z" fill="#6D5ED4"/>
|
||||
<path d="M228.367 34.893H221.163C220.946 34.893 220.769 34.7165 220.769 34.4986V27.295C220.769 27.0774 220.946 26.9006 221.163 26.9006H228.367C228.585 26.9006 228.761 27.0771 228.761 27.295V34.4986C228.761 34.7165 228.585 34.893 228.367 34.893Z" fill="#6D5ED4"/>
|
||||
<path d="M205.98 34.893H198.819C198.59 34.893 198.404 34.7067 198.404 34.4771V27.3165C198.404 27.0869 198.59 26.9006 198.819 26.9006H205.98C206.21 26.9006 206.396 27.0869 206.396 27.3165V34.4771C206.396 34.7067 206.21 34.893 205.98 34.893Z" fill="#6D5ED4"/>
|
||||
<path d="M217.155 34.893H209.951C209.733 34.893 209.557 34.7165 209.557 34.4986V27.295C209.557 27.0774 209.733 26.9006 209.951 26.9006H217.155C217.372 26.9006 217.549 27.0771 217.549 27.295V34.4986C217.549 34.7165 217.372 34.893 217.155 34.893Z" fill="#6D5ED4"/>
|
||||
<path d="M12.9419 24.4261V21.9628H17.5441V35.8838H14.7942V24.4261H12.9419Z" fill="white"/>
|
||||
<path d="M19.8547 24.4261V21.9628H24.457V35.8838H21.707V24.4261H19.8547Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_3099">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.337524)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_3139)">
|
||||
<path d="M233.756 0.838501H-0.0144043V50.7895H233.756V0.838501Z" fill="white"/>
|
||||
<path d="M233.756 0.675171H-0.0144043V11.6644H233.756V0.675171Z" fill="#9181FF"/>
|
||||
<path d="M106.561 31.3885C106.561 32.6138 105.567 33.6071 104.342 33.6071H93.7945C92.5692 33.6071 91.5754 32.6141 91.5754 31.3885V30.8306C91.5754 29.6052 92.569 28.6119 93.7945 28.6119H104.342C105.567 28.6119 106.561 29.605 106.561 30.8306V31.3885Z" fill="#6D5ED4"/>
|
||||
<path d="M88.2455 31.3885C88.2455 32.6138 87.252 33.6071 86.0264 33.6071H75.4791C74.2538 33.6071 73.26 32.6141 73.26 31.3885V30.8306C73.26 29.6052 74.2535 28.6119 75.4791 28.6119H86.0264C87.2517 28.6119 88.2455 29.605 88.2455 30.8306V31.3885Z" fill="#6D5ED4"/>
|
||||
<path d="M124.876 31.3885C124.876 32.6138 123.883 33.6071 122.657 33.6071H112.11C110.885 33.6071 109.891 32.6141 109.891 31.3885V30.8306C109.891 29.6052 110.884 28.6119 112.11 28.6119H122.657C123.883 28.6119 124.876 29.605 124.876 30.8306V31.3885Z" fill="#6D5ED4"/>
|
||||
<path d="M143.192 31.3885C143.192 32.6138 142.198 33.6071 140.972 33.6071H130.426C129.2 33.6071 128.206 32.6141 128.206 31.3885V30.8306C128.206 29.6052 129.2 28.6119 130.426 28.6119H140.972C142.197 28.6119 143.192 29.605 143.192 30.8306V31.3885Z" fill="#6D5ED4"/>
|
||||
<path d="M36.9685 0.838501H-0.0761719V50.7895H36.9685V0.838501Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.5332V15.2546H9.86658V13.2457H7.84419V15.2546H6.89722V10.5332H7.84419V12.4744H9.86658V10.5332H10.8135V10.5332Z" fill="white"/>
|
||||
<path d="M15.2035 13.6649H12.464C12.4865 13.9355 12.5813 14.1475 12.7482 14.3006C12.915 14.4539 13.1202 14.5307 13.3637 14.5307C13.7154 14.5307 13.9658 14.3796 14.1145 14.0776H15.1358C15.0276 14.4383 14.8201 14.735 14.5135 14.967C14.2068 15.1993 13.8303 15.3153 13.3839 15.3153C13.0232 15.3153 12.6995 15.2351 12.4133 15.0752C12.1269 14.9151 11.9037 14.6887 11.7435 14.3954C11.5834 14.1024 11.5034 13.7641 11.5034 13.3807C11.5034 12.9929 11.5821 12.6526 11.7401 12.3594C11.8978 12.0664 12.1189 11.8409 12.4029 11.683C12.6871 11.5253 13.0139 11.4463 13.3837 11.4463C13.7398 11.4463 14.0591 11.5231 14.3409 11.6761C14.6227 11.8295 14.8416 12.0471 14.9971 12.3289C15.1526 12.6107 15.2306 12.9341 15.2306 13.2995C15.2306 13.435 15.2216 13.5567 15.2035 13.6649ZM14.25 13.0292C14.2454 12.7857 14.1576 12.5907 13.986 12.4442C13.8144 12.2977 13.605 12.2243 13.3569 12.2243C13.1224 12.2243 12.925 12.2953 12.7651 12.4374C12.6049 12.5795 12.5067 12.7767 12.4709 13.0292H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.3594C16.0546 12.0664 16.2596 11.8409 16.5189 11.683C16.7783 11.5253 17.0678 11.4463 17.3881 11.4463C17.6677 11.4463 17.9124 11.5026 18.1221 11.6155C18.3317 11.7283 18.4996 11.8702 18.6259 12.0415V11.5072H19.5797V15.2546H18.6259V14.7067C18.504 14.8827 18.3361 15.028 18.1221 15.143C17.9078 15.2581 17.6609 15.3156 17.3813 15.3156C17.0656 15.3156 16.778 15.2344 16.5187 15.0718C16.2593 14.9092 16.0541 14.6809 15.9032 14.3854C15.7521 14.0902 15.6768 13.7507 15.6768 13.3673C15.677 12.9885 15.7526 12.6526 15.9034 12.3594ZM18.4909 12.7889C18.4007 12.6243 18.2788 12.4981 18.1255 12.4101C17.9722 12.3221 17.8076 12.278 17.6316 12.278C17.4559 12.278 17.2936 12.3209 17.1446 12.4064C16.9959 12.4922 16.8753 12.6173 16.7829 12.7818C16.6905 12.9466 16.6442 13.1416 16.6442 13.3668C16.6442 13.5925 16.6903 13.7897 16.7829 13.9586C16.8753 14.1278 16.9969 14.2575 17.1483 14.3476C17.2994 14.4381 17.4605 14.4829 17.6319 14.4829C17.8079 14.4829 17.9724 14.4391 18.1257 14.3511C18.279 14.2631 18.4007 14.137 18.4911 13.9723C18.5813 13.8077 18.6264 13.6103 18.6264 13.3804C18.6264 13.1506 18.581 12.9536 18.4909 12.7889Z" fill="white"/>
|
||||
<path d="M20.4896 12.3594C20.6408 12.0664 20.847 11.841 21.1088 11.683C21.3703 11.5253 21.6611 11.4463 21.9814 11.4463C22.2249 11.4463 22.4572 11.4995 22.678 11.6052C22.8989 11.7113 23.0748 11.8522 23.2057 12.0279V10.249H24.1661V15.2547H23.2057V14.7001C23.0885 14.8851 22.924 15.0338 22.7119 15.1467C22.4998 15.2593 22.2541 15.3159 21.9746 15.3159C21.6589 15.3159 21.3703 15.2347 21.1088 15.0721C20.8472 14.9098 20.6408 14.6811 20.4896 14.3857C20.3385 14.0905 20.2632 13.751 20.2632 13.3676C20.2629 12.9885 20.3385 12.6526 20.4896 12.3594ZM23.0768 12.7889C22.9866 12.6244 22.8647 12.4981 22.7114 12.4101C22.5581 12.3221 22.3936 12.278 22.2176 12.278C22.0418 12.278 21.8795 12.3209 21.7306 12.4065C21.5819 12.4923 21.4612 12.6173 21.3688 12.7818C21.2765 12.9466 21.2301 13.1416 21.2301 13.3668C21.2301 13.5925 21.2762 13.7897 21.3688 13.9587C21.4612 14.1278 21.5828 14.2575 21.7342 14.3477C21.8853 14.4381 22.0465 14.483 22.2178 14.483C22.3938 14.483 22.5583 14.4391 22.7117 14.3511C22.865 14.2631 22.9866 14.1371 23.077 13.9723C23.1672 13.8078 23.2123 13.6103 23.2123 13.3805C23.2123 13.1506 23.1672 12.9537 23.0768 12.7889Z" fill="white"/>
|
||||
<path d="M28.5492 13.6649H25.8097C25.8322 13.9355 25.927 14.1475 26.094 14.3006C26.2607 14.4539 26.4659 14.5307 26.7094 14.5307C27.0612 14.5307 27.3115 14.3796 27.4602 14.0776H28.4815C28.3733 14.4383 28.1658 14.735 27.8592 14.967C27.5526 15.1993 27.176 15.3153 26.7297 15.3153C26.3689 15.3153 26.0452 15.2351 25.759 15.0752C25.4726 14.9151 25.2494 14.6887 25.0892 14.3954C24.9291 14.1024 24.8491 13.7641 24.8491 13.3807C24.8491 12.9929 24.9279 12.6526 25.0858 12.3594C25.2435 12.0664 25.4646 11.8409 25.7486 11.683C26.0328 11.5253 26.3596 11.4463 26.7294 11.4463C27.0855 11.4463 27.4048 11.5231 27.6866 11.6761C27.9684 11.8295 28.1873 12.0471 28.3428 12.3289C28.4983 12.6107 28.5763 12.9341 28.5763 13.2995C28.5763 13.435 28.567 13.5567 28.5492 13.6649ZM27.5955 13.0292C27.5908 12.7857 27.5031 12.5907 27.3315 12.4442C27.1599 12.2977 26.9505 12.2243 26.7024 12.2243C26.4679 12.2243 26.2704 12.2953 26.1105 12.4374C25.9504 12.5795 25.8522 12.7767 25.8163 13.0292H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.622C30.8863 11.5094 31.1106 11.4531 31.3631 11.4531V12.4474H31.1128C30.8151 12.4474 30.5906 12.5173 30.4398 12.657C30.2886 12.7969 30.2131 13.0404 30.2131 13.3875V15.2544H29.2661V11.5072H30.2131V12.0891C30.335 11.8904 30.4939 11.7349 30.6901 11.622Z" fill="white"/>
|
||||
<path d="M44.971 33.5347V34.6096H40.8706V27.6086H42.1732V33.5344H44.971V33.5347Z" fill="#6D5ED4"/>
|
||||
<path d="M52.3302 31.1094C52.3302 31.6237 52.2449 32.0978 52.0757 32.5358C51.9063 32.9719 51.6665 33.3504 51.3571 33.6705C51.0468 33.9905 50.6741 34.2391 50.2386 34.4188C49.8025 34.5972 49.3187 34.6871 48.7858 34.6871C48.2566 34.6871 47.774 34.5974 47.3384 34.4188C46.9024 34.2391 46.5287 33.9905 46.2174 33.6705C45.9057 33.3504 45.6648 32.9719 45.4935 32.5358C45.3224 32.0978 45.2368 31.6237 45.2368 31.1094C45.2368 30.5953 45.3221 30.1212 45.4935 29.6832C45.6646 29.2471 45.9057 28.8686 46.2174 28.5485C46.5287 28.2285 46.9024 27.9799 47.3384 27.8002C47.774 27.6218 48.2564 27.5321 48.7858 27.5321C49.141 27.5321 49.4751 27.5731 49.7876 27.655C50.1008 27.7369 50.3882 27.8539 50.65 28.0033C50.9111 28.1546 51.146 28.336 51.354 28.5517C51.5624 28.7662 51.7388 29.0053 51.8841 29.2708C52.0296 29.5352 52.1398 29.8221 52.2159 30.1322C52.2919 30.441 52.3302 30.7679 52.3302 31.1094ZM50.9986 31.1094C50.9986 30.725 50.9469 30.3815 50.8436 30.0754C50.7404 29.7719 50.5932 29.5114 50.4031 29.2988C50.2125 29.086 49.9812 28.9232 49.7084 28.8101C49.4352 28.697 49.128 28.6402 48.7861 28.6402C48.4436 28.6402 48.1362 28.6967 47.8635 28.8101C47.591 28.9232 47.3587 29.086 47.1663 29.2988C46.974 29.5116 46.8268 29.7719 46.7234 30.0754C46.6201 30.3818 46.5684 30.7252 46.5684 31.1094C46.5684 31.4938 46.6201 31.8372 46.7234 32.1436C46.8268 32.4481 46.9743 32.7055 47.1663 32.9173C47.3587 33.1301 47.5907 33.2919 47.8635 33.404C48.1362 33.5171 48.4436 33.5747 48.7861 33.5747C49.128 33.5747 49.4354 33.5171 49.7084 33.404C49.9812 33.2919 50.2122 33.1298 50.4031 32.9173C50.5935 32.7057 50.7407 32.4481 50.8436 32.1436C50.9469 31.837 50.9986 31.4938 50.9986 31.1094Z" fill="#6D5ED4"/>
|
||||
<path d="M59.2489 31.0996V33.9318C58.8937 34.1933 58.5152 34.3844 58.1132 34.5053C57.7113 34.6272 57.2816 34.6869 56.8231 34.6869C56.2517 34.6869 55.7342 34.5991 55.2714 34.4205C54.808 34.2438 54.4129 33.9971 54.0855 33.68C53.7577 33.3648 53.5049 32.9863 53.3275 32.5463C53.1502 32.1083 53.0615 31.6293 53.0615 31.1091C53.0615 30.5824 53.1468 30.1005 53.3182 29.6622C53.4888 29.2223 53.7318 28.8447 54.0465 28.5295C54.3612 28.2124 54.7432 27.9665 55.1914 27.7929C55.6402 27.6184 56.144 27.5314 56.7022 27.5314C56.9861 27.5314 57.2518 27.5538 57.4987 27.5986C57.7454 27.6445 57.9748 27.7059 58.1861 27.7849C58.3977 27.8638 58.5905 27.9594 58.7645 28.0735C58.9386 28.1866 59.0987 28.3097 59.244 28.4452L58.8713 29.0365C58.8133 29.1311 58.7372 29.1879 58.6436 29.2084C58.55 29.2298 58.4486 29.2064 58.3387 29.1391C58.2319 29.0777 58.1254 29.0163 58.0192 28.9549C57.9121 28.8934 57.7937 28.8396 57.663 28.7959C57.5329 28.7501 57.3854 28.7121 57.2226 28.6838C57.0598 28.6555 56.8713 28.6399 56.6588 28.6399C56.3134 28.6399 56.0007 28.6975 55.7218 28.8145C55.4427 28.9315 55.2048 29.0965 55.0076 29.312C54.8109 29.5296 54.6593 29.788 54.5525 30.0925C54.4463 30.3949 54.3929 30.7355 54.3929 31.1091C54.3929 31.5091 54.4499 31.8672 54.5647 32.1824C54.6793 32.4966 54.8407 32.763 55.0491 32.9804C55.257 33.1988 55.508 33.3648 55.8018 33.4798C56.0955 33.5949 56.4233 33.6514 56.7848 33.6514C57.0429 33.6514 57.2735 33.6232 57.4771 33.5695C57.6803 33.514 57.879 33.4399 58.0728 33.3451V32.0768H57.1914C57.1075 32.0768 57.0422 32.0544 56.9959 32.0076C56.9491 31.9598 56.9252 31.9033 56.9252 31.836V31.0994H59.2489V31.0996Z" fill="#6D5ED4"/>
|
||||
<path d="M67.1844 31.1094C67.1844 31.6237 67.0991 32.0978 66.9297 32.5358C66.7601 32.9719 66.5205 33.3504 66.2107 33.6705C65.9008 33.9905 65.5282 34.2391 65.0921 34.4188C64.6565 34.5972 64.1722 34.6871 63.6398 34.6871C63.1106 34.6871 62.628 34.5974 62.1924 34.4188C61.7564 34.2391 61.3827 33.9905 61.0714 33.6705C60.7597 33.3504 60.5184 32.9719 60.3475 32.5358C60.1764 32.0978 60.0908 31.6237 60.0908 31.1094C60.0908 30.5953 60.1761 30.1212 60.3475 29.6832C60.5181 29.2471 60.7597 28.8686 61.0714 28.5485C61.3827 28.2285 61.7564 27.9799 62.1924 27.8002C62.628 27.6218 63.1106 27.5321 63.6398 27.5321C63.995 27.5321 64.3291 27.5731 64.6419 27.655C64.9548 27.7369 65.2422 27.8539 65.5038 28.0033C65.7653 28.1546 65.9998 28.336 66.208 28.5517C66.4164 28.7662 66.5929 29.0053 66.7384 29.2708C66.8836 29.5352 66.9941 29.8221 67.0701 30.1322C67.1459 30.441 67.1844 30.7679 67.1844 31.1094ZM65.8523 31.1094C65.8523 30.725 65.8011 30.3815 65.6978 30.0754C65.5944 29.7719 65.4475 29.5114 65.2573 29.2988C65.0667 29.086 64.8354 28.9232 64.5627 28.8101C64.2894 28.697 63.982 28.6402 63.6401 28.6402C63.2976 28.6402 62.9902 28.6967 62.7177 28.8101C62.445 28.9232 62.2129 29.086 62.0206 29.2988C61.8285 29.5116 61.6806 29.7719 61.5777 30.0754C61.4743 30.3818 61.4224 30.7252 61.4224 31.1094C61.4224 31.4938 61.4741 31.8372 61.5777 32.1436C61.6806 32.4481 61.8285 32.7055 62.0206 32.9173C62.2129 33.1301 62.445 33.2919 62.7177 33.404C62.9902 33.5171 63.2978 33.5747 63.6401 33.5747C63.982 33.5747 64.2894 33.5171 64.5627 33.404C64.8352 33.2919 65.0665 33.1298 65.2573 32.9173C65.4475 32.7057 65.5944 32.4481 65.6978 32.1436C65.8011 31.837 65.8523 31.4938 65.8523 31.1094Z" fill="#6D5ED4"/>
|
||||
<path d="M184.362 35.1663C182.155 35.1663 180.366 33.3771 180.366 31.1702C180.366 28.9633 182.155 27.1742 184.362 27.1742C186.569 27.1742 188.358 28.9633 188.358 31.1702C188.358 33.3771 186.569 35.1663 184.362 35.1663Z" fill="#6D5ED4"/>
|
||||
<path d="M224.765 35.1663C222.558 35.1663 220.769 33.3771 220.769 31.1702C220.769 28.9633 222.558 27.1742 224.765 27.1742C226.972 27.1742 228.761 28.9633 228.761 31.1702C228.761 33.3771 226.972 35.1663 224.765 35.1663Z" fill="#6D5ED4"/>
|
||||
<path d="M199.499 35.1663H194.211C192.004 35.1663 190.215 33.3771 190.215 31.1702C190.215 28.9633 192.004 27.1742 194.211 27.1742H199.499C201.705 27.1742 203.495 28.9633 203.495 31.1702C203.495 33.3771 201.705 35.1663 199.499 35.1663Z" fill="#6D5ED4"/>
|
||||
<path d="M214.694 35.1663H209.364C207.169 35.1663 205.389 33.3869 205.389 31.1917V31.1488C205.389 28.9536 207.168 27.1742 209.364 27.1742H214.694C216.889 27.1742 218.669 28.9536 218.669 31.1488V31.1917C218.669 33.3869 216.889 35.1663 214.694 35.1663Z" fill="#6D5ED4"/>
|
||||
<path d="M199.388 34.4311C201.138 34.4311 202.556 33.0124 202.556 31.2624C202.556 29.5123 201.138 28.0936 199.388 28.0936C197.637 28.0936 196.219 29.5123 196.219 31.2624C196.219 33.0124 197.637 34.4311 199.388 34.4311Z" fill="white"/>
|
||||
<path d="M214.744 34.4311C216.494 34.4311 217.912 33.0124 217.912 31.2624C217.912 29.5123 216.494 28.0936 214.744 28.0936C212.994 28.0936 211.575 29.5123 211.575 31.2624C211.575 33.0124 212.994 34.4311 214.744 34.4311Z" fill="white"/>
|
||||
<path d="M199.489 30.5482H199.484L199.153 30.7264L199.104 30.5304L199.519 30.3081H199.738V32.2084H199.489V30.5482Z" fill="black"/>
|
||||
<path d="M214.602 30.5482H214.596L214.266 30.7264L214.216 30.5304L214.631 30.3081H214.851V32.2084H214.602V30.5482Z" fill="black"/>
|
||||
<path d="M9.60132 24.2851V21.8218H14.2036V35.7428H11.4536V24.2851H9.60132Z" fill="white"/>
|
||||
<path d="M17.679 32.7254C18.9012 31.7071 19.8752 30.8571 20.6009 30.1761C21.3265 29.4953 21.931 28.7852 22.4149 28.0469C22.8985 27.3088 23.1405 26.5832 23.1405 25.87C23.1405 25.2206 22.9877 24.7117 22.6823 24.3424C22.3768 23.9734 21.9054 23.7886 21.2692 23.7886C20.6326 23.7886 20.1426 24.0019 19.7989 24.4284C19.4552 24.855 19.2768 25.4376 19.2641 26.1756H16.667C16.7177 24.6478 17.173 23.4895 18.0325 22.7C18.8917 21.9107 19.9832 21.5161 21.3075 21.5161C22.7588 21.5161 23.8725 21.9012 24.6493 22.6715C25.4257 23.442 25.8142 24.457 25.8142 25.7174C25.8142 26.7104 25.5468 27.6589 25.0123 28.5627C24.4775 29.4668 23.8664 30.2528 23.179 30.921C22.4916 31.5893 21.5942 32.3947 20.4866 33.3368H26.1199V35.552H16.686V33.5659L17.679 32.7254Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_3139">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.549927)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,37 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_3052)">
|
||||
<path d="M233.756 1.0509H-0.0144043V51.0019H233.756V1.0509Z" fill="white"/>
|
||||
<path d="M233.756 0.887573H-0.0144043V11.8768H233.756V0.887573Z" fill="#9181FF"/>
|
||||
<path d="M36.9685 1.0509H-0.0761719V51.0019H36.9685V1.0509Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 10.7456V15.467H9.86658V13.4581H7.84419V15.467H6.89722V10.7456H7.84419V12.6868H9.86658V10.7456H10.8135V10.7456Z" fill="white"/>
|
||||
<path d="M15.2035 13.8773H12.464C12.4865 14.1479 12.5813 14.3599 12.7482 14.513C12.915 14.6663 13.1202 14.7431 13.3637 14.7431C13.7154 14.7431 13.9658 14.592 14.1145 14.29H15.1358C15.0276 14.6507 14.8201 14.9474 14.5135 15.1794C14.2068 15.4117 13.8303 15.5277 13.3839 15.5277C13.0232 15.5277 12.6995 15.4475 12.4133 15.2876C12.1269 15.1275 11.9037 14.9011 11.7435 14.6078C11.5834 14.3148 11.5034 13.9765 11.5034 13.5931C11.5034 13.2053 11.5821 12.865 11.7401 12.5718C11.8978 12.2788 12.1189 12.0533 12.4029 11.8954C12.6871 11.7377 13.0139 11.6587 13.3837 11.6587C13.7398 11.6587 14.0591 11.7355 14.3409 11.8885C14.6227 12.0419 14.8416 12.2595 14.9971 12.5413C15.1526 12.8231 15.2306 13.1465 15.2306 13.5119C15.2306 13.6474 15.2216 13.7691 15.2035 13.8773ZM14.25 13.2416C14.2454 12.9981 14.1576 12.8031 13.986 12.6566C13.8144 12.5101 13.605 12.4367 13.3569 12.4367C13.1224 12.4367 12.925 12.5077 12.7651 12.6498C12.6049 12.7919 12.5067 12.9891 12.4709 13.2416H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 12.5718C16.0546 12.2788 16.2596 12.0533 16.5189 11.8954C16.7783 11.7377 17.0678 11.6587 17.3881 11.6587C17.6677 11.6587 17.9124 11.715 18.1221 11.8279C18.3317 11.9407 18.4996 12.0826 18.6259 12.2539V11.7196H19.5797V15.467H18.6259V14.9191C18.504 15.0951 18.3361 15.2404 18.1221 15.3554C17.9078 15.4705 17.6609 15.528 17.3813 15.528C17.0656 15.528 16.778 15.4468 16.5187 15.2842C16.2593 15.1216 16.0541 14.8933 15.9032 14.5978C15.7521 14.3026 15.6768 13.9631 15.6768 13.5797C15.677 13.2009 15.7526 12.865 15.9034 12.5718ZM18.4909 13.0013C18.4007 12.8367 18.2788 12.7105 18.1255 12.6225C17.9722 12.5345 17.8076 12.4904 17.6316 12.4904C17.4559 12.4904 17.2936 12.5333 17.1446 12.6188C16.9959 12.7046 16.8753 12.8297 16.7829 12.9942C16.6905 13.159 16.6442 13.354 16.6442 13.5792C16.6442 13.8049 16.6903 14.0021 16.7829 14.171C16.8753 14.3402 16.9969 14.4699 17.1483 14.56C17.2994 14.6505 17.4605 14.6953 17.6319 14.6953C17.8079 14.6953 17.9724 14.6515 18.1257 14.5635C18.279 14.4755 18.4007 14.3494 18.4911 14.1847C18.5813 14.0201 18.6264 13.8227 18.6264 13.5928C18.6264 13.363 18.581 13.166 18.4909 13.0013Z" fill="white"/>
|
||||
<path d="M20.4896 12.5718C20.6408 12.2788 20.847 12.0534 21.1088 11.8954C21.3703 11.7377 21.6611 11.6587 21.9814 11.6587C22.2249 11.6587 22.4572 11.7119 22.678 11.8177C22.8989 11.9237 23.0748 12.0646 23.2057 12.2403V10.4614H24.1661V15.4671H23.2057V14.9125C23.0885 15.0976 22.924 15.2462 22.7119 15.3591C22.4998 15.4717 22.2541 15.5283 21.9746 15.5283C21.6589 15.5283 21.3703 15.4471 21.1088 15.2845C20.8472 15.1222 20.6408 14.8935 20.4896 14.5981C20.3385 14.3029 20.2632 13.9634 20.2632 13.58C20.2629 13.2009 20.3385 12.865 20.4896 12.5718ZM23.0768 13.0013C22.9866 12.8368 22.8647 12.7105 22.7114 12.6225C22.5581 12.5345 22.3936 12.4904 22.2176 12.4904C22.0418 12.4904 21.8795 12.5333 21.7306 12.6189C21.5819 12.7047 21.4612 12.8297 21.3688 12.9942C21.2765 13.159 21.2301 13.354 21.2301 13.5792C21.2301 13.8049 21.2762 14.0021 21.3688 14.1711C21.4612 14.3402 21.5828 14.4699 21.7342 14.5601C21.8853 14.6505 22.0465 14.6954 22.2178 14.6954C22.3938 14.6954 22.5583 14.6515 22.7117 14.5635C22.865 14.4755 22.9866 14.3495 23.077 14.1847C23.1672 14.0202 23.2123 13.8227 23.2123 13.5929C23.2123 13.363 23.1672 13.1661 23.0768 13.0013Z" fill="white"/>
|
||||
<path d="M28.5492 13.8773H25.8097C25.8322 14.1479 25.927 14.3599 26.094 14.513C26.2607 14.6663 26.4659 14.7431 26.7094 14.7431C27.0612 14.7431 27.3115 14.592 27.4602 14.29H28.4815C28.3733 14.6507 28.1658 14.9474 27.8592 15.1794C27.5526 15.4117 27.176 15.5277 26.7297 15.5277C26.3689 15.5277 26.0452 15.4475 25.759 15.2876C25.4726 15.1275 25.2494 14.9011 25.0892 14.6078C24.9291 14.3148 24.8491 13.9765 24.8491 13.5931C24.8491 13.2053 24.9279 12.865 25.0858 12.5718C25.2435 12.2788 25.4646 12.0533 25.7486 11.8954C26.0328 11.7377 26.3596 11.6587 26.7294 11.6587C27.0855 11.6587 27.4048 11.7355 27.6866 11.8885C27.9684 12.0419 28.1873 12.2595 28.3428 12.5413C28.4983 12.8231 28.5763 13.1465 28.5763 13.5119C28.5763 13.6474 28.567 13.7691 28.5492 13.8773ZM27.5955 13.2416C27.5908 12.9981 27.5031 12.8031 27.3315 12.6566C27.1599 12.5101 26.9505 12.4367 26.7024 12.4367C26.4679 12.4367 26.2704 12.5077 26.1105 12.6498C25.9504 12.7919 25.8522 12.9891 25.8163 13.2416H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.8344C30.8863 11.7218 31.1106 11.6655 31.3631 11.6655V12.6598H31.1128C30.8151 12.6598 30.5906 12.7297 30.4398 12.8694C30.2886 13.0093 30.2131 13.2528 30.2131 13.5999V15.4668H29.2661V11.7196H30.2131V12.3015C30.335 12.1028 30.4939 11.9473 30.6901 11.8344Z" fill="white"/>
|
||||
<path d="M73.6916 42.3817C73.6916 43.607 72.698 44.6003 71.4725 44.6003H60.9252C59.6998 44.6003 58.7061 43.6072 58.7061 42.3817V41.8237C58.7061 40.5984 59.6996 39.6051 60.9252 39.6051H71.4725C72.6978 39.6051 73.6916 40.5981 73.6916 41.8237V42.3817Z" fill="#6D5ED4"/>
|
||||
<path d="M55.3761 42.3817C55.3761 43.607 54.3826 44.6003 53.157 44.6003H42.6097C41.3844 44.6003 40.3906 43.6072 40.3906 42.3817V41.8237C40.3906 40.5984 41.3842 39.6051 42.6097 39.6051H53.157C54.3824 39.6051 55.3761 40.5981 55.3761 41.8237V42.3817V42.3817Z" fill="#6D5ED4"/>
|
||||
<path d="M92.007 42.3817C92.007 43.607 91.0135 44.6003 89.7879 44.6003H79.2406C78.0153 44.6003 77.0215 43.6072 77.0215 42.3817V41.8237C77.0215 40.5984 78.015 39.6051 79.2406 39.6051H89.7879C91.0132 39.6051 92.007 40.5981 92.007 41.8237V42.3817Z" fill="#6D5ED4"/>
|
||||
<path d="M110.322 42.3817C110.322 43.607 109.328 44.6003 108.103 44.6003H97.5563C96.3304 44.6003 95.3367 43.6072 95.3367 42.3817V41.8237C95.3367 40.5984 96.3302 39.6051 97.5563 39.6051H108.103C109.328 39.6051 110.322 40.5981 110.322 41.8237V42.3817Z" fill="#6D5ED4"/>
|
||||
<path d="M45.1287 25.4702V26.5452H41.0283V19.5444H42.3309V25.4702H45.1287V25.4702Z" fill="#6D5ED4"/>
|
||||
<path d="M52.4879 23.0447C52.4879 23.559 52.4026 24.0331 52.2334 24.4711C52.064 24.9072 51.8242 25.2857 51.5149 25.6058C51.2046 25.9258 50.8319 26.1744 50.3963 26.3541C49.9602 26.5325 49.4764 26.6224 48.9435 26.6224C48.4144 26.6224 47.9317 26.5327 47.4961 26.3541C47.0601 26.1744 46.6864 25.9258 46.3751 25.6058C46.0634 25.2857 45.8226 24.9072 45.6512 24.4711C45.4801 24.0331 45.3945 23.559 45.3945 23.0447C45.3945 22.5306 45.4798 22.0565 45.6512 21.6185C45.8223 21.1824 46.0634 20.8039 46.3751 20.4838C46.6864 20.1638 47.0601 19.9152 47.4961 19.7355C47.9317 19.5571 48.4141 19.4674 48.9435 19.4674C49.2987 19.4674 49.6329 19.5084 49.9453 19.5903C50.2586 19.6722 50.5459 19.7892 50.8077 19.9386C51.0688 20.0899 51.3038 20.2713 51.5117 20.487C51.7201 20.7015 51.8966 20.9406 52.0418 21.2061C52.1874 21.4705 52.2975 21.7574 52.3736 22.0675C52.4496 22.3766 52.4879 22.7034 52.4879 23.0447ZM51.1563 23.0447C51.1563 22.6603 51.1046 22.3168 51.0013 22.0107C50.8982 21.7072 50.7509 21.4467 50.5608 21.2341C50.3702 21.0213 50.1389 20.8585 49.8661 20.7454C49.5929 20.6323 49.2858 20.5755 48.9438 20.5755C48.6013 20.5755 48.2939 20.632 48.0212 20.7454C47.7487 20.8585 47.5164 21.0213 47.3241 21.2341C47.1317 21.4469 46.9845 21.7072 46.8812 22.0107C46.7778 22.3171 46.7261 22.6605 46.7261 23.0447C46.7261 23.4291 46.7778 23.7725 46.8812 24.0789C46.9845 24.3834 47.132 24.6408 47.3241 24.8526C47.5164 25.0654 47.7484 25.2272 48.0212 25.3393C48.2939 25.4524 48.6013 25.51 48.9438 25.51C49.2858 25.51 49.5931 25.4524 49.8661 25.3393C50.1389 25.2272 50.37 25.0651 50.5608 24.8526C50.7512 24.641 50.8984 24.3834 51.0013 24.0789C51.1046 23.7725 51.1563 23.4293 51.1563 23.0447Z" fill="#6D5ED4"/>
|
||||
<path d="M59.4066 23.0352V25.8673C59.0514 26.1289 58.6729 26.32 58.271 26.4409C57.869 26.5627 57.4393 26.6224 56.9808 26.6224C56.4094 26.6224 55.892 26.5347 55.4291 26.356C54.9657 26.1793 54.5706 25.9326 54.2432 25.6155C53.9154 25.3003 53.6626 24.9218 53.4852 24.4818C53.308 24.0438 53.2192 23.5648 53.2192 23.0447C53.2192 22.5179 53.3045 22.036 53.4759 21.5978C53.6465 21.1578 53.8896 20.7802 54.2042 20.4651C54.5189 20.148 54.9009 19.902 55.3491 19.7285C55.7979 19.5539 56.3017 19.4669 56.8599 19.4669C57.1439 19.4669 57.4095 19.4893 57.6565 19.5342C57.9031 19.58 58.1325 19.6414 58.3438 19.7204C58.5554 19.7994 58.7482 19.8949 58.9223 20.009C59.0963 20.1221 59.2564 20.2452 59.4017 20.3807L59.029 20.9721C58.971 21.0667 58.895 21.1234 58.8014 21.1439C58.7078 21.1654 58.6064 21.142 58.4964 21.0747C58.3897 21.0133 58.2831 20.9518 58.1769 20.8904C58.0699 20.829 57.9514 20.7751 57.8207 20.7315C57.6906 20.6857 57.5431 20.6476 57.3803 20.6194C57.2175 20.5911 57.029 20.5755 56.8165 20.5755C56.4711 20.5755 56.1584 20.633 55.8795 20.75C55.6004 20.867 55.3625 21.032 55.1653 21.2475C54.9686 21.4652 54.817 21.7236 54.7103 22.028C54.604 22.3305 54.5506 22.671 54.5506 23.0447C54.5506 23.4447 54.6076 23.8027 54.7224 24.1179C54.837 24.4321 54.9984 24.6985 55.2068 24.916C55.4147 25.1344 55.6658 25.3003 55.9595 25.4154C56.2532 25.5304 56.581 25.587 56.9425 25.587C57.2006 25.587 57.4312 25.5587 57.6348 25.5051C57.8381 25.4495 58.0367 25.3754 58.2305 25.2806V24.0124H57.3491C57.2652 24.0124 57.1999 23.9899 57.1536 23.9431C57.1068 23.8954 57.0829 23.8388 57.0829 23.7715V23.0349L59.4066 23.0352Z" fill="#6D5ED4"/>
|
||||
<path d="M67.3421 23.0447C67.3421 23.559 67.2568 24.0331 67.0874 24.4711C66.9178 24.9072 66.6782 25.2857 66.3684 25.6058C66.0586 25.9258 65.6859 26.1744 65.2498 26.3541C64.8142 26.5325 64.3299 26.6224 63.7975 26.6224C63.2684 26.6224 62.7857 26.5327 62.3501 26.3541C61.9141 26.1744 61.5404 25.9258 61.2291 25.6058C60.9174 25.2857 60.6761 24.9072 60.5052 24.4711C60.3341 24.0331 60.2485 23.559 60.2485 23.0447C60.2485 22.5306 60.3338 22.0565 60.5052 21.6185C60.6758 21.1824 60.9174 20.8039 61.2291 20.4838C61.5404 20.1638 61.9141 19.9152 62.3501 19.7355C62.7857 19.5571 63.2684 19.4674 63.7975 19.4674C64.1527 19.4674 64.4869 19.5084 64.7996 19.5903C65.1126 19.6722 65.3999 19.7892 65.6615 19.9386C65.923 20.0899 66.1575 20.2713 66.3657 20.487C66.5741 20.7015 66.7506 20.9406 66.8961 21.2061C67.0414 21.4705 67.1518 21.7574 67.2278 22.0675C67.3036 22.3766 67.3421 22.7034 67.3421 23.0447ZM66.0101 23.0447C66.0101 22.6603 65.9589 22.3168 65.8555 22.0107C65.7522 21.7072 65.6052 21.4467 65.4151 21.2341C65.2244 21.0213 64.9931 20.8585 64.7204 20.7454C64.4471 20.6323 64.1398 20.5755 63.7978 20.5755C63.4553 20.5755 63.1479 20.632 62.8754 20.7454C62.6027 20.8585 62.3706 21.0213 62.1783 21.2341C61.9862 21.4469 61.8383 21.7072 61.7354 22.0107C61.6321 22.3171 61.5801 22.6605 61.5801 23.0447C61.5801 23.4291 61.6318 23.7725 61.7354 24.0789C61.8383 24.3834 61.9862 24.6408 62.1783 24.8526C62.3706 25.0654 62.6027 25.2272 62.8754 25.3393C63.1479 25.4524 63.4556 25.51 63.7978 25.51C64.1398 25.51 64.4471 25.4524 64.7204 25.3393C64.9929 25.2272 65.2242 25.0651 65.4151 24.8526C65.6052 24.641 65.7522 24.3834 65.8555 24.0789C65.9589 23.7725 66.0101 23.4293 66.0101 23.0447Z" fill="#6D5ED4"/>
|
||||
<path d="M37.1069 33.8275H233.914" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.233 27.041H199.001C198.791 27.041 198.621 26.8709 198.621 26.661V19.4287C198.621 19.2188 198.791 19.0487 199.001 19.0487H206.233C206.443 19.0487 206.613 19.2188 206.613 19.4287V26.661C206.613 26.8709 206.443 27.041 206.233 27.041Z" fill="#6D5ED4"/>
|
||||
<path d="M217.35 27.041H210.19C209.96 27.041 209.774 26.8548 209.774 26.6252V19.4645C209.774 19.2349 209.96 19.0487 210.19 19.0487H217.35C217.58 19.0487 217.766 19.2349 217.766 19.4645V26.6252C217.766 26.8548 217.58 27.041 217.35 27.041Z" fill="#6D5ED4"/>
|
||||
<path d="M228.525 27.041H221.321C221.103 27.041 220.927 26.8645 220.927 26.6466V19.4431C220.927 19.2254 221.103 19.0487 221.321 19.0487H228.525C228.742 19.0487 228.919 19.2252 228.919 19.4431V26.6466C228.919 26.8645 228.742 27.041 228.525 27.041Z" fill="#6D5ED4"/>
|
||||
<path d="M186.944 19.5483H80.9124V26.5415H186.944V19.5483Z" fill="#9181FF"/>
|
||||
<path d="M187.043 19.5483H180.05V26.5415H187.043V19.5483Z" fill="#6D5ED4"/>
|
||||
<path d="M65.7264 4.22778H39.8889V8.85903H65.7264V4.22778Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M165.542 4.1748H103.873V8.80605H165.542V4.1748Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M229.526 4.22778H203.689V8.85903H229.526V4.22778Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M9.45801 24.7266V22.2633H14.0603V36.1844H11.3103V24.7266H9.45801Z" fill="white"/>
|
||||
<path d="M18.0796 22.9794C18.9132 22.2857 20.0113 21.9386 21.3736 21.9386C22.3028 21.9386 23.0986 22.1009 23.7607 22.4256C24.4224 22.7503 24.9221 23.1893 25.2597 23.7431C25.5968 24.2969 25.7657 24.924 25.7657 25.6241C25.7657 26.4263 25.5586 27.1041 25.1452 27.6579C24.7313 28.2117 24.2382 28.584 23.6651 28.7751V28.8513C24.4034 29.0805 24.9796 29.488 25.3933 30.0735C25.8067 30.6592 26.0139 31.4102 26.0139 32.327C26.0139 33.0909 25.8389 33.7719 25.4888 34.3703C25.1386 34.969 24.623 35.4367 23.942 35.7738C23.261 36.1114 22.4429 36.2799 21.4882 36.2799C20.0493 36.2799 18.8781 35.9172 17.9745 35.1915C17.0704 34.4659 16.5929 33.3966 16.5422 31.9833H19.1394C19.1647 32.6073 19.378 33.107 19.7792 33.4824C20.1802 33.858 20.7306 34.0457 21.4309 34.0457C22.0802 34.0457 22.5797 33.8643 22.9299 33.5014C23.28 33.1387 23.4552 32.6707 23.4552 32.0979C23.4552 31.3339 23.2132 30.7867 22.7296 30.4555C22.2455 30.1247 21.4945 29.9589 20.4761 29.9589H19.9223V27.7628H20.4761C22.2838 27.7628 23.1878 27.1583 23.1878 25.9488C23.1878 25.4016 23.0255 24.9747 22.7008 24.6693C22.3762 24.3639 21.9084 24.2111 21.2973 24.2111C20.6987 24.2111 20.2375 24.3734 19.9128 24.6981C19.5881 25.0228 19.4002 25.4332 19.3495 25.9298H16.7333C16.797 24.6569 17.2457 23.6736 18.0796 22.9794Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_3052">
|
||||
<rect width="234" height="50.2125" fill="white" transform="translate(0 0.762329)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,39 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_952_2653)">
|
||||
<path d="M233.756 0.288605H-0.0144043V50.2396H233.756V0.288605Z" fill="white"/>
|
||||
<path d="M233.756 0.125275H-0.0144043V11.1145H233.756V0.125275Z" fill="#9181FF"/>
|
||||
<path d="M36.9685 0.288605H-0.0761719V50.2396H36.9685V0.288605Z" fill="#6D5ED4"/>
|
||||
<path d="M10.8135 9.98328V14.7047H9.86658V12.6957H7.84419V14.7047H6.89722V9.98328H7.84419V11.9245H9.86658V9.98328H10.8135V9.98328Z" fill="white"/>
|
||||
<path d="M15.2035 13.115H12.464C12.4865 13.3855 12.5813 13.5976 12.7482 13.7507C12.915 13.904 13.1202 13.9808 13.3637 13.9808C13.7154 13.9808 13.9658 13.8297 14.1145 13.5276H15.1358C15.0276 13.8884 14.8201 14.185 14.5135 14.4171C14.2068 14.6494 13.8303 14.7654 13.3839 14.7654C13.0232 14.7654 12.6995 14.6852 12.4133 14.5253C12.1269 14.3652 11.9037 14.1387 11.7435 13.8455C11.5834 13.5525 11.5034 13.2142 11.5034 12.8308C11.5034 12.443 11.5821 12.1027 11.7401 11.8095C11.8978 11.5165 12.1189 11.291 12.4029 11.133C12.6871 10.9753 13.0139 10.8964 13.3837 10.8964C13.7398 10.8964 14.0591 10.9731 14.3409 11.1262C14.6227 11.2795 14.8416 11.4972 14.9971 11.779C15.1526 12.0608 15.2306 12.3842 15.2306 12.7496C15.2306 12.8851 15.2216 13.0068 15.2035 13.115ZM14.25 12.4793C14.2454 12.2358 14.1576 12.0408 13.986 11.8943C13.8144 11.7478 13.605 11.6744 13.3569 11.6744C13.1224 11.6744 12.925 11.7453 12.7651 11.8875C12.6049 12.0296 12.5067 12.2267 12.4709 12.4793H14.25Z" fill="white"/>
|
||||
<path d="M15.9034 11.8095C16.0546 11.5165 16.2596 11.291 16.5189 11.133C16.7783 10.9753 17.0678 10.8964 17.3881 10.8964C17.6677 10.8964 17.9124 10.9527 18.1221 11.0655C18.3317 11.1784 18.4996 11.3202 18.6259 11.4916V10.9573H19.5797V14.7047H18.6259V14.1568C18.504 14.3327 18.3361 14.478 18.1221 14.5931C17.9078 14.7081 17.6609 14.7657 17.3813 14.7657C17.0656 14.7657 16.778 14.6845 16.5187 14.5219C16.2593 14.3593 16.0541 14.1309 15.9032 13.8355C15.7521 13.5403 15.6768 13.2008 15.6768 12.8174C15.677 12.4386 15.7526 12.1027 15.9034 11.8095ZM18.4909 12.2389C18.4007 12.0744 18.2788 11.9481 18.1255 11.8602C17.9722 11.7722 17.8076 11.728 17.6316 11.728C17.4559 11.728 17.2936 11.7709 17.1446 11.8565C16.9959 11.9423 16.8753 12.0673 16.7829 12.2319C16.6905 12.3966 16.6442 12.5916 16.6442 12.8169C16.6442 13.0426 16.6903 13.2398 16.7829 13.4087C16.8753 13.5779 16.9969 13.7075 17.1483 13.7977C17.2994 13.8881 17.4605 13.933 17.6319 13.933C17.8079 13.933 17.9724 13.8891 18.1257 13.8011C18.279 13.7131 18.4007 13.5871 18.4911 13.4223C18.5813 13.2578 18.6264 13.0604 18.6264 12.8305C18.6264 12.6007 18.581 12.4037 18.4909 12.2389Z" fill="white"/>
|
||||
<path d="M20.4896 11.8095C20.6408 11.5165 20.847 11.291 21.1088 11.133C21.3703 10.9753 21.6611 10.8964 21.9814 10.8964C22.2249 10.8964 22.4572 10.9495 22.678 11.0553C22.8989 11.1613 23.0748 11.3022 23.2057 11.478V9.69907H24.1661V14.7047H23.2057V14.1502C23.0885 14.3352 22.924 14.4839 22.7119 14.5967C22.4998 14.7093 22.2541 14.7659 21.9746 14.7659C21.6589 14.7659 21.3703 14.6847 21.1088 14.5221C20.8472 14.3598 20.6408 14.1312 20.4896 13.8357C20.3385 13.5406 20.2632 13.201 20.2632 12.8176C20.2629 12.4386 20.3385 12.1027 20.4896 11.8095ZM23.0768 12.2389C22.9866 12.0744 22.8647 11.9481 22.7114 11.8602C22.5581 11.7722 22.3936 11.728 22.2176 11.728C22.0418 11.728 21.8795 11.7709 21.7306 11.8565C21.5819 11.9423 21.4612 12.0673 21.3688 12.2319C21.2765 12.3966 21.2301 12.5916 21.2301 12.8169C21.2301 13.0426 21.2762 13.2398 21.3688 13.4087C21.4612 13.5779 21.5828 13.7075 21.7342 13.7977C21.8853 13.8882 22.0465 13.933 22.2178 13.933C22.3938 13.933 22.5583 13.8891 22.7117 13.8011C22.865 13.7131 22.9866 13.5871 23.077 13.4223C23.1672 13.2578 23.2123 13.0604 23.2123 12.8305C23.2123 12.6007 23.1672 12.4037 23.0768 12.2389Z" fill="white"/>
|
||||
<path d="M28.5492 13.115H25.8097C25.8322 13.3855 25.927 13.5976 26.094 13.7507C26.2607 13.904 26.4659 13.9808 26.7094 13.9808C27.0612 13.9808 27.3115 13.8297 27.4602 13.5276H28.4815C28.3733 13.8884 28.1658 14.185 27.8592 14.4171C27.5526 14.6494 27.176 14.7654 26.7297 14.7654C26.3689 14.7654 26.0452 14.6852 25.759 14.5253C25.4726 14.3652 25.2494 14.1387 25.0892 13.8455C24.9291 13.5525 24.8491 13.2142 24.8491 12.8308C24.8491 12.443 24.9279 12.1027 25.0858 11.8095C25.2435 11.5165 25.4646 11.291 25.7486 11.133C26.0328 10.9753 26.3596 10.8964 26.7294 10.8964C27.0855 10.8964 27.4048 10.9731 27.6866 11.1262C27.9684 11.2795 28.1873 11.4972 28.3428 11.779C28.4983 12.0608 28.5763 12.3842 28.5763 12.7496C28.5763 12.8851 28.567 13.0068 28.5492 13.115ZM27.5955 12.4793C27.5908 12.2358 27.5031 12.0408 27.3315 11.8943C27.1599 11.7478 26.9505 11.6744 26.7024 11.6744C26.4679 11.6744 26.2704 11.7453 26.1105 11.8875C25.9504 12.0296 25.8522 12.2267 25.8163 12.4793H27.5955Z" fill="white"/>
|
||||
<path d="M30.6901 11.0721C30.8863 10.9595 31.1106 10.9032 31.3631 10.9032V11.8975H31.1128C30.8151 11.8975 30.5906 11.9674 30.4398 12.1071C30.2886 12.247 30.2131 12.4905 30.2131 12.8376V14.7045H29.2661V10.9573H30.2131V11.5391C30.335 11.3405 30.4939 11.185 30.6901 11.0721Z" fill="white"/>
|
||||
<path d="M105.135 41.6193C105.135 42.8447 104.142 43.8379 102.916 43.8379H92.3688C91.1434 43.8379 90.1497 42.8449 90.1497 41.6193V41.0614C90.1497 39.8361 91.1432 38.8428 92.3688 38.8428H102.916C104.141 38.8428 105.135 39.8358 105.135 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M86.8197 41.6193C86.8197 42.8447 85.8262 43.8379 84.6006 43.8379H74.0533C72.828 43.8379 71.8342 42.8449 71.8342 41.6193V41.0614C71.8342 39.8361 72.8278 38.8428 74.0533 38.8428H84.6006C85.826 38.8428 86.8197 39.8358 86.8197 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M123.451 41.6193C123.451 42.8447 122.457 43.8379 121.231 43.8379H110.684C109.459 43.8379 108.465 42.8449 108.465 41.6193V41.0614C108.465 39.8361 109.459 38.8428 110.684 38.8428H121.231C122.457 38.8428 123.451 39.8358 123.451 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M141.766 41.6193C141.766 42.8447 140.772 43.8379 139.546 43.8379H129C127.774 43.8379 126.78 42.8449 126.78 41.6193V41.0614C126.78 39.8361 127.774 38.8428 129 38.8428H139.546C140.772 38.8428 141.766 39.8358 141.766 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M160.223 41.6193C160.223 42.8447 159.229 43.8379 158.003 43.8379H147.456C146.231 43.8379 145.237 42.8449 145.237 41.6193V41.0614C145.237 39.8361 146.231 38.8428 147.456 38.8428H158.003C159.229 38.8428 160.223 39.8358 160.223 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M141.907 41.6193C141.907 42.8447 140.914 43.8379 139.688 43.8379H129.141C127.915 43.8379 126.922 42.8449 126.922 41.6193V41.0614C126.922 39.8361 127.915 38.8428 129.141 38.8428H139.688C140.913 38.8428 141.907 39.8358 141.907 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M178.538 41.6193C178.538 42.8447 177.544 43.8379 176.319 43.8379H165.772C164.546 43.8379 163.552 42.8449 163.552 41.6193V41.0614C163.552 39.8361 164.546 38.8428 165.772 38.8428H176.319C177.544 38.8428 178.538 39.8358 178.538 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M196.853 41.6193C196.853 42.8447 195.859 43.8379 194.634 43.8379H184.087C182.861 43.8379 181.868 42.8449 181.868 41.6193V41.0614C181.868 39.8361 182.861 38.8428 184.087 38.8428H194.634C195.859 38.8428 196.853 39.8358 196.853 41.0614V41.6193Z" fill="#6D5ED4"/>
|
||||
<path d="M122.885 24.708V25.7829H118.784V18.7822H120.087V24.708H122.885V24.708Z" fill="#6D5ED4"/>
|
||||
<path d="M130.244 22.2824C130.244 22.7967 130.159 23.2708 129.99 23.7088C129.82 24.1449 129.58 24.5235 129.271 24.8435C128.961 25.1635 128.588 25.4122 128.152 25.5918C127.716 25.7702 127.232 25.8602 126.7 25.8602C126.17 25.8602 125.688 25.7705 125.252 25.5918C124.816 25.4122 124.443 25.1635 124.131 24.8435C123.819 24.5235 123.579 24.1449 123.407 23.7088C123.236 23.2708 123.151 22.7967 123.151 22.2824C123.151 21.7683 123.236 21.2943 123.407 20.8562C123.578 20.4202 123.819 20.0416 124.131 19.7216C124.443 19.4015 124.816 19.1529 125.252 18.9733C125.688 18.7948 126.17 18.7051 126.7 18.7051C127.055 18.7051 127.389 18.7461 127.701 18.828C128.015 18.9099 128.302 19.0269 128.564 19.1763C128.825 19.3277 129.06 19.509 129.268 19.7247C129.476 19.9392 129.653 20.1784 129.798 20.4438C129.943 20.7083 130.054 20.9952 130.13 21.3052C130.206 21.6143 130.244 21.9412 130.244 22.2824ZM128.912 22.2824C128.912 21.898 128.861 21.5546 128.757 21.2484C128.654 20.945 128.507 20.6844 128.317 20.4718C128.126 20.259 127.895 20.0962 127.622 19.9831C127.349 19.87 127.042 19.8132 126.7 19.8132C126.357 19.8132 126.05 19.8698 125.777 19.9831C125.505 20.0962 125.272 20.259 125.08 20.4718C124.888 20.6846 124.741 20.945 124.637 21.2484C124.534 21.5548 124.482 21.8983 124.482 22.2824C124.482 22.6668 124.534 23.0103 124.637 23.3166C124.741 23.6211 124.888 23.8785 125.08 24.0903C125.272 24.3031 125.505 24.465 125.777 24.5771C126.05 24.6902 126.357 24.7477 126.7 24.7477C127.042 24.7477 127.349 24.6902 127.622 24.5771C127.895 24.465 128.126 24.3029 128.317 24.0903C128.507 23.8787 128.655 23.6211 128.757 23.3166C128.861 23.0103 128.912 22.6671 128.912 22.2824Z" fill="#6D5ED4"/>
|
||||
<path d="M137.163 22.2729V25.105C136.808 25.3666 136.429 25.5577 136.027 25.6786C135.625 25.8005 135.195 25.8602 134.737 25.8602C134.166 25.8602 133.648 25.7724 133.185 25.5938C132.722 25.417 132.327 25.1704 131.999 24.8532C131.671 24.5381 131.419 24.1595 131.241 23.7196C131.064 23.2815 130.975 22.8026 130.975 22.2824C130.975 21.7557 131.061 21.2738 131.232 20.8355C131.403 20.3955 131.646 20.018 131.96 19.7028C132.275 19.3857 132.657 19.1397 133.105 18.9662C133.554 18.7917 134.058 18.7047 134.616 18.7047C134.9 18.7047 135.166 18.7271 135.413 18.7719C135.659 18.8178 135.889 18.8792 136.1 18.9582C136.312 19.0371 136.504 19.1327 136.678 19.2468C136.852 19.3599 137.013 19.4829 137.158 19.6185L136.785 20.2098C136.727 20.3044 136.651 20.3612 136.557 20.3817C136.464 20.4031 136.362 20.3797 136.253 20.3124C136.146 20.251 136.039 20.1896 135.933 20.1282C135.826 20.0667 135.708 20.0129 135.577 19.9692C135.447 19.9234 135.299 19.8854 135.136 19.8571C134.974 19.8288 134.785 19.8132 134.573 19.8132C134.227 19.8132 133.914 19.8708 133.636 19.9878C133.357 20.1048 133.119 20.2698 132.921 20.4852C132.725 20.7029 132.573 20.9613 132.466 21.2657C132.36 21.5682 132.307 21.9087 132.307 22.2824C132.307 22.6824 132.364 23.0405 132.479 23.3556C132.593 23.6698 132.754 23.9363 132.963 24.1537C133.171 24.3721 133.422 24.5381 133.716 24.6531C134.009 24.7682 134.337 24.8247 134.699 24.8247C134.957 24.8247 135.187 24.7965 135.391 24.7428C135.594 24.6873 135.793 24.6132 135.987 24.5183V23.2501H135.105C135.021 23.2501 134.956 23.2277 134.91 23.1809C134.863 23.1331 134.839 23.0766 134.839 23.0093V22.2727L137.163 22.2729Z" fill="#6D5ED4"/>
|
||||
<path d="M145.098 22.2824C145.098 22.7967 145.013 23.2708 144.844 23.7088C144.674 24.1449 144.434 24.5235 144.124 24.8435C143.815 25.1635 143.442 25.4122 143.006 25.5918C142.57 25.7702 142.086 25.8602 141.554 25.8602C141.024 25.8602 140.542 25.7705 140.106 25.5918C139.67 25.4122 139.297 25.1635 138.985 24.8435C138.673 24.5235 138.432 24.1449 138.261 23.7088C138.09 23.2708 138.005 22.7967 138.005 22.2824C138.005 21.7683 138.09 21.2943 138.261 20.8562C138.432 20.4202 138.673 20.0416 138.985 19.7216C139.297 19.4015 139.67 19.1529 140.106 18.9733C140.542 18.7948 141.024 18.7051 141.554 18.7051C141.909 18.7051 142.243 18.7461 142.556 18.828C142.869 18.9099 143.156 19.0269 143.418 19.1763C143.679 19.3277 143.914 19.509 144.122 19.7247C144.33 19.9392 144.507 20.1784 144.652 20.4438C144.797 20.7083 144.908 20.9952 144.984 21.3052C145.06 21.6143 145.098 21.9412 145.098 22.2824ZM143.766 22.2824C143.766 21.898 143.715 21.5546 143.612 21.2484C143.508 20.945 143.361 20.6844 143.171 20.4718C142.981 20.259 142.749 20.0962 142.476 19.9831C142.203 19.87 141.896 19.8132 141.554 19.8132C141.211 19.8132 140.904 19.8698 140.632 19.9831C140.359 20.0962 140.127 20.259 139.934 20.4718C139.742 20.6846 139.594 20.945 139.492 21.2484C139.388 21.5548 139.336 21.8983 139.336 22.2824C139.336 22.6668 139.388 23.0103 139.492 23.3166C139.594 23.6211 139.742 23.8785 139.934 24.0903C140.127 24.3031 140.359 24.465 140.632 24.5771C140.904 24.6902 141.212 24.7477 141.554 24.7477C141.896 24.7477 142.203 24.6902 142.476 24.5771C142.749 24.465 142.98 24.3029 143.171 24.0903C143.361 23.8787 143.508 23.6211 143.612 23.3166C143.715 23.0103 143.766 22.6671 143.766 22.2824Z" fill="#6D5ED4"/>
|
||||
<path d="M37.1069 33.0652H233.914" stroke="#9FC1A0" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M206.233 26.2787H199.001C198.791 26.2787 198.621 26.1086 198.621 25.8987V18.6664C198.621 18.4565 198.791 18.2864 199.001 18.2864H206.233C206.443 18.2864 206.613 18.4565 206.613 18.6664V25.8987C206.613 26.1086 206.443 26.2787 206.233 26.2787Z" fill="#6D5ED4"/>
|
||||
<path d="M217.35 26.2787H210.19C209.96 26.2787 209.774 26.0925 209.774 25.8629V18.7022C209.774 18.4726 209.96 18.2864 210.19 18.2864H217.35C217.58 18.2864 217.766 18.4726 217.766 18.7022V25.8629C217.766 26.0925 217.58 26.2787 217.35 26.2787Z" fill="#6D5ED4"/>
|
||||
<path d="M228.525 26.2787H221.321C221.103 26.2787 220.927 26.1022 220.927 25.8843V18.6808C220.927 18.4631 221.103 18.2864 221.321 18.2864H228.525C228.742 18.2864 228.919 18.4629 228.919 18.6808V25.8843C228.919 26.1022 228.742 26.2787 228.525 26.2787Z" fill="#6D5ED4"/>
|
||||
<path d="M56.5501 20.2313H39.9751V24.8625H56.5501V20.2313Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M76.0501 20.2313H59.4751V24.8625H76.0501V20.2313Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M95.5501 20.2313H78.9751V24.8625H95.5501V20.2313Z" fill="white" fill-opacity="0.58"/>
|
||||
<path d="M9.45801 24.208V21.7447H14.0603V35.6657H11.3103V24.208H9.45801Z" fill="white"/>
|
||||
<path d="M16.5806 32.9543V30.8536L22.825 21.9165H25.9376V30.6243H27.6181V32.954H25.9376V35.6657H23.2642V32.954H16.5806V32.9543ZM23.436 24.7811L19.5214 30.6245H23.436V24.7811Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_952_2653">
|
||||
<rect width="234" height="50.2125" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,48 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M42 35H21C20.4477 35 20 35.4477 20 36V38C20 38.5523 20.4477 39 21 39H42C42.5523 39 43 38.5523 43 38V36C43 35.4477 42.5523 35 42 35Z" fill="white"/>
|
||||
<path d="M42 43H21C20.4477 43 20 43.4477 20 44V46C20 46.5523 20.4477 47 21 47H42C42.5523 47 43 46.5523 43 46V44C43 43.4477 42.5523 43 42 43Z" fill="white"/>
|
||||
<path d="M96 35H75C74.4477 35 74 35.4477 74 36V38C74 38.5523 74.4477 39 75 39H96C96.5523 39 97 38.5523 97 38V36C97 35.4477 96.5523 35 96 35Z" fill="white"/>
|
||||
<path d="M96 43H75C74.4477 43 74 43.4477 74 44V46C74 46.5523 74.4477 47 75 47H96C96.5523 47 97 46.5523 97 46V44C97 43.4477 96.5523 43 96 43Z" fill="white"/>
|
||||
<path d="M150 35H129C128.448 35 128 35.4477 128 36V38C128 38.5523 128.448 39 129 39H150C150.552 39 151 38.5523 151 38V36C151 35.4477 150.552 35 150 35Z" fill="white"/>
|
||||
<path d="M150 43H129C128.448 43 128 43.4477 128 44V46C128 46.5523 128.448 47 129 47H150C150.552 47 151 46.5523 151 46V44C151 43.4477 150.552 43 150 43Z" fill="white"/>
|
||||
<path d="M213.739 35H187.261C186.565 35 186 35.4477 186 36V38C186 38.5523 186.565 39 187.261 39H213.739C214.435 39 215 38.5523 215 38V36C215 35.4477 214.435 35 213.739 35Z" fill="white"/>
|
||||
<path d="M213.739 43H187.261C186.565 43 186 43.4477 186 44V46C186 46.5523 186.565 47 187.261 47H213.739C214.435 47 215 46.5523 215 46V44C215 43.4477 214.435 43 213.739 43Z" fill="white"/>
|
||||
<path opacity="0.324" d="M214 29H20V30H214V29Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M55 12H34C33.4477 12 33 12.4477 33 13V15C33 15.5523 33.4477 16 34 16H55C55.5523 16 56 15.5523 56 15V13C56 12.4477 55.5523 12 55 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M47 19H34C33.4477 19 33 19.4477 33 20V22C33 22.5523 33.4477 23 34 23H47C47.5523 23 48 22.5523 48 22V20C48 19.4477 47.5523 19 47 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M29 16.5C29 14.0147 26.9853 12 24.5 12C22.0147 12 20 14.0147 20 16.5C20 18.9853 22.0147 21 24.5 21C26.9853 21 29 18.9853 29 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M108 12H87C86.4477 12 86 12.4477 86 13V15C86 15.5523 86.4477 16 87 16H108C108.552 16 109 15.5523 109 15V13C109 12.4477 108.552 12 108 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M100 19H87C86.4477 19 86 19.4477 86 20V22C86 22.5523 86.4477 23 87 23H100C100.552 23 101 22.5523 101 22V20C101 19.4477 100.552 19 100 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M82 16.5C82 14.0147 79.9853 12 77.5 12C75.0147 12 73 14.0147 73 16.5C73 18.9853 75.0147 21 77.5 21C79.9853 21 82 18.9853 82 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M161 12H140C139.448 12 139 12.4477 139 13V15C139 15.5523 139.448 16 140 16H161C161.552 16 162 15.5523 162 15V13C162 12.4477 161.552 12 161 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M153 19H140C139.448 19 139 19.4477 139 20V22C139 22.5523 139.448 23 140 23H153C153.552 23 154 22.5523 154 22V20C154 19.4477 153.552 19 153 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M135 16.5C135 14.0147 132.985 12 130.5 12C128.015 12 126 14.0147 126 16.5C126 18.9853 128.015 21 130.5 21C132.985 21 135 18.9853 135 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M214 12H193C192.448 12 192 12.4477 192 13V15C192 15.5523 192.448 16 193 16H214C214.552 16 215 15.5523 215 15V13C215 12.4477 214.552 12 214 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M206 19H193C192.448 19 192 19.4477 192 20V22C192 22.5523 192.448 23 193 23H206C206.552 23 207 22.5523 207 22V20C207 19.4477 206.552 19 206 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M188 16.5C188 14.0147 185.985 12 183.5 12C181.015 12 179 14.0147 179 16.5C179 18.9853 181.015 21 183.5 21C185.985 21 188 18.9853 188 16.5Z" fill="white"/>
|
||||
<rect x="18" y="8" width="40" height="18" rx="2" fill="white" fill-opacity="0.1"/>
|
||||
<rect x="71" y="8" width="40" height="18" rx="2" fill="white" fill-opacity="0.1"/>
|
||||
<rect x="124" y="8" width="40" height="18" rx="2" fill="white" fill-opacity="0.1"/>
|
||||
<rect x="177" y="8" width="40" height="18" rx="2" fill="white" fill-opacity="0.1"/>
|
||||
<rect x="177" y="32" width="40" height="18" rx="2" fill="white" fill-opacity="0.1"/>
|
||||
<rect x="179" y="35" width="4" height="4" rx="2" fill="white"/>
|
||||
<rect x="179" y="43" width="4" height="4" rx="2" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,22 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M41 31H20C19.4477 31 19 31.4477 19 32V34C19 34.5523 19.4477 35 20 35H41C41.5523 35 42 34.5523 42 34V32C42 31.4477 41.5523 31 41 31Z" fill="white"/>
|
||||
<path d="M41 39H20C19.4477 39 19 39.4477 19 40V42C19 42.5523 19.4477 43 20 43H41C41.5523 43 42 42.5523 42 42V40C42 39.4477 41.5523 39 41 39Z" fill="white"/>
|
||||
<path d="M41 47H20C19.4477 47 19 47.4477 19 48V50C19 50.5523 19.4477 51 20 51H41C41.5523 51 42 50.5523 42 50V48C42 47.4477 41.5523 47 41 47Z" fill="white"/>
|
||||
<path d="M84 31H63C62.4477 31 62 31.4477 62 32V34C62 34.5523 62.4477 35 63 35H84C84.5523 35 85 34.5523 85 34V32C85 31.4477 84.5523 31 84 31Z" fill="white"/>
|
||||
<path d="M84 39H63C62.4477 39 62 39.4477 62 40V42C62 42.5523 62.4477 43 63 43H84C84.5523 43 85 42.5523 85 42V40C85 39.4477 84.5523 39 84 39Z" fill="white"/>
|
||||
<path d="M84 47H63C62.4477 47 62 47.4477 62 48V50C62 50.5523 62.4477 51 63 51H84C84.5523 51 85 50.5523 85 50V48C85 47.4477 84.5523 47 84 47Z" fill="white"/>
|
||||
<path d="M127 31H106C105.448 31 105 31.4477 105 32V34C105 34.5523 105.448 35 106 35H127C127.552 35 128 34.5523 128 34V32C128 31.4477 127.552 31 127 31Z" fill="white"/>
|
||||
<path d="M127 39H106C105.448 39 105 39.4477 105 40V42C105 42.5523 105.448 43 106 43H127C127.552 43 128 42.5523 128 42V40C128 39.4477 127.552 39 127 39Z" fill="white"/>
|
||||
<path d="M127 47H106C105.448 47 105 47.4477 105 48V50C105 50.5523 105.448 51 106 51H127C127.552 51 128 50.5523 128 50V48C128 47.4477 127.552 47 127 47Z" fill="white"/>
|
||||
<path d="M170 31H149C148.448 31 148 31.4477 148 32V34C148 34.5523 148.448 35 149 35H170C170.552 35 171 34.5523 171 34V32C171 31.4477 170.552 31 170 31Z" fill="white"/>
|
||||
<path d="M170 39H149C148.448 39 148 39.4477 148 40V42C148 42.5523 148.448 43 149 43H170C170.552 43 171 42.5523 171 42V40C171 39.4477 170.552 39 170 39Z" fill="white"/>
|
||||
<path d="M170 47H149C148.448 47 148 47.4477 148 48V50C148 50.5523 148.448 51 149 51H170C170.552 51 171 50.5523 171 50V48C171 47.4477 170.552 47 170 47Z" fill="white"/>
|
||||
<path d="M213 31H192C191.448 31 191 31.4477 191 32V34C191 34.5523 191.448 35 192 35H213C213.552 35 214 34.5523 214 34V32C214 31.4477 213.552 31 213 31Z" fill="white"/>
|
||||
<path d="M213 39H192C191.448 39 191 39.4477 191 40V42C191 42.5523 191.448 43 192 43H213C213.552 43 214 42.5523 214 42V40C214 39.4477 213.552 39 213 39Z" fill="white"/>
|
||||
<path d="M213 47H192C191.448 47 191 47.4477 191 48V50C191 50.5523 191.448 51 192 51H213C213.552 51 214 50.5523 214 50V48C214 47.4477 213.552 47 213 47Z" fill="white"/>
|
||||
<path d="M78.3059 11H20.6941C20.3108 11 20 11.4477 20 12V18C20 18.5523 20.3108 19 20.6941 19H78.3059C78.6892 19 79 18.5523 79 18V12C79 11.4477 78.6892 11 78.3059 11Z" fill="white"/>
|
||||
<path d="M146.294 11H87.7059C87.316 11 87 11.4477 87 12V18C87 18.5523 87.316 19 87.7059 19H146.294C146.684 19 147 18.5523 147 18V12C147 11.4477 146.684 11 146.294 11Z" fill="white"/>
|
||||
<path d="M213.306 11H155.694C155.311 11 155 11.4477 155 12V18C155 18.5523 155.311 19 155.694 19H213.306C213.689 19 214 18.5523 214 18V12C214 11.4477 213.689 11 213.306 11Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,28 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M26 39C26 37.3431 24.6569 36 23 36C21.3431 36 20 37.3431 20 39C20 40.6569 21.3431 42 23 42C24.6569 42 26 40.6569 26 39Z" fill="white"/>
|
||||
<path d="M36 39C36 37.3431 34.6569 36 33 36C31.3431 36 30 37.3431 30 39C30 40.6569 31.3431 42 33 42C34.6569 42 36 40.6569 36 39Z" fill="white"/>
|
||||
<path d="M46 39C46 37.3431 44.6569 36 43 36C41.3431 36 40 37.3431 40 39C40 40.6569 41.3431 42 43 42C44.6569 42 46 40.6569 46 39Z" fill="white"/>
|
||||
<path d="M56 39C56 37.3431 54.6569 36 53 36C51.3431 36 50 37.3431 50 39C50 40.6569 51.3431 42 53 42C54.6569 42 56 40.6569 56 39Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M105 16H84C83.4477 16 83 16.4477 83 17V19C83 19.5523 83.4477 20 84 20H105C105.552 20 106 19.5523 106 19V17C106 16.4477 105.552 16 105 16Z" fill="white"/>
|
||||
<path d="M105 24H84C83.4477 24 83 24.4477 83 25V27C83 27.5523 83.4477 28 84 28H105C105.552 28 106 27.5523 106 27V25C106 24.4477 105.552 24 105 24Z" fill="white"/>
|
||||
<path d="M105 32H84C83.4477 32 83 32.4477 83 33V35C83 35.5523 83.4477 36 84 36H105C105.552 36 106 35.5523 106 35V33C106 32.4477 105.552 32 105 32Z" fill="white"/>
|
||||
<path d="M105 40H84C83.4477 40 83 40.4477 83 41V43C83 43.5523 83.4477 44 84 44H105C105.552 44 106 43.5523 106 43V41C106 40.4477 105.552 40 105 40Z" fill="white"/>
|
||||
<path d="M141 16H120C119.448 16 119 16.4477 119 17V19C119 19.5523 119.448 20 120 20H141C141.552 20 142 19.5523 142 19V17C142 16.4477 141.552 16 141 16Z" fill="white"/>
|
||||
<path d="M141 24H120C119.448 24 119 24.4477 119 25V27C119 27.5523 119.448 28 120 28H141C141.552 28 142 27.5523 142 27V25C142 24.4477 141.552 24 141 24Z" fill="white"/>
|
||||
<path d="M141 32H120C119.448 32 119 32.4477 119 33V35C119 35.5523 119.448 36 120 36H141C141.552 36 142 35.5523 142 35V33C142 32.4477 141.552 32 141 32Z" fill="white"/>
|
||||
<path d="M141 40H120C119.448 40 119 40.4477 119 41V43C119 43.5523 119.448 44 120 44H141C141.552 44 142 43.5523 142 43V41C142 40.4477 141.552 40 141 40Z" fill="white"/>
|
||||
<path d="M177 16H156C155.448 16 155 16.4477 155 17V19C155 19.5523 155.448 20 156 20H177C177.552 20 178 19.5523 178 19V17C178 16.4477 177.552 16 177 16Z" fill="white"/>
|
||||
<path d="M177 24H156C155.448 24 155 24.4477 155 25V27C155 27.5523 155.448 28 156 28H177C177.552 28 178 27.5523 178 27V25C178 24.4477 177.552 24 177 24Z" fill="white"/>
|
||||
<path d="M177 32H156C155.448 32 155 32.4477 155 33V35C155 35.5523 155.448 36 156 36H177C177.552 36 178 35.5523 178 35V33C178 32.4477 177.552 32 177 32Z" fill="white"/>
|
||||
<path d="M177 40H156C155.448 40 155 40.4477 155 41V43C155 43.5523 155.448 44 156 44H177C177.552 44 178 43.5523 178 43V41C178 40.4477 177.552 40 177 40Z" fill="white"/>
|
||||
<path d="M213 16H192C191.448 16 191 16.4477 191 17V19C191 19.5523 191.448 20 192 20H213C213.552 20 214 19.5523 214 19V17C214 16.4477 213.552 16 213 16Z" fill="white"/>
|
||||
<path d="M213 24H192C191.448 24 191 24.4477 191 25V27C191 27.5523 191.448 28 192 28H213C213.552 28 214 27.5523 214 27V25C214 24.4477 213.552 24 213 24Z" fill="white"/>
|
||||
<path d="M213 32H192C191.448 32 191 32.4477 191 33V35C191 35.5523 191.448 36 192 36H213C213.552 36 214 35.5523 214 35V33C214 32.4477 213.552 32 213 32Z" fill="white"/>
|
||||
<path d="M213 40H192C191.448 40 191 40.4477 191 41V43C191 43.5523 191.448 44 192 44H213C213.552 44 214 43.5523 214 43V41C214 40.4477 213.552 40 213 40Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M24.3272 22.615V21.2881H21.6891V17.2227H20V22.6157L24.3272 22.615ZM27.134 22.7075C27.7402 22.7075 28.2475 22.5951 28.6538 22.371C29.0507 22.156 29.3751 21.8282 29.5858 21.429C29.8014 21.0256 29.9088 20.509 29.9088 19.8787C29.9088 19.0106 29.6627 18.3354 29.1703 17.8538C28.678 17.3721 27.9772 17.1309 27.0665 17.1309C26.1792 17.1309 25.487 17.3764 24.9889 17.8666C24.4916 18.3575 24.2433 19.0427 24.2433 19.9228C24.2433 20.5531 24.3685 21.0782 24.6204 21.4973C24.8708 21.9171 25.1988 22.223 25.6022 22.4165C26.0071 22.6108 26.5172 22.7075 27.134 22.7075ZM27.0778 21.4603C26.7249 21.4603 26.4453 21.3415 26.2404 21.1038C26.0355 20.8655 25.9331 20.4749 25.9331 19.9299C25.9331 19.3806 26.0362 18.9872 26.2426 18.7488C26.4489 18.5119 26.7221 18.3931 27.0629 18.3931C27.4186 18.3931 27.7004 18.5098 27.9081 18.7438C28.1152 18.9786 28.2191 19.3486 28.2191 19.8566C28.2191 20.4599 28.1194 20.8783 27.9202 21.1109C27.7217 21.3436 27.4407 21.4603 27.0778 21.4603ZM32.9767 22.7075C33.504 22.7075 33.9593 22.647 34.3435 22.5254C34.7277 22.4044 35.1702 22.1753 35.6697 21.8395V19.54H33.0586V20.662H34.1891V21.17C34.0036 21.2835 33.806 21.3761 33.6 21.4461C33.4249 21.5003 33.2426 21.5274 33.0593 21.5265C32.6608 21.5265 32.3506 21.4012 32.1279 21.1515C31.906 20.9011 31.7943 20.4841 31.7943 19.9007C31.7943 19.3514 31.9045 18.9502 32.1244 18.6962C32.3449 18.4422 32.6395 18.3155 33.0102 18.3155C33.2592 18.3155 33.4634 18.3696 33.6242 18.477C33.7843 18.5852 33.8981 18.7403 33.9657 18.9445L35.595 18.6577C35.4954 18.3091 35.3474 18.0217 35.1496 17.7947C34.9484 17.5657 34.6913 17.3929 34.4033 17.2931C34.1044 17.185 33.6519 17.1309 33.0479 17.1309C32.4211 17.1309 31.9223 17.2177 31.5516 17.392C31.0957 17.6002 30.7173 17.9471 30.4702 18.3831C30.224 18.8185 30.1009 19.3308 30.1009 19.9192C30.1009 20.4784 30.2133 20.9736 30.4382 21.4055C30.6472 21.8207 30.9795 22.1611 31.3894 22.3802C31.7985 22.5979 32.3279 22.7075 32.9767 22.7075ZM38.8422 22.7075C39.4491 22.7075 39.9557 22.5951 40.3619 22.371C40.7589 22.156 41.0832 21.8282 41.294 21.429C41.5096 21.0256 41.617 20.509 41.617 19.8787C41.617 19.0106 41.3708 18.3354 40.8785 17.8538C40.3861 17.3721 39.6853 17.1309 38.7746 17.1309C37.8874 17.1309 37.1951 17.3764 36.6971 17.8666C36.1998 18.3575 35.9515 19.0427 35.9515 19.9228C35.9515 20.5531 36.0767 21.0782 36.3285 21.4973C36.579 21.9171 36.907 22.223 37.3104 22.4165C37.7152 22.6108 38.2254 22.7075 38.8422 22.7075ZM38.786 21.4603C38.4331 21.4603 38.1542 21.3415 37.9486 21.1038C37.7437 20.8655 37.6412 20.4749 37.6412 19.9299C37.6412 19.3806 37.7444 18.9872 37.9507 18.7488C38.1571 18.5119 38.4303 18.3931 38.7711 18.3931C39.1268 18.3931 39.4086 18.5098 39.6163 18.7438C39.8241 18.9786 39.9272 19.3486 39.9272 19.8566C39.9272 20.4599 39.8276 20.8783 39.6291 21.1109C39.4299 21.3436 39.1489 21.4603 38.786 21.4603Z" fill="white"/>
|
||||
<path d="M42 28H21C20.4477 28 20 28.4477 20 29V31C20 31.5523 20.4477 32 21 32H42C42.5523 32 43 31.5523 43 31V29C43 28.4477 42.5523 28 42 28Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
@@ -0,0 +1,20 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M42 35H21C20.4477 35 20 35.4477 20 36V38C20 38.5523 20.4477 39 21 39H42C42.5523 39 43 38.5523 43 38V36C43 35.4477 42.5523 35 42 35Z" fill="white"/>
|
||||
<path d="M42 43H21C20.4477 43 20 43.4477 20 44V46C20 46.5523 20.4477 47 21 47H42C42.5523 47 43 46.5523 43 46V44C43 43.4477 42.5523 43 42 43Z" fill="white"/>
|
||||
<path d="M92 35H71C70.4477 35 70 35.4477 70 36V38C70 38.5523 70.4477 39 71 39H92C92.5523 39 93 38.5523 93 38V36C93 35.4477 92.5523 35 92 35Z" fill="white"/>
|
||||
<path d="M92 43H71C70.4477 43 70 43.4477 70 44V46C70 46.5523 70.4477 47 71 47H92C92.5523 47 93 46.5523 93 46V44C93 43.4477 92.5523 43 92 43Z" fill="white"/>
|
||||
<path d="M142 35H121C120.448 35 120 35.4477 120 36V38C120 38.5523 120.448 39 121 39H142C142.552 39 143 38.5523 143 38V36C143 35.4477 142.552 35 142 35Z" fill="white"/>
|
||||
<path d="M142 43H121C120.448 43 120 43.4477 120 44V46C120 46.5523 120.448 47 121 47H142C142.552 47 143 46.5523 143 46V44C143 43.4477 142.552 43 142 43Z" fill="white"/>
|
||||
<path d="M192 35H171C170.448 35 170 35.4477 170 36V38C170 38.5523 170.448 39 171 39H192C192.552 39 193 38.5523 193 38V36C193 35.4477 192.552 35 192 35Z" fill="white"/>
|
||||
<path d="M192 43H171C170.448 43 170 43.4477 170 44V46C170 46.5523 170.448 47 171 47H192C192.552 47 193 46.5523 193 46V44C193 43.4477 192.552 43 192 43Z" fill="white"/>
|
||||
</g>
|
||||
<path opacity="0.324" d="M214 26H20V27H214V26Z" fill="white"/>
|
||||
<path d="M182 17C182 15.3431 180.657 14 179 14C177.343 14 176 15.3431 176 17C176 18.6569 177.343 20 179 20C180.657 20 182 18.6569 182 17Z" fill="white"/>
|
||||
<path d="M192 17C192 15.3431 190.657 14 189 14C187.343 14 186 15.3431 186 17C186 18.6569 187.343 20 189 20C190.657 20 192 18.6569 192 17Z" fill="white"/>
|
||||
<path d="M202 17C202 15.3431 200.657 14 199 14C197.343 14 196 15.3431 196 17C196 18.6569 197.343 20 199 20C200.657 20 202 18.6569 202 17Z" fill="white"/>
|
||||
<path d="M212 17C212 15.3431 210.657 14 209 14C207.343 14 206 15.3431 206 17C206 18.6569 207.343 20 209 20C210.657 20 212 18.6569 212 17Z" fill="white"/>
|
||||
<path d="M68.4235 13H20.5765C20.2581 13 20 13.4477 20 14V20C20 20.5523 20.2581 21 20.5765 21H68.4235C68.7419 21 69 20.5523 69 20V14C69 13.4477 68.7419 13 68.4235 13Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,24 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M47 28H26C25.4477 28 25 28.4477 25 29V31C25 31.5523 25.4477 32 26 32H47C47.5523 32 48 31.5523 48 31V29C48 28.4477 47.5523 28 47 28Z" fill="white"/>
|
||||
<path d="M47 12H26C25.4477 12 25 12.4477 25 13V15C25 15.5523 25.4477 16 26 16H47C47.5523 16 48 15.5523 48 15V13C48 12.4477 47.5523 12 47 12Z" fill="white"/>
|
||||
<path d="M47 20H26C25.4477 20 25 20.4477 25 21V23C25 23.5523 25.4477 24 26 24H47C47.5523 24 48 23.5523 48 23V21C48 20.4477 47.5523 20 47 20Z" fill="white"/>
|
||||
<path d="M96 28H75C74.4477 28 74 28.4477 74 29V31C74 31.5523 74.4477 32 75 32H96C96.5523 32 97 31.5523 97 31V29C97 28.4477 96.5523 28 96 28Z" fill="white"/>
|
||||
<path d="M96 12H75C74.4477 12 74 12.4477 74 13V15C74 15.5523 74.4477 16 75 16H96C96.5523 16 97 15.5523 97 15V13C97 12.4477 96.5523 12 96 12Z" fill="white"/>
|
||||
<path d="M96 20H75C74.4477 20 74 20.4477 74 21V23C74 23.5523 74.4477 24 75 24H96C96.5523 24 97 23.5523 97 23V21C97 20.4477 96.5523 20 96 20Z" fill="white"/>
|
||||
<path d="M144 28H123C122.448 28 122 28.4477 122 29V31C122 31.5523 122.448 32 123 32H144C144.552 32 145 31.5523 145 31V29C145 28.4477 144.552 28 144 28Z" fill="white"/>
|
||||
<path d="M144 12H123C122.448 12 122 12.4477 122 13V15C122 15.5523 122.448 16 123 16H144C144.552 16 145 15.5523 145 15V13C145 12.4477 144.552 12 144 12Z" fill="white"/>
|
||||
<path d="M144 20H123C122.448 20 122 20.4477 122 21V23C122 23.5523 122.448 24 123 24H144C144.552 24 145 23.5523 145 23V21C145 20.4477 144.552 20 144 20Z" fill="white"/>
|
||||
<path d="M192 28H171C170.448 28 170 28.4477 170 29V31C170 31.5523 170.448 32 171 32H192C192.552 32 193 31.5523 193 31V29C193 28.4477 192.552 28 192 28Z" fill="white"/>
|
||||
<path d="M192 12H171C170.448 12 170 12.4477 170 13V15C170 15.5523 170.448 16 171 16H192C192.552 16 193 15.5523 193 15V13C193 12.4477 192.552 12 192 12Z" fill="white"/>
|
||||
<path d="M192 20H171C170.448 20 170 20.4477 170 21V23C170 23.5523 170.448 24 171 24H192C192.552 24 193 23.5523 193 23V21C193 20.4477 192.552 20 192 20Z" fill="white"/>
|
||||
<path opacity="0.324" d="M234 37H0V38H234V37Z" fill="white"/>
|
||||
<path d="M105 46C105 44.3431 103.657 43 102 43C100.343 43 99 44.3431 99 46C99 47.6569 100.343 49 102 49C103.657 49 105 47.6569 105 46Z" fill="white"/>
|
||||
<path d="M115 46C115 44.3431 113.657 43 112 43C110.343 43 109 44.3431 109 46C109 47.6569 110.343 49 112 49C113.657 49 115 47.6569 115 46Z" fill="white"/>
|
||||
<path d="M125 46C125 44.3431 123.657 43 122 43C120.343 43 119 44.3431 119 46C119 47.6569 120.343 49 122 49C123.657 49 125 47.6569 125 46Z" fill="white"/>
|
||||
<path d="M135 46C135 44.3431 133.657 43 132 43C130.343 43 129 44.3431 129 46C129 47.6569 130.343 49 132 49C133.657 49 135 47.6569 135 46Z" fill="white"/>
|
||||
<path d="M69.5 11H69V34H69.5V11Z" fill="white" fill-opacity="0.3"/>
|
||||
<path d="M117.5 11H117V34H117.5V11Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M165.5 11H165V34H165.5V11Z" fill="white" fill-opacity="0.3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,29 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M170 17H149C148.448 17 148 17.4477 148 18V20C148 20.5523 148.448 21 149 21H170C170.552 21 171 20.5523 171 20V18C171 17.4477 170.552 17 170 17Z" fill="white"/>
|
||||
<path d="M170 25H149C148.448 25 148 25.4477 148 26V28C148 28.5523 148.448 29 149 29H170C170.552 29 171 28.5523 171 28V26C171 25.4477 170.552 25 170 25Z" fill="white"/>
|
||||
<path d="M170 33H149C148.448 33 148 33.4477 148 34V36C148 36.5523 148.448 37 149 37H170C170.552 37 171 36.5523 171 36V34C171 33.4477 170.552 33 170 33Z" fill="white"/>
|
||||
<path d="M170 41H149C148.448 41 148 41.4477 148 42V44C148 44.5523 148.448 45 149 45H170C170.552 45 171 44.5523 171 44V42C171 41.4477 170.552 41 170 41Z" fill="white"/>
|
||||
<path d="M213 17H192C191.448 17 191 17.4477 191 18V20C191 20.5523 191.448 21 192 21H213C213.552 21 214 20.5523 214 20V18C214 17.4477 213.552 17 213 17Z" fill="white"/>
|
||||
<path d="M213.261 25H197.739C197.331 25 197 25.4477 197 26V28C197 28.5523 197.331 29 197.739 29H213.261C213.669 29 214 28.5523 214 28V26C214 25.4477 213.669 25 213.261 25Z" fill="white"/>
|
||||
<path d="M213.261 33H197.739C197.331 33 197 33.4477 197 34V36C197 36.5523 197.331 37 197.739 37H213.261C213.669 37 214 36.5523 214 36V34C214 33.4477 213.669 33 213.261 33Z" fill="white"/>
|
||||
<path d="M213.261 41H197.739C197.331 41 197 41.4477 197 42V44C197 44.5523 197.331 45 197.739 45H213.261C213.669 45 214 44.5523 214 44V42C214 41.4477 213.669 41 213.261 41Z" fill="white"/>
|
||||
<path d="M127 17H106C105.448 17 105 17.4477 105 18V20C105 20.5523 105.448 21 106 21H127C127.552 21 128 20.5523 128 20V18C128 17.4477 127.552 17 127 17Z" fill="white"/>
|
||||
<path d="M127 25H106C105.448 25 105 25.4477 105 26V28C105 28.5523 105.448 29 106 29H127C127.552 29 128 28.5523 128 28V26C128 25.4477 127.552 25 127 25Z" fill="white"/>
|
||||
<path d="M127 33H106C105.448 33 105 33.4477 105 34V36C105 36.5523 105.448 37 106 37H127C127.552 37 128 36.5523 128 36V34C128 33.4477 127.552 33 127 33Z" fill="white"/>
|
||||
<path d="M127 41H106C105.448 41 105 41.4477 105 42V44C105 44.5523 105.448 45 106 45H127C127.552 45 128 44.5523 128 44V42C128 41.4477 127.552 41 127 41Z" fill="white"/>
|
||||
<path d="M85 17H64C63.4477 17 63 17.4477 63 18V20C63 20.5523 63.4477 21 64 21H85C85.5523 21 86 20.5523 86 20V18C86 17.4477 85.5523 17 85 17Z" fill="white"/>
|
||||
<path d="M85 25H64C63.4477 25 63 25.4477 63 26V28C63 28.5523 63.4477 29 64 29H85C85.5523 29 86 28.5523 86 28V26C86 25.4477 85.5523 25 85 25Z" fill="white"/>
|
||||
<path d="M85 33H64C63.4477 33 63 33.4477 63 34V36C63 36.5523 63.4477 37 64 37H85C85.5523 37 86 36.5523 86 36V34C86 33.4477 85.5523 33 85 33Z" fill="white"/>
|
||||
<path d="M85 41H64C63.4477 41 63 41.4477 63 42V44C63 44.5523 63.4477 45 64 45H85C85.5523 45 86 44.5523 86 44V42C86 41.4477 85.5523 41 85 41Z" fill="white"/>
|
||||
<path d="M42 29H21C20.4477 29 20 29.4477 20 30V32C20 32.5523 20.4477 33 21 33H42C42.5523 33 43 32.5523 43 32V30C43 29.4477 42.5523 29 42 29Z" fill="white"/>
|
||||
<path d="M28 40.5C28 38.0147 25.9853 36 23.5 36C21.0147 36 19 38.0147 19 40.5C19 42.9853 21.0147 45 23.5 45C25.9853 45 28 42.9853 28 40.5Z" fill="white"/>
|
||||
<path d="M43 40.5C43 38.0147 40.9853 36 38.5 36C36.0147 36 34 38.0147 34 40.5C34 42.9853 36.0147 45 38.5 45C40.9853 45 43 42.9853 43 40.5Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M26.082 24.708V22.843H22.374V17.129H20V24.709L26.082 24.708ZM30.027 24.838C30.879 24.838 31.592 24.68 32.163 24.365C32.7209 24.0628 33.1768 23.6021 33.473 23.041C33.776 22.474 33.927 21.748 33.927 20.862C33.927 19.642 33.581 18.693 32.889 18.016C32.197 17.339 31.212 17 29.932 17C28.685 17 27.712 17.345 27.012 18.034C26.313 18.724 25.964 19.687 25.964 20.924C25.964 21.81 26.14 22.548 26.494 23.137C26.846 23.727 27.307 24.157 27.874 24.429C28.443 24.702 29.16 24.838 30.027 24.838ZM29.948 23.085C29.452 23.085 29.059 22.918 28.771 22.584C28.483 22.249 28.339 21.7 28.339 20.934C28.339 20.162 28.484 19.609 28.774 19.274C29.064 18.941 29.448 18.774 29.927 18.774C30.427 18.774 30.823 18.938 31.115 19.267C31.406 19.597 31.552 20.117 31.552 20.831C31.552 21.679 31.412 22.267 31.132 22.594C30.853 22.921 30.458 23.085 29.948 23.085ZM38.239 24.838C38.98 24.838 39.62 24.753 40.16 24.582C40.7 24.412 41.322 24.09 42.024 23.618V20.386H38.354V21.963H39.943V22.677C39.6822 22.8366 39.4045 22.9667 39.115 23.065C38.8689 23.1413 38.6126 23.1794 38.355 23.178C37.795 23.178 37.359 23.002 37.046 22.651C36.734 22.299 36.577 21.713 36.577 20.893C36.577 20.121 36.732 19.557 37.041 19.2C37.351 18.843 37.765 18.665 38.286 18.665C38.636 18.665 38.923 18.741 39.149 18.892C39.374 19.044 39.534 19.262 39.629 19.549L41.919 19.146C41.779 18.656 41.571 18.252 41.293 17.933C41.0102 17.6112 40.6488 17.3683 40.244 17.228C39.824 17.076 39.188 17 38.339 17C37.458 17 36.757 17.122 36.236 17.367C35.5952 17.6596 35.0632 18.1471 34.716 18.76C34.37 19.372 34.197 20.092 34.197 20.919C34.197 21.705 34.355 22.401 34.671 23.008C34.9648 23.5915 35.4318 24.07 36.008 24.378C36.583 24.684 37.327 24.838 38.239 24.838ZM46.483 24.838C47.336 24.838 48.048 24.68 48.619 24.365C49.1769 24.0628 49.6328 23.6021 49.929 23.041C50.232 22.474 50.383 21.748 50.383 20.862C50.383 19.642 50.037 18.693 49.345 18.016C48.653 17.339 47.668 17 46.388 17C45.141 17 44.168 17.345 43.468 18.034C42.769 18.724 42.42 19.687 42.42 20.924C42.42 21.81 42.596 22.548 42.95 23.137C43.302 23.727 43.763 24.157 44.33 24.429C44.899 24.702 45.616 24.838 46.483 24.838ZM46.404 23.085C45.908 23.085 45.516 22.918 45.227 22.584C44.939 22.249 44.795 21.7 44.795 20.934C44.795 20.162 44.94 19.609 45.23 19.274C45.52 18.941 45.904 18.774 46.383 18.774C46.883 18.774 47.279 18.938 47.571 19.267C47.863 19.597 48.008 20.117 48.008 20.831C48.008 21.679 47.868 22.267 47.589 22.594C47.309 22.921 46.914 23.085 46.404 23.085Z" fill="white"/>
|
||||
<path d="M193 29C194.105 29 195 28.1046 195 27C195 25.8954 194.105 25 193 25C191.895 25 191 25.8954 191 27C191 28.1046 191.895 29 193 29Z" fill="#E9E6FF"/>
|
||||
<path d="M193 37C194.105 37 195 36.1046 195 35C195 33.8954 194.105 33 193 33C191.895 33 191 33.8954 191 35C191 36.1046 191.895 37 193 37Z" fill="#E9E6FF"/>
|
||||
<path d="M193 45C194.105 45 195 44.1046 195 43C195 41.8954 194.105 41 193 41C191.895 41 191 41.8954 191 43C191 44.1046 191.895 45 193 45Z" fill="#E9E6FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.2 KiB |
@@ -0,0 +1,41 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M42 35H21C20.4477 35 20 35.4477 20 36V38C20 38.5523 20.4477 39 21 39H42C42.5523 39 43 38.5523 43 38V36C43 35.4477 42.5523 35 42 35Z" fill="white"/>
|
||||
<path d="M42 43H21C20.4477 43 20 43.4477 20 44V46C20 46.5523 20.4477 47 21 47H42C42.5523 47 43 46.5523 43 46V44C43 43.4477 42.5523 43 42 43Z" fill="white"/>
|
||||
<path d="M96 35H75C74.4477 35 74 35.4477 74 36V38C74 38.5523 74.4477 39 75 39H96C96.5523 39 97 38.5523 97 38V36C97 35.4477 96.5523 35 96 35Z" fill="white"/>
|
||||
<path d="M96 43H75C74.4477 43 74 43.4477 74 44V46C74 46.5523 74.4477 47 75 47H96C96.5523 47 97 46.5523 97 46V44C97 43.4477 96.5523 43 96 43Z" fill="white"/>
|
||||
<path d="M150 35H129C128.448 35 128 35.4477 128 36V38C128 38.5523 128.448 39 129 39H150C150.552 39 151 38.5523 151 38V36C151 35.4477 150.552 35 150 35Z" fill="white"/>
|
||||
<path d="M150 43H129C128.448 43 128 43.4477 128 44V46C128 46.5523 128.448 47 129 47H150C150.552 47 151 46.5523 151 46V44C151 43.4477 150.552 43 150 43Z" fill="white"/>
|
||||
<path d="M204 35H183C182.448 35 182 35.4477 182 36V38C182 38.5523 182.448 39 183 39H204C204.552 39 205 38.5523 205 38V36C205 35.4477 204.552 35 204 35Z" fill="white"/>
|
||||
<path d="M204 43H183C182.448 43 182 43.4477 182 44V46C182 46.5523 182.448 47 183 47H204C204.552 47 205 46.5523 205 46V44C205 43.4477 204.552 43 204 43Z" fill="white"/>
|
||||
<path opacity="0.324" d="M214 29H20V30H214V29Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M55 12H34C33.4477 12 33 12.4477 33 13V15C33 15.5523 33.4477 16 34 16H55C55.5523 16 56 15.5523 56 15V13C56 12.4477 55.5523 12 55 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M47 19H34C33.4477 19 33 19.4477 33 20V22C33 22.5523 33.4477 23 34 23H47C47.5523 23 48 22.5523 48 22V20C48 19.4477 47.5523 19 47 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M29 16.5C29 14.0147 26.9853 12 24.5 12C22.0147 12 20 14.0147 20 16.5C20 18.9853 22.0147 21 24.5 21C26.9853 21 29 18.9853 29 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M108 12H87C86.4477 12 86 12.4477 86 13V15C86 15.5523 86.4477 16 87 16H108C108.552 16 109 15.5523 109 15V13C109 12.4477 108.552 12 108 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M100 19H87C86.4477 19 86 19.4477 86 20V22C86 22.5523 86.4477 23 87 23H100C100.552 23 101 22.5523 101 22V20C101 19.4477 100.552 19 100 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M82 16.5C82 14.0147 79.9853 12 77.5 12C75.0147 12 73 14.0147 73 16.5C73 18.9853 75.0147 21 77.5 21C79.9853 21 82 18.9853 82 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M161 12H140C139.448 12 139 12.4477 139 13V15C139 15.5523 139.448 16 140 16H161C161.552 16 162 15.5523 162 15V13C162 12.4477 161.552 12 161 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M153 19H140C139.448 19 139 19.4477 139 20V22C139 22.5523 139.448 23 140 23H153C153.552 23 154 22.5523 154 22V20C154 19.4477 153.552 19 153 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M135 16.5C135 14.0147 132.985 12 130.5 12C128.015 12 126 14.0147 126 16.5C126 18.9853 128.015 21 130.5 21C132.985 21 135 18.9853 135 16.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M214 12H193C192.448 12 192 12.4477 192 13V15C192 15.5523 192.448 16 193 16H214C214.552 16 215 15.5523 215 15V13C215 12.4477 214.552 12 214 12Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M206 19H193C192.448 19 192 19.4477 192 20V22C192 22.5523 192.448 23 193 23H206C206.552 23 207 22.5523 207 22V20C207 19.4477 206.552 19 206 19Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M188 16.5C188 14.0147 185.985 12 183.5 12C181.015 12 179 14.0147 179 16.5C179 18.9853 181.015 21 183.5 21C185.985 21 188 18.9853 188 16.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1,26 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M42 17H21C20.4477 17 20 17.4477 20 18V20C20 20.5523 20.4477 21 21 21H42C42.5523 21 43 20.5523 43 20V18C43 17.4477 42.5523 17 42 17Z" fill="white"/>
|
||||
<path d="M42 25H21C20.4477 25 20 25.4477 20 26V28C20 28.5523 20.4477 29 21 29H42C42.5523 29 43 28.5523 43 28V26C43 25.4477 42.5523 25 42 25Z" fill="white"/>
|
||||
<path d="M42 33H21C20.4477 33 20 33.4477 20 34V36C20 36.5523 20.4477 37 21 37H42C42.5523 37 43 36.5523 43 36V34C43 33.4477 42.5523 33 42 33Z" fill="white"/>
|
||||
<path d="M42 41H21C20.4477 41 20 41.4477 20 42V44C20 44.5523 20.4477 45 21 45H42C42.5523 45 43 44.5523 43 44V42C43 41.4477 42.5523 41 42 41Z" fill="white"/>
|
||||
<path d="M95 17H74C73.4477 17 73 17.4477 73 18V20C73 20.5523 73.4477 21 74 21H95C95.5523 21 96 20.5523 96 20V18C96 17.4477 95.5523 17 95 17Z" fill="white"/>
|
||||
<path d="M95 25H74C73.4477 25 73 25.4477 73 26V28C73 28.5523 73.4477 29 74 29H95C95.5523 29 96 28.5523 96 28V26C96 25.4477 95.5523 25 95 25Z" fill="white"/>
|
||||
<path d="M95 33H74C73.4477 33 73 33.4477 73 34V36C73 36.5523 73.4477 37 74 37H95C95.5523 37 96 36.5523 96 36V34C96 33.4477 95.5523 33 95 33Z" fill="white"/>
|
||||
<path d="M95 41H74C73.4477 41 73 41.4477 73 42V44C73 44.5523 73.4477 45 74 45H95C95.5523 45 96 44.5523 96 44V42C96 41.4477 95.5523 41 95 41Z" fill="white"/>
|
||||
<path d="M148 17H127C126.448 17 126 17.4477 126 18V20C126 20.5523 126.448 21 127 21H148C148.552 21 149 20.5523 149 20V18C149 17.4477 148.552 17 148 17Z" fill="white"/>
|
||||
<path d="M148 25H127C126.448 25 126 25.4477 126 26V28C126 28.5523 126.448 29 127 29H148C148.552 29 149 28.5523 149 28V26C149 25.4477 148.552 25 148 25Z" fill="white"/>
|
||||
<path d="M148 33H127C126.448 33 126 33.4477 126 34V36C126 36.5523 126.448 37 127 37H148C148.552 37 149 36.5523 149 36V34C149 33.4477 148.552 33 148 33Z" fill="white"/>
|
||||
<path d="M148 41H127C126.448 41 126 41.4477 126 42V44C126 44.5523 126.448 45 127 45H148C148.552 45 149 44.5523 149 44V42C149 41.4477 148.552 41 148 41Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M201 17H180C179.448 17 179 17.4477 179 18V20C179 20.5523 179.448 21 180 21H201C201.552 21 202 20.5523 202 20V18C202 17.4477 201.552 17 201 17Z" fill="white"/>
|
||||
<path d="M190.478 41H179.522C179.234 41 179 41.4477 179 42V44C179 44.5523 179.234 45 179.522 45H190.478C190.766 45 191 44.5523 191 44V42C191 41.4477 190.766 41 190.478 41Z" fill="white"/>
|
||||
<path d="M190.478 35H179.522C179.234 35 179 35.4477 179 36V38C179 38.5523 179.234 39 179.522 39H190.478C190.766 39 191 38.5523 191 38V36C191 35.4477 190.766 35 190.478 35Z" fill="white"/>
|
||||
<path d="M205.478 41H194.522C194.234 41 194 41.4477 194 42V44C194 44.5523 194.234 45 194.522 45H205.478C205.766 45 206 44.5523 206 44V42C206 41.4477 205.766 41 205.478 41Z" fill="white"/>
|
||||
<path d="M205.478 35H194.522C194.234 35 194 35.4477 194 36V38C194 38.5523 194.234 39 194.522 39H205.478C205.766 39 206 38.5523 206 38V36C206 35.4477 205.766 35 205.478 35Z" fill="white"/>
|
||||
<path d="M185 28C185 26.3431 183.657 25 182 25C180.343 25 179 26.3431 179 28C179 29.6569 180.343 31 182 31C183.657 31 185 29.6569 185 28Z" fill="white"/>
|
||||
<path d="M195 28C195 26.3431 193.657 25 192 25C190.343 25 189 26.3431 189 28C189 29.6569 190.343 31 192 31C193.657 31 195 29.6569 195 28Z" fill="white"/>
|
||||
<path d="M205 28C205 26.3431 203.657 25 202 25C200.343 25 199 26.3431 199 28C199 29.6569 200.343 31 202 31C203.657 31 205 29.6569 205 28Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,37 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M102 17H81C80.4477 17 80 17.4477 80 18V20C80 20.5523 80.4477 21 81 21H102C102.552 21 103 20.5523 103 20V18C103 17.4477 102.552 17 102 17Z" fill="white"/>
|
||||
<path d="M102 25H81C80.4477 25 80 25.4477 80 26V28C80 28.5523 80.4477 29 81 29H102C102.552 29 103 28.5523 103 28V26C103 25.4477 102.552 25 102 25Z" fill="white"/>
|
||||
<path d="M102 33H81C80.4477 33 80 33.4477 80 34V36C80 36.5523 80.4477 37 81 37H102C102.552 37 103 36.5523 103 36V34C103 33.4477 102.552 33 102 33Z" fill="white"/>
|
||||
<path d="M102 41H81C80.4477 41 80 41.4477 80 42V44C80 44.5523 80.4477 45 81 45H102C102.552 45 103 44.5523 103 44V42C103 41.4477 102.552 41 102 41Z" fill="white"/>
|
||||
<path d="M139 17H118C117.448 17 117 17.4477 117 18V20C117 20.5523 117.448 21 118 21H139C139.552 21 140 20.5523 140 20V18C140 17.4477 139.552 17 139 17Z" fill="white"/>
|
||||
<path d="M139 25H118C117.448 25 117 25.4477 117 26V28C117 28.5523 117.448 29 118 29H139C139.552 29 140 28.5523 140 28V26C140 25.4477 139.552 25 139 25Z" fill="white"/>
|
||||
<path d="M139 33H118C117.448 33 117 33.4477 117 34V36C117 36.5523 117.448 37 118 37H139C139.552 37 140 36.5523 140 36V34C140 33.4477 139.552 33 139 33Z" fill="white"/>
|
||||
<path d="M139 41H118C117.448 41 117 41.4477 117 42V44C117 44.5523 117.448 45 118 45H139C139.552 45 140 44.5523 140 44V42C140 41.4477 139.552 41 139 41Z" fill="white"/>
|
||||
<path d="M176 17H155C154.448 17 154 17.4477 154 18V20C154 20.5523 154.448 21 155 21H176C176.552 21 177 20.5523 177 20V18C177 17.4477 176.552 17 176 17Z" fill="white"/>
|
||||
<path d="M176 25H155C154.448 25 154 25.4477 154 26V28C154 28.5523 154.448 29 155 29H176C176.552 29 177 28.5523 177 28V26C177 25.4477 176.552 25 176 25Z" fill="white"/>
|
||||
<path d="M176 33H155C154.448 33 154 33.4477 154 34V36C154 36.5523 154.448 37 155 37H176C176.552 37 177 36.5523 177 36V34C177 33.4477 176.552 33 176 33Z" fill="white"/>
|
||||
<path d="M176 41H155C154.448 41 154 41.4477 154 42V44C154 44.5523 154.448 45 155 45H176C176.552 45 177 44.5523 177 44V42C177 41.4477 176.552 41 176 41Z" fill="white"/>
|
||||
<path d="M213 17H192C191.448 17 191 17.4477 191 18V20C191 20.5523 191.448 21 192 21H213C213.552 21 214 20.5523 214 20V18C214 17.4477 213.552 17 213 17Z" fill="white"/>
|
||||
<path d="M213 25H192C191.448 25 191 25.4477 191 26V28C191 28.5523 191.448 29 192 29H213C213.552 29 214 28.5523 214 28V26C214 25.4477 213.552 25 213 25Z" fill="white"/>
|
||||
<path d="M213 33H192C191.448 33 191 33.4477 191 34V36C191 36.5523 191.448 37 192 37H213C213.552 37 214 36.5523 214 36V34C214 33.4477 213.552 33 213 33Z" fill="white"/>
|
||||
<path d="M213 41H192C191.448 41 191 41.4477 191 42V44C191 44.5523 191.448 45 192 45H213C213.552 45 214 44.5523 214 44V42C214 41.4477 213.552 41 213 41Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M69 5H20V55H69V5Z" fill="#E5E2FA" fill-opacity="0.25"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M60 17H39C38.4477 17 38 17.4477 38 18V20C38 20.5523 38.4477 21 39 21H60C60.5523 21 61 20.5523 61 20V18C61 17.4477 60.5523 17 60 17Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M52 24H39C38.4477 24 38 24.4477 38 25V27C38 27.5523 38.4477 28 39 28H52C52.5523 28 53 27.5523 53 27V25C53 24.4477 52.5523 24 52 24Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M34 21.5C34 19.0147 31.9853 17 29.5 17C27.0147 17 25 19.0147 25 21.5C25 23.9853 27.0147 26 29.5 26C31.9853 26 34 23.9853 34 21.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M60 33H39C38.4477 33 38 33.4477 38 34V36C38 36.5523 38.4477 37 39 37H60C60.5523 37 61 36.5523 61 36V34C61 33.4477 60.5523 33 60 33Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M52 40H39C38.4477 40 38 40.4477 38 41V43C38 43.5523 38.4477 44 39 44H52C52.5523 44 53 43.5523 53 43V41C53 40.4477 52.5523 40 52 40Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M34 37.5C34 35.0147 31.9853 33 29.5 33C27.0147 33 25 35.0147 25 37.5C25 39.9853 27.0147 42 29.5 42C31.9853 42 34 39.9853 34 37.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,26 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M42 16H21C20.4477 16 20 16.4477 20 17V19C20 19.5523 20.4477 20 21 20H42C42.5523 20 43 19.5523 43 19V17C43 16.4477 42.5523 16 42 16Z" fill="white"/>
|
||||
<path d="M42 24H21C20.4477 24 20 24.4477 20 25V27C20 27.5523 20.4477 28 21 28H42C42.5523 28 43 27.5523 43 27V25C43 24.4477 42.5523 24 42 24Z" fill="white"/>
|
||||
<path d="M42 32H21C20.4477 32 20 32.4477 20 33V35C20 35.5523 20.4477 36 21 36H42C42.5523 36 43 35.5523 43 35V33C43 32.4477 42.5523 32 42 32Z" fill="white"/>
|
||||
<path d="M42 40H21C20.4477 40 20 40.4477 20 41V43C20 43.5523 20.4477 44 21 44H42C42.5523 44 43 43.5523 43 43V41C43 40.4477 42.5523 40 42 40Z" fill="white"/>
|
||||
<path d="M78 16H57C56.4477 16 56 16.4477 56 17V19C56 19.5523 56.4477 20 57 20H78C78.5523 20 79 19.5523 79 19V17C79 16.4477 78.5523 16 78 16Z" fill="white"/>
|
||||
<path d="M78 24H57C56.4477 24 56 24.4477 56 25V27C56 27.5523 56.4477 28 57 28H78C78.5523 28 79 27.5523 79 27V25C79 24.4477 78.5523 24 78 24Z" fill="white"/>
|
||||
<path d="M78 32H57C56.4477 32 56 32.4477 56 33V35C56 35.5523 56.4477 36 57 36H78C78.5523 36 79 35.5523 79 35V33C79 32.4477 78.5523 32 78 32Z" fill="white"/>
|
||||
<path d="M78 40H57C56.4477 40 56 40.4477 56 41V43C56 43.5523 56.4477 44 57 44H78C78.5523 44 79 43.5523 79 43V41C79 40.4477 78.5523 40 78 40Z" fill="white"/>
|
||||
<path d="M114 16H93C92.4477 16 92 16.4477 92 17V19C92 19.5523 92.4477 20 93 20H114C114.552 20 115 19.5523 115 19V17C115 16.4477 114.552 16 114 16Z" fill="white"/>
|
||||
<path d="M114 24H93C92.4477 24 92 24.4477 92 25V27C92 27.5523 92.4477 28 93 28H114C114.552 28 115 27.5523 115 27V25C115 24.4477 114.552 24 114 24Z" fill="white"/>
|
||||
<path d="M114 32H93C92.4477 32 92 32.4477 92 33V35C92 35.5523 92.4477 36 93 36H114C114.552 36 115 35.5523 115 35V33C115 32.4477 114.552 32 114 32Z" fill="white"/>
|
||||
<path d="M114 40H93C92.4477 40 92 40.4477 92 41V43C92 43.5523 92.4477 44 93 44H114C114.552 44 115 43.5523 115 43V41C115 40.4477 114.552 40 114 40Z" fill="white"/>
|
||||
<path d="M150 16H129C128.448 16 128 16.4477 128 17V19C128 19.5523 128.448 20 129 20H150C150.552 20 151 19.5523 151 19V17C151 16.4477 150.552 16 150 16Z" fill="white"/>
|
||||
<path d="M150 24H129C128.448 24 128 24.4477 128 25V27C128 27.5523 128.448 28 129 28H150C150.552 28 151 27.5523 151 27V25C151 24.4477 150.552 24 150 24Z" fill="white"/>
|
||||
<path d="M150 32H129C128.448 32 128 32.4477 128 33V35C128 35.5523 128.448 36 129 36H150C150.552 36 151 35.5523 151 35V33C151 32.4477 150.552 32 150 32Z" fill="white"/>
|
||||
<path d="M150 40H129C128.448 40 128 40.4477 128 41V43C128 43.5523 128.448 44 129 44H150C150.552 44 151 43.5523 151 43V41C151 40.4477 150.552 40 150 40Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M190.826 29H166.174C165.526 29 165 29.4477 165 30V32C165 32.5523 165.526 33 166.174 33H190.826C191.474 33 192 32.5523 192 32V30C192 29.4477 191.474 29 190.826 29Z" fill="white"/>
|
||||
<path d="M183.174 40H165.826C165.37 40 165 40.4477 165 41V43C165 43.5523 165.37 44 165.826 44H183.174C183.63 44 184 43.5523 184 43V41C184 40.4477 183.63 40 183.174 40Z" fill="white"/>
|
||||
<path d="M204.174 40H186.826C186.37 40 186 40.4477 186 41V43C186 43.5523 186.37 44 186.826 44H204.174C204.63 44 205 43.5523 205 43V41C205 40.4477 204.63 40 204.174 40Z" fill="white"/>
|
||||
<path d="M171.082 23.708V21.843H167.374V16.129H165V23.709L171.082 23.708ZM175.027 23.838C175.879 23.838 176.592 23.68 177.163 23.365C177.721 23.0628 178.177 22.6021 178.473 22.041C178.776 21.474 178.927 20.748 178.927 19.862C178.927 18.642 178.581 17.693 177.889 17.016C177.197 16.339 176.212 16 174.932 16C173.685 16 172.712 16.345 172.012 17.034C171.313 17.724 170.964 18.687 170.964 19.924C170.964 20.81 171.14 21.548 171.494 22.137C171.846 22.727 172.307 23.157 172.874 23.429C173.443 23.702 174.16 23.838 175.027 23.838ZM174.948 22.085C174.452 22.085 174.059 21.918 173.771 21.584C173.483 21.249 173.339 20.7 173.339 19.934C173.339 19.162 173.484 18.609 173.774 18.274C174.064 17.941 174.448 17.774 174.927 17.774C175.427 17.774 175.823 17.938 176.115 18.267C176.406 18.597 176.552 19.117 176.552 19.831C176.552 20.679 176.412 21.267 176.132 21.594C175.853 21.921 175.458 22.085 174.948 22.085ZM183.239 23.838C183.98 23.838 184.62 23.753 185.16 23.582C185.7 23.412 186.322 23.09 187.024 22.618V19.386H183.354V20.963H184.943V21.677C184.682 21.8366 184.405 21.9667 184.115 22.065C183.869 22.1413 183.613 22.1794 183.355 22.178C182.795 22.178 182.359 22.002 182.046 21.651C181.734 21.299 181.577 20.713 181.577 19.893C181.577 19.121 181.732 18.557 182.041 18.2C182.351 17.843 182.765 17.665 183.286 17.665C183.636 17.665 183.923 17.741 184.149 17.892C184.374 18.044 184.534 18.262 184.629 18.549L186.919 18.146C186.779 17.656 186.571 17.252 186.293 16.933C186.01 16.6112 185.649 16.3683 185.244 16.228C184.824 16.076 184.188 16 183.339 16C182.458 16 181.757 16.122 181.236 16.367C180.595 16.6596 180.063 17.1471 179.716 17.76C179.37 18.372 179.197 19.092 179.197 19.919C179.197 20.705 179.355 21.401 179.671 22.008C179.965 22.5915 180.432 23.07 181.008 23.378C181.583 23.684 182.327 23.838 183.239 23.838ZM191.483 23.838C192.336 23.838 193.048 23.68 193.619 23.365C194.177 23.0628 194.633 22.6021 194.929 22.041C195.232 21.474 195.383 20.748 195.383 19.862C195.383 18.642 195.037 17.693 194.345 17.016C193.653 16.339 192.668 16 191.388 16C190.141 16 189.168 16.345 188.468 17.034C187.769 17.724 187.42 18.687 187.42 19.924C187.42 20.81 187.596 21.548 187.95 22.137C188.302 22.727 188.763 23.157 189.33 23.429C189.899 23.702 190.616 23.838 191.483 23.838ZM191.404 22.085C190.908 22.085 190.516 21.918 190.227 21.584C189.939 21.249 189.795 20.7 189.795 19.934C189.795 19.162 189.94 18.609 190.23 18.274C190.52 17.941 190.904 17.774 191.383 17.774C191.883 17.774 192.279 17.938 192.571 18.267C192.863 18.597 193.008 19.117 193.008 19.831C193.008 20.679 192.868 21.267 192.589 21.594C192.309 21.921 191.914 22.085 191.404 22.085Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,28 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M26 34C26 32.3431 24.6569 31 23 31C21.3431 31 20 32.3431 20 34C20 35.6569 21.3431 37 23 37C24.6569 37 26 35.6569 26 34Z" fill="white"/>
|
||||
<path d="M36 34C36 32.3431 34.6569 31 33 31C31.3431 31 30 32.3431 30 34C30 35.6569 31.3431 37 33 37C34.6569 37 36 35.6569 36 34Z" fill="white"/>
|
||||
<path d="M46 34C46 32.3431 44.6569 31 43 31C41.3431 31 40 32.3431 40 34C40 35.6569 41.3431 37 43 37C44.6569 37 46 35.6569 46 34Z" fill="white"/>
|
||||
<path d="M56 34C56 32.3431 54.6569 31 53 31C51.3431 31 50 32.3431 50 34C50 35.6569 51.3431 37 53 37C54.6569 37 56 35.6569 56 34Z" fill="white"/>
|
||||
<path d="M66 34C66 32.3431 64.6569 31 63 31C61.3431 31 60 32.3431 60 34C60 35.6569 61.3431 37 63 37C64.6569 37 66 35.6569 66 34Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M105 16H84C83.4477 16 83 16.4477 83 17V19C83 19.5523 83.4477 20 84 20H105C105.552 20 106 19.5523 106 19V17C106 16.4477 105.552 16 105 16Z" fill="white"/>
|
||||
<path d="M105 24H84C83.4477 24 83 24.4477 83 25V27C83 27.5523 83.4477 28 84 28H105C105.552 28 106 27.5523 106 27V25C106 24.4477 105.552 24 105 24Z" fill="white"/>
|
||||
<path d="M105 32H84C83.4477 32 83 32.4477 83 33V35C83 35.5523 83.4477 36 84 36H105C105.552 36 106 35.5523 106 35V33C106 32.4477 105.552 32 105 32Z" fill="white"/>
|
||||
<path d="M105 40H84C83.4477 40 83 40.4477 83 41V43C83 43.5523 83.4477 44 84 44H105C105.552 44 106 43.5523 106 43V41C106 40.4477 105.552 40 105 40Z" fill="white"/>
|
||||
<path d="M141 16H120C119.448 16 119 16.4477 119 17V19C119 19.5523 119.448 20 120 20H141C141.552 20 142 19.5523 142 19V17C142 16.4477 141.552 16 141 16Z" fill="white"/>
|
||||
<path d="M141 24H120C119.448 24 119 24.4477 119 25V27C119 27.5523 119.448 28 120 28H141C141.552 28 142 27.5523 142 27V25C142 24.4477 141.552 24 141 24Z" fill="white"/>
|
||||
<path d="M141 32H120C119.448 32 119 32.4477 119 33V35C119 35.5523 119.448 36 120 36H141C141.552 36 142 35.5523 142 35V33C142 32.4477 141.552 32 141 32Z" fill="white"/>
|
||||
<path d="M141 40H120C119.448 40 119 40.4477 119 41V43C119 43.5523 119.448 44 120 44H141C141.552 44 142 43.5523 142 43V41C142 40.4477 141.552 40 141 40Z" fill="white"/>
|
||||
<path d="M177 16H156C155.448 16 155 16.4477 155 17V19C155 19.5523 155.448 20 156 20H177C177.552 20 178 19.5523 178 19V17C178 16.4477 177.552 16 177 16Z" fill="white"/>
|
||||
<path d="M177 24H156C155.448 24 155 24.4477 155 25V27C155 27.5523 155.448 28 156 28H177C177.552 28 178 27.5523 178 27V25C178 24.4477 177.552 24 177 24Z" fill="white"/>
|
||||
<path d="M177 32H156C155.448 32 155 32.4477 155 33V35C155 35.5523 155.448 36 156 36H177C177.552 36 178 35.5523 178 35V33C178 32.4477 177.552 32 177 32Z" fill="white"/>
|
||||
<path d="M177 40H156C155.448 40 155 40.4477 155 41V43C155 43.5523 155.448 44 156 44H177C177.552 44 178 43.5523 178 43V41C178 40.4477 177.552 40 177 40Z" fill="white"/>
|
||||
<path d="M213 16H192C191.448 16 191 16.4477 191 17V19C191 19.5523 191.448 20 192 20H213C213.552 20 214 19.5523 214 19V17C214 16.4477 213.552 16 213 16Z" fill="white"/>
|
||||
<path d="M213 24H192C191.448 24 191 24.4477 191 25V27C191 27.5523 191.448 28 192 28H213C213.552 28 214 27.5523 214 27V25C214 24.4477 213.552 24 213 24Z" fill="white"/>
|
||||
<path d="M213 32H192C191.448 32 191 32.4477 191 33V35C191 35.5523 191.448 36 192 36H213C213.552 36 214 35.5523 214 35V33C214 32.4477 213.552 32 213 32Z" fill="white"/>
|
||||
<path d="M213 40H192C191.448 40 191 40.4477 191 41V43C191 43.5523 191.448 44 192 44H213C213.552 44 214 43.5523 214 43V41C214 40.4477 213.552 40 213 40Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M26.082 23.708V21.843H22.374V16.129H20V23.709L26.082 23.708ZM30.027 23.838C30.879 23.838 31.592 23.68 32.163 23.365C32.7209 23.0628 33.1768 22.6021 33.473 22.041C33.776 21.474 33.927 20.748 33.927 19.862C33.927 18.642 33.581 17.693 32.889 17.016C32.197 16.339 31.212 16 29.932 16C28.685 16 27.712 16.345 27.012 17.034C26.313 17.724 25.964 18.687 25.964 19.924C25.964 20.81 26.14 21.548 26.494 22.137C26.846 22.727 27.307 23.157 27.874 23.429C28.443 23.702 29.16 23.838 30.027 23.838ZM29.948 22.085C29.452 22.085 29.059 21.918 28.771 21.584C28.483 21.249 28.339 20.7 28.339 19.934C28.339 19.162 28.484 18.609 28.774 18.274C29.064 17.941 29.448 17.774 29.927 17.774C30.427 17.774 30.823 17.938 31.115 18.267C31.406 18.597 31.552 19.117 31.552 19.831C31.552 20.679 31.412 21.267 31.132 21.594C30.853 21.921 30.458 22.085 29.948 22.085ZM38.239 23.838C38.98 23.838 39.62 23.753 40.16 23.582C40.7 23.412 41.322 23.09 42.024 22.618V19.386H38.354V20.963H39.943V21.677C39.6822 21.8366 39.4045 21.9667 39.115 22.065C38.8689 22.1413 38.6126 22.1794 38.355 22.178C37.795 22.178 37.359 22.002 37.046 21.651C36.734 21.299 36.577 20.713 36.577 19.893C36.577 19.121 36.732 18.557 37.041 18.2C37.351 17.843 37.765 17.665 38.286 17.665C38.636 17.665 38.923 17.741 39.149 17.892C39.374 18.044 39.534 18.262 39.629 18.549L41.919 18.146C41.779 17.656 41.571 17.252 41.293 16.933C41.0102 16.6112 40.6488 16.3683 40.244 16.228C39.824 16.076 39.188 16 38.339 16C37.458 16 36.757 16.122 36.236 16.367C35.5952 16.6596 35.0632 17.1471 34.716 17.76C34.37 18.372 34.197 19.092 34.197 19.919C34.197 20.705 34.355 21.401 34.671 22.008C34.9648 22.5915 35.4318 23.07 36.008 23.378C36.583 23.684 37.327 23.838 38.239 23.838ZM46.483 23.838C47.336 23.838 48.048 23.68 48.619 23.365C49.1769 23.0628 49.6328 22.6021 49.929 22.041C50.232 21.474 50.383 20.748 50.383 19.862C50.383 18.642 50.037 17.693 49.345 17.016C48.653 16.339 47.668 16 46.388 16C45.141 16 44.168 16.345 43.468 17.034C42.769 17.724 42.42 18.687 42.42 19.924C42.42 20.81 42.596 21.548 42.95 22.137C43.302 22.727 43.763 23.157 44.33 23.429C44.899 23.702 45.616 23.838 46.483 23.838ZM46.404 22.085C45.908 22.085 45.516 21.918 45.227 21.584C44.939 21.249 44.795 20.7 44.795 19.934C44.795 19.162 44.94 18.609 45.23 18.274C45.52 17.941 45.904 17.774 46.383 17.774C46.883 17.774 47.279 17.938 47.571 18.267C47.863 18.597 48.008 19.117 48.008 19.831C48.008 20.679 47.868 21.267 47.589 21.594C47.309 21.921 46.914 22.085 46.404 22.085Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.0 KiB |
@@ -0,0 +1,27 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M170 17H149C148.448 17 148 17.4477 148 18V20C148 20.5523 148.448 21 149 21H170C170.552 21 171 20.5523 171 20V18C171 17.4477 170.552 17 170 17Z" fill="white"/>
|
||||
<path d="M170 25H149C148.448 25 148 25.4477 148 26V28C148 28.5523 148.448 29 149 29H170C170.552 29 171 28.5523 171 28V26C171 25.4477 170.552 25 170 25Z" fill="white"/>
|
||||
<path d="M170 33H149C148.448 33 148 33.4477 148 34V36C148 36.5523 148.448 37 149 37H170C170.552 37 171 36.5523 171 36V34C171 33.4477 170.552 33 170 33Z" fill="white"/>
|
||||
<path d="M170 41H149C148.448 41 148 41.4477 148 42V44C148 44.5523 148.448 45 149 45H170C170.552 45 171 44.5523 171 44V42C171 41.4477 170.552 41 170 41Z" fill="white"/>
|
||||
<path d="M213 17H192C191.448 17 191 17.4477 191 18V20C191 20.5523 191.448 21 192 21H213C213.552 21 214 20.5523 214 20V18C214 17.4477 213.552 17 213 17Z" fill="white"/>
|
||||
<path d="M213.261 25H197.739C197.331 25 197 25.4477 197 26V28C197 28.5523 197.331 29 197.739 29H213.261C213.669 29 214 28.5523 214 28V26C214 25.4477 213.669 25 213.261 25Z" fill="white"/>
|
||||
<path d="M213.261 33H197.739C197.331 33 197 33.4477 197 34V36C197 36.5523 197.331 37 197.739 37H213.261C213.669 37 214 36.5523 214 36V34C214 33.4477 213.669 33 213.261 33Z" fill="white"/>
|
||||
<path d="M213.261 41H197.739C197.331 41 197 41.4477 197 42V44C197 44.5523 197.331 45 197.739 45H213.261C213.669 45 214 44.5523 214 44V42C214 41.4477 213.669 41 213.261 41Z" fill="white"/>
|
||||
<path d="M127 17H106C105.448 17 105 17.4477 105 18V20C105 20.5523 105.448 21 106 21H127C127.552 21 128 20.5523 128 20V18C128 17.4477 127.552 17 127 17Z" fill="white"/>
|
||||
<path d="M127 25H106C105.448 25 105 25.4477 105 26V28C105 28.5523 105.448 29 106 29H127C127.552 29 128 28.5523 128 28V26C128 25.4477 127.552 25 127 25Z" fill="white"/>
|
||||
<path d="M127 33H106C105.448 33 105 33.4477 105 34V36C105 36.5523 105.448 37 106 37H127C127.552 37 128 36.5523 128 36V34C128 33.4477 127.552 33 127 33Z" fill="white"/>
|
||||
<path d="M127 41H106C105.448 41 105 41.4477 105 42V44C105 44.5523 105.448 45 106 45H127C127.552 45 128 44.5523 128 44V42C128 41.4477 127.552 41 127 41Z" fill="white"/>
|
||||
<path d="M85 17H64C63.4477 17 63 17.4477 63 18V20C63 20.5523 63.4477 21 64 21H85C85.5523 21 86 20.5523 86 20V18C86 17.4477 85.5523 17 85 17Z" fill="white"/>
|
||||
<path d="M85 25H64C63.4477 25 63 25.4477 63 26V28C63 28.5523 63.4477 29 64 29H85C85.5523 29 86 28.5523 86 28V26C86 25.4477 85.5523 25 85 25Z" fill="white"/>
|
||||
<path d="M85 33H64C63.4477 33 63 33.4477 63 34V36C63 36.5523 63.4477 37 64 37H85C85.5523 37 86 36.5523 86 36V34C86 33.4477 85.5523 33 85 33Z" fill="white"/>
|
||||
<path d="M85 41H64C63.4477 41 63 41.4477 63 42V44C63 44.5523 63.4477 45 64 45H85C85.5523 45 86 44.5523 86 44V42C86 41.4477 85.5523 41 85 41Z" fill="white"/>
|
||||
<path d="M42 29H21C20.4477 29 20 29.4477 20 30V32C20 32.5523 20.4477 33 21 33H42C42.5523 33 43 32.5523 43 32V30C43 29.4477 42.5523 29 42 29Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M26.082 24.708V22.843H22.374V17.129H20V24.709L26.082 24.708ZM30.027 24.838C30.879 24.838 31.592 24.68 32.163 24.365C32.7209 24.0628 33.1768 23.6021 33.473 23.041C33.776 22.474 33.927 21.748 33.927 20.862C33.927 19.642 33.581 18.693 32.889 18.016C32.197 17.339 31.212 17 29.932 17C28.685 17 27.712 17.345 27.012 18.034C26.313 18.724 25.964 19.687 25.964 20.924C25.964 21.81 26.14 22.548 26.494 23.137C26.846 23.727 27.307 24.157 27.874 24.429C28.443 24.702 29.16 24.838 30.027 24.838ZM29.948 23.085C29.452 23.085 29.059 22.918 28.771 22.584C28.483 22.249 28.339 21.7 28.339 20.934C28.339 20.162 28.484 19.609 28.774 19.274C29.064 18.941 29.448 18.774 29.927 18.774C30.427 18.774 30.823 18.938 31.115 19.267C31.406 19.597 31.552 20.117 31.552 20.831C31.552 21.679 31.412 22.267 31.132 22.594C30.853 22.921 30.458 23.085 29.948 23.085ZM38.239 24.838C38.98 24.838 39.62 24.753 40.16 24.582C40.7 24.412 41.322 24.09 42.024 23.618V20.386H38.354V21.963H39.943V22.677C39.6822 22.8366 39.4045 22.9667 39.115 23.065C38.8689 23.1413 38.6126 23.1794 38.355 23.178C37.795 23.178 37.359 23.002 37.046 22.651C36.734 22.299 36.577 21.713 36.577 20.893C36.577 20.121 36.732 19.557 37.041 19.2C37.351 18.843 37.765 18.665 38.286 18.665C38.636 18.665 38.923 18.741 39.149 18.892C39.374 19.044 39.534 19.262 39.629 19.549L41.919 19.146C41.779 18.656 41.571 18.252 41.293 17.933C41.0102 17.6112 40.6488 17.3683 40.244 17.228C39.824 17.076 39.188 17 38.339 17C37.458 17 36.757 17.122 36.236 17.367C35.5952 17.6596 35.0632 18.1471 34.716 18.76C34.37 19.372 34.197 20.092 34.197 20.919C34.197 21.705 34.355 22.401 34.671 23.008C34.9648 23.5915 35.4318 24.07 36.008 24.378C36.583 24.684 37.327 24.838 38.239 24.838ZM46.483 24.838C47.336 24.838 48.048 24.68 48.619 24.365C49.1769 24.0628 49.6328 23.6021 49.929 23.041C50.232 22.474 50.383 21.748 50.383 20.862C50.383 19.642 50.037 18.693 49.345 18.016C48.653 17.339 47.668 17 46.388 17C45.141 17 44.168 17.345 43.468 18.034C42.769 18.724 42.42 19.687 42.42 20.924C42.42 21.81 42.596 22.548 42.95 23.137C43.302 23.727 43.763 24.157 44.33 24.429C44.899 24.702 45.616 24.838 46.483 24.838ZM46.404 23.085C45.908 23.085 45.516 22.918 45.227 22.584C44.939 22.249 44.795 21.7 44.795 20.934C44.795 20.162 44.94 19.609 45.23 19.274C45.52 18.941 45.904 18.774 46.383 18.774C46.883 18.774 47.279 18.938 47.571 19.267C47.863 19.597 48.008 20.117 48.008 20.831C48.008 21.679 47.868 22.267 47.589 22.594C47.309 22.921 46.914 23.085 46.404 23.085Z" fill="white"/>
|
||||
<path d="M193 29C194.105 29 195 28.1046 195 27C195 25.8954 194.105 25 193 25C191.895 25 191 25.8954 191 27C191 28.1046 191.895 29 193 29Z" fill="#E9E6FF"/>
|
||||
<path d="M193 37C194.105 37 195 36.1046 195 35C195 33.8954 194.105 33 193 33C191.895 33 191 33.8954 191 35C191 36.1046 191.895 37 193 37Z" fill="#E9E6FF"/>
|
||||
<path d="M193 45C194.105 45 195 44.1046 195 43C195 41.8954 194.105 41 193 41C191.895 41 191 41.8954 191 43C191 44.1046 191.895 45 193 45Z" fill="#E9E6FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="234" height="60" viewBox="0 0 234 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M234 5H0V55H234V5Z" fill="black" fill-opacity="0.14"/>
|
||||
<path d="M234 5H0V55H234V5Z" fill="#3A86FF"/>
|
||||
<path d="M91 12H70C69.4477 12 69 12.4477 69 13V15C69 15.5523 69.4477 16 70 16H91C91.5523 16 92 15.5523 92 15V13C92 12.4477 91.5523 12 91 12Z" fill="white"/>
|
||||
<path d="M91 20H70C69.4477 20 69 20.4477 69 21V23C69 23.5523 69.4477 24 70 24H91C91.5523 24 92 23.5523 92 23V21C92 20.4477 91.5523 20 91 20Z" fill="white"/>
|
||||
<path d="M131 12H110C109.448 12 109 12.4477 109 13V15C109 15.5523 109.448 16 110 16H131C131.552 16 132 15.5523 132 15V13C132 12.4477 131.552 12 131 12Z" fill="white"/>
|
||||
<path d="M131 20H110C109.448 20 109 20.4477 109 21V23C109 23.5523 109.448 24 110 24H131C131.552 24 132 23.5523 132 23V21C132 20.4477 131.552 20 131 20Z" fill="white"/>
|
||||
<path d="M171 12H150C149.448 12 149 12.4477 149 13V15C149 15.5523 149.448 16 150 16H171C171.552 16 172 15.5523 172 15V13C172 12.4477 171.552 12 171 12Z" fill="white"/>
|
||||
<path d="M171 20H150C149.448 20 149 20.4477 149 21V23C149 23.5523 149.448 24 150 24H171C171.552 24 172 23.5523 172 23V21C172 20.4477 171.552 20 171 20Z" fill="white"/>
|
||||
<path d="M211 12H190C189.448 12 189 12.4477 189 13V15C189 15.5523 189.448 16 190 16H211C211.552 16 212 15.5523 212 15V13C212 12.4477 211.552 12 211 12Z" fill="white"/>
|
||||
<path d="M211 20H190C189.448 20 189 20.4477 189 21V23C189 23.5523 189.448 24 190 24H211C211.552 24 212 23.5523 212 23V21C212 20.4477 211.552 20 211 20Z" fill="white"/>
|
||||
<path d="M26.082 19.708V17.843H22.374V12.129H20V19.709L26.082 19.708ZM30.027 19.838C30.879 19.838 31.592 19.68 32.163 19.365C32.7209 19.0628 33.1768 18.6021 33.473 18.041C33.776 17.474 33.927 16.748 33.927 15.862C33.927 14.642 33.581 13.693 32.889 13.016C32.197 12.339 31.212 12 29.932 12C28.685 12 27.712 12.345 27.012 13.034C26.313 13.724 25.964 14.687 25.964 15.924C25.964 16.81 26.14 17.548 26.494 18.137C26.846 18.727 27.307 19.157 27.874 19.429C28.443 19.702 29.16 19.838 30.027 19.838ZM29.948 18.085C29.452 18.085 29.059 17.918 28.771 17.584C28.483 17.249 28.339 16.7 28.339 15.934C28.339 15.162 28.484 14.609 28.774 14.274C29.064 13.941 29.448 13.774 29.927 13.774C30.427 13.774 30.823 13.938 31.115 14.267C31.406 14.597 31.552 15.117 31.552 15.831C31.552 16.679 31.412 17.267 31.132 17.594C30.853 17.921 30.458 18.085 29.948 18.085ZM38.239 19.838C38.98 19.838 39.62 19.753 40.16 19.582C40.7 19.412 41.322 19.09 42.024 18.618V15.386H38.354V16.963H39.943V17.677C39.6822 17.8366 39.4045 17.9667 39.115 18.065C38.8689 18.1413 38.6126 18.1794 38.355 18.178C37.795 18.178 37.359 18.002 37.046 17.651C36.734 17.299 36.577 16.713 36.577 15.893C36.577 15.121 36.732 14.557 37.041 14.2C37.351 13.843 37.765 13.665 38.286 13.665C38.636 13.665 38.923 13.741 39.149 13.892C39.374 14.044 39.534 14.262 39.629 14.549L41.919 14.146C41.779 13.656 41.571 13.252 41.293 12.933C41.0102 12.6112 40.6488 12.3683 40.244 12.228C39.824 12.076 39.188 12 38.339 12C37.458 12 36.757 12.122 36.236 12.367C35.5952 12.6596 35.0632 13.1471 34.716 13.76C34.37 14.372 34.197 15.092 34.197 15.919C34.197 16.705 34.355 17.401 34.671 18.008C34.9648 18.5915 35.4318 19.07 36.008 19.378C36.583 19.684 37.327 19.838 38.239 19.838ZM46.483 19.838C47.336 19.838 48.048 19.68 48.619 19.365C49.1769 19.0628 49.6328 18.6021 49.929 18.041C50.232 17.474 50.383 16.748 50.383 15.862C50.383 14.642 50.037 13.693 49.345 13.016C48.653 12.339 47.668 12 46.388 12C45.141 12 44.168 12.345 43.468 13.034C42.769 13.724 42.42 14.687 42.42 15.924C42.42 16.81 42.596 17.548 42.95 18.137C43.302 18.727 43.763 19.157 44.33 19.429C44.899 19.702 45.616 19.838 46.483 19.838ZM46.404 18.085C45.908 18.085 45.516 17.918 45.227 17.584C44.939 17.249 44.795 16.7 44.795 15.934C44.795 15.162 44.94 14.609 45.23 14.274C45.52 13.941 45.904 13.774 46.383 13.774C46.883 13.774 47.279 13.938 47.571 14.267C47.863 14.597 48.008 15.117 48.008 15.831C48.008 16.679 47.868 17.267 47.589 17.594C47.309 17.921 46.914 18.085 46.404 18.085Z" fill="white"/>
|
||||
<path d="M42 22.8379H21C20.4477 22.8379 20 23.2856 20 23.8379V25.8379C20 26.3902 20.4477 26.8379 21 26.8379H42C42.5523 26.8379 43 26.3902 43 25.8379V23.8379C43 23.2856 42.5523 22.8379 42 22.8379Z" fill="white"/>
|
||||
<path opacity="0.324" d="M214 31H20V32H214V31Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M55 36H34C33.4477 36 33 36.4477 33 37V39C33 39.5523 33.4477 40 34 40H55C55.5523 40 56 39.5523 56 39V37C56 36.4477 55.5523 36 55 36Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M47 43H34C33.4477 43 33 43.4477 33 44V46C33 46.5523 33.4477 47 34 47H47C47.5523 47 48 46.5523 48 46V44C48 43.4477 47.5523 43 47 43Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M29 40.5C29 38.0147 26.9853 36 24.5 36C22.0147 36 20 38.0147 20 40.5C20 42.9853 22.0147 45 24.5 45C26.9853 45 29 42.9853 29 40.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M108 36H87C86.4477 36 86 36.4477 86 37V39C86 39.5523 86.4477 40 87 40H108C108.552 40 109 39.5523 109 39V37C109 36.4477 108.552 36 108 36Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M100 43H87C86.4477 43 86 43.4477 86 44V46C86 46.5523 86.4477 47 87 47H100C100.552 47 101 46.5523 101 46V44C101 43.4477 100.552 43 100 43Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M82 40.5C82 38.0147 79.9853 36 77.5 36C75.0147 36 73 38.0147 73 40.5C73 42.9853 75.0147 45 77.5 45C79.9853 45 82 42.9853 82 40.5Z" fill="white"/>
|
||||
<g opacity="0.804">
|
||||
<path d="M161 36H140C139.448 36 139 36.4477 139 37V39C139 39.5523 139.448 40 140 40H161C161.552 40 162 39.5523 162 39V37C162 36.4477 161.552 36 161 36Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.804">
|
||||
<path d="M153 43H140C139.448 43 139 43.4477 139 44V46C139 46.5523 139.448 47 140 47H153C153.552 47 154 46.5523 154 46V44C154 43.4477 153.552 43 153 43Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M135 40.5C135 38.0147 132.985 36 130.5 36C128.015 36 126 38.0147 126 40.5C126 42.9853 128.015 45 130.5 45C132.985 45 135 42.9853 135 40.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,47 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1389)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2842V17.0056H8.96936V14.9966H6.94697V17.0056H6V12.2842H6.94697V14.2254H8.96936V12.2842H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.416H11.568C11.5905 15.6865 11.6853 15.8986 11.8522 16.0517C12.019 16.205 12.2242 16.2818 12.4677 16.2818C12.8194 16.2818 13.0698 16.1306 13.2185 15.8286H14.2398C14.1316 16.1894 13.9241 16.486 13.6175 16.7181C13.3108 16.9504 12.9343 17.0664 12.4879 17.0664C12.1272 17.0664 11.8035 16.9862 11.5173 16.8263C11.2309 16.6661 11.0077 16.4397 10.8475 16.1465C10.6874 15.8535 10.6074 15.5152 10.6074 15.1317C10.6074 14.7439 10.6861 14.4037 10.8441 14.1104C11.0018 13.8174 11.2229 13.592 11.5069 13.434C11.7911 13.2763 12.1179 13.1973 12.4877 13.1973C12.8438 13.1973 13.1631 13.2741 13.4449 13.4272C13.7267 13.5805 13.9456 13.7982 14.1011 14.08C14.2566 14.3617 14.3346 14.6852 14.3346 15.0506C14.3346 15.1861 14.3256 15.3077 14.3075 15.416ZM13.354 14.7803C13.3494 14.5367 13.2616 14.3417 13.09 14.1953C12.9184 14.0488 12.709 13.9754 12.4609 13.9754C12.2264 13.9754 12.029 14.0463 11.8691 14.1884C11.7089 14.3305 11.6107 14.5277 11.5749 14.7803H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1104C15.1591 13.8174 15.3641 13.592 15.6234 13.434C15.8828 13.2763 16.1722 13.1973 16.4925 13.1973C16.7721 13.1973 17.0169 13.2536 17.2266 13.3665C17.4362 13.4794 17.6041 13.6212 17.7304 13.7926V13.2583H18.6842V17.0057H17.7304V16.4577C17.6085 16.6337 17.4406 16.779 17.2266 16.8941C17.0123 17.0091 16.7654 17.0666 16.4858 17.0666C16.1701 17.0666 15.8824 16.9855 15.6231 16.8229C15.3637 16.6603 15.1586 16.4319 15.0077 16.1365C14.8566 15.8413 14.7812 15.5018 14.7812 15.1183C14.7814 14.7395 14.8571 14.4037 15.0079 14.1104ZM17.5954 14.5399C17.5052 14.3754 17.3832 14.2491 17.2299 14.1611C17.0766 14.0731 16.912 14.029 16.736 14.029C16.5603 14.029 16.3981 14.0719 16.2491 14.1575C16.1004 14.2433 15.9798 14.3683 15.8874 14.5328C15.795 14.6976 15.7486 14.8926 15.7486 15.1178C15.7486 15.3436 15.7948 15.5408 15.8874 15.7097C15.9798 15.8788 16.1014 16.0085 16.2528 16.0987C16.4039 16.1891 16.565 16.234 16.7364 16.234C16.9124 16.234 17.0769 16.1901 17.2302 16.1021C17.3835 16.0141 17.5052 15.8881 17.5956 15.7233C17.6858 15.5588 17.7309 15.3614 17.7309 15.1315C17.7309 14.9016 17.6855 14.7047 17.5954 14.5399Z" fill="white"/>
|
||||
<path d="M19.5936 14.1104C19.7448 13.8174 19.951 13.592 20.2128 13.434C20.4743 13.2763 20.7651 13.1973 21.0854 13.1973C21.3289 13.1973 21.5612 13.2505 21.782 13.3563C22.0029 13.4623 22.1788 13.6032 22.3097 13.7789V12H23.2701V17.0057H22.3097V16.4512C22.1925 16.6362 22.028 16.7849 21.8159 16.8977C21.6038 17.0103 21.3581 17.0669 21.0786 17.0669C20.7629 17.0669 20.4743 16.9857 20.2128 16.8231C19.9512 16.6608 19.7448 16.4322 19.5936 16.1367C19.4425 15.8415 19.3672 15.502 19.3672 15.1186C19.3669 14.7396 19.4425 14.4037 19.5936 14.1104ZM22.1808 14.5399C22.0906 14.3754 21.9687 14.2491 21.8154 14.1611C21.6621 14.0731 21.4976 14.029 21.3216 14.029C21.1458 14.029 20.9835 14.0719 20.8346 14.1575C20.6859 14.2433 20.5652 14.3683 20.4728 14.5329C20.3805 14.6976 20.3341 14.8926 20.3341 15.1179C20.3341 15.3436 20.3802 15.5408 20.4728 15.7097C20.5652 15.8788 20.6868 16.0085 20.8382 16.0987C20.9893 16.1891 21.1505 16.234 21.3218 16.234C21.4978 16.234 21.6623 16.1901 21.8157 16.1021C21.969 16.0141 22.0906 15.8881 22.181 15.7233C22.2712 15.5588 22.3163 15.3614 22.3163 15.1315C22.3163 14.9016 22.2712 14.7047 22.1808 14.5399Z" fill="white"/>
|
||||
<path d="M27.6532 15.416H24.9137C24.9362 15.6865 25.031 15.8986 25.198 16.0517C25.3647 16.205 25.5699 16.2818 25.8134 16.2818C26.1652 16.2818 26.4155 16.1306 26.5642 15.8286H27.5855C27.4773 16.1894 27.2698 16.486 26.9632 16.7181C26.6566 16.9504 26.28 17.0664 25.8337 17.0664C25.4729 17.0664 25.1492 16.9862 24.863 16.8263C24.5766 16.6661 24.3534 16.4397 24.1932 16.1465C24.0331 15.8535 23.9531 15.5152 23.9531 15.1317C23.9531 14.7439 24.0319 14.4037 24.1898 14.1104C24.3475 13.8174 24.5686 13.592 24.8526 13.434C25.1368 13.2763 25.4636 13.1973 25.8334 13.1973C26.1895 13.1973 26.5088 13.2741 26.7906 13.4272C27.0724 13.5805 27.2913 13.7982 27.4468 14.08C27.6023 14.3617 27.6803 14.6852 27.6803 15.0506C27.6803 15.1861 27.671 15.3077 27.6532 15.416ZM26.6995 14.7803C26.6948 14.5367 26.6071 14.3417 26.4355 14.1953C26.2639 14.0488 26.0545 13.9754 25.8064 13.9754C25.5719 13.9754 25.3744 14.0463 25.2145 14.1884C25.0544 14.3305 24.9562 14.5277 24.9203 14.7803H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.373C29.9893 13.2604 30.2136 13.2041 30.4661 13.2041V14.1983H30.2158C29.9181 14.1983 29.6936 14.2683 29.5428 14.408C29.3916 14.5479 29.3161 14.7914 29.3161 15.1385V17.0054H28.3691V13.2582H29.3161V13.84C29.438 13.6414 29.5969 13.4859 29.7931 13.373Z" fill="white"/>
|
||||
<path d="M11.1192 25.9381C11.9145 24.6906 13.2354 24.0669 15.0816 24.0669C16.9272 24.0669 18.2484 24.6909 19.044 25.9381C19.8393 27.1859 20.2374 28.9109 20.2374 31.1132C20.2374 33.3284 19.8393 35.0661 19.044 36.3265C18.2481 37.5867 16.9272 38.217 15.0816 38.217C13.2354 38.217 11.9145 37.5869 11.1192 36.3265C10.3233 35.0663 9.92578 33.3284 9.92578 31.1132C9.92578 28.9109 10.3233 27.1859 11.1192 25.9381ZM17.4208 28.7359C17.2997 28.0931 17.0579 27.5678 16.6952 27.1605C16.3322 26.7532 15.7943 26.5494 15.0816 26.5494C14.3683 26.5494 13.8309 26.7532 13.4679 27.1605C13.1052 27.5681 12.8632 28.0934 12.7423 28.7359C12.6211 29.3789 12.5609 30.1713 12.5609 31.1132C12.5609 32.0809 12.6182 32.8923 12.7328 33.548C12.8473 34.2037 13.0891 34.7319 13.4584 35.1329C13.8275 35.5338 14.3683 35.7344 15.0816 35.7344C15.7943 35.7344 16.3354 35.5338 16.7047 35.1329C17.0737 34.7319 17.3158 34.2037 17.4303 33.548C17.5449 32.8926 17.6022 32.0809 17.6022 31.1132C17.6022 30.1713 17.5417 29.3787 17.4208 28.7359Z" fill="white"/>
|
||||
<path d="M21.9375 26.7978V24.3345H26.5397V38.2555H23.7897V26.7978H21.9375Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1389" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="#041F41"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1389)"/>
|
||||
<path d="M58 5.6675C58 6.40345 57.4036 7 56.6673 7H50.3327C49.597 7 49 6.40357 49 5.6675V5.33244C49 4.59655 49.5964 4 50.3327 4H56.6673C57.403 4 58 4.59637 58 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M69 5.6675C69 6.40345 68.403 7 67.6674 7H61.3326C60.597 7 60 6.40357 60 5.6675V5.33244C60 4.59655 60.597 4 61.3326 4H67.6674C68.403 4 69 4.59637 69 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M80 5.6675C80 6.40345 79.4036 7 78.6673 7H72.3327C71.5964 7 71 6.40357 71 5.6675V5.33244C71 4.59655 71.5964 4 72.3327 4H78.6673C79.403 4 80 4.59637 80 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M63.985 43.7765C63.985 45.0019 62.992 45.9952 61.766 45.9952H51.219C49.994 45.9952 49 45.0021 49 43.7765V43.2186C49 41.9933 49.993 41 51.219 41H61.766C62.991 41 63.985 41.993 63.985 43.2186V43.7765Z" fill="white"/>
|
||||
<path d="M81.9704 43.7765C81.9704 45.0019 80.9764 45.9952 79.7514 45.9952H69.2034C67.9784 45.9952 66.9844 45.0021 66.9844 43.7765V43.2186C66.9844 41.9933 67.9784 41 69.2034 41H79.7514C80.9764 41 81.9704 41.993 81.9704 43.2186V43.7765Z" fill="white"/>
|
||||
<path d="M99.9557 43.7765C99.9557 45.0019 98.9627 45.9952 97.7367 45.9952H87.1897C85.9637 45.9952 84.9707 45.0021 84.9707 43.7765V43.2186C84.9707 41.9933 85.9637 41 87.1897 41H97.7367C98.9617 41 99.9557 41.993 99.9557 43.2186V43.7765Z" fill="white"/>
|
||||
<path d="M117.94 43.7765C117.94 45.0019 116.946 45.9952 115.721 45.9952H105.174C103.949 45.9952 102.955 45.0021 102.955 43.7765V43.2186C102.955 41.9933 103.948 41 105.174 41H115.721C116.946 41 117.94 41.993 117.94 43.2186V43.7765Z" fill="white"/>
|
||||
<path d="M221.985 43.7765C221.985 45.0019 220.991 45.9952 219.766 45.9952H209.219C207.994 45.9952 207 45.0021 207 43.7765V43.2186C207 41.9933 207.993 41 209.219 41H219.766C220.991 41 221.985 41.993 221.985 43.2186V43.7765Z" fill="white"/>
|
||||
<path d="M202.985 43.7765C202.985 45.0019 201.991 45.9952 200.766 45.9952H190.219C188.994 45.9952 188 45.0021 188 43.7765V43.2186C188 41.9933 188.993 41 190.219 41H200.766C201.991 41 202.985 41.993 202.985 43.2186V43.7765Z" fill="white"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<path d="M90.7363 20.05H179.736C181.918 20.05 183.686 21.8185 183.686 24C183.686 26.1815 181.918 27.95 179.736 27.95H90.7363C88.5548 27.95 86.7863 26.1815 86.7863 24C86.7863 21.8185 88.5548 20.05 90.7363 20.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M182.793 24C182.793 22.3431 181.45 21 179.793 21V21C178.136 21 176.793 22.3431 176.793 24V24C176.793 25.6569 178.136 27 179.793 27V27C181.45 27 182.793 25.6569 182.793 24V24Z" fill="#041F41"/>
|
||||
<rect x="194" y="20" width="19" height="8" rx="2" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="215" y="4" width="4" height="4" rx="2" fill="#3A86FF"/>
|
||||
<rect x="209" y="4" width="4" height="4" rx="2" fill="#3A86FF"/>
|
||||
<rect x="203" y="4" width="4" height="4" rx="2" fill="#3A86FF"/>
|
||||
<rect x="197" y="4" width="4" height="4" rx="2" fill="#3A86FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1389">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,43 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1722)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2939V17.0153H8.96936V15.0063H6.94697V17.0153H6V12.2939H6.94697V14.2351H8.96936V12.2939H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.4257H11.568C11.5905 15.6962 11.6853 15.9083 11.8522 16.0614C12.019 16.2147 12.2242 16.2915 12.4677 16.2915C12.8194 16.2915 13.0698 16.1403 13.2185 15.8383H14.2398C14.1316 16.1991 13.9241 16.4957 13.6175 16.7278C13.3108 16.9601 12.9343 17.0761 12.4879 17.0761C12.1272 17.0761 11.8035 16.9959 11.5173 16.836C11.2309 16.6758 11.0077 16.4494 10.8475 16.1562C10.6874 15.8632 10.6074 15.5249 10.6074 15.1414C10.6074 14.7536 10.6861 14.4134 10.8441 14.1201C11.0018 13.8271 11.2229 13.6017 11.5069 13.4437C11.7911 13.286 12.1179 13.207 12.4877 13.207C12.8438 13.207 13.1631 13.2838 13.4449 13.4369C13.7267 13.5902 13.9456 13.8079 14.1011 14.0897C14.2566 14.3714 14.3346 14.6949 14.3346 15.0603C14.3346 15.1958 14.3256 15.3174 14.3075 15.4257ZM13.354 14.79C13.3494 14.5464 13.2616 14.3514 13.09 14.205C12.9184 14.0585 12.709 13.9851 12.4609 13.9851C12.2264 13.9851 12.029 14.056 11.8691 14.1981C11.7089 14.3402 11.6107 14.5374 11.5749 14.79H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1201C15.1591 13.8271 15.3641 13.6017 15.6234 13.4437C15.8828 13.286 16.1722 13.207 16.4925 13.207C16.7721 13.207 17.0169 13.2633 17.2266 13.3762C17.4362 13.4891 17.6041 13.6309 17.7304 13.8023V13.268H18.6842V17.0154H17.7304V16.4674C17.6085 16.6434 17.4406 16.7887 17.2266 16.9038C17.0123 17.0188 16.7654 17.0763 16.4858 17.0763C16.1701 17.0763 15.8824 16.9952 15.6231 16.8326C15.3637 16.67 15.1586 16.4416 15.0077 16.1462C14.8566 15.851 14.7812 15.5115 14.7812 15.128C14.7814 14.7492 14.8571 14.4134 15.0079 14.1201ZM17.5954 14.5496C17.5052 14.3851 17.3832 14.2588 17.2299 14.1708C17.0766 14.0828 16.912 14.0387 16.736 14.0387C16.5603 14.0387 16.3981 14.0816 16.2491 14.1672C16.1004 14.253 15.9798 14.378 15.8874 14.5425C15.795 14.7073 15.7486 14.9023 15.7486 15.1275C15.7486 15.3533 15.7948 15.5505 15.8874 15.7194C15.9798 15.8885 16.1014 16.0182 16.2528 16.1084C16.4039 16.1988 16.565 16.2437 16.7364 16.2437C16.9124 16.2437 17.0769 16.1998 17.2302 16.1118C17.3835 16.0238 17.5052 15.8978 17.5956 15.733C17.6858 15.5685 17.7309 15.3711 17.7309 15.1412C17.7309 14.9113 17.6855 14.7144 17.5954 14.5496Z" fill="white"/>
|
||||
<path d="M19.5936 14.1201C19.7448 13.8271 19.951 13.6017 20.2128 13.4437C20.4743 13.286 20.7651 13.207 21.0854 13.207C21.3289 13.207 21.5612 13.2602 21.782 13.366C22.0029 13.472 22.1788 13.6129 22.3097 13.7886V12.0098H23.2701V17.0154H22.3097V16.4609C22.1925 16.6459 22.028 16.7946 21.8159 16.9074C21.6038 17.02 21.3581 17.0766 21.0786 17.0766C20.7629 17.0766 20.4743 16.9954 20.2128 16.8328C19.9512 16.6705 19.7448 16.4419 19.5936 16.1464C19.4425 15.8512 19.3672 15.5117 19.3672 15.1283C19.3669 14.7493 19.4425 14.4134 19.5936 14.1201ZM22.1808 14.5496C22.0906 14.3851 21.9687 14.2588 21.8154 14.1708C21.6621 14.0828 21.4976 14.0387 21.3216 14.0387C21.1458 14.0387 20.9835 14.0816 20.8346 14.1672C20.6859 14.253 20.5652 14.378 20.4728 14.5426C20.3805 14.7073 20.3341 14.9023 20.3341 15.1276C20.3341 15.3533 20.3802 15.5505 20.4728 15.7194C20.5652 15.8885 20.6868 16.0182 20.8382 16.1084C20.9893 16.1988 21.1505 16.2437 21.3218 16.2437C21.4978 16.2437 21.6623 16.1998 21.8157 16.1118C21.969 16.0238 22.0906 15.8978 22.181 15.733C22.2712 15.5685 22.3163 15.3711 22.3163 15.1412C22.3163 14.9113 22.2712 14.7144 22.1808 14.5496Z" fill="white"/>
|
||||
<path d="M27.6532 15.4257H24.9137C24.9362 15.6962 25.031 15.9083 25.198 16.0614C25.3647 16.2147 25.5699 16.2915 25.8134 16.2915C26.1652 16.2915 26.4155 16.1403 26.5642 15.8383H27.5855C27.4773 16.1991 27.2698 16.4957 26.9632 16.7278C26.6566 16.9601 26.28 17.0761 25.8337 17.0761C25.4729 17.0761 25.1492 16.9959 24.863 16.836C24.5766 16.6758 24.3534 16.4494 24.1932 16.1562C24.0331 15.8632 23.9531 15.5249 23.9531 15.1414C23.9531 14.7536 24.0319 14.4134 24.1898 14.1201C24.3475 13.8271 24.5686 13.6017 24.8526 13.4437C25.1368 13.286 25.4636 13.207 25.8334 13.207C26.1895 13.207 26.5088 13.2838 26.7906 13.4369C27.0724 13.5902 27.2913 13.8079 27.4468 14.0897C27.6023 14.3714 27.6803 14.6949 27.6803 15.0603C27.6803 15.1958 27.671 15.3174 27.6532 15.4257ZM26.6995 14.79C26.6948 14.5464 26.6071 14.3514 26.4355 14.205C26.2639 14.0585 26.0545 13.9851 25.8064 13.9851C25.5719 13.9851 25.3744 14.056 25.2145 14.1981C25.0544 14.3402 24.9562 14.5374 24.9203 14.79H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.3828C29.9893 13.2702 30.2136 13.2139 30.4661 13.2139V14.2081H30.2158C29.9181 14.2081 29.6936 14.2781 29.5428 14.4178C29.3916 14.5577 29.3161 14.8012 29.3161 15.1483V17.0152H28.3691V13.268H29.3161V13.8498C29.438 13.6512 29.5969 13.4957 29.7931 13.3828Z" fill="white"/>
|
||||
<path d="M17.5723 25.9479C18.3676 24.7004 19.6885 24.0767 21.5347 24.0767C23.3803 24.0767 24.7015 24.7007 25.4971 25.9479C26.2924 27.1957 26.6905 28.9207 26.6905 31.123C26.6905 33.3382 26.2924 35.0759 25.4971 36.3363C24.7012 37.5965 23.3803 38.2268 21.5347 38.2268C19.6885 38.2268 18.3676 37.5967 17.5723 36.3363C16.7764 35.0761 16.3789 33.3382 16.3789 31.123C16.3789 28.9207 16.7764 27.1957 17.5723 25.9479ZM23.8739 28.7457C23.7528 28.1029 23.511 27.5776 23.1483 27.1703C22.7853 26.763 22.2474 26.5592 21.5347 26.5592C20.8214 26.5592 20.284 26.763 19.921 27.1703C19.5583 27.5779 19.3163 28.1032 19.1954 28.7457C19.0742 29.3887 19.014 30.1811 19.014 31.123C19.014 32.0907 19.0713 32.9021 19.1859 33.5578C19.3004 34.2135 19.5422 34.7417 19.9115 35.1427C20.2806 35.5436 20.8214 35.7442 21.5347 35.7442C22.2474 35.7442 22.7885 35.5436 23.1578 35.1427C23.5268 34.7417 23.7689 34.2135 23.8834 33.5578C23.998 32.9024 24.0553 32.0907 24.0553 31.123C24.0553 30.1811 23.9948 29.3885 23.8739 28.7457Z" fill="white"/>
|
||||
<path d="M9.77734 26.7885V24.3252H14.3795V38.2462H11.6295V26.7885H9.77734Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1722" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1722)"/>
|
||||
<path d="M115.985 43.7765C115.985 45.0019 114.992 45.9952 113.766 45.9952H103.219C101.994 45.9952 101 45.0021 101 43.7765V43.2186C101 41.9933 101.993 41 103.219 41H113.766C114.991 41 115.985 41.993 115.985 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M133.97 43.7765C133.97 45.0019 132.976 45.9952 131.751 45.9952H121.203C119.978 45.9952 118.984 45.0021 118.984 43.7765V43.2186C118.984 41.9933 119.978 41 121.203 41H131.751C132.976 41 133.97 41.993 133.97 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M151.956 43.7765C151.956 45.0019 150.963 45.9952 149.737 45.9952H139.19C137.964 45.9952 136.971 45.0021 136.971 43.7765V43.2186C136.971 41.9933 137.964 41 139.19 41H149.737C150.962 41 151.956 41.993 151.956 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M169.94 43.7765C169.94 45.0019 168.946 45.9952 167.721 45.9952H157.174C155.949 45.9952 154.955 45.0021 154.955 43.7765V43.2186C154.955 41.9933 155.948 41 157.174 41H167.721C168.946 41 169.94 41.993 169.94 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M63.985 24.2789C63.985 25.5043 62.992 26.4976 61.766 26.4976H51.219C49.994 26.4976 49 25.5045 49 24.2789V23.721C49 22.4957 49.993 21.5024 51.219 21.5024H61.766C62.991 21.5024 63.985 22.4954 63.985 23.721V24.2789Z" fill="#858C97"/>
|
||||
<path d="M81.9704 24.2789C81.9704 25.5043 80.9764 26.4976 79.7514 26.4976H69.2034C67.9784 26.4976 66.9844 25.5045 66.9844 24.2789V23.721C66.9844 22.4957 67.9784 21.5024 69.2034 21.5024H79.7514C80.9764 21.5024 81.9704 22.4954 81.9704 23.721V24.2789Z" fill="#858C97"/>
|
||||
<path d="M128.555 26.5619V27.7346H124.455V20.0972H125.758V26.5617L128.555 26.5619Z" fill="#041F41"/>
|
||||
<path d="M136.648 23.9997C136.648 24.5607 136.563 25.0779 136.394 25.5558C136.224 26.0315 135.984 26.4444 135.675 26.7935C135.365 27.1427 134.992 27.4139 134.556 27.6099C134.12 27.8046 133.637 27.9026 133.104 27.9026C132.574 27.9026 132.092 27.8048 131.656 27.6099C131.22 27.4139 130.847 27.1427 130.535 26.7935C130.224 26.4444 129.983 26.0315 129.811 25.5558C129.64 25.0779 129.555 24.5607 129.555 23.9997C129.555 23.4388 129.64 22.9216 129.811 22.4438C129.982 21.9681 130.224 21.5552 130.535 21.206C130.847 20.8569 131.22 20.5857 131.656 20.3896C132.092 20.195 132.574 20.0972 133.104 20.0972C133.459 20.0972 133.793 20.1418 134.105 20.2311C134.419 20.3205 134.706 20.4481 134.968 20.6112C135.229 20.7763 135.464 20.9741 135.672 21.2095C135.88 21.4435 136.057 21.7043 136.202 21.9939C136.347 22.2824 136.458 22.5954 136.534 22.9336C136.61 23.2707 136.648 23.6271 136.648 23.9997ZM135.316 23.9997C135.316 23.5803 135.265 23.2056 135.161 22.8717C135.058 22.5406 134.911 22.2563 134.721 22.0245C134.53 21.7923 134.299 21.6147 134.026 21.4914C133.753 21.368 133.446 21.306 133.104 21.306C132.761 21.306 132.454 21.3676 132.181 21.4914C131.909 21.6147 131.677 21.7923 131.484 22.0245C131.292 22.2566 131.145 22.5406 131.041 22.8717C130.938 23.2059 130.886 23.5806 130.886 23.9997C130.886 24.419 130.938 24.7936 131.041 25.1279C131.145 25.46 131.292 25.7408 131.484 25.9719C131.677 26.2041 131.909 26.3806 132.181 26.5029C132.454 26.6263 132.761 26.6891 133.104 26.6891C133.446 26.6891 133.753 26.6263 134.026 26.5029C134.299 26.3806 134.53 26.2038 134.721 25.9719C134.911 25.7411 135.059 25.46 135.161 25.1279C135.265 24.7936 135.316 24.419 135.316 23.9997Z" fill="#041F41"/>
|
||||
<path d="M143.836 23.9898V27.0793C143.481 27.3647 143.102 27.5732 142.7 27.7051C142.298 27.838 141.869 27.9032 141.41 27.9032C140.839 27.9032 140.321 27.8074 139.858 27.6126C139.395 27.4197 139 27.1507 138.672 26.8047C138.345 26.4609 138.092 26.0479 137.914 25.568C137.737 25.0901 137.648 24.5676 137.648 24.0001C137.648 23.4255 137.734 22.8998 137.905 22.4217C138.076 21.9418 138.319 21.5299 138.633 21.186C138.948 20.8401 139.33 20.5718 139.778 20.3824C140.227 20.1921 140.731 20.0972 141.289 20.0972C141.573 20.0972 141.839 20.1216 142.086 20.1705C142.332 20.2206 142.562 20.2875 142.773 20.3737C142.985 20.4598 143.177 20.5641 143.351 20.6886C143.526 20.8119 143.686 20.9462 143.831 21.094L143.458 21.7391C143.4 21.8423 143.324 21.9043 143.231 21.9266C143.137 21.95 143.036 21.9244 142.926 21.851C142.819 21.784 142.712 21.7171 142.606 21.6501C142.499 21.583 142.381 21.5243 142.25 21.4766C142.12 21.4267 141.972 21.3852 141.81 21.3543C141.647 21.3235 141.458 21.3064 141.246 21.3064C140.9 21.3064 140.588 21.3693 140.309 21.4969C140.03 21.6245 139.792 21.8046 139.595 22.0396C139.398 22.277 139.246 22.5589 139.139 22.891C139.033 23.221 138.98 23.5926 138.98 24.0001C138.98 24.4365 139.037 24.8271 139.152 25.171C139.266 25.5136 139.428 25.8044 139.636 26.0415C139.844 26.2798 140.095 26.4609 140.389 26.5863C140.682 26.7119 141.01 26.7735 141.372 26.7735C141.63 26.7735 141.86 26.7428 142.064 26.6842C142.267 26.6236 142.466 26.5428 142.66 26.4393V25.0558H141.778C141.694 25.0558 141.629 25.0313 141.583 24.9803C141.536 24.9281 141.512 24.8665 141.512 24.7931V23.9895L143.836 23.9898Z" fill="#041F41"/>
|
||||
<path d="M151.929 23.9997C151.929 24.5607 151.844 25.0779 151.675 25.5558C151.505 26.0315 151.265 26.4444 150.956 26.7935C150.646 27.1427 150.273 27.4139 149.837 27.6099C149.401 27.8046 148.917 27.9026 148.385 27.9026C147.855 27.9026 147.373 27.8048 146.937 27.6099C146.501 27.4139 146.128 27.1427 145.816 26.7935C145.505 26.4444 145.263 26.0315 145.092 25.5558C144.921 25.0779 144.836 24.5607 144.836 23.9997C144.836 23.4388 144.921 22.9216 145.092 22.4438C145.263 21.9681 145.505 21.5552 145.816 21.206C146.128 20.8569 146.501 20.5857 146.937 20.3896C147.373 20.195 147.855 20.0972 148.385 20.0972C148.74 20.0972 149.074 20.1418 149.387 20.2311C149.7 20.3205 149.987 20.4481 150.249 20.6112C150.51 20.7763 150.745 20.9741 150.953 21.2095C151.161 21.4435 151.338 21.7043 151.483 21.9939C151.628 22.2824 151.739 22.5954 151.815 22.9336C151.891 23.2707 151.929 23.6271 151.929 23.9997ZM150.597 23.9997C150.597 23.5803 150.546 23.2056 150.443 22.8717C150.339 22.5406 150.192 22.2563 150.002 22.0245C149.812 21.7923 149.58 21.6147 149.308 21.4914C149.034 21.368 148.727 21.306 148.385 21.306C148.042 21.306 147.735 21.3676 147.463 21.4914C147.19 21.6147 146.958 21.7923 146.765 22.0245C146.573 22.2566 146.425 22.5406 146.323 22.8717C146.219 23.2059 146.167 23.5806 146.167 23.9997C146.167 24.419 146.219 24.7936 146.323 25.1279C146.425 25.46 146.573 25.7408 146.765 25.9719C146.958 26.2041 147.19 26.3806 147.463 26.5029C147.735 26.6263 148.043 26.6891 148.385 26.6891C148.727 26.6891 149.034 26.6263 149.308 26.5029C149.58 26.3806 149.811 26.2038 150.002 25.9719C150.192 25.7411 150.339 25.46 150.443 25.1279C150.546 24.7936 150.597 24.419 150.597 23.9997Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1722">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,42 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1759)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.418V17.1394H8.96936V15.1304H6.94697V17.1394H6V12.418H6.94697V14.3592H8.96936V12.418H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.5498H11.568C11.5905 15.8203 11.6853 16.0324 11.8522 16.1855C12.019 16.3388 12.2242 16.4156 12.4677 16.4156C12.8194 16.4156 13.0698 16.2644 13.2185 15.9624H14.2398C14.1316 16.3232 13.9241 16.6198 13.6175 16.8519C13.3108 17.0842 12.9343 17.2002 12.4879 17.2002C12.1272 17.2002 11.8035 17.12 11.5173 16.9601C11.2309 16.7999 11.0077 16.5735 10.8475 16.2803C10.6874 15.9873 10.6074 15.649 10.6074 15.2655C10.6074 14.8777 10.6861 14.5375 10.8441 14.2442C11.0018 13.9512 11.2229 13.7258 11.5069 13.5678C11.7911 13.4101 12.1179 13.3311 12.4877 13.3311C12.8438 13.3311 13.1631 13.4079 13.4449 13.561C13.7267 13.7143 13.9456 13.932 14.1011 14.2138C14.2566 14.4955 14.3346 14.819 14.3346 15.1844C14.3346 15.3199 14.3256 15.4415 14.3075 15.5498ZM13.354 14.9141C13.3494 14.6705 13.2616 14.4755 13.09 14.3291C12.9184 14.1826 12.709 14.1092 12.4609 14.1092C12.2264 14.1092 12.029 14.1801 11.8691 14.3222C11.7089 14.4643 11.6107 14.6615 11.5749 14.9141H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.2442C15.1591 13.9512 15.3641 13.7258 15.6234 13.5678C15.8828 13.4101 16.1722 13.3311 16.4925 13.3311C16.7721 13.3311 17.0169 13.3874 17.2266 13.5003C17.4362 13.6132 17.6041 13.755 17.7304 13.9264V13.3921H18.6842V17.1395H17.7304V16.5915C17.6085 16.7675 17.4406 16.9128 17.2266 17.0279C17.0123 17.1429 16.7654 17.2004 16.4858 17.2004C16.1701 17.2004 15.8824 17.1193 15.6231 16.9567C15.3637 16.7941 15.1586 16.5657 15.0077 16.2703C14.8566 15.9751 14.7812 15.6356 14.7812 15.2521C14.7814 14.8733 14.8571 14.5375 15.0079 14.2442ZM17.5954 14.6737C17.5052 14.5092 17.3832 14.3829 17.2299 14.2949C17.0766 14.2069 16.912 14.1628 16.736 14.1628C16.5603 14.1628 16.3981 14.2057 16.2491 14.2913C16.1004 14.3771 15.9798 14.5021 15.8874 14.6666C15.795 14.8314 15.7486 15.0264 15.7486 15.2516C15.7486 15.4774 15.7948 15.6746 15.8874 15.8435C15.9798 16.0126 16.1014 16.1423 16.2528 16.2325C16.4039 16.3229 16.565 16.3678 16.7364 16.3678C16.9124 16.3678 17.0769 16.3239 17.2302 16.2359C17.3835 16.1479 17.5052 16.0219 17.5956 15.8571C17.6858 15.6926 17.7309 15.4952 17.7309 15.2653C17.7309 15.0354 17.6855 14.8385 17.5954 14.6737Z" fill="white"/>
|
||||
<path d="M19.5936 14.2441C19.7448 13.9511 19.951 13.7257 20.2128 13.5677C20.4743 13.41 20.7651 13.331 21.0854 13.331C21.3289 13.331 21.5612 13.3842 21.782 13.49C22.0029 13.596 22.1788 13.7369 22.3097 13.9126V12.1338H23.2701V17.1394H22.3097V16.5849C22.1925 16.7699 22.028 16.9186 21.8159 17.0314C21.6038 17.144 21.3581 17.2006 21.0786 17.2006C20.7629 17.2006 20.4743 17.1194 20.2128 16.9568C19.9512 16.7945 19.7448 16.5659 19.5936 16.2704C19.4425 15.9752 19.3672 15.6357 19.3672 15.2523C19.3669 14.8733 19.4425 14.5374 19.5936 14.2441ZM22.1808 14.6736C22.0906 14.5091 21.9687 14.3828 21.8154 14.2948C21.6621 14.2068 21.4976 14.1627 21.3216 14.1627C21.1458 14.1627 20.9835 14.2056 20.8346 14.2912C20.6859 14.377 20.5652 14.502 20.4728 14.6666C20.3805 14.8313 20.3341 15.0263 20.3341 15.2516C20.3341 15.4773 20.3802 15.6745 20.4728 15.8434C20.5652 16.0125 20.6868 16.1422 20.8382 16.2324C20.9893 16.3228 21.1505 16.3677 21.3218 16.3677C21.4978 16.3677 21.6623 16.3238 21.8157 16.2358C21.969 16.1478 22.0906 16.0218 22.181 15.857C22.2712 15.6925 22.3163 15.4951 22.3163 15.2652C22.3163 15.0353 22.2712 14.8384 22.1808 14.6736Z" fill="white"/>
|
||||
<path d="M27.6532 15.5498H24.9137C24.9362 15.8203 25.031 16.0324 25.198 16.1855C25.3647 16.3388 25.5699 16.4156 25.8134 16.4156C26.1652 16.4156 26.4155 16.2644 26.5642 15.9624H27.5855C27.4773 16.3232 27.2698 16.6198 26.9632 16.8519C26.6566 17.0842 26.28 17.2002 25.8337 17.2002C25.4729 17.2002 25.1492 17.12 24.863 16.9601C24.5766 16.7999 24.3534 16.5735 24.1932 16.2803C24.0331 15.9873 23.9531 15.649 23.9531 15.2655C23.9531 14.8777 24.0319 14.5375 24.1898 14.2442C24.3475 13.9512 24.5686 13.7258 24.8526 13.5678C25.1368 13.4101 25.4636 13.3311 25.8334 13.3311C26.1895 13.3311 26.5088 13.4079 26.7906 13.561C27.0724 13.7143 27.2913 13.932 27.4468 14.2138C27.6023 14.4955 27.6803 14.819 27.6803 15.1844C27.6803 15.3199 27.671 15.4415 27.6532 15.5498ZM26.6995 14.9141C26.6948 14.6705 26.6071 14.4755 26.4355 14.3291C26.2639 14.1826 26.0545 14.1092 25.8064 14.1092C25.5719 14.1092 25.3744 14.1801 25.2145 14.3222C25.0544 14.4643 24.9562 14.6615 24.9203 14.9141H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.5068C29.9893 13.3942 30.2136 13.3379 30.4661 13.3379V14.3321H30.2158C29.9181 14.3321 29.6936 14.4021 29.5428 14.5418C29.3916 14.6817 29.3161 14.9252 29.3161 15.2723V17.1392H28.3691V13.392H29.3161V13.9738C29.438 13.7752 29.5969 13.6197 29.7931 13.5068Z" fill="white"/>
|
||||
<path d="M12.4746 26.664V24.2007H17.0768V38.1217H14.3269V26.664H12.4746Z" fill="white"/>
|
||||
<path d="M19.3887 26.664V24.2007H23.991V38.1217H21.241V26.664H19.3887Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1759" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1759)"/>
|
||||
<path d="M111.485 43.7765C111.485 45.0019 110.492 45.9952 109.266 45.9952H98.719C97.494 45.9952 96.5 45.0021 96.5 43.7765V43.2186C96.5 41.9933 97.493 41 98.719 41H109.266C110.491 41 111.485 41.993 111.485 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="114.584" y1="35.9976" x2="114.584" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M132.47 43.7765C132.47 45.0019 131.476 45.9952 130.251 45.9952H119.703C118.478 45.9952 117.484 45.0021 117.484 43.7765V43.2186C117.484 41.9933 118.478 41 119.703 41H130.251C131.476 41 132.47 41.993 132.47 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="135.571" y1="35.9976" x2="135.571" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M153.456 43.7765C153.456 45.0019 152.463 45.9952 151.237 45.9952H140.69C139.464 45.9952 138.471 45.0021 138.471 43.7765V43.2186C138.471 41.9933 139.464 41 140.69 41H151.237C152.462 41 153.456 41.993 153.456 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="156.555" y1="35.9976" x2="156.555" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M174.44 43.7765C174.44 45.0019 173.446 45.9952 172.221 45.9952H161.674C160.449 45.9952 159.455 45.0021 159.455 43.7765V43.2186C159.455 41.9933 160.448 41 161.674 41H172.221C173.446 41 174.44 41.993 174.44 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<path d="M108.475 20.05H162.414C164.595 20.05 166.364 21.8185 166.364 24C166.364 26.1815 164.595 27.95 162.414 27.95H108.475C106.293 27.95 104.525 26.1815 104.525 24C104.525 21.8185 106.293 20.05 108.475 20.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M165.516 24C165.516 22.3431 164.172 21 162.516 21V21C160.859 21 159.516 22.3431 159.516 24V24C159.516 25.6569 160.859 27 162.516 27V27C164.172 27 165.516 25.6569 165.516 24V24Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1759">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,45 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1426)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2842V17.0056H8.96936V14.9966H6.94697V17.0056H6V12.2842H6.94697V14.2254H8.96936V12.2842H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.416H11.568C11.5905 15.6865 11.6853 15.8986 11.8522 16.0517C12.019 16.205 12.2242 16.2818 12.4677 16.2818C12.8194 16.2818 13.0698 16.1306 13.2185 15.8286H14.2398C14.1316 16.1894 13.9241 16.486 13.6175 16.7181C13.3108 16.9504 12.9343 17.0664 12.4879 17.0664C12.1272 17.0664 11.8035 16.9862 11.5173 16.8263C11.2309 16.6661 11.0077 16.4397 10.8475 16.1465C10.6874 15.8535 10.6074 15.5152 10.6074 15.1317C10.6074 14.7439 10.6861 14.4037 10.8441 14.1104C11.0018 13.8174 11.2229 13.592 11.5069 13.434C11.7911 13.2763 12.1179 13.1973 12.4877 13.1973C12.8438 13.1973 13.1631 13.2741 13.4449 13.4272C13.7267 13.5805 13.9456 13.7982 14.1011 14.08C14.2566 14.3617 14.3346 14.6852 14.3346 15.0506C14.3346 15.1861 14.3256 15.3077 14.3075 15.416ZM13.354 14.7803C13.3494 14.5367 13.2616 14.3417 13.09 14.1953C12.9184 14.0488 12.709 13.9754 12.4609 13.9754C12.2264 13.9754 12.029 14.0463 11.8691 14.1884C11.7089 14.3305 11.6107 14.5277 11.5749 14.7803H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1104C15.1591 13.8174 15.3641 13.592 15.6234 13.434C15.8828 13.2763 16.1722 13.1973 16.4925 13.1973C16.7721 13.1973 17.0169 13.2536 17.2266 13.3665C17.4362 13.4794 17.6041 13.6212 17.7304 13.7926V13.2583H18.6842V17.0057H17.7304V16.4577C17.6085 16.6337 17.4406 16.779 17.2266 16.8941C17.0123 17.0091 16.7654 17.0666 16.4858 17.0666C16.1701 17.0666 15.8824 16.9855 15.6231 16.8229C15.3637 16.6603 15.1586 16.4319 15.0077 16.1365C14.8566 15.8413 14.7812 15.5018 14.7812 15.1183C14.7814 14.7395 14.8571 14.4037 15.0079 14.1104ZM17.5954 14.5399C17.5052 14.3754 17.3832 14.2491 17.2299 14.1611C17.0766 14.0731 16.912 14.029 16.736 14.029C16.5603 14.029 16.3981 14.0719 16.2491 14.1575C16.1004 14.2433 15.9798 14.3683 15.8874 14.5328C15.795 14.6976 15.7486 14.8926 15.7486 15.1178C15.7486 15.3436 15.7948 15.5408 15.8874 15.7097C15.9798 15.8788 16.1014 16.0085 16.2528 16.0987C16.4039 16.1891 16.565 16.234 16.7364 16.234C16.9124 16.234 17.0769 16.1901 17.2302 16.1021C17.3835 16.0141 17.5052 15.8881 17.5956 15.7233C17.6858 15.5588 17.7309 15.3614 17.7309 15.1315C17.7309 14.9016 17.6855 14.7047 17.5954 14.5399Z" fill="white"/>
|
||||
<path d="M19.5936 14.1104C19.7448 13.8174 19.951 13.592 20.2128 13.434C20.4743 13.2763 20.7651 13.1973 21.0854 13.1973C21.3289 13.1973 21.5612 13.2505 21.782 13.3563C22.0029 13.4623 22.1788 13.6032 22.3097 13.7789V12H23.2701V17.0057H22.3097V16.4512C22.1925 16.6362 22.028 16.7849 21.8159 16.8977C21.6038 17.0103 21.3581 17.0669 21.0786 17.0669C20.7629 17.0669 20.4743 16.9857 20.2128 16.8231C19.9512 16.6608 19.7448 16.4322 19.5936 16.1367C19.4425 15.8415 19.3672 15.502 19.3672 15.1186C19.3669 14.7396 19.4425 14.4037 19.5936 14.1104ZM22.1808 14.5399C22.0906 14.3754 21.9687 14.2491 21.8154 14.1611C21.6621 14.0731 21.4976 14.029 21.3216 14.029C21.1458 14.029 20.9835 14.0719 20.8346 14.1575C20.6859 14.2433 20.5652 14.3683 20.4728 14.5329C20.3805 14.6976 20.3341 14.8926 20.3341 15.1179C20.3341 15.3436 20.3802 15.5408 20.4728 15.7097C20.5652 15.8788 20.6868 16.0085 20.8382 16.0987C20.9893 16.1891 21.1505 16.234 21.3218 16.234C21.4978 16.234 21.6623 16.1901 21.8157 16.1021C21.969 16.0141 22.0906 15.8881 22.181 15.7233C22.2712 15.5588 22.3163 15.3614 22.3163 15.1315C22.3163 14.9016 22.2712 14.7047 22.1808 14.5399Z" fill="white"/>
|
||||
<path d="M27.6532 15.416H24.9137C24.9362 15.6865 25.031 15.8986 25.198 16.0517C25.3647 16.205 25.5699 16.2818 25.8134 16.2818C26.1652 16.2818 26.4155 16.1306 26.5642 15.8286H27.5855C27.4773 16.1894 27.2698 16.486 26.9632 16.7181C26.6566 16.9504 26.28 17.0664 25.8337 17.0664C25.4729 17.0664 25.1492 16.9862 24.863 16.8263C24.5766 16.6661 24.3534 16.4397 24.1932 16.1465C24.0331 15.8535 23.9531 15.5152 23.9531 15.1317C23.9531 14.7439 24.0319 14.4037 24.1898 14.1104C24.3475 13.8174 24.5686 13.592 24.8526 13.434C25.1368 13.2763 25.4636 13.1973 25.8334 13.1973C26.1895 13.1973 26.5088 13.2741 26.7906 13.4272C27.0724 13.5805 27.2913 13.7982 27.4468 14.08C27.6023 14.3617 27.6803 14.6852 27.6803 15.0506C27.6803 15.1861 27.671 15.3077 27.6532 15.416ZM26.6995 14.7803C26.6948 14.5367 26.6071 14.3417 26.4355 14.1953C26.2639 14.0488 26.0545 13.9754 25.8064 13.9754C25.5719 13.9754 25.3744 14.0463 25.2145 14.1884C25.0544 14.3305 24.9562 14.5277 24.9203 14.7803H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.373C29.9893 13.2604 30.2136 13.2041 30.4661 13.2041V14.1983H30.2158C29.9181 14.1983 29.6936 14.2683 29.5428 14.408C29.3916 14.5479 29.3161 14.7914 29.3161 15.1385V17.0054H28.3691V13.2582H29.3161V13.84C29.438 13.6414 29.5969 13.4859 29.7931 13.373Z" fill="white"/>
|
||||
<path d="M8.61723 25.9768C9.41259 24.7293 10.7335 24.1055 12.5797 24.1055C14.4253 24.1055 15.7465 24.7295 16.5421 25.9768C17.3374 27.2245 17.7355 28.9495 17.7355 31.1518C17.7355 33.367 17.3374 35.1047 16.5421 36.3651C15.7462 37.6253 14.4253 38.2557 12.5797 38.2557C10.7335 38.2557 9.41259 37.6256 8.61723 36.3651C7.82139 35.105 7.42383 33.367 7.42383 31.1518C7.42383 28.9495 7.82139 27.2245 8.61723 25.9768ZM14.9189 28.7743C14.7978 28.1315 14.556 27.6062 14.1933 27.1989C13.8304 26.7916 13.2924 26.5878 12.5797 26.5878C11.8665 26.5878 11.329 26.7916 10.966 27.1989C10.6033 27.6065 10.3613 28.1318 10.2404 28.7743C10.1193 29.4173 10.0591 30.2097 10.0591 31.1516C10.0591 32.1193 10.1163 32.9307 10.2309 33.5864C10.3455 34.2421 10.5873 34.7703 10.9565 35.1713C11.3256 35.5722 11.8665 35.7728 12.5797 35.7728C13.2924 35.7728 13.8335 35.5722 14.2028 35.1713C14.5718 34.7703 14.8139 34.2421 14.9284 33.5864C15.043 32.931 15.1003 32.1193 15.1003 31.1516C15.1005 30.2097 15.0398 29.4173 14.9189 28.7743Z" fill="white"/>
|
||||
<path d="M20.6 35.2763C21.8221 34.2579 22.7962 33.4079 23.5218 32.7269C24.2475 32.0461 24.852 31.336 25.3358 30.5977C25.8194 29.8596 26.0614 29.134 26.0614 28.4208C26.0614 27.7714 25.9086 27.2625 25.6032 26.8932C25.2978 26.5242 24.8264 26.3394 24.1902 26.3394C23.5535 26.3394 23.0636 26.5527 22.7199 26.9792C22.3762 27.4058 22.1978 27.9884 22.1851 28.7265H19.5879C19.6386 27.1986 20.094 26.0403 20.9534 25.2508C21.8126 24.4616 22.9042 24.0669 24.2284 24.0669C25.6797 24.0669 26.7934 24.452 27.5703 25.2223C28.3466 25.9928 28.7351 27.0078 28.7351 28.2682C28.7351 29.2612 28.4677 30.2097 27.9332 31.1135C27.3984 32.0176 26.7873 32.8037 26.1 33.4718C25.4126 34.1401 24.5151 34.9455 23.4075 35.8876H29.0408V38.1028H19.6069V36.1167L20.6 35.2763Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1426" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1426)"/>
|
||||
<path d="M111.485 43.7765C111.485 45.0019 110.492 45.9952 109.266 45.9952H98.719C97.494 45.9952 96.5 45.0021 96.5 43.7765V43.2186C96.5 41.9933 97.493 41 98.719 41H109.266C110.491 41 111.485 41.993 111.485 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="114.584" y1="35.9976" x2="114.584" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M132.47 43.7765C132.47 45.0019 131.476 45.9952 130.251 45.9952H119.703C118.478 45.9952 117.484 45.0021 117.484 43.7765V43.2186C117.484 41.9933 118.478 41 119.703 41H130.251C131.476 41 132.47 41.993 132.47 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="135.571" y1="35.9976" x2="135.571" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M153.456 43.7765C153.456 45.0019 152.463 45.9952 151.237 45.9952H140.69C139.464 45.9952 138.471 45.0021 138.471 43.7765V43.2186C138.471 41.9933 139.464 41 140.69 41H151.237C152.462 41 153.456 41.993 153.456 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="156.555" y1="35.9976" x2="156.555" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M174.44 43.7765C174.44 45.0019 173.446 45.9952 172.221 45.9952H161.674C160.449 45.9952 159.455 45.0021 159.455 43.7765V43.2186C159.455 41.9933 160.448 41 161.674 41H172.221C173.446 41 174.44 41.993 174.44 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<path d="M88.9434 20.05H181.943C184.125 20.05 185.893 21.8185 185.893 24C185.893 26.1815 184.125 27.95 181.943 27.95H88.9434C86.7618 27.95 84.9934 26.1815 84.9934 24C84.9934 21.8185 86.7618 20.05 88.9434 20.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M185 24C185 22.3431 183.657 21 182 21V21C180.343 21 179 22.3431 179 24V24C179 25.6569 180.343 27 182 27V27C183.657 27 185 25.6569 185 24V24Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M58 5.6675C58 6.40345 57.4036 7 56.6673 7H50.3327C49.597 7 49 6.40357 49 5.6675V5.33244C49 4.59655 49.5964 4 50.3327 4H56.6673C57.403 4 58 4.59637 58 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M69 5.6675C69 6.40345 68.403 7 67.6674 7H61.3326C60.597 7 60 6.40357 60 5.6675V5.33244C60 4.59655 60.597 4 61.3326 4H67.6674C68.403 4 69 4.59637 69 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M80 5.6675C80 6.40345 79.4036 7 78.6673 7H72.3327C71.5964 7 71 6.40357 71 5.6675V5.33244C71 4.59655 71.5964 4 72.3327 4H78.6673C79.403 4 80 4.59637 80 5.33244V5.6675Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1426">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,38 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1463)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.208V16.9294H8.96936V14.9204H6.94697V16.9294H6V12.208H6.94697V14.1492H8.96936V12.208H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.3398H11.568C11.5905 15.6103 11.6853 15.8224 11.8522 15.9755C12.019 16.1288 12.2242 16.2056 12.4677 16.2056C12.8194 16.2056 13.0698 16.0544 13.2185 15.7524H14.2398C14.1316 16.1132 13.9241 16.4098 13.6175 16.6419C13.3108 16.8742 12.9343 16.9902 12.4879 16.9902C12.1272 16.9902 11.8035 16.91 11.5173 16.7501C11.2309 16.5899 11.0077 16.3635 10.8475 16.0703C10.6874 15.7773 10.6074 15.439 10.6074 15.0555C10.6074 14.6677 10.6861 14.3275 10.8441 14.0342C11.0018 13.7412 11.2229 13.5158 11.5069 13.3578C11.7911 13.2001 12.1179 13.1211 12.4877 13.1211C12.8438 13.1211 13.1631 13.1979 13.4449 13.351C13.7267 13.5043 13.9456 13.722 14.1011 14.0038C14.2566 14.2855 14.3346 14.609 14.3346 14.9744C14.3346 15.1099 14.3256 15.2315 14.3075 15.3398ZM13.354 14.7041C13.3494 14.4605 13.2616 14.2655 13.09 14.1191C12.9184 13.9726 12.709 13.8992 12.4609 13.8992C12.2264 13.8992 12.029 13.9701 11.8691 14.1122C11.7089 14.2543 11.6107 14.4515 11.5749 14.7041H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.0342C15.1591 13.7412 15.3641 13.5158 15.6234 13.3578C15.8828 13.2001 16.1722 13.1211 16.4925 13.1211C16.7721 13.1211 17.0169 13.1774 17.2266 13.2903C17.4362 13.4032 17.6041 13.545 17.7304 13.7164V13.1821H18.6842V16.9295H17.7304V16.3815C17.6085 16.5575 17.4406 16.7028 17.2266 16.8179C17.0123 16.9329 16.7654 16.9904 16.4858 16.9904C16.1701 16.9904 15.8824 16.9093 15.6231 16.7467C15.3637 16.5841 15.1586 16.3557 15.0077 16.0603C14.8566 15.7651 14.7812 15.4256 14.7812 15.0421C14.7814 14.6633 14.8571 14.3275 15.0079 14.0342ZM17.5954 14.4637C17.5052 14.2992 17.3832 14.1729 17.2299 14.0849C17.0766 13.9969 16.912 13.9528 16.736 13.9528C16.5603 13.9528 16.3981 13.9957 16.2491 14.0813C16.1004 14.1671 15.9798 14.2921 15.8874 14.4566C15.795 14.6214 15.7486 14.8164 15.7486 15.0416C15.7486 15.2674 15.7948 15.4646 15.8874 15.6335C15.9798 15.8026 16.1014 15.9323 16.2528 16.0225C16.4039 16.1129 16.565 16.1578 16.7364 16.1578C16.9124 16.1578 17.0769 16.1139 17.2302 16.0259C17.3835 15.9379 17.5052 15.8119 17.5956 15.6471C17.6858 15.4826 17.7309 15.2852 17.7309 15.0553C17.7309 14.8254 17.6855 14.6285 17.5954 14.4637Z" fill="white"/>
|
||||
<path d="M19.5936 14.0342C19.7448 13.7412 19.951 13.5158 20.2128 13.3578C20.4743 13.2001 20.7651 13.1211 21.0854 13.1211C21.3289 13.1211 21.5612 13.1743 21.782 13.2801C22.0029 13.3861 22.1788 13.527 22.3097 13.7027V11.9238H23.2701V16.9295H22.3097V16.375C22.1925 16.56 22.028 16.7087 21.8159 16.8215C21.6038 16.9341 21.3581 16.9907 21.0786 16.9907C20.7629 16.9907 20.4743 16.9095 20.2128 16.7469C19.9512 16.5846 19.7448 16.356 19.5936 16.0605C19.4425 15.7653 19.3672 15.4258 19.3672 15.0424C19.3669 14.6634 19.4425 14.3275 19.5936 14.0342ZM22.1808 14.4637C22.0906 14.2992 21.9687 14.1729 21.8154 14.0849C21.6621 13.9969 21.4976 13.9528 21.3216 13.9528C21.1458 13.9528 20.9835 13.9957 20.8346 14.0813C20.6859 14.1671 20.5652 14.2921 20.4728 14.4567C20.3805 14.6214 20.3341 14.8164 20.3341 15.0417C20.3341 15.2674 20.3802 15.4646 20.4728 15.6335C20.5652 15.8026 20.6868 15.9323 20.8382 16.0225C20.9893 16.1129 21.1505 16.1578 21.3218 16.1578C21.4978 16.1578 21.6623 16.1139 21.8157 16.0259C21.969 15.9379 22.0906 15.8119 22.181 15.6471C22.2712 15.4826 22.3163 15.2852 22.3163 15.0553C22.3163 14.8254 22.2712 14.6285 22.1808 14.4637Z" fill="white"/>
|
||||
<path d="M27.6532 15.3398H24.9137C24.9362 15.6103 25.031 15.8224 25.198 15.9755C25.3647 16.1288 25.5699 16.2056 25.8134 16.2056C26.1652 16.2056 26.4155 16.0544 26.5642 15.7524H27.5855C27.4773 16.1132 27.2698 16.4098 26.9632 16.6419C26.6566 16.8742 26.28 16.9902 25.8337 16.9902C25.4729 16.9902 25.1492 16.91 24.863 16.7501C24.5766 16.5899 24.3534 16.3635 24.1932 16.0703C24.0331 15.7773 23.9531 15.439 23.9531 15.0555C23.9531 14.6677 24.0319 14.3275 24.1898 14.0342C24.3475 13.7412 24.5686 13.5158 24.8526 13.3578C25.1368 13.2001 25.4636 13.1211 25.8334 13.1211C26.1895 13.1211 26.5088 13.1979 26.7906 13.351C27.0724 13.5043 27.2913 13.722 27.4468 14.0038C27.6023 14.2855 27.6803 14.609 27.6803 14.9744C27.6803 15.1099 27.671 15.2315 27.6532 15.3398ZM26.6995 14.7041C26.6948 14.4605 26.6071 14.2655 26.4355 14.1191C26.2639 13.9726 26.0545 13.8992 25.8064 13.8992C25.5719 13.8992 25.3744 13.9701 25.2145 14.1122C25.0544 14.2543 24.9562 14.4515 24.9203 14.7041H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.2968C29.9893 13.1842 30.2136 13.1279 30.4661 13.1279V14.1221H30.2158C29.9181 14.1221 29.6936 14.1921 29.5428 14.3318C29.3916 14.4717 29.3161 14.7152 29.3161 15.0623V16.9292H28.3691V13.182H29.3161V13.7638C29.438 13.5652 29.5969 13.4097 29.7931 13.2968Z" fill="white"/>
|
||||
<path d="M8.59965 25.9192C9.39501 24.6717 10.7159 24.0479 12.5621 24.0479C14.4077 24.0479 15.7289 24.6719 16.5245 25.9192C17.3198 27.1669 17.7179 28.892 17.7179 31.0942C17.7179 33.3094 17.3198 35.0471 16.5245 36.3076C15.7286 37.5677 14.4077 38.198 12.5621 38.198C10.7159 38.198 9.39501 37.568 8.59965 36.3076C7.80381 35.0474 7.40625 33.3094 7.40625 31.0942C7.40625 28.892 7.80381 27.1669 8.59965 25.9192ZM14.9013 28.7169C14.7802 28.0742 14.5384 27.5489 14.1757 27.1416C13.8128 26.7343 13.2748 26.5305 12.5621 26.5305C11.8489 26.5305 11.3114 26.7343 10.9484 27.1416C10.5857 27.5491 10.3437 28.0744 10.2228 28.7169C10.1017 29.36 10.0415 30.1524 10.0415 31.0942C10.0415 32.0619 10.0987 32.8734 10.2133 33.5291C10.3279 34.1847 10.5697 34.7129 10.9389 35.1139C11.308 35.5149 11.8489 35.7155 12.5621 35.7155C13.2748 35.7155 13.8159 35.5149 14.1852 35.1139C14.5542 34.7129 14.7963 34.1847 14.9108 33.5291C15.0254 32.8736 15.0827 32.0619 15.0827 31.0942C15.0829 30.1524 15.0222 29.3597 14.9013 28.7169Z" fill="white"/>
|
||||
<path d="M21.1271 25.0315C21.9607 24.3378 23.0588 23.9907 24.4211 23.9907C25.3503 23.9907 26.1462 24.1531 26.8082 24.4777C27.47 24.8024 27.9697 25.2414 28.3073 25.7952C28.6444 26.349 28.8133 26.9762 28.8133 27.6762C28.8133 28.4784 28.6061 29.1563 28.1927 29.7101C27.7788 30.2639 27.2857 30.6361 26.7126 30.8272V30.9035C27.451 31.1326 28.0272 31.5402 28.4408 32.1256C28.8542 32.7114 29.0614 33.4624 29.0614 34.3791C29.0614 35.143 28.8864 35.8241 28.5364 36.4225C28.1861 37.0211 27.6706 37.4889 26.9895 37.826C26.3085 38.1636 25.4905 38.332 24.5357 38.332C23.0969 38.332 21.9256 37.9693 21.0221 37.2437C20.118 36.518 19.6405 35.4487 19.5898 34.0354H22.1869C22.2123 34.6594 22.4256 35.1591 22.8268 35.5345C23.2277 35.9101 23.7781 36.0978 24.4784 36.0978C25.1278 36.0978 25.6272 35.9164 25.9775 35.5535C26.3275 35.1908 26.5028 34.7228 26.5028 34.15C26.5028 33.3861 26.2607 32.8389 25.7771 32.5076C25.293 32.1768 24.542 32.0111 23.5237 32.0111H22.9699V29.8149H23.5237C25.3313 29.8149 26.2354 29.2104 26.2354 28.0009C26.2354 27.4537 26.073 27.0269 25.7484 26.7215C25.4237 26.416 24.9559 26.2632 24.3449 26.2632C23.7462 26.2632 23.285 26.4255 22.9604 26.7502C22.6357 27.0749 22.4477 27.4854 22.397 27.9819H19.7809C19.8445 26.7088 20.2932 25.7255 21.1271 25.0315Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<rect x="37" y="15" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 29.5619V30.7346H49V23.0972H50.3026V29.5617L53.1003 29.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 26.9997C61.193 27.5607 61.1077 28.0779 60.9385 28.5558C60.7691 29.0315 60.5293 29.4444 60.2199 29.7935C59.9096 30.1427 59.537 30.4139 59.1014 30.6099C58.6653 30.8046 58.1815 30.9026 57.6486 30.9026C57.1194 30.9026 56.6368 30.8048 56.2012 30.6099C55.7652 30.4139 55.3915 30.1427 55.0802 29.7935C54.7685 29.4444 54.5276 29.0315 54.3563 28.5558C54.1852 28.0779 54.0996 27.5607 54.0996 26.9997C54.0996 26.4388 54.1849 25.9216 54.3563 25.4438C54.5274 24.9681 54.7685 24.5552 55.0802 24.206C55.3915 23.8569 55.7652 23.5857 56.2012 23.3896C56.6368 23.195 57.1192 23.0972 57.6486 23.0972C58.0038 23.0972 58.3379 23.1418 58.6504 23.2311C58.9636 23.3205 59.251 23.4481 59.5128 23.6112C59.7739 23.7763 60.0089 23.9741 60.2168 24.2095C60.4252 24.4435 60.6016 24.7043 60.7469 24.9939C60.8924 25.2824 61.0026 25.5954 61.0787 25.9336C61.1545 26.2707 61.193 26.6271 61.193 26.9997ZM59.8614 26.9997C59.8614 26.5803 59.8097 26.2056 59.7064 25.8717C59.6032 25.5406 59.456 25.2563 59.2659 25.0245C59.0753 24.7923 58.844 24.6147 58.5712 24.4914C58.298 24.368 57.9908 24.306 57.6489 24.306C57.3064 24.306 56.999 24.3676 56.7263 24.4914C56.4538 24.6147 56.2215 24.7923 56.0291 25.0245C55.8368 25.2566 55.6896 25.5406 55.5862 25.8717C55.4829 26.2059 55.4312 26.5806 55.4312 26.9997C55.4312 27.419 55.4829 27.7936 55.5862 28.1279C55.6896 28.46 55.8371 28.7408 56.0291 28.9719C56.2215 29.2041 56.4535 29.3806 56.7263 29.5029C56.999 29.6263 57.3064 29.6891 57.6489 29.6891C57.9908 29.6891 58.2982 29.6263 58.5712 29.5029C58.844 29.3806 59.075 29.2038 59.2659 28.9719C59.4563 28.7411 59.6035 28.46 59.7064 28.1279C59.8097 27.7936 59.8614 27.419 59.8614 26.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 26.9898V30.0793C68.0256 30.3647 67.6471 30.5732 67.2451 30.7051C66.8432 30.838 66.4135 30.9032 65.955 30.9032C65.3836 30.9032 64.8661 30.8074 64.4033 30.6126C63.9399 30.4197 63.5448 30.1507 63.2174 29.8047C62.8896 29.4609 62.6368 29.0479 62.4594 28.568C62.2822 28.0901 62.1934 27.5676 62.1934 27.0001C62.1934 26.4255 62.2787 25.8998 62.4501 25.4217C62.6207 24.9418 62.8637 24.5299 63.1784 24.186C63.4931 23.8401 63.8751 23.5718 64.3233 23.3824C64.7721 23.1921 65.2759 23.0972 65.8341 23.0972C66.118 23.0972 66.3837 23.1216 66.6307 23.1705C66.8773 23.2206 67.1067 23.2875 67.318 23.3737C67.5296 23.4598 67.7224 23.5641 67.8964 23.6886C68.0705 23.8119 68.2306 23.9462 68.3759 24.094L68.0032 24.7391C67.9452 24.8423 67.8691 24.9043 67.7755 24.9266C67.6819 24.95 67.5805 24.9244 67.4706 24.851C67.3638 24.784 67.2573 24.7171 67.1511 24.6501C67.0441 24.583 66.9256 24.5243 66.7949 24.4766C66.6648 24.4267 66.5173 24.3852 66.3545 24.3543C66.1917 24.3235 66.0032 24.3064 65.7907 24.3064C65.4453 24.3064 65.1326 24.3693 64.8537 24.4969C64.5746 24.6245 64.3367 24.8046 64.1395 25.0396C63.9428 25.277 63.7912 25.5589 63.6844 25.891C63.5782 26.221 63.5248 26.5926 63.5248 27.0001C63.5248 27.4365 63.5818 27.8271 63.6966 28.171C63.8112 28.5136 63.9726 28.8044 64.181 29.0415C64.3889 29.2798 64.6399 29.4609 64.9337 29.5863C65.2274 29.7119 65.5552 29.7735 65.9167 29.7735C66.1748 29.7735 66.4054 29.7428 66.609 29.6842C66.8122 29.6236 67.0109 29.5428 67.2047 29.4393V28.0558H66.3233C66.2394 28.0558 66.1741 28.0313 66.1278 27.9803C66.081 27.9281 66.0571 27.8665 66.0571 27.7931V26.9895L68.3808 26.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 26.9997C76.4742 27.5607 76.3889 28.0779 76.2195 28.5558C76.0499 29.0315 75.8103 29.4444 75.5005 29.7935C75.1906 30.1427 74.818 30.4139 74.3819 30.6099C73.9463 30.8046 73.462 30.9026 72.9296 30.9026C72.4004 30.9026 71.9178 30.8048 71.4822 30.6099C71.0462 30.4139 70.6725 30.1427 70.3612 29.7935C70.0495 29.4444 69.8082 29.0315 69.6373 28.5558C69.4662 28.0779 69.3809 27.5607 69.3809 26.9997C69.3809 26.4388 69.4662 25.9216 69.6373 25.4438C69.8079 24.9681 70.0495 24.5552 70.3612 24.206C70.6725 23.8569 71.0462 23.5857 71.4822 23.3896C71.9178 23.195 72.4004 23.0972 72.9296 23.0972C73.2848 23.0972 73.6189 23.1418 73.9317 23.2311C74.2446 23.3205 74.532 23.4481 74.7936 23.6112C75.0551 23.7763 75.2896 23.9741 75.4978 24.2095C75.7062 24.4435 75.8827 24.7043 76.0282 24.9939C76.1734 25.2824 76.2839 25.5954 76.3599 25.9336C76.4357 26.2707 76.4742 26.6271 76.4742 26.9997ZM75.1421 26.9997C75.1421 26.5803 75.091 26.2056 74.9876 25.8717C74.8843 25.5406 74.7373 25.2563 74.5471 25.0245C74.3565 24.7923 74.1252 24.6147 73.8525 24.4914C73.5792 24.368 73.2718 24.306 72.9299 24.306C72.5874 24.306 72.28 24.3676 72.0075 24.4914C71.7348 24.6147 71.5027 24.7923 71.3104 25.0245C71.1183 25.2566 70.9704 25.5406 70.8675 25.8717C70.7641 26.2059 70.7122 26.5806 70.7122 26.9997C70.7122 27.419 70.7639 27.7936 70.8675 28.1279C70.9704 28.46 71.1183 28.7408 71.3104 28.9719C71.5027 29.2041 71.7348 29.3806 72.0075 29.5029C72.28 29.6263 72.5876 29.6891 72.9299 29.6891C73.2718 29.6891 73.5792 29.6263 73.8525 29.5029C74.125 29.3806 74.3563 29.2038 74.5471 28.9719C74.7373 28.7411 74.8843 28.46 74.9876 28.1279C75.0907 27.7936 75.1421 27.419 75.1421 26.9997Z" fill="#041F41"/>
|
||||
<path d="M96.4596 27.2789C96.4596 28.5043 95.4666 29.4976 94.2406 29.4976H83.6936C82.4686 29.4976 81.4746 28.5045 81.4746 27.2789V26.721C81.4746 25.4957 82.4676 24.5024 83.6936 24.5024H94.2406C95.4656 24.5024 96.4596 25.4954 96.4596 26.721V27.2789Z" fill="#858C97"/>
|
||||
<path d="M114.445 27.2789C114.445 28.5043 113.451 29.4976 112.226 29.4976H101.678C100.453 29.4976 99.459 28.5045 99.459 27.2789V26.721C99.459 25.4957 100.453 24.5024 101.678 24.5024H112.226C113.451 24.5024 114.445 25.4954 114.445 26.721V27.2789Z" fill="#858C97"/>
|
||||
<path d="M132.43 27.2789C132.43 28.5043 131.437 29.4976 130.211 29.4976H119.664C118.438 29.4976 117.445 28.5045 117.445 27.2789V26.721C117.445 25.4957 118.438 24.5024 119.664 24.5024H130.211C131.436 24.5024 132.43 25.4954 132.43 26.721V27.2789Z" fill="#858C97"/>
|
||||
<path d="M150.415 27.2789C150.415 28.5043 149.421 29.4976 148.196 29.4976H137.649C136.424 29.4976 135.43 28.5045 135.43 27.2789V26.721C135.43 25.4957 136.423 24.5024 137.649 24.5024H148.196C149.421 24.5024 150.415 25.4954 150.415 26.721V27.2789Z" fill="#858C97"/>
|
||||
<rect x="194.414" y="23" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="23" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="23" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M222 5.6675C222 6.40345 221.404 7 220.667 7H214.333C213.597 7 213 6.40357 213 5.6675V5.33244C213 4.59655 213.596 4 214.333 4H220.667C221.403 4 222 4.59637 222 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="209" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1463">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,43 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1500)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2847V17.0061H8.96936V14.9971H6.94697V17.0061H6V12.2847H6.94697V14.2259H8.96936V12.2847H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.4165H11.568C11.5905 15.687 11.6853 15.8991 11.8522 16.0522C12.019 16.2055 12.2242 16.2823 12.4677 16.2823C12.8194 16.2823 13.0698 16.1311 13.2185 15.8291H14.2398C14.1316 16.1899 13.9241 16.4865 13.6175 16.7186C13.3108 16.9509 12.9343 17.0669 12.4879 17.0669C12.1272 17.0669 11.8035 16.9867 11.5173 16.8268C11.2309 16.6666 11.0077 16.4402 10.8475 16.147C10.6874 15.854 10.6074 15.5157 10.6074 15.1322C10.6074 14.7444 10.6861 14.4042 10.8441 14.1109C11.0018 13.8179 11.2229 13.5925 11.5069 13.4345C11.7911 13.2768 12.1179 13.1978 12.4877 13.1978C12.8438 13.1978 13.1631 13.2746 13.4449 13.4277C13.7267 13.581 13.9456 13.7987 14.1011 14.0805C14.2566 14.3622 14.3346 14.6857 14.3346 15.0511C14.3346 15.1866 14.3256 15.3082 14.3075 15.4165ZM13.354 14.7808C13.3494 14.5372 13.2616 14.3422 13.09 14.1958C12.9184 14.0493 12.709 13.9759 12.4609 13.9759C12.2264 13.9759 12.029 14.0468 11.8691 14.1889C11.7089 14.331 11.6107 14.5282 11.5749 14.7808H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1109C15.1591 13.8179 15.3641 13.5925 15.6234 13.4345C15.8828 13.2768 16.1722 13.1978 16.4925 13.1978C16.7721 13.1978 17.0169 13.2541 17.2266 13.367C17.4362 13.4799 17.6041 13.6217 17.7304 13.7931V13.2588H18.6842V17.0062H17.7304V16.4582C17.6085 16.6342 17.4406 16.7795 17.2266 16.8946C17.0123 17.0096 16.7654 17.0671 16.4858 17.0671C16.1701 17.0671 15.8824 16.986 15.6231 16.8234C15.3637 16.6608 15.1586 16.4324 15.0077 16.137C14.8566 15.8418 14.7812 15.5023 14.7812 15.1188C14.7814 14.74 14.8571 14.4042 15.0079 14.1109ZM17.5954 14.5404C17.5052 14.3759 17.3832 14.2496 17.2299 14.1616C17.0766 14.0736 16.912 14.0295 16.736 14.0295C16.5603 14.0295 16.3981 14.0724 16.2491 14.158C16.1004 14.2438 15.9798 14.3688 15.8874 14.5333C15.795 14.6981 15.7486 14.8931 15.7486 15.1183C15.7486 15.3441 15.7948 15.5413 15.8874 15.7102C15.9798 15.8793 16.1014 16.009 16.2528 16.0992C16.4039 16.1896 16.565 16.2345 16.7364 16.2345C16.9124 16.2345 17.0769 16.1906 17.2302 16.1026C17.3835 16.0146 17.5052 15.8886 17.5956 15.7238C17.6858 15.5593 17.7309 15.3619 17.7309 15.132C17.7309 14.9021 17.6855 14.7052 17.5954 14.5404Z" fill="white"/>
|
||||
<path d="M19.5936 14.1108C19.7448 13.8178 19.951 13.5924 20.2128 13.4344C20.4743 13.2767 20.7651 13.1977 21.0854 13.1977C21.3289 13.1977 21.5612 13.2509 21.782 13.3567C22.0029 13.4627 22.1788 13.6036 22.3097 13.7793V12.0005H23.2701V17.0061H22.3097V16.4516C22.1925 16.6366 22.028 16.7853 21.8159 16.8981C21.6038 17.0107 21.3581 17.0673 21.0786 17.0673C20.7629 17.0673 20.4743 16.9861 20.2128 16.8235C19.9512 16.6612 19.7448 16.4326 19.5936 16.1371C19.4425 15.8419 19.3672 15.5024 19.3672 15.119C19.3669 14.74 19.4425 14.4041 19.5936 14.1108ZM22.1808 14.5403C22.0906 14.3758 21.9687 14.2495 21.8154 14.1615C21.6621 14.0735 21.4976 14.0294 21.3216 14.0294C21.1458 14.0294 20.9835 14.0723 20.8346 14.1579C20.6859 14.2437 20.5652 14.3687 20.4728 14.5333C20.3805 14.698 20.3341 14.893 20.3341 15.1183C20.3341 15.344 20.3802 15.5412 20.4728 15.7101C20.5652 15.8792 20.6868 16.0089 20.8382 16.0991C20.9893 16.1895 21.1505 16.2344 21.3218 16.2344C21.4978 16.2344 21.6623 16.1905 21.8157 16.1025C21.969 16.0145 22.0906 15.8885 22.181 15.7237C22.2712 15.5592 22.3163 15.3618 22.3163 15.1319C22.3163 14.902 22.2712 14.7051 22.1808 14.5403Z" fill="white"/>
|
||||
<path d="M27.6532 15.4165H24.9137C24.9362 15.687 25.031 15.8991 25.198 16.0522C25.3647 16.2055 25.5699 16.2823 25.8134 16.2823C26.1652 16.2823 26.4155 16.1311 26.5642 15.8291H27.5855C27.4773 16.1899 27.2698 16.4865 26.9632 16.7186C26.6566 16.9509 26.28 17.0669 25.8337 17.0669C25.4729 17.0669 25.1492 16.9867 24.863 16.8268C24.5766 16.6666 24.3534 16.4402 24.1932 16.147C24.0331 15.854 23.9531 15.5157 23.9531 15.1322C23.9531 14.7444 24.0319 14.4042 24.1898 14.1109C24.3475 13.8179 24.5686 13.5925 24.8526 13.4345C25.1368 13.2768 25.4636 13.1978 25.8334 13.1978C26.1895 13.1978 26.5088 13.2746 26.7906 13.4277C27.0724 13.581 27.2913 13.7987 27.4468 14.0805C27.6023 14.3622 27.6803 14.6857 27.6803 15.0511C27.6803 15.1866 27.671 15.3082 27.6532 15.4165ZM26.6995 14.7808C26.6948 14.5372 26.6071 14.3422 26.4355 14.1958C26.2639 14.0493 26.0545 13.9759 25.8064 13.9759C25.5719 13.9759 25.3744 14.0468 25.2145 14.1889C25.0544 14.331 24.9562 14.5282 24.9203 14.7808H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.3735C29.9893 13.2609 30.2136 13.2046 30.4661 13.2046V14.1988H30.2158C29.9181 14.1988 29.6936 14.2688 29.5428 14.4085C29.3916 14.5484 29.3161 14.7919 29.3161 15.139V17.0059H28.3691V13.2587H29.3161V13.8405C29.438 13.6419 29.5969 13.4864 29.7931 13.3735Z" fill="white"/>
|
||||
<path d="M7.79692 25.9387C8.59227 24.6912 9.91319 24.0674 11.7593 24.0674C13.605 24.0674 14.9261 24.6914 15.7217 25.9387C16.5171 27.1864 16.9151 28.9115 16.9151 31.1137C16.9151 33.3289 16.5171 35.0666 15.7217 36.3271C14.9259 37.5873 13.605 38.2176 11.7593 38.2176C9.91319 38.2176 8.59227 37.5875 7.79692 36.3271C7.00107 35.0669 6.60352 33.3289 6.60352 31.1137C6.60352 28.9115 7.00107 27.1864 7.79692 25.9387ZM14.0986 28.7362C13.9775 28.0934 13.7357 27.5682 13.373 27.1609C13.01 26.7535 12.4721 26.5498 11.7593 26.5498C11.0461 26.5498 10.5086 26.7535 10.1457 27.1609C9.78299 27.5684 9.54095 28.0937 9.42005 28.7362C9.29891 29.3792 9.2387 30.1717 9.2387 31.1135C9.2387 32.0812 9.29598 32.8926 9.41054 33.5483C9.52511 34.204 9.76691 34.7322 10.1362 35.1332C10.5052 35.5342 11.0461 35.7348 11.7593 35.7348C12.4721 35.7348 13.0132 35.5342 13.3825 35.1332C13.7515 34.7322 13.9935 34.204 14.1081 33.5483C14.2227 32.8929 14.2799 32.0812 14.2799 31.1135C14.2799 30.1717 14.2195 29.3792 14.0986 28.7362Z" fill="white"/>
|
||||
<path d="M18.8262 35.5436V33.443L25.0706 24.5059H28.1832V33.2136H29.8637V35.5434H28.1832V38.2551H25.5098V35.5434L18.8262 35.5436ZM25.6816 27.3707L21.767 33.2141H25.6816V27.3707Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1500" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1500)"/>
|
||||
<path d="M63.985 43.7765C63.985 45.0019 62.992 45.9952 61.766 45.9952H51.219C49.994 45.9952 49 45.0021 49 43.7765V43.2186C49 41.9933 49.993 41 51.219 41H61.766C62.991 41 63.985 41.993 63.985 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M81.9704 43.7765C81.9704 45.0019 80.9764 45.9952 79.7514 45.9952H69.2034C67.9784 45.9952 66.9844 45.0021 66.9844 43.7765V43.2186C66.9844 41.9933 67.9784 41 69.2034 41H79.7514C80.9764 41 81.9704 41.993 81.9704 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M99.9557 43.7765C99.9557 45.0019 98.9627 45.9952 97.7367 45.9952H87.1897C85.9637 45.9952 84.9707 45.0021 84.9707 43.7765V43.2186C84.9707 41.9933 85.9637 41 87.1897 41H97.7367C98.9617 41 99.9557 41.993 99.9557 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M117.94 43.7765C117.94 45.0019 116.946 45.9952 115.721 45.9952H105.174C103.949 45.9952 102.955 45.0021 102.955 43.7765V43.2186C102.955 41.9933 103.948 41 105.174 41H115.721C116.946 41 117.94 41.993 117.94 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M222 5.6675C222 6.40345 221.404 7 220.667 7H214.333C213.597 7 213 6.40357 213 5.6675V5.33244C213 4.59655 213.596 4 214.333 4H220.667C221.403 4 222 4.59637 222 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="209" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1500">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,46 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1537)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2842V17.0056H8.96936V14.9966H6.94697V17.0056H6V12.2842H6.94697V14.2254H8.96936V12.2842H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.416H11.568C11.5905 15.6865 11.6853 15.8986 11.8522 16.0517C12.019 16.205 12.2242 16.2818 12.4677 16.2818C12.8194 16.2818 13.0698 16.1306 13.2185 15.8286H14.2398C14.1316 16.1894 13.9241 16.486 13.6175 16.7181C13.3108 16.9504 12.9343 17.0664 12.4879 17.0664C12.1272 17.0664 11.8035 16.9862 11.5173 16.8263C11.2309 16.6661 11.0077 16.4397 10.8475 16.1465C10.6874 15.8535 10.6074 15.5152 10.6074 15.1317C10.6074 14.7439 10.6861 14.4037 10.8441 14.1104C11.0018 13.8174 11.2229 13.592 11.5069 13.434C11.7911 13.2763 12.1179 13.1973 12.4877 13.1973C12.8438 13.1973 13.1631 13.2741 13.4449 13.4272C13.7267 13.5805 13.9456 13.7982 14.1011 14.08C14.2566 14.3617 14.3346 14.6852 14.3346 15.0506C14.3346 15.1861 14.3256 15.3077 14.3075 15.416ZM13.354 14.7803C13.3494 14.5367 13.2616 14.3417 13.09 14.1953C12.9184 14.0488 12.709 13.9754 12.4609 13.9754C12.2264 13.9754 12.029 14.0463 11.8691 14.1884C11.7089 14.3305 11.6107 14.5277 11.5749 14.7803H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1104C15.1591 13.8174 15.3641 13.592 15.6234 13.434C15.8828 13.2763 16.1722 13.1973 16.4925 13.1973C16.7721 13.1973 17.0169 13.2536 17.2266 13.3665C17.4362 13.4794 17.6041 13.6212 17.7304 13.7926V13.2583H18.6842V17.0057H17.7304V16.4577C17.6085 16.6337 17.4406 16.779 17.2266 16.8941C17.0123 17.0091 16.7654 17.0666 16.4858 17.0666C16.1701 17.0666 15.8824 16.9855 15.6231 16.8229C15.3637 16.6603 15.1586 16.4319 15.0077 16.1365C14.8566 15.8413 14.7812 15.5018 14.7812 15.1183C14.7814 14.7395 14.8571 14.4037 15.0079 14.1104ZM17.5954 14.5399C17.5052 14.3754 17.3832 14.2491 17.2299 14.1611C17.0766 14.0731 16.912 14.029 16.736 14.029C16.5603 14.029 16.3981 14.0719 16.2491 14.1575C16.1004 14.2433 15.9798 14.3683 15.8874 14.5328C15.795 14.6976 15.7486 14.8926 15.7486 15.1178C15.7486 15.3436 15.7948 15.5408 15.8874 15.7097C15.9798 15.8788 16.1014 16.0085 16.2528 16.0987C16.4039 16.1891 16.565 16.234 16.7364 16.234C16.9124 16.234 17.0769 16.1901 17.2302 16.1021C17.3835 16.0141 17.5052 15.8881 17.5956 15.7233C17.6858 15.5588 17.7309 15.3614 17.7309 15.1315C17.7309 14.9016 17.6855 14.7047 17.5954 14.5399Z" fill="white"/>
|
||||
<path d="M19.5936 14.1104C19.7448 13.8174 19.951 13.592 20.2128 13.434C20.4743 13.2763 20.7651 13.1973 21.0854 13.1973C21.3289 13.1973 21.5612 13.2505 21.782 13.3563C22.0029 13.4623 22.1788 13.6032 22.3097 13.7789V12H23.2701V17.0057H22.3097V16.4512C22.1925 16.6362 22.028 16.7849 21.8159 16.8977C21.6038 17.0103 21.3581 17.0669 21.0786 17.0669C20.7629 17.0669 20.4743 16.9857 20.2128 16.8231C19.9512 16.6608 19.7448 16.4322 19.5936 16.1367C19.4425 15.8415 19.3672 15.502 19.3672 15.1186C19.3669 14.7396 19.4425 14.4037 19.5936 14.1104ZM22.1808 14.5399C22.0906 14.3754 21.9687 14.2491 21.8154 14.1611C21.6621 14.0731 21.4976 14.029 21.3216 14.029C21.1458 14.029 20.9835 14.0719 20.8346 14.1575C20.6859 14.2433 20.5652 14.3683 20.4728 14.5329C20.3805 14.6976 20.3341 14.8926 20.3341 15.1179C20.3341 15.3436 20.3802 15.5408 20.4728 15.7097C20.5652 15.8788 20.6868 16.0085 20.8382 16.0987C20.9893 16.1891 21.1505 16.234 21.3218 16.234C21.4978 16.234 21.6623 16.1901 21.8157 16.1021C21.969 16.0141 22.0906 15.8881 22.181 15.7233C22.2712 15.5588 22.3163 15.3614 22.3163 15.1315C22.3163 14.9016 22.2712 14.7047 22.1808 14.5399Z" fill="white"/>
|
||||
<path d="M27.6532 15.416H24.9137C24.9362 15.6865 25.031 15.8986 25.198 16.0517C25.3647 16.205 25.5699 16.2818 25.8134 16.2818C26.1652 16.2818 26.4155 16.1306 26.5642 15.8286H27.5855C27.4773 16.1894 27.2698 16.486 26.9632 16.7181C26.6566 16.9504 26.28 17.0664 25.8337 17.0664C25.4729 17.0664 25.1492 16.9862 24.863 16.8263C24.5766 16.6661 24.3534 16.4397 24.1932 16.1465C24.0331 15.8535 23.9531 15.5152 23.9531 15.1317C23.9531 14.7439 24.0319 14.4037 24.1898 14.1104C24.3475 13.8174 24.5686 13.592 24.8526 13.434C25.1368 13.2763 25.4636 13.1973 25.8334 13.1973C26.1895 13.1973 26.5088 13.2741 26.7906 13.4272C27.0724 13.5805 27.2913 13.7982 27.4468 14.08C27.6023 14.3617 27.6803 14.6852 27.6803 15.0506C27.6803 15.1861 27.671 15.3077 27.6532 15.416ZM26.6995 14.7803C26.6948 14.5367 26.6071 14.3417 26.4355 14.1953C26.2639 14.0488 26.0545 13.9754 25.8064 13.9754C25.5719 13.9754 25.3744 14.0463 25.2145 14.1884C25.0544 14.3305 24.9562 14.5277 24.9203 14.7803H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.373C29.9893 13.2604 30.2136 13.2041 30.4661 13.2041V14.1983H30.2158C29.9181 14.1983 29.6936 14.2683 29.5428 14.408C29.3916 14.5479 29.3161 14.7914 29.3161 15.1385V17.0054H28.3691V13.2582H29.3161V13.84C29.438 13.6414 29.5969 13.4859 29.7931 13.373Z" fill="white"/>
|
||||
<path d="M8.1309 25.9382C8.92626 24.6907 10.2471 24.0669 12.0933 24.0669C13.9389 24.0669 15.2601 24.6909 16.0557 25.9382C16.851 27.1859 17.2491 28.911 17.2491 31.1132C17.2491 33.3284 16.851 35.0661 16.0557 36.3266C15.2598 37.5868 13.9389 38.2171 12.0933 38.2171C10.2471 38.2171 8.92626 37.587 8.1309 36.3266C7.33506 35.0664 6.9375 33.3284 6.9375 31.1132C6.93726 28.911 7.33506 27.1862 8.1309 25.9382ZM14.4325 28.736C14.3114 28.0932 14.0696 27.5679 13.7069 27.1606C13.344 26.7533 12.806 26.5495 12.0933 26.5495C11.3801 26.5495 10.8426 26.7533 10.4796 27.1606C10.1169 27.5681 9.87494 28.0934 9.75404 28.736C9.63289 29.379 9.57269 30.1714 9.57269 31.1132C9.57269 32.0809 9.62997 32.8924 9.74453 33.5481C9.85909 34.2038 10.1009 34.732 10.4701 35.1329C10.8392 35.5339 11.3801 35.7345 12.0933 35.7345C12.806 35.7345 13.3471 35.5339 13.7164 35.1329C14.0854 34.732 14.3275 34.2038 14.442 33.5481C14.5566 32.8926 14.6139 32.0809 14.6139 31.1132C14.6139 30.1714 14.5534 29.379 14.4325 28.736Z" fill="white"/>
|
||||
<path d="M28.6302 26.6447H22.4431V29.91C22.7105 29.5792 23.0925 29.3084 23.5888 29.0983C24.0853 28.8882 24.6135 28.7834 25.1736 28.7834C26.192 28.7834 27.0261 29.0062 27.6752 29.4517C28.3246 29.8976 28.7953 30.4672 29.0883 31.1609C29.381 31.8551 29.5275 32.5964 29.5275 33.3856C29.5275 34.8498 29.1104 36.0274 28.2768 36.9185C27.4429 37.8097 26.2556 38.2553 24.7154 38.2553C23.2641 38.2553 22.1053 37.8926 21.24 37.1669C20.3739 36.4413 19.8843 35.4928 19.7695 34.3216H22.3666C22.4812 34.8311 22.7391 35.2384 23.14 35.5438C23.541 35.8492 24.0534 36.002 24.6774 36.002C25.4283 36.002 25.9951 35.7666 26.377 35.2957C26.7587 34.8247 26.9498 34.201 26.9498 33.4241C26.9498 32.6349 26.7556 32.0333 26.3673 31.6197C25.9787 31.206 25.4091 30.9991 24.6581 30.9991C24.1236 30.9991 23.6777 31.1326 23.3214 31.4C22.9648 31.6674 22.7103 32.024 22.5575 32.4694H19.9988V24.2959H28.6302V26.6447Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1537" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1537)"/>
|
||||
<path d="M111.485 43.7765C111.485 45.0019 110.492 45.9952 109.266 45.9952H98.719C97.494 45.9952 96.5 45.0021 96.5 43.7765V43.2186C96.5 41.9933 97.493 41 98.719 41H109.266C110.491 41 111.485 41.993 111.485 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="114.584" y1="35.9976" x2="114.584" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M132.47 43.7765C132.47 45.0019 131.476 45.9952 130.251 45.9952H119.703C118.478 45.9952 117.484 45.0021 117.484 43.7765V43.2186C117.484 41.9933 118.478 41 119.703 41H130.251C131.476 41 132.47 41.993 132.47 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="135.571" y1="35.9976" x2="135.571" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M153.456 43.7765C153.456 45.0019 152.463 45.9952 151.237 45.9952H140.69C139.464 45.9952 138.471 45.0021 138.471 43.7765V43.2186C138.471 41.9933 139.464 41 140.69 41H151.237C152.462 41 153.456 41.993 153.456 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<line x1="156.555" y1="35.9976" x2="156.555" y2="50.9976" stroke="#BDC5D1" stroke-width="0.2"/>
|
||||
<path d="M174.44 43.7765C174.44 45.0019 173.446 45.9952 172.221 45.9952H161.674C160.449 45.9952 159.455 45.0021 159.455 43.7765V43.2186C159.455 41.9933 160.448 41 161.674 41H172.221C173.446 41 174.44 41.993 174.44 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<path d="M85.9434 20.05H184.943C187.125 20.05 188.893 21.8185 188.893 24C188.893 26.1815 187.125 27.95 184.943 27.95H85.9434C83.7618 27.95 81.9934 26.1815 81.9934 24C81.9934 21.8185 83.7618 20.05 85.9434 20.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M188 24C188 22.3431 186.657 21 185 21V21C183.343 21 182 22.3431 182 24V24C182 25.6569 183.343 27 185 27V27C186.657 27 188 25.6569 188 24V24Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1537">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,42 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1574)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2363V16.9577H8.96936V14.9487H6.94697V16.9577H6V12.2363H6.94697V14.1775H8.96936V12.2363H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.3681H11.568C11.5905 15.6386 11.6853 15.8507 11.8522 16.0038C12.019 16.1571 12.2242 16.2339 12.4677 16.2339C12.8194 16.2339 13.0698 16.0827 13.2185 15.7807H14.2398C14.1316 16.1415 13.9241 16.4381 13.6175 16.6702C13.3108 16.9025 12.9343 17.0185 12.4879 17.0185C12.1272 17.0185 11.8035 16.9383 11.5173 16.7784C11.2309 16.6182 11.0077 16.3918 10.8475 16.0986C10.6874 15.8056 10.6074 15.4673 10.6074 15.0838C10.6074 14.696 10.6861 14.3558 10.8441 14.0625C11.0018 13.7695 11.2229 13.5441 11.5069 13.3861C11.7911 13.2284 12.1179 13.1494 12.4877 13.1494C12.8438 13.1494 13.1631 13.2262 13.4449 13.3793C13.7267 13.5326 13.9456 13.7503 14.1011 14.0321C14.2566 14.3138 14.3346 14.6373 14.3346 15.0027C14.3346 15.1382 14.3256 15.2598 14.3075 15.3681ZM13.354 14.7324C13.3494 14.4888 13.2616 14.2938 13.09 14.1474C12.9184 14.0009 12.709 13.9275 12.4609 13.9275C12.2264 13.9275 12.029 13.9984 11.8691 14.1405C11.7089 14.2826 11.6107 14.4798 11.5749 14.7324H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.0625C15.1591 13.7695 15.3641 13.5441 15.6234 13.3861C15.8828 13.2284 16.1722 13.1494 16.4925 13.1494C16.7721 13.1494 17.0169 13.2057 17.2266 13.3186C17.4362 13.4315 17.6041 13.5733 17.7304 13.7447V13.2104H18.6842V16.9578H17.7304V16.4098C17.6085 16.5858 17.4406 16.7311 17.2266 16.8462C17.0123 16.9612 16.7654 17.0187 16.4858 17.0187C16.1701 17.0187 15.8824 16.9376 15.6231 16.775C15.3637 16.6124 15.1586 16.384 15.0077 16.0886C14.8566 15.7934 14.7812 15.4539 14.7812 15.0704C14.7814 14.6916 14.8571 14.3558 15.0079 14.0625ZM17.5954 14.492C17.5052 14.3275 17.3832 14.2012 17.2299 14.1132C17.0766 14.0252 16.912 13.9811 16.736 13.9811C16.5603 13.9811 16.3981 14.024 16.2491 14.1096C16.1004 14.1954 15.9798 14.3204 15.8874 14.4849C15.795 14.6497 15.7486 14.8447 15.7486 15.0699C15.7486 15.2957 15.7948 15.4929 15.8874 15.6618C15.9798 15.8309 16.1014 15.9606 16.2528 16.0508C16.4039 16.1412 16.565 16.1861 16.7364 16.1861C16.9124 16.1861 17.0769 16.1422 17.2302 16.0542C17.3835 15.9662 17.5052 15.8402 17.5956 15.6754C17.6858 15.5109 17.7309 15.3135 17.7309 15.0836C17.7309 14.8537 17.6855 14.6568 17.5954 14.492Z" fill="white"/>
|
||||
<path d="M19.5936 14.0625C19.7448 13.7695 19.951 13.5441 20.2128 13.3861C20.4743 13.2284 20.7651 13.1494 21.0854 13.1494C21.3289 13.1494 21.5612 13.2026 21.782 13.3084C22.0029 13.4144 22.1788 13.5553 22.3097 13.731V11.9521H23.2701V16.9578H22.3097V16.4033C22.1925 16.5883 22.028 16.737 21.8159 16.8498C21.6038 16.9624 21.3581 17.019 21.0786 17.019C20.7629 17.019 20.4743 16.9378 20.2128 16.7752C19.9512 16.6129 19.7448 16.3843 19.5936 16.0888C19.4425 15.7936 19.3672 15.4541 19.3672 15.0707C19.3669 14.6917 19.4425 14.3558 19.5936 14.0625ZM22.1808 14.492C22.0906 14.3275 21.9687 14.2012 21.8154 14.1132C21.6621 14.0252 21.4976 13.9811 21.3216 13.9811C21.1458 13.9811 20.9835 14.024 20.8346 14.1096C20.6859 14.1954 20.5652 14.3204 20.4728 14.485C20.3805 14.6497 20.3341 14.8447 20.3341 15.07C20.3341 15.2957 20.3802 15.4929 20.4728 15.6618C20.5652 15.8309 20.6868 15.9606 20.8382 16.0508C20.9893 16.1412 21.1505 16.1861 21.3218 16.1861C21.4978 16.1861 21.6623 16.1422 21.8157 16.0542C21.969 15.9662 22.0906 15.8402 22.181 15.6754C22.2712 15.5109 22.3163 15.3135 22.3163 15.0836C22.3163 14.8537 22.2712 14.6568 22.1808 14.492Z" fill="white"/>
|
||||
<path d="M27.6532 15.3681H24.9137C24.9362 15.6386 25.031 15.8507 25.198 16.0038C25.3647 16.1571 25.5699 16.2339 25.8134 16.2339C26.1652 16.2339 26.4155 16.0827 26.5642 15.7807H27.5855C27.4773 16.1415 27.2698 16.4381 26.9632 16.6702C26.6566 16.9025 26.28 17.0185 25.8337 17.0185C25.4729 17.0185 25.1492 16.9383 24.863 16.7784C24.5766 16.6182 24.3534 16.3918 24.1932 16.0986C24.0331 15.8056 23.9531 15.4673 23.9531 15.0838C23.9531 14.696 24.0319 14.3558 24.1898 14.0625C24.3475 13.7695 24.5686 13.5441 24.8526 13.3861C25.1368 13.2284 25.4636 13.1494 25.8334 13.1494C26.1895 13.1494 26.5088 13.2262 26.7906 13.3793C27.0724 13.5326 27.2913 13.7503 27.4468 14.0321C27.6023 14.3138 27.6803 14.6373 27.6803 15.0027C27.6803 15.1382 27.671 15.2598 27.6532 15.3681ZM26.6995 14.7324C26.6948 14.4888 26.6071 14.2938 26.4355 14.1474C26.2639 14.0009 26.0545 13.9275 25.8064 13.9275C25.5719 13.9275 25.3744 13.9984 25.2145 14.1405C25.0544 14.2826 24.9562 14.4798 24.9203 14.7324H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.3252C29.9893 13.2126 30.2136 13.1562 30.4661 13.1562V14.1505H30.2158C29.9181 14.1505 29.6936 14.2205 29.5428 14.3602C29.3916 14.5001 29.3161 14.7436 29.3161 15.0907V16.9576H28.3691V13.2104H29.3161V13.7922C29.438 13.5936 29.5969 13.4381 29.7931 13.3252Z" fill="white"/>
|
||||
<path d="M8.20707 25.948C9.00243 24.7005 10.3233 24.0767 12.1695 24.0767C14.0151 24.0767 15.3363 24.7007 16.1319 25.948C16.9272 27.1957 17.3253 28.9208 17.3253 31.123C17.3253 33.3382 16.9272 35.0759 16.1319 36.3364C15.336 37.5966 14.0151 38.2269 12.1695 38.2269C10.3233 38.2269 9.00243 37.5968 8.20707 36.3364C7.41123 35.0762 7.01367 33.3382 7.01367 31.123C7.01367 28.9208 7.41123 27.196 8.20707 25.948ZM14.5087 28.7457C14.3876 28.103 14.1458 27.5777 13.7831 27.1704C13.4201 26.7631 12.8822 26.5593 12.1695 26.5593C11.4562 26.5593 10.9188 26.7631 10.5558 27.1704C10.1932 27.5779 9.9511 28.1032 9.8302 28.7457C9.70906 29.3888 9.64885 30.1812 9.64885 31.123C9.64885 32.0907 9.70613 32.9022 9.8207 33.5579C9.93526 34.2135 10.1771 34.7418 10.5463 35.1427C10.9154 35.5437 11.4562 35.7443 12.1695 35.7443C12.8822 35.7443 13.4233 35.5437 13.7926 35.1427C14.1616 34.7418 14.4037 34.2135 14.5182 33.5579C14.6328 32.9024 14.6901 32.0907 14.6901 31.123C14.6901 30.1812 14.6296 29.3888 14.5087 28.7457Z" fill="white"/>
|
||||
<path d="M25.9104 26.6162C25.5984 26.3488 25.1495 26.2152 24.5642 26.2152C23.6857 26.2152 23.0396 26.5684 22.6259 27.275C22.212 27.9816 21.9987 29.1307 21.9861 30.7219C22.2915 30.2129 22.7371 29.8149 23.3228 29.5285C23.9083 29.2421 24.545 29.0988 25.2323 29.0988C26.0599 29.0988 26.7916 29.2772 27.4283 29.6333C28.0647 29.9899 28.5612 30.5088 28.9178 31.1896C29.274 31.8707 29.4526 32.6887 29.4526 33.6435C29.4526 34.5475 29.271 35.3526 28.9083 36.059C28.5454 36.7657 28.0138 37.3165 27.3137 37.7109C26.6134 38.1058 25.7796 38.303 24.8121 38.303C23.4878 38.303 22.4472 38.0103 21.6899 37.4245C20.9323 36.8393 20.4039 36.021 20.1051 34.9707C19.8057 33.9204 19.6562 32.6251 19.6562 31.0846C19.6562 28.7548 20.0573 26.9952 20.8595 25.8045C21.6616 24.6142 22.9282 24.019 24.6595 24.019C25.9962 24.019 27.0336 24.3819 27.7722 25.1076C28.5105 25.8332 28.9371 26.7373 29.0517 27.8193H26.5691C26.4418 27.2845 26.2222 26.8833 25.9104 26.6162ZM22.9218 31.8865C22.4636 32.2814 22.2345 32.8542 22.2345 33.6052C22.2345 34.3567 22.4475 34.9485 22.8743 35.3812C23.3006 35.8141 23.9022 36.0305 24.6788 36.0305C25.3662 36.0305 25.9104 35.8204 26.3114 35.4004C26.7126 34.9802 26.913 34.414 26.913 33.7008C26.913 32.9627 26.7187 32.3769 26.3307 31.9438C25.9421 31.5111 25.3725 31.2945 24.6215 31.2945C23.9466 31.2945 23.3801 31.4921 22.9218 31.8865Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1574" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1574)"/>
|
||||
<path d="M63.985 43.7765C63.985 45.0019 62.992 45.9952 61.766 45.9952H51.219C49.994 45.9952 49 45.0021 49 43.7765V43.2186C49 41.9933 49.993 41 51.219 41H61.766C62.991 41 63.985 41.993 63.985 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M81.9704 43.7765C81.9704 45.0019 80.9764 45.9952 79.7514 45.9952H69.2034C67.9784 45.9952 66.9844 45.0021 66.9844 43.7765V43.2186C66.9844 41.9933 67.9784 41 69.2034 41H79.7514C80.9764 41 81.9704 41.993 81.9704 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M99.9557 43.7765C99.9557 45.0019 98.9627 45.9952 97.7367 45.9952H87.1897C85.9637 45.9952 84.9707 45.0021 84.9707 43.7765V43.2186C84.9707 41.9933 85.9637 41 87.1897 41H97.7367C98.9617 41 99.9557 41.993 99.9557 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M117.94 43.7765C117.94 45.0019 116.946 45.9952 115.721 45.9952H105.174C103.949 45.9952 102.955 45.0021 102.955 43.7765V43.2186C102.955 41.9933 103.948 41 105.174 41H115.721C116.946 41 117.94 41.993 117.94 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 26.5619V27.7346H49V20.0972H50.3026V26.5617L53.1003 26.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 23.9997C61.193 24.5607 61.1077 25.0779 60.9385 25.5558C60.7691 26.0315 60.5293 26.4444 60.2199 26.7935C59.9096 27.1427 59.537 27.4139 59.1014 27.6099C58.6653 27.8046 58.1815 27.9026 57.6486 27.9026C57.1194 27.9026 56.6368 27.8048 56.2012 27.6099C55.7652 27.4139 55.3915 27.1427 55.0802 26.7935C54.7685 26.4444 54.5276 26.0315 54.3563 25.5558C54.1852 25.0779 54.0996 24.5607 54.0996 23.9997C54.0996 23.4388 54.1849 22.9216 54.3563 22.4438C54.5274 21.9681 54.7685 21.5552 55.0802 21.206C55.3915 20.8569 55.7652 20.5857 56.2012 20.3896C56.6368 20.195 57.1192 20.0972 57.6486 20.0972C58.0038 20.0972 58.3379 20.1418 58.6504 20.2311C58.9636 20.3205 59.251 20.4481 59.5128 20.6112C59.7739 20.7763 60.0089 20.9741 60.2168 21.2095C60.4252 21.4435 60.6016 21.7043 60.7469 21.9939C60.8924 22.2824 61.0026 22.5954 61.0787 22.9336C61.1545 23.2707 61.193 23.6271 61.193 23.9997ZM59.8614 23.9997C59.8614 23.5803 59.8097 23.2056 59.7064 22.8717C59.6032 22.5406 59.456 22.2563 59.2659 22.0245C59.0753 21.7923 58.844 21.6147 58.5712 21.4914C58.298 21.368 57.9908 21.306 57.6489 21.306C57.3064 21.306 56.999 21.3676 56.7263 21.4914C56.4538 21.6147 56.2215 21.7923 56.0291 22.0245C55.8368 22.2566 55.6896 22.5406 55.5862 22.8717C55.4829 23.2059 55.4312 23.5806 55.4312 23.9997C55.4312 24.419 55.4829 24.7936 55.5862 25.1279C55.6896 25.46 55.8371 25.7408 56.0291 25.9719C56.2215 26.2041 56.4535 26.3806 56.7263 26.5029C56.999 26.6263 57.3064 26.6891 57.6489 26.6891C57.9908 26.6891 58.2982 26.6263 58.5712 26.5029C58.844 26.3806 59.075 26.2038 59.2659 25.9719C59.4563 25.7411 59.6035 25.46 59.7064 25.1279C59.8097 24.7936 59.8614 24.419 59.8614 23.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 23.9898V27.0793C68.0256 27.3647 67.6471 27.5732 67.2451 27.7051C66.8432 27.838 66.4135 27.9032 65.955 27.9032C65.3836 27.9032 64.8661 27.8074 64.4033 27.6126C63.9399 27.4197 63.5448 27.1507 63.2174 26.8047C62.8896 26.4609 62.6368 26.0479 62.4594 25.568C62.2822 25.0901 62.1934 24.5676 62.1934 24.0001C62.1934 23.4255 62.2787 22.8998 62.4501 22.4217C62.6207 21.9418 62.8637 21.5299 63.1784 21.186C63.4931 20.8401 63.8751 20.5718 64.3233 20.3824C64.7721 20.1921 65.2759 20.0972 65.8341 20.0972C66.118 20.0972 66.3837 20.1216 66.6307 20.1705C66.8773 20.2206 67.1067 20.2875 67.318 20.3737C67.5296 20.4598 67.7224 20.5641 67.8964 20.6886C68.0705 20.8119 68.2306 20.9462 68.3759 21.094L68.0032 21.7391C67.9452 21.8423 67.8691 21.9043 67.7755 21.9266C67.6819 21.95 67.5805 21.9244 67.4706 21.851C67.3638 21.784 67.2573 21.7171 67.1511 21.6501C67.0441 21.583 66.9256 21.5243 66.7949 21.4766C66.6648 21.4267 66.5173 21.3852 66.3545 21.3543C66.1917 21.3235 66.0032 21.3064 65.7907 21.3064C65.4453 21.3064 65.1326 21.3693 64.8537 21.4969C64.5746 21.6245 64.3367 21.8046 64.1395 22.0396C63.9428 22.277 63.7912 22.5589 63.6844 22.891C63.5782 23.221 63.5248 23.5926 63.5248 24.0001C63.5248 24.4365 63.5818 24.8271 63.6966 25.171C63.8112 25.5136 63.9726 25.8044 64.181 26.0415C64.3889 26.2798 64.6399 26.4609 64.9337 26.5863C65.2274 26.7119 65.5552 26.7735 65.9167 26.7735C66.1748 26.7735 66.4054 26.7428 66.609 26.6842C66.8122 26.6236 67.0109 26.5428 67.2047 26.4393V25.0558H66.3233C66.2394 25.0558 66.1741 25.0313 66.1278 24.9803C66.081 24.9281 66.0571 24.8665 66.0571 24.7931V23.9895L68.3808 23.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 23.9997C76.4742 24.5607 76.3889 25.0779 76.2195 25.5558C76.0499 26.0315 75.8103 26.4444 75.5005 26.7935C75.1906 27.1427 74.818 27.4139 74.3819 27.6099C73.9463 27.8046 73.462 27.9026 72.9296 27.9026C72.4004 27.9026 71.9178 27.8048 71.4822 27.6099C71.0462 27.4139 70.6725 27.1427 70.3612 26.7935C70.0495 26.4444 69.8082 26.0315 69.6373 25.5558C69.4662 25.0779 69.3809 24.5607 69.3809 23.9997C69.3809 23.4388 69.4662 22.9216 69.6373 22.4438C69.8079 21.9681 70.0495 21.5552 70.3612 21.206C70.6725 20.8569 71.0462 20.5857 71.4822 20.3896C71.9178 20.195 72.4004 20.0972 72.9296 20.0972C73.2848 20.0972 73.6189 20.1418 73.9317 20.2311C74.2446 20.3205 74.532 20.4481 74.7936 20.6112C75.0551 20.7763 75.2896 20.9741 75.4978 21.2095C75.7062 21.4435 75.8827 21.7043 76.0282 21.9939C76.1734 22.2824 76.2839 22.5954 76.3599 22.9336C76.4357 23.2707 76.4742 23.6271 76.4742 23.9997ZM75.1421 23.9997C75.1421 23.5803 75.091 23.2056 74.9876 22.8717C74.8843 22.5406 74.7373 22.2563 74.5471 22.0245C74.3565 21.7923 74.1252 21.6147 73.8525 21.4914C73.5792 21.368 73.2718 21.306 72.9299 21.306C72.5874 21.306 72.28 21.3676 72.0075 21.4914C71.7348 21.6147 71.5027 21.7923 71.3104 22.0245C71.1183 22.2566 70.9704 22.5406 70.8675 22.8717C70.7641 23.2059 70.7122 23.5806 70.7122 23.9997C70.7122 24.419 70.7639 24.7936 70.8675 25.1279C70.9704 25.46 71.1183 25.7408 71.3104 25.9719C71.5027 26.2041 71.7348 26.3806 72.0075 26.5029C72.28 26.6263 72.5876 26.6891 72.9299 26.6891C73.2718 26.6891 73.5792 26.6263 73.8525 26.5029C74.125 26.3806 74.3563 26.2038 74.5471 25.9719C74.7373 25.7411 74.8843 25.46 74.9876 25.1279C75.0907 24.7936 75.1421 24.419 75.1421 23.9997Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="198" y="40" width="24" height="8" rx="2" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1574">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,41 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1611)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2842V17.0056H8.96936V14.9966H6.94697V17.0056H6V12.2842H6.94697V14.2254H8.96936V12.2842H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.416H11.568C11.5905 15.6865 11.6853 15.8986 11.8522 16.0517C12.019 16.205 12.2242 16.2818 12.4677 16.2818C12.8194 16.2818 13.0698 16.1306 13.2185 15.8286H14.2398C14.1316 16.1894 13.9241 16.486 13.6175 16.7181C13.3108 16.9504 12.9343 17.0664 12.4879 17.0664C12.1272 17.0664 11.8035 16.9862 11.5173 16.8263C11.2309 16.6661 11.0077 16.4397 10.8475 16.1465C10.6874 15.8535 10.6074 15.5152 10.6074 15.1317C10.6074 14.7439 10.6861 14.4037 10.8441 14.1104C11.0018 13.8174 11.2229 13.592 11.5069 13.434C11.7911 13.2763 12.1179 13.1973 12.4877 13.1973C12.8438 13.1973 13.1631 13.2741 13.4449 13.4272C13.7267 13.5805 13.9456 13.7982 14.1011 14.08C14.2566 14.3617 14.3346 14.6852 14.3346 15.0506C14.3346 15.1861 14.3256 15.3077 14.3075 15.416ZM13.354 14.7803C13.3494 14.5367 13.2616 14.3417 13.09 14.1953C12.9184 14.0488 12.709 13.9754 12.4609 13.9754C12.2264 13.9754 12.029 14.0463 11.8691 14.1884C11.7089 14.3305 11.6107 14.5277 11.5749 14.7803H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.1104C15.1591 13.8174 15.3641 13.592 15.6234 13.434C15.8828 13.2763 16.1722 13.1973 16.4925 13.1973C16.7721 13.1973 17.0169 13.2536 17.2266 13.3665C17.4362 13.4794 17.6041 13.6212 17.7304 13.7926V13.2583H18.6842V17.0057H17.7304V16.4577C17.6085 16.6337 17.4406 16.779 17.2266 16.8941C17.0123 17.0091 16.7654 17.0666 16.4858 17.0666C16.1701 17.0666 15.8824 16.9855 15.6231 16.8229C15.3637 16.6603 15.1586 16.4319 15.0077 16.1365C14.8566 15.8413 14.7812 15.5018 14.7812 15.1183C14.7814 14.7395 14.8571 14.4037 15.0079 14.1104ZM17.5954 14.5399C17.5052 14.3754 17.3832 14.2491 17.2299 14.1611C17.0766 14.0731 16.912 14.029 16.736 14.029C16.5603 14.029 16.3981 14.0719 16.2491 14.1575C16.1004 14.2433 15.9798 14.3683 15.8874 14.5328C15.795 14.6976 15.7486 14.8926 15.7486 15.1178C15.7486 15.3436 15.7948 15.5408 15.8874 15.7097C15.9798 15.8788 16.1014 16.0085 16.2528 16.0987C16.4039 16.1891 16.565 16.234 16.7364 16.234C16.9124 16.234 17.0769 16.1901 17.2302 16.1021C17.3835 16.0141 17.5052 15.8881 17.5956 15.7233C17.6858 15.5588 17.7309 15.3614 17.7309 15.1315C17.7309 14.9016 17.6855 14.7047 17.5954 14.5399Z" fill="white"/>
|
||||
<path d="M19.5936 14.1104C19.7448 13.8174 19.951 13.592 20.2128 13.434C20.4743 13.2763 20.7651 13.1973 21.0854 13.1973C21.3289 13.1973 21.5612 13.2505 21.782 13.3563C22.0029 13.4623 22.1788 13.6032 22.3097 13.7789V12H23.2701V17.0057H22.3097V16.4512C22.1925 16.6362 22.028 16.7849 21.8159 16.8977C21.6038 17.0103 21.3581 17.0669 21.0786 17.0669C20.7629 17.0669 20.4743 16.9857 20.2128 16.8231C19.9512 16.6608 19.7448 16.4322 19.5936 16.1367C19.4425 15.8415 19.3672 15.502 19.3672 15.1186C19.3669 14.7396 19.4425 14.4037 19.5936 14.1104ZM22.1808 14.5399C22.0906 14.3754 21.9687 14.2491 21.8154 14.1611C21.6621 14.0731 21.4976 14.029 21.3216 14.029C21.1458 14.029 20.9835 14.0719 20.8346 14.1575C20.6859 14.2433 20.5652 14.3683 20.4728 14.5329C20.3805 14.6976 20.3341 14.8926 20.3341 15.1179C20.3341 15.3436 20.3802 15.5408 20.4728 15.7097C20.5652 15.8788 20.6868 16.0085 20.8382 16.0987C20.9893 16.1891 21.1505 16.234 21.3218 16.234C21.4978 16.234 21.6623 16.1901 21.8157 16.1021C21.969 16.0141 22.0906 15.8881 22.181 15.7233C22.2712 15.5588 22.3163 15.3614 22.3163 15.1315C22.3163 14.9016 22.2712 14.7047 22.1808 14.5399Z" fill="white"/>
|
||||
<path d="M27.6532 15.416H24.9137C24.9362 15.6865 25.031 15.8986 25.198 16.0517C25.3647 16.205 25.5699 16.2818 25.8134 16.2818C26.1652 16.2818 26.4155 16.1306 26.5642 15.8286H27.5855C27.4773 16.1894 27.2698 16.486 26.9632 16.7181C26.6566 16.9504 26.28 17.0664 25.8337 17.0664C25.4729 17.0664 25.1492 16.9862 24.863 16.8263C24.5766 16.6661 24.3534 16.4397 24.1932 16.1465C24.0331 15.8535 23.9531 15.5152 23.9531 15.1317C23.9531 14.7439 24.0319 14.4037 24.1898 14.1104C24.3475 13.8174 24.5686 13.592 24.8526 13.434C25.1368 13.2763 25.4636 13.1973 25.8334 13.1973C26.1895 13.1973 26.5088 13.2741 26.7906 13.4272C27.0724 13.5805 27.2913 13.7982 27.4468 14.08C27.6023 14.3617 27.6803 14.6852 27.6803 15.0506C27.6803 15.1861 27.671 15.3077 27.6532 15.416ZM26.6995 14.7803C26.6948 14.5367 26.6071 14.3417 26.4355 14.1953C26.2639 14.0488 26.0545 13.9754 25.8064 13.9754C25.5719 13.9754 25.3744 14.0463 25.2145 14.1884C25.0544 14.3305 24.9562 14.5277 24.9203 14.7803H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.373C29.9893 13.2604 30.2136 13.2041 30.4661 13.2041V14.1983H30.2158C29.9181 14.1983 29.6936 14.2683 29.5428 14.408C29.3916 14.5479 29.3161 14.7914 29.3161 15.1385V17.0054H28.3691V13.2582H29.3161V13.84C29.438 13.6414 29.5969 13.4859 29.7931 13.373Z" fill="white"/>
|
||||
<path d="M8.82817 25.9381C9.62353 24.6906 10.9444 24.0669 12.7906 24.0669C14.6362 24.0669 15.9574 24.6909 16.753 25.9381C17.5483 27.1859 17.9464 28.9109 17.9464 31.1132C17.9464 33.3284 17.5483 35.0661 16.753 36.3265C15.9571 37.5867 14.6362 38.217 12.7906 38.217C10.9444 38.217 9.62353 37.587 8.82817 36.3265C8.03233 35.0663 7.63477 33.3284 7.63477 31.1132C7.63453 28.9109 8.03208 27.1859 8.82817 25.9381ZM15.1298 28.7357C15.0087 28.0929 14.7669 27.5676 14.4042 27.1603C14.0413 26.753 13.5033 26.5492 12.7906 26.5492C12.0774 26.5492 11.5399 26.753 11.1769 27.1603C10.8142 27.5679 10.5722 28.0931 10.4513 28.7357C10.3302 29.3787 10.2699 30.1711 10.2699 31.113C10.2699 32.0806 10.3272 32.8921 10.4418 33.5478C10.5564 34.2035 10.7982 34.7317 11.1674 35.1326C11.5365 35.5336 12.0774 35.7342 12.7906 35.7342C13.5033 35.7342 14.0444 35.5336 14.4137 35.1326C14.7827 34.7317 15.0248 34.2035 15.1393 33.5478C15.2539 32.8923 15.3112 32.0806 15.3112 31.113C15.3112 30.1711 15.2505 29.3787 15.1298 28.7357Z" fill="white"/>
|
||||
<path d="M28.8315 26.3584L23.752 38.2554H21.0403L26.1581 26.6641H19.627V24.3726H28.8313L28.8315 26.3584Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1611" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1611)"/>
|
||||
<path d="M115.985 43.7765C115.985 45.0019 114.992 45.9952 113.766 45.9952H103.219C101.994 45.9952 101 45.0021 101 43.7765V43.2186C101 41.9933 101.993 41 103.219 41H113.766C114.991 41 115.985 41.993 115.985 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M133.97 43.7765C133.97 45.0019 132.976 45.9952 131.751 45.9952H121.203C119.978 45.9952 118.984 45.0021 118.984 43.7765V43.2186C118.984 41.9933 119.978 41 121.203 41H131.751C132.976 41 133.97 41.993 133.97 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M151.956 43.7765C151.956 45.0019 150.963 45.9952 149.737 45.9952H139.19C137.964 45.9952 136.971 45.0021 136.971 43.7765V43.2186C136.971 41.9933 137.964 41 139.19 41H149.737C150.962 41 151.956 41.993 151.956 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<path d="M169.94 43.7765C169.94 45.0019 168.946 45.9952 167.721 45.9952H157.174C155.949 45.9952 154.955 45.0021 154.955 43.7765V43.2186C154.955 41.9933 155.948 41 157.174 41H167.721C168.946 41 169.94 41.993 169.94 43.2186V43.7765Z" fill="#858C97"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53 20.05H80C82.1815 20.05 83.95 21.8185 83.95 24C83.95 26.1815 82.1815 27.95 80 27.95H53C50.8185 27.95 49.05 26.1815 49.05 24C49.05 21.8185 50.8185 20.05 53 20.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M83 24C83 22.3431 81.6569 21 80 21V21C78.3431 21 77 22.3431 77 24V24C77 25.6569 78.3431 27 80 27V27C81.6569 27 83 25.6569 83 24V24Z" fill="#041F41"/>
|
||||
<path d="M129.569 26.5619V27.7346H125.469V20.0972H126.771V26.5617L129.569 26.5619Z" fill="#041F41"/>
|
||||
<path d="M137.662 23.9997C137.662 24.5607 137.576 25.0779 137.407 25.5558C137.238 26.0315 136.998 26.4444 136.689 26.7935C136.378 27.1427 136.006 27.4139 135.57 27.6099C135.134 27.8046 134.65 27.9026 134.117 27.9026C133.588 27.9026 133.106 27.8048 132.67 27.6099C132.234 27.4139 131.86 27.1427 131.549 26.7935C131.237 26.4444 130.996 26.0315 130.825 25.5558C130.654 25.0779 130.568 24.5607 130.568 23.9997C130.568 23.4388 130.654 22.9216 130.825 22.4438C130.996 21.9681 131.237 21.5552 131.549 21.206C131.86 20.8569 132.234 20.5857 132.67 20.3896C133.106 20.195 133.588 20.0972 134.117 20.0972C134.473 20.0972 134.807 20.1418 135.119 20.2311C135.432 20.3205 135.72 20.4481 135.982 20.6112C136.243 20.7763 136.478 20.9741 136.686 21.2095C136.894 21.4435 137.07 21.7043 137.216 21.9939C137.361 22.2824 137.471 22.5954 137.547 22.9336C137.623 23.2707 137.662 23.6271 137.662 23.9997ZM136.33 23.9997C136.33 23.5803 136.278 23.2056 136.175 22.8717C136.072 22.5406 135.925 22.2563 135.735 22.0245C135.544 21.7923 135.313 21.6147 135.04 21.4914C134.767 21.368 134.46 21.306 134.118 21.306C133.775 21.306 133.468 21.3676 133.195 21.4914C132.923 21.6147 132.69 21.7923 132.498 22.0245C132.306 22.2566 132.158 22.5406 132.055 22.8717C131.952 23.2059 131.9 23.5806 131.9 23.9997C131.9 24.419 131.952 24.7936 132.055 25.1279C132.158 25.46 132.306 25.7408 132.498 25.9719C132.69 26.2041 132.922 26.3806 133.195 26.5029C133.468 26.6263 133.775 26.6891 134.118 26.6891C134.46 26.6891 134.767 26.6263 135.04 26.5029C135.313 26.3806 135.544 26.2038 135.735 25.9719C135.925 25.7411 136.072 25.46 136.175 25.1279C136.278 24.7936 136.33 24.419 136.33 23.9997Z" fill="#041F41"/>
|
||||
<path d="M144.85 23.9898V27.0793C144.494 27.3647 144.116 27.5732 143.714 27.7051C143.312 27.838 142.882 27.9032 142.424 27.9032C141.852 27.9032 141.335 27.8074 140.872 27.6126C140.409 27.4197 140.014 27.1507 139.686 26.8047C139.358 26.4609 139.106 26.0479 138.928 25.568C138.751 25.0901 138.662 24.5676 138.662 24.0001C138.662 23.4255 138.747 22.8998 138.919 22.4217C139.089 21.9418 139.332 21.5299 139.647 21.186C139.962 20.8401 140.344 20.5718 140.792 20.3824C141.241 20.1921 141.745 20.0972 142.303 20.0972C142.587 20.0972 142.852 20.1216 143.099 20.1705C143.346 20.2206 143.575 20.2875 143.787 20.3737C143.998 20.4598 144.191 20.5641 144.365 20.6886C144.539 20.8119 144.699 20.9462 144.845 21.094L144.472 21.7391C144.414 21.8423 144.338 21.9043 144.244 21.9266C144.151 21.95 144.049 21.9244 143.939 21.851C143.833 21.784 143.726 21.7171 143.62 21.6501C143.513 21.583 143.394 21.5243 143.264 21.4766C143.134 21.4267 142.986 21.3852 142.823 21.3543C142.66 21.3235 142.472 21.3064 142.259 21.3064C141.914 21.3064 141.601 21.3693 141.322 21.4969C141.043 21.6245 140.805 21.8046 140.608 22.0396C140.412 22.277 140.26 22.5589 140.153 22.891C140.047 23.221 139.994 23.5926 139.994 24.0001C139.994 24.4365 140.051 24.8271 140.165 25.171C140.28 25.5136 140.441 25.8044 140.65 26.0415C140.858 26.2798 141.109 26.4609 141.402 26.5863C141.696 26.7119 142.024 26.7735 142.385 26.7735C142.644 26.7735 142.874 26.7428 143.078 26.6842C143.281 26.6236 143.48 26.5428 143.673 26.4393V25.0558H142.792C142.708 25.0558 142.643 25.0313 142.597 24.9803C142.55 24.9281 142.526 24.8665 142.526 24.7931V23.9895L144.85 23.9898Z" fill="#041F41"/>
|
||||
<path d="M152.943 23.9997C152.943 24.5607 152.858 25.0779 152.688 25.5558C152.519 26.0315 152.279 26.4444 151.969 26.7935C151.659 27.1427 151.287 27.4139 150.851 27.6099C150.415 27.8046 149.931 27.9026 149.398 27.9026C148.869 27.9026 148.387 27.8048 147.951 27.6099C147.515 27.4139 147.141 27.1427 146.83 26.7935C146.518 26.4444 146.277 26.0315 146.106 25.5558C145.935 25.0779 145.85 24.5607 145.85 23.9997C145.85 23.4388 145.935 22.9216 146.106 22.4438C146.277 21.9681 146.518 21.5552 146.83 21.206C147.141 20.8569 147.515 20.5857 147.951 20.3896C148.387 20.195 148.869 20.0972 149.398 20.0972C149.754 20.0972 150.088 20.1418 150.4 20.2311C150.713 20.3205 151.001 20.4481 151.262 20.6112C151.524 20.7763 151.758 20.9741 151.967 21.2095C152.175 21.4435 152.351 21.7043 152.497 21.9939C152.642 22.2824 152.753 22.5954 152.829 22.9336C152.904 23.2707 152.943 23.6271 152.943 23.9997ZM151.611 23.9997C151.611 23.5803 151.56 23.2056 151.456 22.8717C151.353 22.5406 151.206 22.2563 151.016 22.0245C150.825 21.7923 150.594 21.6147 150.321 21.4914C150.048 21.368 149.741 21.306 149.399 21.306C149.056 21.306 148.749 21.3676 148.476 21.4914C148.204 21.6147 147.971 21.7923 147.779 22.0245C147.587 22.2566 147.439 22.5406 147.336 22.8717C147.233 23.2059 147.181 23.5806 147.181 23.9997C147.181 24.419 147.233 24.7936 147.336 25.1279C147.439 25.46 147.587 25.7408 147.779 25.9719C147.971 26.2041 148.204 26.3806 148.476 26.5029C148.749 26.6263 149.056 26.6891 149.399 26.6891C149.741 26.6891 150.048 26.6263 150.321 26.5029C150.594 26.3806 150.825 26.2038 151.016 25.9719C151.206 25.7411 151.353 25.46 151.456 25.1279C151.559 24.7936 151.611 24.419 151.611 23.9997Z" fill="#041F41"/>
|
||||
<rect x="194.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="20" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M58 5.6675C58 6.40345 57.4036 7 56.6673 7H50.3327C49.597 7 49 6.40357 49 5.6675V5.33244C49 4.59655 49.5964 4 50.3327 4H56.6673C57.403 4 58 4.59637 58 5.33244V5.6675Z" fill="white"/>
|
||||
<path d="M140 5.6675C140 6.40345 139.404 7 138.667 7H132.333C131.597 7 131 6.40357 131 5.6675V5.33244C131 4.59655 131.596 4 132.333 4H138.667C139.403 4 140 4.59637 140 5.33244V5.6675Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1611">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,41 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1648)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.1313V16.8527H8.96936V14.8437H6.94697V16.8527H6V12.1313H6.94697V14.0725H8.96936V12.1313H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.2631H11.568C11.5905 15.5336 11.6853 15.7457 11.8522 15.8988C12.019 16.0521 12.2242 16.1289 12.4677 16.1289C12.8194 16.1289 13.0698 15.9777 13.2185 15.6757H14.2398C14.1316 16.0365 13.9241 16.3331 13.6175 16.5652C13.3108 16.7975 12.9343 16.9135 12.4879 16.9135C12.1272 16.9135 11.8035 16.8333 11.5173 16.6734C11.2309 16.5132 11.0077 16.2868 10.8475 15.9936C10.6874 15.7006 10.6074 15.3623 10.6074 14.9788C10.6074 14.591 10.6861 14.2508 10.8441 13.9575C11.0018 13.6645 11.2229 13.4391 11.5069 13.2811C11.7911 13.1234 12.1179 13.0444 12.4877 13.0444C12.8438 13.0444 13.1631 13.1212 13.4449 13.2743C13.7267 13.4276 13.9456 13.6453 14.1011 13.9271C14.2566 14.2088 14.3346 14.5323 14.3346 14.8977C14.3346 15.0332 14.3256 15.1548 14.3075 15.2631ZM13.354 14.6274C13.3494 14.3838 13.2616 14.1888 13.09 14.0424C12.9184 13.8959 12.709 13.8225 12.4609 13.8225C12.2264 13.8225 12.029 13.8934 11.8691 14.0355C11.7089 14.1776 11.6107 14.3748 11.5749 14.6274H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 13.9575C15.1591 13.6645 15.3641 13.4391 15.6234 13.2811C15.8828 13.1234 16.1722 13.0444 16.4925 13.0444C16.7721 13.0444 17.0169 13.1007 17.2266 13.2136C17.4362 13.3265 17.6041 13.4683 17.7304 13.6397V13.1054H18.6842V16.8528H17.7304V16.3048C17.6085 16.4808 17.4406 16.6261 17.2266 16.7412C17.0123 16.8562 16.7654 16.9137 16.4858 16.9137C16.1701 16.9137 15.8824 16.8326 15.6231 16.67C15.3637 16.5074 15.1586 16.279 15.0077 15.9836C14.8566 15.6884 14.7812 15.3489 14.7812 14.9654C14.7814 14.5866 14.8571 14.2508 15.0079 13.9575ZM17.5954 14.387C17.5052 14.2225 17.3832 14.0962 17.2299 14.0082C17.0766 13.9202 16.912 13.8761 16.736 13.8761C16.5603 13.8761 16.3981 13.919 16.2491 14.0046C16.1004 14.0904 15.9798 14.2154 15.8874 14.3799C15.795 14.5447 15.7486 14.7397 15.7486 14.9649C15.7486 15.1907 15.7948 15.3879 15.8874 15.5568C15.9798 15.7259 16.1014 15.8556 16.2528 15.9458C16.4039 16.0362 16.565 16.0811 16.7364 16.0811C16.9124 16.0811 17.0769 16.0372 17.2302 15.9492C17.3835 15.8612 17.5052 15.7352 17.5956 15.5704C17.6858 15.4059 17.7309 15.2085 17.7309 14.9786C17.7309 14.7487 17.6855 14.5518 17.5954 14.387Z" fill="white"/>
|
||||
<path d="M19.5936 13.9575C19.7448 13.6645 19.951 13.4391 20.2128 13.2811C20.4743 13.1234 20.7651 13.0444 21.0854 13.0444C21.3289 13.0444 21.5612 13.0976 21.782 13.2034C22.0029 13.3094 22.1788 13.4503 22.3097 13.626V11.8472H23.2701V16.8528H22.3097V16.2983C22.1925 16.4833 22.028 16.632 21.8159 16.7448C21.6038 16.8574 21.3581 16.914 21.0786 16.914C20.7629 16.914 20.4743 16.8328 20.2128 16.6702C19.9512 16.5079 19.7448 16.2793 19.5936 15.9838C19.4425 15.6886 19.3672 15.3491 19.3672 14.9657C19.3669 14.5867 19.4425 14.2508 19.5936 13.9575ZM22.1808 14.387C22.0906 14.2225 21.9687 14.0962 21.8154 14.0082C21.6621 13.9202 21.4976 13.8761 21.3216 13.8761C21.1458 13.8761 20.9835 13.919 20.8346 14.0046C20.6859 14.0904 20.5652 14.2154 20.4728 14.38C20.3805 14.5447 20.3341 14.7397 20.3341 14.965C20.3341 15.1907 20.3802 15.3879 20.4728 15.5568C20.5652 15.7259 20.6868 15.8556 20.8382 15.9458C20.9893 16.0362 21.1505 16.0811 21.3218 16.0811C21.4978 16.0811 21.6623 16.0372 21.8157 15.9492C21.969 15.8612 22.0906 15.7352 22.181 15.5704C22.2712 15.4059 22.3163 15.2085 22.3163 14.9786C22.3163 14.7487 22.2712 14.5518 22.1808 14.387Z" fill="white"/>
|
||||
<path d="M27.6532 15.2631H24.9137C24.9362 15.5336 25.031 15.7457 25.198 15.8988C25.3647 16.0521 25.5699 16.1289 25.8134 16.1289C26.1652 16.1289 26.4155 15.9777 26.5642 15.6757H27.5855C27.4773 16.0365 27.2698 16.3331 26.9632 16.5652C26.6566 16.7975 26.28 16.9135 25.8337 16.9135C25.4729 16.9135 25.1492 16.8333 24.863 16.6734C24.5766 16.5132 24.3534 16.2868 24.1932 15.9936C24.0331 15.7006 23.9531 15.3623 23.9531 14.9788C23.9531 14.591 24.0319 14.2508 24.1898 13.9575C24.3475 13.6645 24.5686 13.4391 24.8526 13.2811C25.1368 13.1234 25.4636 13.0444 25.8334 13.0444C26.1895 13.0444 26.5088 13.1212 26.7906 13.2743C27.0724 13.4276 27.2913 13.6453 27.4468 13.9271C27.6023 14.2088 27.6803 14.5323 27.6803 14.8977C27.6803 15.0332 27.671 15.1548 27.6532 15.2631ZM26.6995 14.6274C26.6948 14.3838 26.6071 14.1888 26.4355 14.0424C26.2639 13.8959 26.0545 13.8225 25.8064 13.8225C25.5719 13.8225 25.3744 13.8934 25.2145 14.0355C25.0544 14.1776 24.9562 14.3748 24.9203 14.6274H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.2202C29.9893 13.1076 30.2136 13.0513 30.4661 13.0513V14.0455H30.2158C29.9181 14.0455 29.6936 14.1155 29.5428 14.2552C29.3916 14.3951 29.3161 14.6386 29.3161 14.9857V16.8526H28.3691V13.1054H29.3161V13.6872C29.438 13.4886 29.5969 13.3331 29.7931 13.2202Z" fill="white"/>
|
||||
<path d="M8.17973 25.7854C8.97509 24.5378 10.2959 23.9141 12.1421 23.9141C13.9878 23.9141 15.3089 24.5381 16.1045 25.7854C16.8999 27.0331 17.2979 28.7581 17.2979 30.9604C17.2979 33.1756 16.8999 34.9133 16.1045 36.1737C15.3087 37.4339 13.9878 38.0643 12.1421 38.0643C10.2959 38.0643 8.97509 37.4342 8.17973 36.1737C7.38389 34.9136 6.98633 33.1756 6.98633 30.9604C6.98633 28.7581 7.38389 27.0334 8.17973 25.7854ZM14.4814 28.5831C14.3602 27.9404 14.1184 27.4151 13.7557 27.0078C13.3928 26.6005 12.8548 26.3967 12.1421 26.3967C11.4289 26.3967 10.8914 26.6005 10.5285 27.0078C10.1658 27.4153 9.92373 27.9406 9.80283 28.5831C9.68172 29.2261 9.62151 30.0186 9.62151 30.9604C9.62151 31.9281 9.67879 32.7395 9.79335 33.3952C9.90793 34.0509 10.1497 34.5791 10.519 34.9801C10.888 35.3811 11.4289 35.5817 12.1421 35.5817C12.8548 35.5817 13.3959 35.3811 13.7652 34.9801C14.1343 34.5791 14.3763 34.0509 14.4909 33.3952C14.6054 32.7398 14.6627 31.9281 14.6627 30.9604C14.6627 30.0186 14.6023 29.2261 14.4814 28.5831Z" fill="white"/>
|
||||
<path d="M19.7429 27.6569C19.7429 26.9695 19.9179 26.3426 20.2682 25.7759C20.6182 25.2096 21.1467 24.7575 21.8531 24.4201C22.5595 24.083 23.4218 23.9141 24.4405 23.9141C25.4589 23.9141 26.3215 24.083 27.0281 24.4201C27.7345 24.7577 28.2627 25.2096 28.613 25.7759C28.963 26.3426 29.138 26.9693 29.138 27.6569C29.138 28.3572 28.9662 28.9717 28.6225 29.4996C28.2788 30.0281 27.8203 30.4385 27.2475 30.7313C27.9476 31.0367 28.495 31.4825 28.8896 32.068C29.284 32.6537 29.4817 33.3475 29.4817 34.1496C29.4817 35.0154 29.2621 35.7698 28.8229 36.4126C28.3836 37.0556 27.782 37.5487 27.0181 37.8924C26.2545 38.2361 25.395 38.408 24.4402 38.408C23.4855 38.408 22.6292 38.2361 21.8718 37.8924C21.1143 37.5487 20.5161 37.0554 20.0769 36.4126C19.6376 35.7698 19.418 35.0157 19.418 34.1496C19.418 33.3475 19.6152 32.6506 20.0101 32.0585C20.4045 31.4664 20.9519 31.0243 21.6522 30.7313C20.3796 30.0695 19.7429 29.0445 19.7429 27.6569ZM22.6743 32.45C22.2224 32.8195 21.9964 33.3475 21.9964 34.0348C21.9964 34.6715 22.216 35.1902 22.6553 35.5912C23.0945 35.9924 23.6895 36.1928 24.4407 36.1928C25.1917 36.1928 25.7838 35.9895 26.2167 35.5817C26.6493 35.1744 26.866 34.6588 26.866 34.0348C26.866 33.3601 26.643 32.8351 26.1977 32.4595C25.7519 32.0841 25.1666 31.8962 24.4407 31.8962C23.7148 31.8962 23.1259 32.0809 22.6743 32.45ZM25.9778 26.5875C25.6022 26.2439 25.0898 26.072 24.4405 26.072C23.8038 26.072 23.2978 26.2439 22.9224 26.5875C22.5465 26.9312 22.3591 27.4214 22.3591 28.0578C22.3591 28.6309 22.5529 29.0889 22.9414 29.4328C23.3297 29.7768 23.8294 29.9486 24.4405 29.9486C25.0516 29.9486 25.5544 29.7736 25.949 29.4233C26.3437 29.0733 26.5411 28.6116 26.5411 28.0388C26.5411 27.4151 26.3532 26.9312 25.9778 26.5875Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1648" fill="white">
|
||||
<path d="M37 12H234V36H37V12Z"/>
|
||||
</mask>
|
||||
<path d="M37 12H234V36H37V12Z" fill="white"/>
|
||||
<path d="M234 35.9H37V36.1H234V35.9Z" fill="black" mask="url(#path-11-inside-1_2097_1648)"/>
|
||||
<path d="M53.1003 27.5619V28.7346H49V21.0972H50.3026V27.5617L53.1003 27.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 24.9997C61.193 25.5607 61.1077 26.0779 60.9385 26.5558C60.7691 27.0315 60.5293 27.4444 60.2199 27.7935C59.9096 28.1427 59.537 28.4139 59.1014 28.6099C58.6653 28.8046 58.1815 28.9026 57.6486 28.9026C57.1194 28.9026 56.6368 28.8048 56.2012 28.6099C55.7652 28.4139 55.3915 28.1427 55.0802 27.7935C54.7685 27.4444 54.5276 27.0315 54.3563 26.5558C54.1852 26.0779 54.0996 25.5607 54.0996 24.9997C54.0996 24.4388 54.1849 23.9216 54.3563 23.4438C54.5274 22.9681 54.7685 22.5552 55.0802 22.206C55.3915 21.8569 55.7652 21.5857 56.2012 21.3896C56.6368 21.195 57.1192 21.0972 57.6486 21.0972C58.0038 21.0972 58.3379 21.1418 58.6504 21.2311C58.9636 21.3205 59.251 21.4481 59.5128 21.6112C59.7739 21.7763 60.0089 21.9741 60.2168 22.2095C60.4252 22.4435 60.6016 22.7043 60.7469 22.9939C60.8924 23.2824 61.0026 23.5954 61.0787 23.9336C61.1545 24.2707 61.193 24.6271 61.193 24.9997ZM59.8614 24.9997C59.8614 24.5803 59.8097 24.2056 59.7064 23.8717C59.6032 23.5406 59.456 23.2563 59.2659 23.0245C59.0753 22.7923 58.844 22.6147 58.5712 22.4914C58.298 22.368 57.9908 22.306 57.6489 22.306C57.3064 22.306 56.999 22.3676 56.7263 22.4914C56.4538 22.6147 56.2215 22.7923 56.0291 23.0245C55.8368 23.2566 55.6896 23.5406 55.5862 23.8717C55.4829 24.2059 55.4312 24.5806 55.4312 24.9997C55.4312 25.419 55.4829 25.7936 55.5862 26.1279C55.6896 26.46 55.8371 26.7408 56.0291 26.9719C56.2215 27.2041 56.4535 27.3806 56.7263 27.5029C56.999 27.6263 57.3064 27.6891 57.6489 27.6891C57.9908 27.6891 58.2982 27.6263 58.5712 27.5029C58.844 27.3806 59.075 27.2038 59.2659 26.9719C59.4563 26.7411 59.6035 26.46 59.7064 26.1279C59.8097 25.7936 59.8614 25.419 59.8614 24.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 24.9898V28.0793C68.0256 28.3647 67.6471 28.5732 67.2451 28.7051C66.8432 28.838 66.4135 28.9032 65.955 28.9032C65.3836 28.9032 64.8661 28.8074 64.4033 28.6126C63.9399 28.4197 63.5448 28.1507 63.2174 27.8047C62.8896 27.4609 62.6368 27.0479 62.4594 26.568C62.2822 26.0901 62.1934 25.5676 62.1934 25.0001C62.1934 24.4255 62.2787 23.8998 62.4501 23.4217C62.6207 22.9418 62.8637 22.5299 63.1784 22.186C63.4931 21.8401 63.8751 21.5718 64.3233 21.3824C64.7721 21.1921 65.2759 21.0972 65.8341 21.0972C66.118 21.0972 66.3837 21.1216 66.6307 21.1705C66.8773 21.2206 67.1067 21.2875 67.318 21.3737C67.5296 21.4598 67.7224 21.5641 67.8964 21.6886C68.0705 21.8119 68.2306 21.9462 68.3759 22.094L68.0032 22.7391C67.9452 22.8423 67.8691 22.9043 67.7755 22.9266C67.6819 22.95 67.5805 22.9244 67.4706 22.851C67.3638 22.784 67.2573 22.7171 67.1511 22.6501C67.0441 22.583 66.9256 22.5243 66.7949 22.4766C66.6648 22.4267 66.5173 22.3852 66.3545 22.3543C66.1917 22.3235 66.0032 22.3064 65.7907 22.3064C65.4453 22.3064 65.1326 22.3693 64.8537 22.4969C64.5746 22.6245 64.3367 22.8046 64.1395 23.0396C63.9428 23.277 63.7912 23.5589 63.6844 23.891C63.5782 24.221 63.5248 24.5926 63.5248 25.0001C63.5248 25.4365 63.5818 25.8271 63.6966 26.171C63.8112 26.5136 63.9726 26.8044 64.181 27.0415C64.3889 27.2798 64.6399 27.4609 64.9337 27.5863C65.2274 27.7119 65.5552 27.7735 65.9167 27.7735C66.1748 27.7735 66.4054 27.7428 66.609 27.6842C66.8122 27.6236 67.0109 27.5428 67.2047 27.4393V26.0558H66.3233C66.2394 26.0558 66.1741 26.0313 66.1278 25.9803C66.081 25.9281 66.0571 25.8665 66.0571 25.7931V24.9895L68.3808 24.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 24.9997C76.4742 25.5607 76.3889 26.0779 76.2195 26.5558C76.0499 27.0315 75.8103 27.4444 75.5005 27.7935C75.1906 28.1427 74.818 28.4139 74.3819 28.6099C73.9463 28.8046 73.462 28.9026 72.9296 28.9026C72.4004 28.9026 71.9178 28.8048 71.4822 28.6099C71.0462 28.4139 70.6725 28.1427 70.3612 27.7935C70.0495 27.4444 69.8082 27.0315 69.6373 26.5558C69.4662 26.0779 69.3809 25.5607 69.3809 24.9997C69.3809 24.4388 69.4662 23.9216 69.6373 23.4438C69.8079 22.9681 70.0495 22.5552 70.3612 22.206C70.6725 21.8569 71.0462 21.5857 71.4822 21.3896C71.9178 21.195 72.4004 21.0972 72.9296 21.0972C73.2848 21.0972 73.6189 21.1418 73.9317 21.2311C74.2446 21.3205 74.532 21.4481 74.7936 21.6112C75.0551 21.7763 75.2896 21.9741 75.4978 22.2095C75.7062 22.4435 75.8827 22.7043 76.0282 22.9939C76.1734 23.2824 76.2839 23.5954 76.3599 23.9336C76.4357 24.2707 76.4742 24.6271 76.4742 24.9997ZM75.1421 24.9997C75.1421 24.5803 75.091 24.2056 74.9876 23.8717C74.8843 23.5406 74.7373 23.2563 74.5471 23.0245C74.3565 22.7923 74.1252 22.6147 73.8525 22.4914C73.5792 22.368 73.2718 22.306 72.9299 22.306C72.5874 22.306 72.28 22.3676 72.0075 22.4914C71.7348 22.6147 71.5027 22.7923 71.3104 23.0245C71.1183 23.2566 70.9704 23.5406 70.8675 23.8717C70.7641 24.2059 70.7122 24.5806 70.7122 24.9997C70.7122 25.419 70.7639 25.7936 70.8675 26.1279C70.9704 26.46 71.1183 26.7408 71.3104 26.9719C71.5027 27.2041 71.7348 27.3806 72.0075 27.5029C72.28 27.6263 72.5876 27.6891 72.9299 27.6891C73.2718 27.6891 73.5792 27.6263 73.8525 27.5029C74.125 27.3806 74.3563 27.2038 74.5471 26.9719C74.7373 26.7411 74.8843 26.46 74.9876 26.1279C75.0907 25.7936 75.1421 25.419 75.1421 24.9997Z" fill="#041F41"/>
|
||||
<path d="M95.4596 25.2789C95.4596 26.5043 94.4666 27.4976 93.2406 27.4976H82.6936C81.4686 27.4976 80.4746 26.5045 80.4746 25.2789V24.721C80.4746 23.4957 81.4676 22.5024 82.6936 22.5024H93.2406C94.4656 22.5024 95.4596 23.4954 95.4596 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M113.445 25.2789C113.445 26.5043 112.451 27.4976 111.226 27.4976H100.678C99.453 27.4976 98.459 26.5045 98.459 25.2789V24.721C98.459 23.4957 99.453 22.5024 100.678 22.5024H111.226C112.451 22.5024 113.445 23.4954 113.445 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M131.43 25.2789C131.43 26.5043 130.437 27.4976 129.211 27.4976H118.664C117.438 27.4976 116.445 26.5045 116.445 25.2789V24.721C116.445 23.4957 117.438 22.5024 118.664 22.5024H129.211C130.436 22.5024 131.43 23.4954 131.43 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M149.415 25.2789C149.415 26.5043 148.421 27.4976 147.196 27.4976H136.649C135.424 27.4976 134.43 26.5045 134.43 25.2789V24.721C134.43 23.4957 135.423 22.5024 136.649 22.5024H147.196C148.421 22.5024 149.415 23.4954 149.415 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M177.414 21.05H198.414C200.596 21.05 202.364 22.8185 202.364 25C202.364 27.1815 200.596 28.95 198.414 28.95H177.414C175.233 28.95 173.464 27.1815 173.464 25C173.464 22.8185 175.233 21.05 177.414 21.05Z" fill="#DCE0E5" stroke="#858C97" stroke-width="0.1"/>
|
||||
<path d="M201 25C201 23.3431 199.657 22 198 22V22C196.343 22 195 23.3431 195 25V25C195 26.6569 196.343 28 198 28V28C199.657 28 201 26.6569 201 25V25Z" fill="#041F41"/>
|
||||
<rect x="204.414" y="21" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="21" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1648">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,41 @@
|
||||
<svg width="234" height="51" viewBox="0 0 234 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2097_1685)">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
<rect width="37" height="51" fill="#3A86FF"/>
|
||||
<path d="M9.91628 12.2461V16.9675H8.96936V14.9585H6.94697V16.9675H6V12.2461H6.94697V14.1873H8.96936V12.2461H9.91628Z" fill="white"/>
|
||||
<path d="M14.3075 15.3779H11.568C11.5905 15.6484 11.6853 15.8605 11.8522 16.0136C12.019 16.1669 12.2242 16.2437 12.4677 16.2437C12.8194 16.2437 13.0698 16.0925 13.2185 15.7905H14.2398C14.1316 16.1513 13.9241 16.4479 13.6175 16.68C13.3108 16.9123 12.9343 17.0283 12.4879 17.0283C12.1272 17.0283 11.8035 16.9481 11.5173 16.7882C11.2309 16.628 11.0077 16.4016 10.8475 16.1084C10.6874 15.8154 10.6074 15.4771 10.6074 15.0936C10.6074 14.7058 10.6861 14.3656 10.8441 14.0723C11.0018 13.7793 11.2229 13.5539 11.5069 13.3959C11.7911 13.2382 12.1179 13.1592 12.4877 13.1592C12.8438 13.1592 13.1631 13.236 13.4449 13.3891C13.7267 13.5424 13.9456 13.7601 14.1011 14.0419C14.2566 14.3236 14.3346 14.6471 14.3346 15.0125C14.3346 15.148 14.3256 15.2696 14.3075 15.3779ZM13.354 14.7422C13.3494 14.4986 13.2616 14.3036 13.09 14.1572C12.9184 14.0107 12.709 13.9373 12.4609 13.9373C12.2264 13.9373 12.029 14.0082 11.8691 14.1503C11.7089 14.2924 11.6107 14.4896 11.5749 14.7422H13.354Z" fill="white"/>
|
||||
<path d="M15.0079 14.0723C15.1591 13.7793 15.3641 13.5539 15.6234 13.3959C15.8828 13.2382 16.1722 13.1592 16.4925 13.1592C16.7721 13.1592 17.0169 13.2155 17.2266 13.3284C17.4362 13.4413 17.6041 13.5831 17.7304 13.7545V13.2202H18.6842V16.9676H17.7304V16.4196C17.6085 16.5956 17.4406 16.7409 17.2266 16.856C17.0123 16.971 16.7654 17.0285 16.4858 17.0285C16.1701 17.0285 15.8824 16.9474 15.6231 16.7848C15.3637 16.6222 15.1586 16.3938 15.0077 16.0984C14.8566 15.8032 14.7812 15.4637 14.7812 15.0802C14.7814 14.7014 14.8571 14.3656 15.0079 14.0723ZM17.5954 14.5018C17.5052 14.3373 17.3832 14.211 17.2299 14.123C17.0766 14.035 16.912 13.9909 16.736 13.9909C16.5603 13.9909 16.3981 14.0338 16.2491 14.1194C16.1004 14.2052 15.9798 14.3302 15.8874 14.4947C15.795 14.6595 15.7486 14.8545 15.7486 15.0797C15.7486 15.3055 15.7948 15.5027 15.8874 15.6716C15.9798 15.8407 16.1014 15.9704 16.2528 16.0606C16.4039 16.151 16.565 16.1959 16.7364 16.1959C16.9124 16.1959 17.0769 16.152 17.2302 16.064C17.3835 15.976 17.5052 15.85 17.5956 15.6852C17.6858 15.5207 17.7309 15.3233 17.7309 15.0934C17.7309 14.8635 17.6855 14.6666 17.5954 14.5018Z" fill="white"/>
|
||||
<path d="M19.5936 14.0723C19.7448 13.7793 19.951 13.5539 20.2128 13.3959C20.4743 13.2382 20.7651 13.1592 21.0854 13.1592C21.3289 13.1592 21.5612 13.2124 21.782 13.3182C22.0029 13.4242 22.1788 13.5651 22.3097 13.7408V11.9619H23.2701V16.9676H22.3097V16.4131C22.1925 16.5981 22.028 16.7468 21.8159 16.8596C21.6038 16.9722 21.3581 17.0288 21.0786 17.0288C20.7629 17.0288 20.4743 16.9476 20.2128 16.785C19.9512 16.6227 19.7448 16.3941 19.5936 16.0986C19.4425 15.8034 19.3672 15.4639 19.3672 15.0805C19.3669 14.7015 19.4425 14.3656 19.5936 14.0723ZM22.1808 14.5018C22.0906 14.3373 21.9687 14.211 21.8154 14.123C21.6621 14.035 21.4976 13.9909 21.3216 13.9909C21.1458 13.9909 20.9835 14.0338 20.8346 14.1194C20.6859 14.2052 20.5652 14.3302 20.4728 14.4948C20.3805 14.6595 20.3341 14.8545 20.3341 15.0798C20.3341 15.3055 20.3802 15.5027 20.4728 15.6716C20.5652 15.8407 20.6868 15.9704 20.8382 16.0606C20.9893 16.151 21.1505 16.1959 21.3218 16.1959C21.4978 16.1959 21.6623 16.152 21.8157 16.064C21.969 15.976 22.0906 15.85 22.181 15.6852C22.2712 15.5207 22.3163 15.3233 22.3163 15.0934C22.3163 14.8635 22.2712 14.6666 22.1808 14.5018Z" fill="white"/>
|
||||
<path d="M27.6532 15.3779H24.9137C24.9362 15.6484 25.031 15.8605 25.198 16.0136C25.3647 16.1669 25.5699 16.2437 25.8134 16.2437C26.1652 16.2437 26.4155 16.0925 26.5642 15.7905H27.5855C27.4773 16.1513 27.2698 16.4479 26.9632 16.68C26.6566 16.9123 26.28 17.0283 25.8337 17.0283C25.4729 17.0283 25.1492 16.9481 24.863 16.7882C24.5766 16.628 24.3534 16.4016 24.1932 16.1084C24.0331 15.8154 23.9531 15.4771 23.9531 15.0936C23.9531 14.7058 24.0319 14.3656 24.1898 14.0723C24.3475 13.7793 24.5686 13.5539 24.8526 13.3959C25.1368 13.2382 25.4636 13.1592 25.8334 13.1592C26.1895 13.1592 26.5088 13.236 26.7906 13.3891C27.0724 13.5424 27.2913 13.7601 27.4468 14.0419C27.6023 14.3236 27.6803 14.6471 27.6803 15.0125C27.6803 15.148 27.671 15.2696 27.6532 15.3779ZM26.6995 14.7422C26.6948 14.4986 26.6071 14.3036 26.4355 14.1572C26.2639 14.0107 26.0545 13.9373 25.8064 13.9373C25.5719 13.9373 25.3744 14.0082 25.2145 14.1503C25.0544 14.2924 24.9562 14.4896 24.9203 14.7422H26.6995Z" fill="white"/>
|
||||
<path d="M29.7931 13.3349C29.9893 13.2223 30.2136 13.166 30.4661 13.166V14.1602H30.2158C29.9181 14.1602 29.6936 14.2302 29.5428 14.3699C29.3916 14.5098 29.3161 14.7533 29.3161 15.1004V16.9673H28.3691V13.2201H29.3161V13.8019C29.438 13.6033 29.5969 13.4478 29.7931 13.3349Z" fill="white"/>
|
||||
<path d="M8.32231 25.9571C9.11767 24.7096 10.4386 24.0859 12.2848 24.0859C14.1304 24.0859 15.4516 24.7099 16.2472 25.9571C17.0425 27.2049 17.4406 28.9299 17.4406 31.1322C17.4406 33.3474 17.0425 35.0851 16.2472 36.3455C15.4513 37.6057 14.1304 38.236 12.2848 38.236C10.4386 38.236 9.11767 37.606 8.32231 36.3455C7.52647 35.0853 7.12891 33.3474 7.12891 31.1322C7.12891 28.9299 7.52647 27.2051 8.32231 25.9571ZM14.624 28.7549C14.5029 28.1121 14.2611 27.5869 13.8984 27.1795C13.5354 26.7722 12.9975 26.5685 12.2848 26.5685C11.5715 26.5685 11.0341 26.7722 10.6711 27.1795C10.3084 27.5871 10.0664 28.1124 9.94546 28.7549C9.82426 29.3979 9.76406 30.1904 9.76406 31.1322C9.76406 32.0999 9.82136 32.9113 9.93596 33.567C10.0505 34.2227 10.2923 34.7509 10.6616 35.1519C11.0307 35.5528 11.5715 35.7535 12.2848 35.7535C12.9975 35.7535 13.5386 35.5528 13.9079 35.1519C14.2769 34.7509 14.519 34.2227 14.6335 33.567C14.7481 32.9116 14.8054 32.0999 14.8054 31.1322C14.8054 30.1904 14.7449 29.3979 14.624 28.7549Z" fill="white"/>
|
||||
<path d="M23.2546 35.6488C23.6175 35.9481 24.1043 36.0976 24.7154 36.0976C25.5046 36.0976 26.0774 35.77 26.434 35.114C26.7904 34.4586 26.9688 33.3542 26.9688 31.801C26.6758 32.2085 26.2654 32.5266 25.7372 32.7557C25.2087 32.9849 24.6393 33.0994 24.028 33.0994C23.2131 33.0994 22.478 32.931 21.8225 32.5934C21.1666 32.2563 20.6482 31.7532 20.2662 31.0848C19.8842 30.4165 19.6934 29.6048 19.6934 28.65C19.6934 27.237 20.1136 26.1136 20.9536 25.2794C21.7938 24.4458 22.9396 24.0288 24.3909 24.0288C26.1986 24.0288 27.4749 24.6082 28.2198 25.7665C28.9647 26.925 29.3369 28.669 29.3369 30.9988C29.3369 32.6539 29.1938 34.0098 28.9071 35.0663C28.6207 36.1232 28.1305 36.9251 27.4368 37.4723C26.7429 38.02 25.7976 38.2935 24.601 38.2935C23.6587 38.2935 22.8568 38.1122 22.1947 37.7495C21.5327 37.3865 21.0267 36.9092 20.6767 36.3172C20.3264 35.7251 20.1258 35.0731 20.0751 34.3599H22.5577C22.6593 34.92 22.8919 35.3497 23.2546 35.6488ZM26.1476 30.3114C26.5296 29.9041 26.7204 29.3567 26.7204 28.6693C26.7204 27.9183 26.5198 27.3357 26.1189 26.9221C25.7179 26.5084 25.1736 26.3015 24.4862 26.3015C23.7989 26.3015 23.2546 26.5148 22.8536 26.9413C22.4524 27.3679 22.252 27.9314 22.252 28.6315C22.252 29.3064 22.4458 29.8568 22.8343 30.2831C23.2226 30.7097 23.805 30.923 24.5815 30.923C25.2436 30.9225 25.7657 30.719 26.1476 30.3114Z" fill="white"/>
|
||||
<rect x="37" width="197" height="12" fill="#041F41"/>
|
||||
<mask id="path-11-inside-1_2097_1685" fill="white">
|
||||
<path d="M37 36H234V51H37V36Z"/>
|
||||
</mask>
|
||||
<path d="M37 36H234V51H37V36Z" fill="white"/>
|
||||
<path d="M37 36.2H234V35.8H37V36.2Z" fill="#BDC5D1" mask="url(#path-11-inside-1_2097_1685)"/>
|
||||
<rect x="37" y="12" width="197" height="24" fill="white"/>
|
||||
<path d="M53.1003 27.5619V28.7346H49V21.0972H50.3026V27.5617L53.1003 27.5619Z" fill="#041F41"/>
|
||||
<path d="M61.193 24.9997C61.193 25.5607 61.1077 26.0779 60.9385 26.5558C60.7691 27.0315 60.5293 27.4444 60.2199 27.7935C59.9096 28.1427 59.537 28.4139 59.1014 28.6099C58.6653 28.8046 58.1815 28.9026 57.6486 28.9026C57.1194 28.9026 56.6368 28.8048 56.2012 28.6099C55.7652 28.4139 55.3915 28.1427 55.0802 27.7935C54.7685 27.4444 54.5276 27.0315 54.3563 26.5558C54.1852 26.0779 54.0996 25.5607 54.0996 24.9997C54.0996 24.4388 54.1849 23.9216 54.3563 23.4438C54.5274 22.9681 54.7685 22.5552 55.0802 22.206C55.3915 21.8569 55.7652 21.5857 56.2012 21.3896C56.6368 21.195 57.1192 21.0972 57.6486 21.0972C58.0038 21.0972 58.3379 21.1418 58.6504 21.2311C58.9636 21.3205 59.251 21.4481 59.5128 21.6112C59.7739 21.7763 60.0089 21.9741 60.2168 22.2095C60.4252 22.4435 60.6016 22.7043 60.7469 22.9939C60.8924 23.2824 61.0026 23.5954 61.0787 23.9336C61.1545 24.2707 61.193 24.6271 61.193 24.9997ZM59.8614 24.9997C59.8614 24.5803 59.8097 24.2056 59.7064 23.8717C59.6032 23.5406 59.456 23.2563 59.2659 23.0245C59.0753 22.7923 58.844 22.6147 58.5712 22.4914C58.298 22.368 57.9908 22.306 57.6489 22.306C57.3064 22.306 56.999 22.3676 56.7263 22.4914C56.4538 22.6147 56.2215 22.7923 56.0291 23.0245C55.8368 23.2566 55.6896 23.5406 55.5862 23.8717C55.4829 24.2059 55.4312 24.5806 55.4312 24.9997C55.4312 25.419 55.4829 25.7936 55.5862 26.1279C55.6896 26.46 55.8371 26.7408 56.0291 26.9719C56.2215 27.2041 56.4535 27.3806 56.7263 27.5029C56.999 27.6263 57.3064 27.6891 57.6489 27.6891C57.9908 27.6891 58.2982 27.6263 58.5712 27.5029C58.844 27.3806 59.075 27.2038 59.2659 26.9719C59.4563 26.7411 59.6035 26.46 59.7064 26.1279C59.8097 25.7936 59.8614 25.419 59.8614 24.9997Z" fill="#041F41"/>
|
||||
<path d="M68.3808 24.9898V28.0793C68.0256 28.3647 67.6471 28.5732 67.2451 28.7051C66.8432 28.838 66.4135 28.9032 65.955 28.9032C65.3836 28.9032 64.8661 28.8074 64.4033 28.6126C63.9399 28.4197 63.5448 28.1507 63.2174 27.8047C62.8896 27.4609 62.6368 27.0479 62.4594 26.568C62.2822 26.0901 62.1934 25.5676 62.1934 25.0001C62.1934 24.4255 62.2787 23.8998 62.4501 23.4217C62.6207 22.9418 62.8637 22.5299 63.1784 22.186C63.4931 21.8401 63.8751 21.5718 64.3233 21.3824C64.7721 21.1921 65.2759 21.0972 65.8341 21.0972C66.118 21.0972 66.3837 21.1216 66.6307 21.1705C66.8773 21.2206 67.1067 21.2875 67.318 21.3737C67.5296 21.4598 67.7224 21.5641 67.8964 21.6886C68.0705 21.8119 68.2306 21.9462 68.3759 22.094L68.0032 22.7391C67.9452 22.8423 67.8691 22.9043 67.7755 22.9266C67.6819 22.95 67.5805 22.9244 67.4706 22.851C67.3638 22.784 67.2573 22.7171 67.1511 22.6501C67.0441 22.583 66.9256 22.5243 66.7949 22.4766C66.6648 22.4267 66.5173 22.3852 66.3545 22.3543C66.1917 22.3235 66.0032 22.3064 65.7907 22.3064C65.4453 22.3064 65.1326 22.3693 64.8537 22.4969C64.5746 22.6245 64.3367 22.8046 64.1395 23.0396C63.9428 23.277 63.7912 23.5589 63.6844 23.891C63.5782 24.221 63.5248 24.5926 63.5248 25.0001C63.5248 25.4365 63.5818 25.8271 63.6966 26.171C63.8112 26.5136 63.9726 26.8044 64.181 27.0415C64.3889 27.2798 64.6399 27.4609 64.9337 27.5863C65.2274 27.7119 65.5552 27.7735 65.9167 27.7735C66.1748 27.7735 66.4054 27.7428 66.609 27.6842C66.8122 27.6236 67.0109 27.5428 67.2047 27.4393V26.0558H66.3233C66.2394 26.0558 66.1741 26.0313 66.1278 25.9803C66.081 25.9281 66.0571 25.8665 66.0571 25.7931V24.9895L68.3808 24.9898Z" fill="#041F41"/>
|
||||
<path d="M76.4742 24.9997C76.4742 25.5607 76.3889 26.0779 76.2195 26.5558C76.0499 27.0315 75.8103 27.4444 75.5005 27.7935C75.1906 28.1427 74.818 28.4139 74.3819 28.6099C73.9463 28.8046 73.462 28.9026 72.9296 28.9026C72.4004 28.9026 71.9178 28.8048 71.4822 28.6099C71.0462 28.4139 70.6725 28.1427 70.3612 27.7935C70.0495 27.4444 69.8082 27.0315 69.6373 26.5558C69.4662 26.0779 69.3809 25.5607 69.3809 24.9997C69.3809 24.4388 69.4662 23.9216 69.6373 23.4438C69.8079 22.9681 70.0495 22.5552 70.3612 22.206C70.6725 21.8569 71.0462 21.5857 71.4822 21.3896C71.9178 21.195 72.4004 21.0972 72.9296 21.0972C73.2848 21.0972 73.6189 21.1418 73.9317 21.2311C74.2446 21.3205 74.532 21.4481 74.7936 21.6112C75.0551 21.7763 75.2896 21.9741 75.4978 22.2095C75.7062 22.4435 75.8827 22.7043 76.0282 22.9939C76.1734 23.2824 76.2839 23.5954 76.3599 23.9336C76.4357 24.2707 76.4742 24.6271 76.4742 24.9997ZM75.1421 24.9997C75.1421 24.5803 75.091 24.2056 74.9876 23.8717C74.8843 23.5406 74.7373 23.2563 74.5471 23.0245C74.3565 22.7923 74.1252 22.6147 73.8525 22.4914C73.5792 22.368 73.2718 22.306 72.9299 22.306C72.5874 22.306 72.28 22.3676 72.0075 22.4914C71.7348 22.6147 71.5027 22.7923 71.3104 23.0245C71.1183 23.2566 70.9704 23.5406 70.8675 23.8717C70.7641 24.2059 70.7122 24.5806 70.7122 24.9997C70.7122 25.419 70.7639 25.7936 70.8675 26.1279C70.9704 26.46 71.1183 26.7408 71.3104 26.9719C71.5027 27.2041 71.7348 27.3806 72.0075 27.5029C72.28 27.6263 72.5876 27.6891 72.9299 27.6891C73.2718 27.6891 73.5792 27.6263 73.8525 27.5029C74.125 27.3806 74.3563 27.2038 74.5471 26.9719C74.7373 26.7411 74.8843 26.46 74.9876 26.1279C75.0907 25.7936 75.1421 25.419 75.1421 24.9997Z" fill="#041F41"/>
|
||||
<path d="M95.4596 25.2789C95.4596 26.5043 94.4666 27.4976 93.2406 27.4976H82.6936C81.4686 27.4976 80.4746 26.5045 80.4746 25.2789V24.721C80.4746 23.4957 81.4676 22.5024 82.6936 22.5024H93.2406C94.4656 22.5024 95.4596 23.4954 95.4596 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M113.445 25.2789C113.445 26.5043 112.451 27.4976 111.226 27.4976H100.678C99.453 27.4976 98.459 26.5045 98.459 25.2789V24.721C98.459 23.4957 99.453 22.5024 100.678 22.5024H111.226C112.451 22.5024 113.445 23.4954 113.445 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M131.43 25.2789C131.43 26.5043 130.437 27.4976 129.211 27.4976H118.664C117.438 27.4976 116.445 26.5045 116.445 25.2789V24.721C116.445 23.4957 117.438 22.5024 118.664 22.5024H129.211C130.436 22.5024 131.43 23.4954 131.43 24.721V25.2789Z" fill="#858C97"/>
|
||||
<path d="M149.415 25.2789C149.415 26.5043 148.421 27.4976 147.196 27.4976H136.649C135.424 27.4976 134.43 26.5045 134.43 25.2789V24.721C134.43 23.4957 135.423 22.5024 136.649 22.5024H147.196C148.421 22.5024 149.415 23.4954 149.415 24.721V25.2789Z" fill="#858C97"/>
|
||||
<rect x="194.414" y="21" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="204.414" y="21" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<rect x="214.414" y="21" width="8" height="8" rx="4" fill="#3A86FF"/>
|
||||
<path d="M62 5.6675C62 6.40345 61.4036 7 60.6673 7H54.3327C53.597 7 53 6.40357 53 5.6675V5.33244C53 4.59655 53.5964 4 54.3327 4H60.6673C61.403 4 62 4.59637 62 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="49" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
<path d="M79 5.6675C79 6.40345 78.4036 7 77.6673 7H71.3327C70.597 7 70 6.40357 70 5.6675V5.33244C70 4.59655 70.5964 4 71.3327 4H77.6673C78.403 4 79 4.59637 79 5.33244V5.6675Z" fill="white"/>
|
||||
<rect x="66" y="4" width="3" height="3" rx="1.5" fill="#D9D9D9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2097_1685">
|
||||
<rect width="234" height="51" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,7 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="200" height="200" rx="5" fill="#FFA2C0"/>
|
||||
<path d="M114.983 64.9495C114.735 64.1837 114.192 63.5482 113.475 63.1827C112.757 62.8168 111.924 62.7517 111.158 63.0006L98.4585 67.1275C96.8642 67.6455 95.9911 69.358 96.5096 70.9524L97.1443 72.9065L64.8406 96.6351L52.0978 100.775C51.332 101.024 50.6966 101.567 50.3311 102.284C49.9656 103.001 49.9 103.835 50.1489 104.601L57.8914 128.425C58.3083 129.708 59.4983 130.523 60.7777 130.523C61.089 130.523 61.4051 130.475 61.7167 130.374L74.4575 126.234L81.0036 126.268C82.3182 132.475 87.839 137.148 94.4316 137.148C100.974 137.148 106.458 132.545 107.827 126.409L114.54 126.445L115.175 128.399C115.424 129.165 115.966 129.8 116.684 130.166C117.115 130.385 117.587 130.497 118.062 130.497C118.378 130.497 118.695 130.447 119 130.348L131.7 126.222C133.294 125.704 134.167 123.991 133.649 122.397L114.983 64.9495ZM62.727 123.662L56.8613 105.611L64.2942 103.196L70.159 121.246L62.727 123.662ZM94.4312 131.077C91.2288 131.077 88.4838 129.099 87.3428 126.302L101.492 126.376C100.333 129.135 97.6057 131.077 94.4312 131.077ZM76.1931 120.171L73.0004 110.345L69.8077 100.519L99.1194 78.9887L108.109 106.653L112.563 120.363L76.1931 120.171ZM120.011 123.636L119.638 122.489C119.638 122.487 119.637 122.485 119.636 122.483L111.616 97.7995L103.222 71.963L110.147 69.7122L126.936 121.385L120.011 123.636Z" fill="black"/>
|
||||
<path d="M125.206 79.706C125.648 79.931 126.118 80.0375 126.582 80.0375C127.687 80.0375 128.752 79.432 129.289 78.3796L134.737 67.6901C135.499 66.1966 134.905 64.3683 133.412 63.607C131.918 62.846 130.09 63.439 129.328 64.9329L123.88 75.6224C123.118 77.1164 123.712 78.9446 125.206 79.706Z" fill="black"/>
|
||||
<path d="M148.021 108.572L137.33 103.126C135.836 102.366 134.008 102.96 133.247 104.454C132.486 105.948 133.081 107.775 134.574 108.536L145.265 113.982C145.707 114.207 146.177 114.313 146.641 114.313C147.745 114.313 148.812 113.707 149.348 112.655C150.109 111.162 149.515 109.334 148.021 108.572Z" fill="black"/>
|
||||
<path d="M132.667 90.9624C133.084 92.2451 134.274 93.0607 135.554 93.0607C135.865 93.0607 136.181 93.0125 136.493 92.9113L147.902 89.2038C149.496 88.6857 150.369 86.9732 149.85 85.3785C149.332 83.7838 147.62 82.9127 146.025 83.4296L134.616 87.1371C133.022 87.6556 132.149 89.3681 132.667 90.9624Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="200" height="200" rx="5" fill="#FFCE72"/>
|
||||
<path d="M117.065 139.348C116.956 142.609 114.239 145.109 111.087 145.109C110.978 145.109 110.869 145.109 110.869 145.109C107.609 145 105 142.174 105.109 138.913C105.761 123.478 102.065 111.957 94.1303 104.457C81.5216 92.6087 61.739 94.5652 61.5216 94.5652C58.2607 94.8913 55.326 92.5 54.8912 89.2391C54.5651 85.9783 56.8477 83.0435 60.2173 82.6087C61.1955 82.5 85.5434 80 102.282 95.5435C112.935 105.543 117.826 120.326 117.065 139.348ZM70.1086 116.196C66.4129 116.196 62.7173 117.717 60.1086 120.326C57.4999 122.935 55.9781 126.63 55.9781 130.326C55.9781 134.022 57.4999 137.717 60.1086 140.326C62.7173 142.935 66.4129 144.457 70.1086 144.457C73.8042 144.457 77.4999 142.935 80.1086 140.326C82.7173 137.717 84.239 134.022 84.239 130.326C84.239 126.63 82.7173 122.935 80.1086 120.326C77.4999 117.717 73.8042 116.196 70.1086 116.196ZM122.935 74.1304C98.0434 50.9783 61.739 55.1087 60.1086 55.2174C56.8477 55.6522 54.4564 58.587 54.8912 61.8478C55.326 65.1087 58.2607 67.5 61.5216 67.0652C61.8477 67.0652 93.9129 63.4783 114.782 82.8261C127.935 95 134.022 113.804 132.935 138.804C132.826 142.065 135.326 144.891 138.696 145C138.804 145 138.913 145 138.913 145C142.065 145 144.782 142.5 144.891 139.239C146.196 110.761 138.804 88.8044 122.935 74.1304Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="200" height="200" rx="5" fill="#FCF185"/>
|
||||
<g clip-path="url(#clip0_884_2318)">
|
||||
<path d="M62.8938 108.088L78.2044 92.7775L81.177 95.7501L65.8664 111.061L62.8938 108.088V108.088ZM69.4164 114.595L84.727 99.2847L87.6996 102.257L72.389 117.568L69.4164 114.595V114.595ZM75.9246 121.118L91.2352 105.807L94.2078 108.78L78.8972 124.09L75.9246 121.118ZM82.4617 127.64L97.7723 112.329L100.745 115.302L85.4343 130.612L82.4617 127.64V127.64ZM91.9515 137.143L88.9789 134.17L104.29 118.859L107.262 121.832L91.9515 137.143V137.143Z" fill="black"/>
|
||||
<path d="M145.693 54.2272C142.529 51.064 133.285 44.9825 119.815 58.4312C117.081 61.1659 114.509 65.0026 112.489 69.7576L88.9178 69.1454L50 107.859L92.0606 149.92L130.754 111.226L130.142 87.39C134.366 85.5329 138.448 83.1452 141.488 80.1044C155.162 66.6352 149.06 57.5945 145.693 54.2272V54.2272ZM92.0606 144.022L55.8979 107.859L90.3872 73.3698L125.509 74.431L125.815 84.8594C123.387 85.7982 120.938 86.5737 118.693 87.1859C118.264 85.8186 117.509 84.5329 116.468 83.4717C114.571 81.7983 112.264 80.7371 109.734 80.7371C107.203 80.7371 104.693 81.7983 102.999 83.4717C101.326 85.3696 100.265 87.6757 100.265 90.2063C100.265 92.7369 101.326 95.2471 102.999 96.9409C104.897 98.6143 107.203 99.6756 109.734 99.6756C112.04 99.6756 114.571 98.8388 116.468 96.7368C117.999 95.2062 118.856 93.2267 119.081 91.1859C121.223 90.6349 123.57 89.941 125.938 89.0839L126.55 109.533L92.0606 144.022V144.022ZM106.367 91.6553C106.693 93.1654 108.101 93.3491 108.897 93.1246C109.224 93.1246 111.428 92.8593 114.632 92.1859C114.366 92.7369 113.999 93.2675 113.53 93.7573C111.632 95.6552 108.06 95.6552 106.162 93.7573C105.326 92.9206 104.693 91.6553 104.693 90.1859C104.693 88.9206 105.326 87.4512 106.162 86.6145C106.999 85.7778 108.264 85.1452 109.734 85.1452C110.999 85.1452 112.264 85.5737 113.53 86.4104C114.06 86.941 114.448 87.5329 114.713 88.1655C110.958 89.0022 108.346 89.3492 108.264 89.3492C106.999 89.5533 106.142 90.6145 106.367 91.6553ZM130.04 83.0023L129.713 70.2066L116.999 69.8801C118.652 66.4515 120.53 63.6148 122.55 61.5945C130.325 53.8191 137.489 52.3497 142.529 57.3904C147.57 62.4312 146.101 69.5944 138.325 77.3698C136.08 79.6146 133.162 81.4717 130.04 83.0023V83.0023Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_884_2318">
|
||||
<rect width="100" height="100" fill="white" transform="translate(50 50)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="200" height="200" rx="5" fill="#41D1E1"/>
|
||||
<path d="M116.52 71.16L128.98 83.6199C131.78 86.2799 131.78 90.76 128.98 93.42L96.5 125.76V96.22V81.2399L106.58 71.02C109.24 68.36 113.86 68.36 116.52 71.16Z" fill="black"/>
|
||||
<path d="M82.5 58H65C61.08 58 58 61.08 58 65V126.32C58 135 65 142 73.68 142C82.36 142 89.36 135 89.36 126.32V65C89.5 61.08 86.28 58 82.5 58ZM73.68 133.32C69.76 133.32 66.68 130.24 66.68 126.32C66.68 122.4 69.76 119.32 73.68 119.32C77.6 119.32 80.68 122.4 80.68 126.32C80.68 130.24 77.6 133.32 73.68 133.32Z" fill="black"/>
|
||||
<path d="M135 110.5H122.68L114.28 118.9H133.6L133.46 133.6H99.7201L91.3201 142H135C138.92 142 142 138.92 142 135V117.5C142 113.72 138.92 110.5 135 110.5Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 829 B |