Renamed source directory, changed dockerfile for running docker image according to the official documentation
14
wordpress/wp-config-local-sample.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
define( 'DB_NAME', 'local_db_name' );
|
||||
define( 'DB_USER', 'local_db_user' );
|
||||
define( 'DB_PASSWORD', 'local_db_password' );
|
||||
define( 'DB_HOST', 'local_db_host' );
|
||||
|
||||
define('DOMAIN_CURRENT_SITE', 'local_domain_current_site');
|
||||
|
||||
define('LAWCARTA_SUBDOMAIN', 'app');
|
||||
define('LAWCARTA_PORT', '');
|
||||
|
||||
define('LAWCARTA_WP_REST_API_URL', 'http://app.livecarta.loc/v1');
|
||||
define('LAWCARTA_WP_REST_API_EVENT_LOG_URL', 'http://app.livecarta.loc/v1/event/add');
|
||||
75
wordpress/wp-config.php
Normal file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/**
|
||||
* The base configuration for WordPress
|
||||
*
|
||||
* The wp-config.php creation script uses this file during the
|
||||
* installation. You don't have to use the web site, you can
|
||||
* copy this file to "wp-config.php" and fill in the values.
|
||||
*
|
||||
* This file contains the following configurations:
|
||||
*
|
||||
* * MySQL settings
|
||||
* * Secret keys
|
||||
* * Database table prefix
|
||||
* * ABSPATH
|
||||
*
|
||||
* @link https://codex.wordpress.org/Editing_wp-config.php
|
||||
*
|
||||
* @package WordPress
|
||||
*/
|
||||
|
||||
require_once __DIR__ . '/wp-content/vendor/autoload.php';
|
||||
|
||||
if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) {
|
||||
include( dirname( __FILE__ ) . '/wp-config-local.php' );
|
||||
} else {
|
||||
define('DB_NAME', getenv('DB_NAME'));
|
||||
define('DB_USER', getenv('DB_USER'));
|
||||
define('DB_PASSWORD', getenv('DB_PASSWORD'));
|
||||
define('DB_HOST', getenv('DB_HOST'));
|
||||
|
||||
define('WP_LOCAL_DEV', true);
|
||||
define('WP_DEBUG', true);
|
||||
|
||||
define('DOMAIN_CURRENT_SITE', 'lawcarta.loc');
|
||||
|
||||
define('LAWCARTA_SUBDOMAIN', '');
|
||||
define('LAWCARTA_PORT', '8080');
|
||||
}
|
||||
|
||||
define('DB_CHARSET', 'utf8');
|
||||
define('DB_COLLATE', '');
|
||||
define('FS_METHOD', 'direct');
|
||||
|
||||
/**
|
||||
* Authentication Unique Keys and Salts.
|
||||
*
|
||||
* Change these to different unique phrases!
|
||||
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
|
||||
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
|
||||
*
|
||||
* @since 2.6.0
|
||||
*/
|
||||
define('AUTH_KEY', 'i*V4B`A#NWjOUQu->3vSB@zE1#gtH4#02;1q,t[Wzd%1C&$K+-k2yXFz-r3LSR<#');
|
||||
define('SECURE_AUTH_KEY', ':*S8U~Xl~`+QUWMxDp%1e?7`:-nt9Ccz@.d0o Y/)LRJCls&r[:zl]+NeUxu1V|v');
|
||||
define('LOGGED_IN_KEY', 'GG&iWQx&fPj6Q]lx*Ts1F!QNKV:qVVRS&Y-P/-NN!|4wrz:_*EQcXIuy};piV|-e');
|
||||
define('NONCE_KEY', '|kLD9iG,F/kw,225&|VZNH(VoE[&{EDQkb7YA0h<{N`2}I7 }=8qdGl&OeD[UzBk');
|
||||
define('AUTH_SALT', '2TMhC58*(LTTaPdK8:hWl6+yCV-]p%M-*HN$]:HZ7,y|P3ew-$D( i}.|r+<VXH|');
|
||||
define('SECURE_AUTH_SALT', '?~*:ck|!M_@:CV- )quHp50vcN<;72q*j5u+YD%3DpM.-L/p|3QYQP|N/78KKmSo');
|
||||
define('LOGGED_IN_SALT', '1X?t.RE+q@V?X*0PxOxwzehc)_vTk,y/nc5;bWXBD|H6UFM5OiWS6X[]i|vg}Au8');
|
||||
define('NONCE_SALT', '3!Fc.@gSB}&Q2lr[HRx^K}+p[wx!RaC496P ^U/fsgcP_>QCOVoicd@234)D$L/5');
|
||||
|
||||
/**
|
||||
* WordPress Database Table prefix.
|
||||
*
|
||||
* You can have multiple installations in one database if you give each
|
||||
* a unique prefix. Only numbers, letters, and underscores please!
|
||||
*/
|
||||
$table_prefix = 'wp_';
|
||||
|
||||
/** Absolute path to the WordPress directory. */
|
||||
if ( !defined('ABSPATH') )
|
||||
define('ABSPATH', dirname(__FILE__) . '/');
|
||||
|
||||
/** Sets up WordPress vars and included files. */
|
||||
require_once(ABSPATH . 'wp-settings.php');
|
||||
2
wordpress/wp-content/index.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
840
wordpress/wp-content/mu-plugins/domain_mapping.php
Normal file
@@ -0,0 +1,840 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: WordPress MU Domain Mapping
|
||||
Plugin URI: http://ocaoimh.ie/wordpress-mu-domain-mapping/
|
||||
Description: Map any blog on a WordPress website to another domain.
|
||||
Version: 0.5.5.1
|
||||
Author: Donncha O Caoimh
|
||||
Author URI: http://ocaoimh.ie/
|
||||
*/
|
||||
/* Copyright Donncha O Caoimh (http://ocaoimh.ie/)
|
||||
With contributions by Ron Rennick(http://wpmututorials.com/), Greg Sidberry and others.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
function dm_text_domain() {
|
||||
load_plugin_textdomain( 'wordpress-mu-domain-mapping', basename( dirname( __FILE__ ) ) . 'languages', 'wordpress-mu-domain-mapping/languages' );
|
||||
}
|
||||
add_action( 'init', 'dm_text_domain' );
|
||||
|
||||
function domain_mapping_warning() {
|
||||
echo "<div id='domain-mapping-warning' class='updated fade'><p><strong>".__( 'Domain Mapping Disabled.', 'wordpress-mu-domain-mapping' )."</strong> ".sprintf(__('You must <a href="%1$s">create a network</a> for it to work.', 'wordpress-mu-domain-mapping' ), "http://codex.wordpress.org/Create_A_Network")."</p></div>";
|
||||
}
|
||||
|
||||
function dm_add_pages() {
|
||||
global $current_site, $wpdb, $wp_db_version, $wp_version;
|
||||
|
||||
if ( !isset( $current_site ) && $wp_db_version >= 15260 ) { // WP 3.0 network hasn't been configured
|
||||
add_action('admin_notices', 'domain_mapping_warning');
|
||||
return false;
|
||||
}
|
||||
if ( $current_site->path != "/" ) {
|
||||
wp_die( __( "The domain mapping plugin only works if the site is installed in /. This is a limitation of how virtual servers work and is very difficult to work around.", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
|
||||
if ( get_site_option( 'dm_user_settings' ) && $current_site->blog_id != $wpdb->blogid && !dm_sunrise_warning( false ) ) {
|
||||
add_management_page(__( 'Domain Mapping', 'wordpress-mu-domain-mapping'), __( 'Domain Mapping', 'wordpress-mu-domain-mapping'), 'manage_options', 'domainmapping', 'dm_manage_page' );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'admin_menu', 'dm_add_pages' );
|
||||
|
||||
function dm_network_pages() {
|
||||
add_submenu_page('settings.php', 'Domain Mapping', 'Domain Mapping', 'manage_options', 'dm_admin_page', 'dm_admin_page');
|
||||
add_submenu_page('settings.php', 'Domains', 'Domains', 'manage_options', 'dm_domains_admin', 'dm_domains_admin');
|
||||
}
|
||||
add_action( 'network_admin_menu', 'dm_network_pages' );
|
||||
|
||||
// Default Messages for the users Domain Mapping management page
|
||||
// This can now be replaced by using:
|
||||
// remove_action('dm_echo_updated_msg','dm_echo_default_updated_msg');
|
||||
// add_action('dm_echo_updated_msg','my_custom_updated_msg_function');
|
||||
function dm_echo_default_updated_msg() {
|
||||
switch( $_GET[ 'updated' ] ) {
|
||||
case "add":
|
||||
$msg = __( 'New domain added.', 'wordpress-mu-domain-mapping' );
|
||||
break;
|
||||
case "exists":
|
||||
$msg = __( 'New domain already exists.', 'wordpress-mu-domain-mapping' );
|
||||
break;
|
||||
case "primary":
|
||||
$msg = __( 'New primary domain.', 'wordpress-mu-domain-mapping' );
|
||||
break;
|
||||
case "del":
|
||||
$msg = __( 'Domain deleted.', 'wordpress-mu-domain-mapping' );
|
||||
break;
|
||||
}
|
||||
echo "<div class='updated fade'><p>$msg</p></div>";
|
||||
}
|
||||
add_action('dm_echo_updated_msg','dm_echo_default_updated_msg');
|
||||
|
||||
function maybe_create_db() {
|
||||
global $wpdb;
|
||||
|
||||
get_dm_hash(); // initialise the remote login hash
|
||||
|
||||
$wpdb->dmtable = $wpdb->base_prefix . 'domain_mapping';
|
||||
$wpdb->dmtablelogins = $wpdb->base_prefix . 'domain_mapping_logins';
|
||||
if ( dm_site_admin() ) {
|
||||
$created = 0;
|
||||
if ( $wpdb->get_var("SHOW TABLES LIKE '{$wpdb->dmtable}'") != $wpdb->dmtable ) {
|
||||
$wpdb->query( "CREATE TABLE IF NOT EXISTS `{$wpdb->dmtable}` (
|
||||
`id` bigint(20) NOT NULL auto_increment,
|
||||
`blog_id` bigint(20) NOT NULL,
|
||||
`domain` varchar(255) NOT NULL,
|
||||
`active` tinyint(4) default '1',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `blog_id` (`blog_id`,`domain`,`active`)
|
||||
);" );
|
||||
$created = 1;
|
||||
}
|
||||
if ( $wpdb->get_var("SHOW TABLES LIKE '{$wpdb->dmtablelogins}'") != $wpdb->dmtablelogins ) {
|
||||
$wpdb->query( "CREATE TABLE IF NOT EXISTS `{$wpdb->dmtablelogins}` (
|
||||
`id` varchar(32) NOT NULL,
|
||||
`user_id` bigint(20) NOT NULL,
|
||||
`blog_id` bigint(20) NOT NULL,
|
||||
`t` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id`)
|
||||
);" );
|
||||
$created = 1;
|
||||
}
|
||||
if ( $created ) {
|
||||
?> <div id="message" class="updated fade"><p><strong><?php _e( 'Domain mapping database table created.', 'wordpress-mu-domain-mapping' ) ?></strong></p></div> <?php
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function dm_domains_admin() {
|
||||
global $wpdb, $current_site;
|
||||
if ( false == dm_site_admin() ) { // paranoid? moi?
|
||||
return false;
|
||||
}
|
||||
|
||||
dm_sunrise_warning();
|
||||
|
||||
if ( $current_site->path != "/" ) {
|
||||
wp_die( sprintf( __( "<strong>Warning!</strong> This plugin will only work if WordPress is installed in the root directory of your webserver. It is currently installed in ’%s’.", "wordpress-mu-domain-mapping" ), $current_site->path ) );
|
||||
}
|
||||
|
||||
echo '<h2>' . __( 'Domain Mapping: Domains', 'wordpress-mu-domain-mapping' ) . '</h2>';
|
||||
if ( !empty( $_POST[ 'action' ] ) ) {
|
||||
check_admin_referer( 'domain_mapping' );
|
||||
$domain = strtolower( $_POST[ 'domain' ] );
|
||||
switch( $_POST[ 'action' ] ) {
|
||||
case "edit":
|
||||
$row = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->dmtable} WHERE domain = %s", $domain ) );
|
||||
if ( $row ) {
|
||||
dm_edit_domain( $row );
|
||||
} else {
|
||||
echo "<h3>" . __( 'Domain not found', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
}
|
||||
break;
|
||||
case "save":
|
||||
if ( $_POST[ 'blog_id' ] != 0 AND
|
||||
$_POST[ 'blog_id' ] != 1 AND
|
||||
null == $wpdb->get_var( $wpdb->prepare( "SELECT domain FROM {$wpdb->dmtable} WHERE blog_id != %d AND domain = %s", $_POST[ 'blog_id' ], $domain ) )
|
||||
) {
|
||||
if ( $_POST[ 'orig_domain' ] == '' ) {
|
||||
$wpdb->query( $wpdb->prepare( "INSERT INTO {$wpdb->dmtable} ( `blog_id`, `domain`, `active` ) VALUES ( %d, %s, %d )", $_POST[ 'blog_id' ], $domain, $_POST[ 'active' ] ) );
|
||||
echo "<p><strong>" . __( 'Domain Add', 'wordpress-mu-domain-mapping' ) . "</strong></p>";
|
||||
} else {
|
||||
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->dmtable} SET blog_id = %d, domain = %s, active = %d WHERE domain = %s", $_POST[ 'blog_id' ], $domain, $_POST[ 'active' ], $_POST[ 'orig_domain' ] ) );
|
||||
echo "<p><strong>" . __( 'Domain Updated', 'wordpress-mu-domain-mapping' ) . "</strong></p>";
|
||||
}
|
||||
}
|
||||
break;
|
||||
case "del":
|
||||
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->dmtable} WHERE domain = %s", $domain ) );
|
||||
echo "<p><strong>" . __( 'Domain Deleted', 'wordpress-mu-domain-mapping' ) . "</strong></p>";
|
||||
break;
|
||||
case "search":
|
||||
$rows = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->dmtable} WHERE domain LIKE %s", $domain ) );
|
||||
dm_domain_listing( $rows, sprintf( __( "Searching for %s", 'wordpress-mu-domain-mapping' ), esc_html( $domain ) ) );
|
||||
break;
|
||||
}
|
||||
if ( $_POST[ 'action' ] == 'update' ) {
|
||||
if ( preg_match( '|^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$|', $_POST[ 'ipaddress' ] ) )
|
||||
update_site_option( 'dm_ipaddress', $_POST[ 'ipaddress' ] );
|
||||
|
||||
if ( ! preg_match( '/(--|\.\.)/', $_POST[ 'cname' ] ) && preg_match( '|^([a-zA-Z0-9-\.])+$|', $_POST[ 'cname' ] ) )
|
||||
update_site_option( 'dm_cname', stripslashes( $_POST[ 'cname' ] ) );
|
||||
else
|
||||
update_site_option( 'dm_cname', '' );
|
||||
|
||||
update_site_option( 'dm_301_redirect', intval( $_POST[ 'permanent_redirect' ] ) );
|
||||
}
|
||||
}
|
||||
|
||||
echo "<h3>" . __( 'Search Domains', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
echo '<form method="POST">';
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo '<input type="hidden" name="action" value="search" />';
|
||||
echo '<p>';
|
||||
echo _e( "Domain:", 'wordpress-mu-domain-mapping' );
|
||||
echo " <input type='text' name='domain' value='' /></p>";
|
||||
echo "<p><input type='submit' class='button-secondary' value='" . __( 'Search', 'wordpress-mu-domain-mapping' ) . "' /></p>";
|
||||
echo "</form><br />";
|
||||
dm_edit_domain();
|
||||
$rows = $wpdb->get_results( "SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC LIMIT 0,20" );
|
||||
dm_domain_listing( $rows );
|
||||
echo '<p>' . sprintf( __( '<strong>Note:</strong> %s', 'wordpress-mu-domain-mapping' ), dm_idn_warning() ) . "</p>";
|
||||
}
|
||||
|
||||
function dm_edit_domain( $row = false ) {
|
||||
if ( is_object( $row ) ) {
|
||||
echo "<h3>" . __( 'Edit Domain', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
} else {
|
||||
echo "<h3>" . __( 'New Domain', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
$row = new stdClass();
|
||||
$row->blog_id = '';
|
||||
$row->domain = '';
|
||||
$_POST[ 'domain' ] = '';
|
||||
$row->active = 1;
|
||||
}
|
||||
|
||||
echo "<form method='POST'><input type='hidden' name='action' value='save' /><input type='hidden' name='orig_domain' value='" . esc_attr( $_POST[ 'domain' ] ) . "' />";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "<table class='form-table'>\n";
|
||||
echo "<tr><th>" . __( 'Site ID', 'wordpress-mu-domain-mapping' ) . "</th><td><input type='text' name='blog_id' value='{$row->blog_id}' /></td></tr>\n";
|
||||
echo "<tr><th>" . __( 'Domain', 'wordpress-mu-domain-mapping' ) . "</th><td><input type='text' name='domain' value='{$row->domain}' /></td></tr>\n";
|
||||
echo "<tr><th>" . __( 'Primary', 'wordpress-mu-domain-mapping' ) . "</th><td><input type='checkbox' name='active' value='1' ";
|
||||
echo $row->active == 1 ? 'checked=1 ' : ' ';
|
||||
echo "/></td></tr>\n";
|
||||
if ( get_site_option( 'dm_no_primary_domain' ) == 1 ) {
|
||||
echo "<tr><td colspan='2'>" . __( '<strong>Warning!</strong> Primary domains are currently disabled.', 'wordpress-mu-domain-mapping' ) . "</td></tr>";
|
||||
}
|
||||
echo "</table>";
|
||||
echo "<p><input type='submit' class='button-primary' value='" .__( 'Save', 'wordpress-mu-domain-mapping' ). "' /></p></form><br /><br />";
|
||||
}
|
||||
|
||||
function dm_domain_listing( $rows, $heading = '' ) {
|
||||
if ( $rows ) {
|
||||
if ( file_exists( ABSPATH . 'wp-admin/network/site-info.php' ) ) {
|
||||
$edit_url = network_admin_url( 'site-info.php' );
|
||||
} elseif ( file_exists( ABSPATH . 'wp-admin/ms-sites.php' ) ) {
|
||||
$edit_url = admin_url( 'ms-sites.php' );
|
||||
} else {
|
||||
$edit_url = admin_url( 'wpmu-blogs.php' );
|
||||
}
|
||||
if ( $heading != '' )
|
||||
echo "<h3>$heading</h3>";
|
||||
echo '<table class="widefat" cellspacing="0"><thead><tr><th>'.__( 'Site ID', 'wordpress-mu-domain-mapping' ).'</th><th>'.__( 'Domain', 'wordpress-mu-domain-mapping' ).'</th><th>'.__( 'Primary', 'wordpress-mu-domain-mapping' ).'</th><th>'.__( 'Edit', 'wordpress-mu-domain-mapping' ).'</th><th>'.__( 'Delete', 'wordpress-mu-domain-mapping' ).'</th></tr></thead><tbody>';
|
||||
foreach( $rows as $row ) {
|
||||
echo "<tr><td><a href='" . add_query_arg( array( 'action' => 'editblog', 'id' => $row->blog_id ), $edit_url ) . "'>{$row->blog_id}</a></td><td><a href='http://{$row->domain}/'>{$row->domain}</a></td><td>";
|
||||
echo $row->active == 1 ? __( 'Yes', 'wordpress-mu-domain-mapping' ) : __( 'No', 'wordpress-mu-domain-mapping' );
|
||||
echo "</td><td><form method='POST'><input type='hidden' name='action' value='edit' /><input type='hidden' name='domain' value='{$row->domain}' />";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "<input type='submit' class='button-secondary' value='" .__( 'Edit', 'wordpress-mu-domain-mapping' ). "' /></form></td><td><form method='POST'><input type='hidden' name='action' value='del' /><input type='hidden' name='domain' value='{$row->domain}' />";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "<input type='submit' class='button-secondary' value='" .__( 'Del', 'wordpress-mu-domain-mapping' ). "' /></form>";
|
||||
echo "</td></tr>";
|
||||
}
|
||||
echo '</table>';
|
||||
if ( get_site_option( 'dm_no_primary_domain' ) == 1 ) {
|
||||
echo "<p>" . __( '<strong>Warning!</strong> Primary domains are currently disabled.', 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function dm_admin_page() {
|
||||
global $wpdb, $current_site;
|
||||
if ( false == dm_site_admin() ) { // paranoid? moi?
|
||||
return false;
|
||||
}
|
||||
|
||||
dm_sunrise_warning();
|
||||
maybe_create_db();
|
||||
|
||||
if ( $current_site->path != "/" ) {
|
||||
wp_die( sprintf( __( "<strong>Warning!</strong> This plugin will only work if WordPress is installed in the root directory of your webserver. It is currently installed in ’%s’.", "wordpress-mu-domain-mapping" ), $current_site->path ) );
|
||||
}
|
||||
|
||||
// set up some defaults
|
||||
if ( get_site_option( 'dm_remote_login', 'NA' ) == 'NA' )
|
||||
add_site_option( 'dm_remote_login', 1 );
|
||||
if ( get_site_option( 'dm_redirect_admin', 'NA' ) == 'NA' )
|
||||
add_site_option( 'dm_redirect_admin', 1 );
|
||||
if ( get_site_option( 'dm_user_settings', 'NA' ) == 'NA' )
|
||||
add_site_option( 'dm_user_settings', 1 );
|
||||
|
||||
if ( !empty( $_POST[ 'action' ] ) ) {
|
||||
check_admin_referer( 'domain_mapping' );
|
||||
if ( $_POST[ 'action' ] == 'update' ) {
|
||||
$ipok = true;
|
||||
$ipaddresses = explode( ',', $_POST[ 'ipaddress' ] );
|
||||
foreach( $ipaddresses as $address ) {
|
||||
if ( ( $ip = trim( $address ) ) && !preg_match( '|^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$|', $ip ) ) {
|
||||
$ipok = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if( $ipok )
|
||||
update_site_option( 'dm_ipaddress', $_POST[ 'ipaddress' ] );
|
||||
if ( intval( $_POST[ 'always_redirect_admin' ] ) == 0 )
|
||||
$_POST[ 'dm_remote_login' ] = 0; // disable remote login if redirecting to mapped domain
|
||||
update_site_option( 'dm_remote_login', intval( $_POST[ 'dm_remote_login' ] ) );
|
||||
if ( ! preg_match( '/(--|\.\.)/', $_POST[ 'cname' ] ) && preg_match( '|^([a-zA-Z0-9-\.])+$|', $_POST[ 'cname' ] ) )
|
||||
update_site_option( 'dm_cname', stripslashes( $_POST[ 'cname' ] ) );
|
||||
else
|
||||
update_site_option( 'dm_cname', '' );
|
||||
update_site_option( 'dm_301_redirect', isset( $_POST[ 'permanent_redirect' ] ) ? intval( $_POST[ 'permanent_redirect' ] ) : 0 );
|
||||
update_site_option( 'dm_redirect_admin', isset( $_POST[ 'always_redirect_admin' ] ) ? intval( $_POST[ 'always_redirect_admin' ] ) : 0 );
|
||||
update_site_option( 'dm_user_settings', isset( $_POST[ 'dm_user_settings' ] ) ? intval( $_POST[ 'dm_user_settings' ] ) : 0 );
|
||||
update_site_option( 'dm_no_primary_domain', isset( $_POST[ 'dm_no_primary_domain' ] ) ? intval( $_POST[ 'dm_no_primary_domain' ] ) : 0 );
|
||||
}
|
||||
}
|
||||
|
||||
echo '<h3>' . __( 'Domain Mapping Configuration', 'wordpress-mu-domain-mapping' ) . '</h3>';
|
||||
echo '<form method="POST">';
|
||||
echo '<input type="hidden" name="action" value="update" />';
|
||||
echo "<p>" . __( "As a super admin on this network you can set the IP address users need to point their DNS A records at <em>or</em> the domain to point CNAME record at. If you don't know what the IP address is, ping this blog to get it.", 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
echo "<p>" . __( "If you use round robin DNS or another load balancing technique with more than one IP, enter each address, separating them by commas.", 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
_e( "Server IP Address: ", 'wordpress-mu-domain-mapping' );
|
||||
echo "<input type='text' name='ipaddress' value='" . get_site_option( 'dm_ipaddress' ) . "' /><br />";
|
||||
|
||||
// Using a CNAME is a safer method than using IP adresses for some people (IMHO)
|
||||
echo "<p>" . __( "If you prefer the use of a CNAME record, you can set the domain here. This domain must be configured with an A record or ANAME pointing at an IP address. Visitors may experience problems if it is a CNAME of another domain.", 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
echo "<p>" . __( "NOTE, this voids the use of any IP address set above", 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
_e( "Server CNAME domain: ", 'wordpress-mu-domain-mapping' );
|
||||
echo "<input type='text' name='cname' value='" . get_site_option( 'dm_cname' ) . "' /> (" . dm_idn_warning() . ")<br />";
|
||||
echo '<p>' . __( 'The information you enter here will be shown to your users so they can configure their DNS correctly. It is for informational purposes only', 'wordpress-mu-domain-mapping' ) . '</p>';
|
||||
|
||||
echo "<h3>" . __( 'Domain Options', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
echo "<ol><li><input type='checkbox' name='dm_remote_login' value='1' ";
|
||||
echo get_site_option( 'dm_remote_login' ) == 1 ? "checked='checked'" : "";
|
||||
echo " /> " . __( 'Remote Login', 'wordpress-mu-domain-mapping' ) . "</li>";
|
||||
echo "<li><input type='checkbox' name='permanent_redirect' value='1' ";
|
||||
echo get_site_option( 'dm_301_redirect' ) == 1 ? "checked='checked'" : "";
|
||||
echo " /> " . __( "Permanent redirect (better for your blogger's pagerank)", 'wordpress-mu-domain-mapping' ) . "</li>";
|
||||
echo "<li><input type='checkbox' name='dm_user_settings' value='1' ";
|
||||
echo get_site_option( 'dm_user_settings' ) == 1 ? "checked='checked'" : "";
|
||||
echo " /> " . __( 'User domain mapping page', 'wordpress-mu-domain-mapping' ) . "</li> ";
|
||||
echo "<li><input type='checkbox' name='always_redirect_admin' value='1' ";
|
||||
echo get_site_option( 'dm_redirect_admin' ) == 1 ? "checked='checked'" : "";
|
||||
echo " /> " . __( "Redirect administration pages to site's original domain (remote login disabled if this redirect is disabled)", 'wordpress-mu-domain-mapping' ) . "</li>";
|
||||
echo "<li><input type='checkbox' name='dm_no_primary_domain' value='1' ";
|
||||
echo get_site_option( 'dm_no_primary_domain' ) == 1 ? "checked='checked'" : "";
|
||||
echo " /> " . __( "Disable primary domain check. Sites will not redirect to one domain name. May cause duplicate content issues.", 'wordpress-mu-domain-mapping' ) . "</li></ol>";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "<p><input class='button-primary' type='submit' value='" . __( "Save", 'wordpress-mu-domain-mapping' ) . "' /></p>";
|
||||
echo "</form><br />";
|
||||
}
|
||||
|
||||
function dm_handle_actions() {
|
||||
global $wpdb, $parent_file;
|
||||
$url = add_query_arg( array( 'page' => 'domainmapping' ), admin_url( $parent_file ) );
|
||||
if ( !empty( $_POST[ 'action' ] ) ) {
|
||||
$domain = $wpdb->escape( $_POST[ 'domain' ] );
|
||||
if ( $domain == '' ) {
|
||||
wp_die( "You must enter a domain" );
|
||||
}
|
||||
check_admin_referer( 'domain_mapping' );
|
||||
do_action('dm_handle_actions_init', $domain);
|
||||
switch( $_POST[ 'action' ] ) {
|
||||
case "add":
|
||||
do_action('dm_handle_actions_add', $domain);
|
||||
if( null == $wpdb->get_row( "SELECT blog_id FROM {$wpdb->blogs} WHERE domain = '$domain'" ) && null == $wpdb->get_row( "SELECT blog_id FROM {$wpdb->dmtable} WHERE domain = '$domain'" ) ) {
|
||||
if ( $_POST[ 'primary' ] ) {
|
||||
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->dmtable} SET active = 0 WHERE blog_id = %d", $wpdb->blogid ) );
|
||||
}
|
||||
$wpdb->query( $wpdb->prepare( "INSERT INTO {$wpdb->dmtable} ( `id` , `blog_id` , `domain` , `active` ) VALUES ( NULL, %d, %s, %d )", $wpdb->blogid, $domain, $_POST[ 'primary' ] ) );
|
||||
wp_redirect( add_query_arg( array( 'updated' => 'add' ), $url ) );
|
||||
exit;
|
||||
} else {
|
||||
wp_redirect( add_query_arg( array( 'updated' => 'exists' ), $url ) );
|
||||
exit;
|
||||
}
|
||||
break;
|
||||
case "primary":
|
||||
do_action('dm_handle_actions_primary', $domain);
|
||||
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->dmtable} SET active = 0 WHERE blog_id = %d", $wpdb->blogid ) );
|
||||
$orig_url = parse_url( get_original_url( 'siteurl' ) );
|
||||
if( $domain != $orig_url[ 'host' ] ) {
|
||||
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->dmtable} SET active = 1 WHERE domain = %s", $domain ) );
|
||||
}
|
||||
wp_redirect( add_query_arg( array( 'updated' => 'primary' ), $url ) );
|
||||
exit;
|
||||
break;
|
||||
}
|
||||
} elseif( $_GET[ 'action' ] == 'delete' ) {
|
||||
$domain = $wpdb->escape( $_GET[ 'domain' ] );
|
||||
if ( $domain == '' ) {
|
||||
wp_die( __( "You must enter a domain", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
check_admin_referer( "delete" . $_GET['domain'] );
|
||||
do_action('dm_handle_actions_del', $domain);
|
||||
$wpdb->query( "DELETE FROM {$wpdb->dmtable} WHERE domain = '$domain'" );
|
||||
wp_redirect( add_query_arg( array( 'updated' => 'del' ), $url ) );
|
||||
exit;
|
||||
}
|
||||
|
||||
}
|
||||
if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'domainmapping' )
|
||||
add_action( 'admin_init', 'dm_handle_actions' );
|
||||
|
||||
function dm_sunrise_warning( $die = true ) {
|
||||
if ( !file_exists( WP_CONTENT_DIR . '/sunrise.php' ) ) {
|
||||
if ( !$die )
|
||||
return true;
|
||||
|
||||
if ( dm_site_admin() ) {
|
||||
wp_die( sprintf( __( "Please copy sunrise.php to %s/sunrise.php and ensure the SUNRISE definition is in %swp-config.php", 'wordpress-mu-domain-mapping' ), WP_CONTENT_DIR, ABSPATH ) );
|
||||
} else {
|
||||
wp_die( __( "This plugin has not been configured correctly yet.", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
} elseif ( !defined( 'SUNRISE' ) ) {
|
||||
if ( !$die )
|
||||
return true;
|
||||
|
||||
if ( dm_site_admin() ) {
|
||||
wp_die( sprintf( __( "Please uncomment the line <em>define( 'SUNRISE', 'on' );</em> or add it to your %swp-config.php", 'wordpress-mu-domain-mapping' ), ABSPATH ) );
|
||||
} else {
|
||||
wp_die( __( "This plugin has not been configured correctly yet.", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
} elseif ( !defined( 'SUNRISE_LOADED' ) ) {
|
||||
if ( !$die )
|
||||
return true;
|
||||
|
||||
if ( dm_site_admin() ) {
|
||||
wp_die( sprintf( __( "Please edit your %swp-config.php and move the line <em>define( 'SUNRISE', 'on' );</em> above the last require_once() in that file or make sure you updated sunrise.php.", 'wordpress-mu-domain-mapping' ), ABSPATH ) );
|
||||
} else {
|
||||
wp_die( __( "This plugin has not been configured correctly yet.", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
function dm_manage_page() {
|
||||
global $wpdb, $parent_file;
|
||||
|
||||
if ( isset( $_GET[ 'updated' ] ) ) {
|
||||
do_action('dm_echo_updated_msg');
|
||||
}
|
||||
|
||||
dm_sunrise_warning();
|
||||
|
||||
echo "<div class='wrap'><h2>" . __( 'Domain Mapping', 'wordpress-mu-domain-mapping' ) . "</h2>";
|
||||
|
||||
if ( false == get_site_option( 'dm_ipaddress' ) && false == get_site_option( 'dm_cname' ) ) {
|
||||
if ( dm_site_admin() ) {
|
||||
_e( "Please set the IP address or CNAME of your server in the <a href='wpmu-admin.php?page=dm_admin_page'>site admin page</a>.", 'wordpress-mu-domain-mapping' );
|
||||
} else {
|
||||
_e( "This plugin has not been configured correctly yet.", 'wordpress-mu-domain-mapping' );
|
||||
}
|
||||
echo "</div>";
|
||||
return false;
|
||||
}
|
||||
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
$domains = $wpdb->get_results( "SELECT * FROM {$wpdb->dmtable} WHERE blog_id = '{$wpdb->blogid}'", ARRAY_A );
|
||||
if ( is_array( $domains ) && !empty( $domains ) ) {
|
||||
$orig_url = parse_url( get_original_url( 'siteurl' ) );
|
||||
$domains[] = array( 'domain' => $orig_url[ 'host' ], 'path' => $orig_url[ 'path' ], 'active' => 0 );
|
||||
echo "<h3>" . __( 'Active domains on this blog', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
echo '<form method="POST">';
|
||||
echo "<table><tr><th>" . __( 'Primary', 'wordpress-mu-domain-mapping' ) . "</th><th>" . __( 'Domain', 'wordpress-mu-domain-mapping' ) . "</th><th>" . __( 'Delete', 'wordpress-mu-domain-mapping' ) . "</th></tr>\n";
|
||||
$primary_found = 0;
|
||||
$del_url = add_query_arg( array( 'page' => 'domainmapping', 'action' => 'delete' ), admin_url( $parent_file ) );
|
||||
foreach( $domains as $details ) {
|
||||
if ( 0 == $primary_found && $details[ 'domain' ] == $orig_url[ 'host' ] ) {
|
||||
$details[ 'active' ] = 1;
|
||||
}
|
||||
echo "<tr><td>";
|
||||
echo "<input type='radio' name='domain' value='{$details[ 'domain' ]}' ";
|
||||
if ( $details[ 'active' ] == 1 )
|
||||
echo "checked='1' ";
|
||||
echo "/>";
|
||||
$url = "{$protocol}{$details[ 'domain' ]}{$details[ 'path' ]}";
|
||||
echo "</td><td><a href='$url'>$url</a></td><td style='text-align: center'>";
|
||||
if ( $details[ 'domain' ] != $orig_url[ 'host' ] && $details[ 'active' ] != 1 ) {
|
||||
echo "<a href='" . wp_nonce_url( add_query_arg( array( 'domain' => $details[ 'domain' ] ), $del_url ), "delete" . $details[ 'domain' ] ) . "'>Del</a>";
|
||||
}
|
||||
echo "</td></tr>";
|
||||
if ( 0 == $primary_found )
|
||||
$primary_found = $details[ 'active' ];
|
||||
}
|
||||
?></table><?php
|
||||
echo '<input type="hidden" name="action" value="primary" />';
|
||||
echo "<p><input type='submit' class='button-primary' value='" . __( 'Set Primary Domain', 'wordpress-mu-domain-mapping' ) . "' /></p>";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "</form>";
|
||||
echo "<p>" . __( "* The primary domain cannot be deleted.", 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
if ( get_site_option( 'dm_no_primary_domain' ) == 1 ) {
|
||||
echo __( '<strong>Warning!</strong> Primary domains are currently disabled.', 'wordpress-mu-domain-mapping' );
|
||||
}
|
||||
}
|
||||
echo "<h3>" . __( 'Add new domain', 'wordpress-mu-domain-mapping' ) . "</h3>";
|
||||
echo '<form method="POST">';
|
||||
echo '<input type="hidden" name="action" value="add" />';
|
||||
echo "<p>http://<input type='text' name='domain' value='' />/<br />";
|
||||
wp_nonce_field( 'domain_mapping' );
|
||||
echo "<input type='checkbox' name='primary' value='1' /> " . __( 'Primary domain for this blog', 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
echo "<p><input type='submit' class='button-secondary' value='" . __( "Add", 'wordpress-mu-domain-mapping' ) . "' /></p>";
|
||||
echo "</form><br />";
|
||||
|
||||
if ( get_site_option( 'dm_cname' ) ) {
|
||||
$dm_cname = get_site_option( 'dm_cname');
|
||||
echo "<p>" . sprintf( __( 'If you want to redirect a domain you will need to add a DNS "CNAME" record pointing to the following domain name for this server: <strong>%s</strong>', 'wordpress-mu-domain-mapping' ), $dm_cname ) . "</p>";
|
||||
echo "<p>" . __( 'Google have published <a href="http://www.google.com/support/blogger/bin/answer.py?hl=en&answer=58317" target="_blank">instructions</a> for creating CNAME records on various hosting platforms such as GoDaddy and others.', 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
} else {
|
||||
echo "<p>" . __( 'If your domain name includes a hostname like "www", "blog" or some other prefix before the actual domain name you will need to add a CNAME for that hostname in your DNS pointing at this blog URL.', 'wordpress-mu-domain-mapping' ) . "</p>";
|
||||
$dm_ipaddress = get_site_option( 'dm_ipaddress', 'IP not set by admin yet.' );
|
||||
if ( strpos( $dm_ipaddress, ',' ) ) {
|
||||
echo "<p>" . sprintf( __( 'If you want to redirect a domain you will need to add DNS "A" records pointing at the IP addresses of this server: <strong>%s</strong>', 'wordpress-mu-domain-mapping' ), $dm_ipaddress ) . "</p>";
|
||||
} else {
|
||||
echo "<p>" . sprintf( __( 'If you want to redirect a domain you will need to add a DNS "A" record pointing at the IP address of this server: <strong>%s</strong>', 'wordpress-mu-domain-mapping' ), $dm_ipaddress ) . "</p>";
|
||||
}
|
||||
}
|
||||
echo '<p>' . sprintf( __( '<strong>Note:</strong> %s', 'wordpress-mu-domain-mapping' ), dm_idn_warning() ) . "</p>";
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
function domain_mapping_siteurl( $setting ) {
|
||||
global $wpdb, $current_blog;
|
||||
|
||||
// To reduce the number of database queries, save the results the first time we encounter each blog ID.
|
||||
static $return_url = array();
|
||||
|
||||
$wpdb->dmtable = $wpdb->base_prefix . 'domain_mapping';
|
||||
|
||||
if ( !isset( $return_url[ $wpdb->blogid ] ) ) {
|
||||
$s = $wpdb->suppress_errors();
|
||||
|
||||
if ( get_site_option( 'dm_no_primary_domain' ) == 1 ) {
|
||||
$domain = $wpdb->get_var( "SELECT domain FROM {$wpdb->dmtable} WHERE blog_id = '{$wpdb->blogid}' AND domain = '" . $wpdb->escape( $_SERVER[ 'HTTP_HOST' ] ) . "' LIMIT 1" );
|
||||
if ( null == $domain ) {
|
||||
$return_url[ $wpdb->blogid ] = untrailingslashit( get_original_url( "siteurl" ) );
|
||||
return $return_url[ $wpdb->blogid ];
|
||||
}
|
||||
} else {
|
||||
// get primary domain, if we don't have one then return original url.
|
||||
$domain = $wpdb->get_var( "SELECT domain FROM {$wpdb->dmtable} WHERE blog_id = '{$wpdb->blogid}' AND active = 1 LIMIT 1" );
|
||||
if ( null == $domain ) {
|
||||
$return_url[ $wpdb->blogid ] = untrailingslashit( get_original_url( "siteurl" ) );
|
||||
return $return_url[ $wpdb->blogid ];
|
||||
}
|
||||
}
|
||||
|
||||
$wpdb->suppress_errors( $s );
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
if ( $domain ) {
|
||||
$return_url[ $wpdb->blogid ] = untrailingslashit( $protocol . $domain );
|
||||
$setting = $return_url[ $wpdb->blogid ];
|
||||
} else {
|
||||
$return_url[ $wpdb->blogid ] = false;
|
||||
}
|
||||
} elseif ( $return_url[ $wpdb->blogid ] !== FALSE) {
|
||||
$setting = $return_url[ $wpdb->blogid ];
|
||||
}
|
||||
|
||||
return $setting;
|
||||
}
|
||||
|
||||
// url is siteurl or home
|
||||
function get_original_url( $url, $blog_id = 0 ) {
|
||||
global $wpdb;
|
||||
|
||||
if ( $blog_id != 0 ) {
|
||||
$id = $blog_id;
|
||||
} else {
|
||||
$id = $wpdb->blogid;
|
||||
}
|
||||
|
||||
static $orig_urls = array();
|
||||
if ( ! isset( $orig_urls[ $id ] ) ) {
|
||||
if ( defined( 'DOMAIN_MAPPING' ) )
|
||||
remove_filter( 'pre_option_' . $url, 'domain_mapping_' . $url );
|
||||
if ( $blog_id == 0 ) {
|
||||
$orig_url = get_option( $url );
|
||||
} else {
|
||||
$orig_url = get_blog_option( $blog_id, $url );
|
||||
}
|
||||
if ( is_ssl() ) {
|
||||
$orig_url = str_replace( "http://", "https://", $orig_url );
|
||||
} else {
|
||||
$orig_url = str_replace( "https://", "http://", $orig_url );
|
||||
}
|
||||
if ( $blog_id == 0 ) {
|
||||
$orig_urls[ $wpdb->blogid ] = $orig_url;
|
||||
} else {
|
||||
$orig_urls[ $blog_id ] = $orig_url;
|
||||
}
|
||||
if ( defined( 'DOMAIN_MAPPING' ) )
|
||||
add_filter( 'pre_option_' . $url, 'domain_mapping_' . $url );
|
||||
}
|
||||
return $orig_urls[ $id ];
|
||||
}
|
||||
|
||||
function domain_mapping_adminurl( $url, $path, $blog_id = 0 ) {
|
||||
$index = strpos( $url, '/wp-admin' );
|
||||
if( $index !== false ) {
|
||||
$url = get_original_url( 'siteurl', $blog_id ) . substr( $url, $index );
|
||||
|
||||
// make sure admin_url is ssl if current page is ssl, or admin ssl is forced
|
||||
if( ( is_ssl() || force_ssl_admin() ) && 0 === strpos( $url, 'http://' ) ) {
|
||||
$url = 'https://' . substr( $url, 7 );
|
||||
}
|
||||
}
|
||||
return $url;
|
||||
}
|
||||
|
||||
function domain_mapping_post_content( $post_content ) {
|
||||
global $wpdb;
|
||||
|
||||
$orig_url = get_original_url( 'siteurl' );
|
||||
|
||||
$url = domain_mapping_siteurl( 'NA' );
|
||||
if ( $url == 'NA' )
|
||||
return $post_content;
|
||||
return str_replace( $orig_url, $url, $post_content );
|
||||
}
|
||||
|
||||
function dm_redirect_admin() {
|
||||
// don't redirect admin ajax calls
|
||||
if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin/admin-ajax.php' ) !== false )
|
||||
return;
|
||||
|
||||
if ( get_site_option( 'dm_redirect_admin' ) ) {
|
||||
// redirect mapped domain admin page to original url
|
||||
$url = get_original_url( 'siteurl' );
|
||||
if ( false === strpos( $url, $_SERVER[ 'HTTP_HOST' ] ) ) {
|
||||
wp_redirect( untrailingslashit( $url ) . $_SERVER[ 'REQUEST_URI' ] );
|
||||
exit;
|
||||
}
|
||||
} else {
|
||||
global $current_blog;
|
||||
// redirect original url to primary domain wp-admin/ - remote login is disabled!
|
||||
$url = domain_mapping_siteurl( false );
|
||||
$request_uri = str_replace( $current_blog->path, '/', $_SERVER[ 'REQUEST_URI' ] );
|
||||
if ( false === strpos( $url, $_SERVER[ 'HTTP_HOST' ] ) ) {
|
||||
wp_redirect( str_replace( '//wp-admin', '/wp-admin', trailingslashit( $url ) . $request_uri ) );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function redirect_login_to_orig() {
|
||||
if ( !get_site_option( 'dm_remote_login' ) || $_GET[ 'action' ] == 'logout' || isset( $_GET[ 'loggedout' ] ) ) {
|
||||
return false;
|
||||
}
|
||||
$url = get_original_url( 'siteurl' );
|
||||
if ( $url != site_url() ) {
|
||||
$url .= "/wp-login.php";
|
||||
echo "<script type='text/javascript'>\nwindow.location = '$url'</script>";
|
||||
}
|
||||
}
|
||||
|
||||
// fixes the plugins_url
|
||||
function domain_mapping_plugins_uri( $full_url, $path=NULL, $plugin=NULL ) {
|
||||
return get_option( 'siteurl' ) . substr( $full_url, stripos( $full_url, PLUGINDIR ) - 1 );
|
||||
}
|
||||
|
||||
function domain_mapping_themes_uri( $full_url ) {
|
||||
return str_replace( get_original_url ( 'siteurl' ), get_option( 'siteurl' ), $full_url );
|
||||
}
|
||||
|
||||
if ( defined( 'DOMAIN_MAPPING' ) ) {
|
||||
add_filter( 'plugins_url', 'domain_mapping_plugins_uri', 1 );
|
||||
add_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 );
|
||||
add_filter( 'pre_option_siteurl', 'domain_mapping_siteurl' );
|
||||
add_filter( 'pre_option_home', 'domain_mapping_siteurl' );
|
||||
add_filter( 'the_content', 'domain_mapping_post_content' );
|
||||
add_action( 'wp_head', 'remote_login_js_loader' );
|
||||
add_action( 'login_head', 'redirect_login_to_orig' );
|
||||
add_action( 'wp_logout', 'remote_logout_loader', 9999 );
|
||||
|
||||
add_filter( 'stylesheet_uri', 'domain_mapping_post_content' );
|
||||
add_filter( 'stylesheet_directory', 'domain_mapping_post_content' );
|
||||
add_filter( 'stylesheet_directory_uri', 'domain_mapping_post_content' );
|
||||
add_filter( 'template_directory', 'domain_mapping_post_content' );
|
||||
add_filter( 'template_directory_uri', 'domain_mapping_post_content' );
|
||||
add_filter( 'plugins_url', 'domain_mapping_post_content' );
|
||||
} else {
|
||||
add_filter( 'admin_url', 'domain_mapping_adminurl', 10, 3 );
|
||||
}
|
||||
add_action( 'admin_init', 'dm_redirect_admin' );
|
||||
if ( isset( $_GET[ 'dm' ] ) )
|
||||
add_action( 'template_redirect', 'remote_login_js' );
|
||||
|
||||
function remote_logout_loader() {
|
||||
global $current_site, $current_blog, $wpdb;
|
||||
$wpdb->dmtablelogins = $wpdb->base_prefix . 'domain_mapping_logins';
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
$hash = get_dm_hash();
|
||||
$key = md5( time() );
|
||||
$wpdb->query( $wpdb->prepare( "INSERT INTO {$wpdb->dmtablelogins} ( `id`, `user_id`, `blog_id`, `t` ) VALUES( %s, 0, %d, NOW() )", $key, $current_blog->blog_id ) );
|
||||
if ( get_site_option( 'dm_redirect_admin' ) ) {
|
||||
wp_redirect( $protocol . $current_site->domain . $current_site->path . "?dm={$hash}&action=logout&blogid={$current_blog->blog_id}&k={$key}&t=" . mt_rand() );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
function redirect_to_mapped_domain() {
|
||||
global $current_blog, $wpdb;
|
||||
|
||||
// don't redirect the main site
|
||||
if ( is_main_site() )
|
||||
return;
|
||||
// don't redirect post previews
|
||||
if ( isset( $_GET['preview'] ) && $_GET['preview'] == 'true' )
|
||||
return;
|
||||
|
||||
// don't redirect theme customizer (WP 3.4)
|
||||
if ( isset( $_POST['customize'] ) && isset( $_POST['theme'] ) && $_POST['customize'] == 'on' )
|
||||
return;
|
||||
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
$url = domain_mapping_siteurl( false );
|
||||
if ( $url && $url != untrailingslashit( $protocol . $current_blog->domain . $current_blog->path ) ) {
|
||||
$redirect = get_site_option( 'dm_301_redirect' ) ? '301' : '302';
|
||||
if ( ( defined( 'VHOST' ) && constant( "VHOST" ) != 'yes' ) || ( defined( 'SUBDOMAIN_INSTALL' ) && constant( 'SUBDOMAIN_INSTALL' ) == false ) ) {
|
||||
$_SERVER[ 'REQUEST_URI' ] = str_replace( $current_blog->path, '/', $_SERVER[ 'REQUEST_URI' ] );
|
||||
}
|
||||
header( "Location: {$url}{$_SERVER[ 'REQUEST_URI' ]}", true, $redirect );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
add_action( 'template_redirect', 'redirect_to_mapped_domain' );
|
||||
|
||||
function get_dm_hash() {
|
||||
$remote_login_hash = get_site_option( 'dm_hash' );
|
||||
if ( null == $remote_login_hash ) {
|
||||
$remote_login_hash = md5( time() );
|
||||
update_site_option( 'dm_hash', $remote_login_hash );
|
||||
}
|
||||
return $remote_login_hash;
|
||||
}
|
||||
|
||||
function remote_login_js() {
|
||||
global $current_blog, $current_user, $wpdb;
|
||||
|
||||
if ( 0 == get_site_option( 'dm_remote_login' ) )
|
||||
return false;
|
||||
|
||||
$wpdb->dmtablelogins = $wpdb->base_prefix . 'domain_mapping_logins';
|
||||
$hash = get_dm_hash();
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
if ( $_GET[ 'dm' ] == $hash ) {
|
||||
if ( $_GET[ 'action' ] == 'load' ) {
|
||||
if ( !is_user_logged_in() )
|
||||
exit;
|
||||
$key = md5( time() . mt_rand() );
|
||||
$wpdb->query( $wpdb->prepare( "INSERT INTO {$wpdb->dmtablelogins} ( `id`, `user_id`, `blog_id`, `t` ) VALUES( %s, %d, %d, NOW() )", $key, $current_user->ID, $_GET[ 'blogid' ] ) );
|
||||
$url = add_query_arg( array( 'action' => 'login', 'dm' => $hash, 'k' => $key, 't' => mt_rand() ), $_GET[ 'back' ] );
|
||||
echo "window.location = '$url'";
|
||||
exit;
|
||||
} elseif ( $_GET[ 'action' ] == 'login' ) {
|
||||
if ( $details = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->dmtablelogins} WHERE id = %s AND blog_id = %d", $_GET[ 'k' ], $wpdb->blogid ) ) ) {
|
||||
if ( $details->blog_id == $wpdb->blogid ) {
|
||||
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->dmtablelogins} WHERE id = %s", $_GET[ 'k' ] ) );
|
||||
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->dmtablelogins} WHERE t < %d", ( time() - 120 ) ) ); // remote logins survive for only 2 minutes if not used.
|
||||
wp_set_auth_cookie( $details->user_id );
|
||||
wp_redirect( remove_query_arg( array( 'dm', 'action', 'k', 't', $protocol . $current_blog->domain . $_SERVER[ 'REQUEST_URI' ] ) ) );
|
||||
exit;
|
||||
} else {
|
||||
wp_die( __( "Incorrect or out of date login key", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
} else {
|
||||
wp_die( __( "Unknown login key", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
} elseif ( $_GET[ 'action' ] == 'logout' ) {
|
||||
if ( $details = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->dmtablelogins} WHERE id = %d AND blog_id = %d", $_GET[ 'k' ], $_GET[ 'blogid' ] ) ) ) {
|
||||
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->dmtablelogins} WHERE id = %s", $_GET[ 'k' ] ) );
|
||||
$blog = get_blog_details( $_GET[ 'blogid' ] );
|
||||
wp_clear_auth_cookie();
|
||||
wp_redirect( trailingslashit( $blog->siteurl ) . "wp-login.php?loggedout=true" );
|
||||
exit;
|
||||
} else {
|
||||
wp_die( __( "Unknown logout key", 'wordpress-mu-domain-mapping' ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function remote_login_js_loader() {
|
||||
global $current_site, $current_blog;
|
||||
|
||||
if ( 0 == get_site_option( 'dm_remote_login' ) || is_user_logged_in() )
|
||||
return false;
|
||||
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
$hash = get_dm_hash();
|
||||
echo "<script src='{$protocol}{$current_site->domain}{$current_site->path}?dm={$hash}&action=load&blogid={$current_blog->blog_id}&siteid={$current_blog->site_id}&t=" . mt_rand() . "&back=" . urlencode( $protocol . $current_blog->domain . $_SERVER[ 'REQUEST_URI' ] ) . "' type='text/javascript'></script>";
|
||||
}
|
||||
|
||||
// delete mapping if blog is deleted
|
||||
function delete_blog_domain_mapping( $blog_id, $drop ) {
|
||||
global $wpdb;
|
||||
$wpdb->dmtable = $wpdb->base_prefix . 'domain_mapping';
|
||||
if ( $blog_id && $drop ) {
|
||||
// Get an array of domain names to pass onto any delete_blog_domain_mapping actions
|
||||
$domains = $wpdb->get_col( $wpdb->prepare( "SELECT domain FROM {$wpdb->dmtable} WHERE blog_id = %d", $blog_id ) );
|
||||
do_action('dm_delete_blog_domain_mappings', $domains);
|
||||
|
||||
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->dmtable} WHERE blog_id = %d", $blog_id ) );
|
||||
}
|
||||
}
|
||||
add_action( 'delete_blog', 'delete_blog_domain_mapping', 1, 2 );
|
||||
|
||||
// show mapping on site admin blogs screen
|
||||
function ra_domain_mapping_columns( $columns ) {
|
||||
$columns[ 'map' ] = __( 'Mapping' );
|
||||
return $columns;
|
||||
}
|
||||
add_filter( 'wpmu_blogs_columns', 'ra_domain_mapping_columns' );
|
||||
|
||||
function ra_domain_mapping_field( $column, $blog_id ) {
|
||||
global $wpdb;
|
||||
static $maps = false;
|
||||
|
||||
if ( $column == 'map' ) {
|
||||
if ( $maps === false ) {
|
||||
$wpdb->dmtable = $wpdb->base_prefix . 'domain_mapping';
|
||||
$work = $wpdb->get_results( "SELECT blog_id, domain FROM {$wpdb->dmtable} ORDER BY blog_id" );
|
||||
$maps = array();
|
||||
if($work) {
|
||||
foreach( $work as $blog ) {
|
||||
$maps[ $blog->blog_id ][] = $blog->domain;
|
||||
}
|
||||
}
|
||||
}
|
||||
if( !empty( $maps[ $blog_id ] ) && is_array( $maps[ $blog_id ] ) ) {
|
||||
foreach( $maps[ $blog_id ] as $blog ) {
|
||||
echo $blog . '<br />';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
add_action( 'manage_blogs_custom_column', 'ra_domain_mapping_field', 1, 3 );
|
||||
add_action( 'manage_sites_custom_column', 'ra_domain_mapping_field', 1, 3 );
|
||||
|
||||
function dm_site_admin() {
|
||||
if ( function_exists( 'is_super_admin' ) ) {
|
||||
return is_super_admin();
|
||||
} elseif ( function_exists( 'is_site_admin' ) ) {
|
||||
return is_site_admin();
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function dm_idn_warning() {
|
||||
return sprintf( __( 'International Domain Names should be in <a href="%s">punycode</a> format.', 'wordpress-mu-domain-mapping' ), "http://api.webnic.cc/idnconversion.html" );
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Disable "BIG image" Threshold
|
||||
Description: Disable the big image threshold in WordPress.
|
||||
Author: LawCarta Team
|
||||
Text Domain: disable-image-threshold
|
||||
Version: 1.0
|
||||
*/
|
||||
add_filter('big_image_size_threshold', '__return_false');
|
||||
73
wordpress/wp-content/plugins/faq/Faq.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: FAQ plugin
|
||||
Description: Add faq pages and categories.
|
||||
Author: LawCarta Team
|
||||
Text Domain: faq
|
||||
Version: 0.1
|
||||
*/
|
||||
|
||||
function create_category_type()
|
||||
{
|
||||
// Add a taxonomy like categories
|
||||
$labels = array(
|
||||
'name' => 'Categories',
|
||||
'singular_name' => 'Category',
|
||||
'search_items' => 'Search Categories',
|
||||
'all_items' => 'All Categories',
|
||||
'parent_item' => 'Parent Category',
|
||||
'parent_item_colon' => 'Parent Category:',
|
||||
'edit_item' => 'Edit Category',
|
||||
'update_item' => 'Update Category',
|
||||
'add_new_item' => 'Add New Category',
|
||||
'new_item_name' => 'New Category Name',
|
||||
'menu_name' => 'Categories',
|
||||
);
|
||||
|
||||
$args = array(
|
||||
'hierarchical' => true,
|
||||
'labels' => $labels,
|
||||
'show_ui' => true,
|
||||
'show_admin_column' => true,
|
||||
'show_in_admin_bar' => true,
|
||||
'query_var' => true,
|
||||
//'rewrite' => array( 'slug' => 'type' ),
|
||||
);
|
||||
|
||||
register_taxonomy('fac_category_type',['fac'],$args);
|
||||
|
||||
// Add a taxonomy like tags
|
||||
$labels = array(
|
||||
'name' => 'Answer',
|
||||
'singular_name' => 'Answer',
|
||||
'search_items' => 'Answers',
|
||||
'popular_items' => 'Popular Answers',
|
||||
'all_items' => 'All Answers',
|
||||
'parent_item' => 'Category',
|
||||
'parent_item_colon' => 'Category:',
|
||||
'edit_item' => 'Edit Answer',
|
||||
'update_item' => 'Update Answer',
|
||||
'add_new_item' => 'Add New Answer',
|
||||
'new_item_name' => 'New Answer Name',
|
||||
'add_or_remove_items' => 'Add or remove Answer',
|
||||
'menu_name' => 'Answers',
|
||||
);
|
||||
|
||||
$args = array(
|
||||
'hierarchical' => false,
|
||||
'labels' => $labels,
|
||||
'public' => true,
|
||||
'show_ui' => true,
|
||||
'show_in_admin_bar' => true,
|
||||
'taxonomies' => ['fac_category_type'],
|
||||
'show_admin_column' => true,
|
||||
'query_var' => true,
|
||||
'publicly_queryable' => true,
|
||||
'rewrite' => array( 'slug' => 'blog/faq/answer' ),
|
||||
);
|
||||
|
||||
register_post_type( 'fac_category_answer', $args );
|
||||
|
||||
}
|
||||
|
||||
add_action('init','create_category_type');
|
||||
2
wordpress/wp-content/plugins/index.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
37
wordpress/wp-content/sunrise.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
if ( !defined( 'SUNRISE_LOADED' ) )
|
||||
define( 'SUNRISE_LOADED', 1 );
|
||||
|
||||
if ( defined( 'COOKIE_DOMAIN' ) ) {
|
||||
die( 'The constant "COOKIE_DOMAIN" is defined (probably in wp-config.php). Please remove or comment out that define() line.' );
|
||||
}
|
||||
|
||||
$wpdb->dmtable = $wpdb->base_prefix . 'domain_mapping';
|
||||
$dm_domain = $_SERVER[ 'HTTP_HOST' ];
|
||||
|
||||
if( ( $nowww = preg_replace( '|^www\.|', '', $dm_domain ) ) != $dm_domain )
|
||||
$where = $wpdb->prepare( 'domain IN (%s,%s)', $dm_domain, $nowww );
|
||||
else
|
||||
$where = $wpdb->prepare( 'domain = %s', $dm_domain );
|
||||
|
||||
$wpdb->suppress_errors();
|
||||
$domain_mapping_id = $wpdb->get_var( "SELECT blog_id FROM {$wpdb->dmtable} WHERE {$where} ORDER BY CHAR_LENGTH(domain) DESC LIMIT 1" );
|
||||
$wpdb->suppress_errors( false );
|
||||
if( $domain_mapping_id ) {
|
||||
$current_blog = $wpdb->get_row("SELECT * FROM {$wpdb->blogs} WHERE blog_id = '$domain_mapping_id' LIMIT 1");
|
||||
$current_blog->domain = $dm_domain;
|
||||
$current_blog->path = '/';
|
||||
$blog_id = $domain_mapping_id;
|
||||
$site_id = $current_blog->site_id;
|
||||
|
||||
define( 'COOKIE_DOMAIN', $dm_domain );
|
||||
|
||||
$current_site = $wpdb->get_row( "SELECT * from {$wpdb->site} WHERE id = '{$current_blog->site_id}' LIMIT 0,1" );
|
||||
$current_site->blog_id = $wpdb->get_var( "SELECT blog_id FROM {$wpdb->blogs} WHERE domain='{$current_site->domain}' AND path='{$current_site->path}'" );
|
||||
if ( function_exists( 'get_site_option' ) )
|
||||
$current_site->site_name = get_site_option( 'site_name' );
|
||||
elseif ( function_exists( 'get_current_site_name' ) )
|
||||
$current_site = get_current_site_name( $current_site );
|
||||
|
||||
define( 'DOMAIN_MAPPING', 1 );
|
||||
}
|
||||
2
wordpress/wp-content/themes/index.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
26
wordpress/wp-content/themes/lawcarta/404.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php get_header();?>
|
||||
|
||||
<div class="content">
|
||||
<div class="cont">
|
||||
<div class="p404">
|
||||
<div class="inner-cont width-large white">
|
||||
<div class="p404-img">
|
||||
<img src="<?= get_theme_file_uri('/assets/img/404.svg'); ?>" alt="404">
|
||||
</div>
|
||||
<h1><b>We can’t find the page you are looking for</b></h1>
|
||||
<p>Sorry, looks like the page with this URL does not exist. Here are some other options:</p>
|
||||
<ul>
|
||||
<li>View your materials in <a href="<?= get_lawcarta_url()?>/library">My Library</a></li>
|
||||
<li>Browse our digital <a href="<?= get_lawcarta_url()?>/catalog">Catalog</a></li>
|
||||
<li>Find answers in the <a href="/faq-page">FAQ articles</a></li>
|
||||
</ul>
|
||||
<div class="bot-link">
|
||||
<a href="/" class="button link">Back to Home page</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php get_footer();
|
||||
62
wordpress/wp-content/themes/lawcarta/assets/css/colors.css
Normal file
@@ -0,0 +1,62 @@
|
||||
:root {
|
||||
--color-main-text: #121212;
|
||||
--color-main-ui: #333;
|
||||
--main-color: #0583EB;
|
||||
--main-gray: #757575;
|
||||
--second-gray: #4F4F4F;
|
||||
--input-border: #0583EB;
|
||||
--color-link: #0583EB;
|
||||
--mp-bg: #F5F7FA;
|
||||
--banner-bg: #eef3fb;
|
||||
--forms-border: #D6D6D6;
|
||||
--text-block-bg: #F9F9F9;
|
||||
--info-color: #F3F6FA;
|
||||
--info-icon-color: #5889ca;
|
||||
--error: #d63b00;
|
||||
--correct: #26C351;
|
||||
--alert: #FF8A00;
|
||||
--alert-bg: #FEF0DF;
|
||||
--success: #008524;
|
||||
--success-bg: #EEFFF6;
|
||||
--btn-disabled: #C6C6C6;
|
||||
--btn-action-bg: #0583EB;
|
||||
--btn-action-border: #0583EB;
|
||||
--btn-action-color: #ffffff;
|
||||
--btn-action-hover-bg: #0B4E96;
|
||||
--btn-action-hover-color: #ffffff;
|
||||
--btn-secondary-bg: #ffffff;
|
||||
--btn-secondary-border: #0583EB;
|
||||
--btn-secondary-color: #121212;
|
||||
--btn-secondary-hover-bg: #0B4E96;
|
||||
--btn-secondary-hover-border: #0B4E96;
|
||||
--btn-secondary-hover-color: #FFFFFF;
|
||||
--btn-borderless-bg: #EDF6FF;
|
||||
--btn-borderless-color: #0583EB;
|
||||
--btn-borderless-hover-bg: #d4e9ff;
|
||||
--btn-borderless-hover-color: #0583EB;
|
||||
--btn-tag-bg: #F1F3F8;
|
||||
--btn-tag-hover-bg: #DEE3EE;
|
||||
--status-bg: #E7F2F5;
|
||||
--status-text: #025169;
|
||||
--status-draft-bg: #F2EEEA;
|
||||
--status-draft-text: #674422;
|
||||
--status-blacklisted-bg: #E4E4E4;
|
||||
--status-blacklisted-text: #454545;
|
||||
--status-published-bg: #E7F5EE;
|
||||
--status-published-text: #035E32;
|
||||
--status-editable-bg: #F2EEEA;
|
||||
--status-editable-text: #674422;
|
||||
--status-pending-bg: #FFF2E6;
|
||||
--status-pending-text: #923402;
|
||||
--status-sample-bg: #035C6D;
|
||||
--status-sample-text: #fff;
|
||||
--label-book: #3E59F7;
|
||||
--label-chapters: #6133C3;
|
||||
--label-copy: #0A3DBD;
|
||||
--label-collection: #02565A;
|
||||
--label-publication: #14798C;
|
||||
--label-document: #004B8D;
|
||||
--label-bundle: #1C3362;
|
||||
--label-flashcard: #4C6189;
|
||||
--label-date: #D7E2FF;
|
||||
}
|
||||
1
wordpress/wp-content/themes/lawcarta/assets/css/styles-main-page.min.css
vendored
Normal file
BIN
wordpress/wp-content/themes/lawcarta/assets/fonts/lawcarta.eot
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="lawcarta" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " horiz-adv-x="512" d="" />
|
||||
<glyph unicode="" glyph-name="copy" d="M810 42.667v598h-468v-598h468zM810 724.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-468c-46 0-86 40-86 86v598c0 46 40 84 86 84h468zM682 896.667v-86h-512v-598h-84v598c0 46 38 86 84 86h512z" />
|
||||
<glyph unicode="" glyph-name="account-settings" horiz-adv-x="1079" d="M622.703 399.568h69.189c20.757 27.676 34.595 62.27 41.514 96.865l-48.432 48.432c0 13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432l48.432 48.432c-6.919 34.595-20.757 69.189-41.514 96.865h-69.189c-20.757 20.757-41.514 48.432-62.27 62.27v69.189c-27.676 20.757-62.27 34.595-96.865 41.514l-48.432-48.432c-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432 0l-48.432 48.432c-34.595-6.919-69.189-20.757-96.865-41.514v-69.189c-20.757-20.757-48.432-41.514-62.27-62.27h-69.189c-20.757-27.676-34.595-62.27-41.514-96.865l48.432-48.432c0-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432l-48.432-48.432c6.919-34.595 20.757-69.189 41.514-96.865h69.189c20.757-20.757 41.514-48.432 62.27-62.27v-69.189c27.676-20.757 62.27-34.595 96.865-41.514l48.432 48.432c13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432 0l48.432-48.432c34.595 6.919 69.189 20.757 96.865 41.514v69.189c27.676 13.838 48.432 34.595 62.27 62.27zM373.622 482.595c-55.351 0-103.784 48.432-103.784 103.784s48.432 103.784 103.784 103.784c55.351 0 103.784-48.432 103.784-103.784 0-62.27-48.432-103.784-103.784-103.784zM1037.838 143.568l41.514 20.757c0 20.757 0 48.432-6.919 69.189l-41.514 6.919c-6.919 6.919-6.919 20.757-13.838 27.676s-13.838 13.838-13.838 27.676l13.838 41.514c-13.838 20.757-34.595 34.595-55.351 41.514l-34.595-27.676c-20.757 6.919-34.595 13.838-55.351 13.838l-20.757 41.514c-20.757 0-48.432 0-69.189-6.919l-6.919-41.514c-6.919-6.919-20.757-6.919-27.676-13.838s-13.838-13.838-27.676-13.838l-41.514 13.838c-20.757-13.838-34.595-34.595-41.514-55.351l27.676-34.595c-6.919-20.757-13.838-34.595-13.838-55.351l-41.514-20.757c0-20.757 0-48.432 6.919-69.189l41.514-6.919c6.919-6.919 6.919-20.757 13.838-27.676s13.838-13.838 13.838-27.676l-13.838-41.514c13.838-20.757 34.595-34.595 55.351-41.514l34.595 27.676c20.757-6.919 41.514-13.838 55.351-13.838l20.757-41.514c20.757 0 48.432 0 69.189 6.919l6.919 41.514c6.919 6.919 20.757 6.919 27.676 13.838s13.838 13.838 27.676 13.838l41.514-13.838c20.757 13.838 34.595 34.595 41.514 55.351l-27.676 34.595c6.919 13.838 13.838 34.595 13.838 55.351zM864.865 102.054c-34.595-20.757-76.108-6.919-96.865 27.676s-6.919 76.108 27.676 96.865c34.595 20.757 76.108 6.919 96.865-27.676s6.919-76.108-27.676-96.865z" />
|
||||
<glyph unicode="" glyph-name="add" d="M449.73 510.27h-387.459c-34.595 0-62.27-27.676-62.27-62.27s27.676-62.27 62.27-62.27h387.459v-387.459c0-34.595 27.676-62.27 62.27-62.27s62.27 27.676 62.27 62.27v387.459h387.459c34.595 0 62.27 27.676 62.27 62.27 0 20.757-6.919 34.595-20.757 41.514-13.838 13.838-27.676 20.757-41.514 20.757h-387.459v387.459c0 20.757-6.919 34.595-20.757 41.514-13.838 13.838-27.676 20.757-41.514 20.757-34.595 0-62.27-27.676-62.27-62.27v-387.459z" />
|
||||
<glyph unicode="" glyph-name="add-subsection" horiz-adv-x="1115" d="M1065.29 431.484h-478.968v-107.355h478.968c16.516 0 24.774 8.258 33.032 16.516s16.516 24.774 16.516 33.032c0 33.032-24.774 57.806-49.548 57.806zM82.581 860.904h982.71c16.516 0 24.774 8.258 33.032 16.516s16.516 24.774 16.516 33.032c0 24.774-24.774 49.548-49.548 49.548h-982.71c-33.032 0-49.548-24.774-49.548-49.548-8.258-24.774 16.516-49.548 49.548-49.548zM1065.29 695.742h-982.71c-33.032 0-49.548-24.774-49.548-49.548 0-33.032 24.774-49.548 49.548-49.548h982.71c33.032 0 49.548 24.774 49.548 49.548s-24.774 49.548-49.548 49.548zM487.226 423.226h-470.71l140.387-140.387-156.903-156.903 189.935-189.935 156.903 156.903 140.387-148.645z" />
|
||||
<glyph unicode="" glyph-name="close" d="M512 553.412l-384 384c-30.118 30.118-75.294 30.118-105.412 0s-30.118-75.294 0-105.412l384-384-384-384c-30.118-30.118-30.118-75.294 0-105.412s75.294-30.118 105.412 0l384 384 384-384c30.118-30.118 75.294-30.118 105.412 0 15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706l-384 384 384 384c15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706-30.118 30.118-75.294 30.118-105.412 0l-384-384z" />
|
||||
<glyph unicode="" glyph-name="close-circle" d="M518.071 960c-286.463 0-511.976-225.561-518.071-505.929 0-280.368 225.556-511.976 505.924-518.071 286.463 0 511.976 225.561 518.071 505.929 0 286.463-225.556 511.976-505.924 518.071zM283.434 729.892c12.19 0 24.313-4.547 33.455-13.69l195.106-201.181 201.066 195.11c18.285 18.285 48.851 18.285 67.136 0s18.285-48.855 0-67.14l-201.176-194.991 194.99-201.181c18.285-18.285 18.285-48.736 0-67.021-12.19-6.095-24.355-12.142-36.545-12.142s-24.38-0.048-30.475 12.142l-194.996 201.181-201.176-195.11c-12.19-6.095-24.355-12.142-36.545-12.142s-24.38-0.048-30.475 12.142c-18.285 18.285-18.285 48.855 0 67.14l201.176 194.991-195.106 201.181c-18.285 18.285-18.285 48.736 0 67.021 9.142 9.142 21.375 13.69 33.565 13.69z" />
|
||||
<glyph unicode="" glyph-name="drag" horiz-adv-x="1253" d="M808.252 683.069h-766.39c-12.881 0-25.761-12.881-25.761-25.761s12.881-25.761 25.761-25.761h766.39c12.881 0 25.761 12.881 25.761 25.761s-12.881 25.761-25.761 25.761zM808.252 470.541h-766.39c-12.881 0-25.761-12.881-25.761-25.761s12.881-25.761 25.761-25.761h766.39c12.881 0 25.761 12.881 25.761 25.761 0 19.321-12.881 25.761-25.761 25.761zM808.252 264.453h-766.39c-12.881 0-25.761-12.881-25.761-25.761s12.881-25.761 25.761-25.761h766.39c12.881 0 25.761 12.881 25.761 25.761s-12.881 25.761-25.761 25.761zM1065.862 122.767v663.346c0 19.321 19.321 38.642 38.642 38.642v0c19.321 0 38.642-19.321 38.642-38.642v0-663.346c0-19.321-19.321-38.642-38.642-38.642v0c-19.321 0-38.642 19.321-38.642 38.642v0zM1040.101 715.27v0h-70.843l141.686 244.73 141.686-244.73h-212.528zM1104.503 792.553v0 0 0 0zM969.258 180.73h283.371l-141.686-244.73-141.686 244.73zM1110.943 97.006v0 0 0 0z" />
|
||||
<glyph unicode="" glyph-name="edit" d="M868.456 525.772c0 0 0 0 0 0l155.544 155.544-278.684 278.684-661.063-661.063-84.253-362.937 362.937 84.253 71.291 71.291c0 0 0 0 0 0s0 0 0 0l434.228 434.228c0 0 0 0 0 0zM745.316 778.532l97.215-97.215-19.443-19.443-97.215 97.215 19.443 19.443zM388.861 227.646l-97.215 97.215 343.494 343.494 97.215-97.215-343.494-343.494zM168.506 104.506l32.405 129.62 97.215-97.215-129.62-32.405z" />
|
||||
<glyph unicode="" glyph-name="insert-case" horiz-adv-x="1017" d="M291.49 742.682h528.75c13.558 0 20.337-6.779 20.337-20.337s-13.558-20.337-20.337-20.337h-528.75c-13.558 0-20.337 6.779-20.337 20.337 0 6.779 13.558 20.337 20.337 20.337zM291.49 546.095h528.75c13.558 0 20.337-6.779 20.337-20.337s-13.558-20.337-20.337-20.337h-528.75c-13.558 0-20.337 6.779-20.337 20.337s13.558 20.337 20.337 20.337zM494.855 349.509h325.384c13.558 0 20.337-6.779 20.337-20.337s-13.558-20.337-20.337-20.337h-325.384c-13.558 0-20.337 6.779-20.337 20.337s13.558 20.337 20.337 20.337zM94.904 783.355v-366.057h88.125v366.057c0 47.452 40.673 88.125 88.125 88.125h569.423c47.452 0 88.125-40.673 88.125-88.125v-535.528c0-47.452-40.673-88.125-88.125-88.125h-352.5v-88.125h352.5c101.683 0 176.25 81.346 176.25 176.25v535.528c0 101.683-81.346 176.25-176.25 176.25h-569.423c-94.904 6.779-176.25-74.567-176.25-176.25zM399.952 342.73h-386.394l115.24-122.019-128.798-122.019 155.913-162.692 128.798 128.798 115.24-115.24z" />
|
||||
<glyph unicode="" glyph-name="insert-footnote" horiz-adv-x="1061" d="M896.934 877.781l-284.029-366.248v-7.474l448.467 59.796v-201.81l-448.467 52.321v-7.474l284.029-358.774-186.861-104.642-179.387 411.095h-7.474l-194.336-418.569-171.912 104.642 284.029 358.774v7.474l-440.993-59.796v201.81l433.518-59.796v7.474l-276.555 358.774 179.387 104.642 186.861-411.095h7.474l179.387 411.095 186.861-82.219z" />
|
||||
<glyph unicode="" glyph-name="open-doc" horiz-adv-x="887" d="M880.64 802.987l-157.013 157.013h-471.040c-102.4 0-184.32-81.92-184.32-184.32v-361.813h81.92v361.813c0 54.613 47.787 102.4 102.4 102.4h430.080l116.053-116.053v-634.88c0-54.613-47.787-102.4-102.4-102.4h-225.28v-88.747h225.28c102.4 0 184.32 81.92 184.32 184.32v682.667zM628.053 707.413h259.413l-259.413 238.933zM402.773 338.773h-389.12l116.053-116.053-129.707-129.707 157.013-157.013 129.707 129.707 116.053-122.88z" />
|
||||
<glyph unicode="" glyph-name="options" horiz-adv-x="260" d="M259.606 830.197c0-71.688-58.115-129.803-129.803-129.803s-129.803 58.115-129.803 129.803c0 71.688 58.115 129.803 129.803 129.803s129.803-58.115 129.803-129.803zM259.606 447.999c0-71.688-58.115-129.803-129.803-129.803s-129.803 58.115-129.803 129.803c0 71.688 58.115 129.803 129.803 129.803s129.803-58.115 129.803-129.803zM259.606 65.802c0-71.688-58.115-129.803-129.803-129.803s-129.803 58.115-129.803 129.803c0 71.688 58.115 129.803 129.803 129.803s129.803-58.115 129.803-129.803z" />
|
||||
<glyph unicode="" glyph-name="remove" horiz-adv-x="796" d="M55.351 710.919v-684.973c0-48.432 41.514-89.946 89.946-89.946h505.081c48.432 0 89.946 41.514 89.946 89.946v684.973h-684.973zM0 897.73v-103.784h795.676v103.784h-262.919v62.27h-269.838v-62.27z" />
|
||||
<glyph unicode="" glyph-name="rename" horiz-adv-x="1517" d="M237.034 267.852l-104.296-322.37h-132.741l350.815 1014.519h161.185l350.815-1014.519h-142.222l-104.296 322.37h-379.259zM568.886 372.149l-104.296 293.926c-18.963 66.37-37.926 123.259-56.889 189.63v0c-18.963-56.889-28.444-123.259-47.407-180.148l-104.296-293.926h312.889zM1507.553 116.149c0-66.37 0-123.259 9.481-170.667h-113.778l-9.481 94.815c-37.926-56.889-123.259-104.296-227.556-104.296-151.704 0-227.556 104.296-227.556 208.593 0 180.148 161.185 274.963 436.148 274.963v9.481c0 56.889-18.963 170.667-170.667 170.667-66.37 0-142.222-18.963-189.63-56.889l-28.444 85.333c56.889 37.926 151.704 66.37 237.037 66.37 227.556 0 274.963-151.704 274.963-303.407v-274.963zM1384.293 315.26c-142.222 0-312.889-18.963-312.889-161.185 0-85.333 56.889-123.259 123.259-123.259 94.815 0 151.704 56.889 180.148 123.259 0 9.481 9.481 28.444 9.481 37.926v123.259z" />
|
||||
<glyph unicode="" glyph-name="profile" d="M197.307 81.352c-0.245-3.212 0.148 3.235 0 0l73.238-51.954c0.288-2.541-0.365 2.518 0 0 71.028-41.053 153.478-64.545 241.413-64.545 87.938 0 170.389 23.491 241.417 64.545 1.005 5.469 0 0.996 0 0l73.239 51.954c103.149 88.604 168.485 219.992 168.485 366.643 0 266.831-216.306 483.141-483.142 483.141-266.83 0-483.14-216.31-483.14-483.141 0-146.651 65.337-278.039 168.488-366.643zM101.429 447.995c0 226.729 183.801 410.53 410.529 410.53 226.732 0 410.531-183.801 410.531-410.53 0-109.996-43.259-209.892-113.692-283.592-29.24 80.803-90.536 146.26-168.522 181.011 46.094 37.376 75.557 94.464 75.557 158.434 0 112.594-91.276 203.869-203.869 203.869-112.595 0-203.87-91.275-203.87-203.869 0-63.97 29.462-121.058 75.556-158.434-77.99-34.751-139.285-100.208-168.524-181.011-70.435 73.7-113.695 173.596-113.695 283.592zM511.963 299.981h0.559c114.86-0.261 211-80.221 236.051-187.513-66.877-47.248-148.503-75.003-236.614-75.003-88.107 0-169.733 27.755-236.608 75.003 25.048 107.292 121.189 187.252 236.050 187.513h0.563zM643.221 503.848c0-72.32-58.489-130.981-130.746-131.256h-1.024c-72.258 0.275-130.748 58.936-130.748 131.256 0 72.492 58.766 131.258 131.26 131.258 72.49 0 131.258-58.766 131.258-131.258z" />
|
||||
<glyph unicode="" glyph-name="back" d="M981.233 487.712l-841.036 2.542 356.082 389.55c16.725 18.367 16.725 48.101 0 66.421-16.725 18.367-43.799 18.367-60.481 0l-423.446-464.991c-16.469-18.086-16.469-48.333 0-66.422l423.45-465.034c16.724-18.371 43.799-18.371 60.481 0 16.727 18.365 16.727 48.097 0 66.417l-356.085 380.114 841.031-2.54c23.613 0 42.772 21.043 42.772 46.971 0 25.926-19.159 46.972-42.767 46.972z" />
|
||||
<glyph unicode="" glyph-name="logout" d="M572.335 847.741c0 14.871-12.54 26.926-28.011 26.926h-359.866c-54.745 0-99.124-42.656-99.124-95.275v-662.784c0-52.617 44.38-95.275 99.124-95.275h359.866c15.471 0 28.011 12.053 28.011 26.927 0 14.869-12.54 26.923-28.011 26.923h-359.866c-23.802 0-43.098 18.547-43.098 41.425v662.784c0 22.878 19.296 41.424 43.098 41.424h359.866c15.471 0 28.011 12.055 28.011 26.926zM752.183 618.237l178.278-171.354c10.94-10.513 10.94-27.563 0-38.076l-178.278-171.354c-10.94-10.517-28.676-10.517-39.616 0-10.94 10.513-10.94 27.563 0 38.076l130.453 125.389h-535.735c-15.471 0-28.014 12.058-28.014 26.927s12.542 26.927 28.014 26.927h535.735l-130.453 125.387c-10.94 10.515-10.94 27.564 0 38.078s28.676 10.515 39.616 0z" />
|
||||
<glyph unicode="" glyph-name="add-text-block" horiz-adv-x="896" d="M727.893-64h-727.893v851.285h727.893v-851.285zM86.357 28.523h542.848v666.219h-542.848v-666.219zM265.259 287.616l-49.344-160.384h-67.861l172.715 499.669h80.192l172.715-499.669h-67.861l-55.509 160.384h-185.067zM431.808 336.96l-49.344 141.888c-12.331 30.848-18.496 61.696-24.683 92.523v0c-6.165-30.848-18.496-61.696-24.683-92.523l-49.344-148.053h148.053zM727.893 960h166.549v-166.549h-166.549v166.549z" />
|
||||
<glyph unicode="" glyph-name="book" d="M512.853 732.444l-419.499-228.494s-85.166-76.157 4.732-189.622l414.777-150.773-3.154 31.090-394.268 141.446s-48.89 68.392-3.154 124.345l397.426-136.781 457.387 245.584zM516.897 660.821l280.579-94.612-92.501-45.372-281.896 92.894zM967.088 508.612l-39.433-21.751v-68.398l-417.963-224.003 3.015-30.743 454.372 245.419z" />
|
||||
<glyph unicode="" glyph-name="grad-cap" d="M512 832l470.016-256v-342.016h-86.016v296.021l-384-210.005-470.016 256zM214.016 397.995l297.984-164.011 297.984 164.011v-171.947l-297.984-162.048-297.984 162.005v171.947z" />
|
||||
<glyph unicode="" glyph-name="next" d="M170.667 746.667v-597.333l276.288 298.667-276.288 298.667zM577.045 746.667v-597.333l276.288 298.667-276.288 298.667z" />
|
||||
<glyph unicode="" glyph-name="audio" d="M64 647.883c-35.349 0-64-29.826-64-66.627v-266.506c0-36.8 28.651-66.627 64-66.627h181.333l224-233.193v866.145l-224-233.193h-181.333zM682.667 448.003c0 107.247-73.408 196.97-170.667 217.602v-68.692c61.611-19.166 106.667-78.619 106.667-148.91s-45.056-129.744-106.667-148.91v-68.692c97.259 20.632 170.667 110.356 170.667 217.602zM853.333 448.003c0 165.323-96.896 307.526-234.667 368.289v-73.889c101.376-55.944 170.667-166.855 170.667-294.401s-69.291-238.456-170.667-294.401v-73.889c137.771 60.763 234.667 202.967 234.667 368.289zM725.333 960.006v-76.443c140.651-89.901 234.667-251.493 234.667-435.56s-94.016-345.636-234.667-435.56v-76.443c177.301 96.475 298.667 289.714 298.667 512.003s-121.365 415.528-298.667 512.003z" />
|
||||
<glyph unicode="" glyph-name="admin" d="M636.497 440.405c68.386 41.374 113.933 115.294 113.933 199.595 0 129.603-107.652 234.667-240.444 234.667-132.794 0-240.444-105.064-240.444-234.667 0-84.302 45.547-158.221 113.934-199.599-161.591-53.756-279.507-207.791-298.007-390.123-1.597-15.735 11.109-28.945 26.926-28.945 14.839 0 26.968 11.695 28.556 26.449 21.643 201.050 178.176 357.099 368.207 357.551 0.277 0 0.55 0 0.828 0 0.273 0 0.55 0 0.823 0 190.037-0.448 346.577-156.501 368.218-357.551 1.591-14.754 13.717-26.449 28.557-26.449 15.821 0 28.523 13.21 26.927 28.945-18.5 182.336-136.418 336.371-298.014 390.127zM685.308 640c0-94.502-78.494-171.11-175.322-171.11-96.829 0-175.324 76.608-175.324 171.11s78.495 171.111 175.324 171.111c96.828 0 175.322-76.609 175.322-171.111zM533.692 136.533h53.103v-57.6c0-15.317 12.416-27.733 27.733-27.733s27.733 12.416 27.733 27.733v57.6h29.867v-14.933c0-15.317 12.416-27.733 27.733-27.733s27.733 12.416 27.733 27.733v14.933h23.467c15.317 0 27.733 12.416 27.733 27.733s-12.416 27.733-27.733 27.733h-220.416c-14.686 49.348-60.403 85.333-114.52 85.333-65.979 0-119.467-53.487-119.467-119.467s53.487-119.467 119.467-119.467c58.7 0 107.51 42.334 117.567 98.133zM480.124 157.867c0-35.345-28.651-64-63.999-64-35.346 0-64 28.655-64 64s28.654 64 64 64c35.348 0 63.999-28.655 63.999-64z" />
|
||||
<glyph unicode="" glyph-name="shop" horiz-adv-x="1155" d="M527.463 32.215c0-53.138-43.077-96.215-96.215-96.215s-96.215 43.077-96.215 96.215c0 53.138 43.077 96.215 96.215 96.215s96.215-43.077 96.215-96.215zM946.685 32.215c0-53.138-43.077-96.215-96.215-96.215s-96.215 43.077-96.215 96.215c0 53.138 43.077 96.215 96.215 96.215s96.215-43.077 96.215-96.215zM1096.161 655.893c-121.987 0-592.752 0-592.752 0s-34.362-8.591-34.362-46.389c0-37.799 34.362-49.826 34.362-49.826h530.899l-29.208-101.369c-146.040 0-522.309 0-522.309 0s-32.644-6.872-32.644-42.953c0-36.081 32.644-46.389 32.644-46.389h496.537l-27.49-94.497h-541.208l-36.081 285.208-12.027 96.215c0 0-10.309 89.342-15.463 125.423-6.872 36.081-97.933 82.47-297.235 175.248-46.389 20.617-84.188-65.289 0-109.96l156.349-72.161c0 0 36.081-20.617 39.517-49.826s67.007-498.255 67.007-498.255 1.718-65.289 61.852-65.289c60.134 0 546.362 0 596.188 0s60.134 51.544 60.134 51.544l118.55 350.497c-1.718 0 34.362 92.779-53.262 92.779z" />
|
||||
<glyph unicode="" glyph-name="text" horiz-adv-x="1117" d="M739.77 642.025c-6.284 47.849-24.204 80.221-53.783 97.117-16.617 9.286-41.449 14.383-74.496 15.267v-349.417c0-24.413 4.282-40.634 12.8-48.593 8.541-8.006 26.298-12.009 53.295-12.009v-16.849h-236.428v16.849c25.903 0 43.101 4.049 51.665 12.148 8.518 8.099 12.777 24.25 12.777 48.454v349.417c-32.372-0.884-57.228-5.981-74.496-15.267-31.721-17.315-49.641-49.711-53.737-97.117h-19.13l0.675 133.748h399.313l0.628-133.748h-19.084zM1024 960h-930.909c-51.409 0-93.091-41.681-93.091-93.091v-651.636c0-51.409 41.681-93.091 93.091-93.091h139.636v-186.182l197.818 186.182h593.455c51.409 0 93.091 41.681 93.091 93.091v651.636c0 51.409-41.681 93.091-93.091 93.091z" />
|
||||
<glyph unicode="" glyph-name="menu" horiz-adv-x="1138" d="M1080.889-64h-1024c-34.133 0-56.889 22.756-56.889 56.889s22.756 56.889 56.889 56.889h1024c34.133 0 56.889-22.756 56.889-56.889s-22.756-56.889-56.889-56.889zM1080.889 391.111h-1024c-34.133 0-56.889 22.756-56.889 56.889s22.756 56.889 56.889 56.889h1024c34.133 0 56.889-22.756 56.889-56.889s-22.756-56.889-56.889-56.889zM1080.889 846.222h-1024c-34.133 0-56.889 22.756-56.889 56.889s22.756 56.889 56.889 56.889h1024c34.133 0 56.889-22.756 56.889-56.889s-22.756-56.889-56.889-56.889z" />
|
||||
<glyph unicode="" glyph-name="account-access" d="M501.589 822.585c-38.212 0-74.534-14.17-101.054-38.898-26.46-24.672-40.964-57.745-40.964-91.828v-61.052h515.629c33.365 0 63.467-25.629 63.467-60.878v-487.72c0-35.247-30.101-60.877-63.467-60.877h-726.4c-33.366 0-63.467 25.63-63.467 60.877v487.72c0 35.248 30.101 60.878 63.467 60.878h158.559v61.052c0 49.072 20.922 95.748 57.521 129.874 36.54 34.071 85.744 52.933 136.709 52.933s100.169-18.862 136.708-52.933c36.599-34.127 57.523-80.802 57.523-129.874 0-14.382-11.691-26.041-26.108-26.041s-26.103 11.659-26.103 26.041c0 34.083-14.507 67.155-40.964 91.828-26.522 24.728-62.844 38.898-101.056 38.898zM148.8 578.726c-7.902 0-11.255-5.565-11.255-8.796v-487.72c0-3.23 3.353-8.794 11.255-8.794h726.4c7.902 0 11.255 5.564 11.255 8.794v487.72c0 3.232-3.354 8.796-11.255 8.796h-726.4zM333.465 526.298c14.418 0 26.106-11.661 26.106-26.044v-348.369c0-14.383-11.688-26.039-26.106-26.039s-26.106 11.657-26.106 26.039v348.369c0 14.383 11.688 26.044 26.106 26.044zM496.725 429.525c14.417 0 26.103-11.657 26.103-26.039v-42.091l43.721 13.5c13.773 4.254 28.395-3.435 32.661-17.173 4.262-13.739-3.447-28.322-17.22-32.576l-41.826-12.919 25.267-33.011c8.747-11.43 6.549-27.772-4.911-36.501-11.46-8.725-27.84-6.537-36.591 4.898l-27.204 35.546-27.209-35.546c-8.751-11.435-25.131-13.623-36.591-4.898-11.461 8.73-13.658 25.071-4.911 36.501l25.267 33.011-41.829 12.919c-13.773 4.254-21.481 18.837-17.217 32.576s18.886 21.427 32.66 17.173l43.721-13.5v42.091c0 14.383 11.686 26.039 26.108 26.039zM741.611 429.525c14.417 0 26.108-11.657 26.108-26.039v-42.091l43.721 13.5c13.773 4.254 28.395-3.435 32.657-17.173s-3.443-28.322-17.216-32.576l-41.83-12.919 25.267-33.011c8.751-11.43 6.554-27.772-4.907-36.501-11.46-8.725-27.844-6.537-36.591 4.898l-27.209 35.546-27.209-35.546c-8.747-11.435-25.131-13.623-36.591-4.898-11.46 8.73-13.658 25.071-4.907 36.501l25.267 33.011-41.83 12.919c-13.773 4.254-21.483 18.837-17.216 32.576 4.262 13.739 18.884 21.427 32.657 17.173l43.721-13.5v42.091c0 14.383 11.691 26.039 26.108 26.039z" />
|
||||
<glyph unicode="" glyph-name="order-history" d="M735.322 666.821l-176.111 187.965-19.251 19.805h-398.595c-7.438 0-15.751 0.413-23.014-0.703-8.714-1.169-16.678-5.3-22.402-11.619-12.295-13.149-10.501-29.646-10.501-45.813v-710.554c0-16.166-1.969-33.655 10.501-45.897 12.47-12.237 20.827-12.237 36.884-12.237l294.082-0.051c3.861-0.051 7.689 0.678 11.23 2.142 3.537 1.463 6.703 3.622 9.289 6.332 5.585 5.538 8.623 12.945 8.444 20.591 0.179 7.65-2.859 15.053-8.444 20.591-2.581 2.714-5.751 4.877-9.289 6.336-3.541 1.463-7.369 2.193-11.23 2.142l-282.706 0.051-0.263 712.374h318.31v-148.561c0-16.167 6.652-30.721 17.105-41.182 10.505-10.461 24.943-16.952 40.998-16.952h163.422v-24.306c-0.175-7.648 2.859-15.052 8.444-20.591 2.577-2.708 5.739-4.866 9.271-6.327 3.529-1.462 7.351-2.194 11.204-2.149 8.051 0 14.878 2.853 20.523 8.476 5.568 5.546 8.589 12.948 8.401 20.591v61.023l0.043 11.536-6.345 6.988zM523.686 673.933c-1.796 2.191-2.889 6.037-3.285 11.578v126.316l133.845-142.111h-119.974c-5.248 0.661-8.751 2.026-10.586 4.217zM713.719 362.633c16.533 0 29.935-12.864 29.935-28.74v-100.331l-54.827-52.634c-11.691-11.221-30.647-11.221-42.338 0-11.691 11.226-11.691 29.423 0 40.644l37.291 35.797v76.523c0 15.876 13.402 28.74 29.939 28.74zM938.667 277.777c0-141.632-119.603-256.444-267.14-256.444-60.506 0-116.309 19.307-161.097 51.857-18.377 13.355-11.725 39.556 10.044 46.827 10.714 3.58 22.485 1.31 31.757-4.966 33.732-22.831 74.884-36.241 119.296-36.241 114.466 0 207.262 89.079 207.262 198.967 0 109.884-92.796 198.963-207.262 198.963-79.168 0-125.325-44.612-159.471-107.307h67.349c16.533 0 29.939-12.864 29.939-28.736 0-15.876-13.406-28.74-29.939-28.74h-141.722c-7.94 0-15.554 3.025-21.169 8.418-5.615 5.389-8.769 12.698-8.769 20.322l0.001 136.043c0 15.872 13.404 28.736 29.94 28.736 16.533 0 29.935-12.864 29.935-28.736v-60.719c41.156 70.677 110.182 118.196 203.904 118.196 147.537 0 267.14-114.813 267.14-256.44z" />
|
||||
<glyph unicode="" glyph-name="royalties" d="M753.69 874.667c-15.317 0-27.733-12.416-27.733-27.733v-31.015c-26.231-2.306-52.489-8.361-74.526-20.61-31.603-17.57-53.615-47.675-53.602-91.316 0.013-48.979 40.367-78.742 71.266-95.245 19.294-10.304 40.576-18.315 56.862-23.94v-137.76c-15.194 2.799-31.181 6.946-45.948 11.383-12.838 3.853-24.090 7.718-32.119 10.615-4.006 1.446-7.189 2.641-9.344 3.469-1.079 0.41-1.899 0.73-2.432 0.939l-0.725 0.286c-14.217 5.7-30.357-1.203-36.058-15.42-5.705-14.212 1.237-30.374 15.454-36.079-0.004 0.004-0.038 0.017 10.283 25.758l-10.283-25.758 0.068-0.026 0.222-0.090 0.781-0.307c0.674-0.265 1.634-0.636 2.863-1.109 2.453-0.939 5.973-2.261 10.351-3.84 8.738-3.153 20.971-7.351 34.987-11.563 17.929-5.385 40-11.162 61.901-14.494v-43.081c0-15.317 12.416-27.733 27.733-27.733 15.313 0 27.733 12.416 27.733 27.733v41.481c29.372 3.243 57.89 13.039 80.713 29.483 29.15 20.996 49.485 53.538 47.095 94.903-1.323 22.867-8.546 41.865-20.51 57.201-11.695 14.995-26.726 24.964-41.417 32.045-14.575 7.024-30.042 11.767-43.426 15.57-3.456 0.981-6.716 1.887-9.805 2.746l-0.017 0.004c-4.548 1.264-8.73 2.426-12.634 3.58v134.187c11.354-1.827 23.215-4.411 34.257-7.171 10.155-2.54 19.063-5.085 25.421-6.992 3.17-0.952 5.687-1.74 7.39-2.281l1.916-0.616 0.563-0.185c14.528-4.841 30.234 3.011 35.076 17.54s-3.042 30.248-17.57 35.092c0-0.001 0.030-0.011-8.742-26.321l8.742 26.321-0.87 0.285-2.291 0.738c-1.967 0.625-4.779 1.504-8.273 2.553-6.976 2.093-16.734 4.881-27.908 7.676-13.833 3.459-30.788 7.174-47.71 9.416v31.945c0 15.317-12.42 27.733-27.733 27.733zM678.383 746.829c12.267 6.82 28.625 11.255 47.573 13.353v-116.376c-9.971 3.844-20.442 8.375-30.729 13.869-29.146 15.566-41.929 31.314-41.933 46.334-0.009 21.428 9.203 33.99 25.088 42.82zM781.423 445.146v121.956c2.505-0.695 4.954-1.375 7.296-2.041 12.932-3.673 24.503-7.361 34.505-12.181 9.886-4.764 16.973-10.054 21.764-16.193 4.523-5.798 8.149-13.807 8.87-26.287 1.101-19.093-7.458-34.684-24.141-46.699-12.608-9.084-29.483-15.646-48.294-18.556zM442.778 641.323h-282.881c-41.18 0-74.563-34.471-74.563-76.992v-427.738c0-42.522 33.383-76.992 74.563-76.992h704.206c41.182 0 74.564 34.47 74.564 76.992v165.555c0 14.874-12.053 26.927-26.927 26.927-14.869 0-26.923-12.053-26.923-26.927v-165.555c0-11.81-9.276-21.385-20.715-21.385h-704.206c-11.439 0-20.712 9.574-20.712 21.385v320.802h345.014c15.356 0 27.802 12.45 27.802 27.806 0 15.351-12.446 27.802-27.802 27.802h-345.014v51.328c0 11.811 9.273 21.387 20.712 21.387h282.881c15.351 0 27.802 12.448 27.802 27.803s-12.45 27.803-27.802 27.803zM387.728 271.33c0 15.356-12.448 27.806-27.803 27.806h-110.090c-15.355 0-27.803-12.45-27.803-27.806s12.448-27.802 27.803-27.802h110.090c15.355 0 27.803 12.446 27.803 27.802z" />
|
||||
<glyph unicode="" glyph-name="stop" d="M256 682.667h512v-512h-512v512z" />
|
||||
<glyph unicode="" glyph-name="pause" d="M598 724.667h170v-596h-170v596zM256 128.667v596h170v-596h-170z" />
|
||||
<glyph unicode="" glyph-name="video" horiz-adv-x="1463" d="M590.664 247.978v405.038l362.371-202.518-362.371-202.518zM1217.607 863.923h-972.353c-59.669 0-108.047-48.065-108.047-107.347v-617.199c0-59.258 48.378-107.323 108.047-107.323h972.353c59.669 0 108.023 48.065 108.023 107.323v617.199c0 59.283-48.354 107.347-108.023 107.347z" />
|
||||
<glyph unicode="" glyph-name="video-camera" d="M1024 749.714v-621.714q0-24-22.286-33.714-7.429-2.857-14.286-2.857-15.429 0-25.714 10.857l-230.286 230.286v-94.857q0-68-48.286-116.286t-116.286-48.286h-402.286q-68 0-116.286 48.286t-48.286 116.286v402.286q0 68 48.286 116.286t116.286 48.286h402.286q68 0 116.286-48.286t48.286-116.286v-94.286l230.286 229.714q10.286 10.857 25.714 10.857 6.857 0 14.286-2.857 22.286-9.714 22.286-33.714z" />
|
||||
<glyph unicode="" glyph-name="warning" d="M1010.432 121.248l-383.968 768c-21.664 43.36-65.952 70.752-114.464 70.752s-92.8-27.392-114.464-70.752l-383.968-768c-19.84-39.68-17.728-86.816 5.6-124.576 23.328-37.696 64.512-60.672 108.864-60.672h767.904c44.384 0 85.568 22.976 108.864 60.672 23.328 37.76 25.44 84.896 5.632 124.576zM575.936 96c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v64c0 17.696 14.304 32 32 32h64c17.696 0 32-14.304 32-32v-64zM575.936 352c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v320c0 17.664 14.304 32 32 32h64c17.696 0 32-14.336 32-32v-320z" />
|
||||
<glyph unicode="" glyph-name="my-profile" d="M631.113 440.41c67.703 41.378 112.794 115.293 112.794 199.59 0 129.603-106.586 234.667-238.063 234.667-131.479 0-238.064-105.064-238.064-234.667 0-84.299 45.093-158.217 112.799-199.59-160.045-53.764-276.791-207.825-295.11-390.131-1.581-15.735 11.012-28.945 26.69-28.945 14.709 0 26.732 11.695 28.304 26.449 21.436 201.105 176.501 357.184 364.724 357.551h1.323c45.862-0.090 89.758-9.421 130.231-26.398l37.402 44.147c-13.948 6.588-28.305 12.382-43.029 17.327zM679.433 640c0-94.502-77.717-171.11-173.589-171.11-95.87 0-173.588 76.608-173.588 171.11s77.718 171.111 173.588 171.111c95.872 0 173.589-76.609 173.589-171.111zM871.241 47.761c-6.259 58.731-34.027 117.278-60.574 165.572l37.739 44.548c36.433-60.041 70.362-133.312 77.828-207.616 1.579-15.735-11.012-28.932-26.692-28.932-14.707 0-26.731 11.674-28.301 26.428zM490.675 99.004c-16.132-43.012 30.4-82.624 70.285-59.831l91.712 52.407c6.895 3.938 13.073 9.015 18.274 15.019l246.481 284.403c24.239 27.964 22.686 69.918-3.55 96.017l-25.109 24.981c-28.928 28.778-76.186 27.012-102.886-3.844l-241.958-279.629c-5.461-6.31-9.754-13.538-12.685-21.346l-40.563-108.177zM625.152 139.738l-76.318-43.61 34.342 91.575c0.619 1.66 1.532 3.191 2.688 4.531l241.958 279.625c5.666 6.549 15.689 6.921 21.828 0.819l25.109-24.981c5.564-5.538 5.892-14.434 0.751-20.369l-246.481-284.403c-1.105-1.276-2.415-2.351-3.878-3.187z" />
|
||||
<glyph unicode="" glyph-name="link" d="M440.236 324.234c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" />
|
||||
<glyph unicode="" glyph-name="check" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
|
||||
<glyph unicode="" glyph-name="download-pdf" horiz-adv-x="939" d="M845.505 217.835v-46.972c0-75.156-56.367-140.917-131.523-140.917h-497.908c-75.156 0-131.523 56.367-131.523 140.917v46.972h-84.55v-46.972c0-122.128 93.945-225.468 216.073-225.468h507.303c122.128 0 216.073 103.339 216.073 225.468v46.972h-93.945zM845.505 584.22h-206.679v375.78h-347.596v-375.78h-197.284l375.78-375.78z" />
|
||||
<glyph unicode="" glyph-name="duplicate" horiz-adv-x="1070" d="M485.084-5.383h-339.738c-47.85 0-86.729 41.271-86.729 91.514v512.598c0 50.841 38.28 91.514 86.729 91.514h288.299v-136.972h138.168v-71.178h58.617v116.636c0 83.738-65.196 151.327-145.346 151.327h-339.738c-80.15 0-145.346-68.187-145.346-151.327v-512c0-82.542 65.196-150.729 145.346-150.729h339.738c64.598 0 119.626 43.664 138.766 103.477h-65.196c-14.355-26.916-41.869-44.86-73.57-44.86zM649.57 342.131l-139.364-139.963 129.794-129.794 139.364 139.963 77.159-77.159v284.112h-284.112zM509.009 855.327l-51.439 28.71c-11.963-21.533-18.542-47.252-18.542-72.374v-0.598l58.019 0.598c0.598 16.15 4.187 31.103 11.963 43.664zM584.374 901.981l-0.598 57.421c-25.72 0-51.439-7.178-73.57-20.935l30.505-49.047c13.159 8.374 28.112 12.561 43.664 12.561zM768.598 959.402h61.607v-57.421h-61.607v57.421zM645.383 959.402h61.607v-57.421h-61.607v57.421zM999.477 242.841l51.439-26.916c12.561 22.131 19.14 47.252 19.14 72.374v1.794l-58.019-2.393c-0.598-16.15-4.785-30.505-12.561-44.86zM1011.439 658.542h58.019v-60.411h-58.019v60.411zM924.112 198.579v-58.019c25.72 0 52.037 7.178 74.168 19.738l-30.505 50.841c-13.159-8.972-28.112-12.561-43.664-12.561zM1011.439 535.327h58.019v-60.411h-58.019v60.411zM1011.439 412.71h58.019v-62.206h-58.019v62.206zM939.664 960h-66.991v-196.785h139.364v-42.467h58.019v108.262c0 72.374-58.019 130.991-130.393 130.991z" />
|
||||
<glyph unicode="" glyph-name="order-new" horiz-adv-x="780" d="M753.135 748.594c0 0-6.606 0-6.606 0h-607.794c-39.639 6.606-72.671 33.032-72.671 72.671 0 19.819 6.606 33.032 19.819 52.852 13.213 13.213 33.032 19.819 52.852 19.819h607.794c19.819 0 33.032 13.213 33.032 33.032s-19.819 33.032-33.032 33.032h-607.794c-39.639 0-72.671-13.213-99.097-39.639s-39.639-59.458-39.639-99.097v-753.135l125.523 125.523-59.458 66.065-19.819 19.819h297.29v-290.684h-6.606l-72.671 72.671-125.523-125.523h607.794c19.819 0 33.032 13.213 33.032 33.032v753.135c0 13.213-13.213 26.426-26.426 26.426z" />
|
||||
<glyph unicode="" glyph-name="new-edition" horiz-adv-x="856" d="M168.421 84.211c-33.684 0-60.632 13.474-74.105 40.421 0 6.737-6.737 6.737-6.737 13.474 0 0 0 0 0 0-13.474 13.474-20.211 33.684-20.211 53.895v592.842c0 6.737 0 13.474 0 20.211s0 13.474 6.737 20.211c0 0 0 0 0 0 0 6.737 6.737 6.737 6.737 13.474 0 0 0 0 0 0 20.211 26.947 53.895 47.158 87.579 47.158h330.105v-154.947h161.684v-269.474c26.947 0 47.158-6.737 67.368-13.474v336.842c0 13.474 0 26.947-6.737 33.684 0 13.474-6.737 20.211-6.737 26.947-20.211 67.368-80.842 114.526-154.947 114.526h-390.737c-74.105 0-134.737-47.158-154.947-114.526-6.737-6.737-6.737-20.211-6.737-26.947-6.737-13.474-6.737-20.211-6.737-33.684v-592.842c0-20.211 0-40.421 6.737-53.895v0c0-6.737 0-6.737 6.737-13.474 0-6.737 6.737-13.474 13.474-20.211 26.947-53.895 80.842-87.579 141.474-87.579h195.368c-13.474 20.211-20.211 40.421-26.947 67.368h-168.421zM626.526 394.105c-128 0-229.053-101.053-229.053-229.053s101.053-229.053 229.053-229.053 229.053 101.053 229.053 229.053c0 128-101.053 229.053-229.053 229.053zM727.579 144.842h-87.579v-87.579c0-6.737-6.737-20.211-20.211-20.211s-13.474 13.474-13.474 26.947v87.579h-87.579c-6.737 0-20.211 6.737-20.211 20.211 0 6.737 6.737 20.211 20.211 20.211h87.579v87.579c0 0 6.737 6.737 20.211 6.737s20.211-6.737 20.211-20.211v-87.579h87.579c13.474 0 20.211-6.737 20.211-20.211-6.737-6.737-20.211-13.474-26.947-13.474z" />
|
||||
<glyph unicode="" glyph-name="toc" horiz-adv-x="1195" d="M426.667 960h768v-170.667h-768v170.667zM426.667 533.333h768v-170.667h-768v170.667zM426.667 106.667h768v-170.667h-768v170.667zM0 960h170.667v-170.667h-170.667v170.667zM0 533.333h170.667v-170.667h-170.667v170.667zM0 106.667h170.667v-170.667h-170.667v170.667z" />
|
||||
<glyph unicode="" glyph-name="edit-history" d="M60.235 514.259c0 210.824 174.682 385.506 385.506 385.506 186.729 0 337.318-132.518 373.459-307.2l54.212 42.165c-54.212 186.729-228.894 325.271-427.671 325.271-246.965 0-445.741-198.776-445.741-445.741 0-180.706 108.424-331.294 259.012-403.576l54.212 42.165c-150.588 60.235-252.988 198.776-252.988 361.412zM508.449 50.4l-93.837 109.97 384.896 328.429 93.837-109.97-384.896-328.429zM848.632 531.279l73.314 62.558 93.837-109.97-73.314-62.558-93.837 109.97zM271.059-57.976l186.729 66.259-90.353 108.424zM415.624 773.271v-301.176h222.871v66.259h-168.659v234.918z" />
|
||||
<glyph unicode="" glyph-name="view" horiz-adv-x="1684" d="M836.923 960c-354.462 0-836.923-512-836.923-512s482.462-512 836.923-512c364.308 0 836.923 512 836.923 512s-472.615 512-836.923 512zM836.923 54.154c-206.769 0-512 236.308-669.538 393.846 167.385 157.538 462.769 393.846 669.538 393.846 216.615 0 512-236.308 669.538-393.846-157.538-157.538-452.923-393.846-669.538-393.846zM452.923 448c0-216.615 167.385-384 384-384s384 167.385 384 384c0 206.769-167.385 384-384 384s-384-167.385-384-384zM846.769 694.154c118.154 0 206.769-88.615 206.769-206.769h-206.769v206.769z" />
|
||||
<glyph unicode="" glyph-name="highlight" horiz-adv-x="925" d="M0 958.839h924.535v-150.391h-924.535v150.391zM0 697.378h924.535v-150.391h-924.535v150.391zM0 440.559h164.113v-150.391h-164.113v150.391zM925.057 135.433l-110.444-197.907-425.678 237.555 110.444 197.907 425.678-237.555zM457.045 391.885l-232.858 1.911 125.952-193.536zM270.95 337.067l26.078 46.763-81.442 45.466v-56.593z" />
|
||||
<glyph unicode="" glyph-name="search" d="M1011.2 42.667l-277.333 277.333c49.067 64 76.8 147.2 76.8 234.667 0 224-181.333 405.333-405.333 405.333s-405.333-181.333-405.333-405.333 181.333-405.333 405.333-405.333c87.467 0 170.667 27.733 236.8 76.8l277.333-277.333c8.533-8.533 19.2-12.8 32-12.8 10.667 0 21.333 4.267 29.867 12.8l32 32c8.533 8.533 12.8 19.2 12.8 29.867-2.133 10.667-6.4 23.467-14.933 32zM102.4 554.667c0 168.533 136.533 305.067 305.067 305.067s305.067-136.533 305.067-305.067-138.667-305.067-307.2-305.067c-168.533 0-302.933 136.533-302.933 305.067z" />
|
||||
<glyph unicode="" glyph-name="book1" horiz-adv-x="1047" d="M356.674 499.775c0 0-85.142 6.903-230.112-57.528l11.506-46.022c0 0 90.894 43.721 197.897 51.775 20.71 51.775 20.71 51.775 20.71 51.775zM138.067 131.596l70.184 31.065 26.463 59.829c0 0-56.378-17.258-108.153-46.022l11.506-44.872zM338.265 321.438c34.517 43.721 41.42 51.775 41.42 51.775s-109.303 12.656-253.124-57.528l11.506-46.022c0 0 118.508 57.528 200.198 51.775zM425.708 407.73c0 0-16.108 24.162-34.517 57.528-14.957-31.065 34.517-92.045 34.517-92.045l483.236 471.73c0 0-118.508-135.766-195.596-218.607-28.764-31.065-460.225-437.213-460.225-437.213l23.011-23.011c0 0 144.971 136.917 184.090 172.584 56.378-12.656 80.539 0 80.539 0s-18.409 4.602-23.011 11.506c37.969 8.054 161.079 115.056 161.079 115.056l-34.517 11.506c0 0-1.151 6.903 92.045 34.517 165.681 154.175 262.328 348.62 276.135 437.213-156.476 0-276.135-92.045-276.135-92.045l-34.517-172.584v126.562c0 0-264.629-245.070-287.64-287.64s11.506-115.056 11.506-115.056zM1000.989 512.431c0 0 3.452-1.151-12.656 14.957-3.452 3.452-6.903 5.753-10.355 9.204-74.787 57.528-115.056 56.378-115.056 56.378s-10.355-2.301-34.517-34.517c48.324-11.506 115.056-44.872 115.056-44.872l34.517-520.054c0 0-123.11 12.656-276.135 34.517s-149.573-34.517-149.573-34.517h-57.528c0 0 3.452 56.378-149.573 34.517s-276.135-34.517-276.135-34.517l34.517 517.753c0 0 43.721 39.119 195.596 57.528 13.807 2.301 94.346 3.452 94.346 3.452l32.216 42.571c0 0-245.070 10.355-356.674-80.539-3.452-3.452-8.054-5.753-10.355-9.204-16.108-14.957-12.656-13.807-12.656-13.807l-46.022-575.281 322.157 34.517c0 0 79.389 11.506 103.551 0s11.506-34.517 11.506-34.517h172.584c0 0-12.656 23.011 11.506 34.517s103.551 0 103.551 0l322.157-34.517-46.022 576.431z" />
|
||||
<glyph unicode="" glyph-name="usd" horiz-adv-x="645" d="M573.44 407.040c-30.72 20.48-71.68 40.96-133.12 56.32l-71.68 15.36v276.48c0 0 30.72-5.12 51.2-20.48 40.96-25.6 66.56-56.32 76.8-102.4h112.64c-10.24 66.56-35.84 117.76-87.040 153.6-35.84 25.6-76.8 46.080-128 56.32l-25.6 5.12v112.64h-102.4v-112.64h-20.48c-66.56-10.24-122.88-30.72-158.72-66.56-51.2-46.080-71.68-97.28-71.68-168.96s25.6-122.88 71.68-158.72c25.6-20.48 81.92-40.96 158.72-56.32l20.48-5.12v-281.6c0 0-25.6 5.12-35.84 5.12-35.84 5.12-66.56 25.6-81.92 51.2-15.36 20.48-30.72 46.080-35.84 71.68h-112.64c5.12-66.56 30.72-117.76 81.92-153.6 40.96-30.72 97.28-51.2 163.84-61.44l25.6-5.12v-81.92h102.4v81.92l25.6 5.12c71.68 10.24 128 30.72 168.96 66.56 51.2 46.080 76.8 102.4 76.8 174.080-5.12 61.44-25.6 112.64-71.68 143.36zM266.24 504.32l-30.72 10.24c-30.72 5.12-46.080 15.36-61.44 20.48-35.84 20.48-56.32 51.2-56.32 92.16s20.48 76.8 56.32 102.4c15.36 10.24 35.84 20.48 61.44 25.6 5.12 0 30.72 0 30.72 0v-250.88zM435.2 120.32c-10.24-5.12-20.48-5.12-30.72-10.24-15.36-5.12-30.72 0-30.72 0v261.12l35.84-10.24c30.72-10.24 51.2-20.48 71.68-30.72 30.72-20.48 51.2-51.2 51.2-87.040-5.12-40.96-25.6-92.16-97.28-122.88z" />
|
||||
<glyph unicode="" glyph-name="share" horiz-adv-x="1318" d="M714.419 126.512c0-63.504-47.628-119.070-111.132-119.070h-420.713c-63.504 0-111.132 55.566-111.132 119.070v642.977c0 63.504 47.628 119.070 111.132 119.070h428.651c39.69 0 71.442-23.814 95.256-55.566h79.38c-23.814 71.442-95.256 127.008-174.636 127.008h-428.651c-103.194 0-182.574-87.318-182.574-190.512v-642.977c0-103.194 79.38-190.512 182.574-190.512h428.651c103.194 0 182.574 87.318 182.574 190.512v230.202h-79.38v-230.202zM1317.705 634.543l-484.217 341.333 47.628-206.388c-603.287-111.132-523.907-603.287-523.907-603.287 111.132 341.333 523.907 341.333 523.907 341.333l-47.628-206.388 484.217 333.395z" />
|
||||
<glyph unicode="" glyph-name="report" horiz-adv-x="853" d="M835.557 711.64v-70.683h-210.176v212.784h68.476c78.44 0 141.7-63.862 141.7-142.101zM13.040 126.784c-2.207 3.611-3.611 7.222-5.082 11.636h0.736c1.471-3.611 2.942-7.289 4.347-11.636zM129.53 74.357c2.207-10.164 4.347-19.593 7.958-29.022 24.676-63.795 84.86-109.535 155.208-109.535h389.391c70.349 0 130.533 45.673 155.208 109.535 3.611 9.429 5.818 18.858 8.025 29.022 2.14 10.833 3.611 22.469 3.611 34.773v585.257c0 19.593-2.875 38.451-8.693 55.838-1.471 3.611-2.875 7.222-4.347 11.636-2.875 7.958-6.553 15.247-10.9 22.469-29.758 49.284-82.653 82.653-142.837 82.653h-193.659c11.636-20.329 20.329-42.062 26.815-65.266h166.777c30.426 0 58.044-14.511 75.431-37.715 2.875-3.611 5.082-7.222 7.222-10.9 0.736-0.736 1.471-2.207 2.207-2.875 8.693-15.982 14.511-35.509 14.511-55.838v-585.257c0-7.222-0.736-14.511-2.207-21.064-1.471-5.818-2.875-11.636-4.347-17.387 0 0 0 0 0-0.736-2.14-5.015-4.347-9.362-6.487-13.709 0 0 0 0 0-0.736-16.651-31.898-48.615-53.698-86.331-53.698h-389.458c-37.715 0-69.613 21.733-86.331 53.698-2.875 5.082-5.082 9.429-6.553 14.511-2.207 5.818-3.611 12.304-4.347 18.122-1.471 6.553-2.207 13.775-2.207 21.064v319.845c-23.94 2.875-46.409 8.693-67.473 16.651v-336.563c0.134-12.304 1.605-23.94 3.812-34.773zM233.046 952.845c-127.055 0-230.037-102.982-230.037-230.037s102.982-229.369 230.037-229.369c127.055 0 229.369 102.313 229.369 229.369 0 127.122-102.313 230.037-229.369 230.037zM233.046 553.021c-19.393 0-34.773 15.38-34.773 34.773 0 18.724 15.38 34.104 34.773 34.104 18.724 0 34.104-15.38 34.104-34.104 0-19.46-15.38-34.773-34.104-34.773zM259.126 691.445c0-19.393-7.356-34.773-26.080-34.773-19.393 0-25.411 15.38-25.411 34.773l-10.031 165.841c0 19.393 16.049 34.773 35.442 34.773 18.724 0 34.773-15.38 34.773-34.773l-8.693-165.841z" />
|
||||
<glyph unicode="" glyph-name="promo-check" horiz-adv-x="1065" d="M299.008 488.96l143.36-274.432c0 0 233.472 561.152 606.208 749.568-8.192-135.168-45.056-249.856 16.384-393.216-163.84-36.864-495.616-438.272-606.208-634.88-151.552 188.416-331.776 327.68-458.752 372.736l299.008 180.224z" />
|
||||
<glyph unicode="" glyph-name="dribbble" d="M511.064 960c-282.676 0-511.064-228.388-511.064-511.064s228.388-511.064 511.064-511.064c282.676 0 511.064 228.388 511.064 511.064 1.872 282.676-228.388 511.064-511.064 511.064zM834.925 720.38c58.033-67.393 93.601-153.506 99.218-248.98-110.45 18.72-211.539 18.72-303.269 3.744-11.232 24.336-20.592 48.673-31.824 71.137 97.346 43.057 175.971 101.090 235.876 174.099zM511.064 870.143c97.346 0 187.203-33.697 258.34-87.985-50.545-65.521-121.682-117.938-213.411-157.25-43.057 78.625-93.601 157.25-147.89 232.132 33.697 9.36 67.393 13.104 102.962 13.104zM321.989 825.214c56.161-74.881 106.706-151.634 151.634-230.26-102.962-29.952-226.516-46.801-370.662-46.801 28.080 121.682 110.45 220.899 219.027 277.060zM89.857 448.936c0 3.744 0 7.488 0 11.232 164.739 0 305.141 18.72 424.951 56.161 9.36-20.592 18.72-41.185 28.080-61.777-144.146-44.929-262.084-136.658-355.686-277.060-61.777 73.009-97.346 168.483-97.346 271.444zM511.064 25.857c-97.346 0-187.203 33.697-260.212 89.857 84.241 131.042 190.947 217.155 323.861 256.468 39.313-102.962 69.265-209.667 87.985-318.245-46.801-18.72-97.346-28.080-151.634-28.080zM746.94 96.995c-18.72 101.090-46.801 198.435-82.369 293.909 80.497 11.232 168.483 7.488 263.956-7.488-18.72-119.81-86.113-222.771-181.587-286.42z" />
|
||||
<glyph unicode="" glyph-name="twitter1" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" />
|
||||
<glyph unicode="" glyph-name="facebook1" d="M608 768h160v192h-160c-123.514 0-224-100.486-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.346 14.654 32 32 32z" />
|
||||
<glyph unicode="" glyph-name="add-to-binder" horiz-adv-x="965" d="M962.56 819.2c-2.56 10.24-5.12 20.48-7.68 28.16-25.6 64-84.48 110.080-156.16 110.080h-396.8c-69.12 2.56-130.56-43.52-156.16-107.52-2.56-10.24-5.12-20.48-7.68-30.72s-2.56-20.48-2.56-33.28v-7.68h-128c-17.92 0-33.28-15.36-33.28-33.28v-33.28c0-17.92 15.36-33.28 33.28-33.28h128v-107.52h-128c-17.92 0-33.28-15.36-33.28-33.28v-38.4c0-17.92 15.36-33.28 33.28-33.28h128v-53.76c71.68 0 2.56 0 69.12 0v53.76h51.2c17.92 0 33.28 15.36 33.28 33.28v33.28c0 17.92-15.36 33.28-33.28 33.28h-51.2v107.52h51.2c17.92 0 33.28 15.36 33.28 33.28v35.84c0 17.92-15.36 33.28-33.28 33.28h-51.2v10.24c0 7.68 0 15.36 2.56 20.48 0 5.12 2.56 12.8 5.12 17.92s5.12 10.24 7.68 15.36c17.92 33.28 48.64 53.76 87.040 53.76h394.24c38.4 0 71.68-23.040 87.040-53.76 0 0 0 0 0 0 2.56-5.12 5.12-7.68 7.68-12.8 0 0 0 0 0 0 2.56-5.12 2.56-12.8 5.12-17.92-5.12-10.24-5.12-15.36-5.12-23.040v-591.36c0-20.48-5.12-40.96-15.36-56.32 0 0-2.56-2.56-2.56-2.56-2.56-2.56-5.12-7.68-7.68-10.24-17.92-23.040-46.080-38.4-76.8-38.4h-314.88c0-66.56 0 0 0-66.56h317.44c61.44 0 115.2 33.28 143.36 84.48 5.12 7.68 7.68 15.36 10.24 23.040 0 5.12 2.56 7.68 5.12 12.8 5.12 17.92 7.68 35.84 7.68 56.32v588.8c2.56 12.8 0 23.040 0 33.28zM161.28 248.32l-161.28-161.28 151.040-151.040 161.28 161.28 89.6-87.040v327.68h-330.24z" />
|
||||
<glyph unicode="" glyph-name="linkedin" d="M384 576h177.106v-90.782h2.532c24.64 44.194 84.958 90.782 174.842 90.782 186.946 0 221.52-116.376 221.52-267.734v-308.266h-184.61v273.278c0 65.184-1.334 149.026-96.028 149.026-96.148 0-110.82-70.986-110.82-144.292v-278.012h-184.542v576zM64 576h192v-576h-192v576zM256 736c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96z" />
|
||||
<glyph unicode="" glyph-name="pinterest" d="M512 891.6c-245 0-443.6-198.6-443.6-443.6 0-188 117-348.4 282-413-3.8 35-7.4 89 1.6 127.2 8 34.6 52 220.4 52 220.4s-13.2 26.6-13.2 65.8c0 61.6 35.8 107.8 80.2 107.8 37.8 0 56.2-28.4 56.2-62.4 0-38-24.2-95-36.8-147.6-10.6-44.2 22-80.2 65.6-80.2 78.8 0 139.4 83.2 139.4 203.2 0 106.2-76.4 180.4-185.2 180.4-126.2 0-200.2-94.6-200.2-192.6 0-38.2 14.6-79 33-101.2 3.6-4.4 4.2-8.2 3-12.8-3.4-14-10.8-44.2-12.4-50.4-2-8.2-6.4-9.8-14.8-6-55.4 25.8-90 106.8-90 171.8 0 140 101.6 268.4 293 268.4 153.8 0 273.4-109.6 273.4-256.2 0-152.8-96.4-276-230.2-276-45 0-87.2 23.4-101.6 51 0 0-22.2-84.6-27.6-105.4-10-38.6-37-86.8-55.2-116.2 41.6-12.8 85.6-19.8 131.4-19.8 245 0 443.6 198.6 443.6 443.6 0 245.2-198.6 443.8-443.6 443.8z" />
|
||||
<glyph unicode="" glyph-name="instagram" d="M512 867.8c136.8 0 153-0.6 206.8-3 50-2.2 77-10.6 95-17.6 23.8-9.2 41-20.4 58.8-38.2 18-18 29-35 38.4-58.8 7-18 15.4-45.2 17.6-95 2.4-54 3-70.2 3-206.8s-0.6-153-3-206.8c-2.2-50-10.6-77-17.6-95-9.2-23.8-20.4-41-38.2-58.8-18-18-35-29-58.8-38.4-18-7-45.2-15.4-95-17.6-54-2.4-70.2-3-206.8-3s-153 0.6-206.8 3c-50 2.2-77 10.6-95 17.6-23.8 9.2-41 20.4-58.8 38.2-18 18-29 35-38.4 58.8-7 18-15.4 45.2-17.6 95-2.4 54-3 70.2-3 206.8s0.6 153 3 206.8c2.2 50 10.6 77 17.6 95 9.2 23.8 20.4 41 38.2 58.8 18 18 35 29 58.8 38.4 18 7 45.2 15.4 95 17.6 53.8 2.4 70 3 206.8 3zM512 960c-139 0-156.4-0.6-211-3-54.4-2.4-91.8-11.2-124.2-23.8-33.8-13.2-62.4-30.6-90.8-59.2-28.6-28.4-46-57-59.2-90.6-12.6-32.6-21.4-69.8-23.8-124.2-2.4-54.8-3-72.2-3-211.2s0.6-156.4 3-211c2.4-54.4 11.2-91.8 23.8-124.2 13.2-33.8 30.6-62.4 59.2-90.8 28.4-28.4 57-46 90.6-59 32.6-12.6 69.8-21.4 124.2-23.8 54.6-2.4 72-3 211-3s156.4 0.6 211 3c54.4 2.4 91.8 11.2 124.2 23.8 33.6 13 62.2 30.6 90.6 59s46 57 59 90.6c12.6 32.6 21.4 69.8 23.8 124.2 2.4 54.6 3 72 3 211s-0.6 156.4-3 211c-2.4 54.4-11.2 91.8-23.8 124.2-12.6 34-30 62.6-58.6 91-28.4 28.4-57 46-90.6 59-32.6 12.6-69.8 21.4-124.2 23.8-54.8 2.6-72.2 3.2-211.2 3.2v0zM512 711c-145.2 0-263-117.8-263-263s117.8-263 263-263 263 117.8 263 263c0 145.2-117.8 263-263 263zM512 277.4c-94.2 0-170.6 76.4-170.6 170.6s76.4 170.6 170.6 170.6c94.2 0 170.6-76.4 170.6-170.6s-76.4-170.6-170.6-170.6zM846.8 721.4c0-33.91-27.49-61.4-61.4-61.4s-61.4 27.49-61.4 61.4c0 33.91 27.49 61.4 61.4 61.4s61.4-27.49 61.4-61.4z" />
|
||||
<glyph unicode="" glyph-name="lock" d="M204.8 563.2v102.4c0 169.662 137.538 307.2 307.2 307.2s307.2-137.538 307.2-307.2v0-102.4h51.2c56.554 0 102.4-45.846 102.4-102.4v0-409.6c0-56.554-45.846-102.4-102.4-102.4v0h-716.8c-56.554 0-102.4 45.846-102.4 102.4v0 409.6c0 56.32 46.080 102.4 102.4 102.4h51.2zM460.8 218.624v-116.224h102.4v116.224c30.824 18.035 51.2 50.978 51.2 88.681 0 56.554-45.846 102.4-102.4 102.4s-102.4-45.846-102.4-102.4c0-37.703 20.376-70.646 50.717-88.419l0.483-0.262zM358.4 665.6v-102.4h307.2v102.4c0 84.831-68.769 153.6-153.6 153.6s-153.6-68.769-153.6-153.6v0z" />
|
||||
<glyph unicode="" glyph-name="credit-card, money, payment, ecommerce" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
|
||||
<glyph unicode="" glyph-name="print" d="M640 192.005h-319.988v-64.015h319.988v64.015zM256.017 895.997h511.993v-127.999h63.995v127.999c0 35.311-28.626 64.003-63.995 64.003h-511.993c-35.346 0-64.005-28.691-64.005-64.003v-127.999h64.005v127.999zM703.99 320h-383.977v-64.005h383.977v64.005zM960.010 703.994h-896.006c-35.346 0-64.005-28.683-64.005-63.996v-384.003c0-35.369 28.658-63.99 64.005-63.99h128.003v-192.010c0-35.379 28.659-64 64.005-64h511.992c35.369 0 63.995 28.621 63.995 64v192.010h128.005c35.374 0 63.995 28.621 63.995 63.99v384.003c0 35.314-28.621 63.996-63.99 63.996zM768.005-0.005h-511.992v384.005h511.992v-384.005zM895.995 511.992c-35.374 0-63.995 28.626-63.995 64.003 0 35.31 28.621 64.003 63.995 64.003 35.384 0 64.015-28.691 64.015-64.003 0-35.375-28.636-64.003-64.015-64.003z" />
|
||||
<glyph unicode="" glyph-name="promo-customize" d="M972.559 672.466h-35.205v38.527c0 8.306-7.127 15.004-15.915 15.004h-63.658c-49.083 135.944-185.563 233.95-345.781 233.95s-296.697-98.006-345.781-233.95h-63.658c-8.788 0-15.915-6.752-15.915-15.004v-38.527h-35.205c-28.346 0-51.441-21.809-51.441-48.655v-639.21c0-26.792 23.095-48.655 51.441-48.655h921.118c28.346 0 51.441 21.809 51.441 48.655v639.21c0 26.792-23.095 48.655-51.441 48.655zM305.807 599.698c0.589-23.041 2.518-45.922 5.734-68.159 1.072-7.555 7.931-12.967 15.7-12.967 0.75 0 1.447 0.054 2.197 0.161 8.681 1.125 14.789 8.734 13.557 16.933-3.054 20.898-4.876 42.385-5.412 64.087h158.503v-139.534c-43.725-1.822-86.485-10.985-126.299-26.899-5.144 12.967-9.806 26.739-13.878 41.206-2.251 8.038-10.931 12.807-19.451 10.663-8.466-2.143-13.557-10.342-11.306-18.379 4.608-16.504 9.967-31.936 15.915-46.404-20.041-10.020-39.17-21.862-57.068-35.419-61.247 54.335-100.846 130.264-105.079 214.767h126.888zM527.915 928.546c40.831-6.912 79.037-40.188 107.919-92.808-34.241-12.914-70.785-20.523-107.919-22.184v114.992zM653.088 857.118c-11.521 12.003 11.092 39.385 26.042 32.097 14.521-7.073 25.292-13.718 26.096-17.736-12.914-8.681-26.471-16.45-40.563-23.309-0.75 0-11.574 8.895-11.574 8.895zM359.284 848.223c-14.039 6.805-27.596 14.575-40.51 23.256 7.127 4.823 14.468 9.324 21.97 13.61 15.218 8.627 31.293-14.521 22.559-29.686-1.393-2.358-2.733-4.769-4.019-7.18zM391.221 841.042c29.15 50.477 65.909 81.020 104.865 87.557v-115.046c-37.134 1.661-73.625 9.27-107.866 22.184 0.965 1.768 1.983 3.537 3.001 5.305zM496.085 783.439v-153.68h-158.503c1.715 65.534 14.682 127.37 37.241 178.704 38.474-14.736 79.519-23.256 121.262-25.024zM496.085 300.911c-43.725 7.502-84.61 45.654-113.974 104.597 35.955 14.361 74.536 22.72 113.974 24.542v-129.139zM527.861 300.857v129.192c39.492-1.768 78.073-10.181 114.028-24.542-2.947-5.841-6.001-11.574-9.163-17.093-29.15-50.477-65.909-81.020-104.865-87.557zM527.861 460.11v139.534h158.503c-1.554-60.39-12.7-117.672-32.151-166.487-39.867 15.915-82.627 25.131-126.406 26.953zM353.819 392.701c10.235-19.719-11.306-50.209-29.954-38.152-5.198 3.376-10.235 6.859-15.218 10.449 14.307 10.395 29.418 19.666 45.172 27.65zM660.643 374c3.429 6.001 6.752 12.164 9.913 18.487 15.593-7.984 30.543-17.147 44.689-27.435-10.288-7.502-21.059-14.468-32.204-20.791-14.896-8.466-30.972 14.896-22.398 29.739zM740.002 384.931c-17.844 13.503-36.92 25.292-56.907 35.312 21.327 52.727 33.49 114.51 35.151 179.455h126.835c-4.233-84.503-43.832-160.432-105.079-214.767zM845.081 629.759h-126.888c-0.697 28.293-3.429 56.21-8.145 83.217-1.447 8.198-9.592 13.718-18.272 12.378s-14.521-9.056-13.075-17.254c4.448-25.399 7.020-51.709 7.716-78.341h-158.503v153.68c41.742 1.715 82.788 10.288 121.262 24.97 5.251-12.003 10.074-24.756 14.361-38.259 2.518-7.931 11.414-12.432 19.826-10.020s13.182 10.77 10.61 18.755c-4.715 14.682-10.020 28.721-15.915 42.010 18.54 8.949 36.277 19.344 53.049 31.24 66.338-54.763 109.58-133.854 113.974-222.429zM292.893 852.188c16.718-11.842 34.455-22.291 52.995-31.24-24.381-55.192-38.367-121.369-40.135-191.19h-126.835c4.394 88.575 47.69 167.666 113.974 222.429zM118.422 657.462c0 21.273 17.254 38.527 38.527 38.527-6.698-26.096-10.235-53.263-10.235-81.288 0-160.325 116.171-295.411 273.12-334.099 41.85-10.288 76.251-44.85 76.251-87.932v-104.758c0-24.97-32.365-42.010-57.282-42.010h-212.57c-59.532 0-107.812 48.28-107.812 107.812v503.694zM31.776-15.345v639.21c0 10.235 8.788 18.594 19.666 18.594h35.205v-611.506c0-8.306 7.127-15.004 15.915-15.004h336.243c44.797 0 18.701-49.834-26.096-49.834h-361.267c-10.824 0-19.666 8.359-19.666 18.594zM992.171-15.345c0-10.235-8.841-18.594-19.666-18.594h-361.267c-44.797 0-70.892 49.834-26.096 49.834h113.117c8.788 0 15.915 6.752 15.915 15.004 0 8.306-7.127 15.004-15.915 15.004h-113.117c-24.97 0-57.282 17.040-57.282 42.010v104.758c0 43.082 34.401 77.59 76.251 87.932 156.949 38.688 273.12 173.828 273.12 334.099 0 27.971-3.59 55.192-10.235 81.288 21.273 0 38.527-17.254 38.527-38.527v-503.694c0-59.532-48.28-107.812-107.812-107.812h-31.668c-8.788 0-15.915-6.752-15.915-15.004 0-8.306 7.127-15.004 15.915-15.004h155.395c8.788 0 15.915 6.752 15.915 15.004v611.506h35.205c10.824 0 19.666-8.359 19.666-18.594v-639.21z" />
|
||||
<glyph unicode="" glyph-name="promo-publish" d="M297.264 877.404c0 9.088 7.405 16.492 16.492 16.492s16.492-7.405 16.492-16.492c0-9.155-7.405-16.492-16.492-16.492s-16.492 7.405-16.492 16.492zM247.72 893.964c-9.155 0-16.492-7.405-16.492-16.492 0-9.155 7.405-16.492 16.492-16.492s16.492 7.405 16.492 16.492c0 9.088-7.405 16.492-16.492 16.492zM165.192 877.404c0 9.088 7.405 16.492 16.492 16.492s16.492-7.405 16.492-16.492c0-9.155-7.405-16.492-16.492-16.492s-16.492 7.405-16.492 16.492zM561.544 646.176c0-27.33 22.214-49.544 49.544-49.544s49.544 22.214 49.544 49.544c0 27.33-22.214 49.544-49.544 49.544s-49.544-22.214-49.544-49.544zM603.28 431.508c-59.574 0-107.839 48.265-107.839 107.839v114.705c0 59.574 48.265 107.839 107.839 107.839h246.778c59.574 0 107.839-48.265 107.839-107.839v-114.705c0-59.574-48.265-107.839-107.839-107.839h-246.778zM528.492 481.052c0-9.088 7.405-16.492 16.492-16.492h329.441c27.801 0 50.419 22.551 50.419 50.419 0 15.281-6.933 29.821-18.916 39.379l-27.936 22.349c-16.156 12.925-36.418 20.060-57.083 20.060-24.435 0-47.39-9.491-64.623-26.791l-35.879-35.879c-23.493-23.493-54.727-36.485-87.981-36.485h-87.443c-9.088 0-16.492-7.405-16.492-16.492zM924.845 680.978c0 26.388-21.406 47.794-47.794 47.794h-249.47c-54.727 0-99.088-44.361-99.088-99.088s44.361-99.088 99.088-99.088h4.847c24.435 0 47.39 9.491 64.623 26.791l35.879 35.879c23.493 23.493 54.727 36.485 87.981 36.485 28.205 0 55.804-9.693 77.749-27.263 10.568-8.414 26.186-0.942 26.186 12.588v65.969zM594.596 381.964c0 9.088 7.405 16.492 16.492 16.492h330.316c9.088 0 16.492-7.405 16.492-16.492s-7.405-16.492-16.492-16.492h-330.316c-9.088 0-16.492 7.405-16.492 16.492zM611.088 332.42c-9.088 0-16.492-7.405-16.492-16.492s7.405-16.492 16.492-16.492h330.316c9.088 0 16.492 7.405 16.492 16.492s-7.405 16.492-16.492 16.492h-330.316zM148.632 960h825.824c27.33 0 49.544-22.214 49.544-49.544v-660.632c0-27.33-22.214-49.544-49.544-49.544h-346.472c-3.702 0-5.587-4.51-2.962-7.135 0.471-0.471 0.875-1.144 1.077-1.818l27.061-94.645c3.904-13.732 10.568-26.59 19.454-37.697l50.486-63.074c2.356-2.962 3.635-6.597 3.635-10.299 0-27.33-22.214-49.544-49.544-49.544-3.77 0-7.405 1.279-10.299 3.635l-63.074 50.486c-11.174 8.953-23.964 15.55-37.697 19.454l-68.864 19.656c-17.637 5.049-33.658 14.473-46.649 27.397l-82.73 82.73c-15.684 15.684-43.216 13.867-68.19 12.251-7.337-0.471-14.405-0.942-20.935-0.942-13.598 0-26.859 5.52-36.418 15.079l-161.153 161.153c-9.761 9.761-15.079 22.685-15.079 36.418 0 1.683 0.067 3.366 0.269 4.981 1.212 12.453 4.375 26.522 7.607 40.928 4.308 19.050 8.684 38.572 8.684 55.199 0 14.607-3.366 29.551-13.665 39.851l-64.084 64.084c-3.097 3.097-4.847 7.27-4.847 11.646 0 45.505 37.023 82.596 82.596 82.596h4.847c1.279 0 2.491-0.539 3.433-1.414 3.029-3.029 8.28-0.875 8.28 3.433v245.768c0 27.33 22.214 49.544 49.544 49.544zM974.456 926.948h-825.824c-9.088 0-16.492-7.405-16.492-16.492 0-45.64 36.956-82.596 82.596-82.596h693.684c45.572 0 82.596 36.956 82.596 82.596 0 9.088-7.405 16.492-16.492 16.492zM44.361 611.576c-11.107-13.463-3.635-32.244 8.684-44.563l35.408-35.408c6.126-6.126 16.223-5.116 22.349 1.010l19.387 19.387c6.126 6.126 7.135 16.223 1.010 22.349l-35.475 35.475c-12.319 12.319-31.032 19.723-44.495 8.684-2.491-2.019-4.779-4.308-6.866-6.799zM452.83 101.192l57.757-41.399 54.929-15.684c15.011-4.308 31.167-0.135 42.274 10.972 11.040 11.040 15.281 27.263 10.972 42.274l-15.684 54.929-41.399 57.757-318.671 318.671c-11.78 11.78-28.070 18.512-44.697 18.512s-32.917-6.732-44.697-18.512l-19.387-19.387c-11.915-11.915-18.512-27.801-18.512-44.697s6.597-32.783 18.512-44.697l318.671-318.671zM265.761 189.173c3.433-3.433 8.212-5.385 13.126-5.385 10.232 0 18.512 8.28 18.512 18.512 0 4.981-1.885 9.559-5.385 13.126l-161.153 161.153c-3.433 3.433-8.212 5.385-13.126 5.385-10.232 0-18.512-8.28-18.512-18.512 0-4.981 1.885-9.626 5.385-13.126l161.153-161.153zM653.16 30.443c-5.52 6.933-15.819 7.472-22.079 1.212s-5.722-16.56 1.212-22.079l43.553-34.802c3.904-3.164 9.491-4.443 13.059-0.875s2.221 9.155-0.875 13.059l-34.802 43.553zM629.6 233.264h344.856c9.088 0 16.492 7.405 16.492 16.492v437.213c0 59.574-48.265 107.839-107.839 107.839h-643.197c-59.574 0-107.839-48.265-107.839-107.839v-41.399c0-16.425 6.53-32.177 18.108-43.755l8.145-8.145c10.299-10.299 25.243-13.598 39.783-13.598 25.311 0 50.15-10.299 68.056-28.205l287.032-287.032c20.195-20.195 47.659-31.571 76.268-31.571z" />
|
||||
<glyph unicode="" glyph-name="promo-publish-class" d="M812.79 927.998h-440.262c-112.175-0.14-203.077-94.396-203.204-210.714v-70.251c0-9.696 7.574-17.563 16.927-17.563s16.94 7.866 16.94 17.563v70.251c0.102 96.938 75.855 175.487 169.337 175.602h440.262c93.481-0.114 169.235-78.664 169.337-175.602v-351.216c-1.36-81.498-55.814-151.672-132.305-170.48-17.131-4.245-28.136-21.54-25.175-39.548 6.392-40.653-44.491-64.253-71.395-33.118l-48.342 55.929c-6.443 7.383-15.606 11.603-25.213 11.603h-256.375c-9.353 0-16.94-7.854-16.94-17.55s7.587-17.563 16.94-17.563h207.512c31.084 0 60.618-13.522 80.951-37.032l110.116-127.425c6.341-7.104 15.25-11.132 24.59-11.145 5.388 0.013 10.7 1.347 15.491 3.901 13.382 6.875 20.727 22.125 17.995 37.349l-6.888 43.513c-8.692 54.849 29.076 105.516 70.632 142.344 43.894 38.9 71.306 96.264 72.259 159.221v351.216c-0.127 116.318-91.029 210.587-203.204 210.714zM169.337 85.103c0 22.188-16.66 40.565-31.77 56.818-13.852 14.869-21.159 35.85-18.478 57.67 4.295 35.087 33.079 61.393 67.188 61.393s62.893-26.306 67.188-61.393c2.669-21.807-4.638-42.788-18.478-57.67-15.123-16.241-31.783-34.63-31.783-56.818 0-9.696-7.574-17.563-16.927-17.563s-16.94 7.854-16.94 17.563zM220.131 190.454c0 19.393-15.161 35.125-33.867 35.125s-33.867-15.72-33.867-35.125c0-19.393 15.161-35.113 33.867-35.113s33.867 15.72 33.867 35.113zM372.528 32.415c0-29.089-22.735-52.675-50.795-52.675h-270.926c-28.060 0-50.807 23.586-50.807 52.675v280.965c0.076 19.113 8.502 37.794 16.94 56.488 8.464 18.77 16.94 37.54 16.94 56.742v9.696c0 87.28 68.23 158.052 152.396 158.052s152.396-70.759 152.396-158.052v-9.696c0-19.189 8.464-37.959 16.927-56.742 8.426-18.694 16.864-37.375 16.94-56.488v-280.965zM186.264 559.232c-65.46 0-118.529-55.039-118.529-122.926v-53.311c0-9.353 7.587-16.94 16.94-16.94s16.94 7.574 16.94 16.94v53.311c0 48.494 37.909 87.801 84.662 87.801s84.662-39.306 84.662-87.801v-53.311c0-9.353 7.587-16.94 16.94-16.94s16.94 7.574 16.94 16.94v53.311c0 67.887-53.069 122.926-118.529 122.926zM135.469 416.863c0-28.047 22.735-50.795 50.795-50.795s50.807 22.748 50.807 50.795v19.444c0 29.089-22.748 52.688-50.807 52.688s-50.795-23.586-50.795-52.688v-19.444zM50.807 330.943c-9.353 0-16.94-7.854-16.94-17.563v-280.965c0-9.696 7.574-17.563 16.94-17.563h270.926c9.353 0 16.94 7.866 16.94 17.563v280.965c0 9.696-7.587 17.563-16.94 17.563h-270.926zM948.272 383.631c-0.089-77.558-60.682-140.4-135.469-140.489-9.353 0-16.94 7.866-16.94 17.563s7.587 17.563 16.94 17.563c56.094 0.064 101.551 47.198 101.602 105.364 0 9.696 7.587 17.563 16.94 17.563s16.94-7.866 16.94-17.563zM386.862 662.537h412.94c11.997 0 21.731 9.671 21.731 21.604s-9.734 21.617-21.731 21.617h-412.94c-12.009 0-21.731-9.671-21.731-21.617 0-11.933 9.722-21.604 21.731-21.604zM799.802 504.079h-412.94c-12.009 0-21.731 9.213-21.731 20.575s9.722 20.575 21.731 20.575h412.94c11.997 0 21.731-9.213 21.731-20.575s-9.734-20.575-21.731-20.575zM388.68 625.493c-13 0-23.548-9.213-23.548-20.587 0-11.361 10.548-20.575 23.548-20.575h409.305c13 0 23.548 9.213 23.548 20.575s-10.548 20.587-23.548 20.587h-409.305zM365.131 444.401c0 11.361 10.548 20.575 23.548 20.575h409.305c13 0 23.548-9.213 23.548-20.575s-10.548-20.587-23.548-20.587h-409.305c-13 0-23.548 9.213-23.548 20.587z" />
|
||||
<glyph unicode="" glyph-name="promo-quotes" horiz-adv-x="1417" d="M795.132 960.248h-479.118l-321.111-1024.497h254.85l545.379 1024.497zM1416.966 960.248h-479.118l-321.111-1024.497h254.85l545.379 1024.497zM1371.093 929.666l-514.797-963.333h-198.783l305.82 968.43h407.76zM749.259 929.666l-514.797-963.333h-198.783l305.82 968.43h407.76z" />
|
||||
<glyph unicode="" glyph-name="promo-royalties" d="M580.017 528.13l-0.125 17.358c-0.083 13.945-5.495 27.015-15.235 36.797s-23.144 15.402-36.298 14.944l-34.217-0.333c-9.366 0-17.025 7.826-17.067 17.4l-0.083 17.441c-0.042 9.616 7.534 17.483 16.942 17.525l16.65 0.125c0.25 0 0.5-0.083 0.708-0.125 0.291-0.083 0.583-0.167 0.874-0.167h0.083c0.333 0 0.624 0.083 0.916 0.167 0.25 0.083 0.5 0.125 0.749 0.167l48.245 0.333c9.449 0.083 17.025 7.576 16.983 17.15-0.083 9.574-7.659 16.942-17.067 16.942h-0.083l-15.61 0.042c-9.532 0.042-17.275 7.742-17.316 17.275-0.042 9.574-7.701 17.441-17.067 17.441h-0.083c-9.407-0.083-17.025-8.034-16.983-17.608l0.083-15.86c0-0.708-0.583-1.29-1.29-1.29-28.222 0-51.033-23.602-50.867-52.407l0.083-17.441c0.167-28.639 23.144-51.908 51.2-51.908h34.55c4.496 0 8.741-1.582 11.988-4.787 3.247-3.288 5.037-7.534 5.078-12.196l0.125-17.316c0.083-9.616-7.534-17.441-16.983-17.483l-68.267-0.458c-9.407-0.083-17.025-7.909-16.983-17.483s7.701-17.275 17.067-17.275h0.083l16.401 0.125c9.782 0.083 17.774-7.826 17.858-17.608 0.042-9.574 7.701-17.275 17.067-17.275h0.083c9.407 0.083 17.025 7.909 16.942 17.525-0.042 9.782 8.075 17.483 17.233 20.938 19.647 7.368 33.675 26.724 33.551 49.327zM685.206 727.477c-2.040 2.331-2.539 5.495-2.539 8.617v189.149c0 9.616-7.618 17.4-17.067 17.4s-17.067-7.784-17.067-17.4v-20.272c0-59.192-74.261-99.32-133.453-99.32h-1.499c-49.035 0-103.982 33.426-103.982 82.461v54.488c0 9.616-7.659 17.4-17.067 17.4s-17.067-7.784-17.067-17.4v-132.787c0-33.009-16.359-63.272-36.922-89.080-32.843-41.168-52.532-94.366-52.157-150.978 0.791-128 103.233-233.688 228.652-233.688h1.499c126.085 0 228.027 108.186 227.195 236.686-0.375 59.067-22.561 113.806-58.485 154.724zM516.287 370.825h-1.249c-106.687 0-193.852 89.829-194.518 198.764-0.708 109.31 86.041 201.262 193.27 201.262h1.249c106.687 0 193.852-89.871 194.518-198.764 0.708-109.31-85.999-201.262-193.27-201.262zM204.8 579.538c-9.407 0-17.067-7.784-17.067-17.4v-139.156c0-9.616 7.659-17.4 17.067-17.4s17.067 7.784 17.067 17.4v139.156c0 9.616-7.659 17.4-17.067 17.4zM836.225 718.694c0 9.616 7.618 17.4 17.067 17.4s17.067-7.784 17.067-17.4v-139.156c0-9.616-7.618-17.4-17.067-17.4s-17.067 7.784-17.067 17.4v139.156zM819.158 301.268h187.733c9.449 0 17.067-7.784 17.067-17.4v-330.469c0-9.616-7.618-17.4-17.067-17.4h-187.733c-18.94 0-37.297 8.7-55.654 17.4s-36.714 17.4-55.654 17.4h-22.145c-4.079 0-8.2 1.041-12.321 2.081-5.661 1.415-11.281 2.831-16.692 1.582l-133.037-31.095c-3.83-0.916-7.742-1.332-11.655-1.332s-7.826 0.458-11.655 1.332l-282.266 65.686c-1.956 0.458-3.788 1.249-5.495 2.331l-189.607 125.045c-14.403 9.491-22.978 25.433-22.978 42.708v37.713c0 16.068 7.326 30.887 20.105 40.669 13.195 10.032 29.887 13.071 45.789 8.367l209.545-62.647c22.27-6.66 45.83 4.287 68.225 14.736 6.202 2.872 12.321 5.744 18.315 8.159l133.62 54.031c9.824 3.996 20.48 4.787 30.762 2.414l116.636-26.974c7.326-1.707 15.402 1.748 23.435 5.245 6.577 2.831 13.112 5.661 19.273 5.661h22.145c18.94 0 37.297 8.7 55.654 17.4s36.714 17.4 55.654 17.4zM581.64-7.389c48.578 11.364 83.044 54.572 83.294 104.44l0.167 31.511c0.25 50.409-34.425 94.241-83.543 105.564l-62.73 14.527c-3.538 0.833-7.243 0.541-10.615-0.833l-133.62-54.072c-9.824-3.996-16.193-13.237-16.193-23.602 0-13.945 11.78-25.392 26.266-25.392h127.334c9.407 0 17.067-7.784 17.067-17.4s-7.659-17.4-17.067-17.4h-127.334c-6.702 0-13.154 1.082-19.19 3.122-16.276 5.453-30.553 16.151-44.831 26.849-14.985 11.197-29.929 22.395-47.162 27.556l-217.205 65.020c-5.495 1.665-11.197 0.624-15.693-2.831-2.414-1.832-6.41-5.911-6.41-12.779v-37.713c0-5.411 2.747-10.448 7.368-13.487l170.958-112.765c10.656-7.035 22.478-12.113 34.924-14.985l260.537-60.649c2.664-0.624 5.411-0.624 8.034 0l65.644 15.36zM733.825 5.599c18.857 0 34.133 15.277 34.133 34.133v157.846c0 18.857-15.277 34.133-34.133 34.133s-34.133-15.277-34.133-34.133v-157.846c0-18.857 15.277-34.133 34.133-34.133zM882.014-29.201c59.567 0 107.811 48.286 107.811 107.811v80.047c0 59.567-48.286 107.811-107.811 107.811h-62.855c-9.407 0-17.067-7.784-17.067-17.4v-260.87c0-9.616 7.659-17.4 17.067-17.4h62.855z" />
|
||||
<glyph unicode="" glyph-name="promo-supplement" d="M482.675 761.096l108.55-72.228c9.688-6.441 15.47-17.241 15.47-28.891s-5.782-22.467-15.47-28.908l-108.55-72.245c-5.782-3.854-12.449-5.799-19.133-5.799-5.608 0-11.233 1.372-16.373 4.132-11.251 6.042-18.248 17.762-18.248 30.575v144.473c0 12.796 6.997 24.516 18.248 30.575s24.863 5.417 35.506-1.667zM466.076 583.896l108.55 72.245c1.788 1.181 2.049 2.917 2.066 3.837 0 0.92-0.278 2.639-2.066 3.837l-108.55 72.245c-0.885 0.59-1.754 0.799-2.518 0.799-0.92 0-1.702-0.313-2.205-0.573-0.903-0.486-2.431-1.649-2.431-4.063v-144.473c0-2.396 1.528-3.577 2.431-4.063s2.726-1.111 4.723 0.226zM346.467 294.482h-122.943c-9.688 0-17.519-6.737-17.519-15.036s7.848-15.036 17.519-15.036h122.943c9.688 0 17.519 6.719 17.519 15.036 0 8.299-7.848 15.036-17.519 15.036zM223.749 350.614h124.506c9.792 0 17.744-6.737 17.744-15.036s-7.952-15.036-17.744-15.036h-124.506c-9.792 0-17.744 6.737-17.744 15.036s7.952 15.036 17.744 15.036zM348.255 238.366h-124.506c-9.792 0-17.744-6.737-17.744-15.036s7.952-15.036 17.744-15.036h124.506c9.792 0 17.744 6.737 17.744 15.036s-7.952 15.036-17.744 15.036zM810.477 264.427h-122.943c-9.688 0-17.519 6.719-17.519 15.036 0 8.299 7.848 15.036 17.519 15.036h122.943c9.688 0 17.519-6.737 17.519-15.036s-7.848-15.036-17.519-15.036zM687.742 320.543h124.506c9.81 0 17.744 6.737 17.744 15.036s-7.935 15.036-17.744 15.036h-124.506c-9.81 0-17.744-6.737-17.744-15.036s7.935-15.036 17.744-15.036zM812.248 208.295h-124.506c-9.81 0-17.744 6.737-17.744 15.036s7.935 15.036 17.744 15.036h124.506c9.81 0 17.744-6.737 17.744-15.036s-7.935-15.036-17.744-15.036zM978.597 108.513c0-16.789 13.612-30.384 30.402-30.384 8.282 0 15.001-6.737 15.001-15.036v-67.592c0-32.798-26.617-59.484-59.345-59.484h-905.293c-32.728 0-59.345 26.686-59.345 59.484v67.592c0 8.317 6.719 15.036 15.018 15.036 16.772 0 30.384 13.612 30.384 30.384v537.592c0 40.125 32.572 72.766 72.592 72.766 32.381 0 58.65 26.252 58.65 58.65v132.979c0 27.294 22.154 49.5 49.396 49.5h571.918c27.242 0 49.396-22.207 49.396-49.5v-132.961c0-32.398 26.252-58.65 58.65-58.65 40.038 0 72.592-32.641 72.592-72.766v-537.592zM797.959 929.911h-571.918c-10.695 0-19.376-8.716-19.376-19.429 0-23.318 18.908-42.225 42.225-42.225h526.255c23.318 0 42.225 18.908 42.225 42.225 0 10.713-8.699 19.429-19.376 19.429zM964.655-33.928c16.164 0 29.325 13.195 29.325 29.412 0 29.030-23.526 52.556-52.556 52.556h-155.619c-8.282 0-15.001 6.737-15.001 15.036 0 8.317 6.719 15.036 15.001 15.036h98.098c35.732 0 64.692 28.96 64.692 64.692v503.284c0 23.526-19.099 42.677-42.573 42.677h-43.614c-8.317 0-15.036-6.737-15.036-15.036 0-8.317 6.737-15.036 15.036-15.036h41.166c8.282 0 15.018-6.737 15.018-15.036v-520.421c0-8.317-6.719-15.036-15.018-15.036h-642.34c-8.282 0-15.018 6.737-15.018 15.036s6.719 15.036 15.018 15.036h562.646c35.732 0 64.692 28.96 64.692 64.692v405.030c0 11.372-9.219 20.609-20.609 20.609-11.372 0-20.609-9.219-20.609-20.609v-115.391c0-27.311-22.154-49.518-49.396-49.518h-45.611c-8.282 0-15.018 6.737-15.018 15.036 0 8.317 6.719 15.036 15.018 15.036h45.611c10.678 0 19.376 8.716 19.376 19.429v280.872c0 35.732-28.96 64.692-64.692 64.692h-481.303c-35.732 0-64.692-28.96-64.692-64.692v-280.872c0-10.713 8.699-19.429 19.376-19.429h462.344c8.282 0 15.018-6.737 15.018-15.036 0-8.317-6.719-15.036-15.018-15.036h-462.344c-27.242 0-49.396 22.207-49.396 49.518v115.391c0 11.372-9.219 20.609-20.609 20.609-11.372 0-20.609-9.219-20.609-20.609v-407.895c0-34.152 27.676-61.828 61.828-61.828 8.282 0 15.018-6.737 15.018-15.036 0-8.317-6.719-15.036-15.018-15.036h-76.829c-8.282 0-15.001 6.737-15.001 15.036v520.421c0 8.317 6.719 15.036 15.001 15.036h41.166c8.317 0 15.036 6.737 15.036 15.036s-6.737 15.036-15.036 15.036h-43.597c-23.491 0-42.59-19.151-42.59-42.677v-503.301c0-35.714 28.96-64.692 64.692-64.692h581.745c8.282 0 15.001-6.737 15.001-15.036 0-8.317-6.719-15.036-15.001-15.036h-639.284c-29.030 0-52.556-23.526-52.556-52.556 0-16.216 13.161-29.412 29.342-29.412h905.311z" />
|
||||
<glyph unicode="" glyph-name="upload" d="M921.6 210.962v-47.405c0-75.854-61.44-142.222-143.36-142.222h-542.721c-81.92 0-143.36 56.886-143.36 142.222v47.405h-92.159v-47.405c0-123.259 102.4-227.557 235.519-227.557h552.961c133.12 0 235.52 104.297 235.52 227.557v47.405h-102.4zM102.402 580.743h225.28v-379.256h378.878v379.256h215.040l-409.599 379.257-409.599-379.257z" />
|
||||
<glyph unicode="" glyph-name="discount" horiz-adv-x="1028" d="M698.053 565.57l-7.999-7.938 171.74-170.473 7.995 7.938-171.736 170.473zM618.348 484.189l13.722 13.619 171.74-170.473-13.722-13.619-171.74 170.473zM589.805 455.6l7.995 7.934 171.74-170.473-7.999-7.938-171.736 170.477zM531.691 398.894l-13.718-13.619 171.736-170.477 13.722 13.623-171.74 170.473zM507.381 373.331l-5.006-4.961 171.74-170.716 5.006 4.961-171.74 170.716zM456.765 324.729l8.541 8.48 171.74-170.473-8.545-8.48-171.736 170.473zM440.036 306.639l4.999 4.968 171.983-170.477-4.999-4.968-171.983 170.477zM394.43 262.88l8.541 8.48 171.74-170.473-8.541-8.48-171.74 170.473zM427.751 295.382l-14.814-14.7 171.74-170.477 14.81 14.704-171.736 170.473zM475.273 342.528l14.81 14.704 171.74-170.473-14.81-14.704-171.74 170.473zM571.525 438.071l-23.81-23.632 171.74-170.477 23.806 23.632-171.736 170.477zM648.090 515.197l23.806 23.632 171.74-170.473-23.81-23.632-171.736 170.473zM220.738 802.89c2.429-5.068 38.962-50.363 48.757-68.151-4.532-2.672-8.023-3.198-12.669-6.013-83.728-50.76-29.223-170.213 59.5-147.715 79.868 20.251 81.309 131.463 1.878 154.713-15.517 4.543-26.437 3.675-37.422 2.536-8.453 18.862-39.947 54.222-51.679 71.408 10.798 10.493 53.002 28.226 71.059 33.622 102.077 30.509 205.736 0.368 276.901-69.489 31.926-31.343 63.124-64.77 95.661-95.823 19.767-18.862 41.817-43.578 62.574-63.102 32.54-30.601 72.537-72.53 105.665-105.659l39.443-39.496c2.837-2.935 10.198-10.331 13.456-13.278-3.425 3.193 3.262-2.947 0 0l53.085-52.649c9.349-10.047 13.282-25.115 4.817-39.481-5.245-8.913-18.572-20.56-25.171-27.026-43.729-42.906-89.103-90.594-132.441-132.547l-159.899-158.458c-4.521-4.525-8.351-7.779-12.387-12.857-3.724-4.691-8.848-8.366-13.703-13.232-30.86-30.929-45.788-12.413-66.901 8.696-9.246 9.246-17.514 17.514-26.761 26.761l-291.336 290.668c-49.738 51.018-84.819 79.792-106.831 158.098-16.874 60.014-13.731 124.739 9.13 180.449 11.779 28.708 28.326 54.638 45.096 73.988 9.821 11.331 38.782 40.781 50.179 44.038zM73.295 818.554c-19.16 23.324-40.337 42.152-54.693 73.745-6.708 14.764-12.198 38.352 0.32 48.911 25.334 21.368 72.606-12.757 88.836-25.305 6.274-4.848 11.853-9.269 17.818-14.308l48.128-46.864-18.931-15.944c-3.256-2.771-6.068-5.921-8.887-8.457l-25.235-25.576c-4.697-5.274-9.802-13.040-15.054-17.925l-32.302 31.722zM99.029 777.137c-3.315-6.112-7.722-11.768-11.647-18.072-28.697-46.078-45.725-103.045-48.746-157.297-4.094-73.514 13.735-138.902 49.323-200.672l17.524-26.62c9.13-12.292 16.322-21.432 26.55-32.419l353.403-353.022c18.072-18.053 33.504-39.89 68.949-48.875 70.091-17.757 108.381 38.298 149.44 79.36l253.432 252.378c32.529 33.564 80.225 66.913 63.454 133.26-8.666 34.285-30.060 51.276-48.644 69.203-56.752 54.746-120.483 120.552-177.27 177.339l-162.16 161.398c-5.651 5.013-10.422 11.655-22.479 21.887-44.354 37.635-86.592 62.271-143.921 76.902-68.695 17.535-136.432 13.419-203.382-9.894-17.752-6.182-43.126-18.373-59.849-28.462-6.211-3.745-12.547-8.523-18.641-11.82-5.002 2.668-23.037 23.603-35.529 33.795-14.624 11.93-18.49 17.892-38.403 32.483-19.99 14.646-70.607 49.83-99.226 20.971-28.513-28.748 4.572-76.928 19.865-97.668 18.685-25.341 40.789-47.702 63.388-69.070 1.257-1.191 1.015-0.827 2.091-1.977 2.452-2.617 0.948-0.526 2.477-3.109z" />
|
||||
<glyph unicode="" glyph-name="calendar" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
|
||||
<glyph unicode="" glyph-name="notification" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
|
||||
<glyph unicode="" glyph-name="caret" d="M192 832l640-384-640-384z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 72 KiB |
BIN
wordpress/wp-content/themes/lawcarta/assets/fonts/lawcarta.ttf
Normal file
BIN
wordpress/wp-content/themes/lawcarta/assets/fonts/lawcarta.woff
Normal file
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="lawcarta" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " horiz-adv-x="512" d="" />
|
||||
<glyph unicode="" glyph-name="account-settings" horiz-adv-x="1079" d="M622.703 399.568h69.189c20.757 27.676 34.595 62.27 41.514 96.865l-48.432 48.432c0 13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432l48.432 48.432c-6.919 34.595-20.757 69.189-41.514 96.865h-69.189c-20.757 20.757-41.514 48.432-62.27 62.27v69.189c-27.676 20.757-62.27 34.595-96.865 41.514l-48.432-48.432c-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432 0l-48.432 48.432c-34.595-6.919-69.189-20.757-96.865-41.514v-69.189c-20.757-20.757-48.432-41.514-62.27-62.27h-69.189c-20.757-27.676-34.595-62.27-41.514-96.865l48.432-48.432c0-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432l-48.432-48.432c6.919-34.595 20.757-69.189 41.514-96.865h69.189c20.757-20.757 41.514-48.432 62.27-62.27v-69.189c27.676-20.757 62.27-34.595 96.865-41.514l48.432 48.432c13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432 0l48.432-48.432c34.595 6.919 69.189 20.757 96.865 41.514v69.189c27.676 13.838 48.432 34.595 62.27 62.27zM373.622 482.595c-55.351 0-103.784 48.432-103.784 103.784s48.432 103.784 103.784 103.784c55.351 0 103.784-48.432 103.784-103.784 0-62.27-48.432-103.784-103.784-103.784zM1037.838 143.568l41.514 20.757c0 20.757 0 48.432-6.919 69.189l-41.514 6.919c-6.919 6.919-6.919 20.757-13.838 27.676s-13.838 13.838-13.838 27.676l13.838 41.514c-13.838 20.757-34.595 34.595-55.351 41.514l-34.595-27.676c-20.757 6.919-34.595 13.838-55.351 13.838l-20.757 41.514c-20.757 0-48.432 0-69.189-6.919l-6.919-41.514c-6.919-6.919-20.757-6.919-27.676-13.838s-13.838-13.838-27.676-13.838l-41.514 13.838c-20.757-13.838-34.595-34.595-41.514-55.351l27.676-34.595c-6.919-20.757-13.838-34.595-13.838-55.351l-41.514-20.757c0-20.757 0-48.432 6.919-69.189l41.514-6.919c6.919-6.919 6.919-20.757 13.838-27.676s13.838-13.838 13.838-27.676l-13.838-41.514c13.838-20.757 34.595-34.595 55.351-41.514l34.595 27.676c20.757-6.919 41.514-13.838 55.351-13.838l20.757-41.514c20.757 0 48.432 0 69.189 6.919l6.919 41.514c6.919 6.919 20.757 6.919 27.676 13.838s13.838 13.838 27.676 13.838l41.514-13.838c20.757 13.838 34.595 34.595 41.514 55.351l-27.676 34.595c6.919 13.838 13.838 34.595 13.838 55.351zM864.865 102.054c-34.595-20.757-76.108-6.919-96.865 27.676s-6.919 76.108 27.676 96.865c34.595 20.757 76.108 6.919 96.865-27.676s6.919-76.108-27.676-96.865z" />
|
||||
<glyph unicode="" glyph-name="close" d="M512 553.412l-384 384c-30.118 30.118-75.294 30.118-105.412 0s-30.118-75.294 0-105.412l384-384-384-384c-30.118-30.118-30.118-75.294 0-105.412s75.294-30.118 105.412 0l384 384 384-384c30.118-30.118 75.294-30.118 105.412 0 15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706l-384 384 384 384c15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706-30.118 30.118-75.294 30.118-105.412 0l-384-384z" />
|
||||
<glyph unicode="" glyph-name="warning" d="M1010.432 121.248l-383.968 768c-21.664 43.36-65.952 70.752-114.464 70.752s-92.8-27.392-114.464-70.752l-383.968-768c-19.84-39.68-17.728-86.816 5.6-124.576 23.328-37.696 64.512-60.672 108.864-60.672h767.904c44.384 0 85.568 22.976 108.864 60.672 23.328 37.76 25.44 84.896 5.632 124.576zM575.936 96c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v64c0 17.696 14.304 32 32 32h64c17.696 0 32-14.304 32-32v-64zM575.936 352c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v320c0 17.664 14.304 32 32 32h64c17.696 0 32-14.336 32-32v-320z" />
|
||||
<glyph unicode="" glyph-name="add-to-cart" horiz-adv-x="1081" d="M839.1 688.935c0-23.943-19.41-43.353-43.355-43.353h-132.011v-125.749c0-24.894-20.178-45.075-45.073-45.075s-45.073 20.181-45.073 45.075v125.749h-132.013c-23.943 0-43.353 19.409-43.353 43.353s19.41 43.353 43.353 43.353h132.013v125.749c0 24.894 20.178 45.075 45.073 45.075s45.073-20.181 45.073-45.075v-125.749h132.011c23.945 0 43.355-19.41 43.355-43.353zM4.514 908.461c10.538 21.076 36.167 29.619 57.243 19.081l67.731-33.866c40.245-20.123 69.878-56.599 81.329-100.114l106.799-405.836c8.221-31.238 36.466-53.015 68.77-53.015h400.996c30.054 0 56.86 18.893 66.97 47.195l115.257 322.712c7.925 22.191 32.336 33.756 54.528 25.83s33.758-32.34 25.833-54.531l-115.257-322.712c-22.238-62.265-81.215-103.828-147.331-103.828h-400.996c-71.068 0-133.207 47.906-151.293 116.634l-106.799 405.834c-5.205 19.779-18.674 36.359-36.968 45.506l-67.731 33.865c-21.076 10.539-29.619 36.167-19.081 57.244zM227.565 78.711c0 78.546 63.675 142.222 142.222 142.222s142.222-63.676 142.222-142.222c0-78.546-63.675-142.222-142.222-142.222s-142.222 63.676-142.222 142.222zM369.787 135.6c-31.419 0-56.889-25.469-56.889-56.889s25.47-56.889 56.889-56.889c31.419 0 56.889 25.469 56.889 56.889s-25.47 56.889-56.889 56.889zM824.9 220.934c-78.546 0-142.222-63.676-142.222-142.222s63.676-142.222 142.222-142.222c78.546 0 142.222 63.676 142.222 142.222s-63.676 142.222-142.222 142.222zM768.011 78.711c0 31.42 25.469 56.889 56.889 56.889 31.414 0 56.889-25.469 56.889-56.889s-25.475-56.889-56.889-56.889c-31.42 0-56.889 25.469-56.889 56.889z" />
|
||||
<glyph unicode="" glyph-name="preview1" horiz-adv-x="1186" d="M592.847 166.233c-190.057 0-352.149 119.609-394.191 290.89-1.383 5.78-1.383 11.857 0 17.637 42.042 171.331 204.135 290.937 394.191 290.937 190.054 0 352.148-119.606 394.191-290.888 1.38-5.78 1.38-11.857 0-17.637-42.043-171.331-204.137-290.939-394.191-290.939zM272.959 465.966c37.25-133.29 167.379-225.628 319.889-225.628 152.506 0 282.635 92.338 319.887 225.628-37.252 133.291-167.381 225.626-319.887 225.626-152.51 0-282.639-92.335-319.889-225.626zM592.842 317.753c-81.714 0-148.211 66.495-148.211 148.208s66.497 148.211 148.211 148.211c81.715 0 148.211-66.497 148.211-148.211s-66.495-148.208-148.211-148.208zM592.842 540.066c-40.858 0-74.105-33.248-74.105-74.105s33.248-74.103 74.105-74.103c40.858 0 74.105 33.246 74.105 74.103s-33.248 74.105-74.105 74.105zM37.053 712.983c-20.453 0-37.053 16.6-37.053 37.053v74.105c0 78.7 51.972 135.859 123.509 135.859h86.456c20.453 0 37.053-16.6 37.053-37.053s-16.6-37.053-37.053-37.053h-86.456c-47.032 0-49.404-51.479-49.404-61.754v-74.105c0-20.453-16.6-37.053-37.053-37.053zM1148.637 712.983c-20.453 0-37.053 16.6-37.053 37.053v74.105c0 34.039-27.718 61.754-61.758 61.754h-74.105c-20.453 0-37.053 16.6-37.053 37.053s16.6 37.053 37.053 37.053h74.105c74.946 0 135.863-60.915 135.863-135.859v-74.105c0-20.453-16.6-37.053-37.053-37.053zM209.965-28.068h-86.456c-71.536 0-123.509 57.161-123.509 135.858v74.105c0 20.453 16.6 37.053 37.053 37.053s37.053-16.6 37.053-37.053v-74.105c0-10.278 2.371-61.753 49.404-61.753h86.456c20.453 0 37.053-16.6 37.053-37.053s-16.6-37.053-37.053-37.053zM1049.826-28.068h-74.105c-20.453 0-37.053 16.6-37.053 37.053s16.6 37.053 37.053 37.053h74.105c34.040 0 61.758 27.713 61.758 61.753v74.105c0 20.453 16.6 37.053 37.053 37.053s37.053-16.6 37.053-37.053v-74.105c0-74.946-60.917-135.858-135.863-135.858z" />
|
||||
<glyph unicode="" glyph-name="arrow" horiz-adv-x="1877" d="M1792 384c35.345 0 64 28.654 64 64s-28.655 64-64 64v-128zM40.078 493.255c-24.993-24.993-24.993-65.516 0-90.51l407.294-407.293c24.993-24.994 65.516-24.994 90.51 0s24.993 65.519 0 90.513l-362.039 362.035 362.039 362.039c24.993 24.993 24.993 65.516 0 90.51s-65.516 24.994-90.51 0l-407.294-407.293zM1792 512h-1706.667v-128h1706.667v128z" />
|
||||
<glyph unicode="" glyph-name="cart-added" horiz-adv-x="926" d="M810.033 887.198c13.049 15.419 11.123 38.495-4.296 51.541s-38.493 11.124-51.541-4.295l-241.991-285.989-155.63 176.382c-13.363 15.145-36.474 16.59-51.619 3.227s-16.59-36.474-3.227-51.619l183.633-208.118c7.030-7.967 17.178-12.483 27.803-12.373s20.675 4.836 27.536 12.947l269.332 318.298zM52.934 822.047c-18.065 9.033-40.033 1.711-49.066-16.355s-1.71-40.033 16.355-49.066l58.055-29.027c15.68-7.84 27.225-22.052 31.686-39.006l91.542-347.859c15.502-58.909 68.765-99.967 129.68-99.967h343.711c56.671 0 107.223 35.625 126.284 88.99l98.792 276.612c6.793 19.021-3.121 39.948-22.143 46.741s-39.946-3.119-46.738-22.14l-98.792-276.613c-8.665-24.254-31.642-40.448-57.403-40.448h-343.711c-27.689 0-51.899 18.661-58.945 45.436l-91.542 347.861c-9.815 37.298-35.215 68.564-69.711 85.812l-58.055 29.027zM316.96 216.386c-67.326 0-121.905-54.579-121.905-121.905s54.579-121.905 121.905-121.905c67.327 0 121.905 54.579 121.905 121.905s-54.578 121.905-121.905 121.905zM268.198 94.481c0 26.926 21.832 48.762 48.762 48.762s48.762-21.836 48.762-48.762c0-26.931-21.831-48.762-48.762-48.762s-48.762 21.831-48.762 48.762zM585.153 94.481c0 67.326 54.579 121.905 121.905 121.905s121.905-54.579 121.905-121.905c0-67.326-54.579-121.905-121.905-121.905s-121.905 54.579-121.905 121.905zM707.057 143.243c-26.931 0-48.762-21.836-48.762-48.762 0-26.931 21.831-48.762 48.762-48.762 26.926 0 48.762 21.831 48.762 48.762 0 26.926-21.836 48.762-48.762 48.762z" />
|
||||
<glyph unicode="" glyph-name="down" horiz-adv-x="1902" d="M950.857-64c-43.886 0-87.771 14.629-117.029 58.514l-760.686 746.057c-43.886 43.886-43.886 102.4 0 146.286s102.4 43.886 146.286 0l731.429-731.429 731.429 731.429c43.886 43.886 102.4 43.886 146.286 0s43.886-102.4 0-146.286l-760.686-746.057c-29.257-43.886-73.143-58.514-117.029-58.514z" />
|
||||
<glyph unicode="" glyph-name="open-book" horiz-adv-x="1132" d="M1131.789 886.080l-0.005-440.556c0-14.305-12.989-25.905-29.017-25.905s-29.017 11.599-29.017 25.905v440.556c0 1.558-1.223 2.894-3.040 3.326-119.797 28.369-237.918 25.101-351.086-9.708-62.092-19.102-105.574-42.995-124.691-54.616v-727.553c41.515 21.213 107.396 48.575 192.647 63.418 94.062 16.379 190.151 13.905 286.17-7.303v170.787c0 14.304 12.989 25.902 29.017 25.902s29.017-11.598 29.017-25.902v-204.795c0-1.568-0.205-3.104-0.512-4.619l-0.011-0.156-0.027-0.248-14.277-64.512c-6.893-31.167-41.073-51.114-75.954-44.372-198.564 38.303-349.184-19.106-421.284-56.74-33.188-17.316-74.418-17.316-107.609 0-72.097 37.635-222.69 95.049-421.287 56.74-34.896-6.742-69.060 13.231-75.951 44.372l-14.277 64.512-0.021 0.226-0.014 0.178c-0.31 1.514-0.515 3.050-0.515 4.619v517.435l-0.046 69.785 0.050 179.228c0 24.997 18.997 46.956 46.197 53.397 164.499 38.957 301.453 15.203 387.375-11.58 63.352-19.748 108.823-43.789 132.294-57.766 23.477 13.977 68.948 38.018 132.301 57.766 85.924 26.783 222.882 50.534 387.374 11.577 27.201-6.441 46.199-28.4 46.199-53.397zM1069.115 101.209c-218.915 51.184-386.14-17.694-449.396-50.71-33.124-17.289-74.353-17.354-107.605 0.005-63.256 33.021-230.479 101.888-449.392 50.71l9.088-41.062c0.615-2.759 3.668-4.382 6.756-3.783 217.799 42.022 383.466-21.218 462.844-62.653 15.112-7.89 33.9-7.89 49.012 0 79.382 41.429 245.065 104.658 462.843 62.647 3.137-0.604 6.155 1.062 6.758 3.783l9.092 41.062zM61.124 889.405c-1.818-0.432-3.041-1.768-3.041-3.326v-732.431c96.031 21.208 192.113 23.676 286.17 7.297 85.248-14.843 151.131-42.2 192.647-63.413v727.551c-19.091 11.604-62.579 35.507-124.694 54.613-113.16 34.809-231.28 38.077-351.082 9.708z" />
|
||||
<glyph unicode="" glyph-name="remove" horiz-adv-x="796" d="M670.379 598.199c2.679-91.804 0-186.27 0-278.074 0-46.569 0-91.802 0-138.371 0-31.932 5.353-107.77-6.69-131.721-20.076-35.925-66.913-26.607-113.756-26.607-93.68 0-186.022 0-278.364 0-21.413 0-48.179-2.662-65.576 5.319-10.706 6.65-28.104 23.95-26.766 41.244-2.677 62.532 0 194.253 0 263.441 0 87.811 0 176.955 0 264.768h491.151zM536.55 564.937c-20.074-6.653-21.413-19.957-21.413-45.237 0-49.228-2.676-393.828 0-404.471 4.015-17.294 21.413-30.601 42.825-23.95 18.737 6.656 21.411 22.619 21.411 45.238 0 50.557 1.343 393.828-1.337 405.802-4.016 17.296-20.074 30.602-41.486 22.618zM290.305 566.267c-18.736-7.983-21.412-21.288-21.412-46.568 0-50.559-1.339-391.165 1.338-404.471 2.677-15.963 21.413-30.601 41.487-23.95 20.074 7.987 21.412 21.288 21.412 45.238 0 51.888 1.338 392.497 0 404.471-4.015 17.296-21.412 31.932-42.825 25.28zM119.004 663.394c-2.677 19.957-4.015 89.143 4.015 101.118s20.074 13.305 38.81 13.305h527.288c18.734 0 29.44-2.661 36.13-14.635 6.69-10.644 6.69-82.491 4.016-99.787h-610.26zM302.35 843.011c0 31.932 5.353 45.237 38.811 45.237h168.624c30.78 0 36.134-14.635 36.134-45.237h-243.569zM236.774 843.011c-70.93 0-149.889 14.635-177.992-63.864-8.030-23.949-5.353-85.152-5.353-115.753 0-18.627-2.677-39.915 8.030-53.22 13.383-14.635 29.442-10.644 50.855-10.644 2.677-14.635 1.339-459.020 1.339-472.326 0-41.244-4.015-70.514 13.383-105.108 37.472-74.507 107.063-62.532 175.316-62.532 80.298 0 160.594 0 240.892 0 72.268 0 139.18-10.644 176.653 61.201 18.739 34.594 14.723 62.532 14.723 103.777v355.244c0 35.924-2.679 85.152 0 119.745 20.076 2.661 37.473-3.991 50.853 9.313 10.706 13.305 8.033 31.932 8.033 51.889 0 29.271 4.011 91.804-4.016 115.754-9.37 29.271-32.119 53.22-61.559 61.203-29.446 9.313-82.978 2.661-117.771 5.322-2.674 19.957 4.016 30.602-12.043 59.872-8.033 14.636-22.75 29.271-36.135 37.254-34.796 18.627-96.357 11.974-137.844 11.974-68.252 0-139.182 13.305-173.978-47.898-16.059-29.271-9.368-45.237-13.383-61.203z" />
|
||||
<glyph unicode="" glyph-name="edit" d="M915.789 317.382c-13.651 0-24.71-11.475-24.71-25.632v-227.584c-0.051-42.451-33.21-76.851-74.138-76.896h-693.382c-40.929 0.045-74.087 34.445-74.135 76.896v667.94c0.048 42.443 33.207 76.845 74.135 76.895h219.412c13.649 0 24.712 11.475 24.712 25.632 0 14.147-11.062 25.631-24.712 25.631h-219.412c-68.208-0.080-123.481-57.411-123.558-128.159v-667.946c0.077-70.752 55.35-128.077 123.558-128.16h693.382c68.211 0.083 123.482 57.408 123.558 128.16v227.59c0 14.157-11.059 25.632-24.71 25.632zM930.714 926.216c-43.43 45.046-113.837 45.046-157.267 0l-440.871-457.286c-3.021-3.134-5.203-7.019-6.342-11.284l-57.976-217.101c-2.385-8.896 0.038-18.432 6.332-24.966 6.303-6.528 15.493-9.043 24.074-6.579l209.306 60.141c4.113 1.184 7.858 3.45 10.879 6.579l440.863 457.298c43.36 45.076 43.36 118.046 0 163.122l-28.998 30.077zM386.42 452.269l360.819 374.263 116.365-120.7-360.826-374.264-116.357 120.7zM363.176 403.889l92.968-96.439-128.597-36.954 35.629 133.393zM924.768 769.261l-26.208-27.184-116.378 120.71 26.214 27.183c24.128 25.021 63.238 25.021 87.36 0l29.011-30.077c24.083-25.052 24.083-65.592 0-90.632z" />
|
||||
<glyph unicode="" glyph-name="shop" d="M287.432 437.038c-5.992 28.35-42.165 191.769-45.282 215.446h649.407c10.952 0.004 44.052 3.47 38.615-25.197l-100.279-287.728c-6.007-17.384-8.402-35.469-28.882-36.347-41.34-1.77-87.123 0.010-128.961 0.010h-324.307c-28.025-0.024-32.567 1.053-37.855 27.487-7.103 35.513-15.035 71.227-22.452 106.33h-0.004zM338.618 129.297c36.221 8.923 66.366-17.174 72.713-45.534 8.112-36.245-16.98-65.434-44.783-72.407-75.121-18.851-110.2 97.67-27.929 117.94zM217.936 62.649c3.458-71.3 65.815-130.765 142.623-126.323 71.039 4.106 129.6 65.448 125.63 141.639-3.746 71.895-65.824 131.189-142.741 126.484-75.068-4.598-129.061-68.588-125.512-141.795v-0.005zM709.661 62.649c-4.471 35.616 21.085 63.785 51.658 67.925 36.445 4.935 65.039-21.168 68.974-52.473 6.154-48.957-48.484-91.282-99.63-54.516-8.719 6.266-18.944 22.669-21.002 39.063v0zM636.153 58.402c6.437-70.032 67.862-129.229 146.417-121.763 69.408 6.588 127.868 67.535 121.281 145.198-5.973 70.388-67.974 129.585-146.866 122.266-69.115-6.412-127.956-68.242-120.832-145.701zM28.301 958.566c-31.588-8.96-36.321-48.699-16.264-66.073 14.909-12.912 96.988-47.384 106.949-55.907 8.899-7.614 10.66-28.113 13.445-41.798 30.338-149.101 63.521-301.034 95.165-450.051 6.137-28.901 10.687-61.586 27.016-80.652 15.027-17.54 36.575-35.83 70.571-38.161 33.449-2.292 74.653-0.224 108.946-0.224 109.044 0 218.095 0 327.142 0 38.683 0 63.473-3.647 93.545 15.277 24.62 15.482 33.319 30.866 45.115 63.976l84.358 241.374c8.016 23.432 24.098 59.189 24.074 85.642-0.029 32.754-18.51 62.589-34.748 74.946-28.165 21.439-42.73 23.301-86.304 23.301-72.699 0-145.393 0-218.092 0-144.677 0-290.362 1.692-434.904-0.105-13.165-0.162-9.397 2.443-16.605 36.662-3.217 15.271-6.407 30.171-9.703 45.653-17.194 80.785-27.029 80.947-100.314 117.592-12.203 6.102-23.873 11.937-35.875 17.938-12.737 6.368-25.897 15.617-43.516 10.621v-0.009z" />
|
||||
<glyph unicode="" glyph-name="filter" d="M983.996 960h-943.996c-22.092 0-40-17.908-40-40v-192c0-11.687 5.244-22.552 13.284-29.769l298.716-268.078v-454.148c0-12.723 6.054-24.695 16.306-32.23 10.157-7.467 23.366-9.779 35.626-5.956l320 100.002c16.7 5.222 28.068 20.685 28.068 38.178v354.155l298.714 268.080c8.457 7.586 13.286 18.408 13.286 29.768v192c0 22.092-17.911 40-40.004 40zM944 745.848l-298.716-268.080c-8.454-7.585-13.284-18.407-13.284-29.768v-342.589l-240-74.999v417.588c0 11.36-4.83 22.182-13.284 29.77l-234.256 210.23h499.54c22.092 0 39.999 17.907 39.999 39.999s-17.907 40-39.999 40h-564v112h864v-134.152z" />
|
||||
<glyph unicode="" glyph-name="toc" d="M95.188 910.452c0-27.365-21.308-49.548-47.594-49.548s-47.594 22.183-47.594 49.548c0 27.365 21.309 49.548 47.594 49.548s47.594-22.184 47.594-49.548zM95.188 448c0-27.366-21.308-49.546-47.594-49.546s-47.594 22.18-47.594 49.546c0 27.365 21.309 49.548 47.594 49.548s47.594-22.183 47.594-49.548zM95.188-14.454c0-27.361-21.308-49.546-47.594-49.546s-47.594 22.185-47.594 49.546c0 27.366 21.309 49.551 47.594 49.551s47.594-22.185 47.594-49.551zM253.837 910.452c0 27.365 21.308 49.548 47.594 49.548l674.969-0.001c26.286 0 47.596-22.184 47.596-49.548s-21.309-49.549-47.596-49.549l-674.969 0.002c-26.286 0-47.594 22.183-47.594 49.548zM253.837 448c0 27.365 21.308 49.548 47.594 49.548l674.969-0.001c26.286 0 47.596-22.183 47.596-49.547 0-27.366-21.309-49.551-47.596-49.551l-674.969 0.005c-26.286 0-47.594 22.18-47.594 49.546zM253.837-14.454c0 27.366 21.308 49.551 47.594 49.551h674.969c26.286 0 47.596-22.185 47.596-49.551s-21.309-49.546-47.596-49.546h-674.969c-26.286 0-47.594 22.185-47.594 49.546z" />
|
||||
<glyph unicode="" glyph-name="notes" d="M0-29.88c0 18.852 19.386 34.13 43.3 34.13h937.4c23.916 0 43.3-15.278 43.3-34.13s-19.384-34.135-43.3-34.135h-937.4c-23.914 0-43.3 15.283-43.3 34.135zM45.566 960c-23.914 0-43.3-15.282-43.3-34.133s19.386-34.133 43.3-34.133h434.6c23.913 0 43.298 15.282 43.298 34.133s-19.384 34.133-43.298 34.133h-434.6zM2.2 593.042c0 18.851 19.386 34.133 43.3 34.133h136.566c23.913 0 43.3-15.282 43.3-34.133s-19.386-34.134-43.3-34.134h-136.566c-23.914 0-43.3 15.282-43.3 34.134zM45.566 319.974c-23.914 0-43.3-15.283-43.3-34.135 0-18.847 19.386-34.13 43.3-34.13h68.3c23.913 0 43.299 15.283 43.299 34.13 0 18.852-19.386 34.135-43.299 34.135h-68.3zM687.227 208.937l-42.501-55.583c-21.729-28.416-55.199-45.42-90.967-46.203l-89.085-1.951-31.192-40.796c-15.663-20.48-40.055-32.394-65.839-32.154l-95.854 0.891c-59.065 0.548-92.152 68.296-56.273 115.215l71.104 92.989-21.462 86.487c-8.616 34.719-0.982 71.475 20.748 99.891l42.501 55.583 412.022 433.892c41.436 43.64 109.117 49.013 156.923 12.457l71.516-54.686c47.805-36.555 60.36-103.274 29.102-154.703l-310.743-511.331zM393.673 455.379l249.496-190.777 297.923 490.233c13.588 22.36 8.131 51.368-12.652 67.262l-71.521 54.686c-20.782 15.894-50.207 13.558-68.224-5.416l-395.022-415.988zM351.455 403.871l-12.676-16.573c-9.448-12.36-12.767-28.339-9.021-43.433l21.065-84.884 114.041-87.199 87.436 1.915c15.549 0.343 30.106 7.731 39.552 20.086l12.672 16.579-253.069 193.51zM331.26 190.152l-62.871-82.222c-2.563-3.354-0.199-8.192 4.020-8.233l95.854-0.891c4.834-0.046 9.408 2.191 12.345 6.031l22.959 30.024-72.306 55.291z" />
|
||||
<glyph unicode="" glyph-name="copy" horiz-adv-x="950" d="M330.491 904.621c7.217 3.631 15.178 5.659 23.618 5.659h41.136c11.319 0 20.549 11.121 20.549 24.856 0 13.727-9.23 24.864-20.549 24.864h-41.136c-13.902 0-27.234-3.343-39.373-9.45-10.529-5.242-15.505-19.797-11.083-32.476 4.345-12.702 16.31-18.718 26.839-13.454zM950.496 233.764c0 13.727-9.23 24.856-20.564 24.856-11.319 0-20.549-11.137-20.549-24.856v-43.521c0-10.149-1.686-19.774-4.672-28.54-4.33-12.679 0.646-27.234 11.083-32.491 10.529-5.264 22.577 0.752 26.907 13.438 5.067 14.715 7.794 30.804 7.794 47.6v43.521zM929.932 432.681c11.334 0 20.564-11.137 20.564-24.856v-87.027c0-13.742-9.23-24.856-20.564-24.856-11.319 0-20.549 11.121-20.549 24.856v87.027c0 13.727 9.23 24.856 20.549 24.856zM942.147 601.903c-3.449 3.039-7.635 4.831-12.215 4.831-11.319 0-20.549-11.137-20.549-24.856v-87.027c0-13.742 9.23-24.856 20.549-24.856 11.334 0 20.564 11.121 20.564 24.856v87.027c0 8.204-3.289 15.497-8.356 20.025zM929.932 767.699c5.713 0 10.848-2.803 14.623-7.331 3.7-4.49 5.948-10.688 5.948-17.533v-73.938c0-13.719-9.23-24.856-20.564-24.856-4.414 0-8.516 1.671-11.805 4.505-5.295 4.505-8.751 11.942-8.751 20.351v73.938c0 13.719 9.23 24.856 20.549 24.856zM942.702 883.289c-4.33 12.679-16.386 18.703-26.907 13.438-10.438-5.264-15.414-19.812-11.083-32.491 1.922-5.637 3.289-11.661 4.095-17.928 0.41-3.464 0.577-7.004 0.577-10.612v-14.282c0-13.742 9.23-24.856 20.549-24.856 11.334 0 20.564 11.121 20.564 24.856v14.282c0 16.811-2.727 32.886-7.794 47.6zM284.448 901.992c10.453-5.242 15.429-19.797 11.083-32.491-1.367-3.912-3.13-12.253-3.13-12.253l395.89 0.015c66.372 0 120.171-58.16 120.171-129.925v-611.694h39.214c8.425 0 16.378 2.028 23.618 5.659 2.963 1.474 6.017 2.066 9.002 1.869 7.619-0.517 14.692-6.199 17.822-15.307 4.414-12.702-0.562-27.234-11.083-32.491-12.124-6.108-25.471-9.45-39.358-9.45h-39.214c0-71.758-53.799-129.925-120.171-129.925h-568.135c-66.372 0-120.171 58.16-120.171 129.925v661.414c0 71.758 53.799 129.925 120.171 129.925h131.11c0 0 1.2 16.599 6.267 31.29 4.33 12.679 16.378 18.703 26.907 13.438zM120.164 786.402c-30.159 0-54.627-26.444-54.627-59.064v-661.414c0-32.62 24.461-59.056 54.627-59.056h568.135c30.159 0 54.627 26.436 54.627 59.056v661.414c0 32.62-24.461 59.064-54.627 59.064h-568.135zM620.682 403.153c0-16.31-12.231-29.513-27.317-29.513h-158.754v-170.536c0-16.918-12.679-30.622-28.343-30.622-15.649 0-28.328 13.704-28.328 30.622v170.536h-158.769c-15.072 0-27.302 13.203-27.302 29.513s12.231 29.528 27.302 29.528h158.769v170.513c0 16.918 12.679 30.645 28.328 30.645 15.664 0 28.343-13.727 28.343-30.645v-170.513h158.754c15.087 0 27.317-13.218 27.317-29.528zM806.54 960.008c-11.334 0-20.564-11.137-20.564-24.864 0-13.742 9.23-24.856 20.564-24.856h41.136c8.425 0 16.378-2.028 23.618-5.659 10.521-5.264 22.486 0.752 26.816 13.454 4.414 12.679-0.562 27.234-11.083 32.476-4.74 2.37-9.625 4.33-14.692 5.834-7.87 2.37-16.15 3.608-24.666 3.608h-41.136zM621.456 935.144c0 6.184 1.846 11.836 4.976 16.204 3.776 5.302 9.321 8.66 15.573 8.66h82.264c11.334 0 20.564-11.137 20.564-24.864 0-13.742-9.23-24.856-20.564-24.856h-82.264c-11.319 0-20.549 11.121-20.549 24.856zM477.486 960.008c-11.319 0-20.564-11.137-20.564-24.864 0-13.742 9.253-24.856 20.564-24.856h82.264c6.176 0 11.729 3.305 15.497 8.546 3.145 4.368 5.067 10.081 5.067 16.31 0 13.727-9.23 24.864-20.564 24.864h-82.264z" />
|
||||
<glyph unicode="" glyph-name="download-pdf" d="M821.084 132.081c13.404 0 24.274 9.59 24.274 21.427 0 11.832-10.87 21.427-24.274 21.427h-84.808c-13.409 0-24.279-9.595-24.279-21.427v-184.704c0-11.837 10.87-21.427 24.279-21.427 13.404 0 24.274 9.59 24.274 21.427v72.673h53.796c13.409 0 24.279 9.59 24.279 21.427s-10.87 21.427-24.279 21.427h-53.796v47.749h60.534zM467.746 174.93c-5.961 0-11.677-2.263-15.887-6.292-4.21-4.024-6.568-9.487-6.557-15.176l0.392-184.699c0.012-5.688 2.394-11.141 6.62-15.15 4.205-3.994 9.893-6.236 15.824-6.236h0.087c1.655 0.005 40.711 0.154 56.309 0.415 57.119 0.952 98.58 48.63 98.58 113.367 0 68.050-40.417 113.777-100.572 113.777l-54.796-0.005zM578.227 61.153c0-48.087-27.361-70.067-54.472-70.523-7.603-0.123-21.305-0.225-33.218-0.297l-0.302 141.737h32.307c41.057 0.005 55.685-36.634 55.685-70.917zM204.448 174.935c-14.273 0-25.843-9.595-25.843-21.427v-184.704c0-11.837 11.571-21.427 25.843-21.427s25.843 9.59 25.843 21.427v58.921c13.042 0.056 27.852 0.113 36.184 0.113 49.595 0 89.941 32.993 89.941 73.549 0 40.55-40.346 73.549-89.941 73.549h-62.027zM304.729 101.381c0-16.64-17.518-30.694-38.255-30.694-8.335 0-23.121-0.056-36.184-0.108v61.496h36.184c20.737 0.005 38.255-14.054 38.255-30.694zM547.722 925.867c0 18.851-15.995 34.133-35.722 34.133s-35.721-15.282-35.721-34.133v-372.706l-166.347 158.954c-13.95 13.33-36.567 13.33-50.517 0s-13.95-34.942 0-48.272l227.326-217.225c13.95-13.327 36.569-13.327 50.515 0l227.328 217.225c13.952 13.33 13.952 34.942 0 48.272s-36.567 13.33-50.519 0l-166.344-158.954v372.706zM71.442 288.712c0 6.282 5.331 11.377 11.907 11.377h857.303c6.574 0 11.909-5.094 11.909-11.377v-318.577c0-18.852 15.99-34.135 35.717-34.135s35.722 15.283 35.722 34.135v318.577c0 43.986-37.315 79.642-83.348 79.642h-857.303c-46.032 0-83.349-35.656-83.349-79.642v-318.577c0-18.852 15.993-34.135 35.721-34.135s35.721 15.283 35.721 34.135v318.577z" />
|
||||
<glyph unicode="" glyph-name="copy-link" horiz-adv-x="1073" d="M447.601 640.72l212.255 205.125c73.265 70.805 190.054 68.81 260.862-4.454 70.802-73.265 68.808-190.056-4.457-260.862l-100.82-97.435c-11.722-11.328-12.039-30.013-0.712-41.736s30.013-12.044 41.735-0.717l100.82 97.437c96.709 93.462 99.343 247.627 5.881 344.337s-247.628 99.342-344.337 5.88l-212.251-205.126c-96.71-93.462-99.343-247.629-5.88-344.338 10.867-11.244 22.554-21.216 34.876-29.911 10.266-7.251 24.107-5.447 33.143 3.287 14.182 13.707 10.133 37.61-5.479 49.664-7.023 5.422-13.741 11.415-20.089 17.988-70.805 73.265-68.81 190.054 4.454 260.86zM597.524 251.972l-212.251-205.127c-73.265-70.802-190.056-68.808-260.861 4.457s-68.811 190.054 4.454 260.862l100.82 97.431c11.722 11.332 12.041 30.018 0.712 41.74s-30.015 12.039-41.738 0.712l-100.82-97.436c-96.71-93.462-99.342-247.628-5.88-344.337s247.627-99.343 344.337-5.876l212.254 205.122c96.709 93.462 99.343 247.628 5.881 344.339-10.869 11.244-22.557 21.216-34.879 29.914-10.264 7.247-24.108 5.444-33.143-3.289-14.18-13.706-10.133-37.611 5.481-49.664 7.022-5.422 13.741-11.418 20.090-17.987 70.802-73.264 68.808-190.059-4.457-260.861z" />
|
||||
<glyph unicode="" glyph-name="add-to-binder" horiz-adv-x="1071" d="M78.007 849.832c0 5.598 4.538 10.137 10.137 10.137h42.506c5.598 0 10.137-4.538 10.137-10.137v-30.41c0-5.598-4.538-10.137-10.137-10.137h-42.506c-5.598 0-10.137 4.538-10.137 10.137v30.41zM78.007 654.99c0 5.598 4.538 10.137 10.137 10.137h42.506c5.598 0 10.137-4.538 10.137-10.137v-30.41c0-5.598-4.538-10.137-10.137-10.137h-42.506c-5.598 0-10.137 4.539-10.137 10.137v30.41zM88.144 470.286c-5.598 0-10.137-4.538-10.137-10.138v-30.413c0-5.595 4.538-10.138 10.137-10.138h42.506c5.598 0 10.137 4.543 10.137 10.138v30.413c0 5.599-4.538 10.138-10.137 10.138h-42.506zM78.007 265.304c0 5.599 4.538 10.138 10.137 10.138h42.506c5.598 0 10.137-4.538 10.137-10.138v-30.408c0-5.599-4.538-10.138-10.137-10.138h-42.506c-5.598 0-10.137 4.538-10.137 10.138v30.408zM88.144 80.598c-5.598 0-10.137-4.538-10.137-10.138v-30.408c0-5.599 4.538-10.138 10.137-10.138h42.506c5.598 0 10.137 4.538 10.137 10.138v30.408c0 5.599-4.538 10.138-10.137 10.138h-42.506zM739.035 586.449c0 11.406-9.249 20.652-20.652 20.652-11.408 0-20.652-9.246-20.652-20.652v-117.303h-117.304c-11.408 0-20.652-9.244-20.652-20.652 0-11.404 9.244-20.652 20.652-20.652h117.304v-110.485c0-11.404 9.244-20.652 20.652-20.652 11.404 0 20.652 9.249 20.652 20.652v110.485h110.48c11.408 0 20.652 9.249 20.652 20.652 0 11.408-9.244 20.652-20.652 20.652h-110.48v117.303zM720.97 960c36.147 0 65.452-29.306 65.452-65.455v-122.809c146.604-32.593 256.219-163.412 256.219-319.831 0-156.421-109.615-287.241-256.219-319.837v-122.806c0-36.147-29.305-65.452-65.452-65.452h-655.515c-36.15 0-65.455 29.305-65.455 65.452v885.282c0 36.15 29.305 65.455 65.455 65.455h655.515zM737.862 125.049c-6.293-0.433-12.632-0.689-19.018-0.763v-115.023c0-5.841-0.763-11.501-2.197-16.891h4.324c9.328 0 16.891 7.564 16.891 16.891v115.786zM670.282 127.288c-159.791 21.811-282.919 158.832-282.919 324.617 0 165.779 123.128 302.802 282.919 324.611v118.028c0 9.331-7.564 16.895-16.891 16.895h-587.936c-9.331 0-16.895-7.564-16.895-16.895v-885.282c0-9.328 7.564-16.891 16.895-16.891h587.936c9.328 0 16.891 7.564 16.891 16.891v118.025zM718.843 779.52c6.386-0.073 12.726-0.329 19.018-0.763v115.787c0 9.331-7.564 16.895-16.891 16.895h-4.324c1.434-5.39 2.197-11.053 2.197-16.895v-115.024zM715.003 165.567c158.138 0 286.334 128.195 286.334 286.338 0 158.136-128.195 286.333-286.334 286.333s-286.335-128.196-286.335-286.333c0-158.143 128.197-286.338 286.335-286.338z" />
|
||||
<glyph unicode="" glyph-name="add-note" horiz-adv-x="1158" d="M0 848.696c0 61.472 49.833 111.304 111.304 111.304h756.87c61.471 0 111.304-49.833 111.304-111.304v-129.475c95.112-53.805 159.312-155.887 159.312-272.961 0-166.191-129.358-302.169-292.877-312.734v-101.296c0-61.663-76.435-90.384-117.043-43.974l-149.059 170.354h-468.507c-61.472 0-111.304 49.833-111.304 111.304v578.783zM801.391 133.77c-161.868 12.257-289.391 147.483-289.391 312.489 0 0.579 0 1.162 0.004 1.741h-289.396c-12.294 0-22.261 9.968-22.261 22.261s9.967 22.261 22.261 22.261h292.784c7.275 49.171 25.97 94.62 53.301 133.565h-346.085c-12.294 0-22.261 9.967-22.261 22.261s9.967 22.261 22.261 22.261h383.964c56.48 55.097 133.685 89.043 218.82 89.043 38.542 0 75.46-6.957 109.564-19.684v108.728c0 36.883-29.901 66.783-66.783 66.783h-756.87c-36.883 0-66.783-29.899-66.783-66.783v-578.783c0-36.882 29.899-66.783 66.783-66.783h488.711l162.362-185.558c13.535-15.471 39.014-5.895 39.014 14.657v101.541zM1099.282 446.259c0 151.261-122.626 273.884-273.889 273.884s-273.884-122.623-273.884-273.884c0-151.263 122.622-273.889 273.884-273.889s273.889 122.626 273.889 273.889zM843.402 581.565c0 10.91-8.846 19.755-19.754 19.755-10.912 0-19.754-8.845-19.754-19.755v-113.81h-113.811c-10.912 0-19.754-8.846-19.754-19.754 0-10.912 8.842-19.754 19.754-19.754h113.811v-104.074c0-10.908 8.842-19.754 19.754-19.754 10.908 0 19.754 8.846 19.754 19.754v104.074h104.070c10.912 0 19.754 8.842 19.754 19.754 0 10.908-8.842 19.754-19.754 19.754h-104.070v113.81z" />
|
||||
<glyph unicode="" glyph-name="info" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM438.857 707.653c0 38.381 32.753 69.489 73.147 69.489s73.139-31.109 73.139-69.489c0-38.373-32.746-69.482-73.139-69.482s-73.147 31.109-73.147 69.482zM514.929 143.206c-40.393 0-73.147 31.338-73.147 70.005v274.505c0 38.66 32.753 69.998 73.147 69.998s73.139-31.338 73.139-69.998v-274.505c0-38.667-32.746-70.005-73.139-70.005z" />
|
||||
<glyph unicode="" glyph-name="open-arrow" horiz-adv-x="1219" d="M436.269 771.819c-92.891 38.529-201.712 51.285-343.306 41.174-26.862-1.918-50.193 18.302-52.111 45.165s18.303 50.193 45.165 52.111c150.592 10.754 275.97-2.060 387.617-48.368 111.948-46.434 205.581-124.663 295.819-237.090 84.417-105.169 123.46-269.123 142.468-398.664 6.929-47.245 11.693-82.305 14.551-119.481l174.85 215.245c19.046 19.042 49.918 19.042 68.959 0 19.046-19.042 19.046-49.918 0-68.959l-253.235-302.358c-19.042-19.046-49.918-19.046-68.959 0l-310.321 310.316c-19.042 19.046-19.042 49.918 0 68.964 19.046 19.042 49.918 19.042 68.964-0.005l220.628-220.628c-2.697 30.939-6.519 65.872-11.927 102.751-18.783 127.99-55.306 268.644-122.032 351.773-83.295 103.775-164.542 169.65-257.13 208.053z" />
|
||||
<glyph unicode="" glyph-name="sample" d="M47.509 821.372l328.814-183.899c7.85-4.415 43.977-23.954 46.636-27.509l0.309-610.542-375.678 210.093-0.080 611.856zM555.634-18.221l-87.624 0.076-0.002 619.517c11.629 2.304 73.673 1.472 88.094 0.462l-0.47-620.057zM550.996 647.047c3.456 7.981 16.6 23.451 22.186 29.618 29.608 32.688 44.478 47.311 81.249 74.7 13.253 9.873 25.040 18.808 40.902 28.538 27.313 16.753 61.919 34.265 91.587 47.176 16.374 7.124 85.996 37.497 102.515 36.173 7.804-11.902 19.252-18.727 22.755-24.772-5.342-5.127-14.615-8.64-21.41-12.486l-66.246-37.792c-29.883-16.226-59.739-32.629-89.261-49.433-20.888-11.889-49.95-26.985-69.064-38.793l-86.539-48.395c-14.667-6.706-13.232-3.057-28.674-4.532zM603.171 769.975c1.363 3.189 1.343 2.867 3.581 5.669 13.816 17.309 24.389 28.25 41.365 42.855 3.62 3.116 5.321 6.015 9.172 9.346 26.308 22.752 90.453 68.89 115.7 74.030l-0.145-31.498c-31.358-12.918-60.183-27.027-89.97-44.582-17.566-10.352-43.411-28.418-59.471-40.817-7.368-5.688-12.502-10.055-20.23-15.002zM250.91 871.922c-0.289 7.98-1.478 24.001 0.659 30.424 39.396-16.202 89.577-51.558 123.076-82 3.911-3.553 5.433-5.825 9.468-9.058 6.038-4.838 32.213-33.603 35.127-40.698-15.564 7.090-35.918 41.315-58.655 22.038-22.293-18.899 6.666-39.656 22.108-52.181 47.909-38.859 53.916-45.627 90.196-92.149-19.248-6.926-36.113 8.001-49.782 14.969l-311.032 174.437c4.082 5.893 18.699 20.596 25.546 25.894 26.144-5.070 77.356-27.273 103.107-38.419 26.198-11.339 50.199-29.275 67.571-17.418 10.556 7.204 13.657 19.963 4.165 30.906-6.801 7.838-17.486 12.809-29.245 17.844-4.435 1.899-29.582 13.372-32.306 15.413zM204.031 890.040c-18.116 3.509-63.403 25.811-80.288 21.71-7.378-1.792-11.611-6.84-15.156-10.821-11.323-12.718-26.043-26.061-39.089-38.954-6.087 2.057-17.301 10.642-36.022 6.365-12.074-2.758-20.462-10.985-25.661-18.984-11.217-17.259-7.064-57.531-7.063-81.475l0.002-535.065c-0.003-30.813-2.877-48.023 24.248-64.299l57.12-32.055c56.033-31.75 116.614-64.197 171.411-96.111l114.173-64.177c15.507-8.599 41.378-27.139 63.457-25.406 1.854-0.455 12.691-13.655 32.151-13.975 15.608-0.257 31.483-0.002 47.117 0.023 32.842 0.052 61.678-5.936 80.507 13.8 27.489-0.663 54.362 19.582 81.335 34.909 102.775 57.489 242.602 125.445 336 190.407 21.745 15.125 14.789 69.68 14.792 102.728 0.002 18.579-8.137 32.943-28.93 29.050-29.954-5.609-12.896-56.11-18.236-99.352l-375.201-210.091 0.379 612.238 282.005 158.802c23.089 13.169 72.843 42.227 93.828 52.61l-0.763-410.795c-0.478-19.517-2.6-45.626 15.080-51.758 10.307-3.574 20.131-0.322 25.677 6.079 6.679 7.706 6.17 17.098 6.14 28.39v413.685c0.034 27.887 0.294 38.814-16.756 52.47-22.245 17.816-43.491 4.524-53.064 1.95-7.84 8.676-43.484 46.268-53.103 49.173-20.49 6.186-67.438-21.027-80.668-20.373-0.085 12.671-0.379 25.407-0.473 38.162-0.376 50.657-43.068 26.357-69.973 12.904-54.152-27.081-82.636-46.98-124.466-81.213-9.739-7.97-27.209-24.877-34.473-34.891l-18.709-20.882c-10.847-13.548-21.324-29.055-31.631-46.444-15.619-26.356-14.099-24.217-25.79-48.473l-1.652-3.017c-8.747 14.641-13.078 27.878-27.829 51.124-10.93 17.225-21.056 31.927-32.532 46.733-8.55 11.032-40.442 45.637-52.301 55.508-54.019 44.959-85.461 62.896-152.424 94.013-53.331 24.781-43.561-37.064-43.174-64.22z" />
|
||||
<glyph unicode="" glyph-name="check" d="M496.7 952.966c274.195 0 496.696-222.503 496.696-496.699s-222.501-496.7-496.696-496.7c-274.197 0-496.7 222.505-496.7 496.7s222.503 496.699 496.7 496.699zM496.7 889.407c-239.094 0-433.141-194.047-433.141-433.141s194.047-433.141 433.141-433.141c239.093 0 433.138 194.048 433.138 433.141s-194.044 433.141-433.138 433.141zM670.568 622.599l-255.396-255.399c-2.754-2.754-7.217-2.758-9.979-0.011l-82.222 81.906c-13.797 13.743-36.117 13.722-49.888-0.049l-11.185-11.183c-13.79-13.792-13.79-36.147 0-49.936l123.319-123.321c13.789-13.789 36.147-13.789 49.936 0l296.663 296.663c13.757 13.757 13.796 36.045 0.088 49.849l-11.31 11.393c-13.778 13.873-36.204 13.913-50.028 0.089z" />
|
||||
<glyph unicode="" glyph-name="back" d="M981.233 487.712l-841.036 2.542 356.082 389.55c16.725 18.367 16.725 48.101 0 66.421-16.725 18.367-43.799 18.367-60.481 0l-423.446-464.991c-16.469-18.086-16.469-48.333 0-66.422l423.45-465.034c16.724-18.371 43.799-18.371 60.481 0 16.727 18.365 16.727 48.097 0 66.417l-356.085 380.114 841.031-2.54c23.613 0 42.772 21.043 42.772 46.971 0 25.926-19.159 46.972-42.767 46.972z" />
|
||||
<glyph unicode="" glyph-name="profile" d="M197.307 81.352c-0.245-3.212 0.148 3.235 0 0l73.238-51.954c0.288-2.541-0.365 2.518 0 0 71.028-41.053 153.478-64.545 241.413-64.545 87.938 0 170.389 23.491 241.417 64.545 1.005 5.469 0 0.996 0 0l73.239 51.954c103.149 88.604 168.485 219.992 168.485 366.643 0 266.831-216.306 483.141-483.142 483.141-266.83 0-483.14-216.31-483.14-483.141 0-146.651 65.337-278.039 168.488-366.643zM101.429 447.995c0 226.729 183.801 410.53 410.529 410.53 226.732 0 410.531-183.801 410.531-410.53 0-109.996-43.259-209.892-113.692-283.592-29.24 80.803-90.536 146.26-168.522 181.011 46.094 37.376 75.557 94.464 75.557 158.434 0 112.594-91.276 203.869-203.869 203.869-112.595 0-203.87-91.275-203.87-203.869 0-63.97 29.462-121.058 75.556-158.434-77.99-34.751-139.285-100.208-168.524-181.011-70.435 73.7-113.695 173.596-113.695 283.592zM511.963 299.981h0.559c114.86-0.261 211-80.221 236.051-187.513-66.877-47.248-148.503-75.003-236.614-75.003-88.107 0-169.733 27.755-236.608 75.003 25.048 107.292 121.189 187.252 236.050 187.513h0.563zM643.221 503.848c0-72.32-58.489-130.981-130.746-131.256h-1.024c-72.258 0.275-130.748 58.936-130.748 131.256 0 72.492 58.766 131.258 131.26 131.258 72.49 0 131.258-58.766 131.258-131.258z" />
|
||||
<glyph unicode="" glyph-name="logout" d="M572.335 847.741c0 14.871-12.54 26.926-28.011 26.926h-359.866c-54.745 0-99.124-42.656-99.124-95.275v-662.784c0-52.617 44.38-95.275 99.124-95.275h359.866c15.471 0 28.011 12.053 28.011 26.927 0 14.869-12.54 26.923-28.011 26.923h-359.866c-23.802 0-43.098 18.547-43.098 41.425v662.784c0 22.878 19.296 41.424 43.098 41.424h359.866c15.471 0 28.011 12.055 28.011 26.926zM752.183 618.237l178.278-171.354c10.94-10.513 10.94-27.563 0-38.076l-178.278-171.354c-10.94-10.517-28.676-10.517-39.616 0-10.94 10.513-10.94 27.563 0 38.076l130.453 125.389h-535.735c-15.471 0-28.014 12.058-28.014 26.927s12.542 26.927 28.014 26.927h535.735l-130.453 125.387c-10.94 10.515-10.94 27.564 0 38.078s28.676 10.515 39.616 0z" />
|
||||
<glyph unicode="" glyph-name="admin" d="M636.497 440.405c68.386 41.374 113.933 115.294 113.933 199.595 0 129.603-107.652 234.667-240.444 234.667-132.794 0-240.444-105.064-240.444-234.667 0-84.302 45.547-158.221 113.934-199.599-161.591-53.756-279.507-207.791-298.007-390.123-1.597-15.735 11.109-28.945 26.926-28.945 14.839 0 26.968 11.695 28.556 26.449 21.643 201.050 178.176 357.099 368.207 357.551 0.277 0 0.55 0 0.828 0 0.273 0 0.55 0 0.823 0 190.037-0.448 346.577-156.501 368.218-357.551 1.591-14.754 13.717-26.449 28.557-26.449 15.821 0 28.523 13.21 26.927 28.945-18.5 182.336-136.418 336.371-298.014 390.127zM685.308 640c0-94.502-78.494-171.11-175.322-171.11-96.829 0-175.324 76.608-175.324 171.11s78.495 171.111 175.324 171.111c96.828 0 175.322-76.609 175.322-171.111zM533.692 136.533h53.103v-57.6c0-15.317 12.416-27.733 27.733-27.733s27.733 12.416 27.733 27.733v57.6h29.867v-14.933c0-15.317 12.416-27.733 27.733-27.733s27.733 12.416 27.733 27.733v14.933h23.467c15.317 0 27.733 12.416 27.733 27.733s-12.416 27.733-27.733 27.733h-220.416c-14.686 49.348-60.403 85.333-114.52 85.333-65.979 0-119.467-53.487-119.467-119.467s53.487-119.467 119.467-119.467c58.7 0 107.51 42.334 117.567 98.133zM480.124 157.867c0-35.345-28.651-64-63.999-64-35.346 0-64 28.655-64 64s28.654 64 64 64c35.348 0 63.999-28.655 63.999-64z" />
|
||||
<glyph unicode="" glyph-name="account-access" d="M501.589 822.585c-38.212 0-74.534-14.17-101.054-38.898-26.46-24.672-40.964-57.745-40.964-91.828v-61.052h515.629c33.365 0 63.467-25.629 63.467-60.878v-487.72c0-35.247-30.101-60.877-63.467-60.877h-726.4c-33.366 0-63.467 25.63-63.467 60.877v487.72c0 35.248 30.101 60.878 63.467 60.878h158.559v61.052c0 49.072 20.922 95.748 57.521 129.874 36.54 34.071 85.744 52.933 136.709 52.933s100.169-18.862 136.708-52.933c36.599-34.127 57.523-80.802 57.523-129.874 0-14.382-11.691-26.041-26.108-26.041s-26.103 11.659-26.103 26.041c0 34.083-14.507 67.155-40.964 91.828-26.522 24.728-62.844 38.898-101.056 38.898zM148.8 578.726c-7.902 0-11.255-5.565-11.255-8.796v-487.72c0-3.23 3.353-8.794 11.255-8.794h726.4c7.902 0 11.255 5.564 11.255 8.794v487.72c0 3.232-3.354 8.796-11.255 8.796h-726.4zM333.465 526.298c14.418 0 26.106-11.661 26.106-26.044v-348.369c0-14.383-11.688-26.039-26.106-26.039s-26.106 11.657-26.106 26.039v348.369c0 14.383 11.688 26.044 26.106 26.044zM496.725 429.525c14.417 0 26.103-11.657 26.103-26.039v-42.091l43.721 13.5c13.773 4.254 28.395-3.435 32.661-17.173 4.262-13.739-3.447-28.322-17.22-32.576l-41.826-12.919 25.267-33.011c8.747-11.43 6.549-27.772-4.911-36.501-11.46-8.725-27.84-6.537-36.591 4.898l-27.204 35.546-27.209-35.546c-8.751-11.435-25.131-13.623-36.591-4.898-11.461 8.73-13.658 25.071-4.911 36.501l25.267 33.011-41.829 12.919c-13.773 4.254-21.481 18.837-17.217 32.576s18.886 21.427 32.66 17.173l43.721-13.5v42.091c0 14.383 11.686 26.039 26.108 26.039zM741.611 429.525c14.417 0 26.108-11.657 26.108-26.039v-42.091l43.721 13.5c13.773 4.254 28.395-3.435 32.657-17.173s-3.443-28.322-17.216-32.576l-41.83-12.919 25.267-33.011c8.751-11.43 6.554-27.772-4.907-36.501-11.46-8.725-27.844-6.537-36.591 4.898l-27.209 35.546-27.209-35.546c-8.747-11.435-25.131-13.623-36.591-4.898-11.46 8.73-13.658 25.071-4.907 36.501l25.267 33.011-41.83 12.919c-13.773 4.254-21.483 18.837-17.216 32.576 4.262 13.739 18.884 21.427 32.657 17.173l43.721-13.5v42.091c0 14.383 11.691 26.039 26.108 26.039z" />
|
||||
<glyph unicode="" glyph-name="order-history" d="M735.322 666.821l-176.111 187.965-19.251 19.805h-398.595c-7.438 0-15.751 0.413-23.014-0.703-8.714-1.169-16.678-5.3-22.402-11.619-12.295-13.149-10.501-29.646-10.501-45.813v-710.554c0-16.166-1.969-33.655 10.501-45.897 12.47-12.237 20.827-12.237 36.884-12.237l294.082-0.051c3.861-0.051 7.689 0.678 11.23 2.142 3.537 1.463 6.703 3.622 9.289 6.332 5.585 5.538 8.623 12.945 8.444 20.591 0.179 7.65-2.859 15.053-8.444 20.591-2.581 2.714-5.751 4.877-9.289 6.336-3.541 1.463-7.369 2.193-11.23 2.142l-282.706 0.051-0.263 712.374h318.31v-148.561c0-16.167 6.652-30.721 17.105-41.182 10.505-10.461 24.943-16.952 40.998-16.952h163.422v-24.306c-0.175-7.648 2.859-15.052 8.444-20.591 2.577-2.708 5.739-4.866 9.271-6.327 3.529-1.462 7.351-2.194 11.204-2.149 8.051 0 14.878 2.853 20.523 8.476 5.568 5.546 8.589 12.948 8.401 20.591v61.023l0.043 11.536-6.345 6.988zM523.686 673.933c-1.796 2.191-2.889 6.037-3.285 11.578v126.316l133.845-142.111h-119.974c-5.248 0.661-8.751 2.026-10.586 4.217zM713.719 362.633c16.533 0 29.935-12.864 29.935-28.74v-100.331l-54.827-52.634c-11.691-11.221-30.647-11.221-42.338 0-11.691 11.226-11.691 29.423 0 40.644l37.291 35.797v76.523c0 15.876 13.402 28.74 29.939 28.74zM938.667 277.777c0-141.632-119.603-256.444-267.14-256.444-60.506 0-116.309 19.307-161.097 51.857-18.377 13.355-11.725 39.556 10.044 46.827 10.714 3.58 22.485 1.31 31.757-4.966 33.732-22.831 74.884-36.241 119.296-36.241 114.466 0 207.262 89.079 207.262 198.967 0 109.884-92.796 198.963-207.262 198.963-79.168 0-125.325-44.612-159.471-107.307h67.349c16.533 0 29.939-12.864 29.939-28.736 0-15.876-13.406-28.74-29.939-28.74h-141.722c-7.94 0-15.554 3.025-21.169 8.418-5.615 5.389-8.769 12.698-8.769 20.322l0.001 136.043c0 15.872 13.404 28.736 29.94 28.736 16.533 0 29.935-12.864 29.935-28.736v-60.719c41.156 70.677 110.182 118.196 203.904 118.196 147.537 0 267.14-114.813 267.14-256.44z" />
|
||||
<glyph unicode="" glyph-name="royalties" d="M753.69 874.667c-15.317 0-27.733-12.416-27.733-27.733v-31.015c-26.231-2.306-52.489-8.361-74.526-20.61-31.603-17.57-53.615-47.675-53.602-91.316 0.013-48.979 40.367-78.742 71.266-95.245 19.294-10.304 40.576-18.315 56.862-23.94v-137.76c-15.194 2.799-31.181 6.946-45.948 11.383-12.838 3.853-24.090 7.718-32.119 10.615-4.006 1.446-7.189 2.641-9.344 3.469-1.079 0.41-1.899 0.73-2.432 0.939l-0.725 0.286c-14.217 5.7-30.357-1.203-36.058-15.42-5.705-14.212 1.237-30.374 15.454-36.079-0.004 0.004-0.038 0.017 10.283 25.758l-10.283-25.758 0.068-0.026 0.222-0.090 0.781-0.307c0.674-0.265 1.634-0.636 2.863-1.109 2.453-0.939 5.973-2.261 10.351-3.84 8.738-3.153 20.971-7.351 34.987-11.563 17.929-5.385 40-11.162 61.901-14.494v-43.081c0-15.317 12.416-27.733 27.733-27.733 15.313 0 27.733 12.416 27.733 27.733v41.481c29.372 3.243 57.89 13.039 80.713 29.483 29.15 20.996 49.485 53.538 47.095 94.903-1.323 22.867-8.546 41.865-20.51 57.201-11.695 14.995-26.726 24.964-41.417 32.045-14.575 7.024-30.042 11.767-43.426 15.57-3.456 0.981-6.716 1.887-9.805 2.746l-0.017 0.004c-4.548 1.264-8.73 2.426-12.634 3.58v134.187c11.354-1.827 23.215-4.411 34.257-7.171 10.155-2.54 19.063-5.085 25.421-6.992 3.17-0.952 5.687-1.74 7.39-2.281l1.916-0.616 0.563-0.185c14.528-4.841 30.234 3.011 35.076 17.54s-3.042 30.248-17.57 35.092c0-0.001 0.030-0.011-8.742-26.321l8.742 26.321-0.87 0.285-2.291 0.738c-1.967 0.625-4.779 1.504-8.273 2.553-6.976 2.093-16.734 4.881-27.908 7.676-13.833 3.459-30.788 7.174-47.71 9.416v31.945c0 15.317-12.42 27.733-27.733 27.733zM678.383 746.829c12.267 6.82 28.625 11.255 47.573 13.353v-116.376c-9.971 3.844-20.442 8.375-30.729 13.869-29.146 15.566-41.929 31.314-41.933 46.334-0.009 21.428 9.203 33.99 25.088 42.82zM781.423 445.146v121.956c2.505-0.695 4.954-1.375 7.296-2.041 12.932-3.673 24.503-7.361 34.505-12.181 9.886-4.764 16.973-10.054 21.764-16.193 4.523-5.798 8.149-13.807 8.87-26.287 1.101-19.093-7.458-34.684-24.141-46.699-12.608-9.084-29.483-15.646-48.294-18.556zM442.778 641.323h-282.881c-41.18 0-74.563-34.471-74.563-76.992v-427.738c0-42.522 33.383-76.992 74.563-76.992h704.206c41.182 0 74.564 34.47 74.564 76.992v165.555c0 14.874-12.053 26.927-26.927 26.927-14.869 0-26.923-12.053-26.923-26.927v-165.555c0-11.81-9.276-21.385-20.715-21.385h-704.206c-11.439 0-20.712 9.574-20.712 21.385v320.802h345.014c15.356 0 27.802 12.45 27.802 27.806 0 15.351-12.446 27.802-27.802 27.802h-345.014v51.328c0 11.811 9.273 21.387 20.712 21.387h282.881c15.351 0 27.802 12.448 27.802 27.803s-12.45 27.803-27.802 27.803zM387.728 271.33c0 15.356-12.448 27.806-27.803 27.806h-110.090c-15.355 0-27.803-12.45-27.803-27.806s12.448-27.802 27.803-27.802h110.090c15.355 0 27.803 12.446 27.803 27.802z" />
|
||||
<glyph unicode="" glyph-name="my-profile" d="M631.113 440.41c67.703 41.378 112.794 115.293 112.794 199.59 0 129.603-106.586 234.667-238.063 234.667-131.479 0-238.064-105.064-238.064-234.667 0-84.299 45.093-158.217 112.799-199.59-160.045-53.764-276.791-207.825-295.11-390.131-1.581-15.735 11.012-28.945 26.69-28.945 14.709 0 26.732 11.695 28.304 26.449 21.436 201.105 176.501 357.184 364.724 357.551h1.323c45.862-0.090 89.758-9.421 130.231-26.398l37.402 44.147c-13.948 6.588-28.305 12.382-43.029 17.327zM679.433 640c0-94.502-77.717-171.11-173.589-171.11-95.87 0-173.588 76.608-173.588 171.11s77.718 171.111 173.588 171.111c95.872 0 173.589-76.609 173.589-171.111zM871.241 47.761c-6.259 58.731-34.027 117.278-60.574 165.572l37.739 44.548c36.433-60.041 70.362-133.312 77.828-207.616 1.579-15.735-11.012-28.932-26.692-28.932-14.707 0-26.731 11.674-28.301 26.428zM490.675 99.004c-16.132-43.012 30.4-82.624 70.285-59.831l91.712 52.407c6.895 3.938 13.073 9.015 18.274 15.019l246.481 284.403c24.239 27.964 22.686 69.918-3.55 96.017l-25.109 24.981c-28.928 28.778-76.186 27.012-102.886-3.844l-241.958-279.629c-5.461-6.31-9.754-13.538-12.685-21.346l-40.563-108.177zM625.152 139.738l-76.318-43.61 34.342 91.575c0.619 1.66 1.532 3.191 2.688 4.531l241.958 279.625c5.666 6.549 15.689 6.921 21.828 0.819l25.109-24.981c5.564-5.538 5.892-14.434 0.751-20.369l-246.481-284.403c-1.105-1.276-2.415-2.351-3.878-3.187z" />
|
||||
<glyph unicode="" glyph-name="loading" d="M512-13.978c0-27.628 22.461-50.278 49.961-47.616 259.323 25.114 462.039 243.681 462.039 509.594 0 282.77-229.233 512-512 512-282.77 0-512-229.23-512-512 0-5.012 0.072-10.004 0.215-14.981 0.72-25.057 22.059-43.868 47.127-43.868 30.017 0 52.864 26.66 52.709 56.678-0.004 0.722-0.006 1.444-0.006 2.171 0 227.516 184.438 411.954 411.954 411.954s411.955-184.438 411.955-411.954c0-210.616-158.054-384.317-362.025-408.96-27.428-3.313-49.93-25.39-49.93-53.018z" />
|
||||
<glyph unicode="" glyph-name="checked" horiz-adv-x="1365" d="M1230.165 911.386c-26.638 26.821-69.994 26.897-96.72 0.171l-677.392-677.396c-5.325-5.325-13.955-5.332-19.29-0.020l-231.129 230.24c-26.675 26.572-69.827 26.53-96.451-0.093l-60.912-60.912c-26.66-26.659-26.66-69.884 0-96.543l349.874-349.874c26.659-26.658 69.884-26.658 96.543 0l796.465 796.462c26.59 26.593 26.665 69.685 0.171 96.373l-61.16 61.593z" />
|
||||
<glyph unicode="" glyph-name="text" d="M896 960h-768c-70.592 0-128-57.408-128-128v-576c0-70.592 57.408-128 128-128h430.016l221.504-184.576c5.824-4.864 13.12-7.424 20.48-7.424 4.608 0 9.28 1.024 13.568 3.008 11.264 5.248 18.432 16.576 18.432 28.992v160h64c70.592 0 128 57.408 128 128v576c0 70.592-57.408 128-128 128zM192 656c0 26.509 21.491 48 48 48h544c26.509 0 48-21.491 48-48s-21.491-48-48-48h-544c-26.509 0-48 21.491-48 48zM192 464c0 26.509 21.491 48 48 48h192c26.509 0 48-21.491 48-48s-21.491-48-48-48h-192c-26.509 0-48 21.491-48 48z" />
|
||||
<glyph unicode="" glyph-name="preview" horiz-adv-x="1792" d="M1520.425 702.053c155.778-107.762 251.988-214.605 256.009-219.101 17.799-19.901 17.799-49.995 0-69.9-4.022-4.495-100.231-111.339-256.009-219.102-208.282-144.082-424.597-220.244-625.544-220.244-200.952 0-417.262 76.161-625.545 220.244-155.776 107.763-251.992 214.606-256.008 219.102-17.797 19.901-17.797 49.999 0 69.9 4.017 4.495 100.229 111.339 256.008 219.101 208.283 144.083 424.593 220.241 625.545 220.241 200.947 0 417.262-76.158 625.544-220.241zM125.568 447.981c39.487-38.743 111.387-104.347 205.548-169.245 63.43-43.721 143.597-91.43 234.699-129.317-71.714 78.969-115.477 183.76-115.477 298.584 0 114.964 43.868 219.873 115.744 298.873-209.582-87.309-372.79-232.563-440.513-298.894zM555.205 448.002c0-187.293 152.379-339.672 339.676-339.672 187.3 0 339.671 152.375 339.671 339.672s-152.371 339.672-339.671 339.672c-187.297 0-339.676-152.375-339.676-339.672zM1339.419 448.006c0-114.967-43.864-219.877-115.74-298.877 209.585 87.309 372.792 232.563 440.515 298.897-39.508 38.754-111.393 104.354-205.554 169.245-63.423 43.721-143.593 91.431-234.691 129.317 71.708-78.968 115.47-183.759 115.47-298.583zM725.889 448.005c0 93.182 75.811 168.994 168.994 168.994s168.996-75.811 168.996-168.994c0-28.959-23.478-52.435-52.438-52.435-14.476 0-27.592 5.869-37.078 15.356-9.486 9.491-15.36 22.6-15.36 37.079 0 35.356-28.764 64.122-64.12 64.122s-64.122-28.766-64.122-64.122c0-35.356 28.766-64.122 64.122-64.122 14.479 0 27.588-5.869 37.077-15.356 9.486-9.491 15.36-22.6 15.36-37.079 0-28.959-23.478-52.436-52.437-52.436-93.182 0-168.994 75.812-168.994 168.994z" />
|
||||
<glyph unicode="" glyph-name="add-to-collection" horiz-adv-x="808" d="M734.149 204.002h-146.68v153.519c0.205 9.324-3.347 18.351-9.879 25.104-3.018 3.298-6.715 5.928-10.849 7.712-4.134 1.779-8.602 2.673-13.113 2.619-4.522 0.059-9-0.83-13.14-2.609-4.143-1.784-7.85-4.419-10.872-7.723-6.534-6.753-10.086-15.78-9.881-25.104v-153.568h-139.155c-4.511 0.054-8.982-0.835-13.114-2.619-4.132-1.779-7.83-4.409-10.847-7.712-6.534-6.753-10.086-15.775-9.881-25.099-0.205-9.324 3.347-18.346 9.881-25.099 3.016-3.304 6.715-5.934 10.847-7.712 4.132-1.784 8.603-2.679 13.114-2.619h139.155v-145.661c-0.205-9.318 3.347-18.346 9.881-25.099 3.022-3.304 6.729-5.939 10.872-7.723 4.139-1.779 8.618-2.668 13.14-2.609 9.367 0 17.408 3.428 23.962 10.332 6.532 6.753 10.084 15.78 9.879 25.099v145.661h146.68c4.511-0.054 8.979 0.841 13.113 2.619 4.134 1.784 7.831 4.414 10.849 7.712 6.532 6.753 10.089 15.775 9.879 25.099 0.21 9.324-3.347 18.346-9.879 25.099-3.018 3.304-6.715 5.934-10.849 7.712-4.128 1.784-8.602 2.673-13.113 2.619v0.049zM760.568 706.647l-206.072 229.12-22.524 24.142h-466.409c-8.703 0-18.431 0.504-26.93-0.857-10.197-1.425-19.516-6.46-26.213-14.163-14.386-16.027-12.287-36.137-12.287-55.843v-866.13c0-19.704-2.304-41.025 12.287-55.943s24.37-14.918 43.159-14.918h257.267c4.519-0.059 8.998 0.83 13.14 2.609 4.141 1.784 7.848 4.414 10.872 7.723 6.534 6.753 10.086 15.775 9.881 25.099 0.205 9.324-3.347 18.346-9.881 25.099-3.022 3.309-6.729 5.939-10.871 7.723s-8.622 2.673-13.141 2.609h-243.956l-0.307 868.348h372.461v-181.088c0-19.707 7.782-37.448 20.018-50.199 12.287-12.751 29.182-20.664 47.972-20.664h191.224v-210.926c-0.21-9.323 3.347-18.345 9.879-25.098 3.018-3.304 6.715-5.934 10.849-7.712 4.128-1.784 8.602-2.679 13.113-2.619 9.421 0 17.408 3.476 24.010 10.332 6.516 6.758 10.051 15.78 9.83 25.098v255.681l0.049 14.062-7.421 8.518zM512.926 715.316c-2.099 2.672-3.379 7.359-3.839 14.112v153.973l156.611-173.226h-140.381c-6.143 0.806-10.239 2.469-12.39 5.14z" />
|
||||
<glyph unicode="" glyph-name="highlight" d="M0-29.659c0 18.966 19.386 34.333 43.3 34.333h937.4c23.918 0 43.301-15.367 43.301-34.333s-19.383-34.341-43.301-34.341h-937.4c-23.914 0-43.3 15.375-43.3 34.341zM687.225 210.593l-42.501-55.918c-21.73-28.592-55.199-45.692-90.964-46.482l-89.087-1.96-31.193-41.040c-15.662-20.604-40.054-32.592-65.838-32.351l-95.854 0.9c-59.065 0.556-92.153 68.703-56.274 115.909l71.104 93.546-21.462 87.005c-8.615 34.929-0.982 71.904 20.748 100.492l42.501 55.916 412.019 436.497c41.443 43.902 109.122 49.307 156.928 12.532l71.512-55.014c47.813-36.775 60.365-103.895 29.104-155.633l-310.743-514.399zM393.673 458.513l249.495-191.922 297.925 493.176c13.59 22.494 8.133 51.677-12.654 67.666l-71.519 55.014c-20.787 15.989-50.213 13.639-68.228-5.448l-395.019-418.486zM351.454 406.697l-12.676-16.677c-9.447-12.429-12.766-28.506-9.020-43.692l21.064-85.394 114.041-87.725 87.437 1.931c15.549 0.344 30.102 7.775 39.549 20.209l12.676 16.677-253.071 194.67zM331.26 191.693l-62.871-82.717c-2.563-3.372-0.2-8.236 4.019-8.28l95.854-0.9c4.835-0.044 9.408 2.209 12.345 6.071l22.959 30.201-72.306 55.625z" />
|
||||
<glyph unicode="" glyph-name="search" d="M0 509.052c0 248.646 202.302 450.948 450.948 450.948 248.663 0 450.95-202.302 450.95-450.948 0-109.376-39.144-209.779-104.148-287.943l214.050-214.050c16.268-16.247 16.268-42.612 0-58.86-8.131-8.131-18.787-12.199-29.43-12.199-10.656 0-21.299 4.069-29.43 12.199l-214.050 214.050c-78.164-65.010-178.568-104.148-287.943-104.148-248.646 0-450.948 202.288-450.948 450.95zM83.252 509.050c0-202.747 164.95-367.697 367.696-367.697s367.692 164.953 367.692 367.699c0 202.746-164.947 367.696-367.692 367.696s-367.696-164.952-367.696-367.698z" />
|
||||
<glyph unicode="" glyph-name="offline" d="M71.275 949.529c-12.597 13.384-33.659 14.023-47.043 1.426s-14.023-33.659-1.426-47.043l142.911-151.843c-54.665-24.539-105.747-54.584-152.336-89.177-14.512-10.492-17.83-33.082-6.938-47.17s33.978-17.047 48.195-6.18c48.394 35.931 102.142 66.541 160.034 90.513l107.792-114.529c-63.455-19.906-122.085-50.249-173.225-90.712-15.639-10.321-19.362-34.381-7.534-48.779 11.828-14.403 36.589-15.964 50.211-3.185 52.332 41.399 114.257 70.915 182.322 87.666l111.521-118.493c-74.459-4.803-144.527-30.024-199.951-73.088-14.060-10.952-16.695-33.469-5.517-47.252 11.177-13.788 34.136-16.364 48.196-5.402 48.791 37.903 113.831 59.633 183.515 59.633 12.861 0 25.569-0.742 38.042-2.186l246.349-261.745c12.595-13.384 33.659-14.024 47.043-1.428 13.384 12.6 14.024 33.659 1.423 47.043l-773.581 821.933zM613.852 605.923c-31.908 4.993-49.091-32.149-26.952-55.669v0c5.663-6.021 13.22-9.892 21.381-11.238 84.429-13.939 161.019-46.501 223.8-96.167 13.614-12.79 38.385-11.218 50.212 3.185 11.827 14.399 8.115 38.459-7.532 48.779-73.989 58.536-163.645 95.895-260.91 111.11zM404.763 819.029c-26.907-3.394-37.331-35.591-18.744-55.341v0c7.737-8.221 18.995-12.094 30.201-10.722 31.323 3.837 63.294 5.829 95.78 5.829 174.044 0 333.297-57.142 457.364-149.246 14.218-10.866 37.304-7.901 48.195 6.18 10.89 14.089 7.567 36.677-6.938 47.17-135.613 100.683-309.294 162.846-498.616 162.846-36.379 0-72.179-2.295-107.242-6.716zM511.999 200.847c-68.732 0-125.192-55.347-125.192-122.752 0-67.389 56.45-122.752 125.192-122.752 68.731 0 125.19 55.352 125.19 122.752 0 67.395-56.448 122.752-125.19 122.752zM511.999 133.893c31.832 0 56.904-24.581 56.904-55.798 0-31.212-25.073-55.793-56.904-55.793-31.834 0-56.904 24.581-56.904 55.793 0 31.217 25.070 55.798 56.904 55.798z" />
|
||||
<glyph unicode="" glyph-name="report" horiz-adv-x="973" d="M58.88-64c-32.519 0-58.88 24.75-58.88 55.286v913.428c0 30.534 26.361 55.286 58.88 55.286h823.767c46.459 0 74.619-48.163 49.674-84.968l-142.234-209.867 138.26-185.46c27.315-36.64-0.599-86.99-48.236-86.99h-711.153v-401.428c0-30.536-26.361-55.286-58.88-55.286h-51.2zM102.4 392.714h-35.84v-394.214h35.84v394.214zM66.56 455.211h798.802l-132.741 178.058c-13.65 18.309-14.218 42.532-1.439 61.386l137.472 202.847h-802.094v-442.291z" />
|
||||
<glyph unicode="" glyph-name="customize" horiz-adv-x="1195" d="M493.5 960l20.611-10.472 215.278-300.076 215.279 300.076 20.668 10.472 15.44-4.993 1.115-0.743c85.777-60.472 105.722-178.222 44.385-262.958l-164.221-226.799 123.056-171.501c108.334-0.404 190.276-100.511 165.222-206.757-16.447-69.626-75.554-121.361-147.388-129.234l-5.837-0.649c-126.054-13.818-225.274 102.218-192.722 221.275l-74.997 103.606-75.002-103.606c32.501-119.057-66.719-235.093-192.721-221.275l-5.889 0.649c-71.834 7.868-130.945 59.608-147.389 129.234-25.111 106.246 56.889 206.353 165.278 206.757l123.058 171.529-164.169 226.771c-61.334 84.736-41.389 202.486 44.389 262.958l1.055 0.743 15.5 4.993zM477.278 723.097l388.002-536.012-5.558-16.43c-28.501-84.429 41.222-169.956 131.334-160.074l5.831 0.649c48.782 5.342 88.724 40.437 99.834 87.438 17.448 73.927-42.001 143.94-119.165 139.605l-19.945-1.121-469.555 654.597c-42.833-45.632-48.833-116.097-10.778-168.653zM970.78 891.75l-207.616-289.375 65.166-90.868 153.225 211.59c38.059 52.556 32.057 123.028-10.775 168.653zM630.613 417.674l-129.502-180.521-19.944 1.121c-77.167 4.335-136.611-65.684-119.167-139.605 11.056-47.002 51.056-82.096 99.833-87.438l5.833-0.649c90.167-9.87 159.886 75.657 131.334 160.074l-5.558 16.43 102.059 140.959-64.887 89.63zM481.722 209.812c-46.556 0-84.5-37.279-84.5-83.49s37.944-83.49 84.5-83.49c46.556 0 84.5 37.279 84.5 83.49s-37.944 83.49-84.5 83.49zM452.333 126.322c0 15.878 13.055 28.939 29.445 28.939 9.833 0 18.5-4.722 23.834-11.941 3.556-4.784 5.611-10.667 5.611-16.998 0-6.286-2.055-12.134-5.556-16.907-5.333-7.27-14-12.032-23.889-12.032-16.389 0-29.445 13.062-29.445 28.939zM976.998 209.812c-46.552 0-84.497-37.279-84.497-83.49s37.945-83.49 84.497-83.49c46.558 0 84.503 37.279 84.503 83.49s-37.945 83.49-84.503 83.49zM953.947 144.321c2.884 3.63 6.719 6.554 11.11 8.465 1.832 0.819 3.829 1.451 5.945 1.872 1.94 0.398 3.942 0.603 5.996 0.603 3.612 0 7.060-0.62 10.223-1.769 5.501-1.991 10.166-5.547 13.557-10.098 1.946-2.645 3.499-5.632 4.443-8.846 0.779-2.611 1.223-5.376 1.223-8.226 0-6.326-2.054-12.203-5.609-16.987-2.611-3.544-6.002-6.48-10.001-8.556-4.113-2.167-8.835-3.396-13.835-3.396-16.39 0-29.446 13.062-29.446 28.939 0 6.775 2.389 13.039 6.394 18zM167.222-2.31l60.334 165.865v654.222c0 0 0 113.778-113.778 113.778s-113.778-113.778-113.778-113.778v-654.222l60.334-165.865c18.111-49.926 88.777-49.926 106.889 0zM113.778 17.129l-42.889 117.982h85.778l-42.889-117.982zM170.667 192h-113.778v625.264l0.056 1.347c0.111 1.597 0.389 4.257 0.944 7.59 0.778 4.577 2 9.785 3.833 15 0.944 2.695 2.055 5.396 3.389 8.021 2.667 5.341 5.833 9.799 9.611 13.368 1.5 1.423 3.111 2.708 4.833 3.854 1.778 1.187 4 2.451 6.778 3.618 6.055 2.521 14.777 4.604 27.444 4.604 18.5 0 28.555-4.458 34.222-8.222 3.611-2.417 6.778-5.458 9.5-9.132 1.834-2.424 3.445-5.118 4.945-8.091 2.389-4.84 4.167-9.951 5.444-14.805 0.778-2.861 1.333-5.639 1.778-8.215 0.556-3.333 0.833-5.993 0.944-7.59l0.056-1.347v-625.264z" />
|
||||
<glyph unicode="" glyph-name="note-hollow" d="M131.817 954.909h760.364c69.891 0 126.727-56.837 126.727-126.727v-570.273c0-69.891-56.836-126.727-126.727-126.727h-63.364v-158.409c0-12.295-7.097-23.509-18.249-28.703-4.247-1.965-8.871-2.979-13.433-2.979-7.288 0-14.509 2.535-20.276 7.35l-219.3 182.741h-425.741c-69.89 0-126.727 56.836-126.727 126.727v570.273c0 69.89 56.837 126.727 126.727 126.727zM68.454 257.909c0-34.915 28.451-63.364 63.364-63.364h437.209c7.412 0 14.571-2.597 20.276-7.35l176.151-146.812v122.481c0 17.488 14.193 31.682 31.682 31.682h95.045c34.915 0 63.364 28.449 63.364 63.364v570.273c0 34.913-28.449 63.364-63.364 63.364h-760.364c-34.913 0-63.364-28.451-63.364-63.364v-570.273zM294.181 511.364h253.454c17.488 0 31.682-14.193 31.682-31.682s-14.193-31.682-31.682-31.682h-253.454c-17.488 0-31.682 14.193-31.682 31.682s14.193 31.682 31.682 31.682zM290.226 701.455h443.545c17.488 0 31.682-14.193 31.682-31.682s-14.193-31.682-31.682-31.682h-443.545c-17.488 0-31.682 14.193-31.682 31.682s14.193 31.682 31.682 31.682z" />
|
||||
<glyph unicode="" glyph-name="facebook" d="M608 768h160v192h-160c-123.52 0-224-100.48-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.344 14.656 32 32 32z" />
|
||||
<glyph unicode="" glyph-name="instagram" d="M512 867.808c136.8 0 152.992-0.608 206.784-3.008 50.016-2.208 76.992-10.592 95.008-17.6 23.808-9.216 40.992-20.416 58.784-38.208 18.016-18.016 28.992-35.008 38.4-58.816 7.008-18.016 15.392-45.184 17.6-95.008 2.4-54.016 3.008-70.208 3.008-206.816s-0.608-152.992-3.008-206.816c-2.208-50.016-10.592-76.992-17.6-95.008-9.216-23.808-20.384-40.992-38.208-58.784-18.016-18.016-35.008-28.992-58.784-38.4-18.016-7.008-45.216-15.392-95.008-17.6-54.016-2.4-70.208-3.008-206.816-3.008s-152.992 0.608-206.816 3.008c-50.016 2.208-76.992 10.592-95.008 17.6-23.808 9.216-40.992 20.384-58.816 38.208-18.016 18.016-28.992 35.008-38.4 58.784-7.008 18.016-15.392 45.216-17.6 95.008-2.4 54.016-3.008 70.208-3.008 206.816s0.608 152.992 3.008 206.816c2.208 50.016 10.592 76.992 17.6 95.008 9.216 23.808 20.416 40.992 38.208 58.816 18.016 18.016 35.008 28.992 58.816 38.4 18.016 7.008 45.184 15.392 95.008 17.6 53.792 2.4 70.016 3.008 206.816 3.008zM512 960c-139.008 0-156.384-0.608-211.008-3.008-54.4-2.4-91.808-11.2-124.192-23.808-33.792-13.184-62.4-30.592-90.784-59.2-28.608-28.416-46.016-56.992-59.2-90.592-12.608-32.608-21.408-69.792-23.808-124.192-2.4-54.816-3.008-72.192-3.008-211.2s0.608-156.384 3.008-211.008c2.4-54.4 11.2-91.808 23.808-124.192 13.216-33.792 30.592-62.4 59.2-90.784 28.384-28.384 56.992-46.016 90.592-59.008 32.608-12.608 69.792-21.408 124.192-23.808 54.592-2.4 72-3.008 211.008-3.008s156.416 0.608 211.008 3.008c54.4 2.4 91.808 11.2 124.192 23.808 33.6 12.992 62.208 30.592 90.592 59.008s46.016 56.992 59.008 90.592c12.608 32.608 21.408 69.792 23.808 124.192 2.4 54.592 3.008 72 3.008 211.008s-0.608 156.384-3.008 211.008c-2.4 54.4-11.2 91.808-23.808 124.192-12.608 34.016-30.016 62.592-58.592 91.008-28.384 28.384-56.992 46.016-90.592 59.008-32.608 12.608-69.792 21.408-124.192 23.808-54.784 2.592-72.192 3.2-211.2 3.2v0zM512 711.008c-145.184 0-263.008-117.792-263.008-263.008s117.792-263.008 263.008-263.008 263.008 117.792 263.008 263.008c0 145.184-117.792 263.008-263.008 263.008zM512 277.408c-94.208 0-170.592 76.384-170.592 170.592s76.384 170.592 170.592 170.592c94.208 0 170.592-76.384 170.592-170.592s-76.384-170.592-170.592-170.592zM846.784 721.408c0-33.92-27.488-61.408-61.408-61.408s-61.408 27.488-61.408 61.408c0 33.92 27.488 61.408 61.408 61.408s61.408-27.488 61.408-61.408z" />
|
||||
<glyph unicode="" glyph-name="linkedin" d="M384 576h177.12v-90.784h2.528c24.64 44.192 84.96 90.784 174.848 90.784 186.944 0 221.504-116.384 221.504-267.744v-308.256h-184.608v273.28c0 65.184-1.344 149.024-96.032 149.024-96.16 0-110.816-70.976-110.816-144.288v-278.016h-184.544v576zM64 576h192v-576h-192v576zM256 736c0-53.024-42.976-96-96-96s-96 42.976-96 96c0 53.024 42.976 96 96 96s96-42.976 96-96z" />
|
||||
<glyph unicode="" glyph-name="pinterest" d="M512 891.584c-244.992 0-443.616-198.592-443.616-443.616 0-188 116.992-348.384 282.016-412.992-3.808 35.008-7.392 88.992 1.6 127.2 8 34.592 52 220.384 52 220.384s-13.184 26.592-13.184 65.792c0 61.6 35.808 107.808 80.192 107.808 37.792 0 56.192-28.384 56.192-62.4 0-38.016-24.192-95.008-36.8-147.616-10.592-44.192 22.016-80.192 65.6-80.192 78.784 0 139.392 83.2 139.392 203.2 0 106.208-76.384 180.416-185.184 180.416-126.208 0-200.192-94.592-200.192-192.608 0-38.208 14.592-79.008 32.992-101.216 3.616-4.384 4.192-8.192 3.008-12.8-3.392-14.016-10.816-44.192-12.384-50.4-2.016-8.192-6.4-9.792-14.816-6.016-55.392 25.792-90.016 106.784-90.016 171.808 0 140 101.6 268.384 292.992 268.384 153.792 0 273.408-109.6 273.408-256.192 0-152.8-96.384-276-230.208-276-44.992 0-87.2 23.392-101.6 51.008 0 0-22.208-84.608-27.616-105.408-10.016-38.592-36.992-86.784-55.2-116.192 41.6-12.8 85.6-19.808 131.392-19.808 244.992 0 443.616 198.592 443.616 443.616 0 245.184-198.592 443.808-443.616 443.808z" />
|
||||
<glyph unicode="" glyph-name="twitter" d="M1024 733.6c-37.6-16.8-78.208-28-120.608-32.992 43.392 26.016 76.608 67.2 92.384 116.192-40.608-24-85.6-41.6-133.408-51.008-38.4 40.8-92.992 66.208-153.408 66.208-116 0-210.016-94.016-210.016-210.016 0-16.384 1.792-32.384 5.408-47.808-174.592 8.8-329.408 92.416-432.992 219.584-18.016-31.008-28.384-67.2-28.384-105.6 0-72.8 36.992-137.184 93.408-174.816-34.4 0.992-66.784 10.592-95.2 26.208 0-0.8 0-1.792 0-2.592 0-101.792 72.416-186.816 168.608-205.984-17.6-4.8-36.192-7.392-55.392-7.392-13.6 0-26.592 1.408-39.584 3.808 26.816-83.392 104.416-144.192 196.192-146.016-72-56.384-162.4-90.016-260.992-90.016-16.992 0-33.6 0.992-50.208 3.008 93.216-59.808 203.584-94.4 322.208-94.4 386.4 0 597.792 320.192 597.792 597.792 0 9.184-0.192 18.208-0.608 27.2 40.992 29.408 76.608 66.4 104.8 108.608z" />
|
||||
<glyph unicode="" glyph-name="transactions" horiz-adv-x="819" d="M605.665 928.016l180.634-176.936c21.064-20.633 32.901-48.659 32.901-77.897v-568.98c0-42.209-24.561-80.722-63.186-99.041-38.666-18.319-84.552-13.225-118.077 13.117l-19.277 15.13c-13.583 10.706-32.86 10.665-46.444-0.031l-93.030-73.277c-40.859-32.174-98.87-32.128-139.656 0.108l-92.965 73.498c-13.614 10.737-32.968 10.737-46.582 0l-18.465-14.582c-33.491-26.491-79.408-31.693-118.149-13.414-38.733 18.289-63.37 56.832-63.37 99.113v745.264c0 60.706 49.98 109.915 111.638 109.915h415.292c29.507 0 57.83-11.506 78.735-31.984zM483.762 886.724h-372.126c-20.541 0-37.213-16.381-37.213-36.638v-745.264c0-14.106 8.224-26.931 21.14-33.050 12.908-6.083 28.201-4.357 39.365 4.465 6.404 5.064 12.584 9.974 18.465 14.592 40.817 32.271 98.945 32.271 139.764 0l92.957-73.498c13.589-10.737 32.934-10.737 46.558-0.041l93.029 73.318c40.755 32.092 98.616 32.133 139.402 0.108l19.277-15.13c11.167-8.791 26.455-10.476 39.332-4.398 12.872 6.113 21.064 18.939 21.064 33.014v526.168h-149.371c-29.624 0-58.015 11.58-78.93 32.206-20.948 20.593-32.71 48.547-32.71 77.709l-0.003 146.439zM511.339 166.036h-0.009c-14.519-14.326-38.11-14.326-52.621 0-14.553 14.29-14.553 37.514 0 51.809l46.847 46.126h-282.284c-20.542 0-37.213 16.415-37.213 36.639s16.671 36.639 37.213 36.639h372.127c15.032 0 28.616-8.94 34.386-22.605 5.765-13.706 2.57-29.46-8.079-39.936l-110.367-108.672zM307.333 581.726h0.009c14.519 14.328 38.11 14.328 52.621 0 14.553-14.287 14.553-37.513 0-51.809l-46.847-46.124h282.284c20.541 0 37.212-16.414 37.212-36.638s-16.671-36.639-37.212-36.639h-372.126c-15.035 0-28.616 8.94-34.389 22.605-5.765 13.706-2.567 29.457 8.082 39.933l110.366 108.671zM558.188 871.168v-130.908c0-9.708 3.907-19.055 10.906-25.9 6.953-6.894 16.451-10.738 26.307-10.738h133.816l-171.028 167.545z" />
|
||||
<glyph unicode="" glyph-name="royalties1" horiz-adv-x="1075" d="M154.279 960l747.813-0.019c77.686 0 134.067-56.329 134.077-133.936v-422.553c0-80.031-64.732-147.656-141.368-147.656-20.157 0-36.485 16.328-36.485 36.485s16.328 36.485 36.485 36.485c35.804 0 68.398 35.594 68.398 74.675v422.577c0 37.591-23.414 60.96-61.102 60.96h-747.818c-38.458 0-81.304-25.032-81.304-60.96v-422.577c0-36.603 43.314-78.326 81.304-78.326l195.975 0.005c20.155 0 36.485-16.328 36.485-36.485 0-20.152-16.33-36.485-36.485-36.485h-195.975c-79.301 0-154.279 73.518-154.279 151.301v422.572c0 82.718 80.076 133.936 154.279 133.936zM861.051 733.764h-233.498c-20.147 0-36.48 16.346-36.485 36.477 0 20.147 16.328 36.485 36.485 36.485l233.498 0.008c20.157 0 36.485-16.346 36.485-36.485 0-20.147-16.328-36.485-36.485-36.485zM459.678 696.359v26.237c0 56.134-45.669 101.803-101.803 101.803h-113.805c-56.134 0-101.803-45.669-101.803-101.803v-26.237c0-56.134 45.669-101.803 101.803-101.803h113.805c56.126-0.008 101.803 45.669 101.803 101.803zM215.231 696.359v26.237c0 15.901 12.926 28.843 28.843 28.843h113.805c15.908 0 28.843-12.942 28.843-28.843v-26.237c0-15.901-12.927-28.843-28.843-28.843l-113.812 0.008c-15.908 0-28.835 12.927-28.835 28.835zM690.299 275.369c14.239 14.244 37.361 14.244 51.594 0l135.424-135.455c14.935-14.935 15.002-39.306 0.118-54.318l-138.895-138.89c-7.122-7.122-16.461-10.685-25.795-10.685s-18.673 3.564-25.795 10.685c-14.244 14.254-14.244 37.35 0 51.594l79.155 79.155h-101.284c-91.981 0-166.822 74.844-166.822 166.825v171.699c0 20.157 16.33 36.487 36.487 36.487 20.152 0 36.485-16.33 36.485-36.487l-0.010-171.699c0-51.743 42.102-93.844 93.844-93.844h98.821l-73.329 73.339c-14.244 14.254-14.244 37.35 0 51.594z" />
|
||||
<glyph unicode="" glyph-name="info1" d="M512.043 839.307c-216.117 0-391.314-175.197-391.314-391.314s175.197-391.314 391.314-391.314c216.117 0 391.315 175.198 391.315 391.314s-175.198 391.314-391.315 391.314zM25.643 447.993c0 268.632 217.769 486.4 486.4 486.4s486.401-217.768 486.401-486.4c0-268.632-217.768-486.4-486.401-486.4s-486.4 217.768-486.4 486.4zM512.074 730.112c-34.623 0-62.697-26.665-62.697-59.562 0-32.891 28.074-59.556 62.697-59.556s62.69 26.665 62.69 59.556c0 32.897-28.068 59.562-62.69 59.562zM451.884 246.742c0-33.143 28.075-60.001 62.697-60.001s62.691 26.858 62.691 60.001v235.29c0 33.135-28.069 59.998-62.691 59.998s-62.697-26.862-62.697-59.998v-235.29z" />
|
||||
<glyph unicode="" glyph-name="download" d="M287.647 407.579l198.168-201.798c12.161-12.385 31.877-12.385 44.037 0l198.168 201.798c12.159 12.385 12.159 32.462 0 44.846s-31.879 12.383-44.037 0l-145.009-147.666v624.069c0 17.198-13.943 31.139-31.14 31.139s-31.139-13.941-31.139-31.139v-624.069l-145.010 147.666c-12.161 12.383-31.877 12.383-44.037 0s-12.161-32.461 0-44.846zM0 565.628c0 44.456 35.39 80.494 79.046 80.494h112.009c17.513 0 31.71-14.197 31.71-31.71s-14.197-31.71-31.71-31.71h-112.009c-9.261 0-16.767-7.645-16.767-17.075v-549.099c0-9.432 7.506-17.074 16.767-17.074h865.907c9.265 0 16.767 7.642 16.767 17.074v549.099c0 9.43-7.502 17.075-16.767 17.075h-112.009c-17.51 0-31.706 14.197-31.706 31.71s14.196 31.71 31.706 31.71h112.009c43.66 0 79.047-36.039 79.047-80.494v-549.099c0-44.458-35.387-80.497-79.047-80.497h-865.907c-43.656 0-79.046 36.039-79.046 80.497v549.099z" />
|
||||
<glyph unicode="" glyph-name="video" horiz-adv-x="1138" d="M979.752 960h-821.727c-41.907 0-82.101-16.857-111.748-46.855-29.63-30.015-46.277-70.715-46.277-113.145v-447.999c0-42.433 16.649-83.132 46.277-113.146 29.644-30.003 69.841-46.854 111.748-46.854h821.727c41.91 0 82.102 16.856 111.747 46.854 29.633 30.015 46.279 70.713 46.279 113.146v447.999c0 42.431-16.651 83.127-46.279 113.145-29.639 30-69.837 46.855-111.747 46.855zM1074.569 352c0-25.458-9.99-49.892-27.767-67.886-17.778-18-41.904-28.114-67.044-28.114h-821.731c-25.143 0-49.271 10.115-67.046 28.114s-27.767 42.428-27.767 67.886v447.999c0 25.457 9.989 49.887 27.767 67.884s41.907 28.114 67.046 28.114h821.731c25.139 0 49.271-10.114 67.044-28.114s27.767-42.431 27.767-67.884v-447.999zM655.792 627.199l-143.8 82.173c-17.947 10.3-39.945 10.143-57.734-0.414s-28.699-29.9-28.614-50.787v-164.857c-0.127-13.772 4.543-27.158 13.22-37.771 8.663-10.614 20.755-17.786 34.13-20.243 13.39-2.458 27.203-0.043 38.999 6.814l143.803 82.685c11.935 6.843 21.089 17.772 25.816 30.814 4.727 13.029 4.727 27.357 0 40.401s-13.881 23.957-25.816 30.8l-0.006 0.386zM488.724 503.042v146.114l127.746-73.157-127.746-72.957zM158.014-64c25.143 0 49.271 10.115 67.046 28.114s27.767 42.428 27.767 67.886c0 25.452-9.989 49.886-27.767 67.88-17.778 18-41.907 28.114-67.046 28.114s-49.271-10.109-67.046-28.114c-17.775-18-27.767-42.428-27.767-67.88 0-25.458 9.99-49.892 27.767-67.886 17.778-18 41.906-28.114 67.046-28.114zM158.014 64c12.783 0 24.31-7.799 29.192-19.758 4.896-11.958 2.201-25.714-6.843-34.873-9.044-9.153-22.631-11.884-34.441-6.929-11.81 4.944-19.513 16.617-19.513 29.559 0 17.67 14.152 32 31.605 32zM316.039 96c0 17.67 14.152 32 31.605 32h632.097c17.454 0 31.607-14.33 31.607-32s-14.154-32-31.607-32h-632.097c-17.453 0-31.605 14.33-31.605 32zM316.039-32c0 17.67 14.152 32 31.605 32h316.051c17.454 0 31.602-14.33 31.602-32s-14.148-32-31.602-32h-316.051c-17.453 0-31.605 14.33-31.605 32z" />
|
||||
<glyph unicode="" glyph-name="bundle" d="M803.681 318.797h-583.322c-19.445 0-32.403-12.764-32.403-31.898 0-19.139 12.966-31.898 32.403-31.898h583.322c19.446 0 32.404 12.764 32.404 31.898 0 19.144-12.964 31.898-32.404 31.898zM544.435 382.618h-324.076c-16.202 0-32.403 12.764-32.403 31.898s12.959 31.898 32.403 31.898h324.076c19.441 0 32.404-12.759 32.404-31.898 0-19.133-12.959-31.898-32.404-31.898zM933.294 701.604h-29.251v172.266c0 48.809-38.031 86.13-87.767 86.13l-588.070-0.003c-49.737 0-87.768-37.321-87.768-86.13v-28.708h-52.664c-49.737 0-87.768-37.321-87.768-86.13l-0.007-736.901c0-48.809 38.031-86.129 87.768-86.129l848.46 0.005c49.736 0 87.767 37.32 87.767 86.129l0.005 593.349c-2.929 48.808-40.965 86.121-90.706 86.121zM228.205 902.588l588.067 0.003c17.556 0 29.256-11.487 29.256-28.708v-172.266l-494.439-0.010-81.918 109.105c-14.633 20.093-40.96 34.456-70.219 34.456v28.708c0 17.228 14.62 28.713 29.254 28.713zM87.771 787.743h114.1c8.777 0 17.555-5.741 23.405-11.487l55.586-74.649h-193.085c-11.691 0-20.461-2.867-29.221-5.73l-0.039 63.151c0 17.227 11.7 28.715 29.256 28.715zM962.555 22.134c0-17.224-11.704-28.708-29.256-28.708l-845.527-0.010c-17.555 0-29.254 11.489-29.254 28.713l-0.007 593.348c0 17.227 11.705 28.708 29.254 28.708l848.457 0.003c17.556 0 29.256-11.487 29.256-28.708l-2.924-593.346z" />
|
||||
<glyph unicode="" glyph-name="binder" horiz-adv-x="1075" d="M897.152 119.987l0.010 152.187c23.148 1.838 47.892 2.831 59.955-11.254 12.611-14.725 8.781-38.456 8.781-64.051 0-21.908 3.779-49.91-7.834-65.024-10.348-13.476-38.733-14.602-60.913-11.858v0zM372.015 692.454h278.921v-194.855h-278.921v194.855zM354.873 748.393c-22.636-4.723-39.154-22.515-39.887-48.313-1.449-50.939-0.014-121.243-0.014-174.508 0-31.96-3.54-54.897 16.494-72.341 19.354-16.854 45.159-12.835 74.844-12.835h175.732c20.224 0 71.26-2.365 87.639 1.326 21.217 4.787 37.775 23.624 38.451 48.413 0.527 19.473 0.906 207.89-0.686 217.695-1.833 11.278-9.559 24.368-15.288 28.974-21.391 17.205-42.752 12.7-74.716 12.7-58.578 0-117.156 0-175.733 0-20.455 0-69.976 2.405-86.837-1.112h0.001zM897.234 482.191c77.010 5.841 68.664-21.125 68.664-76.723 0-22.513 3.891-49.966-8.576-64.256-11.955-13.691-36.941-13.548-60.17-11.284l0.082 152.264zM897.152 692.142c28.472 2.771 68.746 3.562 68.746-35.087v-82.176c0-19.902-14.7-35.238-34.924-35.238l-33.818 0.312-0.005 152.189v0.001zM141.366-6.129l-0.251 51.052c33.567 11.402 60.425 30.387 74.689 64.323 7.993 19.011 12.666 39.096-6.006 49.101-20.189 10.819-37.997-5.622-43.741-19.558-7.943-19.282-14.871-28.687-33.218-36.357-33.96-14.198-78.373 11.791-75.569 55.286 1.331 20.639 13.371 36.541 26.816 43.254 0-14.438-0.061-28.892-0.031-43.336 0.067-32.399 31.426-39.588 47.548-24.883 9.091 8.294 9.545 18.084 9.527 33.772-0.024 20.603-1.276 165.033 0.563 172.175 6.166 3.466 16.679 6.252 24.083 10.189 9.333 4.966 13.957 8.863 20.938 14.479 10.062 8.095 22.276 24.090 29.265 40.259 8.374 19.369 12.097 40.044-6.682 48.825-21.451 10.031-36.832-5.27-43.010-19.39-7.963-18.202-15.046-29.112-33.022-36.49-36.854-15.13-78.944 13.512-75.95 55.704 1.365 19.242 14.464 37.874 26.535 42.721 2.008-27.954-7.23-58.945 14.229-71.581 10.178-5.996 24.518-4.255 32.536 2.391 9.874 8.182 10.538 19.21 10.516 34.027-0.084 57.681-0.002 115.368-0.002 173.050 20.387 8.308 30.467 10.599 45.036 24.329 11.657 10.985 21.549 21.192 29.585 39.988 8.332 19.485 12.461 39.037-5.965 49.071-20.595 11.214-38.179-5.977-43.731-19.614-7.269-17.855-15.607-29.522-33.248-36.322-35.835-13.814-77.9 12.521-75.529 55.263 1.080 19.472 14.318 37.874 26.81 43.414 0-13.222 0.040-26.45-0.010-39.671-0.198-51.73 55.308-42.335 57.019-7.642 1.248 25.313 0.035 54.022 0.035 79.711 0 26.919 0 53.839 0 80.76 17.829 1.736 293.684 0.312 319.543 0.312h399.502c17.219 0 65.229 2.147 78.945-0.907 29.158-6.493 26.941-33.269 26.941-52.351 0-16.535 2.156-66.165-2.534-78.106-3.528-8.974-11.29-15.958-19.922-19.275-12.518-4.815-57.964-1.055-77.148-2.424-12.913-0.922-19.738-8.046-23.844-16.693-5.448-11.479-2.668-134.355-2.668-157.845 0-185.59-0.901-373.325 0.015-558.808 0.138-28.073-8.038-22.436-58.168-22.436-186.685 0-373.375 0-560.063 0-24.861 0-56.309-1.69-80.364 0.236h-0.001zM998.216 721.608c1.91 2.556 3.026 3.067 5.212 5.831l11.54 18.792c4.265 9.609 7.26 20.528 7.946 32.207 1.526 25.916 0.154 55.798 0.195 82.161 0.077 51.147-27.177 84.757-68.296 95.878-19.599 5.302-57.298 3.045-79.468 3.045h-737.057c-19.386 0-52.634 5.109-54.304-28.082-1.328-26.381 1.041-54.286-0.219-80.795-44.944-10.475-83.882-54.398-83.766-108.886 0.11-51.608 39.172-99.76 83.938-108.413l-0.404-76.168c-5.694-2.846-12.378-4.041-18.051-6.858-96.386-47.858-78.089-172.332 2.074-205.468 7.589-3.139 15.554-4.306 16.373-7.654l-0.079-74.511c-45.825-9.39-83.91-57.108-83.85-108.805 0.034-29.307 11.549-53.99 25.379-71.194 10.414-12.954 35.343-33.132 58.547-37.371 0-122.266-9.614-108.887 88.497-108.887h589.14c21.704 0 44.17-0.568 65.782 0.026 21.499 0.589 34.913 8.499 46.899 18.744 33.772 28.872 19.364 72.602 23.229 107.023 35.512 1.992 53.714-4.137 82.836 14.484 54.344 34.744 42.732 90.516 42.793 151.767 0.026 23.46-2.079 39.25-14.403 58.772-1.761 2.79-3.328 4.992-5.217 7.455-2.243 2.929-3.205 3.195-5.268 5.596 4.439 9.068 16.589 17.439 22.533 43.187 3.779 16.389 3.84 109.155-0.067 125.219-2.038 8.37-5.192 17.039-9.103 23.702-7.112 12.117-5.847 9.026-13.363 17.994 3.635 8.308 16.532 16.483 22.564 42.997 3.784 16.615 3.871 109.456-0.358 126.173-6.82 26.991-18.959 35.445-22.205 42.036v0.001z" />
|
||||
<glyph unicode="" glyph-name="document" horiz-adv-x="870" d="M244.703 960h536.373c49.229 0 89.293-39.968 89.293-89.103l0.005-845.799c0-49.137-40.049-89.098-89.277-89.098h-691.816c-49.231 0-89.281 39.962-89.281 89.098v690.794c0 7.106 2.84 13.925 7.873 18.955l217.853 217.311c5.032 5.023 11.858 7.842 18.977 7.842zM217.838 778.202v90.339l-126.165-125.85h90.599c19.61 0 35.566 15.932 35.566 35.511zM781.087-10.419c19.62 0 35.569 15.928 35.569 35.507l-0.015 845.799c0 19.579-15.944 35.511-35.569 35.511h-509.528v-128.209c0-49.135-40.048-89.097-89.265-89.097h-128.591l0.008-664.003c0-19.579 15.947-35.507 35.573-35.507h691.818zM385.45 755.1h284.855c14.817 0 26.849-11.993 26.849-26.79s-12.027-26.789-26.849-26.789h-284.855c-14.819 0-26.85 11.993-26.85 26.789s12.024 26.79 26.85 26.79zM670.188 547h-461.938c-14.826 0-26.85-11.993-26.85-26.789s12.031-26.789 26.85-26.789h461.938c14.822 0 26.849 11.993 26.849 26.789 0.005 14.797-12.027 26.789-26.844 26.789h-0.005zM208.25 338.898h269.463c14.826 0 26.85-11.991 26.85-26.788s-12.024-26.788-26.85-26.788h-269.463c-14.819 0-26.85 11.991-26.85 26.788s12.024 26.788 26.85 26.788z" />
|
||||
<glyph unicode="" glyph-name="materials" horiz-adv-x="1331" d="M908.257 703.278c-14.244 0.052-26.266 10.481-28.114 24.402-1.853 13.933 7.035 27.052 20.792 30.723l109.906 28.99c15.124 3.869 30.597-4.996 34.637-19.877 4.055-14.871-4.838-30.181-19.907-34.279l-109.926-29.022c-2.401-0.626-4.89-0.938-7.388-0.938zM1042.099 132.045c1.853-13.921 13.87-24.351 28.124-24.392 2.499 0 4.987 0.323 7.398 0.968l109.896 29.025c15.058 4.086 23.951 19.395 19.907 34.278-4.055 14.868-19.512 23.747-34.637 19.866l-109.896-29.020c-13.768-3.661-22.656-16.794-20.792-30.725zM1020.211-46.551c14.874-11.274 33.106-17.408 51.855-17.449 7.516 0 14.996 0.983 22.246 2.913l164.869 43.53c21.842 5.806 40.458 19.907 51.768 39.209 11.305 19.308 14.392 42.25 8.576 63.785l-220.877 812.307c-5.914 21.505-20.234 39.827-39.818 50.965-19.589 11.138-42.849 14.183-64.712 8.478l-164.844-43.54c-21.862-5.766-40.509-19.856-51.825-39.181-11.31-19.313-14.377-42.266-8.504-63.811l220.861-812.284c4.859-17.864 15.534-33.649 30.403-44.923zM1008.84 903.1c2.401 0.626 4.874 0.949 7.352 0.959 12.897-0.020 24.166-8.56 27.5-20.834l220.938-812.257c4.055-14.966-4.941-30.346-20.116-34.391l-164.859-43.52c-7.291-1.951-15.078-0.947-21.632 2.775-6.538 3.712-11.31 9.856-13.261 17.050l-220.872 812.256c-1.966 7.185-0.952 14.85 2.826 21.295 3.779 6.455 9.989 11.159 17.29 13.088l164.833 43.58zM269.965 720.892h-113.781c-15.715 0-28.446 12.546-28.446 28.032s12.731 28.031 28.446 28.031h113.781c15.715 0 28.445-12.545 28.445-28.031s-12.73-28.032-28.445-28.032zM156.184 104.192h113.781c15.715 0 28.445 12.544 28.445 28.032s-12.73 28.032-28.445 28.032h-113.781c-15.715 0-28.446-12.544-28.446-28.032s12.731-28.032 28.446-28.032zM298.409-64h-170.672c-22.625 0.020-44.318 8.893-60.32 24.653-15.99 15.77-24.995 37.146-25.017 59.443v840.955c0.021 22.296 9.027 43.674 25.017 59.444 16.001 15.757 37.694 24.632 60.32 24.653h170.672c22.625-0.021 44.318-8.895 60.32-24.653 15.99-15.768 24.995-37.146 25.016-59.444v-840.955c-0.021-22.298-9.027-43.674-25.016-59.443-16.001-15.759-37.694-24.632-60.32-24.653zM127.737 889.082c-15.704-0.011-28.434-12.556-28.445-28.032v-840.954c0.011-15.478 12.741-28.022 28.445-28.032h170.672c15.704 0.010 28.434 12.554 28.445 28.032v840.954c-0.011 15.476-12.741 28.021-28.445 28.032h-170.672zM525.972 720.892h113.782c15.713 0 28.442 12.546 28.442 28.032s-12.728 28.031-28.442 28.031h-113.782c-15.716 0-28.446-12.545-28.446-28.031s12.73-28.032 28.446-28.032zM639.754 104.192h-113.782c-15.716 0-28.446 12.544-28.446 28.032s12.73 28.032 28.446 28.032h113.782c15.713 0 28.442-12.544 28.442-28.032s-12.728-28.032-28.442-28.032zM668.196-64h-170.672c-22.625 0.020-44.318 8.893-60.32 24.653-15.99 15.77-24.995 37.146-25.016 59.443v840.955c0.021 22.296 9.027 43.674 25.016 59.444 16.001 15.757 37.694 24.632 60.32 24.653h170.672c22.625-0.021 44.319-8.895 60.319-24.653 15.99-15.768 24.996-37.146 25.016-59.444v-840.955c-0.020-22.298-9.027-43.674-25.016-59.443-16-15.759-37.693-24.632-60.319-24.653zM497.524 889.082c-15.704-0.011-28.434-12.556-28.445-28.032v-840.954c0.011-15.478 12.741-28.022 28.445-28.032h170.672c15.703 0.010 28.436 12.554 28.447 28.032v840.954c-0.010 15.476-12.744 28.021-28.447 28.032h-170.672z" />
|
||||
<glyph unicode="" glyph-name="rename" horiz-adv-x="964" d="M917.914 805.808l-122.627 123.567c-40.882 40.834-106.496 40.834-147.372 0l-531.396-530.816c-5.38-5.374-8.607-11.821-9.68-18.266l-49.486-270.778c-2.154-10.752 1.073-22.57 9.68-31.16 7.534-7.523 19.358-11.818 31.192-9.668l270.002 49.429c6.453 1.072 12.906 4.295 18.286 9.668l531.396 530.819c40.888 40.826 40.888 107.442 0.006 147.205zM598.432 782.168l61.319-61.251-378.648-379.31-61.319 61.254 378.648 379.308zM134.804 147.125l37.653 205.234 167.808-167.623-205.461-37.611zM390.821 230.936l-61.319 61.253 379.726 379.306 61.32-61.252-379.727-379.308zM868.436 708.026l-49.489-49.432-172.116 171.928 49.495 49.424c13.987 13.972 35.497 13.972 49.483 0l122.627-122.496c13.987-13.964 13.987-35.459 0-49.425zM858.455 2.12h-788.82c-7.547 0-12.929-6.192-12.929-12.39v-41.285c0-7.228 6.465-12.384 12.929-12.384l788.82-0.006c7.547 0 12.926 6.192 12.926 12.384v41.285c1.078 6.204-5.391 12.396-12.926 12.396z" />
|
||||
<glyph unicode="" glyph-name="share" horiz-adv-x="910" d="M717.892 214.289c61.747 10.519 109.579-34.6 118.062-85.146 10.177-62.418-33.923-109.909-84.474-118.733-62.083-11.19-110.933 33.923-119.415 84.81-9.159 55.296 26.459 108.891 85.828 119.068zM157.445 549.449c62.083 12.212 110.597-32.905 119.757-82.772 11.535-62.418-32.229-110.928-81.76-120.429-61.745-11.873-111.615 31.892-121.114 81.757-6.107 33.244 3.392 59.704 18.659 81.754 12.892 18.318 34.265 33.584 64.459 39.69zM724.338 886.304c59.711 6.106 106.866-39.69 112.299-92.27 6.104-60.722-38.679-107.875-92.279-113.642-60.046-6.106-108.561 39.69-113.311 92.609-5.427 61.401 38.673 107.876 93.292 113.303zM565.569 730.937c-20.016-13.569-40.711-29.513-61.066-44.1l-123.828-90.575c-7.803-5.767-58.012-43.083-62.762-44.439-15.606 16.283-3.732 9.838-33.586 34.602-100.42 82.772-267.333 22.728-283.278-118.052-4.41-41.725 5.428-79.379 23.409-109.911 51.906-88.878 169.967-114.66 255.12-52.918l18.998 15.263 259.87-194.719c-0.678-54.272 11.537-91.591 38.673-124.154 89.566-109.232 259.874-76.669 303.633 54.955 28.501 84.804-10.854 175.041-94.31 215.751-51.905 25.441-113.653 18.995-164.198-10.177-38.679-22.050-53.942-54.955-61.406-62.083-7.122 3.732-189.644 142.137-211.356 158.083-10.178 7.805-21.034 14.928-29.855 22.727 0.34 4.75 4.75 15.945 6.446 21.712 8.482 34.941 4.75 46.814 2.375 79.38 9.16 8.82 48.514 35.28 62.423 46.135 40.711 31.209 87.528 62.079 127.221 92.949 10.517 7.802 20.695 14.926 31.551 22.728l32.228 23.068c88.889-102.787 262.588-67.507 301.261 67.846 13.568 47.831 5.086 97.698-16.287 135.352-18.318 31.888-47.491 60.044-86.505 76.327-118.403 49.528-254.444-45.457-241.213-180.47 1.018-13.569 4.411-23.407 6.446-35.28z" />
|
||||
<glyph unicode="" glyph-name="new-edition" horiz-adv-x="808" d="M580.813 935.767l-22.528 24.142h-466.406c-1.828 0-3.7 0.022-5.598 0.045-7.137 0.085-14.618 0.173-21.332-0.902-10.197-1.425-19.516-6.46-26.213-14.163-12.761-14.216-12.551-31.644-12.341-49.153 0.027-2.231 0.054-4.464 0.054-6.69v-866.13c0-2.355-0.033-4.732-0.066-7.119-0.243-17.591-0.494-35.689 12.353-48.823 14.591-14.918 24.37-14.918 43.159-14.918h257.267c0.951-0.016 1.901 0.016 2.846 0.086h386.724c1.827 0 3.703-0.022 5.6-0.043 7.136-0.086 14.616-0.172 21.332 0.9 10.197 1.423 19.515 6.462 26.209 14.164 12.762 14.217 12.552 31.652 12.342 49.163-0.027 2.226-0.054 4.457-0.054 6.678v401.888c0.092 1.158 0.124 2.326 0.097 3.497v255.68l0.049 14.062-7.421 8.518-206.072 229.12zM339.162 22.916h-227.793c-8.927 0-16.165 7.238-16.168 16.163l-0.295 836.010c-0.003 8.932 7.236 16.174 16.168 16.174h356.287v-181.088c0-19.707 7.782-37.448 20.018-50.199 12.287-12.751 29.182-20.664 47.972-20.664h191.22v-76.137l-1.051-1.663 0.183-524.552c0.005-8.93-7.233-16.174-16.168-16.174l-370.373 2.129zM535.402 729.428v153.973l156.612-173.226h-140.38c-6.144 0.806-10.24 2.469-12.39 5.14-2.101 2.672-3.381 7.359-3.842 14.112z" />
|
||||
<glyph unicode="" glyph-name="duplicate" horiz-adv-x="916" d="M169.599 719.232c22.971 5.099 259.786 1.949 303.763 1.949 44.128 0 107.752 7.648 136.92-16.646 37.78-31.644 30.526-64.337 30.526-122.675v-456.355c0-27.147-3.174-44.091-16.319-61.639-9.674-12.595-25.843-24.447-46.549-28.796-23.423-5.098-260.54-1.946-305.122-1.946-44.431 0-107.601-7.351-136.92 16.643-37.933 31.194-30.528 65.687-30.528 122.675v456.359c-0.151 25.345 3.476 44.991 16.321 61.637 11.183 14.547 25.087 23.845 47.907 28.794zM271.76 956.784c-21.309-4.799-38.991-29.844-25.389-55.789 12.392-23.695 36.422-20.996 68.007-20.996h355.749c42.469 0 105.337 7.649 124.68-54.139 8.16-26.245 4.080-136.622 4.080-172.615v-354.976c0-28.645-1.207-59.99 0-88.333 1.056-25.643 21.914-45.439 49.723-38.244 26.597 7.049 29.162 28.796 29.162 58.939v441.36c0 107.828 20.857 213.856-86.14 269.045-46.549 23.995-105.639 17.246-163.064 17.246-26.295 0-339.731 2.4-356.808-1.5zM168.39 798.716c-58.335-7.198-96.721-38.542-118.785-74.085-30.527-49.34-23.273-104.679-23.273-169.016 0-127.774 0-255.4 0-383.174 0-72.284-4.080-109.175 34.154-158.068 26.145-33.442 70.425-59.683 132.84-59.683 34.91 0 359.225-1.8 385.067 0.895 56.827 5.702 97.178 40.195 118.18 74.24 30.682 49.939 23.277 103.629 23.277 169.014 0 127.623 0 255.247 0 383.021 0 71.235 3.325 109.778-34.158 158.068-25.843 33.443-70.877 59.688-132.84 59.688-33.095 0-360.735 2.1-384.462-0.9z" />
|
||||
<glyph unicode="" glyph-name="open" horiz-adv-x="964" d="M483.148 847.926c8.213 24.993-8.212 45.301-25.224 51.223-14.34 4.947-215.678 2.473-239.924 2.473-56.315 0-97.247 6.574-138.441-23.366-39.564-28.704-50.97-64.176-50.97-110.714 0.13-214.267 0.196-428.599 0-642.929 0-58.386 18.837-88.329 50.318-111.369 41.585-30.521 78.867-24.082 136.811-24.082 107.35 0 214.635 0 321.92 0 51.166 0 284.965-4.488 316.703 5.21 37.804 11.517 69.421 43.279 81.541 79.276 11.276 33.388 6.066 260.608 6.192 312.743 0.259 80.578-63.223 64.502-78.216 37.035-14.926-27.337 2.415-262.105-5.542-316.389-6.969-47.381-71.108-35.34-125.205-35.34h-563.345c-28.679-0.066-46.799 4.488-55.338 25.184-6.648 16.342-3.324 132.259-3.324 158.618v482.234c0 29.224-5.084 50.247 12.71 68.732 16.165 16.857 42.432 12.236 68.895 12.236l241.554-0.065c25.681 0.065 41.975 8.136 48.884 29.289zM798.094 818.702c-4.433-9.503-36.762-39.378-46.405-49.010l-288.485-288.337c-8.864-8.656-16.491-12.366-19.098-28.898-6.909-43.088 43.279-67.756 76.455-30.591l144.96 144.494c13.36 12.106 34.412 34.106 48.423 48.1l96.467 96.524c10.101 10.154 41.129 43.023 48.363 47.123 0-45.887-3.192-104.79 0.199-149.115 3.909-50.247 71.891-51.158 81.866-7.355 4.036 17.834 1.235 181.919 1.235 223.315 0 66.128-1.693 76.672-73.324 76.672-43.737 0-207.203 3.059-227.346-1.106-43.084-8.982-42.757-76.217 4.951-81.359 42.171-4.491 106.833 0 151.739-0.456z" />
|
||||
<glyph unicode="" glyph-name="upload" d="M491.778 950.712l-198.169-201.8c-12.16-12.383-12.16-32.461 0-44.845s31.877-12.383 44.038 0l145.010 147.668v-624.074c0-17.192 13.941-31.135 31.139-31.135s31.139 13.943 31.139 31.135v624.074l145.009-147.668c12.164-12.383 31.879-12.383 44.037 0 12.164 12.383 12.164 32.461 0 44.845l-198.167 201.8c-12.161 12.383-31.877 12.383-44.037 0zM79.046 414.084c-43.656 0-79.046-36.034-79.046-80.492v-317.1c0-44.452 35.39-80.492 79.046-80.492h865.907c43.66 0 79.047 36.039 79.047 80.492v317.1c0 44.458-35.387 80.492-79.047 80.492h-112.009c-17.51 0-31.706-14.196-31.706-31.706 0-17.516 14.196-31.712 31.706-31.712h112.009c9.265 0 16.767-7.642 16.767-17.074v-317.1c0-9.426-7.502-17.074-16.767-17.074h-865.907c-9.261 0-16.767 7.648-16.767 17.074v317.1c0 9.432 7.506 17.074 16.767 17.074h112.009c17.513 0 31.71 14.196 31.71 31.712 0 17.51-14.197 31.706-31.71 31.706h-112.009z" />
|
||||
<glyph unicode="" glyph-name="calendar" d="M126.739 574.144h769.678l0.248-555.467h-769.802l-0.124 555.467zM126.739 786.834l0.372 6.511h142.704c1.489-29.705 2.728-42.051 17.235-60.090 20.581-25.638 45.5-23.465 74.512-23.465 22.936 0 39.798 9.903 50.958 23.059 16.614 19.398 14.631 29.841 17.979 60.499h164.151c2.479-29.841 1.609-40.422 16.862-59.82 20.334-25.773 47.238-23.739 75.753-23.739 22.44 0 40.543 10.852 50.585 23.465 15.621 19.532 15.001 29.165 17.359 59.549l141.088 0.679c1.49-21.839 0.372-114.484 0.372-143.24h-768.933l-0.993 136.595zM664.572 876.359h14.755l6.199-0.27v-89.795l-6.199-0.27h-14.755v90.339zM339.49 876.223l20.954 0.135v-90.339l-14.755-0.136-6.199 0.406v89.931zM269.69 869.848c-80.465-12.343-212.506 39.879-212.382-79.488v-724.887c0-51.949-8.060-123.169 76.001-122.894h756.789c34.593-0.132 51.208 9.908 65.71 33.507 14.75 23.735 10.536 60.087 10.536 91.148v724.889c-0.497 114.349-128.072 67.55-211.14 77.724-1.609 29.705-0.372 39.338-20.706 62.938-24.053 27.807-92.614 27.401-119.519-0.544-18.472-19.262-16.862-29.841-20.582-62.938h-163.903c-2.975 32.554-3.223 44.626-20.458 63.074-15.869 16.955-31.245 20.211-59.636 20.211-35.582 0-63.355-9.768-76-45.849-5.082-14.379-3.472-21.431-4.713-36.895z" />
|
||||
<glyph unicode="" glyph-name="discount" d="M603.518 60.083l-66.116 65.946 295.468 296.171 65.811-67.535-295.164-294.581zM464.751 199.923l-67.636 67.827 293.496 295.161 68.39-69.416-294.251-293.572zM253.636 780.703c39.67 18.655 58.061 29.501 109.13 29.501 32.525 0 62.316-8.677 87.394-20.825 13.224-6.363 22.951-12.436 33.59-20.102 4.712-3.326 11.399-8.387 14.287-11.713l26.751-26.61c2.431-2.458 3.647-4.338 6.079-6.652l20.518-19.957c2.432-2.458 3.648-4.339 6.232-6.797 2.736-2.748 5.016-3.905 7.752-6.508l18.695-20.102c2.888-2.748 5.167-4.049 7.903-6.652 9.119-8.966 15.503-18.8 26.902-26.32-3.192-9.4-10.792-12.437-17.479-19.523l-277.078-277.663-93.018 92.844c-15.351 16.631-21.43 18.222-38.605 41.795-7.296 9.834-13.679 20.68-19.759 33.261-14.287 29.357-20.215 59.293-20.215 95.012 0 42.517 12.311 70.862 27.966 102.533 5.016-2.604 8.36-6.941 12.312-11.28l36.326-35.576c22.342-16.92 49.7-14.606 70.675 5.351 19.607 18.655 17.327 47.144 1.216 67.246l-36.022 35.865c-4.712 3.905-8.664 7.954-11.551 12.871zM106.205 782.149c-1.52-4.772-8.207-13.304-11.096-17.932-4.104-6.652-6.687-11.569-10.335-18.366-62.012-117.284-42.405-261.756 46.205-357.202l432.868-433.846c9.727-9.261 18.695-18.515 39.67-18.803 30.094-0.147 47.266 25.165 70.677 48.16 107.757 106.291 214.003 215.475 321.152 322.49 21.28 21.116 42.253 46.134 17.331 79.396l-438.495 441.223c-56.388 48.447-121.592 83.733-212.938 84.022-57.3 0.145-115.817-16.052-162.326-44.831-6.080-3.76-13.071-9.255-19.303-11.859-7.144 4.628-11.095 11.569-17.631 17.499l-26.598 26.754c-13.527 12.148-16.871 17.932-27.206 27.477-3.8 3.471-5.775 4.338-9.119 8.098-8.664 9.255-15.199 17.932-30.55 22.994-37.693 12.437-79.643-21.982-65.812-64.065 5.32-16.196 36.63-43.963 49.549-56.834 3.040-3.181 5.472-5.929 8.511-8.822l45.445-45.554z" />
|
||||
<glyph unicode="" glyph-name="card" horiz-adv-x="1339" d="M1191.070 905.135h-1043.065c-81.754 0-148.005-66.109-148.005-147.694v-649.841c0-81.581 66.249-147.692 148.005-147.692h1043.065c81.755 0 148.007 66.103 148.007 147.692v649.841c0 81.582-66.245 147.694-148.007 147.694zM148.005 799.641h1043.065c22.56 0 40.873-18.289 40.873-40.786v-87.206l-1124.82-0.009v87.205c0 21.105 18.327 40.796 40.882 40.796zM1191.070 65.402h-1043.065c-22.555 0-40.872 18.29-40.872 40.787v393.844h1124.818v-393.844c0-21.094-18.322-40.787-40.881-40.787zM287.55 335.467c-29.605 0-53.565-23.91-53.565-53.453s23.961-53.453 53.565-53.453h298.824c29.606 0 53.565 23.91 53.565 53.453s-23.961 53.453-53.555 53.453h-298.835zM1009.239 377.665c-32.414 0-60.605-15.473-77.525-40.786-16.912 23.911-45.111 40.786-77.533 40.786-52.145 0-95.841-42.2-95.841-95.642 0-52.041 42.286-95.643 95.841-95.643 32.421 0 60.605 15.473 77.533 40.786 16.912-23.91 45.111-40.786 77.525-40.786 52.153 0 95.846 42.201 95.846 95.643-1.41 53.443-43.693 95.642-95.846 95.642z" />
|
||||
<glyph unicode="" glyph-name="add-printed" d="M759.131 1.49l-209.113-0.216c-105.019 0-210.037 0-315.055 0-38.534 0-63.21-5.052-89.899 15.662-17.87 13.864-34.433 42.894-22.709 77.079 6.915 20.167 32.337 47.462 59.786 46.052l578.214 0.137c-2.327-18.079-0.449-49.983-0.449-69.575 0-14.404 1.815-58.123-0.774-69.137zM180.444 894.388l579.461 0.323-0.353-176.901c-28.524-7.784-46.154-9.029-74.877-26.28-17.641-10.599-44.567-29.994-56.462-45.256-6.986-8.96-15.263-17.513-21.663-28.525-21.817-37.564-34.52-71.174-34.423-119.148 0.114-53.196 21.703-111.42 57.003-146.736l39.72-35.544c4.972-3.385 10.206-6.65 16.521-9.956 19.678-10.297 42.837-19.991 65.365-23.979 0.506-0.085 5.769-1.013 5.854-1.041 5.734-1.968 1.9 1.047 4.443-3.004v-72.488c-165.598 0-331.195 0-496.791 0-58.804 0-97.954 6.332-145.596-18.739-2.146 25.81-0.255 154.698-0.255 191.602v384.758c0 25.646-3.154 69.196 5.839 89.866 7.86 18.073 30.331 41.328 56.219 41.053l-0.003-0.005zM761.031 475.6c-6.252 2.748-7.1 5.776-12.089 9.984-40.943 34.528-76.925-20.045-45.818-45.803l42.422-37.012c15.269-13.057 29.872-31.011 48.321-30.436 13.585 0.421 19.166 7.253 26.368 13.528 3.789 3.3 7.248 5.194 11.008 8.583 3.755 3.387 6.087 6.356 9.825 9.631l43.099 36.415c16.777 15.061 11.11 43.047-6.65 52.419-25.333 13.367-40.34-9.865-52.685-17.91-1.405 29.047-0.188 61.134-0.188 90.514 0 18.125 6.104 59.803-32.063 59.354-36.887-0.435-31.551-38.432-31.551-59.354 0-29.971 0-59.942 0-89.913v0.002zM949.538 488.839c-6.975-88.678-80.708-153.070-166.736-147.58-82.534 5.268-152.508 77.232-146.597 167.14 5.427 82.47 77.198 152.494 167.583 146.286 86.67-5.953 152.326-82.206 145.749-165.844v-0.002zM824.9 280.872c24.912 2.327 57.657 14.899 76.129 25.663 18.159 10.576 18.273 12.629 30.646 20.912 9.893 6.622 17.954 16.526 25.805 24.417 5.956 5.985 6.451 8.101 11.822 14.626 46.177 56.059 57.424 149.442 26.908 218.619-14.729 33.388-20.247 37.926-39.714 62.020-22.79 28.213-76.641 64.233-131.76 70.417-1.451 65.29-0.188 132.397-0.085 197.87 0.068 45.334-19.445 43.753-55.762 43.753h-490.706c-62.879 0-128.538 8.266-171.135-27.363-51.547-43.112-53.491-78.075-53.491-143.249v-690.055c0-44.863 1.432-79.832 32.619-115.325 24.706-28.114 58.694-46.063 99.999-46.717 65.18-1.035 131.279-0.006 196.562-0.006 131.041 0 262.083 0.023 393.121 0 43.395-0.006 48.794 7.652 48.794 50.523v196.562c0 30.64-1.838 67.442 0.256 97.331h-0.006z" />
|
||||
<glyph unicode="" glyph-name="add-user" horiz-adv-x="1195" d="M1113.498 127.556c21.487 0 38.901 17.419 38.901 38.906 0 21.481-17.414 38.901-38.901 38.901h-136.465v153.298c0 21.965-17.806 39.773-39.777 39.773-21.965 0-39.771-17.808-39.771-39.773v-153.298h-141.358c-21.487 0-38.901-17.419-38.901-38.906s17.414-38.901 38.901-38.901h141.358v-151.78c0-21.97 17.806-39.777 39.771-39.777 21.97 0 39.777 17.806 39.777 39.777v151.78h136.465zM849.351 679.217c0-100.867-54.494-189.311-136.317-238.818 38.087-12.67 74.143-29.995 107.662-51.318 19.695-12.527 18.716-40.698-0.705-53.646-11.691-7.794-26.897-7.526-38.832-0.119-64.495 40.010-139.054 62.934-218.51 63.121l-0.989-0.001-0.988 0.001c-227.377-0.542-414.672-187.258-440.569-427.819-1.9-17.653-16.412-31.647-34.168-31.647-18.926 0-34.128 15.809-32.217 34.634 22.136 218.163 163.224 402.466 356.572 466.792-81.827 49.506-136.325 137.953-136.325 238.821 0 155.072 128.806 280.783 287.695 280.783s287.692-125.711 287.692-280.783zM561.659 474.48c115.859 0 209.777 91.664 209.777 204.737s-93.918 204.738-209.777 204.738c-115.856 0-209.777-91.664-209.777-204.738s93.921-204.737 209.777-204.737z" />
|
||||
<glyph unicode="" glyph-name="students" horiz-adv-x="1075" d="M972.155 290.376c-7.291 44.088-30.019 84.147-64.118 113.019s-77.353 44.687-122.035 44.605h-548.569c-44.677 0.081-87.933-15.729-122.033-44.605-34.099-28.872-56.823-68.931-64.115-113.019l-50.832-311.941c-1.69-10.629 1.388-21.468 8.408-29.624 7.037-8.223 17.347-12.908 28.164-12.8h713.136c8.991-0.067 17.684 3.185 24.428 9.119s11.069 14.147 12.145 23.060l36.572 292.567c1.265 10.327-1.925 20.705-8.776 28.534-7.020 7.982-17.167 12.518-27.796 12.431h-548.566c-10.506-0.015-20.498-4.541-27.428-12.431-6.849-7.834-10.041-18.207-8.776-28.534l31.453-251.607h-153.239l44.978 269.164h0.008c4.351 26.993 18.204 51.558 39.054 69.258 20.849 17.695 47.329 27.377 74.684 27.29h548.569c27.346 0.087 53.827-9.595 74.675-27.29 20.849-17.7 34.703-42.266 39.055-69.258l43.525-269.164h-66.565c-13.066 0-25.139-6.973-31.672-18.289-6.528-11.31-6.528-25.257 0-36.567 6.533-11.315 18.606-18.289 31.672-18.289h109.716c10.798-0.138 21.115 4.506 28.17 12.687 7.050 8.187 10.127 19.067 8.397 29.737l-52.291 311.946zM745.411 228.572l-27.428-219.428h-411.058l-27.428 219.428h465.914zM512.456 484.576c123.607 0 219.428 137.51 219.428 255.998 0 78.392-41.82 150.832-109.711 190.032-67.891 39.192-151.535 39.192-219.427 0-67.893-39.2-109.713-111.64-109.713-190.032 0-118.489 95.82-255.998 219.424-255.998zM512.456 886.859c38.799 0 76.012-15.412 103.439-42.849 27.438-27.428 42.849-64.637 42.849-103.436 0-82.285-67.656-182.856-146.289-182.856-78.625 0-146.282 100.571-146.282 182.856 0 38.799 15.412 76.007 42.849 103.436 27.428 27.437 64.637 42.849 103.433 42.849zM549.012 118.881c0-20.198-16.379-36.572-36.572-36.572-20.196 0-36.572 16.374-36.572 36.572 0 20.193 16.375 36.567 36.572 36.567 20.193 0 36.572-16.374 36.572-36.567z" />
|
||||
<glyph unicode="" glyph-name="material" horiz-adv-x="1138" d="M113.778 732.444c-62.838 0-113.778-50.94-113.778-113.778v-568.889c0-62.839 50.94-113.778 113.778-113.778h910.222c62.839 0 113.778 50.938 113.778 113.778l-0.006 568.89c0 62.837-50.944 113.777-113.778 113.777h-910.217zM1060.204 67.556c0-31.42-25.475-56.889-56.889-56.889h-868.85c-31.419 0-56.889 25.469-56.889 56.889v533.333c0 31.419 25.47 56.889 56.889 56.889h868.85c31.414 0 56.889-25.47 56.889-56.889v-533.333zM97.312 789.333h943.152c22.903 0 40.425 12.327 40.425 28.444s-17.516 28.444-40.425 28.444l-943.152-0.007c-22.903 0-40.423-12.327-40.423-28.444s17.518-28.438 40.423-28.438zM264.129 903.111h609.52c20.725 0 36.574 12.327 36.574 28.444s-15.849 28.444-36.574 28.444l-609.52-0.007c-20.722 0-36.573-12.327-36.573-28.444s15.85-28.438 36.573-28.438z" />
|
||||
<glyph unicode="" glyph-name="instructors" d="M407.448 147.348c20.935 43.807 114.362 122.89 158.947 125.993 8.141-12.017 56.602-56.991 72.883-73.272 13.568-13.957 7.752-14.341 34.504-14.341 27.525 0 20.936 3.876 58.153 39.931 17.444 17.055 34.115 31.401 50.785 48.072 27.909-7.757 73.267-35.282 89.554-50.401 16.666-15.119 37.99-30.623 52.721-53.11 5.038-7.368 11.633-13.957 15.508-22.871-6.205-16.287-32.952-45.358-46.136-58.153-101.181-99.246-258.191-118.63-382.634-44.969-34.891 20.931-70.945 53.499-94.205 86.835-3.101 4.265-7.366 12.795-10.079 16.287zM312.080 894.398c66.68 12.406 119.404-36.054 128.321-90.329 11.242-65.517-34.116-117.853-87.615-128.321-100.795-19.771-171.353 91.104-110.875 176.78 13.957 20.159 37.992 35.666 70.17 41.869zM312.855 958.752c-90.716-9.692-166.313-88.778-156.233-191.9 9.692-96.919 96.531-166.313 192.287-155.846 90.329 9.692 167.090 90.716 155.846 193.45-10.080 88.778-90.329 165.538-191.9 154.295zM673.782 255.898l-37.606 36.439 32.952 2.714 6.979-0.389 31.79-1.935c-10.081-13.957-24.422-23.26-34.115-36.828zM658.662 651.713c63.191 8.916 115.917-40.318 123.279-94.593 8.919-66.68-39.153-118.239-94.981-125.996-66.289-9.303-118.241 39.544-125.604 95.757-9.308 68.231 39.542 116.69 97.306 124.832zM295.022 535.798c22.097 3.101 50.010 3.877 72.108-0.388l-36.054-35.666c-7.366 5.040-31.014 28.688-36.054 36.054zM501.265 562.547c-17.445 5.040-36.054 15.895-56.601 22.098-70.945 21.71-144.603 23.26-214.772 2.326-70.945-21.322-109.712-46.134-157.009-90.329-17.058-15.895-65.517-69.005-71.332-91.103-10.080-36.444 33.728-82.964 56.213-106.614 7.753-8.525 12.018-12.017 20.935-19.384 25.199-20.931 36.829-33.336 72.108-52.332 60.477-32.957 128.709-50.012 200.816-46.909-5.428-13.568-22.485-32.568-5.815-59.315 156.621-248.499 489.633-238.423 640.443-17.833 24.033 35.277 27.136 48.072 2.714 84.127-110.49 163.599-323.323 219.034-498.941 122.89-51.561-27.914-64.742-54.661-96.919-60.867-84.513-16.666-184.146 5.043-249.663 57.764-16.67 13.573-28.301 24.428-42.257 37.996-10.467 10.076-10.080 12.406-17.833 21.709-8.141 10.081-11.242 12.795-16.67 23.26 10.467 25.974 45.358 57.764 66.293 74.822 22.097 18.221 58.539 44.97 92.655 52.336 15.119-13.181 32.177-32.952 46.521-48.459 34.891-37.994 32.177-39.541 60.477-39.541 29.076 0 19.384 2.324 59.315 40.316l51.173 48.072c19.772-6.202 43.032-18.608 58.539-29.075 19.384-12.406 18.611-58.928 80.25-96.145 112.425-67.456 248.888 1.167 267.105 123.671 15.508 104.672-63.575 188.023-151.578 199.265-94.981 12.018-179.108-50.785-196.166-152.744z" />
|
||||
<glyph unicode="" glyph-name="message" horiz-adv-x="896" d="M866.778 462.918c29.978-16.792 29.978-63.564 0-80.356l-776.169-434.748c-30.188-16.909-65.163 10.848-59.735 47.405l53.602 351.729 350.458 75.792-354.095 101.050-49.957 326.463c-5.431 36.558 29.545 64.316 59.734 47.407l776.161-434.743z" />
|
||||
<glyph unicode="" glyph-name="usd" horiz-adv-x="536" d="M514.653 334.126c0-52.029-20.421-95.325-61.26-129.897-40.841-34.241-94.339-54.545-160.493-60.923v-182.257h-59.742v179.741c-44.554 0.336-86.407 4.53-125.559 12.585-39.153 8.392-73.075 19.134-101.764 32.222v99.689h8.101c6.413-4.696 17.889-11.581 34.428-20.641 16.539-8.728 32.571-15.945 48.097-21.65 17.551-6.378 37.972-12.42 61.261-18.125 23.627-5.369 48.773-8.558 75.437-9.567v218.010c-13.501 2.682-25.99 5.198-37.466 7.548-11.476 2.687-22.108 5.374-31.896 8.055-55.017 13.765-94.507 34.406-118.471 61.93-23.964 27.859-35.946 62.096-35.946 102.71 0 49.677 19.576 91.633 58.729 125.87 39.491 34.237 94.507 54.208 165.050 59.914v136.946h59.742v-135.939c34.090-0.671 69.024-4.699 104.802-12.084s65.817-15.944 90.118-25.678v-98.682h-7.087c-25.314 15.44-51.81 29.034-79.487 40.782-27.34 12.084-63.455 19.635-108.346 22.657v-217c10.125-1.678 21.095-4.028 32.908-7.049 11.814-2.685 22.108-4.867 30.884-6.545 50.291-10.741 89.107-29.2 116.446-55.38 27.676-26.185 41.515-61.928 41.515-107.242zM233.157 518.902v207.937c-36.116-2.685-66.493-12.587-91.132-29.705-24.639-16.782-36.959-40.278-36.959-70.487 0-30.544 9.113-53.537 27.34-68.977s51.81-28.363 100.751-38.768zM418.965 321.034c0 31.554-9.957 54.545-29.871 68.979-19.576 14.77-51.641 26.346-96.195 34.738v-208.438c40.503 4.028 71.555 14.263 93.157 30.71 21.939 16.447 32.909 41.116 32.909 74.011z" />
|
||||
<glyph unicode="" glyph-name="magic" horiz-adv-x="970" d="M970.105 756.67c-97.566 0-176.381-78.817-176.381-176.382 0 97.566-78.816 176.382-176.387 176.382 97.571 0 176.387 78.817 176.387 176.383 0-97.566 78.816-176.383 176.381-176.383zM699.581 575.732c3.859-3.861 5.95-9.009 5.95-14.479s-2.091-10.618-5.95-14.479l-577.876-577.877c-3.862-3.859-9.010-5.95-14.479-5.95s-10.618 2.091-14.479 5.95l-86.713 86.717c-8.044 8.041-8.044 20.911 0 28.958l577.873 577.874c8.046 8.044 20.917 8.044 28.958 0l86.717-86.713zM461.64 482.101l57.755-57.756 136.908 136.908-57.754 57.755-136.91-136.907zM352.765 580.287c0 97.566 78.817 176.382 176.383 176.382-97.566 0-176.383 78.817-176.383 176.383 0-97.566-78.817-176.383-176.382-176.383 97.566 0 176.382-79.164 176.382-176.382zM617.337 315.715c97.571 0 176.387 78.816 176.387 176.38 0-97.565 78.816-176.38 176.381-176.38-97.566 0-176.381-78.821-176.381-176.387 0 97.566-78.816 176.387-176.387 176.387z" />
|
||||
<glyph unicode="" glyph-name="print" d="M945.23 744.333h-0.711v180.044c0 12.423-10.077 22.506-22.504 22.506h-820.032c-12.423 0-22.506-10.082-22.506-22.506v-180.044h-0.709c-43.424 0-78.769-35.345-78.769-78.769v-378.838c0-43.424 35.345-78.764 78.769-78.764h108.781v-236.309c0-12.427 10.082-22.51 22.505-22.51h615.145c12.421 0 22.504 10.083 22.504 22.51v236.309h97.527c43.424 0 78.77 35.34 78.77 78.764v378.838c0 43.424-35.346 78.769-78.77 78.769zM124.489 901.871h775.035v-157.538h-775.035v157.538zM802.69-5.843h-570.129v330.077h570.129v-330.077zM978.986 286.726c0-18.607-15.143-33.756-33.756-33.756h-97.527v71.264h26.263c12.427 0 22.504 10.083 22.504 22.504 0 12.424-10.077 22.506-22.504 22.506h-723.933c-12.423 0-22.506-10.082-22.506-22.506 0-12.421 10.083-22.504 22.506-22.504h37.517v-71.264h-108.781c-18.612 0-33.758 15.149-33.758 33.756v378.838c0 18.612 15.146 33.758 33.758 33.758h866.461c18.613 0 33.756-15.146 33.756-33.758v-378.838zM331.956 185.452h360.087c12.427 0 22.504 10.083 22.504 22.51 0 12.421-10.077 22.504-22.504 22.504h-360.087c-12.423 0-22.506-10.083-22.506-22.504 0-12.427 10.083-22.51 22.506-22.51zM331.956 65.41h360.087c12.427 0 22.504 10.083 22.504 22.504 0 12.427-10.077 22.51-22.504 22.51h-360.087c-12.423 0-22.506-10.083-22.506-22.51 0-12.421 10.083-22.504 22.506-22.504zM873.978 614.937h-206.306c-12.427 0-22.51-10.082-22.51-22.505v-105.033c0-12.423 10.083-22.505 22.51-22.505h206.306c12.421 0 22.504 10.082 22.504 22.505v105.033c0 12.423-10.083 22.505-22.504 22.505zM851.474 509.904h-161.298v60.022h161.298v-60.022z" />
|
||||
<glyph unicode="" glyph-name="copied" horiz-adv-x="1168" d="M476.115 856.805c-99.758 0.765-283.32 2.173-305.094-2.66-27.099-5.877-43.61-16.918-56.89-34.193-15.254-19.768-19.561-43.098-19.382-73.194v-541.921c0-10.022-0.193-19.45-0.375-28.371-1.049-51.347-1.752-85.747 36.627-117.306 28.433-23.277 83.68-21.722 131.72-20.365 10.782 0.301 21.201 0.595 30.873 0.595 10.719 0 30.819-0.154 56.282-0.352 100.291-0.762 283.868-2.163 306.051 2.669 24.589 5.165 43.789 19.232 55.277 34.189 15.61 20.838 19.379 40.96 19.379 73.197v18.144c0 25.92 21.011 46.931 46.931 46.931s46.931-21.011 46.931-46.931v-18.144c0-5.728 0.045-4.019 0.122-1.37 0.090 3.36 0.224 8.211 0.358 1.37 0.038-1.818 0.070-3.578 0.109-5.293 1.12-55.955 1.21-60.41-28.23-108.326-24.941-40.429-72.858-81.389-140.339-88.154-25.258-2.643-290.659-1.658-406.876-1.229h-0.678c-24.623 0.090-42.447 0.16-49.714 0.16-74.118 0-126.7 31.162-157.747 70.88-41.246 52.736-41.024 93.722-40.638 165.133 0.039 7.2 0.080 14.707 0.080 22.573v455.013c0 12.58-0.234 24.871-0.462 36.888-1.158 60.961-2.183 114.875 28.099 163.818 26.201 42.207 71.785 79.428 141.057 87.976 23.175 2.93 290.547 1.763 406.579 1.256h0.075c24.981-0.109 42.932-0.187 49.897-0.187 73.579 0 127.057-31.166 157.745-70.879 21.434-27.613 31.629-52.542 36.442-80.414l-0.41-11.946c1.811-28.182-20.557-52.037-48.794-52.037h-3.123c-25.28 0-45.773 20.495-45.773 45.776 0 12.040-0.582 24.308-7.315 34.293-5.139 7.624-11.846 14.985-20.576 22.3-28.192 23.482-83.491 21.834-131.351 20.408-10.94-0.326-21.492-0.641-31.242-0.641-10.539 0-30.403 0.152-55.625 0.346zM1146.359 850.979c20.237-17.123 22.765-47.411 5.638-67.647l-353.491-417.766c-9.011-10.646-22.202-16.847-36.147-16.992s-27.264 5.782-36.493 16.239l-241.017 273.155c-17.539 19.878-15.644 50.211 4.234 67.75s50.211 15.644 67.75-4.234l204.264-231.501 317.613 375.36c17.126 20.237 47.411 22.761 67.648 5.637z" />
|
||||
<glyph unicode="" glyph-name="publication" d="M212.171-17.157c7.233 13.778 13.433 16.876 19.633 40.643 6.889 26.865 3.789 143.974 3.789 176.005 0 230.426 1.378 464.297 0 694.378 0 11.71-2.066 19.632 11.711 19.632l727.442-1.378c1.377-3.1 2.412-5.511 2.412-10.333v-907.238c0-9.641-3.098-11.709-13.087-11.709h-751.9zM458.785 92.375c-23.422-6.548-28.244-46.157 13.777-45.814 32.032 0 272.449-1.72 282.090 1.034 22.047 5.857 28.933 45.809-14.121 45.466-32.031 0-272.791 1.72-281.746-0.686zM305.512 456.439c-23.421-5.511-24.455-33.752-5.856-43.398 8.955-4.48 59.242-2.412 73.364-2.412 31.688 0 437.086-1.72 447.761 1.034 21.012 5.509 22.047 35.476 3.103 43.742-9.646 4.133-201.841 1.722-221.471 1.722-17.91 0-286.913 1.722-296.902-0.689zM302.757 549.435c-26.866-6.2-23.077-38.232-3.1-44.776 9.989-3.1 415.73-1.034 470.842-1.034 15.841 0 66.473-2.066 77.839 0.689 23.076 5.511 23.424 37.199 2.412 44.432-9.641 3.444-416.419 1.378-471.184 1.378-16.188 0-64.754 2.066-76.809-0.689zM330.312 818.782h552.468v-173.939h-552.468v173.939zM300.346 864.248c-17.911-5.511-16.533-19.977-16.533-40.299v-170.839c0-17.566-3.444-38.921 7.578-48.565 10.678-9.989 34.788-6.2 51.321-6.2 152.239 0 304.477 0 456.372 0 18.258 0 103.675-2.067 114.355 1.033 16.532 5.167 15.841 21.355 15.841 40.298v170.839c0 17.566 3.103 38.577-7.235 48.565-10.675 10.333-35.476 6.2-51.661 6.2-48.22 0-560.050 2.066-570.039-1.033zM189.094 69.642c0-21.012 0.689-32.036-8.611-49.254-23.421-43.402-81.286-49.254-113.663-16.189-24.455 25.144-20.322 52.695-20.322 94.029v571.416c0 95.064-7.233 86.108 28.588 86.108 37.888 0 76.12 0 114.008 0v-686.109zM0 54.83c0-66.13 53.043-118.83 118.83-118.83h847.304c33.413 0 57.866 23.419 57.866 57.175v909.993c0 33.066-24.11 56.831-56.832 56.831h-718.487c-33.41 0-57.176-20.322-59.242-51.32-2.411-33.41 0.344-71.642-0.345-105.741-9.3-1.722-104.708-0.689-122.274-0.689-22.733 0-34.099-1.033-48.221-13.433-10.333-9.3-18.599-22.388-18.599-42.71v-691.277z" />
|
||||
<glyph unicode="" glyph-name="settings" d="M987.208 485.724h-165.555c-9.759 0-19.113-3.978-26.015-11.058s-10.778-16.684-10.778-26.697c0-10.015 3.876-19.62 10.778-26.696 6.902-7.081 16.256-11.059 26.015-11.059h165.555c9.759 0 19.118 3.978 26.015 11.059 6.902 7.076 10.778 16.681 10.778 26.696 0 10.013-3.876 19.616-10.778 26.697-6.897 7.080-16.256 11.058-26.015 11.058zM654.131 313.559c23.834 0.031 46.679 9.764 63.529 27.054 16.85 17.295 26.332 40.74 26.363 65.193v84.323c-0.031 24.456-9.513 47.901-26.363 65.194s-39.695 27.023-63.529 27.056c-23.828-0.033-46.674-9.763-63.524-27.056s-26.332-40.738-26.363-65.194v-4.405h-527.331c-4.831 0-9.615-0.976-14.079-2.874s-8.519-4.679-11.936-8.184c-3.416-3.506-6.126-7.668-7.975-12.249s-2.8-9.49-2.8-14.448c0-4.961 0.952-9.866 2.8-14.449s4.559-8.745 7.975-12.247c3.416-3.507 7.472-6.287 11.936-8.187s9.248-2.872 14.079-2.872h527.331v-4.408c0.031-24.453 9.513-47.898 26.363-65.193 16.85-17.29 39.695-27.023 63.524-27.054zM637.701 489.752c0 4.44 1.72 8.697 4.777 11.836s7.209 4.902 11.535 4.902c4.321 0 8.474-1.763 11.53-4.902 3.062-3.139 4.777-7.396 4.777-11.836v-84.447c0-4.454-1.725-8.73-4.792-11.878-3.072-3.154-7.235-4.92-11.576-4.92-4.347 0-8.509 1.766-11.581 4.92-3.067 3.149-4.792 7.424-4.792 11.878l0.123 84.447zM296.286 691.116c23.831 0.033 46.676 9.763 63.527 27.056s26.332 40.738 26.364 65.193v84.321c0 24.483-9.477 47.963-26.346 65.275s-39.75 27.038-63.606 27.038c-23.857 0-46.737-9.726-63.606-27.038s-26.346-40.792-26.346-65.275v-4.405h-169.481c-9.757 0-19.115-3.978-26.015-11.058s-10.776-16.684-10.776-26.698c0-10.013 3.876-19.617 10.776-26.697s16.257-11.058 26.015-11.058h169.604v-4.405c0.032-24.456 9.513-47.901 26.364-65.193s39.696-27.023 63.527-27.056zM279.975 867.31c0 4.456 1.725 8.73 4.795 11.88s7.235 4.921 11.576 4.921c4.342 0 8.506-1.77 11.577-4.921s4.795-7.425 4.795-11.88v-84.447c0-4.439-1.718-8.697-4.777-11.836s-7.207-4.902-11.533-4.902c-4.326 0-8.474 1.763-11.533 4.902s-4.777 7.397-4.777 11.836l-0.123 84.447zM987.208 863.282h-521.196c-9.758 0-19.116-3.978-26.015-11.058s-10.776-16.684-10.776-26.698c0-10.013 3.876-19.617 10.776-26.697s16.257-11.058 26.015-11.058h521.196c9.759 0 19.118 3.978 26.015 11.058 6.902 7.080 10.778 16.684 10.778 26.697s-3.876 19.617-10.778 26.698c-6.897 7.080-16.256 11.058-26.015 11.058zM296.286 204.82c-23.831-0.031-46.676-9.764-63.527-27.054-16.851-17.295-26.332-40.74-26.364-65.193v-4.408h-169.604c-9.757 0-19.115-3.978-26.015-11.059s-10.776-16.681-10.776-26.696c0-10.015 3.876-19.615 10.776-26.696s16.257-11.059 26.015-11.059h169.604v-4.403c0.032-24.458 9.513-47.903 26.364-65.198 16.851-17.29 39.696-27.018 63.527-27.054 23.831 0.036 46.676 9.764 63.527 27.054 16.85 17.295 26.332 40.74 26.364 65.198v84.321c-0.033 24.453-9.514 47.898-26.364 65.193-16.851 17.29-39.696 27.023-63.527 27.054zM312.718 28.626c0-4.439-1.718-8.694-4.777-11.832s-7.207-4.905-11.533-4.905c-4.326 0-8.474 1.766-11.533 4.905s-4.777 7.393-4.777 11.832v83.948c0 4.454 1.725 8.73 4.795 11.878s7.235 4.92 11.577 4.92c4.342 0 8.506-1.772 11.576-4.92s4.795-7.424 4.795-11.878l-0.123-83.948zM987.208 108.165h-521.196c-9.758 0-19.116-3.978-26.015-11.059s-10.776-16.681-10.776-26.696c0-10.015 3.876-19.615 10.776-26.696s16.257-11.059 26.015-11.059h521.196c9.759 0 19.118 3.978 26.015 11.059 6.902 7.081 10.778 16.681 10.778 26.696s-3.876 19.615-10.778 26.696c-6.897 7.081-16.256 11.059-26.015 11.059z" />
|
||||
<glyph unicode="" glyph-name="quiz" horiz-adv-x="1078" d="M537.747 387.525c-17.965 0-32.567-14.94-32.567-33.42v-14.724c0-18.437 14.602-33.426 32.567-33.426 17.967 0 32.567 14.988 32.567 33.426v14.724c0 18.437-14.562 33.42-32.567 33.42zM435.619 576.578c17.965 0 32.567 14.942 32.567 33.423 0 19.749 7.79 37.575 20.391 50.507s29.97 20.928 49.212 20.928c19.239 0 36.61-7.995 49.21-20.928s20.394-30.759 20.394-50.507c0-19.748-7.793-37.574-20.394-50.507s-29.971-20.928-49.21-20.928c-17.965 0-32.567-14.943-32.567-33.424v-56.799c0-18.437 14.602-33.425 32.567-33.425 17.962 0 32.568 14.944 32.568 33.425v27.438c24.134 6.16 45.676 18.962 62.707 36.438 24.35 25.035 39.462 59.595 39.462 97.781s-15.112 72.79-39.462 97.781c-24.393 25.035-58.066 40.502-95.274 40.502s-70.923-15.467-95.274-40.502c-24.393-25.035-39.463-59.595-39.463-97.781 0-18.437 14.602-33.423 32.566-33.423zM0 315.564c0-32.294 7.755-62.857 21.462-89.789 9.065-17.823 20.697-34.024 34.404-48.106 34.514-35.366 82.079-57.328 134.396-57.328h512.79l190.642-156.667c14.093-11.566 34.622-9.275 45.929 5.142 1.692 2.177 3.11 4.468 4.204 6.872 2.075 4.468 3.061 9.329 3.115 14.137v140.353c22.226 7.545 42.647 19.165 60.394 33.97 9.34 7.766 17.915 16.427 25.67 25.869 27.961 34.029 44.889 77.889 44.889 125.607v428.89c0 53.751-21.353 102.528-55.813 137.897-34.514 35.368-82.076 57.326-134.392 57.326h-697.209c-52.371 0-99.936-21.958-134.396-57.326-17.475-17.88-31.565-39.224-41.231-62.914-7.209-17.712-11.96-36.765-13.762-56.656l-0.928-67.272-0.164-380.004zM190.426 872.521h697.371c3.385 0 6.715-0.168 10.046-0.447 6.721-0.558 13.274-1.62 19.661-3.241 22.447-5.699 42.545-17.656 58.379-33.971 22.609-23.188 36.643-55.203 36.643-90.348v-428.89c0-31.345-11.086-60.066-29.324-82.303-18.297-22.296-43.854-38.109-72.796-43.639-16.222-1.956-28.78-16.147-28.78-33.355v-96.606l-144.718 118.956c-3.385 3.185-7.373 5.643-11.738 7.152-3.277 1.17-6.828 1.784-10.542 1.784h-524.202c-9.939 0-19.605 1.229-28.889 3.525-7.263 1.784-14.253 4.242-20.97 7.26-14.308 6.484-27.251 15.646-38.173 26.823-22.609 23.239-36.644 55.199-36.644 90.403v428.89c0 35.145 14.035 67.16 36.644 90.348 22.608 23.243 53.791 37.659 88.032 37.659z" />
|
||||
<glyph unicode="" glyph-name="incomplete" d="M896 448.1c0 212.078-171.924 384-384 384-212.078 0-384-171.922-384-384s171.922-383.997 384-383.997c212.076 0 384 171.919 384 383.997zM1024 448.1c0-282.77-229.233-511.997-512-511.997-282.77 0-512 229.228-512 511.997s229.23 512 512 512c282.767 0 512-229.23 512-512zM696.888 428.124c0-31.288-25.6-56.888-56.888-56.888h-250.311c-31.289 0-56.889 25.6-56.889 56.888v56.887c0 31.289 25.6 56.889 56.889 56.889h250.311c31.288 0 56.888-25.6 56.888-56.889v-56.887z" />
|
||||
<glyph unicode="" glyph-name="dislike" horiz-adv-x="1075" d="M566.902 868.905h-321.103c-24.083 0-69.68 5.78-69.68-26.491l-0.803-91.675c-16.216 0-43.51-2.087-43.51-23.601 0-48.165-0.16-68.716-0.16-116.56-10.596 0-18.945-11.721-18.945-21.835v-84.129c0-10.115 7.064-26.973 18.945-26.973 0-41.422 0-61.815 0-103.072 0-31.15 47.202-36.931 70.001-36.931h216.584c23.762 0 40.138-22.799 33.555-45.276l-31.95-157.819c-2.248-11.402 1.766-37.412 8.67-62.776 4.335-15.734 10.115-40.781 24.404-50.734 15.895-11.238 39.496-17.981 58.441-13.809l27.294 131.814c1.285 6.579 4.337 12.36 8.509 16.855l165.048 205.829v343.741c0 32.592-5.299 66.789-20.71 95.849-25.851 48.968-72.090 67.592-124.59 67.592zM782.203 384.358l176.287-1.121c35.799-0.323 38.047 8.028 38.047 42.383v399.615c0 31.95-1.121 43.67-35.318 43.67h-179.016v-484.547zM712.202 887.369v16.697c0 19.266 15.734 35 35 35h214.016c74.819 0 105.482-43.028 105.482-113.831v-399.615c0-72.73-32.271-112.548-108.534-112.061l-194.268 1.121-158.305-197.478-26.168-130.852c-1.766-9.308-6.103-17.818-12.201-24.883-38.533-43.991-122.824-24.402-163.122 9.149l-2.408 1.93c-16.376 14.449-31.147 47.037-40.459 80.758-9.473 34.514-14.129 73.211-9.794 94.884l24.083 119.291h-173.878c-65.987 0-140.001 30.828-140.001 107.090v17.818c0 16.538 2.248 31.309 7.385 43.991-16.858 18.947-26.33 42.708-26.33 68.236v84.129c0 25.046 9.633 47.202 27.133 65.023-5.94 15.252-8.028 33.395-8.028 52.822v20.551c0 26.491 10.596 52.019 33.555 70.161l12.363 8.349c-2.087 12.202-1.606 24.564-1.606 36.766 0 86.377 70.964 96.652 139.68 96.652h321.103c53.14 0 105.482-15.413 145.3-51.698z" />
|
||||
<glyph unicode="" glyph-name="like" d="M499.798 27.095h321.102c24.084 0 69.683-5.78 69.683 26.491l0.799 91.674c16.22 0 43.51 2.089 43.51 23.603 0 48.164 0.164 68.716 0.164 116.562 10.593 0 18.944 11.72 18.944 21.832v84.132c0 10.112-7.066 26.972-18.944 26.972 0 41.421 0 61.811 0 103.073 0 31.147-47.201 36.927-70.001 36.927h-216.586c-23.762 0-40.136 22.798-33.556 45.276l31.954 157.822c2.248 11.399-1.766 37.409-8.673 62.776-4.332 15.734-10.112 40.78-24.402 50.735-15.898 11.238-39.496 17.981-58.44 13.807l-27.295-131.813c-1.285-6.583-4.337-12.363-8.509-16.858l-165.048-205.828v-343.742c0-32.594 5.298-66.79 20.711-95.852 25.849-48.968 72.088-67.589 124.588-67.589zM284.498 511.64l-176.286 1.124c-35.803 0.321-38.051-8.028-38.051-42.386v-399.614c0-31.949 1.124-43.668 35.321-43.668h179.015v484.545zM354.499 8.632v-16.696c0-19.267-15.734-35.005-35-35.005h-214.015c-74.817 0-105.483 43.028-105.483 113.833v399.614c0 72.73 32.271 112.547 108.533 112.065l194.268-1.124 158.304 197.479 26.17 130.85c1.766 9.312 6.101 17.821 12.202 24.886 38.533 43.991 122.823 24.404 163.123-9.151l2.406-1.927c16.374-14.45 31.145-47.042 40.458-80.758 9.472-34.519 14.131-73.211 9.795-94.886l-24.084-119.29h173.88c65.987 0 140.001-30.826 140.001-107.088v-17.821c0-16.537-2.248-31.308-7.388-43.992 16.86-18.942 26.332-42.704 26.332-68.233v-84.132c0-25.047-9.631-47.201-27.131-65.024 5.939-15.252 8.023-33.393 8.023-52.818v-20.552c0-26.491-10.593-52.019-33.551-70.164l-12.365-8.346c2.089-12.201 1.608-24.566 1.608-36.767 0-86.38-70.963-96.655-139.684-96.655h-321.102c-53.143 0-105.483 15.416-145.299 51.702z" />
|
||||
<glyph unicode="" glyph-name="lock" horiz-adv-x="751" d="M71.68 661.76c0 164.48 133.76 298.24 298.114 298.24h0.256c164.478 0 298.24-133.76 298.24-298.24v-116.61c42.496-17.79 72.448-59.774 72.448-108.67v-382.594c0-65.024-52.866-117.886-117.89-117.886h-504.96c-65.024 0-117.888 52.862-117.888 117.886v382.594c0 48.64 29.568 90.498 71.68 108.414v116.866zM369.794 908.8c-136.066 0-246.914-110.848-246.914-247.040h-0.256v-107.52h74.368v107.52c0 95.36 77.312 172.8 172.672 172.8 95.362 0 172.8-77.568 172.8-172.8v-107.52h74.366v107.52c0 136.192-110.974 247.040-247.037 247.040zM491.394 554.24v107.52h0.126c0 67.072-54.654 121.6-121.6 121.6-66.944 0-121.472-54.528-121.472-121.6v-107.52h242.946zM689.282 53.886v382.594h0.126c0 36.864-29.952 66.69-66.686 66.69h-504.962c-36.864 0-66.688-29.955-66.688-66.69v-382.594c0-36.864 29.952-66.686 66.688-66.686h504.832c36.864 0 66.69 29.952 66.69 66.686zM450.56 392.318c25.474-22.784 40.066-55.552 40.066-89.726 0-38.147-17.794-73.346-47.872-96.13l15.104-85.89c2.56-14.718-1.536-29.822-11.138-41.342-9.598-11.39-23.808-18.050-38.782-18.050h-75.392c-14.976 0-29.184 6.53-38.784 18.050-9.728 11.52-13.696 26.494-11.136 41.342l15.104 85.89c-35.328 26.494-53.12 69.506-46.592 114.046 7.68 53.122 52.096 95.874 105.471 101.762 34.304 3.714 68.482-7.168 93.952-29.952zM390.786 206.336c-2.69 14.848 3.966 29.822 16.896 38.141h-0.13c19.842 12.8 31.744 34.56 31.744 58.115 0 19.709-8.318 38.4-23.040 51.582-12.8 11.52-28.928 17.664-46.080 17.664-2.686 0-5.376-0.13-8.062-0.382-30.592-3.458-55.936-27.904-60.416-58.242-3.968-27.518 7.936-53.76 30.976-68.738 12.8-8.318 19.456-23.293 16.896-38.141l-16.64-94.594 74.879 0.512-17.022 94.082z" />
|
||||
<glyph unicode="" glyph-name="true-false" d="M369.502 940.113c-11.533-3.126-16.977-9.054-114.634-125.359-43.71-52.589-76.783-91.4-110.192-129.91l9.032 10.641c-2.010 1.811-3.699 3.929-5.003 6.289l-0.063 0.124c-26.416 40.641-38.667 58.678-51.009 76.647l13.821-21.297c-37.996 56.158-38.643 56.805-57.667 56.805-10.24 0-12.989-0.647-18.917-4.689-11.965-8.138-18.324-24.414-14.713-37.565 1.994-7.276 126.491-192.674 128.539-191.38 3.072 1.886 256.862 305.152 259.557 310.164 1.886 4.287 2.984 9.285 2.984 14.54 0 0.421-0.007 0.841-0.021 1.259l0.002-0.061c0.081 0.784 0.128 1.694 0.128 2.614 0 5.808-1.845 11.184-4.98 15.576l0.055-0.082c-2.985 4.522-6.639 8.331-10.868 11.393l-0.126 0.087c-5.699 2.944-12.438 4.67-19.581 4.67-2.238 0-4.437-0.169-6.583-0.496l0.241 0.030zM853.208 889.398c-3.721-1.35-6.921-2.931-9.913-4.813l0.212 0.124c-5.713-3.988-764.766-813.918-769.832-821.464-3.719-5.443-4.527-8.569-4.473-17.031 0.162-19.779 12.072-33.199 30.774-34.762 19.672-1.671-13.096-34.87 405.827 411.971 209.92 223.879 383.569 409.6 385.94 412.672 4.032 5.968 6.437 13.324 6.437 21.241 0 2.9-0.323 5.725-0.934 8.441l0.048-0.256c-1.343 6.111-4.542 11.327-8.966 15.169l-0.034 0.029c-10.348 10.348-22.205 13.312-35.085 8.677zM689.475 337.57c-8.064-3.563-14.629-9.279-19.137-16.423l-0.104-0.176c-5.443-10.402-5.174-25.6 0.701-34.385 2.425-3.665 27.971-32.822 56.697-64.728s52.062-58.53 51.847-59.176c-0.216-0.647-24.522-28.025-54.003-60.847-29.534-32.876-54.811-61.925-56.266-64.566-4.204-7.761-3.503-23.929 1.401-32.552 6.090-10.725 14.821-16.007 27.81-16.977 8.893-0.647 11.911-0.108 17.893 3.18 4.851 2.695 23.714 22.42 58.422 61.117 28.241 31.475 51.901 57.182 52.655 57.182s24.576-25.869 52.979-57.506c55.242-61.494 58.745-64.512 73.836-64.512 11.284 0.578 21.201 5.975 27.807 14.156l0.057 0.073c4.473 5.659 5.282 8.138 5.767 18.755 0.539 11.21 0.162 12.881-4.473 19.941-2.803 4.204-28.187 33.361-56.482 64.728-15.799 17.179-32.578 36.144-49.002 55.422l-2.359 2.838c0 0.593 23.121 26.786 51.362 58.099s53.625 60.416 56.428 64.674c4.689 7.006 5.066 8.677 4.527 19.887-0.485 10.617-1.293 13.15-5.767 18.809-6.607 8.516-16.844 13.945-28.348 13.945-5.145 0-10.036-1.086-14.458-3.041l0.229 0.090c-5.228-2.371-19.51-17.246-58.907-61.278-28.618-31.96-52.547-57.991-53.194-57.829-0.701 0.162-24.253 26.031-52.44 57.452-35.409 39.451-53.464 58.368-58.368 61.009-5.112 2.384-11.099 3.775-17.411 3.775-3.441 0-6.785-0.413-9.986-1.193l0.288 0.059z" />
|
||||
<glyph unicode="" glyph-name="single-choice" horiz-adv-x="1293" d="M348.861 806.885c-32.467-4.476-61.347-17.178-85.27-35.916l0.386 0.291c-30.656-23.927-52.908-57.357-62.377-95.816l-0.249-1.195c-4.797-19.779-4.797-59.338-0.108-80.357 11.533-51.308 50.823-98.627 100.083-120.401 48.128-21.288 109.999-17.246 156.187 10.24 18.594 11.048 45.379 36.918 57.182 55.296 31.475 48.829 36.002 115.604 11.48 168.044-13.59 27.56-32.584 50.555-55.759 68.381l-0.453 0.335c-30.774 22.959-84.561 36.756-121.101 31.097zM397.635 734.666c48.397-12.611 82.405-64.943 74.914-115.281-9.162-61.925-69.309-102.669-128.647-87.256-44.84 11.695-78.74 55.242-78.74 101.268 0 43.978 31.259 87.094 72.758 100.352 15.522 4.958 42.631 5.389 59.715 0.916zM355.005 677.699c-26.516-8.569-39.020-42.792-24.576-67.422 7.549-13.269 21.594-22.072 37.695-22.072 0.561 0 1.119 0.011 1.674 0.032l-0.080-0.002c0.353-0.009 0.768-0.015 1.184-0.015 6.61 0 12.909 1.333 18.643 3.744l-0.317-0.118c17.408 9.27 28.564 29.965 25.869 47.912-2.831 13.822-10.578 25.476-21.296 33.307l-0.154 0.107c-8.785 5.389-28.618 7.707-38.643 4.527zM681.984 666.597c-8.677-2.479-19.348-14.605-22.205-25.223-0.589-2.375-0.927-5.101-0.927-7.907 0-12.365 6.568-23.197 16.406-29.195l0.151-0.085c6.683-4.042 12.396-4.204 201.566-4.204 162.978 0 195.638 0.485 200.488 3.018 27.648 14.39 23.983 55.512-5.659 63.757-10.078 2.803-380.12 2.641-389.821-0.162zM327.68 337.031c-66.888-18.465-117.186-73.581-128.347-141.854l-0.138-1.021c-1.417-8.216-2.227-17.678-2.227-27.329 0-27.205 6.436-52.906 17.868-75.665l-0.442 0.972c29.858-61.332 88.064-98.142 155.325-98.142 79.495 0 146.432 52.278 167.235 130.641 6.306 23.66 6.413 62.195 0.216 85.369-15.683 59.015-59.284 105.741-115.712 124.066-24.199 7.869-69.74 9.27-93.777 2.964zM399.306 268.045c28.51-8.839 50.23-27.702 63.488-55.296 19.995-41.553 12.126-86.932-20.696-119.377-21.181-20.965-43.116-30.127-72.435-30.181-30.882 0-56.104 11.372-77.501 35.032-59.715 65.967-12.342 173.325 76.8 173.972 0.344 0.004 0.75 0.006 1.156 0.006 10.4 0 20.445-1.518 29.927-4.346l-0.74 0.189zM682.307 200.084c-13.684-4.628-23.359-17.353-23.359-32.336 0-14.114 8.585-26.224 20.818-31.391l0.224-0.084c8.354-3.773 18.432-3.988 196.339-4.042 122.179 0 190.356 0.755 195.53 2.21 16.384 4.527 27.379 22.905 24.145 40.367-1.94 10.348-14.336 22.959-25.708 26.085-5.982 1.671-65.051 2.371-193.967 2.317-154.139-0.054-186.853-0.593-194.021-3.126z" />
|
||||
<glyph unicode="" glyph-name="star-circle" d="M477.878 958.91c-150.33-11.198-284.342-83.869-374.949-203.281-51.795-68.245-84.001-146.168-98.271-237.634-5.219-33.462-5.219-106.529 0-139.991 21.9-140.453 89.782-255.67 199.845-339.175 67.98-51.563 146.3-83.968 237.502-98.172 33.462-5.219 106.529-5.219 139.991 0 124.433 19.39 230.202 75.479 309.545 164.17 70.359 78.617 111.021 165.525 127.802 273.177 5.219 33.462 5.219 106.529 0 139.991-14.204 91.202-46.609 169.522-98.172 237.502-84.662 111.583-205.659 181.81-345.154 200.275-19.985 2.643-79.377 4.558-98.139 3.138zM553.323 891.689c91.342-8.831 173.147-43.834 239.414-97.32l-0.855 0.668c18.63-14.798 52.356-48.524 67.155-67.155 37.558-47.203 67.089-104.547 82.151-159.546 34.585-126.117 13.477-259.799-57.773-366.526-43.267-64.587-101.094-116.236-168.983-151.039l-2.521-1.174c-63.686-31.942-127.571-46.939-199.911-46.939-100.187 0-189.176 29.993-270.501 91.136-23.023 17.276-59.26 52.455-76.569 74.323-90.773 114.457-120.535 259.964-82.019 400.582 14.931 54.503 44.99 112.838 81.986 159.182 14.865 18.63 48.59 52.356 67.221 67.221 67.683 54.041 151.552 88.328 236.115 96.52 12.871 0.976 27.877 1.532 43.014 1.532 14.806 0 29.488-0.532 44.027-1.579l-1.95 0.113zM502.189 705.288c-2.973-3.204-3.865-7.465-5.384-25.369-3.865-45.948-15.030-78.914-38.714-114.523-40.354-60.031-106.274-100.196-181.802-104.845l-0.668-0.033c-17.474-1.057-19.060-1.453-23.453-5.847-5.781-5.781-6.012-11.793-0.694-17.97 3.733-4.36 5.186-4.724 22.594-5.88 45.155-2.973 81.292-14.765 116.439-38.020 65.272-43.14 101.145-106.067 107.091-187.821 1.255-17.441 4.856-23.222 14.402-23.222 9.579 0 13.147 5.781 14.402 23.222 4.955 69.467 32.074 125.952 80.764 168.233 40.233 34.948 86.578 53.71 141.907 57.509 18.498 1.288 19.687 1.586 23.618 6.177 5.12 5.946 4.261 13.51-2.213 19.192-3.501 3.105-6.408 3.865-14.732 3.865-16.913 0-45.353 4.955-65.239 11.396-39.005 12.591-72.223 33.903-98.637 61.734l-0.096 0.102c-39.804 41.819-61.11 91.433-65.272 152.047-1.321 19.192-4.195 23.882-14.501 23.882-0.231 0.015-0.501 0.024-0.773 0.024-3.55 0-6.755-1.478-9.033-3.851l-0.004-0.004z" />
|
||||
<glyph unicode="" glyph-name="doc" horiz-adv-x="768" d="M0 698.56v-261.44l3.872-14.496c7.36-27.36 16.736-44.96 35.008-65.664 5.216-5.888 90.048-91.104 188.512-189.376 136.032-135.776 181.312-180.192 188.608-185.12 17.856-12.032 34.24-18.976 55.584-23.552 10.88-2.304 18.432-2.432 152-2.432h140.576v1003.52h-764.16v-261.44zM704 458.208v-442.944l-220.8 0.736-8.96 3.008c-29.728 9.984-48.448 28.672-58.432 58.432l-3.008 8.96-0.352 140.416-0.352 140.448-275.776 0.8-10.24 2.848c-14.144 3.904-29.344 11.712-38.016 19.456-13.952 12.48-24.448 32.8-27.84 53.792-0.864 5.536-1.312 83.2-1.344 232.64v224.32h645.12v-442.912zM176.928 753.6l0.352-28.48 410.24-0.64v57.6h-410.944l0.352-28.48zM176.64 636.8v-28.8h410.88v57.6h-410.88v-28.8zM176.64 519.040v-28.8h410.88v57.6h-410.88v-28.8zM352 219.52c0-48.928-0.16-88.96-0.32-88.96-0.192 0-40.352 40.032-89.28 88.96l-88.96 88.96h178.56v-88.96z" />
|
||||
<glyph unicode="" glyph-name="new-info" d="M477.878 958.91c-150.33-11.198-284.342-83.869-374.949-203.281-51.795-68.245-84.001-146.168-98.271-237.634-5.219-33.462-5.219-106.529 0-139.991 21.9-140.453 89.782-255.67 199.845-339.175 67.98-51.563 146.3-83.968 237.502-98.172 33.462-5.219 106.529-5.219 139.991 0 124.433 19.39 230.202 75.479 309.545 164.17 70.359 78.617 111.021 165.525 127.802 273.177 5.219 33.462 5.219 106.529 0 139.991-14.204 91.202-46.609 169.522-98.172 237.502-84.662 111.583-205.659 181.81-345.154 200.275-19.985 2.643-79.377 4.558-98.139 3.138zM553.323 891.689c91.342-8.831 173.147-43.834 239.414-97.32l-0.855 0.668c18.63-14.798 52.356-48.524 67.155-67.155 37.558-47.203 67.089-104.547 82.151-159.546 34.585-126.117 13.477-259.799-57.773-366.526-43.267-64.587-101.094-116.236-168.983-151.039l-2.521-1.174c-63.686-31.942-127.571-46.939-199.911-46.939-100.187 0-189.176 29.993-270.501 91.136-23.023 17.276-59.26 52.455-76.569 74.323-90.773 114.457-120.535 259.964-82.019 400.582 14.931 54.503 44.99 112.838 81.986 159.182 14.865 18.63 48.59 52.356 67.221 67.221 67.683 54.041 151.552 88.328 236.115 96.52 12.871 0.976 27.877 1.532 43.014 1.532 14.806 0 29.488-0.532 44.027-1.579l-1.95 0.113zM487.49 723.786c-12.982-5.45-24.444-15.195-31.447-26.756-7.465-12.354-9.612-20.414-9.513-35.708 0.132-18.894 5.087-30.357 19.225-44.527 14.765-14.732 25.666-19.291 46.245-19.291 19.093 0 30.654 4.459 44.362 17.177 17.144 15.855 24.576 36.864 20.645 58.302-3.835 22.091-18.023 40.206-37.285 49.407l-0.405 0.174c-7.697 3.667-12.321 4.525-25.6 4.922-14.039 0.429-17.573-0.066-26.228-3.7zM445.44 392.539v-159.579h133.12v319.158h-133.12v-159.579z" />
|
||||
<glyph unicode="" glyph-name="right-arrow" horiz-adv-x="1112" d="M559.514 957.484c-15.243-3.277-30.31-11.703-44.442-24.781-20.539-19.017-31.685-39.409-34.289-62.786-1.463-13.166 2.048-29.755 9.918-47.045 11.791-25.893 24.839-39.965 136.221-147.134 35.933-34.421 67.601-65.127 99.094-96.010l-1.873 1.831 9.86-10.094-4.184-8.631-4.213-8.631h-725.606v-200.119h727.742l3.95-9.157c2.165-5.003 3.92-9.538 3.92-10.035s-36.484-35.46-81.042-77.678c-130.984-124.080-149.036-142.921-161.792-168.989-18.11-36.952-16.443-65.126 5.53-93.886 35.343-46.256 78.058-57.637 127.415-33.88 11.761 5.647 19.222 12.083 63.020 54.36 98.099 94.764 360.945 359.892 373.058 376.335 36.337 49.269 34.055 85.489-8.602 137.099-16.706 20.246-338.622 342.894-384.059 384.936-21.738 20.158-28.731 25.424-43.184 32.709-17.057 8.572-37.040 14.16-49.679 13.926-3.569-0.088-11.118-1.141-16.764-2.341z" />
|
||||
<glyph unicode="" glyph-name="download-new" horiz-adv-x="1100" d="M472.936 716.553v-243.484l-6.258-2.996-6.296-2.996-53.096 56.282c-99.025 104.979-110.478 114.195-141.881 114.309-16.232 0.038-29.241-5.879-42.818-19.418-16.953-16.953-23.817-37.888-19.115-58.103 5.613-24.159 3.831-22.149 146.508-165.319 73.159-73.425 137.975-137.444 144.043-142.298 18.887-15.095 28.786-19.266 45.928-19.304 13.122-0.038 16.081 0.645 26.814 6.068 7.396 3.793 20.025 13.312 32.882 24.879 32.768 29.468 256.076 255.924 264.002 267.719 9.595 14.298 15.208 33.071 13.805 46.421-2.238 21.921-18.508 43.729-40.695 54.575-8.154 3.982-12.402 4.855-24.045 4.779-12.553-0.038-15.663-0.796-27.989-6.903-16.081-7.964-29.81-20.708-90.567-84.12-23.969-25.062-42.557-44.37-61.193-63.631l4.19 4.352-18.394-18.925-5.992 2.882-6.030 2.844v485.831h-133.803v-243.447zM0 161.811c0-129.972 0.721-145.143 7.661-163.726 6.865-18.318 17.636-26.927 41.339-32.996 11.643-2.996 42.249-3.186 492.658-3.186h480.294l12.933 4.058c15.132 4.741 26.093 12.136 33.83 22.793 11.112 15.36 11.188 16.156 12.288 131.679 0.569 57.989 0.417 119.239-0.341 136.116l-1.365 30.72h-131.375l-1.176-7.964c-0.503-4.333-0.789-9.354-0.789-14.441 0-2.177 0.053-4.343 0.156-6.494l-0.012 0.304c0.303-6.978 0.379-46.27 0.19-87.343l-0.417-74.714h-812.070v190.654h-133.803v-125.459z" />
|
||||
<glyph unicode="" glyph-name="menu" horiz-adv-x="1536" d="M0 896v-64h1536v128h-1536v-64zM0 448v-64h1536v128h-1536v-64zM0 0v-64h1536v128h-1536v-64z" />
|
||||
<glyph unicode="" glyph-name="caret" d="M192 832l640-384-640-384z" />
|
||||
<glyph unicode="" glyph-name="apple" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 130 KiB |
7
wordpress/wp-content/themes/lawcarta/assets/img/404.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="106" height="84" viewBox="0 0 106 84" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.768919 22.2744L0.832496 71.4038C0.959694 72.7402 2.16819 74.0767 3.69468 74.0767H16.2551C17.3271 74.0767 18.1961 73.208 18.1961 72.1357C18.1961 71.064 17.3271 70.1948 16.2551 70.1948H5.88035C5.20017 70.1948 4.64866 69.6436 4.64866 68.9634V22.2744V17.6484C4.64866 16.7236 5.39829 15.9746 6.32298 15.9746H100.033C100.957 15.9746 101.707 16.7236 101.707 17.6484V68.9399C101.707 69.6333 101.145 70.1948 100.452 70.1948H89.846C88.774 70.1948 87.905 71.064 87.905 72.1357C87.905 73.208 88.774 74.0767 89.846 74.0767H102.152C103.933 74.0767 105.332 73.1221 105.332 71.4038V3.11914C105.332 1.46484 103.933 0.446289 102.152 0.446289H95.6339L73.1352 0.5L3.69468 0.446289C0.382057 0.446289 0.570289 4.80273 0.715309 8.1582C0.742897 8.79688 0.768898 9.39941 0.768898 9.92871L0.768919 22.2744ZM49.9999 4.32812H6.32298C5.39829 4.32812 4.64866 5.07812 4.64866 6.00293V10.418C4.64866 11.3428 5.39829 12.0918 6.32298 12.0918H100.033C100.957 12.0918 101.707 11.3428 101.707 10.418V6.00293C101.707 5.07812 100.957 4.32812 100.033 4.32812H96.9998H49.9999Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.2627 54.9903C47.2627 53.7574 48.2622 52.7579 49.4951 52.7579H56.6061C57.839 52.7579 58.8384 53.7574 58.8384 54.9903V73.8175C58.8384 75.0504 57.839 76.0499 56.606 76.0499H49.4951C48.2622 76.0499 47.2627 75.0504 47.2627 73.8175V54.9903ZM53.0505 56.6397C51.9967 56.6397 51.1425 57.4942 51.1425 58.5479V70.2599C51.1425 71.3136 51.9967 72.1676 53.0505 72.1676C54.1044 72.1676 54.9586 71.3136 54.9586 70.2599V58.5479C54.9586 57.4942 54.1044 56.6397 53.0505 56.6397Z" fill="#0055D6"/>
|
||||
<path d="M31.7437 64.0807C31.7437 65.3136 32.743 66.3131 33.9761 66.3131H37.2708C38.5037 66.3131 39.5032 67.3126 39.5032 68.5455V74.11C39.5032 75.1812 40.3717 76.0499 41.4431 76.0499C42.5144 76.0499 43.3829 75.1812 43.3829 74.11V54.6978C43.3829 53.6261 42.5144 52.7579 41.4431 52.7579C40.3717 52.7579 39.5032 53.6261 39.5032 54.6978V60.5548C39.5032 61.6261 38.6346 62.4947 37.5632 62.4947C36.4919 62.4947 35.6234 61.6261 35.6234 60.5548V54.6978C35.6234 53.6261 34.7549 52.7579 33.6835 52.7579C32.6122 52.7579 31.7437 53.6261 31.7437 54.6978V64.0807Z" fill="#0055D6"/>
|
||||
<path d="M62.6849 54.7545C62.6849 53.6832 62.8163 52.8145 63.8876 52.8145C64.959 52.8145 66.5647 53.6832 66.5647 54.7545V60.4845C66.5647 61.6261 67.4901 62.5514 68.6317 62.5514C69.7734 62.5514 70.6988 61.6261 70.6988 60.4845V54.6275C70.6988 53.6261 71.5104 52.8145 72.5115 52.8145C73.5127 52.8145 74.3242 53.6261 74.3242 54.6275V74.294C74.3242 75.295 73.5127 76.1065 72.5115 76.1065C71.5104 76.1065 70.6988 75.295 70.6988 74.294V68.6021C70.6988 67.3692 69.6993 66.3697 68.4664 66.3697H64.9172C63.6843 66.3697 62.6849 65.3702 62.6849 64.1373V54.7545Z" fill="#0055D6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.2168 30.7384L36.9994 44.8468C36.8936 44.9801 36.7327 45.0577 36.5626 45.0577H27.0989C24.3247 45.0577 22.0759 47.3062 22.0759 50.0802V78.7271C22.0759 81.5011 24.3248 83.7501 27.0989 83.7501H79.0023C81.7764 83.7501 84.0253 81.5011 84.0253 78.7271V50.0802C84.0253 47.3062 81.7764 45.0577 79.0023 45.0577H69.7052C69.5658 45.0577 69.433 45.0064 69.3203 44.9239C69.2261 44.8551 69.1457 44.7643 69.0875 44.6632C68.3901 43.4513 65.909 40.4561 63.4912 37.5377C60.8559 34.357 58.2958 31.2667 58.2024 30.6749C58.1765 30.338 58.2772 30.0753 58.4058 29.7403C58.5928 29.252 58.8385 28.6104 58.8385 27.3653C58.8385 22.211 51.397 19.3468 48.1532 24.629C46.7451 26.9776 47.4751 28.8116 47.959 30.0274C48.0652 30.295 48.1596 30.5323 48.2168 30.7384ZM25.9557 50.5499C25.9557 49.6256 26.7053 48.8761 27.63 48.8761H78.7256C79.6503 48.8761 80.3999 49.6256 80.3999 50.5499V78.1939C80.3999 79.1187 79.6503 79.8683 78.7256 79.8683H27.63C26.7053 79.8683 25.9557 79.1187 25.9557 78.1939V50.5499ZM52.1947 33.2999L52.2028 33.3028L52.3464 33.3331C52.3991 33.3438 52.4517 33.3536 52.5053 33.3624L52.5916 33.377C52.7291 33.3976 52.8767 33.4112 53.0507 33.4112C53.3167 33.4112 53.5095 33.3956 53.6671 33.3722C53.8174 33.3507 53.9354 33.3214 54.0544 33.2921L54.0643 33.2892C54.2101 33.253 54.3583 33.2159 54.5691 33.1905C54.7351 33.17 54.9399 33.1573 55.2131 33.1573C56.083 34.4464 58.1115 36.8951 60.1 39.2955C61.6354 41.149 63.147 42.9737 64.083 44.214C64.3516 44.5694 64.0931 45.0577 63.6475 45.0577H42.8175C42.3512 45.0577 42.0906 44.5196 42.3795 44.1534L49.8069 34.7481C49.912 34.63 50.0116 34.525 50.1052 34.4264C50.3272 34.1935 50.5154 33.9962 50.6626 33.7364C50.7543 33.5753 50.83 33.3897 50.8881 33.1573C51.5129 33.1573 51.8726 33.2325 52.1947 33.2999ZM51.1425 27.6202C51.1425 24.8204 54.9587 25.3292 54.9587 27.1114L54.9595 27.2491C54.9662 28.1036 54.9773 29.5294 53.0507 29.5294C51.9058 29.5294 51.1425 28.7657 51.1425 27.6202Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
BIN
wordpress/wp-content/themes/lawcarta/assets/img/app-store.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,13 @@
|
||||
<svg width="28" height="29" viewBox="0 0 28 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M13.7654 28.4195C21.3678 28.4195 27.5308 22.2565 27.5308 14.6541C27.5308 7.05166 21.3678 0.888672 13.7654 0.888672C6.16298 0.888672 0 7.05166 0 14.6541C0 22.2565 6.16298 28.4195 13.7654 28.4195Z" fill="#5197E6"/>
|
||||
<path d="M27.5312 14.6541C27.5312 14.0184 27.4881 13.3929 27.4047 12.7801L21.5223 6.89764L13.7658 8.83712L7.58537 16.0084L5.65918 22.0194L5.97772 22.3787L11.9392 28.2994C12.5368 28.3786 13.1465 28.4195 13.7658 28.4195C21.3683 28.4195 27.5312 22.2566 27.5312 14.6541Z" fill="#144684"/>
|
||||
<path d="M14.6175 10.8759L13.0153 12.4781C12.7565 12.7369 12.5808 13.0478 12.488 13.3774C13.1855 13.1812 13.9664 13.357 14.514 13.9047C15.0618 14.4524 15.2375 15.2333 15.0413 15.9307C14.9486 16.2602 14.7729 16.5711 14.5141 16.8299L12.9118 18.4322L10.8346 20.5094C10.0281 21.3159 8.71584 21.3159 7.90933 20.5094C7.10282 19.7029 7.10282 18.3906 7.90933 17.5842L9.98656 15.5069C9.51392 14.1446 9.67743 12.6087 10.4771 11.3664C10.1973 11.5465 9.93242 11.7589 9.68776 12.0035L6.00825 15.683C4.15347 17.5378 4.15353 20.5557 6.00825 22.4105C7.86298 24.2653 10.8809 24.2653 12.7357 22.4105L16.4152 18.731C16.6599 18.4864 16.8723 18.2215 17.0524 17.9416C17.852 16.6994 18.0155 15.1635 17.5429 13.8011C17.315 13.1441 16.9391 12.5274 16.4152 12.0035C15.8912 11.4797 15.2746 11.1038 14.6175 10.8759Z" fill="#DADADA"/>
|
||||
<path d="M14.7951 6.89756L11.1156 10.5771C10.871 10.8217 10.6586 11.0866 10.4785 11.3664C9.67883 12.6086 9.51536 14.1446 9.98796 15.507C10.2159 16.164 10.5918 16.7807 11.1156 17.3045C11.6395 17.8284 12.2562 18.2043 12.9132 18.4322L14.5155 16.8299C14.7743 16.5711 14.95 16.2602 15.0427 15.9307C14.3453 16.1268 13.5644 15.9511 13.0167 15.4034C12.469 14.8557 12.2933 14.0748 12.4894 13.3774C12.5821 13.0478 12.7579 12.7369 13.0167 12.4781L14.6189 10.8759L16.6962 8.79863C17.5026 7.99217 18.8149 7.99217 19.6214 8.79863C20.4279 9.60515 20.4279 10.9174 19.6214 11.7239L17.5442 13.8011C18.0168 15.1635 17.8533 16.6994 17.0536 17.9417C17.3334 17.7615 17.5983 17.5492 17.843 17.3045L21.5225 13.625C23.3773 11.7702 23.3772 8.75234 21.5225 6.89756C19.6678 5.04277 16.6499 5.04277 14.7951 6.89756Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="27.5308" height="27.5308" fill="white" transform="translate(0 0.888672)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,13 @@
|
||||
<svg width="28" height="29" viewBox="0 0 28 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M13.7663 28.1232C21.3687 28.1232 27.5317 21.9602 27.5317 14.3578C27.5317 6.75543 21.3687 0.592468 13.7663 0.592468C6.16394 0.592468 0.000976562 6.75543 0.000976562 14.3578C0.000976562 21.9602 6.16394 28.1232 13.7663 28.1232Z" fill="#5197E6"/>
|
||||
<path d="M27.5093 13.5889L21.0257 7.10334C20.9183 7.13587 20.6503 7.01118 20.5325 7.03484C17.7516 7.49834 15.0634 7.03484 12.3752 7.77639C11.0775 8.1472 10.9848 9.72301 10.5213 10.7427C9.87245 12.5966 9.96515 14.6359 9.13084 16.3971C8.57469 17.6022 7.27693 18.3437 6.81342 19.7342C6.65883 20.3141 6.66797 21.0451 6.49316 21.5995L12.9984 28.1016C13.2524 28.1156 13.5081 28.1233 13.7656 28.1233C21.368 28.1233 27.531 21.9603 27.531 14.3579C27.531 14.0998 27.5233 13.8435 27.5093 13.5889Z" fill="#144684"/>
|
||||
<path d="M19.5227 6.47852H8.01111C6.83842 6.47852 5.8877 7.42918 5.8877 8.60193V20.1135C5.8877 21.2863 6.83836 22.2369 8.01111 22.2369H13.6885L13.6983 16.6059H12.2352C12.0451 16.6059 11.8907 16.4521 11.8901 16.262L11.8829 14.4467C11.8822 14.2557 12.0371 14.1002 12.2281 14.1002H13.6887V12.3463C13.6887 10.311 14.9317 9.20271 16.7474 9.20271H18.2374C18.4279 9.20271 18.5826 9.35725 18.5826 9.54792V11.0784C18.5826 11.2691 18.428 11.4236 18.2376 11.4236L17.3232 11.4241C16.3358 11.4241 16.1444 11.8933 16.1444 12.582V14.1004H18.3142C18.5211 14.1004 18.6814 14.281 18.6569 14.4861L18.4418 16.3014C18.4213 16.4752 18.2739 16.606 18.099 16.606H16.1542L16.1444 22.2372H19.5226C20.6953 22.2372 21.646 21.2864 21.646 20.1137V8.60193C21.6461 7.42924 20.6953 6.47852 19.5227 6.47852Z" fill="white"/>
|
||||
<path d="M13.6881 22.2368L13.6979 16.6058H13.6738V22.2368H13.6881Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="27.5308" height="27.5308" fill="white" transform="translate(0 0.592468)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg width="27" height="28" viewBox="0 0 27 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M13.0781 27.8269C20.3003 27.8269 26.1552 21.664 26.1552 14.0616C26.1552 6.45919 20.3003 0.296234 13.0781 0.296234C5.85579 0.296234 0.000976562 6.45919 0.000976562 14.0616C0.000976562 21.664 5.85579 27.8269 13.0781 27.8269Z" fill="#5196E6"/>
|
||||
<path d="M26.1044 12.859L20.1642 6.59808C16.5355 7.09477 12.7434 7.02067 9.11481 7.1095C7.61779 7.1095 6.12072 7.85105 6.38491 9.61227C6.91326 13.1347 7.17746 16.5645 6.56105 20.1796C6.46399 20.6391 6.25981 21.0985 5.99316 21.527L11.9272 27.7735C12.3063 27.8082 12.6898 27.827 13.0775 27.827C20.2998 27.827 26.1546 21.664 26.1546 14.0617C26.1547 13.6562 26.1371 13.2553 26.1044 12.859Z" fill="#144785"/>
|
||||
<path d="M19.209 6.1824H6.94697C6.19897 6.1824 5.59277 6.8205 5.59277 7.60787V20.5152C5.59277 21.3023 6.19897 21.9406 6.94697 21.9406H19.2089C19.9567 21.9406 20.5631 21.3023 20.5631 20.5152V7.60787C20.5632 6.8205 19.9568 6.1824 19.209 6.1824ZM10.2252 19.7891C10.2252 20.0183 10.0488 20.204 9.83108 20.204H8.15369C7.93592 20.204 7.75953 20.0182 7.75953 19.7891V12.3869C7.75953 12.1577 7.93602 11.972 8.15369 11.972H9.83118C10.0489 11.972 10.2253 12.1578 10.2253 12.3869V19.7891H10.2252ZM8.99236 11.2742C8.11221 11.2742 7.39879 10.5231 7.39879 9.59648C7.39879 8.67006 8.11216 7.91904 8.99236 7.91904C9.87261 7.91904 10.586 8.67017 10.586 9.59648C10.586 10.5232 9.87256 11.2742 8.99236 11.2742ZM18.9919 19.8225C18.9919 20.0332 18.8297 20.2041 18.6297 20.2041H16.8295C16.6295 20.2041 16.4672 20.0333 16.4672 19.8225V16.3503C16.4672 15.8325 16.6116 14.0807 15.1813 14.0807C14.0719 14.0807 13.8469 15.2797 13.8017 15.8177V19.8224C13.8017 20.0331 13.6395 20.204 13.4393 20.204H11.6983C11.4982 20.204 11.3359 20.0331 11.3359 19.8224V12.3535C11.3359 12.1428 11.4982 11.9719 11.6983 11.9719H13.4393C13.6395 11.9719 13.8017 12.1427 13.8017 12.3535V12.9992C14.2131 12.3494 14.8245 11.8477 16.1261 11.8477C19.0084 11.8477 18.992 14.6823 18.992 16.24V19.8226H18.9919V19.8225Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="26.1543" height="27.5308" fill="white" transform="translate(0 0.296234)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,13 @@
|
||||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M27.5308 13.7654C27.5308 21.3679 21.3679 27.5308 13.7654 27.5308C6.16289 27.5308 0 21.3679 0 13.7654C0 6.16289 6.16289 0 13.7654 0C21.3679 0 27.5308 6.16289 27.5308 13.7654Z" fill="#4A7AFF"/>
|
||||
<path d="M27.5308 13.7654C27.5308 21.3679 21.3679 27.5308 13.7654 27.5308C6.16289 27.5308 0 21.3679 0 13.7654C0 6.16289 6.16289 0 13.7654 0C21.3679 0 27.5308 6.16289 27.5308 13.7654Z" fill="#5297E7"/>
|
||||
<path d="M27.5305 13.7654C27.5305 12.9252 27.4549 12.1029 27.3108 11.3043L22.5197 6.51303L15.2379 14.0246L6.1884 14.088L9.30209 17.2019L7.87316 17.2189L10.0404 19.3862L9.11578 20.34L4.49902 19.5882L12.3719 27.4611C12.83 27.5071 13.2948 27.5308 13.7651 27.5308C21.3676 27.5308 27.5305 21.3679 27.5305 13.7654Z" fill="#10417E"/>
|
||||
<path d="M10.3271 21.2961C17.3207 21.2961 21.1452 15.502 21.1452 10.478C21.1452 10.3133 21.1418 10.1497 21.1343 9.98672C21.8766 9.44985 22.5218 8.78023 23.031 8.01798C22.3496 8.32066 21.6165 8.52461 20.8473 8.6164C21.6325 8.1459 22.2351 7.40109 22.5195 6.51323C21.7846 6.94886 20.9713 7.2654 20.1053 7.43616C19.4113 6.69723 18.4232 6.23492 17.33 6.23492C15.2299 6.23492 13.5271 7.93775 13.5271 10.0367C13.5271 10.3352 13.5605 10.6253 13.6256 10.9038C10.4659 10.7448 7.66375 9.23161 5.78869 6.93122C5.46186 7.49308 5.27387 8.1459 5.27387 8.84219C5.27387 10.1613 5.94517 11.326 6.96577 12.0071C6.34216 11.988 5.75613 11.8164 5.24384 11.5314C5.243 11.5473 5.243 11.5633 5.243 11.5799C5.243 13.4216 6.55367 14.9589 8.29325 15.3073C7.97398 15.3943 7.63791 15.4411 7.29092 15.4411C7.04601 15.4411 6.80782 15.4168 6.57614 15.3727C7.06029 16.8831 8.46381 17.9824 10.1282 18.0135C8.82655 19.0333 7.18737 19.641 5.40599 19.641C5.09933 19.641 4.79666 19.6235 4.49902 19.5882C6.18168 20.6666 8.17962 21.2961 10.3271 21.2961Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="27.5308" height="27.5308" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_3582_15417)">
|
||||
<path d="M29.5 46C29.5 33.5541 39.5541 23.5 52 23.5C39.5541 23.5 29.5 13.4459 29.5 1C29.5 13.4459 19.4459 23.5 7 23.5C19.4459 23.5 29.5 33.5984 29.5 46Z" fill="#0055D6"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_3582_15417" x="0" y="0" width="59" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="6"/>
|
||||
<feGaussianBlur stdDeviation="3.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.171667 0 0 0 0 0.429167 0 0 0 0.37 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3582_15417"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3582_15417" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
wordpress/wp-content/themes/lawcarta/assets/img/book-logo.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
wordpress/wp-content/themes/lawcarta/assets/img/bot-logo.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
wordpress/wp-content/themes/lawcarta/assets/img/casebook-bg.jpg
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 228 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="70" height="70" viewBox="0 0 70 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 1.64063C16.5761 1.64063 1.64063 16.5761 1.64063 35C1.64063 53.4239 16.5761 68.3594 35 68.3594C53.4239 68.3594 68.3594 53.4239 68.3594 35C68.3594 16.5761 53.4239 1.64063 35 1.64063ZM0 35C0 15.67 15.67 0 35 0C54.33 0 70 15.67 70 35C70 54.33 54.33 70 35 70C15.67 70 0 54.33 0 35Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7713 23.0268C51.0916 23.3471 51.0916 23.8665 50.7713 24.1869L29.8837 45.0745C29.5633 45.3948 29.0439 45.3948 28.7236 45.0745L19.2292 35.5801C18.9089 35.2597 18.9089 34.7403 19.2292 34.42C19.5496 34.0996 20.069 34.0996 20.3893 34.42L29.3036 43.3343L49.6112 23.0268C49.9315 22.7064 50.4509 22.7064 50.7713 23.0268Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 831 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="55" height="70" viewBox="0 0 55 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1517 4.35453C17.207 4.05303 33.6604 4.22532 36.2016 4.20378C37.9676 4.20378 39.8412 4.39761 40.5519 6.6158C40.9611 7.90795 40.7457 23.0692 40.7457 26.5365C40.7457 28.2163 40.4011 31.6405 41.3487 32.5665C42.3393 33.5572 45.8712 33.148 47.5941 33.1695C49.7262 33.1911 50.6953 35.1293 49.5108 36.9168L43.8469 44.6266C42.5978 46.2203 40.7242 49.0415 39.5612 50.3982C39.0228 51.0443 38.6998 51.6688 38.1614 52.3365C37.8599 52.681 37.7091 52.9395 37.4507 53.3056L36.0293 55.2223C34.1557 57.8066 31.2699 61.5323 29.6116 63.9658C29.1809 64.5904 28.7287 65.3226 27.9103 65.6025C26.8981 65.9687 25.9075 65.6456 25.3475 65.0857L18.2407 55.4807C17.9823 55.1146 17.81 54.8777 17.53 54.49L7.55891 40.944C6.80516 39.8026 4.37161 36.9598 4.19932 35.9261C4.0055 34.8493 4.50082 33.9879 5.16843 33.5572C6.22369 32.825 9.82018 33.2557 11.4138 33.148C13.8259 33.0188 13.5028 30.6929 13.5028 28.5178V8.44635C13.5028 6.14201 14.2781 4.89293 16.1517 4.35453ZM25.0245 19.5158C24.8091 19.8388 24.0985 19.8388 23.7539 19.9465C22.634 20.2911 21.3203 21.1525 20.5881 21.9924C16.1517 27.161 19.8128 34.2463 26.2521 34.3325C28.0395 34.354 30.5592 33.9664 31.2914 36.766C31.8729 39.0057 30.0424 40.7286 27.9318 40.7286C26.1444 40.7286 24.6799 41.0086 23.7108 39.9749C22.4187 38.5966 24.6369 38.5966 19.7913 38.5966C18.0038 38.5966 19.5975 42.6238 22.4187 44.1744C23.4309 44.7343 23.9046 44.6051 24.9814 44.9281C25.1322 46.048 24.7876 47.6416 25.1537 48.5246C26.1659 48.6323 27.9103 48.6107 28.944 48.5246C29.224 47.8355 29.0732 45.7895 29.0732 44.8204C34.8879 44.0021 37.9676 36.6583 32.9282 31.9851C29.6332 28.927 26.6828 31.0805 24.2923 29.7453C21.6218 28.2593 22.3756 23.7799 26.1659 23.7799C27.8026 23.7799 29.5901 23.4999 30.43 24.5552C31.0761 25.3305 30.6238 25.9119 31.7006 25.9119C32.842 25.9119 33.8757 25.9765 34.9525 25.8258C35.4909 24.4475 33.8111 20.0326 29.0948 19.6019C29.0086 18.5897 29.2025 16.8884 28.9871 16.07C28.3195 15.7901 26.6397 15.9193 25.8429 15.9193C24.8738 15.9193 25.003 16.2854 25.0245 17.233C25.0245 17.9867 25.0245 18.762 25.0245 19.5158ZM9.30332 28.9054C6.95591 29.0346 3.89782 28.4316 1.72269 31.059C0.968938 31.9635 0.365933 32.825 0.107503 34.354C-0.387822 37.2183 1.01201 39.3073 2.64874 41.3532C3.07945 41.8916 3.31635 42.2577 3.66092 42.753L8.31267 48.9769C8.48496 49.2353 8.54956 49.3645 8.76492 49.666C9.15257 50.1829 9.45407 50.549 9.86325 51.0874L22.2033 67.8207C23.194 69.0914 25.326 70.0389 27.1996 69.9959C29.1809 69.9528 31.0115 68.9837 32.0667 67.5838L45.4405 49.4722C45.8066 48.9553 46.1081 48.5246 46.5173 48.0508C46.8619 47.6201 47.2065 47.0817 47.5295 46.651C48.5417 45.2512 53.1288 39.2426 53.5595 38.252C54.7225 35.6246 53.9472 32.6096 52.332 30.9944C49.8554 28.5393 48.8216 29.1208 44.7944 28.9054C44.6652 26.4288 44.7944 20.1403 44.7944 17.233C44.7944 14.9717 44.9667 7.54184 44.536 5.84051C43.8253 3.01931 41.4994 0.736508 38.506 0.176575C37.0415 -0.103391 34.3711 0.0473602 32.7559 0.0473602C30.0854 0.0473602 16.927 -0.124927 15.4195 0.198111C12.4906 0.844187 10.2078 3.08392 9.54021 5.92665C9.13103 7.58491 9.30332 15.1009 9.30332 17.3407C9.30332 20.2049 9.43254 26.4503 9.30332 28.9054Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="58" height="70" viewBox="0 0 58 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.70577 50.2936L7.94094 48.4029L16.47 63.4023L13.3189 65.293L13.0248 64.8729C12.8987 64.7048 12.8147 64.5367 12.7307 64.4107L5.79817 52.2683C5.42003 51.596 5.08391 50.9238 4.70577 50.2936ZM30.4191 15.547C28.9065 15.547 26.3016 15.2529 25.3773 16.0091C24.0748 17.0595 24.7891 19.1603 26.1756 19.4544C27.0999 19.6645 30.4191 19.5384 31.6375 19.5384C33.8643 19.5384 34.3685 18.9082 34.3685 16.6814C34.3685 15.7571 34.4526 9.11864 34.3265 8.53043C34.1164 7.85819 33.5702 7.31199 32.898 7.14393C32.0157 6.93385 31.3854 7.31199 30.9653 7.77416C30.3351 8.40439 30.4191 8.90857 30.4191 9.95895C30.4191 11.7236 30.5451 13.8244 30.4191 15.547ZM19.075 19.1603C18.0246 11.3034 24.0328 4.87511 30.7972 4.07682C38.7801 3.15248 44.9143 8.9926 45.7547 15.9251C46.721 23.866 40.8809 30.1263 34.0324 31.0086C29.2847 31.5968 24.3269 29.2439 22.1421 26.3029C20.4615 23.992 19.4951 22.3534 19.075 19.1603ZM15.0415 17.2276V17.8158C15.0415 27.3112 23.0664 35.1681 32.5619 35.0841C46.637 35 54.5358 18.9502 46.721 7.56408L44.2421 4.70705C42.7296 3.36256 41.7212 2.52225 39.6624 1.59792C34.0744 -0.965011 27.5621 -0.460828 22.4782 3.11047C22.016 3.44659 21.7219 3.69868 21.2598 4.07682C20.5035 4.66503 20.3354 4.95914 19.6212 5.63138C19.4111 5.84146 19.3271 5.9675 19.159 6.17758C18.1927 7.354 17.2263 8.74051 16.6381 10.169C15.7558 12.1858 15.0415 14.6226 15.0415 17.2276ZM15.1676 46.5542C16.0919 45.882 16.8062 45.3358 17.6885 44.6635C19.3691 43.3611 20.9657 41.9746 23.9908 41.9746C25.2512 41.9746 26.8478 42.1846 28.1083 42.3107C29.4948 42.4367 30.7972 42.5628 32.1837 42.7308C32.982 42.7728 35.713 42.8569 36.0491 43.319C36.5533 43.9913 35.8391 44.4114 35.1248 44.4114L28.6124 44.6635C26.9738 44.7055 26.0495 44.4955 25.1672 45.6299C24.3689 46.6803 25.0832 48.2348 26.0915 48.5709C26.7638 48.823 29.3687 48.613 30.293 48.613C33.8223 48.4449 38.9482 49.1592 39.9566 44.9997C40.1666 44.0333 40.2927 44.2434 41.049 43.8232L48.2756 39.8318C49.1999 39.3276 50.1663 38.8234 51.1326 38.2772C53.2754 37.0588 53.5695 38.8654 53.2754 39.4536C53.0653 39.8738 52.5611 40.336 52.183 40.6721C51.8469 41.0082 51.5107 41.4284 51.1746 41.8485L43.5699 49.8734C43.1917 50.2936 42.8976 50.6297 42.5195 51.0498C39.7885 53.6968 36.1332 53.5287 32.1417 54.0329C29.4527 54.327 26.8478 54.6211 24.1588 54.9573C20.8396 55.3354 20.9237 54.9573 18.9489 56.4278C18.5288 56.7639 18.1086 57.058 17.6465 57.3521L16.344 55.1673C15.9238 54.4111 15.5457 53.7388 15.0835 52.9825L12.6046 48.5289L15.1676 46.5542ZM19.6212 60.7974C20.0413 60.5873 20.8816 59.9991 21.3018 59.6209C22.0581 59.0748 22.4362 59.1588 23.5286 59.0327C28.2763 58.4445 34.0744 57.9403 38.57 57.2681C41.9313 56.7219 44.4522 54.9152 46.5529 52.5204L51.2586 47.5206C51.7208 46.9744 52.099 46.5122 52.6872 46.008L56.0904 42.3947C58.6533 39.2436 57.0147 35.4622 54.2837 34.2438C52.7292 33.5715 51.0906 33.7396 49.6621 34.5379L42.4775 38.4873C41.301 39.0755 39.9986 39.9998 38.8642 40.462C38.402 40.1259 38.1499 39.8318 37.4777 39.4957C36.3012 38.9074 32.7299 38.7394 31.2174 38.6133C28.6545 38.3612 24.9571 37.773 22.4782 38.0671C18.5708 38.5713 16.0919 40.8401 13.1928 43.067C12.6046 43.4871 11.0921 44.7476 10.5039 45.0417C10.1678 44.0753 8.99132 43.277 7.68885 43.9493C6.30235 44.6635 3.69741 46.3021 2.14284 47.1844C1.21851 47.6886 0.126111 48.1508 6.52317e-05 49.3692C-0.0839652 50.3776 0.9244 51.7221 1.34455 52.4363L10.1257 67.8559C10.3778 68.2761 10.6719 68.8643 10.924 69.2424C11.6803 70.2088 12.8567 70.2088 13.9491 69.5365C15.7978 68.4441 17.6465 67.3938 19.4951 66.3014C20.4195 65.7972 21.5119 65.167 21.1337 63.6964C20.9237 62.7721 19.8733 61.6797 19.6212 60.7974Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="70" height="70" viewBox="0 0 70 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.5583 57.7407L46.5945 66.1639H11.5085C9.76236 66.1639 7.57288 66.4082 6.13434 65.6844C4.94912 65.0873 3.89057 63.8387 3.88153 61.9659C3.87248 60.0569 4.90389 58.935 6.03482 58.2564C7.27431 57.5055 9.78045 57.7407 11.409 57.7407H46.5583ZM44.2512 0.108575C42.4236 0.723801 42.9212 3.02185 42.9212 5.13895C42.9212 6.04369 42.7403 7.39176 43.2198 8.06127C43.6179 8.62221 44.414 9.18315 45.4093 8.86649C47.2006 8.30555 46.7302 5.97131 46.7302 3.8904C46.7302 3.0128 46.893 1.67378 46.4588 0.986176C46.0516 0.334761 45.3459 -0.253322 44.2512 0.108575ZM27.9748 6.9032C27.0068 7.14748 26.1744 7.89842 26.5001 9.22839C26.6992 10.0246 29.4586 12.5398 30.1553 13.2455C30.68 13.7702 31.3948 14.7745 32.7247 14.4307C33.5843 14.2045 34.3442 13.1912 34.0366 12.0602C33.8285 11.2731 32.8062 10.4317 32.3176 9.94314C31.6481 9.28267 31.06 8.69459 30.3996 8.02508C29.911 7.53652 29.1601 6.60463 27.9748 6.9032ZM60.9347 6.89415C59.8218 7.16557 57.7319 9.59029 56.8633 10.4588C56.3386 10.9836 55.3162 11.7074 55.5786 13.0102C55.7595 13.924 56.7185 14.7383 57.9219 14.4307C58.7452 14.2226 59.5052 13.2726 60.0028 12.775C60.6723 12.1145 61.2604 11.5264 61.9208 10.8569C62.4365 10.3503 63.4589 9.58124 63.1332 8.26936C62.9341 7.44604 62.0113 6.63178 60.9347 6.89415ZM21.1078 23.3786C18.9907 23.9667 19.3255 26.9523 21.4607 27.1061C22.3292 27.1695 27.8029 27.1785 28.3096 27.0156C30.1462 26.4457 30.0286 23.4871 27.8844 23.3062C27.052 23.2338 21.6507 23.2338 21.1078 23.3786ZM61.5046 23.3605C59.3152 23.9486 59.7404 26.8799 61.7127 27.0971C62.4456 27.1785 68.0278 27.1875 68.5978 27.0609C70.5702 26.6266 70.4526 23.4962 68.3264 23.3062C67.5483 23.2338 61.9751 23.2338 61.5046 23.3605ZM32.77 34.9683C31.82 35.2217 29.0243 38.2978 28.192 39.1302C27.6763 39.6459 26.3825 40.6049 26.4368 41.7449C26.482 42.8396 27.5768 43.8982 28.8615 43.5363C29.7753 43.2739 32.58 40.1978 33.4033 39.3744C33.9642 38.8226 35.1495 37.954 35.1314 36.7688C35.1133 35.6107 34.0366 34.6336 32.77 34.9683ZM55.9495 34.9955C54.4748 35.4388 54.2396 36.9135 54.7733 37.7821C55.09 38.2887 58.4014 41.4915 59.089 42.1791C59.668 42.7582 60.4913 44.0067 61.9208 43.5182C62.8618 43.1834 63.6489 41.9349 62.9975 40.7587C62.6627 40.1616 59.4328 37.0583 58.709 36.3345C58.148 35.7736 57.3066 34.5974 55.9495 34.9955ZM43.066 46.5038H46.5854L46.4588 47.4719C45.3731 47.6167 44.2783 47.6438 43.1926 47.499C43.0931 47.1733 43.066 47.0557 43.066 46.5038ZM40.6232 36.7507L49.0373 36.7869V42.6768H40.6594L40.6232 36.7507ZM43.7807 13.915C49.5711 13.2907 54.1219 17.4977 54.9905 22.32C55.5333 25.3147 54.6014 28.2913 53.2534 30.1913C52.5115 31.2318 51.7606 31.8832 50.7382 32.6432C50.1953 33.0503 49.1549 32.8693 48.4221 32.8693H41.0665C40.1979 32.8693 39.4108 33.0231 38.7956 32.5979C36.5518 31.0237 34.5885 28.0109 34.498 24.5276C34.4166 21.361 35.7195 18.8639 37.158 17.1992C38.7142 15.3987 41.2565 14.1864 43.7807 13.915ZM36.787 35.8369C36.787 38.0083 36.787 40.1887 36.787 42.3691C36.787 44.812 36.4523 46.5038 39.2299 46.5038C39.2299 47.3633 39.248 47.9967 39.5737 48.7295C39.827 49.2904 40.2794 49.9871 40.6232 50.2676C41.7993 51.2266 42.8307 51.3985 44.794 51.3985C46.7935 51.3985 47.6259 51.3442 48.9106 50.3128C49.8425 49.5619 50.4125 48.25 50.4125 46.5129C53.2081 46.3772 52.8643 45.0743 52.8643 42.4687C52.8643 40.2882 52.8643 38.1169 52.8643 35.9364C53.0181 35.6107 53.3258 35.466 53.57 35.276C55.4338 33.8736 57.0081 31.7203 57.949 29.4946C61.6042 20.8001 55.3343 10.0879 44.9026 10.0246C31.9919 9.95219 24.7449 26.6809 36.787 35.8369ZM46.6035 53.9137C35.6018 53.9137 24.5911 53.9137 13.5804 53.9137C11.418 53.9137 7.64526 53.6875 5.77244 54.2575C4.98531 54.5018 4.54199 54.8184 3.89057 55.0627C3.76391 52.8551 3.88153 50.3128 3.88153 48.069V19.5515C3.88153 16.8916 4.03533 15.4349 5.76339 14.3221C7.38288 13.2816 10.0971 13.6435 12.2323 13.6435H22.9173C24.1387 13.6435 25.1792 13.8154 25.8577 13.0555C26.482 12.3679 26.5906 11.2098 25.903 10.4498C25.2154 9.69886 24.1659 9.81647 22.9173 9.81647C18.1493 9.81647 13.3723 9.81647 8.60429 9.81647C4.61437 9.80743 1.29396 12.015 0.316837 15.824C-0.162677 17.6968 0.0454144 27.1966 0.0454144 29.8204C0.0454144 39.3202 0.0454144 48.829 0.0454144 58.3379C0.0454144 62.6535 -0.316483 65.9196 3.80915 68.7334C5.50102 69.8914 7.35574 69.991 9.74426 69.991H45.4183C51.272 69.991 50.4215 70.7238 50.4215 60.6178C50.4215 59.1793 50.6115 54.5741 50.3672 53.4884C49.933 51.5975 46.8207 51.4256 46.6035 53.9137Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="71" height="70" viewBox="0 0 71 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6588 56.3592H38.7395C38.9477 57.7129 39.3642 59.2748 39.7027 60.6025C41.0043 65.8609 39.8328 65.08 48.4234 65.08C49.2824 65.08 50.4018 64.8196 50.1675 65.965C49.9332 66.1212 49.751 66.2254 49.3605 66.2254H20.7514C20.4911 66.2254 20.2828 66.1473 20.1006 66.0952C19.606 65.0279 20.439 65.08 21.3761 65.08C23.1723 65.08 28.2486 65.3403 29.0816 64.6634C29.9667 63.9085 30.5394 60.264 30.9819 58.5199L31.3724 56.8538C31.4765 56.4113 31.3464 56.5415 31.6588 56.3592ZM34.8347 42.8486C30.3832 42.8486 24.7863 41.7032 22.86 38.9699C23.1203 38.9959 24.7863 39.7248 25.333 39.907C31.4765 41.9115 40.0411 41.8334 46.0545 39.4385C47.3821 38.9178 47.0437 38.8137 47.304 39.074L47.1218 39.2823C47.1218 39.2823 47.0957 39.3083 47.0697 39.3343C46.6792 39.8289 46.8094 39.6727 46.2627 40.0632C43.217 42.2759 38.5573 42.8486 34.8347 42.8486ZM22.6517 28.6872C24.526 29.2339 33.9496 34.1019 35.1471 34.0498C36.2404 34.0238 45.1954 29.5203 47.5123 28.6612L47.4602 34.3622C47.3561 34.6486 45.5338 35.5597 45.0652 35.7679C38.9217 38.3972 29.8105 38.1629 23.9533 35.2213C23.1723 34.8048 22.6777 34.5444 22.6517 33.8936C22.5736 32.2797 22.6517 30.3533 22.6517 28.6872ZM15.0243 20.9818C16.2218 20.4351 34.9909 13.6928 35.069 13.6928C35.3813 13.6668 43.9979 16.9208 45.1433 17.3113L54.8533 20.8776C55.1396 21.0078 54.9834 20.9297 55.1396 21.0599C53.2653 21.8929 35.3813 30.0409 35.069 30.0409C35.0429 30.0409 15.7793 21.5024 15.0243 20.9818ZM18.8771 26.9171C18.9552 29.8587 18.8771 32.9044 18.8771 35.846C18.8771 39.3864 18.6167 40.1673 21.0898 42.6144C24.0574 45.556 30.6175 46.6233 34.9388 46.6233C39.989 46.6493 45.0913 45.7382 48.944 42.7445C51.4691 40.7921 51.2869 38.7096 51.2869 36.1584C51.2869 33.1387 51.2869 30.119 51.2869 27.0993C51.365 26.7869 51.6253 26.7869 52.2501 26.5006C52.6145 26.3183 52.9529 26.1621 53.3434 26.032C53.3434 27.2295 53.1612 35.9762 53.5256 36.7051C53.8901 37.434 54.9053 38.1108 55.9726 37.6422C56.9358 37.2257 57.1181 36.4968 57.1181 35.2213C57.1181 34.0238 57.1181 32.8263 57.1441 31.6289C57.1701 29.1819 57.1441 26.7088 57.1441 24.2618C57.7949 24.0536 60.9708 22.6218 61.4133 22.2834C61.934 21.8929 62.3765 20.9037 61.9079 19.9926C61.5175 19.1856 60.9708 19.0814 60.0076 18.717L36.7871 10.2306C34.5483 9.42358 34.8347 9.73596 31.9712 10.7512C25.7495 12.9639 19.606 15.3068 13.3843 17.5716C12.317 17.936 9.60968 18.7951 8.82872 19.2897C8.25602 19.6281 7.78744 20.6694 8.22999 21.6065C8.59443 22.3615 9.24523 22.5958 10.0783 22.9602L18.8771 26.9171ZM3.88264 4.76385C3.88264 3.95686 4.0128 3.77464 4.8198 3.77464H65.3962C66.0731 3.77464 66.3074 4.00893 66.3074 4.65972V51.6735C66.3074 52.4024 66.1251 52.5846 65.3962 52.5846H4.71567C4.40328 52.5846 4.24709 52.5065 4.03884 52.4544C3.93471 52.1941 3.88264 51.9859 3.88264 51.5954V4.76385ZM27.5718 56.3592L26.4263 61.2793C24.8905 61.2793 23.3285 61.2793 21.7927 61.2793C20.1266 61.2793 19.0593 61.3834 17.9399 62.1383C17.185 62.6329 16.352 63.8304 16.1958 65.1581C15.8834 67.8914 17.8879 70 20.8555 70H49.2564C50.8964 70 51.8596 69.6095 52.7187 68.7505C53.4736 67.9955 54.1504 66.8241 53.9942 65.2622C53.8901 63.9085 53.0831 62.685 52.3282 62.1904C50.9485 61.2793 50.4799 61.2793 48.5275 61.2793C46.9395 61.2793 45.3256 61.2793 43.7376 61.2793L42.5922 56.3853L64.8756 56.3592C67.4007 56.3853 68.8845 55.5002 69.6655 53.7821C70.3683 52.3243 70.082 48.7319 70.082 46.8576V9.70993C70.082 7.93975 70.3163 4.03496 69.7436 2.70733C68.9366 0.911119 67.4788 0 64.8756 0H5.41853C-0.959304 0 0.0819751 4.94608 0.0819751 9.50167V46.6493C0.0819751 50.502 -0.64692 53.9383 2.2166 55.7084C3.15375 56.2811 3.96074 56.3853 5.21028 56.3592H27.5718Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="59" height="45" viewBox="0 0 59 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M30.6747 1.03127L30.7095 1.05076C31.1621 1.31379 31.54 1.69154 31.8052 2.14715L31.8053 2.14734C32.0782 2.61605 32.2224 3.14923 32.2224 3.69255V41.2961V41.2965C32.2229 42.0238 31.9665 42.7263 31.5003 43.2792L31.9972 43.6983L31.5003 43.2792C31.0345 43.8315 30.3893 44.1968 29.6822 44.3113L29.6818 44.3114C28.9744 44.4263 28.2491 44.2829 27.6361 43.9065L12.6861 34.7098L12.5294 34.6134H12.3455H8.25463C6.24018 34.6134 4.30635 33.8056 2.87942 32.3667C1.45255 30.9274 0.65017 28.9741 0.65 26.9362C0.65 26.936 0.65 26.9358 0.65 26.9356V18.0534C0.65 16.0153 1.4524 14.0619 2.87934 12.6223C4.30625 11.1834 6.24029 10.3756 8.25463 10.3756H12.3455H12.5291L12.6856 10.2795L27.6602 1.08453C27.6608 1.0842 27.6613 1.08387 27.6619 1.08354C28.1159 0.808964 28.6326 0.659485 29.1605 0.650496L29.1611 0.650484C29.6893 0.640953 30.2118 0.77231 30.6747 1.03127ZM11.2068 15.2765L11.2068 14.6266H10.5568H8.25479C7.35114 14.6266 6.48528 14.9889 5.84756 15.6322C5.21051 16.2748 4.85369 17.1457 4.85369 18.0525V26.9346C4.85369 27.8415 5.21053 28.7122 5.84754 29.3548C6.48528 29.9982 7.35115 30.3604 8.25478 30.3604H10.5574H11.2075L11.2074 29.7104L11.2068 15.2765ZM27.0272 38.5904L28.0191 39.2039L28.0191 38.0376L28.0184 6.98705L28.0184 5.82397L27.0278 6.43346L15.7189 13.3916L15.4095 13.5819V13.9452V31.0426V31.4049L15.7176 31.5954L27.0272 38.5904ZM38.893 13.2752L38.9281 13.2397C39.3201 12.8558 39.8441 12.6414 40.3896 12.6414C40.9494 12.6414 41.4872 12.8677 41.8826 13.272L41.885 13.2745C44.3015 15.7191 45.6594 19.0315 45.6594 22.4865C45.6594 25.9409 44.3015 29.254 41.885 31.6984L41.884 31.6995C41.3533 32.2389 40.5786 32.4505 39.852 32.2573C39.1249 32.0634 38.5523 31.4923 38.3537 30.755C38.155 30.017 38.362 29.2291 38.8942 28.6882C40.5232 27.0416 41.4375 24.8109 41.4375 22.4866C41.4375 20.1611 40.5227 17.9308 38.8932 16.2835L38.893 16.2833C38.499 15.8853 38.2763 15.3438 38.2763 14.7792C38.2763 14.2141 38.499 13.6732 38.893 13.2752ZM48.4499 5.57569L48.4824 5.54289C48.873 5.16434 49.3924 4.95268 49.9321 4.95125C50.4867 4.94978 51.0202 5.17032 51.4161 5.56671C55.8555 10.0568 58.35 16.1407 58.35 22.4853C58.35 28.8259 55.8586 34.9064 51.424 39.396C50.8878 39.8946 50.135 40.0761 49.435 39.8781L49.4349 39.8781C48.7307 39.679 48.1773 39.1228 47.9783 38.4068L47.9782 38.4064C47.7796 37.6935 47.9627 36.9292 48.4586 36.387C52.102 32.6945 54.1473 27.6978 54.1473 22.4901C54.1473 17.278 52.0989 12.2775 48.4504 8.58432L48.4499 8.5838C48.0558 8.1858 47.8331 7.6449 47.8331 7.07975C47.8331 6.51519 48.0559 5.97366 48.4499 5.57569Z" fill="#8F9FB9" stroke="white" stroke-width="1.3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="61" height="50" viewBox="0 0 61 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.37622 24.8122L6.16251 25L6.37622 25.1878C7.81425 26.4514 8.72065 28.2988 8.72065 30.3571V43.75C8.72065 45.3686 10.0384 46.6786 11.6618 46.6786H12.5589C13.4129 46.6786 14.103 47.3671 14.103 48.2143C14.103 49.0614 13.4129 49.75 12.5589 49.75H11.6618C8.33076 49.75 5.63243 47.0626 5.63243 43.75V30.3571C5.63243 28.2456 3.91276 26.5357 1.7942 26.5357C1.26356 26.5357 0.884154 26.3401 0.635011 26.0611C0.381837 25.7777 0.25 25.3928 0.25 25C0.25 24.6072 0.381837 24.2223 0.635011 23.9389C0.884154 23.6599 1.26356 23.4643 1.7942 23.4643C3.91276 23.4643 5.63243 21.7544 5.63243 19.6429V6.25C5.63243 2.93739 8.33076 0.25 11.6618 0.25H12.5589C13.4129 0.25 14.103 0.938559 14.103 1.78571C14.103 2.63287 13.4129 3.32143 12.5589 3.32143H11.6618C10.0384 3.32143 8.72065 4.63136 8.72065 6.25V19.6429C8.72065 21.7012 7.81425 23.5486 6.37622 24.8122ZM54.6238 25.1878L54.8375 25L54.6238 24.8122C53.1857 23.5486 52.2793 21.7012 52.2793 19.6429V6.25C52.2793 4.63136 50.9616 3.32143 49.3382 3.32143H48.4411C47.5871 3.32143 46.897 2.63287 46.897 1.78571C46.897 0.93856 47.5871 0.25 48.4411 0.25H49.3382C52.6692 0.25 55.3676 2.93739 55.3676 6.25V19.6429C55.3676 21.7544 57.0872 23.4643 59.2058 23.4643C59.7364 23.4643 60.1158 23.6599 60.365 23.9389C60.6182 24.2223 60.75 24.6072 60.75 25C60.75 25.3928 60.6182 25.7777 60.365 26.0611C60.1158 26.3401 59.7364 26.5357 59.2058 26.5357C57.0872 26.5357 55.3676 28.2456 55.3676 30.3571V43.75C55.3676 47.0626 52.6692 49.75 49.3382 49.75H48.4411C47.5871 49.75 46.897 49.0614 46.897 48.2143C46.897 47.3671 47.5871 46.6786 48.4411 46.6786H49.3382C50.9616 46.6786 52.2793 45.3686 52.2793 43.75V30.3571C52.2793 28.2988 53.1857 26.4514 54.6238 25.1878ZM16.1471 12.25C15.2931 12.25 14.603 11.5614 14.603 10.7143C14.603 9.86713 15.2931 9.17857 16.1471 9.17857H28.7059C29.5599 9.17857 30.25 9.86713 30.25 10.7143C30.25 11.5614 29.5599 12.25 28.7059 12.25H16.1471ZM16.1471 40.8214C15.2931 40.8214 14.603 40.1329 14.603 39.2857C14.603 38.4386 15.2931 37.75 16.1471 37.75H28.7059C29.5599 37.75 30.25 38.4386 30.25 39.2857C30.25 40.1329 29.5599 40.8214 28.7059 40.8214H16.1471ZM28.7059 22.0714C27.8519 22.0714 27.1618 21.3829 27.1618 20.5357C27.1618 19.6886 27.8519 19 28.7059 19H44.8529C45.7069 19 46.397 19.6886 46.397 20.5357C46.397 21.3829 45.7069 22.0714 44.8529 22.0714H28.7059ZM28.7059 31C27.8519 31 27.1618 30.3114 27.1618 29.4643C27.1618 28.6171 27.8519 27.9286 28.7059 27.9286H44.8529C45.7069 27.9286 46.397 28.6171 46.397 29.4643C46.397 30.3114 45.7069 31 44.8529 31H28.7059Z" fill="#8F9FB9" stroke="white" stroke-width="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="65" height="65" viewBox="0 0 65 65" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M33.9534 10.1636L33.9534 10.1636C30.7818 7.8144 26.2673 9.90308 26.0048 13.8412L25.5745 20.2952L25.5568 20.5618H25.824H33.1771C34.1608 20.5618 34.9583 21.3593 34.9583 22.343C34.9583 23.3268 34.1608 24.1243 33.1771 24.1243H25.5532H25.3193L25.3037 24.3577L23.6776 48.7485C23.2066 55.8146 14.8426 59.2791 9.51292 54.6157L9.3483 54.8039L9.51292 54.6157L8.98332 54.1523C8.98332 54.1523 8.98331 54.1523 8.98331 54.1523C8.24294 53.5044 8.16797 52.3791 8.81575 51.6389C9.46356 50.8986 10.5889 50.8235 11.3293 51.4712L11.8588 51.9346C14.9683 54.6554 19.8482 52.6342 20.123 48.5114L21.7311 24.3909L21.7489 24.1243H21.4816H15.5729C14.5892 24.1243 13.7917 23.3268 13.7917 22.343C13.7917 21.3593 14.5892 20.5618 15.5729 20.5618H21.7525H21.9864L22.0019 20.3284L22.4502 13.6042C22.9002 6.85442 30.6378 3.27439 36.0738 7.30095L37.081 8.04711L37.081 8.04713C37.8716 8.63266 38.0377 9.74814 37.4523 10.5387C36.8666 11.3292 35.751 11.4953 34.9606 10.9098L33.9534 10.1636Z" fill="#8F9FB9" stroke="white" stroke-width="0.5"/>
|
||||
<path d="M45.1394 41.5859L49.3083 49.5067C49.9903 50.8028 51.6997 51.1294 52.8118 50.1762L53.6844 49.4282C54.4313 48.7879 55.5559 48.8745 56.1962 49.6215C56.8362 50.3685 56.7498 51.4928 56.0028 52.1331L55.1302 52.8811C52.2816 55.3228 47.9032 54.4859 46.1558 51.1659L42.5743 44.3609L42.4162 44.0606L42.1763 44.3006L33.0822 53.3944L33.0822 53.3944C32.3869 54.09 31.259 54.09 30.5633 53.3944C29.8677 52.6987 29.8677 51.5708 30.5633 50.8752L40.5487 40.8898L40.6789 40.7596L40.5931 40.5966L37.358 34.4504C37.358 34.4503 37.358 34.4503 37.358 34.4503C36.6761 33.1543 34.9666 32.8276 33.8549 33.7809L32.982 34.5289L32.982 34.5289C32.2351 35.1692 31.1105 35.0825 30.4705 34.3358L30.4705 34.3358C29.8301 33.5889 29.9166 32.4643 30.6635 31.824L31.5364 31.076L31.5364 31.076C34.3848 28.6343 38.7635 29.4711 40.5106 32.7912L40.5106 32.7912L43.1583 37.8219L43.3163 38.1222L43.5563 37.8822L50.8758 30.5627C51.5715 29.8671 52.6991 29.8671 53.3947 30.5627C54.0904 31.2583 54.0904 32.3862 53.3947 33.0819L45.1839 41.2927L45.0536 41.423L45.1394 41.5859Z" fill="#8F9FB9" stroke="white" stroke-width="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="67" height="47" viewBox="0 0 67 47" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.7799 6.88148L56.9342 6.91234L63.1985 7.74552H63.322C65.0809 7.99239 66.3461 9.53533 66.1301 11.2326L61.8099 44.1896C61.5939 45.7017 60.2361 46.8743 58.6315 46.8743C58.4772 46.8743 58.3537 46.8435 58.1994 46.8435L3.27102 39.5917C2.99329 39.5608 2.71556 39.4682 2.43783 39.3448H2.40698C1.04919 39.0362 0 37.8019 0 36.3515V3.08587C0 1.38864 1.38864 0 3.08587 0H53.6941C55.3913 0 56.7799 1.38864 56.7799 3.08587V6.88148ZM2.839 36.3515C2.839 36.4749 2.93157 36.5984 3.08587 36.5984H53.6941C53.8175 36.5984 53.9409 36.4749 53.9409 36.3515V21.6319L53.8484 21.5702L43.0478 14.2876L42.9553 14.2258L42.8318 14.3184L21.8479 31.1055C21.6011 31.3215 21.2925 31.4141 20.953 31.4141C20.6444 31.4141 20.3359 31.3215 20.0581 31.1055C17.034 28.5751 14.0098 26.0756 11.0165 23.5452L2.96243 29.1614H2.839V36.3515ZM58.94 43.9119L58.9709 43.8502L59.0018 43.8193L63.2911 10.8623L63.322 10.6462L56.9651 9.7822L56.7799 9.75134V36.3515C56.7799 38.0487 55.3913 39.4374 53.6941 39.4374L13.4544 39.0362L58.6006 44.0353H58.6315C58.7858 44.0353 58.9092 43.9427 58.94 43.9119ZM20.0581 31.1055L11.0165 23.5452C14.0098 26.0756 17.034 28.5751 20.0581 31.1055ZM53.6632 18.0215L53.9409 18.2066V3.08587C53.9409 2.96243 53.8175 2.839 53.6941 2.839H3.08587C2.93157 2.839 2.839 2.96243 2.839 3.08587V25.7053L3.11672 25.5201L10.2759 20.6136C10.8005 20.2433 11.5103 20.2741 12.004 20.6753L20.8605 28.0814L20.9839 28.174L21.1073 28.0814L41.9986 11.356C42.4615 10.9548 43.1404 10.924 43.665 11.2943L53.6632 18.0215Z" fill="#8F9FB9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.2923 17.9906C18.2681 17.9906 15.7686 15.4911 15.7686 12.4361C15.7686 9.38105 18.2681 6.91235 21.2923 6.91235C24.3473 6.91235 26.816 9.38105 26.816 12.4361C26.816 15.4911 24.3473 17.9906 21.2923 17.9906ZM21.2923 9.75135C19.811 9.75135 18.6076 10.9548 18.6076 12.4361C18.6076 13.9173 19.811 15.1208 21.2923 15.1208C22.7735 15.1208 23.977 13.9173 23.977 12.4361C23.977 10.9548 22.7735 9.75135 21.2923 9.75135Z" fill="#8F9FB9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.74003 0.0998188C3.56024 0.309891 2.1737 1.33399 1.10047 2.9161C-0.179406 4.78706 0.120565 6.84183 0.120565 9.32987V46.0006C0.120565 50.5434 -0.899337 55.7362 2.99362 58.001C5.05343 59.2023 6.89992 58.9266 9.473 58.9266C21.9318 58.9266 34.384 58.9266 46.8361 58.9266C52.1023 58.9266 56.3019 59.9442 58.9349 56.0775C60.1748 54.2656 59.8815 52.0336 59.8815 49.6637V12.993C59.8815 8.36485 60.8948 3.24434 56.9951 1.03201C54.7687 -0.234984 53.3288 0.066995 50.5624 0.066995H13.1993C10.9595 0.066995 7.84649 -0.103689 5.74003 0.0998188ZM15.6257 38.1163C15.9124 37.6896 16.3457 37.5386 16.9056 37.1841C18.0455 36.4555 22.9584 33.5998 23.3583 33.0155C24.1449 31.8667 22.8517 30.4421 21.5185 31.0855L16.2457 34.3285C15.3858 34.8602 14.4125 35.4182 13.5593 35.9631C12.746 36.4817 11.3995 36.9741 11.5195 38.136C11.6395 39.2389 12.8727 39.5671 13.7059 40.1186L20.292 44.1494C20.6653 44.366 21.2785 44.819 21.6852 44.9831C22.8317 45.4426 23.885 44.3726 23.485 43.204C23.245 42.4819 22.0185 42.0027 21.0052 41.3659C20.092 40.7948 16.3123 38.3658 15.6257 38.1163ZM44.363 38.0769C43.6697 38.3921 42.4765 39.1995 41.7566 39.6525C40.87 40.2105 40.0101 40.7225 39.0835 41.3002C38.4969 41.6613 36.8837 42.5147 36.5971 43.0136C35.9771 44.0968 37.0437 45.4098 38.2569 45.0093C38.7635 44.8452 40.2834 43.808 40.8833 43.4404L46.2495 40.1645C47.0694 39.6656 48.4426 39.0814 48.4759 38.0507C48.5093 37.0003 47.436 36.5277 46.3961 35.9171L38.4369 31.0395C37.1704 30.5143 36.0238 31.7617 36.5637 32.8842C36.977 33.7442 43.7031 37.2892 44.363 38.0769ZM32.3242 25.4332C31.6509 25.6696 31.6042 25.7483 31.3842 26.5033L25.8981 46.6571C25.5781 47.9635 26.5114 49.0204 27.7113 48.5674C28.6112 48.2261 28.7512 47.0116 29.0311 45.9415C30.6643 39.8232 32.5441 33.3766 34.084 27.3304C34.404 26.1028 33.6707 24.954 32.3242 25.4332ZM3.05362 5.90963C2.8603 8.73248 3.00029 12.028 3.00029 14.9296H57.0018V6.23787C57.2018 4.57698 55.5086 2.83732 52.9155 2.83076L7.48653 2.83732C6.11999 2.83076 5.43339 2.93579 4.46015 3.53975C3.91354 3.88112 3.02029 4.89866 3.05362 5.90963ZM3.08028 53.5107C3.06695 54.4888 3.95353 55.3751 4.57347 55.7099C5.60671 56.2876 6.57995 56.1563 7.85983 56.1563H52.5422C53.8554 56.1629 54.6754 56.2548 55.6619 55.5458C56.1685 55.1847 57.0951 54.2328 56.9685 53.2022L56.9418 17.8641H3.00029C3.00029 23.8183 3.00029 29.7725 3.00029 35.7333C3.00029 41.6416 2.9003 47.6615 3.08028 53.5107Z" fill="#929FB8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="43" height="62" viewBox="0 0 43 62" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.7917 41.2046C15.426 41.2046 10.1827 36.3546 9.5977 30.1796L9.59771 30.1788C9.59771 30.1769 9.59675 30.1759 9.59723 30.1745L9.59771 30.1721C9.56208 29.7957 9.53945 29.4158 9.53945 29.0308V13.1737C9.53945 9.92374 10.836 6.9747 12.9319 4.78906L12.9333 4.78783L12.9355 4.7853C12.9363 4.78434 12.9372 4.78335 12.9382 4.78236C13.8732 3.80845 14.9662 2.98953 16.18 2.36479C16.181 2.36384 16.1819 2.36336 16.1834 2.36288C17.4251 1.7247 18.7887 1.29371 20.2307 1.1105C20.24 1.10964 20.2486 1.10714 20.2572 1.10464C20.2678 1.10159 20.2783 1.09854 20.2899 1.09854C20.2914 1.09854 20.2927 1.0989 20.294 1.09926C20.2954 1.09962 20.2967 1.09998 20.2981 1.09998C20.7887 1.04018 21.2852 1 21.7917 1C22.2981 1 22.7945 1.04018 23.2852 1.0995C23.2866 1.0995 23.288 1.09914 23.2893 1.09878C23.2906 1.09842 23.2919 1.09806 23.2934 1.09806C23.3047 1.09806 23.3152 1.10108 23.3258 1.10412C23.3345 1.10663 23.3432 1.10916 23.3526 1.11002C24.7941 1.29326 26.1572 1.72378 27.398 2.36142L27.4003 2.36248L27.403 2.36381C27.4047 2.36465 27.4064 2.36549 27.4081 2.36621C28.6176 2.98952 29.7072 3.80559 30.6403 4.77569C30.6434 4.7788 30.6462 4.78203 30.649 4.78526C30.6511 4.78772 30.6532 4.79017 30.6554 4.79258L30.6576 4.79483C32.7502 6.97997 34.0439 9.92656 34.0439 13.1732V29.0315C34.0439 35.7437 28.5474 41.2046 21.7917 41.2046ZM29.3394 5.62192C28.8882 5.17706 28.3957 4.7738 27.8709 4.41313V11.5085C27.8709 11.9108 28.2002 12.238 28.6046 12.238C29.01 12.238 29.3394 11.9108 29.3394 11.5085V5.62192ZM21.1831 2.55328C21.1412 2.55621 21.0993 2.55913 21.0575 2.56192V11.509C21.0575 11.9113 21.3868 12.2385 21.7922 12.2385C22.1976 12.2385 22.5269 11.9113 22.5269 11.509V2.56192C22.4851 2.55913 22.4432 2.55621 22.4014 2.55328C22.1996 2.5392 21.9975 2.52509 21.7922 2.52509C21.5869 2.52509 21.3848 2.5392 21.1831 2.55328ZM15.7144 4.41265C15.1896 4.77332 14.6966 5.17706 14.2449 5.6224L14.245 11.509C14.245 11.9113 14.5743 12.2385 14.9797 12.2385C15.3851 12.2385 15.7144 11.9113 15.7144 11.509V4.41265ZM11.0735 27.5681L11.0728 29.0316C11.0728 29.1088 11.078 29.1847 11.0832 29.2607C11.0867 29.3115 11.0902 29.3622 11.0921 29.4133L11.2543 30.9374C12.1623 35.9022 16.5371 39.6811 21.7915 39.6811C27.7016 39.6811 32.5102 34.9043 32.5102 29.032V13.1749C32.5102 11.1065 31.9045 9.18008 30.8732 7.54465V11.5092C30.8732 12.752 29.8553 13.7627 28.6045 13.7627C27.3537 13.7627 26.3368 12.7519 26.3368 11.5092V3.54419C25.6169 3.20743 24.8572 2.94194 24.0608 2.77069V11.5092C24.0608 12.7519 23.0429 13.7627 21.7921 13.7627C20.5412 13.7627 19.5234 12.7519 19.5234 11.5092V2.77069C18.727 2.94194 17.9677 3.20695 17.2479 3.54371V11.5088C17.2479 12.7515 16.23 13.7622 14.9792 13.7622C13.7283 13.7622 12.7105 12.7515 12.7105 11.5088V7.54418C11.6797 9.18022 11.0735 11.106 11.0735 13.1744V16.1679V17.692V19.46V20.9841V22.6837V24.2072V26.0441V27.5681Z" fill="#8F9FB9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.4483 29.8442C36.4483 28.1632 37.8244 26.7961 39.5164 26.7961C41.2083 26.7961 42.5842 28.1632 42.5842 29.8442C42.5842 40.1136 35.011 48.778 24.8595 50.2714V54.9038H33.9398C35.6317 54.9038 37.0078 56.2714 37.0078 57.9519C37.0078 59.6329 35.6317 61 33.9398 61H9.64416C7.95218 61 6.57612 59.6324 6.57612 57.9519C6.57612 56.2709 7.95218 54.9038 9.64416 54.9038H18.7234V50.2714C8.5723 48.7787 1 40.1139 1 29.8442C1 28.1632 2.37606 26.7961 4.06804 26.7961C5.76002 26.7961 7.13608 28.1637 7.13608 29.8442C7.13608 37.8738 13.7105 44.4057 21.7916 44.4057C29.8732 44.4057 36.4483 37.8728 36.4483 29.8442ZM23.3261 49.6031C23.3261 49.2157 23.6179 48.8899 24.0054 48.8459C33.7223 47.7364 41.0505 39.5665 41.0509 29.8436C41.0509 29.0031 40.3624 28.3196 39.517 28.3196C38.6715 28.3196 37.983 29.0031 37.983 29.8436C37.983 38.713 30.7206 45.9285 21.7929 45.9285C12.8655 45.9285 5.60286 38.7127 5.60286 29.8436C5.60286 29.0031 4.91439 28.3196 4.0689 28.3196C3.22346 28.3196 2.53495 29.0031 2.53495 29.8436C2.53495 39.5667 9.86245 47.7361 19.5792 48.8454C19.9663 48.8899 20.2586 49.2152 20.2586 49.6026V55.6653C20.2586 56.0863 19.9153 56.4273 19.4916 56.4273H9.64477C8.79933 56.4273 8.11082 57.1109 8.11082 57.9513C8.11082 58.7918 8.79929 59.4753 9.64477 59.4753L33.9404 59.4758C34.7858 59.4758 35.4743 58.7923 35.4743 57.9518C35.4743 57.1114 34.7859 56.4278 33.9404 56.4278H24.0931C23.6689 56.4278 23.3261 56.0867 23.3261 55.6658V49.6031Z" fill="#8F9FB9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.7917 41.2046C15.426 41.2046 10.1827 36.3546 9.5977 30.1796L9.59771 30.1788C9.59771 30.1769 9.59675 30.1759 9.59723 30.1745L9.59771 30.1721C9.56208 29.7957 9.53945 29.4158 9.53945 29.0308V13.1737C9.53945 9.92374 10.836 6.9747 12.9319 4.78906L12.9333 4.78783L12.9355 4.7853C12.9363 4.78434 12.9372 4.78335 12.9382 4.78236C13.8732 3.80845 14.9662 2.98953 16.18 2.36479C16.181 2.36384 16.1819 2.36336 16.1834 2.36288C17.4251 1.7247 18.7887 1.29371 20.2307 1.1105C20.24 1.10964 20.2486 1.10714 20.2572 1.10464C20.2678 1.10159 20.2783 1.09854 20.2899 1.09854C20.2914 1.09854 20.2927 1.0989 20.294 1.09926C20.2954 1.09962 20.2967 1.09998 20.2981 1.09998C20.7887 1.04018 21.2852 1 21.7917 1C22.2981 1 22.7945 1.04018 23.2852 1.0995C23.2866 1.0995 23.288 1.09914 23.2893 1.09878C23.2906 1.09842 23.2919 1.09806 23.2934 1.09806C23.3047 1.09806 23.3152 1.10108 23.3258 1.10412C23.3345 1.10663 23.3432 1.10916 23.3526 1.11002C24.7941 1.29326 26.1572 1.72378 27.398 2.36142L27.4003 2.36248L27.403 2.36381C27.4047 2.36465 27.4064 2.36549 27.4081 2.36621C28.6176 2.98952 29.7072 3.80559 30.6403 4.77569C30.6434 4.7788 30.6462 4.78203 30.649 4.78526C30.6511 4.78772 30.6532 4.79017 30.6554 4.79258L30.6576 4.79483C32.7502 6.97997 34.0439 9.92656 34.0439 13.1732V29.0315C34.0439 35.7437 28.5474 41.2046 21.7917 41.2046ZM29.3394 5.62192C28.8882 5.17706 28.3957 4.7738 27.8709 4.41313V11.5085C27.8709 11.9108 28.2002 12.238 28.6046 12.238C29.01 12.238 29.3394 11.9108 29.3394 11.5085V5.62192ZM21.1831 2.55328C21.1412 2.55621 21.0993 2.55913 21.0575 2.56192V11.509C21.0575 11.9113 21.3868 12.2385 21.7922 12.2385C22.1976 12.2385 22.5269 11.9113 22.5269 11.509V2.56192C22.4851 2.55913 22.4432 2.55621 22.4014 2.55328C22.1996 2.5392 21.9975 2.52509 21.7922 2.52509C21.5869 2.52509 21.3848 2.5392 21.1831 2.55328ZM15.7144 4.41265C15.1896 4.77332 14.6966 5.17706 14.2449 5.6224L14.245 11.509C14.245 11.9113 14.5743 12.2385 14.9797 12.2385C15.3851 12.2385 15.7144 11.9113 15.7144 11.509V4.41265ZM11.0735 27.5681L11.0728 29.0316C11.0728 29.1088 11.078 29.1847 11.0832 29.2607C11.0867 29.3115 11.0902 29.3622 11.0921 29.4133L11.2543 30.9374C12.1623 35.9022 16.5371 39.6811 21.7915 39.6811C27.7016 39.6811 32.5102 34.9043 32.5102 29.032V13.1749C32.5102 11.1065 31.9045 9.18008 30.8732 7.54465V11.5092C30.8732 12.752 29.8553 13.7627 28.6045 13.7627C27.3537 13.7627 26.3368 12.7519 26.3368 11.5092V3.54419C25.6169 3.20743 24.8572 2.94194 24.0608 2.77069V11.5092C24.0608 12.7519 23.0429 13.7627 21.7921 13.7627C20.5412 13.7627 19.5234 12.7519 19.5234 11.5092V2.77069C18.727 2.94194 17.9677 3.20695 17.2479 3.54371V11.5088C17.2479 12.7515 16.23 13.7622 14.9792 13.7622C13.7283 13.7622 12.7105 12.7515 12.7105 11.5088V7.54418C11.6797 9.18022 11.0735 11.106 11.0735 13.1744V16.1679V17.692V19.46V20.9841V22.6837V24.2072V26.0441V27.5681Z" stroke="#8F9FB9" stroke-width="0.738583"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.4483 29.8442C36.4483 28.1632 37.8244 26.7961 39.5164 26.7961C41.2083 26.7961 42.5842 28.1632 42.5842 29.8442C42.5842 40.1136 35.011 48.778 24.8595 50.2714V54.9038H33.9398C35.6317 54.9038 37.0078 56.2714 37.0078 57.9519C37.0078 59.6329 35.6317 61 33.9398 61H9.64416C7.95218 61 6.57612 59.6324 6.57612 57.9519C6.57612 56.2709 7.95218 54.9038 9.64416 54.9038H18.7234V50.2714C8.5723 48.7787 1 40.1139 1 29.8442C1 28.1632 2.37606 26.7961 4.06804 26.7961C5.76002 26.7961 7.13608 28.1637 7.13608 29.8442C7.13608 37.8738 13.7105 44.4057 21.7916 44.4057C29.8732 44.4057 36.4483 37.8728 36.4483 29.8442ZM23.3261 49.6031C23.3261 49.2157 23.6179 48.8899 24.0054 48.8459C33.7223 47.7364 41.0505 39.5665 41.0509 29.8436C41.0509 29.0031 40.3624 28.3196 39.517 28.3196C38.6715 28.3196 37.983 29.0031 37.983 29.8436C37.983 38.713 30.7206 45.9285 21.7929 45.9285C12.8655 45.9285 5.60286 38.7127 5.60286 29.8436C5.60286 29.0031 4.91439 28.3196 4.0689 28.3196C3.22346 28.3196 2.53495 29.0031 2.53495 29.8436C2.53495 39.5667 9.86245 47.7361 19.5792 48.8454C19.9663 48.8899 20.2586 49.2152 20.2586 49.6026V55.6653C20.2586 56.0863 19.9153 56.4273 19.4916 56.4273H9.64477C8.79933 56.4273 8.11082 57.1109 8.11082 57.9513C8.11082 58.7918 8.79929 59.4753 9.64477 59.4753L33.9404 59.4758C34.7858 59.4758 35.4743 58.7923 35.4743 57.9518C35.4743 57.1114 34.7859 56.4278 33.9404 56.4278H24.0931C23.6689 56.4278 23.3261 56.0867 23.3261 55.6658V49.6031Z" stroke="#8F9FB9" stroke-width="0.738583"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1,7 @@
|
||||
<svg width="74" height="52" viewBox="0 0 74 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M44.48 1.79761H1.08488C0.485778 1.79761 0 2.28339 0 2.88249V15.901C0 16.1887 0.1143 16.4648 0.317714 16.6682C0.521128 16.8716 0.797193 16.9859 1.08488 16.9859H5.42439C5.71208 16.9859 5.98814 16.8716 6.19156 16.6682C6.39497 16.4648 6.50927 16.1887 6.50927 15.901C6.50927 15.038 6.85217 14.2097 7.46241 13.5996C8.07266 12.9895 8.9009 12.6465 9.76384 12.6465H17.358V37.5987C17.358 38.4617 17.0151 39.29 16.4049 39.9001C15.7946 40.5102 14.9664 40.8532 14.1034 40.8532C13.5043 40.8532 13.0185 41.339 13.0185 41.9381V46.2776C13.0185 46.5653 13.1328 46.8414 13.3363 47.0448C13.5397 47.2482 13.8157 47.3625 14.1034 47.3625H31.4615C31.7492 47.3625 32.0252 47.2482 32.2286 47.0448C32.432 46.8414 32.5464 46.5653 32.5464 46.2776V41.9381C32.5464 41.6504 32.4321 41.3744 32.2286 41.1709C32.0252 40.9675 31.7492 40.8532 31.4615 40.8532C30.5984 40.8532 29.7702 40.5103 29.16 39.9001C28.5499 39.2898 28.2069 38.4616 28.2069 37.5987V12.6465H35.801C36.6641 12.6465 37.4923 12.9893 38.1025 13.5996C38.7126 14.2098 39.0556 15.0381 39.0556 15.901C39.0556 16.1887 39.1699 16.4648 39.3733 16.6682C39.5768 16.8716 39.8528 16.9859 40.1405 16.9859H44.48C44.7677 16.9859 45.0438 16.8716 45.2472 16.6682C45.4506 16.4648 45.5649 16.1887 45.5649 15.901V2.88249C45.5649 2.5948 45.4506 2.31873 45.2472 2.11532C45.0438 1.91191 44.7677 1.79761 44.48 1.79761ZM43.3951 14.8161H41.1169C40.867 13.5908 40.201 12.4899 39.2324 11.699C38.2638 10.9081 37.0515 10.4761 35.801 10.4766H27.122C26.5229 10.4766 26.0371 10.9624 26.0371 11.5615V37.5985C26.041 38.8481 26.4739 40.0579 27.2643 41.0261C28.0543 41.9938 29.1531 42.6608 30.3766 42.9144V45.0842H15.1883V42.9144C16.4117 42.6607 17.5106 41.9938 18.3006 41.0261C19.0911 40.058 19.524 38.8482 19.5279 37.5985V11.5615C19.5279 11.2738 19.4136 10.9977 19.2102 10.7943C19.0068 10.5909 18.7307 10.4766 18.443 10.4766H9.764C8.51348 10.4761 7.30127 10.9081 6.33257 11.699C5.36386 12.4899 4.69793 13.5908 4.4481 14.8161H2.16986V3.96736H43.3952L43.3951 14.8161Z" fill="#8F9FB9"/>
|
||||
<path d="M58.2743 36.4549L54.7532 42.9615C52.3262 47.4461 46.7034 49.1197 42.2191 46.693C37.7345 44.266 36.0608 38.6432 38.4876 34.1589L43.7692 24.3994C46.1962 19.9148 51.819 18.2411 56.3033 20.6679C57.2013 21.1539 57.5356 22.2769 57.0496 23.1748C56.5636 24.0728 55.4406 24.4071 54.5427 23.9212C51.8523 22.4652 48.4779 23.4698 47.0219 26.1602L41.7403 35.9197C40.2843 38.6101 41.2889 41.9845 43.9793 43.4405C46.6697 44.8965 50.0441 43.8919 51.5001 41.2015L55.0211 34.6952C55.5071 33.7972 56.63 33.4629 57.528 33.9489C58.4257 34.4347 58.76 35.5577 58.2742 36.4554L58.2743 36.4549Z" fill="#8F9FB9"/>
|
||||
<path d="M68.8376 16.9359L63.5559 26.6954C61.129 31.18 55.5061 32.8537 51.0219 30.4269C50.1239 29.941 49.7896 28.818 50.2756 27.92C50.7615 27.022 51.8845 26.6877 52.7825 27.1737C55.4729 28.6297 58.8473 27.6251 60.3033 24.9347L65.5849 15.1752C67.0409 12.4847 66.0363 9.11036 63.3459 7.65438C60.6554 6.19839 57.2811 7.20298 55.8251 9.89339L52.3041 16.3996C51.8181 17.2976 50.6951 17.6319 49.7971 17.146C48.8991 16.66 48.5648 15.537 49.0508 14.639L52.5718 8.1328C54.9988 3.64818 60.6216 1.97452 65.1059 4.40128C69.5906 6.82871 71.2647 12.4518 68.8377 16.9365L68.8376 16.9359Z" fill="#8F9FB9"/>
|
||||
<path d="M58.2743 36.4549L54.7532 42.9615C52.3262 47.4461 46.7034 49.1197 42.2191 46.693C37.7345 44.266 36.0608 38.6432 38.4876 34.1589L43.7692 24.3994C46.1962 19.9148 51.819 18.2411 56.3033 20.6679C57.2013 21.1539 57.5356 22.2769 57.0496 23.1748C56.5636 24.0728 55.4406 24.4071 54.5427 23.9212C51.8523 22.4652 48.4779 23.4698 47.0219 26.1602L41.7403 35.9197C40.2843 38.6101 41.2889 41.9845 43.9793 43.4405C46.6697 44.8965 50.0441 43.8919 51.5001 41.2015L55.0211 34.6952C55.5071 33.7972 56.63 33.4629 57.528 33.9489C58.4257 34.4347 58.76 35.5577 58.2742 36.4554L58.2743 36.4549Z" stroke="white"/>
|
||||
<path d="M68.8376 16.9359L63.5559 26.6954C61.129 31.18 55.5061 32.8537 51.0219 30.4269C50.1239 29.941 49.7896 28.818 50.2756 27.92C50.7615 27.022 51.8845 26.6877 52.7825 27.1737C55.4729 28.6297 58.8473 27.6251 60.3033 24.9347L65.5849 15.1752C67.0409 12.4847 66.0363 9.11036 63.3459 7.65438C60.6554 6.19839 57.2811 7.20298 55.8251 9.89339L52.3041 16.3996C51.8181 17.2976 50.6951 17.6319 49.7971 17.146C48.8991 16.66 48.5648 15.537 49.0508 14.639L52.5718 8.1328C54.9988 3.64818 60.6216 1.97452 65.1059 4.40128C69.5906 6.82871 71.2647 12.4518 68.8377 16.9365L68.8376 16.9359Z" stroke="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="61" height="58" viewBox="0 0 61 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M55.3158 1H5.67879C3.09981 1 1 3.10625 1 5.69217V39.0251C1 41.6114 3.10024 43.7172 5.67879 43.7172H55.3212C57.9002 43.7172 60 41.611 60 39.0251V5.69217C59.9937 3.10625 57.8939 1 55.3148 1H55.3158ZM58.1499 39.0254C58.1499 40.5936 56.8797 41.8676 55.3158 41.8676H5.67879C4.11501 41.8676 2.84468 40.5938 2.84468 39.0254V5.69249C2.84468 4.12424 4.1149 2.85028 5.67879 2.85028H55.3212C56.885 2.85028 58.1553 4.12413 58.1553 5.69249V39.0254H58.1499ZM40.0788 20.9407L22.5438 10.7877C22.0332 10.4933 21.4203 10.4933 20.9161 10.7877C20.4055 11.0821 20.0989 11.6136 20.0989 12.2024V32.5079C20.0989 33.0967 20.4051 33.6282 20.9161 33.9226C21.1716 34.0698 21.4525 34.1466 21.7333 34.1466C22.0142 34.1466 22.2951 34.0698 22.5506 33.9226L40.0856 23.7696C40.5962 23.4752 40.8961 22.9437 40.8961 22.3549C40.8957 21.7665 40.5894 21.2351 40.0788 20.9407ZM21.9438 32.1436V12.5743L38.8465 22.3621L21.9438 32.1436ZM17.0862 46.7771C14.6159 46.7771 12.5541 48.5439 12.088 50.8804H1.91958V52.7304H12.0627C12.465 55.15 14.5584 57 17.0863 57C19.6078 57 21.708 55.15 22.1099 52.7304H59.075V50.8804H22.0839C21.6177 48.5438 19.556 46.7771 17.0857 46.7771H17.0862ZM17.0862 55.1505C15.2927 55.1505 13.8308 53.6844 13.8308 51.8858C13.8308 50.0872 15.2927 48.6212 17.0862 48.6212C18.8796 48.6212 20.3415 50.0872 20.3415 51.8858C20.3415 53.6908 18.8796 55.1505 17.0862 55.1505Z" fill="#8F9FB9" stroke="#8F9FB9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 775 KiB |
|
After Width: | Height: | Size: 371 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg width="100" height="42" viewBox="0 0 100 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_3444_6958)">
|
||||
<path d="M54.8419 34.8077C53.9536 34.8077 52.7801 34.8077 50.2138 34.8077H42.2516V23.113H51.6395C53.2237 23.0743 54.8069 23.2258 56.3554 23.5645H56.487C57.803 23.8511 58.9801 24.5851 59.8194 25.6425C60.6586 26.6999 61.1086 28.0158 61.0931 29.3678C61.0931 32.7705 58.9984 34.5764 54.8419 34.7636M42.2516 7.0686H51.9246C54.3922 7.0686 56.7392 7.0686 58.1759 8.16979C58.6649 8.54477 59.056 9.03318 59.3158 9.5932C59.5755 10.1532 59.6962 10.7682 59.6674 11.3853C59.6929 12.0456 59.5701 12.7032 59.3081 13.3093C59.0461 13.9155 58.6517 14.4547 58.1539 14.8871C56.5857 16.1865 53.9974 16.1865 51.2556 16.1865H42.2516V7.0686ZM80.5159 0.0649414H73.8369L65.0633 20.6904C64.5663 20.2478 64.0345 19.8464 63.473 19.49C64.7075 18.5648 65.6984 17.3509 66.3597 15.9538C67.021 14.5568 67.3326 13.0188 67.2676 11.4734C67.2898 9.89368 66.9731 8.3277 66.3392 6.88175C65.7053 5.4358 64.7689 4.14368 63.5936 3.09323C60.139 0.108989 55.7302 0.109032 52.802 0.109032H34.8159V22.8047L24.6056 0.109032H17.9376L0.126953 41.9545H8.63744L21.2825 11.4734L34.6843 41.9545H48.152C54.3922 41.9545 55.8289 41.9545 57.8469 41.6681C62.9246 40.8533 65.6006 38.2655 66.9934 35.6116C67.147 35.3032 67.2896 34.9949 67.4212 34.6865L68.5179 32.2088L77.0942 11.5284L90.496 42.0095H99.1929L80.5159 0.0649414Z" fill="#595959"/>
|
||||
<path d="M29.7168 31.8454L19.5283 25.9761V37.7258L29.7168 31.8454Z" fill="#A5A5A5"/>
|
||||
<path d="M85.5947 31.8344L75.5488 25.9761V37.6928L85.5947 31.8344Z" fill="#A7A7A7"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3444_6958">
|
||||
<rect width="99.1906" height="41.9115" fill="white" transform="translate(0.125977)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,38 @@
|
||||
<svg width="209" height="61" viewBox="0 0 209 61" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_5182_1532)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.4344 21.6997C99.1001 21.5387 101.5 21.6757 103.245 21.6757C106.562 21.6757 110.795 21.3439 113.298 23.3023C114.255 24.051 115.202 25.3369 115.262 27.1669C115.395 31.2261 112.764 32.608 109.102 32.6792C107.481 32.7106 98.3086 32.8602 97.4217 32.6672L97.4344 21.6997ZM97.4549 6.63862C98.9648 6.50236 101.046 6.61823 102.618 6.61823C104.994 6.61823 110.504 6.32044 112.201 7.44338C113.419 8.24959 114.026 9.35412 113.937 10.9501C113.731 14.6191 110.457 15.0894 107.63 15.1531C106.166 15.1861 98.2881 15.3583 97.4232 15.1318L97.4549 6.63862ZM57.5172 39.315L65.6257 39.3589C66.0135 38.2078 66.595 36.9094 67.079 35.7892L71.5636 25.0667C73.4764 20.6357 75.6477 14.9089 77.5552 10.7546L79.1466 14.2307C79.6494 15.4468 80.236 16.5968 80.7439 17.8426L83.934 25.0622C85.0089 27.4225 86.0026 29.8231 87.1025 32.2063C87.4347 32.9262 90.1113 39.277 90.3918 39.3574C96.0957 39.3574 101.829 39.4154 107.53 39.3571C112.483 39.3066 117.056 38.8164 120.099 34.6879C121.644 32.5907 126.633 20.1502 127.999 16.8648C128.842 14.8385 129.66 12.7807 130.536 10.7546C130.802 11.0263 133.344 16.9229 133.737 17.8278C135.708 22.3629 138.25 27.7053 140.069 32.1206L143.252 39.3574L151.481 39.3544C150.745 37.7167 150.067 36.0718 149.31 34.4719L147.065 29.5312C146.384 27.9051 145.571 26.1821 144.821 24.5913C144.054 22.9684 143.379 21.2584 142.589 19.6326C141.05 16.4674 139.702 13.0938 138.134 9.81832C137.756 9.02872 137.387 8.21512 137.029 7.38274C136.697 6.60903 133.866 0.10327 133.55 0.0249422H127.332C126.744 1.58104 125.98 3.26726 125.305 4.82246C124.588 6.47312 123.924 8.06929 123.215 9.71292L119.05 19.3541C118.738 19.2206 118.581 19.0518 118.308 18.8351L117.579 18.2538C117.564 18.2379 117.538 18.2085 117.519 18.1846C120.242 16.667 121.533 12.2902 120.955 8.9161C120.338 5.30759 118.007 2.56411 115.365 1.37583C111.648 -0.296492 108.052 0.0251227 103.559 0.0251227C99.1641 0.0251227 94.7695 0.0251227 90.375 0.0251227V21.2687C90.1227 20.9254 89.9517 20.4448 89.7497 20.014L87.935 15.9929C87.0893 14.2347 86.3618 12.4113 85.4972 10.6191L81.8973 2.66121C81.7276 2.26849 80.8536 0.0955098 80.5687 0.0249422H74.5078C74.174 0.21228 74.0502 0.767075 73.9096 1.09862L70.1794 9.76363C68.8194 13.0094 67.3637 16.3506 65.9575 19.6029L58.5482 36.8786C58.2182 37.6516 57.7607 38.5659 57.5168 39.3152L57.5172 39.315Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.2244 58.7821C80.9345 58.4428 81.0915 56.1085 81.0915 55.6701C81.5202 55.6701 83.8831 55.5573 84.2265 55.774C84.8907 55.884 85.2682 56.1215 85.4889 56.7019C85.7284 57.3323 85.5226 58.0309 85.1545 58.3618C84.4735 58.974 82.3664 58.7422 81.2246 58.7819L81.2244 58.7821ZM81.1084 51.4842C82.0382 51.4275 84.1799 51.337 84.7368 51.8345C85.082 52.1432 85.2314 52.8548 84.9808 53.4081C84.5754 54.3031 82.2582 54.0822 81.1146 54.0315L81.1084 51.4842ZM86.0819 54.676C86.1727 54.563 86.1357 54.6007 86.2648 54.4926L86.3961 54.3948C86.5374 54.2943 86.5791 54.2968 86.7156 54.1887C87.5434 53.5332 88.1327 50.784 85.9433 49.8994C84.6742 49.3867 80.473 49.5756 78.6625 49.5756L78.6472 60.6625C80.124 60.6625 81.6005 60.662 83.0772 60.6625C84.7047 60.6631 85.3814 60.6943 86.6792 59.9877C88.1096 59.2088 89.0986 55.8784 86.082 54.676H86.0819Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M102.411 51.4676H105.231C106.299 51.4676 106.799 52.0401 106.799 53.0701C106.799 54.3758 106.076 54.5686 104.815 54.5686H102.409L102.411 51.4678V51.4676ZM102.409 60.6628V56.2945L105.127 56.2398L105.44 56.3985C107.331 56.7609 106.546 59.1234 107.174 60.7222L109.557 60.7044C108.515 58.6935 110.025 56.4546 107.609 55.4457C108.12 55.0485 108.438 54.9933 108.803 54.4374C109.658 53.1363 109.349 51.0361 107.922 50.082C106.932 49.42 105.547 49.5762 104.186 49.5762C102.807 49.5762 101.428 49.5762 100.008 49.5762L100.006 60.663H102.409V60.6628Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M92.1853 56.3815C92.2556 55.8343 92.9606 54.1123 93.2103 53.3805C93.3275 53.037 93.4013 52.6754 93.6314 52.4037C93.9052 53.4399 94.837 55.4957 94.9115 56.3817H92.1853V56.3815ZM91.5158 58.1935L95.6432 58.1964L96.453 60.6666L99.023 60.6203L95.3186 50.7709C95.1881 50.4396 95.043 49.5756 94.6764 49.5756C91.8763 49.5756 92.4667 49.3145 91.8855 50.8168L89.2274 57.8439C88.9117 58.6352 88.3455 59.9088 88.1844 60.6625L90.6269 60.6572L91.5158 58.1933V58.1935Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.8666 35.4064L80.6727 32.6818C81.4975 32.2086 82.245 31.7755 83.058 31.3165C83.3679 31.1414 85.2226 30.1372 85.4724 29.8756C84.8715 29.4061 83.7953 28.8892 83.1114 28.4896C81.2147 27.3819 77.5593 25.2233 75.8666 24.363V35.4062V35.4064Z" fill="#A3A4A6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.952 35.3883C129.738 35.0194 130.493 34.5354 131.286 34.0717L137.231 30.6262C137.556 30.4309 138.088 30.0696 138.461 29.9797V29.7716C138.102 29.685 136.534 28.7302 136.106 28.4761C135.309 28.0024 134.515 27.5537 133.728 27.0978C132.887 26.6105 132.133 26.1788 131.353 25.7182C130.585 25.265 129.744 24.7349 128.952 24.3632V35.3883Z" fill="#A3A4A6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3095 60.5587L12.3879 60.6437L12.3886 51.275C12.6571 51.5463 13.2426 53.2294 13.3727 53.5895L15.1834 58.3388C16.0942 60.6807 15.7404 60.6629 16.72 60.6629H16.929C17.2154 60.5856 19.5679 54.3466 19.8687 53.5985C20.0865 53.0567 20.6234 51.5125 20.8786 51.1711C20.9961 53.2017 20.901 58.3183 20.9 60.6629H21.958C21.9595 58.8931 22.0353 50.6668 21.931 49.5803L20.4265 49.5819C19.7231 51.1065 19.1093 52.8355 18.4952 54.4244C18.1748 55.2535 16.9499 58.8086 16.5109 59.2068L12.8265 49.5819H11.3316L11.3093 60.5589L11.3095 60.5587Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M201.343 51.4272C201.599 51.5896 204.319 55.5759 204.848 56.3667L206.596 58.8929C206.895 59.305 207.166 59.7199 207.436 60.1352C207.902 60.8513 207.988 60.6627 209 60.6627L208.95 49.5818H207.935L207.932 58.9214L201.426 49.5818H200.223L200.221 60.6706L201.321 60.6145L201.343 51.4272H201.343Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M67.7144 60.6627H68.7818L68.782 51.3231L74.8924 60.0686C74.97 60.1911 75.0476 60.3324 75.0908 60.3904C75.3922 60.7943 75.6025 60.6627 76.4934 60.6627L76.4908 49.5818H75.4747L75.4255 58.9214C75.1448 58.7298 69.2567 50.0779 68.9211 49.5818H67.7646L67.7144 60.6627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.1229 50.4697H38.1423C41.3935 50.4697 41.2417 54.8382 38.0378 54.8382H34.1229V50.4697ZM39.5784 55.3369C40.2524 54.9639 40.3178 55.0526 40.8419 54.508C41.9295 53.3776 41.8783 51.4252 40.5278 50.2802C39.3191 49.2556 35.0385 49.6164 33.105 49.6164L33.1035 60.6629H34.1714V55.7262C35.4147 55.7262 38.8166 55.4921 39.5733 56.1184C40.5053 56.8897 40.2926 59.2909 40.6275 60.6629H41.7998C40.7809 58.7279 42.227 55.9278 39.5784 55.3371V55.3369Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M189.165 55.0462C189.165 52.6312 190.561 50.2617 193.01 50.2617H193.637C196.014 50.2617 197.504 52.4422 197.504 54.8381C197.504 57.8821 196.297 59.9828 193.115 59.9828C190.565 59.9828 189.165 57.5659 189.165 55.0462ZM188.099 55.2543C188.099 58.5188 190.259 60.9415 193.402 60.9119C200.523 60.8448 200.075 49.3259 193.637 49.3259H193.115C190.042 49.3259 188.099 51.9618 188.099 55.2544V55.2543Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M122.704 57.1051H121.617C121.622 60.5822 124.677 61.3321 127.301 60.882C131.158 60.2207 130.86 56.566 129.064 55.4503C126.667 53.9604 122.363 54.8538 123.122 51.8486C123.671 49.6753 128.766 49.6311 128.848 52.8835L129.95 52.8559C129.916 51.9188 129.505 50.9109 128.879 50.4355C128.673 50.2788 128.385 50.0579 128.126 49.9357C125.853 48.8646 122.087 49.4232 121.995 52.4577C121.902 55.529 125.452 55.1516 127.962 56.1421C130.559 57.1672 129.147 60.9437 124.803 59.9139C123.42 59.586 122.673 58.6978 122.704 57.1049L122.704 57.1051Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M146.613 59.9828H146.299C140.948 59.9828 140.982 50.2135 146.299 50.2135H146.613C152.007 50.2135 152.01 59.9828 146.613 59.9828ZM145.595 49.4084C138.988 50.5681 140.063 61.7313 147.225 60.8594C153.957 60.0397 152.93 48.1206 145.595 49.4084Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.875 52.446C132.875 49.5365 138.586 49.5312 138.671 52.8914L139.772 52.8353C139.7 50.6464 137.913 49.4298 135.64 49.4298C131.535 49.4298 130.88 53.1565 132.949 54.5991C133.447 54.9465 134.591 55.181 135.317 55.3615C136.878 55.75 139.089 55.9385 139.089 57.7506C139.089 60.6109 132.557 61.1621 132.525 57.0013H131.46V57.4386C131.46 61.0417 136.225 61.3796 138.335 60.4376C140.579 59.4361 140.583 56.88 139.36 55.8109C138.5 55.059 137.121 54.7583 135.814 54.4645C134.469 54.1623 132.875 54.0636 132.875 52.4462L132.875 52.446Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.8247 60.6627H31.6144V59.7753C30.6898 59.7753 25.3968 59.922 25.0309 59.7053C24.8367 59.5004 24.941 59.7839 24.8871 59.3142L24.9265 55.4135L31.092 55.3779V54.4708H24.9232L24.8902 50.491L31.5107 50.4645V49.5818H23.8262L23.8249 60.6627H23.8247Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.3764 54.8382V55.3584C46.3764 61.5407 54.0236 62.81 55.9081 58.0583C56.6142 56.2779 56.2013 56.4467 55.4892 56.4467C55.0928 56.4467 55.1268 57.194 54.9521 57.6292C53.328 61.6761 47.4988 60.2622 47.4988 55.4623V54.7343C47.4988 50.0961 52.2222 49.4671 53.9412 51.0691C54.8412 51.9078 54.5389 51.8406 55.0981 52.9179H56.068C56.1183 51.9132 55.2232 50.7606 54.7402 50.3829C51.6284 47.9493 46.3762 49.7897 46.3762 54.8384L46.3764 54.8382Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M162.678 56.4465H161.709C161.382 57.6308 161.232 58.3448 160.475 59.0662C159.796 59.7128 158.645 60.1371 157.393 59.9276C155.273 59.5731 154.118 57.932 153.94 55.5573C153.586 50.8184 157.561 49.3082 159.892 50.6708C160.403 50.97 160.642 51.1348 160.94 51.5995C161.234 52.0569 161.349 52.5259 161.583 52.9178C162.7 52.9178 162.761 52.9807 162.29 51.8237C160.712 47.9466 152.859 48.2173 152.823 55.0478C152.789 61.5441 160.102 62.6335 162.17 58.4601C162.419 57.9575 162.762 57.0818 162.679 56.4465H162.678Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.05833 50.739L7.10625 56.2944L2.80025 56.2861L5.05851 50.7392L5.05833 50.739ZM2.14819 58.0104C2.44358 57.2563 2.33805 57.2897 2.61276 57.2305L7.53219 57.2275L8.86151 60.6712L9.98375 60.6147C9.31374 58.7581 8.50882 56.9427 7.81542 55.0732L5.64311 49.582H4.52051C4.1671 50.1241 0.40545 59.6991 0 60.6629H1.04499L2.14801 58.0104H2.14819Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.252 50.7336L118.311 56.2875L113.956 56.2942L116.251 50.7334L116.252 50.7336ZM111.154 60.6582C112.579 60.6627 112.164 60.8865 112.902 59.0364C113.141 58.4396 113.391 57.8411 113.591 57.2305H118.711C118.857 57.6752 119.881 60.5869 120.174 60.6629L121.172 60.6425L116.802 49.5742L115.625 49.582L111.154 60.6582H111.154Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M61.7469 50.6957L63.8278 56.2915L59.4962 56.2864L61.7469 50.6957ZM57.6839 60.6627C58.0191 60.4676 58.9804 57.74 59.1468 57.2293L64.2458 57.2518C65.6893 61.1227 65.3464 60.6663 66.7156 60.6537L62.3389 49.582L61.1697 49.5776L56.7219 60.6629H57.6839V60.6627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.415 56.2729C169.9 54.5042 171.057 52.5319 171.539 50.7334C171.935 51.087 173.662 56.0484 173.726 56.2956L169.415 56.2729ZM169.031 57.2303C175.166 57.2303 173.924 56.6981 174.828 58.992L175.559 60.6627L176.617 60.6577L172.271 49.5818H171.114C170.793 50.0611 170.212 51.7178 169.947 52.3781C169.153 54.3537 167.269 59.3407 166.62 60.6438L167.727 60.6568L169.031 57.2303Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.398 50.4627L179.265 50.4697L179.263 60.6275L180.317 60.6145V50.4697H184.232L184.186 49.5818H175.398L175.398 50.4627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M43.5549 60.6627H44.6213L44.6311 49.9485L44.5729 49.5818L43.5905 49.5803L43.5549 49.9496V60.6627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M164.482 60.6627H165.422V49.6377L164.462 49.6177L164.482 60.6627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M185.382 60.6627H186.322V49.6377H185.382V60.6627Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.209 5.12129C144.457 4.96987 144.344 5.22182 144.385 4.71322L144.392 2.80754C144.623 3.09215 144.762 3.66229 144.885 4.02939C145.091 4.65078 145.117 5.11136 145.463 5.12147C145.816 5.03285 145.652 5.22127 145.835 4.75943C146.037 4.24885 146.159 3.29501 146.554 2.91167L146.55 5.07906L146.988 5.10017V2.04339C146.142 1.95315 146.347 2.0026 145.749 3.84746C145.73 3.90774 145.663 4.11818 145.645 4.16005L145.437 4.52264C144.749 2.42221 144.898 2.0044 143.959 2.00079L143.958 4.50856C143.962 5.10721 143.864 4.99568 144.209 5.12111L144.209 5.12129Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M142.102 2.39153V5.12129H142.537V2.37475C143.213 2.37475 143.543 2.59638 143.599 2.00098H141.057C141.103 2.60955 141.399 2.34858 142.102 2.39153Z" fill="#A7A8A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M102.409 60.6627C102.646 60.2916 102.514 56.76 102.514 56.3588L105.44 56.3981L105.126 56.2395L102.409 56.2942V60.6625L102.409 60.6627Z" fill="#979899"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.2245 58.7821L81.1935 55.7742H84.2264C83.883 55.5573 81.5201 55.6703 81.0914 55.6703C81.0914 56.1085 80.9344 58.443 81.2243 58.7823L81.2245 58.7821Z" fill="#979899"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_5182_1532">
|
||||
<rect width="209" height="61" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,113 @@
|
||||
<svg width="234" height="44" viewBox="0 0 234 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.4927 22.2081C21.4927 23.8532 21.4927 25.497 21.4927 27.1421C21.2102 27.1473 20.9291 27.1512 20.6467 27.1564C19.7382 27.1746 18.8338 27.2305 17.9335 27.3489C16.0404 27.5985 14.2466 28.1773 12.4826 28.8522C10.1143 29.7573 7.7609 30.7028 5.2989 31.3634C4.33881 31.6209 3.38687 31.9057 2.40234 32.0761C2.40234 30.47 2.40234 28.8639 2.40234 27.2591C2.55579 27.12 2.7106 26.9821 2.86405 26.8417C6.63107 23.3915 10.6154 20.1794 14.6254 16.9958C14.7952 16.8619 14.8835 16.9035 15.0247 17.0166C16.9258 18.5317 18.827 20.0454 20.701 21.5917C20.959 21.8037 21.1926 22.0455 21.4927 22.2081ZM18.6084 22.2601C18.6926 22.2679 18.7836 22.2328 18.8229 22.1288C18.8813 21.9779 18.7673 21.8986 18.664 21.818C17.4392 20.8569 16.2102 19.8985 14.9921 18.9296C14.8291 18.7996 14.7354 18.8282 14.5888 18.9439C13.3924 19.8933 12.1892 20.8348 10.9888 21.7789C10.9345 21.8219 10.8815 21.8674 10.834 21.9168C10.7756 21.9792 10.7539 22.0494 10.8041 22.1288C10.8503 22.2016 10.9168 22.2445 11.0024 22.238C11.0825 22.2315 11.1613 22.2094 11.2387 22.1912C12.0969 21.9779 12.9565 21.7659 13.8134 21.5462C13.994 21.4993 14.1692 21.4928 14.3511 21.5254C14.9364 21.6294 15.5217 21.7308 16.107 21.8323C16.9326 21.974 17.7556 22.1145 18.6084 22.2601Z" fill="#7C7B7B"/>
|
||||
<path d="M2.40234 37.5888C2.40234 37.5498 2.40234 37.5107 2.40234 37.473C2.549 37.4652 2.66307 37.3768 2.78801 37.3209C6.6107 35.6003 10.5977 34.9865 14.7843 35.6654C16.623 35.9632 18.3843 36.5146 20.1429 37.0816C20.5883 37.2246 21.0201 37.4145 21.4927 37.4743C21.4927 37.5133 21.4927 37.5523 21.4927 37.5901C21.4139 37.6811 21.433 37.7916 21.433 37.8957C21.4316 39.4328 21.4316 40.97 21.433 42.5071C21.433 42.6125 21.4139 42.7217 21.4927 42.8128C21.4927 42.8323 21.4927 42.8518 21.4927 42.8713C15.1293 42.8713 8.7658 42.8713 2.40234 42.8713C2.40234 42.8518 2.40234 42.8323 2.40234 42.8128C2.48246 42.7217 2.46209 42.6112 2.46209 42.5071C2.46345 40.97 2.46345 39.4328 2.46209 37.8957C2.46209 37.7903 2.48111 37.6798 2.40234 37.5888Z" fill="#393939"/>
|
||||
<path d="M21.4923 5.60753C21.4923 8.37362 21.4923 11.141 21.4923 13.9071C20.6029 13.7732 19.7501 13.5066 18.8932 13.2517C17.3247 12.7861 15.873 12.0592 14.3983 11.3881C11.8168 10.2138 9.11577 9.82235 6.28984 10.2489C4.93458 10.4531 3.64722 10.8653 2.40332 11.4115C2.40332 9.99921 2.40332 8.5869 2.40332 7.17459C2.46171 7.16159 2.52146 7.15248 2.57986 7.13688C4.98482 6.48664 7.44004 6.0952 9.92105 5.83771C12.9059 5.5282 15.9002 5.43976 18.8986 5.49438C19.7623 5.50999 20.63 5.50999 21.4923 5.60753Z" fill="#909090"/>
|
||||
<path d="M2.40234 21.0473C2.40234 21.0083 2.40234 20.9693 2.40234 20.9316C2.4879 20.8301 2.46209 20.7105 2.46209 20.596C2.46345 18.0718 2.46345 15.5476 2.46209 13.0247C2.46209 12.9103 2.4879 12.7906 2.40234 12.6892C2.40234 12.6697 2.40234 12.6502 2.40234 12.6307C4.41622 11.5838 6.5686 11.0987 8.85814 11.178C10.8177 11.2457 12.6455 11.8062 14.4 12.5982C15.9603 13.303 17.5329 13.9728 19.1855 14.4539C19.9446 14.675 20.7024 14.9104 21.4941 15.0105C21.4941 15.0495 21.4941 15.0886 21.4941 15.1263C21.4031 15.2368 21.4343 15.3669 21.4343 15.4904C21.433 17.1056 21.4343 18.7195 21.4316 20.3346C21.4316 20.4582 21.4628 20.5882 21.3718 20.6988C21.2999 20.6455 21.2265 20.596 21.1586 20.5401C19.2453 18.9653 17.3034 17.4216 15.3587 15.8818C14.9079 15.5242 14.7191 15.5229 14.2778 15.874C13.2919 16.6582 12.3006 17.4372 11.3242 18.2318C11.1382 18.3826 11.0309 18.3722 10.8544 18.224C10.2378 17.7103 9.60367 17.2148 8.97628 16.7141C8.50371 16.337 8.32853 16.337 7.84917 16.7193C6.45317 17.8325 5.06125 18.9509 3.66254 20.0615C3.24293 20.3932 2.86134 20.7651 2.40234 21.0473Z" fill="#919191"/>
|
||||
<path d="M2.40234 36.254C2.40234 35.2474 2.40234 34.2422 2.40234 33.2356C3.61637 32.9482 4.82496 32.6426 6.02134 32.2941C8.25248 31.6438 10.3967 30.7673 12.5695 29.9649C14.4082 29.2861 16.2645 28.6787 18.2349 28.4434C19.3172 28.3133 20.4063 28.2925 21.4927 28.2444C21.4927 30.9338 21.4927 33.6231 21.4927 36.3125C21.3868 36.345 21.2958 36.2917 21.2021 36.2631C20.3018 35.9822 19.4001 35.7013 18.4997 35.4191C13.1059 33.7298 7.81658 33.986 2.62912 36.1903C2.55715 36.2202 2.49061 36.2735 2.40234 36.254Z" fill="#999999"/>
|
||||
<path d="M2.40195 6.01391C2.40195 4.39873 2.40602 2.78224 2.39652 1.16706C2.39516 0.994097 2.43318 0.958984 2.61379 0.958984C8.83602 0.964186 15.0582 0.964186 21.2805 0.958984C21.4611 0.958984 21.4991 0.994097 21.4977 1.16706C21.4869 2.27896 21.4923 3.39216 21.4923 4.50407C21.4529 4.50016 21.4122 4.49236 21.3728 4.49106C18.8429 4.37792 16.313 4.40263 13.7845 4.50016C10.4751 4.62761 7.19016 4.95533 3.95547 5.66408C3.43673 5.77853 2.93156 5.94759 2.40195 6.01391Z" fill="#525252"/>
|
||||
<path d="M2.40234 22.4992C3.65983 21.4835 4.91595 20.4666 6.17615 19.4535C6.85649 18.906 7.54634 18.3689 8.22397 17.8188C8.36384 17.7057 8.45482 17.6914 8.60148 17.8136C9.06455 18.2011 9.53984 18.5783 10.0165 18.9515C10.1618 19.066 10.2052 19.1323 10.0301 19.274C7.48931 21.3223 4.992 23.4186 2.57888 25.606C2.53135 25.6502 2.49333 25.7205 2.40506 25.6919C2.40234 24.6268 2.40234 23.563 2.40234 22.4992Z" fill="#7D7C7C"/>
|
||||
<path d="M2.40234 42.8706C8.7658 42.8706 15.1293 42.8706 21.4927 42.8706C21.4248 42.9915 21.308 42.9252 21.2198 42.9252C15.887 42.9291 10.5529 42.9291 5.22013 42.9291C4.34153 42.9291 3.46292 42.9304 2.58431 42.9252C2.52592 42.9252 2.42679 42.9955 2.40234 42.8706Z" fill="#85A2AB"/>
|
||||
<path d="M2.40234 12.6892C2.48832 12.7906 2.46239 12.9103 2.46239 13.0247C2.46376 15.5489 2.46376 18.0732 2.46239 20.5961C2.46239 20.7105 2.48832 20.8301 2.40234 20.9316C2.40234 18.1837 2.40234 15.4358 2.40234 12.6892Z" fill="#10A98D"/>
|
||||
<path d="M21.4935 20.7573C21.4267 20.7872 21.3994 20.743 21.3721 20.6987C21.4635 20.5882 21.4321 20.4581 21.4321 20.3346C21.4335 18.7194 21.4321 17.1055 21.4348 15.4904C21.4348 15.3668 21.4035 15.2368 21.4949 15.1262C21.4935 17.0028 21.4935 18.8807 21.4935 20.7573Z" fill="#10A98D"/>
|
||||
<path d="M2.40234 37.5884C2.48286 37.6794 2.46239 37.79 2.46239 37.894C2.46376 39.4311 2.46376 40.9683 2.46239 42.5055C2.46239 42.6108 2.4815 42.72 2.40234 42.8111C2.40234 41.071 2.40234 39.3297 2.40234 37.5884Z" fill="#104A5C"/>
|
||||
<path d="M21.493 42.8123C21.4125 42.7213 21.433 42.6107 21.433 42.5067C21.4316 40.9695 21.4316 39.4324 21.433 37.8952C21.433 37.7899 21.4139 37.6806 21.493 37.5896C21.493 39.3296 21.493 41.071 21.493 42.8123Z" fill="#104A5C"/>
|
||||
<path d="M164.019 1.03003C164.014 1.16138 164.003 1.29142 164.003 1.42277C164.001 7.97454 164 14.5263 164.008 21.0781C164.008 21.3265 163.958 21.4136 163.675 21.4097C162.411 21.3941 161.146 21.3967 159.881 21.4084C159.644 21.411 159.535 21.3694 159.512 21.1145C159.475 20.6983 159.387 20.2861 159.315 19.84C159.092 20.065 158.905 20.2666 158.703 20.4538C157.707 21.3759 156.507 21.7556 155.135 21.6776C152.302 21.515 150.663 19.9246 149.885 17.4732C149.099 14.9958 149.104 12.4716 149.927 9.98897C150.397 8.57145 151.246 7.39193 152.635 6.64156C154.111 5.84437 156.698 5.55436 158.42 6.97448C158.612 7.13313 158.795 7.30089 158.985 7.46605C159.067 7.45175 159.045 7.38543 159.045 7.33341C159.045 5.27736 159.045 3.22262 159.043 1.16658C159.043 1.12106 159.026 1.07685 159.016 1.03133C160.684 1.03003 162.351 1.03003 164.019 1.03003ZM159.049 13.8605C159.049 12.9696 159.046 12.0775 159.052 11.1867C159.053 11.0306 159.015 10.8954 158.932 10.7614C158.411 9.91484 157.419 9.49089 156.361 9.66645C155.384 9.82901 154.91 10.4857 154.619 11.3102C154.376 12.0008 154.311 12.72 154.289 13.4443C154.258 14.4509 154.281 15.4548 154.615 16.4224C155.191 18.0896 157.121 18.6007 158.481 17.4485C158.851 17.1363 159.09 16.7748 159.061 16.2533C159.018 15.4574 159.049 14.659 159.049 13.8605Z" fill="#595959"/>
|
||||
<path d="M48.1026 1.03003C48.0999 3.24473 48.0972 5.45943 48.0944 7.67543C48.0944 7.70924 48.1012 7.74175 48.1053 7.77947C48.3239 7.5831 48.5236 7.39713 48.73 7.21766C50.0934 6.03033 51.7121 5.78455 53.4516 6.10446C55.5389 6.4881 56.8208 7.80548 57.2214 9.88883C57.3545 10.5833 57.4196 11.2803 57.4183 11.9865C57.4142 15.0179 57.4129 18.0493 57.4224 21.082C57.4237 21.3369 57.3612 21.4123 57.0856 21.4097C55.6543 21.3954 54.223 21.3954 52.7917 21.4097C52.5065 21.4123 52.4603 21.3213 52.4617 21.0768C52.4698 18.0363 52.4671 14.9945 52.4671 11.954C52.4671 11.5391 52.4264 11.1308 52.2784 10.7367C52.0842 10.223 51.7162 9.88753 51.1608 9.75098C50.46 9.57802 49.7648 9.59232 49.0776 9.8199C48.8712 9.88753 48.6852 9.99026 48.5154 10.1203C48.237 10.3323 48.0809 10.5716 48.0836 10.9513C48.1012 14.3299 48.0904 17.7099 48.1012 21.0885C48.1026 21.3538 48.0238 21.4123 47.759 21.411C46.3372 21.3993 44.9154 21.398 43.4936 21.4123C43.2166 21.4149 43.1569 21.3356 43.1582 21.082C43.165 14.5588 43.1637 8.03566 43.1637 1.5125C43.1637 1.35255 43.1609 1.19389 43.1596 1.03393C44.8082 1.03003 46.4554 1.03003 48.1026 1.03003Z" fill="#595959"/>
|
||||
<path d="M89.2086 13.3624C89.2099 15.9633 89.2099 18.563 89.2154 21.1639C89.2154 21.346 89.1638 21.4058 88.9682 21.4045C87.4188 21.398 85.8693 21.3941 84.3199 21.4071C84.0524 21.4097 84.0754 21.2731 84.0754 21.108C84.0768 17.9817 84.0754 14.8553 84.0754 11.729C84.0754 8.28405 84.0754 4.8378 84.0741 1.39286C84.0741 1.27192 84.0605 1.15097 84.0537 1.03003C88.7808 1.03003 93.5079 1.03003 98.2337 1.03003C98.2309 2.29929 98.2282 3.56855 98.2241 4.8378C96.8024 4.84171 95.3806 4.84561 93.9588 4.84691C92.4677 4.84821 90.978 4.85341 89.487 4.84171C89.2371 4.8391 89.2045 4.92884 89.2059 5.13301C89.214 6.4946 89.2167 7.85489 89.2045 9.21649C89.2018 9.45057 89.2656 9.51299 89.5114 9.51299C92.0617 9.50389 94.6106 9.51039 97.1609 9.50259C97.3971 9.50129 97.4773 9.54811 97.4745 9.78999C97.4596 10.8785 97.4637 11.9683 97.4732 13.0568C97.4745 13.2401 97.4257 13.2961 97.2288 13.2961C94.5807 13.2883 91.9327 13.2883 89.286 13.287C89.2683 13.2531 89.2371 13.2531 89.2127 13.2714C89.1787 13.2961 89.161 13.3299 89.2086 13.3624Z" fill="#595959"/>
|
||||
<path d="M29.8175 4.85253C27.733 4.85383 25.6499 4.85643 23.5654 4.85773C23.5654 4.82002 23.5654 4.78231 23.5654 4.74459C23.6727 4.66527 23.6252 4.55342 23.6252 4.45719C23.6293 3.45323 23.6279 2.44926 23.6279 1.444C23.6279 1.07987 23.6279 1.07987 24.0081 1.07987C29.6654 1.07987 35.3214 1.07987 40.9787 1.07987C41.048 1.07987 41.1159 1.08117 41.1851 1.07987C41.2734 1.07857 41.291 1.11238 41.291 1.20081C41.2815 2.41155 41.2775 3.62229 41.2734 4.83173C40.0336 4.83563 38.7937 4.84213 37.5553 4.84343C36.716 4.84473 35.8754 4.83953 35.0362 4.83823C35.0118 4.80312 34.9778 4.80181 34.952 4.83042C34.9249 4.86034 34.9344 4.89025 34.971 4.90975C34.9738 5.01249 34.9805 5.11523 34.9805 5.21927C34.9805 10.5083 34.9792 15.796 34.986 21.085C34.986 21.3204 34.9439 21.4062 34.6709 21.4036C33.1622 21.3893 31.6535 21.3958 30.1448 21.3945C30.0674 21.3945 29.99 21.3828 29.9126 21.3776C29.9139 19.3697 29.918 17.3618 29.918 15.3551C29.9194 11.9583 29.9194 8.56277 29.9139 5.16595C29.9153 5.06191 29.9941 4.91626 29.8175 4.85253Z" fill="#595959"/>
|
||||
<path d="M196.088 1.03133C196.232 1.12236 196.406 1.10936 196.563 1.15357C197.688 1.47609 198.402 2.39032 198.33 3.42679C198.251 4.56341 197.424 5.42432 196.239 5.59078C195.661 5.67141 195.086 5.6662 194.525 5.49064C193.479 5.16422 192.84 4.33192 192.848 3.32016C192.856 2.30189 193.525 1.47609 194.586 1.16268C194.752 1.11326 194.935 1.12236 195.087 1.03003C195.42 1.03133 195.754 1.03133 196.088 1.03133Z" fill="#595959"/>
|
||||
<path d="M70.4617 32.4055C70.3748 32.2937 70.2336 32.3236 70.1182 32.295C69.1784 32.0557 68.6638 31.425 68.6624 30.4952C68.6611 29.6421 68.6529 28.7876 68.6692 27.9345C68.6733 27.7083 68.5972 27.6224 68.3732 27.5925C68.0975 27.5548 67.94 27.2154 68.0649 26.9748C68.0975 26.9111 68.1518 26.9072 68.2102 26.9072C68.8661 26.9059 69.5234 26.9085 70.1793 26.9046C70.2893 26.9046 70.3436 26.9384 70.3395 27.0489C70.3354 27.1425 70.33 27.2375 70.3409 27.3298C70.3599 27.4911 70.3056 27.5782 70.1222 27.5782C69.7868 27.5769 69.6999 27.7421 69.7108 28.0555C69.7366 28.8423 69.7121 29.6316 69.7203 30.4184C69.7298 31.3197 70.4115 31.7878 71.3064 31.5199C71.7559 31.386 71.9908 31.0739 72.0003 30.6421C72.0207 29.6954 72.0085 28.7473 72.0166 27.8006C72.018 27.6081 71.8727 27.6315 71.7586 27.6081C71.4367 27.5405 71.2874 27.2765 71.4055 26.9878C71.4395 26.9059 71.5033 26.9072 71.5712 26.9072C72.2176 26.9072 72.864 26.9098 73.5117 26.9046C73.6584 26.9033 73.6883 26.9644 73.6937 27.0905C73.7154 27.5262 73.7222 27.5405 73.2836 27.6094C73.0785 27.6419 73.0677 27.7447 73.0677 27.8981C73.0717 28.7512 73.069 29.6056 73.0704 30.4587C73.0704 31.4861 72.515 32.1298 71.4612 32.3314C71.3824 32.3457 71.2779 32.3015 71.229 32.4042C70.9723 32.4055 70.717 32.4055 70.4617 32.4055Z" fill="#595959"/>
|
||||
<path d="M114.828 32.4045C114.809 32.385 114.794 32.3525 114.772 32.3486C113.509 32.1041 112.91 31.2874 112.73 30.1378C112.626 29.4797 112.686 28.8269 112.978 28.2105C113.429 27.2572 114.359 26.7449 115.446 26.8411C116.493 26.9347 117.343 27.6578 117.588 28.6878C117.773 29.4628 117.761 30.2353 117.423 30.9753C117.086 31.7113 116.505 32.1756 115.674 32.3369C115.621 32.3473 115.55 32.3252 115.534 32.4032C115.299 32.4045 115.063 32.4045 114.828 32.4045ZM116.623 29.6046C116.638 29.3263 116.609 29.0272 116.532 28.7346C116.369 28.1116 115.92 27.7059 115.334 27.6526C114.753 27.5993 114.244 27.8464 114.016 28.3561C113.648 29.178 113.649 30.0207 114.014 30.8426C114.229 31.3264 114.647 31.567 115.205 31.5631C115.762 31.5579 116.157 31.3082 116.396 30.8335C116.588 30.4538 116.637 30.0454 116.623 29.6046Z" fill="#595959"/>
|
||||
<path d="M36.8054 32.4057C36.7973 32.3615 36.7661 32.3498 36.7253 32.3407C35.5643 32.1001 34.9559 31.3536 34.7563 30.2859C34.592 29.4042 34.6761 28.542 35.2397 27.7825C36.246 26.4236 38.4459 26.5198 39.2837 27.9854C39.8826 29.0323 39.8663 30.1299 39.3082 31.1963C38.9714 31.8387 38.3956 32.208 37.6569 32.342C37.6039 32.3511 37.5347 32.3316 37.5129 32.407C37.2753 32.4057 37.0404 32.4057 36.8054 32.4057ZM38.6414 29.5096C38.6333 29.4211 38.6251 29.243 38.598 29.0661C38.5735 28.9087 38.5409 28.7514 38.4907 28.6005C38.2911 28.0023 37.8253 27.659 37.2169 27.6499C36.5922 27.6408 36.1319 27.9503 35.9255 28.5641C35.6838 29.2807 35.6851 30.0063 35.9567 30.719C36.1618 31.2574 36.5895 31.5513 37.1504 31.5643C37.7479 31.5786 38.2014 31.2977 38.435 30.7554C38.5953 30.3861 38.6373 29.9946 38.6414 29.5096Z" fill="#595959"/>
|
||||
<path d="M41.272 4.83621C41.2774 3.62547 41.2802 2.41473 41.2897 1.2053C41.291 1.11686 41.272 1.08435 41.1837 1.08435C41.1145 1.08565 41.0466 1.08435 40.9773 1.08435C35.32 1.08435 29.6641 1.08435 24.0068 1.08435C23.6265 1.08435 23.6265 1.08435 23.6265 1.44848C23.6265 2.45245 23.6279 3.45641 23.6238 4.46167C23.6238 4.55791 23.67 4.67105 23.5641 4.74908C23.5641 3.58516 23.5695 2.42124 23.5586 1.25731C23.5573 1.06354 23.598 1.02583 23.8003 1.02713C29.6654 1.03363 35.5291 1.03233 41.3942 1.03233C41.3874 1.90235 41.3793 2.77236 41.3739 3.64238C41.3711 3.9701 41.3779 4.29781 41.3698 4.62553C41.3684 4.69706 41.4431 4.8245 41.272 4.83621Z" fill="#595959"/>
|
||||
<path d="M232.034 11.2257C232.056 11.2257 232.077 11.2244 232.099 11.2244C232.099 14.6043 232.099 17.9842 232.099 21.3628C232.077 21.3615 232.056 21.3602 232.035 21.3589C232.032 19.5383 232.026 17.7189 232.026 15.8983C232.024 14.3403 232.03 12.7836 232.034 11.2257Z" fill="#D5D5D5"/>
|
||||
<path d="M98.2266 4.83781C98.2293 3.56855 98.232 2.29929 98.2361 1.03003C98.2757 1.03003 98.3153 1.03003 98.3549 1.03003C98.2866 1.12366 98.3194 1.2303 98.3194 1.33044C98.3166 2.41503 98.3194 3.50092 98.3139 4.58551C98.3112 4.67134 98.3781 4.79359 98.2266 4.83781Z" fill="#595959"/>
|
||||
<path d="M199.853 32.405C199.852 32.3881 199.851 32.3712 199.852 32.3542C200.186 32.3542 200.522 32.3555 200.856 32.3555C200.857 32.3725 200.857 32.3881 200.854 32.405C200.52 32.405 200.186 32.405 199.853 32.405Z" fill="#D5D5D5"/>
|
||||
<path d="M109.888 32.3555C109.89 32.3724 109.889 32.388 109.886 32.4049C109.573 32.4049 109.259 32.4049 108.945 32.4049C108.943 32.388 108.941 32.3724 108.944 32.3555C109.258 32.3555 109.573 32.3555 109.888 32.3555Z" fill="#D5D5D5"/>
|
||||
<path d="M134.54 32.3523C134.54 32.3692 134.54 32.3861 134.539 32.4043C134.225 32.4043 133.912 32.4043 133.598 32.4043C133.594 32.3887 133.592 32.3731 133.595 32.3562C133.912 32.3549 134.227 32.3536 134.54 32.3523Z" fill="#D5D5D5"/>
|
||||
<path d="M145.546 32.3575C145.55 32.3731 145.548 32.3887 145.543 32.403C145.229 32.403 144.916 32.403 144.602 32.403C144.599 32.3861 144.599 32.3692 144.601 32.3523C144.916 32.3549 145.231 32.3562 145.546 32.3575Z" fill="#D5D5D5"/>
|
||||
<path d="M121.833 32.356C121.834 32.373 121.834 32.3886 121.831 32.4055C121.537 32.4055 121.243 32.4055 120.949 32.4055C120.946 32.3886 120.946 32.373 120.947 32.356C121.242 32.3547 121.537 32.356 121.833 32.356Z" fill="#D5D5D5"/>
|
||||
<path d="M232.098 27.5615C232.073 27.5446 232.049 27.5277 232.025 27.5108C232.028 27.3274 232.029 27.144 232.032 26.9594C232.054 26.9529 232.076 26.9477 232.099 26.9412C232.098 27.1479 232.098 27.3547 232.098 27.5615Z" fill="#595959"/>
|
||||
<path d="M137.81 8.00096C138.231 7.53279 138.62 7.13485 139.107 6.84744C140.87 5.80837 142.734 5.69913 144.629 6.41439C145.877 6.88516 146.531 7.89692 146.903 9.09075C147.187 9.99978 147.265 10.9322 147.266 11.8725C147.269 14.9507 147.265 18.0302 147.273 21.1084C147.273 21.3373 147.22 21.4101 146.969 21.4075C145.517 21.3958 144.067 21.3958 142.615 21.4075C142.37 21.4088 142.304 21.3451 142.305 21.111C142.313 18.0042 142.311 14.8974 142.312 11.7905C142.312 11.5551 142.297 11.3211 142.248 11.0909C142.062 10.1962 141.651 9.81512 140.707 9.68247C139.759 9.54852 138.887 9.67206 138.206 10.4003C138.043 10.5746 137.957 10.758 137.957 11.005C137.965 14.3655 137.96 17.7259 137.969 21.0863C137.971 21.3503 137.893 21.4127 137.627 21.4101C136.186 21.3971 134.744 21.3984 133.303 21.4101C133.067 21.4114 133.013 21.3464 133.013 21.1266C133.019 16.2641 133.019 11.403 133.014 6.54053C133.014 6.34416 133.043 6.26483 133.279 6.26613C134.652 6.27784 136.025 6.27524 137.396 6.26743C137.597 6.26613 137.661 6.31685 137.672 6.51452C137.699 6.98529 137.757 7.45736 137.81 8.00096Z" fill="#595959"/>
|
||||
<path d="M175.199 20.0855C174.58 20.7851 173.869 21.2819 172.986 21.4848C170.887 21.9673 168.994 21.6122 167.363 20.1791C165.375 18.43 165.548 14.4792 168.498 13.0851C169.821 12.4608 171.223 12.2216 172.676 12.1734C173.362 12.1513 174.048 12.15 174.734 12.1513C174.918 12.1513 174.996 12.111 174.989 11.9172C174.97 11.3749 175.017 10.8288 174.814 10.3034C174.577 9.69474 174.117 9.36702 173.453 9.3007C173.23 9.27859 173.002 9.27989 172.778 9.2981C171.938 9.36962 171.428 9.8599 171.385 10.6623C171.373 10.873 171.316 10.9276 171.1 10.9263C169.639 10.9172 168.177 10.9172 166.716 10.9263C166.483 10.9276 166.42 10.8691 166.435 10.6402C166.551 8.92746 167.534 7.77395 169.025 6.95855C170.493 6.15486 172.102 5.94419 173.763 5.9923C174.941 6.02612 176.086 6.22119 177.136 6.75828C178.996 7.70892 179.899 9.23177 179.921 11.2267C179.946 13.4037 179.921 15.582 179.929 17.7603C179.933 18.9008 180.023 20.0283 180.554 21.0817C180.679 21.33 180.618 21.4029 180.334 21.4029C178.854 21.4042 177.372 21.4003 175.892 21.4068C175.718 21.4081 175.629 21.3587 175.561 21.2039C175.41 20.858 175.322 20.4951 175.199 20.0855ZM174.985 15.9253C174.985 15.5781 174.978 15.2308 174.988 14.8849C174.992 14.725 174.933 14.6729 174.768 14.6755C174.298 14.6846 173.828 14.6664 173.358 14.6807C171.787 14.7276 170.99 15.4948 171.011 16.928C171.021 17.5431 171.384 18.0203 171.995 18.2219C172.872 18.5119 174.104 18.1517 174.739 17.4312C174.92 17.2271 175.013 17.0138 174.992 16.7407C174.969 16.4702 174.985 16.1971 174.985 15.9253Z" fill="#595959"/>
|
||||
<path d="M125.668 19.8255C125.378 20.1025 125.144 20.3652 124.867 20.5863C123.782 21.4511 122.513 21.7359 121.137 21.6839C120.185 21.6475 119.268 21.4732 118.445 20.9817C117.211 20.2456 116.618 19.1155 116.345 17.7968C116.232 17.2519 116.187 16.7018 116.187 16.1465C116.19 12.9552 116.193 9.76381 116.182 6.57246C116.18 6.32147 116.244 6.26165 116.502 6.26425C117.933 6.27725 119.365 6.27725 120.796 6.26425C121.051 6.26165 121.122 6.31627 121.121 6.56986C121.11 9.71439 121.112 12.8589 121.115 16.0035C121.115 16.1907 121.129 16.3793 121.156 16.564C121.301 17.5094 121.918 18.0127 122.923 18.0322C123.636 18.0452 124.31 17.9438 124.893 17.5146C125.283 17.2272 125.495 16.8917 125.491 16.3741C125.465 13.1073 125.481 9.84184 125.472 6.57506C125.47 6.32537 125.533 6.26295 125.793 6.26555C127.255 6.27855 128.716 6.27595 130.176 6.26815C130.378 6.26685 130.438 6.31497 130.438 6.51524C130.432 11.3959 130.432 16.2766 130.438 21.1572C130.438 21.3562 130.377 21.4082 130.173 21.4069C128.8 21.3991 127.427 21.3991 126.054 21.4069C125.848 21.4082 125.789 21.3445 125.78 21.1533C125.764 20.7242 125.712 20.2976 125.668 19.8255Z" fill="#595959"/>
|
||||
<path d="M232.033 11.2259C232.03 12.7838 232.024 14.3405 232.024 15.8985C232.024 17.7191 232.029 19.5385 232.033 21.3591V21.3578C231.995 21.3669 231.959 21.3864 231.92 21.3851C230.31 21.3825 228.701 21.3786 227.09 21.3747C227.087 18.212 227.086 15.0506 227.083 11.8878C227.083 11.5679 227.055 11.2519 226.98 10.9398C226.808 10.218 226.366 9.81877 225.606 9.69783C225.079 9.6133 224.555 9.60159 224.035 9.74594C223.587 9.87079 223.224 10.1088 222.925 10.4482C222.78 10.6134 222.709 10.785 222.711 11.0087C222.718 14.3587 222.711 17.7087 222.723 21.0587C222.724 21.3539 222.636 21.4099 222.348 21.4073C220.917 21.393 219.486 21.3969 218.054 21.4047C217.856 21.406 217.788 21.3643 217.788 21.1589C217.795 16.2704 217.795 11.3806 217.788 6.49217C217.788 6.2958 217.859 6.26459 218.039 6.26589C219.412 6.27239 220.784 6.27499 222.157 6.26329C222.383 6.26199 222.431 6.33481 222.443 6.53249C222.47 6.99935 222.527 7.46492 222.572 7.9487C222.716 7.91228 222.762 7.78874 222.841 7.70421C224.063 6.39724 225.624 5.91736 227.408 5.99149C228.641 6.04221 229.771 6.35302 230.637 7.25555C231.365 8.01502 231.699 8.95136 231.872 9.94622C231.946 10.3702 231.982 10.7993 232.033 11.2259Z" fill="#595959"/>
|
||||
<path d="M69.5738 15.3295C68.0352 15.3295 66.4952 15.3334 64.9567 15.3243C64.7258 15.323 64.6742 15.3711 64.7326 15.5909C65.1318 17.0839 66.3812 18.0163 67.9836 18.0345C69.4298 18.0514 70.6873 17.66 71.6555 16.5858C71.7628 16.4674 71.8144 16.5103 71.8986 16.6053C72.5667 17.3674 73.2348 18.1281 73.9138 18.8811C74.0442 19.0255 73.9695 19.1087 73.8799 19.2153C73.1004 20.1413 72.0982 20.7707 70.9385 21.1517C68.3529 21.9996 65.7904 21.9502 63.38 20.6562C60.9629 19.3584 59.7896 17.2815 59.6619 14.6481C59.5981 13.319 59.6891 12.0055 60.1182 10.7298C61.1136 7.77249 63.5186 6.18202 66.6202 6.00385C68.0067 5.92452 69.3646 6.05977 70.6343 6.64498C72.4961 7.50459 73.5947 8.95332 74.1202 10.8377C74.4652 12.077 74.4597 13.3424 74.4584 14.6104C74.457 15.3295 74.4584 15.3295 73.721 15.3295C72.3386 15.3295 70.9562 15.3295 69.5738 15.3295ZM67.1376 12.3697C67.7744 12.3697 68.4113 12.3697 69.0482 12.3697C69.6417 12.3697 69.6417 12.3697 69.6226 11.8026C69.59 10.8143 69.1161 10.1081 68.2823 9.80513C67.2761 9.43839 66.168 9.64127 65.5161 10.3292C65.0381 10.8338 64.8534 11.4645 64.7149 12.1135C64.6742 12.3085 64.7095 12.3775 64.9336 12.3736C65.6669 12.3618 66.4029 12.3697 67.1376 12.3697Z" fill="#595959"/>
|
||||
<path d="M114.514 13.877C114.51 15.3661 114.299 16.8135 113.55 18.1478C112.441 20.1219 110.7 21.2468 108.404 21.581C106.892 21.8008 105.388 21.7384 103.94 21.2325C101.989 20.5498 100.602 19.2623 99.8932 17.4026C98.9929 15.041 98.9766 12.6338 99.9095 10.2734C100.874 7.83896 102.79 6.47737 105.454 6.08723C107.069 5.85055 108.67 5.95068 110.188 6.57101C112.389 7.47093 113.656 9.12903 114.225 11.3125C114.441 12.1513 114.517 13.0109 114.514 13.877ZM104.199 13.877C104.199 14.0461 104.193 14.2152 104.201 14.3842C104.24 15.1827 104.315 15.9773 104.684 16.7121C105.307 17.9514 106.837 18.4196 108.101 17.7615C108.758 17.4195 109.089 16.8421 109.292 16.1867C109.607 15.1645 109.614 14.1163 109.555 13.063C109.516 12.3659 109.41 11.6819 109.112 11.0381C108.84 10.449 108.424 9.98084 107.767 9.77796C106.66 9.43594 105.184 9.5894 104.558 11.2995C104.254 12.1318 104.187 13.0005 104.199 13.877Z" fill="#595959"/>
|
||||
<path d="M208.14 5.98518C209.604 5.99168 211.007 6.24527 212.274 6.98524C213.797 7.87476 214.806 9.16353 215.287 10.7969C215.959 13.0857 215.997 15.3889 215.029 17.6075C214.015 19.934 212.117 21.2423 209.513 21.5934C208.027 21.7937 206.555 21.7209 205.139 21.2228C203.231 20.5517 201.857 19.2955 201.15 17.4826C200.184 15.0013 200.173 12.4771 201.244 10.0166C202.264 7.67319 204.202 6.42994 206.79 6.06581C207.238 6.00208 207.688 5.97868 208.14 5.98518ZM205.404 13.8608C205.427 14.2731 205.438 14.6853 205.476 15.0963C205.515 15.5176 205.605 15.9312 205.742 16.3343C206.332 18.0561 207.916 18.2681 209.042 17.8819C209.945 17.5724 210.356 16.8467 210.564 16.0118C210.907 14.632 210.888 13.2392 210.609 11.8529C210.477 11.1988 210.214 10.5888 209.661 10.1454C208.431 9.15702 206.528 9.61479 205.884 11.0479C205.481 11.9465 205.423 12.8985 205.404 13.8608Z" fill="#595959"/>
|
||||
<path d="M183.448 13.6189C183.448 12.3614 183.44 11.1038 183.455 9.84625C183.458 9.58876 183.378 9.53154 183.126 9.54064C182.638 9.56015 182.146 9.54064 181.656 9.54974C181.491 9.55234 181.433 9.50423 181.433 9.34167C181.44 8.38452 181.44 7.42738 181.432 6.47023C181.43 6.30377 181.491 6.26476 181.653 6.26736C182.162 6.27516 182.673 6.25825 183.182 6.27516C183.412 6.28296 183.454 6.21014 183.452 6.00596C183.441 4.92657 183.454 3.84718 183.441 2.76779C183.439 2.55842 183.493 2.4986 183.717 2.4999C185.178 2.5103 186.638 2.5116 188.099 2.4986C188.345 2.49599 188.384 2.57792 188.383 2.7886C188.372 3.85889 188.387 4.92787 188.372 5.99816C188.37 6.23094 188.446 6.27776 188.67 6.27386C189.355 6.26085 190.043 6.27516 190.728 6.26606C190.916 6.26346 190.981 6.30767 190.978 6.50014C190.967 7.43908 190.969 8.37672 190.977 9.31566C190.978 9.50553 190.912 9.55364 190.723 9.55104C190.028 9.54194 189.331 9.55494 188.634 9.54324C188.424 9.53934 188.374 9.60696 188.374 9.80073C188.38 12.0531 188.378 14.3056 188.378 16.558C188.378 16.5866 188.376 16.6139 188.378 16.6425C188.428 17.6205 188.797 17.9612 189.824 17.9768C190.216 17.982 190.609 17.9833 190.997 17.9196C191.151 17.8936 191.206 17.9222 191.205 18.0821C191.198 19.0861 191.201 20.09 191.202 21.094C191.202 21.2046 191.193 21.2878 191.052 21.3255C189.395 21.769 187.729 21.873 186.073 21.3567C184.603 20.8976 183.842 19.8404 183.565 18.4267C183.482 18.0028 183.443 17.5736 183.446 17.1406C183.451 15.965 183.448 14.7919 183.448 13.6189Z" fill="#595959"/>
|
||||
<path d="M198.09 14.2672C198.09 16.53 198.087 18.7915 198.094 21.0543C198.094 21.2546 198.06 21.3261 197.828 21.3248C196.357 21.3131 194.886 21.3144 193.416 21.3248C193.19 21.3261 193.141 21.2624 193.143 21.0556C193.149 16.5404 193.149 12.0252 193.143 7.50996C193.143 7.29798 193.185 7.21865 193.43 7.22125C194.892 7.23296 196.353 7.23426 197.814 7.22125C198.065 7.21865 198.095 7.30578 198.095 7.50996C198.087 9.76107 198.09 12.0135 198.09 14.2672Z" fill="#595959"/>
|
||||
<path d="M232.031 26.9589C232.029 27.1423 232.027 27.3256 232.024 27.5103C231.519 27.4973 231.457 27.8458 231.362 28.21C231.029 29.4727 230.666 30.7277 230.331 31.9904C230.27 32.2232 230.172 32.3012 229.918 32.2947C229.264 32.2765 229.26 32.2908 229.057 31.6874C228.739 30.742 228.426 29.7952 228.109 28.8498C228.093 28.8004 228.107 28.7328 227.999 28.7041C227.8 29.2841 227.599 29.8642 227.401 30.4455C227.216 30.9891 227.03 31.5314 226.855 32.0776C226.808 32.2219 226.746 32.2895 226.572 32.2921C225.816 32.3064 225.814 32.3129 225.619 31.612C225.273 30.3622 224.926 29.1125 224.585 27.8614C224.537 27.682 224.477 27.5402 224.243 27.5688C224.002 27.6 223.953 27.483 223.961 27.2736C223.976 26.9069 223.964 26.9069 224.36 26.9069C224.869 26.9069 225.38 26.9134 225.889 26.903C226.071 26.8991 226.138 26.9342 226.151 27.1293C226.173 27.4297 226.117 27.6169 225.752 27.6C225.641 27.5948 225.535 27.6235 225.575 27.7821C225.821 28.7445 226.064 29.7068 226.314 30.6978C226.427 30.6353 226.421 30.543 226.445 30.4728C226.807 29.3739 227.174 28.2763 227.523 27.1735C227.588 26.9654 227.682 26.8705 227.908 26.9056C227.984 26.9173 228.066 26.9173 228.143 26.9056C228.359 26.8718 228.452 26.9654 228.514 27.1592C228.883 28.3049 229.264 29.4467 229.641 30.5911C229.656 30.634 229.672 30.677 229.7 30.7485C229.82 30.6483 229.818 30.5209 229.845 30.4169C230.059 29.5794 230.258 28.738 230.482 27.9031C230.542 27.6794 230.486 27.6026 230.256 27.5805C230.149 27.5701 229.974 27.626 229.944 27.4986C229.903 27.3295 229.93 27.1449 229.939 26.968C229.941 26.9121 230.006 26.9082 230.054 26.9095C230.7 26.9134 231.347 26.9186 231.992 26.9251C232.004 26.9212 232.018 26.9459 232.031 26.9589Z" fill="#595959"/>
|
||||
<path d="M183.22 30.6308C183.22 29.9975 183.22 29.3629 183.22 28.7295C183.22 28.58 183.223 28.4291 183.22 28.2796C183.216 28.0832 183.273 27.853 183.185 27.7009C183.098 27.5474 182.831 27.6046 182.643 27.5682C182.548 27.55 182.517 27.5097 182.503 27.4226C182.429 26.9674 182.48 26.9063 182.956 26.9063C183.485 26.9063 184.015 26.9154 184.544 26.9024C184.744 26.8972 184.781 26.9661 184.793 27.143C184.812 27.4252 184.758 27.615 184.414 27.6124C184.201 27.6098 184.171 27.7282 184.171 27.905C184.178 29.2653 184.167 30.6269 184.182 31.9872C184.185 32.2434 184.098 32.2733 183.855 32.3006C183.329 32.3604 183.032 32.1732 182.761 31.7349C182.144 30.7349 181.455 29.7738 180.795 28.7972C180.754 28.7373 180.737 28.6567 180.648 28.632C180.566 28.6736 180.601 28.7477 180.601 28.8063C180.598 29.6412 180.606 30.4774 180.594 31.3123C180.591 31.5203 180.666 31.6062 180.873 31.6062C180.921 31.6062 180.97 31.6166 181.018 31.6244C181.28 31.6673 181.439 31.9989 181.308 32.2265C181.266 32.3006 181.194 32.2876 181.129 32.2876C180.492 32.2889 179.854 32.2863 179.217 32.2902C179.081 32.2915 179.032 32.2499 179.026 32.1134C179.004 31.6842 178.994 31.6738 179.417 31.6075C179.597 31.5789 179.634 31.4995 179.634 31.3448C179.63 30.19 179.625 29.0364 179.638 27.8816C179.641 27.6514 179.521 27.628 179.343 27.5994C179.068 27.5552 178.912 27.2158 179.039 26.9726C179.081 26.8933 179.151 26.9076 179.216 26.9076C179.657 26.9063 180.099 26.9141 180.54 26.9024C180.715 26.8972 180.775 27.0012 180.849 27.1143C181.618 28.29 182.389 29.4643 183.159 30.6399C183.178 30.636 183.2 30.6334 183.22 30.6308Z" fill="#595959"/>
|
||||
<path d="M159.234 28.6172C159.234 29.2323 159.234 29.8487 159.234 30.4639C159.234 30.7552 159.244 31.0465 159.23 31.3365C159.222 31.5159 159.286 31.6018 159.473 31.5992C159.502 31.5992 159.531 31.6057 159.56 31.6096C159.931 31.6616 160.057 31.858 159.948 32.1948C159.914 32.2988 159.838 32.2845 159.764 32.2845C159.127 32.2858 158.489 32.2832 157.852 32.2871C157.716 32.2884 157.667 32.2429 157.66 32.1077C157.637 31.6798 157.629 31.6759 158.055 31.6018C158.19 31.5784 158.262 31.5433 158.262 31.3924C158.256 30.2012 158.256 29.0086 158.263 27.8174C158.265 27.664 158.19 27.6353 158.059 27.6093C157.621 27.5209 157.629 27.5157 157.66 27.0735C157.67 26.9331 157.729 26.9006 157.86 26.9019C158.301 26.9058 158.743 26.911 159.184 26.8993C159.348 26.8954 159.402 26.9955 159.47 27.0983C160.205 28.218 160.94 29.339 161.676 30.4574C161.714 30.5159 161.726 30.6004 161.85 30.6251C161.85 30.1414 161.85 29.668 161.85 29.1946C161.85 28.7537 161.84 28.3116 161.854 27.872C161.859 27.6887 161.797 27.6106 161.611 27.6132C161.592 27.6132 161.571 27.6093 161.552 27.6054C161.104 27.5326 161.078 27.4923 161.131 27.0436C161.145 26.9344 161.186 26.9006 161.294 26.9006C161.941 26.9032 162.588 26.9045 163.235 26.9006C163.38 26.8993 163.413 26.9578 163.419 27.0852C163.442 27.517 163.451 27.5339 163.036 27.6002C162.822 27.6353 162.801 27.7342 162.803 27.9045C162.808 29.2648 162.8 30.6264 162.811 31.9867C162.812 32.2117 162.754 32.2676 162.511 32.2949C161.964 32.3574 161.654 32.1571 161.373 31.7045C160.718 30.6498 159.995 29.6342 159.298 28.6029C159.279 28.6107 159.257 28.6146 159.234 28.6172Z" fill="#595959"/>
|
||||
<path d="M53.7875 30.5991C53.7875 29.6628 53.7861 28.7251 53.7889 27.7888C53.7889 27.6861 53.7508 27.6315 53.6381 27.6276C53.5797 27.625 53.5213 27.6119 53.4643 27.6015C53.1031 27.5378 52.9944 27.3558 53.0881 27.0046C53.1221 26.8798 53.2117 26.9071 53.2932 26.9058C53.9111 26.9045 54.5289 26.9097 55.1468 26.9019C55.303 26.9006 55.36 26.9513 55.3478 27.097C55.3397 27.1906 55.341 27.2855 55.3478 27.3779C55.3573 27.5053 55.3084 27.5729 55.1672 27.5716C54.8128 27.569 54.7408 27.742 54.7462 28.0645C54.7693 29.378 54.7503 30.6928 54.7612 32.0062C54.7625 32.226 54.6987 32.2676 54.4719 32.2962C53.9097 32.3691 53.596 32.1584 53.3095 31.6954C52.6617 30.6485 51.942 29.642 51.2562 28.6237C51.1476 28.6406 51.1802 28.7095 51.1802 28.7577C51.1788 29.6121 51.1843 30.4665 51.1761 31.3196C51.1748 31.5082 51.2331 31.6031 51.4355 31.6005C51.4844 31.6005 51.5319 31.6122 51.5808 31.6213C51.8429 31.6655 52.0018 31.9984 51.87 32.2234C51.8266 32.2975 51.756 32.2832 51.6908 32.2832C51.0634 32.2845 50.436 32.2819 49.8086 32.2858C49.6769 32.2871 49.6199 32.2533 49.6117 32.1129C49.5873 31.6928 49.5791 31.6876 50.0273 31.5979C50.1726 31.5693 50.2174 31.5082 50.2174 31.3703C50.2133 30.1882 50.2106 29.0047 50.2187 27.8226C50.2201 27.6471 50.1223 27.6328 49.9879 27.6067C49.6348 27.5391 49.5126 27.3232 49.6172 26.9981C49.6498 26.8967 49.7217 26.9032 49.8005 26.9032C50.2418 26.9032 50.6832 26.9097 51.1245 26.8993C51.2861 26.8954 51.3431 26.989 51.4124 27.0944C52.1308 28.192 52.8505 29.287 53.5702 30.3832C53.6205 30.46 53.6721 30.5341 53.7237 30.6108C53.7427 30.6095 53.7658 30.6043 53.7875 30.5991Z" fill="#595959"/>
|
||||
<path d="M76.3532 26.9059C76.8352 26.9215 77.3961 26.8643 77.9501 26.9541C78.6074 27.0594 79.1574 27.3312 79.3624 27.9853C79.5525 28.5913 79.4493 29.1571 78.9618 29.6226C78.9415 29.6421 78.917 29.659 78.898 29.6811C78.788 29.8073 78.5246 29.8125 78.5232 29.9907C78.5218 30.1454 78.6495 30.3002 78.7201 30.4549C78.8573 30.7553 79.0012 31.0544 79.1289 31.3587C79.194 31.5122 79.2796 31.6045 79.4643 31.6201C79.8377 31.6514 79.6666 31.9362 79.6924 32.1195C79.7236 32.3445 79.5335 32.286 79.4113 32.286C79.08 32.286 78.6862 32.377 78.4322 32.2392C78.1742 32.0987 78.1484 31.6878 78.0194 31.3965C77.8591 31.0336 77.7043 30.6682 77.559 30.3002C77.5047 30.1649 77.4246 30.1207 77.2752 30.1181C76.4509 30.0973 76.4509 30.0934 76.4509 30.8672C76.4509 30.9335 76.4509 30.9985 76.4509 31.0648C76.4509 31.52 76.4509 31.5213 76.8964 31.6501C77.2114 31.7411 77.0009 31.9804 77.0444 32.1468C77.0851 32.3042 76.9371 32.2886 76.8312 32.2899C76.2133 32.2899 75.5954 32.286 74.9775 32.2925C74.8119 32.2938 74.7589 32.2457 74.7575 32.0844C74.7548 31.6839 74.744 31.6774 75.1527 31.6097C75.3157 31.5824 75.3876 31.5278 75.3863 31.3587C75.3795 30.1948 75.3768 29.0309 75.3876 27.867C75.389 27.6706 75.2953 27.6368 75.1323 27.6082C74.7874 27.5458 74.6557 27.3143 74.763 27.0009C74.8037 26.8825 74.8974 26.9124 74.9789 26.9111C75.4134 26.9046 75.8453 26.9059 76.3532 26.9059ZM76.4523 28.4743C76.4523 28.724 76.4564 28.9295 76.4509 29.1362C76.4469 29.2572 76.4699 29.3326 76.622 29.3274C76.9642 29.317 77.3078 29.3352 77.6473 29.3053C78.1837 29.2585 78.4784 28.8488 78.3657 28.3534C78.2923 28.0295 78.0914 27.815 77.7519 27.7486C77.3377 27.668 76.9167 27.7018 76.4971 27.7187C76.3939 27.9814 76.489 28.2532 76.4523 28.4743Z" fill="#595959"/>
|
||||
<path d="M193.207 26.9048C193.68 26.923 194.239 26.8697 194.795 26.9517C195.949 27.122 196.552 28.0128 196.199 29.035C196.077 29.3887 195.835 29.6553 195.502 29.84C195.363 29.9167 195.337 29.9778 195.41 30.1222C195.585 30.4668 195.741 30.8219 195.896 31.1769C195.995 31.4045 196.08 31.5969 196.397 31.6516C196.685 31.701 196.496 31.9819 196.53 32.1535C196.562 32.3174 196.404 32.2823 196.305 32.2836C196.021 32.2875 195.736 32.2745 195.452 32.2888C195.285 32.2966 195.21 32.2355 195.152 32.0911C194.912 31.4968 194.655 30.909 194.415 30.3147C194.358 30.1729 194.284 30.1157 194.117 30.1131C193.29 30.0975 193.29 30.0923 193.29 30.8908C193.29 30.9662 193.29 31.0403 193.29 31.1158C193.29 31.5345 193.289 31.5423 193.713 31.632C194.067 31.7075 193.855 31.9637 193.895 32.134C193.935 32.3135 193.77 32.2823 193.658 32.2823C193.061 32.2836 192.462 32.2836 191.864 32.2823C191.753 32.2823 191.59 32.3109 191.628 32.1327C191.666 31.9624 191.461 31.7075 191.811 31.6307C192.234 31.5384 192.232 31.5306 192.232 31.1145C192.232 30.0546 192.226 28.9934 192.238 27.9335C192.241 27.7098 192.174 27.6201 191.942 27.5915C191.655 27.5564 191.509 27.2391 191.629 26.9751C191.674 26.8775 191.756 26.9035 191.829 26.9035C192.26 26.9035 192.691 26.9048 193.207 26.9048ZM193.286 28.4524C193.286 28.7099 193.286 28.9258 193.286 29.1403C193.286 29.2249 193.275 29.3237 193.407 29.3198C193.827 29.3094 194.25 29.3731 194.663 29.2665C195.042 29.1677 195.22 28.9258 195.223 28.5408C195.225 28.1585 195.023 27.8737 194.671 27.7657C194.492 27.7111 194.306 27.6929 194.12 27.7046C193.85 27.7215 193.503 27.5889 193.331 27.7605C193.175 27.9179 193.307 28.2443 193.286 28.4524Z" fill="#595959"/>
|
||||
<path d="M42.4276 26.9049C42.9029 26.9205 43.4624 26.8737 44.0192 26.9491C45.1734 27.1064 45.7927 28.0051 45.445 29.022C45.3242 29.3771 45.0865 29.6476 44.7538 29.8322C44.6004 29.9168 44.5786 29.987 44.656 30.1404C44.8543 30.5371 45.0363 30.9428 45.2128 31.3499C45.278 31.502 45.3554 31.6009 45.5428 31.6178C45.9325 31.6516 45.7601 31.9468 45.7777 32.138C45.7995 32.3669 45.5958 32.2797 45.4817 32.2849C45.2277 32.2966 44.9711 32.2771 44.7171 32.2927C44.5257 32.3044 44.4469 32.2316 44.3804 32.0651C44.1468 31.4786 43.8874 30.9012 43.6511 30.3147C43.5914 30.1652 43.5099 30.1105 43.3483 30.1196C43.1433 30.13 42.9368 30.1287 42.7304 30.1209C42.5743 30.1144 42.5281 30.1756 42.5322 30.3186C42.5403 30.6463 42.5458 30.9766 42.5308 31.3044C42.5213 31.5007 42.5783 31.5905 42.7956 31.6165C43.0957 31.6516 43.2465 31.9598 43.1229 32.2212C43.0835 32.3031 43.0156 32.2901 42.9504 32.2901C42.3135 32.2914 41.6753 32.2888 41.0384 32.2927C40.9135 32.2927 40.8727 32.2485 40.8646 32.1276C40.832 31.701 40.8252 31.6945 41.272 31.6061C41.4173 31.5775 41.4621 31.5176 41.4607 31.3798C41.4567 30.1977 41.4539 29.0142 41.4621 27.8321C41.4634 27.6591 41.3711 27.6409 41.2353 27.6136C40.87 27.5408 40.76 27.3444 40.8673 27.0037C40.9053 26.8828 40.9977 26.9114 41.0791 26.9101C41.5028 26.9036 41.9238 26.9049 42.4276 26.9049ZM42.5322 28.5084C42.5322 28.7138 42.5376 28.9206 42.5295 29.1248C42.524 29.2626 42.562 29.3329 42.7236 29.3264C43.0265 29.3146 43.3293 29.329 43.6308 29.312C44.1712 29.2808 44.4537 29.0142 44.4578 28.5565C44.4632 28.0597 44.1848 27.7606 43.6416 27.7177C43.3307 27.693 43.017 27.7112 42.7046 27.7021C42.5539 27.6969 42.5254 27.7671 42.5295 27.8919C42.5376 28.0961 42.5322 28.3029 42.5322 28.5084Z" fill="#595959"/>
|
||||
<path d="M96.9447 26.9055C97.4322 26.9211 98.0011 26.8717 98.5661 26.9536C99.8724 27.1422 100.496 28.4335 99.7529 29.4167C99.6185 29.5936 99.4569 29.747 99.2532 29.8446C99.0957 29.92 99.1065 30.0006 99.1677 30.1294C99.3673 30.5468 99.5615 30.9656 99.7475 31.3882C99.8073 31.5248 99.8887 31.6002 100.046 31.6132C100.439 31.6457 100.269 31.9383 100.285 32.1295C100.307 32.3805 100.086 32.2556 99.9675 32.2855C99.9403 32.292 99.9091 32.2881 99.8792 32.2868C99.5886 32.2699 99.2301 32.3987 99.0237 32.2348C98.8227 32.0762 98.7684 31.7445 98.6571 31.4857C98.49 31.0956 98.323 30.7055 98.1695 30.3114C98.1125 30.1645 98.0297 30.1046 97.8654 30.1177C97.6046 30.1385 97.2692 30.0188 97.0995 30.1645C96.9406 30.3023 97.0655 30.6261 97.0506 30.8667C97.0465 30.9317 97.0506 30.9981 97.0506 31.0631C97.0506 31.5118 97.0506 31.5131 97.4919 31.6457C97.8029 31.7393 97.5978 31.9773 97.6386 32.1438C97.6766 32.2998 97.5286 32.2855 97.4227 32.2855C96.8156 32.2868 96.2073 32.2868 95.6003 32.2855C95.4971 32.2855 95.3422 32.3076 95.3816 32.149C95.4237 31.9825 95.2146 31.7432 95.5242 31.6496C95.9805 31.5131 95.9805 31.5131 95.9805 31.0449C95.9805 29.9941 95.9764 28.9446 95.9846 27.8939C95.9859 27.7105 95.937 27.6312 95.7361 27.6038C95.3993 27.5583 95.2635 27.2969 95.3775 26.9926C95.421 26.8769 95.5161 26.9068 95.5975 26.9068C96.0226 26.9042 96.4436 26.9055 96.9447 26.9055ZM97.0519 28.4765C97.0519 28.7353 97.0574 28.9511 97.0492 29.167C97.0451 29.2906 97.094 29.3309 97.219 29.327C97.5612 29.3166 97.9061 29.3335 98.2456 29.3049C98.7385 29.2632 98.9952 28.9602 98.9748 28.4895C98.9585 28.0928 98.7494 27.8327 98.3461 27.7482C97.9305 27.6611 97.5082 27.7079 97.0872 27.7144C97.003 27.9797 97.0804 28.2515 97.0519 28.4765Z" fill="#595959"/>
|
||||
<path d="M126.864 26.9048C127.356 26.9217 127.936 26.8683 128.511 26.9581C129.829 27.1623 130.416 28.4744 129.631 29.4654C129.505 29.6253 129.347 29.7528 129.165 29.8464C129.034 29.914 129.01 29.9752 129.076 30.1078C129.282 30.5331 129.478 30.9622 129.664 31.3953C129.73 31.55 129.844 31.5943 129.999 31.6203C130.367 31.6801 130.166 31.961 130.195 32.1418C130.229 32.3498 130.034 32.2822 129.926 32.2835C129.593 32.2861 129.198 32.3784 128.947 32.2393C128.693 32.0975 128.666 31.6853 128.538 31.394C128.379 31.0311 128.228 30.6644 128.078 30.299C128.035 30.1975 127.995 30.1143 127.853 30.1195C127.609 30.1273 127.363 30.1247 127.119 30.1208C126.988 30.1182 126.953 30.178 126.955 30.2938C126.959 30.6592 126.963 31.0259 126.953 31.3914C126.948 31.5878 127.086 31.5878 127.222 31.6112C127.533 31.6645 127.677 31.9259 127.562 32.2107C127.528 32.2952 127.462 32.2887 127.396 32.2887C126.749 32.29 126.102 32.2874 125.455 32.29C125.325 32.2913 125.296 32.2341 125.288 32.1196C125.26 31.7009 125.254 31.6931 125.702 31.6034C125.864 31.5708 125.903 31.4993 125.902 31.3537C125.898 30.1897 125.891 29.0271 125.906 27.8632C125.909 27.6148 125.743 27.6382 125.594 27.5914C125.497 27.5602 125.334 27.6174 125.311 27.4939C125.279 27.3222 125.288 27.1388 125.311 26.9646C125.324 26.8709 125.442 26.9074 125.514 26.9074C125.937 26.9035 126.358 26.9048 126.864 26.9048ZM126.956 28.451C126.956 28.7098 126.956 28.9257 126.956 29.1416C126.956 29.2274 126.948 29.3236 127.078 29.321C127.488 29.3132 127.904 29.3678 128.308 29.2781C128.679 29.1962 128.875 28.9543 128.895 28.5967C128.917 28.1896 128.733 27.8983 128.374 27.7735C128.186 27.7085 127.991 27.6915 127.794 27.7032C127.523 27.7202 127.177 27.5875 127.003 27.7592C126.843 27.9178 126.978 28.2442 126.956 28.451Z" fill="#595959"/>
|
||||
<path d="M165.966 32.286C165.555 32.286 165.143 32.286 164.732 32.286C164.623 32.286 164.486 32.299 164.519 32.1403C164.553 31.9765 164.39 31.7632 164.642 31.6526C164.792 31.5876 165.033 31.6526 165.097 31.5122C165.17 31.3535 165.132 31.1468 165.132 30.9608C165.135 29.9477 165.13 28.9347 165.138 27.9216C165.139 27.7343 165.109 27.6368 164.883 27.6082C164.535 27.5653 164.403 27.3117 164.516 26.9957C164.551 26.8968 164.627 26.9046 164.703 26.9046C165.487 26.9046 166.273 26.8721 167.054 26.915C168.473 26.9918 169.421 27.9905 169.47 29.4093C169.502 30.3509 169.276 31.1975 168.469 31.8191C168.066 32.1299 167.598 32.2795 167.082 32.2847C166.71 32.2899 166.338 32.286 165.966 32.286ZM166.201 29.6135C166.201 30.083 166.201 30.5524 166.201 31.0206C166.201 31.5174 166.201 31.5174 166.733 31.5135C167.562 31.5083 168.049 31.1598 168.292 30.4029C168.351 30.2221 168.379 30.0362 168.389 29.8489C168.454 28.698 168.09 27.5575 166.455 27.7018C166.446 27.7031 166.435 27.7031 166.425 27.7018C166.243 27.6758 166.192 27.7512 166.196 27.9229C166.208 28.4873 166.201 29.0504 166.201 29.6135Z" fill="#595959"/>
|
||||
<path d="M121.833 32.3549C121.538 32.3549 121.242 32.3549 120.947 32.3549C120.104 32.2132 119.456 31.8425 119.239 30.9868C119.202 30.8425 119.194 30.6903 119.193 30.5407C119.189 29.6681 119.185 28.7955 119.196 27.9242C119.198 27.7187 119.148 27.616 118.917 27.5965C118.811 27.5874 118.632 27.6173 118.604 27.5029C118.56 27.3351 118.581 27.1504 118.593 26.9736C118.598 26.8851 118.696 26.9059 118.76 26.9059C119.397 26.9046 120.034 26.9085 120.67 26.9033C120.81 26.902 120.854 26.9502 120.862 27.0815C120.89 27.5172 120.899 27.5276 120.457 27.6095C120.283 27.642 120.241 27.7083 120.243 27.8683C120.251 28.7409 120.245 29.6135 120.247 30.4848C120.248 30.8932 120.365 31.256 120.779 31.4459C121.234 31.6553 121.697 31.637 122.125 31.3757C122.379 31.2209 122.506 30.9686 122.513 30.6825C122.528 29.9789 122.529 29.2767 122.536 28.5731C122.538 28.4041 122.536 28.235 122.536 28.0673C122.536 27.6563 122.538 27.6498 122.123 27.5744C121.742 27.5042 121.981 27.2298 121.936 27.0542C121.89 26.876 122.056 26.9059 122.168 26.9046C122.766 26.9033 123.363 26.9137 123.961 26.8994C124.163 26.8942 124.19 26.9658 124.209 27.1387C124.243 27.4495 124.148 27.6173 123.806 27.6147C123.621 27.6134 123.589 27.7135 123.59 27.8696C123.597 28.6759 123.593 29.4835 123.593 30.2898C123.593 31.5421 123.109 32.1078 121.833 32.3549Z" fill="#595959"/>
|
||||
<path d="M139.341 32.2886C138.695 32.2886 138.048 32.2899 137.401 32.2873C137.292 32.2873 137.119 32.3264 137.162 32.1443C137.201 31.9739 136.986 31.7177 137.335 31.6384C137.752 31.5435 137.751 31.5383 137.751 31.1156C137.751 30.0557 137.743 28.9959 137.758 27.936C137.76 27.711 137.691 27.6187 137.462 27.5926C137.367 27.5822 137.202 27.6174 137.178 27.5016C137.142 27.3313 137.157 27.1479 137.17 26.971C137.176 26.8839 137.273 26.906 137.338 26.906C138.651 26.9047 139.964 26.9073 141.278 26.9021C141.438 26.9021 141.478 26.9632 141.476 27.1024C141.469 27.4496 141.469 27.7968 141.476 28.144C141.478 28.2845 141.436 28.3599 141.276 28.343C141.227 28.3378 141.178 28.3417 141.13 28.3417C140.653 28.3417 140.646 28.343 140.605 27.8931C140.593 27.7539 140.554 27.698 140.399 27.7006C139.939 27.7097 139.478 27.7097 139.018 27.7006C138.854 27.698 138.822 27.7617 138.826 27.9009C138.835 28.239 138.839 28.5771 138.825 28.9139C138.818 29.0843 138.89 29.1168 139.048 29.1142C139.538 29.1077 140.028 29.1181 140.517 29.1077C140.69 29.1038 140.755 29.1402 140.756 29.3236C140.76 29.9205 140.768 29.9205 140.156 29.9205C139.784 29.9205 139.412 29.9244 139.038 29.9192C138.902 29.9179 138.82 29.9309 138.825 30.0961C138.836 30.5083 138.832 30.9219 138.826 31.3341C138.825 31.4654 138.868 31.5162 139.011 31.5149C139.501 31.5084 139.992 31.5058 140.48 31.5162C140.654 31.5201 140.69 31.4459 140.706 31.3016C140.757 30.8568 140.766 30.875 141.218 30.8503C141.504 30.8347 141.597 30.9127 141.568 31.1871C141.541 31.4472 141.54 31.7138 141.568 31.9739C141.599 32.2522 141.476 32.2964 141.222 32.2899C140.596 32.2782 139.968 32.2886 139.341 32.2886Z" fill="#595959"/>
|
||||
<path d="M103.682 32.2886C103.027 32.2886 102.369 32.2886 101.713 32.2886C101.597 32.2886 101.44 32.3068 101.487 32.1312C101.529 31.9687 101.316 31.719 101.65 31.6474C101.716 31.6331 101.783 31.6071 101.851 31.6058C102.045 31.6019 102.088 31.5044 102.087 31.3327C102.08 30.1792 102.079 29.0257 102.088 27.8709C102.09 27.6836 102.014 27.6355 101.841 27.6069C101.507 27.551 101.371 27.2961 101.483 26.9931C101.519 26.8929 101.598 26.9072 101.673 26.9072C102.986 26.9059 104.299 26.9085 105.612 26.9033C105.774 26.9033 105.81 26.967 105.808 27.1062C105.801 27.4534 105.801 27.8006 105.808 28.1479C105.81 28.2909 105.764 28.3611 105.608 28.3455C105.55 28.3403 105.49 28.3442 105.432 28.3442C104.989 28.3442 104.982 28.3455 104.939 27.9281C104.922 27.7707 104.882 27.6953 104.693 27.7018C104.262 27.7148 103.83 27.7135 103.4 27.7031C103.214 27.6979 103.139 27.7421 103.15 27.9346C103.166 28.2337 103.168 28.5354 103.15 28.8345C103.138 29.0491 103.194 29.131 103.437 29.1206C103.896 29.1011 104.357 29.1232 104.818 29.1115C105.011 29.1063 105.092 29.1427 105.088 29.3534C105.078 29.9243 105.089 29.9243 104.489 29.9243C104.117 29.9243 103.744 29.9308 103.371 29.9217C103.215 29.9178 103.143 29.9477 103.149 30.1194C103.161 30.5225 103.158 30.9257 103.15 31.3288C103.147 31.4771 103.2 31.5226 103.354 31.52C103.833 31.5122 104.314 31.5096 104.795 31.5213C104.975 31.5252 105.042 31.4628 105.039 31.2976C105.038 31.1949 105.054 31.0921 105.057 30.9894C105.058 30.9088 105.093 30.8659 105.178 30.8646C105.373 30.8633 105.57 30.8646 105.766 30.8633C105.877 30.862 105.888 30.927 105.886 31.0102C105.885 31.386 105.88 31.7606 105.888 32.1364C105.892 32.3237 105.763 32.2912 105.65 32.2912C104.996 32.2886 104.338 32.2886 103.682 32.2886Z" fill="#595959"/>
|
||||
<path d="M188.087 32.2877C187.429 32.2877 186.774 32.2812 186.116 32.2916C185.932 32.2942 185.899 32.2356 185.883 32.0692C185.853 31.7636 185.932 31.5867 186.287 31.5984C186.468 31.6036 186.506 31.4996 186.506 31.3409C186.501 30.1861 186.492 29.0326 186.51 27.8778C186.514 27.6138 186.346 27.6346 186.183 27.5878C186.086 27.5605 185.928 27.6164 185.906 27.4863C185.877 27.3134 185.888 27.1313 185.909 26.9557C185.918 26.8777 186.023 26.905 186.086 26.905C187.4 26.9037 188.714 26.9063 190.027 26.9011C190.185 26.9011 190.23 26.957 190.227 27.1001C190.219 27.4473 190.216 27.7945 190.228 28.1418C190.234 28.3095 190.16 28.3589 190.003 28.3433C189.954 28.3381 189.905 28.342 189.856 28.342C189.397 28.342 189.388 28.3433 189.346 27.9103C189.331 27.7607 189.297 27.697 189.126 27.7009C188.675 27.7113 188.224 27.71 187.773 27.7009C187.606 27.697 187.552 27.7477 187.557 27.909C187.569 28.2367 187.571 28.5657 187.557 28.8934C187.549 29.0716 187.617 29.1171 187.792 29.1132C188.273 29.1041 188.752 29.1145 189.233 29.1067C189.407 29.1041 189.494 29.1262 189.492 29.3317C189.488 29.9182 189.499 29.9182 188.878 29.9182C188.506 29.9182 188.133 29.9234 187.761 29.9156C187.611 29.913 187.553 29.952 187.557 30.1042C187.568 30.5073 187.565 30.9118 187.558 31.3149C187.556 31.4567 187.597 31.5152 187.757 31.5126C188.247 31.5048 188.737 31.5061 189.227 31.5126C189.374 31.5139 189.447 31.4658 189.45 31.3227C189.451 31.22 189.468 31.1172 189.469 31.0145C189.471 30.8962 189.528 30.8624 189.65 30.8532C190.314 30.8051 190.314 30.8012 190.314 31.4424C190.314 31.64 190.302 31.8377 190.318 32.0328C190.334 32.2265 190.273 32.2929 190.06 32.289C189.4 32.2786 188.744 32.2877 188.087 32.2877Z" fill="#595959"/>
|
||||
<path d="M175.498 32.2873C174.843 32.2873 174.185 32.2886 173.529 32.286C173.428 32.286 173.271 32.3121 173.308 32.1521C173.347 31.9843 173.145 31.7476 173.448 31.6501C173.899 31.5058 173.9 31.5071 173.9 31.0454C173.9 30.0037 173.895 28.9633 173.906 27.9217C173.907 27.7188 173.865 27.6213 173.634 27.5939C173.331 27.5588 173.193 27.2662 173.308 26.9853C173.349 26.8865 173.429 26.906 173.502 26.906C174.815 26.9047 176.129 26.9073 177.442 26.9021C177.592 26.9021 177.622 26.9619 177.62 27.0868C177.614 27.4431 177.611 27.7994 177.621 28.1558C177.625 28.3092 177.563 28.3586 177.415 28.3417C177.366 28.3365 177.317 28.3404 177.268 28.3404C176.818 28.3404 176.812 28.3417 176.767 27.9074C176.751 27.7552 176.7 27.6954 176.535 27.6993C176.074 27.7071 175.614 27.7058 175.154 27.7006C175.014 27.6993 174.965 27.7435 174.967 27.8801C174.976 28.2182 174.98 28.5563 174.966 28.8931C174.959 29.07 175.023 29.1181 175.2 29.1142C175.679 29.1051 176.16 29.1181 176.641 29.1077C176.835 29.1025 176.915 29.1402 176.911 29.3496C176.903 29.9205 176.913 29.9205 176.311 29.9205C175.929 29.9205 175.546 29.927 175.164 29.9179C175.008 29.914 174.963 29.966 174.966 30.113C174.976 30.507 174.977 30.901 174.966 31.2951C174.961 31.4693 175.022 31.5214 175.2 31.5175C175.651 31.5071 176.101 31.5019 176.552 31.5188C176.774 31.5266 176.867 31.4759 176.866 31.2483C176.866 31.1234 176.806 30.9127 176.97 30.8789C177.193 30.8321 177.436 30.862 177.67 30.8789C177.753 30.8854 177.724 30.9869 177.726 31.048C177.728 31.3952 177.719 31.7424 177.73 32.0897C177.735 32.2626 177.655 32.2899 177.5 32.2886C176.832 32.2847 176.165 32.2873 175.498 32.2873Z" fill="#595959"/>
|
||||
<path d="M200.854 32.3531C200.52 32.3531 200.185 32.3518 199.851 32.3518C198.475 32.0787 197.708 31.1762 197.7 29.8263C197.697 29.4036 197.698 28.981 197.827 28.5713C198.212 27.345 199.276 26.6934 200.624 26.8495C201.127 26.908 201.601 27.0355 202.033 27.2956C202.177 27.3827 202.257 27.4828 202.246 27.6597C202.23 27.9211 202.238 28.1851 202.244 28.4478C202.246 28.5752 202.207 28.648 202.06 28.6285C202.051 28.6272 202.041 28.6285 202.03 28.6285C201.442 28.6506 201.432 28.6519 201.336 28.1044C201.304 27.9198 201.21 27.8287 201.042 27.7624C200.109 27.3931 199.204 27.7689 198.896 28.6871C198.679 29.3373 198.676 30.0031 198.925 30.6495C199.245 31.4831 200.437 31.8771 201.22 31.4245C201.262 31.4011 201.312 31.3803 201.312 31.3257C201.313 31.0539 201.313 30.7808 201.309 30.509C201.308 30.4427 201.258 30.4115 201.193 30.4063C201.125 30.3998 201.055 30.3985 200.987 30.3946C200.455 30.3608 200.462 30.3608 200.469 29.8419C200.471 29.6858 200.509 29.6286 200.682 29.6312C201.182 29.6416 201.681 29.639 202.182 29.6325C202.335 29.6299 202.386 29.678 202.385 29.8263C202.378 30.4271 202.375 31.0279 202.386 31.6287C202.389 31.7887 202.311 31.8654 202.184 31.9356C201.771 32.1606 201.326 32.2933 200.854 32.3531Z" fill="#595959"/>
|
||||
<path d="M153.803 30.8267C153.548 30.8267 153.293 30.8371 153.039 30.8228C152.871 30.8137 152.785 30.8722 152.748 31.0257C152.723 31.1349 152.69 31.2454 152.641 31.3456C152.557 31.5159 152.57 31.6018 152.793 31.6551C153.097 31.7279 152.894 31.9841 152.932 32.1519C152.968 32.3144 152.811 32.2832 152.71 32.2845C152.25 32.2871 151.79 32.2858 151.328 32.2858C151.203 32.2858 151.033 32.3092 151.081 32.1167C151.12 31.9581 150.903 31.6915 151.26 31.6538C151.446 31.6343 151.518 31.5354 151.578 31.3794C152.115 29.971 152.667 28.5691 153.196 27.1581C153.275 26.9474 153.384 26.8967 153.598 26.8993C154.358 26.9097 154.355 26.9045 154.618 27.5937C155.102 28.8604 155.592 30.1257 156.074 31.3937C156.124 31.5263 156.177 31.6291 156.346 31.6447C156.422 31.6525 156.552 31.6213 156.559 31.7396C156.568 31.9061 156.6 32.079 156.538 32.2403C156.511 32.3131 156.416 32.2832 156.352 32.2832C155.872 32.2858 155.392 32.2793 154.912 32.2871C154.745 32.2897 154.681 32.239 154.696 32.0777C154.713 31.8788 154.609 31.6239 154.971 31.6122C155.001 31.6109 155.058 31.5653 155.054 31.5523C154.99 31.3378 154.929 31.1206 154.845 30.9125C154.783 30.7565 154.624 30.8319 154.507 30.8267C154.275 30.8189 154.038 30.8267 153.803 30.8267ZM153.824 28.019C153.583 28.6809 153.369 29.2635 153.161 29.8474C153.137 29.9151 153.029 30.0425 153.224 30.0464C153.624 30.0542 154.025 30.049 154.427 30.049C154.512 30.049 154.552 30.0256 154.518 29.932C154.292 29.3168 154.071 28.7017 153.824 28.019Z" fill="#595959"/>
|
||||
<path d="M83.5486 30.8285C83.2933 30.8285 83.038 30.8376 82.784 30.8246C82.6184 30.8168 82.5274 30.8637 82.4948 31.0236C82.4703 31.142 82.435 31.2629 82.3807 31.3708C82.2938 31.5451 82.3441 31.6062 82.5369 31.6569C82.837 31.7363 82.636 31.9873 82.674 32.155C82.7094 32.3176 82.5518 32.2851 82.4513 32.2864C81.9815 32.289 81.5103 32.2864 81.0404 32.2877C80.9114 32.289 80.7797 32.2799 80.8231 32.116C80.8639 31.9612 80.6602 31.709 80.9779 31.6621C81.1871 31.6309 81.2699 31.5282 81.3364 31.3539C81.8688 29.9546 82.4147 28.5605 82.9429 27.1599C83.0203 26.9544 83.1263 26.8959 83.3462 26.8985C84.0999 26.9102 84.0999 26.9024 84.3661 27.593C84.8522 28.8583 85.3411 30.1237 85.8232 31.3916C85.8734 31.5243 85.9223 31.6283 86.0921 31.6452C86.1681 31.653 86.2971 31.6218 86.3053 31.7402C86.3161 31.9066 86.3107 32.077 86.2835 32.2408C86.2713 32.3111 86.1654 32.2838 86.1002 32.2838C85.6195 32.2864 85.1401 32.2799 84.6594 32.2877C84.4951 32.2903 84.4272 32.2434 84.4408 32.0809C84.4584 31.8832 84.3552 31.6283 84.7151 31.6153C84.7449 31.614 84.8033 31.5685 84.7993 31.5581C84.7355 31.3435 84.6716 31.1276 84.5929 30.9183C84.5372 30.7713 84.3932 30.8324 84.2846 30.8298C84.0388 30.8233 83.793 30.8285 83.5486 30.8285ZM84.3023 30.0509C84.0565 29.372 83.8215 28.7257 83.5662 28.0247C83.3259 28.6802 83.1113 29.2706 82.8954 29.861C82.856 29.9702 82.8316 30.0574 83.0135 30.0535C83.4318 30.0457 83.8514 30.0509 84.3023 30.0509Z" fill="#595959"/>
|
||||
<path d="M220.82 30.8274C220.693 30.8274 220.565 30.8274 220.437 30.8274C219.792 30.8274 219.799 30.8287 219.615 31.4139C219.567 31.5634 219.601 31.6141 219.75 31.6414C220.101 31.7078 219.897 31.9731 219.926 32.1447C219.959 32.3502 219.763 32.2826 219.654 32.2852C219.194 32.2917 218.732 32.2826 218.272 32.2917C218.115 32.2943 218.061 32.2462 218.072 32.0992C218.087 31.8846 217.984 31.6141 218.387 31.6232C218.531 31.6258 218.535 31.4685 218.574 31.367C219.107 29.9964 219.646 28.6283 220.159 27.2511C220.258 26.9845 220.382 26.8895 220.676 26.8999C221.351 26.922 221.351 26.9077 221.581 27.5073C222.078 28.7999 222.575 30.0926 223.071 31.3866C223.119 31.514 223.16 31.6336 223.335 31.644C223.735 31.6688 223.526 31.9627 223.551 32.1343C223.585 32.3619 223.375 32.2813 223.261 32.2839C222.819 32.2917 222.378 32.2813 221.937 32.2904C221.764 32.2943 221.681 32.2553 221.698 32.0732C221.715 31.8716 221.622 31.6206 221.983 31.6154C222.052 31.6141 222.075 31.5569 222.052 31.4919C221.986 31.3059 221.918 31.12 221.857 30.9327C221.821 30.8248 221.732 30.83 221.643 30.8287C221.37 30.8274 221.096 30.8274 220.82 30.8274ZM220.087 30.0497C220.547 30.0497 220.975 30.0471 221.404 30.051C221.552 30.0523 221.533 29.9703 221.502 29.8858C221.285 29.2863 221.066 28.6881 220.825 28.0222C220.566 28.7284 220.333 29.3708 220.087 30.0497Z" fill="#595959"/>
|
||||
<path d="M58.8705 30.8282C58.7429 30.8282 58.6152 30.8282 58.489 30.8282C57.8412 30.8282 57.8466 30.8295 57.6606 31.4109C57.6144 31.5552 57.6443 31.6176 57.7964 31.6436C58.1576 31.7035 57.9403 31.9727 57.9743 32.1417C58.015 32.3459 57.8195 32.2848 57.7081 32.2861C57.2478 32.2926 56.7874 32.2835 56.3271 32.2913C56.1614 32.2939 56.0976 32.2432 56.1111 32.0819C56.1274 31.8725 56.0297 31.6111 56.4208 31.6267C56.5715 31.6332 56.5796 31.4798 56.6177 31.3796C57.1676 29.9673 57.7203 28.555 58.2581 27.1375C58.3287 26.9528 58.4183 26.9008 58.6152 26.9021C59.3974 26.9112 59.4002 26.9034 59.6677 27.594C60.1552 28.8593 60.64 30.1247 61.1221 31.3913C61.171 31.5214 61.2185 31.6254 61.3882 31.6475C61.5716 31.6722 61.7046 32.1027 61.5824 32.2458C61.5295 32.3069 61.4561 32.2861 61.3909 32.2861C60.9116 32.2887 60.4309 32.2796 59.9515 32.2913C59.7722 32.2952 59.7342 32.2249 59.7464 32.0754C59.7627 31.8777 59.6582 31.6202 60.0235 31.6176C60.0479 31.6176 60.0819 31.5968 60.0954 31.576C60.1823 31.4408 59.8306 30.8308 59.6636 30.8295C59.3988 30.8256 59.1353 30.8282 58.8705 30.8282ZM58.8705 28.0166C58.622 28.702 58.4007 29.3145 58.1766 29.927C58.1332 30.0454 58.2051 30.0519 58.2921 30.0519C58.6736 30.0519 59.0539 30.0506 59.4355 30.0532C59.5482 30.0545 59.5971 30.0311 59.5509 29.9088C59.3295 29.3028 59.115 28.6968 58.8705 28.0166Z" fill="#595959"/>
|
||||
<path d="M109.887 32.3545C109.572 32.3545 109.257 32.3545 108.942 32.3545C108.441 32.2908 107.97 32.1464 107.535 31.8941C107.402 31.8174 107.345 31.7316 107.352 31.5794C107.364 31.279 107.363 30.9786 107.353 30.6782C107.349 30.5299 107.402 30.4896 107.556 30.4844C108.182 30.4636 108.185 30.4571 108.278 31.0644C108.3 31.2036 108.334 31.3167 108.479 31.3791C108.93 31.5755 109.396 31.6483 109.881 31.5287C110.167 31.4572 110.374 31.2907 110.42 30.9968C110.467 30.6847 110.331 30.4493 110.052 30.288C109.806 30.1463 109.536 30.0618 109.261 29.9876C108.94 29.9018 108.627 29.7913 108.331 29.6456C107.72 29.3465 107.358 28.8965 107.425 28.206C107.491 27.5401 107.929 27.1526 108.548 26.9692C109.442 26.7039 110.31 26.8106 111.125 27.2644C111.286 27.3542 111.359 27.466 111.347 27.6507C111.331 27.9121 111.342 28.1761 111.343 28.4388C111.343 28.5311 111.335 28.6104 111.209 28.6104C111.023 28.6091 110.837 28.6104 110.651 28.6104C110.568 28.6104 110.526 28.5688 110.516 28.4921C110.511 28.4544 110.5 28.4193 110.492 28.3815C110.429 28.1202 110.474 27.8145 110.075 27.7261C109.602 27.6208 109.142 27.5453 108.722 27.8458C108.384 28.0876 108.392 28.5389 108.729 28.7886C109.005 28.9928 109.337 29.0864 109.666 29.1787C110.091 29.2984 110.496 29.4531 110.867 29.6898C111.744 30.2503 111.772 31.6834 110.591 32.1633C110.364 32.2556 110.128 32.3129 109.887 32.3545Z" fill="#595959"/>
|
||||
<path d="M145.545 32.3576C145.23 32.3563 144.915 32.355 144.6 32.3537C144.13 32.2913 143.685 32.16 143.27 31.9324C143.103 31.84 143.007 31.7399 143.023 31.5357C143.046 31.2561 143.037 30.9726 143.026 30.6917C143.019 30.5279 143.087 30.4889 143.25 30.4849C143.867 30.4719 143.875 30.4654 143.945 31.0572C143.967 31.2418 144.047 31.342 144.218 31.4109C144.647 31.5812 145.086 31.6437 145.54 31.5318C145.822 31.4629 146.039 31.3081 146.087 31.0077C146.136 30.6982 146.016 30.4589 145.734 30.2938C145.48 30.1468 145.201 30.0597 144.918 29.983C144.596 29.8958 144.285 29.7853 143.987 29.6396C143.406 29.3561 143.059 28.9244 143.088 28.2768C143.12 27.6122 143.53 27.1948 144.148 26.9932C145.078 26.6902 145.981 26.8007 146.83 27.2858C146.959 27.3599 147.021 27.4536 147.014 27.607C147.002 27.8697 147.005 28.1324 147.013 28.3951C147.018 28.5459 146.978 28.6097 146.803 28.6162C146.224 28.6357 146.219 28.6435 146.113 28.0908C146.079 27.9126 145.995 27.8138 145.814 27.7566C145.442 27.6382 145.071 27.5797 144.691 27.6954C144.4 27.7839 144.191 27.9516 144.16 28.265C144.129 28.5707 144.3 28.7618 144.561 28.8932C144.874 29.0505 145.212 29.1468 145.55 29.243C145.88 29.3379 146.193 29.4706 146.479 29.6539C147.002 29.9869 147.233 30.4615 147.165 31.052C147.101 31.6086 146.744 31.9623 146.223 32.1808C146.007 32.2718 145.776 32.316 145.545 32.3576Z" fill="#595959"/>
|
||||
<path d="M31.5027 26.9062C32.1491 26.9062 32.7955 26.914 33.4419 26.9023C33.6497 26.8984 33.7135 26.9608 33.704 27.1572C33.6891 27.494 33.6945 27.8321 33.7027 28.1702C33.7067 28.3172 33.6524 28.3796 33.499 28.3627C33.4501 28.3575 33.4012 28.3614 33.3523 28.3614C32.877 28.3614 32.8716 28.3627 32.8295 27.9101C32.8159 27.7658 32.782 27.6982 32.6095 27.7021C32.1301 27.7138 31.6494 27.7138 31.17 27.7021C30.9881 27.6982 30.9338 27.7541 30.9405 27.927C30.9528 28.2925 30.9582 28.6592 30.9392 29.0233C30.9283 29.2288 31.0193 29.2535 31.1958 29.2496C31.6752 29.2418 32.1559 29.2561 32.6353 29.2431C32.8526 29.2366 32.9449 29.2756 32.9368 29.5149C32.9178 30.0403 32.9327 30.0416 32.3718 30.0416C31.9794 30.0416 31.5869 30.0533 31.1958 30.0377C30.9799 30.0286 30.9324 30.1092 30.9405 30.2978C30.9541 30.6346 30.9555 30.974 30.9405 31.3109C30.931 31.5137 31.003 31.5905 31.2135 31.6152C31.5163 31.6503 31.6711 31.9598 31.5448 32.2186C31.5068 32.2979 31.4376 32.2888 31.3724 32.2888C30.7355 32.2901 30.0986 32.2875 29.4617 32.2914C29.3191 32.2927 29.2825 32.2355 29.277 32.1068C29.2567 31.6867 29.2499 31.6789 29.6776 31.6061C29.8419 31.5788 29.8786 31.5085 29.8786 31.3629C29.8745 30.1912 29.8705 29.0181 29.8813 27.8464C29.8827 27.6617 29.7931 27.6357 29.6423 27.6097C29.3123 27.5512 29.167 27.2872 29.2865 26.9933C29.3381 26.8672 29.4481 26.9101 29.5378 26.9101C30.1896 26.9049 30.8468 26.9062 31.5027 26.9062Z" fill="#595959"/>
|
||||
<path d="M206.366 29.5331C206.738 28.9102 207.08 28.334 207.426 27.7592C207.524 27.5967 207.404 27.598 207.293 27.5772C207.172 27.5538 206.985 27.6201 206.941 27.5056C206.884 27.3561 206.913 27.174 206.914 27.0063C206.916 26.8996 207.007 26.9048 207.087 26.9048C207.675 26.9048 208.263 26.91 208.851 26.9022C209.015 26.8996 209.057 26.966 209.045 27.1038C209.038 27.1779 209.037 27.2547 209.045 27.3288C209.064 27.4887 209.014 27.5785 208.825 27.5707C208.594 27.5603 208.464 27.6773 208.351 27.8711C207.944 28.5772 207.523 29.2756 207.089 29.9661C206.922 30.2327 206.819 30.498 206.854 30.8114C206.871 30.9506 206.874 31.0949 206.853 31.2328C206.816 31.4903 206.91 31.6021 207.19 31.6216C207.436 31.6385 207.597 32.0404 207.459 32.2342C207.411 32.3018 207.338 32.2836 207.271 32.2849C206.654 32.2862 206.037 32.2849 205.419 32.2862C205.308 32.2862 205.176 32.2901 205.21 32.134C205.245 31.9715 205.08 31.7595 205.339 31.6476C205.487 31.5839 205.714 31.6685 205.783 31.4994C205.84 31.3602 205.784 31.1834 205.803 31.026C205.854 30.606 205.718 30.2483 205.49 29.8907C205.066 29.2275 204.674 28.5447 204.285 27.862C204.179 27.676 204.053 27.5811 203.834 27.5681C203.434 27.5447 203.665 27.2469 203.621 27.0752C203.572 26.884 203.737 26.9035 203.864 26.9048C204.433 26.9061 205.001 26.9113 205.57 26.9022C205.742 26.8996 205.814 26.9347 205.81 27.1168C205.805 27.3613 205.859 27.6123 205.457 27.5902C205.308 27.5811 205.359 27.6929 205.401 27.7683C205.71 28.3392 206.025 28.9102 206.366 29.5331Z" fill="#595959"/>
|
||||
<path d="M134.54 32.3535C134.225 32.3548 133.91 32.3561 133.595 32.3574C132.187 32.1012 131.406 31.1987 131.39 29.8202C131.383 29.2818 131.399 28.7499 131.636 28.2492C132.116 27.2284 133.147 26.7017 134.352 26.8512C134.844 26.9124 135.306 27.0476 135.72 27.3181C135.845 27.4 135.904 27.4924 135.897 27.6432C135.885 27.9423 135.885 28.244 135.897 28.5431C135.904 28.7057 135.841 28.746 135.677 28.7486C135.107 28.7577 135.084 28.7655 135.035 28.2284C135.007 27.9293 134.85 27.8058 134.588 27.7225C133.621 27.4156 132.751 27.8825 132.529 28.8357C132.408 29.3559 132.397 29.8813 132.539 30.3963C132.846 31.5134 133.852 31.7839 134.854 31.4315C134.946 31.399 134.994 31.3418 135.002 31.2442C135.014 31.1142 135.051 30.9841 135.054 30.8541C135.059 30.6759 135.135 30.6161 135.325 30.6148C135.893 30.6122 135.893 30.6044 135.893 31.1597C135.893 31.2247 135.893 31.291 135.893 31.3561C135.893 31.9751 135.896 31.9816 135.278 32.1754C135.04 32.2547 134.787 32.2963 134.54 32.3535Z" fill="#595959"/>
|
||||
<path d="M64.5309 26.9052C65.2669 26.9052 66.0015 26.9104 66.7376 26.9013C66.925 26.8987 66.9996 26.9416 66.9915 27.1341C66.9752 27.4813 66.9834 27.8286 66.9888 28.1758C66.9901 28.3019 66.9548 28.3747 66.8068 28.3591C66.7484 28.3539 66.6887 28.3578 66.6303 28.3578C66.1699 28.3578 66.1631 28.3591 66.1238 27.9209C66.1088 27.757 66.0518 27.7024 65.8739 27.6985C65.0428 27.6816 65.0428 27.6764 65.0428 28.4723C65.0428 29.4112 65.0496 30.3502 65.0374 31.2878C65.0347 31.4959 65.0863 31.5999 65.3171 31.6155C65.423 31.622 65.5941 31.6051 65.6213 31.7248C65.658 31.8847 65.6403 32.0603 65.6213 32.228C65.6118 32.3087 65.5113 32.2853 65.4461 32.2853C64.8187 32.2866 64.1914 32.2827 63.564 32.2879C63.4268 32.2892 63.3793 32.2488 63.3725 32.1123C63.3508 31.687 63.3426 31.6805 63.7595 31.6025C63.9157 31.5726 63.9687 31.5102 63.9673 31.3593C63.9619 30.2045 63.9619 29.051 63.9673 27.8962C63.9673 27.7518 63.9238 27.6881 63.769 27.7011C63.6713 27.7089 63.5735 27.7024 63.4744 27.7024C62.9651 27.7024 62.9597 27.7011 62.8701 28.1901C62.8456 28.3201 62.7899 28.3552 62.6596 28.3617C62.0417 28.393 62.0417 28.3969 62.0417 27.8064C62.0417 27.6192 62.0593 27.4293 62.0376 27.2433C62.0064 26.9793 62.0851 26.887 62.3825 26.8961C63.0996 26.9208 63.8152 26.9052 64.5309 26.9052Z" fill="#595959"/>
|
||||
<path d="M89.4894 32.2885C88.8729 32.2885 88.255 32.2898 87.6385 32.2872C87.5366 32.2872 87.3805 32.3145 87.4144 32.1546C87.4511 31.9855 87.2582 31.7579 87.5516 31.6474C87.7009 31.5915 87.9264 31.6682 87.9956 31.4978C88.0513 31.3574 88.0146 31.1831 88.0146 31.0245C88.016 29.9932 88.0106 28.9619 88.0187 27.9306C88.0201 27.7317 87.9834 27.6263 87.7485 27.599C87.4294 27.5613 87.3017 27.3038 87.4076 26.9982C87.4429 26.8981 87.519 26.9072 87.595 26.9072C88.2509 26.9059 88.9082 26.9098 89.5641 26.9046C89.7067 26.9033 89.7583 26.9579 89.7474 27.0879C89.7406 27.1725 89.7393 27.257 89.7474 27.3415C89.761 27.4885 89.7108 27.5535 89.5437 27.5795C89.0684 27.6536 89.0698 27.6627 89.0698 28.1309C89.0698 29.1713 89.0752 30.213 89.0644 31.2533C89.0616 31.464 89.12 31.5316 89.3427 31.5212C89.7243 31.5043 90.1073 31.5095 90.4889 31.5199C90.6613 31.5238 90.751 31.4757 90.7387 31.3015C90.7374 31.2832 90.7387 31.2637 90.7401 31.2455C90.7795 30.7019 90.7795 30.7097 91.3485 30.7084C91.5359 30.7084 91.6078 30.7514 91.5997 30.9425C91.5834 31.308 91.5847 31.6747 91.5997 32.0388C91.6078 32.2326 91.5508 32.2989 91.3403 32.2937C90.7238 32.2794 90.1059 32.2885 89.4894 32.2885Z" fill="#595959"/>
|
||||
<path d="M214.87 32.2872C214.252 32.2872 213.636 32.2872 213.018 32.2872C212.912 32.2872 212.765 32.3028 212.803 32.1455C212.844 31.9777 212.639 31.7384 212.949 31.6461C213.387 31.5147 213.387 31.516 213.387 31.0596C213.387 30.0088 213.38 28.958 213.393 27.9085C213.395 27.7096 213.34 27.6315 213.132 27.6003C212.805 27.5522 212.691 27.3168 212.798 26.9969C212.832 26.8955 212.908 26.9072 212.984 26.9072C213.64 26.9072 214.297 26.9098 214.953 26.9046C215.102 26.9033 215.142 26.9631 215.132 27.0892C215.127 27.1634 215.124 27.2401 215.132 27.3142C215.151 27.4833 215.098 27.5574 214.9 27.5821C214.46 27.6367 214.463 27.6523 214.463 28.0763C214.463 29.1362 214.47 30.196 214.457 31.2559C214.455 31.4705 214.523 31.529 214.74 31.5199C215.131 31.5043 215.523 31.5108 215.916 31.5186C216.052 31.5212 216.111 31.4848 216.11 31.3483C216.109 31.2273 216.145 31.1051 216.139 30.9841C216.125 30.7605 216.223 30.7006 216.449 30.7058C216.986 30.7201 216.986 30.7084 216.986 31.2286C216.986 31.5004 216.972 31.7735 216.99 32.044C217.005 32.2521 216.917 32.295 216.72 32.2911C216.106 32.282 215.488 32.2872 214.87 32.2872Z" fill="#595959"/>
|
||||
<path d="M29.8183 4.85522C29.9944 4.91895 29.9152 5.0646 29.9152 5.17124C29.9193 8.56807 29.9193 11.9636 29.9193 15.3604C29.9193 17.3683 29.9152 19.3763 29.9139 21.3829C29.7569 21.3192 29.8347 21.1878 29.8347 21.0916C29.8306 15.7818 29.8306 10.4733 29.8306 5.16344C29.8306 5.062 29.8224 4.95796 29.8183 4.85522Z" fill="#595959"/>
|
||||
<path d="M227.092 21.3748C228.702 21.3787 230.312 21.3826 231.922 21.3852C231.96 21.3852 231.997 21.367 232.035 21.3579C232.025 21.5075 231.904 21.4711 231.816 21.4711C230.312 21.4737 228.807 21.4724 227.302 21.4711C227.218 21.4711 227.118 21.4945 227.092 21.3748Z" fill="#D5D5D5"/>
|
||||
<path d="M89.209 13.3624C89.1622 13.3296 89.1801 13.2955 89.2145 13.2706C89.2393 13.2522 89.271 13.2522 89.2889 13.2863C89.2613 13.3126 89.2352 13.3375 89.209 13.3624Z" fill="#595959"/>
|
||||
<path d="M34.9716 4.9148C34.9345 4.89511 34.9248 4.86362 34.9524 4.83475C34.9785 4.80588 35.0129 4.8072 35.0377 4.84262C35.0143 4.86624 34.9923 4.89118 34.9716 4.9148Z" fill="#595959"/>
|
||||
<path d="M32.5583 39.8502H30.2891V42.1364H29.5762V36.9592H32.9249V37.5171H30.2891V39.291H32.5583V39.8502Z" fill="#626262"/>
|
||||
<path d="M37.939 39.7163C37.939 40.2235 37.8494 40.6669 37.6715 41.0441C37.4936 41.4225 37.241 41.7112 36.9138 41.9102C36.5865 42.1092 36.2063 42.2093 35.7704 42.2093C35.344 42.2093 34.9664 42.1092 34.6378 41.9089C34.3092 41.7086 34.0525 41.4225 33.8706 41.0519C33.6886 40.6813 33.5949 40.2508 33.5908 39.7631V39.3899C33.5908 38.8918 33.6818 38.4522 33.8624 38.0712C34.043 37.6902 34.2983 37.3976 34.6297 37.1947C34.961 36.9918 35.3385 36.8904 35.7636 36.8904C36.1968 36.8904 36.5784 36.9905 36.9097 37.1908C37.2397 37.3911 37.495 37.6811 37.6729 38.0621C37.8508 38.4431 37.9404 38.8853 37.9404 39.3899V39.7163H37.939ZM37.2302 39.3808C37.2302 38.767 37.1012 38.2962 36.8445 37.9672C36.5865 37.6395 36.2266 37.4743 35.7636 37.4743C35.3127 37.4743 34.9583 37.6382 34.7003 37.9672C34.4409 38.2962 34.3092 38.7514 34.301 39.334V39.715C34.301 40.3106 34.4314 40.7775 34.6921 41.1182C34.9529 41.4589 35.3127 41.628 35.7704 41.628C36.2307 41.628 36.5879 41.468 36.8404 41.1455C37.093 40.8243 37.2234 40.3639 37.2302 39.7644V39.3808Z" fill="#626262"/>
|
||||
<path d="M40.9916 40.0429H39.7219V42.1379H39.0049V36.9595H40.7947C41.4031 36.9595 41.8716 37.0921 42.2002 37.3574C42.5288 37.6227 42.6918 38.009 42.6918 38.5161C42.6918 38.8387 42.6008 39.1196 42.4188 39.3588C42.2369 39.5981 41.9843 39.7776 41.6597 39.8959L42.9294 42.0937V42.1366H42.1649L40.9916 40.0429ZM39.7219 39.485H40.8178C41.1722 39.485 41.4533 39.3966 41.6624 39.221C41.8716 39.0454 41.9761 38.81 41.9761 38.5161C41.9761 38.1962 41.877 37.9504 41.6774 37.7788C41.4778 37.6071 41.1899 37.5213 40.8137 37.5187H39.7219V39.485Z" fill="#626262"/>
|
||||
<path d="M44.6117 36.9592L46.3798 41.1832L48.1479 36.9592H49.0727V42.1364H48.3597V40.1207L48.4263 37.945L46.6514 42.1377H46.1055L44.3347 37.9554L44.4053 40.1207V42.1364H43.6924V36.9592H44.6117Z" fill="#626262"/>
|
||||
<path d="M53.3855 39.7435H51.043V41.5785H53.7644V42.1364H50.3301V36.9592H53.7277V37.5171H51.043V39.1843H53.3855V39.7435Z" fill="#626262"/>
|
||||
<path d="M56.6352 40.0426H55.3654V42.1377H54.6484V36.9592H56.4382C57.0466 36.9592 57.5151 37.0919 57.8437 37.3572C58.1724 37.6225 58.3353 38.0087 58.3353 38.5159C58.3353 38.8384 58.2443 39.1193 58.0624 39.3586C57.8804 39.5979 57.6278 39.7773 57.3033 39.8957L58.573 42.0935V42.1364H57.8084L56.6352 40.0426ZM55.3654 39.4847H56.4613C56.8158 39.4847 57.0969 39.3963 57.306 39.2207C57.5151 39.0452 57.6197 38.8098 57.6197 38.5159C57.6197 38.196 57.5205 37.9502 57.3209 37.7785C57.1213 37.6069 56.8334 37.521 56.4573 37.5184H55.3654V39.4847Z" fill="#626262"/>
|
||||
<path d="M60.0516 41.5785H62.6141V42.1364H59.3359V36.9592H60.0529V41.5785H60.0516Z" fill="#626262"/>
|
||||
<path d="M64.1884 39.5589L65.5994 36.9592H66.4087L64.5442 40.2052V42.1364H63.8313V40.2052L61.9668 36.9592H62.7843L64.1884 39.5589Z" fill="#626262"/>
|
||||
<path d="M70.9711 40.0426H69.7014V42.1377H68.9844V36.9592H70.7742C71.3826 36.9592 71.851 37.0919 72.1797 37.3572C72.5083 37.6225 72.6713 38.0087 72.6713 38.5159C72.6713 38.8384 72.5803 39.1193 72.3983 39.3586C72.2163 39.5979 71.9638 39.7773 71.6392 39.8957L72.9089 42.0935V42.1364H72.1444L70.9711 40.0426ZM69.7014 39.4847H70.7973C71.1517 39.4847 71.4328 39.3963 71.6419 39.2207C71.8511 39.0452 71.9556 38.8098 71.9556 38.5159C71.9556 38.196 71.8565 37.9502 71.6569 37.7785C71.4572 37.6069 71.1694 37.521 70.7932 37.5184H69.7014V39.4847Z" fill="#626262"/>
|
||||
<path d="M77.8306 39.7163C77.8306 40.2235 77.741 40.6669 77.5631 41.0441C77.3852 41.4225 77.1326 41.7112 76.8054 41.9102C76.4781 42.1092 76.0979 42.2093 75.662 42.2093C75.2356 42.2093 74.8581 42.1092 74.5294 41.9089C74.2008 41.7086 73.9441 41.4225 73.7622 41.0519C73.5802 40.6813 73.4865 40.2508 73.4824 39.7631V39.3899C73.4824 38.8918 73.5734 38.4522 73.754 38.0712C73.9346 37.6902 74.1899 37.3976 74.5213 37.1947C74.8526 36.9918 75.2301 36.8904 75.6552 36.8904C76.0884 36.8904 76.47 36.9905 76.8013 37.1908C77.1313 37.3911 77.3866 37.6811 77.5645 38.0621C77.7424 38.4431 77.832 38.8853 77.832 39.3899V39.7163H77.8306ZM77.1218 39.3808C77.1218 38.767 76.9928 38.2962 76.7361 37.9672C76.4781 37.6395 76.1182 37.4743 75.6552 37.4743C75.2043 37.4743 74.8499 37.6382 74.5919 37.9672C74.3325 38.2962 74.2008 38.7514 74.1926 39.334V39.715C74.1926 40.3106 74.323 40.7775 74.5837 41.1182C74.8445 41.4589 75.2043 41.628 75.662 41.628C76.1223 41.628 76.4795 41.468 76.732 41.1455C76.9846 40.8243 77.115 40.3639 77.1218 39.7644V39.3808Z" fill="#626262"/>
|
||||
<path d="M82.877 40.4937C82.8105 41.0412 82.5986 41.4639 82.2442 41.7617C81.8884 42.0595 81.4172 42.2078 80.8278 42.2078C80.1896 42.2078 79.6776 41.988 79.292 41.5497C78.9077 41.1115 78.7148 40.5249 78.7148 39.7889V39.2908C78.7148 38.8096 78.8045 38.387 78.9837 38.0215C79.163 37.6561 79.4169 37.3765 79.7469 37.1801C80.0755 36.9851 80.4571 36.8862 80.8903 36.8862C81.4647 36.8862 81.9251 37.0397 82.2714 37.3466C82.6176 37.6535 82.82 38.0788 82.877 38.6211H82.16C82.0975 38.2075 81.9645 37.9071 81.7567 37.7224C81.5503 37.5365 81.261 37.4441 80.8903 37.4441C80.4354 37.4441 80.0782 37.6054 79.8189 37.9279C79.5595 38.2504 79.4305 38.7095 79.4305 39.3051V39.8071C79.4305 40.3689 79.5527 40.8163 79.7985 41.1492C80.0443 41.4821 80.3865 41.6472 80.8265 41.6472C81.223 41.6472 81.5258 41.5614 81.7377 41.3898C81.9495 41.2181 82.0894 40.919 82.1587 40.4924H82.877V40.4937Z" fill="#626262"/>
|
||||
<path d="M85.2229 39.7292L84.5616 40.3873V42.1364H83.8486V36.9592H84.5616V39.5199L86.9638 36.9592H87.8248L85.6968 39.2455L87.9918 42.1364H87.1376L85.2229 39.7292Z" fill="#626262"/>
|
||||
<path d="M90.2656 39.5589L91.6765 36.9592H92.4859L90.6214 40.2052V42.1364H89.9084V40.2052L88.0439 36.9592H88.8614L90.2656 39.5589Z" fill="#626262"/>
|
||||
<path d="M95.9877 36.9592L97.7558 41.1832L99.5239 36.9592H100.449V42.1364H99.7357V40.1207L99.8022 37.945L98.0274 42.1377H97.4815L95.7107 37.9554L95.7813 40.1207V42.1364H95.0684V36.9592H95.9877Z" fill="#626262"/>
|
||||
<path d="M105.865 39.7163C105.865 40.2235 105.775 40.6669 105.597 41.0441C105.419 41.4225 105.167 41.7112 104.84 41.9102C104.512 42.1092 104.132 42.2093 103.696 42.2093C103.27 42.2093 102.892 42.1092 102.564 41.9089C102.235 41.7086 101.978 41.4225 101.796 41.0519C101.614 40.6813 101.521 40.2508 101.517 39.7631V39.3899C101.517 38.8918 101.608 38.4522 101.788 38.0712C101.969 37.6902 102.224 37.3976 102.555 37.1947C102.887 36.9918 103.264 36.8904 103.689 36.8904C104.123 36.8904 104.504 36.9905 104.835 37.1908C105.165 37.3911 105.421 37.6811 105.599 38.0621C105.777 38.4431 105.866 38.8853 105.866 39.3899V39.7163H105.865ZM105.156 39.3808C105.156 38.767 105.027 38.2962 104.77 37.9672C104.512 37.6395 104.152 37.4743 103.689 37.4743C103.239 37.4743 102.884 37.6382 102.626 37.9672C102.367 38.2962 102.235 38.7514 102.227 39.334V39.715C102.227 40.3106 102.357 40.7775 102.618 41.1182C102.879 41.4589 103.239 41.628 103.696 41.628C104.156 41.628 104.514 41.468 104.766 41.1455C105.019 40.8243 105.149 40.3639 105.156 39.7644V39.3808Z" fill="#626262"/>
|
||||
<path d="M110.741 36.9592V40.4796C110.738 40.9686 110.578 41.3678 110.26 41.6773C109.942 41.9881 109.511 42.1624 108.966 42.2001L108.777 42.2066C108.185 42.2066 107.714 42.0532 107.362 41.7476C107.01 41.4419 106.833 41.0206 106.827 40.4848V36.9592H107.533V40.4653C107.533 40.8398 107.641 41.1311 107.856 41.3379C108.072 41.546 108.379 41.6487 108.777 41.6487C109.181 41.6487 109.49 41.546 109.703 41.3392C109.918 41.1324 110.025 40.8424 110.025 40.4679V36.9592H110.741Z" fill="#626262"/>
|
||||
<path d="M116.021 42.1377H115.304L112.582 38.1479V42.1377H111.865V36.9592H112.582L115.312 40.9673V36.9592H116.021V42.1377Z" fill="#626262"/>
|
||||
<path d="M120.916 37.5184H119.177V42.1376H118.469V37.5184H116.734V36.9604H120.916V37.5184Z" fill="#626262"/>
|
||||
<path d="M124.409 40.7825H122.144L121.635 42.1376H120.9L122.965 36.9604H123.588L125.656 42.1376H124.924L124.409 40.7825ZM122.359 40.2246H124.198L123.277 37.8032L122.359 40.2246Z" fill="#626262"/>
|
||||
<path d="M127.149 42.1377H126.437V36.9592H127.149V42.1377Z" fill="#626262"/>
|
||||
<path d="M132.607 42.1377H131.89L129.168 38.1479V42.1377H128.451V36.9592H129.168L131.898 40.9673V36.9592H132.607V42.1377Z" fill="#626262"/>
|
||||
<path d="M136.677 36.9592L138.445 41.1832L140.213 36.9592H141.138V42.1364H140.425V40.1207L140.492 37.945L138.717 42.1377H138.171L136.4 37.9554L136.471 40.1207V42.1364H135.758V36.9592H136.677Z" fill="#626262"/>
|
||||
<path d="M143.16 42.1377H142.447V36.9592H143.16V42.1377Z" fill="#626262"/>
|
||||
<path d="M148.619 42.1377H147.902L145.181 38.1479V42.1377H144.464V36.9592H145.181L147.91 40.9673V36.9592H148.619V42.1377Z" fill="#626262"/>
|
||||
<path d="M152.941 39.7435H150.599V41.5785H153.32V42.1364H149.886V36.9592H153.283V37.5171H150.599V39.1843H152.941V39.7435Z" fill="#626262"/>
|
||||
<path d="M156.19 40.0426H154.92V42.1377H154.203V36.9592H155.993C156.601 36.9592 157.07 37.0919 157.398 37.3572C157.727 37.6225 157.89 38.0087 157.89 38.5159C157.89 38.8384 157.799 39.1193 157.617 39.3586C157.435 39.5979 157.183 39.7773 156.858 39.8957L158.128 42.0935V42.1364H157.363L156.19 40.0426ZM154.92 39.4847H156.016C156.37 39.4847 156.652 39.3963 156.861 39.2207C157.07 39.0452 157.174 38.8098 157.174 38.5159C157.174 38.196 157.075 37.9502 156.876 37.7785C156.676 37.6069 156.388 37.521 156.012 37.5184H154.92V39.4847Z" fill="#626262"/>
|
||||
<path d="M161.875 40.7825H159.61L159.101 42.1376H158.366L160.43 36.9604H161.054L163.122 42.1376H162.39L161.875 40.7825ZM159.825 40.2246H161.663L160.743 37.8032L159.825 40.2246Z" fill="#626262"/>
|
||||
<path d="M164.566 41.5785H167.129V42.1364H163.851V36.9592H164.568V41.5785H164.566Z" fill="#626262"/>
|
||||
<path d="M170.542 41.5785H173.104V42.1364H169.826V36.9592H170.543V41.5785H170.542Z" fill="#626262"/>
|
||||
<path d="M176.974 40.7825H174.709L174.2 42.1376H173.465L175.529 36.9604H176.152L178.22 42.1376H177.489L176.974 40.7825ZM174.923 40.2246H176.762L175.841 37.8032L174.923 40.2246Z" fill="#626262"/>
|
||||
<path d="M179.858 40.5055L179.962 41.1883L180.114 40.5732L181.184 36.9604H181.786L182.829 40.5732L182.977 41.1987L183.092 40.5016L183.932 36.9604H184.649L183.338 42.1376H182.688L181.574 38.365L181.489 37.9696L181.403 38.365L180.249 42.1376H179.598L178.292 36.9604H179.005L179.858 40.5055Z" fill="#626262"/>
|
||||
<path d="M190.303 39.8502H188.034V42.1364H187.321V36.9592H190.67V37.5171H188.034V39.291H190.303V39.8502Z" fill="#626262"/>
|
||||
<path d="M195.683 39.7163C195.683 40.2235 195.594 40.6669 195.416 41.0441C195.238 41.4225 194.985 41.7112 194.658 41.9102C194.331 42.1092 193.95 42.2093 193.515 42.2093C193.088 42.2093 192.711 42.1092 192.382 41.9089C192.053 41.7086 191.797 41.4225 191.615 41.0519C191.433 40.6813 191.339 40.2508 191.335 39.7631V39.3899C191.335 38.8918 191.426 38.4522 191.607 38.0712C191.787 37.6902 192.042 37.3976 192.374 37.1947C192.705 36.9918 193.083 36.8904 193.508 36.8904C193.941 36.8904 194.323 36.9905 194.654 37.1908C194.984 37.3911 195.239 37.6811 195.417 38.0621C195.595 38.4431 195.685 38.8853 195.685 39.3899V39.7163H195.683ZM194.974 39.3808C194.974 38.767 194.845 38.2962 194.589 37.9672C194.331 37.6395 193.971 37.4743 193.508 37.4743C193.057 37.4743 192.702 37.6382 192.444 37.9672C192.185 38.2962 192.053 38.7514 192.045 39.334V39.715C192.045 40.3106 192.176 40.7775 192.436 41.1182C192.697 41.4589 193.057 41.628 193.515 41.628C193.975 41.628 194.332 41.468 194.585 41.1455C194.837 40.8243 194.968 40.3639 194.974 39.7644V39.3808Z" fill="#626262"/>
|
||||
<path d="M200.558 36.9592V40.4796C200.555 40.9686 200.395 41.3678 200.077 41.6773C199.76 41.9881 199.328 42.1624 198.783 42.2001L198.595 42.2066C198.003 42.2066 197.531 42.0532 197.18 41.7476C196.828 41.4419 196.65 41.0206 196.645 40.4848V36.9592H197.351V40.4653C197.351 40.8398 197.458 41.1311 197.674 41.3379C197.89 41.546 198.197 41.6487 198.595 41.6487C198.998 41.6487 199.308 41.546 199.521 41.3392C199.735 41.1324 199.843 40.8424 199.843 40.4679V36.9592H200.558Z" fill="#626262"/>
|
||||
<path d="M205.839 42.1377H205.122L202.401 38.1479V42.1377H201.684V36.9592H202.401L205.13 40.9673V36.9592H205.839V42.1377Z" fill="#626262"/>
|
||||
<path d="M207.105 42.1377V36.9592H208.632C209.102 36.9592 209.519 37.0594 209.88 37.2583C210.241 37.4573 210.521 37.7408 210.718 38.1088C210.915 38.4769 211.014 38.8982 211.016 39.3742V39.7045C211.016 40.1935 210.919 40.6213 210.722 40.9881C210.525 41.3561 210.244 41.6383 209.878 41.8347C209.513 42.0311 209.088 42.1325 208.603 42.1364H207.105V42.1377ZM207.818 37.5184V41.5798H208.568C209.118 41.5798 209.546 41.4159 209.851 41.0882C210.157 40.7605 210.31 40.2949 210.31 39.6889V39.3859C210.31 38.7981 210.166 38.3403 209.877 38.0139C209.589 37.6875 209.179 37.5223 208.649 37.5171H207.818V37.5184Z" fill="#626262"/>
|
||||
<path d="M214.999 40.7825H212.734L212.225 42.1376H211.49L213.554 36.9604H214.178L216.246 42.1376H215.514L214.999 40.7825ZM212.95 40.2246H214.789L213.868 37.8032L212.95 40.2246Z" fill="#626262"/>
|
||||
<path d="M220.231 37.5184H218.493V42.1376H217.784V37.5184H216.05V36.9604H220.231V37.5184Z" fill="#626262"/>
|
||||
<path d="M221.799 42.1377H221.086V36.9592H221.799V42.1377Z" fill="#626262"/>
|
||||
<path d="M227.26 39.7163C227.26 40.2235 227.171 40.6669 226.993 41.0441C226.815 41.4225 226.562 41.7112 226.235 41.9102C225.908 42.1092 225.528 42.2093 225.092 42.2093C224.665 42.2093 224.288 42.1092 223.959 41.9089C223.63 41.7086 223.374 41.4225 223.192 41.0519C223.01 40.6813 222.916 40.2508 222.912 39.7631V39.3899C222.912 38.8918 223.003 38.4522 223.184 38.0712C223.364 37.6902 223.62 37.3976 223.951 37.1947C224.282 36.9918 224.66 36.8904 225.085 36.8904C225.518 36.8904 225.9 36.9905 226.231 37.1908C226.561 37.3911 226.816 37.6811 226.994 38.0621C227.172 38.4431 227.262 38.8853 227.262 39.3899V39.7163H227.26ZM226.551 39.3808C226.551 38.767 226.422 38.2962 226.166 37.9672C225.908 37.6395 225.548 37.4743 225.085 37.4743C224.634 37.4743 224.28 37.6382 224.022 37.9672C223.762 38.2962 223.63 38.7514 223.622 39.334V39.715C223.622 40.3106 223.753 40.7775 224.013 41.1182C224.274 41.4589 224.634 41.628 225.092 41.628C225.552 41.628 225.909 41.468 226.162 41.1455C226.414 40.8243 226.545 40.3639 226.551 39.7644V39.3808Z" fill="#626262"/>
|
||||
<path d="M232.485 42.1377H231.768L229.047 38.1479V42.1377H228.33V36.9592H229.047L231.777 40.9673V36.9592H232.485V42.1377Z" fill="#626262"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,115 @@
|
||||
<svg width="247" height="46" viewBox="0 0 247 46" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.5">
|
||||
<path d="M22.1259 23.4335C22.1259 25.1693 22.1259 26.9038 22.1259 28.6397C21.8264 28.6452 21.5284 28.6493 21.2289 28.6548C20.2656 28.674 19.3067 28.733 18.3521 28.8579C16.345 29.1214 14.443 29.732 12.5726 30.4442C10.0616 31.3993 7.56633 32.3969 4.95592 33.094C3.93796 33.3657 2.92864 33.6662 1.88477 33.846C1.88477 32.1513 1.88477 30.4565 1.88477 28.7632C2.04747 28.6164 2.21161 28.4709 2.37431 28.3227C6.3684 24.6822 10.5929 21.2928 14.8447 17.9335C15.0247 17.7922 15.1182 17.8361 15.268 17.9555C17.2837 19.5541 19.2995 21.1514 21.2865 22.783C21.56 23.0067 21.8077 23.2619 22.1259 23.4335ZM19.0677 23.4883C19.157 23.4966 19.2534 23.4595 19.2952 23.3497C19.3571 23.1906 19.2362 23.1069 19.1267 23.0218C17.828 22.0077 16.525 20.9964 15.2334 19.9741C15.0607 19.8368 14.9613 19.867 14.8058 19.9891C13.5373 20.9909 12.2616 21.9844 10.9888 22.9806C10.9312 23.0259 10.8751 23.0739 10.8247 23.1261C10.7628 23.1919 10.7397 23.266 10.793 23.3497C10.8419 23.4266 10.9125 23.4719 11.0032 23.465C11.0882 23.4582 11.1717 23.4348 11.2537 23.4156C12.1637 23.1906 13.0751 22.9669 13.9837 22.735C14.1752 22.6856 14.3609 22.6787 14.5538 22.713C15.1744 22.8228 15.795 22.9298 16.4155 23.0369C17.2909 23.1865 18.1635 23.3347 19.0677 23.4883Z" fill="#7C7B7B"/>
|
||||
<path d="M1.88477 39.6632C1.88477 39.6221 1.88477 39.5809 1.88477 39.5411C2.04027 39.5329 2.16121 39.4395 2.29368 39.3805C6.3468 37.5651 10.5741 36.9174 15.0131 37.6337C16.9627 37.9479 18.8301 38.5298 20.6947 39.128C21.167 39.279 21.6248 39.4793 22.1259 39.5425C22.1259 39.5836 22.1259 39.6248 22.1259 39.6646C22.0424 39.7606 22.0625 39.8773 22.0625 39.9871C22.0611 41.609 22.0611 43.231 22.0625 44.853C22.0625 44.9642 22.0424 45.0794 22.1259 45.1755C22.1259 45.1961 22.1259 45.2166 22.1259 45.2372C15.3789 45.2372 8.63181 45.2372 1.88477 45.2372C1.88477 45.2166 1.88477 45.1961 1.88477 45.1755C1.96972 45.0794 1.94812 44.9628 1.94812 44.853C1.94956 43.231 1.94956 41.609 1.94812 39.9871C1.94812 39.8759 1.96828 39.7593 1.88477 39.6632Z" fill="#393939"/>
|
||||
<path d="M22.1254 5.91758C22.1254 8.83632 22.1254 11.7564 22.1254 14.6752C21.1824 14.5338 20.2781 14.2525 19.3696 13.9836C17.7066 13.4923 16.1674 12.7252 14.6038 12.0172C11.8666 10.778 9.00282 10.365 6.00654 10.8151C4.56959 11.0305 3.20463 11.4655 1.88574 12.0419C1.88574 10.5516 1.88574 9.06137 1.88574 7.57112C1.94765 7.5574 2.01101 7.5478 2.07292 7.53133C4.62286 6.84521 7.22607 6.43217 9.85664 6.16047C13.0214 5.83388 16.1962 5.74056 19.3754 5.7982C20.2911 5.81467 21.2111 5.81467 22.1254 5.91758Z" fill="#909090"/>
|
||||
<path d="M1.88477 22.2088C1.88477 22.1677 1.88477 22.1265 1.88477 22.0867C1.97547 21.9797 1.94812 21.8534 1.94812 21.7327C1.94956 19.0692 1.94956 16.4057 1.94812 13.7435C1.94812 13.6228 1.97547 13.4965 1.88477 13.3895C1.88477 13.3689 1.88477 13.3483 1.88477 13.3277C4.02003 12.2231 6.30216 11.7113 8.72972 11.795C10.8074 11.8663 12.7454 12.4577 14.6057 13.2934C16.26 14.0372 17.9273 14.7439 19.6796 15.2516C20.4845 15.4849 21.2879 15.7333 22.1273 15.8389C22.1273 15.8801 22.1273 15.9213 22.1273 15.9611C22.0309 16.0777 22.064 16.2149 22.064 16.3453C22.0625 18.0496 22.064 19.7525 22.0611 21.4569C22.0611 21.5872 22.0942 21.7244 21.9977 21.8411C21.9214 21.7848 21.8437 21.7327 21.7717 21.6737C19.743 20.0119 17.684 18.383 15.6222 16.7583C15.1442 16.381 14.944 16.3796 14.4761 16.7501C13.4308 17.5775 12.3797 18.3995 11.3444 19.238C11.1472 19.3971 11.0334 19.3862 10.8463 19.2297C10.1926 18.6877 9.52018 18.1649 8.85498 17.6366C8.35392 17.2386 8.16818 17.2386 7.65992 17.642C6.17978 18.8167 4.70395 19.9968 3.22093 21.1687C2.77602 21.5186 2.37143 21.9111 1.88477 22.2088Z" fill="#919191"/>
|
||||
<path d="M1.88477 38.2546C1.88477 37.1925 1.88477 36.1317 1.88477 35.0696C3.17197 34.7663 4.45342 34.4439 5.72191 34.0761C8.08755 33.39 10.361 32.4651 12.6648 31.6184C14.6143 30.9021 16.5826 30.2613 18.6717 30.0129C19.8193 29.8757 20.974 29.8538 22.1259 29.803C22.1259 32.6408 22.1259 35.4785 22.1259 38.3163C22.0136 38.3506 21.9171 38.2944 21.8178 38.2642C20.8632 37.9678 19.9071 37.6714 18.9525 37.3736C13.2335 35.5911 7.62537 35.8614 2.12522 38.1873C2.04891 38.2189 1.97835 38.2751 1.88477 38.2546Z" fill="#999999"/>
|
||||
<path d="M1.88373 6.34583C1.88373 4.64152 1.88805 2.93583 1.87797 1.23152C1.87653 1.04901 1.91684 1.01196 2.10834 1.01196C8.70564 1.01745 15.3029 1.01745 21.9002 1.01196C22.0917 1.01196 22.1321 1.04901 22.1306 1.23152C22.1191 2.40478 22.1249 3.57941 22.1249 4.75267C22.0831 4.74855 22.0399 4.74032 21.9982 4.73895C19.3158 4.61956 16.6333 4.64564 13.9524 4.74855C10.4435 4.88303 6.96057 5.22884 3.53089 5.9767C2.98088 6.09746 2.44526 6.27585 1.88373 6.34583Z" fill="#525252"/>
|
||||
<path d="M1.88477 23.7403C3.21805 22.6686 4.54989 21.5955 5.88605 20.5265C6.60741 19.9488 7.33884 19.3821 8.05732 18.8016C8.20562 18.6822 8.30209 18.6671 8.45759 18.7961C8.94857 19.205 9.45251 19.603 9.95789 19.9968C10.112 20.1176 10.158 20.1876 9.97229 20.3371C7.27837 22.4984 4.63052 24.7104 2.07194 27.0185C2.02155 27.0652 1.98123 27.1393 1.88765 27.1091C1.88477 25.9853 1.88477 24.8628 1.88477 23.7403Z" fill="#7D7C7C"/>
|
||||
<path d="M1.88477 45.2361C8.63181 45.2361 15.3789 45.2361 22.1259 45.2361C22.0539 45.3637 21.9301 45.2937 21.8365 45.2937C16.1823 45.2978 10.5266 45.2978 4.87241 45.2978C3.94084 45.2978 3.00927 45.2992 2.0777 45.2937C2.01579 45.2937 1.91068 45.3678 1.88477 45.2361Z" fill="#85A2AB"/>
|
||||
<path d="M1.88477 13.3892C1.9763 13.4962 1.94869 13.6224 1.94869 13.7432C1.95015 16.4067 1.95015 19.0702 1.94869 21.7323C1.94869 21.8531 1.9763 21.9793 1.88477 22.0864C1.88477 19.1868 1.88477 16.2873 1.88477 13.3892Z" fill="#10A98D"/>
|
||||
<path d="M22.1254 21.9027C22.0542 21.9343 22.0252 21.8876 21.9961 21.841C22.0934 21.7243 22.06 21.5871 22.06 21.4567C22.0615 19.7524 22.06 18.0495 22.0629 16.3452C22.0629 16.2148 22.0295 16.0776 22.1269 15.9609C22.1254 17.9411 22.1254 19.9226 22.1254 21.9027Z" fill="#10A98D"/>
|
||||
<path d="M1.88477 39.6628C1.97049 39.7589 1.94869 39.8755 1.94869 39.9853C1.95015 41.6073 1.95015 43.2293 1.94869 44.8513C1.94869 44.9624 1.96903 45.0777 1.88477 45.1737C1.88477 43.3377 1.88477 41.5003 1.88477 39.6628Z" fill="#104A5C"/>
|
||||
<path d="M22.126 45.1752C22.0403 45.0791 22.062 44.9625 22.062 44.8527C22.0606 43.2307 22.0606 41.6088 22.062 39.9868C22.062 39.8756 22.0417 39.7604 22.126 39.6643C22.126 41.5004 22.126 43.3378 22.126 45.1752Z" fill="#104A5C"/>
|
||||
<path d="M173.241 1.08667C173.235 1.22527 173.224 1.36249 173.224 1.50108C173.222 8.4144 173.221 15.3277 173.23 22.241C173.23 22.5031 173.176 22.5951 172.877 22.5909C171.536 22.5745 170.194 22.5772 168.854 22.5896C168.602 22.5923 168.487 22.5484 168.462 22.2794C168.423 21.8403 168.33 21.4053 168.254 20.9347C168.017 21.172 167.819 21.3847 167.604 21.5823C166.549 22.5553 165.276 22.9559 163.822 22.8736C160.818 22.7021 159.08 21.0238 158.255 18.4372C157.422 15.8231 157.427 13.1596 158.3 10.54C158.798 9.04425 159.698 7.79963 161.171 7.00786C162.736 6.16668 165.479 5.86067 167.305 7.35915C167.508 7.52656 167.702 7.70358 167.904 7.87785C167.99 7.86276 167.967 7.79277 167.967 7.73788C167.967 5.56838 167.967 3.40026 167.966 1.23075C167.966 1.18273 167.947 1.13607 167.937 1.08804C169.705 1.08667 171.473 1.08667 173.241 1.08667ZM167.971 14.6251C167.971 13.6851 167.968 12.7438 167.974 11.8038C167.976 11.6391 167.935 11.4964 167.847 11.3551C167.295 10.4618 166.244 10.0144 165.122 10.1997C164.085 10.3712 163.583 11.0642 163.275 11.9342C163.017 12.6628 162.948 13.4217 162.925 14.186C162.892 15.2481 162.916 16.3075 163.27 17.3284C163.881 19.0876 165.927 19.6269 167.369 18.4111C167.761 18.0818 168.015 17.7003 167.984 17.15C167.938 16.3102 167.971 15.4677 167.971 14.6251Z" fill="#595959"/>
|
||||
<path d="M50.3372 1.08667C50.3343 3.42358 50.3314 5.7605 50.3285 8.09878C50.3285 8.13446 50.3357 8.16876 50.3401 8.20856C50.5719 8.00135 50.7835 7.80512 51.0024 7.61576C52.448 6.36291 54.1642 6.10355 56.0087 6.44112C58.2217 6.84593 59.5809 8.236 60.0056 10.4343C60.1467 11.1671 60.2158 11.9026 60.2144 12.6477C60.2101 15.8464 60.2086 19.0451 60.2187 22.2451C60.2202 22.5141 60.1539 22.5937 59.8617 22.5909C58.3441 22.5758 56.8265 22.5758 55.3089 22.5909C55.0065 22.5937 54.9576 22.4976 54.959 22.2396C54.9677 19.0314 54.9648 15.8217 54.9648 12.6134C54.9648 12.1757 54.9216 11.7448 54.7646 11.329C54.5588 10.787 54.1686 10.433 53.5797 10.2889C52.8367 10.1064 52.0995 10.1215 51.371 10.3616C51.1521 10.433 50.9549 10.5414 50.7749 10.6786C50.4797 10.9023 50.3141 11.1547 50.317 11.5554C50.3357 15.1205 50.3242 18.6869 50.3357 22.252C50.3372 22.5319 50.2537 22.5937 49.9729 22.5923C48.4654 22.58 46.9579 22.5786 45.4504 22.5937C45.1567 22.5964 45.0933 22.5127 45.0948 22.2451C45.1019 15.362 45.1005 8.47889 45.1005 1.59577C45.1005 1.42698 45.0976 1.25957 45.0962 1.09079C46.8441 1.08667 48.5907 1.08667 50.3372 1.08667Z" fill="#595959"/>
|
||||
<path d="M93.9207 14.0993C93.9221 16.8438 93.9221 19.5869 93.9279 22.3313C93.9279 22.5235 93.8732 22.5866 93.6658 22.5852C92.023 22.5783 90.3801 22.5742 88.7373 22.5879C88.4536 22.5907 88.4781 22.4466 88.4781 22.2723C88.4796 18.9735 88.4781 15.6746 88.4781 12.3758C88.4781 8.74074 88.4781 5.10432 88.4767 1.46928C88.4767 1.34166 88.4623 1.21404 88.4551 1.08643C93.4671 1.08643 98.4792 1.08643 103.49 1.08643C103.487 2.42573 103.484 3.76502 103.48 5.10432C101.972 5.10844 100.465 5.11256 98.9572 5.11393C97.3763 5.1153 95.7968 5.12079 94.2158 5.10844C93.9509 5.1057 93.9164 5.20038 93.9178 5.41582C93.9264 6.85255 93.9293 8.28791 93.9164 9.72463C93.9135 9.97163 93.9811 10.0375 94.2418 10.0375C96.9458 10.0279 99.6483 10.0348 102.352 10.0265C102.603 10.0252 102.688 10.0746 102.685 10.3298C102.669 11.4783 102.673 12.6283 102.683 13.7768C102.685 13.9703 102.633 14.0293 102.424 14.0293C99.6166 14.0211 96.809 14.0211 94.0027 14.0197C93.984 13.984 93.9509 13.984 93.925 14.0033C93.889 14.0293 93.8703 14.065 93.9207 14.0993Z" fill="#595959"/>
|
||||
<path d="M30.9503 5.12078C28.7401 5.12215 26.5314 5.1249 24.3213 5.12627C24.3213 5.08647 24.3213 5.04668 24.3213 5.00688C24.435 4.92318 24.3846 4.80517 24.3846 4.70362C24.389 3.64426 24.3875 2.58489 24.3875 1.52416C24.3875 1.13993 24.3875 1.13993 24.7907 1.13993C30.789 1.13993 36.7859 1.13993 42.7842 1.13993C42.8577 1.13993 42.9297 1.1413 43.0031 1.13993C43.0967 1.13856 43.1154 1.17424 43.1154 1.26755C43.1053 2.5451 43.101 3.82265 43.0967 5.09882C41.7821 5.10294 40.4675 5.1098 39.1544 5.11117C38.2646 5.11255 37.3734 5.10706 36.4835 5.10568C36.4576 5.06863 36.4216 5.06726 36.3943 5.09745C36.3655 5.12901 36.3755 5.16057 36.4144 5.18116C36.4173 5.28956 36.4245 5.39797 36.4245 5.50775C36.4245 11.0886 36.4231 16.6681 36.4303 22.249C36.4303 22.4974 36.3856 22.5879 36.0962 22.5852C34.4966 22.5701 32.8969 22.577 31.2973 22.5756C31.2152 22.5756 31.1331 22.5632 31.0511 22.5577C31.0525 20.439 31.0568 18.3203 31.0568 16.2029C31.0583 12.6187 31.0583 9.03576 31.0525 5.45149C31.0539 5.34171 31.1374 5.18802 30.9503 5.12078Z" fill="#595959"/>
|
||||
<path d="M207.242 1.0878C207.395 1.18385 207.579 1.17013 207.746 1.21679C208.938 1.5571 209.696 2.52178 209.619 3.61545C209.536 4.81478 208.659 5.7232 207.402 5.89885C206.79 5.98393 206.18 5.97844 205.585 5.79318C204.476 5.44875 203.798 4.57053 203.807 3.50293C203.815 2.42847 204.525 1.5571 205.65 1.22639C205.825 1.17425 206.02 1.18385 206.181 1.08643C206.534 1.0878 206.888 1.0878 207.242 1.0878Z" fill="#595959"/>
|
||||
<path d="M74.0444 34.1935C73.9522 34.0755 73.8025 34.107 73.6801 34.0768C72.6837 33.8244 72.138 33.1588 72.1366 32.1777C72.1352 31.2775 72.1265 30.3759 72.1438 29.4757C72.1481 29.237 72.0675 29.1464 71.8299 29.1148C71.5376 29.0751 71.3706 28.7169 71.5031 28.463C71.5376 28.3958 71.5952 28.3917 71.6571 28.3917C72.3526 28.3903 73.0494 28.3931 73.7449 28.3889C73.8615 28.3889 73.9191 28.4246 73.9148 28.5413C73.9105 28.6401 73.9047 28.7402 73.9162 28.8377C73.9364 29.0078 73.8788 29.0998 73.6844 29.0998C73.3288 29.0984 73.2366 29.2727 73.2481 29.6034C73.2755 30.4336 73.2496 31.2665 73.2582 32.0967C73.2683 33.0477 73.9911 33.5417 74.9399 33.259C75.4165 33.1177 75.6656 32.7883 75.6757 32.3327C75.6973 31.3337 75.6843 30.3334 75.693 29.3344C75.6944 29.1313 75.5404 29.156 75.4194 29.1313C75.0782 29.06 74.9198 28.7814 75.0451 28.4768C75.0811 28.3903 75.1487 28.3917 75.2207 28.3917C75.9061 28.3917 76.5914 28.3944 77.2782 28.3889C77.4337 28.3876 77.4654 28.4521 77.4712 28.5852C77.4942 29.0449 77.5014 29.06 77.0363 29.1327C76.8189 29.167 76.8074 29.2754 76.8074 29.4373C76.8117 30.3375 76.8088 31.2391 76.8103 32.1393C76.8103 33.2233 76.2214 33.9026 75.1041 34.1153C75.0206 34.1304 74.9097 34.0837 74.8579 34.1921C74.5857 34.1935 74.3151 34.1935 74.0444 34.1935Z" fill="#595959"/>
|
||||
<path d="M121.085 34.1933C121.065 34.1728 121.049 34.1384 121.026 34.1343C119.687 33.8764 119.052 33.0146 118.86 31.8015C118.751 31.1072 118.814 30.4183 119.124 29.7679C119.602 28.762 120.588 28.2214 121.74 28.3229C122.85 28.4217 123.752 29.1847 124.012 30.2715C124.208 31.0893 124.195 31.9045 123.836 32.6853C123.479 33.4619 122.863 33.9518 121.982 34.122C121.926 34.133 121.851 34.1096 121.834 34.192C121.585 34.1933 121.334 34.1933 121.085 34.1933ZM122.988 31.2389C123.004 30.9453 122.974 30.6296 122.892 30.3209C122.719 29.6636 122.243 29.2355 121.622 29.1792C121.006 29.1229 120.466 29.3837 120.224 29.9216C119.834 30.7888 119.835 31.678 120.222 32.5453C120.45 33.0558 120.893 33.3096 121.485 33.3055C122.076 33.3 122.495 33.0365 122.748 32.5357C122.951 32.135 123.003 31.7041 122.988 31.2389Z" fill="#595959"/>
|
||||
<path d="M38.3593 34.1941C38.3506 34.1474 38.3175 34.1351 38.2743 34.1255C37.0432 33.8716 36.3982 33.0839 36.1865 31.9573C36.0123 31.027 36.1016 30.1172 36.6991 29.3158C37.766 27.8818 40.0986 27.9833 40.9869 29.5299C41.6219 30.6345 41.6046 31.7927 41.0129 32.9179C40.6558 33.5958 40.0453 33.9855 39.262 34.1268C39.2059 34.1364 39.1324 34.1159 39.1094 34.1954C38.8574 34.1941 38.6083 34.1941 38.3593 34.1941ZM40.3059 31.1381C40.2973 31.0448 40.2886 30.8568 40.2598 30.6702C40.2339 30.5041 40.1994 30.3381 40.1461 30.1789C39.9344 29.5477 39.4406 29.1854 38.7955 29.1758C38.1332 29.1662 37.6451 29.4928 37.4262 30.1405C37.17 30.8966 37.1714 31.6623 37.4594 32.4143C37.6768 32.9824 38.1303 33.2925 38.725 33.3062C39.3585 33.3213 39.8394 33.0249 40.087 32.4527C40.2569 32.063 40.3016 31.65 40.3059 31.1381Z" fill="#595959"/>
|
||||
<path d="M43.0947 5.10304C43.1004 3.8255 43.1033 2.54795 43.1134 1.27177C43.1148 1.17846 43.0947 1.14415 43.0011 1.14415C42.9276 1.14552 42.8556 1.14415 42.7822 1.14415C36.7839 1.14415 30.787 1.14415 24.7887 1.14415C24.3855 1.14415 24.3855 1.14415 24.3855 1.52838C24.3855 2.58774 24.3869 3.64711 24.3826 4.70784C24.3826 4.80939 24.4316 4.92877 24.3193 5.01111C24.3193 3.78296 24.325 2.55481 24.3135 1.32666C24.3121 1.1222 24.3553 1.0824 24.5698 1.08377C30.7884 1.09064 37.0056 1.08926 43.2242 1.08926C43.217 2.00729 43.2084 2.92531 43.2026 3.84333C43.1998 4.18914 43.207 4.53494 43.1983 4.88074C43.1969 4.95622 43.2761 5.09069 43.0947 5.10304Z" fill="#595959"/>
|
||||
<path d="M245.355 11.8451C245.378 11.8451 245.401 11.8438 245.424 11.8438C245.424 15.4102 245.424 18.9766 245.424 22.5417C245.401 22.5403 245.378 22.5389 245.356 22.5376C245.353 20.6164 245.346 18.6967 245.346 16.7756C245.344 15.1316 245.35 13.4891 245.355 11.8451Z" fill="#D5D5D5"/>
|
||||
<path d="M103.482 5.10432C103.485 3.76502 103.488 2.42573 103.493 1.08643C103.535 1.08643 103.577 1.08643 103.619 1.08643C103.546 1.18523 103.581 1.29775 103.581 1.40341C103.578 2.54785 103.581 3.69367 103.575 4.83811C103.573 4.92868 103.644 5.05767 103.482 5.10432Z" fill="#595959"/>
|
||||
<path d="M211.235 34.1929C211.234 34.1751 211.233 34.1572 211.234 34.1394C211.588 34.1394 211.944 34.1408 212.298 34.1408C212.299 34.1586 212.299 34.1751 212.297 34.1929C211.942 34.1929 211.588 34.1929 211.235 34.1929Z" fill="#D5D5D5"/>
|
||||
<path d="M115.847 34.1406C115.85 34.1585 115.848 34.1749 115.846 34.1928C115.513 34.1928 115.18 34.1928 114.848 34.1928C114.845 34.1749 114.843 34.1585 114.846 34.1406C115.179 34.1406 115.513 34.1406 115.847 34.1406Z" fill="#D5D5D5"/>
|
||||
<path d="M141.985 34.1379C141.985 34.1558 141.985 34.1736 141.984 34.1928C141.651 34.1928 141.318 34.1928 140.986 34.1928C140.982 34.1764 140.98 34.1599 140.983 34.1421C141.318 34.1407 141.652 34.1393 141.985 34.1379Z" fill="#D5D5D5"/>
|
||||
<path d="M153.653 34.1434C153.658 34.1599 153.656 34.1764 153.651 34.1915C153.318 34.1915 152.985 34.1915 152.653 34.1915C152.65 34.1736 152.65 34.1558 152.651 34.1379C152.985 34.1407 153.319 34.1421 153.653 34.1434Z" fill="#D5D5D5"/>
|
||||
<path d="M128.511 34.141C128.512 34.1588 128.512 34.1753 128.51 34.1931C128.197 34.1931 127.886 34.1931 127.574 34.1931C127.571 34.1753 127.571 34.1588 127.572 34.141C127.885 34.1396 128.197 34.141 128.511 34.141Z" fill="#D5D5D5"/>
|
||||
<path d="M245.423 29.082C245.397 29.0642 245.37 29.0464 245.346 29.0285C245.349 28.835 245.35 28.6416 245.353 28.4467C245.376 28.4398 245.399 28.4344 245.424 28.4275C245.423 28.6457 245.423 28.8639 245.423 29.082Z" fill="#595959"/>
|
||||
<path d="M145.452 8.44308C145.899 7.94908 146.31 7.52917 146.827 7.22591C148.696 6.1295 150.673 6.01423 152.682 6.76896C154.005 7.26571 154.699 8.3333 155.093 9.59301C155.394 10.5522 155.476 11.5361 155.478 12.5282C155.481 15.7763 155.476 19.0257 155.485 22.2738C155.485 22.5153 155.429 22.5922 155.162 22.5894C153.623 22.5771 152.085 22.5771 150.546 22.5894C150.287 22.5908 150.217 22.5236 150.218 22.2766C150.227 18.9983 150.224 15.72 150.225 12.4418C150.225 12.1934 150.209 11.9464 150.158 11.7035C149.96 10.7594 149.524 10.3573 148.523 10.2174C147.518 10.076 146.594 10.2064 145.871 10.9749C145.698 11.1587 145.608 11.3522 145.608 11.6129C145.616 15.1588 145.611 18.7046 145.621 22.2505C145.622 22.5291 145.54 22.5949 145.258 22.5922C143.73 22.5785 142.201 22.5798 140.673 22.5922C140.423 22.5935 140.365 22.5249 140.365 22.293C140.372 17.1623 140.372 12.0328 140.367 6.90206C140.367 6.69486 140.397 6.61115 140.647 6.61252C142.103 6.62487 143.559 6.62213 145.013 6.61389C145.226 6.61252 145.294 6.66604 145.305 6.87462C145.334 7.37137 145.396 7.86949 145.452 8.44308Z" fill="#595959"/>
|
||||
<path d="M185.096 21.1936C184.439 21.9319 183.685 22.4561 182.749 22.6702C180.523 23.1793 178.516 22.8046 176.787 21.2924C174.679 19.4468 174.863 15.2779 177.99 13.8069C179.393 13.1482 180.88 12.8957 182.421 12.845C183.148 12.8216 183.875 12.8203 184.602 12.8216C184.798 12.8216 184.88 12.7791 184.873 12.5746C184.853 12.0024 184.903 11.4261 184.687 10.8717C184.436 10.2295 183.948 9.88368 183.244 9.8137C183.008 9.79037 182.766 9.79174 182.529 9.81095C181.637 9.88643 181.098 10.4038 181.051 11.2504C181.038 11.4727 180.978 11.5304 180.749 11.529C179.2 11.5194 177.651 11.5194 176.101 11.529C175.854 11.5304 175.787 11.4686 175.803 11.2271C175.926 9.41987 176.968 8.2027 178.549 7.34231C180.105 6.49427 181.812 6.27196 183.573 6.32274C184.822 6.35842 186.036 6.56425 187.149 7.13098C189.122 8.13409 190.079 9.74097 190.102 11.846C190.128 14.1431 190.102 16.4416 190.111 18.7401C190.115 19.9435 190.21 21.1333 190.773 22.2448C190.906 22.5069 190.841 22.5837 190.54 22.5837C188.971 22.5851 187.4 22.581 185.83 22.5878C185.646 22.5892 185.551 22.537 185.479 22.3737C185.319 22.0087 185.226 21.6259 185.096 21.1936ZM184.868 16.8039C184.868 16.4375 184.861 16.0711 184.871 15.7061C184.876 15.5373 184.814 15.4824 184.638 15.4851C184.14 15.4947 183.642 15.4755 183.144 15.4906C181.478 15.54 180.632 16.3496 180.656 17.8618C180.666 18.5109 181.05 19.0145 181.698 19.2272C182.628 19.5332 183.934 19.1531 184.608 18.3929C184.799 18.1775 184.899 17.9524 184.876 17.6642C184.851 17.3788 184.868 17.0907 184.868 16.8039Z" fill="#595959"/>
|
||||
<path d="M132.578 20.9189C132.27 21.2112 132.022 21.4883 131.729 21.7216C130.578 22.6342 129.232 22.9347 127.773 22.8798C126.764 22.8414 125.792 22.6575 124.92 22.1388C123.611 21.3621 122.982 20.1696 122.692 18.7782C122.573 18.2032 122.525 17.6228 122.525 17.0368C122.528 13.6694 122.531 10.3019 122.52 6.93444C122.518 6.6696 122.586 6.60648 122.859 6.60922C124.377 6.62295 125.895 6.62295 127.412 6.60922C127.683 6.60648 127.758 6.66411 127.756 6.9317C127.745 10.2498 127.748 13.5678 127.75 16.8859C127.75 17.0835 127.765 17.2825 127.794 17.4773C127.948 18.4749 128.601 19.006 129.667 19.0266C130.423 19.0403 131.138 18.9332 131.756 18.4804C132.169 18.1771 132.394 17.8231 132.39 17.277C132.362 13.8299 132.38 10.3842 132.369 6.93719C132.368 6.67372 132.434 6.60785 132.711 6.61059C134.26 6.62432 135.809 6.62157 137.357 6.61334C137.572 6.61197 137.635 6.66274 137.635 6.87406C137.629 12.0241 137.629 17.174 137.635 22.324C137.635 22.534 137.57 22.5889 137.354 22.5875C135.898 22.5793 134.443 22.5793 132.987 22.5875C132.768 22.5889 132.706 22.5216 132.696 22.3199C132.679 21.8671 132.624 21.417 132.578 20.9189Z" fill="#595959"/>
|
||||
<path d="M245.356 11.8457C245.353 13.4896 245.346 15.1322 245.346 16.7761C245.346 18.6973 245.351 20.617 245.356 22.5381V22.5368C245.315 22.5464 245.277 22.567 245.236 22.5656C243.529 22.5628 241.822 22.5587 240.115 22.5546C240.112 19.2173 240.11 15.8814 240.108 12.5442C240.108 12.2066 240.077 11.8731 239.998 11.5438C239.815 10.7822 239.347 10.3609 238.541 10.2333C237.982 10.1441 237.427 10.1318 236.875 10.2841C236.4 10.4158 236.016 10.667 235.699 11.0251C235.545 11.1994 235.47 11.3805 235.471 11.6165C235.479 15.1514 235.471 18.6863 235.484 22.2212C235.486 22.5327 235.392 22.5917 235.087 22.5889C233.569 22.5738 232.052 22.5779 230.534 22.5862C230.324 22.5875 230.252 22.5436 230.252 22.3268C230.259 17.1686 230.259 12.009 230.252 6.85077C230.252 6.64356 230.327 6.61063 230.518 6.612C231.974 6.61886 233.428 6.62161 234.884 6.60926C235.124 6.60789 235.175 6.68473 235.188 6.89331C235.216 7.38594 235.277 7.8772 235.324 8.38767C235.477 8.34925 235.526 8.21889 235.61 8.12969C236.905 6.7506 238.56 6.24425 240.452 6.32246C241.759 6.37598 242.957 6.70394 243.876 7.65627C244.647 8.45766 245.002 9.44566 245.184 10.4954C245.264 10.9428 245.301 11.3956 245.356 11.8457Z" fill="#595959"/>
|
||||
<path d="M73.102 16.1749C71.4707 16.1749 69.8379 16.179 68.2066 16.1694C67.9618 16.168 67.9071 16.2188 67.969 16.4507C68.3924 18.026 69.717 19.0099 71.416 19.0291C72.9494 19.047 74.2827 18.6339 75.3093 17.5004C75.423 17.3756 75.4778 17.4209 75.567 17.521C76.2754 18.3252 76.9838 19.1279 77.7037 19.9224C77.842 20.0748 77.7628 20.1626 77.6677 20.2751C76.8413 21.2521 75.7787 21.9163 74.5491 22.3184C71.8076 23.2131 69.0907 23.1609 66.535 21.7955C63.9721 20.426 62.7281 18.2346 62.5927 15.4558C62.525 14.0534 62.6215 12.6674 63.0765 11.3213C64.1319 8.20082 66.6818 6.52258 69.9704 6.33458C71.4405 6.25088 72.8803 6.39359 74.2266 7.0111C76.2006 7.91814 77.3654 9.44681 77.9226 11.4352C78.2883 12.7429 78.2825 14.0781 78.2811 15.416C78.2797 16.1749 78.2811 16.1749 77.4993 16.1749C76.0335 16.1749 74.5678 16.1749 73.102 16.1749ZM70.519 13.0517C71.1943 13.0517 71.8695 13.0517 72.5448 13.0517C73.174 13.0517 73.174 13.0517 73.1539 12.4534C73.1193 11.4105 72.6168 10.6654 71.7328 10.3456C70.6658 9.95865 69.4909 10.1727 68.7998 10.8986C68.293 11.4311 68.0972 12.0966 67.9503 12.7813C67.9071 12.9872 67.9446 13.0599 68.1821 13.0558C68.9596 13.0434 69.74 13.0517 70.519 13.0517Z" fill="#595959"/>
|
||||
<path d="M120.752 14.643C120.748 16.2142 120.523 17.7415 119.73 19.1494C118.554 21.2325 116.708 22.4194 114.273 22.7721C112.67 23.004 111.075 22.9381 109.54 22.4043C107.471 21.6839 106.001 20.3254 105.25 18.3631C104.295 15.8711 104.278 13.3311 105.267 10.8405C106.289 8.27172 108.321 6.83499 111.146 6.42332C112.858 6.17357 114.555 6.27923 116.165 6.93379C118.499 7.88337 119.842 9.63297 120.446 11.937C120.674 12.822 120.755 13.7291 120.752 14.643ZM109.815 14.643C109.815 14.8214 109.808 14.9998 109.817 15.1782C109.858 16.0207 109.938 16.8592 110.329 17.6345C110.99 18.9422 112.611 19.4362 113.952 18.7419C114.649 18.381 115 17.7717 115.215 17.0801C115.549 16.0015 115.556 14.8955 115.494 13.784C115.452 13.0485 115.34 12.3267 115.025 11.6474C114.735 11.0258 114.295 10.5318 113.598 10.3177C112.424 9.95682 110.859 10.1187 110.195 11.9232C109.873 12.8015 109.802 13.7181 109.815 14.643Z" fill="#595959"/>
|
||||
<path d="M220.021 6.3158C221.573 6.32266 223.06 6.59025 224.403 7.37105C226.019 8.30966 227.089 9.66954 227.598 11.3931C228.311 13.8082 228.351 16.2384 227.325 18.5795C226.249 21.0344 224.238 22.4148 221.476 22.7853C219.901 22.9967 218.34 22.9198 216.839 22.3943C214.816 21.6862 213.358 20.3606 212.61 18.4477C211.585 15.8295 211.573 13.166 212.709 10.5697C213.79 8.09696 215.845 6.78511 218.589 6.40088C219.065 6.33364 219.541 6.30894 220.021 6.3158ZM217.119 14.626C217.144 15.061 217.155 15.496 217.196 15.9297C217.237 16.3743 217.332 16.8106 217.478 17.236C218.104 19.0529 219.783 19.2765 220.977 18.869C221.934 18.5424 222.37 17.7767 222.591 16.8957C222.955 15.4398 222.935 13.9701 222.638 12.5073C222.498 11.8171 222.219 11.1735 221.633 10.7056C220.329 9.66268 218.311 10.1457 217.629 11.6579C217.201 12.6061 217.139 13.6106 217.119 14.626Z" fill="#595959"/>
|
||||
<path d="M193.84 14.3703C193.84 13.0433 193.832 11.7164 193.848 10.3894C193.85 10.1177 193.765 10.0573 193.499 10.0669C192.981 10.0875 192.46 10.0669 191.94 10.0765C191.766 10.0793 191.704 10.0285 191.704 9.85699C191.711 8.84702 191.711 7.83706 191.702 6.82709C191.701 6.65145 191.766 6.61028 191.937 6.61303C192.477 6.62126 193.018 6.60342 193.558 6.62126C193.801 6.62949 193.846 6.55265 193.845 6.33721C193.833 5.19825 193.846 4.0593 193.833 2.92035C193.83 2.69942 193.888 2.63629 194.125 2.63767C195.675 2.64864 197.222 2.65002 198.772 2.63629C199.032 2.63355 199.074 2.72 199.073 2.9423C199.061 4.07165 199.077 5.19963 199.061 6.32897C199.058 6.5746 199.139 6.624 199.376 6.61989C200.104 6.60616 200.832 6.62126 201.559 6.61165C201.758 6.60891 201.827 6.65556 201.824 6.85865C201.813 7.84941 201.814 8.83879 201.823 9.82954C201.824 10.0299 201.754 10.0807 201.553 10.0779C200.816 10.0683 200.078 10.082 199.339 10.0697C199.116 10.0656 199.063 10.1369 199.063 10.3414C199.07 12.7181 199.067 15.0948 199.067 17.4715C199.067 17.5017 199.065 17.5305 199.067 17.5607C199.12 18.5926 199.512 18.9521 200.6 18.9686C201.016 18.9741 201.433 18.9755 201.844 18.9082C202.007 18.8808 202.066 18.911 202.065 19.0798C202.057 20.1391 202.06 21.1985 202.062 22.2579C202.062 22.3745 202.052 22.4623 201.902 22.5021C200.145 22.97 198.379 23.0798 196.624 22.535C195.064 22.0506 194.258 20.935 193.964 19.4434C193.876 18.9961 193.835 18.5432 193.837 18.0863C193.843 16.8458 193.84 15.608 193.84 14.3703Z" fill="#595959"/>
|
||||
<path d="M209.364 15.0549C209.364 17.4426 209.362 19.8289 209.369 22.2166C209.369 22.4279 209.333 22.5034 209.087 22.502C207.527 22.4897 205.968 22.4911 204.409 22.502C204.17 22.5034 204.118 22.4362 204.119 22.218C204.126 17.4536 204.126 12.6892 204.119 7.92482C204.119 7.70114 204.164 7.61744 204.424 7.62018C205.974 7.63253 207.523 7.6339 209.072 7.62018C209.339 7.61744 209.37 7.70938 209.37 7.92482C209.362 10.3002 209.364 12.6769 209.364 15.0549Z" fill="#595959"/>
|
||||
<path d="M245.353 28.4461C245.35 28.6396 245.348 28.8331 245.346 29.028C244.81 29.0142 244.744 29.382 244.643 29.7662C244.29 31.0987 243.906 32.4229 243.55 33.7553C243.485 34.0009 243.382 34.0833 243.112 34.0764C242.418 34.0572 242.414 34.0723 242.199 33.4356C241.863 32.438 241.53 31.439 241.194 30.4414C241.177 30.3892 241.192 30.3179 241.078 30.2877C240.866 30.8997 240.653 31.5117 240.443 32.1251C240.247 32.6987 240.05 33.2709 239.864 33.8472C239.815 33.9996 239.749 34.0709 239.565 34.0737C238.763 34.0888 238.761 34.0956 238.554 33.356C238.187 32.0373 237.82 30.7186 237.458 29.3985C237.406 29.2091 237.343 29.0595 237.095 29.0897C236.839 29.1226 236.787 28.9991 236.796 28.7782C236.812 28.3912 236.799 28.3912 237.219 28.3912C237.759 28.3912 238.3 28.3981 238.84 28.3871C239.033 28.383 239.104 28.4201 239.118 28.6259C239.141 28.9429 239.082 29.1405 238.695 29.1226C238.577 29.1172 238.465 29.1473 238.508 29.3148C238.768 30.3302 239.026 31.3457 239.291 32.3913C239.411 32.3254 239.405 32.228 239.429 32.1539C239.814 30.9944 240.202 29.8362 240.572 28.6726C240.642 28.453 240.741 28.3528 240.981 28.3899C241.062 28.4022 241.148 28.4022 241.23 28.3899C241.459 28.3542 241.557 28.453 241.624 28.6575C242.015 29.8664 242.418 31.0712 242.819 32.2788C242.834 32.3241 242.852 32.3693 242.881 32.4448C243.009 32.3392 243.006 32.2047 243.035 32.0949C243.262 31.2112 243.472 30.3233 243.71 29.4424C243.773 29.2063 243.714 29.1254 243.471 29.1021C243.357 29.0911 243.171 29.1501 243.14 29.0156C243.097 28.8372 243.125 28.6424 243.134 28.4557C243.137 28.3967 243.206 28.3926 243.256 28.394C243.942 28.3981 244.627 28.4036 245.311 28.4105C245.324 28.4063 245.338 28.4324 245.353 28.4461Z" fill="#595959"/>
|
||||
<path d="M193.6 32.3212C193.6 31.6529 193.6 30.9833 193.6 30.315C193.6 30.1572 193.603 29.998 193.6 29.8402C193.596 29.633 193.656 29.3901 193.563 29.2296C193.471 29.0676 193.187 29.128 192.988 29.0896C192.888 29.0704 192.854 29.0278 192.84 28.9359C192.761 28.4556 192.816 28.3911 193.319 28.3911C193.881 28.3911 194.443 28.4007 195.004 28.387C195.216 28.3815 195.255 28.4542 195.268 28.6409C195.288 28.9386 195.23 29.139 194.866 29.1362C194.64 29.1335 194.608 29.2584 194.608 29.445C194.615 30.8804 194.604 32.3171 194.62 33.7524C194.623 34.0228 194.53 34.0543 194.273 34.0831C193.715 34.1463 193.4 33.9487 193.114 33.4862C192.458 32.431 191.728 31.4169 191.029 30.3864C190.986 30.3232 190.967 30.2381 190.873 30.2121C190.785 30.256 190.823 30.3342 190.823 30.396C190.82 31.2769 190.829 32.1593 190.816 33.0402C190.813 33.2598 190.892 33.3504 191.111 33.3504C191.163 33.3504 191.214 33.3614 191.265 33.3696C191.543 33.4149 191.711 33.7648 191.573 34.0049C191.528 34.0831 191.452 34.0694 191.383 34.0694C190.708 34.0708 190.031 34.0681 189.356 34.0722C189.212 34.0735 189.16 34.0296 189.153 33.8855C189.13 33.4327 189.119 33.4217 189.567 33.3517C189.759 33.3216 189.798 33.2379 189.798 33.0746C189.793 31.856 189.788 30.6388 189.802 29.4203C189.805 29.1774 189.678 29.1527 189.49 29.1225C189.197 29.0759 189.032 28.7177 189.167 28.4611C189.212 28.3774 189.285 28.3925 189.354 28.3925C189.822 28.3911 190.29 28.3994 190.758 28.387C190.944 28.3815 191.007 28.4913 191.086 28.6107C191.901 29.8512 192.719 31.0903 193.535 32.3308C193.556 32.3267 193.579 32.3239 193.6 32.3212Z" fill="#595959"/>
|
||||
<path d="M168.167 30.1964C168.167 30.8454 168.167 31.4959 168.167 32.145C168.167 32.4523 168.177 32.7597 168.162 33.0657C168.154 33.2551 168.221 33.3457 168.42 33.3429C168.45 33.3429 168.482 33.3498 168.512 33.3539C168.905 33.4088 169.039 33.616 168.924 33.9714C168.888 34.0812 168.807 34.0661 168.728 34.0661C168.053 34.0675 167.376 34.0647 166.701 34.0688C166.557 34.0702 166.505 34.0222 166.498 33.8795C166.473 33.428 166.465 33.4239 166.917 33.3457C167.059 33.321 167.136 33.2839 167.136 33.1247C167.13 31.8678 167.13 30.6094 167.137 29.3525C167.139 29.1905 167.059 29.1603 166.921 29.1329C166.456 29.0396 166.465 29.0341 166.498 28.5675C166.508 28.4193 166.571 28.385 166.71 28.3864C167.177 28.3905 167.645 28.396 168.113 28.3837C168.288 28.3795 168.345 28.4852 168.417 28.5936C169.196 29.7751 169.975 30.958 170.755 32.1381C170.796 32.1998 170.809 32.289 170.94 32.3151C170.94 31.8046 170.94 31.3051 170.94 30.8057C170.94 30.3405 170.93 29.8739 170.944 29.4101C170.95 29.2166 170.884 29.1343 170.686 29.137C170.666 29.137 170.645 29.1329 170.624 29.1288C170.149 29.0519 170.122 29.0094 170.178 28.536C170.192 28.4207 170.236 28.385 170.351 28.385C171.036 28.3878 171.723 28.3891 172.408 28.385C172.562 28.3837 172.597 28.4454 172.604 28.5799C172.629 29.0355 172.637 29.0533 172.198 29.1233C171.971 29.1603 171.949 29.2646 171.951 29.4444C171.956 30.8798 171.948 32.3165 171.959 33.7518C171.961 33.9892 171.899 34.0482 171.641 34.0771C171.061 34.1429 170.732 33.9316 170.434 33.4541C169.74 32.3412 168.973 31.2695 168.234 30.1813C168.214 30.1895 168.191 30.1936 168.167 30.1964Z" fill="#595959"/>
|
||||
<path d="M56.3643 32.2879C56.3643 31.2999 56.3629 30.3105 56.3657 29.3225C56.3657 29.2141 56.3254 29.1565 56.2059 29.1524C56.144 29.1496 56.0821 29.1359 56.0216 29.1249C55.6386 29.0577 55.5234 28.8656 55.6228 28.4951C55.6588 28.3633 55.7538 28.3921 55.8402 28.3908C56.4953 28.3894 57.1504 28.3949 57.8056 28.3867C57.9712 28.3853 58.0316 28.4388 58.0187 28.5925C58.01 28.6913 58.0115 28.7915 58.0187 28.8889C58.0287 29.0234 57.9769 29.0947 57.8272 29.0934C57.4514 29.0906 57.3751 29.2731 57.3808 29.6134C57.4053 30.9994 57.3851 32.3867 57.3967 33.7727C57.3981 34.0046 57.3304 34.0485 57.09 34.0787C56.4939 34.1555 56.1613 33.9332 55.8575 33.4447C55.1707 32.3401 54.4076 31.278 53.6805 30.2035C53.5653 30.2213 53.5998 30.2941 53.5998 30.3448C53.5984 31.2464 53.6041 32.1479 53.5955 33.0481C53.5941 33.2471 53.656 33.3473 53.8705 33.3445C53.9223 33.3445 53.9727 33.3569 54.0246 33.3665C54.3025 33.4131 54.4709 33.7644 54.3313 34.0018C54.2852 34.0801 54.2103 34.065 54.1412 34.065C53.476 34.0663 52.8108 34.0636 52.1456 34.0677C52.0059 34.0691 51.9455 34.0334 51.9368 33.8852C51.9109 33.442 51.9023 33.4365 52.3774 33.3418C52.5315 33.3116 52.579 33.2471 52.579 33.1017C52.5747 31.8543 52.5718 30.6056 52.5804 29.3582C52.5819 29.1729 52.4782 29.1579 52.3357 29.1304C51.9613 29.0591 51.8317 28.8313 51.9426 28.4882C51.9771 28.3812 52.0534 28.388 52.137 28.388C52.6049 28.388 53.0728 28.3949 53.5408 28.3839C53.7121 28.3798 53.7726 28.4786 53.846 28.5897C54.6077 29.7479 55.3708 30.9033 56.1339 32.0601C56.1872 32.1411 56.2419 32.2193 56.2966 32.3003C56.3168 32.2989 56.3413 32.2934 56.3643 32.2879Z" fill="#595959"/>
|
||||
<path d="M80.2911 28.3903C80.8022 28.4067 81.3968 28.3464 81.9843 28.4411C82.6812 28.5522 83.2643 28.839 83.4817 29.5292C83.6833 30.1687 83.5739 30.7656 83.057 31.2569C83.0354 31.2775 83.0095 31.2953 82.9893 31.3186C82.8727 31.4517 82.5933 31.4572 82.5919 31.6452C82.5905 31.8085 82.7258 31.9718 82.8007 32.1351C82.9461 32.4521 83.0987 32.7677 83.2341 33.0888C83.3032 33.2507 83.3939 33.3482 83.5897 33.3646C83.9857 33.3976 83.8042 33.6981 83.8316 33.8916C83.8647 34.129 83.6631 34.0672 83.5335 34.0672C83.1822 34.0672 82.7647 34.1633 82.4954 34.0178C82.2219 33.8696 82.1945 33.436 82.0577 33.1286C81.8878 32.7457 81.7237 32.3602 81.5696 31.9718C81.512 31.8291 81.4271 31.7824 81.2687 31.7797C80.3947 31.7577 80.3947 31.7536 80.3947 32.5701C80.3947 32.6401 80.3947 32.7087 80.3947 32.7787C80.3947 33.259 80.3947 33.2603 80.867 33.3962C81.201 33.4922 80.9779 33.7447 81.0239 33.9204C81.0671 34.0864 80.9102 34.07 80.7979 34.0713C80.1427 34.0713 79.4876 34.0672 78.8325 34.0741C78.6568 34.0754 78.6007 34.0247 78.5993 33.8545C78.5964 33.4319 78.5849 33.425 79.0182 33.3536C79.191 33.3248 79.2673 33.2672 79.2659 33.0888C79.2587 31.8607 79.2558 30.6325 79.2673 29.4044C79.2688 29.1972 79.1694 29.1615 78.9967 29.1313C78.6309 29.0654 78.4913 28.8212 78.605 28.4905C78.6482 28.3656 78.7476 28.3971 78.834 28.3958C79.2947 28.3889 79.7526 28.3903 80.2911 28.3903ZM80.3962 30.0452C80.3962 30.3087 80.4005 30.5255 80.3947 30.7437C80.3904 30.8713 80.4149 30.9509 80.5761 30.9454C80.939 30.9344 81.3033 30.9536 81.6632 30.9221C82.2319 30.8727 82.5444 30.4404 82.4249 29.9176C82.3471 29.5759 82.134 29.3495 81.7741 29.2795C81.3349 29.1944 80.8886 29.2301 80.4437 29.2479C80.3343 29.5251 80.435 29.8119 80.3962 30.0452Z" fill="#595959"/>
|
||||
<path d="M204.189 28.3899C204.69 28.4092 205.283 28.3529 205.872 28.4393C207.096 28.6191 207.735 29.5591 207.361 30.6377C207.231 31.0109 206.975 31.2922 206.622 31.4871C206.474 31.568 206.447 31.6325 206.524 31.7849C206.71 32.1485 206.876 32.5231 207.04 32.8977C207.145 33.1379 207.234 33.341 207.571 33.3986C207.876 33.4507 207.676 33.7471 207.712 33.9283C207.745 34.1012 207.578 34.0641 207.473 34.0655C207.172 34.0696 206.87 34.0559 206.569 34.071C206.392 34.0792 206.313 34.0147 206.251 33.8624C205.996 33.2353 205.724 32.6151 205.469 31.9879C205.408 31.8384 205.331 31.778 205.154 31.7752C204.277 31.7588 204.277 31.7533 204.277 32.5958C204.277 32.6754 204.277 32.7536 204.277 32.8332C204.277 33.2751 204.275 33.2833 204.725 33.378C205.1 33.4576 204.876 33.7279 204.917 33.9077C204.961 34.0971 204.785 34.0641 204.667 34.0641C204.033 34.0655 203.398 34.0655 202.765 34.0641C202.647 34.0641 202.474 34.0943 202.514 33.9063C202.555 33.7266 202.337 33.4576 202.709 33.3766C203.157 33.2792 203.155 33.271 203.155 32.8319C203.155 31.7135 203.148 30.5938 203.161 29.4754C203.164 29.2394 203.093 29.1447 202.847 29.1145C202.543 29.0774 202.388 28.7426 202.516 28.464C202.563 28.3611 202.65 28.3886 202.727 28.3886C203.184 28.3886 203.642 28.3899 204.189 28.3899ZM204.272 30.0229C204.272 30.2946 204.272 30.5224 204.272 30.7488C204.272 30.838 204.261 30.9423 204.401 30.9382C204.845 30.9272 205.295 30.9944 205.732 30.8819C206.134 30.7776 206.323 30.5224 206.326 30.1162C206.328 29.7128 206.114 29.4123 205.741 29.2984C205.551 29.2407 205.354 29.2215 205.156 29.2339C204.87 29.2517 204.503 29.1117 204.32 29.2929C204.154 29.4589 204.294 29.8033 204.272 30.0229Z" fill="#595959"/>
|
||||
<path d="M44.3199 28.3893C44.8239 28.4057 45.4171 28.3563 46.0074 28.4359C47.2313 28.602 47.8878 29.5502 47.5192 30.6233C47.3911 30.9979 47.1391 31.2833 46.7864 31.4782C46.6237 31.5674 46.6006 31.6415 46.6827 31.8034C46.8929 32.2219 47.0858 32.6501 47.273 33.0796C47.3421 33.2401 47.4242 33.3444 47.6229 33.3622C48.0361 33.3979 47.8533 33.7094 47.872 33.9111C47.895 34.1527 47.679 34.0607 47.5581 34.0662C47.2889 34.0785 47.0167 34.058 46.7475 34.0744C46.5445 34.0868 46.461 34.0099 46.3904 33.8343C46.1428 33.2154 45.8677 32.6061 45.6172 31.9873C45.5539 31.8295 45.4675 31.7718 45.2961 31.7814C45.0787 31.7924 44.8599 31.791 44.641 31.7828C44.4754 31.7759 44.4265 31.8404 44.4308 31.9914C44.4394 32.3372 44.4452 32.6857 44.4293 33.0315C44.4193 33.2387 44.4797 33.3334 44.7101 33.3609C45.0283 33.3979 45.1881 33.7231 45.0571 33.999C45.0154 34.0854 44.9434 34.0717 44.8743 34.0717C44.199 34.0731 43.5223 34.0703 42.847 34.0744C42.7145 34.0744 42.6713 34.0278 42.6627 33.9002C42.6281 33.4501 42.6209 33.4432 43.0946 33.3499C43.2487 33.3197 43.2962 33.2566 43.2948 33.1111C43.2904 31.8638 43.2876 30.615 43.2962 29.3677C43.2976 29.1852 43.1997 29.166 43.0558 29.1371C42.6684 29.0603 42.5518 28.8531 42.6656 28.4936C42.7059 28.3659 42.8038 28.3961 42.8902 28.3948C43.3394 28.3879 43.7857 28.3893 44.3199 28.3893ZM44.4308 30.0812C44.4308 30.298 44.4366 30.5162 44.4279 30.7317C44.4222 30.8771 44.4625 30.9512 44.6338 30.9444C44.9549 30.932 45.276 30.9471 45.5956 30.9293C46.1687 30.8963 46.4681 30.615 46.4725 30.132C46.4782 29.6078 46.1831 29.2922 45.6071 29.2469C45.2774 29.2208 44.9448 29.2401 44.6136 29.2304C44.4538 29.225 44.4236 29.2991 44.4279 29.4308C44.4366 29.6462 44.4308 29.8644 44.4308 30.0812Z" fill="#595959"/>
|
||||
<path d="M102.124 28.3897C102.64 28.4062 103.244 28.3541 103.843 28.4405C105.228 28.6395 105.889 30.0021 105.101 31.0395C104.959 31.2261 104.787 31.3881 104.571 31.491C104.404 31.5706 104.416 31.6557 104.481 31.7915C104.692 32.232 104.898 32.6739 105.095 33.1198C105.159 33.2639 105.245 33.3435 105.412 33.3572C105.828 33.3915 105.648 33.7003 105.666 33.902C105.689 34.1668 105.454 34.0351 105.329 34.0667C105.3 34.0735 105.267 34.0694 105.235 34.068C104.927 34.0502 104.547 34.1861 104.328 34.0132C104.115 33.8457 104.057 33.4958 103.939 33.2227C103.762 32.8111 103.585 32.3994 103.422 31.9836C103.362 31.8286 103.274 31.7654 103.1 31.7792C102.823 31.8011 102.468 31.6749 102.288 31.8286C102.119 31.974 102.252 32.3157 102.236 32.5696C102.232 32.6382 102.236 32.7082 102.236 32.7768C102.236 33.2502 102.236 33.2516 102.704 33.3915C103.034 33.4903 102.816 33.7415 102.859 33.9171C102.9 34.0818 102.743 34.0667 102.63 34.0667C101.987 34.068 101.342 34.068 100.698 34.0667C100.589 34.0667 100.425 34.09 100.466 33.9226C100.511 33.7469 100.289 33.4945 100.617 33.3957C101.101 33.2516 101.101 33.2516 101.101 32.7576C101.101 31.6488 101.097 30.5414 101.106 29.4326C101.107 29.2392 101.055 29.1554 100.842 29.1266C100.485 29.0786 100.341 28.8028 100.462 28.4817C100.508 28.3596 100.609 28.3911 100.695 28.3911C101.146 28.3884 101.592 28.3897 102.124 28.3897ZM102.237 30.0474C102.237 30.3205 102.243 30.5483 102.234 30.7761C102.23 30.9064 102.282 30.949 102.414 30.9448C102.777 30.9339 103.143 30.9517 103.503 30.9215C104.026 30.8776 104.298 30.5579 104.276 30.0611C104.259 29.6426 104.037 29.3681 103.609 29.279C103.169 29.187 102.721 29.2364 102.275 29.2433C102.185 29.5232 102.268 29.81 102.237 30.0474Z" fill="#595959"/>
|
||||
<path d="M133.845 28.3899C134.368 28.4077 134.982 28.3514 135.591 28.4461C136.989 28.6616 137.611 30.0461 136.779 31.0918C136.645 31.2606 136.478 31.3951 136.285 31.4939C136.146 31.5652 136.121 31.6297 136.19 31.7697C136.409 32.2184 136.617 32.6712 136.814 33.1282C136.884 33.2915 137.005 33.3381 137.169 33.3656C137.56 33.4287 137.347 33.7251 137.377 33.9158C137.413 34.1354 137.207 34.064 137.092 34.0654C136.739 34.0682 136.32 34.1656 136.054 34.0188C135.784 33.8692 135.756 33.4342 135.62 33.1268C135.452 32.744 135.292 32.357 135.132 31.9714C135.087 31.8644 135.044 31.7765 134.895 31.782C134.635 31.7903 134.375 31.7875 134.116 31.7834C133.977 31.7807 133.94 31.8438 133.941 31.9659C133.946 32.3515 133.95 32.7385 133.94 33.1241C133.934 33.3313 134.081 33.3313 134.225 33.356C134.555 33.4122 134.707 33.6881 134.585 33.9886C134.549 34.0778 134.48 34.0709 134.409 34.0709C133.724 34.0723 133.037 34.0695 132.352 34.0723C132.214 34.0737 132.183 34.0133 132.175 33.8925C132.144 33.4507 132.139 33.4424 132.614 33.3477C132.785 33.3134 132.827 33.238 132.825 33.0843C132.821 31.8561 132.814 30.6293 132.83 29.4012C132.833 29.1391 132.657 29.1638 132.499 29.1144C132.396 29.0815 132.224 29.1418 132.199 29.0115C132.165 28.8303 132.175 28.6369 132.199 28.453C132.212 28.3542 132.337 28.3926 132.414 28.3926C132.863 28.3885 133.309 28.3899 133.845 28.3899ZM133.943 30.0214C133.943 30.2945 133.943 30.5223 133.943 30.7501C133.943 30.8407 133.934 30.9422 134.072 30.9395C134.507 30.9312 134.948 30.9889 135.377 30.8942C135.77 30.8077 135.977 30.5525 135.999 30.1751C136.022 29.7456 135.828 29.4383 135.446 29.3065C135.247 29.2379 135.04 29.2201 134.831 29.2324C134.545 29.2503 134.177 29.1103 133.993 29.2914C133.823 29.4588 133.966 29.8033 133.943 30.0214Z" fill="#595959"/>
|
||||
<path d="M175.306 34.0675C174.87 34.0675 174.433 34.0675 173.997 34.0675C173.882 34.0675 173.737 34.0812 173.771 33.9138C173.807 33.7409 173.634 33.5158 173.902 33.3992C174.061 33.3306 174.317 33.3992 174.385 33.251C174.462 33.0836 174.422 32.8654 174.422 32.6692C174.425 31.6002 174.419 30.5312 174.428 29.4622C174.429 29.2646 174.397 29.1617 174.157 29.1315C173.788 29.0863 173.649 28.8187 173.768 28.4852C173.806 28.3809 173.886 28.3892 173.967 28.3892C174.798 28.3892 175.631 28.3549 176.459 28.4001C177.964 28.4811 178.969 29.535 179.021 31.0321C179.055 32.0256 178.815 32.9189 177.96 33.5748C177.532 33.9028 177.037 34.0606 176.49 34.0661C176.095 34.0716 175.701 34.0675 175.306 34.0675ZM175.555 31.2475C175.555 31.7429 175.555 32.2383 175.555 32.7323C175.555 33.2565 175.555 33.2565 176.12 33.2524C176.998 33.2469 177.515 32.8791 177.772 32.0805C177.834 31.8897 177.865 31.6935 177.875 31.4959C177.944 30.2815 177.558 29.078 175.824 29.2303C175.814 29.2317 175.803 29.2317 175.793 29.2303C175.6 29.2029 175.545 29.2825 175.549 29.4636C175.562 30.0592 175.555 30.6533 175.555 31.2475Z" fill="#595959"/>
|
||||
<path d="M128.511 34.1403C128.198 34.1403 127.884 34.1403 127.572 34.1403C126.678 33.9908 125.991 33.5997 125.76 32.6968C125.722 32.5444 125.713 32.3839 125.712 32.2261C125.707 31.3053 125.703 30.3845 125.714 29.4651C125.717 29.2483 125.664 29.1399 125.419 29.1193C125.307 29.1097 125.117 29.1413 125.087 29.0205C125.041 28.8435 125.062 28.6487 125.075 28.462C125.081 28.3687 125.185 28.3907 125.252 28.3907C125.928 28.3893 126.603 28.3934 127.278 28.3879C127.426 28.3866 127.472 28.4373 127.481 28.5759C127.511 29.0356 127.52 29.0466 127.052 29.1331C126.868 29.1674 126.823 29.2374 126.825 29.4061C126.833 30.3269 126.827 31.2477 126.829 32.1671C126.83 32.5979 126.954 32.9808 127.393 33.1811C127.876 33.4021 128.367 33.3829 128.82 33.107C129.089 32.9438 129.225 32.6775 129.232 32.3756C129.248 31.6333 129.249 30.8923 129.256 30.1499C129.258 29.9715 129.256 29.7931 129.256 29.6161C129.256 29.1825 129.258 29.1756 128.819 29.096C128.414 29.0219 128.668 28.7324 128.62 28.5471C128.571 28.3591 128.747 28.3907 128.866 28.3893C129.5 28.3879 130.133 28.3989 130.767 28.3838C130.981 28.3783 131.01 28.4538 131.03 28.6363C131.066 28.9643 130.965 29.1413 130.603 29.1386C130.407 29.1372 130.372 29.2428 130.374 29.4075C130.381 30.2583 130.377 31.1104 130.377 31.9612C130.377 33.2827 129.864 33.8796 128.511 34.1403Z" fill="#595959"/>
|
||||
<path d="M147.075 34.07C146.389 34.07 145.704 34.0714 145.017 34.0686C144.902 34.0686 144.719 34.1098 144.764 33.9177C144.806 33.7379 144.578 33.4676 144.948 33.3839C145.39 33.2837 145.389 33.2782 145.389 32.8323C145.389 31.7139 145.38 30.5955 145.396 29.4772C145.399 29.2398 145.325 29.1423 145.082 29.1149C144.981 29.1039 144.807 29.141 144.781 29.0188C144.744 28.8391 144.76 28.6456 144.773 28.459C144.78 28.367 144.882 28.3903 144.951 28.3903C146.343 28.389 147.736 28.3917 149.128 28.3862C149.298 28.3862 149.341 28.4507 149.338 28.5976C149.331 28.9639 149.331 29.3303 149.338 29.6967C149.341 29.8449 149.296 29.9245 149.127 29.9067C149.075 29.9012 149.023 29.9053 148.971 29.9053C148.466 29.9053 148.458 29.9067 148.415 29.4319C148.402 29.285 148.361 29.226 148.196 29.2288C147.708 29.2384 147.22 29.2384 146.732 29.2288C146.558 29.226 146.525 29.2933 146.529 29.4401C146.538 29.7969 146.542 30.1537 146.528 30.5091C146.52 30.6888 146.597 30.7231 146.764 30.7204C147.284 30.7135 147.803 30.7245 148.322 30.7135C148.505 30.7094 148.574 30.7478 148.575 30.9413C148.579 31.5712 148.588 31.5712 147.939 31.5712C147.544 31.5712 147.15 31.5753 146.754 31.5698C146.61 31.5684 146.522 31.5822 146.528 31.7564C146.539 32.1914 146.535 32.6278 146.529 33.0628C146.528 33.2014 146.574 33.2549 146.725 33.2535C147.245 33.2467 147.764 33.2439 148.283 33.2549C148.467 33.259 148.505 33.1808 148.522 33.0285C148.577 32.5592 148.585 32.5784 149.065 32.5523C149.368 32.5359 149.466 32.6182 149.436 32.9077C149.407 33.1822 149.406 33.4635 149.436 33.7379C149.469 34.0316 149.338 34.0783 149.069 34.0714C148.405 34.059 147.74 34.07 147.075 34.07Z" fill="#595959"/>
|
||||
<path d="M109.267 34.0699C108.571 34.0699 107.874 34.0699 107.179 34.0699C107.055 34.0699 106.889 34.0891 106.938 33.9038C106.983 33.7323 106.757 33.4688 107.111 33.3934C107.182 33.3783 107.252 33.3508 107.324 33.3494C107.53 33.3453 107.576 33.2424 107.575 33.0613C107.568 31.8441 107.566 30.6269 107.576 29.4084C107.578 29.2108 107.497 29.16 107.314 29.1298C106.96 29.0708 106.816 28.8019 106.934 28.4821C106.973 28.3765 107.056 28.3916 107.136 28.3916C108.528 28.3902 109.92 28.3929 111.313 28.3875C111.484 28.3875 111.523 28.4547 111.52 28.6015C111.513 28.9679 111.513 29.3343 111.52 29.7007C111.523 29.8516 111.474 29.9257 111.308 29.9093C111.246 29.9038 111.183 29.9079 111.121 29.9079C110.652 29.9079 110.645 29.9093 110.598 29.4688C110.581 29.3027 110.538 29.2231 110.338 29.23C109.881 29.2437 109.424 29.2424 108.967 29.2314C108.77 29.2259 108.691 29.2725 108.702 29.4756C108.719 29.7912 108.721 30.1096 108.702 30.4252C108.689 30.6516 108.748 30.7381 109.006 30.7271C109.493 30.7065 109.982 30.7299 110.47 30.7175C110.675 30.712 110.761 30.7504 110.757 30.9727C110.747 31.5752 110.758 31.5752 110.122 31.5752C109.727 31.5752 109.331 31.582 108.937 31.5724C108.771 31.5683 108.695 31.5999 108.701 31.781C108.714 32.2064 108.711 32.6318 108.702 33.0572C108.699 33.2136 108.755 33.2616 108.918 33.2589C109.426 33.2506 109.936 33.2479 110.446 33.2603C110.637 33.2644 110.708 33.1985 110.705 33.0242C110.704 32.9158 110.721 32.8074 110.724 32.699C110.725 32.6139 110.763 32.5686 110.852 32.5673C111.059 32.5659 111.268 32.5673 111.475 32.5659C111.593 32.5645 111.605 32.6331 111.603 32.721C111.602 33.1175 111.596 33.5127 111.605 33.9093C111.609 34.1069 111.472 34.0726 111.353 34.0726C110.659 34.0699 109.962 34.0699 109.267 34.0699Z" fill="#595959"/>
|
||||
<path d="M198.76 34.0698C198.063 34.0698 197.368 34.063 196.671 34.0739C196.475 34.0767 196.44 34.0149 196.423 33.8393C196.391 33.5168 196.475 33.3302 196.852 33.3425C197.044 33.348 197.084 33.2382 197.084 33.0708C197.078 31.8523 197.07 30.6351 197.088 29.4166C197.093 29.138 196.914 29.16 196.741 29.1106C196.639 29.0817 196.471 29.1408 196.448 29.0035C196.417 28.821 196.429 28.6289 196.45 28.4437C196.461 28.3613 196.571 28.3901 196.639 28.3901C198.031 28.3888 199.425 28.3915 200.817 28.386C200.985 28.386 201.032 28.445 201.029 28.596C201.02 28.9624 201.018 29.3287 201.031 29.6951C201.036 29.8722 200.959 29.9243 200.792 29.9078C200.74 29.9023 200.688 29.9065 200.636 29.9065C200.149 29.9065 200.139 29.9078 200.095 29.4509C200.079 29.2931 200.043 29.2258 199.861 29.2299C199.383 29.2409 198.905 29.2396 198.427 29.2299C198.25 29.2258 198.193 29.2793 198.198 29.4495C198.211 29.7953 198.213 30.1425 198.198 30.4883C198.19 30.6763 198.262 30.7243 198.448 30.7202C198.957 30.7106 199.465 30.7216 199.975 30.7133C200.159 30.7106 200.252 30.7339 200.25 30.9507C200.246 31.5696 200.257 31.5696 199.599 31.5696C199.205 31.5696 198.809 31.5751 198.414 31.5669C198.256 31.5641 198.194 31.6053 198.198 31.7658C198.21 32.1912 198.207 32.618 198.2 33.0434C198.197 33.193 198.24 33.2547 198.41 33.252C198.93 33.2437 199.45 33.2451 199.969 33.252C200.125 33.2533 200.203 33.2026 200.206 33.0516C200.207 32.9432 200.224 32.8348 200.226 32.7264C200.227 32.6015 200.288 32.5658 200.417 32.5562C201.121 32.5055 201.121 32.5014 201.121 33.1779C201.121 33.3864 201.108 33.595 201.126 33.8009C201.143 34.0053 201.078 34.0753 200.852 34.0712C200.152 34.0602 199.457 34.0698 198.76 34.0698Z" fill="#595959"/>
|
||||
<path d="M185.411 34.0686C184.716 34.0686 184.019 34.07 183.324 34.0673C183.216 34.0673 183.05 34.0947 183.089 33.9259C183.131 33.7489 182.916 33.4992 183.237 33.3963C183.715 33.2439 183.717 33.2453 183.717 32.7582C183.717 31.659 183.711 30.5612 183.722 29.4621C183.724 29.248 183.679 29.1451 183.434 29.1163C183.113 29.0792 182.966 28.7705 183.089 28.4741C183.132 28.3698 183.217 28.3903 183.295 28.3903C184.687 28.389 186.079 28.3917 187.472 28.3862C187.631 28.3862 187.663 28.4494 187.66 28.5811C187.655 28.9571 187.652 29.3331 187.662 29.7091C187.666 29.871 187.6 29.9231 187.443 29.9053C187.391 29.8998 187.339 29.9039 187.287 29.9039C186.811 29.9039 186.804 29.9053 186.756 29.447C186.739 29.2864 186.686 29.2233 186.51 29.2274C186.022 29.2356 185.534 29.2343 185.046 29.2288C184.897 29.2274 184.845 29.2741 184.848 29.4182C184.857 29.7749 184.861 30.1317 184.847 30.4871C184.84 30.6737 184.907 30.7245 185.095 30.7204C185.603 30.7108 186.112 30.7245 186.622 30.7135C186.828 30.708 186.913 30.7478 186.909 30.9688C186.9 31.5712 186.912 31.5712 186.272 31.5712C185.868 31.5712 185.462 31.578 185.057 31.5684C184.891 31.5643 184.844 31.6192 184.847 31.7743C184.857 32.1901 184.858 32.6058 184.847 33.0216C184.841 33.2055 184.906 33.2604 185.095 33.2563C185.573 33.2453 186.051 33.2398 186.529 33.2577C186.763 33.2659 186.863 33.2124 186.861 32.9722C186.861 32.8405 186.798 32.6182 186.972 32.5825C187.208 32.5331 187.466 32.5647 187.714 32.5825C187.801 32.5894 187.771 32.6964 187.773 32.7609C187.775 33.1273 187.765 33.4937 187.777 33.8601C187.783 34.0426 187.698 34.0714 187.534 34.07C186.825 34.0659 186.118 34.0686 185.411 34.0686Z" fill="#595959"/>
|
||||
<path d="M212.297 34.1392C211.942 34.1392 211.587 34.1379 211.232 34.1379C209.774 33.8497 208.96 32.8974 208.952 31.473C208.949 31.027 208.95 30.581 209.087 30.1488C209.495 28.8548 210.623 28.1673 212.052 28.332C212.586 28.3937 213.088 28.5282 213.546 28.8026C213.699 28.8946 213.784 29.0002 213.772 29.1869C213.755 29.4627 213.764 29.7412 213.769 30.0184C213.772 30.1529 213.731 30.2298 213.575 30.2092C213.565 30.2078 213.555 30.2092 213.543 30.2092C212.92 30.2325 212.908 30.2339 212.808 29.6562C212.773 29.4613 212.674 29.3652 212.495 29.2953C211.506 28.9055 210.547 29.3021 210.22 30.2709C209.99 30.957 209.987 31.6596 210.251 32.3416C210.59 33.2212 211.854 33.637 212.684 33.1595C212.728 33.1348 212.782 33.1128 212.782 33.0552C212.783 32.7684 212.783 32.4802 212.779 32.1934C212.777 32.1234 212.724 32.0905 212.655 32.085C212.583 32.0782 212.51 32.0768 212.438 32.0727C211.873 32.037 211.88 32.037 211.888 31.4895C211.89 31.3248 211.931 31.2644 212.114 31.2672C212.644 31.2781 213.173 31.2754 213.705 31.2685C213.866 31.2658 213.921 31.3166 213.919 31.473C213.912 32.107 213.909 32.7409 213.921 33.3749C213.924 33.5437 213.841 33.6247 213.706 33.6988C213.268 33.9362 212.796 34.0761 212.297 34.1392Z" fill="#595959"/>
|
||||
<path d="M162.409 32.5278C162.138 32.5278 161.867 32.5388 161.598 32.5237C161.42 32.5141 161.329 32.5758 161.29 32.7377C161.263 32.853 161.228 32.9696 161.176 33.0753C161.087 33.2551 161.101 33.3456 161.338 33.4019C161.66 33.4787 161.444 33.7491 161.484 33.9261C161.523 34.0976 161.356 34.0647 161.25 34.0661C160.762 34.0688 160.274 34.0674 159.784 34.0674C159.652 34.0674 159.472 34.0921 159.522 33.889C159.564 33.7216 159.333 33.4403 159.712 33.4005C159.909 33.3799 159.986 33.2757 160.049 33.111C160.619 31.6249 161.204 30.1456 161.765 28.6567C161.849 28.4344 161.964 28.3809 162.191 28.3836C162.996 28.3946 162.993 28.3891 163.273 29.1164C163.785 30.453 164.305 31.7882 164.816 33.1261C164.87 33.266 164.926 33.3745 165.104 33.3909C165.185 33.3992 165.323 33.3662 165.33 33.4911C165.34 33.6667 165.373 33.8492 165.309 34.0194C165.28 34.0962 165.179 34.0647 165.111 34.0647C164.602 34.0674 164.093 34.0606 163.584 34.0688C163.407 34.0715 163.339 34.018 163.355 33.8479C163.374 33.6379 163.263 33.369 163.647 33.3566C163.679 33.3552 163.739 33.3072 163.735 33.2935C163.667 33.0671 163.602 32.8379 163.513 32.6184C163.447 32.4537 163.279 32.5333 163.155 32.5278C162.908 32.5196 162.658 32.5278 162.409 32.5278ZM162.43 29.5651C162.176 30.2636 161.948 30.8784 161.728 31.4945C161.702 31.5659 161.588 31.7003 161.794 31.7044C162.219 31.7127 162.644 31.7072 163.07 31.7072C163.16 31.7072 163.202 31.6825 163.166 31.5837C162.927 30.9346 162.692 30.2856 162.43 29.5651Z" fill="#595959"/>
|
||||
<path d="M87.9196 32.5293C87.6489 32.5293 87.3782 32.5389 87.109 32.5252C86.9333 32.5169 86.8368 32.5663 86.8023 32.7351C86.7764 32.86 86.7389 32.9876 86.6813 33.1015C86.5892 33.2854 86.6425 33.3499 86.8469 33.4034C87.1651 33.4871 86.952 33.752 86.9923 33.929C87.0298 34.1005 86.8628 34.0662 86.7562 34.0676C86.258 34.0703 85.7584 34.0676 85.2602 34.0689C85.1234 34.0703 84.9838 34.0607 85.0299 33.8878C85.073 33.7245 84.8571 33.4583 85.194 33.4089C85.4157 33.376 85.5036 33.2676 85.5741 33.0837C86.1385 31.6072 86.7173 30.1361 87.2774 28.6582C87.3595 28.4414 87.4718 28.3797 87.7051 28.3824C88.5042 28.3948 88.5042 28.3865 88.7864 29.1152C89.3018 30.4504 89.8202 31.7855 90.3313 33.1235C90.3846 33.2634 90.4364 33.3732 90.6164 33.3911C90.697 33.3993 90.8338 33.3664 90.8424 33.4912C90.854 33.6669 90.8482 33.8466 90.8194 34.0195C90.8065 34.0936 90.6941 34.0648 90.625 34.0648C90.1153 34.0676 89.6071 34.0607 89.0974 34.0689C88.9232 34.0717 88.8512 34.0223 88.8656 33.8508C88.8843 33.6422 88.7748 33.3732 89.1564 33.3595C89.1881 33.3581 89.25 33.3101 89.2457 33.2991C89.178 33.0727 89.1103 32.8449 89.0268 32.624C88.9678 32.4689 88.8152 32.5334 88.7 32.5307C88.4394 32.5238 88.1788 32.5293 87.9196 32.5293ZM88.7187 31.7087C88.4581 30.9924 88.209 30.3104 87.9383 29.5708C87.6835 30.2624 87.456 30.8854 87.227 31.5084C87.1853 31.6236 87.1594 31.7156 87.3523 31.7114C87.7958 31.7032 88.2407 31.7087 88.7187 31.7087Z" fill="#595959"/>
|
||||
<path d="M233.466 32.5285C233.33 32.5285 233.195 32.5285 233.06 32.5285C232.376 32.5285 232.383 32.5299 232.187 33.1474C232.137 33.3052 232.173 33.3587 232.331 33.3875C232.703 33.4575 232.487 33.7374 232.517 33.9186C232.553 34.1354 232.344 34.064 232.229 34.0668C231.741 34.0736 231.251 34.064 230.763 34.0736C230.598 34.0764 230.54 34.0256 230.551 33.8705C230.567 33.6441 230.458 33.3587 230.886 33.3683C231.038 33.371 231.042 33.205 231.084 33.098C231.649 31.6516 232.22 30.208 232.765 28.7549C232.87 28.4735 233.001 28.3734 233.313 28.3843C234.029 28.4077 234.029 28.3926 234.272 29.0252C234.799 30.3892 235.326 31.7532 235.852 33.1186C235.903 33.253 235.947 33.3793 236.132 33.3903C236.556 33.4163 236.334 33.7265 236.361 33.9076C236.397 34.1477 236.174 34.0627 236.053 34.0654C235.585 34.0736 235.117 34.0627 234.649 34.0723C234.466 34.0764 234.379 34.0352 234.396 33.8431C234.415 33.6304 234.315 33.3656 234.698 33.3601C234.772 33.3587 234.796 33.2983 234.772 33.2297C234.701 33.0335 234.629 32.8372 234.564 32.6396C234.527 32.5257 234.432 32.5312 234.338 32.5299C234.049 32.5285 233.758 32.5285 233.466 32.5285ZM232.688 31.7079C233.176 31.7079 233.63 31.7052 234.085 31.7093C234.242 31.7106 234.222 31.6242 234.189 31.535C233.958 30.9024 233.726 30.2712 233.47 29.5686C233.196 30.3137 232.949 30.9916 232.688 31.7079Z" fill="#595959"/>
|
||||
<path d="M61.7538 32.529C61.6184 32.529 61.4831 32.529 61.3492 32.529C60.6624 32.529 60.6682 32.5304 60.4709 33.1438C60.4219 33.2961 60.4536 33.362 60.6149 33.3894C60.9979 33.4525 60.7675 33.7366 60.8035 33.915C60.8467 34.1304 60.6394 34.0659 60.5213 34.0673C60.0332 34.0742 59.5451 34.0646 59.057 34.0728C58.8813 34.0755 58.8137 34.022 58.828 33.8519C58.8453 33.6309 58.7417 33.3551 59.1563 33.3716C59.3162 33.3784 59.3248 33.2165 59.3651 33.1109C59.9482 31.6206 60.5343 30.1304 61.1044 28.6346C61.1793 28.4398 61.2743 28.3849 61.4831 28.3863C62.3124 28.3959 62.3153 28.3876 62.599 29.1163C63.1159 30.4515 63.6299 31.7866 64.141 33.1232C64.1929 33.2604 64.2433 33.3702 64.4232 33.3935C64.6176 33.4196 64.7587 33.8738 64.6291 34.0248C64.573 34.0893 64.4952 34.0673 64.4261 34.0673C63.9178 34.07 63.4081 34.0604 62.8999 34.0728C62.7098 34.0769 62.6695 34.0028 62.6825 33.845C62.6998 33.6364 62.5889 33.3647 62.9762 33.362C63.0021 33.362 63.0381 33.34 63.0525 33.3181C63.1447 33.1753 62.7717 32.5318 62.5946 32.5304C62.3139 32.5263 62.0346 32.529 61.7538 32.529ZM61.7538 29.5623C61.4903 30.2854 61.2556 30.9317 61.018 31.5781C60.972 31.7029 61.0483 31.7098 61.1404 31.7098C61.545 31.7098 61.9482 31.7084 62.3528 31.7112C62.4723 31.7125 62.5241 31.6878 62.4751 31.5589C62.2404 30.9194 62.013 30.2799 61.7538 29.5623Z" fill="#595959"/>
|
||||
<path d="M115.847 34.1398C115.513 34.1398 115.179 34.1398 114.845 34.1398C114.314 34.0725 113.814 33.9202 113.353 33.654C113.212 33.573 113.152 33.4825 113.159 33.3219C113.172 33.0049 113.17 32.688 113.16 32.371C113.156 32.2145 113.212 32.172 113.375 32.1665C114.039 32.1445 114.041 32.1377 114.141 32.7785C114.164 32.9253 114.2 33.0447 114.354 33.1106C114.832 33.3178 115.326 33.3947 115.84 33.2684C116.144 33.1929 116.362 33.0173 116.411 32.7072C116.462 32.3778 116.318 32.1295 116.021 31.9593C115.761 31.8097 115.474 31.7205 115.183 31.6423C114.842 31.5517 114.511 31.4351 114.197 31.2814C113.549 30.9658 113.165 30.491 113.237 29.7623C113.306 29.0598 113.771 28.6508 114.427 28.4574C115.375 28.1774 116.295 28.2899 117.159 28.7689C117.33 28.8635 117.408 28.9816 117.395 29.1764C117.377 29.4522 117.389 29.7308 117.39 30.008C117.39 30.1054 117.382 30.1891 117.248 30.1891C117.051 30.1877 116.853 30.1891 116.656 30.1891C116.568 30.1891 116.524 30.1452 116.514 30.0642C116.508 30.0244 116.496 29.9874 116.488 29.9476C116.421 29.6718 116.469 29.3493 116.046 29.256C115.545 29.1448 115.056 29.0653 114.612 29.3822C114.253 29.6375 114.262 30.1136 114.619 30.3771C114.911 30.5926 115.264 30.6914 115.612 30.7888C116.063 30.915 116.492 31.0783 116.885 31.3281C117.815 31.9195 117.845 33.4317 116.593 33.9381C116.352 34.0355 116.102 34.0959 115.847 34.1398Z" fill="#595959"/>
|
||||
<path d="M153.653 34.1434C153.319 34.142 152.985 34.1407 152.651 34.1393C152.153 34.0734 151.681 33.9348 151.241 33.6947C151.064 33.5973 150.962 33.4916 150.979 33.2762C151.004 32.9811 150.994 32.682 150.982 32.3856C150.975 32.2127 151.047 32.1715 151.22 32.1674C151.874 32.1537 151.882 32.1468 151.957 32.7712C151.98 32.966 152.065 33.0717 152.246 33.1444C152.701 33.3242 153.167 33.3901 153.647 33.272C153.947 33.1993 154.177 33.036 154.228 32.719C154.28 32.3924 154.153 32.14 153.853 31.9657C153.584 31.8106 153.289 31.7187 152.988 31.6377C152.647 31.5458 152.317 31.4291 152.002 31.2754C151.385 30.9763 151.017 30.5207 151.049 29.8373C151.082 29.1361 151.516 28.6957 152.172 28.483C153.158 28.1632 154.115 28.2799 155.015 28.7917C155.152 28.8699 155.218 28.9687 155.211 29.1306C155.198 29.4078 155.201 29.685 155.21 29.9622C155.215 30.1214 155.172 30.1886 154.986 30.1955C154.373 30.2161 154.367 30.2243 154.255 29.6411C154.219 29.4531 154.13 29.3488 153.938 29.2885C153.544 29.1636 153.151 29.1018 152.748 29.224C152.439 29.3173 152.218 29.4943 152.185 29.825C152.151 30.1475 152.333 30.3492 152.609 30.4878C152.942 30.6538 153.3 30.7554 153.659 30.8569C154.009 30.9571 154.34 31.0971 154.644 31.2905C155.198 31.6418 155.443 32.1427 155.371 32.7657C155.303 33.353 154.925 33.7263 154.372 33.9568C154.143 34.0528 153.898 34.0995 153.653 34.1434Z" fill="#595959"/>
|
||||
<path d="M32.7375 28.3905C33.4228 28.3905 34.1082 28.3988 34.7935 28.3864C35.0138 28.3823 35.0815 28.4482 35.0714 28.6554C35.0556 29.0108 35.0614 29.3676 35.07 29.7243C35.0743 29.8794 35.0167 29.9453 34.854 29.9274C34.8022 29.9219 34.7504 29.9261 34.6985 29.9261C34.1946 29.9261 34.1888 29.9274 34.1442 29.4499C34.1298 29.2976 34.0938 29.2262 33.9109 29.2303C33.4027 29.2427 32.893 29.2427 32.3847 29.2303C32.1918 29.2262 32.1342 29.2852 32.1414 29.4677C32.1543 29.8533 32.1601 30.2403 32.1399 30.6245C32.1284 30.8413 32.2249 30.8674 32.4121 30.8633C32.9203 30.8551 33.43 30.8702 33.9383 30.8564C34.1687 30.8496 34.2666 30.8907 34.2579 31.1432C34.2378 31.6976 34.2536 31.699 33.659 31.699C33.2428 31.699 32.8267 31.7113 32.4121 31.6949C32.1831 31.6853 32.1327 31.7703 32.1414 31.9693C32.1558 32.3247 32.1572 32.6829 32.1414 33.0383C32.1313 33.2523 32.2076 33.3333 32.4308 33.3594C32.7519 33.3964 32.916 33.723 32.7821 33.9961C32.7418 34.0798 32.6684 34.0702 32.5992 34.0702C31.924 34.0716 31.2487 34.0688 30.5734 34.0729C30.4222 34.0743 30.3833 34.0139 30.3776 33.8781C30.356 33.4349 30.3488 33.4266 30.8023 33.3498C30.9766 33.321 31.0154 33.2469 31.0154 33.0932C31.0111 31.8568 31.0068 30.619 31.0183 29.3827C31.0197 29.1878 30.9247 29.1604 30.7649 29.1329C30.415 29.0712 30.261 28.7926 30.3877 28.4825C30.4424 28.3494 30.559 28.3946 30.654 28.3946C31.3452 28.3892 32.042 28.3905 32.7375 28.3905Z" fill="#595959"/>
|
||||
<path d="M218.14 31.1629C218.535 30.5056 218.897 29.8977 219.265 29.2912C219.368 29.1196 219.242 29.121 219.124 29.099C218.995 29.0743 218.797 29.1443 218.751 29.0236C218.69 28.8658 218.72 28.6737 218.722 28.4966C218.723 28.3841 218.82 28.3896 218.905 28.3896C219.528 28.3896 220.152 28.3951 220.775 28.3869C220.949 28.3841 220.994 28.4541 220.981 28.5996C220.974 28.6778 220.972 28.7587 220.981 28.8369C221.001 29.0057 220.948 29.1004 220.748 29.0922C220.503 29.0812 220.365 29.2047 220.245 29.4092C219.813 30.1543 219.367 30.8912 218.908 31.6198C218.73 31.9011 218.621 32.1811 218.658 32.5118C218.676 32.6586 218.679 32.8109 218.657 32.9564C218.618 33.2281 218.718 33.3461 219.014 33.3667C219.275 33.3845 219.446 33.8085 219.299 34.013C219.249 34.0844 219.171 34.0652 219.1 34.0665C218.445 34.0679 217.792 34.0665 217.137 34.0679C217.018 34.0679 216.879 34.072 216.915 33.9074C216.952 33.7358 216.777 33.5121 217.052 33.3941C217.209 33.3269 217.449 33.4161 217.522 33.2377C217.583 33.0909 217.524 32.9042 217.544 32.7382C217.597 32.295 217.453 31.9176 217.211 31.5402C216.762 30.8404 216.346 30.12 215.934 29.3996C215.822 29.2033 215.688 29.1032 215.456 29.0894C215.032 29.0647 215.276 28.7505 215.23 28.5694C215.178 28.3676 215.353 28.3882 215.488 28.3896C216.091 28.391 216.693 28.3965 217.296 28.3869C217.479 28.3841 217.556 28.4212 217.551 28.6133C217.545 28.8713 217.603 29.1361 217.177 29.1128C217.019 29.1032 217.073 29.2212 217.118 29.3008C217.445 29.9032 217.779 30.5056 218.14 31.1629Z" fill="#595959"/>
|
||||
<path d="M141.985 34.1385C141.651 34.1399 141.317 34.1413 140.983 34.1426C139.49 33.8723 138.662 32.92 138.645 31.4654C138.638 30.8973 138.655 30.3361 138.905 29.8077C139.415 28.7305 140.508 28.1748 141.785 28.3326C142.308 28.3971 142.797 28.5398 143.236 28.8252C143.369 28.9117 143.431 29.0091 143.424 29.1683C143.411 29.4839 143.411 29.8023 143.424 30.1179C143.431 30.2894 143.365 30.3319 143.19 30.3347C142.586 30.3443 142.561 30.3525 142.509 29.7858C142.48 29.4702 142.313 29.3398 142.036 29.252C141.01 28.9281 140.087 29.4208 139.853 30.4266C139.725 30.9755 139.713 31.5299 139.863 32.0733C140.188 33.252 141.255 33.5375 142.318 33.1656C142.416 33.1313 142.466 33.0709 142.475 32.968C142.488 32.8308 142.527 32.6936 142.529 32.5563C142.535 32.3683 142.616 32.3052 142.817 32.3038C143.419 32.3011 143.419 32.2929 143.419 32.8788C143.419 32.9474 143.419 33.0174 143.419 33.086C143.419 33.7392 143.422 33.7461 142.767 33.9505C142.515 34.0342 142.247 34.0781 141.985 34.1385Z" fill="#595959"/>
|
||||
<path d="M67.7567 28.3896C68.5371 28.3896 69.3161 28.3951 70.0965 28.3855C70.2951 28.3828 70.3743 28.4281 70.3657 28.6312C70.3484 28.9975 70.3571 29.3639 70.3628 29.7303C70.3643 29.8634 70.3268 29.9403 70.1699 29.9238C70.108 29.9183 70.0446 29.9224 69.9827 29.9224C69.4946 29.9224 69.4874 29.9238 69.4456 29.4614C69.4298 29.2885 69.3693 29.2308 69.1807 29.2267C68.2995 29.2089 68.2995 29.2034 68.2995 30.0432C68.2995 31.0339 68.3067 32.0247 68.2938 33.0141C68.2909 33.2336 68.3456 33.3434 68.5904 33.3599C68.7027 33.3667 68.8841 33.3489 68.9129 33.4751C68.9518 33.6439 68.9331 33.8292 68.9129 34.0062C68.9028 34.0913 68.7963 34.0666 68.7272 34.0666C68.062 34.0679 67.3968 34.0638 66.7316 34.0693C66.5861 34.0707 66.5357 34.0281 66.5286 33.8841C66.5055 33.4353 66.4969 33.4285 66.9389 33.3461C67.1045 33.3146 67.1606 33.2487 67.1592 33.0895C67.1534 31.871 67.1534 30.6538 67.1592 29.4353C67.1592 29.283 67.1131 29.2157 66.949 29.2294C66.8453 29.2377 66.7416 29.2308 66.6365 29.2308C66.0966 29.2308 66.0908 29.2294 65.9958 29.7454C65.9699 29.8826 65.9109 29.9197 65.7726 29.9265C65.1175 29.9595 65.1175 29.9636 65.1175 29.3406C65.1175 29.143 65.1362 28.9426 65.1132 28.7464C65.0801 28.4679 65.1636 28.3704 65.4789 28.38C66.2391 28.4061 66.9979 28.3896 67.7567 28.3896Z" fill="#595959"/>
|
||||
<path d="M94.2196 34.07C93.5659 34.07 92.9108 34.0714 92.2571 34.0686C92.1492 34.0686 91.9836 34.0974 92.0196 33.9286C92.0584 33.7503 91.854 33.5101 92.165 33.3935C92.3234 33.3345 92.5624 33.4154 92.6358 33.2357C92.6948 33.0875 92.656 32.9036 92.656 32.7362C92.6574 31.648 92.6517 30.5598 92.6603 29.4716C92.6617 29.2617 92.6229 29.1505 92.3738 29.1217C92.0354 29.0819 91.9001 28.8102 92.0124 28.4877C92.0498 28.3821 92.1304 28.3917 92.2111 28.3917C92.9065 28.3903 93.6034 28.3944 94.2988 28.3889C94.45 28.3876 94.5047 28.4452 94.4932 28.5824C94.486 28.6716 94.4846 28.7608 94.4932 28.85C94.5076 29.0051 94.4543 29.0737 94.2772 29.1011C93.7733 29.1793 93.7747 29.189 93.7747 29.683C93.7747 30.7807 93.7805 31.8799 93.769 32.9777C93.7661 33.2 93.828 33.2713 94.0641 33.2604C94.4687 33.2425 94.8747 33.248 95.2793 33.259C95.4622 33.2631 95.5572 33.2123 95.5443 33.0285C95.5428 33.0092 95.5443 32.9887 95.5457 32.9695C95.5875 32.3959 95.5875 32.4041 96.1908 32.4027C96.3895 32.4027 96.4658 32.448 96.4571 32.6497C96.4398 33.0353 96.4413 33.4223 96.4571 33.8065C96.4658 34.011 96.4053 34.081 96.1821 34.0755C95.5284 34.0604 94.8733 34.07 94.2196 34.07Z" fill="#595959"/>
|
||||
<path d="M227.157 34.0686C226.501 34.0686 225.848 34.0686 225.193 34.0686C225.08 34.0686 224.925 34.0851 224.965 33.919C225.008 33.742 224.791 33.4895 225.119 33.3921C225.584 33.2535 225.584 33.2549 225.584 32.7732C225.584 31.6645 225.577 30.5557 225.59 29.4483C225.593 29.2384 225.534 29.156 225.314 29.1231C224.967 29.0723 224.846 28.8239 224.959 28.4864C224.995 28.3793 225.076 28.3917 225.157 28.3917C225.852 28.3917 226.549 28.3944 227.244 28.3889C227.403 28.3876 227.445 28.4507 227.434 28.5838C227.429 28.662 227.426 28.743 227.434 28.8212C227.455 28.9996 227.399 29.0778 227.188 29.1039C226.722 29.1615 226.725 29.178 226.725 29.6253C226.725 30.7437 226.732 31.8621 226.719 32.9804C226.716 33.2068 226.788 33.2686 227.018 33.259C227.433 33.2425 227.849 33.2494 228.265 33.2576C228.409 33.2604 228.473 33.2219 228.471 33.0779C228.47 32.9502 228.509 32.8213 228.501 32.6936C228.487 32.4576 228.591 32.3945 228.831 32.4C229.4 32.4151 229.4 32.4027 229.4 32.9516C229.4 33.2384 229.385 33.5266 229.404 33.812C229.42 34.0316 229.326 34.0768 229.118 34.0727C228.467 34.0631 227.812 34.0686 227.157 34.0686Z" fill="#595959"/>
|
||||
<path d="M30.9494 5.1228C31.1368 5.19004 31.0525 5.34373 31.0525 5.45625C31.0569 9.04053 31.0569 12.6234 31.0569 16.2077C31.0569 18.3264 31.0525 20.4452 31.0511 22.5625C30.884 22.4953 30.9668 22.3567 30.9668 22.2551C30.9625 16.6523 30.9625 11.0509 30.9625 5.44802C30.9625 5.34099 30.9537 5.23121 30.9494 5.1228Z" fill="#595959"/>
|
||||
<path d="M240.115 22.5547C241.823 22.5588 243.529 22.5629 245.237 22.5657C245.277 22.5657 245.316 22.5465 245.356 22.5369C245.346 22.6947 245.218 22.6562 245.124 22.6562C243.529 22.659 241.934 22.6576 240.338 22.6562C240.249 22.6562 240.143 22.6809 240.115 22.5547Z" fill="#D5D5D5"/>
|
||||
<path d="M93.9207 14.1C93.871 14.0655 93.89 14.0296 93.9265 14.0034C93.9528 13.984 93.9865 13.984 94.0055 14.0199C93.9762 14.0475 93.9485 14.0738 93.9207 14.1Z" fill="#595959"/>
|
||||
<path d="M36.4142 5.18613C36.3748 5.16542 36.3645 5.13229 36.3938 5.10192C36.4215 5.07155 36.4581 5.07293 36.4844 5.1102C36.4595 5.13505 36.4361 5.16128 36.4142 5.18613Z" fill="#595959"/>
|
||||
<path d="M33.8562 42.0493H31.4502V44.4616H30.6943V38.9988H34.245V39.5875H31.4502V41.4592H33.8562V42.0493Z" fill="#626262"/>
|
||||
<path d="M39.5605 41.9076C39.5605 42.4428 39.4655 42.9107 39.2769 43.3087C39.0883 43.708 38.8205 44.0126 38.4735 44.2226C38.1265 44.4326 37.7233 44.5382 37.2611 44.5382C36.809 44.5382 36.4087 44.4326 36.0603 44.2212C35.7119 44.0099 35.4397 43.708 35.2468 43.3169C35.0539 42.9258 34.9545 42.4716 34.9502 41.957V41.5632C34.9502 41.0376 35.0467 40.5738 35.2382 40.1718C35.4297 39.7697 35.7003 39.461 36.0517 39.2469C36.403 39.0328 36.8033 38.9258 37.2539 38.9258C37.7132 38.9258 38.1178 39.0314 38.4691 39.2428C38.819 39.4541 39.0897 39.7601 39.2783 40.1622C39.4669 40.5642 39.562 41.0308 39.562 41.5632V41.9076H39.5605ZM38.8089 41.5536C38.8089 40.9059 38.6722 40.4092 38.4 40.062C38.1265 39.7162 37.7449 39.5419 37.2539 39.5419C36.7759 39.5419 36.4001 39.7148 36.1265 40.062C35.8515 40.4092 35.7119 40.8894 35.7032 41.5042V41.9063C35.7032 42.5348 35.8415 43.0274 36.1179 43.3869C36.3943 43.7464 36.7759 43.9248 37.2611 43.9248C37.7492 43.9248 38.1279 43.756 38.3957 43.4157C38.6635 43.0768 38.8017 42.591 38.8089 41.9584V41.5536Z" fill="#626262"/>
|
||||
<path d="M42.7969 42.2523H41.4507V44.463H40.6904V38.9988H42.5881C43.2332 38.9988 43.7299 39.1387 44.0784 39.4187C44.4268 39.6986 44.5996 40.1062 44.5996 40.6413C44.5996 40.9817 44.5031 41.2781 44.3102 41.5305C44.1172 41.783 43.8494 41.9724 43.5053 42.0973L44.8515 44.4164V44.4616H44.0409L42.7969 42.2523ZM41.4507 41.6637H42.6126C42.9884 41.6637 43.2864 41.5703 43.5082 41.3851C43.7299 41.1998 43.8408 40.9515 43.8408 40.6413C43.8408 40.3038 43.7357 40.0444 43.524 39.8633C43.3124 39.6821 43.0071 39.5916 42.6083 39.5888H41.4507V41.6637Z" fill="#626262"/>
|
||||
<path d="M46.6349 38.9988L48.5096 43.4558L50.3842 38.9988H51.3648V44.4616H50.6089V42.3347L50.6794 40.0389L48.7975 44.463H48.2187L46.3412 40.0499L46.4161 42.3347V44.4616H45.6602V38.9988H46.6349Z" fill="#626262"/>
|
||||
<path d="M55.9398 41.9367H53.4561V43.873H56.3415V44.4616H52.7002V38.9988H56.3026V39.5875H53.4561V41.3467H55.9398V41.9367Z" fill="#626262"/>
|
||||
<path d="M59.3848 42.2523H58.0386V44.463H57.2783V38.9988H59.176C59.8211 38.9988 60.3178 39.1387 60.6662 39.4187C61.0147 39.6986 61.1875 40.1062 61.1875 40.6413C61.1875 40.9817 61.091 41.2781 60.8981 41.5305C60.7051 41.783 60.4373 41.9724 60.0932 42.0973L61.4394 44.4164V44.4616H60.6288L59.3848 42.2523ZM58.0386 41.6637H59.2005C59.5763 41.6637 59.8743 41.5703 60.0961 41.3851C60.3178 41.1998 60.4287 40.9515 60.4287 40.6413C60.4287 40.3038 60.3236 40.0444 60.1119 39.8633C59.9002 39.6821 59.595 39.5916 59.1962 39.5888H58.0386V41.6637Z" fill="#626262"/>
|
||||
<path d="M63.0068 43.873H65.7238V44.4616H62.248V38.9988H63.0083V43.873H63.0068Z" fill="#626262"/>
|
||||
<path d="M67.3927 41.7419L68.8887 38.9988H69.7468L67.7699 42.4239V44.4616H67.014V42.4239L65.0371 38.9988H65.9039L67.3927 41.7419Z" fill="#626262"/>
|
||||
<path d="M74.585 42.2523H73.2387V44.463H72.4785V38.9988H74.3762C75.0213 38.9988 75.518 39.1387 75.8664 39.4187C76.2149 39.6986 76.3877 40.1062 76.3877 40.6413C76.3877 40.9817 76.2912 41.2781 76.0983 41.5305C75.9053 41.783 75.6375 41.9724 75.2934 42.0973L76.6396 44.4164V44.4616H75.829L74.585 42.2523ZM73.2387 41.6637H74.4007C74.7765 41.6637 75.0745 41.5703 75.2963 41.3851C75.518 41.1998 75.6289 40.9515 75.6289 40.6413C75.6289 40.3038 75.5238 40.0444 75.3121 39.8633C75.1004 39.6821 74.7952 39.5916 74.3964 39.5888H73.2387V41.6637Z" fill="#626262"/>
|
||||
<path d="M81.8564 41.9076C81.8564 42.4428 81.7614 42.9107 81.5728 43.3087C81.3842 43.708 81.1164 44.0126 80.7694 44.2226C80.4224 44.4326 80.0192 44.5382 79.557 44.5382C79.1049 44.5382 78.7046 44.4326 78.3562 44.2212C78.0078 44.0099 77.7356 43.708 77.5427 43.3169C77.3498 42.9258 77.2504 42.4716 77.2461 41.957V41.5632C77.2461 41.0376 77.3426 40.5738 77.5341 40.1718C77.7256 39.7697 77.9962 39.461 78.3476 39.2469C78.6989 39.0328 79.0992 38.9258 79.5498 38.9258C80.0091 38.9258 80.4137 39.0314 80.765 39.2428C81.1149 39.4541 81.3856 39.7601 81.5742 40.1622C81.7628 40.5642 81.8579 41.0308 81.8579 41.5632V41.9076H81.8564ZM81.1048 41.5536C81.1048 40.9059 80.9681 40.4092 80.6959 40.062C80.4224 39.7162 80.0408 39.5419 79.5498 39.5419C79.0718 39.5419 78.696 39.7148 78.4224 40.062C78.1474 40.4092 78.0078 40.8894 77.9991 41.5042V41.9063C77.9991 42.5348 78.1373 43.0274 78.4138 43.3869C78.6902 43.7464 79.0718 43.9248 79.557 43.9248C80.0451 43.9248 80.4238 43.756 80.6916 43.4157C80.9594 43.0768 81.0976 42.591 81.1048 41.9584V41.5536Z" fill="#626262"/>
|
||||
<path d="M87.208 42.7287C87.1374 43.3064 86.9128 43.7524 86.537 44.0666C86.1598 44.3809 85.6602 44.5373 85.0353 44.5373C84.3586 44.5373 83.8158 44.3054 83.4068 43.8429C82.9994 43.3805 82.7949 42.7616 82.7949 41.9849V41.4594C82.7949 40.9517 82.8899 40.5057 83.08 40.1201C83.2701 39.7345 83.5393 39.4394 83.8892 39.2322C84.2376 39.0264 84.6422 38.9221 85.1015 38.9221C85.7106 38.9221 86.1987 39.084 86.5658 39.4079C86.933 39.7317 87.1475 40.1805 87.208 40.7527H86.4478C86.3815 40.3163 86.2404 39.9993 86.0201 39.8045C85.8013 39.6082 85.4946 39.5108 85.1015 39.5108C84.6192 39.5108 84.2405 39.681 83.9655 40.0213C83.6905 40.3616 83.5537 40.846 83.5537 41.4745V42.0042C83.5537 42.597 83.6833 43.069 83.9439 43.4203C84.2045 43.7716 84.5674 43.9459 85.0339 43.9459C85.4543 43.9459 85.7754 43.8553 86 43.6742C86.2246 43.493 86.3729 43.1774 86.4463 42.7273H87.208V42.7287Z" fill="#626262"/>
|
||||
<path d="M89.6954 41.9216L88.9942 42.616V44.4616H88.2383V38.9988H88.9942V41.7007L91.5413 38.9988H92.4541L90.1979 41.4112L92.6312 44.4616H91.7255L89.6954 41.9216Z" fill="#626262"/>
|
||||
<path d="M95.0411 41.7419L96.5371 38.9988H97.3952L95.4184 42.4239V44.4616H94.6624V42.4239L92.6855 38.9988H93.5523L95.0411 41.7419Z" fill="#626262"/>
|
||||
<path d="M101.11 38.9988L102.984 43.4558L104.859 38.9988H105.839V44.4616H105.083V42.3347L105.154 40.0389L103.272 44.463H102.693L100.816 40.0499L100.891 42.3347V44.4616H100.135V38.9988H101.11Z" fill="#626262"/>
|
||||
<path d="M111.582 41.9076C111.582 42.4428 111.487 42.9107 111.298 43.3087C111.11 43.708 110.842 44.0126 110.495 44.2226C110.148 44.4326 109.745 44.5382 109.283 44.5382C108.83 44.5382 108.43 44.4326 108.082 44.2212C107.733 44.0099 107.461 43.708 107.268 43.3169C107.075 42.9258 106.976 42.4716 106.972 41.957V41.5632C106.972 41.0376 107.068 40.5738 107.26 40.1718C107.451 39.7697 107.722 39.461 108.073 39.2469C108.424 39.0328 108.825 38.9258 109.275 38.9258C109.735 38.9258 110.139 39.0314 110.491 39.2428C110.841 39.4541 111.111 39.7601 111.3 40.1622C111.488 40.5642 111.583 41.0308 111.583 41.5632V41.9076H111.582ZM110.83 41.5536C110.83 40.9059 110.694 40.4092 110.422 40.062C110.148 39.7162 109.766 39.5419 109.275 39.5419C108.797 39.5419 108.422 39.7148 108.148 40.062C107.873 40.4092 107.733 40.8894 107.725 41.5042V41.9063C107.725 42.5348 107.863 43.0274 108.139 43.3869C108.416 43.7464 108.797 43.9248 109.283 43.9248C109.771 43.9248 110.149 43.756 110.417 43.4157C110.685 43.0768 110.823 42.591 110.83 41.9584V41.5536Z" fill="#626262"/>
|
||||
<path d="M116.751 38.9988V42.7134C116.748 43.2294 116.578 43.6507 116.241 43.9772C115.905 44.3052 115.447 44.4891 114.869 44.5289L114.669 44.5357C114.041 44.5357 113.542 44.3738 113.169 44.0513C112.796 43.7289 112.607 43.2843 112.602 42.7189V38.9988H113.35V42.6983C113.35 43.0935 113.464 43.4009 113.693 43.6191C113.922 43.8386 114.247 43.9471 114.669 43.9471C115.097 43.9471 115.425 43.8386 115.651 43.6205C115.879 43.4023 115.992 43.0963 115.992 42.7011V38.9988H116.751Z" fill="#626262"/>
|
||||
<path d="M122.349 44.463H121.589L118.704 40.253V44.463H117.943V38.9988H118.704L121.598 43.228V38.9988H122.349V44.463Z" fill="#626262"/>
|
||||
<path d="M127.54 39.5889H125.697V44.4631H124.945V39.5889H123.106V39.0002H127.54V39.5889Z" fill="#626262"/>
|
||||
<path d="M131.244 43.0332H128.842L128.302 44.4631H127.523L129.712 39.0002H130.373L132.566 44.4631H131.79L131.244 43.0332ZM129.07 42.4446H131.019L130.043 39.8895L129.07 42.4446Z" fill="#626262"/>
|
||||
<path d="M134.148 44.463H133.393V38.9988H134.148V44.463Z" fill="#626262"/>
|
||||
<path d="M139.936 44.463H139.176L136.291 40.253V44.463H135.53V38.9988H136.291L139.185 43.228V38.9988H139.936V44.463Z" fill="#626262"/>
|
||||
<path d="M144.25 38.9988L146.125 43.4558L147.999 38.9988H148.98V44.4616H148.224V42.3347L148.295 40.0389L146.413 44.463H145.834L143.956 40.0499L144.031 42.3347V44.4616H143.275V38.9988H144.25Z" fill="#626262"/>
|
||||
<path d="M151.125 44.463H150.369V38.9988H151.125V44.463Z" fill="#626262"/>
|
||||
<path d="M156.913 44.463H156.152L153.267 40.253V44.463H152.507V38.9988H153.267L156.161 43.228V38.9988H156.913V44.463Z" fill="#626262"/>
|
||||
<path d="M161.495 41.9367H159.012V43.873H161.897V44.4616H158.256V38.9988H161.858V39.5875H159.012V41.3467H161.495V41.9367Z" fill="#626262"/>
|
||||
<path d="M164.94 42.2523H163.594V44.463H162.834V38.9988H164.732C165.377 38.9988 165.873 39.1387 166.222 39.4187C166.57 39.6986 166.743 40.1062 166.743 40.6413C166.743 40.9817 166.647 41.2781 166.454 41.5305C166.261 41.783 165.993 41.9724 165.649 42.0973L166.995 44.4164V44.4616H166.184L164.94 42.2523ZM163.594 41.6637H164.756C165.132 41.6637 165.43 41.5703 165.652 41.3851C165.873 41.1998 165.984 40.9515 165.984 40.6413C165.984 40.3038 165.879 40.0444 165.668 39.8633C165.456 39.6821 165.151 39.5916 164.752 39.5888H163.594V41.6637Z" fill="#626262"/>
|
||||
<path d="M170.969 43.0332H168.567L168.027 44.4631H167.248L169.437 39.0002H170.097L172.29 44.4631H171.514L170.969 43.0332ZM168.794 42.4446H170.744L169.768 39.8895L168.794 42.4446Z" fill="#626262"/>
|
||||
<path d="M173.821 43.873H176.538V44.4616H173.062V38.9988H173.823V43.873H173.821Z" fill="#626262"/>
|
||||
<path d="M180.158 43.873H182.875V44.4616H179.399V38.9988H180.16V43.873H180.158Z" fill="#626262"/>
|
||||
<path d="M186.975 43.0332H184.574L184.034 44.4631H183.255L185.443 39.0002H186.104L188.297 44.4631H187.521L186.975 43.0332ZM184.801 42.4446H186.751L185.775 39.8895L184.801 42.4446Z" fill="#626262"/>
|
||||
<path d="M190.035 42.741L190.146 43.4614L190.307 42.8123L191.442 39.0002H192.08L193.185 42.8123L193.342 43.4724L193.465 42.7368L194.355 39.0002H195.115L193.725 44.4631H193.036L191.855 40.4823L191.764 40.0651L191.674 40.4823L190.45 44.4631H189.76L188.375 39.0002H189.131L190.035 42.741Z" fill="#626262"/>
|
||||
<path d="M201.109 42.0493H198.703V44.4616H197.947V38.9988H201.498V39.5875H198.703V41.4592H201.109V42.0493Z" fill="#626262"/>
|
||||
<path d="M206.813 41.9076C206.813 42.4428 206.718 42.9107 206.53 43.3087C206.341 43.708 206.073 44.0126 205.726 44.2226C205.379 44.4326 204.976 44.5382 204.514 44.5382C204.062 44.5382 203.662 44.4326 203.313 44.2212C202.965 44.0099 202.693 43.708 202.5 43.3169C202.307 42.9258 202.207 42.4716 202.203 41.957V41.5632C202.203 41.0376 202.3 40.5738 202.491 40.1718C202.683 39.7697 202.953 39.461 203.305 39.2469C203.656 39.0328 204.056 38.9258 204.507 38.9258C204.966 38.9258 205.371 39.0314 205.722 39.2428C206.072 39.4541 206.343 39.7601 206.531 40.1622C206.72 40.5642 206.815 41.0308 206.815 41.5632V41.9076H206.813ZM206.062 41.5536C206.062 40.9059 205.925 40.4092 205.653 40.062C205.379 39.7162 204.998 39.5419 204.507 39.5419C204.029 39.5419 203.653 39.7148 203.379 40.062C203.104 40.4092 202.965 40.8894 202.956 41.5042V41.9063C202.956 42.5348 203.094 43.0274 203.371 43.3869C203.647 43.7464 204.029 43.9248 204.514 43.9248C205.002 43.9248 205.381 43.756 205.649 43.4157C205.916 43.0768 206.055 42.591 206.062 41.9584V41.5536Z" fill="#626262"/>
|
||||
<path d="M211.983 38.9988V42.7134C211.98 43.2294 211.81 43.6507 211.473 43.9772C211.136 44.3052 210.678 44.4891 210.101 44.5289L209.901 44.5357C209.273 44.5357 208.773 44.3738 208.4 44.0513C208.027 43.7289 207.839 43.2843 207.833 42.7189V38.9988H208.582V42.6983C208.582 43.0935 208.695 43.4009 208.924 43.6191C209.153 43.8386 209.479 43.9471 209.901 43.9471C210.328 43.9471 210.657 43.8386 210.883 43.6205C211.11 43.4023 211.224 43.0963 211.224 42.7011V38.9988H211.983Z" fill="#626262"/>
|
||||
<path d="M217.583 44.463H216.822L213.937 40.253V44.463H213.177V38.9988H213.937L216.831 43.228V38.9988H217.583V44.463Z" fill="#626262"/>
|
||||
<path d="M218.925 44.463V38.9988H220.543C221.041 38.9988 221.483 39.1044 221.866 39.3144C222.249 39.5243 222.546 39.8235 222.755 40.2118C222.964 40.6002 223.069 41.0448 223.072 41.547V41.8956C223.072 42.4115 222.968 42.863 222.759 43.25C222.55 43.6383 222.252 43.9361 221.865 44.1433C221.478 44.3505 221.027 44.4575 220.513 44.4616H218.925V44.463ZM219.681 39.5888V43.8743H220.476C221.059 43.8743 221.512 43.7014 221.836 43.3556C222.16 43.0098 222.323 42.5186 222.323 41.8791V41.5594C222.323 40.9391 222.17 40.4561 221.864 40.1117C221.558 39.7672 221.123 39.593 220.562 39.5875H219.681V39.5888Z" fill="#626262"/>
|
||||
<path d="M227.295 43.0332H224.893L224.353 44.4631H223.574L225.763 39.0002H226.424L228.617 44.4631H227.84L227.295 43.0332ZM225.122 42.4446H227.072L226.095 39.8895L225.122 42.4446Z" fill="#626262"/>
|
||||
<path d="M232.842 39.5889H230.999V44.4631H230.248V39.5889H228.409V39.0002H232.842V39.5889Z" fill="#626262"/>
|
||||
<path d="M234.503 44.463H233.747V38.9988H234.503V44.463Z" fill="#626262"/>
|
||||
<path d="M240.295 41.9076C240.295 42.4428 240.2 42.9107 240.011 43.3087C239.823 43.708 239.555 44.0126 239.208 44.2226C238.861 44.4326 238.458 44.5382 237.995 44.5382C237.543 44.5382 237.143 44.4326 236.795 44.2212C236.446 44.0099 236.174 43.708 235.981 43.3169C235.788 42.9258 235.689 42.4716 235.685 41.957V41.5632C235.685 41.0376 235.781 40.5738 235.973 40.1718C236.164 39.7697 236.435 39.461 236.786 39.2469C237.137 39.0328 237.538 38.9258 237.988 38.9258C238.448 38.9258 238.852 39.0314 239.204 39.2428C239.553 39.4541 239.824 39.7601 240.013 40.1622C240.201 40.5642 240.296 41.0308 240.296 41.5632V41.9076H240.295ZM239.543 41.5536C239.543 40.9059 239.407 40.4092 239.134 40.062C238.861 39.7162 238.479 39.5419 237.988 39.5419C237.51 39.5419 237.134 39.7148 236.861 40.062C236.586 40.4092 236.446 40.8894 236.438 41.5042V41.9063C236.438 42.5348 236.576 43.0274 236.852 43.3869C237.129 43.7464 237.51 43.9248 237.995 43.9248C238.484 43.9248 238.862 43.756 239.13 43.4157C239.398 43.0768 239.536 42.591 239.543 41.9584V41.5536Z" fill="#626262"/>
|
||||
<path d="M245.835 44.463H245.074L242.189 40.253V44.463H241.429V38.9988H242.189L245.083 43.228V38.9988H245.835V44.463Z" fill="#626262"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 39 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="68" height="47" viewBox="0 0 68 47" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_3444_7142)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.60616 0.000244141H36.4057V28.218C37.9411 18.9192 39.259 9.40658 40.6857 0.000244141H67.4865V46.1029H42.1956V6.55013C40.1309 19.6423 38.1405 32.8137 36.2804 46.1029H11.1198V4.91074C8.39678 18.5301 5.9729 32.4348 3.31124 46.1029H0.921875C3.78808 30.8761 6.63897 15.6327 9.47833 0.379058C9.46652 0.19605 9.45914 0.0219993 9.60616 0.000244141Z" fill="#595959"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3444_7142">
|
||||
<rect width="67.0584" height="46.1027" fill="white" transform="translate(0.921875)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 701 B |
@@ -0,0 +1,10 @@
|
||||
<svg width="73" height="50" viewBox="0 0 73 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.5" clip-path="url(#clip0_3697_1344)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.45374 0H38.6278V30.6031C40.2992 20.5182 41.734 10.2015 43.2871 0H72.4625V50H44.9307V7.10359C42.6831 21.3025 40.5163 35.5874 38.4914 50H11.1015V5.32561C8.13721 20.0963 5.49857 35.1765 2.60107 50H0C3.12016 33.486 6.22365 16.954 9.31458 0.410838C9.30172 0.212359 9.29369 0.0235942 9.45374 0Z" fill="#595959"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3697_1344">
|
||||
<rect width="73" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 622 B |
@@ -0,0 +1,20 @@
|
||||
<svg width="66" height="65" viewBox="0 0 66 65" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_3444_6983)">
|
||||
<path d="M65.1081 0H0.84375V64.2643H65.1081V0Z" fill="#595959"/>
|
||||
<path d="M22.0708 20.774L21.0889 10.401L17.5886 20.774H14.1671L10.4883 10.3787L9.7326 20.774H6.08203L7.71839 5.19141H12.1812L16.0772 15.9155L19.7352 5.19141H24.198L25.9355 20.774H22.0708Z" fill="white"/>
|
||||
<path d="M33.8234 21.1235C30.0627 21.1235 27.751 18.4146 27.751 15.0244C27.751 11.4735 30.506 8.83447 34.0108 8.83447C36.6037 8.83447 38.0273 10.0484 38.1924 10.2834L36.7212 12.549C36.0763 12.117 35.3236 11.8738 34.5478 11.8469C32.7255 11.8469 31.5116 13.1857 31.5116 14.9545C31.5116 16.8006 32.422 18.1082 34.3381 18.1082C35.7171 18.1082 36.8848 17.3138 36.9548 17.2677L38.3799 19.6032C38.31 19.6538 36.7212 21.1235 33.8234 21.1235Z" fill="white"/>
|
||||
<path d="M15.1102 59.0246V52.5119H9.92892V59.029H6.08496V43.4375H9.92892V49.3953H15.1102V43.4375H18.9557V59.0246H15.1102Z" fill="white"/>
|
||||
<path d="M24.0945 47.2441C23.831 47.2421 23.5704 47.1883 23.3277 47.0857C23.0849 46.983 22.8648 46.8336 22.6798 46.6458C22.4949 46.4581 22.3487 46.2358 22.2496 45.9915C22.1506 45.7473 22.1006 45.486 22.1026 45.2224C22.1117 44.8331 22.2353 44.455 22.458 44.1355C22.6807 43.816 22.9926 43.5692 23.3548 43.426C23.717 43.2827 24.1133 43.2494 24.4943 43.3302C24.8753 43.4109 25.2241 43.6021 25.497 43.88C25.77 44.1578 25.955 44.5099 26.029 44.8923C26.1029 45.2747 26.0626 45.6704 25.9129 46.0299C25.7633 46.3895 25.511 46.697 25.1876 46.914C24.8641 47.131 24.484 47.2479 24.0945 47.25V47.2441ZM22.1963 59.0244V49.0233H25.9466V59.0244H22.1963Z" fill="white"/>
|
||||
<path d="M29.1631 59.0246V43.4375H32.7333V59.0246H29.1631Z" fill="white"/>
|
||||
<path d="M35.9688 59.0246V43.4375H39.539V59.0246H35.9688Z" fill="white"/>
|
||||
<path d="M13.0925 40.1495C8.3322 40.1495 4.9375 37.0642 4.9375 32.0882C4.9375 26.9024 8.50774 23.771 13.3484 23.771C16.9186 23.771 18.488 25.2437 18.8391 25.5933L17.1804 28.0702C16.1162 27.3173 14.8392 26.9243 13.5358 26.9485C10.8031 26.9485 8.81716 28.7946 8.81716 31.8784C8.81716 35.3594 11.0367 36.972 13.4897 36.972C14.1941 36.9825 14.896 36.8877 15.5724 36.6908V34.449H12.7444V31.6687H18.9581V38.4432C18.7692 38.5607 16.9707 40.1495 13.0925 40.1495Z" fill="white"/>
|
||||
<path d="M56.8084 39.4709H52.9987L51.1064 32.3305L49.3778 39.4709H45.7109L42.3936 27.884H45.9445L47.7668 35.3592L49.6828 27.884H52.8365L54.7525 35.3592L56.5034 27.884H59.9145L56.8084 39.4709Z" fill="white"/>
|
||||
<path d="M28.9599 30.5939C28.3643 30.5805 27.7752 30.7202 27.249 30.9997C26.7228 31.2792 26.2773 31.6891 25.9549 32.1901V39.518H22.1973V27.8687H25.2974V29.4187C25.3673 29.3027 26.785 27.5176 29.1815 27.5176C29.1815 27.5176 29.3392 27.5176 29.43 27.5295C29.5207 27.5414 29.6516 27.5607 29.6516 27.5607L28.9599 30.5939Z" fill="white"/>
|
||||
<path d="M37.7742 39.5707V38.5844C36.8583 39.3732 35.6938 39.8141 34.4851 39.8295C32.1362 39.8295 30.7021 38.2557 30.7021 36.0228C30.7021 32.3633 35.8954 32.0464 37.1182 32.0464H37.3755C37.3755 31.6701 37.4722 30.9664 37.0929 30.6659C36.8861 30.5008 36.5306 30.2896 35.7064 30.2896C34.8859 30.3038 34.0734 30.4546 33.3025 30.7358C33.0853 30.8132 32.9008 30.8846 32.761 30.9501L31.6081 28.674C31.8004 28.5574 31.999 28.4516 32.2031 28.3572C33.3634 27.8339 34.6241 27.5709 35.8968 27.5866C37.682 27.5866 39.0208 28.0329 39.9372 28.9492C40.9487 29.9593 40.8773 31.322 40.8773 32.756V39.5707H37.7742ZM37.4216 34.1201C36.5291 34.1201 34.8838 34.0725 34.2025 34.7539C34.0722 34.8823 33.9695 35.0361 33.901 35.2057C33.8324 35.3753 33.7993 35.5572 33.8038 35.7401C33.8038 36.8677 34.6502 37.1504 35.2602 37.1504C36.0309 37.1571 36.7852 36.9276 37.4216 36.4929V34.1201Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3444_6983">
|
||||
<rect width="64.2643" height="64.2643" fill="white" transform="translate(0.84375)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,20 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.5" clip-path="url(#clip0_3697_1346)">
|
||||
<path d="M57 0H0V57H57V0Z" fill="#595959"/>
|
||||
<path d="M18.8288 18.4269L17.958 9.22641L14.8534 18.4269H11.8186L8.55565 9.20662L7.88538 18.4269H4.64746L6.09885 4.60571H10.0572L13.5128 14.1176L16.7573 4.60571H20.7157L22.2568 18.4269H18.8288Z" fill="white"/>
|
||||
<path d="M29.2522 18.7366C25.9166 18.7366 23.8662 16.3339 23.8662 13.3269C23.8662 10.1774 26.3098 7.83667 29.4184 7.83667C31.7182 7.83667 32.9809 8.91334 33.1274 9.12181L31.8225 11.1313C31.2505 10.7482 30.5828 10.5325 29.8948 10.5085C28.2784 10.5085 27.2018 11.696 27.2018 13.2649C27.2018 14.9023 28.0093 16.0621 29.7087 16.0621C30.9318 16.0621 31.9676 15.3575 32.0296 15.3166L33.2936 17.3881C33.2316 17.433 31.8225 18.7366 29.2522 18.7366Z" fill="white"/>
|
||||
<path d="M12.6535 52.3532V46.5767H8.05788V52.3572H4.64844V38.5281H8.05788V43.8124H12.6535V38.5281H16.0643V52.3532H12.6535Z" fill="white"/>
|
||||
<path d="M20.6232 41.9047C20.3895 41.903 20.1584 41.8552 19.9431 41.7642C19.7278 41.6731 19.5325 41.5406 19.3685 41.3741C19.2044 41.2076 19.0748 41.0104 18.9869 40.7938C18.8991 40.5771 18.8548 40.3453 18.8565 40.1116C18.8645 39.7662 18.9742 39.4309 19.1717 39.1475C19.3693 38.8641 19.6459 38.6452 19.9672 38.5182C20.2884 38.3911 20.6399 38.3616 20.9779 38.4332C21.3158 38.5048 21.6252 38.6744 21.8672 38.9209C22.1093 39.1673 22.2734 39.4796 22.339 39.8188C22.4046 40.1579 22.3688 40.5089 22.2361 40.8278C22.1034 41.1467 21.8796 41.4195 21.5927 41.6119C21.3059 41.8044 20.9687 41.9081 20.6232 41.91V41.9047ZM18.9396 52.3534V43.4828H22.2659V52.3534H18.9396Z" fill="white"/>
|
||||
<path d="M25.1191 52.3532V38.5281H28.2858V52.3532H25.1191Z" fill="white"/>
|
||||
<path d="M31.1553 52.3532V38.5281H34.3219V52.3532H31.1553Z" fill="white"/>
|
||||
<path d="M10.8641 35.6116C6.64183 35.6116 3.63086 32.875 3.63086 28.4615C3.63086 23.8619 6.79753 21.0845 11.091 21.0845C14.2577 21.0845 15.6497 22.3907 15.9611 22.7008L14.4899 24.8977C13.546 24.2299 12.4133 23.8813 11.2572 23.9028C8.83343 23.9028 7.07197 25.5402 7.07197 28.2754C7.07197 31.3629 9.04058 32.7932 11.2163 32.7932C11.8411 32.8026 12.4637 32.7185 13.0636 32.5438V30.5554H10.5553V28.0894H16.0666V34.0982C15.8991 34.2024 14.3038 35.6116 10.8641 35.6116Z" fill="white"/>
|
||||
<path d="M49.6399 35.0103H46.2608L44.5825 28.677L43.0493 35.0103H39.7969L36.8545 24.7332H40.004L41.6203 31.3634L43.3198 24.7332H46.117L47.8164 31.3634L49.3694 24.7332H52.3949L49.6399 35.0103Z" fill="white"/>
|
||||
<path d="M24.9367 27.1358C24.4084 27.1239 23.8859 27.2478 23.4192 27.4957C22.9525 27.7436 22.5573 28.1072 22.2714 28.5516V35.0512H18.9385V24.7186H21.6882V26.0935C21.7502 25.9906 23.0076 24.4072 25.1333 24.4072C25.1333 24.4072 25.2731 24.4072 25.3536 24.4178C25.4341 24.4283 25.5502 24.4455 25.5502 24.4455L24.9367 27.1358Z" fill="white"/>
|
||||
<path d="M32.756 35.0983V34.2235C31.9437 34.9231 30.9108 35.3141 29.8387 35.3279C27.7553 35.3279 26.4834 33.9319 26.4834 31.9514C26.4834 28.7056 31.0896 28.4245 32.1742 28.4245H32.4024C32.4024 28.0907 32.4882 27.4666 32.1517 27.2001C31.9683 27.0536 31.653 26.8663 30.922 26.8663C30.1942 26.8789 29.4736 27.0127 28.7898 27.2621C28.5971 27.3307 28.4335 27.3941 28.3095 27.4521L27.2869 25.4334C27.4575 25.3299 27.6337 25.236 27.8147 25.1523C28.8438 24.6882 29.9621 24.4549 31.0909 24.4688C32.6742 24.4688 33.8617 24.8647 34.6745 25.6775C35.5717 26.5734 35.5084 27.782 35.5084 29.0539V35.0983H32.756ZM32.4433 30.2638C31.6517 30.2638 30.1924 30.2216 29.5881 30.8259C29.4725 30.9398 29.3815 31.0762 29.3206 31.2267C29.2598 31.3772 29.2305 31.5385 29.2344 31.7007C29.2344 32.7009 29.9852 32.9516 30.5262 32.9516C31.2098 32.9575 31.8788 32.754 32.4433 32.3684V30.2638Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3697_1346">
|
||||
<rect width="57" height="57" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,16 @@
|
||||
<svg width="220" height="52" viewBox="0 0 220 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_3444_7124)">
|
||||
<path d="M99.7811 33.3072C102.962 33.3072 104.933 30.8431 104.933 27.828C104.933 24.8136 102.962 22.3489 99.7811 22.3489C96.6005 22.3489 94.6288 24.813 94.6288 27.828C94.6288 30.8437 96.6005 33.3072 99.7811 33.3072ZM99.7811 20.7849C103.78 20.7849 106.622 23.7418 106.622 27.828C106.622 31.9162 103.78 34.8731 99.7805 34.8731C95.7814 34.8731 92.9355 31.9111 92.9355 27.8255C92.9355 23.7399 95.7752 20.7779 99.7743 20.7779M116.98 33.3027C120.16 33.3027 122.132 30.8386 122.132 27.8191C122.132 24.806 120.16 22.338 116.98 22.338C113.911 22.338 111.542 24.8022 111.542 27.8172C111.542 30.8341 113.904 33.2976 116.974 33.2976L116.98 33.3027ZM110.024 21.1296H111.712V23.4775H111.768C112.81 21.6218 115.035 20.7817 116.976 20.7817C120.973 20.7817 123.816 23.7386 123.816 27.8248C123.816 31.9143 120.971 34.8712 116.974 34.8712C115.03 34.8712 112.808 34.0285 111.766 32.1734H111.71V41.1317H110.018V21.1315M137.78 26.6962C137.78 24.3183 135.781 22.347 133.276 22.347C129.587 22.347 128.546 25.9985 128.546 26.6943L137.78 26.6962ZM139.076 32.0011C137.752 34.0298 135.753 34.8712 133.446 34.8712C129.478 34.8712 126.857 31.9423 126.857 27.7961C126.857 23.7954 129.56 20.7817 133.361 20.7817C137.36 20.7817 139.468 23.9416 139.468 27.0441V28.2596H128.555C128.555 29.7087 129.541 33.3027 133.481 33.3027C135.198 33.3027 137 32.3771 137.846 30.9216L139.085 31.994M143.254 24.896C143.254 23.9097 143.111 21.8235 143.111 21.1296H144.801C144.832 22.1127 144.863 23.2152 144.913 23.4763H145C145.675 21.9952 147.337 20.7785 149.451 20.7785C153.506 20.7785 154.405 23.6193 154.405 26.5475V34.5207H152.719V26.6387C152.719 24.4638 152.13 22.3463 149.457 22.3463C146.953 22.3463 144.955 24.1446 144.955 27.8255V34.522H143.267V24.896M165.791 24.4619C165.144 23.5337 164.301 23.0402 163.144 23.0402C162.245 23.0402 161.175 23.4769 161.175 24.5213C161.175 27.0128 168.466 24.9847 168.466 30.4045C168.466 33.7049 165.397 34.8667 162.638 34.8667C160.554 34.8667 158.753 34.3113 157.374 32.7218L159.624 30.5449C160.499 31.528 161.4 32.2558 162.836 32.2558C163.822 32.2558 165.089 31.7617 165.089 30.6598C165.089 27.7897 157.797 30.0534 157.797 24.746C157.797 21.6435 160.501 20.2518 163.229 20.2518C165.033 20.2518 166.947 20.8328 168.045 22.3687L165.791 24.4562M169.507 23.5561V20.6004H172.295V16.5723H175.674V20.6004H179.387V23.5573H175.67V29.6429C175.67 31.0346 176.065 31.9047 177.557 31.9047C178.146 31.9047 178.965 31.7898 179.386 31.4706V34.4007C178.681 34.7505 177.501 34.8667 176.71 34.8667C173.136 34.8667 172.293 33.2133 172.293 29.9385V23.5548H169.504M190.281 28.2832H189.577C187.717 28.2832 184.509 28.4275 184.509 30.4281C184.509 31.7029 185.775 32.2539 186.874 32.2539C189.18 32.2539 190.277 31.0065 190.277 29.0646L190.281 28.2832ZM190.48 32.6018H190.393C189.436 34.1658 187.861 34.8616 186.059 34.8616C183.554 34.8616 181.13 33.438 181.13 30.6867C181.13 26.1638 186.255 25.8433 189.634 25.8433H190.48V25.4667C190.48 23.7559 189.184 22.8589 187.384 22.8589C185.977 22.8589 184.681 23.4399 183.779 24.3081L182.006 22.4823C183.498 20.9183 185.608 20.2525 187.747 20.2525C193.52 20.2525 193.52 24.5442 193.52 26.5149V34.5201H190.481V32.6114M200.646 27.046L195.974 20.6074H200.084L202.788 24.7836L205.714 20.6074H209.57L204.942 27.0473L210.375 34.5246H206.265L202.744 29.5389L199.196 34.5246H195.199L200.634 27.0467" fill="#585A58"/>
|
||||
<path d="M80.5868 11.3836C80.5706 11.7368 80.4869 12.0832 80.3405 12.4031C80.1942 12.7229 79.988 13.0099 79.7338 13.2477C79.4796 13.4854 79.1824 13.6693 78.8592 13.7886C78.5359 13.908 78.193 13.9607 77.85 13.9435L16.8094 10.9623C16.117 10.9269 15.4665 10.6103 15.0004 10.0818C14.5343 9.5534 14.2908 8.85626 14.3232 8.14323L14.5774 2.56578C14.5934 2.21202 14.677 1.86498 14.8235 1.54456C14.97 1.22415 15.1765 0.936672 15.4312 0.698611C15.6859 0.46055 15.9837 0.276591 16.3075 0.157284C16.6314 0.037977 16.9749 -0.0143312 17.3185 0.00335918L78.3559 2.98838C79.0486 3.02295 79.6996 3.33908 80.1661 3.86737C80.6326 4.39566 80.8764 5.09295 80.8441 5.80616L80.5868 11.3836Z" fill="#989898"/>
|
||||
<path d="M60.5262 31.7947C60.5264 32.0069 60.4859 32.217 60.4071 32.413C60.3284 32.609 60.2128 32.7871 60.0671 32.9371C59.9214 33.0871 59.7484 33.2061 59.558 33.2872C59.3677 33.3683 59.1636 33.41 58.9576 33.4098H9.31473C8.44671 33.4098 7.74609 32.6884 7.74609 31.7947V23.8087C7.74609 23.3803 7.91136 22.9695 8.20554 22.6666C8.49971 22.3638 8.8987 22.1936 9.31473 22.1936H58.9582C59.3742 22.1936 59.7732 22.3638 60.0674 22.6666C60.3616 22.9695 60.5268 23.3803 60.5268 23.8087L60.5262 31.7947Z" fill="#595959"/>
|
||||
<path d="M75.7944 40.4324C75.8204 41.3249 75.1651 42.0698 74.325 42.0986L18.3164 43.8962C17.4776 43.9217 16.7757 43.2195 16.749 42.329L16.6046 37.5834C16.5736 36.6928 17.2308 35.9459 18.074 35.9204L74.0801 34.1202C74.9171 34.0883 75.6177 34.7905 75.6425 35.6842L75.7851 40.4273" fill="#CDCDCD"/>
|
||||
<path d="M68.2725 50.0759C68.2725 50.967 67.6122 51.6897 66.7969 51.6897H13.336C12.52 51.6897 11.8604 50.967 11.8604 50.0759V46.9063C11.8604 46.0158 12.52 45.2913 13.336 45.2913H66.7969C67.6122 45.2913 68.2725 46.0158 68.2725 46.9063V50.0759Z" fill="#2E2E2E"/>
|
||||
<path d="M69.6467 18.3477C69.6467 19.0052 68.6993 19.5396 67.5324 19.5396H2.69922C1.53235 19.5396 0.584961 19.0033 0.584961 18.3458V15.7604C0.584961 15.1029 1.53173 14.5667 2.69922 14.5667H67.5318C68.6993 14.5667 69.6461 15.1029 69.6461 15.7604V18.3458" fill="#8F8F8F"/>
|
||||
<path d="M215.733 20.6096H216.705L217.842 23.5908L218.977 20.6096H219.919V24.5337H219.305V21.2384H219.287L218.028 24.5337H217.606L216.351 21.2384H216.332V24.5337H215.728L215.733 20.6096ZM213.154 21.2384H211.951V20.6096H214.967V21.2384H213.764V24.5337H213.153V21.2384" fill="#585A58"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3444_7124">
|
||||
<rect width="219.337" height="51.6909" fill="white" transform="translate(0.583984)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,16 @@
|
||||
<svg width="211" height="50" viewBox="0 0 211 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.5" clip-path="url(#clip0_3697_1327)">
|
||||
<path d="M95.4262 32.2173C98.486 32.2173 100.383 29.8338 100.383 26.9174C100.383 24.0016 98.486 21.6174 95.4262 21.6174C92.3664 21.6174 90.4697 24.001 90.4697 26.9174C90.4697 29.8344 92.3664 32.2173 95.4262 32.2173ZM95.4262 20.1046C99.2733 20.1046 102.007 22.9648 102.007 26.9174C102.007 30.8718 99.2727 33.732 95.4256 33.732C91.5785 33.732 88.8408 30.8668 88.8408 26.9149C88.8408 22.963 91.5726 20.0978 95.4197 20.0978M111.971 32.213C115.031 32.213 116.928 29.8294 116.928 26.9087C116.928 23.9942 115.031 21.607 111.971 21.607C109.019 21.607 106.74 23.9905 106.74 26.9069C106.74 29.8251 109.013 32.208 111.965 32.208L111.971 32.213ZM105.28 20.438H106.904V22.7092H106.957C107.959 20.9141 110.101 20.1015 111.968 20.1015C115.812 20.1015 118.548 22.9617 118.548 26.9143C118.548 30.8699 115.811 33.7301 111.966 33.7301C110.096 33.7301 107.958 32.915 106.956 31.1206H106.902V39.7859H105.274V20.4399M131.981 25.8226C131.981 23.5224 130.058 21.6156 127.648 21.6156C124.099 21.6156 123.097 25.1476 123.097 25.8207L131.981 25.8226ZM133.227 30.9539C131.954 32.9163 130.03 33.7301 127.812 33.7301C123.994 33.7301 121.473 30.8971 121.473 26.8865C121.473 23.0167 124.073 20.1015 127.729 20.1015C131.576 20.1015 133.604 23.1581 133.604 26.1591V27.3348H123.107C123.107 28.7365 124.055 32.213 127.845 32.213C129.497 32.213 131.23 31.3176 132.044 29.9097L133.236 30.9471M137.246 24.0812C137.246 23.1272 137.109 21.1093 137.109 20.438H138.735C138.765 21.389 138.795 22.4554 138.842 22.7079H138.926C139.576 21.2754 141.174 20.0984 143.208 20.0984C147.109 20.0984 147.974 22.8463 147.974 25.6787V33.3911H146.352V25.767C146.352 23.6632 145.785 21.615 143.214 21.615C140.805 21.615 138.883 23.3544 138.883 26.9149V33.3924H137.259V24.0812M158.927 23.6613C158.305 22.7635 157.493 22.2862 156.38 22.2862C155.516 22.2862 154.486 22.7086 154.486 23.7188C154.486 26.1288 161.5 24.1671 161.5 29.4096C161.5 32.602 158.548 33.7258 155.894 33.7258C153.89 33.7258 152.157 33.1886 150.83 31.651L152.995 29.5454C153.836 30.4963 154.703 31.2003 156.085 31.2003C157.033 31.2003 158.251 30.7223 158.251 29.6565C158.251 26.8803 151.237 29.0699 151.237 23.9361C151.237 20.9351 153.838 19.589 156.462 19.589C158.198 19.589 160.04 20.1509 161.095 21.6366L158.927 23.6558M162.502 22.7851V19.9261H165.183V16.0298H168.434V19.9261H172.007V22.7864H168.431V28.6729C168.431 30.019 168.81 30.8607 170.246 30.8607C170.813 30.8607 171.6 30.7495 172.006 30.4408V33.275C171.327 33.6134 170.192 33.7258 169.431 33.7258C165.993 33.7258 165.182 32.1265 165.182 28.9588V22.7839H162.499M182.486 27.3576H181.809C180.019 27.3576 176.933 27.4972 176.933 29.4324C176.933 30.6655 178.151 31.1984 179.208 31.1984C181.427 31.1984 182.483 29.9918 182.483 28.1134L182.486 27.3576ZM182.677 31.535H182.594C181.673 33.0478 180.158 33.7209 178.425 33.7209C176.015 33.7209 173.683 32.3439 173.683 29.6825C173.683 25.3076 178.613 24.9976 181.864 24.9976H182.677V24.6333C182.677 22.9784 181.431 22.1108 179.7 22.1108C178.346 22.1108 177.099 22.6727 176.231 23.5125L174.526 21.7465C175.961 20.2337 177.991 19.5896 180.049 19.5896C185.602 19.5896 185.602 23.741 185.602 25.6472V33.3905H182.679V31.5442M192.457 26.1609L187.962 19.9329H191.917L194.517 23.9726L197.333 19.9329H201.043L196.59 26.1622L201.817 33.3948H197.862L194.476 28.5722L191.063 33.3948H187.217L192.445 26.1616" fill="#585A58"/>
|
||||
<path d="M76.9616 11.011C76.946 11.3526 76.8655 11.6877 76.7247 11.9971C76.5839 12.3065 76.3855 12.5841 76.141 12.8141C75.8965 13.0441 75.6106 13.2219 75.2996 13.3374C74.9887 13.4529 74.6588 13.5037 74.3288 13.4871L15.6084 10.6035C14.9423 10.5692 14.3165 10.263 13.8681 9.75181C13.4198 9.24066 13.1855 8.56632 13.2166 7.87662L13.4612 2.48161C13.4765 2.13941 13.557 1.80373 13.6979 1.4938C13.8389 1.18386 14.0376 0.905789 14.2825 0.675515C14.5275 0.445241 14.814 0.2673 15.1255 0.151895C15.4371 0.0364906 15.7676 -0.0141066 16.0981 0.00300516L74.8155 2.89039C75.4819 2.92382 76.1081 3.22961 76.5569 3.74062C77.0056 4.25163 77.2402 4.92611 77.2091 5.61599L76.9616 11.011Z" fill="#989898"/>
|
||||
<path d="M57.6636 30.7541C57.6638 30.9593 57.6248 31.1625 57.5491 31.3521C57.4733 31.5417 57.3621 31.714 57.222 31.8591C57.0818 32.0042 56.9154 32.1193 56.7323 32.1978C56.5491 32.2762 56.3528 32.3165 56.1546 32.3163H8.39867C7.56364 32.3163 6.88965 31.6186 6.88965 30.7541V23.0293C6.88965 22.615 7.04863 22.2176 7.33163 21.9246C7.61462 21.6316 7.99845 21.467 8.39867 21.467H56.1552C56.5554 21.467 56.9392 21.6316 57.2222 21.9246C57.5052 22.2176 57.6642 22.615 57.6642 23.0293L57.6636 30.7541Z" fill="#595959"/>
|
||||
<path d="M72.3522 39.1092C72.3773 39.9724 71.7468 40.6931 70.9386 40.7208L17.0589 42.4597C16.2519 42.4844 15.5768 41.8052 15.5511 40.9438L15.4121 36.3533C15.3823 35.4919 16.0146 34.7695 16.8257 34.7448L70.703 33.0035C71.5082 32.9726 72.1822 33.6518 72.2061 34.5163L72.3433 39.1043" fill="#CDCDCD"/>
|
||||
<path d="M65.1146 48.4372C65.1146 49.2992 64.4794 49.9982 63.6951 49.9982H12.2662C11.4813 49.9982 10.8467 49.2992 10.8467 48.4372V45.3713C10.8467 44.5099 11.4813 43.8091 12.2662 43.8091H63.6951C64.4794 43.8091 65.1146 44.5099 65.1146 45.3713V48.4372Z" fill="#2E2E2E"/>
|
||||
<path d="M66.4377 17.7472C66.4377 18.3833 65.5263 18.9001 64.4038 18.9001H2.03487C0.912352 18.9001 0.000976562 18.3814 0.000976562 17.7454V15.2445C0.000976562 14.6085 0.911755 14.0898 2.03487 14.0898H64.4032C65.5263 14.0898 66.4371 14.6085 66.4371 15.2445V17.7454" fill="#8F8F8F"/>
|
||||
<path d="M206.972 19.9351H207.908L209.001 22.8187L210.092 19.9351H210.999V23.7308H210.408V20.5433H210.391L209.18 23.7308H208.774L207.566 20.5433H207.549V23.7308H206.968L206.972 19.9351ZM204.491 20.5433H203.334V19.9351H206.235V20.5433H205.078V23.7308H204.49V20.5433" fill="#585A58"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3697_1327">
|
||||
<rect width="211" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="144" height="38" viewBox="0 0 144 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_3444_7133)">
|
||||
<path d="M135.067 7.17505H128.042L137.023 17.939L128.042 28.7029H135.067L143.479 17.939L135.067 7.17505Z" fill="#595959"/>
|
||||
<path d="M104.388 7.1748H111.417L102.439 17.9387L111.417 28.7026H104.388L95.9795 17.9387L104.388 7.1748Z" fill="#595959"/>
|
||||
<path d="M9.39289 7.17505H16.4178L7.43583 17.939L16.4178 28.7029H9.39289L0.980469 17.939L9.39289 7.17505Z" fill="#595959"/>
|
||||
<path d="M58.0421 22.7786C57.0209 23.8786 55.6859 24.4286 54.0447 24.4286C52.965 24.4286 52.0167 24.1792 51.1924 23.6806C50.3682 23.182 49.7262 22.4927 49.2594 21.6055C48.7925 20.7182 48.5591 19.6843 48.5591 18.5111C48.5591 17.3379 48.7925 16.3479 49.2594 15.4607C49.7262 14.5734 50.3682 13.8768 51.1924 13.3855C52.0167 12.887 52.965 12.6377 54.0447 12.6377C55.1243 12.6377 56.1163 12.887 56.9479 13.3855C57.7722 13.8841 58.4142 14.5734 58.881 15.4607C59.3479 16.3479 59.5813 17.3672 59.5813 18.5111C59.5813 20.2562 59.0707 21.6787 58.0494 22.7786H58.0421ZM59.2603 9.70456C58.6621 9.06663 57.9619 8.53868 57.1448 8.12071C55.9193 7.4901 54.5187 7.1748 52.965 7.1748C50.9882 7.1748 49.2011 7.67342 47.6181 8.66332C46.0278 9.66056 44.7878 11.0098 43.8905 12.7256C42.9933 14.4414 42.541 16.3846 42.541 18.555C42.541 20.7255 42.9933 22.6247 43.8905 24.3405C44.7878 26.0564 46.0351 27.4128 47.6181 28.4101C49.2084 29.4074 50.9882 29.8986 52.965 29.8986C54.5187 29.8986 55.912 29.576 57.1448 28.9234C57.9619 28.4908 58.6621 27.9628 59.2603 27.3249V29.4367H65.1033V7.61476H59.2603V9.69723V9.70456Z" fill="#595959"/>
|
||||
<path d="M81.8138 23.8831C81.0203 24.2271 80.1321 24.4028 79.142 24.4028C78.0646 24.4028 77.1036 24.1539 76.2519 23.6563C75.4001 23.1586 74.7303 22.4706 74.2353 21.5851C73.7403 20.6996 73.4928 19.6824 73.4928 18.5407C73.4928 17.3989 73.7403 16.3524 74.2353 15.4961C74.7303 14.6399 75.4001 13.9666 76.2519 13.469C77.1036 12.9713 78.0646 12.7225 79.142 12.7225C80.0957 12.7225 80.9766 12.8908 81.7629 13.2201C82.5563 13.5494 83.2333 14.0325 83.8012 14.6618L87.5722 10.827C86.5239 9.656 85.2863 8.75584 83.8521 8.11913C82.418 7.48973 80.8455 7.17505 79.142 7.17505C76.958 7.17505 74.9779 7.68001 73.2016 8.68265C71.418 9.6926 70.0202 11.0465 69.0083 12.7664C67.9891 14.4789 67.4795 16.4182 67.4795 18.5846C67.4795 20.7508 67.9891 22.6463 69.0083 24.3588C70.0275 26.0713 71.418 27.4253 73.1797 28.4133C74.9415 29.4085 76.9289 29.8989 79.142 29.8989C80.8455 29.8989 82.418 29.5842 83.8521 28.9548C85.2863 28.3254 86.5603 27.4034 87.6669 26.2031L83.8521 22.3682C83.2844 23.0268 82.6 23.5318 81.8138 23.8758" fill="#595959"/>
|
||||
<path d="M95.9794 17.6279V0H90.042V28.7039H95.9794V18.7715" fill="#595959"/>
|
||||
<path d="M122.775 0H116.676V7.33214H111.417V12.4237H116.676V28.7039H122.775V12.4237H128.041V7.33214H122.775V0Z" fill="#595959"/>
|
||||
<path d="M33.4472 21.805C32.9803 22.7046 32.3307 23.4108 31.4916 23.9163C30.6524 24.4219 29.6966 24.6746 28.6166 24.6746C27.5367 24.6746 26.588 24.4219 25.7635 23.9163C24.939 23.4108 24.2967 22.712 23.8297 21.805C23.3628 20.9055 23.1292 19.8573 23.1292 18.6678C23.1292 17.4784 23.3628 16.4748 23.8297 15.5753C24.2967 14.6758 24.9462 13.9696 25.7854 13.4714C26.6245 12.966 27.5658 12.7132 28.6166 12.7132C29.6673 12.7132 30.6524 12.966 31.4916 13.4714C32.3307 13.977 32.9803 14.6758 33.4472 15.5753C33.9142 16.4748 34.1478 17.5081 34.1478 18.6678C34.1478 19.8275 33.9142 20.9055 33.4472 21.805ZM35.0453 8.68391C33.4545 7.68032 31.6595 7.1748 29.6527 7.1748C28.0912 7.1748 26.6902 7.50934 25.4497 8.1784C24.7127 8.57984 24.0633 9.06305 23.4942 9.6206V7.49447H17.6055V37.0746H23.4503V27.7969C24.0195 28.3544 24.6763 28.8303 25.4278 29.2243C26.6829 29.8784 28.0912 30.2129 29.6527 30.2129C31.6595 30.2129 33.4618 29.7075 35.0453 28.7039C36.636 27.6928 37.8837 26.3249 38.796 24.578C39.7081 22.8383 40.1678 20.8832 40.1678 18.7125C40.1678 16.5417 39.7081 14.5419 38.796 12.8024C37.8837 11.0628 36.6287 9.68752 35.0453 8.67648" fill="#595959"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3444_7133">
|
||||
<rect width="142.499" height="37.7204" fill="white" transform="translate(0.980469)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="147" height="39" viewBox="0 0 147 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.5" clip-path="url(#clip0_3697_1335)">
|
||||
<path d="M138.322 7.41846H131.075L140.34 18.5475L131.075 29.6766H138.322L147 18.5475L138.322 7.41846Z" fill="#595959"/>
|
||||
<path d="M106.673 7.41846H113.924L104.663 18.5475L113.924 29.6766H106.673L97.999 18.5475L106.673 7.41846Z" fill="#595959"/>
|
||||
<path d="M8.67813 7.41846H15.925L6.65926 18.5475L15.925 29.6766H8.67813L0 18.5475L8.67813 7.41846Z" fill="#595959"/>
|
||||
<path d="M58.8647 23.5516C57.8113 24.6889 56.4341 25.2575 54.741 25.2575C53.6273 25.2575 52.649 24.9998 51.7987 24.4842C50.9484 23.9686 50.2861 23.256 49.8046 22.3387C49.323 21.4213 49.0821 20.3523 49.0821 19.1393C49.0821 17.9263 49.323 16.9027 49.8046 15.9855C50.2861 15.0681 50.9484 14.3479 51.7987 13.8398C52.649 13.3244 53.6273 13.0666 54.741 13.0666C55.8548 13.0666 56.8781 13.3244 57.736 13.8398C58.5863 14.3554 59.2485 15.0681 59.7301 15.9855C60.2117 16.9027 60.4525 17.9566 60.4525 19.1393C60.4525 20.9436 59.9258 22.4144 58.8722 23.5516H58.8647ZM60.1213 10.034C59.5043 9.37446 58.782 8.8286 57.9391 8.39645C56.6749 7.74445 55.2301 7.41846 53.6273 7.41846C51.5881 7.41846 49.7444 7.93399 48.1114 8.95747C46.4709 9.98854 45.1918 11.3835 44.2662 13.1576C43.3406 14.9316 42.874 16.9407 42.874 19.1847C42.874 21.4289 43.3406 23.3925 44.2662 25.1664C45.1918 26.9406 46.4785 28.3431 48.1114 29.3742C49.752 30.4053 51.5881 30.9132 53.6273 30.9132C55.2301 30.9132 56.6674 30.5796 57.9391 29.9048C58.782 29.4576 59.5043 28.9117 60.1213 28.2521V30.4356H66.149V7.87334H60.1213V10.0264V10.034Z" fill="#595959"/>
|
||||
<path d="M83.3857 24.6933C82.5671 25.0489 81.6508 25.2306 80.6295 25.2306C79.518 25.2306 78.5268 24.9733 77.6481 24.4588C76.7694 23.9442 76.0785 23.2329 75.5678 22.3173C75.0572 21.4018 74.8019 20.3501 74.8019 19.1696C74.8019 17.9892 75.0572 16.9071 75.5678 16.0218C76.0785 15.1365 76.7694 14.4404 77.6481 13.9259C78.5268 13.4113 79.518 13.1541 80.6295 13.1541C81.6134 13.1541 82.5221 13.3281 83.3331 13.6686C84.1516 14.0091 84.85 14.5085 85.4359 15.1592L89.326 11.1943C88.2446 9.98358 86.9679 9.05287 85.4884 8.39456C84.009 7.74382 82.3868 7.41846 80.6295 7.41846C78.3766 7.41846 76.3339 7.94055 74.5015 8.9772C72.6616 10.0214 71.2196 11.4213 70.1757 13.1995C69.1244 14.9701 68.5986 16.9752 68.5986 19.215C68.5986 21.4548 69.1244 23.4146 70.1757 25.1852C71.2271 26.9558 72.6616 28.3556 74.4789 29.3772C76.2963 30.4062 78.3465 30.9132 80.6295 30.9132C82.3868 30.9132 84.009 30.5878 85.4884 29.937C86.9679 29.2864 88.2821 28.333 89.4237 27.092L85.4884 23.127C84.9027 23.808 84.1967 24.3301 83.3857 24.6857" fill="#595959"/>
|
||||
<path d="M97.9999 18.2257V-0.000244141H91.875V29.6774H97.9999V19.408" fill="#595959"/>
|
||||
<path d="M125.641 -0.000244141H119.35V7.58064H113.925V12.845H119.35V29.6774H125.641V12.845H131.074V7.58064H125.641V-0.000244141Z" fill="#595959"/>
|
||||
<path d="M33.4924 22.545C33.0108 23.4751 32.3407 24.2053 31.4751 24.7279C30.6095 25.2506 29.6234 25.5119 28.5093 25.5119C27.3953 25.5119 26.4166 25.2506 25.5661 24.7279C24.7155 24.2053 24.053 23.4828 23.5712 22.545C23.0896 21.6149 22.8486 20.5312 22.8486 19.3014C22.8486 18.0716 23.0896 17.0339 23.5712 16.104C24.053 15.1739 24.7229 14.4437 25.5887 13.9287C26.4543 13.4061 27.4253 13.1448 28.5093 13.1448C29.5932 13.1448 30.6095 13.4061 31.4751 13.9287C32.3407 14.4514 33.0108 15.1739 33.4924 16.104C33.9742 17.0339 34.2152 18.1023 34.2152 19.3014C34.2152 20.5004 33.9742 21.6149 33.4924 22.545ZM35.141 8.97876C33.5 7.94112 31.6483 7.41846 29.5782 7.41846C27.9673 7.41846 26.5221 7.76434 25.2424 8.4561C24.4821 8.87116 23.8122 9.37076 23.2251 9.94723V7.74896H17.1504V38.3326H23.1798V28.7401C23.7671 29.3166 24.4445 29.8086 25.2198 30.2159C26.5145 30.8923 27.9673 31.2381 29.5782 31.2381C31.6483 31.2381 33.5075 30.7155 35.141 29.6779C36.782 28.6325 38.0691 27.2182 39.0102 25.412C39.9511 23.6134 40.4253 21.5919 40.4253 19.3475C40.4253 17.1031 39.9511 15.0355 39.0102 13.237C38.0691 11.4384 36.7745 10.0164 35.141 8.97107" fill="#595959"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_3697_1335">
|
||||
<rect width="147" height="39" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 54 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="52" height="61" viewBox="0 0 52 61" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.28727 57.8913C9.98565 56.1583 9.88218 55.8738 9.88218 53.8304V24.1366C9.88218 22.7916 9.70112 22.4036 10.4771 22.4036H27.833C28.0657 22.4036 28.0657 22.4036 28.2468 22.6364L30.8334 26.2834C31.5059 27.2146 31.2731 27.4991 32.9026 27.4991C34.558 27.4991 48.7841 27.4215 49.4308 27.5509C49.5084 27.7578 49.5342 27.8095 49.5342 28.1199C49.5342 30.5254 49.6377 57.2705 49.4049 57.8395C48.6031 58.0206 45.4475 57.8913 44.387 57.8913H9.28727ZM7.58014 15.2905C6.33859 15.7561 6.62311 17.5408 8.12332 17.5667C9.54593 17.5926 20.901 17.6443 21.3665 17.515C22.5305 17.2046 22.6081 15.2388 20.8492 15.2129C18.961 15.1871 7.94226 15.1612 7.58014 15.2905ZM7.81293 10.8675C6.36445 11.2296 6.59725 13.0661 7.96812 13.1695C9.20968 13.273 15.0553 13.1954 16.8142 13.1954C17.7453 13.1954 20.5647 13.2989 21.2889 13.1437C22.4788 12.885 22.5564 10.9192 20.9786 10.8416C19.8405 10.764 8.20092 10.764 7.81293 10.8675ZM2.97605 30.4737C2.97605 30.0598 3.07952 29.9305 3.49337 29.9305H7.52841V55.3823C7.52841 58.6931 2.97605 58.719 2.97605 55.4599V30.4737ZM33.0578 25.1453C32.7474 25.1453 32.0491 24.0073 31.8939 23.6969C33.4975 23.671 47.2581 23.6193 47.7754 23.7745C47.9306 24.1366 47.8788 24.628 47.8788 25.1453H33.0578ZM6.23513 27.5767C6.13166 27.0335 6.20926 11.5659 6.20926 10.2467C6.20926 9.26383 6.23513 8.53959 6.72657 7.89295C7.08869 7.4015 7.73533 6.93592 8.56304 6.85832C9.52006 6.75486 24.16 6.83246 25.8413 6.83246C27.626 6.83246 29.8505 6.70313 31.5835 6.83246C31.5835 8.17747 31.5835 9.49662 31.5835 10.8416C31.5835 15.1612 31.1438 14.7215 35.4892 14.7215C36.7825 14.7215 38.0758 14.7215 39.3949 14.7215V21.3431H30.1609C30.0315 21.0327 29.5401 20.4119 29.3073 20.2567C28.8417 19.9463 28.0399 20.0757 27.4708 20.0757H11.7186C10.2443 20.0757 8.35611 19.8946 7.6836 21.938C7.32148 22.9985 7.73533 26.2317 7.50254 27.5767H6.23513ZM33.9372 8.56546C34.377 8.90171 37.4032 12.2384 37.7136 12.3418C37.2998 12.4712 34.558 12.3936 33.9114 12.3936L33.9372 8.56546ZM10.4254 4.47868C10.3478 3.59925 11.2531 2.79741 11.9256 2.56462C12.5981 2.30597 14.2793 2.40943 15.107 2.40943C21.8838 2.40943 28.6348 2.40943 35.4116 2.40943C38.8 2.40943 42.3436 1.65933 43.3782 4.63388C43.6886 5.48744 43.5593 6.83246 43.5593 7.81535C43.5593 12.316 43.5593 16.8166 43.5593 21.3431H41.7228C41.7228 19.3256 41.7228 17.3339 41.7228 15.3164C41.7228 14.3076 41.9039 13.2989 41.3348 12.6781C40.8434 12.1608 40.3519 11.7211 39.8346 11.1779C37.8171 9.16037 35.8772 7.14285 33.8597 5.09946C33.0578 4.29762 32.8768 4.47868 31.4283 4.47868H10.4254ZM3.82962 27.5767C2.30355 27.6543 1.76037 27.8354 1.11372 28.7407C0.441218 29.6977 0.622277 30.8617 0.622277 32.1549V55.3047C0.622277 56.6239 0.880934 57.4257 1.52758 58.331C2.07075 59.0811 2.74326 59.6243 3.70029 59.9605C5.01944 60.452 9.4166 60.2451 11.1496 60.2451C22.7374 60.2451 34.3252 60.2451 45.913 60.2451C48.1116 60.2451 50.9569 60.8141 51.7328 58.331C51.9656 57.5809 51.8621 55.5634 51.8621 54.6581V31.4824C51.8621 29.4649 52.4312 26.1282 50.2326 25.404C50.2326 24.8091 50.2843 23.9297 50.1292 23.3865C49.4308 20.7223 46.5597 21.4983 45.8872 21.2914C45.8872 16.0665 45.7837 10.8158 45.7061 5.61677C45.6803 4.19416 45.6544 3.36646 44.9819 2.3577C44.4904 1.58173 43.8179 0.960952 42.7833 0.572968C41.4383 0.0815199 36.9635 0.26258 35.1788 0.236714C29.9281 0.184983 24.6515 0.184983 19.3749 0.133251C18.0299 0.133251 12.4946 0.00392295 11.5893 0.184983C9.31314 0.624699 8.25265 2.33183 8.01986 4.45282C6.80417 4.7632 6.41619 4.73734 5.53675 5.43571C4.99357 5.87543 4.45039 6.52207 4.11414 7.4015C3.64856 8.66892 3.85548 12.3936 3.85548 13.9972C3.85548 15.0319 3.90722 26.8525 3.82962 27.5767Z" fill="#757575"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="52" height="61" viewBox="0 0 52 61" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6811 13.3251H48.6487L48.6919 57.8224H10.6378L10.6811 13.3251ZM35.8919 47.1413C35.4162 46.8819 33.5135 44.59 32.8649 44.3738C32.3027 44.1576 31.7838 44.4603 31.5243 44.763C30.6595 45.8008 31.9568 46.7089 32.3892 47.1413C33.0811 47.7468 33.6 48.3089 34.2919 49.0008C34.7676 49.5197 35.6757 50.6441 36.7135 49.6927C37.3622 49.1738 38.0973 48.4819 38.6162 47.8765C39.9135 46.4927 41.2108 45.4116 42.4649 44.1143L46.2703 40.3954C47.3514 39.444 46.6595 38.2332 45.7946 38.1035C44.973 37.9738 44.4108 38.8386 43.5892 39.6603C42.8973 40.2657 42.2487 40.8711 41.6433 41.5197C40.9514 42.2116 40.4325 42.7738 39.7406 43.3792C39.1352 43.9846 38.3568 44.6332 37.7946 45.2819C37.4054 45.7143 36.2811 46.9251 35.8919 47.1413ZM39.7838 40.6981C40.4757 38.8386 36.9298 38.4927 35.5027 38.5359C33.6 38.5359 31.7838 39.2711 30.573 40.1792C27.8054 42.2981 26.2919 45.844 27.4162 49.4765C29.5784 56.7414 39.6108 57.7359 43.2865 51.2927C43.8487 50.3413 45.146 47.1413 44.0217 46.1468C43.3298 45.5413 42.1622 45.9305 42.0325 46.8386C41.946 47.3576 41.9892 47.79 41.8595 48.3522C41.0379 51.9846 36.8865 54.4927 32.7352 52.417C29.9243 50.99 28.1946 46.8819 30.6162 43.5089C31.4379 42.4278 32.8216 41.3035 34.7244 41.0008C37.2325 40.6549 38.0541 41.6927 38.919 41.4765C39.3946 41.39 39.6541 41.0873 39.7838 40.6981ZM6.35676 5.54132C5.57838 5.71429 5.10271 6.57915 5.57838 7.35753C6.01082 8.09267 7.00541 7.9197 8.04325 7.9197C11.4162 7.9197 49.5568 8.04943 50.2054 7.9197C50.9406 7.74672 51.4595 6.83861 50.9406 6.01699C50.4217 5.3251 49.5136 5.49807 48.4757 5.49807H12.2811C11.1568 5.49807 7.13514 5.36834 6.35676 5.54132ZM8.17298 57.8657C5.70811 57.9954 4.4973 57.6495 3.32973 56.2657C2.11892 54.7954 2.42162 52.8495 2.42162 50.6873V11.8548C3.15676 12.3305 3.80541 12.8062 4.84325 13.0656C6.0973 13.4116 7.00541 13.1954 8.21622 13.3251L8.17298 57.8657ZM51.0271 1.82239C51.4163 1.00077 50.8541 0.30888 50.2487 0.17915C49.7298 0.04942 10.6378 0.135907 7.78379 0.135907C5.88109 0.135907 5.10271 0.135907 3.54595 0.871042C2.50811 1.38996 1.51351 2.34131 0.951352 3.29267C0.172973 4.67645 0 5.49807 0 7.31429V52.3305C0 54.0603 0 55.2711 0.691892 56.6549C1.9027 59.0765 4.15135 60.2873 7.00541 60.2873H49.5568C50.3784 60.2873 50.9406 60.0711 51.1136 59.3792C51.2433 58.7738 51.1568 55.3576 51.1568 54.4495V14.4494C51.1568 10.2548 51.7622 10.8602 44.8 10.8602H9.77298C8.3892 10.8602 6.27028 11.0332 5.05946 10.6008C0.994595 9.04402 1.72973 2.55753 6.78919 2.55753H49.2541C50.2054 2.55753 50.7244 2.51429 51.0271 1.82239Z" fill="#757575"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="50" height="60" viewBox="0 0 50 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.3934 13.0203C28.3934 15.7688 28.4043 18.5064 28.3934 21.2549C28.3934 23.0908 29.7079 23.1668 30.4901 22.5368L32.8584 20.7334C34.5096 21.7546 35.5091 23.3733 36.6823 22.7432C37.1603 22.4824 37.2798 21.9936 37.2798 21.2549C37.2798 18.5064 37.2798 15.7688 37.2798 13.0203C41.3971 13.0203 40.9517 14.3674 40.9517 18.4086V54.6494C40.9517 58.0714 37.5731 57.3327 34.5857 57.3327H11.946C10.2187 57.3327 9.25186 57.311 8.57832 56.0834C8.04601 55.1057 8.30673 48.9678 8.30673 47.3383C8.30673 36.8875 8.21982 26.1 8.30673 15.6601C8.30673 14.9105 8.4045 14.4869 8.81732 13.9654C9.95799 12.4988 12.1524 13.0203 14.6836 13.0203C19.2572 13.0203 23.8199 13.0203 28.3934 13.0203ZM16.2045 50.543C15.216 50.782 14.2382 52.9221 17.3235 52.9113C19.2137 52.9004 32.4564 53.009 33.1082 52.8569C33.7709 52.694 34.2163 52.0422 33.8795 51.184C33.5971 50.4561 32.8801 50.4995 31.9458 50.4995C30.1425 50.5104 16.7368 50.4126 16.2045 50.543ZM17.7472 39.9293H31.5004C31.696 40.0923 31.5765 39.7555 31.6634 40.2226C31.7503 40.7115 31.6525 45.4263 31.6416 45.4914L17.6711 45.4697C17.519 44.9374 17.6059 42.1672 17.6059 41.2438C17.6059 40.9396 17.4647 40.1031 17.7472 39.9293ZM16.2697 37.5828C14.9987 37.8761 15.2703 38.8647 15.2703 40.2335C15.2703 41.2981 15.0965 46.7625 15.4875 47.3491C15.9873 48.0987 17.519 47.8597 18.6488 47.8597C20.4413 47.8597 32.4564 47.9792 33.13 47.8162C34.2054 47.5555 33.9882 46.1976 33.9882 45.1004C33.9882 37.0287 34.8247 37.5393 30.6205 37.5393C28.7845 37.5393 17.0193 37.409 16.2697 37.5828ZM30.7726 13.0203H34.8898L34.879 19.2234C34.2598 18.9844 33.6079 18.0067 32.8584 17.9958C32.0653 17.9958 31.4896 18.8757 30.7834 19.1908L30.7726 13.0203ZM43.3526 51.4555C43.2005 48.6527 43.3417 45.4154 43.3417 42.5692C43.3417 33.6176 43.4503 24.3401 43.3417 15.4646C43.3091 12.8791 41.5058 10.9562 39.1918 10.6629C38.1489 10.5217 12.8368 10.6303 12.1416 10.6303C12.5761 9.05509 14.0753 9.04422 15.8895 8.91386L41.2776 7.21915C42.7877 7.11051 44.276 7.33865 44.5367 9.17459C44.7648 10.7281 44.7757 12.7052 44.8952 14.3348C45.6339 24.4596 46.1879 34.6713 46.9158 44.7962C47.1548 48.2399 48.2629 51.8575 43.3526 51.4555ZM36.5194 5.12248C30.4575 5.6548 24.2218 5.95897 18.1382 6.36093C14.8249 6.5782 12.0981 6.30661 10.512 8.55536C10.197 9.00077 9.9254 9.55481 9.75158 10.2284C9.53431 11.0431 9.05632 10.815 8.32846 11.2387C7.43765 11.7384 6.52511 12.7487 6.14488 13.922C5.68862 15.3342 5.91675 21.6242 5.91675 23.5797V43.0689C5.91675 47.0015 6.29697 46.9254 5.04767 46.8494C3.6354 46.7625 2.63596 45.8499 2.62509 44.3942C2.5925 41.385 2.86409 37.9956 2.97273 34.9538L4.02649 6.63252C4.09167 4.8183 4.00476 3.63417 5.26494 2.89545C6.24266 2.31968 8.43709 2.62386 9.70813 2.67818L33.1625 3.55813C33.9013 3.59072 34.7269 3.54727 35.3461 3.82972C35.9002 4.07958 36.389 4.50326 36.5194 5.12248ZM5.91675 49.3046C5.91675 50.9667 5.73207 54.4647 6.01452 55.9205C6.36216 57.6804 7.62233 58.9731 9.14323 59.4728C10.7402 60.0052 19.8873 59.7336 22.299 59.7336C26.7639 59.7336 31.2288 59.7336 35.6938 59.7336C38.0186 59.7336 39.7893 60.016 41.4514 58.7667C43.9501 56.8982 43.1244 54.1932 43.4286 53.9324C43.8631 53.5413 47.3938 54.3887 48.9907 51.2817C49.9902 49.348 49.4253 46.3497 49.2949 43.9923C48.7626 33.9652 47.937 23.1668 47.2091 13.1181C46.9918 10.2935 47.2743 8.20773 45.7317 6.3392C43.8305 4.0144 40.7996 5.01385 39.0506 4.92694C38.5835 4.06872 38.6595 3.71022 37.9968 2.91718C37.584 2.42832 37.0082 1.95032 36.2587 1.61355C34.9876 1.03778 32.1957 1.12469 30.6205 1.07038L6.97051 0.179564C4.83039 0.0926553 3.73318 0.842241 2.73373 1.99378C1.62565 3.26481 1.71255 5.12248 1.63651 7.04533L0.300292 42.6126C0.213384 44.7853 0.20252 46.2736 1.40837 47.6207C3.09223 49.4675 4.55881 49.0656 5.91675 49.3046Z" fill="#757575"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,88 @@
|
||||
<svg width="283" height="256" viewBox="0 0 283 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_3886_1198)">
|
||||
<rect x="23.9839" y="2" width="232.989" height="187.352" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<path d="M23.9839 6.00325C23.9839 3.79232 25.7762 2 27.9871 2H252.97C255.181 2 256.973 3.79232 256.973 6.00325V14.8104H23.9839V6.00325Z" fill="#0055D6"/>
|
||||
<rect x="42.7993" y="31.2236" width="46.4377" height="60.0488" rx="3.60293" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="42.7993" y="95.2753" width="46.4377" height="1.6013" rx="0.80065" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="42.7993" y="99.2787" width="20.0163" height="1.6013" rx="0.80065" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="42.3989" y="110.888" width="47.2384" height="60.8494" rx="4.00325" fill="#DFE8F7"/>
|
||||
<rect x="42.3989" y="174.94" width="47.2384" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="42.3989" y="178.943" width="20.8169" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="94.875" width="47.2384" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="98.8784" width="20.8169" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="30.8232" width="47.2384" height="60.8494" rx="4.00325" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="174.94" width="47.2384" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="178.943" width="20.8169" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="114.458" y="110.888" width="47.2384" height="60.8494" rx="4.00325" fill="#DFE8F7"/>
|
||||
<rect x="186.916" y="95.2753" width="46.4377" height="1.6013" rx="0.80065" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="186.916" y="99.2787" width="20.0163" height="1.6013" rx="0.80065" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="186.916" y="31.2236" width="46.4377" height="60.0488" rx="3.60293" fill="#DFE8F7" stroke="#BDD3F5" stroke-width="0.80065"/>
|
||||
<rect x="186.516" y="174.94" width="47.2384" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="186.516" y="178.943" width="20.8169" height="2.40195" rx="1.20098" fill="#DFE8F7"/>
|
||||
<rect x="186.516" y="110.888" width="47.2384" height="60.8494" rx="4.00325" fill="#DFE8F7"/>
|
||||
<g filter="url(#filter1_d_3886_1198)">
|
||||
<rect x="5.56934" y="104.483" width="142.516" height="114.493" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<rect x="33.5918" y="135.708" width="34.854" height="44.8967" rx="4.00325" fill="#EBEBEB"/>
|
||||
<rect x="33.5918" y="182.968" width="34.854" height="1.77224" rx="0.886119" fill="#EBEBEB"/>
|
||||
<rect x="33.5918" y="185.922" width="15.3594" height="1.77224" rx="0.886119" fill="#EBEBEB"/>
|
||||
<rect x="86.0088" y="135.708" width="34.854" height="44.8967" rx="4.00325" fill="#EBEBEB"/>
|
||||
<rect x="86.0088" y="182.968" width="34.854" height="1.77224" rx="0.886119" fill="#EBEBEB"/>
|
||||
<rect x="86.0088" y="185.922" width="15.3594" height="1.77224" rx="0.886119" fill="#EBEBEB"/>
|
||||
<circle cx="76.8268" cy="212.571" r="23.2189" fill="#149959"/>
|
||||
<path d="M68.0195 210.97L75.6257 220.577L88.4361 203.764" stroke="white" stroke-width="4.8039" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g opacity="0.8">
|
||||
<g filter="url(#filter2_d_3886_1198)">
|
||||
<rect x="175.307" y="166.934" width="104.28" height="83.7753" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<rect x="204.13" y="181.346" width="68.0553" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="204.13" y="187.351" width="29.9905" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="204.13" y="202.162" width="68.0553" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="204.13" y="208.168" width="29.9905" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="204.13" y="222.979" width="68.0553" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="204.13" y="228.985" width="29.9905" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<circle cx="191.32" cy="185.349" r="5.60455" fill="#0055D6"/>
|
||||
<circle cx="191.32" cy="207.767" r="5.60455" fill="#0055D6"/>
|
||||
<circle cx="191.32" cy="228.584" r="5.60455" fill="#0055D6"/>
|
||||
<path d="M189.194 184.963L191.03 187.282L194.122 183.224" stroke="white" stroke-width="1.15956" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M189.194 207.38L191.03 209.7L194.122 205.641" stroke="white" stroke-width="1.15956" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M189.194 228.197L191.03 230.516L194.122 226.458" stroke="white" stroke-width="1.15956" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<circle cx="191.32" cy="185.349" r="5.60455" fill="#0055D6"/>
|
||||
<path d="M189.194 184.963L191.03 187.282L194.122 183.224" stroke="white" stroke-width="1.15956" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M53.7382 80.8597C54.8413 80.7877 55.6773 79.8351 55.6053 78.732C55.5333 77.6289 54.5807 76.793 53.4776 76.8649L53.7382 80.8597ZM3.96761 103.682L5.96695 103.778L3.96761 103.682ZM45.779 137.455C46.7435 136.914 47.0873 135.695 46.547 134.73L37.7427 119.014C37.2024 118.049 35.9826 117.705 35.0181 118.246C34.0537 118.786 33.7098 120.006 34.2501 120.97L42.0762 134.94L28.1059 142.767C27.1415 143.307 26.7976 144.527 27.3379 145.491C27.8782 146.456 29.098 146.799 30.0625 146.259L45.779 137.455ZM53.6079 78.8623C53.4776 76.8649 53.477 76.865 53.4762 76.865C53.4757 76.8651 53.4747 76.8651 53.4737 76.8652C53.4716 76.8653 53.4688 76.8655 53.4653 76.8657C53.4582 76.8662 53.4482 76.8669 53.4354 76.8678C53.4096 76.8695 53.3724 76.8722 53.3239 76.8757C53.227 76.8827 53.0854 76.8933 52.9021 76.908C52.5355 76.9373 52.0017 76.9829 51.3243 77.0485C49.9699 77.1798 48.0393 77.3913 45.7216 77.7135C41.0932 78.3567 34.8869 79.4455 28.6272 81.2289C22.3927 83.0052 15.971 85.5074 11.0008 89.0395C6.0185 92.5802 2.26708 97.3333 1.96826 103.587L5.96695 103.778C6.18537 99.207 8.89762 95.4453 13.3198 92.3026C17.7542 89.1513 23.6779 86.8016 29.7241 85.0789C35.7452 83.3635 41.755 82.3065 46.2726 81.6786C48.5278 81.3652 50.4027 81.1599 51.7104 81.0331C52.3641 80.9698 52.8756 80.9261 53.2215 80.8984C53.3944 80.8846 53.5259 80.8748 53.613 80.8685C53.6565 80.8653 53.689 80.863 53.71 80.8616C53.7205 80.8609 53.7281 80.8604 53.7328 80.86C53.7352 80.8599 53.7368 80.8598 53.7377 80.8597C53.7382 80.8597 53.7383 80.8597 53.7385 80.8597C53.7385 80.8597 53.7382 80.8597 53.6079 78.8623ZM1.96826 103.587C1.69051 109.4 4.50042 114.439 8.49385 118.611C12.4861 122.781 17.8299 126.27 23.0839 129.055C28.3561 131.85 33.6424 133.991 37.5999 135.432C39.5818 136.153 41.2377 136.702 42.4017 137.071C42.9838 137.255 43.4433 137.395 43.7595 137.489C43.9175 137.536 44.0398 137.572 44.1237 137.597C44.1657 137.609 44.198 137.618 44.2204 137.624C44.2317 137.628 44.2404 137.63 44.2466 137.632C44.2497 137.633 44.2522 137.633 44.2541 137.634C44.255 137.634 44.2559 137.635 44.2563 137.635C44.2571 137.635 44.2577 137.635 44.8008 135.708C45.3438 133.782 45.3441 133.782 45.3442 133.782C45.344 133.782 45.344 133.782 45.3436 133.782C45.3429 133.782 45.3416 133.781 45.3397 133.781C45.3358 133.78 45.3294 133.778 45.3205 133.775C45.3027 133.77 45.2752 133.762 45.238 133.752C45.1638 133.73 45.0515 133.697 44.9037 133.653C44.608 133.565 44.1704 133.432 43.6114 133.255C42.4932 132.9 40.891 132.37 38.9692 131.67C35.1194 130.269 30.016 128.199 24.959 125.518C19.8838 122.827 14.9588 119.575 11.3856 115.842C7.81347 112.111 5.76106 108.087 5.96695 103.778L1.96826 103.587Z" fill="#0055D6"/>
|
||||
<path d="M196.482 88.0611C196.256 86.9789 195.196 86.2848 194.114 86.5108C193.031 86.7367 192.337 87.7971 192.563 88.8792L196.482 88.0611ZM190.919 139.711L192.608 140.786L190.919 139.711ZM113.306 153.287C112.402 153.923 112.184 155.171 112.82 156.075L123.183 170.811C123.819 171.716 125.067 171.933 125.972 171.297C126.876 170.661 127.093 169.413 126.457 168.508L117.246 155.41L130.345 146.199C131.249 145.563 131.467 144.314 130.831 143.41C130.195 142.506 128.946 142.288 128.042 142.924L113.306 153.287ZM194.523 88.4701C192.563 88.8792 192.563 88.8789 192.563 88.8788C192.563 88.879 192.563 88.879 192.563 88.8792C192.563 88.8798 192.564 88.8808 192.564 88.8824C192.565 88.8855 192.566 88.8907 192.567 88.8979C192.57 88.9124 192.575 88.935 192.581 88.9656C192.593 89.0268 192.612 89.1197 192.636 89.2429C192.684 89.4894 192.754 89.8567 192.839 90.3323C193.011 91.2837 193.245 92.6674 193.493 94.3828C193.989 97.8166 194.54 102.565 194.759 107.827C195.202 118.485 194.256 130.738 189.231 138.637L192.608 140.786C198.35 131.76 199.205 118.391 198.759 107.66C198.533 102.228 197.965 97.3393 197.455 93.81C197.199 92.0438 196.958 90.6144 196.779 89.6231C196.69 89.1273 196.617 88.7408 196.565 88.4763C196.539 88.3441 196.519 88.2423 196.505 88.1726C196.498 88.1377 196.492 88.1108 196.488 88.0922C196.486 88.0829 196.485 88.0756 196.484 88.0704C196.483 88.0678 196.483 88.0657 196.483 88.0642C196.482 88.0634 196.482 88.0626 196.482 88.0622C196.482 88.0616 196.482 88.0611 194.523 88.4701ZM189.231 138.637C185.485 144.525 179.142 148.475 171.448 151.026C163.764 153.573 154.927 154.658 146.491 154.95C138.07 155.242 130.137 154.743 124.303 154.168C121.389 153.88 119.004 153.575 117.352 153.342C116.526 153.226 115.884 153.127 115.45 153.059C115.233 153.024 115.069 152.997 114.959 152.979C114.905 152.97 114.864 152.963 114.838 152.958C114.824 152.956 114.815 152.955 114.809 152.953C114.805 152.953 114.803 152.953 114.802 152.952C114.801 152.952 114.801 152.952 114.801 152.952C114.801 152.952 114.801 152.952 114.458 154.924C114.114 156.896 114.115 156.896 114.116 156.896C114.116 156.896 114.117 156.897 114.118 156.897C114.121 156.897 114.124 156.898 114.129 156.899C114.137 156.9 114.149 156.902 114.165 156.905C114.196 156.91 114.242 156.918 114.302 156.928C114.421 156.948 114.596 156.976 114.823 157.012C115.278 157.085 115.943 157.186 116.793 157.306C118.493 157.546 120.933 157.858 123.91 158.151C129.859 158.738 137.978 159.251 146.63 158.951C155.267 158.652 164.523 157.539 172.708 154.826C180.883 152.115 188.183 147.742 192.608 140.786L189.231 138.637Z" fill="#0055D6"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_3886_1198" x="20.7813" y="0.3987" width="239.394" height="193.757" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1198"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1198" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_3886_1198" x="2.36674" y="102.882" width="148.921" height="120.898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1198"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1198" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_3886_1198" x="172.105" y="165.333" width="110.685" height="90.1806" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1198"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1198" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,79 @@
|
||||
<svg width="308" height="267" viewBox="0 0 308 267" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_3886_1262)">
|
||||
<rect x="20.0132" y="2" width="232.989" height="187.352" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<path d="M20.0132 6.00325C20.0132 3.79232 21.8055 2 24.0164 2H248.999C251.21 2 253.002 3.79232 253.002 6.00325V14.8104H20.0132V6.00325Z" fill="#0055D6"/>
|
||||
<circle cx="46.4346" cy="34.0259" r="5.60455" fill="#0055D6"/>
|
||||
<path d="M44.3091 33.6402L46.1451 35.9593L49.2372 31.9009" stroke="white" stroke-width="1.15956" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<rect x="57.644" y="28.4214" width="179.346" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="57.644" y="34.4268" width="79.0337" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="168.535" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="174.94" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="144.516" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="150.921" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="120.496" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="126.901" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="156.525" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="162.931" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="132.506" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="138.912" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="108.486" width="202.564" height="3.60275" rx="1.80137" fill="#EBEBEB"/>
|
||||
<rect x="34.4248" y="114.892" width="202.564" height="3.2026" rx="1.6013" fill="#EBEBEB"/>
|
||||
<g opacity="0.8" filter="url(#filter1_d_3886_1262)">
|
||||
<rect x="4" y="65.251" width="118.496" height="71.2579" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<path d="M84.0159 97.9789C87.8692 100.112 87.8692 105.652 84.0159 107.785L57.3561 122.545C53.6206 124.613 49.037 121.911 49.037 117.642L49.037 88.1226C49.037 83.8529 53.6206 81.1513 57.3561 83.2194L84.0159 97.9789Z" fill="#97C4D2"/>
|
||||
<g filter="url(#filter2_d_3886_1262)">
|
||||
<rect x="164.931" y="162.931" width="109.487" height="81.6663" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.033 239.915C269.699 239.915 271.331 236.99 269.93 234.721L239.387 185.24C238.057 183.084 234.922 183.084 233.591 185.24L212.548 219.33C211.218 221.486 208.083 221.486 206.753 219.33L196.05 201.992C194.72 199.837 191.585 199.837 190.255 201.992L170.024 234.767C168.623 237.036 170.255 239.961 172.922 239.961H219.46C219.472 239.961 219.48 239.948 219.473 239.938C219.467 239.928 219.474 239.915 219.486 239.915H267.033Z" fill="#DFE8F6"/>
|
||||
<circle cx="209.354" cy="192.097" r="8.5256" fill="#DFE8F6"/>
|
||||
<g filter="url(#filter3_d_3886_1262)">
|
||||
<rect x="130.503" y="208.568" width="70.8443" height="52.8429" rx="4.00325" fill="white"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M194.414 258.381C197.081 258.381 198.713 255.456 197.312 253.187L179.704 224.66C178.373 222.505 175.238 222.505 173.908 224.66L162.337 243.405C161.007 245.56 157.872 245.56 156.542 243.405L151.662 235.5C150.332 233.345 147.197 233.345 145.867 235.5L134.931 253.217C133.53 255.486 135.162 258.411 137.828 258.411H165.787C165.795 258.411 165.8 258.403 165.796 258.396C165.792 258.39 165.796 258.381 165.804 258.381H194.414Z" fill="#DFE8F6"/>
|
||||
<circle cx="159.247" cy="227.44" r="5.51657" fill="#DFE8F6"/>
|
||||
<path d="M244.013 209.78C242.914 209.659 241.926 210.453 241.805 211.552C241.685 212.65 242.478 213.639 243.577 213.759L244.013 209.78ZM305.246 168.046L307.243 168.185L305.246 168.046ZM201.501 86.7199C200.593 87.3499 200.367 88.597 200.997 89.5054L211.264 104.308C211.894 105.216 213.142 105.442 214.05 104.812C214.958 104.182 215.184 102.934 214.554 102.026L205.427 88.8685L218.585 79.7419C219.493 79.1119 219.719 77.8647 219.089 76.9564C218.459 76.0481 217.212 75.8225 216.303 76.4525L201.501 86.7199ZM243.795 211.77C243.577 213.759 243.578 213.759 243.579 213.76C243.58 213.76 243.582 213.76 243.583 213.76C243.586 213.76 243.59 213.761 243.594 213.761C243.604 213.762 243.617 213.763 243.633 213.765C243.665 213.768 243.712 213.773 243.771 213.779C243.89 213.79 244.063 213.806 244.286 213.824C244.732 213.86 245.378 213.905 246.197 213.944C247.835 214.022 250.168 214.076 252.975 213.98C258.577 213.79 266.122 213.003 273.811 210.597C281.5 208.19 289.418 204.137 295.648 197.358C301.903 190.552 306.343 181.121 307.243 168.185L303.249 167.907C302.407 180.01 298.294 188.563 292.7 194.65C287.081 200.763 279.854 204.511 272.616 206.776C265.378 209.041 258.214 209.796 252.839 209.979C250.157 210.071 247.934 210.019 246.388 209.945C245.615 209.909 245.013 209.866 244.608 209.834C244.405 209.817 244.252 209.803 244.152 209.794C244.102 209.789 244.065 209.785 244.042 209.783C244.03 209.782 244.022 209.781 244.017 209.78C244.015 209.78 244.013 209.78 244.013 209.78C244.012 209.78 244.012 209.78 244.012 209.78C244.013 209.78 244.013 209.78 243.795 211.77ZM307.243 168.185C308.34 152.427 302.165 139.385 292.464 128.78C282.796 118.212 269.582 110.004 256.375 103.76C243.15 97.5081 229.814 93.1708 219.799 90.3975C214.787 89.0098 210.597 88.0111 207.656 87.3586C206.186 87.0322 205.027 86.7923 204.233 86.6335C203.836 86.5541 203.53 86.495 203.322 86.4554C203.218 86.4357 203.138 86.4208 203.084 86.4107C203.057 86.4057 203.036 86.4019 203.022 86.3992C203.015 86.3979 203.009 86.3969 203.005 86.3962C203.003 86.3958 203.001 86.3955 203 86.3953C202.999 86.3951 202.998 86.3949 202.642 88.3646C202.285 90.3342 202.285 90.3342 202.286 90.3343C202.286 90.3344 202.287 90.3345 202.288 90.3347C202.291 90.3352 202.295 90.3359 202.301 90.337C202.312 90.3391 202.33 90.3424 202.354 90.3469C202.403 90.3559 202.476 90.3696 202.574 90.3882C202.77 90.4255 203.063 90.4822 203.448 90.559C204.216 90.7127 205.348 90.9469 206.789 91.2668C209.673 91.9066 213.795 92.8889 218.73 94.2556C228.61 96.9912 241.713 101.257 254.664 107.38C267.634 113.511 280.333 121.451 289.51 131.482C298.654 141.477 304.253 153.486 303.249 167.907L307.243 168.185Z" fill="#0055D6"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_3886_1262" x="16.8106" y="0.3987" width="239.394" height="193.757" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1262"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1262" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_3886_1262" x="0.7974" y="63.6497" width="124.901" height="77.663" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1262"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1262" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_3886_1262" x="161.728" y="161.329" width="115.892" height="88.0717" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1262"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1262" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_3886_1262" x="127.3" y="206.967" width="77.2494" height="59.248" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6013"/>
|
||||
<feGaussianBlur stdDeviation="1.6013"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1262"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1262" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,118 @@
|
||||
<svg width="274" height="237" viewBox="0 0 274 237" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_3886_1306)">
|
||||
<rect x="4" y="2" width="256.226" height="206.037" rx="4.4025" fill="white"/>
|
||||
</g>
|
||||
<path d="M4 6.4025C4 3.97106 5.97107 2 8.4025 2H255.823C258.255 2 260.226 3.97107 260.226 6.4025V16.088H4V6.4025Z" fill="#0055D6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3833 42.5034C45.3833 47.8498 49.7224 52.1889 55.0688 52.1889C60.4152 52.1889 64.7543 47.8498 64.7543 42.5034C64.7543 37.157 60.4152 32.8179 55.0688 32.8179C49.7224 32.8179 45.3833 37.157 45.3833 42.5034ZM57.9759 38.629C57.9759 40.2368 56.6781 41.5346 55.0703 41.5346C53.4625 41.5346 52.1646 40.2368 52.1646 38.629C52.1646 37.0212 53.4625 35.7233 55.0703 35.7233C56.6781 35.7233 57.9759 37.0212 57.9759 38.629ZM49.2545 46.3581C49.2836 44.4307 53.1287 43.375 55.0658 43.375C56.9932 43.375 60.8481 44.4307 60.8771 46.3581C59.6277 48.2371 57.4872 49.4769 55.0658 49.4769C52.6444 49.4769 50.5039 48.2371 49.2545 46.3581Z" fill="#DFE8F6"/>
|
||||
<rect x="70.0376" y="37.2202" width="70.44" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="70.0376" y="44.2642" width="21.132" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="94.6914" y="44.2642" width="27.2955" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3833 76.8432C45.3833 82.1896 49.7224 86.5287 55.0688 86.5287C60.4152 86.5287 64.7543 82.1896 64.7543 76.8432C64.7543 71.4968 60.4152 67.1577 55.0688 67.1577C49.7224 67.1577 45.3833 71.4968 45.3833 76.8432ZM57.9759 72.9684C57.9759 74.5762 56.6781 75.874 55.0703 75.874C53.4625 75.874 52.1646 74.5762 52.1646 72.9684C52.1646 71.3606 53.4625 70.0627 55.0703 70.0627C56.6781 70.0627 57.9759 71.3606 57.9759 72.9684ZM49.2545 80.698C49.2836 78.7706 53.1287 77.7149 55.0658 77.7149C56.9932 77.7149 60.8481 78.7706 60.8771 80.698C59.6277 82.577 57.4872 83.8167 55.0658 83.8167C52.6444 83.8167 50.5039 82.577 49.2545 80.698Z" fill="#DFE8F6"/>
|
||||
<rect x="70.0376" y="71.5601" width="70.44" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="70.0376" y="78.604" width="21.132" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="94.6914" y="78.604" width="27.2955" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3833 111.182C45.3833 116.528 49.7224 120.868 55.0688 120.868C60.4152 120.868 64.7543 116.528 64.7543 111.182C64.7543 105.836 60.4152 101.497 55.0688 101.497C49.7224 101.497 45.3833 105.836 45.3833 111.182ZM57.9759 107.308C57.9759 108.916 56.6781 110.213 55.0703 110.213C53.4625 110.213 52.1646 108.916 52.1646 107.308C52.1646 105.7 53.4625 104.402 55.0703 104.402C56.6781 104.402 57.9759 105.7 57.9759 107.308ZM49.2545 115.037C49.2836 113.11 53.1287 112.054 55.0658 112.054C56.9932 112.054 60.8481 113.11 60.8771 115.037C59.6277 116.916 57.4872 118.156 55.0658 118.156C52.6444 118.156 50.5039 116.916 49.2545 115.037Z" fill="#DFE8F6"/>
|
||||
<rect x="70.0376" y="105.899" width="70.44" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="70.0376" y="112.943" width="21.132" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="94.6914" y="112.943" width="27.2955" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3833 145.522C45.3833 150.868 49.7224 155.207 55.0688 155.207C60.4152 155.207 64.7543 150.868 64.7543 145.522C64.7543 140.176 60.4152 135.836 55.0688 135.836C49.7224 135.836 45.3833 140.176 45.3833 145.522ZM57.9759 141.647C57.9759 143.255 56.6781 144.553 55.0703 144.553C53.4625 144.553 52.1646 143.255 52.1646 141.647C52.1646 140.039 53.4625 138.742 55.0703 138.742C56.6781 138.742 57.9759 140.039 57.9759 141.647ZM49.2545 149.377C49.2836 147.449 53.1287 146.394 55.0658 146.394C56.9932 146.394 60.8481 147.449 60.8771 149.377C59.6277 151.256 57.4872 152.496 55.0658 152.496C52.6444 152.496 50.5039 151.256 49.2545 149.377Z" fill="#DFE8F6"/>
|
||||
<rect x="70.0376" y="140.239" width="70.44" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="70.0376" y="147.283" width="21.132" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="94.6914" y="147.283" width="27.2955" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3833 179.861C45.3833 185.208 49.7224 189.547 55.0688 189.547C60.4152 189.547 64.7543 185.208 64.7543 179.861C64.7543 174.515 60.4152 170.176 55.0688 170.176C49.7224 170.176 45.3833 174.515 45.3833 179.861ZM57.9759 175.987C57.9759 177.595 56.6781 178.893 55.0703 178.893C53.4625 178.893 52.1646 177.595 52.1646 175.987C52.1646 174.379 53.4625 173.081 55.0703 173.081C56.6781 173.081 57.9759 174.379 57.9759 175.987ZM49.2545 183.716C49.2836 181.789 53.1287 180.733 55.0658 180.733C56.9932 180.733 60.8481 181.789 60.8771 183.716C59.6277 185.595 57.4872 186.835 55.0658 186.835C52.6444 186.835 50.5039 185.595 49.2545 183.716Z" fill="#DFE8F6"/>
|
||||
<rect x="70.0376" y="174.578" width="70.44" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="70.0376" y="181.622" width="21.132" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<rect x="94.6914" y="181.622" width="27.2955" height="3.522" rx="1.761" fill="#ECECEC"/>
|
||||
<g opacity="0.8">
|
||||
<g filter="url(#filter1_d_3886_1306)">
|
||||
<rect x="135.195" y="59.2324" width="134.717" height="172.314" rx="4.54452" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="156.123" y="206.275" width="99.2803" height="5.04815" rx="2.52408" fill="#7498CD"/>
|
||||
<rect x="156.123" y="214.688" width="43.7506" height="5.04815" rx="2.52408" fill="#7498CD"/>
|
||||
<rect x="156.123" y="71.6567" width="99.2803" height="127.886" rx="5.64093" fill="#7498CD"/>
|
||||
<g filter="url(#filter2_d_3886_1306)">
|
||||
<rect x="212.169" y="138.11" width="34.045" height="25.3942" rx="4.17575" fill="white"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M242.823 162.049C244.13 162.049 244.931 160.614 244.244 159.502L235.842 145.891C235.19 144.833 233.652 144.833 233 145.891L227.497 154.806C226.844 155.863 225.307 155.863 224.654 154.806L222.367 151.1C221.714 150.043 220.177 150.043 219.524 151.1L214.329 159.516C213.642 160.629 214.443 162.064 215.75 162.064H229.126C229.129 162.064 229.132 162.06 229.13 162.056C229.128 162.053 229.13 162.049 229.134 162.049H242.823Z" fill="#DFE8F6"/>
|
||||
<circle cx="225.983" cy="147.18" r="2.65105" fill="#DFE8F6"/>
|
||||
<g opacity="0.8" filter="url(#filter3_d_3886_1306)">
|
||||
<rect x="168.133" y="167.467" width="28.4405" height="22.3893" rx="4.17575" fill="white"/>
|
||||
</g>
|
||||
<path d="M187.91 177.808C189.052 178.445 189.052 180.088 187.91 180.725L179.392 185.479C178.279 186.1 176.908 185.295 176.908 184.02L176.908 174.513C176.908 173.238 178.279 172.433 179.392 173.054L187.91 177.808Z" fill="#97C4D2"/>
|
||||
<g filter="url(#filter4_d_3886_1306)">
|
||||
<rect x="167.978" y="80.4639" width="78.973" height="20.3073" rx="4.17575" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.8" filter="url(#filter5_d_3886_1306)">
|
||||
<rect x="167.978" y="107.54" width="78.973" height="23.6919" rx="4.17575" fill="white"/>
|
||||
</g>
|
||||
<rect x="174.747" y="86.105" width="68.8193" height="3.44096" rx="1.72048" fill="#84AFBC"/>
|
||||
<rect x="172.49" y="112.053" width="68.8193" height="3.44096" rx="1.72048" fill="#D9D9D9"/>
|
||||
<rect x="172.49" y="117.694" width="68.8193" height="3.44096" rx="1.72048" fill="#D9D9D9"/>
|
||||
<rect x="172.49" y="124.463" width="68.8193" height="3.44096" rx="1.72048" fill="#D9D9D9"/>
|
||||
<rect x="174.747" y="92.9873" width="20.6458" height="3.44096" rx="1.72048" fill="#84AFBC"/>
|
||||
<rect x="198.834" y="92.9873" width="26.6675" height="3.44096" rx="1.72048" fill="#84AFBC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.191 102.377C132.553 102.377 127.982 107.059 127.982 112.835C127.982 113.91 128.14 114.948 128.435 115.925L114.06 126.633C112.206 124.006 109.188 122.296 105.781 122.296C100.143 122.296 95.5718 126.978 95.5718 132.754C95.5718 138.53 100.143 143.212 105.781 143.212C108.547 143.212 111.056 142.085 112.894 140.256L128.013 151.87C127.993 152.135 127.983 152.403 127.983 152.674C127.983 158.449 132.554 163.131 138.192 163.131C143.831 163.131 148.402 158.449 148.402 152.674C148.402 146.898 143.831 142.216 138.192 142.216C134.397 142.216 131.086 144.337 129.326 147.485L115.25 136.671C115.728 135.461 115.991 134.139 115.991 132.754C115.991 132.044 115.922 131.351 115.79 130.681L130.506 119.719C132.377 121.909 135.126 123.293 138.191 123.293C143.83 123.293 148.401 118.61 148.401 112.835C148.401 107.059 143.83 102.377 138.191 102.377ZM132.195 112.835C132.195 109.443 134.88 106.693 138.191 106.693C141.503 106.693 144.187 109.443 144.187 112.835C144.187 116.227 141.503 118.977 138.191 118.977C134.88 118.977 132.195 116.227 132.195 112.835ZM132.783 150.14L132.654 150.316C132.359 151.042 132.196 151.838 132.196 152.674C132.196 156.066 134.881 158.816 138.192 158.816C141.504 158.816 144.188 156.066 144.188 152.674C144.188 149.282 141.504 146.532 138.192 146.532C135.775 146.532 133.691 147.998 132.742 150.109L132.783 150.14ZM99.7852 132.754C99.7852 129.362 102.47 126.612 105.781 126.612C109.093 126.612 111.777 129.362 111.777 132.754C111.777 136.146 109.093 138.896 105.781 138.896C102.47 138.896 99.7852 136.146 99.7852 132.754Z" fill="#0055D6"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_3886_1306" x="0.477999" y="0.239" width="263.27" height="213.081" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.761"/>
|
||||
<feGaussianBlur stdDeviation="1.761"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_3886_1306" x="131.559" y="57.4146" width="141.988" height="179.585" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.81781"/>
|
||||
<feGaussianBlur stdDeviation="1.81781"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_3886_1306" x="208.829" y="136.44" width="40.7261" height="32.0752" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6703"/>
|
||||
<feGaussianBlur stdDeviation="1.6703"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_3886_1306" x="164.792" y="165.796" width="35.1216" height="29.0704" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6703"/>
|
||||
<feGaussianBlur stdDeviation="1.6703"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_3886_1306" x="164.637" y="78.7936" width="85.6541" height="26.9883" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6703"/>
|
||||
<feGaussianBlur stdDeviation="1.6703"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_3886_1306" x="164.637" y="105.87" width="85.6541" height="30.3731" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.6703"/>
|
||||
<feGaussianBlur stdDeviation="1.6703"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.528281 0 0 0 0 0.55996 0 0 0 0 0.670833 0 0 0 0.42 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3886_1306"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3886_1306" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 7.5 KiB |
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
|
After Width: | Height: | Size: 478 B |
|
After Width: | Height: | Size: 945 B |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="356.000000pt" height="356.000000pt" viewBox="0 0 356.000000 356.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,356.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M1608 3525 c-1 -2 -28 -6 -59 -9 -383 -41 -789 -245 -1064 -538 -96
|
||||
-102 -108 -116 -185 -232 -141 -209 -222 -408 -272 -661 -17 -87 -22 -148 -22
|
||||
-290 -1 -201 5 -264 34 -392 114 -503 433 -923 890 -1170 149 -81 375 -161
|
||||
519 -183 36 -6 77 -13 91 -16 47 -10 375 -13 435 -4 33 5 80 12 105 16 83 12
|
||||
240 53 333 89 274 103 562 308 732 520 22 28 43 52 46 55 4 3 36 51 73 107
|
||||
145 221 242 484 281 758 11 75 13 334 4 407 -14 104 -41 229 -66 307 -40 128
|
||||
-122 308 -175 383 -10 14 -18 31 -18 36 0 6 -4 12 -8 14 -5 2 -23 25 -42 52
|
||||
-114 167 -313 356 -508 480 -137 88 -403 202 -515 221 -17 3 -34 8 -38 11 -27
|
||||
16 -269 41 -408 42 -88 0 -161 -1 -163 -3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.64516 32.5161H2.32259C1.04168 32.5161 0 33.5578 0 34.8387V67.3548C0 68.6357 1.04168 69.6774 2.32259 69.6774H24.8539C25.747 71.1209 27.3101 72 29.0323 72C30.7545 72 32.3176 71.1209 33.2106 69.6774H60.3871C61.668 69.6774 62.7097 68.6357 62.7097 67.3548V51.0968H63.871C67.0726 51.0968 69.6774 48.492 69.6774 45.2903V25.5484C70.9583 25.5484 72 24.5067 72 23.2258V20.9032C72 19.6223 70.9583 18.5806 69.6774 18.5806V2.32258C69.6774 1.04168 68.6357 0 67.3548 0H60.3871C59.1062 0 58.0645 1.04168 58.0645 2.32258V13.4547L52.9014 8.29161L43.7098 4.84374C43.3568 4.71252 42.9875 4.64516 42.6112 4.64516C40.8867 4.64516 39.4839 6.048 39.4839 7.77252C39.4839 8.14877 39.5512 8.5169 39.6836 8.86994L43.1303 18.0627L44.5924 19.5248C44.3055 19.9115 44.129 20.3853 44.129 20.9032V23.2258C44.129 24.5067 45.1707 25.5484 46.4516 25.5484V27.871H34.2406C32.0969 27.871 30.0797 28.6955 28.5515 30.1935H20.9032V3.48387C20.9032 1.5631 19.3401 0 17.4194 0H12.7742C10.8534 0 9.29033 1.5631 9.29033 3.48387V6.06077L7.28362 6.56245C5.73097 6.95148 4.64516 8.34155 4.64516 9.94297V14.8227C4.64516 16.1501 5.38258 17.345 6.57175 17.9385L7.85497 18.5806L6.57059 19.2228C5.38258 19.8174 4.64516 21.0112 4.64516 22.3386V25.5484H6.96774V22.3386C6.96774 21.8961 7.21394 21.4978 7.60994 21.3004L9.29033 20.4596V30.1935H6.96774C5.68684 30.1935 4.64516 31.2352 4.64516 32.5161ZM17.2103 39.4839L16.4357 44.129H13.759L12.9844 39.4839H17.2103ZM18.5806 37.1613H11.6117V16.2581H18.5806V37.1613ZM6.96774 9.94297C6.96774 9.40877 7.33006 8.94542 7.848 8.81535L9.29033 8.45535V16.7017L7.60994 15.8621C7.21394 15.6646 6.96774 15.2663 6.96774 14.8239V9.94297ZM12.7742 2.32258H17.4194C18.0592 2.32258 18.5806 2.844 18.5806 3.48387V13.9355H11.6129V3.48387C11.6129 2.844 12.1343 2.32258 12.7742 2.32258ZM18.727 44.5111L19.6061 39.2354C20.3714 38.8545 20.9032 38.0717 20.9032 37.1613V32.5161H27.871V62.7097H6.96774V32.5161H9.29033V37.1613C9.29033 38.0717 9.8222 38.8545 10.5875 39.2342L11.4666 44.5099C11.6535 45.6352 12.6174 46.4516 13.7578 46.4516H13.9355V51.0968H16.2581V46.4516H16.4357C17.5761 46.4516 18.54 45.6352 18.727 44.5111ZM30.1936 62.0408C31.2828 60.977 32.7147 60.3871 34.2406 60.3871H53.4194V32.5161H55.7419V62.7097H30.1936V62.0408ZM30.1936 59.1492V31.8461C31.284 30.7835 32.7159 30.1935 34.2406 30.1935H51.0968V58.0645H34.2406C32.796 58.0645 31.4117 58.4466 30.1936 59.1492ZM46.6386 8.42284L50.1619 9.74439L44.5843 15.3221L43.2627 11.7987L46.6386 8.42284ZM55.0614 18.5806L49.8356 13.3548L52.2581 10.9324L59.9063 18.5806H55.0614ZM45.7711 17.4194L48.1935 14.9969L51.7773 18.5806H46.9324L45.7711 17.4194ZM41.8065 7.77252C41.8065 7.23252 42.3836 6.82839 42.8946 7.01884L44.2498 7.52748L42.3662 9.4111L41.8575 8.05587C41.8239 7.96529 41.8065 7.8689 41.8065 7.77252ZM62.7097 16.2581H67.3548V18.5806H63.1905L60.3871 15.7773V2.32258H67.3548V4.64516H62.7097V6.96774H67.3548V9.29032H65.0323V11.6129H67.3548V13.9355H62.7097V16.2581ZM46.4516 20.9032H69.6774V23.2258H46.4505L46.4516 20.9032ZM62.7097 48.7742V34.8387C62.7097 33.5578 61.668 32.5161 60.3871 32.5161H58.0645C58.0645 31.2352 57.0228 30.1935 55.7419 30.1935H53.4194C53.4194 28.9126 52.3777 27.871 51.0968 27.871H48.7742V25.5484H67.3548V45.2903C67.3548 47.2111 65.7917 48.7742 63.871 48.7742H62.7097ZM26.2661 67.3548H2.32259V34.8387H4.64516V62.7097C4.64516 63.9906 5.68684 65.0323 6.96774 65.0323H55.7419C57.0228 65.0323 58.0645 63.9906 58.0645 62.7097V34.8387H60.3871V67.3548H31.7985L31.3548 68.2421C30.9124 69.127 30.0228 69.6774 29.0323 69.6774C28.0417 69.6774 27.1521 69.127 26.7097 68.2421L26.2661 67.3548ZM49.0651 31.9354H32.8071V41.2258H49.0651V31.9354ZM46.7426 38.9032H35.1297V34.258H46.7426V38.9032ZM44.42 45.8709V43.5483H49.0651V45.8709H44.42ZM42.0965 43.5483H32.8062V45.8709H42.0965V43.5483ZM32.8071 48.1933H49.0651V50.5159H32.8071V48.1933ZM49.0651 52.8383H32.8071V55.1609H49.0651V52.8383ZM9.58131 52.8383H25.8394V55.1609H9.58131V52.8383ZM25.8394 57.4837H9.58131V59.8063H25.8394V57.4837ZM18.8716 48.1933H25.8394V50.5159H18.8716V48.1933ZM25.8394 43.5483H21.1942V45.8709H25.8394V43.5483Z" fill="#246CB5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.64516 32.5161H2.32259C1.04168 32.5161 0 33.5578 0 34.8387V67.3548C0 68.6357 1.04168 69.6774 2.32259 69.6774H24.8539C25.747 71.1209 27.3101 72 29.0323 72C30.7545 72 32.3176 71.1209 33.2106 69.6774H60.3871C61.668 69.6774 62.7097 68.6357 62.7097 67.3548V51.0968H63.871C67.0726 51.0968 69.6774 48.492 69.6774 45.2903V25.5484C70.9583 25.5484 72 24.5067 72 23.2258V20.9032C72 19.6223 70.9583 18.5806 69.6774 18.5806V2.32258C69.6774 1.04168 68.6357 0 67.3548 0H60.3871C59.1062 0 58.0645 1.04168 58.0645 2.32258V13.4547L52.9014 8.29161L43.7098 4.84374C43.3568 4.71252 42.9875 4.64516 42.6112 4.64516C40.8867 4.64516 39.4839 6.048 39.4839 7.77252C39.4839 8.14877 39.5512 8.5169 39.6836 8.86994L43.1303 18.0627L44.5924 19.5248C44.3055 19.9115 44.129 20.3853 44.129 20.9032V23.2258C44.129 24.5067 45.1707 25.5484 46.4516 25.5484V27.871H34.2406C32.0969 27.871 30.0797 28.6955 28.5515 30.1935H20.9032V3.48387C20.9032 1.5631 19.3401 0 17.4194 0H12.7742C10.8534 0 9.29033 1.5631 9.29033 3.48387V6.06077L7.28362 6.56245C5.73097 6.95148 4.64516 8.34155 4.64516 9.94297V14.8227C4.64516 16.1501 5.38258 17.345 6.57175 17.9385L7.85497 18.5806L6.57059 19.2228C5.38258 19.8174 4.64516 21.0112 4.64516 22.3386V25.5484H6.96774V22.3386C6.96774 21.8961 7.21394 21.4978 7.60994 21.3004L9.29033 20.4596V30.1935H6.96774C5.68684 30.1935 4.64516 31.2352 4.64516 32.5161ZM17.2103 39.4839L16.4357 44.129H13.759L12.9844 39.4839H17.2103ZM18.5806 37.1613H11.6117V16.2581H18.5806V37.1613ZM6.96774 9.94297C6.96774 9.40877 7.33006 8.94542 7.848 8.81535L9.29033 8.45535V16.7017L7.60994 15.8621C7.21394 15.6646 6.96774 15.2663 6.96774 14.8239V9.94297ZM12.7742 2.32258H17.4194C18.0592 2.32258 18.5806 2.844 18.5806 3.48387V13.9355H11.6129V3.48387C11.6129 2.844 12.1343 2.32258 12.7742 2.32258ZM18.727 44.5111L19.6061 39.2354C20.3714 38.8545 20.9032 38.0717 20.9032 37.1613V32.5161H27.871V62.7097H6.96774V32.5161H9.29033V37.1613C9.29033 38.0717 9.8222 38.8545 10.5875 39.2342L11.4666 44.5099C11.6535 45.6352 12.6174 46.4516 13.7578 46.4516H13.9355V51.0968H16.2581V46.4516H16.4357C17.5761 46.4516 18.54 45.6352 18.727 44.5111ZM30.1936 62.0408C31.2828 60.977 32.7147 60.3871 34.2406 60.3871H53.4194V32.5161H55.7419V62.7097H30.1936V62.0408ZM30.1936 59.1492V31.8461C31.284 30.7835 32.7159 30.1935 34.2406 30.1935H51.0968V58.0645H34.2406C32.796 58.0645 31.4117 58.4466 30.1936 59.1492ZM46.6386 8.42284L50.1619 9.74439L44.5843 15.3221L43.2627 11.7987L46.6386 8.42284ZM55.0614 18.5806L49.8356 13.3548L52.2581 10.9324L59.9063 18.5806H55.0614ZM45.7711 17.4194L48.1935 14.9969L51.7773 18.5806H46.9324L45.7711 17.4194ZM41.8065 7.77252C41.8065 7.23252 42.3836 6.82839 42.8946 7.01884L44.2498 7.52748L42.3662 9.4111L41.8575 8.05587C41.8239 7.96529 41.8065 7.8689 41.8065 7.77252ZM62.7097 16.2581H67.3548V18.5806H63.1905L60.3871 15.7773V2.32258H67.3548V4.64516H62.7097V6.96774H67.3548V9.29032H65.0323V11.6129H67.3548V13.9355H62.7097V16.2581ZM46.4516 20.9032H69.6774V23.2258H46.4505L46.4516 20.9032ZM62.7097 48.7742V34.8387C62.7097 33.5578 61.668 32.5161 60.3871 32.5161H58.0645C58.0645 31.2352 57.0228 30.1935 55.7419 30.1935H53.4194C53.4194 28.9126 52.3777 27.871 51.0968 27.871H48.7742V25.5484H67.3548V45.2903C67.3548 47.2111 65.7917 48.7742 63.871 48.7742H62.7097ZM26.2661 67.3548H2.32259V34.8387H4.64516V62.7097C4.64516 63.9906 5.68684 65.0323 6.96774 65.0323H55.7419C57.0228 65.0323 58.0645 63.9906 58.0645 62.7097V34.8387H60.3871V67.3548H31.7985L31.3548 68.2421C30.9124 69.127 30.0228 69.6774 29.0323 69.6774C28.0417 69.6774 27.1521 69.127 26.7097 68.2421L26.2661 67.3548ZM49.0651 31.9354H32.8071V41.2258H49.0651V31.9354ZM46.7426 38.9032H35.1297V34.258H46.7426V38.9032ZM44.42 45.8709V43.5483H49.0651V45.8709H44.42ZM42.0965 43.5483H32.8062V45.8709H42.0965V43.5483ZM32.8071 48.1933H49.0651V50.5159H32.8071V48.1933ZM49.0651 52.8383H32.8071V55.1609H49.0651V52.8383ZM9.58131 52.8383H25.8394V55.1609H9.58131V52.8383ZM25.8394 57.4837H9.58131V59.8063H25.8394V57.4837ZM18.8716 48.1933H25.8394V50.5159H18.8716V48.1933ZM25.8394 43.5483H21.1942V45.8709H25.8394V43.5483Z" fill="#9a8982"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 8.0 KiB |