RTMKit <= 1.6.8 - Reflected Cross-Site Scripting via 'themebuilder' Parameter
Description
The RTMKit plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'themebuilder' parameter in all versions up to, and including, 1.6.8 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a site administrator into performing an action such as clicking on a link.
CVSS Vector Breakdown
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:NTechnical Details
<=1.6.8What Changed in the Fix
Changes introduced in v2.0.0
Source Code
WordPress.org SVN# Exploitation Research Plan: CVE-2025-12473 (RTMKit Reflected XSS) ## 1. Vulnerability Summary **ID:** CVE-2025-12473 **Plugin:** RTMKit (slug: `rometheme-for-elementor`) **Affected Versions:** <= 1.6.8 **Vulnerability Type:** Reflected Cross-Site Scripting (XSS) **Vulnerable Parameter:** `themebu…
Show full research plan
Exploitation Research Plan: CVE-2025-12473 (RTMKit Reflected XSS)
1. Vulnerability Summary
ID: CVE-2025-12473
Plugin: RTMKit (slug: rometheme-for-elementor)
Affected Versions: <= 1.6.8
Vulnerability Type: Reflected Cross-Site Scripting (XSS)
Vulnerable Parameter: themebuilder
Description: The RTMKit plugin fails to sanitize and escape the themebuilder parameter before echoing it back into the administrative dashboard. This allows an unauthenticated attacker to craft a malicious URL that, when clicked by a logged-in administrator, executes arbitrary JavaScript in their browser context.
2. Attack Vector Analysis
- Endpoint:
/wp-admin/admin.php - Target Page: The Theme Builder management page, typically accessed via
?page=rkit-themebuilder(inferred from plugin module structure). - Vulnerable Parameter:
themebuilder(GET parameter). - Authentication Level: Requires an active Administrator session to access the page, but the payload is delivered via a Reflected GET request.
- Preconditions: An administrator must be tricked into clicking a link containing the payload.
3. Code Flow
- Entry Point: The plugin registers an admin menu and submenu pages in
RomeTheme.php.add_menu_pagewith slugromethemekit.add_submenu_pagewith slugrkit-themebuilder(registered inmodules/template/template.phporRomeTheme.php).
- Execution: When the Theme Builder page is requested, the callback (likely
RomethemeKit\Template::template_admin_pageor similar) is executed. - Data Retrieval: The code retrieves the
themebuilderparameter:$themebuilder = $_GET['themebuilder'];. - Vulnerable Sink: The value is echoed into the HTML response without using
esc_attr()oresc_html(). It is frequently used to set an "active" class or adata-attribute for tab filtering.- Example (Inferred):
echo '<div class="rkit-tab ' . $_GET['themebuilder'] . '">...';
- Example (Inferred):
4. Nonce Acquisition Strategy
Reflected XSS in a GET parameter on a viewing page (like a dashboard) typically does not require a nonce because the vulnerability occurs during the rendering of the page, not during a state-changing operation (POST/AJAX).
- Verification: The PoC agent should check if the page
/wp-admin/admin.php?page=rkit-themebuilderloads without a nonce for a logged-in admin. - If the plugin somehow requires a nonce for this specific view (unlikely for a GET-based dashboard), the agent can use
browser_navigateto the dashboard andbrowser_evalto extract any available nonces from thewindowobject or hidden inputs, although this would not be necessary for the reflected attack itself.
5. Exploitation Strategy
The goal is to demonstrate that a payload in the themebuilder parameter is reflected unescaped.
Payload Construction:
- Base payload:
"><script>alert(document.domain)</script> - To break out of an attribute context (common in RTMKit), use:
attr-value" onmouseover="alert(1)" style="display:block;width:100%;height:100%;position:fixed;top:0;left:0;z-index:9999;"or simply"><img src=x onerror=alert(1)>.
- Base payload:
Target URL:
http://[TARGET]/wp-admin/admin.php?page=rkit-themebuilder&themebuilder=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3EHTTP Request (via
http_request):- Method:
GET - URL:
{{base_url}}/wp-admin/admin.php?page=rkit-themebuilder&themebuilder=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E - Headers: Must include the
Cookieheader for the Administrator session.
- Method:
6. Test Data Setup
- Plugin Installation: Install RTMKit version 1.6.8.
- Dependency: Ensure Elementor is installed and active (as RTMKit requires it).
- User: Create an Administrator user (e.g.,
admin/password). - Session: The PoC agent must be logged in as the Administrator to access the
/wp-admin/area.
7. Expected Results
- The HTTP response body should contain the literal string:
"><img src=x onerror=alert(document.domain)>. - Specifically, it will look like:
<div class="... "><img src=x onerror=alert(document.domain)>">(or similar, depending on the exact HTML context). - The presence of the unescaped
>and<script>or<img>tags confirms the Reflected XSS.
8. Verification Steps
- Manual Inspection: Use the
http_requesttool to fetch the page and search the response body for the payload. - Automated Search:
# Search response for the reflection grep -a "onerror=alert(document.domain)" response_body.html - Behavioral Verification: Use
browser_navigateto the malicious URL and check for a dialog/console message if possible, though inspecting the raw HTML is usually sufficient for PoC.
9. Alternative Approaches
If rkit-themebuilder is not the correct slug, the agent should:
- List all registered admin pages:
wp admin-menu list --format=csv. - Look for any slugs containing
romethemekitorrkit. - Test the
themebuilderparameter against the main dashboard slug:?page=romethemekit&themebuilder=.... - If the reflection is inside a script tag, use:
';alert(1);//. - If the reflection is inside a URL, use:
javascript:alert(1).
Summary
The RTMKit plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'themebuilder' parameter in versions up to 1.6.8. This vulnerability allows unauthenticated attackers to execute arbitrary JavaScript in the context of an administrator's browser by tricking them into clicking a crafted link that lacks proper input sanitization and output escaping.
Security Fix
Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/css: admin_style.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: bootstrap.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: all.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: all.min.css @@ -1,1600 +1,1609 @@ -/*! - * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */ -:root, :host { - --fa-style-family-brands: 'Font Awesome 6 Brands'; - --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../../fonts/fa-brands-400.woff2") format("woff2"), url("../../fonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-weight: 400; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-pixiv:before { - content: "\e640"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-square-js:before { - content: "\f3b9"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-jxl:before { - content: "\e67b"; } - -.fa-dart-lang:before { - content: "\e693"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-square-reddit:before { - content: "\f1a2"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-square-font-awesome:before { - content: "\e5ad"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-brave:before { - content: "\e63c"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-square-instagram:before { - content: "\e055"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-square-hacker-news:before { - content: "\f3af"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-threads:before { - content: "\e618"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-square-snapchat:before { - content: "\f2ad"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-square-viadeo:before { - content: "\f2aa"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-opensuse:before { - content: "\e62b"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-square-dribbble:before { - content: "\f397"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-node:before { - content: "\f419"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-debian:before { - content: "\e60b"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-square-twitter:before { - content: "\f081"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-square-kickstarter:before { - content: "\f3bb"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-square-youtube:before { - content: "\f431"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-rendact:before { - content: "\f3e4"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-meta:before { - content: "\e49b"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-square-letterboxd:before { - content: "\e62e"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-shoelace:before { - content: "\e60c"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-square-steam:before { - content: "\f1b7"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-square-vimeo:before { - content: "\f194"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-square-github:before { - content: "\f092"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-square-threads:before { - content: "\e619"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-google-scholar:before { - content: "\e63b"; } - -.fa-square-gitlab:before { - content: "\e5ae"; } - -.fa-gitlab-square:before { - content: "\e5ae"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-square-odnoklassniki:before { - content: "\f264"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-square-pinterest:before { - content: "\f0d3"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-signal-messenger:before { - content: "\e663"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-mintbit:before { - content: "\e62f"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-brave-reverse:before { - content: "\e63d"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-square-google-plus:before { - content: "\f0d4"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-web-awesome:before { - content: "\e682"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-square-xing:before { - content: "\f169"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-letterboxd:before { - content: "\e62d"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-x-twitter:before { - content: "\e61b"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-square-pied-piper:before { - content: "\e01e"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-square-web-awesome-stroke:before { - content: "\e684"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-square-facebook:before { - content: "\f082"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-flutter:before { - content: "\e694"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-square-lastfm:before { - content: "\f203"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-upwork:before { - content: "\e641"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-square-upwork:before { - content: "\e67c"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-square-web-awesome:before { - content: "\e683"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-bluesky:before { - content: "\e671"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-square-behance:before { - content: "\f1b5"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-webflow:before { - content: "\e65c"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-space-awesome:before { - content: "\e5ac"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-square-git:before { - content: "\f1d2"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-square-tumblr:before { - content: "\f174"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-php:before { - content: "\f457"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-stubber:before { - content: "\e5c7"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-odysee:before { - content: "\e5c6"; } - -.fa-square-whatsapp:before { - content: "\f40c"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-square-x-twitter:before { - content: "\e61a"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-zhihu:before { - content: "\f63f"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } +/*! + * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +:root, :host { + --fa-style-family-brands: 'Font Awesome 6 Brands'; + --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; } + +@font-face { + font-family: 'Font Awesome 6 Brands'; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } + +.fab, +.fa-brands { + font-weight: 400; } + +.fa-monero { + --fa: "\f3d0"; } + +.fa-hooli { + --fa: "\f427"; } + +.fa-yelp { + --fa: "\f1e9"; } + +.fa-cc-visa { + --fa: "\f1f0"; } + +.fa-lastfm { + --fa: "\f202"; } + +.fa-shopware { + --fa: "\f5b5"; } + +.fa-creative-commons-nc { + --fa: "\f4e8"; } + +.fa-aws { + --fa: "\f375"; } + +.fa-redhat { + --fa: "\f7bc"; } + +.fa-yoast { + --fa: "\f2b1"; } + +.fa-cloudflare { + --fa: "\e07d"; } + +.fa-ups { + --fa: "\f7e0"; } + +.fa-pixiv { + --fa: "\e640"; } + +.fa-wpexplorer { + --fa: "\f2de"; } + +.fa-dyalog { + --fa: "\f399"; } + +.fa-bity { + --fa: "\f37a"; } + +.fa-stackpath { + --fa: "\f842"; } + +.fa-buysellads { + --fa: "\f20d"; } + +.fa-first-order { + --fa: "\f2b0"; } + +.fa-modx { + --fa: "\f285"; } + +.fa-guilded { + --fa: "\e07e"; } + +.fa-vnv { + --fa: "\f40b"; } + +.fa-square-js { + --fa: "\f3b9"; } + +.fa-js-square { + --fa: "\f3b9"; } + +.fa-microsoft { + --fa: "\f3ca"; } + +.fa-qq { + --fa: "\f1d6"; } + +.fa-orcid { + --fa: "\f8d2"; } + +.fa-java { + --fa: "\f4e4"; } + +.fa-invision { + --fa: "\f7b0"; } + +.fa-creative-commons-pd-alt { + --fa: "\f4ed"; } + +.fa-centercode { + --fa: "\f380"; } + +.fa-glide-g { + --fa: "\f2a6"; } + +.fa-drupal { + --fa: "\f1a9"; } + +.fa-jxl { + --fa: "\e67b"; } + +.fa-dart-lang { + --fa: "\e693"; } + +.fa-hire-a-helper { + --fa: "\f3b0"; } + +.fa-creative-commons-by { + --fa: "\f4e7"; } + +.fa-unity { + --fa: "\e049"; } + +.fa-whmcs { + --fa: "\f40d"; } + +.fa-rocketchat { + --fa: "\f3e8"; } + +.fa-vk { + --fa: "\f189"; } + +.fa-untappd { + --fa: "\f405"; } + +.fa-mailchimp { + --fa: "\f59e"; } + +.fa-css3-alt { + --fa: "\f38b"; } + +.fa-square-reddit { + --fa: "\f1a2"; } + +.fa-reddit-square { + --fa: "\f1a2"; } + +.fa-vimeo-v { + --fa: "\f27d"; } + +.fa-contao { + --fa: "\f26d"; } + +.fa-square-font-awesome { + --fa: "\e5ad"; } + +.fa-deskpro { + --fa: "\f38f"; } + +.fa-brave { + --fa: "\e63c"; } + +.fa-sistrix { + --fa: "\f3ee"; } + +.fa-square-instagram { + --fa: "\e055"; } + +.fa-instagram-square { + --fa: "\e055"; } + +.fa-battle-net { + --fa: "\f835"; } + +.fa-the-red-yeti { + --fa: "\f69d"; } + +.fa-square-hacker-news { + --fa: "\f3af"; } + +.fa-hacker-news-square { + --fa: "\f3af"; } + +.fa-edge { + --fa: "\f282"; } + +.fa-threads { + --fa: "\e618"; } + +.fa-napster { + --fa: "\f3d2"; } + +.fa-square-snapchat { + --fa: "\f2ad"; } + +.fa-snapchat-square { + --fa: "\f2ad"; } + +.fa-google-plus-g { + --fa: "\f0d5"; } + +.fa-artstation { + --fa: "\f77a"; } + +.fa-markdown { + --fa: "\f60f"; } + +.fa-sourcetree { + --fa: "\f7d3"; } + +.fa-google-plus { + --fa: "\f2b3"; } + +.fa-diaspora { + --fa: "\f791"; } + +.fa-foursquare { + --fa: "\f180"; } + +.fa-stack-overflow { + --fa: "\f16c"; } + +.fa-github-alt { + --fa: "\f113"; } + +.fa-phoenix-squadron { + --fa: "\f511"; } + +.fa-pagelines { + --fa: "\f18c"; } + +.fa-algolia { + --fa: "\f36c"; } + +.fa-red-river { + --fa: "\f3e3"; } + +.fa-creative-commons-sa { + --fa: "\f4ef"; } + +.fa-safari { + --fa: "\f267"; } + +.fa-google { + --fa: "\f1a0"; } + +.fa-square-font-awesome-stroke { + --fa: "\f35c"; } + +.fa-font-awesome-alt { + --fa: "\f35c"; } + +.fa-atlassian { + --fa: "\f77b"; } + +.fa-linkedin-in { + --fa: "\f0e1"; } + +.fa-digital-ocean { + --fa: "\f391"; } + +.fa-nimblr { + --fa: "\f5a8"; } + +.fa-chromecast { + --fa: "\f838"; } + +.fa-evernote { + --fa: "\f839"; } + +.fa-hacker-news { + --fa: "\f1d4"; } + +.fa-creative-commons-sampling { + --fa: "\f4f0"; } + +.fa-adversal { + --fa: "\f36a"; } + +.fa-creative-commons { + --fa: "\f25e"; } + +.fa-watchman-monitoring { + --fa: "\e087"; } + +.fa-fonticons { + --fa: "\f280"; } + +.fa-weixin { + --fa: "\f1d7"; } + +.fa-shirtsinbulk { + --fa: "\f214"; } + +.fa-codepen { + --fa: "\f1cb"; } + +.fa-git-alt { + --fa: "\f841"; } + +.fa-lyft { + --fa: "\f3c3"; } + +.fa-rev { + --fa: "\f5b2"; } + +.fa-windows { + --fa: "\f17a"; } + +.fa-wizards-of-the-coast { + --fa: "\f730"; } + +.fa-square-viadeo { + --fa: "\f2aa"; } + +.fa-viadeo-square { + --fa: "\f2aa"; } + +.fa-meetup { + --fa: "\f2e0"; } + +.fa-centos { + --fa: "\f789"; } + +.fa-adn { + --fa: "\f170"; } + +.fa-cloudsmith { + --fa: "\f384"; } + +.fa-opensuse { + --fa: "\e62b"; } + +.fa-pied-piper-alt { + --fa: "\f1a8"; } + +.fa-square-dribbble { + --fa: "\f397"; } + +.fa-dribbble-square { + --fa: "\f397"; } + +.fa-codiepie { + --fa: "\f284"; } + +.fa-node { + --fa: "\f419"; } + +.fa-mix { + --fa: "\f3cb"; } + +.fa-steam { + --fa: "\f1b6"; } + +.fa-cc-apple-pay { + --fa: "\f416"; } + +.fa-scribd { + --fa: "\f28a"; } + +.fa-debian { + --fa: "\e60b"; } + +.fa-openid { + --fa: "\f19b"; } + +.fa-instalod { + --fa: "\e081"; } + +.fa-files-pinwheel { + --fa: "\e69f"; } + +.fa-expeditedssl { + --fa: "\f23e"; } + +.fa-sellcast { + --fa: "\f2da"; } + +.fa-square-twitter { + --fa: "\f081"; } + +.fa-twitter-square { + --fa: "\f081"; } + +.fa-r-project { + --fa: "\f4f7"; } + +.fa-delicious { + --fa: "\f1a5"; } + +.fa-freebsd { + --fa: "\f3a4"; } + +.fa-vuejs { + --fa: "\f41f"; } + +.fa-accusoft { + --fa: "\f369"; } + +.fa-ioxhost { + --fa: "\f208"; } + +.fa-fonticons-fi { + --fa: "\f3a2"; } + +.fa-app-store { + --fa: "\f36f"; } + +.fa-cc-mastercard { + --fa: "\f1f1"; } + +.fa-itunes-note { + --fa: "\f3b5"; } + +.fa-golang { + --fa: "\e40f"; } + +.fa-kickstarter { + --fa: "\f3bb"; } + +.fa-square-kickstarter { + --fa: "\f3bb"; } + +.fa-grav { + --fa: "\f2d6"; } + +.fa-weibo { + --fa: "\f18a"; } + +.fa-uncharted { + --fa: "\e084"; } + +.fa-firstdraft { + --fa: "\f3a1"; } + +.fa-square-youtube { + --fa: "\f431"; } + +.fa-youtube-square { + --fa: "\f431"; } + +.fa-wikipedia-w { + --fa: "\f266"; } + +.fa-wpressr { + --fa: "\f3e4"; } + +.fa-rendact { + --fa: "\f3e4"; } + +.fa-angellist { + --fa: "\f209"; } + +.fa-galactic-republic { + --fa: "\f50c"; } + +.fa-nfc-directional { + --fa: "\e530"; } + +.fa-skype { + --fa: "\f17e"; } + +.fa-joget { + --fa: "\f3b7"; } + +.fa-fedora { + --fa: "\f798"; } + +.fa-stripe-s { + --fa: "\f42a"; } + +.fa-meta { + --fa: "\e49b"; } + +.fa-laravel { + --fa: "\f3bd"; } + +.fa-hotjar { + --fa: "\f3b1"; } + +.fa-bluetooth-b { + --fa: "\f294"; } + +.fa-square-letterboxd { + --fa: "\e62e"; } + +.fa-sticker-mule { + --fa: "\f3f7"; } + +.fa-creative-commons-zero { + --fa: "\f4f3"; } + +.fa-hips { + --fa: "\f452"; } + +.fa-css { + --fa: "\e6a2"; } + +.fa-behance { + --fa: "\f1b4"; } + +.fa-reddit { + --fa: "\f1a1"; } + +.fa-discord { + --fa: "\f392"; } + +.fa-chrome { + --fa: "\f268"; } + +.fa-app-store-ios { + --fa: "\f370"; } + +.fa-cc-discover { + --fa: "\f1f2"; } + +.fa-wpbeginner { + --fa: "\f297"; } + +.fa-confluence { + --fa: "\f78d"; } + +.fa-shoelace { + --fa: "\e60c"; } + +.fa-mdb { + --fa: "\f8ca"; } + +.fa-dochub { + --fa: "\f394"; } + +.fa-accessible-icon { + --fa: "\f368"; } + +.fa-ebay { + --fa: "\f4f4"; } + +.fa-amazon { + --fa: "\f270"; } + +.fa-unsplash { + --fa: "\e07c"; } + +.fa-yarn { + --fa: "\f7e3"; } + +.fa-square-steam { + --fa: "\f1b7"; } + +.fa-steam-square { + --fa: "\f1b7"; } + +.fa-500px { + --fa: "\f26e"; } + +.fa-square-vimeo { + --fa: "\f194"; } + +.fa-vimeo-square { + --fa: "\f194"; } + +.fa-asymmetrik { + --fa: "\f372"; } + +.fa-font-awesome { + --fa: "\f2b4"; } + +.fa-font-awesome-flag { + --fa: "\f2b4"; } + +.fa-font-awesome-logo-full { + --fa: "\f2b4"; } + +.fa-gratipay { + --fa: "\f184"; } + +.fa-apple { + --fa: "\f179"; } + +.fa-hive { + --fa: "\e07f"; } + +.fa-gitkraken { + --fa: "\f3a6"; } + +.fa-keybase { + --fa: "\f4f5"; } + +.fa-apple-pay { + --fa: "\f415"; } + +.fa-padlet { + --fa: "\e4a0"; } + +.fa-amazon-pay { + --fa: "\f42c"; } + +.fa-square-github { + --fa: "\f092"; } + +.fa-github-square { + --fa: "\f092"; } + +.fa-stumbleupon { + --fa: "\f1a4"; } + +.fa-fedex { + --fa: "\f797"; } + +.fa-phoenix-framework { + --fa: "\f3dc"; } + +.fa-shopify { + --fa: "\e057"; } + +.fa-neos { + --fa: "\f612"; } + +.fa-square-threads { + --fa: "\e619"; } + +.fa-hackerrank { + --fa: "\f5f7"; } + +.fa-researchgate { + --fa: "\f4f8"; } + +.fa-swift { + --fa: "\f8e1"; } + +.fa-angular { + --fa: "\f420"; } + +.fa-speakap { + --fa: "\f3f3"; } + +.fa-angrycreative { + --fa: "\f36e"; } + +.fa-y-combinator { + --fa: "\f23b"; } + +.fa-empire { + --fa: "\f1d1"; } + +.fa-envira { + --fa: "\f299"; } + +.fa-google-scholar { + --fa: "\e63b"; } + +.fa-square-gitlab { + --fa: "\e5ae"; } + +.fa-gitlab-square { + --fa: "\e5ae"; } + +.fa-studiovinari { + --fa: "\f3f8"; } + +.fa-pied-piper { + --fa: "\f2ae"; } + +.fa-wordpress { + --fa: "\f19a"; } + +.fa-product-hunt { + --fa: "\f288"; } + +.fa-firefox { + --fa: "\f269"; } + +.fa-linode { + --fa: "\f2b8"; } + +.fa-goodreads { + --fa: "\f3a8"; } + +.fa-square-odnoklassniki { + --fa: "\f264"; } + +.fa-odnoklassniki-square { + --fa: "\f264"; } + +.fa-jsfiddle { + --fa: "\f1cc"; } + +.fa-sith { + --fa: "\f512"; } + +.fa-themeisle { + --fa: "\f2b2"; } + +.fa-page4 { + --fa: "\f3d7"; } + +.fa-hashnode { + --fa: "\e499"; } + +.fa-react { + --fa: "\f41b"; } + +.fa-cc-paypal { + --fa: "\f1f4"; } + +.fa-squarespace { + --fa: "\f5be"; } + +.fa-cc-stripe { + --fa: "\f1f5"; } + +.fa-creative-commons-share { + --fa: "\f4f2"; } + +.fa-bitcoin { + --fa: "\f379"; } + +.fa-keycdn { + --fa: "\f3ba"; } + +.fa-opera { + --fa: "\f26a"; } + +.fa-itch-io { + --fa: "\f83a"; } + +.fa-umbraco { + --fa: "\f8e8"; } + +.fa-galactic-senate { + --fa: "\f50d"; } + +.fa-ubuntu { + --fa: "\f7df"; } + +.fa-draft2digital { + --fa: "\f396"; } + +.fa-stripe { + --fa: "\f429"; } + +.fa-houzz { + --fa: "\f27c"; } + +.fa-gg { + --fa: "\f260"; } + +.fa-dhl { + --fa: "\f790"; } + +.fa-square-pinterest { + --fa: "\f0d3"; } + +.fa-pinterest-square { + --fa: "\f0d3"; } + +.fa-xing { + --fa: "\f168"; } + +.fa-blackberry { + --fa: "\f37b"; } + +.fa-creative-commons-pd { + --fa: "\f4ec"; } + +.fa-playstation { + --fa: "\f3df"; } + +.fa-quinscape { + --fa: "\f459"; } + +.fa-less { + --fa: "\f41d"; } + +.fa-blogger-b { + --fa: "\f37d"; } + +.fa-opencart { + --fa: "\f23d"; } + +.fa-vine { + --fa: "\f1ca"; } + +.fa-signal-messenger { + --fa: "\e663"; } + +.fa-paypal { + --fa: "\f1ed"; } + +.fa-gitlab { + --fa: "\f296"; } + +.fa-typo3 { + --fa: "\f42b"; } + +.fa-reddit-alien { + --fa: "\f281"; } + +.fa-yahoo { + --fa: "\f19e"; } + +.fa-dailymotion { + --fa: "\e052"; } + +.fa-affiliatetheme { + --fa: "\f36b"; } + +.fa-pied-piper-pp { + --fa: "\f1a7"; } + +.fa-bootstrap { + --fa: "\f836"; } + +.fa-odnoklassniki { + --fa: "\f263"; } + +.fa-nfc-symbol { + --fa: "\e531"; } + +.fa-mintbit { + --fa: "\e62f"; } + +.fa-ethereum { + --fa: "\f42e"; } + +.fa-speaker-deck { + --fa: "\f83c"; } + +.fa-creative-commons-nc-eu { + --fa: "\f4e9"; } + +.fa-patreon { + --fa: "\f3d9"; } + +.fa-avianex { + --fa: "\f374"; } + +.fa-ello { + --fa: "\f5f1"; } + +.fa-gofore { + --fa: "\f3a7"; } + +.fa-bimobject { + --fa: "\f378"; } + +.fa-brave-reverse { + --fa: "\e63d"; } + +.fa-facebook-f { + --fa: "\f39e"; } + +.fa-square-google-plus { + --fa: "\f0d4"; } + +.fa-google-plus-square { + --fa: "\f0d4"; } + +.fa-web-awesome { + --fa: "\e682"; } + +.fa-mandalorian { + --fa: "\f50f"; } + +.fa-first-order-alt { + --fa: "\f50a"; } + +.fa-osi { + --fa: "\f41a"; } + +.fa-google-wallet { + --fa: "\f1ee"; } + +.fa-d-and-d-beyond { + --fa: "\f6ca"; } + +.fa-periscope { + --fa: "\f3da"; } + +.fa-fulcrum { + --fa: "\f50b"; } + +.fa-cloudscale { + --fa: "\f383"; } + +.fa-forumbee { + --fa: "\f211"; } + +.fa-mizuni { + --fa: "\f3cc"; } + +.fa-schlix { + --fa: "\f3ea"; } + +.fa-square-xing { + --fa: "\f169"; } + +.fa-xing-square { + --fa: "\f169"; } + +.fa-bandcamp { + --fa: "\f2d5"; } + +.fa-wpforms { + --fa: "\f298"; } + +.fa-cloudversify { + --fa: "\f385"; } + +.fa-usps { + --fa: "\f7e1"; } + +.fa-megaport { + --fa: "\f5a3"; } + +.fa-magento { + --fa: "\f3c4"; } + +.fa-spotify { + --fa: "\f1bc"; } + +.fa-optin-monster { + --fa: "\f23c"; } + +.fa-fly { + --fa: "\f417"; } + +.fa-square-bluesky { + --fa: "\e6a3"; } + +.fa-aviato { + --fa: "\f421"; } + +.fa-itunes { + --fa: "\f3b4"; } + +.fa-cuttlefish { + --fa: "\f38c"; } + +.fa-blogger { + --fa: "\f37c"; } + +.fa-flickr { + --fa: "\f16e"; } + +.fa-viber { + --fa: "\f409"; } + +.fa-soundcloud { + --fa: "\f1be"; } + +.fa-digg { + --fa: "\f1a6"; } + +.fa-tencent-weibo { + --fa: "\f1d5"; } + +.fa-letterboxd { + --fa: "\e62d"; } + +.fa-symfony { + --fa: "\f83d"; } + +.fa-maxcdn { + --fa: "\f136"; } + +.fa-etsy { + --fa: "\f2d7"; } + +.fa-facebook-messenger { + --fa: "\f39f"; } + +.fa-audible { + --fa: "\f373"; } + +.fa-think-peaks { + --fa: "\f731"; } + +.fa-bilibili { + --fa: "\e3d9"; } + +.fa-erlang { + --fa: "\f39d"; } + +.fa-x-twitter { + --fa: "\e61b"; } + +.fa-cotton-bureau { + --fa: "\f89e"; } + +.fa-dashcube { + --fa: "\f210"; } + +.fa-42-group { + --fa: "\e080"; } + +.fa-innosoft { + --fa: "\e080"; } + +.fa-stack-exchange { + --fa: "\f18d"; } + +.fa-elementor { + --fa: "\f430"; } + +.fa-square-pied-piper { + --fa: "\e01e"; } + +.fa-pied-piper-square { + --fa: "\e01e"; } + +.fa-creative-commons-nd { + --fa: "\f4eb"; } + +.fa-palfed { + --fa: "\f3d8"; } + +.fa-superpowers { + --fa: "\f2dd"; } + +.fa-resolving { + --fa: "\f3e7"; } + +.fa-xbox { + --fa: "\f412"; } + +.fa-square-web-awesome-stroke { + --fa: "\e684"; } + +.fa-searchengin { + --fa: "\f3eb"; } + +.fa-tiktok { + --fa: "\e07b"; } + +.fa-square-facebook { + --fa: "\f082"; } + +.fa-facebook-square { + --fa: "\f082"; } + +.fa-renren { + --fa: "\f18b"; } + +.fa-linux { + --fa: "\f17c"; } + +.fa-glide { + --fa: "\f2a5"; } + +.fa-linkedin { + --fa: "\f08c"; } + +.fa-hubspot { + --fa: "\f3b2"; } + +.fa-deploydog { + --fa: "\f38e"; } + +.fa-twitch { + --fa: "\f1e8"; } + +.fa-flutter { + --fa: "\e694"; } + +.fa-ravelry { + --fa: "\f2d9"; } + +.fa-mixer { + --fa: "\e056"; } + +.fa-square-lastfm { + --fa: "\f203"; } + +.fa-lastfm-square { + --fa: "\f203"; } + +.fa-vimeo { + --fa: "\f40a"; } + +.fa-mendeley { + --fa: "\f7b3"; } + +.fa-uniregistry { + --fa: "\f404"; } + +.fa-figma { + --fa: "\f799"; } + +.fa-creative-commons-remix { + --fa: "\f4ee"; } + +.fa-cc-amazon-pay { + --fa: "\f42d"; } + +.fa-dropbox { + --fa: "\f16b"; } + +.fa-instagram { + --fa: "\f16d"; } + +.fa-cmplid { + --fa: "\e360"; } + +.fa-upwork { + --fa: "\e641"; } + +.fa-facebook { + --fa: "\f09a"; } + +.fa-gripfire { + --fa: "\f3ac"; } + +.fa-jedi-order { + --fa: "\f50e"; } + +.fa-uikit { + --fa: "\f403"; } + +.fa-fort-awesome-alt { + --fa: "\f3a3"; } + +.fa-phabricator { + --fa: "\f3db"; } + +.fa-ussunnah { + --fa: "\f407"; } + +.fa-earlybirds { + --fa: "\f39a"; } + +.fa-trade-federation { + --fa: "\f513"; } + +.fa-autoprefixer { + --fa: "\f41c"; } + +.fa-whatsapp { + --fa: "\f232"; } + +.fa-square-upwork { + --fa: "\e67c"; } + +.fa-slideshare { + --fa: "\f1e7"; } + +.fa-google-play { + --fa: "\f3ab"; } + +.fa-viadeo { + --fa: "\f2a9"; } + +.fa-line { + --fa: "\f3c0"; } + +.fa-google-drive { + --fa: "\f3aa"; } + +.fa-servicestack { + --fa: "\f3ec"; } + +.fa-simplybuilt { + --fa: "\f215"; } + +.fa-bitbucket { + --fa: "\f171"; } + +.fa-imdb { + --fa: "\f2d8"; } + +.fa-deezer { + --fa: "\e077"; } + +.fa-raspberry-pi { + --fa: "\f7bb"; } + +.fa-jira { + --fa: "\f7b1"; } + +.fa-docker { + --fa: "\f395"; } + +.fa-screenpal { + --fa: "\e570"; } + +.fa-bluetooth { + --fa: "\f293"; } + +.fa-gitter { + --fa: "\f426"; } + +.fa-d-and-d { + --fa: "\f38d"; } + +.fa-microblog { + --fa: "\e01a"; } + +.fa-cc-diners-club { + --fa: "\f24c"; } + +.fa-gg-circle { + --fa: "\f261"; } + +.fa-pied-piper-hat { + --fa: "\f4e5"; } + +.fa-kickstarter-k { + --fa: "\f3bc"; } + +.fa-yandex { + --fa: "\f413"; } + +.fa-readme { + --fa: "\f4d5"; } + +.fa-html5 { + --fa: "\f13b"; } + +.fa-sellsy { + --fa: "\f213"; } + +.fa-square-web-awesome { + --fa: "\e683"; } + +.fa-sass { + --fa: "\f41e"; } + +.fa-wirsindhandwerk { + --fa: "\e2d0"; } + +.fa-wsh { + --fa: "\e2d0"; } + +.fa-buromobelexperte { + --fa: "\f37f"; } + +.fa-salesforce { + --fa: "\f83b"; } + +.fa-octopus-deploy { + --fa: "\e082"; } + +.fa-medapps { + --fa: "\f3c6"; } + +.fa-ns8 { + --fa: "\f3d5"; } + +.fa-pinterest-p { + --fa: "\f231"; } + +.fa-apper { + --fa: "\f371"; } + +.fa-fort-awesome { + --fa: "\f286"; } + +.fa-waze { + --fa: "\f83f"; } + +.fa-bluesky { + --fa: "\e671"; } + +.fa-cc-jcb { + --fa: "\f24b"; } + +.fa-snapchat { + --fa: "\f2ab"; } + +.fa-snapchat-ghost { + --fa: "\f2ab"; } + +.fa-fantasy-flight-games { + --fa: "\f6dc"; } + +.fa-rust { + --fa: "\e07a"; } + +.fa-wix { + --fa: "\f5cf"; } + +.fa-square-behance { + --fa: "\f1b5"; } + +.fa-behance-square { + --fa: "\f1b5"; } + +.fa-supple { + --fa: "\f3f9"; } + +.fa-webflow { + --fa: "\e65c"; } + +.fa-rebel { + --fa: "\f1d0"; } + +.fa-css3 { + --fa: "\f13c"; } + +.fa-staylinked { + --fa: "\f3f5"; } + +.fa-kaggle { + --fa: "\f5fa"; } + +.fa-space-awesome { + --fa: "\e5ac"; } + +.fa-deviantart { + --fa: "\f1bd"; } + +.fa-cpanel { + --fa: "\f388"; } + +.fa-goodreads-g { + --fa: "\f3a9"; } + +.fa-square-git { + --fa: "\f1d2"; } + +.fa-git-square { + --fa: "\f1d2"; } + +.fa-square-tumblr { + --fa: "\f174"; } + +.fa-tumblr-square { + --fa: "\f174"; } + +.fa-trello { + --fa: "\f181"; } + +.fa-creative-commons-nc-jp { + --fa: "\f4ea"; } + +.fa-get-pocket { + --fa: "\f265"; } + +.fa-perbyte { + --fa: "\e083"; } + +.fa-grunt { + --fa: "\f3ad"; } + +.fa-weebly { + --fa: "\f5cc"; } + +.fa-connectdevelop { + --fa: "\f20e"; } + +.fa-leanpub { + --fa: "\f212"; } + +.fa-black-tie { + --fa: "\f27e"; } + +.fa-themeco { + --fa: "\f5c6"; } + +.fa-python { + --fa: "\f3e2"; } + +.fa-android { + --fa: "\f17b"; } + +.fa-bots { + --fa: "\e340"; } + +.fa-free-code-camp { + --fa: "\f2c5"; } + +.fa-hornbill { + --fa: "\f592"; } + +.fa-js { + --fa: "\f3b8"; } + +.fa-ideal { + --fa: "\e013"; } + +.fa-git { + --fa: "\f1d3"; } + +.fa-dev { + --fa: "\f6cc"; } + +.fa-sketch { + --fa: "\f7c6"; } + +.fa-yandex-international { + --fa: "\f414"; } + +.fa-cc-amex { + --fa: "\f1f3"; } + +.fa-uber { + --fa: "\f402"; } + +.fa-github { + --fa: "\f09b"; } + +.fa-php { + --fa: "\f457"; } + +.fa-alipay { + --fa: "\f642"; } + +.fa-youtube { + --fa: "\f167"; } + +.fa-skyatlas { + --fa: "\f216"; } + +.fa-firefox-browser { + --fa: "\e007"; } + +.fa-replyd { + --fa: "\f3e6"; } + +.fa-suse { + --fa: "\f7d6"; } + +.fa-jenkins { + --fa: "\f3b6"; } + +.fa-twitter { + --fa: "\f099"; } + +.fa-rockrms { + --fa: "\f3e9"; } + +.fa-pinterest { + --fa: "\f0d2"; } + +.fa-buffer { + --fa: "\f837"; } + +.fa-npm { + --fa: "\f3d4"; } + +.fa-yammer { + --fa: "\f840"; } + +.fa-btc { + --fa: "\f15a"; } + +.fa-dribbble { + --fa: "\f17d"; } + +.fa-stumbleupon-circle { + --fa: "\f1a3"; } + +.fa-internet-explorer { + --fa: "\f26b"; } + +.fa-stubber { + --fa: "\e5c7"; } + +.fa-telegram { + --fa: "\f2c6"; } + +.fa-telegram-plane { + --fa: "\f2c6"; } + +.fa-old-republic { + --fa: "\f510"; } + +.fa-odysee { + --fa: "\e5c6"; } + +.fa-square-whatsapp { + --fa: "\f40c"; } + +.fa-whatsapp-square { + --fa: "\f40c"; } + +.fa-node-js { + --fa: "\f3d3"; } + +.fa-edge-legacy { + --fa: "\e078"; } + +.fa-slack { + --fa: "\f198"; } + +.fa-slack-hash { + --fa: "\f198"; } + +.fa-medrt { + --fa: "\f3c8"; } + +.fa-usb { + --fa: "\f287"; } + +.fa-tumblr { + --fa: "\f173"; } + +.fa-vaadin { + --fa: "\f408"; } + +.fa-quora { + --fa: "\f2c4"; } + +.fa-square-x-twitter { + --fa: "\e61a"; } + +.fa-reacteurope { + --fa: "\f75d"; } + +.fa-medium { + --fa: "\f23a"; } + +.fa-medium-m { + --fa: "\f23a"; } + +.fa-amilia { + --fa: "\f36d"; } + +.fa-mixcloud { + --fa: "\f289"; } + +.fa-flipboard { + --fa: "\f44d"; } + +.fa-viacoin { + --fa: "\f237"; } + +.fa-critical-role { + --fa: "\f6c9"; } + +.fa-sitrox { + --fa: "\e44a"; } + +.fa-discourse { + --fa: "\f393"; } + +.fa-joomla { + --fa: "\f1aa"; } + +.fa-mastodon { + --fa: "\f4f6"; } + +.fa-airbnb { + --fa: "\f834"; } + +.fa-wolf-pack-battalion { + --fa: "\f514"; } + +.fa-buy-n-large { + --fa: "\f8a6"; } + +.fa-gulp { + --fa: "\f3ae"; } + +.fa-creative-commons-sampling-plus { + --fa: "\f4f1"; } + +.fa-strava { + --fa: "\f428"; } + +.fa-ember { + --fa: "\f423"; } + +.fa-canadian-maple-leaf { + --fa: "\f785"; } + +.fa-teamspeak { + --fa: "\f4f9"; } + +.fa-pushed { + --fa: "\f3e1"; } + +.fa-wordpress-simple { + --fa: "\f411"; } + +.fa-nutritionix { + --fa: "\f3d6"; } + +.fa-wodu { + --fa: "\e088"; } + +.fa-google-pay { + --fa: "\e079"; } + +.fa-intercom { + --fa: "\f7af"; } + +.fa-zhihu { + --fa: "\f63f"; } + +.fa-korvue { + --fa: "\f42f"; } + +.fa-pix { + --fa: "\e43a"; } + +.fa-steam-symbol { + --fa: "\f3f6"; } Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: brands.min.css @@ -1,6220 +1,6243 @@ -/*! - * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */ - - @import url('./brands.css'); - @import url('./regular.css'); - @import url('./solid.css'); - -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa-solid, -.fa-regular, -.fa-brands, -.fas, -.far, -.fab, -.fa-sharp-solid, -.fa-classic, -.fa { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fas, -.fa-classic, -.fa-solid, -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(-1 * var(--fa-li-width, 2em)); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - animation-name: fa-beat; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - animation-name: fa-bounce; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - animation-name: fa-fade; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - animation-name: fa-beat-fade; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - animation-name: fa-flip; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - animation-name: fa-shake; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - animation-name: fa-spin; - animation-delay: var(--fa-animation-delay, 0s); - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 2s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - animation-name: fa-spin; - animation-direction: var(--fa-animation-direction, normal); - animation-duration: var(--fa-animation-duration, 1s); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - animation-delay: -1ms; - animation-duration: 1ms; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@keyframes fa-beat { - 0%, 90% { - transform: scale(1); } - 45% { - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-bounce { - 0% { - transform: scale(1, 1) translateY(0); } - 10% { - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - transform: scale(1, 1) translateY(0); } - 100% { - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - transform: scale(1); } - 50% { - opacity: 1; - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-flip { - 50% { - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-shake { - 0% { - transform: rotate(-15deg); } - 4% { - transform: rotate(15deg); } - 8%, 24% { - transform: rotate(-18deg); } - 12%, 28% { - transform: rotate(18deg); } - 16% { - transform: rotate(-22deg); } - 20% { - transform: rotate(22deg); } - 32% { - transform: rotate(-12deg); } - 36% { - transform: rotate(12deg); } - 40%, 100% { - transform: rotate(0deg); } } - -@keyframes fa-spin { - 0% { - transform: rotate(0deg); } - 100% { - transform: rotate(360deg); } } - -.fa-rotate-90 { - transform: rotate(90deg); } - -.fa-rotate-180 { - transform: rotate(180deg); } - -.fa-rotate-270 { - transform: rotate(270deg); } - -.fa-flip-horizontal { - transform: scale(-1, 1); } - -.fa-flip-vertical { - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - transform: scale(-1, -1); } - -.fa-rotate-by { - transform: rotate(var(--fa-rotate-angle, 0)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ - -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-at::before { - content: "\40"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-info::before { - content: "\f129"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-k::before { - content: "\4b"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-w::before { - content: "\57"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-film::before { - content: "\f008"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-hourglass-half::before { - content: "\f252"; } - -.fa-hourglass-2::before { - content: "\f252"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-om::before { - content: "\f679"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-i::before { - content: "\49"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-v::before { - content: "\56"; } - -.fa-bangladeshi-taka-sign::before { - content: "\e2e6"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-school::before { - content: "\f549"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-q::before { - content: "\51"; } - -.fa-g::before { - content: "\47"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-e::before { - content: "\45"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-user::before { - content: "\f007"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-key::before { - content: "\f084"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-c::before { - content: "\43"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-star::before { - content: "\f005"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-box::before { - content: "\f466"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-server::before { - content: "\f233"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-thumbtack-slash::before { - content: "\e68f"; } - -.fa-thumb-tack-slash::before { - content: "\e68f"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-l::before { - content: "\4c"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-train::before { - content: "\f238"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-table-cells-column-lock::before { - content: "\e678"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-z::before { - content: "\5a"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-a::before { - content: "\41"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-p::before { - content: "\50"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-question::before { - content: "\3f"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-code::before { - content: "\f121"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-f::before { - content: "\46"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-road::before { - content: "\f018"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-h::before { - content: "\48"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-r::before { - content: "\52"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-plant-wilt::before { - content: "\e5aa"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-j::before { - content: "\4a"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-o::before { - content: "\4f"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-book-tanakh::before { - content: "\f827"; } - -.fa-tanakh::before { - content: "\f827"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f254"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-water::before { - content: "\f773"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-u::before { - content: "\55"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-s::before { - content: "\53"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-images::before { - content: "\f302"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-n::before { - content: "\4e"; } - -.fa-cable-car::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-download::before { - content: "\f019"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-file-circle-check::before { - content: "\e5a0"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-b::before { - content: "\42"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-person-through-window::before { - content: "\e5a9"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-file-circle-xmark::before { - content: "\e5a1"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-section::before { - content: "\e447"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-font::before { - content: "\f031"; } - -.fa-table-cells-row-lock::before { - content: "\e67a"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-y::before { - content: "\59"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-child-combatant::before { - content: "\e4e0"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-map::before { - content: "\f279"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-notdef::before { - content: "\e1fe"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-display::before { - content: "\e163"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-award::before { - content: "\f559"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-music::before { - content: "\f001"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-t::before { - content: "\54"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-haykal::before { - content: "\f666"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-file-circle-plus::before { - content: "\e494"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-m::before { - content: "\4d"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-share::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-train-tram::before { - content: "\e5b4"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-table-cells-row-unlock::before { - content: "\e691"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-x::before { - content: "\58"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-d::before { - content: "\44"; } - -.fa-stapler::before { - content: "\e5af"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } +/*! + * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa { + font-family: var(--fa-style-family, "Font Awesome 6 Free"); + font-weight: var(--fa-style, 900); } + +.fas, +.far, +.fab, +.fa-solid, +.fa-regular, +.fa-brands, +.fa { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: var(--fa-display, inline-block); + font-style: normal; + font-variant: normal; + line-height: 1; + text-rendering: auto; } + +.fas::before, +.far::before, +.fab::before, +.fa-solid::before, +.fa-regular::before, +.fa-brands::before, +.fa::before { + content: var(--fa); } + +.fa-classic, +.fas, +.fa-solid, +.far, +.fa-regular { + font-family: 'Font Awesome 6 Free'; } + +.fa-brands, +.fab { + font-family: 'Font Awesome 6 Brands'; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-2xs { + font-size: 0.625em; + line-height: 0.1em; + vertical-align: 0.225em; } + +.fa-xs { + font-size: 0.75em; + line-height: 0.08333em; + vertical-align: 0.125em; } + +.fa-sm { + font-size: 0.875em; + line-height: 0.07143em; + vertical-align: 0.05357em; } + +.fa-lg { + font-size: 1.25em; + line-height: 0.05em; + vertical-align: -0.075em; } + +.fa-xl { + font-size: 1.5em; + line-height: 0.04167em; + vertical-align: -0.125em; } + +.fa-2xl { + font-size: 2em; + line-height: 0.03125em; + vertical-align: -0.1875em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: var(--fa-li-margin, 2.5em); + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: calc(-1 * var(--fa-li-width, 2em)); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; } + +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.08em); + padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } + +.fa-pull-left { + float: left; + margin-right: var(--fa-pull-margin, 0.3em); } + +.fa-pull-right { + float: right; + margin-left: var(--fa-pull-margin, 0.3em); } + +.fa-beat { + animation-name: fa-beat; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-bounce { + animation-name: fa-bounce; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } + +.fa-fade { + animation-name: fa-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-beat-fade { + animation-name: fa-beat-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-flip { + animation-name: fa-flip; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-shake { + animation-name: fa-shake; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin { + animation-name: fa-spin; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 2s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin-reverse { + --fa-animation-direction: reverse; } + +.fa-pulse, +.fa-spin-pulse { + animation-name: fa-spin; + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, steps(8)); } + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + animation-delay: -1ms; + animation-duration: 1ms; + animation-iteration-count: 1; + transition-delay: 0s; + transition-duration: 0s; } } + +@keyframes fa-beat { + 0%, 90% { + transform: scale(1); } + 45% { + transform: scale(var(--fa-beat-scale, 1.25)); } } + +@keyframes fa-bounce { + 0% { + transform: scale(1, 1) translateY(0); } + 10% { + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } + 30% { + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } + 50% { + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } + 57% { + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } + 64% { + transform: scale(1, 1) translateY(0); } + 100% { + transform: scale(1, 1) translateY(0); } } + +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); } } + +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + transform: scale(1); } + 50% { + opacity: 1; + transform: scale(var(--fa-beat-fade-scale, 1.125)); } } + +@keyframes fa-flip { + 50% { + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } + +@keyframes fa-shake { + 0% { + transform: rotate(-15deg); } + 4% { + transform: rotate(15deg); } + 8%, 24% { + transform: rotate(-18deg); } + 12%, 28% { + transform: rotate(18deg); } + 16% { + transform: rotate(-22deg); } + 20% { + transform: rotate(22deg); } + 32% { + transform: rotate(-12deg); } + 36% { + transform: rotate(12deg); } + 40%, 100% { + transform: rotate(0deg); } } + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(360deg); } } + +.fa-rotate-90 { + transform: rotate(90deg); } + +.fa-rotate-180 { + transform: rotate(180deg); } + +.fa-rotate-270 { + transform: rotate(270deg); } + +.fa-flip-horizontal { + transform: scale(-1, 1); } + +.fa-flip-vertical { + transform: scale(1, -1); } + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + transform: scale(-1, -1); } + +.fa-rotate-by { + transform: rotate(var(--fa-rotate-angle, 0)); } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; + z-index: var(--fa-stack-z-index, auto); } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: var(--fa-inverse, #fff); } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.fa-0 { + --fa: "\30"; } + +.fa-1 { + --fa: "\31"; } + +.fa-2 { + --fa: "\32"; } + +.fa-3 { + --fa: "\33"; } + +.fa-4 { + --fa: "\34"; } + +.fa-5 { + --fa: "\35"; } + +.fa-6 { + --fa: "\36"; } + +.fa-7 { + --fa: "\37"; } + +.fa-8 { + --fa: "\38"; } + +.fa-9 { + --fa: "\39"; } + +.fa-fill-drip { + --fa: "\f576"; } + +.fa-arrows-to-circle { + --fa: "\e4bd"; } + +.fa-circle-chevron-right { + --fa: "\f138"; } + +.fa-chevron-circle-right { + --fa: "\f138"; } + +.fa-at { + --fa: "\40"; } + +.fa-trash-can { + --fa: "\f2ed"; } + +.fa-trash-alt { + --fa: "\f2ed"; } + +.fa-text-height { + --fa: "\f034"; } + +.fa-user-xmark { + --fa: "\f235"; } + +.fa-user-times { + --fa: "\f235"; } + +.fa-stethoscope { + --fa: "\f0f1"; } + +.fa-message { + --fa: "\f27a"; } + +.fa-comment-alt { + --fa: "\f27a"; } + +.fa-info { + --fa: "\f129"; } + +.fa-down-left-and-up-right-to-center { + --fa: "\f422"; } + +.fa-compress-alt { + --fa: "\f422"; } + +.fa-explosion { + --fa: "\e4e9"; } + +.fa-file-lines { + --fa: "\f15c"; } + +.fa-file-alt { + --fa: "\f15c"; } + +.fa-file-text { + --fa: "\f15c"; } + +.fa-wave-square { + --fa: "\f83e"; } + +.fa-ring { + --fa: "\f70b"; } + +.fa-building-un { + --fa: "\e4d9"; } + +.fa-dice-three { + --fa: "\f527"; } + +.fa-calendar-days { + --fa: "\f073"; } + +.fa-calendar-alt { + --fa: "\f073"; } + +.fa-anchor-circle-check { + --fa: "\e4aa"; } + +.fa-building-circle-arrow-right { + --fa: "\e4d1"; } + +.fa-volleyball { + --fa: "\f45f"; } + +.fa-volleyball-ball { + --fa: "\f45f"; } + +.fa-arrows-up-to-line { + --fa: "\e4c2"; } + +.fa-sort-down { + --fa: "\f0dd"; } + +.fa-sort-desc { + --fa: "\f0dd"; } + +.fa-circle-minus { + --fa: "\f056"; } + +.fa-minus-circle { + --fa: "\f056"; } + +.fa-door-open { + --fa: "\f52b"; } + +.fa-right-from-bracket { + --fa: "\f2f5"; } + +.fa-sign-out-alt { + --fa: "\f2f5"; } + +.fa-atom { + --fa: "\f5d2"; } + +.fa-soap { + --fa: "\e06e"; } + +.fa-icons { + --fa: "\f86d"; } + +.fa-heart-music-camera-bolt { + --fa: "\f86d"; } + +.fa-microphone-lines-slash { + --fa: "\f539"; } + +.fa-microphone-alt-slash { + --fa: "\f539"; } + +.fa-bridge-circle-check { + --fa: "\e4c9"; } + +.fa-pump-medical { + --fa: "\e06a"; } + +.fa-fingerprint { + --fa: "\f577"; } + +.fa-hand-point-right { + --fa: "\f0a4"; } + +.fa-magnifying-glass-location { + --fa: "\f689"; } + +.fa-search-location { + --fa: "\f689"; } + +.fa-forward-step { + --fa: "\f051"; } + +.fa-step-forward { + --fa: "\f051"; } + +.fa-face-smile-beam { + --fa: "\f5b8"; } + +.fa-smile-beam { + --fa: "\f5b8"; } + +.fa-flag-checkered { + --fa: "\f11e"; } + +.fa-football { + --fa: "\f44e"; } + +.fa-football-ball { + --fa: "\f44e"; } + +.fa-school-circle-exclamation { + --fa: "\e56c"; } + +.fa-crop { + --fa: "\f125"; } + +.fa-angles-down { + --fa: "\f103"; } + +.fa-angle-double-down { + --fa: "\f103"; } + +.fa-users-rectangle { + --fa: "\e594"; } + +.fa-people-roof { + --fa: "\e537"; } + +.fa-people-line { + --fa: "\e534"; } + +.fa-beer-mug-empty { + --fa: "\f0fc"; } + +.fa-beer { + --fa: "\f0fc"; } + +.fa-diagram-predecessor { + --fa: "\e477"; } + +.fa-arrow-up-long { + --fa: "\f176"; } + +.fa-long-arrow-up { + --fa: "\f176"; } + +.fa-fire-flame-simple { + --fa: "\f46a"; } + +.fa-burn { + --fa: "\f46a"; } + +.fa-person { + --fa: "\f183"; } + +.fa-male { + --fa: "\f183"; } + +.fa-laptop { + --fa: "\f109"; } + +.fa-file-csv { + --fa: "\f6dd"; } + +.fa-menorah { + --fa: "\f676"; } + +.fa-truck-plane { + --fa: "\e58f"; } + +.fa-record-vinyl { + --fa: "\f8d9"; } + +.fa-face-grin-stars { + --fa: "\f587"; } + +.fa-grin-stars { + --fa: "\f587"; } + +.fa-bong { + --fa: "\f55c"; } + +.fa-spaghetti-monster-flying { + --fa: "\f67b"; } + +.fa-pastafarianism { + --fa: "\f67b"; } + +.fa-arrow-down-up-across-line { + --fa: "\e4af"; } + +.fa-spoon { + --fa: "\f2e5"; } + +.fa-utensil-spoon { + --fa: "\f2e5"; } + +.fa-jar-wheat { + --fa: "\e517"; } + +.fa-envelopes-bulk { + --fa: "\f674"; } + +.fa-mail-bulk { + --fa: "\f674"; } + +.fa-file-circle-exclamation { + --fa: "\e4eb"; } + +.fa-circle-h { + --fa: "\f47e"; } + +.fa-hospital-symbol { + --fa: "\f47e"; } + +.fa-pager { + --fa: "\f815"; } + +.fa-address-book { + --fa: "\f2b9"; } + +.fa-contact-book { + --fa: "\f2b9"; } + +.fa-strikethrough { + --fa: "\f0cc"; } + +.fa-k { + --fa: "\4b"; } + +.fa-landmark-flag { + --fa: "\e51c"; } + +.fa-pencil { + --fa: "\f303"; } + +.fa-pencil-alt { + --fa: "\f303"; } + +.fa-backward { + --fa: "\f04a"; } + +.fa-caret-right { + --fa: "\f0da"; } + +.fa-comments { + --fa: "\f086"; } + +.fa-paste { + --fa: "\f0ea"; } + +.fa-file-clipboard { + --fa: "\f0ea"; } + +.fa-code-pull-request { + --fa: "\e13c"; } + +.fa-clipboard-list { + --fa: "\f46d"; } + +.fa-truck-ramp-box { + --fa: "\f4de"; } + +.fa-truck-loading { + --fa: "\f4de"; } + +.fa-user-check { + --fa: "\f4fc"; } + +.fa-vial-virus { + --fa: "\e597"; } + +.fa-sheet-plastic { + --fa: "\e571"; } + +.fa-blog { + --fa: "\f781"; } + +.fa-user-ninja { + --fa: "\f504"; } + +.fa-person-arrow-up-from-line { + --fa: "\e539"; } + +.fa-scroll-torah { + --fa: "\f6a0"; } + +.fa-torah { + --fa: "\f6a0"; } + +.fa-broom-ball { + --fa: "\f458"; } + +.fa-quidditch { + --fa: "\f458"; } + +.fa-quidditch-broom-ball { + --fa: "\f458"; } + +.fa-toggle-off { + --fa: "\f204"; } + +.fa-box-archive { + --fa: "\f187"; } + +.fa-archive { + --fa: "\f187"; } + +.fa-person-drowning { + --fa: "\e545"; } + +.fa-arrow-down-9-1 { + --fa: "\f886"; } + +.fa-sort-numeric-desc { + --fa: "\f886"; } + +.fa-sort-numeric-down-alt { + --fa: "\f886"; } + +.fa-face-grin-tongue-squint { + --fa: "\f58a"; } + +.fa-grin-tongue-squint { + --fa: "\f58a"; } + +.fa-spray-can { + --fa: "\f5bd"; } + +.fa-truck-monster { + --fa: "\f63b"; } + +.fa-w { + --fa: "\57"; } + +.fa-earth-africa { + --fa: "\f57c"; } + +.fa-globe-africa { + --fa: "\f57c"; } + +.fa-rainbow { + --fa: "\f75b"; } + +.fa-circle-notch { + --fa: "\f1ce"; } + +.fa-tablet-screen-button { + --fa: "\f3fa"; } + +.fa-tablet-alt { + --fa: "\f3fa"; } + +.fa-paw { + --fa: "\f1b0"; } + +.fa-cloud { + --fa: "\f0c2"; } + +.fa-trowel-bricks { + --fa: "\e58a"; } + +.fa-face-flushed { + --fa: "\f579"; } + +.fa-flushed { + --fa: "\f579"; } + +.fa-hospital-user { + --fa: "\f80d"; } + +.fa-tent-arrow-left-right { + --fa: "\e57f"; } + +.fa-gavel { + --fa: "\f0e3"; } + +.fa-legal { + --fa: "\f0e3"; } + +.fa-binoculars { + --fa: "\f1e5"; } + +.fa-microphone-slash { + --fa: "\f131"; } + +.fa-box-tissue { + --fa: "\e05b"; } + +.fa-motorcycle { + --fa: "\f21c"; } + +.fa-bell-concierge { + --fa: "\f562"; } + +.fa-concierge-bell { + --fa: "\f562"; } + +.fa-pen-ruler { + --fa: "\f5ae"; } + +.fa-pencil-ruler { + --fa: "\f5ae"; } + +.fa-people-arrows { + --fa: "\e068"; } + +.fa-people-arrows-left-right { + --fa: "\e068"; } + +.fa-mars-and-venus-burst { + --fa: "\e523"; } + +.fa-square-caret-right { + --fa: "\f152"; } + +.fa-caret-square-right { + --fa: "\f152"; } + +.fa-scissors { + --fa: "\f0c4"; } + +.fa-cut { + --fa: "\f0c4"; } + +.fa-sun-plant-wilt { + --fa: "\e57a"; } + +.fa-toilets-portable { + --fa: "\e584"; } + +.fa-hockey-puck { + --fa: "\f453"; } + +.fa-table { + --fa: "\f0ce"; } + +.fa-magnifying-glass-arrow-right { + --fa: "\e521"; } + +.fa-tachograph-digital { + --fa: "\f566"; } + +.fa-digital-tachograph { + --fa: "\f566"; } + +.fa-users-slash { + --fa: "\e073"; } + +.fa-clover { + --fa: "\e139"; } + +.fa-reply { + --fa: "\f3e5"; } + +.fa-mail-reply { + --fa: "\f3e5"; } + +.fa-star-and-crescent { + --fa: "\f699"; } + +.fa-house-fire { + --fa: "\e50c"; } + +.fa-square-minus { + --fa: "\f146"; } + +.fa-minus-square { + --fa: "\f146"; } + +.fa-helicopter { + --fa: "\f533"; } + +.fa-compass { + --fa: "\f14e"; } + +.fa-square-caret-down { + --fa: "\f150"; } + +.fa-caret-square-down { + --fa: "\f150"; } + +.fa-file-circle-question { + --fa: "\e4ef"; } + +.fa-laptop-code { + --fa: "\f5fc"; } + +.fa-swatchbook { + --fa: "\f5c3"; } + +.fa-prescription-bottle { + --fa: "\f485"; } + +.fa-bars { + --fa: "\f0c9"; } + +.fa-navicon { + --fa: "\f0c9"; } + +.fa-people-group { + --fa: "\e533"; } + +.fa-hourglass-end { + --fa: "\f253"; } + +.fa-hourglass-3 { + --fa: "\f253"; } + +.fa-heart-crack { + --fa: "\f7a9"; } + +.fa-heart-broken { + --fa: "\f7a9"; } + +.fa-square-up-right { + --fa: "\f360"; } + +.fa-external-link-square-alt { + --fa: "\f360"; } + +.fa-face-kiss-beam { + --fa: "\f597"; } + +.fa-kiss-beam { + --fa: "\f597"; } + +.fa-film { + --fa: "\f008"; } + +.fa-ruler-horizontal { + --fa: "\f547"; } + +.fa-people-robbery { + --fa: "\e536"; } + +.fa-lightbulb { + --fa: "\f0eb"; } + +.fa-caret-left { + --fa: "\f0d9"; } + +.fa-circle-exclamation { + --fa: "\f06a"; } + +.fa-exclamation-circle { + --fa: "\f06a"; } + +.fa-school-circle-xmark { + --fa: "\e56d"; } + +.fa-arrow-right-from-bracket { + --fa: "\f08b"; } + +.fa-sign-out { + --fa: "\f08b"; } + +.fa-circle-chevron-down { + --fa: "\f13a"; } + +.fa-chevron-circle-down { + --fa: "\f13a"; } + +.fa-unlock-keyhole { + --fa: "\f13e"; } + +.fa-unlock-alt { + --fa: "\f13e"; } + +.fa-cloud-showers-heavy { + --fa: "\f740"; } + +.fa-headphones-simple { + --fa: "\f58f"; } + +.fa-headphones-alt { + --fa: "\f58f"; } + +.fa-sitemap { + --fa: "\f0e8"; } + +.fa-circle-dollar-to-slot { + --fa: "\f4b9"; } + +.fa-donate { + --fa: "\f4b9"; } + +.fa-memory { + --fa: "\f538"; } + +.fa-road-spikes { + --fa: "\e568"; } + +.fa-fire-burner { + --fa: "\e4f1"; } + +.fa-flag { + --fa: "\f024"; } + +.fa-hanukiah { + --fa: "\f6e6"; } + +.fa-feather { + --fa: "\f52d"; } + +.fa-volume-low { + --fa: "\f027"; } + +.fa-volume-down { + --fa: "\f027"; } + +.fa-comment-slash { + --fa: "\f4b3"; } + +.fa-cloud-sun-rain { + --fa: "\f743"; } + +.fa-compress { + --fa: "\f066"; } + +.fa-wheat-awn { + --fa: "\e2cd"; } + +.fa-wheat-alt { + --fa: "\e2cd"; } + +.fa-ankh { + --fa: "\f644"; } + +.fa-hands-holding-child { + --fa: "\e4fa"; } + +.fa-asterisk { + --fa: "\2a"; } + +.fa-square-check { + --fa: "\f14a"; } + +.fa-check-square { + --fa: "\f14a"; } + +.fa-peseta-sign { + --fa: "\e221"; } + +.fa-heading { + --fa: "\f1dc"; } + +.fa-header { + --fa: "\f1dc"; } + +.fa-ghost { + --fa: "\f6e2"; } + +.fa-list { + --fa: "\f03a"; } + +.fa-list-squares { + --fa: "\f03a"; } + +.fa-square-phone-flip { + --fa: "\f87b"; } + +.fa-phone-square-alt { + --fa: "\f87b"; } + +.fa-cart-plus { + --fa: "\f217"; } + +.fa-gamepad { + --fa: "\f11b"; } + +.fa-circle-dot { + --fa: "\f192"; } + +.fa-dot-circle { + --fa: "\f192"; } + +.fa-face-dizzy { + --fa: "\f567"; } + +.fa-dizzy { + --fa: "\f567"; } + +.fa-egg { + --fa: "\f7fb"; } + +.fa-house-medical-circle-xmark { + --fa: "\e513"; } + +.fa-campground { + --fa: "\f6bb"; } + +.fa-folder-plus { + --fa: "\f65e"; } + +.fa-futbol { + --fa: "\f1e3"; } + +.fa-futbol-ball { + --fa: "\f1e3"; } + +.fa-soccer-ball { + --fa: "\f1e3"; } + +.fa-paintbrush { + --fa: "\f1fc"; } + +.fa-paint-brush { + --fa: "\f1fc"; } + +.fa-lock { + --fa: "\f023"; } + +.fa-gas-pump { + --fa: "\f52f"; } + +.fa-hot-tub-person { + --fa: "\f593"; } + +.fa-hot-tub { + --fa: "\f593"; } + +.fa-map-location { + --fa: "\f59f"; } + +.fa-map-marked { + --fa: "\f59f"; } + +.fa-house-flood-water { + --fa: "\e50e"; } + +.fa-tree { + --fa: "\f1bb"; } + +.fa-bridge-lock { + --fa: "\e4cc"; } + +.fa-sack-dollar { + --fa: "\f81d"; } + +.fa-pen-to-square { + --fa: "\f044"; } + +.fa-edit { + --fa: "\f044"; } + +.fa-car-side { + --fa: "\f5e4"; } + +.fa-share-nodes { + --fa: "\f1e0"; } + +.fa-share-alt { + --fa: "\f1e0"; } + +.fa-heart-circle-minus { + --fa: "\e4ff"; } + +.fa-hourglass-half { + --fa: "\f252"; } + +.fa-hourglass-2 { + --fa: "\f252"; } + +.fa-microscope { + --fa: "\f610"; } + +.fa-sink { + --fa: "\e06d"; } + +.fa-bag-shopping { + --fa: "\f290"; } + +.fa-shopping-bag { + --fa: "\f290"; } + +.fa-arrow-down-z-a { + --fa: "\f881"; } + +.fa-sort-alpha-desc { + --fa: "\f881"; } + +.fa-sort-alpha-down-alt { + --fa: "\f881"; } + +.fa-mitten { + --fa: "\f7b5"; } + +.fa-person-rays { + --fa: "\e54d"; } + +.fa-users { + --fa: "\f0c0"; } + +.fa-eye-slash { + --fa: "\f070"; } + +.fa-flask-vial { + --fa: "\e4f3"; } + +.fa-hand { + --fa: "\f256"; } + +.fa-hand-paper { + --fa: "\f256"; } + +.fa-om { + --fa: "\f679"; } + +.fa-worm { + --fa: "\e599"; } + +.fa-house-circle-xmark { + --fa: "\e50b"; } + +.fa-plug { + --fa: "\f1e6"; } + +.fa-chevron-up { + --fa: "\f077"; } + +.fa-hand-spock { + --fa: "\f259"; } + +.fa-stopwatch { + --fa: "\f2f2"; } + +.fa-face-kiss { + --fa: "\f596"; } + +.fa-kiss { + --fa: "\f596"; } + +.fa-bridge-circle-xmark { + --fa: "\e4cb"; } + +.fa-face-grin-tongue { + --fa: "\f589"; } + +.fa-grin-tongue { + --fa: "\f589"; } + +.fa-chess-bishop { + --fa: "\f43a"; } + +.fa-face-grin-wink { + --fa: "\f58c"; } + +.fa-grin-wink { + --fa: "\f58c"; } + +.fa-ear-deaf { + --fa: "\f2a4"; } + +.fa-deaf { + --fa: "\f2a4"; } + +.fa-deafness { + --fa: "\f2a4"; } + +.fa-hard-of-hearing { + --fa: "\f2a4"; } + +.fa-road-circle-check { + --fa: "\e564"; } + +.fa-dice-five { + --fa: "\f523"; } + +.fa-square-rss { + --fa: "\f143"; } + +.fa-rss-square { + --fa: "\f143"; } + +.fa-land-mine-on { + --fa: "\e51b"; } + +.fa-i-cursor { + --fa: "\f246"; } + +.fa-stamp { + --fa: "\f5bf"; } + +.fa-stairs { + --fa: "\e289"; } + +.fa-i { + --fa: "\49"; } + +.fa-hryvnia-sign { + --fa: "\f6f2"; } + +.fa-hryvnia { + --fa: "\f6f2"; } + +.fa-pills { + --fa: "\f484"; } + +.fa-face-grin-wide { + --fa: "\f581"; } + +.fa-grin-alt { + --fa: "\f581"; } + +.fa-tooth { + --fa: "\f5c9"; } + +.fa-v { + --fa: "\56"; } + +.fa-bangladeshi-taka-sign { + --fa: "\e2e6"; } + +.fa-bicycle { + --fa: "\f206"; } + +.fa-staff-snake { + --fa: "\e579"; } + +.fa-rod-asclepius { + --fa: "\e579"; } + +.fa-rod-snake { + --fa: "\e579"; } + +.fa-staff-aesculapius { + --fa: "\e579"; } + +.fa-head-side-cough-slash { + --fa: "\e062"; } + +.fa-truck-medical { + --fa: "\f0f9"; } + +.fa-ambulance { + --fa: "\f0f9"; } + +.fa-wheat-awn-circle-exclamation { + --fa: "\e598"; } + +.fa-snowman { + --fa: "\f7d0"; } + +.fa-mortar-pestle { + --fa: "\f5a7"; } + +.fa-road-barrier { + --fa: "\e562"; } + +.fa-school { + --fa: "\f549"; } + +.fa-igloo { + --fa: "\f7ae"; } + +.fa-joint { + --fa: "\f595"; } + +.fa-angle-right { + --fa: "\f105"; } + +.fa-horse { + --fa: "\f6f0"; } + +.fa-q { + --fa: "\51"; } + +.fa-g { + --fa: "\47"; } + +.fa-notes-medical { + --fa: "\f481"; } + +.fa-temperature-half { + --fa: "\f2c9"; } + +.fa-temperature-2 { + --fa: "\f2c9"; } + +.fa-thermometer-2 { + --fa: "\f2c9"; } + +.fa-thermometer-half { + --fa: "\f2c9"; } + +.fa-dong-sign { + --fa: "\e169"; } + +.fa-capsules { + --fa: "\f46b"; } + +.fa-poo-storm { + --fa: "\f75a"; } + +.fa-poo-bolt { + --fa: "\f75a"; } + +.fa-face-frown-open { + --fa: "\f57a"; } + +.fa-frown-open { + --fa: "\f57a"; } + +.fa-hand-point-up { + --fa: "\f0a6"; } + +.fa-money-bill { + --fa: "\f0d6"; } + +.fa-bookmark { + --fa: "\f02e"; } + +.fa-align-justify { + --fa: "\f039"; } + +.fa-umbrella-beach { + --fa: "\f5ca"; } + +.fa-helmet-un { + --fa: "\e503"; } + +.fa-bullseye { + --fa: "\f140"; } + +.fa-bacon { + --fa: "\f7e5"; } + +.fa-hand-point-down { + --fa: "\f0a7"; } + +.fa-arrow-up-from-bracket { + --fa: "\e09a"; } + +.fa-folder { + --fa: "\f07b"; } + +.fa-folder-blank { + --fa: "\f07b"; } + +.fa-file-waveform { + --fa: "\f478"; } + +.fa-file-medical-alt { + --fa: "\f478"; } + +.fa-radiation { + --fa: "\f7b9"; } + +.fa-chart-simple { + --fa: "\e473"; } + +.fa-mars-stroke { + --fa: "\f229"; } + +.fa-vial { + --fa: "\f492"; } + +.fa-gauge { + --fa: "\f624"; } + +.fa-dashboard { + --fa: "\f624"; } + +.fa-gauge-med { + --fa: "\f624"; } + +.fa-tachometer-alt-average { + --fa: "\f624"; } + +.fa-wand-magic-sparkles { + --fa: "\e2ca"; } + +.fa-magic-wand-sparkles { + --fa: "\e2ca"; } + +.fa-e { + --fa: "\45"; } + +.fa-pen-clip { + --fa: "\f305"; } + +.fa-pen-alt { + --fa: "\f305"; } + +.fa-bridge-circle-exclamation { + --fa: "\e4ca"; } + +.fa-user { + --fa: "\f007"; } + +.fa-school-circle-check { + --fa: "\e56b"; } + +.fa-dumpster { + --fa: "\f793"; } + +.fa-van-shuttle { + --fa: "\f5b6"; } + +.fa-shuttle-van { + --fa: "\f5b6"; } + +.fa-building-user { + --fa: "\e4da"; } + +.fa-square-caret-left { + --fa: "\f191"; } + +.fa-caret-square-left { + --fa: "\f191"; } + +.fa-highlighter { + --fa: "\f591"; } + +.fa-key { + --fa: "\f084"; } + +.fa-bullhorn { + --fa: "\f0a1"; } + +.fa-globe { + --fa: "\f0ac"; } + +.fa-synagogue { + --fa: "\f69b"; } + +.fa-person-half-dress { + --fa: "\e548"; } + +.fa-road-bridge { + --fa: "\e563"; } + +.fa-location-arrow { + --fa: "\f124"; } + +.fa-c { + --fa: "\43"; } + +.fa-tablet-button { + --fa: "\f10a"; } + +.fa-building-lock { + --fa: "\e4d6"; } + +.fa-pizza-slice { + --fa: "\f818"; } + +.fa-money-bill-wave { + --fa: "\f53a"; } + +.fa-chart-area { + --fa: "\f1fe"; } + +.fa-area-chart { + --fa: "\f1fe"; } + +.fa-house-flag { + --fa: "\e50d"; } + +.fa-person-circle-minus { + --fa: "\e540"; } + +.fa-ban { + --fa: "\f05e"; } + +.fa-cancel { + --fa: "\f05e"; } + +.fa-camera-rotate { + --fa: "\e0d8"; } + +.fa-spray-can-sparkles { + --fa: "\f5d0"; } + +.fa-air-freshener { + --fa: "\f5d0"; } + +.fa-star { + --fa: "\f005"; } + +.fa-repeat { + --fa: "\f363"; } + +.fa-cross { + --fa: "\f654"; } + +.fa-box { + --fa: "\f466"; } + +.fa-venus-mars { + --fa: "\f228"; } + +.fa-arrow-pointer { + --fa: "\f245"; } + +.fa-mouse-pointer { + --fa: "\f245"; } + +.fa-maximize { + --fa: "\f31e"; } + +.fa-expand-arrows-alt { + --fa: "\f31e"; } + +.fa-charging-station { + --fa: "\f5e7"; } + +.fa-shapes { + --fa: "\f61f"; } + +.fa-triangle-circle-square { + --fa: "\f61f"; } + +.fa-shuffle { + --fa: "\f074"; } + +.fa-random { + --fa: "\f074"; } + +.fa-person-running { + --fa: "\f70c"; } + +.fa-running { + --fa: "\f70c"; } + +.fa-mobile-retro { + --fa: "\e527"; } + +.fa-grip-lines-vertical { + --fa: "\f7a5"; } + +.fa-spider { + --fa: "\f717"; } + +.fa-hands-bound { + --fa: "\e4f9"; } + +.fa-file-invoice-dollar { + --fa: "\f571"; } + +.fa-plane-circle-exclamation { + --fa: "\e556"; } + +.fa-x-ray { + --fa: "\f497"; } + +.fa-spell-check { + --fa: "\f891"; } + +.fa-slash { + --fa: "\f715"; } + +.fa-computer-mouse { + --fa: "\f8cc"; } + +.fa-mouse { + --fa: "\f8cc"; } + +.fa-arrow-right-to-bracket { + --fa: "\f090"; } + +.fa-sign-in { + --fa: "\f090"; } + +.fa-shop-slash { + --fa: "\e070"; } + +.fa-store-alt-slash { + --fa: "\e070"; } + +.fa-server { + --fa: "\f233"; } + +.fa-virus-covid-slash { + --fa: "\e4a9"; } + +.fa-shop-lock { + --fa: "\e4a5"; } + +.fa-hourglass-start { + --fa: "\f251"; } + +.fa-hourglass-1 { + --fa: "\f251"; } + +.fa-blender-phone { + --fa: "\f6b6"; } + +.fa-building-wheat { + --fa: "\e4db"; } + +.fa-person-breastfeeding { + --fa: "\e53a"; } + +.fa-right-to-bracket { + --fa: "\f2f6"; } + +.fa-sign-in-alt { + --fa: "\f2f6"; } + +.fa-venus { + --fa: "\f221"; } + +.fa-passport { + --fa: "\f5ab"; } + +.fa-thumbtack-slash { + --fa: "\e68f"; } + +.fa-thumb-tack-slash { + --fa: "\e68f"; } + +.fa-heart-pulse { + --fa: "\f21e"; } + +.fa-heartbeat { + --fa: "\f21e"; } + +.fa-people-carry-box { + --fa: "\f4ce"; } + +.fa-people-carry { + --fa: "\f4ce"; } + +.fa-temperature-high { + --fa: "\f769"; } + +.fa-microchip { + --fa: "\f2db"; } + +.fa-crown { + --fa: "\f521"; } + +.fa-weight-hanging { + --fa: "\f5cd"; } + +.fa-xmarks-lines { + --fa: "\e59a"; } + +.fa-file-prescription { + --fa: "\f572"; } + +.fa-weight-scale { + --fa: "\f496"; } + +.fa-weight { + --fa: "\f496"; } + +.fa-user-group { + --fa: "\f500"; } + +.fa-user-friends { + --fa: "\f500"; } + +.fa-arrow-up-a-z { + --fa: "\f15e"; } + +.fa-sort-alpha-up { + --fa: "\f15e"; } + +.fa-chess-knight { + --fa: "\f441"; } + +.fa-face-laugh-squint { + --fa: "\f59b"; } + +.fa-laugh-squint { + --fa: "\f59b"; } + +.fa-wheelchair { + --fa: "\f193"; } + +.fa-circle-arrow-up { + --fa: "\f0aa"; } + +.fa-arrow-circle-up { + --fa: "\f0aa"; } + +.fa-toggle-on { + --fa: "\f205"; } + +.fa-person-walking { + --fa: "\f554"; } + +.fa-walking { + --fa: "\f554"; } + +.fa-l { + --fa: "\4c"; } + +.fa-fire { + --fa: "\f06d"; } + +.fa-bed-pulse { + --fa: "\f487"; } + +.fa-procedures { + --fa: "\f487"; } + +.fa-shuttle-space { + --fa: "\f197"; } + +.fa-space-shuttle { + --fa: "\f197"; } + +.fa-face-laugh { + --fa: "\f599"; } + +.fa-laugh { + --fa: "\f599"; } + +.fa-folder-open { + --fa: "\f07c"; } + +.fa-heart-circle-plus { + --fa: "\e500"; } + +.fa-code-fork { + --fa: "\e13b"; } + +.fa-city { + --fa: "\f64f"; } + +.fa-microphone-lines { + --fa: "\f3c9"; } + +.fa-microphone-alt { + --fa: "\f3c9"; } + +.fa-pepper-hot { + --fa: "\f816"; } + +.fa-unlock { + --fa: "\f09c"; } + +.fa-colon-sign { + --fa: "\e140"; } + +.fa-headset { + --fa: "\f590"; } + +.fa-store-slash { + --fa: "\e071"; } + +.fa-road-circle-xmark { + --fa: "\e566"; } + +.fa-user-minus { + --fa: "\f503"; } + +.fa-mars-stroke-up { + --fa: "\f22a"; } + +.fa-mars-stroke-v { + --fa: "\f22a"; } + +.fa-champagne-glasses { + --fa: "\f79f"; } + +.fa-glass-cheers { + --fa: "\f79f"; } + +.fa-clipboard { + --fa: "\f328"; } + +.fa-house-circle-exclamation { + --fa: "\e50a"; } + +.fa-file-arrow-up { + --fa: "\f574"; } + +.fa-file-upload { + --fa: "\f574"; } + +.fa-wifi { + --fa: "\f1eb"; } + +.fa-wifi-3 { + --fa: "\f1eb"; } + +.fa-wifi-strong { + --fa: "\f1eb"; } + +.fa-bath { + --fa: "\f2cd"; } + +.fa-bathtub { + --fa: "\f2cd"; } + +.fa-underline { + --fa: "\f0cd"; } + +.fa-user-pen { + --fa: "\f4ff"; } + +.fa-user-edit { + --fa: "\f4ff"; } + +.fa-signature { + --fa: "\f5b7"; } + +.fa-stroopwafel { + --fa: "\f551"; } + +.fa-bold { + --fa: "\f032"; } + +.fa-anchor-lock { + --fa: "\e4ad"; } + +.fa-building-ngo { + --fa: "\e4d7"; } + +.fa-manat-sign { + --fa: "\e1d5"; } + +.fa-not-equal { + --fa: "\f53e"; } + +.fa-border-top-left { + --fa: "\f853"; } + +.fa-border-style { + --fa: "\f853"; } + +.fa-map-location-dot { + --fa: "\f5a0"; } + +.fa-map-marked-alt { + --fa: "\f5a0"; } + +.fa-jedi { + --fa: "\f669"; } + +.fa-square-poll-vertical { + --fa: "\f681"; } + +.fa-poll { + --fa: "\f681"; } + +.fa-mug-hot { + --fa: "\f7b6"; } + +.fa-car-battery { + --fa: "\f5df"; } + +.fa-battery-car { + --fa: "\f5df"; } + +.fa-gift { + --fa: "\f06b"; } + +.fa-dice-two { + --fa: "\f528"; } + +.fa-chess-queen { + --fa: "\f445"; } + +.fa-glasses { + --fa: "\f530"; } + +.fa-chess-board { + --fa: "\f43c"; } + +.fa-building-circle-check { + --fa: "\e4d2"; } + +.fa-person-chalkboard { + --fa: "\e53d"; } + +.fa-mars-stroke-right { + --fa: "\f22b"; } + +.fa-mars-stroke-h { + --fa: "\f22b"; } + +.fa-hand-back-fist { + --fa: "\f255"; } + +.fa-hand-rock { + --fa: "\f255"; } + +.fa-square-caret-up { + --fa: "\f151"; } + +.fa-caret-square-up { + --fa: "\f151"; } + +.fa-cloud-showers-water { + --fa: "\e4e4"; } + +.fa-chart-bar { + --fa: "\f080"; } + +.fa-bar-chart { + --fa: "\f080"; } + +.fa-hands-bubbles { + --fa: "\e05e"; } + +.fa-hands-wash { + --fa: "\e05e"; } + +.fa-less-than-equal { + --fa: "\f537"; } + +.fa-train { + --fa: "\f238"; } + +.fa-eye-low-vision { + --fa: "\f2a8"; } + +.fa-low-vision { + --fa: "\f2a8"; } + +.fa-crow { + --fa: "\f520"; } + +.fa-sailboat { + --fa: "\e445"; } + +.fa-window-restore { + --fa: "\f2d2"; } + +.fa-square-plus { + --fa: "\f0fe"; } + +.fa-plus-square { + --fa: "\f0fe"; } + +.fa-torii-gate { + --fa: "\f6a1"; } + +.fa-frog { + --fa: "\f52e"; } + +.fa-bucket { + --fa: "\e4cf"; } + +.fa-image { + --fa: "\f03e"; } + +.fa-microphone { + --fa: "\f130"; } + +.fa-cow { + --fa: "\f6c8"; } + +.fa-caret-up { + --fa: "\f0d8"; } + +.fa-screwdriver { + --fa: "\f54a"; } + +.fa-folder-closed { + --fa: "\e185"; } + +.fa-house-tsunami { + --fa: "\e515"; } + +.fa-square-nfi { + --fa: "\e576"; } + +.fa-arrow-up-from-ground-water { + --fa: "\e4b5"; } + +.fa-martini-glass { + --fa: "\f57b"; } + +.fa-glass-martini-alt { + --fa: "\f57b"; } + +.fa-square-binary { + --fa: "\e69b"; } + +.fa-rotate-left { + --fa: "\f2ea"; } + +.fa-rotate-back { + --fa: "\f2ea"; } + +.fa-rotate-backward { + --fa: "\f2ea"; } + +.fa-undo-alt { + --fa: "\f2ea"; } + +.fa-table-columns { + --fa: "\f0db"; } + +.fa-columns { + --fa: "\f0db"; } + +.fa-lemon { + --fa: "\f094"; } + +.fa-head-side-mask { + --fa: "\e063"; } + +.fa-handshake { + --fa: "\f2b5"; } + +.fa-gem { + --fa: "\f3a5"; } + +.fa-dolly { + --fa: "\f472"; } + +.fa-dolly-box { + --fa: "\f472"; } + +.fa-smoking { + --fa: "\f48d"; } + +.fa-minimize { + --fa: "\f78c"; } + +.fa-compress-arrows-alt { + --fa: "\f78c"; } + +.fa-monument { + --fa: "\f5a6"; } + +.fa-snowplow { + --fa: "\f7d2"; } + +.fa-angles-right { + --fa: "\f101"; } + +.fa-angle-double-right { + --fa: "\f101"; } + +.fa-cannabis { + --fa: "\f55f"; } + +.fa-circle-play { + --fa: "\f144"; } + +.fa-play-circle { + --fa: "\f144"; } + +.fa-tablets { + --fa: "\f490"; } + +.fa-ethernet { + --fa: "\f796"; } + +.fa-euro-sign { + --fa: "\f153"; } + +.fa-eur { + --fa: "\f153"; } + +.fa-euro { + --fa: "\f153"; } + +.fa-chair { + --fa: "\f6c0"; } + +.fa-circle-check { + --fa: "\f058"; } + +.fa-check-circle { + --fa: "\f058"; } + +.fa-circle-stop { + --fa: "\f28d"; } + +.fa-stop-circle { + --fa: "\f28d"; } + +.fa-compass-drafting { + --fa: "\f568"; } + +.fa-drafting-compass { + --fa: "\f568"; } + +.fa-plate-wheat { + --fa: "\e55a"; } + +.fa-icicles { + --fa: "\f7ad"; } + +.fa-person-shelter { + --fa: "\e54f"; } + +.fa-neuter { + --fa: "\f22c"; } + +.fa-id-badge { + --fa: "\f2c1"; } + +.fa-marker { + --fa: "\f5a1"; } + +.fa-face-laugh-beam { + --fa: "\f59a"; } + +.fa-laugh-beam { + --fa: "\f59a"; } + +.fa-helicopter-symbol { + --fa: "\e502"; } + +.fa-universal-access { + --fa: "\f29a"; } + +.fa-circle-chevron-up { + --fa: "\f139"; } + +.fa-chevron-circle-up { + --fa: "\f139"; } + +.fa-lari-sign { + --fa: "\e1c8"; } + +.fa-volcano { + --fa: "\f770"; } + +.fa-person-walking-dashed-line-arrow-right { + --fa: "\e553"; } + +.fa-sterling-sign { + --fa: "\f154"; } + +.fa-gbp { + --fa: "\f154"; } + +.fa-pound-sign { + --fa: "\f154"; } + +.fa-viruses { + --fa: "\e076"; } + +.fa-square-person-confined { + --fa: "\e577"; } + +.fa-user-tie { + --fa: "\f508"; } + +.fa-arrow-down-long { + --fa: "\f175"; } + +.fa-long-arrow-down { + --fa: "\f175"; } + +.fa-tent-arrow-down-to-line { + --fa: "\e57e"; } + +.fa-certificate { + --fa: "\f0a3"; } + +.fa-reply-all { + --fa: "\f122"; } + +.fa-mail-reply-all { + --fa: "\f122"; } + +.fa-suitcase { + --fa: "\f0f2"; } + +.fa-person-skating { + --fa: "\f7c5"; } + +.fa-skating { + --fa: "\f7c5"; } + +.fa-filter-circle-dollar { + --fa: "\f662"; } + +.fa-funnel-dollar { + --fa: "\f662"; } + +.fa-camera-retro { + --fa: "\f083"; } + +.fa-circle-arrow-down { + --fa: "\f0ab"; } + +.fa-arrow-circle-down { + --fa: "\f0ab"; } + +.fa-file-import { + --fa: "\f56f"; } + +.fa-arrow-right-to-file { + --fa: "\f56f"; } + +.fa-square-arrow-up-right { + --fa: "\f14c"; } + +.fa-external-link-square { + --fa: "\f14c"; } + +.fa-box-open { + --fa: "\f49e"; } + +.fa-scroll { + --fa: "\f70e"; } + +.fa-spa { + --fa: "\f5bb"; } + +.fa-location-pin-lock { + --fa: "\e51f"; } + +.fa-pause { + --fa: "\f04c"; } + +.fa-hill-avalanche { + --fa: "\e507"; } + +.fa-temperature-empty { + --fa: "\f2cb"; } + +.fa-temperature-0 { + --fa: "\f2cb"; } + +.fa-thermometer-0 { + --fa: "\f2cb"; } + +.fa-thermometer-empty { + --fa: "\f2cb"; } + +.fa-bomb { + --fa: "\f1e2"; } + +.fa-registered { + --fa: "\f25d"; } + +.fa-address-card { + --fa: "\f2bb"; } + +.fa-contact-card { + --fa: "\f2bb"; } + +.fa-vcard { + --fa: "\f2bb"; } + +.fa-scale-unbalanced-flip { + --fa: "\f516"; } + +.fa-balance-scale-right { + --fa: "\f516"; } + +.fa-subscript { + --fa: "\f12c"; } + +.fa-diamond-turn-right { + --fa: "\f5eb"; } + +.fa-directions { + --fa: "\f5eb"; } + +.fa-burst { + --fa: "\e4dc"; } + +.fa-house-laptop { + --fa: "\e066"; } + +.fa-laptop-house { + --fa: "\e066"; } + +.fa-face-tired { + --fa: "\f5c8"; } + +.fa-tired { + --fa: "\f5c8"; } + +.fa-money-bills { + --fa: "\e1f3"; } + +.fa-smog { + --fa: "\f75f"; } + +.fa-crutch { + --fa: "\f7f7"; } + +.fa-cloud-arrow-up { + --fa: "\f0ee"; } + +.fa-cloud-upload { + --fa: "\f0ee"; } + +.fa-cloud-upload-alt { + --fa: "\f0ee"; } + +.fa-palette { + --fa: "\f53f"; } + +.fa-arrows-turn-right { + --fa: "\e4c0"; } + +.fa-vest { + --fa: "\e085"; } + +.fa-ferry { + --fa: "\e4ea"; } + +.fa-arrows-down-to-people { + --fa: "\e4b9"; } + +.fa-seedling { + --fa: "\f4d8"; } + +.fa-sprout { + --fa: "\f4d8"; } + +.fa-left-right { + --fa: "\f337"; } + +.fa-arrows-alt-h { + --fa: "\f337"; } + +.fa-boxes-packing { + --fa: "\e4c7"; } + +.fa-circle-arrow-left { + --fa: "\f0a8"; } + +.fa-arrow-circle-left { + --fa: "\f0a8"; } + +.fa-group-arrows-rotate { + --fa: "\e4f6"; } + +.fa-bowl-food { + --fa: "\e4c6"; } + +.fa-candy-cane { + --fa: "\f786"; } + +.fa-arrow-down-wide-short { + --fa: "\f160"; } + +.fa-sort-amount-asc { + --fa: "\f160"; } + +.fa-sort-amount-down { + --fa: "\f160"; } + +.fa-cloud-bolt { + --fa: "\f76c"; } + +.fa-thunderstorm { + --fa: "\f76c"; } + +.fa-text-slash { + --fa: "\f87d"; } + +.fa-remove-format { + --fa: "\f87d"; } + +.fa-face-smile-wink { + --fa: "\f4da"; } + +.fa-smile-wink { + --fa: "\f4da"; } + +.fa-file-word { + --fa: "\f1c2"; } + +.fa-file-powerpoint { + --fa: "\f1c4"; } + +.fa-arrows-left-right { + --fa: "\f07e"; } + +.fa-arrows-h { + --fa: "\f07e"; } + +.fa-house-lock { + --fa: "\e510"; } + +.fa-cloud-arrow-down { + --fa: "\f0ed"; } + +.fa-cloud-download { + --fa: "\f0ed"; } + +.fa-cloud-download-alt { + --fa: "\f0ed"; } + +.fa-children { + --fa: "\e4e1"; } + +.fa-chalkboard { + --fa: "\f51b"; } + +.fa-blackboard { + --fa: "\f51b"; } + +.fa-user-large-slash { + --fa: "\f4fa"; } + +.fa-user-alt-slash { + --fa: "\f4fa"; } + +.fa-envelope-open { + --fa: "\f2b6"; } + +.fa-handshake-simple-slash { + --fa: "\e05f"; } + +.fa-handshake-alt-slash { + --fa: "\e05f"; } + +.fa-mattress-pillow { + --fa: "\e525"; } + +.fa-guarani-sign { + --fa: "\e19a"; } + +.fa-arrows-rotate { + --fa: "\f021"; } + +.fa-refresh { + --fa: "\f021"; } + +.fa-sync { + --fa: "\f021"; } + +.fa-fire-extinguisher { + --fa: "\f134"; } + +.fa-cruzeiro-sign { + --fa: "\e152"; } + +.fa-greater-than-equal { + --fa: "\f532"; } + +.fa-shield-halved { + --fa: "\f3ed"; } + +.fa-shield-alt { + --fa: "\f3ed"; } + +.fa-book-atlas { + --fa: "\f558"; } + +.fa-atlas { + --fa: "\f558"; } + +.fa-virus { + --fa: "\e074"; } + +.fa-envelope-circle-check { + --fa: "\e4e8"; } + +.fa-layer-group { + --fa: "\f5fd"; } + +.fa-arrows-to-dot { + --fa: "\e4be"; } + +.fa-archway { + --fa: "\f557"; } + +.fa-heart-circle-check { + --fa: "\e4fd"; } + +.fa-house-chimney-crack { + --fa: "\f6f1"; } + +.fa-house-damage { + --fa: "\f6f1"; } + +.fa-file-zipper { + --fa: "\f1c6"; } + +.fa-file-archive { + --fa: "\f1c6"; } + +.fa-square { + --fa: "\f0c8"; } + +.fa-martini-glass-empty { + --fa: "\f000"; } + +.fa-glass-martini { + --fa: "\f000"; } + +.fa-couch { + --fa: "\f4b8"; } + +.fa-cedi-sign { + --fa: "\e0df"; } + +.fa-italic { + --fa: "\f033"; } + +.fa-table-cells-column-lock { + --fa: "\e678"; } + +.fa-church { + --fa: "\f51d"; } + +.fa-comments-dollar { + --fa: "\f653"; } + +.fa-democrat { + --fa: "\f747"; } + +.fa-z { + --fa: "\5a"; } + +.fa-person-skiing { + --fa: "\f7c9"; } + +.fa-skiing { + --fa: "\f7c9"; } + +.fa-road-lock { + --fa: "\e567"; } + +.fa-a { + --fa: "\41"; } + +.fa-temperature-arrow-down { + --fa: "\e03f"; } + +.fa-temperature-down { + --fa: "\e03f"; } + +.fa-feather-pointed { + --fa: "\f56b"; } + +.fa-feather-alt { + --fa: "\f56b"; } + +.fa-p { + --fa: "\50"; } + +.fa-snowflake { + --fa: "\f2dc"; } + +.fa-newspaper { + --fa: "\f1ea"; } + +.fa-rectangle-ad { + --fa: "\f641"; } + +.fa-ad { + --fa: "\f641"; } + +.fa-circle-arrow-right { + --fa: "\f0a9"; } + +.fa-arrow-circle-right { + --fa: "\f0a9"; } + +.fa-filter-circle-xmark { + --fa: "\e17b"; } + +.fa-locust { + --fa: "\e520"; } + +.fa-sort { + --fa: "\f0dc"; } + +.fa-unsorted { + --fa: "\f0dc"; } + +.fa-list-ol { + --fa: "\f0cb"; } + +.fa-list-1-2 { + --fa: "\f0cb"; } + +.fa-list-numeric { + --fa: "\f0cb"; } + +.fa-person-dress-burst { + --fa: "\e544"; } + +.fa-money-check-dollar { + --fa: "\f53d"; } + +.fa-money-check-alt { + --fa: "\f53d"; } + +.fa-vector-square { + --fa: "\f5cb"; } + +.fa-bread-slice { + --fa: "\f7ec"; } + +.fa-language { + --fa: "\f1ab"; } + +.fa-face-kiss-wink-heart { + --fa: "\f598"; } + +.fa-kiss-wink-heart { + --fa: "\f598"; } + +.fa-filter { + --fa: "\f0b0"; } + +.fa-question { + --fa: "\3f"; } + +.fa-file-signature { + --fa: "\f573"; } + +.fa-up-down-left-right { + --fa: "\f0b2"; } + +.fa-arrows-alt { + --fa: "\f0b2"; } + +.fa-house-chimney-user { + --fa: "\e065"; } + +.fa-hand-holding-heart { + --fa: "\f4be"; } + +.fa-puzzle-piece { + --fa: "\f12e"; } + +.fa-money-check { + --fa: "\f53c"; } + +.fa-star-half-stroke { + --fa: "\f5c0"; } + +.fa-star-half-alt { + --fa: "\f5c0"; } + +.fa-code { + --fa: "\f121"; } + +.fa-whiskey-glass { + --fa: "\f7a0"; } + +.fa-glass-whiskey { + --fa: "\f7a0"; } + +.fa-building-circle-exclamation { + --fa: "\e4d3"; } + +.fa-magnifying-glass-chart { + --fa: "\e522"; } + +.fa-arrow-up-right-from-square { + --fa: "\f08e"; } + +.fa-external-link { + --fa: "\f08e"; } + +.fa-cubes-stacked { + --fa: "\e4e6"; } + +.fa-won-sign { + --fa: "\f159"; } + +.fa-krw { + --fa: "\f159"; } + +.fa-won { + --fa: "\f159"; } + +.fa-virus-covid { + --fa: "\e4a8"; } + +.fa-austral-sign { + --fa: "\e0a9"; } + +.fa-f { + --fa: "\46"; } + +.fa-leaf { + --fa: "\f06c"; } + +.fa-road { + --fa: "\f018"; } + +.fa-taxi { + --fa: "\f1ba"; } + +.fa-cab { + --fa: "\f1ba"; } + +.fa-person-circle-plus { + --fa: "\e541"; } + +.fa-chart-pie { + --fa: "\f200"; } + +.fa-pie-chart { + --fa: "\f200"; } + +.fa-bolt-lightning { + --fa: "\e0b7"; } + +.fa-sack-xmark { + --fa: "\e56a"; } + +.fa-file-excel { + --fa: "\f1c3"; } + +.fa-file-contract { + --fa: "\f56c"; } + +.fa-fish-fins { + --fa: "\e4f2"; } + +.fa-building-flag { + --fa: "\e4d5"; } + +.fa-face-grin-beam { + --fa: "\f582"; } + +.fa-grin-beam { + --fa: "\f582"; } + +.fa-object-ungroup { + --fa: "\f248"; } + +.fa-poop { + --fa: "\f619"; } + +.fa-location-pin { + --fa: "\f041"; } + +.fa-map-marker { + --fa: "\f041"; } + +.fa-kaaba { + --fa: "\f66b"; } + +.fa-toilet-paper { + --fa: "\f71e"; } + +.fa-helmet-safety { + --fa: "\f807"; } + +.fa-hard-hat { + --fa: "\f807"; } + +.fa-hat-hard { + --fa: "\f807"; } + +.fa-eject { + --fa: "\f052"; } + +.fa-circle-right { + --fa: "\f35a"; } + +.fa-arrow-alt-circle-right { + --fa: "\f35a"; } + +.fa-plane-circle-check { + --fa: "\e555"; } + +.fa-face-rolling-eyes { + --fa: "\f5a5"; } + +.fa-meh-rolling-eyes { + --fa: "\f5a5"; } + +.fa-object-group { + --fa: "\f247"; } + +.fa-chart-line { + --fa: "\f201"; } + +.fa-line-chart { + --fa: "\f201"; } + +.fa-mask-ventilator { + --fa: "\e524"; } + +.fa-arrow-right { + --fa: "\f061"; } + +.fa-signs-post { + --fa: "\f277"; } + +.fa-map-signs { + --fa: "\f277"; } + +.fa-cash-register { + --fa: "\f788"; } + +.fa-person-circle-question { + --fa: "\e542"; } + +.fa-h { + --fa: "\48"; } + +.fa-tarp { + --fa: "\e57b"; } + +.fa-screwdriver-wrench { + --fa: "\f7d9"; } + +.fa-tools { + --fa: "\f7d9"; } + +.fa-arrows-to-eye { + --fa: "\e4bf"; } + +.fa-plug-circle-bolt { + --fa: "\e55b"; } + +.fa-heart { + --fa: "\f004"; } + +.fa-mars-and-venus { + --fa: "\f224"; } + +.fa-house-user { + --fa: "\e1b0"; } + +.fa-home-user { + --fa: "\e1b0"; } + +.fa-dumpster-fire { + --fa: "\f794"; } + +.fa-house-crack { + --fa: "\e3b1"; } + +.fa-martini-glass-citrus { + --fa: "\f561"; } + +.fa-cocktail { + --fa: "\f561"; } + +.fa-face-surprise { + --fa: "\f5c2"; } + +.fa-surprise { + --fa: "\f5c2"; } + +.fa-bottle-water { + --fa: "\e4c5"; } + +.fa-circle-pause { + --fa: "\f28b"; } + +.fa-pause-circle { + --fa: "\f28b"; } + +.fa-toilet-paper-slash { + --fa: "\e072"; } + +.fa-apple-whole { + --fa: "\f5d1"; } + +.fa-apple-alt { + --fa: "\f5d1"; } + +.fa-kitchen-set { + --fa: "\e51a"; } + +.fa-r { + --fa: "\52"; } + +.fa-temperature-quarter { + --fa: "\f2ca"; } + +.fa-temperature-1 { + --fa: "\f2ca"; } + +.fa-thermometer-1 { + --fa: "\f2ca"; } + +.fa-thermometer-quarter { + --fa: "\f2ca"; } + +.fa-cube { + --fa: "\f1b2"; } + +.fa-bitcoin-sign { + --fa: "\e0b4"; } + +.fa-shield-dog { + --fa: "\e573"; } + +.fa-solar-panel { + --fa: "\f5ba"; } + +.fa-lock-open { + --fa: "\f3c1"; } + +.fa-elevator { + --fa: "\e16d"; } + +.fa-money-bill-transfer { + --fa: "\e528"; } + +.fa-money-bill-trend-up { + --fa: "\e529"; } + +.fa-house-flood-water-circle-arrow-right { + --fa: "\e50f"; } + +.fa-square-poll-horizontal { + --fa: "\f682"; } + +.fa-poll-h { + --fa: "\f682"; } + +.fa-circle { + --fa: "\f111"; } + +.fa-backward-fast { + --fa: "\f049"; } + +.fa-fast-backward { + --fa: "\f049"; } + +.fa-recycle { + --fa: "\f1b8"; } + +.fa-user-astronaut { + --fa: "\f4fb"; } + +.fa-plane-slash { + --fa: "\e069"; } + +.fa-trademark { + --fa: "\f25c"; } + +.fa-basketball { + --fa: "\f434"; } + +.fa-basketball-ball { + --fa: "\f434"; } + +.fa-satellite-dish { + --fa: "\f7c0"; } + +.fa-circle-up { + --fa: "\f35b"; } + +.fa-arrow-alt-circle-up { + --fa: "\f35b"; } + +.fa-mobile-screen-button { + --fa: "\f3cd"; } + +.fa-mobile-alt { + --fa: "\f3cd"; } + +.fa-volume-high { + --fa: "\f028"; } + +.fa-volume-up { + --fa: "\f028"; } + +.fa-users-rays { + --fa: "\e593"; } + +.fa-wallet { + --fa: "\f555"; } + +.fa-clipboard-check { + --fa: "\f46c"; } + +.fa-file-audio { + --fa: "\f1c7"; } + +.fa-burger { + --fa: "\f805"; } + +.fa-hamburger { + --fa: "\f805"; } + +.fa-wrench { + --fa: "\f0ad"; } + +.fa-bugs { + --fa: "\e4d0"; } + +.fa-rupee-sign { + --fa: "\f156"; } + +.fa-rupee { + --fa: "\f156"; } + +.fa-file-image { + --fa: "\f1c5"; } + +.fa-circle-question { + --fa: "\f059"; } + +.fa-question-circle { + --fa: "\f059"; } + +.fa-plane-departure { + --fa: "\f5b0"; } + +.fa-handshake-slash { + --fa: "\e060"; } + +.fa-book-bookmark { + --fa: "\e0bb"; } + +.fa-code-branch { + --fa: "\f126"; } + +.fa-hat-cowboy { + --fa: "\f8c0"; } + +.fa-bridge { + --fa: "\e4c8"; } + +.fa-phone-flip { + --fa: "\f879"; } + +.fa-phone-alt { + --fa: "\f879"; } + +.fa-truck-front { + --fa: "\e2b7"; } + +.fa-cat { + --fa: "\f6be"; } + +.fa-anchor-circle-exclamation { + --fa: "\e4ab"; } + +.fa-truck-field { + --fa: "\e58d"; } + +.fa-route { + --fa: "\f4d7"; } + +.fa-clipboard-question { + --fa: "\e4e3"; } + +.fa-panorama { + --fa: "\e209"; } + +.fa-comment-medical { + --fa: "\f7f5"; } + +.fa-teeth-open { + --fa: "\f62f"; } + +.fa-file-circle-minus { + --fa: "\e4ed"; } + +.fa-tags { + --fa: "\f02c"; } + +.fa-wine-glass { + --fa: "\f4e3"; } + +.fa-forward-fast { + --fa: "\f050"; } + +.fa-fast-forward { + --fa: "\f050"; } + +.fa-face-meh-blank { + --fa: "\f5a4"; } + +.fa-meh-blank { + --fa: "\f5a4"; } + +.fa-square-parking { + --fa: "\f540"; } + +.fa-parking { + --fa: "\f540"; } + +.fa-house-signal { + --fa: "\e012"; } + +.fa-bars-progress { + --fa: "\f828"; } + +.fa-tasks-alt { + --fa: "\f828"; } + +.fa-faucet-drip { + --fa: "\e006"; } + +.fa-cart-flatbed { + --fa: "\f474"; } + +.fa-dolly-flatbed { + --fa: "\f474"; } + +.fa-ban-smoking { + --fa: "\f54d"; } + +.fa-smoking-ban { + --fa: "\f54d"; } + +.fa-terminal { + --fa: "\f120"; } + +.fa-mobile-button { + --fa: "\f10b"; } + +.fa-house-medical-flag { + --fa: "\e514"; } + +.fa-basket-shopping { + --fa: "\f291"; } + +.fa-shopping-basket { + --fa: "\f291"; } + +.fa-tape { + --fa: "\f4db"; } + +.fa-bus-simple { + --fa: "\f55e"; } + +.fa-bus-alt { + --fa: "\f55e"; } + +.fa-eye { + --fa: "\f06e"; } + +.fa-face-sad-cry { + --fa: "\f5b3"; } + +.fa-sad-cry { + --fa: "\f5b3"; } + +.fa-audio-description { + --fa: "\f29e"; } + +.fa-person-military-to-person { + --fa: "\e54c"; } + +.fa-file-shield { + --fa: "\e4f0"; } + +.fa-user-slash { + --fa: "\f506"; } + +.fa-pen { + --fa: "\f304"; } + +.fa-tower-observation { + --fa: "\e586"; } + +.fa-file-code { + --fa: "\f1c9"; } + +.fa-signal { + --fa: "\f012"; } + +.fa-signal-5 { + --fa: "\f012"; } + +.fa-signal-perfect { + --fa: "\f012"; } + +.fa-bus { + --fa: "\f207"; } + +.fa-heart-circle-xmark { + --fa: "\e501"; } + +.fa-house-chimney { + --fa: "\e3af"; } + +.fa-home-lg { + --fa: "\e3af"; } + +.fa-window-maximize { + --fa: "\f2d0"; } + +.fa-face-frown { + --fa: "\f119"; } + +.fa-frown { + --fa: "\f119"; } + +.fa-prescription { + --fa: "\f5b1"; } + +.fa-shop { + --fa: "\f54f"; } + +.fa-store-alt { + --fa: "\f54f"; } + +.fa-floppy-disk { + --fa: "\f0c7"; } + +.fa-save { + --fa: "\f0c7"; } + +.fa-vihara { + --fa: "\f6a7"; } + +.fa-scale-unbalanced { + --fa: "\f515"; } + +.fa-balance-scale-left { + --fa: "\f515"; } + +.fa-sort-up { + --fa: "\f0de"; } + +.fa-sort-asc { + --fa: "\f0de"; } + +.fa-comment-dots { + --fa: "\f4ad"; } + +.fa-commenting { + --fa: "\f4ad"; } + +.fa-plant-wilt { + --fa: "\e5aa"; } + +.fa-diamond { + --fa: "\f219"; } + +.fa-face-grin-squint { + --fa: "\f585"; } + +.fa-grin-squint { + --fa: "\f585"; } + +.fa-hand-holding-dollar { + --fa: "\f4c0"; } + +.fa-hand-holding-usd { + --fa: "\f4c0"; } + +.fa-chart-diagram { + --fa: "\e695"; } + +.fa-bacterium { + --fa: "\e05a"; } + +.fa-hand-pointer { + --fa: "\f25a"; } + +.fa-drum-steelpan { + --fa: "\f56a"; } + +.fa-hand-scissors { + --fa: "\f257"; } + +.fa-hands-praying { + --fa: "\f684"; } + +.fa-praying-hands { + --fa: "\f684"; } + +.fa-arrow-rotate-right { + --fa: "\f01e"; } + +.fa-arrow-right-rotate { + --fa: "\f01e"; } + +.fa-arrow-rotate-forward { + --fa: "\f01e"; } + +.fa-redo { + --fa: "\f01e"; } + +.fa-biohazard { + --fa: "\f780"; } + +.fa-location-crosshairs { + --fa: "\f601"; } + +.fa-location { + --fa: "\f601"; } + +.fa-mars-double { + --fa: "\f227"; } + +.fa-child-dress { + --fa: "\e59c"; } + +.fa-users-between-lines { + --fa: "\e591"; } + +.fa-lungs-virus { + --fa: "\e067"; } + +.fa-face-grin-tears { + --fa: "\f588"; } + +.fa-grin-tears { + --fa: "\f588"; } + +.fa-phone { + --fa: "\f095"; } + +.fa-calendar-xmark { + --fa: "\f273"; } + +.fa-calendar-times { + --fa: "\f273"; } + +.fa-child-reaching { + --fa: "\e59d"; } + +.fa-head-side-virus { + --fa: "\e064"; } + +.fa-user-gear { + --fa: "\f4fe"; } + +.fa-user-cog { + --fa: "\f4fe"; } + +.fa-arrow-up-1-9 { + --fa: "\f163"; } + +.fa-sort-numeric-up { + --fa: "\f163"; } + +.fa-door-closed { + --fa: "\f52a"; } + +.fa-shield-virus { + --fa: "\e06c"; } + +.fa-dice-six { + --fa: "\f526"; } + +.fa-mosquito-net { + --fa: "\e52c"; } + +.fa-file-fragment { + --fa: "\e697"; } + +.fa-bridge-water { + --fa: "\e4ce"; } + +.fa-person-booth { + --fa: "\f756"; } + +.fa-text-width { + --fa: "\f035"; } + +.fa-hat-wizard { + --fa: "\f6e8"; } + +.fa-pen-fancy { + --fa: "\f5ac"; } + +.fa-person-digging { + --fa: "\f85e"; } + +.fa-digging { + --fa: "\f85e"; } + +.fa-trash { + --fa: "\f1f8"; } + +.fa-gauge-simple { + --fa: "\f629"; } + +.fa-gauge-simple-med { + --fa: "\f629"; } + +.fa-tachometer-average { + --fa: "\f629"; } + +.fa-book-medical { + --fa: "\f7e6"; } + +.fa-poo { + --fa: "\f2fe"; } + +.fa-quote-right { + --fa: "\f10e"; } + +.fa-quote-right-alt { + --fa: "\f10e"; } + +.fa-shirt { + --fa: "\f553"; } + +.fa-t-shirt { + --fa: "\f553"; } + +.fa-tshirt { + --fa: "\f553"; } + +.fa-cubes { + --fa: "\f1b3"; } + +.fa-divide { + --fa: "\f529"; } + +.fa-tenge-sign { + --fa: "\f7d7"; } + +.fa-tenge { + --fa: "\f7d7"; } + +.fa-headphones { + --fa: "\f025"; } + +.fa-hands-holding { + --fa: "\f4c2"; } + +.fa-hands-clapping { + --fa: "\e1a8"; } + +.fa-republican { + --fa: "\f75e"; } + +.fa-arrow-left { + --fa: "\f060"; } + +.fa-person-circle-xmark { + --fa: "\e543"; } + +.fa-ruler { + --fa: "\f545"; } + +.fa-align-left { + --fa: "\f036"; } + +.fa-dice-d6 { + --fa: "\f6d1"; } + +.fa-restroom { + --fa: "\f7bd"; } + +.fa-j { + --fa: "\4a"; } + +.fa-users-viewfinder { + --fa: "\e595"; } + +.fa-file-video { + --fa: "\f1c8"; } + +.fa-up-right-from-square { + --fa: "\f35d"; } + +.fa-external-link-alt { + --fa: "\f35d"; } + +.fa-table-cells { + --fa: "\f00a"; } + +.fa-th { + --fa: "\f00a"; } + +.fa-file-pdf { + --fa: "\f1c1"; } + +.fa-book-bible { + --fa: "\f647"; } + +.fa-bible { + --fa: "\f647"; } + +.fa-o { + --fa: "\4f"; } + +.fa-suitcase-medical { + --fa: "\f0fa"; } + +.fa-medkit { + --fa: "\f0fa"; } + +.fa-user-secret { + --fa: "\f21b"; } + +.fa-otter { + --fa: "\f700"; } + +.fa-person-dress { + --fa: "\f182"; } + +.fa-female { + --fa: "\f182"; } + +.fa-comment-dollar { + --fa: "\f651"; } + +.fa-business-time { + --fa: "\f64a"; } + +.fa-briefcase-clock { + --fa: "\f64a"; } + +.fa-table-cells-large { + --fa: "\f009"; } + +.fa-th-large { + --fa: "\f009"; } + +.fa-book-tanakh { + --fa: "\f827"; } + +.fa-tanakh { + --fa: "\f827"; } + +.fa-phone-volume { + --fa: "\f2a0"; } + +.fa-volume-control-phone { + --fa: "\f2a0"; } + +.fa-hat-cowboy-side { + --fa: "\f8c1"; } + +.fa-clipboard-user { + --fa: "\f7f3"; } + +.fa-child { + --fa: "\f1ae"; } + +.fa-lira-sign { + --fa: "\f195"; } + +.fa-satellite { + --fa: "\f7bf"; } + +.fa-plane-lock { + --fa: "\e558"; } + +.fa-tag { + --fa: "\f02b"; } + +.fa-comment { + --fa: "\f075"; } + +.fa-cake-candles { + --fa: "\f1fd"; } + +.fa-birthday-cake { + --fa: "\f1fd"; } + +.fa-cake { + --fa: "\f1fd"; } + +.fa-envelope { + --fa: "\f0e0"; } + +.fa-angles-up { + --fa: "\f102"; } + +.fa-angle-double-up { + --fa: "\f102"; } + +.fa-paperclip { + --fa: "\f0c6"; } + +.fa-arrow-right-to-city { + --fa: "\e4b3"; } + +.fa-ribbon { + --fa: "\f4d6"; } + +.fa-lungs { + --fa: "\f604"; } + +.fa-arrow-up-9-1 { + --fa: "\f887"; } + +.fa-sort-numeric-up-alt { + --fa: "\f887"; } + +.fa-litecoin-sign { + --fa: "\e1d3"; } + +.fa-border-none { + --fa: "\f850"; } + +.fa-circle-nodes { + --fa: "\e4e2"; } + +.fa-parachute-box { + --fa: "\f4cd"; } + +.fa-indent { + --fa: "\f03c"; } + +.fa-truck-field-un { + --fa: "\e58e"; } + +.fa-hourglass { + --fa: "\f254"; } + +.fa-hourglass-empty { + --fa: "\f254"; } + +.fa-mountain { + --fa: "\f6fc"; } + +.fa-user-doctor { + --fa: "\f0f0"; } + +.fa-user-md { + --fa: "\f0f0"; } + +.fa-circle-info { + --fa: "\f05a"; } + +.fa-info-circle { + --fa: "\f05a"; } + +.fa-cloud-meatball { + --fa: "\f73b"; } + +.fa-camera { + --fa: "\f030"; } + +.fa-camera-alt { + --fa: "\f030"; } + +.fa-square-virus { + --fa: "\e578"; } + +.fa-meteor { + --fa: "\f753"; } + +.fa-car-on { + --fa: "\e4dd"; } + +.fa-sleigh { + --fa: "\f7cc"; } + +.fa-arrow-down-1-9 { + --fa: "\f162"; } + +.fa-sort-numeric-asc { + --fa: "\f162"; } + +.fa-sort-numeric-down { + --fa: "\f162"; } + +.fa-hand-holding-droplet { + --fa: "\f4c1"; } + +.fa-hand-holding-water { + --fa: "\f4c1"; } + +.fa-water { + --fa: "\f773"; } + +.fa-calendar-check { + --fa: "\f274"; } + +.fa-braille { + --fa: "\f2a1"; } + +.fa-prescription-bottle-medical { + --fa: "\f486"; } + +.fa-prescription-bottle-alt { + --fa: "\f486"; } + +.fa-landmark { + --fa: "\f66f"; } + +.fa-truck { + --fa: "\f0d1"; } + +.fa-crosshairs { + --fa: "\f05b"; } + +.fa-person-cane { + --fa: "\e53c"; } + +.fa-tent { + --fa: "\e57d"; } + +.fa-vest-patches { + --fa: "\e086"; } + +.fa-check-double { + --fa: "\f560"; } + +.fa-arrow-down-a-z { + --fa: "\f15d"; } + +.fa-sort-alpha-asc { + --fa: "\f15d"; } + +.fa-sort-alpha-down { + --fa: "\f15d"; } + +.fa-money-bill-wheat { + --fa: "\e52a"; } + +.fa-cookie { + --fa: "\f563"; } + +.fa-arrow-rotate-left { + --fa: "\f0e2"; } + +.fa-arrow-left-rotate { + --fa: "\f0e2"; } + +.fa-arrow-rotate-back { + --fa: "\f0e2"; } + +.fa-arrow-rotate-backward { + --fa: "\f0e2"; } + +.fa-undo { + --fa: "\f0e2"; } + +.fa-hard-drive { + --fa: "\f0a0"; } + +.fa-hdd { + --fa: "\f0a0"; } + +.fa-face-grin-squint-tears { + --fa: "\f586"; } + +.fa-grin-squint-tears { + --fa: "\f586"; } + +.fa-dumbbell { + --fa: "\f44b"; } + +.fa-rectangle-list { + --fa: "\f022"; } + +.fa-list-alt { + --fa: "\f022"; } + +.fa-tarp-droplet { + --fa: "\e57c"; } + +.fa-house-medical-circle-check { + --fa: "\e511"; } + +.fa-person-skiing-nordic { + --fa: "\f7ca"; } + +.fa-skiing-nordic { + --fa: "\f7ca"; } + +.fa-calendar-plus { + --fa: "\f271"; } + +.fa-plane-arrival { + --fa: "\f5af"; } + +.fa-circle-left { + --fa: "\f359"; } + +.fa-arrow-alt-circle-left { + --fa: "\f359"; } + +.fa-train-subway { + --fa: "\f239"; } + +.fa-subway { + --fa: "\f239"; } + +.fa-chart-gantt { + --fa: "\e0e4"; } + +.fa-indian-rupee-sign { + --fa: "\e1bc"; } + +.fa-indian-rupee { + --fa: "\e1bc"; } + +.fa-inr { + --fa: "\e1bc"; } + +.fa-crop-simple { + --fa: "\f565"; } + +.fa-crop-alt { + --fa: "\f565"; } + +.fa-money-bill-1 { + --fa: "\f3d1"; } + +.fa-money-bill-alt { + --fa: "\f3d1"; } + +.fa-left-long { + --fa: "\f30a"; } + +.fa-long-arrow-alt-left { + --fa: "\f30a"; } + +.fa-dna { + --fa: "\f471"; } + +.fa-virus-slash { + --fa: "\e075"; } + +.fa-minus { + --fa: "\f068"; } + +.fa-subtract { + --fa: "\f068"; } + +.fa-chess { + --fa: "\f439"; } + +.fa-arrow-left-long { + --fa: "\f177"; } + +.fa-long-arrow-left { + --fa: "\f177"; } + +.fa-plug-circle-check { + --fa: "\e55c"; } + +.fa-street-view { + --fa: "\f21d"; } + +.fa-franc-sign { + --fa: "\e18f"; } + +.fa-volume-off { + --fa: "\f026"; } + +.fa-hands-asl-interpreting { + --fa: "\f2a3"; } + +.fa-american-sign-language-interpreting { + --fa: "\f2a3"; } + +.fa-asl-interpreting { + --fa: "\f2a3"; } + +.fa-hands-american-sign-language-interpreting { + --fa: "\f2a3"; } + +.fa-gear { + --fa: "\f013"; } + +.fa-cog { + --fa: "\f013"; } + +.fa-droplet-slash { + --fa: "\f5c7"; } + +.fa-tint-slash { + --fa: "\f5c7"; } + +.fa-mosque { + --fa: "\f678"; } + +.fa-mosquito { + --fa: "\e52b"; } + +.fa-star-of-david { + --fa: "\f69a"; } + +.fa-person-military-rifle { + --fa: "\e54b"; } + +.fa-cart-shopping { + --fa: "\f07a"; } + +.fa-shopping-cart { + --fa: "\f07a"; } + +.fa-vials { + --fa: "\f493"; } + +.fa-plug-circle-plus { + --fa: "\e55f"; } + +.fa-place-of-worship { + --fa: "\f67f"; } + +.fa-grip-vertical { + --fa: "\f58e"; } + +.fa-hexagon-nodes { + --fa: "\e699"; } + +.fa-arrow-turn-up { + --fa: "\f148"; } + +.fa-level-up { + --fa: "\f148"; } + +.fa-u { + --fa: "\55"; } + +.fa-square-root-variable { + --fa: "\f698"; } + +.fa-square-root-alt { + --fa: "\f698"; } + +.fa-clock { + --fa: "\f017"; } + +.fa-clock-four { + --fa: "\f017"; } + +.fa-backward-step { + --fa: "\f048"; } + +.fa-step-backward { + --fa: "\f048"; } + +.fa-pallet { + --fa: "\f482"; } + +.fa-faucet { + --fa: "\e005"; } + +.fa-baseball-bat-ball { + --fa: "\f432"; } + +.fa-s { + --fa: "\53"; } + +.fa-timeline { + --fa: "\e29c"; } + +.fa-keyboard { + --fa: "\f11c"; } + +.fa-caret-down { + --fa: "\f0d7"; } + +.fa-house-chimney-medical { + --fa: "\f7f2"; } + +.fa-clinic-medical { + --fa: "\f7f2"; } + +.fa-temperature-three-quarters { + --fa: "\f2c8"; } + +.fa-temperature-3 { + --fa: "\f2c8"; } + +.fa-thermometer-3 { + --fa: "\f2c8"; } + +.fa-thermometer-three-quarters { + --fa: "\f2c8"; } + +.fa-mobile-screen { + --fa: "\f3cf"; } + +.fa-mobile-android-alt { + --fa: "\f3cf"; } + +.fa-plane-up { + --fa: "\e22d"; } + +.fa-piggy-bank { + --fa: "\f4d3"; } + +.fa-battery-half { + --fa: "\f242"; } + +.fa-battery-3 { + --fa: "\f242"; } + +.fa-mountain-city { + --fa: "\e52e"; } + +.fa-coins { + --fa: "\f51e"; } + +.fa-khanda { + --fa: "\f66d"; } + +.fa-sliders { + --fa: "\f1de"; } + +.fa-sliders-h { + --fa: "\f1de"; } + +.fa-folder-tree { + --fa: "\f802"; } + +.fa-network-wired { + --fa: "\f6ff"; } + +.fa-map-pin { + --fa: "\f276"; } + +.fa-hamsa { + --fa: "\f665"; } + +.fa-cent-sign { + --fa: "\e3f5"; } + +.fa-flask { + --fa: "\f0c3"; } + +.fa-person-pregnant { + --fa: "\e31e"; } + +.fa-wand-sparkles { + --fa: "\f72b"; } + +.fa-ellipsis-vertical { + --fa: "\f142"; } + +.fa-ellipsis-v { + --fa: "\f142"; } + +.fa-ticket { + --fa: "\f145"; } + +.fa-power-off { + --fa: "\f011"; } + +.fa-right-long { + --fa: "\f30b"; } + +.fa-long-arrow-alt-right { + --fa: "\f30b"; } + +.fa-flag-usa { + --fa: "\f74d"; } + +.fa-laptop-file { + --fa: "\e51d"; } + +.fa-tty { + --fa: "\f1e4"; } + +.fa-teletype { + --fa: "\f1e4"; } + +.fa-diagram-next { + --fa: "\e476"; } + +.fa-person-rifle { + --fa: "\e54e"; } + +.fa-house-medical-circle-exclamation { + --fa: "\e512"; } + +.fa-closed-captioning { + --fa: "\f20a"; } + +.fa-person-hiking { + --fa: "\f6ec"; } + +.fa-hiking { + --fa: "\f6ec"; } + +.fa-venus-double { + --fa: "\f226"; } + +.fa-images { + --fa: "\f302"; } + +.fa-calculator { + --fa: "\f1ec"; } + +.fa-people-pulling { + --fa: "\e535"; } + +.fa-n { + --fa: "\4e"; } + +.fa-cable-car { + --fa: "\f7da"; } + +.fa-tram { + --fa: "\f7da"; } + +.fa-cloud-rain { + --fa: "\f73d"; } + +.fa-building-circle-xmark { + --fa: "\e4d4"; } + +.fa-ship { + --fa: "\f21a"; } + +.fa-arrows-down-to-line { + --fa: "\e4b8"; } + +.fa-download { + --fa: "\f019"; } + +.fa-face-grin { + --fa: "\f580"; } + +.fa-grin { + --fa: "\f580"; } + +.fa-delete-left { + --fa: "\f55a"; } + +.fa-backspace { + --fa: "\f55a"; } + +.fa-eye-dropper { + --fa: "\f1fb"; } + +.fa-eye-dropper-empty { + --fa: "\f1fb"; } + +.fa-eyedropper { + --fa: "\f1fb"; } + +.fa-file-circle-check { + --fa: "\e5a0"; } + +.fa-forward { + --fa: "\f04e"; } + +.fa-mobile { + --fa: "\f3ce"; } + +.fa-mobile-android { + --fa: "\f3ce"; } + +.fa-mobile-phone { + --fa: "\f3ce"; } + +.fa-face-meh { + --fa: "\f11a"; } + +.fa-meh { + --fa: "\f11a"; } + +.fa-align-center { + --fa: "\f037"; } + +.fa-book-skull { + --fa: "\f6b7"; } + +.fa-book-dead { + --fa: "\f6b7"; } + +.fa-id-card { + --fa: "\f2c2"; } + +.fa-drivers-license { + --fa: "\f2c2"; } + +.fa-outdent { + --fa: "\f03b"; } + +.fa-dedent { + --fa: "\f03b"; } + +.fa-heart-circle-exclamation { + --fa: "\e4fe"; } + +.fa-house { + --fa: "\f015"; } + +.fa-home { + --fa: "\f015"; } + +.fa-home-alt { + --fa: "\f015"; } + +.fa-home-lg-alt { + --fa: "\f015"; } + +.fa-calendar-week { + --fa: "\f784"; } + +.fa-laptop-medical { + --fa: "\f812"; } + +.fa-b { + --fa: "\42"; } + +.fa-file-medical { + --fa: "\f477"; } + +.fa-dice-one { + --fa: "\f525"; } + +.fa-kiwi-bird { + --fa: "\f535"; } + +.fa-arrow-right-arrow-left { + --fa: "\f0ec"; } + +.fa-exchange { + --fa: "\f0ec"; } + +.fa-rotate-right { + --fa: "\f2f9"; } + +.fa-redo-alt { + --fa: "\f2f9"; } + +.fa-rotate-forward { + --fa: "\f2f9"; } + +.fa-utensils { + --fa: "\f2e7"; } + +.fa-cutlery { + --fa: "\f2e7"; } + +.fa-arrow-up-wide-short { + --fa: "\f161"; } + +.fa-sort-amount-up { + --fa: "\f161"; } + +.fa-mill-sign { + --fa: "\e1ed"; } + +.fa-bowl-rice { + --fa: "\e2eb"; } + +.fa-skull { + --fa: "\f54c"; } + +.fa-tower-broadcast { + --fa: "\f519"; } + +.fa-broadcast-tower { + --fa: "\f519"; } + +.fa-truck-pickup { + --fa: "\f63c"; } + +.fa-up-long { + --fa: "\f30c"; } + +.fa-long-arrow-alt-up { + --fa: "\f30c"; } + +.fa-stop { + --fa: "\f04d"; } + +.fa-code-merge { + --fa: "\f387"; } + +.fa-upload { + --fa: "\f093"; } + +.fa-hurricane { + --fa: "\f751"; } + +.fa-mound { + --fa: "\e52d"; } + +.fa-toilet-portable { + --fa: "\e583"; } + +.fa-compact-disc { + --fa: "\f51f"; } + +.fa-file-arrow-down { + --fa: "\f56d"; } + +.fa-file-download { + --fa: "\f56d"; } + +.fa-caravan { + --fa: "\f8ff"; } + +.fa-shield-cat { + --fa: "\e572"; } + +.fa-bolt { + --fa: "\f0e7"; } + +.fa-zap { + --fa: "\f0e7"; } + +.fa-glass-water { + --fa: "\e4f4"; } + +.fa-oil-well { + --fa: "\e532"; } + +.fa-vault { + --fa: "\e2c5"; } + +.fa-mars { + --fa: "\f222"; } + +.fa-toilet { + --fa: "\f7d8"; } + +.fa-plane-circle-xmark { + --fa: "\e557"; } + +.fa-yen-sign { + --fa: "\f157"; } + +.fa-cny { + --fa: "\f157"; } + +.fa-jpy { + --fa: "\f157"; } + +.fa-rmb { + --fa: "\f157"; } + +.fa-yen { + --fa: "\f157"; } + +.fa-ruble-sign { + --fa: "\f158"; } + +.fa-rouble { + --fa: "\f158"; } + +.fa-rub { + --fa: "\f158"; } + +.fa-ruble { + --fa: "\f158"; } + +.fa-sun { + --fa: "\f185"; } + +.fa-guitar { + --fa: "\f7a6"; } + +.fa-face-laugh-wink { + --fa: "\f59c"; } + +.fa-laugh-wink { + --fa: "\f59c"; } + +.fa-horse-head { + --fa: "\f7ab"; } + +.fa-bore-hole { + --fa: "\e4c3"; } + +.fa-industry { + --fa: "\f275"; } + +.fa-circle-down { + --fa: "\f358"; } + +.fa-arrow-alt-circle-down { + --fa: "\f358"; } + +.fa-arrows-turn-to-dots { + --fa: "\e4c1"; } + +.fa-florin-sign { + --fa: "\e184"; } + +.fa-arrow-down-short-wide { + --fa: "\f884"; } + +.fa-sort-amount-desc { + --fa: "\f884"; } + +.fa-sort-amount-down-alt { + --fa: "\f884"; } + +.fa-less-than { + --fa: "\3c"; } + +.fa-angle-down { + --fa: "\f107"; } + +.fa-car-tunnel { + --fa: "\e4de"; } + +.fa-head-side-cough { + --fa: "\e061"; } + +.fa-grip-lines { + --fa: "\f7a4"; } + +.fa-thumbs-down { + --fa: "\f165"; } + +.fa-user-lock { + --fa: "\f502"; } + +.fa-arrow-right-long { + --fa: "\f178"; } + +.fa-long-arrow-right { + --fa: "\f178"; } + +.fa-anchor-circle-xmark { + --fa: "\e4ac"; } + +.fa-ellipsis { + --fa: "\f141"; } + +.fa-ellipsis-h { + --fa: "\f141"; } + +.fa-chess-pawn { + --fa: "\f443"; } + +.fa-kit-medical { + --fa: "\f479"; } + +.fa-first-aid { + --fa: "\f479"; } + +.fa-person-through-window { + --fa: "\e5a9"; } + +.fa-toolbox { + --fa: "\f552"; } + +.fa-hands-holding-circle { + --fa: "\e4fb"; } + +.fa-bug { + --fa: "\f188"; } + +.fa-credit-card { + --fa: "\f09d"; } + +.fa-credit-card-alt { + --fa: "\f09d"; } + +.fa-car { + --fa: "\f1b9"; } + +.fa-automobile { + --fa: "\f1b9"; } + +.fa-hand-holding-hand { + --fa: "\e4f7"; } + +.fa-book-open-reader { + --fa: "\f5da"; } + +.fa-book-reader { + --fa: "\f5da"; } + +.fa-mountain-sun { + --fa: "\e52f"; } + +.fa-arrows-left-right-to-line { + --fa: "\e4ba"; } + +.fa-dice-d20 { + --fa: "\f6cf"; } + +.fa-truck-droplet { + --fa: "\e58c"; } + +.fa-file-circle-xmark { + --fa: "\e5a1"; } + +.fa-temperature-arrow-up { + --fa: "\e040"; } + +.fa-temperature-up { + --fa: "\e040"; } + +.fa-medal { + --fa: "\f5a2"; } + +.fa-bed { + --fa: "\f236"; } + +.fa-square-h { + --fa: "\f0fd"; } + +.fa-h-square { + --fa: "\f0fd"; } + +.fa-podcast { + --fa: "\f2ce"; } + +.fa-temperature-full { + --fa: "\f2c7"; } + +.fa-temperature-4 { + --fa: "\f2c7"; } + +.fa-thermometer-4 { + --fa: "\f2c7"; } + +.fa-thermometer-full { + --fa: "\f2c7"; } + +.fa-bell { + --fa: "\f0f3"; } + +.fa-superscript { + --fa: "\f12b"; } + +.fa-plug-circle-xmark { + --fa: "\e560"; } + +.fa-star-of-life { + --fa: "\f621"; } + +.fa-phone-slash { + --fa: "\f3dd"; } + +.fa-paint-roller { + --fa: "\f5aa"; } + +.fa-handshake-angle { + --fa: "\f4c4"; } + +.fa-hands-helping { + --fa: "\f4c4"; } + +.fa-location-dot { + --fa: "\f3c5"; } + +.fa-map-marker-alt { + --fa: "\f3c5"; } + +.fa-file { + --fa: "\f15b"; } + +.fa-greater-than { + --fa: "\3e"; } + +.fa-person-swimming { + --fa: "\f5c4"; } + +.fa-swimmer { + --fa: "\f5c4"; } + +.fa-arrow-down { + --fa: "\f063"; } + +.fa-droplet { + --fa: "\f043"; } + +.fa-tint { + --fa: "\f043"; } + +.fa-eraser { + --fa: "\f12d"; } + +.fa-earth-americas { + --fa: "\f57d"; } + +.fa-earth { + --fa: "\f57d"; } + +.fa-earth-america { + --fa: "\f57d"; } + +.fa-globe-americas { + --fa: "\f57d"; } + +.fa-person-burst { + --fa: "\e53b"; } + +.fa-dove { + --fa: "\f4ba"; } + +.fa-battery-empty { + --fa: "\f244"; } + +.fa-battery-0 { + --fa: "\f244"; } + +.fa-socks { + --fa: "\f696"; } + +.fa-inbox { + --fa: "\f01c"; } + +.fa-section { + --fa: "\e447"; } + +.fa-gauge-high { + --fa: "\f625"; } + +.fa-tachometer-alt { + --fa: "\f625"; } + +.fa-tachometer-alt-fast { + --fa: "\f625"; } + +.fa-envelope-open-text { + --fa: "\f658"; } + +.fa-hospital { + --fa: "\f0f8"; } + +.fa-hospital-alt { + --fa: "\f0f8"; } + +.fa-hospital-wide { + --fa: "\f0f8"; } + +.fa-wine-bottle { + --fa: "\f72f"; } + +.fa-chess-rook { + --fa: "\f447"; } + +.fa-bars-staggered { + --fa: "\f550"; } + +.fa-reorder { + --fa: "\f550"; } + +.fa-stream { + --fa: "\f550"; } + +.fa-dharmachakra { + --fa: "\f655"; } + +.fa-hotdog { + --fa: "\f80f"; } + +.fa-person-walking-with-cane { + --fa: "\f29d"; } + +.fa-blind { + --fa: "\f29d"; } + +.fa-drum { + --fa: "\f569"; } + +.fa-ice-cream { + --fa: "\f810"; } + +.fa-heart-circle-bolt { + --fa: "\e4fc"; } + +.fa-fax { + --fa: "\f1ac"; } + +.fa-paragraph { + --fa: "\f1dd"; } + +.fa-check-to-slot { + --fa: "\f772"; } + +.fa-vote-yea { + --fa: "\f772"; } + +.fa-star-half { + --fa: "\f089"; } + +.fa-boxes-stacked { + --fa: "\f468"; } + +.fa-boxes { + --fa: "\f468"; } + +.fa-boxes-alt { + --fa: "\f468"; } + +.fa-link { + --fa: "\f0c1"; } + +.fa-chain { + --fa: "\f0c1"; } + +.fa-ear-listen { + --fa: "\f2a2"; } + +.fa-assistive-listening-systems { + --fa: "\f2a2"; } + +.fa-tree-city { + --fa: "\e587"; } + +.fa-play { + --fa: "\f04b"; } + +.fa-font { + --fa: "\f031"; } + +.fa-table-cells-row-lock { + --fa: "\e67a"; } + +.fa-rupiah-sign { + --fa: "\e23d"; } + +.fa-magnifying-glass { + --fa: "\f002"; } + +.fa-search { + --fa: "\f002"; } + +.fa-table-tennis-paddle-ball { + --fa: "\f45d"; } + +.fa-ping-pong-paddle-ball { + --fa: "\f45d"; } + +.fa-table-tennis { + --fa: "\f45d"; } + +.fa-person-dots-from-line { + --fa: "\f470"; } + +.fa-diagnoses { + --fa: "\f470"; } + +.fa-trash-can-arrow-up { + --fa: "\f82a"; } + +.fa-trash-restore-alt { + --fa: "\f82a"; } + +.fa-naira-sign { + --fa: "\e1f6"; } + +.fa-cart-arrow-down { + --fa: "\f218"; } + +.fa-walkie-talkie { + --fa: "\f8ef"; } + +.fa-file-pen { + --fa: "\f31c"; } + +.fa-file-edit { + --fa: "\f31c"; } + +.fa-receipt { + --fa: "\f543"; } + +.fa-square-pen { + --fa: "\f14b"; } + +.fa-pen-square { + --fa: "\f14b"; } + +.fa-pencil-square { + --fa: "\f14b"; } + +.fa-suitcase-rolling { + --fa: "\f5c1"; } + +.fa-person-circle-exclamation { + --fa: "\e53f"; } + +.fa-chevron-down { + --fa: "\f078"; } + +.fa-battery-full { + --fa: "\f240"; } + +.fa-battery { + --fa: "\f240"; } + +.fa-battery-5 { + --fa: "\f240"; } + +.fa-skull-crossbones { + --fa: "\f714"; } + +.fa-code-compare { + --fa: "\e13a"; } + +.fa-list-ul { + --fa: "\f0ca"; } + +.fa-list-dots { + --fa: "\f0ca"; } + +.fa-school-lock { + --fa: "\e56f"; } + +.fa-tower-cell { + --fa: "\e585"; } + +.fa-down-long { + --fa: "\f309"; } + +.fa-long-arrow-alt-down { + --fa: "\f309"; } + +.fa-ranking-star { + --fa: "\e561"; } + +.fa-chess-king { + --fa: "\f43f"; } + +.fa-person-harassing { + --fa: "\e549"; } + +.fa-brazilian-real-sign { + --fa: "\e46c"; } + +.fa-landmark-dome { + --fa: "\f752"; } + +.fa-landmark-alt { + --fa: "\f752"; } + +.fa-arrow-up { + --fa: "\f062"; } + +.fa-tv { + --fa: "\f26c"; } + +.fa-television { + --fa: "\f26c"; } + +.fa-tv-alt { + --fa: "\f26c"; } + +.fa-shrimp { + --fa: "\e448"; } + +.fa-list-check { + --fa: "\f0ae"; } + +.fa-tasks { + --fa: "\f0ae"; } + +.fa-jug-detergent { + --fa: "\e519"; } + +.fa-circle-user { + --fa: "\f2bd"; } + +.fa-user-circle { + --fa: "\f2bd"; } + +.fa-user-shield { + --fa: "\f505"; } + +.fa-wind { + --fa: "\f72e"; } + +.fa-car-burst { + --fa: "\f5e1"; } + +.fa-car-crash { + --fa: "\f5e1"; } + +.fa-y { + --fa: "\59"; } + +.fa-person-snowboarding { + --fa: "\f7ce"; } + +.fa-snowboarding { + --fa: "\f7ce"; } + +.fa-truck-fast { + --fa: "\f48b"; } + +.fa-shipping-fast { + --fa: "\f48b"; } + +.fa-fish { + --fa: "\f578"; } + +.fa-user-graduate { + --fa: "\f501"; } + +.fa-circle-half-stroke { + --fa: "\f042"; } + +.fa-adjust { + --fa: "\f042"; } + +.fa-clapperboard { + --fa: "\e131"; } + +.fa-circle-radiation { + --fa: "\f7ba"; } + +.fa-radiation-alt { + --fa: "\f7ba"; } + +.fa-baseball { + --fa: "\f433"; } + +.fa-baseball-ball { + --fa: "\f433"; } + +.fa-jet-fighter-up { + --fa: "\e518"; } + +.fa-diagram-project { + --fa: "\f542"; } + +.fa-project-diagram { + --fa: "\f542"; } + +.fa-copy { + --fa: "\f0c5"; } + +.fa-volume-xmark { + --fa: "\f6a9"; } + +.fa-volume-mute { + --fa: "\f6a9"; } + +.fa-volume-times { + --fa: "\f6a9"; } + +.fa-hand-sparkles { + --fa: "\e05d"; } + +.fa-grip { + --fa: "\f58d"; } + +.fa-grip-horizontal { + --fa: "\f58d"; } + +.fa-share-from-square { + --fa: "\f14d"; } + +.fa-share-square { + --fa: "\f14d"; } + +.fa-child-combatant { + --fa: "\e4e0"; } + +.fa-child-rifle { + --fa: "\e4e0"; } + +.fa-gun { + --fa: "\e19b"; } + +.fa-square-phone { + --fa: "\f098"; } + +.fa-phone-square { + --fa: "\f098"; } + +.fa-plus { + --fa: "\2b"; } + +.fa-add { + --fa: "\2b"; } + +.fa-expand { + --fa: "\f065"; } + +.fa-computer { + --fa: "\e4e5"; } + +.fa-xmark { + --fa: "\f00d"; } + +.fa-close { + --fa: "\f00d"; } + +.fa-multiply { + --fa: "\f00d"; } + +.fa-remove { + --fa: "\f00d"; } + +.fa-times { + --fa: "\f00d"; } + +.fa-arrows-up-down-left-right { + --fa: "\f047"; } + +.fa-arrows { + --fa: "\f047"; } + +.fa-chalkboard-user { + --fa: "\f51c"; } + +.fa-chalkboard-teacher { + --fa: "\f51c"; } + +.fa-peso-sign { + --fa: "\e222"; } + +.fa-building-shield { + --fa: "\e4d8"; } + +.fa-baby { + --fa: "\f77c"; } + +.fa-users-line { + --fa: "\e592"; } + +.fa-quote-left { + --fa: "\f10d"; } + +.fa-quote-left-alt { + --fa: "\f10d"; } + +.fa-tractor { + --fa: "\f722"; } + +.fa-trash-arrow-up { + --fa: "\f829"; } + +.fa-trash-restore { + --fa: "\f829"; } + +.fa-arrow-down-up-lock { + --fa: "\e4b0"; } + +.fa-lines-leaning { + --fa: "\e51e"; } + +.fa-ruler-combined { + --fa: "\f546"; } + +.fa-copyright { + --fa: "\f1f9"; } + +.fa-equals { + --fa: "\3d"; } + +.fa-blender { + --fa: "\f517"; } + +.fa-teeth { + --fa: "\f62e"; } + +.fa-shekel-sign { + --fa: "\f20b"; } + +.fa-ils { + --fa: "\f20b"; } + +.fa-shekel { + --fa: "\f20b"; } + +.fa-sheqel { + --fa: "\f20b"; } + +.fa-sheqel-sign { + --fa: "\f20b"; } + +.fa-map { + --fa: "\f279"; } + +.fa-rocket { + --fa: "\f135"; } + +.fa-photo-film { + --fa: "\f87c"; } + +.fa-photo-video { + --fa: "\f87c"; } + +.fa-folder-minus { + --fa: "\f65d"; } + +.fa-hexagon-nodes-bolt { + --fa: "\e69a"; } + +.fa-store { + --fa: "\f54e"; } + +.fa-arrow-trend-up { + --fa: "\e098"; } + +.fa-plug-circle-minus { + --fa: "\e55e"; } + +.fa-sign-hanging { + --fa: "\f4d9"; } + +.fa-sign { + --fa: "\f4d9"; } + +.fa-bezier-curve { + --fa: "\f55b"; } + +.fa-bell-slash { + --fa: "\f1f6"; } + +.fa-tablet { + --fa: "\f3fb"; } + +.fa-tablet-android { + --fa: "\f3fb"; } + +.fa-school-flag { + --fa: "\e56e"; } + +.fa-fill { + --fa: "\f575"; } + +.fa-angle-up { + --fa: "\f106"; } + +.fa-drumstick-bite { + --fa: "\f6d7"; } + +.fa-holly-berry { + --fa: "\f7aa"; } + +.fa-chevron-left { + --fa: "\f053"; } + +.fa-bacteria { + --fa: "\e059"; } + +.fa-hand-lizard { + --fa: "\f258"; } + +.fa-notdef { + --fa: "\e1fe"; } + +.fa-disease { + --fa: "\f7fa"; } + +.fa-briefcase-medical { + --fa: "\f469"; } + +.fa-genderless { + --fa: "\f22d"; } + +.fa-chevron-right { + --fa: "\f054"; } + +.fa-retweet { + --fa: "\f079"; } + +.fa-car-rear { + --fa: "\f5de"; } + +.fa-car-alt { + --fa: "\f5de"; } + +.fa-pump-soap { + --fa: "\e06b"; } + +.fa-video-slash { + --fa: "\f4e2"; } + +.fa-battery-quarter { + --fa: "\f243"; } + +.fa-battery-2 { + --fa: "\f243"; } + +.fa-radio { + --fa: "\f8d7"; } + +.fa-baby-carriage { + --fa: "\f77d"; } + +.fa-carriage-baby { + --fa: "\f77d"; } + +.fa-traffic-light { + --fa: "\f637"; } + +.fa-thermometer { + --fa: "\f491"; } + +.fa-vr-cardboard { + --fa: "\f729"; } + +.fa-hand-middle-finger { + --fa: "\f806"; } + +.fa-percent { + --fa: "\25"; } + +.fa-percentage { + --fa: "\25"; } + +.fa-truck-moving { + --fa: "\f4df"; } + +.fa-glass-water-droplet { + --fa: "\e4f5"; } + +.fa-display { + --fa: "\e163"; } + +.fa-face-smile { + --fa: "\f118"; } + +.fa-smile { + --fa: "\f118"; } + +.fa-thumbtack { + --fa: "\f08d"; } + +.fa-thumb-tack { + --fa: "\f08d"; } + +.fa-trophy { + --fa: "\f091"; } + +.fa-person-praying { + --fa: "\f683"; } + +.fa-pray { + --fa: "\f683"; } + +.fa-hammer { + --fa: "\f6e3"; } + +.fa-hand-peace { + --fa: "\f25b"; } + +.fa-rotate { + --fa: "\f2f1"; } + +.fa-sync-alt { + --fa: "\f2f1"; } + +.fa-spinner { + --fa: "\f110"; } + +.fa-robot { + --fa: "\f544"; } + +.fa-peace { + --fa: "\f67c"; } + +.fa-gears { + --fa: "\f085"; } + +.fa-cogs { + --fa: "\f085"; } + +.fa-warehouse { + --fa: "\f494"; } + +.fa-arrow-up-right-dots { + --fa: "\e4b7"; } + +.fa-splotch { + --fa: "\f5bc"; } + +.fa-face-grin-hearts { + --fa: "\f584"; } + +.fa-grin-hearts { + --fa: "\f584"; } + +.fa-dice-four { + --fa: "\f524"; } + +.fa-sim-card { + --fa: "\f7c4"; } + +.fa-transgender { + --fa: "\f225"; } + +.fa-transgender-alt { + --fa: "\f225"; } + +.fa-mercury { + --fa: "\f223"; } + +.fa-arrow-turn-down { + --fa: "\f149"; } + +.fa-level-down { + --fa: "\f149"; } + +.fa-person-falling-burst { + --fa: "\e547"; } + +.fa-award { + --fa: "\f559"; } + +.fa-ticket-simple { + --fa: "\f3ff"; } + +.fa-ticket-alt { + --fa: "\f3ff"; } + +.fa-building { + --fa: "\f1ad"; } + +.fa-angles-left { + --fa: "\f100"; } + +.fa-angle-double-left { + --fa: "\f100"; } + +.fa-qrcode { + --fa: "\f029"; } + +.fa-clock-rotate-left { + --fa: "\f1da"; } + +.fa-history { + --fa: "\f1da"; } + +.fa-face-grin-beam-sweat { + --fa: "\f583"; } + +.fa-grin-beam-sweat { + --fa: "\f583"; } + +.fa-file-export { + --fa: "\f56e"; } + +.fa-arrow-right-from-file { + --fa: "\f56e"; } + +.fa-shield { + --fa: "\f132"; } + +.fa-shield-blank { + --fa: "\f132"; } + +.fa-arrow-up-short-wide { + --fa: "\f885"; } + +.fa-sort-amount-up-alt { + --fa: "\f885"; } + +.fa-comment-nodes { + --fa: "\e696"; } + +.fa-house-medical { + --fa: "\e3b2"; } + +.fa-golf-ball-tee { + --fa: "\f450"; } + +.fa-golf-ball { + --fa: "\f450"; } + +.fa-circle-chevron-left { + --fa: "\f137"; } + +.fa-chevron-circle-left { + --fa: "\f137"; } + +.fa-house-chimney-window { + --fa: "\e00d"; } + +.fa-pen-nib { + --fa: "\f5ad"; } + +.fa-tent-arrow-turn-left { + --fa: "\e580"; } + +.fa-tents { + --fa: "\e582"; } + +.fa-wand-magic { + --fa: "\f0d0"; } + +.fa-magic { + --fa: "\f0d0"; } + +.fa-dog { + --fa: "\f6d3"; } + +.fa-carrot { + --fa: "\f787"; } + +.fa-moon { + --fa: "\f186"; } + +.fa-wine-glass-empty { + --fa: "\f5ce"; } + +.fa-wine-glass-alt { + --fa: "\f5ce"; } + +.fa-cheese { + --fa: "\f7ef"; } + +.fa-yin-yang { + --fa: "\f6ad"; } + +.fa-music { + --fa: "\f001"; } + +.fa-code-commit { + --fa: "\f386"; } + +.fa-temperature-low { + --fa: "\f76b"; } + +.fa-person-biking { + --fa: "\f84a"; } + +.fa-biking { + --fa: "\f84a"; } + +.fa-broom { + --fa: "\f51a"; } + +.fa-shield-heart { + --fa: "\e574"; } + +.fa-gopuram { + --fa: "\f664"; } + +.fa-earth-oceania { + --fa: "\e47b"; } + +.fa-globe-oceania { + --fa: "\e47b"; } + +.fa-square-xmark { + --fa: "\f2d3"; } + +.fa-times-square { + --fa: "\f2d3"; } + +.fa-xmark-square { + --fa: "\f2d3"; } + +.fa-hashtag { + --fa: "\23"; } + +.fa-up-right-and-down-left-from-center { + --fa: "\f424"; } + +.fa-expand-alt { + --fa: "\f424"; } + +.fa-oil-can { + --fa: "\f613"; } + +.fa-t { + --fa: "\54"; } + +.fa-hippo { + --fa: "\f6ed"; } + +.fa-chart-column { + --fa: "\e0e3"; } + +.fa-infinity { + --fa: "\f534"; } + +.fa-vial-circle-check { + --fa: "\e596"; } + +.fa-person-arrow-down-to-line { + --fa: "\e538"; } + +.fa-voicemail { + --fa: "\f897"; } + +.fa-fan { + --fa: "\f863"; } + +.fa-person-walking-luggage { + --fa: "\e554"; } + +.fa-up-down { + --fa: "\f338"; } + +.fa-arrows-alt-v { + --fa: "\f338"; } + +.fa-cloud-moon-rain { + --fa: "\f73c"; } + +.fa-calendar { + --fa: "\f133"; } + +.fa-trailer { + --fa: "\e041"; } + +.fa-bahai { + --fa: "\f666"; } + +.fa-haykal { + --fa: "\f666"; } + +.fa-sd-card { + --fa: "\f7c2"; } + +.fa-dragon { + --fa: "\f6d5"; } + +.fa-shoe-prints { + --fa: "\f54b"; } + +.fa-circle-plus { + --fa: "\f055"; } + +.fa-plus-circle { + --fa: "\f055"; } + +.fa-face-grin-tongue-wink { + --fa: "\f58b"; } + +.fa-grin-tongue-wink { + --fa: "\f58b"; } + +.fa-hand-holding { + --fa: "\f4bd"; } + +.fa-plug-circle-exclamation { + --fa: "\e55d"; } + +.fa-link-slash { + --fa: "\f127"; } + +.fa-chain-broken { + --fa: "\f127"; } + +.fa-chain-slash { + --fa: "\f127"; } + +.fa-unlink { + --fa: "\f127"; } + +.fa-clone { + --fa: "\f24d"; } + +.fa-person-walking-arrow-loop-left { + --fa: "\e551"; } + +.fa-arrow-up-z-a { + --fa: "\f882"; } + +.fa-sort-alpha-up-alt { + --fa: "\f882"; } + +.fa-fire-flame-curved { + --fa: "\f7e4"; } + +.fa-fire-alt { + --fa: "\f7e4"; } + +.fa-tornado { + --fa: "\f76f"; } + +.fa-file-circle-plus { + --fa: "\e494"; } + +.fa-book-quran { + --fa: "\f687"; } + +.fa-quran { + --fa: "\f687"; } + +.fa-anchor { + --fa: "\f13d"; } + +.fa-border-all { + --fa: "\f84c"; } + +.fa-face-angry { + --fa: "\f556"; } + +.fa-angry { + --fa: "\f556"; } + +.fa-cookie-bite { + --fa: "\f564"; } + +.fa-arrow-trend-down { + --fa: "\e097"; } + +.fa-rss { + --fa: "\f09e"; } + +.fa-feed { + --fa: "\f09e"; } + +.fa-draw-polygon { + --fa: "\f5ee"; } + +.fa-scale-balanced { + --fa: "\f24e"; } + +.fa-balance-scale { + --fa: "\f24e"; } + +.fa-gauge-simple-high { + --fa: "\f62a"; } + +.fa-tachometer { + --fa: "\f62a"; } + +.fa-tachometer-fast { + --fa: "\f62a"; } + +.fa-shower { + --fa: "\f2cc"; } + +.fa-desktop { + --fa: "\f390"; } + +.fa-desktop-alt { + --fa: "\f390"; } + +.fa-m { + --fa: "\4d"; } + +.fa-table-list { + --fa: "\f00b"; } + +.fa-th-list { + --fa: "\f00b"; } + +.fa-comment-sms { + --fa: "\f7cd"; } + +.fa-sms { + --fa: "\f7cd"; } + +.fa-book { + --fa: "\f02d"; } + +.fa-user-plus { + --fa: "\f234"; } + +.fa-check { + --fa: "\f00c"; } + +.fa-battery-three-quarters { + --fa: "\f241"; } + +.fa-battery-4 { + --fa: "\f241"; } + +.fa-house-circle-check { + --fa: "\e509"; } + +.fa-angle-left { + --fa: "\f104"; } + +.fa-diagram-successor { + --fa: "\e47a"; } + +.fa-truck-arrow-right { + --fa: "\e58b"; } + +.fa-arrows-split-up-and-left { + --fa: "\e4bc"; } + +.fa-hand-fist { + --fa: "\f6de"; } + +.fa-fist-raised { + --fa: "\f6de"; } + +.fa-cloud-moon { + --fa: "\f6c3"; } + +.fa-briefcase { + --fa: "\f0b1"; } + +.fa-person-falling { + --fa: "\e546"; } + +.fa-image-portrait { + --fa: "\f3e0"; } + +.fa-portrait { + --fa: "\f3e0"; } + +.fa-user-tag { + --fa: "\f507"; } + +.fa-rug { + --fa: "\e569"; } + +.fa-earth-europe { + --fa: "\f7a2"; } + +.fa-globe-europe { + --fa: "\f7a2"; } + +.fa-cart-flatbed-suitcase { + --fa: "\f59d"; } + +.fa-luggage-cart { + --fa: "\f59d"; } + +.fa-rectangle-xmark { + --fa: "\f410"; } + +.fa-rectangle-times { + --fa: "\f410"; } + +.fa-times-rectangle { + --fa: "\f410"; } + +.fa-window-close { + --fa: "\f410"; } + +.fa-baht-sign { + --fa: "\e0ac"; } + +.fa-book-open { + --fa: "\f518"; } + +.fa-book-journal-whills { + --fa: "\f66a"; } + +.fa-journal-whills { + --fa: "\f66a"; } + +.fa-handcuffs { + --fa: "\e4f8"; } + +.fa-triangle-exclamation { + --fa: "\f071"; } + +.fa-exclamation-triangle { + --fa: "\f071"; } + +.fa-warning { + --fa: "\f071"; } + +.fa-database { + --fa: "\f1c0"; } + +.fa-share { + --fa: "\f064"; } + +.fa-mail-forward { + --fa: "\f064"; } + +.fa-bottle-droplet { + --fa: "\e4c4"; } + +.fa-mask-face { + --fa: "\e1d7"; } + +.fa-hill-rockslide { + --fa: "\e508"; } + +.fa-right-left { + --fa: "\f362"; } + +.fa-exchange-alt { + --fa: "\f362"; } + +.fa-paper-plane { + --fa: "\f1d8"; } + +.fa-road-circle-exclamation { + --fa: "\e565"; } + +.fa-dungeon { + --fa: "\f6d9"; } + +.fa-align-right { + --fa: "\f038"; } + +.fa-money-bill-1-wave { + --fa: "\f53b"; } + +.fa-money-bill-wave-alt { + --fa: "\f53b"; } + +.fa-life-ring { + --fa: "\f1cd"; } + +.fa-hands { + --fa: "\f2a7"; } + +.fa-sign-language { + --fa: "\f2a7"; } + +.fa-signing { + --fa: "\f2a7"; } + +.fa-calendar-day { + --fa: "\f783"; } + +.fa-water-ladder { + --fa: "\f5c5"; } + +.fa-ladder-water { + --fa: "\f5c5"; } + +.fa-swimming-pool { + --fa: "\f5c5"; } + +.fa-arrows-up-down { + --fa: "\f07d"; } + +.fa-arrows-v { + --fa: "\f07d"; } + +.fa-face-grimace { + --fa: "\f57f"; } + +.fa-grimace { + --fa: "\f57f"; } + +.fa-wheelchair-move { + --fa: "\e2ce"; } + +.fa-wheelchair-alt { + --fa: "\e2ce"; } + +.fa-turn-down { + --fa: "\f3be"; } + +.fa-level-down-alt { + --fa: "\f3be"; } + +.fa-person-walking-arrow-right { + --fa: "\e552"; } + +.fa-square-envelope { + --fa: "\f199"; } + +.fa-envelope-square { + --fa: "\f199"; } + +.fa-dice { + --fa: "\f522"; } + +.fa-bowling-ball { + --fa: "\f436"; } + +.fa-brain { + --fa: "\f5dc"; } + +.fa-bandage { + --fa: "\f462"; } + +.fa-band-aid { + --fa: "\f462"; } + +.fa-calendar-minus { + --fa: "\f272"; } + +.fa-circle-xmark { + --fa: "\f057"; } + +.fa-times-circle { + --fa: "\f057"; } + +.fa-xmark-circle { + --fa: "\f057"; } + +.fa-gifts { + --fa: "\f79c"; } + +.fa-hotel { + --fa: "\f594"; } + +.fa-earth-asia { + --fa: "\f57e"; } + +.fa-globe-asia { + --fa: "\f57e"; } + +.fa-id-card-clip { + --fa: "\f47f"; } + +.fa-id-card-alt { + --fa: "\f47f"; } + +.fa-magnifying-glass-plus { + --fa: "\f00e"; } + +.fa-search-plus { + --fa: "\f00e"; } + +.fa-thumbs-up { + --fa: "\f164"; } + +.fa-user-clock { + --fa: "\f4fd"; } + +.fa-hand-dots { + --fa: "\f461"; } + +.fa-allergies { + --fa: "\f461"; } + +.fa-file-invoice { + --fa: "\f570"; } + +.fa-window-minimize { + --fa: "\f2d1"; } + +.fa-mug-saucer { + --fa: "\f0f4"; } + +.fa-coffee { + --fa: "\f0f4"; } + +.fa-brush { + --fa: "\f55d"; } + +.fa-file-half-dashed { + --fa: "\e698"; } + +.fa-mask { + --fa: "\f6fa"; } + +.fa-magnifying-glass-minus { + --fa: "\f010"; } + +.fa-search-minus { + --fa: "\f010"; } + +.fa-ruler-vertical { + --fa: "\f548"; } + +.fa-user-large { + --fa: "\f406"; } + +.fa-user-alt { + --fa: "\f406"; } + +.fa-train-tram { + --fa: "\e5b4"; } + +.fa-user-nurse { + --fa: "\f82f"; } + +.fa-syringe { + --fa: "\f48e"; } + +.fa-cloud-sun { + --fa: "\f6c4"; } + +.fa-stopwatch-20 { + --fa: "\e06f"; } + +.fa-square-full { + --fa: "\f45c"; } + +.fa-magnet { + --fa: "\f076"; } + +.fa-jar { + --fa: "\e516"; } + +.fa-note-sticky { + --fa: "\f249"; } + +.fa-sticky-note { + --fa: "\f249"; } + +.fa-bug-slash { + --fa: "\e490"; } + +.fa-arrow-up-from-water-pump { + --fa: "\e4b6"; } + +.fa-bone { + --fa: "\f5d7"; } + +.fa-table-cells-row-unlock { + --fa: "\e691"; } + +.fa-user-injured { + --fa: "\f728"; } + +.fa-face-sad-tear { + --fa: "\f5b4"; } + +.fa-sad-tear { + --fa: "\f5b4"; } + +.fa-plane { + --fa: "\f072"; } + +.fa-tent-arrows-down { + --fa: "\e581"; } + +.fa-exclamation { + --fa: "\21"; } + +.fa-arrows-spin { + --fa: "\e4bb"; } + +.fa-print { + --fa: "\f02f"; } + +.fa-turkish-lira-sign { + --fa: "\e2bb"; } + +.fa-try { + --fa: "\e2bb"; } + +.fa-turkish-lira { + --fa: "\e2bb"; } + +.fa-dollar-sign { + --fa: "\24"; } + +.fa-dollar { + --fa: "\24"; } + +.fa-usd { + --fa: "\24"; } + +.fa-x { + --fa: "\58"; } + +.fa-magnifying-glass-dollar { + --fa: "\f688"; } + +.fa-search-dollar { + --fa: "\f688"; } + +.fa-users-gear { + --fa: "\f509"; } + +.fa-users-cog { + --fa: "\f509"; } + +.fa-person-military-pointing { + --fa: "\e54a"; } + +.fa-building-columns { + --fa: "\f19c"; } + +.fa-bank { + --fa: "\f19c"; } + +.fa-institution { + --fa: "\f19c"; } + +.fa-museum { + --fa: "\f19c"; } + +.fa-university { + --fa: "\f19c"; } + +.fa-umbrella { + --fa: "\f0e9"; } + +.fa-trowel { + --fa: "\e589"; } + +.fa-d { + --fa: "\44"; } + +.fa-stapler { + --fa: "\e5af"; } + +.fa-masks-theater { + --fa: "\f630"; } + +.fa-theater-masks { + --fa: "\f630"; } + +.fa-kip-sign { + --fa: "\e1c4"; } + +.fa-hand-point-left { + --fa: "\f0a5"; } + +.fa-handshake-simple { + --fa: "\f4c6"; } + +.fa-handshake-alt { + --fa: "\f4c6"; } + +.fa-jet-fighter { + --fa: "\f0fb"; } + +.fa-fighter-jet { + --fa: "\f0fb"; } + +.fa-square-share-nodes { + --fa: "\f1e1"; } + +.fa-share-alt-square { + --fa: "\f1e1"; } + +.fa-barcode { + --fa: "\f02a"; } + +.fa-plus-minus { + --fa: "\e43c"; } + +.fa-video { + --fa: "\f03d"; } + +.fa-video-camera { + --fa: "\f03d"; } + +.fa-graduation-cap { + --fa: "\f19d"; } + +.fa-mortar-board { + --fa: "\f19d"; } + +.fa-hand-holding-medical { + --fa: "\e05c"; } + +.fa-person-circle-check { + --fa: "\e53e"; } + +.fa-turn-up { + --fa: "\f3bf"; } + +.fa-level-up-alt { + --fa: "\f3bf"; } + +.sr-only, +.fa-sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } + +.sr-only-focusable:not(:focus), +.fa-sr-only-focusable:not(:focus) { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: fontawesome.min.css @@ -1,19 +1,19 @@ -/*! - * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */ -:root, :host { - --fa-style-family-classic: 'Font Awesome 6 Free'; - --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../../fonts/fa-regular-400.woff2") format("woff2"), url("../../fonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-weight: 400; } +/*! + * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +:root, :host { + --fa-style-family-classic: 'Font Awesome 6 Free'; + --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } + +.far, +.fa-regular { + font-weight: 400; } Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: regular.min.css @@ -1,19 +1,19 @@ -/*! - * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */ -:root, :host { - --fa-style-family-classic: 'Font Awesome 6 Free'; - --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../../fonts/fa-solid-900.woff2") format("woff2"), url("../../fonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-weight: 900; } +/*! + * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +:root, :host { + --fa-style-family-classic: 'Font Awesome 6 Free'; + --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 900; + font-display: block; + src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } + +.fas, +.fa-solid { + font-weight: 900; } Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: solid.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: svg-with-js.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: svg-with-js.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v4-font-face.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v4-font-face.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v4-shims.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v4-shims.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v5-font-face.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css/fontawesome: v5-font-face.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: panel.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: panel_system.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: preview.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/css: rkit.css @@ -1,10 +1,10 @@ @font-face { font-family: 'rtmicon-regular'; - src: url('../fonts/rtmicons/rtmicon-regular.eot?fngt09'); - src: url('../fonts/rtmicons/rtmicon-regular.eot?fngt09#iefix') format('embedded-opentype'), - url('../fonts/rtmicons/rtmicon-regular.ttf?fngt09') format('truetype'), - url('../fonts/rtmicons/rtmicon-regular.woff?fngt09') format('woff'), - url('../fonts/rtmicons/rtmicon-regular.svg?fngt09#rtmicon-regular') format('svg'); + src: url('../fonts/rtmicons/rtmicon-regular.eot?u6xsrx'); + src: url('../fonts/rtmicons/rtmicon-regular.eot?u6xsrx#iefix') format('embedded-opentype'), + url('../fonts/rtmicons/rtmicon-regular.ttf?u6xsrx') format('truetype'), + url('../fonts/rtmicons/rtmicon-regular.woff?u6xsrx') format('woff'), + url('../fonts/rtmicons/rtmicon-regular.svg?u6xsrx#rtmicon-regular') format('svg'); font-weight: normal; font-style: normal; font-display: block; @@ -25,6 +25,7 @@ -moz-osx-font-smoothing: grayscale; } + .rtmicon.rtmicon-accordion:before { content: "\e900"; } @@ -46,7 +47,7 @@ .rtmicon.rtmicon-add-circle:before { content: "\e906"; } -.rtmicon.rtmicon-advance-button:before { +.rtmicon.rtmicon-advanced-button:before { content: "\e907"; } .rtmicon.rtmicon-advanced-google-map:before { @@ -94,226 +95,226 @@ .rtmicon.rtmicon-apps:before { content: "\e916"; } -.rtmicon.rtmicon-arrow-down:before { +.rtmicon.rtmicon-archive-post:before { content: "\e917"; } -.rtmicon.rtmicon-arrow-down-left:before { +.rtmicon.rtmicon-archive-product:before { content: "\e918"; } -.rtmicon.rtmicon-arrow-down-right:before { +.rtmicon.rtmicon-arrow-down:before { content: "\e919"; } -.rtmicon.rtmicon-arrow-down-to-line:before { +.rtmicon.rtmicon-arrow-down-left:before { content: "\e91a"; } -.rtmicon.rtmicon-arrow-left:before { +.rtmicon.rtmicon-arrow-down-right:before { content: "\e91b"; } -.rtmicon.rtmicon-arrow-long-down:before { +.rtmicon.rtmicon-arrow-down-to-line:before { content: "\e91c"; } -.rtmicon.rtmicon-arrow-long-left:before { +.rtmicon.rtmicon-arrow-left:before { content: "\e91d"; } -.rtmicon.rtmicon-arrow-long-right:before { +.rtmicon.rtmicon-arrow-long-down:before { content: "\e91e"; } -.rtmicon.rtmicon-arrow-long-up:before { +.rtmicon.rtmicon-arrow-long-left:before { content: "\e91f"; } -.rtmicon.rtmicon-arrow-right:before { +.rtmicon.rtmicon-arrow-long-right:before { content: "\e920"; } -.rtmicon.rtmicon-arrow-up:before { +.rtmicon.rtmicon-arrow-long-up:before { content: "\e921"; } -.rtmicon.rtmicon-arrow-up-left:before { +.rtmicon.rtmicon-arrow-right:before { content: "\e922"; } -.rtmicon.rtmicon-arrow-up-right:before { +.rtmicon.rtmicon-arrow-up:before { content: "\e923"; } -.rtmicon.rtmicon-artist:before { +.rtmicon.rtmicon-arrow-up-left:before { content: "\e924"; } -.rtmicon.rtmicon-attach-money:before { +.rtmicon.rtmicon-arrow-up-right:before { content: "\e925"; } -.rtmicon.rtmicon-audio-box:before { +.rtmicon.rtmicon-artist:before { content: "\e926"; } -.rtmicon.rtmicon-audio-file:before { +.rtmicon.rtmicon-attach-money:before { content: "\e927"; } -.rtmicon.rtmicon-author-box:before { +.rtmicon.rtmicon-audio-box:before { content: "\e928"; } -.rtmicon.rtmicon-auto-play:before { +.rtmicon.rtmicon-audio-file:before { content: "\e929"; } -.rtmicon.rtmicon-auto-renew:before { +.rtmicon.rtmicon-author-box:before { content: "\e92a"; } -.rtmicon.rtmicon-award:before { +.rtmicon.rtmicon-auto-play:before { content: "\e92b"; } -.rtmicon.rtmicon-backpack:before { +.rtmicon.rtmicon-auto-renew:before { content: "\e92c"; } -.rtmicon.rtmicon-back-to-top-button:before { +.rtmicon.rtmicon-award:before { content: "\e92d"; } -.rtmicon.rtmicon-backup:before { +.rtmicon.rtmicon-backpack:before { content: "\e92e"; } -.rtmicon.rtmicon-badge-check:before { +.rtmicon.rtmicon-back-to-top-button:before { content: "\e92f"; } -.rtmicon.rtmicon-badge-dollar:before { +.rtmicon.rtmicon-backup:before { content: "\e930"; } -.rtmicon.rtmicon-badge-percent:before { +.rtmicon.rtmicon-badge-check:before { content: "\e931"; } -.rtmicon.rtmicon-ban:before { +.rtmicon.rtmicon-badge-dollar:before { content: "\e932"; } -.rtmicon.rtmicon-banner-ad:before { +.rtmicon.rtmicon-badge-percent:before { content: "\e933"; } -.rtmicon.rtmicon-banner-discount:before { +.rtmicon.rtmicon-ban:before { content: "\e934"; } -.rtmicon.rtmicon-bar-chart:before { +.rtmicon.rtmicon-banner-ad:before { content: "\e935"; } -.rtmicon.rtmicon-barcode:before { +.rtmicon.rtmicon-banner-discount:before { content: "\e936"; } -.rtmicon.rtmicon-bar-progress:before { +.rtmicon.rtmicon-bar-chart:before { content: "\e937"; } -.rtmicon.rtmicon-bars:before { +.rtmicon.rtmicon-barcode:before { content: "\e938"; } -.rtmicon.rtmicon-bar-sort-left:before { +.rtmicon.rtmicon-bar-progress:before { content: "\e939"; } -.rtmicon.rtmicon-bar-sort-right:before { +.rtmicon.rtmicon-bars:before { content: "\e93a"; } -.rtmicon.rtmicon-battery:before { +.rtmicon.rtmicon-bar-sort-left:before { content: "\e93b"; } -.rtmicon.rtmicon-behance:before { +.rtmicon.rtmicon-bar-sort-right:before { content: "\e93c"; } -.rtmicon.rtmicon-blob-shape:before { +.rtmicon.rtmicon-battery:before { content: "\e93d"; } -.rtmicon.rtmicon-block:before { +.rtmicon.rtmicon-behance:before { content: "\e93e"; } -.rtmicon.rtmicon-blockquote:before { +.rtmicon.rtmicon-blob-shape:before { content: "\e93f"; } -.rtmicon.rtmicon-blog:before { +.rtmicon.rtmicon-block:before { content: "\e940"; } -.rtmicon.rtmicon-blog-carousel:before { +.rtmicon.rtmicon-blockquote:before { content: "\e941"; } -.rtmicon.rtmicon-blog-post:before { +.rtmicon.rtmicon-blog:before { content: "\e942"; } -.rtmicon.rtmicon-bluetooth:before { +.rtmicon.rtmicon-blog-carousel:before { content: "\e943"; } -.rtmicon.rtmicon-bolt:before { +.rtmicon.rtmicon-blog-post:before { content: "\e944"; } -.rtmicon.rtmicon-book:before { +.rtmicon.rtmicon-bluetooth:before { content: "\e945"; } -.rtmicon.rtmicon-bookmark:before { +.rtmicon.rtmicon-bolt:before { content: "\e946"; } -.rtmicon.rtmicon-box:before { +.rtmicon.rtmicon-book:before { content: "\e947"; } -.rtmicon.rtmicon-box-archive:before { +.rtmicon.rtmicon-bookmark:before { content: "\e948"; } -.rtmicon.rtmicon-box-check:before { +.rtmicon.rtmicon-box:before { content: "\e949"; } -.rtmicon.rtmicon-box-circle-check:before { +.rtmicon.rtmicon-box-archive:before { content: "\e94a"; } -.rtmicon.rtmicon-box-open:before { +.rtmicon.rtmicon-box-check:before { content: "\e94b"; } -.rtmicon.rtmicon-box-package:before { +.rtmicon.rtmicon-box-circle-check:before { content: "\e94c"; } -.rtmicon.rtmicon-box-stacked:before { +.rtmicon.rtmicon-box-open:before { content: "\e94d"; } -.rtmicon.rtmicon-breadcumb:before { +.rtmicon.rtmicon-box-package:before { content: "\e94e"; } -.rtmicon.rtmicon-briefcase:before { +.rtmicon.rtmicon-box-stacked:before { content: "\e94f"; } -.rtmicon.rtmicon-browser:before { +.rtmicon.rtmicon-breadcumb:before { content: "\e950"; } -.rtmicon.rtmicon-bug-report:before { +.rtmicon.rtmicon-briefcase:before { content: "\e951"; } -.rtmicon.rtmicon-business-hours:before { +.rtmicon.rtmicon-browser:before { content: "\e952"; } -.rtmicon.rtmicon-calculate:before { +.rtmicon.rtmicon-bug-report:before { content: "\e953"; } -.rtmicon.rtmicon-calendar:before { +.rtmicon.rtmicon-business-hour:before { content: "\e954"; } -.rtmicon.rtmicon-calendar-check:before { +.rtmicon.rtmicon-calculate:before { content: "\e955"; } -.rtmicon.rtmicon-calendar-check-2:before { +.rtmicon.rtmicon-calendar:before { content: "\e956"; } -.rtmicon.rtmicon-calendar-clock:before { +.rtmicon.rtmicon-calendar-check:before { content: "\e957"; } -.rtmicon.rtmicon-calendar-days:before { +.rtmicon.rtmicon-calendar-check-2:before { content: "\e958"; } -.rtmicon.rtmicon-calendar-minus:before { +.rtmicon.rtmicon-calendar-clock:before { content: "\e959"; } -.rtmicon.rtmicon-calendar-plus:before { +.rtmicon.rtmicon-calendar-days:before { content: "\e95a"; } -.rtmicon.rtmicon-calendar-star:before { +.rtmicon.rtmicon-calendar-minus:before { content: "\e95b"; } -.rtmicon.rtmicon-calendar-xmark:before { +.rtmicon.rtmicon-calendar-plus:before { content: "\e95c"; } -.rtmicon.rtmicon-call:before { +.rtmicon.rtmicon-calendar-star:before { content: "\e95d"; } -.rtmicon.rtmicon-call-to-action:before { +.rtmicon.rtmicon-calendar-xmark:before { content: "\e95e"; } -.rtmicon.rtmicon-call-to-action-2:before { +.rtmicon.rtmicon-call-to-action:before { content: "\e95f"; } -.rtmicon.rtmicon-call-volume-up:before { +.rtmicon.rtmicon-call-to-action1:before { content: "\e960"; } .rtmicon.rtmicon-camera:before { @@ -625,7 +626,7 @@ .rtmicon.rtmicon-currency-bitcoin:before { content: "\e9c7"; } -.rtmicon.rtmicon-custom-css:before { +.rtmicon.rtmicon-custom-cs:before { content: "\e9c8"; } .rtmicon.rtmicon-custom-cursor:before { @@ -637,7 +638,7 @@ .rtmicon.rtmicon-custom-js:before { content: "\e9cb"; } -.rtmicon.rtmicon-date-form:before { +.rtmicon.rtmicon-date-for:before { content: "\e9cc"; } .rtmicon.rtmicon-delete:before { @@ -719,965 +720,974 @@ content: "\e9e6"; } .rtmicon.rtmicon-event:before { - content: "\e9e7"; -} -.rtmicon.rtmicon-event-2:before { content: "\e9e8"; } -.rtmicon.rtmicon-event-list:before { +.rtmicon.rtmicon-event-2:before { content: "\e9e9"; } -.rtmicon.rtmicon-expand-circle-down:before { +.rtmicon.rtmicon-event-list:before { content: "\e9ea"; } -.rtmicon.rtmicon-facebook:before { +.rtmicon.rtmicon-expand-circle-down:before { content: "\e9eb"; } -.rtmicon.rtmicon-favorite:before { +.rtmicon.rtmicon-facebook:before { content: "\e9ec"; } -.rtmicon.rtmicon-fax:before { +.rtmicon.rtmicon-favorite:before { content: "\e9ed"; } -.rtmicon.rtmicon-feather:before { +.rtmicon.rtmicon-fax:before { content: "\e9ee"; } -.rtmicon.rtmicon-featured-image:before { +.rtmicon.rtmicon-feather:before { content: "\e9ef"; } -.rtmicon.rtmicon-feedback:before { +.rtmicon.rtmicon-featured-image:before { content: "\e9f0"; } -.rtmicon.rtmicon-figma:before { +.rtmicon.rtmicon-feedback:before { content: "\e9f1"; } -.rtmicon.rtmicon-file:before { +.rtmicon.rtmicon-figma:before { content: "\e9f2"; } -.rtmicon.rtmicon-file-arrow-down:before { +.rtmicon.rtmicon-file:before { content: "\e9f3"; } -.rtmicon.rtmicon-file-arrow-up:before { +.rtmicon.rtmicon-file-arrow-down:before { content: "\e9f4"; } -.rtmicon.rtmicon-file-audio:before { +.rtmicon.rtmicon-file-arrow-up:before { content: "\e9f5"; } -.rtmicon.rtmicon-file-certificate:before { +.rtmicon.rtmicon-file-audio:before { content: "\e9f6"; } -.rtmicon.rtmicon-file-circle-check:before { +.rtmicon.rtmicon-file-certificate:before { content: "\e9f7"; } -.rtmicon.rtmicon-file-circle-exclaimation:before { +.rtmicon.rtmicon-file-circle-check:before { content: "\e9f8"; } -.rtmicon.rtmicon-file-circle-minus:before { +.rtmicon.rtmicon-file-circle-exclaimation:before { content: "\e9f9"; } -.rtmicon.rtmicon-file-circle-plus:before { +.rtmicon.rtmicon-file-circle-minus:before { content: "\e9fa"; } -.rtmicon.rtmicon-file-info:before { +.rtmicon.rtmicon-file-circle-plus:before { content: "\e9fb"; } -.rtmicon.rtmicon-file-music:before { +.rtmicon.rtmicon-file-info:before { content: "\e9fc"; } -.rtmicon.rtmicon-file-pdf:before { +.rtmicon.rtmicon-file-music:before { content: "\e9fd"; } -.rtmicon.rtmicon-film-play:before { +.rtmicon.rtmicon-file-pdf:before { content: "\e9fe"; } -.rtmicon.rtmicon-filterable-gallery:before { +.rtmicon.rtmicon-film-play:before { content: "\e9ff"; } -.rtmicon.rtmicon-filter-list:before { +.rtmicon.rtmicon-filterable-gallery:before { content: "\ea00"; } -.rtmicon.rtmicon-finance-award:before { +.rtmicon.rtmicon-filter-list:before { content: "\ea01"; } -.rtmicon.rtmicon-finance-shield:before { +.rtmicon.rtmicon-finance-award:before { content: "\ea02"; } -.rtmicon.rtmicon-fingerprint:before { +.rtmicon.rtmicon-finance-shield:before { content: "\ea03"; } -.rtmicon.rtmicon-flag:before { +.rtmicon.rtmicon-fingerprint:before { content: "\ea04"; } -.rtmicon.rtmicon-flashlight:before { +.rtmicon.rtmicon-flag:before { content: "\ea05"; } -.rtmicon.rtmicon-flashlight-on:before { +.rtmicon.rtmicon-flashlight:before { content: "\ea06"; } -.rtmicon.rtmicon-flip-box:before { +.rtmicon.rtmicon-flashlight-on:before { content: "\ea07"; } -.rtmicon.rtmicon-folder:before { +.rtmicon.rtmicon-flip-box:before { content: "\ea08"; } -.rtmicon.rtmicon-folder-arrow-down:before { +.rtmicon.rtmicon-folder:before { content: "\ea09"; } -.rtmicon.rtmicon-folder-arrow-up:before { +.rtmicon.rtmicon-folder-arrow-down:before { content: "\ea0a"; } -.rtmicon.rtmicon-folder-check:before { +.rtmicon.rtmicon-folder-arrow-up:before { content: "\ea0b"; } -.rtmicon.rtmicon-folder-file:before { +.rtmicon.rtmicon-folder-check:before { content: "\ea0c"; } -.rtmicon.rtmicon-folder-open:before { +.rtmicon.rtmicon-folder-file:before { content: "\ea0d"; } -.rtmicon.rtmicon-folder-open-2:before { +.rtmicon.rtmicon-folder-open:before { content: "\ea0e"; } -.rtmicon.rtmicon-folders:before { +.rtmicon.rtmicon-folder-open-2:before { content: "\ea0f"; } -.rtmicon.rtmicon-forest:before { +.rtmicon.rtmicon-folders:before { content: "\ea10"; } -.rtmicon.rtmicon-form:before { +.rtmicon.rtmicon-forest:before { content: "\ea11"; } -.rtmicon.rtmicon-forum:before { +.rtmicon.rtmicon-form:before { content: "\ea12"; } -.rtmicon.rtmicon-full-screen-slider:before { +.rtmicon.rtmicon-forum:before { content: "\ea13"; } -.rtmicon.rtmicon-gear:before { +.rtmicon.rtmicon-full-screen-slider:before { content: "\ea14"; } -.rtmicon.rtmicon-gift:before { +.rtmicon.rtmicon-gear:before { content: "\ea15"; } -.rtmicon.rtmicon-glass-cup:before { +.rtmicon.rtmicon-gift:before { content: "\ea16"; } -.rtmicon.rtmicon-glass-effect:before { +.rtmicon.rtmicon-glass-cup:before { content: "\ea17"; } -.rtmicon.rtmicon-glasses:before { +.rtmicon.rtmicon-glass-effect:before { content: "\ea18"; } -.rtmicon.rtmicon-globe:before { +.rtmicon.rtmicon-glasses:before { content: "\ea19"; } -.rtmicon.rtmicon-globe-pointer:before { +.rtmicon.rtmicon-globe:before { content: "\ea1a"; } -.rtmicon.rtmicon-glowing-background-mouse-effect:before { +.rtmicon.rtmicon-globe-pointer:before { content: "\ea1b"; } -.rtmicon.rtmicon-graphic-bar:before { +.rtmicon.rtmicon-glowing-background-mouse-effect:before { content: "\ea1c"; } -.rtmicon.rtmicon-graphic-pie:before { +.rtmicon.rtmicon-graphic-bar:before { content: "\ea1d"; } -.rtmicon.rtmicon-graphic-spectrum-equalizer:before { +.rtmicon.rtmicon-graphic-pie:before { content: "\ea1e"; } -.rtmicon.rtmicon-grid-round:before { +.rtmicon.rtmicon-graphic-spectrum-equalizer:before { content: "\ea1f"; } -.rtmicon.rtmicon-grid-rounds:before { +.rtmicon.rtmicon-grid-round:before { content: "\ea20"; } -.rtmicon.rtmicon-group-add:before { +.rtmicon.rtmicon-grid-rounds:before { content: "\ea21"; } -.rtmicon.rtmicon-handyman:before { +.rtmicon.rtmicon-group-add:before { content: "\ea22"; } -.rtmicon.rtmicon-header-info:before { +.rtmicon.rtmicon-handyman:before { content: "\ea23"; } -.rtmicon.rtmicon-header-offcanvas:before { +.rtmicon.rtmicon-header-footer:before { content: "\ea24"; } -.rtmicon.rtmicon-headset-mic:before { +.rtmicon.rtmicon-header-info:before { content: "\ea25"; } -.rtmicon.rtmicon-helicopter:before { +.rtmicon.rtmicon-header-offcanvas:before { content: "\ea26"; } -.rtmicon.rtmicon-help:before { +.rtmicon.rtmicon-headset-mic:before { content: "\ea27"; } -.rtmicon.rtmicon-horizontal-menu-copy:before { +.rtmicon.rtmicon-helicopter:before { content: "\ea28"; } -.rtmicon.rtmicon-horizontal-progress-bar:before { +.rtmicon.rtmicon-help:before { content: "\ea29"; } -.rtmicon.rtmicon-hotspot:before { +.rtmicon.rtmicon-horizontal-menu-copy:before { content: "\ea2a"; } -.rtmicon.rtmicon-hourglass:before { +.rtmicon.rtmicon-horizontal-progress-bar:before { content: "\ea2b"; } -.rtmicon.rtmicon-hourglass-bottom:before { +.rtmicon.rtmicon-hotspot:before { content: "\ea2c"; } -.rtmicon.rtmicon-hourglass-top:before { +.rtmicon.rtmicon-hourglass:before { content: "\ea2d"; } -.rtmicon.rtmicon-house:before { +.rtmicon.rtmicon-hourglass-bottom:before { content: "\ea2e"; } -.rtmicon.rtmicon-id-card:before { +.rtmicon.rtmicon-hourglass-top:before { content: "\ea2f"; } -.rtmicon.rtmicon-image:before { +.rtmicon.rtmicon-house:before { content: "\ea30"; } -.rtmicon.rtmicon-image-accordion:before { +.rtmicon.rtmicon-icon-packs:before { content: "\ea31"; } -.rtmicon.rtmicon-image-box:before { +.rtmicon.rtmicon-id-card:before { content: "\ea32"; } -.rtmicon.rtmicon-image-comparison:before { +.rtmicon.rtmicon-image:before { content: "\ea33"; } -.rtmicon.rtmicon-image-gallery:before { +.rtmicon.rtmicon-image-accordion:before { content: "\ea34"; } -.rtmicon.rtmicon-image-hotspot:before { +.rtmicon.rtmicon-image-box:before { content: "\ea35"; } -.rtmicon.rtmicon-image-hover:before { +.rtmicon.rtmicon-image-comparison:before { content: "\ea36"; } -.rtmicon.rtmicon-image-info:before { +.rtmicon.rtmicon-image-gallery:before { content: "\ea37"; } -.rtmicon.rtmicon-image-list:before { +.rtmicon.rtmicon-image-hotspot:before { content: "\ea38"; } -.rtmicon.rtmicon-image-marquee:before { +.rtmicon.rtmicon-image-hover:before { content: "\ea39"; } -.rtmicon.rtmicon-image-masonry:before { +.rtmicon.rtmicon-image-info:before { content: "\ea3a"; } -.rtmicon.rtmicon-images:before { +.rtmicon.rtmicon-image-list:before { content: "\ea3b"; } -.rtmicon.rtmicon-image-showcase:before { +.rtmicon.rtmicon-image-marquee:before { content: "\ea3c"; } -.rtmicon.rtmicon-image-slider:before { +.rtmicon.rtmicon-image-masonry:before { content: "\ea3d"; } -.rtmicon.rtmicon-image-stack-info:before { +.rtmicon.rtmicon-images:before { content: "\ea3e"; } -.rtmicon.rtmicon-instagram:before { +.rtmicon.rtmicon-image-showcase:before { content: "\ea3f"; } -.rtmicon.rtmicon-instagram-feed:before { +.rtmicon.rtmicon-image-slider:before { content: "\ea40"; } -.rtmicon.rtmicon-interactive-link:before { +.rtmicon.rtmicon-image-stack-info:before { content: "\ea41"; } -.rtmicon.rtmicon-invoice:before { +.rtmicon.rtmicon-instagram:before { content: "\ea42"; } -.rtmicon.rtmicon-invoice-dollar:before { +.rtmicon.rtmicon-instagram-feed:before { content: "\ea43"; } -.rtmicon.rtmicon-item-list:before { +.rtmicon.rtmicon-interactive-link:before { content: "\ea44"; } -.rtmicon.rtmicon-joystick:before { +.rtmicon.rtmicon-invoice:before { content: "\ea45"; } -.rtmicon.rtmicon-keep:before { +.rtmicon.rtmicon-invoice-dollar:before { content: "\ea46"; } -.rtmicon.rtmicon-keyboard:before { +.rtmicon.rtmicon-item-list:before { content: "\ea47"; } -.rtmicon.rtmicon-key-left:before { +.rtmicon.rtmicon-joystick:before { content: "\ea48"; } -.rtmicon.rtmicon-kite:before { +.rtmicon.rtmicon-keep:before { content: "\ea49"; } -.rtmicon.rtmicon-lab-research:before { +.rtmicon.rtmicon-keyboard:before { content: "\ea4a"; } -.rtmicon.rtmicon-labs:before { +.rtmicon.rtmicon-key-left:before { content: "\ea4b"; } -.rtmicon.rtmicon-laptop:before { +.rtmicon.rtmicon-kite:before { content: "\ea4c"; } -.rtmicon.rtmicon-leaderboard:before { +.rtmicon.rtmicon-lab-research:before { content: "\ea4d"; } -.rtmicon.rtmicon-leaf:before { +.rtmicon.rtmicon-labs:before { content: "\ea4e"; } -.rtmicon.rtmicon-lightblub:before { +.rtmicon.rtmicon-laptop:before { content: "\ea4f"; } -.rtmicon.rtmicon-line-chart:before { +.rtmicon.rtmicon-leaderboard:before { content: "\ea50"; } -.rtmicon.rtmicon-link:before { +.rtmicon.rtmicon-leaf:before { content: "\ea51"; } -.rtmicon.rtmicon-linkedin:before { +.rtmicon.rtmicon-lightblub:before { content: "\ea52"; } -.rtmicon.rtmicon-link-simple:before { +.rtmicon.rtmicon-line-chart:before { content: "\ea53"; } -.rtmicon.rtmicon-list:before { +.rtmicon.rtmicon-link:before { content: "\ea54"; } -.rtmicon.rtmicon-live-tv:before { +.rtmicon.rtmicon-linkedin:before { content: "\ea55"; } -.rtmicon.rtmicon-loader:before { +.rtmicon.rtmicon-link-simple:before { content: "\ea56"; } -.rtmicon.rtmicon-lock:before { +.rtmicon.rtmicon-list:before { content: "\ea57"; } -.rtmicon.rtmicon-lock-2:before { +.rtmicon.rtmicon-live-tv:before { content: "\ea58"; } -.rtmicon.rtmicon-login:before { +.rtmicon.rtmicon-loader:before { content: "\ea59"; } -.rtmicon.rtmicon-logout:before { +.rtmicon.rtmicon-lock:before { content: "\ea5a"; } -.rtmicon.rtmicon-lottie-animation:before { +.rtmicon.rtmicon-lock-2:before { content: "\ea5b"; } -.rtmicon.rtmicon-male:before { +.rtmicon.rtmicon-login:before { content: "\ea5c"; } -.rtmicon.rtmicon-medication:before { +.rtmicon.rtmicon-logout:before { content: "\ea5d"; } -.rtmicon.rtmicon-medium:before { +.rtmicon.rtmicon-lottie-animation:before { content: "\ea5e"; } -.rtmicon.rtmicon-megaphone:before { +.rtmicon.rtmicon-male:before { content: "\ea5f"; } -.rtmicon.rtmicon-menu:before { +.rtmicon.rtmicon-medication:before { content: "\ea60"; } -.rtmicon.rtmicon-menu-open:before { +.rtmicon.rtmicon-medium:before { content: "\ea61"; } -.rtmicon.rtmicon-messanger:before { +.rtmicon.rtmicon-megaphone:before { content: "\ea62"; } -.rtmicon.rtmicon-microphone:before { +.rtmicon.rtmicon-menu:before { content: "\ea63"; } -.rtmicon.rtmicon-minus:before { +.rtmicon.rtmicon-menu-open:before { content: "\ea64"; } -.rtmicon.rtmicon-mobile:before { +.rtmicon.rtmicon-messanger:before { content: "\ea65"; } -.rtmicon.rtmicon-mockup:before { +.rtmicon.rtmicon-microphone:before { content: "\ea66"; } -.rtmicon.rtmicon-mode-standby:before { +.rtmicon.rtmicon-minus:before { content: "\ea67"; } -.rtmicon.rtmicon-money:before { +.rtmicon.rtmicon-mobile:before { content: "\ea68"; } -.rtmicon.rtmicon-money-bank-check:before { +.rtmicon.rtmicon-mockup:before { content: "\ea69"; } -.rtmicon.rtmicon-money-check:before { +.rtmicon.rtmicon-mode-standby:before { content: "\ea6a"; } -.rtmicon.rtmicon-money-currency:before { +.rtmicon.rtmicon-money:before { content: "\ea6b"; } -.rtmicon.rtmicon-money-rotation:before { +.rtmicon.rtmicon-money-bank-check:before { content: "\ea6c"; } -.rtmicon.rtmicon-money-target:before { +.rtmicon.rtmicon-money-check:before { content: "\ea6d"; } -.rtmicon.rtmicon-more-horiz:before { +.rtmicon.rtmicon-money-currency:before { content: "\ea6e"; } -.rtmicon.rtmicon-more-vert:before { +.rtmicon.rtmicon-money-rotation:before { content: "\ea6f"; } -.rtmicon.rtmicon-mouse:before { +.rtmicon.rtmicon-money-target:before { content: "\ea70"; } -.rtmicon.rtmicon-mouse-127:before { +.rtmicon.rtmicon-more-horiz:before { content: "\ea71"; } -.rtmicon.rtmicon-music-note:before { +.rtmicon.rtmicon-more-vert:before { content: "\ea72"; } -.rtmicon.rtmicon-nav-menu:before { +.rtmicon.rtmicon-mouse:before { content: "\ea73"; } -.rtmicon.rtmicon-network-wifi:before { +.rtmicon.rtmicon-mouse-12:before { content: "\ea74"; } -.rtmicon.rtmicon-news-ticker:before { +.rtmicon.rtmicon-music-note:before { content: "\ea75"; } -.rtmicon.rtmicon-night-light-moon:before { +.rtmicon.rtmicon-nav-menu:before { content: "\ea76"; } -.rtmicon.rtmicon-note-hashtag:before { +.rtmicon.rtmicon-network-wifi:before { content: "\ea77"; } -.rtmicon.rtmicon-notes:before { +.rtmicon.rtmicon-news-ticket:before { content: "\ea78"; } -.rtmicon.rtmicon-notification:before { +.rtmicon.rtmicon-night-light-moon:before { content: "\ea79"; } -.rtmicon.rtmicon-number:before { +.rtmicon.rtmicon-note-hashtag:before { content: "\ea7a"; } -.rtmicon.rtmicon-open-in-new:before { +.rtmicon.rtmicon-notes:before { content: "\ea7b"; } -.rtmicon.rtmicon-paper-form:before { +.rtmicon.rtmicon-notification:before { content: "\ea7c"; } -.rtmicon.rtmicon-paper-plane:before { +.rtmicon.rtmicon-number:before { content: "\ea7d"; } -.rtmicon.rtmicon-pause:before { +.rtmicon.rtmicon-open-in-new:before { content: "\ea7e"; } -.rtmicon.rtmicon-paypal:before { +.rtmicon.rtmicon-paper-form:before { content: "\ea7f"; } -.rtmicon.rtmicon-pen:before { +.rtmicon.rtmicon-paper-plane:before { content: "\ea80"; } -.rtmicon.rtmicon-pencil:before { +.rtmicon.rtmicon-pause:before { content: "\ea81"; } -.rtmicon.rtmicon-pen-paintbrush:before { +.rtmicon.rtmicon-paypal:before { content: "\ea82"; } -.rtmicon.rtmicon-person-add:before { +.rtmicon.rtmicon-pen:before { content: "\ea83"; } -.rtmicon.rtmicon-pets:before { +.rtmicon.rtmicon-pencil:before { content: "\ea84"; } -.rtmicon.rtmicon-phone-classic:before { +.rtmicon.rtmicon-pen-paintbrush:before { content: "\ea85"; } -.rtmicon.rtmicon-phone-volume-down:before { +.rtmicon.rtmicon-person-add:before { content: "\ea86"; } -.rtmicon.rtmicon-phone-volume-mute:before { +.rtmicon.rtmicon-pets:before { content: "\ea87"; } -.rtmicon.rtmicon-phone-volume-up:before { +.rtmicon.rtmicon-phone:before { content: "\ea88"; } -.rtmicon.rtmicon-pie-chart:before { +.rtmicon.rtmicon-phone-classic:before { content: "\ea89"; } -.rtmicon.rtmicon-pie-chart-2:before { +.rtmicon.rtmicon-phone-volume-down:before { content: "\ea8a"; } -.rtmicon.rtmicon-pie-chart-analyst:before { +.rtmicon.rtmicon-phone-volume-mute:before { content: "\ea8b"; } -.rtmicon.rtmicon-pill:before { +.rtmicon.rtmicon-phone-volume-up:before { content: "\ea8c"; } -.rtmicon.rtmicon-pin-map-location:before { +.rtmicon.rtmicon-pie-chart:before { content: "\ea8d"; } -.rtmicon.rtmicon-pinterest:before { +.rtmicon.rtmicon-pie-chart-2:before { content: "\ea8e"; } -.rtmicon.rtmicon-planet:before { +.rtmicon.rtmicon-pie-chart-analyst:before { content: "\ea8f"; } -.rtmicon.rtmicon-play:before { +.rtmicon.rtmicon-pill:before { content: "\ea90"; } -.rtmicon.rtmicon-play-arrow:before { +.rtmicon.rtmicon-pin-map-location:before { content: "\ea91"; } -.rtmicon.rtmicon-play-circle:before { +.rtmicon.rtmicon-pinterest:before { content: "\ea92"; } -.rtmicon.rtmicon-plus:before { +.rtmicon.rtmicon-planet:before { content: "\ea93"; } -.rtmicon.rtmicon-podcast:before { +.rtmicon.rtmicon-play:before { content: "\ea94"; } -.rtmicon.rtmicon-popup-modal:before { +.rtmicon.rtmicon-play-arrow:before { content: "\ea95"; } -.rtmicon.rtmicon-portfolio-gallery:before { +.rtmicon.rtmicon-play-circle:before { content: "\ea96"; } -.rtmicon.rtmicon-portofolio-gallery:before { +.rtmicon.rtmicon-plus:before { content: "\ea97"; } -.rtmicon.rtmicon-post-author:before { +.rtmicon.rtmicon-podcast:before { content: "\ea98"; } -.rtmicon.rtmicon-post-carousel:before { +.rtmicon.rtmicon-popup-moda:before { content: "\ea99"; } -.rtmicon.rtmicon-post-category-list:before { +.rtmicon.rtmicon-portfolio-gallery:before { content: "\ea9a"; } -.rtmicon.rtmicon-post-comment:before { +.rtmicon.rtmicon-post-author:before { content: "\ea9b"; } -.rtmicon.rtmicon-post-content:before { +.rtmicon.rtmicon-post-carousel:before { content: "\ea9c"; } -.rtmicon.rtmicon-post-excerpt:before { +.rtmicon.rtmicon-post-category-list:before { content: "\ea9d"; } -.rtmicon.rtmicon-post-grid:before { +.rtmicon.rtmicon-post-comment:before { content: "\ea9e"; } -.rtmicon.rtmicon-post-info:before { +.rtmicon.rtmicon-post-content:before { content: "\ea9f"; } -.rtmicon.rtmicon-post-list:before { +.rtmicon.rtmicon-post-excerpt:before { content: "\eaa0"; } -.rtmicon.rtmicon-post-navigation:before { +.rtmicon.rtmicon-post-grid:before { content: "\eaa1"; } -.rtmicon.rtmicon-post-title:before { +.rtmicon.rtmicon-post-info:before { content: "\eaa2"; } -.rtmicon.rtmicon-presentation:before { +.rtmicon.rtmicon-post-list:before { content: "\eaa3"; } -.rtmicon.rtmicon-price-list:before { +.rtmicon.rtmicon-post-navigation:before { content: "\eaa4"; } -.rtmicon.rtmicon-price-table:before { +.rtmicon.rtmicon-post-title:before { content: "\eaa5"; } -.rtmicon.rtmicon-pricing-compare:before { +.rtmicon.rtmicon-presentation:before { content: "\eaa6"; } -.rtmicon.rtmicon-pricing-image-box:before { +.rtmicon.rtmicon-price-list:before { content: "\eaa7"; } -.rtmicon.rtmicon-pricing-list:before { +.rtmicon.rtmicon-price-table:before { content: "\eaa8"; } -.rtmicon.rtmicon-pricing-table:before { +.rtmicon.rtmicon-pricing-compare:before { content: "\eaa9"; } -.rtmicon.rtmicon-printer:before { +.rtmicon.rtmicon-pricing-image-box:before { content: "\eaaa"; } -.rtmicon.rtmicon-process-step:before { +.rtmicon.rtmicon-pricing-list:before { content: "\eaab"; } -.rtmicon.rtmicon-product-carousel:before { +.rtmicon.rtmicon-pricing-table:before { content: "\eaac"; } -.rtmicon.rtmicon-product-grid:before { +.rtmicon.rtmicon-printer:before { content: "\eaad"; } -.rtmicon.rtmicon-product-highlight:before { +.rtmicon.rtmicon-process-step:before { content: "\eaae"; } -.rtmicon.rtmicon-progress-bar:before { +.rtmicon.rtmicon-product-carousel:before { content: "\eaaf"; } -.rtmicon.rtmicon-progress-step:before { +.rtmicon.rtmicon-product-grid:before { content: "\eab0"; } -.rtmicon.rtmicon-protection:before { +.rtmicon.rtmicon-product-highlight:before { content: "\eab1"; } -.rtmicon.rtmicon-quote:before { +.rtmicon.rtmicon-progress-bar:before { content: "\eab2"; } -.rtmicon.rtmicon-radar:before { +.rtmicon.rtmicon-progress-step:before { content: "\eab3"; } -.rtmicon.rtmicon-radial-progress-bar:before { +.rtmicon.rtmicon-protection:before { content: "\eab4"; } -.rtmicon.rtmicon-radio:before { +.rtmicon.rtmicon-quote:before { content: "\eab5"; } -.rtmicon.rtmicon-reddit:before { +.rtmicon.rtmicon-radar:before { content: "\eab6"; } -.rtmicon.rtmicon-report:before { +.rtmicon.rtmicon-radial-progress-bar:before { content: "\eab7"; } -.rtmicon.rtmicon-review-slider:before { +.rtmicon.rtmicon-radio:before { content: "\eab8"; } -.rtmicon.rtmicon-rocket:before { +.rtmicon.rtmicon-reddit:before { content: "\eab9"; } -.rtmicon.rtmicon-romethemekit:before { +.rtmicon.rtmicon-report:before { content: "\eaba"; } -.rtmicon.rtmicon-rtm-form:before { +.rtmicon.rtmicon-review-slider:before { content: "\eabb"; } -.rtmicon.rtmicon-sack-dollar:before { +.rtmicon.rtmicon-rocket:before { content: "\eabc"; } -.rtmicon.rtmicon-scale-balanced:before { +.rtmicon.rtmicon-romethemekit:before { content: "\eabd"; } -.rtmicon.rtmicon-scale-unbalanced:before { +.rtmicon.rtmicon-rtm-form:before { content: "\eabe"; } -.rtmicon.rtmicon-scale-unbalanced-flip:before { +.rtmicon.rtmicon-sack-dollar:before { content: "\eabf"; } -.rtmicon.rtmicon-search:before { +.rtmicon.rtmicon-scale-balanced:before { content: "\eac0"; } -.rtmicon.rtmicon-select:before { +.rtmicon.rtmicon-scale-unbalanced:before { content: "\eac1"; } -.rtmicon.rtmicon-share-123:before { +.rtmicon.rtmicon-scale-unbalanced-flip:before { content: "\eac2"; } -.rtmicon.rtmicon-shield:before { +.rtmicon.rtmicon-search:before { content: "\eac3"; } -.rtmicon.rtmicon-shield-check:before { +.rtmicon.rtmicon-select:before { content: "\eac4"; } -.rtmicon.rtmicon-shield-minus:before { +.rtmicon.rtmicon-share:before { content: "\eac5"; } -.rtmicon.rtmicon-shield-plus:before { +.rtmicon.rtmicon-shield:before { content: "\eac6"; } -.rtmicon.rtmicon-shield-xmark:before { +.rtmicon.rtmicon-shield-check:before { content: "\eac7"; } -.rtmicon.rtmicon-shopping-cart:before { +.rtmicon.rtmicon-shield-minus:before { content: "\eac8"; } -.rtmicon.rtmicon-sidebar:before { +.rtmicon.rtmicon-shield-plus:before { content: "\eac9"; } -.rtmicon.rtmicon-site-logo:before { +.rtmicon.rtmicon-shield-xmark:before { content: "\eaca"; } -.rtmicon.rtmicon-sliders:before { +.rtmicon.rtmicon-shopping-cart:before { content: "\eacb"; } -.rtmicon.rtmicon-sliders-up:before { +.rtmicon.rtmicon-sidebar:before { content: "\eacc"; } -.rtmicon.rtmicon-social-icons:before { +.rtmicon.rtmicon-single-post:before { content: "\eacd"; } -.rtmicon.rtmicon-social-share:before { +.rtmicon.rtmicon-single-product:before { content: "\eace"; } -.rtmicon.rtmicon-social-share-2:before { +.rtmicon.rtmicon-site-logo:before { content: "\eacf"; } -.rtmicon.rtmicon-Spark:before { +.rtmicon.rtmicon-sliders:before { content: "\ead0"; } -.rtmicon.rtmicon-Sparkles:before { +.rtmicon.rtmicon-sliders-up:before { content: "\ead1"; } -.rtmicon.rtmicon-speedometer:before { +.rtmicon.rtmicon-social-icons:before { content: "\ead2"; } -.rtmicon.rtmicon-square-arrow-down:before { +.rtmicon.rtmicon-social-share:before { content: "\ead3"; } -.rtmicon.rtmicon-square-arrow-down-2:before { +.rtmicon.rtmicon-social-share-2:before { content: "\ead4"; } -.rtmicon.rtmicon-square-arrow-down-left:before { +.rtmicon.rtmicon-spark:before { content: "\ead5"; } -.rtmicon.rtmicon-square-arrow-down-left-2:before { +.rtmicon.rtmicon-sparkles:before { content: "\ead6"; } -.rtmicon.rtmicon-square-arrow-down-right:before { +.rtmicon.rtmicon-speedometer:before { content: "\ead7"; } -.rtmicon.rtmicon-square-arrow-down-right-2:before { +.rtmicon.rtmicon-square-arrow-down:before { content: "\ead8"; } -.rtmicon.rtmicon-square-arrow-left:before { +.rtmicon.rtmicon-square-arrow-down-2:before { content: "\ead9"; } -.rtmicon.rtmicon-square-arrow-left-2:before { +.rtmicon.rtmicon-square-arrow-down-left:before { content: "\eada"; } -.rtmicon.rtmicon-square-arrow-right:before { +.rtmicon.rtmicon-square-arrow-down-left-2:before { content: "\eadb"; } -.rtmicon.rtmicon-square-arrow-right-2:before { +.rtmicon.rtmicon-square-arrow-down-right:before { content: "\eadc"; } -.rtmicon.rtmicon-square-arrow-up:before { +.rtmicon.rtmicon-square-arrow-down-right-2:before { content: "\eadd"; } -.rtmicon.rtmicon-square-arrow-up-2:before { +.rtmicon.rtmicon-square-arrow-left:before { content: "\eade"; } -.rtmicon.rtmicon-square-arrow-up-left:before { +.rtmicon.rtmicon-square-arrow-left-2:before { content: "\eadf"; } -.rtmicon.rtmicon-square-arrow-up-left-2:before { +.rtmicon.rtmicon-square-arrow-right:before { content: "\eae0"; } -.rtmicon.rtmicon-square-arrow-up-right:before { +.rtmicon.rtmicon-square-arrow-right-2:before { content: "\eae1"; } -.rtmicon.rtmicon-square-arrow-up-right-2:before { +.rtmicon.rtmicon-square-arrow-up:before { content: "\eae2"; } -.rtmicon.rtmicon-square-caret-down:before { +.rtmicon.rtmicon-square-arrow-up-2:before { content: "\eae3"; } -.rtmicon.rtmicon-square-caret-down-2:before { +.rtmicon.rtmicon-square-arrow-up-left:before { content: "\eae4"; } -.rtmicon.rtmicon-square-caret-left:before { +.rtmicon.rtmicon-square-arrow-up-left-2:before { content: "\eae5"; } -.rtmicon.rtmicon-square-caret-left-2:before { +.rtmicon.rtmicon-square-arrow-up-right:before { content: "\eae6"; } -.rtmicon.rtmicon-square-caret-right:before { +.rtmicon.rtmicon-square-arrow-up-right-2:before { content: "\eae7"; } -.rtmicon.rtmicon-square-caret-right-2:before { +.rtmicon.rtmicon-square-caret-down:before { content: "\eae8"; } -.rtmicon.rtmicon-square-caret-up:before { +.rtmicon.rtmicon-square-caret-down-2:before { content: "\eae9"; } -.rtmicon.rtmicon-square-caret-up-2:before { +.rtmicon.rtmicon-square-caret-left:before { content: "\eaea"; } -.rtmicon.rtmicon-square-check:before { +.rtmicon.rtmicon-square-caret-left-2:before { content: "\eaeb"; } -.rtmicon.rtmicon-square-minus:before { +.rtmicon.rtmicon-square-caret-right:before { content: "\eaec"; } -.rtmicon.rtmicon-square-plus:before { +.rtmicon.rtmicon-square-caret-right-2:before { content: "\eaed"; } -.rtmicon.rtmicon-square-user:before { +.rtmicon.rtmicon-square-caret-up:before { content: "\eaee"; } -.rtmicon.rtmicon-square-xmark:before { +.rtmicon.rtmicon-square-caret-up-2:before { content: "\eaef"; } -.rtmicon.rtmicon-stacked-cards-scroll:before { +.rtmicon.rtmicon-square-check:before { content: "\eaf0"; } -.rtmicon.rtmicon-stamp:before { +.rtmicon.rtmicon-square-minus:before { content: "\eaf1"; } -.rtmicon.rtmicon-star:before { +.rtmicon.rtmicon-square-plus:before { content: "\eaf2"; } -.rtmicon.rtmicon-store:before { +.rtmicon.rtmicon-square-user:before { content: "\eaf3"; } -.rtmicon.rtmicon-submit-button:before { +.rtmicon.rtmicon-square-xmark:before { content: "\eaf4"; } -.rtmicon.rtmicon-table-comparison:before { +.rtmicon.rtmicon-stacked-cards-scroll:before { content: "\eaf5"; } -.rtmicon.rtmicon-table-data:before { +.rtmicon.rtmicon-stamp:before { content: "\eaf6"; } -.rtmicon.rtmicon-tablet:before { +.rtmicon.rtmicon-star:before { content: "\eaf7"; } -.rtmicon.rtmicon-tag:before { +.rtmicon.rtmicon-store:before { content: "\eaf8"; } -.rtmicon.rtmicon-taxes:before { +.rtmicon.rtmicon-submit-button:before { content: "\eaf9"; } -.rtmicon.rtmicon-team:before { +.rtmicon.rtmicon-table-comparison:before { content: "\eafa"; } -.rtmicon.rtmicon-team-carousel:before { +.rtmicon.rtmicon-table-data:before { content: "\eafb"; } -.rtmicon.rtmicon-team-content:before { +.rtmicon.rtmicon-tablet:before { content: "\eafc"; } -.rtmicon.rtmicon-telegram:before { +.rtmicon.rtmicon-tag:before { content: "\eafd"; } -.rtmicon.rtmicon-telephone:before { +.rtmicon.rtmicon-taxes:before { content: "\eafe"; } -.rtmicon.rtmicon-testimonial:before { +.rtmicon.rtmicon-team:before { content: "\eaff"; } -.rtmicon.rtmicon-testimonial-carousel:before { +.rtmicon.rtmicon-team-carousel:before { content: "\eb00"; } -.rtmicon.rtmicon-testimonial-carousel-2:before { +.rtmicon.rtmicon-team-content:before { content: "\eb01"; } -.rtmicon.rtmicon-text-marquee:before { +.rtmicon.rtmicon-telegram:before { content: "\eb02"; } -.rtmicon.rtmicon-text-area-form:before { +.rtmicon.rtmicon-telephone:before { content: "\eb03"; } -.rtmicon.rtmicon-text-form:before { +.rtmicon.rtmicon-testimonial:before { content: "\eb04"; } -.rtmicon.rtmicon-text-marquee1:before { +.rtmicon.rtmicon-testimonial-carousel:before { content: "\eb05"; } -.rtmicon.rtmicon-textual-showcase:before { +.rtmicon.rtmicon-text-area-form:before { content: "\eb06"; } -.rtmicon.rtmicon-threads:before { +.rtmicon.rtmicon-text-form:before { content: "\eb07"; } -.rtmicon.rtmicon-tiktok:before { +.rtmicon.rtmicon-text-marquee:before { content: "\eb08"; } -.rtmicon.rtmicon-time:before { +.rtmicon.rtmicon-textual-showcase:before { content: "\eb09"; } -.rtmicon.rtmicon-timeline:before { +.rtmicon.rtmicon-threads:before { content: "\eb0a"; } -.rtmicon.rtmicon-timer:before { +.rtmicon.rtmicon-tiktok:before { content: "\eb0b"; } -.rtmicon.rtmicon-toggle-off:before { +.rtmicon.rtmicon-time:before { content: "\eb0c"; } -.rtmicon.rtmicon-toggle-on:before { +.rtmicon.rtmicon-timeline:before { content: "\eb0d"; } -.rtmicon.rtmicon-tooltip:before { +.rtmicon.rtmicon-timer:before { content: "\eb0e"; } -.rtmicon.rtmicon-trash:before { +.rtmicon.rtmicon-toggle-off:before { content: "\eb0f"; } -.rtmicon.rtmicon-trophy:before { +.rtmicon.rtmicon-toggle-on:before { content: "\eb10"; } -.rtmicon.rtmicon-tumblr:before { +.rtmicon.rtmicon-tooltip:before { content: "\eb11"; } -.rtmicon.rtmicon-upload:before { +.rtmicon.rtmicon-trash:before { content: "\eb12"; } -.rtmicon.rtmicon-user:before { +.rtmicon.rtmicon-trophy:before { content: "\eb13"; } -.rtmicon.rtmicon-users:before { +.rtmicon.rtmicon-tumblr:before { content: "\eb14"; } -.rtmicon.rtmicon-veritcal-menu:before { +.rtmicon.rtmicon-upload:before { content: "\eb15"; } -.rtmicon.rtmicon-video-box:before { +.rtmicon.rtmicon-user:before { content: "\eb16"; } -.rtmicon.rtmicon-video-button:before { +.rtmicon.rtmicon-users:before { content: "\eb17"; } -.rtmicon.rtmicon-video-camera:before { +.rtmicon.rtmicon-veritcal-menu:before { content: "\eb18"; } -.rtmicon.rtmicon-vimeo:before { +.rtmicon.rtmicon-video-box:before { content: "\eb19"; } -.rtmicon.rtmicon-volume-down:before { +.rtmicon.rtmicon-video-button:before { content: "\eb1a"; } -.rtmicon.rtmicon-volume-mute:before { +.rtmicon.rtmicon-video-camera:before { content: "\eb1b"; } -.rtmicon.rtmicon-volume-up:before { +.rtmicon.rtmicon-vimeo:before { content: "\eb1c"; } -.rtmicon.rtmicon-wallet:before { +.rtmicon.rtmicon-volume-down:before { content: "\eb1d"; } -.rtmicon.rtmicon-wallet-money:before { +.rtmicon.rtmicon-volume-mute:before { content: "\eb1e"; } -.rtmicon.rtmicon-watch:before { +.rtmicon.rtmicon-volume-up:before { content: "\eb1f"; } -.rtmicon.rtmicon-whatsapp:before { +.rtmicon.rtmicon-wallet:before { content: "\eb20"; } -.rtmicon.rtmicon-woo-product:before { +.rtmicon.rtmicon-wallet-money:before { content: "\eb21"; } -.rtmicon.rtmicon-wordpress:before { +.rtmicon.rtmicon-watch:before { content: "\eb22"; } -.rtmicon.rtmicon-working-hours:before { +.rtmicon.rtmicon-whatsapp:before { content: "\eb23"; } -.rtmicon.rtmicon-wrapper-link:before { +.rtmicon.rtmicon-woo-product:before { content: "\eb24"; } -.rtmicon.rtmicon-xmark:before { +.rtmicon.rtmicon-wordpress:before { content: "\eb25"; } -.rtmicon.rtmicon-x-twitter:before { +.rtmicon.rtmicon-working-hours:before { content: "\eb26"; } -.rtmicon.rtmicon-youtube:before { +.rtmicon.rtmicon-wrapper-link:before { content: "\eb27"; } +.rtmicon.rtmicon-xmark:before { + content: "\eb28"; +} +.rtmicon.rtmicon-x-twitter:before { + content: "\eb29"; +} +.rtmicon.rtmicon-youtube:before { + content: "\eb2a"; +} +.rtmicon.rtmicon-error-404:before { + content: "\e9e7"; +} @@ -1,2 +1,3 @@ @import url("./rtmicon-regular.css"); -@import url("./rtmicon-thin.css"); \ No newline at end of file +@import url("./rtmicon-thin.css"); +@import url("./rtm-icon-woo.css"); Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtm-icon-woo.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtmkit.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtmkit.css.map Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtmkit.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtmkit.min.css.map Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: rtmkit.scss Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: saved-template-editor.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: select2.min.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: setup-wizard.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/css: sticky_content.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/css: style.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/css: tooltip.css Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-brands-400.ttf Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-brands-400.woff2 Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-regular-400.ttf Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-regular-400.woff2 Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-solid-900.ttf Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-solid-900.woff2 Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-v4compatibility.ttf Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts: fa-v4compatibility.woff2 Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/fonts: fontawesome Binary files /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts/rtmicons/rtmicon-regular.eot and /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/fonts/rtmicons/rtmicon-regular.eot differ @@ -1,562 +1,565 @@ -<?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="rtmicon-regular" 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="accordion" d="M835.935 588.278h-647.875c-32.796 0-59.484-26.688-59.484-59.484v-161.325c0-32.796 26.688-59.484 59.484-59.484h647.875c32.796 0 59.484 26.688 59.484 59.484v161.325c0 32.796-26.688 59.484-59.484 59.484zM824.338 426.853l-461.379-0.359c-11.837 0-21.458 9.601-21.458 21.438-0.020 11.857 9.581 21.478 21.438 21.478l461.379 0.359c5.928 0 11.298-2.395 15.17-6.288 3.892-3.872 6.288-9.242 6.288-15.15 0.020-11.857-9.581-21.478-21.438-21.478zM265.25 409.906c1.138-3.513-2.894-6.447-5.908-4.272l-28.524 20.72-28.524-20.72c-3.014-2.176-7.046 0.759-5.888 4.272l10.899 33.554-28.544 20.72c-2.994 2.176-1.457 6.926 2.256 6.926h35.271l10.899 33.554c1.138 3.513 6.128 3.513 7.286 0l10.879-33.554h35.271c3.713 0 5.25-4.751 2.256-6.926l-28.524-20.72 10.899-33.554zM852.499 277.832c-11.851 0-21.458-9.607-21.458-21.458 0-11.647-9.477-21.125-21.125-21.125h-595.667c-11.647 0-21.125 9.477-21.125 21.125 0 11.851-9.605 21.458-21.458 21.458s-21.458-9.607-21.458-21.458c0-35.311 28.73-64.041 64.041-64.041h595.667c35.313 0 64.041 28.73 64.041 64.041 0 11.851-9.607 21.458-21.458 21.458zM769.046 150.345c-11.853 0-21.458-9.607-21.458-21.458 0-11.649-9.477-21.125-21.127-21.125h-428.761c-11.649 0-21.125 9.477-21.125 21.125 0 11.851-9.607 21.458-21.458 21.458s-21.458-9.607-21.458-21.458c0-35.313 28.73-64.041 64.041-64.041h428.761c35.313 0 64.043 28.73 64.043 64.041 0 11.851-9.607 21.458-21.458 21.458zM171.665 618.299c11.853 0 21.458 9.607 21.458 21.458 0 11.647 9.477 21.125 21.125 21.125h595.667c11.647 0 21.125-9.477 21.125-21.125 0-11.851 9.607-21.458 21.458-21.458s21.458 9.607 21.458 21.458c0 35.311-28.73 64.041-64.041 64.041h-595.665c-35.313 0-64.041-28.73-64.041-64.041 0-11.851 9.607-21.458 21.458-21.458zM255.118 745.786c11.851 0 21.458 9.607 21.458 21.458 0 11.649 9.477 21.125 21.125 21.125h428.761c11.649 0 21.127-9.477 21.127-21.125 0-11.851 9.605-21.458 21.458-21.458s21.458 9.607 21.458 21.458c0 35.313-28.73 64.041-64.043 64.041h-428.761c-35.313 0-64.041-28.73-64.041-64.041 0-11.851 9.607-21.458 21.458-21.458z" /> -<glyph unicode="" glyph-name="account-balance" d="M912.736 715.28c-1.28 0.544-2.608 1.024-3.952 1.44-2.688 0.832-5.504 1.424-8.384 1.712-1.44 0.144-2.912 0.224-4.4 0.224h-768c-1.488 0-2.944-0.080-4.4-0.224-2.896-0.288-5.696-0.88-8.384-1.712-1.344-0.416-2.672-0.896-3.952-1.44-15.44-6.528-26.256-21.808-26.256-39.616v-469.328c0-23.744 19.248-43.008 43.008-43.008h768c23.744 0 43.008 19.248 43.008 43.008v469.328c0 17.808-10.832 33.088-26.256 39.616zM512 418.064c-29.488 0-53.472 23.984-53.472 53.472s23.984 53.472 53.472 53.472 53.472-23.984 53.472-53.472-23.984-53.472-53.472-53.472zM512.016 330.944c53.488 0 99.168-34.048 116.528-81.6h-233.040c17.36 47.552 63.040 81.6 116.528 81.6zM621.888 385.824c18.496 23.664 29.568 53.408 29.568 85.712 0 76.896-62.56 139.472-139.472 139.472s-139.472-62.56-139.472-139.472c0-32.304 11.072-62.064 29.584-85.728-48.464-29.888-83.952-78.912-95.792-136.48h-78.288c-10.912 25.68-31.44 46.304-57.040 57.376v269.2c25.376 10.976 45.776 31.376 56.752 56.752h568.48c10.992-25.376 31.376-45.776 56.752-56.752v-269.2c-25.584-11.072-46.112-31.696-57.040-57.376h-78.256c-11.84 57.568-47.328 106.592-95.808 136.48z" /> -<glyph unicode="" glyph-name="add" d="M682.672 482.992h-127.664v127.664c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-127.664h-127.664c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h127.664v-127.664c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v127.664h127.664c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="add-box" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM341.328 396.992h127.664v-127.664c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v127.664h127.664c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-127.664v127.664c0 23.744-19.248 42.992-43.008 42.992s-43.008-19.248-43.008-42.992v-127.664h-127.664c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008z" /> -<glyph unicode="" glyph-name="add-business" d="M336.096 738.336h351.824c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-351.824c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008zM895.984 184.336h-42.32v42.32c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-42.32h-42.32c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h42.32v-42.32c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v42.32h42.32c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008zM597.328 184.336h-84.992v212.672h255.328v-42.336c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v42.352c15.36 0.112 29.504 8.416 37.088 21.808 7.632 13.488 7.424 30.032-0.544 43.312l-128 213.328c-7.776 12.944-21.776 20.88-36.88 20.88h-426.672c-15.104 0-29.104-7.92-36.88-20.88l-128-213.328c-7.968-13.28-8.176-29.824-0.544-43.312 7.584-13.392 21.728-21.696 37.088-21.808v-255.664c0-23.744 19.248-43.008 43.008-43.008h256c1.136 0 2.256 0.080 3.36 0.176 1.12-0.080 2.224-0.176 3.36-0.176h121.28c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008zM323.008 610.336h377.984l76.4-127.328h-530.784l76.4 127.328zM426.336 184.336h-170v212.672h170v-212.672z" /> -<glyph unicode="" glyph-name="add-card" d="M810.672 209.312c-23.744 0-43.008-19.248-43.008-43.008v-24.048h-298v58.128l135.2 20.784c11.264 1.728 21.392 7.872 28.144 17.072s9.568 20.688 7.824 31.968l-55.568 361.456h182.384v-38.688c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v81.68c0 23.744-19.248 43.008-43.008 43.008h-238.608l-18.64 121.264c-1.728 11.264-7.872 21.392-17.072 28.144s-20.688 9.552-31.968 7.824l-379.536-58.336c-11.264-1.728-21.392-7.872-28.144-17.072s-9.568-20.688-7.824-31.968l87.424-568.72c1.728-11.264 7.872-21.392 17.072-28.144 7.424-5.44 16.336-8.336 25.44-8.336 2.176 0 4.352 0.16 6.528 0.496l158.336 24.336v-87.904c0-23.744 19.248-43.008 43.008-43.008h384c23.744 0 43.008 19.248 43.008 43.008v67.040c0 23.744-19.248 43.008-43.008 43.008zM180.416 738.080l294.544 45.28 70.704-459.952s3.648-23.776 3.648-23.776l-294.544-45.28-74.352 483.712zM895.984 423.648h-42.32v42.32c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-42.32h-42.32c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h42.32v-42.32c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v42.32h42.32c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="add-circle" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.96 301.696-124.96s218.384 41.648 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.376c-64.336-64.336-149.888-99.776-240.896-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.88c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.88s-35.44-176.544-99.776-240.88zM682.672 482.992h-127.664v127.664c0 23.744-19.248 42.992-43.008 42.992s-43.008-19.248-43.008-42.992v-127.664h-127.664c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h127.664v-127.664c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v127.664h127.664c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="advance-button" d="M789.352 558.482h-554.68c-35.84 0-65-29.16-65-65v-88.96c0-35.84 29.16-65 65-65h223.9l47.9-113.938-219.288 1.234v50.516c0 11.876-9.624 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-71.894c0-11.826 9.552-21.434 21.378-21.5l259.030-1.458 2.22-5.3c4.88-11.6 15.88-18.74 28.26-18.74 1.52 0 3.060 0.12 4.6 0.34 12.98 1.82 22.938 11.040 25.66 23.358l173.008-0.974c5.68 0 11.13 2.248 15.16 6.254 4.058 4.036 6.34 9.524 6.34 15.246v74.668c0 11.876-9.624 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-53.046l-146.266 0.824 4.958 42.292 87.78 9.22c14.26 1.5 25.5 12.32 27.3 26.34 1.78 13.9-6.28 27.1-19.58 32.1l-11.86 4.46h110.18c35.84 0 65 29.16 65 65v88.96c0 35.84-29.16 65-65 65zM556.992 339.522l68.48-25.74-45.080-4.74c-13.86-1.46-24.66-12-26.28-25.66l-5.52-47.060-53.1 126.32 61.5-23.12zM256.012 427.502c-11.88 0-21.5 9.62-21.5 21.5s9.62 21.5 21.5 21.5h512c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-512zM257.338 597.352c11.876 0 21.5 9.624 21.5 21.5v42.314h84.12c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-105.62c-11.874 0-21.5-9.624-21.5-21.5v-63.814c0-11.876 9.626-21.5 21.5-21.5zM661.344 661.166h85.168v-42.314c0-11.876 9.624-21.5 21.5-21.5s21.5 9.624 21.5 21.5v63.814c0 11.876-9.626 21.5-21.5 21.5h-106.668c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM382.066 766.862l65.818-47.82c3.214-2.334 4.56-6.476 3.332-10.254l-25.14-77.372c-2.864-8.812 7.222-16.138 14.716-10.692l65.816 47.818c3.214 2.336 7.568 2.336 10.784 0l65.818-47.818c7.496-5.446 17.58 1.88 14.716 10.692l-25.14 77.372c-1.228 3.78 0.118 7.92 3.332 10.254l65.816 47.82c7.496 5.446 3.644 17.3-5.622 17.3h-81.354c-3.974 0-7.496 2.558-8.724 6.338l-25.14 77.372c-2.862 8.812-15.328 8.812-18.192 0l-25.14-77.372c-1.228-3.78-4.75-6.338-8.724-6.338h-81.354c-9.264 0-13.118-11.856-5.622-17.3z" /> -<glyph unicode="" glyph-name="advanced-google-map" d="M886.886 557.001l-151.804 60.721c-9.681 3.872-20.001 5.809-30.321 5.789h-0.020c-0.164 0-0.331-0.006-0.495-0.008-0.204 0.006-0.403 0.030-0.609 0.030-0.373 0-0.739-0.038-1.108-0.056-0.168-0.004-0.335-0.004-0.503-0.008-10.34-0.359-20.64-2.675-30.201-6.926l-160.247-71.241-181.066 72.419c-9.402 3.753-19.422 5.689-29.442 5.789-0.020-0.020-0.040 0-0.080 0-0.184 0-0.363-0.004-0.545-0.004-0.186 0.004-0.367 0.028-0.555 0.028-0.261 0-0.517-0.030-0.776-0.040-0.166-0.002-0.337 0-0.501-0.004-10.739-0.22-21.418-2.555-31.339-6.946l-132.96-59.105c-29.343-13.035-48.306-42.218-48.306-74.335v-309.975c0-27.646 13.833-53.136 37.028-68.207 13.434-8.723 28.804-13.154 44.274-13.154 11.198 0 22.456 2.315 33.075 7.046l84.315 37.467c4.93 2.196 10.26 3.294 15.61 3.294 4.851 0 9.701-0.918 14.272-2.735l189.45-75.772c2.535-1.018 5.27-1.537 7.984-1.537 3.014 0 5.968 0.639 8.723 1.856l168.511 74.894c9.422 4.192 20.32 4.391 29.882 0.559l107.332-42.916c25.091-10.040 53.436-6.986 75.812 8.164s35.73 40.321 35.73 67.348v312.051c0 33.455-20.061 63.097-51.12 75.513zM182.961 138.019c-12.116-5.37-25.43-4.332-36.549 2.894s-17.486 18.963-17.486 32.217v309.975c0 15.17 8.962 28.963 22.815 35.111l126.693 56.31v-395.028c-3.793-1.058-7.543-2.375-11.156-3.992l-84.315-37.487zM511.579 104.265l-181.066 72.419c-2.994 1.198-6.048 2.216-9.162 3.034 0 0 0 0 0 0v395.448s182.683-73.057 182.683-73.057c5.33-2.136 11.478-2.016 16.707 0.319l161.439 71.758v-394.909c-3.531-1.018-6.982-2.276-10.354-3.771l-160.247-71.241zM895.090 169.438c0-12.955-6.148-24.552-16.867-31.818-10.739-7.266-23.794-8.663-35.83-3.852l-107.31 42.916c-3.254 1.297-6.587 2.375-9.981 3.254 0 0-0.004 0-0.006 0v395.547h0.006s145.835-58.328 145.835-58.328c14.671-5.869 24.153-19.861 24.153-35.67v-312.051zM412.526 702.639l47.97-34.852-18.324-56.394c-3.27-10.064 8.25-18.434 16.811-12.214l47.97 34.854 47.97-34.854c8.563-6.22 20.083 2.15 16.811 12.214l-18.324 56.394 47.97 34.852c8.563 6.22 4.162 19.763-6.421 19.763h-59.296l-18.324 56.394c-3.27 10.064-17.51 10.064-20.779 0l-18.324-56.394h-59.296c-10.583 0-14.983-13.542-6.421-19.763zM512.018 450.848c-54.713 0-99.226-44.513-99.226-99.226 0-36.389 39.623-105.015 72.858-156.195 5.829-8.962 15.669-14.312 26.368-14.312s20.54 5.35 26.368 14.332c33.235 51.16 72.838 119.786 72.838 156.175 0 54.713-44.493 99.226-99.206 99.226zM512.018 405.417c26.588 0 48.146-21.558 48.146-48.146s-21.558-48.166-48.146-48.166-48.166 21.558-48.166 48.166 21.558 48.146 48.166 48.146z" /> -<glyph unicode="" glyph-name="advanced-heading" d="M367.578 573.8l-85.626-250.058h59.484l15.066 49.254h102.008l15.156-49.254h59.104l-85.248 250.058h-79.944zM367.972 410.506l36.734 120.104h5.304l36.956-120.104h-78.994zM736.602 489.88c-6.062 13.006-15.22 22.602-27.468 28.792-12.254 6.188-27.978 9.284-47.17 9.284-11.876 0-23.112-1.268-33.72-3.79-10.608-2.528-19.956-6.38-28.038-11.554-8.086-5.182-14.906-11.556-20.458-19.134-5.56-7.576-9.85-16.544-12.882-26.9l48.118-14.776c2.018 7.826 5.24 14.332 9.662 19.512 4.416 5.174 9.72 8.962 15.912 11.368 6.186 2.396 12.816 3.6 19.89 3.6 11.112 0 19.194-2.53 24.248-7.578 5.050-5.056 7.578-11.118 7.578-18.186 0-5.056-1.266-8.904-3.79-11.556-2.528-2.652-6.38-4.546-11.556-5.684-5.18-1.136-11.686-2.338-19.512-3.6-15.666-2.272-29.304-4.924-40.918-7.956-11.622-3.032-21.538-6.82-29.742-11.368-8.21-4.546-14.396-10.548-18.564-17.996-4.168-7.454-6.252-16.612-6.252-27.468 0-12.124 2.398-22.354 7.2-30.69 4.794-8.334 11.49-14.716 20.080-19.132 8.584-4.416 18.564-6.63 29.932-6.63 11.87 0 22.542 2.338 32.014 7.010 9.472 4.67 17.488 10.988 24.060 18.944 6.564 7.958 11.744 16.606 15.534 25.954h6.442c0.502-8.086 1.196-16.292 2.084-24.626 0.882-8.336 1.706-15.664 2.462-21.974h48.876c-1.012 9.094-1.894 18.246-2.652 27.468-0.758 9.216-1.326 18.436-1.706 27.658-0.378 9.216-0.568 18.244-0.568 27.090v33.718c0 20.46-3.032 37.19-9.094 50.204zM683.94 379.816c-4.044-4.8-8.334-8.78-12.882-11.936-4.546-3.16-9.348-5.624-14.398-7.386-5.056-1.772-9.85-2.652-14.398-2.652-8.336 0-15.032 2.274-20.080 6.818-5.056 4.546-7.578 10.734-7.578 18.566 0 6.060 1.384 10.858 4.168 14.396 2.776 3.536 6.69 6.252 11.746 8.146 5.050 1.894 10.734 3.468 17.050 4.736 6.31 1.26 12.692 2.396 19.132 3.408 6.442 1.008 12.752 2.462 18.944 4.358 2.648 0.81 5.086 1.776 7.388 2.84v-25.004c-2.024-6.062-5.056-11.496-9.092-16.292zM852.362 715.834h-191.030c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h191.030c23.97 0 43.47-19.502 43.47-43.472v-360.722c0-23.97-19.5-43.472-43.47-43.472h-680.724c-23.97 0-43.47 19.502-43.47 43.472v360.722c0 23.97 19.5 43.472 43.47 43.472h191.030c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-191.030c-47.68 0-86.47-38.792-86.47-86.472v-360.722c0-47.682 38.792-86.472 86.47-86.472h680.724c47.68 0 86.47 38.792 86.47 86.472v360.722c0 47.682-38.792 86.472-86.47 86.472zM382.078 766.862l65.818-47.818c3.214-2.336 4.56-6.476 3.332-10.256l-25.14-77.372c-2.864-8.812 7.222-16.138 14.716-10.692l65.816 47.818c3.214 2.336 7.568 2.336 10.784 0l65.818-47.818c7.496-5.446 17.58 1.88 14.716 10.692l-25.14 77.372c-1.228 3.78 0.118 7.92 3.332 10.256l65.816 47.818c7.496 5.446 3.644 17.3-5.622 17.3h-81.354c-3.974 0-7.496 2.558-8.724 6.338l-25.14 77.372c-2.862 8.812-15.328 8.812-18.192 0l-25.14-77.372c-1.228-3.78-4.75-6.338-8.724-6.338h-81.354c-9.264 0-13.118-11.856-5.622-17.3z" /> -<glyph unicode="" glyph-name="advanced-hero-slider" d="M737.276 662.683h-613.376c-22.837 0-41.419-18.582-41.419-41.419v-344.928c0-22.837 18.582-41.419 41.419-41.419h613.376c22.837 0 41.419 18.582 41.419 41.419v344.928c0 22.837-18.582 41.419-41.419 41.419zM735.779 277.832h-610.382v274.404l62.079 67.53h548.303v-341.934zM808.992 640.817c-11.851 0-21.458-9.605-21.458-21.458s9.607-21.458 21.458-21.458c5.020 0 8.352-2.988 8.352-4.964v-288.275c0-1.976-3.331-4.964-8.352-4.964-11.851 0-21.458-9.605-21.458-21.458s9.607-21.458 21.458-21.458c28.269 0 51.268 21.48 51.268 47.88v288.275c0 26.402-22.999 47.88-51.268 47.88zM888.255 617.854c-11.851 0-21.458-9.605-21.458-21.458s9.607-21.458 21.458-21.458c4.447 0 7.316-1.593 8.352-2.529v-247.219c-1.036-0.936-3.902-2.531-8.352-2.531-11.851 0-21.458-9.605-21.458-21.458s9.607-21.458 21.458-21.458c28.748 0 51.268 19.47 51.268 44.323v249.465c0 24.853-22.52 44.321-51.268 44.321zM491.36 364.058c-8.27 0-14.973-6.703-14.973-14.973s6.703-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.705 14.973-14.973 14.973zM445.562 349.085c0-8.269-6.704-14.973-14.973-14.973s-14.973 6.704-14.973 14.973c0 8.269 6.704 14.973 14.973 14.973s14.973-6.704 14.973-14.973zM369.818 334.11c8.27 0 14.973 6.705 14.973 14.973s-6.703 14.973-14.973 14.973-14.973-6.703-14.973-14.973 6.703-14.973 14.973-14.973zM358.356 498.954l36.694-26.66-14.015-43.138c-2.501-7.699 6.31-14.1 12.859-9.342l36.694 26.66 36.694-26.66c6.549-4.759 15.362 1.643 12.859 9.342l-14.015 43.138 36.694 26.66c6.549 4.759 3.184 15.116-4.912 15.116h-45.355l-14.017 43.136c-2.501 7.699-13.394 7.699-15.895 0l-14.017-43.136h-45.357c-8.094 0-11.46-10.36-4.91-15.116z" /> -<glyph unicode="" glyph-name="advanced-sticky" d="M767.834 252.308l-1.192 358.067c0 29.442-23.953 53.396-53.348 53.396l-307.755 0.695c-11.829 0-21.43-9.575-21.458-21.41-0.026-11.851 9.559-21.48 21.41-21.506l307.753-0.695c5.779 0 10.48-4.701 10.48-10.551l1.192-358.067c0-11.833-9.627-21.458-21.404-21.458l-254.18 0.641v131.413c0 5.691-2.26 11.148-6.284 15.174-4.024 4.024-9.481 6.284-15.172 6.284h-128.627v126.325c0 11.851-9.607 21.458-21.458 21.458s-21.458-9.607-21.458-21.458v-136.030c0-5.691 2.262-11.148 6.286-15.174 31.524-31.524 51.986-55.565 73.648-81.018 21.258-24.979 43.242-50.807 75.986-83.551 4.010-4.010 9.448-6.27 15.118-6.284l276.089-0.695c35.497 0 64.374 28.878 64.374 64.446zM338.557 341.374h67.861v-78.211c-13.548 14.947-25.327 28.778-37.469 43.046-9.663 11.354-19.486 22.891-30.393 35.167zM342.445 536.783c4.19-4.19 9.681-6.284 15.172-6.284s10.983 2.094 15.172 6.284c8.38 8.38 8.38 21.967 0 30.347l-60.268 60.268 45.549 45.95c11.787 11.891 9.779 31.932-4.523 40.635-9.929 6.042-21.135 7.946-34.477 0.707-0.214-0.116-0.441-0.254-0.679-0.409-9.651-6.288-22.133-6.066-31.057 1.218l-54.446 44.447c-6.701 5.469-10.158 13.883-9.557 22.512 0.273 3.914-0.271 7.625-1.429 11.158-6.022 18.378-29.682 23.536-43.357 9.861l-77.113-77.111c-13.613-13.613-8.521-37.006 9.675-43.295 2.493-0.862 5.010-1.407 7.531-1.527 0.465-0.022 0.924-0.020 1.379 0.004 8.727 0.433 17.2-2.946 22.656-9.771l44.998-56.27c6.883-8.607 7.218-20.492 1.473-29.898-7.054-11.549-6.505-23.658-0.82-34.728 8.14-15.851 29.446-19.065 41.992-6.409l51.988 52.446 60.137-60.137zM831.376 553.368c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c11.647 0 21.125-9.477 21.125-21.125v-361.628c0-11.833-9.625-21.458-21.458-21.458h-297.752c-11.649 0-21.125 9.477-21.125 21.125 0 11.851-9.607 21.458-21.458 21.458s-21.458-9.607-21.458-21.458c0-35.311 28.73-64.041 64.041-64.041h297.752c35.497 0 64.374 28.878 64.374 64.374v361.628c0 35.313-28.73 64.041-64.041 64.041zM579.319 471.281h-45.357l-14.017 43.136c-2.501 7.699-13.394 7.699-15.895 0l-14.017-43.136h-45.357c-8.094 0-11.462-10.36-4.91-15.116l36.694-26.66-14.015-43.138c-2.501-7.699 6.31-14.1 12.859-9.342l36.694 26.66 36.694-26.66c6.549-4.759 15.362 1.643 12.859 9.342l-14.015 43.138 36.694 26.66c6.549 4.759 3.184 15.116-4.91 15.116z" /> -<glyph unicode="" glyph-name="advanced-tabs" d="M874.072 670.972h-67.62v18.224c0 13.728-5.652 26.84-15.912 36.918l-16.526 16.238c-11.478 11.282-27.872 17.75-44.974 17.75h-118.294c-17.104 0-33.496-6.468-44.972-17.748l-7.484-7.354-7.482 7.352c-11.478 11.28-27.87 17.75-44.974 17.75h-118.294c-14.594 0-28.66-4.724-39.606-13.114 0 0 0 0.002 0 0.004-9.64 24.64-33.58 41.5-60.86 41.5h-137.84c-31.62 0-58.66-22.56-64.32-53.66l-0.34-1.92v-562.040c0-36.040 29.32-65.38 65.36-65.38h724.14c36.040 0 65.36 29.34 65.36 65.38v434.72c0 36.060-29.32 65.38-65.36 65.38zM610.746 717.102h118.294c5.836 0 11.382-2.026 14.834-5.42l16.53-16.242c1.964-1.93 3.046-4.148 3.046-6.244v-18.224h-180.206v18.224c0 3.104-0.304 6.174-0.87 9.188l13.536 13.3c3.452 3.392 8.998 5.418 14.834 5.418zM387.54 717.102h118.294c5.836 0 11.38-2.026 14.834-5.42l16.53-16.242c1.964-1.93 3.046-4.148 3.046-6.244v-18.224h-158.354c-10.78 0-20.020 7.68-22 18.26l-1.56 8.32v0.008l14.374 14.124c3.452 3.392 8.998 5.418 14.834 5.418zM896.432 170.872c0-12.34-10.040-22.38-22.36-22.38h-724.14c-12.34 0-22.36 10.040-22.36 22.38v557.84c2.52 9.82 11.38 16.78 21.66 16.78h137.84c10.78 0 20.020-7.68 22-18.26l8.56-45.9c5.76-30.92 32.8-53.36 64.26-53.36h492.18c12.32 0 22.36-10.040 22.36-22.38v-434.72zM212.412 425.492h316.92c14.060 0 25.5 11.44 25.5 25.5v92.36c0 14.060-11.44 25.5-25.5 25.5h-316.92c-14.060 0-25.5-11.44-25.5-25.5v-92.36c0-14.060 11.44-25.5 25.5-25.5zM323.372 505.612c2.1 2.1 4.98 3.38 8.16 3.38h158.2c6.36 0 11.54-5.16 11.54-11.52 0-3.2-1.3-6.080-3.38-8.16-2.1-2.080-4.98-3.38-8.16-3.38h-158.2c-6.36 0-11.54 5.16-11.54 11.54 0 3.18 1.3 6.060 3.38 8.14zM216.212 510.032h22.42c1.060 0 2.020 0.68 2.34 1.7l4.6 14.12 2.34 7.2c0.84 2.64 4.58 2.64 5.44 0l2.34-7.2 4.58-14.12c0.34-1.020 1.28-1.7 2.36-1.7h22.42c2.78 0 3.92-3.56 1.68-5.2l-18.14-13.16c-0.86-0.64-1.22-1.76-0.9-2.78l6.94-21.32c0.86-2.64-2.16-4.82-4.42-3.2l-5.68 4.12-12.46 9.060c-0.86 0.62-2.040 0.62-2.9 0l-18.14-13.18c-2.24-1.62-5.26 0.56-4.4 3.2l3.28 10.1 3.64 11.22c0.34 1.020-0.020 2.14-0.9 2.78l-2.74 1.98-15.4 11.18c-2.24 1.64-1.080 5.2 1.7 5.2zM832 511.168h-213.334c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.334c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM190.728 341.298c0-11.876 9.626-21.5 21.5-21.5h457.17c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-457.17c-11.874 0-21.5-9.624-21.5-21.5zM752.156 278.388h-539.928c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h539.928c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="advanced-toggle" d="M654.958 426.662h-285.92c-99.74 0-180.58-80.84-180.58-180.58s80.84-180.6 180.58-180.6h285.92c49.86 0 95.020 20.22 127.7 52.9s52.9 77.84 52.9 127.7c0 99.74-80.86 180.58-180.6 180.58zM374.698 136.542c-60.040 0-108.7 48.66-108.7 108.68s48.66 108.7 108.7 108.7 108.68-48.66 108.68-108.7-48.66-108.68-108.68-108.68zM425.858 269.202h-25.48c-3.96 0-7.48 2.56-8.72 6.34l-7.86 24.24c-2.88 8.8-15.34 8.8-18.2 0l-7.88-24.24c-1.22-3.78-4.74-6.34-8.72-6.34h-25.48c-9.26 0-13.12-11.86-5.62-17.3l20.62-14.98c3.2-2.34 4.56-6.48 3.32-10.24l-7.86-24.24c-2.88-8.82 7.22-16.14 14.7-10.7l20.62 14.98c3.22 2.34 7.58 2.34 10.78 0l20.62-14.98c7.5-5.44 17.58 1.88 14.72 10.7l-7.88 24.24c-1.22 3.76 0.12 7.9 3.34 10.24l20.62 14.98c7.48 5.44 3.64 17.3-5.64 17.3zM369.038 470.822h285.92c99.74 0 180.6 80.84 180.6 180.58 0 49.86-20.22 95.020-52.9 127.7s-77.84 52.9-127.7 52.9h-285.92c-99.74 0-180.58-80.86-180.58-180.6 0-49.86 20.2-95.020 52.88-127.7s77.84-52.88 127.7-52.88zM369.038 789.002h285.92c75.86 0 137.6-61.72 137.6-137.6s-61.74-137.58-137.6-137.58h-285.92c-75.86 0-137.58 61.72-137.58 137.58s61.72 137.6 137.58 137.6zM648.058 541.882c60.020 0 108.68 48.66 108.68 108.68s-48.66 108.7-108.68 108.7-108.7-48.68-108.7-108.7 48.66-108.68 108.7-108.68zM596.878 674.542h25.48c3.98 0 7.5 2.56 8.72 6.34l7.88 24.22c2.86 8.82 15.32 8.82 18.2 0l7.86-24.22c1.24-3.78 4.76-6.34 8.74-6.34h25.48c9.26 0 13.1-11.86 5.62-17.3l-20.62-14.98c-3.22-2.34-4.56-6.48-3.34-10.26l7.88-24.24c2.86-8.8-7.22-16.12-14.72-10.68l-20.62 14.98c-3.2 2.34-7.56 2.34-10.78 0l-20.6-14.98c-7.5-5.44-17.58 1.88-14.72 10.68l7.86 24.24c1.24 3.78-0.1 7.92-3.32 10.26l-20.62 14.98c-7.5 5.44-3.64 17.3 5.62 17.3z" /> -<glyph unicode="" glyph-name="alarm-clock" d="M895.824 384.896c0 46.944-8.512 91.936-24.032 133.552 35.168 30.128 56.368 74.448 56.368 121.568 0 88.224-71.776 160-160 160-47.024 0-91.136-21.088-121.136-56.096-32.544 12.256-67.184 20.144-103.2 23.088v33.008c0 17.664-14.336 32-32 32s-32-14.336-32-32v-33.088c-35.856-3.024-70.304-10.96-102.688-23.2-30 35.12-74.192 56.288-121.312 56.288-88.224 0-160-71.776-160-160 0-47.328 21.392-91.856 56.864-122-15.408-41.488-23.856-86.336-23.856-133.12 0-122.432 57.728-231.552 147.312-301.808l-36.736-51.072h-15.6c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c10.304 0 19.968 4.96 25.984 13.312l47.808 66.48c54.352-29.584 116.608-46.4 182.72-46.4s127.808 16.688 182 46.016l47.536-66.096c6-8.352 15.68-13.312 25.984-13.312h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-15.6l-36.368 50.576c89.952 70.24 147.968 179.6 147.968 302.32zM768.176 736c52.944 0 96-43.056 96-96 0-22.304-7.952-43.568-21.6-60.464-32.832 55.488-79.2 102.016-134.576 135.008 16.8 13.568 37.952 21.456 60.176 21.456zM159.824 640c0 52.944 43.056 96 96 96 22.352 0 43.6-7.984 60.448-21.68-55.344-33.072-101.664-79.68-134.432-135.232-13.904 16.976-22 38.416-22 60.912zM192.832 384.896c0 175.184 141.76 317.76 316.576 319.36 0.816-0.064 1.584-0.24 2.416-0.24 0.944 0 1.824 0.192 2.752 0.272 44.96-0.32 87.664-10.032 126.432-27.168 0.224-0.144 0.416-0.336 0.64-0.464 1.584-0.912 3.248-1.6 4.912-2.208 109.216-50.848 185.264-161.344 185.264-289.536 0-176.176-143.328-319.504-319.504-319.504s-319.488 143.328-319.488 319.504zM543.824 474.4v133.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-133.6c-37.232-13.216-64-48.688-64-90.4 0-14.8 3.456-28.752 9.456-41.28l-63.712-63.536c-12.512-12.48-12.544-32.736-0.064-45.248 6.256-6.272 14.448-9.408 22.656-9.408s16.352 3.104 22.592 9.344l63.776 63.6c12.528-6 26.496-9.456 41.296-9.456 52.944 0 96 43.056 96 96 0 41.712-26.768 77.184-64 90.4zM511.824 352c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM300.288 845.392c13.952-10.784 34.048-8.224 44.896 5.728 3.76 4.848 23.392 12.88 38.656 12.88h256c15.264 0 34.88-8.032 38.656-12.88 6.32-8.144 15.792-12.4 25.36-12.4 6.832 0 13.712 2.176 19.52 6.672 13.968 10.8 16.576 30.816 5.808 44.8-21.376 27.744-65.152 37.808-89.344 37.808h-256c-24.208 0-67.968-10.064-89.344-37.808-10.768-13.984-8.144-34 5.808-44.8z" /> -<glyph unicode="" glyph-name="alert" d="M965.424 308.544l-358.144 568.032c-21.424 32.288-57.232 51.424-96.048 51.424-0.464 0-0.96 0-1.44 0-38.336-0.464-73.296-19.92-93.504-52.048l-357.248-566.672c-20.208-30.208-22.112-68.848-4.992-100.88 17.12-32.048 50.352-51.968 86.736-51.968h242.784v-156.432c0-17.664 14.336-32 32-32h188.432c17.664 0 32 14.336 32 32v156.432h247.376c36.288 0 69.456 19.904 86.56 51.936 17.12 32.048 15.216 70.704-4.512 100.176zM572 32h-124.432v124.432h124.432v-124.432zM913.504 238.528c-6.064-11.328-17.312-18.096-30.128-18.096h-742.592c-12.896 0-24.224 6.784-30.288 18.128-6.048 11.328-5.408 24.448 2.208 35.856l357.728 567.408c8.736 13.888 23.376 21.968 40.144 22.176h0.656c17.28 0 33.216-8.48 42.336-22.192l358.208-568.128c7.136-10.672 7.776-23.824 1.728-35.152zM572.592 691.52h-125.632c-16.784 0-32.784-7.184-43.92-19.712-11.36-12.8-16.704-29.984-14.656-47.152l22.4-189.072c1.824-15.312 8.96-28.736 19.232-39.040-9.488-14.752-15.056-32.256-15.056-51.072 0-52.272 42.528-94.8 94.816-94.8s94.816 42.528 94.816 94.8c0 18.832-5.584 36.336-15.088 51.104 10.048 10.176 17.168 23.488 19.472 39.008l22.272 188.16c2.512 17.040-2.48 34.272-13.68 47.264-11.264 13.024-27.664 20.512-44.976 20.512zM567.264 627.52l-21.712-183.488c-0.336-2.224-2.128-3.76-4.352-3.76h-62.816c-1.92 0-3.84 1.36-4.016 2.848l-21.856 184.4h114.768zM509.776 314.656c-16.992 0-30.816 13.808-30.816 30.8s13.824 30.816 30.816 30.816 30.816-13.824 30.816-30.816-13.824-30.8-30.816-30.8zM792.416 753.136c8.192 0 16.368 3.12 22.624 9.376l94.224 94.224c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-94.224-94.224c-12.496-12.496-12.496-32.752 0-45.248 6.256-6.256 14.432-9.376 22.624-9.376zM826.608 673.824c-7.904-15.808-1.504-35.024 14.32-42.944l62.816-31.408c4.592-2.304 9.488-3.376 14.288-3.376 11.744 0 23.040 6.464 28.656 17.68 7.904 15.808 1.504 35.024-14.32 42.944l-62.816 31.408c-15.856 7.92-35.024 1.488-42.944-14.32zM204.496 762.512c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-94.224 94.224c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l94.224-94.224zM101.536 596.112c4.8 0 9.68 1.072 14.288 3.376l62.816 31.408c15.808 7.904 22.224 27.12 14.32 42.944-7.904 15.792-27.088 22.24-42.944 14.32l-62.816-31.408c-15.808-7.904-22.224-27.12-14.32-42.944 5.616-11.216 16.912-17.68 28.656-17.68z" /> -<glyph unicode="" glyph-name="analytics" d="M853.328 738.992h-128c-23.744 0-43.008-19.248-43.008-42.992v-554.336h-84.672v468.992c0 23.744-19.248 43.008-43.008 43.008h-127.984c-23.744 0-43.008-19.248-43.008-43.008v-468.992h-84.672v383.664c0 23.744-19.248 43.008-43.008 43.008h-127.984c-23.744 0-43.008-19.248-43.008-43.008v-426.672c0-23.744 19.248-43.008 43.008-43.008h725.328c23.744 0 42.992 19.248 42.992 43.008v597.344c0 23.744-19.248 42.992-42.992 42.992zM171.008 141.664v340.672h41.984v-340.672h-41.984zM469.664 141.664v426h41.984v-426h-41.984zM768.336 141.664v511.328h42v-511.328h-42zM128 610.336h170.672c10.304 0 20.256 3.696 28.064 10.416l86.976 74.912h183.632c11.408 0 22.336 4.528 30.4 12.592l72.736 72.736h152.864c23.744 0 42.992 19.248 42.992 43.008s-19.248 43.008-42.992 43.008h-170.672c-11.408 0-22.336-4.528-30.4-12.592l-72.736-72.736h-181.792c-10.304 0-20.256-3.696-28.064-10.416l-86.976-74.912h-154.704c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008z" /> -<glyph unicode="" glyph-name="anchor" d="M916.608 432.384c-14.224 8.592-32.112 8.224-45.968-0.928l-126.352-83.584c-15.824-10.464-22.912-30.080-17.456-48.256 5.472-18.176 22.208-30.608 41.184-30.608h42.416c-17.904-32.16-41.088-61.52-68.912-86.8-62.912-57.184-144.416-88.672-229.504-88.672-124.624 0-238.048 66.976-298.416 175.472h42.432c18.912 0 35.6 12.352 41.12 30.432s-1.408 37.648-17.088 48.224l-126.56 85.328c-13.792 9.312-31.744 9.808-46.032 1.296-14.304-8.512-22.4-24.528-20.8-41.088 5.28-54.4 20.704-106.544 45.856-154.992 73.888-142.272 219.296-230.672 379.488-230.672 106.528 0 208.576 39.424 287.36 111.024 78.224 71.088 127.168 167.936 137.792 272.688 1.68 16.528-6.32 32.544-20.528 41.136zM321.68 374.976c20 0 37.936 8.944 50.048 23.024h97.28v-214c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v214h97.248c12.128-14.080 30.048-23.024 50.048-23.024 36.416 0 66.032 29.616 66.032 66.032s-29.616 66.032-66.032 66.032c-20 0-37.936-8.944-50.048-23.040h-97.248v133.776c49.664 17.728 85.328 65.216 85.328 120.896 0 70.768-57.568 128.336-128.336 128.336s-128.336-57.568-128.336-128.336c0-55.696 35.664-103.184 85.344-120.912v-133.76h-97.28c-12.112 14.080-30.048 23.040-50.048 23.040-36.416 0-66.032-29.616-66.032-66.032s29.616-66.032 66.032-66.032zM512 781.008c23.344 0 42.336-18.992 42.336-42.336s-18.992-42.336-42.336-42.336-42.336 18.992-42.336 42.336 18.992 42.336 42.336 42.336zM301.856 443.264c-0.048-0.752-0.112-1.504-0.112-2.272s0.080-1.504 0.112-2.272c-0.080 0.752-0.144 1.504-0.144 2.272s0.048 1.52 0.144 2.272z" /> -<glyph unicode="" glyph-name="android" d="M74.080 221.040h875.856c0 142.928-68.48 269.856-174.416 349.792l73.696 148.752c10.544 21.28 1.84 47.072-19.44 57.616s-47.072 1.84-57.616-19.44l-70.32-141.952c-57.424 27.664-121.808 43.168-189.824 43.168s-132.384-15.504-189.808-43.152l-70.336 141.952c-10.544 21.28-36.336 29.984-57.616 19.44s-29.984-36.336-19.44-57.616l73.696-148.736c-105.936-79.936-174.432-206.864-174.432-349.792zM760.848 469.888c45.696-45.696 77.28-101.744 92.56-162.848h-682.816c15.28 61.104 46.864 117.152 92.56 162.848 66.464 66.464 154.848 103.072 248.848 103.072s182.384-36.608 248.848-103.072zM341.328 373.024c23.568 0 42.672 19.104 42.672 42.672s-19.104 42.672-42.672 42.672-42.672-19.104-42.672-42.672 19.104-42.672 42.672-42.672zM682.672 373.024c23.568 0 42.672 19.104 42.672 42.672s-19.104 42.672-42.672 42.672-42.672-19.104-42.672-42.672 19.104-42.672 42.672-42.672z" /> -<glyph unicode="" glyph-name="animated-circle-button" d="M223.543 448c0 159.057 129.401 288.459 288.457 288.459 54.27 0 107.137-15.146 152.887-43.8 10.044-6.29 23.285-3.248 29.576 6.795 6.29 10.042 3.248 23.285-6.795 29.574-52.587 32.938-113.333 50.348-175.669 50.348-182.721 0-331.373-148.654-331.373-331.375 0-66.402 19.574-130.473 56.605-185.288 4.148-6.138 10.911-9.448 17.799-9.448 4.132 0 8.312 1.192 11.993 3.679 9.821 6.635 12.404 19.973 5.769 29.794-32.221 47.693-49.252 103.456-49.252 161.263zM800.457 448c0-42.291-8.937-83.026-26.56-121.078-4.98-10.755-0.299-23.508 10.454-28.488 2.918-1.353 5.986-1.992 9.004-1.992 8.102 0 15.857 4.611 19.486 12.446 20.26 43.745 30.532 90.549 30.532 139.112 0 62.163-17.32 122.764-50.084 175.252-6.276 10.052-19.512 13.116-29.566 6.839-10.052-6.276-13.114-19.512-6.839-29.566 28.506-45.663 43.575-98.406 43.575-152.526zM839.728 240.316l-149.129 56.070c34.792 40.9 55.791 93.857 55.791 151.624 0 129.228-105.155 234.382-234.382 234.382s-234.402-105.155-234.402-234.382 105.155-234.402 234.402-234.402c35.551 0 69.265 7.944 99.466 22.197l20.999-49.982c-37.527-17.286-78.427-26.269-120.465-26.269-56.649 0-111.462 16.388-158.53 47.427-9.901 6.507-23.215 3.773-29.742-6.108-6.507-9.901-3.773-23.215 6.108-29.742 54.114-35.65 117.091-54.494 182.164-54.494 47.787 0 94.336 10.12 137.112 29.602l26.688-63.496c4.87-11.557 15.869-18.684 28.225-18.684 1.517 0 3.034 0.1 4.591 0.319 14.013 1.976 24.532 12.615 26.149 26.468l9.641 81.94 87.589 9.202c14.252 1.497 25.45 12.316 27.247 26.289 1.777 13.873-6.248 27.047-19.522 32.037zM706.328 199.094c-1.697-3.134-2.815-6.627-3.254-10.36l-1.417-11.977-4.112-34.972-10.44 24.851-16.887 40.142-25.67 61.081 129.727-48.785-44.992-4.731c-10.040-1.058-18.484-6.907-22.955-15.25zM512.008 256.522c-105.594 0-191.486 85.892-191.486 191.486s85.892 191.466 191.486 191.466 191.466-85.892 191.466-191.466c0-52.817-21.478-100.683-56.17-135.356l-16.847 6.348c-11.198 4.212-23.754 1.397-31.998-7.186-8.004-8.324-10.3-20.56-5.849-31.159l2.216-5.27c-25.071-12.076-53.176-18.863-82.818-18.863z" /> -<glyph unicode="" glyph-name="animated-heading" d="M853.334 704.532h-208.22v43.706h53.228c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-149.284c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h53.056v-43.706h-431.448c-47.146 0-85.5-38.356-85.5-85.5v-341.338c0-47.144 38.354-85.5 85.5-85.5h431.446v-44.432h-53.056c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h149.284c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-53.228v44.432h208.22c47.144 0 85.5 38.356 85.5 85.5v341.338c0 47.144-38.356 85.5-85.5 85.5zM170.666 235.194c-23.434 0-42.5 19.066-42.5 42.5v264.48l119.358 119.358h354.588v-112.198c-6.36-2.614-12.148-5.772-17.29-9.484-8.246-5.796-14.934-12.706-20.284-20.954s-9.138-17.388-11.146-27.642l35.664-11.816c2.008 11.816 6.248 21.176 12.484 28.088 0.186 0.2 0.382 0.378 0.57 0.576v-56.1c-12.356-3.748-22.586-8.344-30.662-13.802-8.028-5.574-13.824-12.484-17.834-20.286-3.788-8.026-5.574-17.166-5.574-27.644 0-14.266 2.678-25.858 8.468-34.998 5.572-9.364 13.154-16.050 22.738-20.732 6.84-3.256 14.526-5.312 22.862-6.188v-93.16h-431.442zM602.112 363.786c-1.948 1.076-3.772 2.322-5.474 3.75-6.906 5.796-10.476 14.266-10.476 25.634 0 9.364 2.23 16.718 6.912 22.068 2.51 3.014 5.536 5.662 9.038 7.928v-59.38zM645.112 436.42c5.974 0.998 11.918 1.936 17.956 2.672 9.138 1.116 17.388 2.898 24.97 5.352 2.45 0.668 4.458 1.782 6.46 2.674v-11.998c0-16.416-4.454-32.97-14.76-45.748-0.058-0.072-0.116-0.144-0.174-0.214-5.572-7.134-11.592-12.93-18.058-17.386-5.344-3.822-10.858-6.654-16.394-8.79v73.438zM689.372 472.752c-3.118-3.122-7.798-5.574-14.488-6.91-6.466-1.338-14.934-2.898-25.41-4.236-1.48-0.212-2.914-0.438-4.36-0.662v64.764c1.156 0.060 2.312 0.098 3.468 0.098 15.604 0 26.972-3.79 34.554-11.146 7.352-7.358 10.922-16.274 10.922-26.75 0-6.91-1.562-11.814-4.686-15.158zM895.834 277.694c0-23.434-19.066-42.5-42.5-42.5h-208.22v96c26.254 6.17 53.178 22.63 53.178 45.044 0 0 0.892-7.144 1.562-16.286 0.664-9.362 1.338-18.28 1.78-26.972h36.116c-0.892 8.916-1.562 18.724-2.454 28.98-0.892 10.252-1.556 20.732-2.226 30.984-0.446 10.478-0.67 20.064-0.446 29.204v48.818c0 19.84-3.124 36.114-9.366 49.266-6.020 12.93-15.38 22.516-27.418 28.534-12.256 6.242-27.642 9.14-45.922 9.14-1.628 0-3.212-0.048-4.802-0.092v103.716h208.22c23.434 0 42.5-19.064 42.5-42.5v-341.338zM359.848 613.174l-98.954-280.282h42.472l20.914 62.848h128.038l20.914-62.848h42.048l-98.528 280.282h-56.906zM334.176 425.478l51.578 154.998h5.094l51.578-154.998h-108.248z" /> -<glyph unicode="" glyph-name="apple" d="M740.848 406.4c-0.944 106.080 86.672 157.088 90.64 159.552-49.296 72.144-126.032 82.048-153.376 83.184-4.464 0.448-8.912 0.656-13.328 0.656-60.336 0-116.368-39.12-147.2-39.12-32.656 0-82.832 36.464-136.176 36.464-0.736 0-1.472 0-2.208-0.016-71.216-1.024-136.832-41.392-173.52-105.088-73.888-128.304-18.88-318.4 53.152-422.496 34.608-49.984 75.728-106.176 129.456-106.176 0.976 0 1.968 0.016 2.944 0.064 53.152 2.080 73.2 34.32 137.376 34.32 63.248 0 81.712-33.312 135.936-33.312 0.816 0 1.632 0 2.464 0.016 57.152 1.056 93.424 51.952 128.384 103.040 40.416 59.088 57.088 116.288 58.032 119.28-1.216 0.528-111.392 42.752-112.56 169.664zM724.416 166.032c-12.896-18.848-28.96-42.304-43.632-56.032-4.64-4.336-11.056-9.52-15.344-9.584-0.304 0-0.608 0-0.912 0-7.504 0-12.048 1.632-28.224 8.624-22.736 9.824-57.072 24.672-107.712 24.672-51.92 0-85.888-14.464-110.688-25.024-14.928-6.352-21.024-8.72-28.384-9.264-2.144 1.008-8.784 4.784-20 16.784-13.52 14.464-27.184 33.76-39.984 52.24-31.632 45.728-56.8 108.608-67.328 168.208-8.096 45.824-11.536 111.2 17.984 162.448 21.696 37.68 60.112 61.44 100.24 62.016h0.192s0.192 0 0.192 0c0.192 0 0.384 0 0.576 0 13.488 0 34.24-8.224 52.544-15.488 25.984-10.304 52.864-20.976 83.632-20.976 29.2 0 55.92 10.544 81.744 20.72 21.856 8.624 46.624 18.4 65.456 18.4 1.632 0 3.2-0.080 4.672-0.224l2.544-0.256 2.544-0.112c4.608-0.192 14.928-1.024 27.36-4.528-28.112-40.896-47.584-92.544-47.040-153.088 0.688-74.752 28.704-141.088 81.008-191.84 3.664-3.552 7.328-6.928 10.976-10.112-6.176-11.904-13.616-24.736-22.432-37.616zM519.888 658.912c47.408 0 94.656 28.192 124.144 63.904 31.344 37.952 52.448 90.768 46.704 143.328-45.2-1.808-99.84-30.112-132.256-68.016-29.040-33.6-54.48-87.344-47.616-138.864 3.008-0.24 6.016-0.352 9.024-0.352z" /> -<glyph unicode="" glyph-name="apps" d="M810.336 823.664h-596.672c-47.424 0-86-38.576-86-86v-596.672c0-47.424 38.576-86 86-86h596.672c47.424 0 86 38.576 86 86v596.672c0 47.424-38.576 86-86 86zM810.336 140.992h-596.672v596.672h596.672l0.048-596.672s-0.016 0-0.048 0zM283.008 461.696h159.312c23.744 0 43.008 19.248 43.008 43.008v159.312c0 23.744-19.248 43.008-43.008 43.008h-159.312c-23.744 0-43.008-19.248-43.008-43.008v-159.312c0-23.744 19.248-43.008 43.008-43.008zM326.016 620.992h73.312v-73.312h-73.312v73.312zM580.496 461.344h159.312c23.744 0 43.008 19.248 43.008 43.008v159.312c0 23.744-19.248 43.008-43.008 43.008h-159.312c-23.744 0-43.008-19.248-43.008-43.008v-159.312c0-23.744 19.248-43.008 43.008-43.008zM623.504 620.656h73.312v-73.312h-73.312v73.312zM443.84 419.824h-159.312c-23.744 0-43.008-19.248-43.008-43.008v-159.312c0-23.744 19.248-43.008 43.008-43.008h159.312c23.744 0 43.008 19.248 43.008 43.008v159.312c0 23.744-19.248 43.008-43.008 43.008zM400.848 260.528h-73.312v73.312h73.312v-73.312zM740.992 419.824h-159.312c-23.744 0-43.008-19.248-43.008-43.008v-159.312c0-23.744 19.248-43.008 43.008-43.008h159.312c23.744 0 43.008 19.248 43.008 43.008v159.312c0 23.744-19.248 43.008-43.008 43.008zM697.984 260.528h-73.312v73.312h73.312v-73.312z" /> -<glyph unicode="" glyph-name="arrow-down" d="M897.824 385.824c-12.48 12.496-32.768 12.496-45.248 0l-308.528-308.528 0.784 818.672c0 17.664-14.304 32.016-31.968 32.032h-0.032c-17.664 0-31.984-14.304-32-31.968l-0.784-818.816-308.624 308.624c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l363.2-363.2c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l363.2 363.2c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="arrow-down-left" d="M854.656 790.016c-12.48 12.496-32.736 12.528-45.264 0.032l-585.392-584.272v441.2c0 17.664-14.336 32-32 32s-32-14.336-32-32v-518.384c0-17.664 14.336-32 32-32h518.384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-441.056l585.28 584.176c12.512 12.48 12.528 32.736 0.032 45.264z" /> -<glyph unicode="" glyph-name="arrow-down-right" d="M843.904 680.48c-17.696 0-32.048-14.352-32.048-32.048v-441.792l-585.152 586.24c-12.512 12.512-32.8 12.56-45.328 0.032-12.528-12.512-12.544-32.8-0.032-45.328l585.264-586.368h-441.936c-17.696 0-32.048-14.352-32.048-32.048s14.352-32.048 32.048-32.048h519.248c17.696 0 32.048 14.352 32.048 32.048v519.248c0 17.696-14.352 32.048-32.048 32.048z" /> -<glyph unicode="" glyph-name="arrow-down-to-line" d="M489.296 179.296c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l288.624 288.624c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-233.952-233.936 0.608 616.224c0 17.664-14.304 32.016-31.968 32.032h-0.032c-17.664 0-31.984-14.304-32-31.968l-0.608-616.4-234.048 234.048c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l288.624-288.624zM870.224 31.488l-715.136 0.672c-17.664 0-31.984-14.304-32-31.968 0-17.664 14.304-32.016 31.968-32.032l715.136-0.672c17.664 0 31.984 14.304 32 31.968 0 17.664-14.304 32.016-31.968 32.032z" /> -<glyph unicode="" glyph-name="arrow-left" d="M960.032 479.168l-818.816 0.784 308.608 308.624c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-363.2-363.2c-12.496-12.496-12.496-32.752 0-45.248l363.2-363.2c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-308.528 308.528 818.704-0.784c17.664 0 31.984 14.304 32 31.968 0 17.664-14.304 32.016-31.968 32.032z" /> -<glyph unicode="" glyph-name="arrow-long-down" d="M756.928 245.808c-12.528 12.48-32.784 12.448-45.264-0.064l-167.76-168.304v818.56c0 17.664-14.336 32-32 32s-32-14.336-32-32v-818.352l-167.52 168.72c-12.464 12.544-32.72 12.624-45.264 0.16s-12.608-32.72-0.16-45.264l222.24-223.824s0.032-0.032 0.048-0.048c1.472-1.472 3.072-2.8 4.8-3.968 0.272-0.192 0.592-0.304 0.864-0.48 1.488-0.928 3.008-1.808 4.64-2.496 0.464-0.192 0.976-0.272 1.456-0.448 1.472-0.544 2.96-1.072 4.528-1.392 2.064-0.416 4.192-0.64 6.32-0.64h0.032c2.144 0 4.272 0.224 6.336 0.64 1.328 0.272 2.56 0.736 3.808 1.168 0.72 0.24 1.472 0.384 2.176 0.672 1.344 0.56 2.56 1.312 3.808 2.032 0.56 0.32 1.168 0.56 1.696 0.928 1.728 1.168 3.328 2.48 4.8 3.952 0 0 0.016 0 0.032 0.032l222.416 223.136c12.48 12.528 12.448 32.784-0.064 45.264z" /> -<glyph unicode="" glyph-name="arrow-long-left" d="M960 480.096h-818.352l168.704 167.52c12.544 12.448 12.608 32.72 0.16 45.264-12.432 12.528-32.72 12.624-45.248 0.16l-223.808-222.24s-0.032-0.032-0.048-0.064c-1.472-1.472-2.8-3.072-3.952-4.8-0.256-0.384-0.416-0.832-0.656-1.216-0.848-1.392-1.68-2.784-2.304-4.304-0.176-0.432-0.256-0.896-0.416-1.328-0.56-1.52-1.104-3.056-1.424-4.672-0.416-2.064-0.64-4.176-0.64-6.32 0 0 0 0 0 0s0 0 0 0c0-0.336 0.096-0.656 0.096-0.992 0.048-1.808 0.192-3.6 0.544-5.344 0.24-1.184 0.672-2.272 1.040-3.392 0.272-0.864 0.448-1.76 0.8-2.592 0.528-1.28 1.248-2.448 1.952-3.648 0.352-0.608 0.608-1.264 1.008-1.856 1.168-1.728 2.48-3.344 3.952-4.8 0 0 0-0.016 0.032-0.032l223.136-222.416c6.256-6.224 14.416-9.328 22.592-9.328s16.4 3.136 22.656 9.408c12.48 12.528 12.448 32.784-0.064 45.264l-168.304 167.76h818.576c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="arrow-long-right" d="M989.52 435.568c0.176 0.432 0.256 0.912 0.416 1.36 0.56 1.504 1.088 3.024 1.424 4.64 0.416 2.064 0.64 4.176 0.64 6.32 0 0 0 0 0 0s0 0 0 0c0 0.336-0.096 0.656-0.096 0.992-0.048 1.808-0.192 3.6-0.544 5.344-0.24 1.184-0.672 2.272-1.040 3.392-0.272 0.864-0.448 1.76-0.8 2.592-0.528 1.28-1.248 2.448-1.952 3.648-0.352 0.608-0.608 1.264-1.008 1.856-1.168 1.728-2.48 3.344-3.952 4.8 0 0 0 0.016-0.032 0.032l-223.136 222.416c-12.528 12.48-32.784 12.432-45.248-0.064-12.48-12.528-12.448-32.784 0.064-45.264l168.304-167.76h-818.56c-17.664 0-32-14.336-32-32s14.336-32 32-32h818.352l-168.704-167.52c-12.544-12.448-12.608-32.72-0.16-45.264 6.256-6.304 14.464-9.456 22.704-9.456 8.16 0 16.32 3.088 22.544 9.296l223.808 222.24s0.032 0.032 0.048 0.064c1.472 1.472 2.8 3.072 3.952 4.8 0.272 0.4 0.448 0.864 0.688 1.28 0.832 1.36 1.648 2.752 2.272 4.24z" /> -<glyph unicode="" glyph-name="arrow-long-up" d="M757.024 694.72l-222.24 223.824s-0.016 0.016-0.032 0.032c-1.472 1.488-3.104 2.816-4.832 4-0.096 0.064-0.208 0.096-0.304 0.16-1.632 1.072-3.36 2.032-5.184 2.784-0.384 0.16-0.816 0.224-1.216 0.384-1.552 0.576-3.104 1.12-4.768 1.456-2.064 0.416-4.176 0.64-6.32 0.64h-0.032c-2.144 0-4.256-0.224-6.336-0.64-1.392-0.288-2.704-0.768-4.016-1.216-0.656-0.224-1.328-0.352-1.968-0.608-1.456-0.608-2.8-1.408-4.128-2.208-0.448-0.272-0.944-0.448-1.376-0.752-1.744-1.168-3.36-2.496-4.832-3.968 0 0 0 0 0 0l-222.416-223.136c-12.48-12.528-12.448-32.784 0.064-45.264 12.512-12.464 32.768-12.432 45.248 0.064l167.76 168.304v-818.576c0-17.664 14.336-32 32-32s32 14.336 32 32v818.352l167.536-168.72c6.256-6.304 14.464-9.456 22.704-9.456 8.16 0 16.32 3.088 22.544 9.296 12.544 12.448 12.608 32.72 0.16 45.264z" /> -<glyph unicode="" glyph-name="arrow-right" d="M982.624 470.624l-363.2 363.2c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l308.528-308.528-818.704 0.784c-17.664 0-31.984-14.304-32-31.968 0-17.664 14.304-32.016 31.968-32.032l818.816-0.784-308.624-308.624c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l363.2 363.2c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="arrow-up" d="M897.824 555.424l-363.2 363.2c-12.48 12.496-32.768 12.496-45.248 0l-363.2-363.2c-12.496-12.496-12.496-32.752 0-45.248 12.48-12.496 32.768-12.496 45.248 0l308.528 308.528-0.784-818.672c0-17.664 14.304-32.016 31.968-32.032h0.032c17.664 0 31.984 14.304 32 31.968l0.784 818.816 308.624-308.624c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="arrow-up-left" d="M854.656 150.016l-585.456 586.576h442.144c17.664 0 32 14.336 32 32s-14.336 32-32 32h-519.344c-17.664 0-32-14.336-32-32v-519.344c0-17.664 14.336-32 32-32s32 14.336 32 32v442.016l585.344-586.464c6.272-6.256 14.448-9.392 22.656-9.392s16.352 3.12 22.608 9.344c12.496 12.48 12.528 32.736 0.048 45.264z" /> -<glyph unicode="" glyph-name="arrow-up-right" d="M832 799.408h-518.384c-17.664 0-32-14.336-32-32s14.336-32 32-32h441.072l-585.296-584.176c-12.496-12.48-12.528-32.736-0.048-45.264 6.272-6.256 14.448-9.392 22.656-9.392s16.352 3.12 22.608 9.344l585.392 584.288v-441.184c0-17.664 14.336-32 32-32s32 14.336 32 32v518.384c0 17.664-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="artist" d="M576 148.651h-333.355c20.693 130.005 133.589 229.717 269.355 229.717 60.757 0 118.272-19.541 166.272-56.533 18.816-14.507 45.824-11.008 60.288 7.808 14.507 18.816 11.008 45.824-7.808 60.288-22.955 17.664-47.573 32.299-73.429 43.819 48.939 41.387 80.043 103.168 80.043 172.117 0 124.288-101.12 225.408-225.408 225.408s-225.408-101.12-225.408-225.408c0-69.035 31.189-130.901 80.213-172.288-125.653-55.851-213.547-181.845-213.547-328.021 0-23.765 19.243-43.008 43.008-43.008h379.733c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM512 745.344c76.843 0 139.392-62.549 139.392-139.392s-62.549-139.392-139.392-139.392-139.392 62.549-139.392 139.392 62.549 139.392 139.392 139.392zM911.616 301.525l-77.099 33.92c-11.819 5.205-25.344 4.608-36.693-1.579-11.307-6.187-19.115-17.28-21.077-30.037l-15.104-97.067c-4.523 0.768-9.173 1.152-13.909 1.152-46.72 0-84.736-38.016-84.736-84.736s38.016-84.736 84.736-84.736c45.995 0 83.499 36.864 84.651 82.56l18.133 116.608 27.648-12.16c20.992-9.259 45.525 0.299 54.741 21.291 9.259 20.992-0.299 45.525-21.291 54.741z" /> -<glyph unicode="" glyph-name="attach-money" d="M896 511.317c-23.765 0-43.008-19.243-43.008-43.008v-154.624c-25.6-11.093-46.123-31.701-57.045-57.387h-78.251c-11.861 57.557-47.317 106.581-95.787 136.491 18.517 23.68 29.568 53.419 29.568 85.717 0 76.885-62.549 139.477-139.477 139.477s-139.477-62.549-139.477-139.477c0-32.299 11.051-62.037 29.568-85.717-48.469-29.909-83.925-78.933-95.787-136.491h-78.293c-10.923 25.685-31.445 46.293-57.045 57.387v269.184c25.387 10.965 45.781 31.36 56.747 56.747h454.912c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-554.624c-1.493 0-2.944-0.085-4.395-0.213-2.901-0.299-5.717-0.853-8.405-1.707-1.365-0.427-2.645-0.896-3.968-1.451-15.445-6.528-26.283-21.803-26.283-39.637v-469.333c0-23.765 19.243-43.008 43.008-43.008h768c23.765 0 43.008 19.243 43.008 43.008v255.019c0 23.765-19.243 43.008-43.008 43.008zM512 532.011c29.483 0 53.461-23.979 53.461-53.461s-23.979-53.461-53.461-53.461-53.461 23.979-53.461 53.461 23.979 53.461 53.461 53.461zM512 337.92c53.504 0 99.157-34.048 116.523-81.621h-233.045c17.365 47.573 63.019 81.621 116.523 81.621zM981.333 725.675h-42.325v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-42.325c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h42.325v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h42.325c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="audio-box" d="M835.368 831.251h-646.737c-33.071 0-59.883-26.81-59.883-59.883v-646.737c0-33.071 26.812-59.883 59.883-59.883h646.737c33.073 0 59.883 26.812 59.883 59.883v646.737c0 33.073-26.81 59.883-59.883 59.883zM852.335 124.632c0-9.356-7.611-16.967-16.967-16.967h-497.774l-165.93 165.932v497.772c0 9.356 7.611 16.967 16.967 16.967h646.737c9.356 0 16.967-7.611 16.967-16.967v-646.737zM810.96 761.52c-8.27 0-14.975-6.703-14.975-14.973s6.705-14.973 14.975-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM750.189 761.52c-8.27 0-14.973-6.703-14.973-14.973s6.705-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM689.415 761.52c-8.27 0-14.973-6.703-14.973-14.973s6.703-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM636.122 578.97l-92.326-15.839c-9.104-1.561-16.186-8.773-17.584-17.903l-9.29-60.705c-0.489-1.711-0.77-3.499-0.814-5.33l-11.010-71.949c-14.709 8.627-33.145 13.701-53.392 13.701-49.304 0-87.924-30.047-87.924-68.404s38.621-68.406 87.924-68.406c47.184 0 84.557 27.524 87.687 63.512l17.19 112.333 73.88 11.983c8.859 1.437 15.887 8.234 17.62 17.041l12.723 64.678c1.361 6.924-0.768 14.079-5.697 19.129-4.93 5.052-12.027 7.358-18.985 6.162zM451.706 327.052c-25.76 0-45.008 13.458-45.008 25.49s19.248 25.488 45.008 25.488 45.008-13.458 45.008-25.488-19.248-25.49-45.008-25.49zM608.855 511.935l-45.451-7.372 2.89 18.885 46.389 7.958-3.829-19.472z" /> -<glyph unicode="" glyph-name="audio-file" d="M852.224 616.917v0c0 5.547-1.152 10.837-3.157 15.659-2.048 4.907-5.035 9.472-9.003 13.483l-208.469 208.469c-7.509 10.88-20.053 18.048-34.261 18.048-0.341 0-0.64 0-0.981 0h-340.011c-46.635 0-84.523-37.931-84.523-84.523v-703.317c0-46.635 37.931-84.523 84.523-84.523h511.317c46.635 0 84.523 37.931 84.523 84.523v532.224s0 0.043 0 0.085zM638.891 729.728l71.509-71.509h-71.509v71.509zM769.109 84.651c0-0.811-0.64-1.451-1.451-1.451h-511.317c-0.811 0-1.451 0.64-1.451 1.451v703.36c0 0.811 0.64 1.451 1.451 1.451h299.477v-172.757c0-22.955 18.603-41.557 41.557-41.557h171.776v-490.453zM510.635 528.725c-11.733-7.68-18.859-20.736-18.859-34.773v-238.635s0-0.213 0-0.299c0-24.149-19.627-43.776-43.776-43.776s-43.776 19.627-43.776 43.776c0 19.072 12.203 35.84 30.336 41.685 21.845 7.040 33.835 30.464 26.795 52.267s-30.464 33.835-52.267 26.795c-52.608-16.939-87.936-65.493-87.936-120.789 0-69.973 56.917-126.891 126.891-126.891s126.549 56.619 126.848 126.293c0 0.213 0 0.384 0 0.597v175.275s48.384-21.291 48.384-21.291c20.992-9.259 45.525 0.299 54.741 21.291 9.259 20.992-0.299 45.525-21.291 54.741l-106.667 46.933c-12.843 5.632-27.691 4.437-39.424-3.243z" /> -<glyph unicode="" glyph-name="author-box" d="M512.12 874.834c-114.058 0-221.28-44.406-301.912-125.040-80.634-80.632-125.040-187.854-125.040-301.91 0-99.776 35.244-196.962 99.274-273.698 6.33-7.546 12.994-14.954 19.806-22.012 2.774-2.944 5.57-5.684 8.276-8.336 1.248-1.222 2.502-2.452 3.758-3.708l0.318-0.308c79.838-76.518 184.788-118.656 295.518-118.656s215.708 42.148 295.272 118.64c11.324 10.832 22.152 22.406 32.174 34.388 64.014 76.41 99.268 173.608 99.268 273.688 0 235.42-191.422 426.95-426.714 426.95zM806.594 201.798c-6.828-8.162-14.068-16.106-21.616-23.726-41.74 110.216-148.292 188.628-272.858 188.628s-231.34-78.404-273.086-188.612c-1.232 1.23-2.424 2.442-3.56 3.65l-0.198 0.208c-6.152 6.37-12.17 13.054-17.854 19.832-57.558 68.976-89.256 156.378-89.256 246.106 0 211.71 172.24 383.95 383.952 383.95s383.714-172.238 383.714-383.95c0-90-31.688-177.39-89.24-246.086zM656.833 584.381c7.918-79.964-50.487-151.207-130.451-159.125s-151.207 50.487-159.125 130.451c-7.918 79.964 50.487 151.207 130.451 159.125s151.207-50.487 159.125-130.451z" /> -<glyph unicode="" glyph-name="auto-play" d="M665.301 703.317h-67.627c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h181.035c0.469 0 0.896 0.043 1.365 0.085 0.896 0 1.749 0.043 2.645 0.128 0.597 0.043 1.195 0.171 1.835 0.256 0.768 0.085 1.579 0.213 2.347 0.341 0.64 0.128 1.28 0.299 1.92 0.427 0.725 0.171 1.451 0.341 2.133 0.555s1.323 0.427 1.963 0.683c0.683 0.213 1.323 0.469 1.963 0.725 0.683 0.256 1.323 0.597 2.005 0.896 0.597 0.299 1.195 0.555 1.792 0.853 0.683 0.384 1.365 0.768 2.048 1.195 0.512 0.299 1.067 0.597 1.579 0.939 0.725 0.469 1.451 1.024 2.133 1.536 0.384 0.256 0.725 0.512 1.109 0.811 0.085 0.043 0.128 0.128 0.213 0.213 0.683 0.555 1.28 1.152 1.92 1.707 0.427 0.384 0.896 0.768 1.28 1.152 0.469 0.469 0.896 0.939 1.323 1.451 0.512 0.555 1.067 1.109 1.579 1.707 0.043 0.043 0.085 0.128 0.128 0.171 2.176 2.645 3.968 5.547 5.419 8.533 1.451 3.029 2.603 6.272 3.328 9.643 0 0.043 0 0.128 0.043 0.171 0.171 0.768 0.256 1.536 0.384 2.304 0.085 0.64 0.213 1.28 0.299 1.92 0.043 0.555 0.085 1.152 0.128 1.707 0.043 0.853 0.128 1.749 0.128 2.603 0 0.085 0 0.213 0 0.299v175.872c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-76.245c-64.469 46.251-142.123 71.637-223.659 71.637-102.656 0-199.168-39.979-271.787-112.555-72.576-72.576-112.555-169.088-112.555-271.744 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 79.701 31.019 154.624 87.381 210.944 56.363 56.363 131.285 87.381 210.944 87.381 54.955 0 107.605-14.848 153.301-42.283zM884.309 543.019c-5.888 22.997-29.312 36.864-52.352 30.976-22.997-5.888-36.864-29.312-30.976-52.352 6.187-24.149 9.344-49.195 9.344-74.368 0-5.248-0.128-10.581-0.427-15.829-1.237-23.723 16.981-43.947 40.704-45.184 0.768 0 1.536-0.043 2.261-0.043 22.741 0 41.728 17.792 42.923 40.747 0.341 6.741 0.512 13.568 0.512 20.267 0 32.427-4.053 64.64-12.032 95.744zM535.552 149.845c-7.765-0.597-15.701-0.896-23.552-0.896-40.405 0-79.616 7.936-116.437 23.552-21.845 9.259-47.104-0.939-56.363-22.784s0.939-47.104 22.784-56.363c47.531-20.181 98.005-30.421 150.059-30.421 10.069 0 20.224 0.384 30.208 1.152 23.68 1.835 41.387 22.528 39.552 46.208s-22.528 41.387-46.208 39.552zM827.947 310.912c-20.437 12.075-46.805 5.291-58.88-15.147-12.8-21.632-28.288-41.643-46.123-59.477-16-16-33.792-30.165-52.907-42.112-20.139-12.587-26.24-39.125-13.611-59.264 8.149-13.056 22.144-20.181 36.48-20.181 7.808 0 15.701 2.133 22.784 6.571 24.619 15.403 47.488 33.621 68.053 54.187 22.912 22.912 42.88 48.683 59.349 76.544 12.075 20.437 5.291 46.805-15.147 58.88zM235.435 335.147c-8.917 22.016-34.005 32.597-56.021 23.68s-32.597-34.005-23.68-56.021c14.677-36.224 34.816-69.931 59.819-100.181 8.491-10.283 20.779-15.616 33.195-15.616 9.643 0 19.328 3.243 27.349 9.856 18.304 15.104 20.907 42.24 5.76 60.544-19.413 23.509-35.029 49.664-46.421 77.739zM607.701 464.768l-153.131 87.125c-13.312 7.595-29.909-2.048-29.909-17.365v-174.251c0-15.36 16.555-24.96 29.909-17.365l153.131 87.125c13.483 7.68 13.483 27.093 0 34.773z" /> -<glyph unicode="" glyph-name="auto-renew" d="M884.309 543.019c-5.888 22.997-29.312 36.864-52.352 30.976-22.997-5.888-36.864-29.312-30.976-52.352 6.187-24.149 9.344-49.195 9.344-74.368 0-164.523-133.845-298.325-298.325-298.325-57.429 0-113.024 16.597-160.512 46.933h85.845c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-181.035c-23.765 0-43.008-19.243-43.008-43.008v-12.459c-0.384-3.371-0.427-6.741 0-10.112v-153.259c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v64.171c62.464-41.472 136.32-64.256 212.693-64.256 211.925 0 384.341 172.416 384.341 384.341 0 32.427-4.053 64.64-12.032 95.744zM222.507 374.869c-5.845 23.509-8.832 47.872-8.832 72.363 0 164.523 133.845 298.325 298.325 298.325 54.869 0 107.563-14.891 153.259-42.283h-67.584c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h181.035c23.765 0 43.008 19.243 43.008 43.008v175.915c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-76.288c-64.469 46.251-142.165 71.68-223.659 71.68-211.968 0.043-384.384-172.373-384.384-384.299 0-31.488 3.84-62.848 11.392-93.141 4.864-19.541 22.4-32.597 41.685-32.597 3.456 0 6.955 0.427 10.411 1.28 23.040 5.76 37.077 29.056 31.317 52.096z" /> -<glyph unicode="" glyph-name="award" d="M510.576 687.12c-66.512 0-120.448-53.92-120.448-120.448s53.92-120.448 120.448-120.448 120.448 53.92 120.448 120.448-53.92 120.448-120.448 120.448zM510.576 510.24c-31.12 0-56.448 25.312-56.448 56.448s25.312 56.448 56.448 56.448 56.448-25.312 56.448-56.448-25.312-56.448-56.448-56.448zM670.784 273.312c18.928-0.8 38.496-1.664 47.072 4.368 9.44 6.608 15.472 25.808 21.296 44.384 6.224 19.84 12.672 40.352 25.68 57.616 13.168 17.472 31.248 29.424 48.736 40.992 14.384 9.504 29.2 19.296 34.832 28.816 0.24 2.576 0.784 5.104 1.632 7.552 3.584 10.336-2.672 29.184-8.704 47.376-6.32 19.056-13.488 40.672-13.088 62.736 0.368 21.28 7.888 41.168 15.152 60.4 6.944 18.384 14.112 37.392 10.608 48.896-3.504 11.52-20.064 23.28-36.080 34.656-16.752 11.904-34.080 24.208-46.272 41.664-12.656 18.096-18.752 40.016-24.144 59.376-5.152 18.48-10.464 37.6-19.2 44.176-8.976 6.752-28.896 6.528-48.272 6.448-21.024-0.16-42.656-0.336-63.312 6.816-20.432 7.072-37.216 20.496-53.456 33.488-15.2 12.16-30.912 24.736-42.432 24.944-10.272 0.48-26.256-11.408-41.504-22.656-16.384-12.048-34.944-25.728-56.496-32.304-21.552-6.56-44.592-5.584-64.912-4.72-18.912 0.768-38.464 1.632-47.056-4.368-9.456-6.608-15.488-25.808-21.328-44.384-6.224-19.824-12.656-40.336-25.664-57.6-13.168-17.488-31.264-29.44-48.752-40.992-16.112-10.656-32.768-21.664-36.448-32.272-3.584-10.336 2.672-29.168 8.704-47.376 6.32-19.056 13.488-40.672 13.088-62.736-0.384-21.28-7.888-41.152-15.152-60.384-6.944-18.384-14.128-37.392-10.624-48.912 0.72-2.4 1.168-4.864 1.328-7.36 5.312-10.464 20.256-21.088 34.768-31.392 16.752-11.904 34.080-24.208 46.272-41.664 12.656-18.096 18.752-40.032 24.144-59.376 5.136-18.48 10.464-37.584 19.2-44.16 8.976-6.752 28.96-6.592 48.272-6.448 3.184 0.016 6.384 0.048 9.6 0.048 17.936 0 36.192-0.8 53.728-6.864 20.432-7.072 37.216-20.496 53.456-33.488 15.2-12.16 30.912-24.736 42.432-24.944h0.256c10.48 0 26.128 11.52 41.248 22.656 16.368 12.048 34.944 25.728 56.496 32.304s44.592 5.584 64.912 4.72zM540.608 294.752c-10.944-8.064-24.832-17.936-31.584-17.968-7.888 0.144-20.912 10.56-32.4 19.76-13.296 10.64-28.368 22.688-46.32 28.912-15.488 5.36-31.904 6.032-47.040 6.032-2.624 0-5.216-0.016-7.744-0.048-14.608-0.080-31.168-0.24-37.264 4.352-5.92 4.464-10.528 20.992-14.224 34.256-4.624 16.608-9.856 35.424-20.976 51.328-10.72 15.344-26.288 26.384-40 36.144-10.752 7.648-22.768 16.176-27.040 23.568-0.208 2.096-0.624 4.16-1.232 6.176-2.416 7.952 3.536 23.712 8.784 37.616 5.952 15.744 12.688 33.6 13.024 52.336 0.352 19.376-5.808 37.936-11.232 54.304-4.336 13.072-9.744 29.36-7.328 36.352 2.496 7.216 16.304 16.352 28.496 24.4 14.32 9.472 30.56 20.192 42.112 35.552 11.44 15.184 17.216 33.6 22.32 49.84 4.4 14.032 9.392 29.952 15.872 34.48 5.76 4.016 22.672 3.296 36.24 2.72 17.456-0.752 37.216-1.6 56.112 4.176 18.896 5.76 34.832 17.488 48.88 27.84 10.88 8 24.384 17.968 31.472 17.968h0.128c7.888-0.144 20.912-10.56 32.4-19.76 13.296-10.64 28.352-22.688 46.32-28.912 18.16-6.288 37.6-6.16 54.8-6 14.56 0.112 31.168 0.256 37.248-4.336 5.92-4.464 10.512-20.976 14.208-34.256 4.624-16.608 9.872-35.44 20.976-51.328 10.72-15.344 26.288-26.416 40.016-36.16 12.112-8.608 25.84-18.368 28.272-26.32s-3.52-23.712-8.784-37.616c-5.952-15.744-12.688-33.6-13.024-52.32-0.352-19.392 5.808-37.936 11.232-54.304 4.336-13.072 9.728-29.344 7.312-36.336-0.704-2.048-1.2-4.16-1.488-6.304-4.512-6.672-16.384-14.528-27.008-21.536-14.32-9.472-30.56-20.192-42.112-35.552-11.44-15.184-17.216-33.6-22.32-49.84-4.4-14.032-9.392-29.968-15.872-34.48-5.76-4.016-22.64-3.328-36.24-2.72-17.424 0.72-37.2 1.584-56.096-4.176-18.912-5.76-34.848-17.504-48.912-27.84zM411.056 199.776l-91.632-119.056-9.92 76.112c-2.288 17.52-18.288 29.776-35.872 27.6l-76.096-9.92 53.584 69.648c-17.024 18.432-24.448 42.704-30.688 65.072l-120.72-156.912c-7.904-10.256-8.832-24.272-2.368-35.472 6.448-11.216 19.072-17.408 31.872-15.776l120.976 15.76 15.76-120.976c1.664-12.832 10.912-23.392 23.408-26.768 2.752-0.736 5.552-1.104 8.336-1.104 9.776 0 19.216 4.496 25.36 12.48l139.856 181.712c-13.68 7.472-25.952 17.248-37.424 26.432-4.8 3.84-9.648 7.632-14.4 11.152zM924.288 152.64l-121.584 158.032c-0.832-2.592-1.664-5.184-2.48-7.776-6.224-19.824-13.136-41.488-26.72-59.216l52.96-68.848-76.096 9.92c-17.52 2.256-33.584-10.080-35.872-27.6l-9.92-76.112-92.672 120.384c-7.92-4.56-16.32-10.592-24.576-16.672-8.928-6.576-18.352-13.44-28.432-19.392l142.064-184.576c6.16-8 15.584-12.48 25.36-12.48 2.768 0 5.568 0.352 8.336 1.104 12.496 3.36 21.728 13.936 23.408 26.768l15.76 120.976 120.976-15.76c12.816-1.68 25.408 4.544 31.872 15.776 6.448 11.216 5.52 25.216-2.368 35.472z" /> -<glyph unicode="" glyph-name="backpack" d="M853.461 434.987h-45.568s0 0 0 0c-2.219 15.147-5.504 29.909-9.899 44.203 34.219 31.275 55.68 76.245 55.68 126.165v85.248c0 23.723-19.243 43.008-43.008 43.008h-42.368v11.989c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-11.989h-41.984v54.699c0 23.723-19.243 43.008-43.008 43.008h-170.667c-23.723 0-43.008-19.243-43.008-43.008v-54.699h-41.984v11.989c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-11.989h-42.325c-23.765 0-43.008-19.243-43.008-43.008v-85.248c0-49.92 21.461-94.848 55.637-126.165-4.395-14.336-7.68-29.099-9.899-44.245 0 0 0 0 0 0h-45.568c-47.147 0-85.547-38.357-85.547-85.504v-85.461c0-79.659 54.784-146.773 128.64-165.675 3.499-20.267 21.12-35.627 42.368-35.627h512c21.248 0 38.869 15.403 42.368 35.627 73.856 18.901 128.64 86.016 128.64 165.675v85.461c0 47.147-38.357 85.504-85.547 85.504zM256.341 605.397v42.24h127.317c0.171-23.595 19.371-42.667 43.008-42.667h170.667c23.637 0 42.837 19.072 43.008 42.667h127.36v-42.24c0-15.189-4.011-29.44-10.965-41.813-14.635-25.813-42.368-43.264-74.112-43.264h-341.205c-31.744 0-59.477 17.493-74.069 43.307-6.997 12.331-10.965 26.581-10.965 41.771zM469.675 733.653v11.691h84.693v-54.357h-84.693v42.667zM171.008 263.979v84.992h41.984v-158.293c-25.088 14.805-41.984 42.069-41.984 73.259zM299.008 392.021c0 15.957 1.749 31.488 5.12 46.421 11.989-2.688 24.491-4.096 37.291-4.096h341.205c12.8 0 25.301 1.408 37.291 4.096 3.328-14.933 5.12-30.464 5.12-46.421v-243.328h-41.984v212.992c0 23.765-19.243 43.008-43.008 43.008h-256c-23.723 0-43.008-19.243-43.008-43.008v-212.992h-41.984v243.328zM427.008 318.677h169.984v-169.984h-169.984v169.984zM852.992 263.979c0-31.189-16.896-58.496-41.984-73.259v158.293h41.984v-84.992z" /> -<glyph unicode="" glyph-name="back-to-top-button" d="M661.172 459.526v-282.84c0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5v322.74c-12.74-14.9-27.16-28.28-43-39.9zM580.292 266.486c0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5v170.080c-13.68-6.74-28.060-12.28-43-16.48v-153.6zM488.832 411.786v-376.56c0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5v376.28c-6.54-0.52-13.16-0.78-19.84-0.78-7.8 0-15.54 0.36-23.16 1.060zM400.712 253.486c0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5v166.6c-14.94 4.2-29.32 9.72-43 16.46v-183.060zM319.832 499.406v-322.72c0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5v282.84c-15.82 11.6-30.26 24.98-43 39.88zM618.072 482.566c15.8 9.28 30.28 20.58 43.1 33.54 15.9 16.080 29.24 34.7 39.3 55.22 13.72 27.86 21.42 59.2 21.42 92.3 0 115.72-94.16 209.88-209.9 209.88s-209.88-94.16-209.88-209.88c0-30 6.32-58.54 17.72-84.38 10.4-23.64 25.060-45.020 43-63.14 15.76-15.92 34.020-29.36 54.18-39.62 7.72-3.96 15.74-7.42 23.98-10.38 15.1-5.46 31-9.22 47.48-11.060v252.6l-97.58-97.58c-7.66-7.66-19.64-8.34-28.060-2.040-0.82 0.62-1.62 1.3-2.36 2.040-8.38 8.4-8.38 22.020 0 30.4l134.3 134.28c0.48 0.48 1 0.96 1.54 1.4 0 0 0.020 0 0.020 0.020 0.52 0.44 1.080 0.86 1.64 1.22 0.3 0.2 0.58 0.38 0.88 0.56 0.28 0.18 0.58 0.34 0.88 0.5 0.62 0.34 1.24 0.64 1.88 0.92 1.28 0.54 2.64 0.96 4.040 1.24 0.26 0.060 0.5 0.1 0.76 0.14 0.020 0.020 0.060 0.020 0.080 0.020 0.1 0.020 0.22 0.040 0.36 0.060 0.66 0.080 1.32 0.16 2 0.2 0.36 0.020 0.74 0.020 1.12 0.020h0.16c0.54 0 1.080-0.040 1.62-0.080 0.1-0.020 0.22-0.020 0.32-0.040 0.080 0.020 0.14 0 0.22-0.020 0.68-0.060 1.34-0.16 2-0.3 0.7-0.14 1.38-0.32 2.040-0.52 0.4-0.12 0.78-0.24 1.16-0.4 0.2-0.060 0.4-0.14 0.58-0.22 0.4-0.16 0.8-0.34 1.2-0.54 2.52-1.2 4.76-2.88 6.62-4.92l131.38-133.66c8.32-8.48 8.2-22.080-0.26-30.4-4.18-4.12-9.64-6.18-15.080-6.18-5.56 0-11.12 2.16-15.32 6.44l-95.14 96.78v-252.34c0.12-0.020 0.24 0 0.36 0.020 16.8 1.58 33.040 5.14 48.46 10.48 13.24 4.56 25.88 10.42 37.78 17.42z" /> -<glyph unicode="" glyph-name="backup" d="M926.421 605.397c-16.811 16.811-44.032 16.811-60.8 0l-54.613-54.613v151.851c0 47.403-38.571 86.016-86.016 86.016h-425.984c-47.403 0-86.016-38.571-86.016-86.016v-127.659c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v127.659h425.984v-151.851l-54.613 54.613c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l128-128c0.981-0.981 2.048-1.963 3.157-2.859 0.512-0.427 1.024-0.768 1.536-1.152 0.597-0.469 1.195-0.939 1.835-1.365 0.597-0.427 1.237-0.768 1.877-1.152 0.555-0.341 1.152-0.725 1.707-1.024 0.64-0.341 1.323-0.64 1.963-0.939 0.597-0.299 1.237-0.597 1.835-0.853 0.64-0.256 1.28-0.469 1.92-0.725 0.683-0.256 1.365-0.512 2.048-0.725 0.64-0.213 1.28-0.341 1.963-0.512 0.725-0.171 1.408-0.384 2.133-0.512 0.768-0.171 1.493-0.256 2.261-0.341 0.64-0.085 1.237-0.213 1.877-0.256 1.408-0.128 2.816-0.213 4.224-0.213s2.816 0.085 4.224 0.213c0.64 0.043 1.237 0.171 1.877 0.256 0.768 0.128 1.536 0.213 2.261 0.341s1.408 0.341 2.133 0.512c0.64 0.171 1.323 0.299 1.963 0.512 0.683 0.213 1.365 0.469 2.048 0.725 0.64 0.213 1.28 0.427 1.92 0.725 0.64 0.256 1.237 0.555 1.835 0.853 0.64 0.299 1.323 0.597 1.963 0.939 0.597 0.299 1.152 0.683 1.707 1.024 0.64 0.384 1.28 0.725 1.877 1.152 0.64 0.427 1.237 0.896 1.835 1.365 0.512 0.384 1.024 0.725 1.536 1.152 1.109 0.896 2.133 1.835 3.157 2.859l128 128c16.811 16.811 16.811 44.032 0 60.8zM768 361.984c-23.765 0-43.008-19.243-43.008-43.008v-127.659h-425.984v151.851l54.613-54.613c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-128 128c-1.024 0.981-2.048 1.963-3.157 2.859-0.512 0.427-1.024 0.768-1.536 1.152-0.597 0.469-1.195 0.939-1.835 1.365-0.597 0.427-1.237 0.768-1.877 1.152-0.597 0.341-1.152 0.725-1.749 1.024-0.64 0.341-1.28 0.64-1.963 0.939-0.597 0.299-1.237 0.597-1.877 0.853s-1.28 0.469-1.92 0.725c-0.683 0.256-1.365 0.512-2.048 0.725-0.64 0.213-1.28 0.341-1.92 0.512-0.725 0.171-1.408 0.384-2.133 0.512s-1.493 0.213-2.261 0.341c-0.64 0.085-1.28 0.213-1.92 0.256-1.365 0.128-2.773 0.213-4.139 0.213 0 0-0.043 0-0.085 0s-0.043 0-0.085 0c-1.408 0-2.773-0.085-4.139-0.213-0.64-0.043-1.28-0.171-1.92-0.256-0.768-0.128-1.493-0.213-2.261-0.341-0.725-0.128-1.451-0.341-2.133-0.512-0.64-0.171-1.28-0.299-1.92-0.512-0.683-0.213-1.365-0.469-2.048-0.725-0.64-0.213-1.28-0.427-1.92-0.725-0.64-0.256-1.237-0.555-1.877-0.853s-1.323-0.597-1.963-0.939c-0.597-0.299-1.152-0.683-1.749-1.024-0.64-0.384-1.28-0.725-1.877-1.152-0.64-0.427-1.237-0.896-1.835-1.365-0.512-0.384-1.024-0.725-1.536-1.152-1.109-0.896-2.133-1.835-3.157-2.859l-128-128c-16.811-16.811-16.811-44.032 0-60.8 16.811-16.811 44.032-16.811 60.8 0l54.613 54.613v-151.851c0-47.403 38.571-86.016 86.016-86.016h425.984c47.403 0 86.016 38.571 86.016 86.016v127.659c0 23.765-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="badge-check" d="M993.232 440.176c0 67.952-37.12 128.4-95.2 159.376 19.152 62.976 2.656 131.984-45.392 180.016-48.048 48.048-117.024 64.544-180.016 45.376-30.992 58.080-91.44 95.216-159.392 95.216s-128.4-37.136-159.392-95.216c-62.976 19.184-131.984 2.656-180.016-45.376s-64.544-117.040-45.392-180.016c-58.080-30.992-95.2-91.44-95.2-159.376s37.12-128.4 95.2-159.392c-19.152-62.976-2.656-131.968 45.392-180.016s117.024-64.544 180.016-45.376c30.992-58.080 91.44-95.2 159.392-95.2s128.4 37.12 159.392 95.2c63.008-19.2 132-2.656 180.016 45.376 48.048 48.048 64.544 117.056 45.392 180.016 58.080 30.992 95.2 91.44 95.2 159.392zM847.024 328.56c-9.088-2.816-16.448-9.536-20.096-18.336-3.648-8.784-3.184-18.736 1.248-27.168 24-45.536 15.648-100.608-20.8-137.056-36.432-36.416-91.552-44.8-137.040-20.784-8.416 4.448-18.368 4.928-27.168 1.248-8.784-3.648-15.504-11.008-18.32-20.096-15.232-49.168-60.096-82.208-111.632-82.208s-96.384 33.040-111.632 82.208c-2.816 9.088-9.536 16.448-18.32 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.136 0-10.272-1.232-14.928-3.68-45.536-24-100.592-15.648-137.040 20.784-36.432 36.448-44.8 91.52-20.8 137.056 4.432 8.416 4.896 18.368 1.248 27.168s-11.008 15.504-20.096 18.32c-49.168 15.248-82.208 60.096-82.208 111.632s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.32 3.648 8.8 3.184 18.752-1.248 27.168-24 45.536-15.648 100.608 20.8 137.056 36.432 36.416 91.536 44.8 137.040 20.784 8.4-4.416 18.336-4.896 27.168-1.248 8.784 3.648 15.504 11.008 18.32 20.096 15.232 49.168 60.096 82.208 111.632 82.208s96.384-33.040 111.632-82.208c2.816-9.088 9.536-16.448 18.32-20.096 8.816-3.648 18.768-3.184 27.168 1.248 45.536 23.984 100.608 15.648 137.040-20.784 36.432-36.448 44.8-91.52 20.8-137.056-4.432-8.416-4.896-18.368-1.248-27.168 3.648-8.784 11.008-15.504 20.096-18.32 49.168-15.232 82.208-60.080 82.208-111.616s-33.024-96.384-82.208-111.616zM649.344 562.832l-186.176-178.368-86.576 79.28c-13.040 11.952-33.264 11.024-45.2-2s-11.040-33.28 1.984-45.216l108.688-99.52c6.128-5.6 13.856-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l207.808 199.104c12.768 12.224 13.184 32.48 0.976 45.248-12.224 12.752-32.48 13.184-45.248 0.976z" /> -<glyph unicode="" glyph-name="badge-dollar" d="M992 448c0 67.952-37.12 128.4-95.2 159.392 19.152 62.976 2.656 131.968-45.392 180.016s-117.008 64.528-180.016 45.376c-30.992 58.080-91.44 95.216-159.392 95.216s-128.4-37.136-159.392-95.2c-62.944 19.136-131.968 2.656-180.016-45.392s-64.544-117.040-45.392-180.016c-58.080-30.992-95.2-91.44-95.2-159.392s37.12-128.4 95.2-159.392c-19.152-62.976-2.656-131.968 45.392-180.016s117.024-64.528 180.016-45.392c30.992-58.064 91.44-95.2 159.392-95.2s128.4 37.136 159.392 95.216c63.008-19.2 131.984-2.672 180.016 45.376 48.048 48.048 64.544 117.040 45.392 180.016 58.080 30.992 95.2 91.44 95.2 159.392zM845.792 336.384c-9.088-2.816-16.448-9.536-20.096-18.336-3.648-8.784-3.184-18.736 1.248-27.168 24-45.536 15.648-100.608-20.8-137.040-36.432-36.416-91.536-44.8-137.040-20.784-8.432 4.448-18.368 4.912-27.168 1.248-8.784-3.648-15.504-11.008-18.32-20.096-15.232-49.168-60.096-82.208-111.632-82.208s-96.384 33.040-111.632 82.208c-2.816 9.088-9.536 16.448-18.32 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.136 0-10.272-1.232-14.928-3.68-45.52-24-100.592-15.648-137.040 20.8-36.432 36.432-44.8 91.52-20.8 137.040 4.432 8.416 4.896 18.368 1.248 27.168s-11.008 15.504-20.096 18.336c-49.168 15.232-82.208 60.080-82.208 111.616s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.336 3.648 8.784 3.184 18.736-1.248 27.168-24 45.536-15.648 100.608 20.8 137.040 36.432 36.432 91.52 44.784 137.040 20.8 8.4-4.432 18.336-4.896 27.168-1.248 8.784 3.648 15.504 11.008 18.32 20.096 15.232 49.168 60.096 82.208 111.632 82.208s96.384-33.040 111.632-82.208c2.816-9.088 9.536-16.448 18.32-20.096 8.816-3.664 18.752-3.184 27.168 1.248 45.536 23.984 100.592 15.664 137.040-20.784 36.432-36.432 44.8-91.52 20.8-137.040-4.432-8.416-4.896-18.368-1.248-27.168s11.008-15.504 20.096-18.336c49.168-15.232 82.208-60.080 82.208-111.616s-33.024-96.384-82.208-111.616zM531.776 480.624c-37.76 18.144-49.52 26.672-49.52 44.688 0 4.976 0 20.128 20.864 28.688 19.2 7.888 45.088 4.704 56.528-6.928 12.4-12.592 32.688-12.736 45.248-0.336 12.592 12.4 12.752 32.672 0.336 45.264-13.952 14.144-33.136 23.408-53.984 27.632v27.472c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.152c-2.8-0.912-5.664-1.616-8.4-2.736-37.936-15.552-60.592-48.416-60.592-87.904 0-61.136 49.584-84.976 85.776-102.368 38.656-18.576 54.384-28.592 54.384-53.152 0-17.728-23.696-32.128-39.168-32.128-22.992 0-56 15.808-62.928 22.528-12.416 12.592-32.656 12.72-45.232 0.336-12.592-12.4-12.752-32.656-0.336-45.248 14.288-14.496 45.552-30.208 76.496-37.472v-28.896c0-17.664 14.336-32 32-32s32 14.336 32 32v30.432c37.824 12.992 71.168 47.424 71.168 90.448 0 67.264-52.4 92.448-90.656 110.848z" /> -<glyph unicode="" glyph-name="badge-percent" d="M989.28 442.432c0 67.952-37.136 128.4-95.2 159.392 19.136 62.992 2.656 131.984-45.392 180.016-48.064 48.064-117.072 64.544-180.032 45.376-30.976 58.064-91.424 95.2-159.376 95.2s-128.4-37.12-159.392-95.2c-62.976 19.168-131.984 2.656-180.016-45.376-48.048-48.048-64.544-117.040-45.392-180.016-58.080-30.992-95.2-91.44-95.2-159.392s37.12-128.4 95.2-159.376c-19.152-62.976-2.656-131.984 45.392-180.016 48.048-48.048 117.024-64.528 180.016-45.376 30.992-58.080 91.44-95.216 159.392-95.216s128.4 37.136 159.376 95.2c62.976-19.152 131.984-2.672 180.032 45.392 48.048 48.032 64.528 117.040 45.392 180.016 58.064 30.992 95.2 91.44 95.2 159.376zM843.072 330.816c-9.088-2.816-16.448-9.52-20.096-18.32s-3.184-18.736 1.248-27.168c23.984-45.552 15.632-100.624-20.8-137.056s-91.536-44.8-137.056-20.784c-8.416 4.432-18.352 4.896-27.168 1.248-8.8-3.648-15.504-11.008-18.32-20.096-15.232-49.168-60.080-82.208-111.616-82.208s-96.384 33.040-111.632 82.208c-2.816 9.088-9.536 16.448-18.32 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.136 0-10.272-1.232-14.928-3.68-45.504-24-100.576-15.664-137.040 20.784-36.432 36.448-44.8 91.52-20.8 137.056 4.432 8.416 4.896 18.368 1.248 27.168s-11.008 15.504-20.096 18.336c-49.168 15.232-82.208 60.080-82.208 111.616s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.336 3.648 8.784 3.184 18.736-1.248 27.168-24 45.536-15.648 100.608 20.8 137.056 36.432 36.432 91.536 44.784 137.040 20.784 8.416-4.432 18.336-4.88 27.168-1.248 8.784 3.648 15.504 11.008 18.32 20.096 15.232 49.168 60.096 82.208 111.632 82.208s96.368-33.024 111.616-82.192c2.816-9.088 9.52-16.464 18.32-20.096 8.832-3.664 18.768-3.2 27.168 1.248 45.584 24 100.64 15.632 137.056-20.784 36.416-36.432 44.784-91.52 20.8-137.056-4.432-8.416-4.896-18.368-1.248-27.168s11.008-15.504 20.096-18.32c49.168-15.248 82.208-60.096 82.208-111.632s-33.024-96.368-82.208-111.616zM405.552 493.040c41.984 0 76.032 34.032 76.032 76.032s-34.032 76.032-76.032 76.032-76.032-34.032-76.032-76.032 34.032-76.032 76.032-76.032zM405.552 581.088c6.64 0 12.032-5.392 12.032-12.032s-5.392-12.032-12.032-12.032-12.032 5.392-12.032 12.032 5.392 12.032 12.032 12.032zM612.992 391.84c-41.984 0-76.032-34.032-76.032-76.032s34.032-76.032 76.032-76.032 76.032 34.032 76.032 76.032-34.032 76.032-76.032 76.032zM612.992 303.792c-6.624 0-12.032 5.392-12.032 12.032s5.392 12.032 12.032 12.032 12.032-5.392 12.032-12.032-5.392-12.032-12.032-12.032zM649.584 628.8l-327.488-327.472c-12.496-12.496-12.496-32.752 0-45.248 6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l327.488 327.472c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0z" /> -<glyph unicode="" glyph-name="ban" d="M813.696 748.971c-83.328 83.328-192.512 124.971-301.696 124.971s-218.368-41.643-301.696-124.971c-166.613-166.613-166.613-436.779 0-603.392 83.328-83.328 192.512-124.971 301.696-124.971s218.368 41.643 301.696 124.971c166.613 166.613 166.613 436.779 0 603.392zM752.896 688.171c64.341-64.341 99.797-149.888 99.797-240.896 0-76.331-24.96-148.821-70.955-208.171l-477.909 477.867c59.349 45.995 131.84 70.955 208.171 70.955 91.008 0 176.555-35.456 240.896-99.797zM271.104 206.379c-64.341 64.341-99.797 149.888-99.797 240.896 0 76.672 25.173 149.504 71.595 208.981l478.080-478.080c-59.52-46.421-132.309-71.595-208.981-71.595-91.008 0-176.555 35.456-240.896 99.797z" /> -<glyph unicode="" glyph-name="banner-ad" d="M901.744 928h-768c-52.944 0-96-43.056-96-96v-768c0-52.944 43.056-96 96-96h768c52.944 0 96 43.056 96 96v768c0 52.944-43.056 96-96 96zM101.744 736h832v-128h-832v128zM101.744 544h832v-320h-832v320zM133.744 864h768c17.936 0 32-14.064 32-32v-32h-832v32c0 17.936 14.064 32 32 32zM293.744 32h-64v32h64v-32zM549.744 32h-64v32h64v-32zM805.744 32h-64v32h64v-32zM901.744 32h-32v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-64v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-64v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-32c-17.936 0-32 14.064-32 32v96h832v-96c0-17.936-14.064-32-32-32zM583.744 704h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM455.744 704h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM327.744 704h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM711.744 704h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM645.744 512h-128c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32s32 14.336 32 32v32h64v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v192c0 17.664-14.336 32-32 32zM549.744 384v64h64v-64h-64zM805.744 512h-64c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h64c52.944 0 96 43.056 96 96v64c0 52.944-43.056 96-96 96zM837.744 352c0-17.648-14.352-32-32-32h-32v128h32c17.648 0 32-14.352 32-32v-64zM165.744 416h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM389.744 352h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM293.744 416h8.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-8.016c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="banner-discount" d="M896 928h-768c-35.296 0-64-28.704-64-64v-832c0-35.296 28.704-64 64-64h768c35.296 0 64 28.704 64 64v832c0 35.296-28.704 64-64 64zM896 160h-156.080c-312.56 72.48-396.528 270.608-418.112 352h94.192c17.664 0 32 14.336 32 32v228.016c0 17.664-14.336 32-32 32h-101.152v59.984h581.152v-704zM384 740.016v-164.016h-160v164.016h160zM250.848 864v-59.984h-58.848c-17.664 0-32-14.336-32-32v-228.016c0-17.664 14.336-32 32-32h64.496c16.256-68.464 77.68-243.664 292.992-352h-421.488v704h122.848zM128 32v64h768v-64h-768zM586.848 539.712c-10.496-6.064-16.672-17.536-15.936-29.632l14.976-249.984c0.752-12.672 8.928-23.68 20.832-28.096 3.616-1.344 7.376-2 11.104-2 8.496 0 16.848 3.408 22.992 9.728l51.552 53.232 10.784-18.656c5.936-10.272 16.688-15.984 27.728-15.984 5.44 0 10.944 1.376 15.984 4.304 15.296 8.848 20.528 28.416 11.68 43.712l-10.768 18.624 71.808 18.016c12.32 3.072 21.632 13.136 23.76 25.664 2.128 12.496-3.328 25.088-13.92 32.080l-208.976 137.984c-10.112 6.688-23.104 7.056-33.632 1.008zM733.52 387.376l-42.448-10.656c-0.256-0.064-0.48-0.224-0.736-0.288-2.512-0.704-4.992-1.616-7.36-2.976-0.064-0.032-0.128-0.064-0.192-0.096-2.352-1.36-4.384-3.056-6.24-4.88-0.208-0.208-0.48-0.32-0.688-0.528l-30.448-31.44-6.8 113.52 94.912-62.656zM493.52 717.248c6.256-6.16 14.368-9.232 22.496-9.232 8.256 0 16.496 3.168 22.768 9.504 12.416 12.576 12.304 32.848-0.272 45.264l-4.016 3.968c-12.608 12.4-32.848 12.304-45.264-0.272s-12.304-32.848 0.272-45.264l4.016-3.968zM698.688 602.592c-12.48 12.544-32.768 12.544-45.248 0.096-12.528-12.464-12.56-32.736-0.096-45.248l4-4.016c6.256-6.288 14.464-9.424 22.672-9.424s16.336 3.104 22.576 9.328c12.528 12.464 12.56 32.736 0.096 45.248l-4 4.016zM493.392 557.392c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l160 160c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-160-160c-12.496-12.496-12.496-32.752 0-45.248zM192 224h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 320h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="bar-chart" d="M285.066 425.61h-71.734c-47.146 0-85.5-38.356-85.5-85.5v-170.254c0-11.876 9.626-21.5 21.5-21.5h199.734c11.876 0 21.5 9.624 21.5 21.5v170.254c0 47.144-38.354 85.5-85.5 85.5zM327.566 191.356h-156.734v148.754c0 23.434 19.066 42.5 42.5 42.5h71.734c23.436 0 42.5-19.066 42.5-42.5v-148.754zM547.868 659.866h-71.734c-47.144 0-85.5-38.356-85.5-85.5v-426.010h242.734v426.010c0 47.144-38.356 85.5-85.5 85.5zM810.666 830.976h-71.734c-47.146 0-85.5-38.356-85.5-85.5v-575.62c0-11.876 9.626-21.5 21.5-21.5h199.734c11.876 0 21.5 9.624 21.5 21.5v575.62c0 47.144-38.354 85.5-85.5 85.5zM853.166 191.356h-156.734v554.12c0 23.434 19.066 42.5 42.5 42.5h71.734c23.436 0 42.5-19.066 42.5-42.5v-554.12zM871.298 67.194h-721.964c-11.874 0-21.5 9.624-21.5 21.5s9.626 21.5 21.5 21.5h721.964c11.874 0 21.5-9.624 21.5-21.5s-9.626-21.5-21.5-21.5z" /> -<glyph unicode="" glyph-name="barcode" d="M106.667 705.579h42.667c11.782 0 21.333-9.551 21.333-21.333v-472.448c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v472.448c0 11.782 9.551 21.333 21.333 21.333zM320 705.579h42.667c11.782 0 21.333-9.551 21.333-21.333v-472.448c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v472.448c0 11.782 9.551 21.333 21.333 21.333zM448 705.579h42.667c11.782 0 21.333-9.551 21.333-21.333v-472.448c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v472.448c0 11.782 9.551 21.333 21.333 21.333zM576 705.579h85.333c11.782 0 21.333-9.551 21.333-21.333v-472.448c0-11.782-9.551-21.333-21.333-21.333h-85.333c-11.782 0-21.333 9.551-21.333 21.333v472.448c0 11.782 9.551 21.333 21.333 21.333zM874.667 705.579h42.667c11.782 0 21.333-9.551 21.333-21.333v-472.448c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v472.448c0 11.782 9.551 21.333 21.333 21.333zM234.667 705.579v0c-11.776 0-21.333-9.557-21.333-21.333v-472.448c0-11.776 9.557-21.333 21.333-21.333v0c11.776 0 21.333 9.557 21.333 21.333v472.448c0 11.776-9.557 21.333-21.333 21.333zM789.333 705.579v0c-11.776 0-21.333-9.557-21.333-21.333v-472.448c0-11.776 9.557-21.333 21.333-21.333v0c11.776 0 21.333 9.557 21.333 21.333v472.448c0 11.776-9.557 21.333-21.333 21.333z" /> -<glyph unicode="" glyph-name="bar-progress" d="M932.48 896h-840.96c-32.816 0-59.52-26.704-59.52-59.52v-136.976c0-32.816 26.704-59.52 59.52-59.52h840.976c32.816 0 59.52 26.704 59.52 59.52v136.976c0 32.816-26.704 59.52-59.52 59.52zM928 704h-832v128h832v-128zM192 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM932.48 576h-840.96c-32.816 0-59.52-26.704-59.52-59.52v-136.976c0-32.816 26.704-59.52 59.52-59.52h840.976c32.816 0 59.52 26.704 59.52 59.52v136.976c0 32.816-26.704 59.52-59.52 59.52zM928 384h-832v128h832v-128zM932.48 256h-840.96c-32.816 0-59.52-26.704-59.52-59.52v-136.976c0-32.816 26.704-59.52 59.52-59.52h840.976c32.816 0 59.52 26.704 59.52 59.52v136.976c0 32.816-26.704 59.52-59.52 59.52zM928 64h-832v128h832v-128zM192 416h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 96h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="bars" d="M64 775.952h895.392c17.664 0 32 14.336 32 32s-14.336 32-32 32h-895.392c-17.664 0-32-14.336-32-32s14.336-32 32-32zM959.392 480h-894.896c-17.664 0-32-14.336-32-32s14.336-32 32-32h894.896c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 120.048h-895.504c-17.664 0-32-14.336-32-32s14.336-32 32-32h895.504c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="bar-sort-left" d="M64 768h463.104c17.664 0 32 14.336 32 32s-14.336 32-32 32h-463.104c-17.664 0-32-14.336-32-32s14.336-32 32-32zM545.392 128h-473.744c-17.664 0-32-14.336-32-32s14.336-32 32-32h473.744c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 479.168h-13.216c-2.272 0.512-4.624 0.832-7.040 0.832h-615.264c-2.432 0-4.768-0.32-7.040-0.832h-253.44c-17.664 0-32-14.336-32-32s14.336-32 32-32h896c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="bar-sort-right" d="M706.56 416.832h253.44c17.664 0 32 14.336 32 32s-14.336 32-32 32h-896c-17.664 0-32-14.336-32-32s14.336-32 32-32h13.216c2.272-0.512 4.624-0.832 7.040-0.832h615.248c2.432 0 4.768 0.32 7.040 0.832zM960 128h-463.104c-17.664 0-32-14.336-32-32s14.336-32 32-32h463.104c17.664 0 32 14.336 32 32s-14.336 32-32 32zM478.608 768h473.744c17.664 0 32 14.336 32 32s-14.336 32-32 32h-473.744c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="battery" d="M470.816 672h14.336v-14.336c0-17.664 14.336-32 32-32s32 14.336 32 32v14.336h14.336c17.664 0 32 14.336 32 32s-14.336 32-32 32h-14.336v14.336c0 17.664-14.336 32-32 32s-32-14.336-32-32v-14.336h-14.336c-17.664 0-32-14.336-32-32s14.336-32 32-32zM563.504 160h-92.688c-17.664 0-32-14.336-32-32s14.336-32 32-32h92.688c17.664 0 32 14.336 32 32s-14.336 32-32 32zM620.992 456.832h-32v96c0 17.664-14.336 32-32 32h-96c-13.088 0-24.848-7.968-29.712-20.112l-64-160c-3.952-9.856-2.736-21.024 3.216-29.824s15.888-14.064 26.496-14.064h32v-128c0-17.664 14.336-32 32-32h64c12.112 0 23.2 6.848 28.624 17.68l96 192c4.96 9.92 4.432 21.696-1.408 31.136-5.824 9.424-16.128 15.168-27.216 15.168zM505.216 264.832h-12.224v128c0 17.664-14.336 32-32 32h-16.736l38.4 96h42.336v-96c0-17.664 14.336-32 32-32h12.224l-64-128zM805.168 32h-20.848c13.12 20.912 20.848 45.552 20.848 72.016v623.968c0 75.008-61.024 136.016-136.016 136.016h-10.72l-54.624 54.624c-6 6-14.144 9.376-22.624 9.376h-128c-8.48 0-16.624-3.376-22.624-9.376l-54.624-54.624h-10.72c-75.008 0-136.016-61.008-136.016-136.016v-623.968c0-26.464 7.712-51.104 20.848-72.016h-20.848c-17.664 0-32-14.336-32-32s14.336-32 32-32h576c17.664 0 32 14.336 32 32s-14.336 32-32 32zM365.184 32c-36.96 0-67.168 28.112-71.216 64h45.568c17.664 0 32 14.336 32 32s-14.336 32-32 32h-46.384v512h46.384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-45.568c4.048 35.888 34.24 64 71.216 64h303.952c36.96 0 67.168-28.112 71.216-64h-46.368c-17.664 0-32-14.336-32-32s14.336-32 32-32h47.168v-512h-47.168c-17.664 0-32-14.336-32-32s14.336-32 32-32h46.368c-4.048-35.888-34.24-64-71.216-64h-303.952z" /> -<glyph unicode="" glyph-name="behance" d="M640.768 683.088h214.032v-51.984h-214.032v51.984zM426.288 469.792v0c47.36 22.64 72.096 56.896 72.096 110.224 0 105.152-78.352 130.784-168.752 130.784h-248.912v-527.872h255.888c95.92 0 186.032 46.032 186.032 153.264 0 66.288-31.424 115.28-96.368 133.6zM196.752 620.688h108.88c41.856 0 79.536-11.76 79.536-60.32 0-44.832-29.344-62.864-70.752-62.864h-117.664v123.184zM320.832 272.592h-124.080v145.376h126.464c51.088 0 83.408-21.296 83.408-75.376 0-53.328-38.576-70-85.792-70zM938.672 368.512c0 113.056-66.128 207.344-186.032 207.344-116.48 0-195.568-87.584-195.568-202.272 0-119.008 74.928-200.64 195.568-200.64 91.312 0 150.432 41.104 178.88 128.544h-92.64c-9.984-32.624-51.088-49.904-82.96-49.904-61.52 0-93.84 36.048-93.84 97.264h275.712c0.448 6.256 0.896 12.96 0.896 19.664zM662.224 414.992c3.424 50.192 36.784 81.616 87.136 81.616 52.72 0 79.248-30.976 83.712-81.616h-170.848z" /> -<glyph unicode="" glyph-name="blob-shape" d="M125.84 835.536c43.344 9.024 87.536 5.232 127.872-10.848 3.888-1.568 7.904-2.304 11.84-2.304 12.72 0 24.736 7.648 29.728 20.16 6.544 16.416-1.456 35.024-17.856 41.584-52.064 20.784-108.992 25.632-164.624 14.064-17.312-3.6-28.4-20.544-24.816-37.84s20.544-28.352 37.84-24.816zM973.536 147.664c-12.512 12.48-32.768 12.496-45.248-0.032-18.72-18.752-39.408-35.312-61.296-49.136-50.16-31.2-100.304-52.432-149.024-63.088-17.264-3.776-28.192-20.848-24.416-38.112 3.28-14.96 16.528-25.152 31.232-25.152 2.272 0 4.56 0.24 6.88 0.736 55.872 12.24 112.784 36.224 169.344 71.392 26.096 16.48 50.512 36.048 72.576 58.16 12.48 12.496 12.464 32.768-0.032 45.248zM958.88 303.248c19.904 55.408 29.312 143.84 2.944 207.072-73.648 176.832-275.168 169.088-335.264 162.416-91.136-10.192-144.688 7.52-200.512 29.936l-163.488 65.376c-64.448 25.632-138.048 10.176-187.536-39.296-49.936-49.92-62.592-125.232-31.536-187.376l26.688-53.36c16.176-32.32 17.28-69.888 3.056-103.072l-37.376-87.008c-26.736-62.56-11.856-132.912 38.816-183.568 34.080-34.080 76.96-52 120.32-52 21.312 0 42.752 4.336 63.296 13.184l83.632 35.696c12.576 5.408 25.76 9.536 39.184 12.272v0c27.936 5.68 56.32 5.408 84.288-0.8l130.224-28.848c76.064-16.896 149.744 0.4 239.584 56.496 3.664 2.4 90.224 59.824 123.664 152.848zM609.504 156.384l-130.24 28.848c-36.784 8.16-74.096 8.496-110.912 1.024-17.712-3.6-35.104-9.040-51.648-16.16l-83.648-35.712c-37.888-16.336-81.264-6.64-113.152 25.248-31.776 31.792-41.456 75.152-25.232 113.104l37.376 86.976c21.664 50.56 19.952 107.76-4.64 156.944l-26.688 53.36c-18.736 37.472-10.896 83.072 19.536 113.504 21.376 21.376 49.776 32.768 78.544 32.768 13.488 0 27.056-2.512 40.016-7.664l163.392-65.344c59.184-23.744 125.824-45.92 231.392-34.128 48.896 5.408 212.576 12.352 269.12-123.44 18.736-44.912 11.888-116.368-4.080-160.8-26.080-72.464-97.824-120.496-97.92-120.576-73.856-46.144-132.752-60.992-191.232-47.936zM713.488 730.48c37.92 0 153.328 0 203.504-50.144 6.128-6.112 14.32-9.36 22.624-9.36 4.128 0 8.304 0.8 12.256 2.432 11.952 4.96 19.744 16.624 19.744 29.568 0 148.64-84.432 220.896-258.128 220.896-53.328 0-96.72-43.36-96.72-96.672s43.392-96.72 96.72-96.72zM713.488 859.872c108.064 0 165.968-27.92 185.968-93.632-59.024 24.592-130.816 28.24-185.968 28.24-18.048 0-32.72 14.672-32.72 32.72s14.672 32.672 32.72 32.672z" /> -<glyph unicode="" glyph-name="block" d="M809.984 831.019h-595.968c-47.488 0-86.016-38.485-86.016-86.016v-596.011c0-47.488 38.485-86.016 86.016-86.016h596.011c47.488 0 86.016 38.485 86.016 86.016v596.011c0 47.488-38.485 86.016-86.016 86.016zM809.984 745.003v-596.011s-596.011 0-596.011 0v0 596.011s596.011 0 596.011 0v0zM341.333 661.333c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM341.333 234.667c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM770.005 661.333c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM770.005 234.667c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672z" /> -<glyph unicode="" glyph-name="blockquote" d="M593.306 513.354h63.19c7.296 0 14.094 3.7 18.054 9.826l70.24 108.644c5.060 7.436 9.51 14.348 13.35 21.008 8.090-13.878 19.434-23.904 31.078-30.496l-50.308-75.57c-4.392-6.598-4.798-15.078-1.054-22.064 3.742-6.988 11.026-11.35 18.952-11.35h63.19c7.296 0 14.094 3.7 18.054 9.826l70.238 108.64c19.656 28.884 30.306 49.966 30.306 78.39 0 51.73-38.372 89.276-91.24 89.276-27.436 0-52.744-9.792-71.262-27.574-4.9-4.706-9.228-9.902-12.972-15.498-15.296 26.406-44.058 43.072-79.268 43.072-27.436 0-52.744-9.792-71.262-27.574-19.18-18.416-29.744-44.27-29.744-72.794 0-39.698 20.9-64.346 42.866-76.78l-50.308-75.57c-4.392-6.598-4.798-15.078-1.054-22.064 3.742-6.988 11.026-11.35 18.952-11.35zM847.358 756.488c29.304 0 48.24-18.164 48.24-46.276 0-14.276-3.32-25.518-22.992-54.398-0.098-0.142-0.194-0.286-0.286-0.43l-64.024-99.030h-11.346l43.714 65.668c4.392 6.598 4.822 15.078 1.080 22.064-3.744 6.988-11.002 11.35-18.93 11.35-0.334 0.010-33.46 4.852-33.46 43.682 0 33.778 23.852 57.37 58.004 57.37zM683.856 756.488c29.304 0 48.24-18.164 48.24-46.276 0-14.276-3.32-25.518-22.992-54.398-0.098-0.142-0.192-0.286-0.286-0.43l-64.024-99.030h-11.346l43.714 65.668c4.392 6.598 4.822 15.078 1.080 22.064-3.744 6.988-11.002 11.35-18.93 11.35-0.334 0.010-33.46 4.852-33.46 43.682 0 33.778 23.852 57.37 58.004 57.37zM917.098 556.354c-11.876 0-21.5-9.624-21.5-21.5v-328.706l-76.012-76.012h-658.712c-18.036 0-32.708 14.672-32.708 32.708v433.306c0 18.036 14.672 32.708 32.708 32.708h374.668c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-374.668c-41.746 0-75.708-33.962-75.708-75.708v-433.306c0-41.744 33.962-75.708 75.708-75.708h702.016c41.746 0 75.708 33.962 75.708 75.708v372.010c0 11.876-9.626 21.5-21.5 21.5zM259.064 492.356h229.864c25.738 0 46.604 20.21 46.604 45.144s-20.866 45.144-46.604 45.144h-229.864c-25.738 0-46.604-20.212-46.604-45.144s20.866-45.144 46.604-45.144zM796.748 424.642c0 11.876-9.626 21.5-21.5 21.5h-551.926c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h551.926c11.874 0 21.5 9.624 21.5 21.5zM670.742 355.854h-447.42c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h447.42c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM670.742 265.568h-447.42c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h447.42c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="blog" d="M992.96 751.744c0 2.352-0.288 4.624-0.768 6.816v57.12c0 52.912-43.024 95.952-95.936 95.952h-767.36c-52.912 0-95.936-43.040-95.936-95.952v-735.376c0-52.912 43.024-95.952 95.936-95.952h767.36c52.912 0 95.936 43.040 95.936 95.952v664.624c0.48 2.208 0.768 4.48 0.768 6.816zM128.896 847.648h767.36c17.904 0 31.936-14.032 31.936-31.952v-31.936h-831.232v31.936c0 17.92 14.032 31.952 31.936 31.952zM896.256 48.352h-767.36c-17.904 0-31.936 14.032-31.936 31.952v639.44h831.232v-639.44c0-17.92-14.032-31.952-31.936-31.952zM544.576 431.52v96.432c0 17.664-14.336 32-32 32h-319.728c-17.664 0-32-14.336-32-32v-287.76c0-17.664 14.336-32 32-32h319.728c17.664 0 32 14.336 32 32v191.152s0 0.128 0 0.192zM480.576 495.936v-42.24l-134.128-53.648-39.936 26.64c-10.752 7.152-24.752 7.152-35.504 0l-46.176-30.784v100.048h255.728zM224.848 272.176v46.8l63.92 42.608 78.16-52.112c14.704-9.808 34.56-5.808 44.368 8.88 7.984 11.984 6.688 27.296-1.952 37.904l71.248 28.496v-112.576h-255.728zM256.784 144.288h-63.936c-17.664 0-32-14.336-32-32s14.336-32 32-32h63.936c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512.576 144.288h-159.872c-17.664 0-32-14.336-32-32s14.336-32 32-32h159.872c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832.304 559.936h-191.824c-17.664 0-32-14.336-32-32v-159.872c0-17.664 14.336-32 32-32h191.824c17.664 0 32 14.336 32 32v159.872c0 17.664-14.336 32-32 32zM800.304 400.064h-127.824v95.872h127.824v-95.872zM640.464 208.176h63.936c17.664 0 32 14.336 32 32s-14.336 32-32 32h-63.936c-17.664 0-32-14.336-32-32s14.336-32 32-32zM832.304 144.288h-191.824c-17.664 0-32-14.336-32-32s14.336-32 32-32h191.824c17.664 0 32 14.336 32 32s-14.336 32-32 32zM400.672 623.824h31.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.968c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240.8 623.824h31.984c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.984c-17.664 0-32-14.336-32-32s14.336-32 32-32zM624.496 655.824c0 17.664-14.336 32-32 32h-31.968c-17.664 0-32-14.336-32-32s14.336-32 32-32h31.968c17.664 0 32 14.336 32 32zM720.384 623.824h31.984c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.984c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="blog-carousel" d="M800 814.336h-576c-17.664 0-32-14.336-32-32v-672c0-17.664 14.336-32 32-32h576c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM768 142.336h-512v608h512v-608zM128 814.336h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-608h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM320 174.336h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 302.336h384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 398.336h192c17.664 0 32 14.336 32 32s-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 430.336c0-17.664 14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32zM320 654.336h256c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 494.336h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM960 142.336h-32v608h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-672c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM516.016 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM404.016 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM628.016 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="blog-post" d="M993.878 767.514c0 11.812-4.6 22.916-12.95 31.268l-56.678 56.678c-17.24 17.238-45.292 17.238-62.532 0l-225.636-225.634c-6.864-6.866-11.334-15.948-12.582-25.574l-11.2-86.296c-1.118-8.614 1.762-17.074 7.904-23.214 5.272-5.274 12.252-8.142 19.576-8.142 1.208 0 2.422 0.078 3.642 0.236l86.294 11.2c9.628 1.248 18.714 5.718 25.58 12.584l25.41 25.412s0.008 0.006 0.012 0.010l200.21 200.212c8.352 8.352 12.952 19.456 12.952 31.266zM892.122 825.052c0.238 0.238 0.55 0.356 0.862 0.356s0.624-0.118 0.86-0.356l56.678-56.678c0.098-0.098 0.356-0.356 0.356-0.862s-0.258-0.762-0.356-0.86l-10.142-10.142-58.398 58.4 10.14 10.14zM763.704 579.838l-13.996 13.996 146.268 146.27 13.998-13.996-146.27-146.27zM705.306 638.236l146.268 146.27 13.996-13.996-146.268-146.27-13.996 13.996zM724.886 541.018c-0.188-0.188-0.436-0.31-0.7-0.344l-66.702-8.658 8.656 66.698c0.036 0.27 0.156 0.514 0.346 0.706l8.412 8.412 58.4-58.4-8.414-8.412zM830.63 533.182c-11.874 0-21.5-9.624-21.5-21.5v-280.25l-64.3-64.3h-276.016v435.518h126.296c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-381.61v44.56c0 23.434 19.066 42.5 42.5 42.5h448c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-448c-47.146 0-85.5-38.356-85.5-85.5v-480.578c0-47.144 38.354-85.5 85.5-85.5h510.63c47.146 0 85.5 38.356 85.5 85.5v302.048c0 11.876-9.626 21.5-21.5 21.5zM425.816 602.65v-435.518h-29.408v334.282c0 5.67-4.598 10.268-10.268 10.268h-172.638v90.968h212.316zM246.15 690.582c0-9.54 7.734-17.274 17.274-17.274s17.274 7.734 17.274 17.274-7.734 17.274-17.274 17.274-17.274-7.734-17.274-17.274zM325.118 690.582c0-9.54 7.734-17.274 17.274-17.274s17.274 7.734 17.274 17.274-7.734 17.274-17.274 17.274-17.274-7.734-17.274-17.274zM262.726 538.278h124.916c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-124.916c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5z" /> -<glyph unicode="" glyph-name="bluetooth" d="M741.888 287.787l-165.76 165.76 159.189 159.189c24.277 24.277 24.277 63.787 0 88.064l-154.88 154.88c-17.877 17.877-44.501 23.168-67.883 13.483s-38.443-32.256-38.443-57.515v-256.128l-177.024 177.024c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l218.197-218.197-220.672-220.672c-16.811-16.811-16.811-44.032 0-60.8 16.811-16.811 44.032-16.811 60.8 0l179.499 179.499v-269.269c0-25.259 15.104-47.872 38.443-57.515 7.765-3.2 15.872-4.779 23.893-4.779 16.171 0 32.043 6.315 43.989 18.261l161.451 161.451c24.277 24.277 24.277 63.787 0 88.064zM560.128 754.389l97.579-97.579-97.579-97.579v195.2zM560.128 139.605v208.341l104.192-104.192-104.192-104.192z" /> -<glyph unicode="" glyph-name="bolt" d="M849.365 541.568c-7.168 14.848-22.229 24.277-38.699 24.277h-244.309l59.008 249.685c5.077 20.181-3.712 41.344-21.76 51.968-18.475 10.837-41.941 7.851-57.045-7.296-0.725-0.725-1.451-1.493-2.133-2.304l-363.648-420.693c-11.008-12.715-13.568-30.72-6.571-45.995 6.997-15.317 22.272-25.131 39.083-25.131h245.632l-60.971-288.853c-4.608-20.565 5.035-41.643 23.68-51.669 7.040-3.755 14.635-5.589 22.187-5.589 12.928 0 25.6 5.333 34.773 15.403 0.64 0.725 1.28 1.451 1.877 2.176l363.819 458.539c10.24 12.928 12.203 30.592 5.035 45.44zM516.224 220.971l37.845 179.243c2.688 12.672-0.512 25.899-8.661 35.968s-20.437 15.915-33.408 15.915h-204.672l197.888 228.949-35.029-148.309c-3.029-12.8 0-26.283 8.107-36.565 8.149-10.325 20.565-16.299 33.707-16.299h209.664l-205.397-258.901z" /> -<glyph unicode="" glyph-name="book" d="M960 224.128v608c0 52.944-43.056 96-96 96h-672c-82.416 0-128-75.696-128-128v-704c0-85.216 82.064-128 128-128h736c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v101.6c37.232 13.216 64 48.688 64 90.4zM128 96.128v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64v192c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c0 18.224 19.040 64 64 64h32v-448c0-17.664 14.336-32 32-32s32 14.336 32 32v448h576c17.952 0 32-14.064 32-32v-608c0-17.648-14.352-32-32-32h-544c-11.232 0-21.968-2.048-32-5.6v37.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-11.232 2.032-21.968 5.6-32h-37.6c-15.424 0-64 19.248-64 64zM320 32.128c-17.952 0-32 14.064-32 32v32c0 17.936 14.048 32 32 32h512v-96h-512zM384 736.128h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 608.128h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 352.128h352c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM416 480.128h288v-64h-288v64zM384 256.128h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM704 288.128c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32z" /> -<glyph unicode="" glyph-name="bookmark" d="M767.659 873.984h-511.317c-47.403 0-86.016-38.571-86.016-86.016v-692.907c0-25.515 15.061-48.64 38.357-58.965s50.56-5.931 69.461 11.179c0.341 0.299 0.683 0.64 1.024 0.981l232.789 225.621 232.789-225.621c0.341-0.341 0.683-0.64 1.024-0.981 12.075-10.965 27.648-16.725 43.349-16.725 8.832 0 17.707 1.792 26.112 5.504 23.296 10.325 38.357 33.493 38.357 58.965v692.992c0 47.403-38.571 86.016-86.016 86.016zM767.659 145.92l-225.749 218.795c-16.683 16.171-43.179 16.171-59.861 0l-225.749-218.795v642.091s0 0 0 0h511.317v-642.091z" /> -<glyph unicode="" glyph-name="box" d="M896.256 662.912s0 0.085 0 0.085c-0.043 0.811-0.128 1.621-0.213 2.432 0 0.043 0 0.128 0 0.171-0.213 1.664-0.512 3.328-0.896 4.949 0 0.085-0.043 0.213-0.085 0.299-0.171 0.64-0.341 1.323-0.555 1.963-0.085 0.213-0.128 0.427-0.213 0.683-0.171 0.555-0.384 1.067-0.555 1.621-0.085 0.213-0.171 0.469-0.256 0.683-0.213 0.597-0.469 1.195-0.725 1.792-0.043 0.128-0.128 0.256-0.171 0.427-0.341 0.725-0.683 1.451-1.024 2.133-0.085 0.171-0.171 0.299-0.256 0.469-0.299 0.555-0.597 1.109-0.896 1.621-0.128 0.213-0.213 0.384-0.341 0.555-0.341 0.512-0.64 1.024-0.981 1.536-0.085 0.128-0.213 0.299-0.299 0.427-1.408 2.048-3.029 3.968-4.779 5.76 0 0-0.043 0.043-0.085 0.085-0.597 0.597-1.195 1.152-1.835 1.707 0 0 0 0 0 0-1.92 1.707-4.011 3.243-6.229 4.608-0.085 0.043-0.171 0.085-0.256 0.128-0.597 0.384-1.237 0.725-1.835 1.067-0.171 0.085-0.341 0.171-0.512 0.299-0.512 0.256-1.067 0.555-1.621 0.811-0.213 0.085-0.427 0.213-0.683 0.299-0.555 0.256-1.109 0.469-1.664 0.683-0.213 0.085-0.427 0.171-0.597 0.256 0 0-0.085 0-0.128 0.043l-341.333 128.043c-9.728 3.669-20.48 3.669-30.208 0l-341.461-127.957s-0.085 0-0.128-0.043c-0.213-0.085-0.427-0.171-0.597-0.256-0.555-0.213-1.109-0.427-1.664-0.683-0.213-0.085-0.469-0.213-0.683-0.299-0.555-0.256-1.067-0.512-1.621-0.811-0.171-0.085-0.384-0.171-0.555-0.299-0.64-0.341-1.237-0.683-1.835-1.024-0.085-0.043-0.171-0.085-0.256-0.171-2.219-1.365-4.309-2.901-6.229-4.608 0 0-0.043 0-0.085-0.043-0.597-0.555-1.195-1.109-1.792-1.707 0 0-0.043-0.043-0.085-0.085-1.749-1.792-3.371-3.712-4.779-5.76-0.128-0.171-0.213-0.299-0.299-0.469-0.341-0.512-0.683-1.024-0.981-1.536-0.128-0.213-0.256-0.384-0.341-0.597-0.299-0.555-0.64-1.067-0.896-1.621-0.085-0.171-0.171-0.299-0.256-0.469-0.384-0.683-0.725-1.408-1.024-2.133-0.043-0.128-0.128-0.256-0.171-0.427-0.256-0.597-0.512-1.195-0.725-1.792-0.085-0.213-0.171-0.469-0.256-0.683-0.213-0.555-0.384-1.067-0.555-1.621-0.085-0.213-0.128-0.427-0.213-0.64-0.213-0.64-0.384-1.323-0.555-1.963 0-0.085-0.043-0.213-0.085-0.299-0.384-1.621-0.725-3.285-0.896-4.949 0-0.043 0-0.128 0-0.171-0.085-0.811-0.171-1.621-0.213-2.432 0 0 0-0.085 0-0.128-0.085-1.067-0.085-2.176-0.085-3.243v-426.795c0-17.963 11.179-34.005 27.989-40.277l341.333-127.147c0.299-0.128 0.64-0.213 0.939-0.299 0.683-0.256 1.408-0.469 2.133-0.683 0.597-0.171 1.237-0.341 1.835-0.469 0.683-0.171 1.323-0.341 2.005-0.469 0.768-0.128 1.536-0.256 2.304-0.341 0.555-0.085 1.109-0.171 1.664-0.213 1.365-0.128 2.731-0.213 4.096-0.213s2.731 0.085 4.096 0.213c0.555 0.043 1.109 0.128 1.664 0.213 0.768 0.085 1.536 0.213 2.304 0.341 0.683 0.128 1.323 0.299 2.005 0.469 0.64 0.171 1.237 0.299 1.877 0.469 0.725 0.213 1.408 0.427 2.091 0.683 0.299 0.128 0.64 0.171 0.981 0.299l341.333 127.147c16.811 6.272 27.989 22.357 27.989 40.277v426.795c0 1.109 0 2.176-0.085 3.243zM468.992 167.552l-255.36 95.147v335.701l255.36-95.147v-335.701zM512 579.029l-218.539 81.408 218.539 81.963 218.539-81.963-218.539-81.408zM810.325 262.699l-255.317-95.147v335.701l255.317 95.147v-335.701z" /> -<glyph unicode="" glyph-name="box-archive" d="M852.395 575.317c-23.765 0-43.008-19.243-43.008-43.008v-383.403h-595.712v383.403c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-385.92c0-46.037 38.571-83.456 86.016-83.456h595.755c47.403 0 86.016 37.461 86.016 83.456v385.92c0 23.765-19.243 43.008-43.008 43.008zM810.325 831.317h-596.651c-47.403 0-86.016-38.571-86.016-86.016v-84.992c0-23.765 19.243-43.008 43.008-43.008h682.667c23.765 0 43.008 19.243 43.008 43.008v84.992c0 47.403-38.571 86.016-86.016 86.016zM810.325 703.317h-596.651v41.984h596.651v-41.984zM682.667 489.344c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-341.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h341.333z" /> -<glyph unicode="" glyph-name="box-check" d="M896.299 597.675c0 1.28-0.085 2.56-0.213 3.797 0 0.299-0.085 0.597-0.128 0.896-0.128 0.981-0.256 1.92-0.427 2.859-0.085 0.427-0.171 0.853-0.256 1.237-0.256 1.152-0.512 2.261-0.853 3.371-0.128 0.341-0.256 0.725-0.384 1.067-0.256 0.811-0.555 1.621-0.896 2.432-0.171 0.427-0.384 0.896-0.555 1.323-0.341 0.811-0.768 1.621-1.152 2.432-0.171 0.299-0.299 0.597-0.427 0.853-0.555 1.024-1.195 2.048-1.835 3.029-0.213 0.341-0.427 0.64-0.683 0.981-0.256 0.384-0.512 0.768-0.811 1.152l-128 170.667c-8.107 10.837-20.864 17.195-34.389 17.195h-426.624c-13.525 0-26.283-6.357-34.389-17.195l-128-170.667c-0.299-0.384-0.512-0.768-0.811-1.152-0.213-0.341-0.469-0.64-0.683-0.981-0.64-0.981-1.28-2.005-1.835-3.029-0.171-0.299-0.299-0.597-0.469-0.896-0.427-0.768-0.811-1.579-1.152-2.389-0.213-0.427-0.384-0.896-0.555-1.323-0.299-0.811-0.597-1.579-0.896-2.389-0.128-0.384-0.256-0.725-0.384-1.109-0.341-1.109-0.64-2.261-0.853-3.371-0.085-0.427-0.171-0.853-0.256-1.237-0.171-0.939-0.341-1.92-0.427-2.859 0-0.299-0.085-0.597-0.128-0.896-0.128-1.28-0.171-2.517-0.213-3.797 0-0.128 0-0.213 0-0.341v-469.333c0-23.765 19.243-43.008 43.008-43.008h682.667c23.765 0 43.008 19.243 43.008 43.008v469.333s0 0.213 0 0.341zM767.317 640.341h-212.352v84.651h148.821l63.488-84.651zM320.171 724.992h148.821v-84.651h-212.352l63.488 84.651zM213.675 171.008v383.317h255.317v-22.016c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v22.016h255.317v-383.317h-596.651zM609.024 476.843l-147.371-152.96-54.357 54.357c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l85.333-85.333c8.064-8.064 18.987-12.587 30.421-12.587 0.128 0 0.256 0 0.384 0 11.563 0.128 22.571 4.864 30.549 13.184l177.792 184.533c16.469 17.109 15.957 44.331-1.152 60.8s-44.331 15.957-60.8-1.152z" /> -<glyph unicode="" glyph-name="box-circle-check" d="M725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM837.419 319.275c9.771-9.429 11.776-23.893 5.845-35.371-1.28-2.517-2.987-4.907-5.077-7.040l-123.307-128c-5.589-5.803-13.269-9.131-21.333-9.216h-0.299c-7.979 0-15.573 3.157-21.205 8.789l-59.221 59.179c-11.691 11.733-11.691 30.72 0 42.453 11.733 11.733 30.72 11.733 42.453 0l37.589-37.589 102.101 105.984c4.907 5.12 11.179 8.064 17.707 8.917 8.704 1.152 17.877-1.536 24.704-8.107zM448 256.341h-276.992v335.659h212.651v-15.403c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v15.403h212.651v-80.981c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v123.733s0 0.171 0 0.256v0c0 0.64 0 1.237 0 1.835 0 0.469 0 0.939-0.085 1.365 0 0.085 0 0.171 0 0.256 0 0.256-0.043 0.512-0.085 0.768 0 0.128 0 0.256 0 0.341 0 0.128 0 0.299-0.043 0.427-0.128 1.109-0.299 2.219-0.512 3.328 0 0.043 0 0.085 0 0.128 0 0.171-0.085 0.341-0.085 0.512-0.043 0.213-0.085 0.469-0.128 0.683 0 0.171-0.043 0.341-0.128 0.512-0.085 0.427-0.213 0.853-0.341 1.28-0.043 0.213-0.128 0.427-0.213 0.64-0.128 0.427-0.256 0.811-0.384 1.237-0.341 1.067-0.725 2.091-1.152 3.115 0 0 0 0 0 0-0.085 0.256-0.213 0.512-0.341 0.768s-0.213 0.512-0.341 0.768c-0.213 0.469-0.427 0.939-0.683 1.451-0.085 0.213-0.213 0.384-0.341 0.597-0.256 0.469-0.512 0.939-0.811 1.408-0.384 0.683-0.768 1.323-1.195 2.005-0.341 0.512-0.64 0.981-1.024 1.451-0.213 0.299-0.384 0.597-0.597 0.896l-111.701 152.96c-8.107 11.093-20.992 17.621-34.731 17.621h-373.419c-13.739 0-26.624-6.571-34.731-17.621l-111.701-152.96c-0.171-0.256-0.341-0.512-0.555-0.768-0.384-0.555-0.768-1.109-1.152-1.664s-0.725-1.152-1.067-1.749c-0.299-0.555-0.64-1.109-0.939-1.664-0.085-0.171-0.213-0.341-0.299-0.512-0.256-0.469-0.469-0.939-0.683-1.451-0.085-0.213-0.171-0.427-0.256-0.597-0.171-0.384-0.341-0.811-0.512-1.237-0.384-0.939-0.725-1.92-1.067-2.859-0.128-0.384-0.213-0.725-0.341-1.109-0.085-0.299-0.171-0.597-0.256-0.896-0.085-0.341-0.213-0.725-0.299-1.109-0.085-0.299-0.128-0.555-0.171-0.853-0.085-0.384-0.171-0.725-0.256-1.109-0.213-1.067-0.384-2.091-0.512-3.2 0-0.085 0-0.171 0-0.256 0-0.299-0.043-0.555-0.085-0.853 0-0.128 0-0.256 0-0.384s0-0.299 0-0.427c0-0.427-0.043-0.853-0.085-1.28 0-0.64 0-1.237 0-1.835v0-421.675c0-23.765 19.243-43.008 43.008-43.008h320c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM640.683 678.016h-171.008v67.328h121.813l49.195-67.328zM261.845 745.344h121.813v-67.328h-171.008l49.195 67.328z" /> -<glyph unicode="" glyph-name="box-open" d="M937.899 533.803l-42.539 185.259c-0.341 1.579-0.768 3.157-1.323 4.693 0 0 0 0.085 0 0.128-0.427 1.28-0.939 2.56-1.493 3.797-0.043 0.128-0.085 0.213-0.171 0.341-0.555 1.152-1.152 2.304-1.792 3.413-0.085 0.128-0.171 0.256-0.256 0.427-0.64 1.067-1.323 2.133-2.091 3.157-0.085 0.128-0.171 0.256-0.299 0.384-0.768 1.024-1.579 2.048-2.432 2.987-0.085 0.085-0.171 0.171-0.256 0.256-0.896 0.981-1.835 1.963-2.816 2.859-0.043 0.043-0.085 0.085-0.128 0.128-1.024 0.939-2.133 1.835-3.243 2.688 0 0 0 0 0 0-3.371 2.56-7.168 4.608-11.349 6.059-0.043 0-0.128 0.043-0.171 0.043-1.237 0.427-2.517 0.811-3.797 1.152-0.128 0-0.256 0.085-0.384 0.085s-0.213 0.043-0.341 0.085l-341.333 79.317c-6.656 1.536-13.568 1.493-20.181-0.171l-341.333-85.333s-0.171-0.043-0.256-0.085c-0.085 0-0.213-0.043-0.299-0.085-1.323-0.341-2.603-0.768-3.84-1.195 0 0-0.043 0-0.085 0-5.504-2.048-10.411-5.12-14.507-8.96 0 0-0.043-0.043-0.085-0.085-0.981-0.939-1.92-1.92-2.816-2.944-0.085-0.085-0.128-0.171-0.213-0.256-0.853-0.981-1.664-2.005-2.389-3.029-0.085-0.128-0.171-0.256-0.256-0.384-0.725-1.024-1.408-2.091-2.005-3.157-0.085-0.128-0.171-0.299-0.256-0.427-0.597-1.109-1.195-2.219-1.707-3.371-0.043-0.128-0.128-0.256-0.171-0.384-0.512-1.195-0.981-2.432-1.408-3.669 0-0.085-0.043-0.171-0.085-0.256-0.427-1.323-0.811-2.645-1.109-4.011 0 0 0 0 0 0v-0.128s-0.128-0.384-0.171-0.597l-42.496-192.256c-2.475-11.221-0.384-22.955 5.845-32.597s16.043-16.384 27.264-18.773l29.867-6.315v-228.053c0-19.456 13.056-36.48 31.829-41.515l320-86.272c3.669-0.981 7.424-1.493 11.179-1.493 3.669 0 7.339 0.469 10.88 1.408l320 83.755c18.901 4.949 32.128 22.059 32.128 41.6v242.389l31.616 8.064c22.613 5.76 36.523 28.544 31.275 51.285zM844.715 555.477l-224.384-57.259-46.251 92.501 247.381 66.176 23.296-101.461zM512.384 745.088l163.627-38.016-164.395-43.989-163.669 40.917 164.395 41.088zM179.371 544.128l23.765 107.435 246.443-61.611-46.507-93.013-223.701 47.189zM788.992 265.259l-276.821-72.448-277.163 74.709v176.939l182.784-38.571c19.157-4.053 38.571 5.333 47.317 22.827l46.891 93.739 46.891-93.739c7.424-14.805 22.485-23.765 38.443-23.765 3.541 0 7.083 0.427 10.624 1.323l181.035 46.165v-187.221z" /> -<glyph unicode="" glyph-name="box-package" d="M384 160v64c12.944 0 24.608 7.792 29.568 19.744 4.96 11.968 2.224 25.712-6.944 34.88l-32 32c-12.496 12.496-32.752 12.496-45.248 0l-32-32c-9.152-9.152-11.888-22.912-6.944-34.88 4.96-11.952 16.624-19.744 29.568-19.744v-64h-96v64c12.944 0 24.608 7.792 29.568 19.744 4.96 11.968 2.224 25.712-6.944 34.88l-32 32c-12.496 12.496-32.752 12.496-45.248 0l-32-32c-9.152-9.152-11.888-22.912-6.944-34.88 4.96-11.952 16.624-19.744 29.568-19.744v-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM160 384h192c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128v96h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-160c0-17.664 14.336-32 32-32zM672 544h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM768 512h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM991.456 229.92l-6.112 32.384s-0.032 0.16-0.048 0.24l-18.16 96.352c-0.128 0.608-0.256 1.216-0.4 1.824-8.112 32.528-37.2 55.264-70.736 55.264v224c0 0.336-0.096 0.624-0.096 0.96-0.032 1.232-0.208 2.464-0.384 3.712-0.144 1.008-0.272 2.016-0.512 2.992-0.080 0.304-0.080 0.624-0.16 0.928l-54.432 195.040c-10.288 31.312-39.376 52.352-72.384 52.352h-608.032c-33.12 0-62.288-21.040-72.992-53.76l-53.84-193.664c-0.080-0.304-0.080-0.608-0.16-0.912-0.256-1.024-0.384-2.080-0.544-3.136-0.16-1.184-0.336-2.352-0.368-3.52 0-0.336-0.112-0.656-0.112-1.008v-576c0-35.296 28.704-64 64-64h829.488c36.672 0 66.512 29.84 66.512 66.512v154.976c0 0.368-0.096 0.704-0.096 1.056 0.112 2.432 0.016 4.896-0.448 7.376zM904.464 345.808l10.896-57.808h-326.816l11.056 59.056c0.432 2.336 4.112 4.944 8.384 4.944h288c3.888 0 7.296-2.512 8.464-6.192zM779.152 825.056l33.76-121.056h-209.824l-21.328 128h186.224c5.296 0 9.952-3.344 11.152-6.944zM516.896 832l21.328-128h-148.448l21.328 128h105.792zM384 640h160v-64h-18.752l-22.624 22.624c-12.496 12.496-32.752 12.496-45.248 0l-22.624-22.624h-50.752v64zM160 832h186.224l-21.328-128h-209.904l33.248 119.664c1.632 4.992 6.352 8.336 11.744 8.336zM96 635.632l1.216 4.368h222.784v-96c0-17.664 14.336-32 32-32h96c8.48 0 16.624 3.376 22.624 9.376l9.376 9.376 9.376-9.376c6-6 14.144-9.376 22.624-9.376h64c17.664 0 32 14.336 32 32v96h222.768l1.232-4.4v-219.6h-224c-35.072 0-65.056-24.016-71.296-57.12l-24.16-128.992c-0.464-2.48-0.56-4.928-0.448-7.344 0-0.368-0.096-0.704-0.096-1.072v-154.976c0-0.864 0.224-1.664 0.256-2.512h-416.256v571.648zM925.488 64h-347.136c-1.312 0-2.336 1.104-2.336 2.512v154.512l0.56 2.976h350.88l0.576-3.024v-154.464c0-1.36-1.152-2.512-2.512-2.512z" /> -<glyph unicode="" glyph-name="box-stacked" d="M555.008 299.307v105.045c0 23.765-19.243 43.008-43.008 43.008h-341.333c-23.765 0-43.008-19.243-43.008-43.008v-105.045c0-23.637 19.072-42.795 42.667-42.965v-189.781c0-23.765 19.243-43.008 43.008-43.008h256c23.765 0 43.008 19.243 43.008 43.008v189.781c23.595 0.171 42.667 19.328 42.667 42.965zM468.992 361.344v-15.488h-255.317v15.488h255.317zM256.341 109.525v146.773h169.984v-146.773h-169.984zM853.333 447.317h-234.667c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h191.659v-19.029h-191.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h148.992v-146.773h-191.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h234.667c23.765 0 43.008 19.243 43.008 43.008v189.781c23.595 0.171 42.667 19.328 42.667 42.965v105.045c0 23.765-19.243 43.008-43.008 43.008zM334.763 682.24h6.229v-171.221c0-23.765 19.243-43.008 43.008-43.008h256c23.765 0 43.008 19.243 43.008 43.008v171.221h6.229c23.765 0 43.008 19.243 43.008 43.008v105.771c0 23.765-19.243 43.008-43.008 43.008h-354.475c-23.765 0-43.008-19.243-43.008-43.008v-105.771c0-23.765 19.243-43.008 43.008-43.008zM596.992 553.984h-169.984v128.213h169.984v-128.213zM377.771 788.011h268.459v-19.797h-268.459v19.797z" /> -<glyph unicode="" glyph-name="breadcumb" d="M929.072 477.564l-91.84 127.3c-11.060 15.3-29.74 24.46-49.98 24.46h-188.92c-11.060 16.98-29.64 27.060-50 27.060h-172.26c1.9-2.4 3.66-4.92 5.28-7.56l21.86-35.44h145.12c4.86 0 9.34-2.020 12.48-5.56 0.66-0.72 1.26-1.52 1.78-2.38l91.84-148.84c3.34-5.42 3.34-12.16 0-17.58l-91.84-148.84c-0.542-0.86-1.12-1.66-1.78-2.38-3.14-3.54-7.62-5.56-12.48-5.56h-145.34l-21.64-35.080c-1.72-2.78-3.58-5.42-5.56-7.92h172.54c20.36 0 38.94 10.080 50 27.060h188.92c20.24 0 38.92 9.14 49.98 24.46l91.84 127.3c13.040 18.060 13.040 41.42 0 59.5zM894.192 443.224l-91.84-127.3c-2.9-4.020-8.82-6.62-15.1-6.62h-162.34l66.12 107.14c11.94 19.34 11.94 43.4 0 62.74l-66.12 107.14h162.34c6.28 0 12.2-2.6 15.1-6.62l91.84-127.3c2.18-3 2.18-6.18 0-9.18zM442.352 468.084l-97.6 158.16c-6.96 11.3-19.28 18.16-32.54 18.16h-206.88c-11.040 0-20-8.96-20-20v-352.8c0-11.060 8.96-20 20-20h206.88c13.26 0 25.58 6.86 32.54 18.14l97.6 158.18c7.6 12.3 7.6 27.84 0 40.16z" /> -<glyph unicode="" glyph-name="briefcase" d="M191.68-32c-52.944 0-96 43.056-96 96v320c0 17.664 14.336 32 32 32s32-14.336 32-32v-320c0-17.936 14.048-32 32-32 17.664 0 32-14.336 32-32s-14.336-32-32-32zM831.68-32c-17.664 0-32 14.336-32 32s14.336 32 32 32c17.952 0 32 14.064 32 32v320c0 17.664 14.336 32 32 32s32-14.336 32-32v-320c0-52.944-43.056-96-96-96zM959.68-32h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM831.68-32h-768c-17.664 0-32 14.336-32 32s14.336 32 32 32h768c17.664 0 32-14.336 32-32s-14.336-32-32-32zM799.68 320h-32c-17.664 0-32 14.336-32 32s14.336 32 32 32h32c70.576 0 128 57.424 128 128v160c0 19.152-17.456 30.656-34.704 32.112-3.808 0.448-256.272 31.888-381.296 31.888s-377.488-31.44-380.016-31.744c-1.328-0.176-2.656-0.256-3.984-0.256-17.648 0-32-14.352-32-32v-160c0-70.576 57.424-128 128-128h32c17.664 0 32-14.336 32-32s-14.336-32-32-32h-32c-105.872 0-192 86.128-192 192v160c0 52.208 41.888 94.816 93.824 95.968 24.928 3.088 261.392 32.032 386.176 32.032 129.024 0 377.456-30.944 387.984-32.256 51.92-4.368 92.016-45.6 92.016-95.744v-160c0-105.872-86.128-192-192-192zM639.68 320h-256c-17.664 0-32 14.336-32 32s14.336 32 32 32h256c17.664 0 32-14.336 32-32s-14.336-32-32-32zM362.336 256h-85.328c-29.408 0-53.328 23.92-53.328 53.328v85.344c0 29.408 23.936 53.328 53.328 53.328h85.328c29.408 0 53.328-23.92 53.328-53.328v-85.344c0-29.408-23.936-53.328-53.328-53.328zM287.68 320h64v64h-64v-64zM362.336 384v0zM319.68 384c-17.664 0-32 14.336-32 32v340.656c0 17.664 14.336 32 32 32s32-14.336 32-32v-340.656c0-17.664-14.336-32-32-32zM319.68-32c-17.664 0-32 14.336-32 32v288c0 17.664 14.336 32 32 32s32-14.336 32-32v-288c0-17.664-14.336-32-32-32zM746.336 256h-85.328c-29.408 0-53.328 23.92-53.328 53.328v85.344c0 29.408 23.936 53.328 53.328 53.328h85.328c29.408 0 53.328-23.92 53.328-53.328v-85.344c0-29.408-23.936-53.328-53.328-53.328zM671.68 320h64v64h-64v-64zM746.336 384v0zM703.68 384c-17.664 0-32 14.336-32 32v340.656c0 17.664 14.336 32 32 32s32-14.336 32-32v-340.656c0-17.664-14.336-32-32-32zM703.68-32c-17.664 0-32 14.336-32 32v288c0 17.664 14.336 32 32 32s32-14.336 32-32v-288c0-17.664-14.336-32-32-32zM191.68 512c-17.664 0-32 14.336-32 32v192c0 17.664 14.336 32 32 32s32-14.336 32-32v-192c0-17.664-14.336-32-32-32zM831.68 512c-17.664 0-32 14.336-32 32v192c0 17.664 14.336 32 32 32s32-14.336 32-32v-192c0-17.664-14.336-32-32-32zM319.696 736c-2.576 0-5.2 0.32-7.808 0.976-17.136 4.304-27.552 21.664-23.264 38.816l24.32 96.992c8.080 32.496 37.168 55.232 70.72 55.232h256c33.328 0 62.464-22.624 70.832-55.008l24.224-97.248c4.272-17.152-6.176-34.512-23.328-38.784-17.232-4.32-34.528 6.192-38.784 23.312l-24.144 96.992c-0.992 3.856-4.64 6.752-8.8 6.752h-256c-4.096 0-7.648-2.784-8.624-6.752l-24.336-97.024c-3.648-14.528-16.688-24.224-31.008-24.224zM607.68 480h-192c-17.664 0-32 14.336-32 32v64.128c0 35.216 28.656 63.872 63.872 63.872h128.272c35.216 0 63.872-28.656 63.872-63.872v-64.128c0-17.664-14.336-32-32-32zM447.68 544h128v32.128l-128-0.128v-32zM191.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM383.68 96h-96c-17.664 0-32 14.336-32 32s14.336 32 32 32h96c17.664 0 32-14.336 32-32s-14.336-32-32-32zM735.68 96h-96c-17.664 0-32 14.336-32 32s14.336 32 32 32h96c17.664 0 32-14.336 32-32s-14.336-32-32-32zM895.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM543.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32z" /> -<glyph unicode="" glyph-name="browser" d="M928 912h-832c-35.296 0-64-28.704-64-64v-800c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v800c0 35.296-28.704 64-64 64zM928 816h-360.944l-10.672 32h371.6v-32zM488.944 848l24.704-74.128c4.352-13.056 16.592-21.872 30.352-21.872h384v-64h-832v64h128c13.776 0 26 8.816 30.352 21.872l24.704 74.128h209.872zM211.6 848l-10.672-32h-104.944v32h115.6zM96 48v576h832v-576h-832zM192 368h640c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-640c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM800 432h-64v64h64v-64zM224 496h448v-64h-448v64zM352 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM320 176h-96v64h96v-64zM608 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM576 176h-96v64h96v-64zM864 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM832 176h-96v64h96v-64z" /> -<glyph unicode="" glyph-name="bug-report" d="M853.333 445.867h-107.776v43.776c0 0.384 0 0.768 0 1.109h65.152c22.955 0 41.557 18.603 41.557 41.557v170.667c0 22.955-18.603 41.557-41.557 41.557s-41.557-18.603-41.557-41.557v-129.109h-39.296c-19.84 51.115-57.131 93.525-104.533 119.936 21.291 25.685 34.133 58.624 34.133 94.507v42.667c0 22.955-18.603 41.557-41.557 41.557s-41.557-18.603-41.557-41.557v-42.667c0-35.883-29.227-65.109-65.109-65.109s-65.109 29.227-65.109 65.109v42.667c0 22.955-18.603 41.557-41.557 41.557s-41.557-18.603-41.557-41.557v-42.667c0-36.181 13.056-69.333 34.645-95.061-46.933-26.453-83.797-68.651-103.509-119.381h-39.296v129.109c0 22.955-18.603 41.557-41.557 41.557s-41.557-18.603-41.557-41.557v-170.667c0-22.955 18.603-41.557 41.557-41.557h65.152c0-0.384 0-0.768 0-1.109v-43.776h-107.776c-22.955 0-41.557-18.603-41.557-41.557s18.603-41.557 41.557-41.557h108.672c1.323-15.445 4.181-30.464 8.363-44.928h-74.368c-22.955 0-41.557-18.603-41.557-41.557v-170.667c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v129.109h76.757c42.88-52.053 107.819-85.333 180.352-85.333s137.472 33.28 180.352 85.333h76.757v-129.109c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v170.667c0 22.955-18.603 41.557-41.557 41.557h-74.368c4.181 14.464 7.040 29.483 8.363 44.928h108.672c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM512 232.533c-82.944 0-150.443 67.499-150.443 150.443v106.667c0 82.944 67.499 150.443 150.443 150.443s150.443-67.499 150.443-150.443v-106.667c0-82.944-67.499-150.443-150.443-150.443zM526.763 596.352h-29.525c-15.147 0-27.136-12.757-26.283-27.861l10.581-182.016c0.811-13.909 12.331-24.789 26.283-24.789h8.405c13.952 0 25.472 10.88 26.283 24.789l10.581 182.016c0.896 15.104-11.136 27.861-26.283 27.861zM544 308.352c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32z" /> -<glyph unicode="" glyph-name="business-hours" d="M896.132 669.366c-0.020 0.4-0.040 0.8-0.1 1.18-0.040 0.38-0.1 0.78-0.16 1.16-0.060 0.48-0.16 0.94-0.28 1.42-0.080 0.3-0.16 0.6-0.24 0.9-0.1 0.38-0.22 0.76-0.34 1.12-0.14 0.38-0.28 0.76-0.42 1.12-0.16 0.36-0.32 0.72-0.48 1.080-0.7 1.5-1.58 2.88-2.58 4.16-0.22 0.28-0.46 0.56-0.7 0.84-0.24 0.26-0.48 0.54-0.74 0.78-0.6 0.64-1.24 1.22-1.92 1.78l-174.72 141.46c-3.82 3.1-8.6 4.8-13.52 4.8h-375.86c-4.92 0-9.7-1.7-13.54-4.8l-174.7-141.46c-0.68-0.56-1.34-1.14-1.92-1.78-0.26-0.24-0.5-0.52-0.74-0.78-0.24-0.28-0.48-0.56-0.7-0.84-1.020-1.28-1.88-2.66-2.58-4.16-0.16-0.36-0.32-0.72-0.48-1.080-0.14-0.36-0.28-0.74-0.42-1.12-0.12-0.36-0.24-0.74-0.34-1.12-0.080-0.3-0.16-0.6-0.24-0.9-0.12-0.48-0.22-0.94-0.28-1.42-0.060-0.38-0.12-0.78-0.16-1.16-0.060-0.38-0.080-0.78-0.1-1.18s-0.040-0.8-0.040-1.2v-80.6c0-16 13.020-29.020 29.020-29.020h38.032v-320.774c0-22.882 18.616-41.5 41.5-41.5h55.526s0-0.004 0.002-0.006c41.52-79.24 124.6-133.44 220.080-133.44s178.58 54.2 220.1 133.44c0 0 0 0.004 0.002 0.006h55.52c22.882 0 41.5 18.618 41.5 41.5v320.774h38.036c16 0 29.020 13.020 29.020 29.020v80.6c0 0.4-0.020 0.8-0.040 1.2zM331.692 788.166h360.62l121.64-98.5h-603.9l121.64 98.5zM708.092 601.546h-102.060v45.12h102.060v-45.12zM563.032 601.546h-102.060v45.12h102.060v-45.12zM417.972 601.546h-102.080v45.12h102.080v-45.12zM170.832 646.666h102.060v-45.12h-102.060v45.12zM237.884 558.546h49.008c2.6 0 5.12 0.34 7.52 1 2.38-0.66 4.9-1 7.5-1h130.040c2.6 0 5.12 0.34 7.52 1 2.4-0.66 4.9-1 7.5-1h43.76c-126.98-10.82-227.040-117.66-227.040-247.4 0-24.978 3.7-49.116 10.618-71.874h-36.426v319.274zM533.492 106.946c-7.060-0.74-14.24-1.12-21.5-1.12s-14.44 0.38-21.5 1.12c-96.060 10.040-172.64 86.62-182.68 182.7-0.74 7.060-1.12 14.24-1.12 21.5s0.38 14.44 1.12 21.5c10.040 96.060 86.62 172.64 182.68 182.68 7.060 0.74 14.24 1.12 21.5 1.12s14.44-0.38 21.5-1.12c96.080-10.040 172.66-86.62 182.7-182.68 0.44-4.080 0.74-8.22 0.92-12.38v-0.020c0.14-3.020 0.2-6.040 0.2-9.1s-0.060-6.080-0.2-9.1v-0.020c-0.18-4.16-0.48-8.3-0.92-12.38-10.040-96.080-86.62-172.66-182.7-182.7zM786.116 239.272h-36.422c6.898 22.758 10.618 46.896 10.618 71.874 0 0.36 0 0.74-0.020 1.1-0.54 129.24-100.4 235.52-227.040 246.3h43.76c2.6 0 5.12 0.34 7.52 1 2.4-0.66 4.92-1 7.52-1h130.042c2.6 0 5.12 0.34 7.52 1 2.38-0.66 4.9-1 7.5-1h49.004v-319.274zM853.172 601.546h-102.080v45.12h102.080v-45.12zM682.832 332.646h13.54c-9.82 85.34-77.54 153.040-162.88 162.86v-10.14c0-11.88-9.62-21.5-21.5-21.5s-21.5 9.62-21.5 21.5v10.14c-85.34-9.82-153.040-77.52-162.86-162.86h10.14c11.88 0 21.5-9.64 21.5-21.5s-9.62-21.5-21.5-21.5h-10.14c9.82-85.34 77.52-153.060 162.86-162.88v10.14c0 11.88 9.64 21.5 21.5 21.5s21.5-9.62 21.5-21.5v-10.14c85.34 9.82 153.060 77.54 162.88 162.88h-13.54c-11.88 0-21.5 9.62-21.5 21.5s9.62 21.5 21.5 21.5zM533.492 302.226l-90.7-90.7c-4.2-4.2-9.7-6.3-15.2-6.3s-11 2.1-15.2 6.3c-8.4 8.4-8.4 22.020 0 30.42l78.1 78.1v95.54c0 11.86 9.64 21.5 21.5 21.5s21.5-9.64 21.5-21.5v-113.36z" /> -<glyph unicode="" glyph-name="calculate" d="M896 489.984h-340.992v341.035c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-340.992h-340.992c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h340.992v-340.992c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v340.992h340.992c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM170.667 617.344h213.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-213.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM383.147 339.499c-16.811 16.811-44.032 16.811-60.8 0l-45.013-45.013-45.013 45.013c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l45.013-45.013-45.013-45.013c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l45.013 45.013 45.013-45.013c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-45.013 45.013 45.013 45.013c16.811 16.811 16.811 44.032 0 60.8zM640 617.344h63.659v-63.659c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v63.659h63.659c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-63.659v63.659c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-63.659h-63.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM810.667 319.317h-170.667c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM810.667 191.317h-170.667c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="calendar" d="M893.488 880h-29.488c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.488c-54.336 0-98.512-44.208-98.512-98.528v-698.96c0-54.336 44.192-98.512 98.512-98.512h762.976c54.336 0 98.512 44.192 98.512 98.512v698.96c0 54.336-44.192 98.528-98.512 98.528zM160 752h704c17.664 0 32-14.336 32-32s-14.336-32-32-32h-704c-17.664 0-32 14.336-32 32s14.336 32 32 32zM928 82.512c0-19.024-15.488-34.512-34.512-34.512h-762.976c-19.024 0-34.512 15.488-34.512 34.512v477.488h832v-477.488z" /> -<glyph unicode="" glyph-name="calendar-check" d="M893.488 880h-29.488c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.488c-54.336 0-98.512-44.192-98.512-98.512v-698.976c0-54.336 44.192-98.512 98.512-98.512h762.976c54.336 0 98.512 44.192 98.512 98.512v698.976c0 54.336-44.192 98.512-98.512 98.512zM160 752h704c17.664 0 32-14.336 32-32s-14.336-32-32-32h-704c-17.664 0-32 14.336-32 32s14.336 32 32 32zM928 82.512c0-19.024-15.488-34.512-34.512-34.512h-762.976c-19.024 0-34.512 15.488-34.512 34.512v477.488h832v-477.488zM418.704 139.648c6.128-5.616 13.856-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l300.576 288c12.768 12.24 13.184 32.48 0.976 45.248-12.224 12.752-32.48 13.168-45.248 0.976l-278.944-267.264-135.088 123.696c-13.024 11.936-33.28 11.024-45.2-1.984-11.936-13.024-11.040-33.28 1.984-45.2l157.2-143.952z" /> -<glyph unicode="" glyph-name="calendar-check-2" d="M852.992 788.651h-84.651v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-340.693v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-84.651c-47.403 0-86.016-38.571-86.016-86.016v-596.651c0-47.403 38.571-86.016 86.016-86.016h681.984c47.403 0 86.016 38.571 86.016 86.016v596.693c0 47.403-38.571 86.016-86.016 86.016zM171.008 702.677h84.651v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h340.693v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h84.651v-127.317h-682.027v127.317zM852.992 105.984h-681.984v383.317h682.027v-383.317s0 0 0 0zM610.219 414.037l-147.371-141.483-55.552 55.552c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l85.333-85.333c8.405-8.405 19.413-12.587 30.421-12.587 10.709 0 21.461 3.968 29.781 11.989l177.792 170.667c17.152 16.427 17.707 43.648 1.237 60.8-16.427 17.109-43.648 17.707-60.8 1.237z" /> -<glyph unicode="" glyph-name="calendar-clock" d="M448 192.939h-276.992v296.405h540.928c7.467-12.757 21.248-21.333 37.12-21.333 23.765 0 43.008 19.243 43.008 43.008v21.333s0 0 0 0.043v170.283c0 47.403-38.571 86.016-86.016 86.016h-129.707v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-169.984v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-63.317c-47.403 0-86.016-38.571-86.016-86.016v-509.739c0-47.403 38.571-86.016 86.016-86.016h276.992c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM171.008 702.677h63.317v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h169.984v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h129.707v-127.317h-535.040v127.317zM725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM755.328 361.643v-111.701l48.341-31.445c13.909-9.045 17.835-27.605 8.789-41.515-5.76-8.832-15.36-13.653-25.173-13.653-5.589 0-11.264 1.579-16.341 4.864l-61.995 40.32c-8.533 5.547-13.653 15.019-13.653 25.131v128c0 16.597 13.44 29.995 29.995 29.995s29.995-13.44 29.995-29.995z" /> -<glyph unicode="" glyph-name="calendar-days" d="M893.488 881.136h-29.488c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.488c-54.32 0-98.512-44.192-98.512-98.512v-698.976c0-54.336 44.192-98.512 98.512-98.512h762.976c54.32 0 98.512 44.192 98.512 98.512v698.976c0 54.336-44.192 98.512-98.512 98.512zM404.864 49.136c-16.672 41.6-20.032 84.016-20.656 128h95.792v-128h-75.136zM480 561.136v-128h-160v128h160zM704 561.136v-128h-160v128h160zM928 561.136v-128h-160v128h160zM352 305.136h-32v64h160v-128h-96v32c0 17.664-14.336 32-32 32zM256 433.136h-160v128h160v-128zM96 369.136h160v-64h-160v64zM320 241.136v-32c0-48.992 0-99.184 14.048-150.448-87.216 30.544-187.392 127.104-223.856 182.448h209.808zM544 177.136h160v-128h-160v128zM544 241.136v128h160v-128h-160zM768 369.136h160v-128h-160v128zM130.512 817.136h29.488c0-17.664 14.336-32 32-32s32 14.336 32 32h256c0-17.664 14.336-32 32-32s32 14.336 32 32h256c0-17.664 14.336-32 32-32s32 14.336 32 32h29.488c19.024 0 34.512-15.488 34.512-34.512v-157.488h-832v157.488c0 19.024 15.488 34.512 34.512 34.512zM130.512 49.136c-19.024 0-34.512 15.488-34.512 34.512v71.296c32.64-37.44 74.96-75.328 120.176-105.808h-85.664zM893.488 49.136h-125.488v128h160v-93.488c0-19.024-15.488-34.512-34.512-34.512zM160 689.136h704c17.664 0 32 14.336 32 32s-14.336 32-32 32h-704c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="calendar-minus" d="M618.923 340.949h-213.845c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h213.845c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM852.992 788.651h-84.651v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-340.693v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-84.651c-47.403 0-86.016-38.571-86.016-86.016v-596.651c0-47.403 38.571-86.016 86.016-86.016h681.984c47.403 0 86.016 38.571 86.016 86.016v596.693c0 47.403-38.571 86.016-86.016 86.016zM171.008 702.677h84.651v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h340.693v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h84.651v-127.317h-682.027v127.317zM852.992 105.984h-681.984v383.317h682.027v-383.317s0 0 0 0z" /> -<glyph unicode="" glyph-name="calendar-plus" d="M618.923 340.949h-63.915v63.915c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-63.915h-63.915c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h63.915v-63.915c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v63.915h63.915c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM852.992 788.651h-84.651v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-340.693v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-84.651c-47.403 0-86.016-38.571-86.016-86.016v-596.651c0-47.403 38.571-86.016 86.016-86.016h681.984c47.403 0 86.016 38.571 86.016 86.016v596.693c0 47.403-38.571 86.016-86.016 86.016zM171.008 702.677h84.651v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h340.693v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h84.651v-127.317h-682.027v127.317zM852.992 105.984h-681.984v383.317h682.027v-383.317s0 0 0 0z" /> -<glyph unicode="" glyph-name="calendar-star" d="M624.171 365.867h-54.443l-16.811 51.755c-5.76 17.707-22.272 29.696-40.875 29.696s-35.157-11.989-40.875-29.696l-16.811-51.755h-54.443c-18.645 0-35.157-11.989-40.875-29.696-5.76-17.707 0.555-37.12 15.616-48.085l44.032-32-16.811-51.755c-5.76-17.707 0.555-37.12 15.616-48.085s35.499-10.965 50.56 0l44.032 32 44.032-32c7.552-5.461 16.427-8.192 25.259-8.192s17.749 2.731 25.259 8.192c15.061 10.965 21.376 30.379 15.616 48.085l-16.811 51.755 44.032 32c15.061 10.965 21.376 30.379 15.616 48.085s-22.272 29.696-40.875 29.696zM852.992 788.651h-84.651v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-340.693v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-84.651c-47.403 0-86.016-38.571-86.016-86.016v-596.651c0-47.403 38.571-86.016 86.016-86.016h681.984c47.403 0 86.016 38.571 86.016 86.016v596.693c0 47.403-38.571 86.016-86.016 86.016zM171.008 702.677h84.651v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h340.693v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h84.651v-127.317h-682.027v127.317zM852.992 105.984h-681.984v383.317h682.027v-383.317s0 0 0 0z" /> -<glyph unicode="" glyph-name="calendar-xmark" d="M618.027 403.968c-16.811 16.811-44.032 16.811-60.8 0l-45.227-45.227-45.227 45.227c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l45.227-45.227-45.227-45.227c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l45.227 45.227 45.227-45.227c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-45.227 45.227 45.227 45.227c16.811 16.811 16.811 44.032 0 60.8zM852.992 788.651h-84.651v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-340.693v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-84.651c-47.403 0-86.016-38.571-86.016-86.016v-596.651c0-47.403 38.571-86.016 86.016-86.016h681.984c47.403 0 86.016 38.571 86.016 86.016v596.693c0 47.403-38.571 86.016-86.016 86.016zM171.008 702.677h84.651v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h340.693v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h84.651v-127.317h-682.027v127.317zM852.992 105.984h-681.984v383.317h682.027v-383.317s0 0 0 0z" /> -<glyph unicode="" glyph-name="call" d="M858.112 323.157l-186.027 110.976c-16.896 10.069-38.528 7.424-52.437-6.528l-72.149-72.149c-30.72 21.163-59.605 45.269-86.187 71.808-26.795 26.795-51.072 55.979-72.363 86.955l72.021 72.021c13.909 13.909 16.597 35.499 6.528 52.395l-110.336 185.344c-9.6 16.171-28.629 24.192-46.933 19.84l-192.256-45.824c-19.243-4.565-32.853-21.675-33.024-41.472-0.811-91.861 16.043-181.504 50.048-266.411 35.2-87.979 87.296-166.784 154.795-234.325 66.901-66.901 144.981-118.699 232.021-153.899 83.669-33.835 172.032-50.987 262.656-50.987 0.427 0 0.811 0 1.237 0 19.541 0 36.565 13.227 41.515 32.085l50.389 192.256c4.864 18.517-3.115 38.016-19.541 47.829zM752.725 137.771c-151.936 7.723-293.675 70.528-402.048 178.901-59.221 59.221-104.917 128.384-135.765 205.44-25.685 64.128-40.192 131.371-43.264 200.277l127.872 30.507 77.056-129.451-72.96-72.96c-14.037-14.037-16.64-35.797-6.315-52.736 28.843-47.445 63.616-91.605 103.253-131.243 39.381-39.381 83.243-73.941 130.347-102.741 16.939-10.368 38.784-7.765 52.821 6.272l73.088 73.088 129.493-77.269-33.579-128.128z" /> -<glyph unicode="" glyph-name="call-to-action" d="M899.18 732.472l-757.401 0.559c-2.435 0-4.831-0.18-7.166-0.559h-9.801c-21.338 0-38.645-17.306-38.645-38.645v-462.676c0-21.338 17.306-38.645 38.645-38.645h774.368c21.358 0 38.664 17.306 38.664 38.645v462.676c0 21.338-17.306 38.645-38.664 38.645zM592.639 235.423h-463.555v58.228c2.102 1.018 4.078 2.377 5.823 4.122l100.895 100.895 156.76-119.069c3.878-2.948 8.44-4.371 12.963-4.371 6.479 0 12.883 2.922 17.103 8.479 7.168 9.438 5.33 22.899-4.108 30.067l-28.828 21.897 78.608 89.533 123.912-106.239c0.136-0.118 0.283-0.214 0.423-0.327v-83.217zM592.639 375.136l-112.5 96.456c-8.923 7.649-22.336 6.697-30.091-2.132l-94.613-107.762-97.35 73.944c-13.496 12.094-34.361 11.645-47.308-1.303l-81.69-81.69v202.115l115.135 134.797h348.419v-314.422zM742.965 579.312c3.813-1.816 6.807-4.611 9.042-8.384 2.216-3.753 3.314-8.463 3.314-14.132 0-6.208-1.258-11.178-3.793-14.891-2.515-3.733-5.729-6.407-9.641-8.044-3.892-1.637-7.925-2.455-12.076-2.455-4.711 0-8.941 0.938-12.695 2.795-3.773 1.856-6.727 4.651-8.903 8.364-2.176 3.733-3.254 8.384-3.254 13.953 0 4.691 0.699 8.683 2.116 11.957 1.417 3.294 3.333 5.928 5.709 7.925 2.395 1.976 5.13 3.413 8.184 4.312 3.054 0.878 6.128 1.317 9.242 1.317 4.691 0 8.943-0.898 12.755-2.715zM728.733 623.904l-52.617-87.709h-16.488l52.637 87.709h16.468zM636.832 614.722c1.477 3.274 3.393 5.908 5.789 7.845 2.395 1.956 5.090 3.393 8.104 4.332 3.014 0.918 6.128 1.397 9.302 1.397 4.711 0 8.923-0.938 12.695-2.795s6.767-4.671 8.962-8.384c2.216-3.713 3.333-8.404 3.333-14.073 0-6.208-1.238-11.198-3.713-14.971-2.495-3.753-5.689-6.447-9.581-8.024-3.892-1.597-7.925-2.395-12.096-2.395-4.771 0-9.022 0.898-12.755 2.715-3.713 1.816-6.687 4.611-8.903 8.384-2.216 3.753-3.314 8.424-3.314 14.013 0 4.691 0.719 8.683 2.176 11.957zM646.413 512.382h94.655c11.857 0 21.458-9.601 21.458-21.458s-9.601-21.458-21.458-21.458h-94.655c-11.857 0-21.458 9.621-21.458 21.458s9.601 21.458 21.458 21.458zM846.403 310.816c0-7.805-6.328-14.132-14.112-14.132h-188.153c-7.785 0-14.112 6.328-14.112 14.132v36.708c0 7.805 6.328 14.132 14.112 14.132h188.153c7.785 0 14.112-6.328 14.112-14.132v-36.708zM856.763 401.818h-210.349c-11.857 0-21.458 9.601-21.458 21.458s9.601 21.458 21.458 21.458h210.349c11.837 0 21.458-9.601 21.458-21.458s-9.621-21.458-21.458-21.458zM718.912 557.057c0-3.014 0.519-5.469 1.597-7.386 1.058-1.896 2.495-3.274 4.312-4.112s3.653-1.258 5.509-1.258c1.777 0 3.513 0.359 5.19 1.118s3.054 1.996 4.112 3.733c1.078 1.717 1.597 4.092 1.597 7.106 0 3.274-0.579 5.849-1.717 7.705-1.158 1.856-2.595 3.214-4.332 4.052-1.717 0.838-3.513 1.278-5.37 1.278-1.876 0-3.633-0.439-5.33-1.278-1.677-0.838-3.034-2.136-4.052-3.852s-1.517-4.092-1.517-7.106zM654.578 591.727c1.777-0.878 3.633-1.317 5.589-1.317 1.777 0 3.493 0.399 5.19 1.198 1.677 0.798 3.054 2.056 4.112 3.793 1.058 1.717 1.597 4.092 1.597 7.106 0 3.194-0.579 5.709-1.737 7.565-1.138 1.876-2.615 3.214-4.371 4.072-1.777 0.838-3.593 1.258-5.449 1.258-1.876 0-3.613-0.399-5.25-1.198-1.657-0.798-2.994-2.056-4.052-3.793-1.078-1.737-1.597-4.092-1.597-7.106s0.539-5.469 1.657-7.386c1.098-1.896 2.535-3.294 4.312-4.192zM341.669 470.664c47.048 0 85.333 38.265 85.333 85.333s-38.285 85.333-85.333 85.333-85.333-38.285-85.333-85.333 38.285-85.333 85.333-85.333zM341.669 598.414c23.394 0 42.417-19.043 42.417-42.417s-19.023-42.417-42.417-42.417-42.417 19.023-42.417 42.417 19.023 42.417 42.417 42.417z" /> -<glyph unicode="" glyph-name="call-to-action-2" d="M853.332 703.192h-680.62c-47.14 0-85.5-38.36-85.5-85.5v-340.48c0-47.16 38.36-85.5 85.5-85.5h680.62c47.14 0 85.5 38.34 85.5 85.5v340.48c0 47.14-38.36 85.5-85.5 85.5zM651.932 234.712c-8.38 2.94-14.38 10.92-14.38 20.28 0 11.88 9.64 21.5 21.5 21.5h89.88c11.88 0 21.5-9.62 21.5-21.5 0-9.36-5.98-17.32-14.34-20.28h-104.16zM685.652 503.412h-22.34l71.32 127.12h22.32l-71.3-127.12zM758.932 569.852c6.36 0 12.12-1.32 17.28-3.94 5.16-2.64 9.24-6.68 12.24-12.14 3.020-5.458 4.52-12.28 4.52-20.5 0-9-1.72-16.2-5.14-21.6-3.42-5.38-7.78-9.26-13.060-11.64s-10.74-3.56-16.38-3.56c-6.36 0-12.1 1.36-17.2 4.040-5.1 2.7-9.12 6.74-12.060 12.14s-4.42 12.14-4.42 20.22c0 6.8 0.96 12.6 2.88 17.34 1.92 4.76 4.52 8.58 7.74 11.46 3.26 2.88 6.94 4.98 11.080 6.26s8.32 1.92 12.52 1.92zM748.932 452.472c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-89.88c-11.86 0-21.5 9.62-21.5 21.5s9.64 21.5 21.5 21.5h89.88zM658.992 366.032h199.7c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-199.7c-11.88 0-21.5 9.62-21.5 21.5s9.62 21.5 21.5 21.5zM632.432 617.252c1.98 4.74 4.6 8.54 7.84 11.36s6.9 4.92 10.98 6.28c4.080 1.34 8.28 2.020 12.62 2.020 6.36 0 12.080-1.36 17.18-4.060 5.1-2.68 9.16-6.74 12.16-12.14s4.5-12.2 4.5-20.42c0-8.98-1.68-16.2-5.040-21.68-3.36-5.44-7.68-9.34-12.96-11.64-5.3-2.3-10.74-3.46-16.4-3.46-6.48 0-12.24 1.32-17.28 3.94-5.040 2.64-9.060 6.68-12.060 12.14s-4.5 12.22-4.5 20.32c0 6.8 0.98 12.58 2.96 17.34zM130.212 277.212v290.738l86.222 92.244h373.16v-425.48h-416.882c-23.44 0-42.5 19.060-42.5 42.5zM513.012 598.912h-321.020c-11.86 0-21.5-9.64-21.5-21.5v-279.62c0-0.4 0.020-0.78 0.040-1.18 0.22-4.64 1.92-8.9 4.64-12.32 0.88-1.12 1.88-2.16 2.98-3.060 3.7-3.14 8.5-5.040 13.72-5.060h321.14c11.88 0 21.5 9.62 21.5 21.5v279.74c0 11.86-9.62 21.5-21.5 21.5zM414.146 555.912c-1.436-16.18-13.63-28.858-28.416-28.858s-26.98 12.678-28.416 28.858h56.834zM491.512 319.172h-257.92l77.020 108.62 72.34-65.74c4.24-3.86 9.84-5.82 15.56-5.56 5.72 0.28 11.080 2.84 14.9 7.1l78.1 86.98v-131.4zM491.512 514.932l-95.64-106.52-74.3 67.52c-4.56 4.14-10.66 6.12-16.78 5.46s-11.66-3.92-15.22-8.94l-76.080-107.28v190.74h100.752c1.606-39.906 33.048-71.858 71.484-71.858s69.878 31.952 71.484 71.858h34.298v-40.98zM751.632 516.972c2.46-1.22 4.96-1.82 7.48-1.82 2.4 0 4.74 0.54 7.020 1.64s4.14 2.88 5.58 5.4c1.44 2.5 2.16 5.94 2.16 10.3 0 4.74-0.78 8.48-2.34 11.16-1.56 2.7-3.5 4.66-5.86 5.88-2.32 1.24-4.76 1.84-7.28 1.84s-4.92-0.6-7.2-1.84c-2.28-1.22-4.12-3.080-5.5-5.58s-2.060-5.94-2.060-10.3 0.72-7.94 2.16-10.7c1.44-2.76 3.38-4.74 5.84-5.98zM656.472 583.912c2.4-1.28 4.92-1.9 7.56-1.9 2.42 0 4.74 0.56 7.040 1.72 2.28 1.16 4.14 3 5.56 5.48 1.46 2.52 2.18 5.94 2.18 10.32 0 4.62-0.78 8.28-2.34 10.98s-3.56 4.66-5.94 5.88c-2.42 1.22-4.88 1.82-7.4 1.82s-4.88-0.58-7.1-1.74c-2.22-1.16-4.060-2.98-5.5-5.48s-2.16-5.94-2.16-10.32 0.76-7.92 2.26-10.68 3.44-4.78 5.84-6.080z" /> -<glyph unicode="" glyph-name="call-volume-up" d="M898.496 267.52l-214.912 128.256c-12.576 7.52-28.672 5.504-39.040-4.832l-93.664-93.664c-40.96 27.008-79.264 58.336-114.24 93.312-35.264 35.264-66.752 73.92-93.888 115.168l93.504 93.504c10.336 10.336 12.352 26.4 4.864 39.008l-127.456 214.144c-7.168 12.032-21.344 18.016-34.912 14.752l-222.112-52.992c-14.304-3.392-24.448-16.16-24.576-30.848-1.856-213.792 80.352-414.752 231.488-565.888 149.312-149.344 347.808-231.552 559.040-231.552h1.408c14.528 0 27.232 9.856 30.88 23.904l58.24 222.144c3.616 13.792-2.336 28.288-14.56 35.616zM799.296 50.24c-185.408 5.792-358.752 80.672-490.528 212.416-132.992 133.024-207.904 308.032-212.544 495.136l174.464 41.6 102.72-172.544-94.016-94.016c-10.432-10.432-12.384-26.656-4.704-39.264 32.608-53.6 71.84-103.488 116.672-148.352 44.544-44.512 94.112-83.552 147.328-116.096 12.576-7.712 28.832-5.76 39.328 4.672l94.176 94.176 172.864-103.136-45.76-174.656zM553.888 686.496c118.272 0 214.496-96.224 214.496-214.496 0-17.664 14.336-32 32-32s32 14.336 32 32c0 153.568-124.928 278.496-278.496 278.496-17.664 0-32-14.336-32-32s14.336-32 32-32zM565.632 910.112c-17.664 0-32-14.336-32-32s14.336-32 32-32c199.808 0 362.368-162.56 362.368-362.368 0-17.664 14.336-32 32-32s32 14.336 32 32c0 235.104-191.264 426.368-426.368 426.368z" /> -<glyph unicode="" glyph-name="camera" d="M937.152 682.208l-134.256 18.64-76.816 101.792c-24.224 32.096-62.688 51.264-102.912 51.264h-247.024c-40.224 0-78.688-19.168-102.912-51.264l-77.056-102.128-110.848-17.92c-30.896-4.976-53.328-29.68-53.328-58.736v-487.936c0-32.88 28.928-59.632 64.464-59.632h831.056c35.552 0 64.464 26.752 64.464 59.632v487.328c0 29.76-23.056 54.56-54.848 58.976zM928 140.304c-0.144 0-0.304 0-0.464 0h-831.072c-0.16 0-0.32 0-0.464 0v479.184l123.072 19.888c8.144 1.328 15.456 5.728 20.432 12.32l84.816 112.4c12.192 16.16 31.568 25.808 51.824 25.808h247.024c20.256 0 39.632-9.648 51.824-25.808l84.816-112.4c5.12-6.784 12.736-11.264 21.152-12.416l147.040-20.64v-478.336zM512 684.976c-137.888 0-250.064-112.176-250.064-250.064s112.176-250.064 250.064-250.064 250.064 112.176 250.064 250.064-112.176 250.064-250.064 250.064zM512 248.832c-102.608 0-186.064 83.472-186.064 186.064s83.472 186.064 186.064 186.064 186.064-83.472 186.064-186.064-83.472-186.064-186.064-186.064z" /> -<glyph unicode="" glyph-name="campaign" d="M810.667 404.011h85.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-85.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM703.744 697.813c-13.525 7.595-30.165 7.339-43.435-0.725l-106.411-64.725c-38.4-23.339-82.389-35.669-127.317-35.669h-255.915c-23.765 0-43.008-19.243-43.008-43.008v-105.984c0-70.784 57.344-128.427 128-128.981v-85.035c0-23.637 19.072-42.795 42.667-42.965v-45.952c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v173.952h42.752c43.307 0 84.651-13.483 119.637-38.997l110.592-80.725c7.509-5.461 16.384-8.277 25.344-8.277 6.656 0 13.312 1.536 19.456 4.651 14.421 7.339 23.509 22.144 23.509 38.315v426.667c0 15.531-8.363 29.867-21.931 37.504zM213.675 447.659v63.019h84.651v-105.984h-41.685c-23.723 0-43.008 19.285-43.008 43.008zM639.659 318.293l-42.24 30.805c-49.792 36.352-108.672 55.552-170.325 55.552h-42.752v105.984h42.24c60.672 0 120.192 16.683 172.032 48.213l41.045 24.96v-265.557zM810.709 574.677c6.443 0 13.013 1.451 19.2 4.565l85.333 42.667c21.248 10.624 29.867 36.437 19.243 57.685s-36.437 29.867-57.685 19.243l-85.333-42.667c-21.248-10.624-29.867-36.437-19.243-57.685 7.552-15.061 22.741-23.765 38.485-23.765zM915.243 272.128l-85.333 42.667c-21.248 10.624-47.061 2.005-57.685-19.243s-2.005-47.061 19.243-57.685l85.333-42.667c6.187-3.072 12.715-4.565 19.2-4.565 15.787 0 30.976 8.704 38.485 23.765 10.624 21.248 2.005 47.061-19.243 57.685z" /> -<glyph unicode="" glyph-name="camping" d="M889.813 171.136l-82.219 131.541s0 0 0 0l-211.115 337.749s0 0 0 0l-33.749 53.973 71.083 113.749c12.587 20.139 6.443 46.677-13.696 59.264s-46.677 6.485-59.264-13.653l-48.853-78.208-48.853 78.208c-12.587 20.139-39.125 26.24-59.264 13.653s-26.283-39.125-13.696-59.264l71.083-113.749-327.125-523.349c-12.587-20.139-6.443-46.677 13.653-59.264 7.083-4.437 14.976-6.528 22.741-6.528 14.336 0 28.331 7.168 36.523 20.224l17.749 28.373c24.235-30.763 60.629-48.597 100.949-48.597h372.352c40.32 0 76.757 17.835 100.949 48.597l17.749-28.373c8.149-13.056 22.187-20.224 36.523-20.224 7.765 0 15.659 2.133 22.741 6.528 20.139 12.587 26.283 39.125 13.653 59.264zM430.805 191.317l81.195 101.504 81.195-101.504h-162.389zM735.787 213.504c-3.413-6.144-13.141-19.84-32.683-21.888l-157.525 196.907c-8.149 10.197-20.523 16.128-33.579 16.128s-25.429-5.931-33.579-16.128l-157.525-196.907c-19.499 2.048-29.269 15.701-32.683 21.888-3.712 6.656-10.965 24.235 1.152 43.648l222.635 356.224 222.635-356.224c12.117-19.371 4.821-36.992 1.152-43.648z" /> -<glyph unicode="" glyph-name="card-carousel" d="M736 826.144h-448c-17.664 0-32-14.336-32-32v-640c0-17.664 14.336-32 32-32h448c17.664 0 32 14.336 32 32v640c0 17.664-14.336 32-32 32zM704 762.144v-210.752l-73.376 73.376c-12.496 12.496-32.752 12.496-45.248 0l-73.376-73.376-105.376 105.376c-12.496 12.496-32.752 12.496-45.248 0l-41.376-41.376v146.752h384zM320 186.144v338.752l64 64 137.376-137.376c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-9.376 9.376 50.752 50.752 96-96v-274.752h-384zM199.76 793.184l-128 32c-17.088 4.32-34.512-6.144-38.816-23.28-4.288-17.152 6.144-34.528 23.28-38.816l103.76-25.936v-382.032l-103.76-25.936c-17.136-4.288-27.568-21.664-23.28-38.816 3.648-14.528 16.688-24.24 31.008-24.24 2.576 0 5.184 0.304 7.792 0.96l88.24 22.064v-78.032l-103.76-25.936c-17.136-4.288-27.568-21.664-23.28-38.816 3.648-14.528 16.688-24.24 31.008-24.24 2.576 0 5.184 0.304 7.792 0.96l128 32c14.24 3.568 24.24 16.352 24.24 31.040v576.016c0 14.688-10 27.488-24.24 31.040zM608 378.144h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM480 666.144h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32zM516.016 90.144h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 90.144h-7.984c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.984c17.664 0 32 14.336 32 32s-14.336 32-32 32zM616.016 90.144h-8.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 282.144h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM905.376 419.52c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l32 32c12.496 12.496 12.496 32.752 0 45.248l-32 32c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l9.376-9.376-9.376-9.376c-12.496-12.496-12.496-32.752 0-45.248zM118.624 528.768c-12.496 12.496-32.752 12.496-45.248 0l-32-32c-12.496-12.496-12.496-32.752 0-45.248l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-9.376 9.376 9.376 9.376c12.496 12.496 12.496 32.752 0 45.248zM952.24 267.088c2.608-0.656 5.216-0.96 7.792-0.96 14.336 0 27.376 9.696 31.008 24.24 4.288 17.152-6.144 34.528-23.28 38.816l-103.76 25.936v382.032l103.76 25.936c17.136 4.288 27.568 21.664 23.28 38.816-4.304 17.136-21.68 27.6-38.816 23.28l-128-32c-14.24-3.568-24.24-16.352-24.24-31.040v-576c0-14.688 10-27.488 24.24-31.040l128-32c2.608-0.656 5.216-0.96 7.792-0.96 14.336 0 27.376 9.696 31.008 24.24 4.288 17.152-6.144 34.528-23.28 38.816l-103.76 25.936v78.032l88.24-22.064z" /> -<glyph unicode="" glyph-name="card-slider" d="M688.812 811.232h-354.22c-47.14 0-85.5-38.36-85.5-85.5v-555.46c0-47.16 38.36-85.5 85.5-85.5h354.22c47.16 0 85.5 38.34 85.5 85.5v555.46c0 47.14-38.34 85.5-85.5 85.5zM731.312 170.27c0-23.44-19.060-42.5-42.5-42.5h-354.22c-23.44 0-42.5 19.060-42.5 42.5v514.638l83.324 83.324h313.396c23.44 0 42.5-19.060 42.5-42.5v-555.46zM682.012 751.37h-265.576c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h73.398c2.664-35.914 32.714-64.326 69.296-64.326s66.632 28.412 69.296 64.326h32.088v-191.538h-277.222l82.404 114.844 77.924-83.678c4.080-4.378 9.852-6.874 15.782-6.848 5.984 0.014 11.692 2.52 15.75 6.916l70.722 76.616c8.054 8.726 7.51 22.328-1.214 30.382s-22.328 7.51-30.38-1.214l-54.994-59.576-80.016 85.922c-4.394 4.716-10.676 7.212-17.104 6.804-6.432-0.41-12.342-3.686-16.1-8.922l-122.132-170.21c-4.7-6.55-5.34-15.18-1.66-22.354 3.682-7.172 11.066-11.682 19.128-11.682h340.612c11.874 0 21.5 9.624 21.5 21.5v234.538c0 11.876-9.626 21.5-21.5 21.5zM559.13 687.044c-12.842 0-23.574 9.184-25.992 21.326h51.986c-2.418-12.142-13.15-21.326-25.992-21.326zM581.85 227.924c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-140.29c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h140.29zM667.562 207.866h-311.712c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h311.712c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM678.012 447.452h-332.62c-14.060 0-25.5-11.44-25.5-25.5v-99.16c0-14.060 11.44-25.5 25.5-25.5h332.62c14.060 0 25.5 11.44 25.5 25.5v99.16c0 14.060-11.44 25.5-25.5 25.5zM396.012 384.152l6.6 20.3 3.94 12.1c0.1 0.36 0.62 0.36 0.74 0l3.92-12.1 6.6-20.3h34.080c0.38 0 0.52-0.48 0.22-0.7l-27.56-20.020 7.52-23.14 3-9.26c0.12-0.36-0.28-0.66-0.6-0.44l-27.56 20.020-27.56-20.020c-0.3-0.22-0.72 0.080-0.6 0.44l3 9.26 7.52 23.14-26.38 19.16v1.56h33.12zM465.772 370.752c0 3.4 1.38 6.48 3.6 8.72 2.24 2.22 5.32 3.6 8.72 3.6h162.76c6.8 0 12.3-5.52 12.3-12.32 0-3.4-1.38-6.48-3.6-8.72-2.22-2.22-5.3-3.6-8.7-3.6h-162.76c-6.8 0-12.32 5.52-12.32 12.32zM153.504 690.506h56.6c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.6c-37.682 0-68.338-30.656-68.338-68.338v-465.164c0-37.682 30.656-68.338 68.338-68.338h56.6c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.6c-13.972 0-25.338 11.368-25.338 25.338v465.164c0 13.97 11.366 25.338 25.338 25.338zM870.494 733.506h-56.598c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.598c13.972 0 25.338-11.368 25.338-25.338v-465.164c0-13.97-11.368-25.338-25.338-25.338h-56.598c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.598c37.682 0 68.338 30.656 68.338 68.338v465.164c0 37.682-30.658 68.338-68.338 68.338z" /> -<glyph unicode="" glyph-name="caret-down" d="M670.976 559.744l-283.92 0.432c-48.272 0-72.688-58.208-38.8-92.64l141.168-143.472c10.656-10.832 24.736-16.256 38.816-16.256 13.952 0 27.904 5.328 38.544 16l142.656 143.040c34.208 34.288 9.968 92.832-38.464 92.896zM528.288 375.84l-118.384 120.304 238.016-0.368-119.632-119.952z" /> -<glyph unicode="" glyph-name="caret-down-2" d="M590.608 460.672l-78.608-85.552-78.608 85.552h157.216zM690.784 546.672h-357.568c-36.56 0-55.664-43.488-30.928-70.416l178.768-194.592c8.32-9.056 19.632-13.584 30.928-13.584s22.608 4.528 30.928 13.584l178.8 194.592c24.736 26.928 5.648 70.416-30.928 70.416v0z" /> -<glyph unicode="" glyph-name="caret-left" d="M583.344 644.464c-13.248 0-26.752-4.864-37.808-15.744l-143.472-141.168c-21.584-21.232-21.696-55.984-0.256-77.36l143.040-142.656c11.088-11.056 24.704-16 38.064-16 27.968 0 54.784 21.696 54.832 54.48l0.432 283.824c0.048 32.832-26.8 54.64-54.832 54.64zM573.792 329.072l-119.952 119.632 120.304 118.384-0.368-238z" /> -<glyph unicode="" glyph-name="caret-left-2" d="M532.4 518.88v-157.216l-85.552 78.608 85.552 78.608zM576.144 661.136c-9.776 0-19.76-3.456-28.144-11.152l-194.592-178.768c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.8c8.384-7.696 18.368-11.152 28.16-11.152 21.632 0 42.272 16.896 42.272 42.080v357.568c0 25.184-20.624 42.080-42.272 42.080v0z" /> -<glyph unicode="" glyph-name="caret-right" d="M622.176 485.808l-143.040 142.656c-11.088 11.056-24.704 16-38.064 16-27.968 0-54.784-21.696-54.832-54.48l-0.432-283.824c-0.048-32.832 26.8-54.64 54.832-54.64 13.248 0 26.752 4.864 37.808 15.744l143.472 141.168c21.584 21.232 21.696 55.984 0.256 77.36zM449.856 328.928l0.368 238 119.952-119.632-120.304-118.384z" /> -<glyph unicode="" glyph-name="caret-right-2" d="M491.6 518.864l85.552-78.608-85.552-78.608v157.216zM447.856 661.136c-21.632 0-42.272-16.896-42.272-42.080v-357.568c0-25.184 20.624-42.080 42.272-42.080 9.776 0 19.76 3.456 28.144 11.152l194.592 178.768c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.8c-8.384 7.696-18.368 11.152-28.16 11.152v0z" /> -<glyph unicode="" glyph-name="caret-up" d="M692.72 414.464l-141.168 143.472c-10.656 10.832-24.736 16.256-38.816 16.256-13.952 0-27.904-5.328-38.544-16l-142.656-143.040c-34.208-34.288-9.968-92.832 38.464-92.896l283.92-0.432c48.272 0 72.688 58.208 38.8 92.64zM393.072 386.208l119.632 119.952 118.384-120.304-238.016 0.368z" /> -<glyph unicode="" glyph-name="caret-up-2" d="M512.016 505.424l78.608-85.552h-157.216l78.608 85.552zM512.016 612.448c-11.296 0-22.608-4.528-30.928-13.584l-178.8-194.592c-24.736-26.928-5.648-70.416 30.928-70.416h357.568c36.56 0 55.664 43.488 30.928 70.416l-178.768 194.592c-8.32 9.056-19.632 13.584-30.928 13.584v0z" /> -<glyph unicode="" glyph-name="celebration" d="M375.552 584.064c-10.027 10.027-24.363 14.464-38.272 11.861-13.952-2.603-25.685-11.904-31.445-24.875l-82.261-185.856c-4.053-5.376-6.699-11.52-7.893-17.835l-126.976-286.933c-7.211-16.256-3.627-35.285 8.96-47.829 8.235-8.235 19.243-12.587 30.379-12.587 5.888 0 11.819 1.195 17.451 3.712l490.027 217.813c12.928 5.76 22.229 17.536 24.832 31.445s-1.835 28.245-11.861 38.272l-272.853 272.853zM212.48 147.584l60.288 136.192 75.733-75.733-136.021-60.459zM432.683 245.461l-122.624 122.624 49.067 110.805 184.277-184.235-110.677-49.195zM910.976 615.296c-22.272 8.277-47.019-3.072-55.253-25.344l-28.245-76.075-77.653 53.803c-10.624 7.381-24.021 9.557-36.437 5.973s-22.571-12.587-27.605-24.491l-57.685-135.893c-9.259-21.845 0.939-47.104 22.784-56.363 5.461-2.347 11.179-3.413 16.768-3.413 16.725 0 32.64 9.856 39.595 26.197l37.035 87.253 79.744-55.253c10.923-7.552 24.704-9.643 37.376-5.675s22.784 13.611 27.392 26.069l47.488 128c8.277 22.272-3.072 47.019-25.344 55.253zM386.731 623.019c6.741-16.811 22.869-27.051 39.936-27.051 5.333 0 10.709 0.981 15.957 3.072 22.059 8.832 32.768 33.835 23.936 55.893l-19.072 47.701h64.469c16.853 0 32.128 9.813 39.125 25.131 6.528 14.293 4.693 30.848-4.48 43.349-5.163 8.576-23.637 46.677-38.357 78.037-10.069 21.504-35.669 30.805-57.173 20.736s-30.805-35.669-20.736-57.173c4.139-8.875 7.936-16.853 11.349-24.107h-57.771c-14.251 0-27.605-7.083-35.627-18.901s-9.6-26.837-4.309-40.064l42.667-106.667zM541.056 491.52c4.523-1.493 9.088-2.219 13.611-2.219 18.005 0 34.773 11.392 40.789 29.397l34.261 102.827 122.069 17.536c18.816 2.688 33.579 17.408 36.395 36.181l22.315 149.333c3.499 23.467-12.672 45.355-36.181 48.896-23.467 3.499-45.355-12.672-48.896-36.181l-17.579-117.675-116.651-16.768c-16.128-2.304-29.525-13.525-34.688-28.971l-42.667-128c-7.509-22.528 4.651-46.891 27.179-54.4z" /> -<glyph unicode="" glyph-name="charger" d="M813.696 748.971c-83.328 83.328-192.512 124.971-301.696 124.971s-218.368-41.643-301.696-124.971c-166.613-166.613-166.613-436.779 0-603.392 83.328-83.328 192.512-124.971 301.696-124.971s218.368 41.643 301.696 124.971c166.613 166.613 166.613 436.779 0 603.392zM839.040 543.104c-7.765 12.715-21.589 20.608-36.693 20.608h-235.989l49.195 208.213c51.243-16.299 98.219-44.672 137.344-83.797 41.088-41.088 70.357-90.795 86.144-145.024zM545.408 437.205c-8.149 10.069-20.437 15.915-33.408 15.915h-196.352l187.435 216.917-32.939-139.392c-3.029-12.8 0-26.283 8.107-36.565 8.149-10.325 20.565-16.299 33.707-16.299h201.344l-194.987-245.76 35.712 169.259c2.688 12.672-0.512 25.899-8.661 35.968zM171.349 447.275c0 91.008 35.456 176.555 99.797 240.896 59.307 59.307 136.619 94.037 219.605 99.115l-301.611-349.013c-11.008-12.715-13.568-30.72-6.571-45.995 6.997-15.317 22.272-25.131 39.083-25.131h237.312l-51.541-244.224c-50.859 16.341-97.451 44.629-136.32 83.499-64.341 64.341-99.797 149.888-99.797 240.896zM752.896 206.379c-60.331-60.331-139.307-95.232-223.915-99.371l307.072 386.987c5.632 7.083 8.747 15.616 9.216 24.32 4.864-23.125 7.381-46.891 7.381-71.040 0-91.008-35.456-176.555-99.797-240.896z" /> -<glyph unicode="" glyph-name="chart" d="M246.272 524.176h-150.48c-35.232 0-63.792-28.56-63.792-63.792v-403.52c0-35.232 28.56-63.792 63.792-63.792h150.48c35.232 0 63.792 28.56 63.792 63.792v403.52c0 35.232-28.56 63.792-63.792 63.792zM96 56.864l-0.208 403.312h150.256l0.208-403.088-150.272-0.208zM587.232 902.928h-150.48c-35.232 0-63.792-28.56-63.792-63.792v-782.272c0-35.232 28.56-63.792 63.792-63.792h150.48c35.232 0 63.792 28.56 63.792 63.792v782.272c0 35.232-28.56 63.792-63.792 63.792zM436.976 56.864l-0.208 782.048h150.272l0.208-781.84-150.272-0.208zM928.208 706.8h-150.48c-35.232 0-63.792-28.56-63.792-63.792v-586.144c0-35.232 28.56-63.792 63.792-63.792h150.48c35.232 0 63.792 28.56 63.792 63.792v586.144c0 35.232-28.56 63.792-63.792 63.792zM777.952 56.864l-0.208 585.92h150.272l0.208-585.712-150.256-0.208z" /> -<glyph unicode="" glyph-name="chart-line-down" d="M968 32l-864 0.656v863.344c0 17.664-14.336 32-32 32s-32-14.336-32-32v-863.344c0-35.648 28.992-64.656 64.656-64.656h863.344c17.664 0 32 14.336 32 32s-14.336 32-32 32zM363.952 326.032c5.488-7.36 13.856-12.016 23.008-12.784 0.896-0.064 1.76-0.112 2.656-0.112 8.224 0 16.176 3.168 22.16 8.912l220.528 211.536 164.368-196.592c11.328-13.552 31.488-15.36 45.072-4.016 13.552 11.328 15.36 31.52 4.016 45.072l-186.336 222.88c-5.68 6.8-13.936 10.944-22.8 11.424-8.784 0.416-17.488-2.736-23.904-8.864l-219.088-210.16-166.56 223.824c-10.544 14.176-30.592 17.12-44.784 6.576-14.176-10.56-17.104-30.608-6.56-44.768l188.224-252.912zM706.464 230.656c0-17.664 14.336-32 32-32h205.904c17.664 0 32 14.336 32 32v206.4c0 17.664-14.336 32-32 32s-32-14.336-32-32v-174.4h-173.904c-17.664 0-32-14.336-32-32z" /> -<glyph unicode="" glyph-name="chart-line-up" d="M969.648 30.944h-864.352c-0.672 0-1.216 0.544-1.216 1.216v864.368c0 17.376-14.096 31.472-31.472 31.472s-31.472-14.096-31.472-31.472v-864.352c0-35.376 28.784-64.16 64.16-64.16h864.352c17.376 0 31.472 14.096 31.472 31.472s-14.096 31.472-31.472 31.472zM183.36 205.136c5.648-4.208 12.24-6.224 18.768-6.224 9.616 0 19.104 4.384 25.28 12.688l167.136 224.592 219.808-210.848c6.288-6.032 14.864-9.184 23.52-8.72 8.72 0.48 16.832 4.544 22.416 11.248l186.576 223.136c11.152 13.328 9.376 33.184-3.952 44.336-13.376 11.152-33.2 9.376-44.336-3.952l-164.976-197.28-221.216 212.208c-6.528 6.24-15.392 9.36-24.4 8.656-9.008-0.752-17.248-5.328-22.64-12.576l-188.432-253.216c-10.368-13.936-7.488-33.664 6.448-44.032zM739.84 566.752h174.688v-175.168c0-17.376 14.096-31.472 31.472-31.472s31.472 14.096 31.472 31.472v206.64c0 17.376-14.096 31.472-31.472 31.472h-206.16c-17.376 0-31.472-14.096-31.472-31.472s14.096-31.472 31.472-31.472z" /> -<glyph unicode="" glyph-name="chat-bubble" d="M852.651 788.352h-681.301c-47.488 0-86.016-38.485-86.016-86.016v-594.944c0-24.875 20.395-41.899 42.027-41.899 8.875 0 17.963 2.859 25.941 9.259l145.365 116.309h553.984c47.488 0 86.016 38.485 86.016 86.016v425.259c0 47.488-38.485 86.016-86.016 86.016zM852.651 276.992v0s-553.984 0-553.984 0c-19.541 0-38.485-6.656-53.717-18.859l-73.643-58.88v503.083h681.344v-425.344z" /> -<glyph unicode="" glyph-name="check" d="M919.104 711.712c-12.224 12.736-32.48 13.2-45.248 0.976l-482.624-462.416-241.632 221.264c-13.040 11.936-33.28 11.040-45.216-2s-11.040-33.28 2-45.216l263.728-241.504c6.112-5.6 13.872-8.4 21.616-8.4 7.984 0 15.968 2.976 22.144 8.896l504.272 483.152c12.752 12.224 13.2 32.48 0.976 45.248z" /> -<glyph unicode="" glyph-name="checkbox" d="M307.708 276.5h-156.376c-12.958 0-23.5-10.542-23.5-23.5v-166.666c0-12.958 10.542-23.5 23.5-23.5h156.376c12.958 0 23.5 10.542 23.5 23.5v166.666c0 12.958-10.542 23.5-23.5 23.5zM288.208 105.834h-117.376v127.666h117.376v-127.666zM319.488 426.58c-11.874 0-21.5-9.624-21.5-21.5v-11.248c0-5.188-4.22-9.406-9.408-9.406h-108.342c-5.186 0-9.406 4.218-9.406 9.406v108.342c0 5.188 4.22 9.406 9.406 9.406h73.634c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-73.634c-28.896 0-52.406-23.51-52.406-52.406v-108.342c0-28.896 23.51-52.406 52.406-52.406h108.342c28.898 0 52.408 23.51 52.408 52.406v11.248c0 11.876-9.626 21.5-21.5 21.5zM329.862 546.588l-86.59-86.59-14.48 14.478c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l23.026-23.026c5.838-5.84 13.602-9.056 21.858-9.056s16.020 3.216 21.856 9.054l95.138 95.138c8.396 8.396 8.396 22.010 0 30.406-8.396 8.394-22.010 8.394-30.406 0zM180.24 617.754h108.342c28.898 0 52.408 23.51 52.408 52.408l-1.434 19.688c-0.898 11.84-11.22 20.732-23.066 19.808-11.84-0.898-20.708-11.226-19.808-23.066l1.292-17.012c-0.302-4.918-4.398-8.826-9.39-8.826h-108.342c-5.186 0-9.406 4.22-9.406 9.408v108.342c0 5.188 4.22 9.406 9.406 9.406h73.634c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-73.634c-28.896 0-52.406-23.51-52.406-52.406v-108.342c0-28.898 23.51-52.408 52.406-52.408zM329.862 822.92l-86.59-86.59-14.48 14.478c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l23.026-23.026c5.838-5.84 13.602-9.056 21.858-9.056s16.020 3.216 21.856 9.054l95.138 95.138c8.396 8.396 8.396 22.010 0 30.406-8.396 8.394-22.010 8.394-30.406 0zM405.334 468.168h287.208c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-287.208c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM874.668 425.834h-469.334c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h469.334c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM405.334 190.834h287.208c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-287.208c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM787.836 148.5h-382.504c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h382.504c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5zM405.334 745.5h216.262c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-216.262c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM405.334 660.168h345.562c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-345.562c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5z" /> -<glyph unicode="" glyph-name="check-box-outline-blank" d="M724.651 745.685h-425.301c-47.488 0-86.016-38.485-86.016-86.016v-425.344c0-47.488 38.485-86.016 86.016-86.016h425.344c47.488 0 86.016 38.485 86.016 86.016v425.344c0 47.488-38.485 86.016-86.016 86.016zM724.651 234.325h-425.301v425.344h425.344v-425.344z" /> -<glyph unicode="" glyph-name="chevron-down" d="M902.528 655.968c-12.544 12.448-32.816 12.352-45.248-0.208l-344.56-347.616-346.080 346.576c-12.48 12.496-32.736 12.512-45.248 0.032s-12.528-32.736-0.032-45.248l368.8-369.344c6-6.016 14.144-9.392 22.64-9.392h0.064c8.512 0 16.672 3.424 22.672 9.472l367.2 370.464c12.448 12.544 12.352 32.816-0.208 45.248z" /> -<glyph unicode="" glyph-name="chevron-left" d="M719.744 102.72l-347.6 344.56 346.576 346.080c12.512 12.48 12.528 32.736 0.032 45.248-12.48 12.496-32.736 12.528-45.248 0.032l-369.328-368.8c-6.032-6.016-9.408-14.192-9.392-22.704s3.424-16.672 9.472-22.672l370.448-367.2c6.24-6.192 14.384-9.28 22.528-9.28 8.24 0 16.464 3.168 22.72 9.472 12.448 12.544 12.352 32.816-0.208 45.248z" /> -<glyph unicode="" glyph-name="chevron-right" d="M719.744 471.536l-370.448 367.184c-12.544 12.448-32.816 12.352-45.248-0.208-12.448-12.544-12.352-32.816 0.208-45.248l347.6-344.56-346.576-346.080c-12.512-12.48-12.528-32.736-0.032-45.248 6.256-6.256 14.448-9.392 22.64-9.392s16.368 3.12 22.608 9.36l369.328 368.8c6.032 6.016 9.408 14.192 9.392 22.704s-3.424 16.672-9.472 22.672z" /> -<glyph unicode="" glyph-name="chevrons-down" d="M841.232 478.944l-344.544-347.616-346.080 346.592c-12.48 12.512-32.736 12.528-45.248 0.032-12.496-12.48-12.512-32.736-0.032-45.248l368.8-369.344c6-6.016 14.144-9.392 22.64-9.392h0.064c8.512 0 16.672 3.424 22.672 9.472l367.2 370.448c12.432 12.56 12.336 32.816-0.208 45.264-12.576 12.448-32.816 12.352-45.264-0.208zM474.128 416.976c6-6.016 14.144-9.392 22.64-9.392h0.064c8.512 0 16.672 3.424 22.672 9.472l367.2 370.464c12.432 12.544 12.336 32.816-0.208 45.248-12.576 12.448-32.816 12.352-45.264-0.208l-344.544-347.616-346.080 346.592c-12.48 12.512-32.736 12.528-45.248 0.032-12.496-12.48-12.512-32.736-0.032-45.248l368.8-369.344z" /> -<glyph unicode="" glyph-name="chevrons-left" d="M195.328 447.28l346.576 346.080c12.496 12.48 12.512 32.736 0.032 45.248s-32.736 12.528-45.248 0.032l-369.344-368.8c-6.032-6.016-9.408-14.192-9.392-22.704s3.424-16.672 9.472-22.672l370.464-367.2c6.256-6.192 14.384-9.28 22.528-9.28 8.24 0 16.464 3.168 22.736 9.472 12.432 12.544 12.336 32.816-0.208 45.248l-347.632 344.56zM896.576 102.72l-347.632 344.56 346.576 346.080c12.496 12.48 12.512 32.736 0.032 45.248-12.496 12.512-32.752 12.528-45.248 0.032l-369.344-368.8c-6.032-6.016-9.408-14.192-9.392-22.704s3.424-16.672 9.472-22.672l370.464-367.2c6.256-6.192 14.384-9.28 22.528-9.28 8.24 0 16.464 3.168 22.736 9.472 12.432 12.544 12.336 32.816-0.208 45.248z" /> -<glyph unicode="" glyph-name="chevrons-right" d="M896.576 471.536l-370.464 367.184c-12.576 12.448-32.816 12.352-45.264-0.208-12.432-12.544-12.336-32.816 0.208-45.248l347.616-344.56-346.576-346.080c-12.496-12.48-12.512-32.736-0.032-45.248 6.256-6.256 14.432-9.392 22.64-9.392s16.352 3.12 22.608 9.36l369.344 368.8c6.032 6.016 9.408 14.192 9.392 22.704s-3.424 16.672-9.472 22.656zM552.416 448.864c0 8.512-3.424 16.672-9.472 22.656l-370.464 367.2c-12.576 12.448-32.816 12.352-45.264-0.208-12.432-12.544-12.336-32.816 0.208-45.248l347.616-344.56-346.576-346.080c-12.496-12.48-12.512-32.736-0.032-45.248 6.256-6.256 14.432-9.392 22.64-9.392s16.352 3.12 22.608 9.36l369.344 368.8c6.032 6.016 9.408 14.192 9.392 22.704z" /> -<glyph unicode="" glyph-name="chevrons-up" d="M144 407.584c8.24 0 16.464 3.168 22.736 9.472l344.544 347.616 346.080-346.576c12.48-12.512 32.736-12.528 45.248-0.032 12.496 12.48 12.512 32.736 0.032 45.248l-368.8 369.344c-6 6.016-14.144 9.392-22.64 9.392h-0.064c-8.512 0-16.672-3.424-22.672-9.472l-367.2-370.464c-12.432-12.56-12.336-32.816 0.208-45.264 6.256-6.192 14.384-9.28 22.528-9.28zM533.84 479.024c-6 6.016-14.144 9.392-22.64 9.392h-0.064c-8.512 0-16.672-3.424-22.672-9.472l-367.2-370.464c-12.432-12.544-12.336-32.816 0.208-45.248 6.256-6.192 14.384-9.28 22.528-9.28 8.24 0 16.464 3.168 22.736 9.472l344.544 347.616 346.080-346.576c12.48-12.512 32.736-12.528 45.248-0.032 12.496 12.48 12.512 32.736 0.032 45.248l-368.8 369.344z" /> -<glyph unicode="" glyph-name="chevron-up" d="M902.64 286.496l-368.8 369.344c-6 6.016-14.144 9.392-22.64 9.392h-0.064c-8.512 0-16.672-3.424-22.672-9.472l-367.2-370.464c-12.432-12.544-12.336-32.816 0.208-45.248 6.256-6.192 14.384-9.28 22.528-9.28 8.24 0 16.464 3.168 22.736 9.472l344.544 347.616 346.080-346.576c12.48-12.496 32.736-12.528 45.248-0.032 12.496 12.48 12.512 32.736 0.032 45.248z" /> -<glyph unicode="" glyph-name="circle-arrow-down" d="M512 930.784c-265.104 0-480-214.912-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 34.784c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM634.304 439.568l-90.24-90.224 0.272 280.16c0 17.664-14.304 32.016-31.968 32.032h-0.032c-17.664 0-31.984-14.304-32-31.968l-0.272-280.352-90.352 90.352c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l144.928-144.928c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l144.928 144.928c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0z" /> -<glyph unicode="" glyph-name="circle-arrow-down-2" d="M512 866.928c-235.648 0-426.672-191.024-426.672-426.672s191.024-426.672 426.672-426.672 426.672 191.024 426.672 426.672-191.024 426.672-426.672 426.672zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776-99.776 149.888-99.776 240.88 35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM609.6 427.744l-54.592-54.592v237.52c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-237.52l-54.592 54.592c-16.784 16.8-44.016 16.8-60.816 0s-16.8-44.016 0-60.816l128-128c1.008-1.008 2.064-1.952 3.152-2.848 0.496-0.416 1.024-0.768 1.536-1.152 0.608-0.464 1.2-0.928 1.84-1.36 0.608-0.416 1.248-0.768 1.888-1.152 0.576-0.336 1.136-0.704 1.728-1.024 0.64-0.336 1.312-0.64 1.968-0.944 0.608-0.288 1.216-0.592 1.856-0.864 0.64-0.256 1.296-0.48 1.936-0.704 0.672-0.24 1.344-0.496 2.032-0.72 0.64-0.192 1.312-0.336 1.952-0.496 0.704-0.176 1.408-0.368 2.128-0.512 0.752-0.144 1.52-0.24 2.288-0.352 0.624-0.096 1.248-0.208 1.872-0.272 1.408-0.144 2.832-0.208 4.24-0.208s2.832 0.080 4.24 0.208c0.64 0.064 1.248 0.176 1.872 0.272 0.768 0.112 1.52 0.192 2.288 0.352 0.72 0.144 1.408 0.336 2.128 0.512 0.656 0.16 1.312 0.304 1.952 0.496 0.688 0.208 1.36 0.464 2.032 0.72 0.64 0.224 1.296 0.448 1.936 0.704 0.624 0.256 1.232 0.576 1.856 0.864 0.656 0.304 1.312 0.608 1.968 0.944 0.592 0.32 1.152 0.672 1.728 1.024 0.624 0.384 1.264 0.736 1.888 1.152 0.64 0.432 1.232 0.896 1.84 1.36 0.512 0.384 1.040 0.736 1.536 1.152 1.104 0.896 2.16 1.856 3.152 2.848l128 128c16.8 16.8 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0z" /> -<glyph unicode="" glyph-name="circle-arrow-down-left" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM616.016 596.816l-198.416-198.048v127.776c0 17.664-14.336 32-32 32s-32-14.336-32-32v-204.96c0-17.664 14.336-32 32-32h204.96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-127.6l198.288 197.92c12.512 12.48 12.528 32.736 0.032 45.264-12.48 12.496-32.736 12.528-45.264 0.032z" /> -<glyph unicode="" glyph-name="circle-arrow-down-left-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896 149.888 99.776 240.88 99.776 176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM602.272 591.088l-167.952-167.952v77.216c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-181.024c0-1.424 0.080-2.832 0.208-4.24 0.064-0.64 0.176-1.264 0.272-1.888 0.112-0.752 0.192-1.52 0.352-2.272 0.144-0.72 0.336-1.424 0.528-2.128 0.16-0.656 0.304-1.312 0.496-1.952 0.208-0.688 0.464-1.36 0.72-2.048 0.224-0.64 0.448-1.296 0.704-1.92 0.256-0.64 0.576-1.248 0.864-1.872 0.304-0.656 0.592-1.312 0.944-1.952 0.32-0.592 0.688-1.168 1.024-1.744 0.368-0.624 0.72-1.264 1.136-1.872 0.432-0.64 0.896-1.248 1.36-1.856 0.384-0.512 0.736-1.024 1.136-1.52 1.792-2.192 3.808-4.208 6-6 0.496-0.416 1.024-0.768 1.536-1.152 0.608-0.464 1.2-0.928 1.84-1.36 0.624-0.416 1.248-0.768 1.888-1.152 0.576-0.336 1.136-0.704 1.712-1.008 0.64-0.352 1.312-0.64 1.968-0.944 0.608-0.288 1.216-0.592 1.856-0.864 0.64-0.256 1.296-0.48 1.936-0.704 0.672-0.24 1.344-0.496 2.032-0.72 0.64-0.192 1.312-0.336 1.952-0.496 0.704-0.176 1.408-0.368 2.128-0.512 0.752-0.144 1.52-0.24 2.288-0.352 0.624-0.096 1.248-0.208 1.872-0.272 1.408-0.144 2.832-0.208 4.24-0.208h181.024c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-77.216l167.952 167.952c16.8 16.8 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0z" /> -<glyph unicode="" glyph-name="circle-arrow-down-right" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM638.4 558.56c-17.664 0-32-14.336-32-32v-127.6l-197.92 198.288c-12.48 12.496-32.736 12.528-45.264 0.032-12.512-12.48-12.528-32.736-0.032-45.264l198.048-198.416h-127.776c-17.664 0-32-14.336-32-32s14.336-32 32-32h204.96c17.664 0 32 14.336 32 32v204.96c0 17.664-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="circle-arrow-down-right-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM632.672 543.344c-23.744 0-43.008-19.248-43.008-43.008v-77.216l-167.952 167.952c-16.784 16.8-44.016 16.8-60.816 0s-16.8-44.016 0-60.816l167.952-167.952h-77.216c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h181.024c1.424 0 2.832 0.080 4.24 0.208 0.64 0.064 1.248 0.176 1.872 0.272 0.768 0.112 1.52 0.192 2.288 0.352 0.72 0.144 1.408 0.336 2.128 0.512 0.656 0.16 1.312 0.304 1.952 0.496 0.688 0.208 1.36 0.464 2.032 0.72 0.64 0.224 1.296 0.448 1.936 0.704 0.624 0.256 1.232 0.56 1.856 0.864 0.656 0.304 1.328 0.608 1.968 0.944 0.592 0.32 1.152 0.672 1.712 1.008 0.624 0.384 1.264 0.736 1.888 1.152 0.64 0.432 1.232 0.896 1.84 1.36 0.512 0.384 1.040 0.736 1.536 1.152 2.192 1.792 4.208 3.808 6 6 0.4 0.496 0.768 1.024 1.136 1.52 0.464 0.608 0.928 1.216 1.36 1.856 0.416 0.608 0.768 1.248 1.136 1.872 0.352 0.576 0.704 1.136 1.024 1.728 0.336 0.64 0.624 1.296 0.944 1.952 0.288 0.624 0.608 1.232 0.864 1.872s0.48 1.28 0.704 1.92c0.24 0.688 0.512 1.36 0.72 2.048 0.192 0.64 0.336 1.296 0.496 1.952 0.176 0.704 0.384 1.408 0.528 2.128 0.144 0.752 0.24 1.52 0.352 2.272 0.096 0.624 0.208 1.248 0.272 1.888 0.144 1.408 0.208 2.832 0.208 4.24v181.024c0 23.744-19.248 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="circle-arrow-left" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM690.784 479.664l-280.352 0.272 90.352 90.352c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-144.928-144.928c-12.496-12.496-12.496-32.752 0-45.248l144.928-144.928c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-90.224 90.24 280.192-0.272c17.664 0 31.984 14.304 32 31.968 0 17.664-14.304 32.016-31.968 32.032z" /> -<glyph unicode="" glyph-name="circle-arrow-left-2" d="M512 866.928c-235.648 0-426.672-191.024-426.672-426.672s191.024-426.672 426.672-426.672 426.672 191.024 426.672 426.672-191.024 426.672-426.672 426.672zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776-99.776 149.888-99.776 240.88 35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.88s-35.44-176.544-99.776-240.88zM682.672 483.008h-237.52l54.592 54.592c16.8 16.784 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0l-128-128c-1.008-1.008-1.952-2.064-2.848-3.152-0.4-0.496-0.752-1.008-1.136-1.504-0.464-0.624-0.944-1.232-1.376-1.872-0.4-0.608-0.752-1.232-1.136-1.856-0.352-0.576-0.704-1.152-1.024-1.744-0.336-0.64-0.624-1.296-0.944-1.952-0.288-0.624-0.608-1.232-0.864-1.872s-0.48-1.28-0.704-1.92c-0.24-0.688-0.512-1.36-0.72-2.048-0.192-0.64-0.336-1.296-0.496-1.952-0.176-0.704-0.384-1.408-0.528-2.128-0.144-0.752-0.24-1.504-0.352-2.272-0.096-0.624-0.208-1.248-0.272-1.888-0.272-2.816-0.272-5.664 0-8.48 0.064-0.64 0.176-1.264 0.272-1.888 0.112-0.752 0.192-1.52 0.352-2.272 0.144-0.72 0.336-1.424 0.528-2.128 0.16-0.656 0.304-1.312 0.496-1.952 0.208-0.688 0.464-1.36 0.72-2.048 0.224-0.64 0.448-1.296 0.704-1.92 0.256-0.64 0.576-1.248 0.864-1.872 0.304-0.656 0.592-1.312 0.944-1.952 0.32-0.592 0.688-1.168 1.024-1.744 0.368-0.624 0.72-1.248 1.136-1.856 0.432-0.64 0.912-1.248 1.376-1.872 0.384-0.496 0.72-1.024 1.136-1.504 0.896-1.104 1.856-2.16 2.848-3.152l128-128c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.8 16.8 16.8 44.016 0 60.816l-54.592 54.592h237.52c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="circle-arrow-right" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM568.464 615.552c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l90.224-90.24-280.192 0.272c-17.664 0-31.984-14.304-32-31.968 0-17.664 14.304-32.016 31.968-32.032l280.352-0.272-90.352-90.352c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l144.928 144.928c12.496 12.496 12.496 32.752 0 45.248l-144.928 144.928z" /> -<glyph unicode="" glyph-name="circle-arrow-right-2" d="M512 866.928c-235.648 0-426.672-191.024-426.672-426.672s191.024-426.672 426.672-426.672 426.672 191.024 426.672 426.672-191.024 426.672-426.672 426.672zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776-99.776 149.888-99.776 240.88 35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.88s-35.44-176.544-99.776-240.88zM717.088 414.304c0.448 0.608 0.928 1.2 1.344 1.824 0.416 0.608 0.768 1.248 1.136 1.888 0.336 0.576 0.704 1.136 1.024 1.728 0.336 0.64 0.624 1.296 0.944 1.952 0.288 0.624 0.608 1.232 0.864 1.872 0.256 0.624 0.464 1.28 0.704 1.904 0.24 0.688 0.512 1.36 0.72 2.064 0.192 0.64 0.336 1.28 0.496 1.92 0.176 0.72 0.384 1.424 0.528 2.16s0.224 1.472 0.336 2.208c0.096 0.656 0.224 1.296 0.288 1.952 0.128 1.344 0.192 2.704 0.208 4.064 0 0.064 0 0.112 0 0.176s0 0.112 0 0.176c0 1.36-0.080 2.704-0.208 4.064-0.064 0.656-0.192 1.296-0.288 1.952-0.112 0.736-0.192 1.472-0.336 2.208s-0.352 1.44-0.528 2.16c-0.16 0.64-0.304 1.28-0.496 1.92-0.208 0.704-0.48 1.376-0.72 2.064-0.224 0.64-0.432 1.28-0.704 1.904-0.272 0.64-0.576 1.248-0.864 1.872-0.304 0.656-0.592 1.312-0.944 1.952-0.32 0.592-0.672 1.152-1.024 1.728-0.368 0.624-0.736 1.264-1.136 1.888-0.416 0.624-0.896 1.216-1.344 1.824-0.384 0.512-0.752 1.056-1.168 1.552-0.864 1.056-1.776 2.064-2.736 3.024-0.048 0.032-0.080 0.080-0.112 0.128l-128 128c-16.8 16.8-44.016 16.8-60.816 0-16.784-16.784-16.784-44.016 0-60.816l54.592-54.592h-237.52c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h237.52l-54.592-54.592c-16.784-16.784-16.784-44.016 0-60.816 8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592l128 128s0.064 0.080 0.112 0.128c0.96 0.96 1.872 1.968 2.736 3.024 0.416 0.512 0.768 1.040 1.168 1.552z" /> -<glyph unicode="" glyph-name="circle-arrow-up" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM534.624 649.376c-12.496 12.496-32.752 12.496-45.248 0l-144.928-144.928c-12.496-12.496-12.496-32.752 0-45.248s32.752-12.496 45.248 0l90.24 90.224-0.272-280.16c0-17.664 14.304-32.016 31.968-32.032h0.032c17.664 0 31.984 14.304 32 31.968l0.272 280.352 90.352-90.352c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-144.928 144.928z" /> -<glyph unicode="" glyph-name="circle-arrow-up-2" d="M512 866.928c-235.648 0-426.672-191.024-426.672-426.672s191.024-426.672 426.672-426.672 426.672 191.024 426.672 426.672-191.024 426.672-426.672 426.672zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776-99.776 149.888-99.776 240.88 35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.88s-35.44-176.544-99.776-240.88zM542.4 641.072s-0.080 0.064-0.112 0.096c-0.976 0.96-1.984 1.872-3.040 2.752-0.512 0.416-1.040 0.784-1.568 1.168-0.592 0.448-1.184 0.912-1.808 1.328s-1.264 0.768-1.904 1.152c-0.576 0.336-1.12 0.704-1.712 1.008-0.64 0.352-1.312 0.64-1.968 0.944-0.608 0.288-1.216 0.592-1.84 0.864-0.64 0.272-1.296 0.48-1.936 0.704-0.672 0.24-1.344 0.496-2.032 0.704-0.656 0.192-1.312 0.336-1.968 0.512-0.704 0.176-1.392 0.368-2.112 0.512-0.752 0.144-1.52 0.24-2.288 0.352-0.624 0.096-1.248 0.208-1.872 0.272-2.816 0.272-5.664 0.272-8.48 0-0.64-0.064-1.248-0.176-1.872-0.272-0.768-0.112-1.52-0.192-2.288-0.352-0.72-0.144-1.408-0.336-2.112-0.512-0.656-0.16-1.312-0.304-1.968-0.512-0.688-0.208-1.36-0.464-2.032-0.704-0.656-0.24-1.296-0.448-1.936-0.704-0.624-0.256-1.232-0.56-1.84-0.864-0.656-0.304-1.328-0.608-1.968-0.944-0.592-0.32-1.136-0.672-1.712-1.008-0.64-0.384-1.28-0.736-1.904-1.152s-1.216-0.88-1.808-1.328c-0.528-0.384-1.056-0.752-1.568-1.168-1.056-0.864-2.064-1.792-3.040-2.752-0.032-0.032-0.080-0.064-0.112-0.096l-128-128c-16.784-16.8-16.784-44.016 0-60.816 16.8-16.8 44.016-16.8 60.816 0l54.592 54.592v-237.52c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v237.52l54.592-54.592c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.784 16.8 16.784 44.016 0 60.816l-128 128z" /> -<glyph unicode="" glyph-name="circle-arrow-up-left" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM462.768 542.4h127.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-204.96c-17.664 0-32-14.336-32-32v-204.96c0-17.664 14.336-32 32-32s32 14.336 32 32v127.6l197.92-198.288c6.256-6.256 14.448-9.392 22.656-9.392s16.352 3.12 22.608 9.344c12.512 12.48 12.528 32.736 0.032 45.264l-198.048 198.416z" /> -<glyph unicode="" glyph-name="circle-arrow-up-left-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM495.136 517.68h77.216c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-181.024c-1.424 0-2.832-0.080-4.24-0.208-0.64-0.064-1.248-0.176-1.872-0.272-0.768-0.112-1.52-0.192-2.288-0.352-0.72-0.144-1.408-0.336-2.128-0.512-0.656-0.16-1.312-0.304-1.952-0.496-0.688-0.208-1.36-0.464-2.032-0.704-0.656-0.224-1.296-0.448-1.936-0.704-0.624-0.256-1.232-0.56-1.84-0.848-0.656-0.304-1.328-0.608-1.968-0.944-0.576-0.32-1.136-0.672-1.712-1.008-0.64-0.384-1.28-0.736-1.904-1.152s-1.216-0.88-1.808-1.328c-0.528-0.384-1.056-0.752-1.568-1.168-1.040-0.848-2.032-1.76-2.992-2.704-0.048-0.048-0.112-0.096-0.16-0.144s-0.096-0.112-0.144-0.16c-0.944-0.96-1.84-1.952-2.688-2.976-0.416-0.512-0.784-1.040-1.168-1.568-0.448-0.608-0.912-1.184-1.328-1.808-0.416-0.608-0.768-1.248-1.152-1.888-0.336-0.576-0.704-1.136-1.024-1.728-0.336-0.64-0.624-1.296-0.944-1.952-0.288-0.624-0.608-1.232-0.864-1.872-0.256-0.624-0.464-1.28-0.704-1.904-0.24-0.688-0.512-1.36-0.72-2.064-0.192-0.64-0.336-1.28-0.496-1.92-0.176-0.72-0.384-1.424-0.528-2.16s-0.224-1.472-0.336-2.208c-0.096-0.656-0.224-1.296-0.288-1.952-0.128-1.344-0.192-2.704-0.208-4.064 0-0.064 0-0.112 0-0.176v-181.024c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v77.2l167.952-167.952c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.784 16.8 16.784 44.016 0 60.816l-167.952 167.952z" /> -<glyph unicode="" glyph-name="circle-arrow-up-right" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM638.4 606.4h-204.96c-17.664 0-32-14.336-32-32s14.336-32 32-32h127.6l-198.304-197.92c-12.496-12.48-12.528-32.736-0.048-45.248 6.256-6.272 14.448-9.392 22.656-9.392s16.352 3.12 22.608 9.344l198.432 198.048v-127.792c0-17.664 14.336-32 32-32s32 14.336 32 32v204.96c0 17.664-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="circle-arrow-up-right-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM675.472 564.912c-0.064 0.656-0.192 1.296-0.288 1.952-0.112 0.736-0.192 1.472-0.336 2.208s-0.352 1.44-0.528 2.16c-0.16 0.64-0.304 1.28-0.496 1.92-0.208 0.704-0.48 1.376-0.72 2.064-0.224 0.64-0.432 1.28-0.704 1.904-0.256 0.64-0.576 1.248-0.864 1.872-0.304 0.656-0.592 1.312-0.944 1.952-0.32 0.592-0.672 1.152-1.024 1.728-0.368 0.624-0.736 1.264-1.152 1.888s-0.88 1.216-1.328 1.808c-0.384 0.528-0.752 1.056-1.168 1.568-0.848 1.040-1.744 2.032-2.688 2.976-0.048 0.048-0.096 0.112-0.144 0.16s-0.112 0.096-0.16 0.144c-0.96 0.944-1.952 1.856-2.992 2.704-0.512 0.416-1.040 0.784-1.568 1.168-0.592 0.448-1.184 0.912-1.808 1.328s-1.264 0.768-1.904 1.152c-0.56 0.336-1.12 0.688-1.712 1.008-0.64 0.352-1.312 0.64-1.968 0.944-0.608 0.288-1.216 0.592-1.84 0.848-0.64 0.256-1.296 0.48-1.936 0.704-0.672 0.24-1.344 0.496-2.032 0.704-0.64 0.192-1.312 0.336-1.952 0.496-0.704 0.176-1.408 0.368-2.128 0.512-0.752 0.144-1.52 0.24-2.288 0.352-0.624 0.096-1.248 0.208-1.872 0.272-1.408 0.144-2.832 0.208-4.24 0.208h-181.024c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h77.216l-167.952-167.952c-16.784-16.8-16.784-44.016 0-60.816 8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592l167.952 167.952v-77.2c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v181.024s0 0.112 0 0.176c0 1.36-0.080 2.704-0.208 4.064z" /> -<glyph unicode="" glyph-name="circle-caret-down" d="M654 573.744l-283.92 0.432c-48.272 0-72.688-58.208-38.8-92.64l141.168-143.472c10.656-10.832 24.736-16.256 38.816-16.256 13.952 0 27.904 5.328 38.544 16l142.656 143.040c34.208 34.288 9.968 92.832-38.464 92.896zM511.312 389.84l-118.384 120.304 238-0.368-119.632-119.952zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-caret-down-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.376c-64.336-64.336-149.888-99.776-240.896-99.776s-176.544 35.44-240.88 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.896-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM590.608 460.672l-78.608-85.552-78.608 85.552h157.216zM690.784 546.672h-357.568c-36.56 0-55.664-43.488-30.928-70.416l178.768-194.592c8.32-9.056 19.632-13.584 30.928-13.584s22.608 4.528 30.928 13.584l178.8 194.592c24.736 26.928 5.648 70.416-30.928 70.416v0z" /> -<glyph unicode="" glyph-name="circle-caret-left" d="M583.344 644.464c-13.248 0-26.752-4.864-37.808-15.744l-143.472-141.168c-21.584-21.232-21.696-55.984-0.256-77.36l143.040-142.656c11.088-11.056 24.704-16 38.064-16 27.968 0 54.784 21.696 54.832 54.48l0.432 283.824c0.048 32.832-26.8 54.64-54.832 54.64zM573.792 329.072l-119.952 119.632 120.304 118.384-0.368-238.016zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-caret-left-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.376c-64.336-64.336-149.888-99.776-240.896-99.776s-176.544 35.44-240.896 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.896-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM532.4 518.88v-157.216l-85.552 78.608 85.552 78.608zM576.144 661.136c-9.776 0-19.76-3.456-28.144-11.152l-194.592-178.768c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.8c8.384-7.696 18.368-11.152 28.16-11.152 21.632 0 42.256 16.896 42.256 42.080v357.568c0 25.184-20.624 42.080-42.256 42.080v0z" /> -<glyph unicode="" glyph-name="circle-caret-right" d="M479.152 628.464c-11.088 11.056-24.704 16-38.064 16-27.968 0-54.784-21.696-54.832-54.48l-0.432-283.824c-0.048-32.832 26.8-54.64 54.832-54.64 13.248 0 26.752 4.864 37.808 15.744l143.472 141.168c21.584 21.232 21.696 55.984 0.256 77.36l-143.040 142.656zM449.856 328.928l0.368 238.016 119.952-119.632-120.304-118.384zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-caret-right-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.648-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.376c-64.336-64.336-149.888-99.776-240.896-99.776s-176.544 35.44-240.896 99.776c-64.336 64.336-99.776 149.888-99.776 240.88s35.44 176.544 99.776 240.896c64.336 64.336 149.888 99.776 240.896 99.776s176.544-35.44 240.896-99.776c64.336-64.336 99.776-149.888 99.776-240.896s-35.44-176.544-99.776-240.88zM491.6 518.864l85.552-78.608-85.552-78.608v157.216zM447.856 661.136c-21.632 0-42.256-16.896-42.256-42.080v-357.568c0-25.184 20.624-42.080 42.256-42.080 9.776 0 19.76 3.456 28.144 11.152l194.592 178.768c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.8c-8.384 7.696-18.368 11.152-28.16 11.152v0z" /> -<glyph unicode="" glyph-name="circle-caret-up" d="M551.552 557.92c-10.656 10.832-24.736 16.256-38.816 16.256-13.952 0-27.904-5.328-38.544-16l-142.656-143.040c-34.208-34.288-9.968-92.832 38.464-92.896l283.92-0.432c48.272 0 72.688 58.208 38.8 92.64l-141.168 143.472zM393.072 386.208l119.632 119.952 118.384-120.304-238 0.368zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-caret-up-2" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.976 301.696-124.976s218.384 41.664 301.696 124.976c166.624 166.624 166.624 436.768 0 603.392zM752.88 199.376c-64.336-64.336-149.888-99.776-240.88-99.776s-176.544 35.44-240.88 99.776-99.776 149.888-99.776 240.88 35.44 176.544 99.776 240.88c64.336 64.336 149.888 99.776 240.88 99.776s176.544-35.44 240.88-99.776c64.336-64.336 99.776-149.888 99.776-240.88s-35.44-176.544-99.776-240.88zM512.016 505.408l78.608-85.552h-157.216l78.608 85.552zM512.016 612.448c-11.296 0-22.608-4.528-30.928-13.584l-178.8-194.592c-24.736-26.928-5.648-70.416 30.928-70.416h357.568c36.56 0 55.664 43.488 30.928 70.416l-178.768 194.592c-8.32 9.056-19.632 13.584-30.928 13.584v0z" /> -<glyph unicode="" glyph-name="circle-check" d="M511.968 928c-265.088 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM511.968 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM693.296 599.104l-245.552-235.264-117.632 107.712c-13.040 11.936-33.28 11.024-45.216-2s-11.040-33.28 2-45.216l139.728-127.968c6.112-5.6 13.872-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l267.2 256c12.752 12.224 13.2 32.48 0.976 45.248-12.224 12.736-32.48 13.2-45.248 0.976z" /> -<glyph unicode="" glyph-name="circle-chevron-down" d="M663.424 558.064l-152.176-152.592-150.528 152.976c-12.384 12.592-32.656 12.736-45.264 0.368-12.592-12.4-12.752-32.656-0.368-45.264l173.184-176c6-6.080 14.16-9.52 22.704-9.552h0.112c8.496 0 16.656 3.376 22.656 9.408l174.992 175.472c12.48 12.512 12.448 32.768-0.064 45.248-12.512 12.496-32.784 12.464-45.248-0.064zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-chevron-left" d="M469.472 447.248l152.592 152.176c12.512 12.48 12.544 32.736 0.064 45.248-12.48 12.528-32.736 12.544-45.248 0.064l-175.472-174.992c-6.048-6.032-9.44-14.224-9.408-22.768s3.472-16.704 9.552-22.704l176-173.184c6.24-6.128 14.336-9.184 22.448-9.184 8.272 0 16.544 3.184 22.816 9.552 12.384 12.608 12.224 32.864-0.368 45.264l-152.976 150.528zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-chevron-right" d="M447.12 644.736c-12.512 12.496-32.784 12.464-45.248-0.064-12.48-12.512-12.448-32.768 0.064-45.248l152.592-152.176-152.976-150.528c-12.592-12.4-12.752-32.656-0.368-45.264 6.272-6.368 14.544-9.552 22.816-9.552 8.096 0 16.208 3.056 22.448 9.184l176 173.184c6.080 6 9.52 14.16 9.552 22.704s-3.36 16.736-9.408 22.768l-175.472 174.992zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-chevron-up" d="M535.712 558.448c-6 6.080-14.16 9.52-22.704 9.552h-0.112c-8.496 0-16.656-3.376-22.656-9.408l-174.992-175.472c-12.48-12.512-12.448-32.768 0.064-45.248 12.496-12.48 32.768-12.448 45.248 0.064l152.176 152.592 150.528-152.976c6.272-6.368 14.544-9.552 22.816-9.552 8.096 0 16.208 3.056 22.448 9.184 12.592 12.4 12.752 32.656 0.368 45.264l-173.184 176zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-down" d="M512 931.504c-265.104 0-480-214.912-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 35.504c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM654.032 500.416l-23.632 0.032 0.288 139.936c0.048 24.592-9.488 47.728-26.864 65.136s-40.496 27.008-65.088 27.008h-54.080c-24.624 0-47.744-9.6-65.12-27.040s-26.896-40.592-26.816-65.216l0.48-139.44-23.104 0.032c-35.456 0-65.984-20.304-79.712-52.992-13.728-32.736-6.8-68.784 18.096-94.096l141.168-143.472c16.304-16.576 38.080-25.728 61.328-25.808 0.096 0 0.192 0 0.288 0 23.136 0 44.864 9.008 61.2 25.408l142.656 143.024c25.12 25.184 32.272 61.264 18.672 94.128s-44.176 53.312-79.744 53.36zM669.808 398.112l-142.656-143.024c-4.24-4.256-9.888-6.608-15.904-6.608h-0.064c-6.032 0.016-11.696 2.4-15.936 6.704l-141.168 143.472c-9.456 9.616-6.432 20.288-4.688 24.432 1.728 4.144 7.232 13.76 20.688 13.76h0.048l55.184-0.080c8.496 0 16.656 3.376 22.656 9.392 6.016 6.032 9.376 14.208 9.344 22.72l-0.592 171.6c-0.016 7.488 2.864 14.528 8.144 19.824s12.304 8.224 19.792 8.224h54.080c7.472 0 14.496-2.912 19.776-8.208s8.176-12.32 8.16-19.792l-0.336-171.952c0-8.48 3.344-16.64 9.328-22.656s14.128-9.392 22.624-9.408l55.648-0.080c13.52-0.016 18.992-9.696 20.704-13.856 1.728-4.16 4.704-14.88-4.848-24.448z" /> -<glyph unicode="" glyph-name="circle-left" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM701.088 567.28h-0.336l-139.44-0.48 0.032 22.976c0.048 35.504-20.256 66.096-52.992 79.84-32.736 13.728-68.784 6.816-94.096-18.096l-143.472-141.184c-16.56-16.304-25.728-38.080-25.808-61.328s8.944-45.088 25.392-61.504l143.024-142.656c16.736-16.704 38.288-25.456 60.512-25.456 11.216 0 22.592 2.24 33.616 6.8 32.864 13.616 53.312 44.176 53.36 79.744l0.032 23.632 140.144-0.288c24.512 0 47.568 9.536 64.928 26.864 17.408 17.376 27.008 40.496 27.008 65.088v54.080c0 24.624-9.6 47.744-27.040 65.12-17.36 17.296-40.384 26.816-64.88 26.816zM729.008 421.264c0-7.472-2.912-14.496-8.208-19.776-5.28-5.264-12.288-8.16-19.728-8.16h-0.064l-172.016 0.336c-8.464 0-16.592-3.36-22.592-9.328-6.016-6-9.392-14.128-9.408-22.624l-0.080-55.648c-0.016-13.52-9.696-18.992-13.856-20.704-4.16-1.744-14.88-4.688-24.448 4.848l-143.024 142.656c-4.272 4.272-6.624 9.936-6.608 15.984 0.016 6.032 2.4 11.68 6.704 15.92l143.472 141.184c9.616 9.456 20.304 6.432 24.432 4.688 4.144-1.744 13.792-7.248 13.76-20.736l-0.080-55.136c0-8.512 3.36-16.672 9.392-22.688 6-6 14.128-9.344 22.608-9.344h0.112l171.696 0.592c7.44 0 14.448-2.896 19.712-8.144 5.296-5.28 8.224-12.304 8.224-19.792v-54.080z" /> -<glyph unicode="" glyph-name="circle-minus" d="M720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="circle-plus" d="M516.176 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.912 480-480 480zM516.176 32c-229.392 0-416 186.624-416 416s186.608 416 416 416 416-186.624 416-416-186.624-416-416-416zM716.176 488h-168v168c0 17.664-14.336 32-32 32s-32-14.336-32-32v-168h-168c-17.664 0-32-14.336-32-32s14.336-32 32-32h168v-168c0-17.664 14.336-32 32-32s32 14.336 32 32v168h168c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="circle-right" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM610.576 651.12c-25.168 25.12-61.2 32.304-94.128 18.672-32.864-13.616-53.312-44.16-53.376-79.744l-0.032-23.632-140.128 0.288c-24.528 0-47.584-9.536-64.944-26.864-17.408-17.36-27.008-40.48-27.008-65.088v-54.080c0-24.624 9.616-47.744 27.040-65.12 17.424-17.36 39.92-26.72 65.216-26.816l139.44 0.48-0.032-22.976c-0.064-35.504 20.24-66.096 52.992-79.84 11.12-4.672 22.624-6.96 33.968-6.96 22.032 0 43.424 8.608 60.112 25.040l143.472 141.168c16.576 16.304 25.744 38.080 25.824 61.328s-8.96 45.088-25.408 61.488l-143.024 142.656zM708.32 431.264l-143.488-141.184c-9.584-9.456-20.288-6.448-24.416-4.688-4.144 1.744-13.76 7.248-13.744 20.736l0.080 55.136c0 8.512-3.376 16.672-9.392 22.688-6 6-14.144 9.344-22.608 9.344h-0.112l-171.712-0.592c-7.44 0-14.432 2.896-19.712 8.144-5.296 5.28-8.224 12.32-8.224 19.792v54.080c0 7.472 2.928 14.512 8.208 19.792 5.28 5.264 12.288 8.16 19.728 8.16h0.064l172.016-0.336c8.464 0 16.592 3.36 22.592 9.328 6.016 6 9.392 14.128 9.408 22.624l0.080 55.648c0 13.52 9.696 18.992 13.856 20.704 4.192 1.728 14.88 4.704 24.448-4.848l143.024-142.656c4.272-4.256 6.608-9.92 6.592-15.968 0-6.032-2.4-11.68-6.704-15.92z" /> -<glyph unicode="" glyph-name="circle-up" d="M512 928c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM574.352 689.2c-16.304 16.56-38.080 25.728-61.328 25.808-0.096 0-0.192 0-0.304 0-23.136 0-44.864-9.008-61.2-25.408l-142.656-143.024c-25.12-25.184-32.272-61.264-18.672-94.128s44.176-53.312 79.744-53.36l23.632-0.032-0.288-139.936c-0.048-24.592 9.488-47.728 26.864-65.136s40.496-27.008 65.088-27.008h54.080c24.624 0 47.744 9.6 65.12 27.040s26.896 40.592 26.816 65.216l-0.48 139.44 23.104-0.032c35.456 0 65.984 20.304 79.712 52.992 13.728 32.736 6.8 68.784-18.096 94.096l-141.184 143.472zM674.608 476.416c-1.728-4.144-7.232-13.76-20.688-13.76h-0.048l-55.184 0.080c-8.496 0-16.656-3.376-22.656-9.392-6.016-6.032-9.376-14.208-9.344-22.72l0.592-171.6c0.016-7.488-2.864-14.528-8.144-19.824s-12.304-8.224-19.792-8.224h-54.080c-7.472 0-14.496 2.912-19.776 8.208s-8.176 12.32-8.16 19.792l0.336 171.952c0 8.48-3.344 16.64-9.328 22.656s-14.128 9.392-22.624 9.408l-55.648 0.080c-13.52 0.016-18.992 9.696-20.704 13.856-1.728 4.16-4.704 14.88 4.848 24.448l142.656 143.024c4.256 4.288 9.744 6.032 15.984 6.608 6.032-0.016 11.68-2.4 15.92-6.704l141.184-143.472c9.456-9.616 6.432-20.288 4.688-24.432z" /> -<glyph unicode="" glyph-name="circle-user" d="M516.592 362.48c90.736 0 164.272 73.552 164.272 164.272s-73.552 164.272-164.272 164.272-164.272-73.552-164.272-164.272 73.552-164.272 164.272-164.272zM516.592 627.040c55.296 0 100.272-44.992 100.272-100.272s-44.992-100.272-100.272-100.272-100.272 44.992-100.272 100.272 44.992 100.272 100.272 100.272zM512 932.048c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM96 452.048c0 229.376 186.624 416 416 416s416-186.624 416-416c0-103.552-38.112-198.304-100.944-271.2-78.192 84.976-208.976 123.424-310.448 123.424-105.072 0-238.416-39.984-315.424-128.304-65.36 73.504-105.184 170.208-105.184 276.080zM247.088 131.552c62.896 74.96 178.256 108.736 269.504 108.736 87.952 0 200.848-32.464 265.184-104.496-72.704-62.112-166.912-99.728-269.792-99.728-100.56 0-192.912 35.888-264.912 95.504z" /> -<glyph unicode="" glyph-name="circle-xmark" d="M855.584 787.408c-93.728 93.728-216.576 140.592-339.408 140.592s-245.68-46.864-339.408-140.592c-187.456-187.456-187.456-491.36-0.016-678.816 93.728-93.728 216.576-140.592 339.408-140.592s245.68 46.864 339.408 140.592c187.456 187.456 187.456 491.376 0 678.816zM810.336 153.84c-78.576-78.576-183.040-121.84-294.16-121.84s-215.584 43.264-294.16 121.84c-78.576 78.576-121.84 183.040-121.84 294.16s43.264 215.584 121.84 294.16c78.576 78.576 183.040 121.84 294.16 121.84s215.584-43.264 294.16-121.84c78.576-78.576 121.84-183.040 121.84-294.16s-43.28-215.584-121.84-294.16zM685.872 617.696c-12.48 12.496-32.768 12.496-45.248 0l-118.8-118.8-118.8 118.8c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l118.8-118.8-118.8-118.8c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l118.8 118.8 118.8-118.8c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-118.8 118.8 118.8 118.8c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="city" d="M944 32v576c0 35.296-28.704 64-64 64v64c0 23.584-12.96 44-32 55.104v72.896c0 35.296-28.704 64-64 64h-96c-35.296 0-64-28.704-64-64v-72.896c-19.040-11.104-32-31.52-32-55.104v-64c-35.296 0-64-28.704-64-64h-32v96c0 35.296-28.704 64-64 64h-256c-35.296 0-64-28.704-64-64v-488.896c-19.040-11.104-32-31.52-32-55.104v-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h864c17.664 0 32 14.336 32 32s-14.336 32-32 32zM784 864v-64h-96v64h96zM656 736h160v-64h-160v64zM592 608h288v-576h-112v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-112v576zM528 512v-480h-192v128c0 23.584-12.96 44-32 55.104v200.896c0 10.56 4.736 20.416 12.992 27.024l110.080 88.032c10.368 8.336 23.488 12.944 36.944 12.944h64v-32zM432 704v-100.688c-16.32-4.4-31.776-11.728-44.992-22.352l-110.016-87.968c-23.52-18.832-36.992-46.896-36.992-76.992v-192h-64v480h256zM144 160h128v-128h-32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-32v128zM464 160h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM464 288h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM368 416c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96zM784 128h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 128h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 384h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 384h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240 608h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="clapperboard-video" d="M991.424 770.928c-4.384 34.080-33.504 60.4-68.768 60.4h-821.328c-38.288 0-69.328-31.040-69.328-69.328v-628c0-38.288 31.040-69.328 69.328-69.328h821.344c38.288 0 69.328 31.040 69.328 69.328v628c0 3.024-0.192 6-0.576 8.928zM526.144 128.672l50.592 95.456c0.096 0.192 0.144 0.384 0.24 0.576h188.944l-50.912-96.016h-188.864zM264.848 128.672l50.592 95.456c0.096 0.192 0.144 0.384 0.24 0.576h188.912l-50.896-96.016h-188.848zM96 288.688v318.624h832v-318.624h-832zM497.872 767.328l-50.896-96.016h-188.88l50.896 96.016h188.88zM759.168 767.328l-50.912-96.016h-188.88l50.896 96.016h188.88zM928 762v-90.688h-147.312l50.912 96.016h91.072c2.944 0 4.992-2.32 5.328-5.328zM101.328 767.328h135.248l-50.896-96.016h-89.664v90.688c0 2.944 2.384 5.328 5.328 5.328zM96 134v90.688h147.296l-50.896-96.016h-91.072c-2.944 0-5.328 2.384-5.328 5.328zM922.672 128.672h-135.232l50.592 95.44c0.096 0.192 0.144 0.384 0.24 0.576h89.728v-90.688c0-2.944-2.384-5.328-5.328-5.328zM602.672 474.752l-124.448 80.128c-5.472 3.52-11.376 5.12-17.152 5.12-16.56 0-31.904-13.184-31.904-31.872v-160.256c0-18.672 15.328-31.872 31.904-31.872 5.76 0 11.68 1.6 17.152 5.12l124.448 80.128c19.456 12.528 19.456 40.976 0 53.504z" /> -<glyph unicode="" glyph-name="client-carousel" d="M686.668 745.834h-349.334c-44.94 0-81.5-36.56-81.5-81.5v-434.666c0-44.94 36.56-81.5 81.5-81.5h349.334c44.938 0 81.5 36.56 81.5 81.5v434.666c0 44.94-36.562 81.5-81.5 81.5zM725.168 229.668c0-21.228-17.272-38.5-38.5-38.5h-349.334c-21.228 0-38.5 17.272-38.5 38.5v434.666c0 21.228 17.272 38.5 38.5 38.5h349.334c21.228 0 38.5-17.272 38.5-38.5v-434.666zM152.526 639.834h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-37.754 0-68.468-31.944-68.468-71.208v-327.248c0-39.266 30.714-71.208 68.468-71.208h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-14.042 0-25.468 12.654-25.468 28.208v327.248c0 15.552 11.426 28.208 25.468 28.208zM871.498 682.834h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c14.044 0 25.468-12.654 25.468-28.208v-327.248c0-15.554-11.424-28.208-25.468-28.208h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c37.752 0 68.468 31.944 68.468 71.208v327.248c0 39.264-30.714 71.208-68.468 71.208zM383.932 339.188h256c11.874 0 21.5-9.626 21.5-21.5v-38.66c0-11.874-9.626-21.5-21.5-21.5h-256c-11.874 0-21.5 9.626-21.5 21.5v38.66c0 11.874 9.626 21.5 21.5 21.5zM389.628 470.462c3.886-12.746 21.998-18.394 29.238-28.754 7.504-10.738 6.716-29.62 16.96-37.34 8.16-6.146 21.062-3.726 32.158-4.504l11.054-0.18c11.026-5.336 20.876-18.95 33.014-19.168 11.81-0.212 22.178 13.15 33.884 18.076l14.936-0.244c10.224-0.146 21.068-1.858 28.326 3.212 10.74 7.504 10.548 26.482 18.268 36.728 7.796 10.348 26.056 15.412 30.294 27.656 0.796 2.304 1.034 4.72 0.904 7.212 0.612 10.658-7.034 22.998-7.608 34.028 0.604 11.060 9.526 23.67 8.882 35.096 0.128 2.302-0.048 4.57-0.72 6.772-3.886 12.746-21.998 18.394-29.238 28.754-7.504 10.738-6.716 29.62-16.96 37.34-8.16 6.146-21.062 3.726-32.158 4.504l-11.054 0.18c-11.026 5.336-20.876 18.95-33.014 19.168-11.81 0.212-22.178-13.152-33.886-18.076l-14.934 0.244c-10.224 0.146-21.068 1.86-28.326-3.212-10.74-7.504-10.548-26.482-18.268-36.728-7.796-10.348-26.058-15.412-30.294-27.656-0.796-2.304-1.034-4.72-0.904-7.212-0.612-10.658 7.034-22.998 7.608-34.028-0.604-11.060-9.526-23.67-8.882-35.096-0.128-2.302 0.048-4.57 0.72-6.772z" /> -<glyph unicode="" glyph-name="client-grid" d="M835.994 832.002h-350.48c-33.12 0-60-26.86-60-60v-242.66c0-33.14 26.88-60 60-60h350.48c33.14 0 60 26.86 60 60v242.66c0 33.14-26.86 60-60 60zM852.994 529.342c0-9.38-7.62-17-17-17h-350.48c-9.36 0-17 7.62-17 17v242.66c0 9.38 7.64 17 17 17h350.48c9.38 0 17-7.62 17-17v-242.66zM187.994 469.342h134.86c33.14 0 60 26.86 60 60v242.66c0 33.14-26.86 60-60 60h-134.86c-33.14 0-60-26.86-60-60v-242.66c0-33.14 26.86-60 60-60zM192.174 698.082c4.66 6.18 16.040 5.7 22.52 10.24 6.26 4.36 9.66 15.28 17.34 17.64 1.18 0.34 2.38 0.46 3.6 0.44 6.92 0.3 14.56-5.12 21.22-5.38 6.56 0.14 13.92 4.66 20.36 4.6 1.5 0.080 2.94-0.060 4.32-0.54 7.38-2.56 10.44-13.58 16.68-18.28 6.18-4.66 17.64-4.54 22.16-11.020 4.38-6.26 0.4-16.92 2.74-24.6 2.34-7.7 11.6-14.32 11.46-21.94-0.14-7.9-9.7-14.2-12.24-21.52-2.56-7.38 1.060-18.22-3.64-24.48-4.66-6.18-16.060-5.7-22.54-10.22-6.24-4.38-9.66-15.3-17.34-17.64-1.18-0.36-2.38-0.48-3.6-0.46-6.92-0.3-14.54 5.14-21.22 5.4-6.56-0.16-13.92-4.68-20.36-4.62-1.48-0.060-2.94 0.080-4.32 0.56-7.38 2.56-10.44 13.58-16.68 18.28-6.18 4.66-17.64 4.54-22.16 11.020-4.36 6.24-0.4 16.9-2.74 24.6-2.34 7.68-11.58 14.32-11.44 21.94 0.14 7.9 9.7 14.2 12.22 21.5 2.56 7.4-1.040 18.24 3.66 24.48zM835.994 426.662h-138.66c-33.14 0-60-26.86-60-60v-242.66c0-33.14 26.86-60 60-60h138.66c33.14 0 60 26.86 60 60v242.66c0 33.14-26.86 60-60 60zM829.934 197.922c-4.66-6.18-16.060-5.7-22.54-10.24-6.24-4.36-9.66-15.3-17.34-17.64-1.18-0.36-2.38-0.46-3.6-0.44-6.92-0.3-14.54 5.12-21.22 5.38-6.56-0.14-13.92-4.66-20.36-4.6-1.48-0.080-2.94 0.060-4.32 0.54-7.38 2.56-10.44 13.58-16.68 18.28-6.18 4.66-17.64 4.542-22.16 11.020-4.36 6.26-0.4 16.92-2.74 24.6s-11.58 14.32-11.46 21.94c0.16 7.9 9.72 14.2 12.24 21.52 2.56 7.38-1.040 18.22 3.66 24.46 4.66 6.18 16.040 5.72 22.52 10.24 6.26 4.36 9.66 15.3 17.34 17.64 1.18 0.36 2.38 0.48 3.6 0.44 6.92 0.32 14.56-5.12 21.22-5.38 6.56 0.16 13.92 4.66 20.36 4.6 1.5 0.080 2.94-0.060 4.32-0.54 7.38-2.56 10.44-13.58 16.68-18.28 6.18-4.66 17.64-4.54 22.16-11.020 4.38-6.24 0.4-16.9 2.74-24.6 2.34-7.68 11.6-14.32 11.46-21.94-0.14-7.9-9.72-14.2-12.24-21.5-2.56-7.4 1.060-18.24-3.64-24.48zM534.674 426.662h-346.68c-33.14 0-60-26.86-60-60v-242.66c0-33.14 26.86-60 60-60h346.68c33.12 0 60 26.86 60 60v242.66c0 33.14-26.88 60-60 60zM551.674 124.002c0-9.38-7.64-17-17-17h-259.706l-103.974 110.71v148.95c0 9.38 7.64 17 17 17h346.68c9.36 0 17-7.62 17-17v-242.66zM431.606 285.886c-4.528 6.478-15.976 6.364-22.156 11.022-6.242 4.704-9.298 15.72-16.686 18.276-1.382 0.478-2.83 0.624-4.324 0.548-6.43 0.062-13.796-4.456-20.35-4.606-6.672 0.262-14.306 5.692-21.228 5.386-1.218 0.026-2.42-0.090-3.592-0.448-7.688-2.344-11.096-13.27-17.348-17.638-6.478-4.528-17.87-4.052-22.526-10.232-4.704-6.244-1.092-17.090-3.648-24.476-2.53-7.314-12.096-13.608-12.238-21.51-0.138-7.624 9.108-14.252 11.454-21.942 2.344-7.69-1.63-18.348 2.738-24.6 4.528-6.478 15.976-6.364 22.158-11.020 6.242-4.704 9.298-15.72 16.684-18.276 1.382-0.478 2.83-0.624 4.324-0.548 6.43-0.062 13.796 4.456 20.35 4.606 6.672-0.262 14.306-5.692 21.228-5.386 1.218-0.026 2.42 0.092 3.592 0.448 7.688 2.344 11.096 13.27 17.348 17.638 6.478 4.528 17.87 4.052 22.526 10.232 4.704 6.244 1.092 17.090 3.648 24.476 2.53 7.314 12.096 13.606 12.238 21.508 0.136 7.624-9.11 14.252-11.454 21.942s1.63 18.348-2.738 24.6zM725.712 695.778c-4.528 6.478-15.976 6.364-22.158 11.020-6.242 4.704-9.298 15.72-16.684 18.276-1.382 0.478-2.83 0.624-4.324 0.548-6.43 0.062-13.796-4.456-20.35-4.606-6.672 0.26-14.304 5.692-21.228 5.386-1.22 0.026-2.42-0.090-3.592-0.448-7.688-2.344-11.096-13.27-17.348-17.638-6.478-4.528-17.87-4.052-22.526-10.234-4.704-6.242-1.092-17.088-3.648-24.476-2.53-7.314-12.096-13.606-12.238-21.51-0.138-7.624 9.11-14.252 11.454-21.942 2.344-7.688-1.63-18.348 2.738-24.598 4.528-6.478 15.976-6.364 22.156-11.022 6.242-4.704 9.298-15.72 16.684-18.276 1.382-0.478 2.83-0.624 4.324-0.548 6.43-0.062 13.796 4.456 20.35 4.606 6.672-0.26 14.306-5.692 21.228-5.386 1.218-0.026 2.42 0.090 3.59 0.448 7.688 2.344 11.096 13.27 17.348 17.638 6.48 4.528 17.87 4.052 22.526 10.234 4.704 6.242 1.092 17.088 3.648 24.476 2.53 7.314 12.096 13.608 12.238 21.51 0.138 7.624-9.11 14.252-11.454 21.942-2.344 7.688 1.63 18.348-2.738 24.6z" /> -<glyph unicode="" glyph-name="client-list" d="M240.016 480c82.176 0 146.272 27.488 175.856 75.392 18.704 30.304 21.152 65.776 6.608 94.832-2.656 5.344-5.12 10.528-7.504 15.536-19.824 41.584-38.352 72.4-81.568 88.816 11.616 17.664 18.432 38.752 18.432 61.424 0 61.744-50.176 112-111.824 112s-112-50.256-112-112c0-22.688 6.832-43.776 18.464-61.44-43.248-16.416-61.792-47.232-81.6-88.816-2.368-4.992-4.848-10.176-7.504-15.52-14.528-29.12-12.048-64.576 6.64-94.832 29.616-47.92 93.76-75.408 176-75.408zM192.016 816c0 26.464 21.536 48 48 48s47.824-21.536 47.824-48-21.456-48-47.824-48-48 21.536-48 48zM114.656 621.664s0 0.048 0.032 0.080c2.816 5.664 5.44 11.152 7.968 16.464 17.44 36.592 26.992 56.256 72.032 63.008l-17.040-51.104c-3.824-11.504-0.848-24.192 7.728-32.752l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l32 32c8.576 8.56 11.568 21.248 7.728 32.752l-17.024 51.088c44.88-6.768 54.432-26.432 71.856-62.992 2.528-5.312 5.152-10.8 8.016-16.56 4.576-9.152 3.152-21.36-3.792-32.624-17.424-28.208-62.8-45.024-121.408-45.024s-104.128 16.848-121.552 45.040c-6.976 11.264-8.384 23.472-3.808 32.624zM432.016 832h447.824c17.648 0 32-14.352 32-32.032l0.176-191.968c0-17.648-14.352-32-32-32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c52.944 0 96 43.056 96 96.032l-0.176 191.968c0 52.944-43.056 96-96 96h-447.824c-17.664 0-32-14.336-32-32s14.336-32 32-32zM496.016 736h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM847.84 608c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128zM751.84 736h64v-64h-64v64zM496.016 608h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM414.992 153.744c-19.824 41.584-38.352 72.4-81.568 88.816 11.616 17.664 18.432 38.752 18.432 61.424 0 61.744-50.176 112-111.824 112s-112-50.256-112-112c0-22.688 6.832-43.776 18.464-61.44-43.248-16.416-61.792-47.232-81.6-88.816-2.368-4.992-4.848-10.176-7.504-15.52-14.528-29.12-12.048-64.576 6.64-94.832 29.616-47.92 93.76-75.408 176-75.408s146.272 27.488 175.856 75.392c18.704 30.304 21.152 65.776 6.608 94.832-2.656 5.344-5.12 10.528-7.504 15.536zM192.016 304c0 26.464 21.536 48 48 48s47.824-21.536 47.824-48-21.456-48-47.824-48-48 21.536-48 48zM361.424 77.024c-17.424-28.208-62.8-45.024-121.408-45.024s-104.128 16.848-121.552 45.040c-6.976 11.264-8.384 23.472-3.808 32.624 0 0.032 0 0.048 0.032 0.080 2.816 5.664 5.44 11.152 7.968 16.464 17.44 36.592 26.992 56.256 72.032 63.008l-17.040-51.104c-3.824-11.504-0.848-24.192 7.728-32.752l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l32 32c8.576 8.56 11.568 21.248 7.728 32.752l-17.024 51.088c44.88-6.768 54.432-26.432 71.856-62.992 2.528-5.312 5.152-10.8 8.016-16.56 4.576-9.152 3.152-21.36-3.792-32.624zM879.84 384h-447.824c-17.664 0-32-14.336-32-32s14.336-32 32-32h447.824c17.648 0 32-14.352 32-32.032l0.176-191.968c0-17.648-14.352-32-32-32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c52.944 0 96 43.056 96 96.032l-0.176 191.968c0 52.944-43.056 96-96 96zM496.016 224h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM847.84 96c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128zM751.84 224h64v-64h-64v64zM496.016 96h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="clipboard" d="M765.696 767.317h-61.355v63.659c0 23.765-19.243 43.008-43.008 43.008h-298.667c-23.765 0-43.008-19.243-43.008-43.008v-63.659h-63.317c-47.403 0-86.016-38.571-86.016-86.016v-575.317c0-47.403 38.571-86.016 86.016-86.016h509.355c47.403 0 86.016 38.571 86.016 86.016v575.36c0 47.403-38.571 86.016-86.016 86.016zM405.675 788.011h212.651v-20.651h-212.651v20.651zM765.696 105.984h-509.355v575.36h69.205c2.347-4.053 5.376-7.723 8.96-10.837 9.429-8.149 21.931-11.861 34.261-10.069l142.251 20.48 144.256-20.48c2.005-0.299 4.053-0.427 6.059-0.427 10.283 0 20.309 3.712 28.203 10.539 3.584 3.115 6.613 6.784 8.96 10.795h67.243v-575.317s0 0 0 0z" /> -<glyph unicode="" glyph-name="clipboard-check" d="M765.696 767.317h-61.355v63.659c0 23.765-19.243 43.008-43.008 43.008h-298.667c-23.765 0-43.008-19.243-43.008-43.008v-63.659h-63.317c-47.403 0-86.016-38.571-86.016-86.016v-575.317c0-47.403 38.571-86.016 86.016-86.016h509.355c47.403 0 86.016 38.571 86.016 86.016v575.36c0 47.403-38.571 86.016-86.016 86.016zM405.675 788.011h212.651v-20.651h-212.651v20.651zM765.696 105.984h-509.355v575.36h69.205c2.347-4.053 5.376-7.723 8.96-10.837 9.429-8.149 21.931-11.861 34.261-10.069l142.251 20.48 144.256-20.48c2.005-0.299 4.053-0.427 6.059-0.427 10.283 0 20.309 3.712 28.203 10.539 3.584 3.115 6.613 6.784 8.96 10.795h67.243v-575.317s0 0 0 0zM610.219 542.037l-147.371-141.483-55.552 55.552c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l85.333-85.333c8.405-8.405 19.413-12.587 30.421-12.587 10.709 0 21.461 3.968 29.781 11.989l177.792 170.667c17.152 16.427 17.707 43.648 1.237 60.8-16.427 17.152-43.648 17.707-60.8 1.237z" /> -<glyph unicode="" glyph-name="clipboard-list" d="M765.696 767.317h-61.355v63.659c0 23.765-19.243 43.008-43.008 43.008h-298.667c-23.765 0-43.008-19.243-43.008-43.008v-63.659h-63.317c-47.403 0-86.016-38.571-86.016-86.016v-575.317c0-47.403 38.571-86.016 86.016-86.016h509.355c47.403 0 86.016 38.571 86.016 86.016v575.36c0 47.403-38.571 86.016-86.016 86.016zM405.675 788.011h212.651v-20.651h-212.651v20.651zM765.696 105.984h-509.355v575.36h69.205c2.347-4.053 5.376-7.723 8.96-10.837 9.429-8.149 21.931-11.861 34.261-10.069l142.251 20.48 144.256-20.48c2.005-0.299 4.053-0.427 6.059-0.427 10.283 0 20.309 3.712 28.203 10.539 3.584 3.115 6.613 6.784 8.96 10.795h67.243v-575.317s0 0 0 0zM682.667 596.651h-213.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h213.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM341.333 596.352c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667 42.667 19.115 42.667 42.667-19.115 42.667-42.667 42.667zM682.667 425.984h-213.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h213.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM341.333 425.685c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667 42.667 19.115 42.667 42.667-19.115 42.667-42.667 42.667zM682.667 255.317h-213.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h213.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM341.333 255.019c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667 42.667 19.115 42.667 42.667-19.115 42.667-42.667 42.667z" /> -<glyph unicode="" glyph-name="clipping-mask" d="M604.692 831.166c-69.68 0-137.12-24.98-189.88-70.32-47.38-40.7-80.38-95.46-94.22-155.76h-65.6c-8.9 25.54-33.22 43.9-61.76 43.9-36.060 0-65.4-29.34-65.4-65.4 0-28.52 18.36-52.84 43.9-61.76v-331.84c-25.54-8.92-43.9-33.24-43.9-61.76 0-36.060 29.34-65.4 65.4-65.4 28.54 0 52.86 18.36 61.76 43.9h331.84c8.9-25.54 33.22-43.9 61.76-43.9 36.060 0 65.38 29.34 65.38 65.4 0 28.52-18.36 52.84-43.88 61.76v65.58c60.38 13.9 115.24 46.98 155.94 94.46 45.22 52.74 70.14 120.1 70.14 189.66 0 160.72-130.76 291.48-291.48 291.48zM377.752 438.546l122.98 122.98h34.682l-145.94-145.94c-4.3 7.42-8.22 15.080-11.72 22.96zM626.192 583.546v0.040c0 3.8 0.96 7.4 2.64 10.54v0.020c2.1 3.88 5.3 7.1 9.18 9.18h0.020c0.84 0.46 1.7 0.86 2.6 1.2 0.54 0.2 1.1 0.4 1.66 0.54l6.26 0.020h-6.22c1.98 0.58 4.080 0.9 6.26 0.9s4.28-0.32 6.26-0.9c7.34-2.14 13.14-7.96 15.24-15.32 0.58-1.96 0.88-4.040 0.88-6.18s-0.3-4.22-0.88-6.2c-2.68-9.34-11.3-16.2-21.5-16.2-12.34 0-22.38 10.020-22.4 22.36zM362.492 484.106c-1.82 7.86-3.24 15.88-4.28 24.020 0 0.004 0 0.006 0 0.010l53.39 53.39h28.32l-77.426-77.426s0 0.004 0 0.006zM431.272 361.886c-5.86 5.72-11.44 11.72-16.72 17.98l175.2 175.18c3.66-7.52 8.72-14.24 14.86-19.82 0 0 0 0 0 0l-173.34-173.34s0 0 0 0zM627.092 496.892v-34.686l-140.88-140.88c-7.4 4.020-14.6 8.42-21.52 13.16 0 0 0 0-0.002 0l162.404 162.404zM627.092 401.394v-34.688l-70.76-70.762c-9.4 1.84-18.58 4.22-27.56 7.12 0 0-0.004 0-0.006 0l98.326 98.326zM627.092 305.896v-13.69c-4.82-0.42-9.68-0.72-14.542-0.86h-0.008l14.55 14.55zM414.032 319.366c0.026-0.022 0.052-0.042 0.078-0.064 0.678-0.948 1.42-1.864 2.272-2.716 1.806-1.806 3.864-3.2 6.050-4.23 0.020-0.016 0.040-0.034 0.060-0.050 0-0.020 0.020-0.020 0.040-0.020 49.94-40.080 113.3-64.080 182.16-64.080 7.48 0 14.96 0.28 22.4 0.86v-59.080c-18.8-6.56-33.72-21.46-40.26-40.26h-331.84c-6.54 18.8-21.46 33.7-40.26 40.26v331.84c18.8 6.56 33.72 21.46 40.26 40.26h59.060c-0.56-7.44-0.84-14.92-0.84-22.4 0-87.9 39.1-166.82 100.82-220.32zM670.092 122.046c-2.1-7.36-7.9-13.18-15.24-15.32h-12.52c-9.32 2.7-16.14 11.32-16.14 21.5 0 12.36 10.040 22.4 22.4 22.4 10.2 0 18.82-6.86 21.5-16.2v-12.38zM199.492 106.726h-12.52c-7.32 2.12-13.1 7.9-15.24 15.22v12.58c2.72 9.3 11.32 16.1 21.5 16.1 12.36 0 22.4-10.040 22.4-22.4 0-10.18-6.82-18.8-16.14-21.5zM171.732 589.866c2.14 7.32 7.92 13.1 15.24 15.22h12.52c9.32-2.7 16.14-11.32 16.14-21.5 0-12.36-10.040-22.4-22.4-22.4-10.18 0-18.78 6.8-21.5 16.1v12.58zM670.092 583.586c0 0.18 0 0.36-0.020 0.54 0.020-0.36 0.020-0.72 0.020-1.1v0.56z" /> -<glyph unicode="" glyph-name="clock" d="M736.736 325.76l-190.4 141.664-2.336 284.144c-0.144 17.584-14.432 31.728-32 31.728h-0.272c-17.664-0.144-31.872-14.592-31.728-32.272l2.464-300.064c0-0.704 0.176-1.376 0.224-2.064 0.080-1.104 0.16-2.208 0.352-3.296 0.192-1.040 0.464-2.032 0.752-3.040 0.272-0.976 0.544-1.952 0.912-2.896 0.384-0.992 0.848-1.92 1.328-2.864 0.464-0.912 0.912-1.808 1.472-2.672 0.56-0.896 1.2-1.712 1.856-2.544 0.624-0.8 1.232-1.584 1.936-2.336 0.784-0.832 1.664-1.568 2.528-2.32 0.528-0.448 0.96-0.976 1.52-1.392l203.168-151.168c5.744-4.272 12.432-6.336 19.072-6.336 9.776 0 19.424 4.464 25.696 12.896 10.544 14.176 7.616 34.224-6.576 44.768zM512 925.616c-265.104 0-480-214.896-480-480s214.896-480 480-480 480 214.896 480 480-214.896 480-480 480zM512 29.616c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> -<glyph unicode="" glyph-name="clock-desk" d="M882.336 160h-99.712c81.2 73.76 132.256 180.144 132.256 298.224 0 101.056-37.488 193.456-99.168 264.256l34.768 34.768c2.352-2.72 4.8-5.408 7.056-8.176 6.336-7.728 15.536-11.744 24.8-11.744 7.12 0 14.288 2.352 20.24 7.216 13.68 11.168 15.712 31.344 4.528 45.024-10.336 12.64-21.552 24.944-32.992 36.208-0.048 0.048-0.096 0.096-0.144 0.144 0 0 0 0.016-0.032 0.032 0 0-0.032 0.016-0.048 0.032-11.552 11.712-23.76 22.864-36.336 33.136-13.696 11.184-33.824 9.136-45.024-4.528-11.184-13.68-9.152-33.856 4.528-45.024 2.752-2.256 5.456-4.704 8.176-7.056l-35.184-35.184c-62.272 52.080-140.448 85.632-226.064 92.4v36.272c0 17.664-14.336 32-32 32s-32-14.336-32-32v-36.272c-85.616-6.768-163.792-40.336-226.064-92.4l-35.184 35.184c2.72 2.352 5.408 4.8 8.176 7.056 13.68 11.168 15.712 31.344 4.528 45.024-11.184 13.664-31.328 15.712-45.024 4.528-12.64-10.336-24.944-21.552-36.208-32.992-0.048-0.048-0.096-0.096-0.144-0.144 0 0-0.016 0-0.032-0.032 0 0-0.016-0.032-0.032-0.048-11.712-11.552-22.864-23.76-33.136-36.336-11.184-13.68-9.152-33.856 4.528-45.024 5.952-4.864 13.104-7.216 20.24-7.216 9.264 0 18.464 4.016 24.8 11.744 2.256 2.752 4.704 5.456 7.056 8.176l34.768-34.768c-61.68-70.8-99.168-163.2-99.168-264.256 0-118.080 51.056-224.464 132.256-298.224h-99.712c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h740.688c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM173.104 458.224c0 186.864 152.032 338.896 338.896 338.896s338.896-152.032 338.896-338.896-152.032-338.912-338.896-338.912-338.896 152.032-338.896 338.912zM850.336 32h-676.672v64h162.080c53.28-26.032 113.088-40.688 176.256-40.688s122.992 14.656 176.256 40.688h162.080v-64zM326.192 308.832c-11.952-13.008-11.072-33.264 1.936-45.216 17.856-16.384 37.792-30.336 59.232-41.408 4.704-2.416 9.712-3.568 14.656-3.568 11.6 0 22.784 6.32 28.464 17.312 8.112 15.696 1.952 35.008-13.744 43.12-16.4 8.464-31.664 19.12-45.328 31.68-12.992 11.952-33.248 11.056-45.216-1.936zM448.768 663.568c2.784 0 5.616 0.368 8.416 1.136 7.488 2.048 15.12 3.568 22.816 4.752v-221.456c0-8.48 3.376-16.624 9.376-22.624l64-64c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-54.624 54.624v208.032c99.504-15.472 176-101.504 176-205.28 0-114.688-93.312-208-208-208-17.664 0-32-14.336-32-32s14.336-32 32-32c149.984 0 272 122.016 272 272s-122.016 272-272 272c-24.272 0-48.352-3.216-71.632-9.552-17.040-4.64-27.104-22.24-22.464-39.28 3.872-14.24 16.784-23.616 30.864-23.616zM291.664 363.568c16.912 5.152 26.432 23.024 21.28 39.936-5.36 17.6-8.336 35.92-8.864 54.512-0.48 17.664-14.864 31.616-32.88 31.088-17.664-0.48-31.6-15.2-31.088-32.88 0.672-24.32 4.576-48.336 11.616-71.392 4.208-13.792 16.896-22.688 30.592-22.688 3.088 0 6.24 0.448 9.344 1.408zM286.368 552c4.912-2.72 10.24-4 15.472-4 11.264 0 22.192 5.952 28.032 16.496 8.976 16.208 20.064 31.136 32.976 44.416 12.336 12.672 12.048 32.944-0.624 45.248s-32.96 12.048-45.248-0.624c-16.88-17.36-31.376-36.88-43.088-58.048-8.56-15.456-2.976-34.944 12.496-43.504z" /> -<glyph unicode="" glyph-name="close" d="M813.696 748.971c-83.328 83.328-192.512 124.971-301.696 124.971s-218.368-41.643-301.696-124.971c-166.613-166.613-166.613-436.779 0-603.392 83.328-83.328 192.512-124.971 301.696-124.971s218.368 41.643 301.696 124.971c166.613 166.613 166.613 436.779 0 603.392zM752.896 206.379c-64.341-64.341-149.888-99.797-240.896-99.797s-176.555 35.456-240.896 99.797c-64.341 64.341-99.797 149.888-99.797 240.896s35.456 176.555 99.797 240.896c64.341 64.341 149.888 99.797 240.896 99.797s176.555-35.456 240.896-99.797c64.341-64.341 99.797-149.888 99.797-240.896s-35.456-176.555-99.797-240.896zM663.083 598.101c-16.811 16.811-44.032 16.811-60.8 0l-90.283-90.283-90.283 90.283c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l90.283-90.283-90.283-90.283c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l90.283 90.283 90.283-90.283c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-90.283 90.283 90.283 90.283c16.811 16.811 16.811 44.032 0 60.8z" /> -<glyph unicode="" glyph-name="close-small" d="M835.115 236.629c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM835.115 108.629c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992zM878.123 342.997c0 23.765-19.243 43.008-43.008 43.008-141.355 0-256.341-114.987-256.341-256.341 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 93.909 76.416 170.325 170.325 170.325 23.765 0 43.008 19.243 43.008 43.008zM824.96 438.144c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008c-211.925 0-384.341-172.416-384.341-384.341 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 164.48 133.845 298.325 298.325 298.325zM299.008 767.019c0 59.008-48 107.008-107.008 107.008s-107.008-48-107.008-107.008 48-107.008 107.008-107.008 107.008 48 107.008 107.008zM171.008 767.019c0 11.563 9.429 20.992 20.992 20.992s20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992-20.992 9.429-20.992 20.992zM148.992 553.643c0-23.765 19.243-43.008 43.008-43.008 141.355 0 256.341 114.987 256.341 256.341 0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008c0-93.909-76.416-170.325-170.325-170.325-23.765 0-43.008-19.243-43.008-43.008zM202.155 458.496c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008c211.925 0 384.341 172.416 384.341 384.341 0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008c0-164.48-133.845-298.325-298.325-298.325zM661.333 702.677h148.992v-84.992c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v128c0 23.765-19.243 43.008-43.008 43.008h-192c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM341.035 191.317h-127.659v84.992c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-128c0-23.765 19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="cloud-check" d="M834.848 515.872c22.56 53.648 13.12 118.224-28.8 160.144-27.104 27.12-63.328 41.904-102.176 41.104-26.608-0.4-52.128-7.936-74.32-21.616-50.352 51.664-118.8 80.72-192.112 80.72-119.632 0-228.176-85.776-260.144-202.464-86.48-30.352-145.328-112.176-145.328-205.408 0-120.064 97.68-217.744 217.744-217.744h558.672c101.216 0 183.584 82.352 183.584 183.584 0 92.24-68.4 168.816-157.136 181.664zM808.4 214.624h-558.672c-84.784 0-153.744 68.976-153.744 153.744 0 70.576 47.712 131.888 116.048 149.088 12.016 3.024 21.2 12.704 23.6 24.864 19.008 96.864 105.776 169.92 201.824 169.92 64.128 0 123.36-29.2 162.496-80.128 5.632-7.312 14.112-11.84 23.296-12.432s18.192 2.8 24.704 9.312c15.232 15.232 35.456 23.808 56.928 24.144 21.008 0.64 41.152-7.616 55.92-22.368 29.952-29.968 29.008-83.584-1.696-115.664-9.568-8.272-13.92-21.2-10.736-33.584 7.152-27.744 37.712-27.744 60.048-27.744 65.936 0 119.584-53.648 119.584-119.568s-53.648-119.584-119.584-119.584zM648.096 570.096l-186.176-178.368-86.576 79.28c-13.040 11.936-33.264 11.024-45.2-2s-11.040-33.28 1.984-45.216l108.688-99.52c6.128-5.6 13.856-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l207.808 199.104c12.768 12.224 13.184 32.48 0.976 45.248-12.224 12.752-32.464 13.168-45.248 0.976z" /> -<glyph unicode="" glyph-name="cloud-download" d="M834.656 500.48c7.312 17.44 11.456 36.368 11.936 55.6 0.992 40.272-13.392 77.376-40.528 104.512-47.44 47.44-120.848 53.808-176.48 19.504-50.352 51.664-118.784 80.736-192.096 80.736-119.616 0-228.16-85.776-260.16-202.464-86.48-30.352-145.328-112.176-145.328-205.408 0-120.064 97.68-217.744 217.744-217.744h558.672c101.232 0 183.584 82.352 183.584 183.584 0 92.32-68.496 168.944-157.344 181.712zM808.416 199.184h-558.672c-84.768 0-153.744 68.976-153.744 153.744 0 70.576 47.712 131.888 116.032 149.088 12.016 3.024 21.2 12.704 23.584 24.864 19.024 96.88 105.808 169.936 201.856 169.936 64.128 0 123.344-29.2 162.48-80.128 5.616-7.312 14.096-11.84 23.296-12.432 9.264-0.704 18.192 2.784 24.704 9.296 31.6 31.616 82.208 32.384 112.848 1.776 14.608-14.624 22.352-35.104 21.792-57.664-0.544-21.872-9.088-42.912-23.52-58-9.552-8.256-13.904-21.2-10.72-33.568 7.136-27.744 37.712-27.744 60.048-27.744 65.936 0 119.584-53.648 119.584-119.584s-53.648-119.584-119.584-119.584zM577.872 424.528l-33.872-33.856v158.736c0 17.664-14.336 32-32 32s-32-14.336-32-32v-158.736l-33.872 33.856c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l88.48-88.464c1.488-1.488 3.136-2.832 4.896-4 0.784-0.528 1.648-0.896 2.48-1.344 1.008-0.544 1.968-1.152 3.040-1.6 1.056-0.432 2.16-0.688 3.248-1.008 0.912-0.272 1.792-0.624 2.736-0.816 2.064-0.416 4.16-0.624 6.272-0.624s4.192 0.224 6.272 0.624c0.944 0.192 1.824 0.544 2.736 0.816 1.088 0.32 2.192 0.576 3.248 1.008 1.072 0.448 2.032 1.040 3.040 1.6 0.832 0.448 1.68 0.816 2.48 1.344 1.76 1.184 3.408 2.512 4.896 4l88.48 88.464c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0z" /> -<glyph unicode="" glyph-name="cloud-upload" d="M834.656 500.48c7.312 17.44 11.456 36.368 11.936 55.6 0.992 40.272-13.392 77.376-40.528 104.512-47.44 47.44-120.832 53.808-176.48 19.504-50.352 51.664-118.784 80.736-192.096 80.736-119.616 0-228.16-85.776-260.16-202.464-86.48-30.352-145.328-112.176-145.328-205.408 0-120.064 97.68-217.744 217.744-217.744h558.672c101.232 0 183.584 82.352 183.584 183.584 0 92.32-68.496 168.944-157.344 181.712zM808.416 199.184h-558.672c-84.768 0-153.744 68.976-153.744 153.744 0 70.576 47.712 131.888 116.032 149.088 12.016 3.024 21.2 12.704 23.584 24.864 19.024 96.88 105.808 169.936 201.856 169.936 64.128 0 123.344-29.2 162.48-80.128 5.616-7.312 14.096-11.84 23.296-12.432 9.312-0.704 18.208 2.784 24.704 9.296 31.6 31.616 82.208 32.384 112.848 1.776 14.608-14.624 22.352-35.104 21.792-57.664-0.544-21.872-9.088-42.912-23.52-58-9.552-8.256-13.904-21.2-10.72-33.568 7.136-27.744 37.712-27.744 60.048-27.744 65.936 0 119.584-53.648 119.584-119.584s-53.648-119.584-119.584-119.584zM534.64 572c-1.488 1.488-3.136 2.832-4.896 4-0.8 0.544-1.68 0.912-2.528 1.376-0.992 0.544-1.936 1.136-2.976 1.568-1.072 0.448-2.192 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.144 0.816-8.4 0.816-12.544 0-0.928-0.192-1.792-0.528-2.688-0.8-1.104-0.32-2.208-0.576-3.28-1.024-1.056-0.432-2-1.040-2.992-1.584-0.832-0.464-1.712-0.832-2.512-1.36-1.76-1.184-3.408-2.512-4.896-4l-88.48-88.464c-12.496-12.496-12.496-32.752 0-45.248 12.48-12.496 32.768-12.496 45.248 0l33.872 33.856v-158.736c0-17.664 14.336-32 32-32s32 14.336 32 32v158.736l33.872-33.856c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-88.48 88.464z" /> -<glyph unicode="" glyph-name="code" d="M896 656h-192v64c0 52.944-43.056 96-96 96h-480c-52.944 0-96-43.056-96-96v-384c0-52.944 43.056-96 96-96h192v-64c0-52.944 43.056-96 96-96h480c52.944 0 96 43.056 96 96v384c0 52.944-43.056 96-96 96zM928 560v-32h-544v32c0 17.648 14.352 32 32 32h480c17.648 0 32-14.352 32-32zM96 336v384c0 17.936 14.048 32 32 32h64v-448h-64c-17.952 0-32 14.064-32 32zM256 304v448h352c17.952 0 32-14.064 32-32v-64h-224c-52.944 0-96-43.056-96-96v-256h-64zM896 144h-480c-17.648 0-32 14.352-32 32v288h544v-288c0-17.648-14.352-32-32-32zM566.624 390.624c-12.48 12.496-32.768 12.496-45.248 0l-64-64c-12.496-12.496-12.496-32.752 0-45.248l64-64c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-41.36 41.376 41.36 41.376c12.496 12.496 12.496 32.752 0 45.248zM790.624 390.624c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l41.36-41.376-41.36-41.376c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248l-64 64zM679.76 399.040c-17.12 4.32-34.512-6.144-38.8-23.28l-32-128c-4.288-17.152 6.144-34.528 23.296-38.816 2.608-0.656 5.216-0.96 7.776-0.96 14.336 0 27.376 9.696 31.024 24.24l32 128c4.288 17.152-6.144 34.528-23.296 38.816z" /> -<glyph unicode="" glyph-name="code-2" d="M0 960v-1024.981h1024.981v1024.981h-1024.981zM1023.019-63.019h-1021.013v1021.013h1021.013v-1021.013zM332.245 224.597c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-161.579 161.579 161.579 161.579c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-192-192c-16.811-16.811-16.811-44.032 0-60.8l192-192zM630.912 224.597c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l192 192c16.811 16.811 16.811 44.032 0 60.8l-192 192c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l161.579-161.579-161.579-161.579c-16.811-16.811-16.811-44.032 0-60.8z" /> -<glyph unicode="" glyph-name="coin" d="M991.744 557.024s0 0.048 0 0.080v193.936c0.176 1.328 0.256 2.688 0.256 4.064 0 118.272-313.984 149.52-480 149.52s-477.168-31.024-479.872-148.016c0-0.416-0.128-0.816-0.128-1.248 0-0.048 0-0.080 0-0.128s0-0.080 0-0.128c0-1.344 0.080-2.688 0.256-4.016v-193.728s0-0.048 0-0.080c0-0.032 0-0.064 0-0.096v-197.856s0-0.048 0-0.080c0-0.032 0-0.064 0-0.096v-218.352c0-118.208 313.808-149.44 479.744-149.44s479.744 31.232 479.744 149.44v218.080s0 0.064 0 0.096c0 0.032 0 0.048 0 0.080v197.872s0 0.064 0 0.096zM927.744 359.6c-9.36-27.92-163.968-81.936-415.744-81.936s-406.992 54.384-415.744 81.584v119.888c100.56-51.68 296.4-67.44 415.744-67.44s315.168 15.712 415.744 67.312v-119.408zM927.744 557.648c-9.36-27.92-163.968-81.952-415.744-81.952s-406.976 54.384-415.744 81.568v119.776c100.688-51.616 296.416-67.344 415.744-67.344 109.024 0 312.208 19.28 415.744 71.344v-123.392zM512 840.624c262.992 0 408.032-58.080 415.712-84.304-19.6-33.104-210.144-82.624-415.712-82.624-251.248 0-405.68 53.904-415.744 81.248v0.080c0 0.4 0 0.784-0.016 1.184 7.36 26.192 152.464 84.4 415.76 84.4zM512 55.376c-266.928 0-412.4 59.92-415.744 85.44v140.272c100.56-51.68 296.4-67.424 415.744-67.424s315.168 15.712 415.744 67.312v-140.096c-3.328-25.568-148.816-85.488-415.744-85.488z" /> -<glyph unicode="" glyph-name="coin-dollar" d="M137.76 448c0 10.496 0.544 20.864 1.408 31.152-27.168 39.44-43.152 87.12-43.152 138.528 0 135.024 109.856 244.88 244.88 244.88 51.36 0 99.024-15.968 138.432-43.088 10.336 0.864 20.768 1.408 31.328 1.408 23.328 0 46.112-2.256 68.272-6.368-56.656 68.432-142.24 112.048-238.016 112.048-170.624 0-308.912-138.304-308.912-308.88 0-95.84 43.664-181.472 112.16-238.128-4.144 22.208-6.4 45.072-6.4 68.448zM310.24 278.32c0 9.376 0.464 18.64 1.152 27.84-28.608 40.080-45.632 88.96-45.632 141.84 0 135.024 109.856 244.88 244.88 244.88 51.472 0 99.216-16.048 138.688-43.28 11.136 1.008 22.4 1.6 33.792 1.6 22.176 0 43.888-2.064 65.008-5.792-56.656 68.080-142 111.472-237.488 111.472-170.592 0-308.88-138.288-308.88-308.88 0-97.264 45.056-183.904 115.328-240.528-4.432 22.96-6.832 46.624-6.832 70.848zM683.12 523.2c135.024 0 244.88-109.856 244.88-244.88s-109.856-244.88-244.88-244.88-244.88 109.856-244.88 244.88 109.856 244.88 244.88 244.88zM683.12 587.2c-170.592 0-308.88-138.288-308.88-308.88s138.288-308.88 308.88-308.88 308.88 138.288 308.88 308.88-138.288 308.88-308.88 308.88v0zM777.792 214.848c0 57.36-45.888 79.104-76.256 93.488-29.408 13.936-35.76 19.072-35.76 28.992 0 3.312 0 11.040 12.256 16.128 14.112 5.84 32.080 2.736 38.768-3.92 12.48-12.496 32.768-12.496 45.248 0 12.496 12.496 12.496 32.752 0 45.248-10.848 10.848-25.328 18.24-41.12 22.256v16.224c0 17.664-14.336 32-32 32s-32-14.336-32-32v-19.552c-1.12-0.416-2.288-0.656-3.376-1.12-32.4-13.424-51.76-41.552-51.76-75.248 0-52.544 43.552-73.168 72.368-86.832 30.72-14.544 39.664-20.992 39.664-35.648 0-8.752-14.832-18.496-24.88-18.496-16.704 0-40.624 11.344-46 16.016-12.496 12.336-32.64 12.304-45.104-0.128-12.512-12.48-12.528-32.752-0.032-45.248 11.344-11.36 34.752-23.472 59.136-29.92v-17.424c0-17.664 14.336-32 32-32s32 14.336 32 32v18.912c30.752 11.888 56.88 39.968 56.88 76.288z" /> -<glyph unicode="" glyph-name="coin-group" d="M992 304c0 52.944-43.056 96-96 96h-101.6c3.568 10.032 5.6 20.768 5.6 32v32c0 11.232-2.032 21.968-5.6 32h5.6c52.944 0 96 43.056 96 96v32c0 52.944-43.056 96-96 96h-5.6c3.568 10.032 5.6 20.768 5.6 32v32c0 52.944-43.056 96-96 96h-288c-52.944 0-96-43.056-96-96v-32c0-52.944 43.056-96 96-96h5.6c-3.568-10.032-5.6-20.768-5.6-32v-32c0-11.232 2.032-21.968 5.6-32h-9.136c-40.416 39.52-95.616 64-156.464 64-123.52 0-224-100.48-224-224 0-76.224 38.336-143.568 96.656-184.048-19.968-17.6-32.656-43.296-32.656-71.952v-32c0-52.944 43.056-96 96-96h288c24.608 0 46.992 9.376 64 24.64 17.008-15.264 39.392-24.64 64-24.64h288c52.944 0 96 43.056 96 96v32c0 24.608-9.376 46.992-24.656 64 15.264 17.008 24.656 39.392 24.656 64v32zM928 304v-32c0-17.648-14.352-32-32-32h-288c-17.648 0-32 14.352-32 32v32c0 17.648 14.352 32 32 32h288c17.648 0 32-14.352 32-32zM470.56 336h47.040c-3.568-10.032-5.6-20.768-5.6-32v-32c0-11.232 2.032-21.968 5.6-32h-105.136c26.832 26.24 47.072 59.12 58.096 96zM736 464v-32c0-17.936-14.048-32-32-32h-224c0 34.384-8.016 66.848-21.92 96h245.92c17.952 0 32-14.064 32-32zM384 752v32c0 17.648 14.352 32 32 32h288c17.648 0 32-14.352 32-32v-32c0-17.648-14.352-32-32-32h-288c-17.648 0-32 14.352-32 32zM480 592v32c0 17.648 14.352 32 32 32h288c17.648 0 32-14.352 32-32v-32c0-17.648-14.352-32-32-32h-288c-17.648 0-32 14.352-32 32zM96 400c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160-160 71.776-160 160zM480 80h-288c-17.648 0-32 14.352-32 32v32c0 17.648 14.352 32 32 32h288c17.648 0 32-14.352 32-32v-32c0-17.648-14.352-32-32-32zM928 112c0-17.648-14.352-32-32-32h-288c-17.648 0-32 14.352-32 32v32c0 17.648 14.352 32 32 32h288c17.648 0 32-14.352 32-32v-32zM256 464c35.296 0 64-28.704 64-64 0-17.664 14.336-32 32-32s32 14.336 32 32c0 70.576-57.424 128-128 128-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="coins" d="M957.632 674.016s0 0.048 0 0.080v135.84c0.112 1.12 0.176 2.256 0.176 3.392 0 111.44-311.584 114.656-347.104 114.656s-344.24-3.232-346.992-113.216c-0.016-0.432-0.128-0.832-0.128-1.264 0-0.032 0-0.064 0-0.080 0-0.032 0-0.064 0-0.096 0-1.152 0.064-2.304 0.192-3.44v-135.632s0-0.048 0-0.080c0-0.032 0-0.048 0-0.080v-54.608c-93.616-12.384-195.872-40.304-197.44-103.392-0.016-0.432-0.128-0.832-0.128-1.264 0-0.032 0-0.064 0-0.080 0-0.032 0-0.064 0-0.096 0-1.136 0.064-2.256 0.176-3.36v-135.712s0-0.048 0-0.080c0-0.032 0-0.048 0-0.080v-139.136s0-0.048 0-0.080c0-0.032 0-0.048 0-0.080v-153.536c0-111.392 311.424-114.608 346.928-114.608s346.928 3.216 346.928 114.608v153.376s0 0.048 0 0.080c0 0.032 0 0.048 0 0.080v40.384c94.32 12.448 197.392 40.656 197.392 104.752v153.376s0 0.048 0 0.080c0 0.032 0 0.048 0 0.080v139.136s0 0.048 0 0.080zM610.688 864c154.368 0 254.912-29.2 279.136-49.040-30.144-21.184-150.368-49.376-279.136-49.376-154.688 0-256.544 29.168-280.048 48.464 22.128 19.84 123.232 49.952 280.048 49.952zM413.312 565.328c154.368 0 254.928-29.2 279.136-49.040-30.144-21.184-150.368-49.392-279.136-49.392-154.672 0-256.528 29.152-280.048 48.48 22.128 19.84 123.232 49.952 280.048 49.952zM696.24 85.024c-14.32-19.616-117.84-53.024-282.928-53.024s-268.624 33.424-282.928 53.024v81.632c97.408-41.648 272.736-42.32 282.928-42.32s185.52 0.672 282.928 42.256v-81.568zM696.24 239.456c-16.336-19.056-120.576-51.104-282.928-51.104s-266.592 32.144-282.928 51.28v66.336c97.408-41.648 272.736-42.32 282.928-42.32s185.52 0.672 282.928 42.256v-66.432zM696.24 378.752c-16.336-19.056-120.576-51.104-282.928-51.104s-266.592 32.144-282.928 51.28v66.256c97.488-41.616 272.736-42.272 282.928-42.272 2.512 0 183.312 2.544 282.928 44.544v-68.704zM893.632 383.68c-9.312-12.736-56.4-31.248-133.392-42.672v34.272s0 0.048 0 0.080c0 0.032 0 0.048 0 0.080v57.744c46.768 6.176 95.84 16.048 133.392 32.080v-81.568zM893.632 538.128c-10.528-12.288-57.76-29.92-133.392-40.944v14.016c0.128 1.136 0.192 2.304 0.192 3.472 0 22.016-12.272 39.744-32.064 54.112 55.36 5.6 118.992 16.016 165.264 35.76v-66.432zM893.632 677.424c-16.336-19.056-120.576-51.12-282.928-51.12s-266.592 32.16-282.928 51.28v66.256c97.488-41.6 272.736-42.272 282.928-42.272 2.512 0 183.312 2.544 282.928 44.544v-68.704z" /> -<glyph unicode="" glyph-name="color-picker" d="M936.352 322.816h-372.144l148.112 148.208 21.312-21.296c10.96-11.088 24.704-16.976 39.792-17.024h0.208c22.256 0 44.96 12.336 71.456 38.8 57.792 57.872 38.704 94.576 22.032 111.472l-13.824 13.808c5.84 1.872 11.632 4.032 17.248 6.864 1.92 0.976 3.728 2.128 5.424 3.456l76.432 60.208c0.992 0.784 1.936 1.632 2.832 2.512 23.696 23.68 36.752 55.2 36.752 88.736s-13.056 65.024-36.752 88.736l-44 43.984c-48.912 48.944-128.544 48.944-177.472 0-0.896-0.896-1.728-1.824-2.512-2.832l-60.192-76.432c-1.328-1.68-2.48-3.504-3.44-5.424-2.832-5.616-5.152-11.392-7.024-17.232l-13.84 13.84c-16.64 16.624-53.248 35.92-111.312-22.080-57.968-58.048-38.688-94.64-22.032-111.296l21.456-21.44-291.664-291.632c-9.728-9.744-16.992-21.376-21.648-33.92h-157.552c-17.664 0-32-14.336-32-32v-290.784c0-17.664 14.336-32 32-32h872.352c17.664 0 32 14.336 32 32v290.784c0 17.664-14.336 32-32 32zM723.568 775.232l56.672 71.968c24.064 22.768 62.176 22.368 85.76-1.184l43.984-43.984c11.616-11.616 18.016-27.056 18.016-43.488 0-15.856-5.968-30.8-16.816-42.272l-71.968-56.672c-20.416-8.96-44.272-4.56-60.224 11.504l-24.896 24.816-19.552 19.536c-15.6 15.872-19.872 39.504-10.96 59.776zM601.52 757.888s0 0 0 0zM580.688 735.84c12.272 12.256 20.032 17.088 23.904 18.976l84.704-84.64c0.128-0.128 0.224-0.288 0.352-0.416l22.016-21.936 107.168-107.088c-1.84-3.84-6.656-11.632-19.008-24-12.208-12.192-19.936-17.024-23.808-18.912l-172.624 172.496c-0.224 0.224-0.368 0.496-0.592 0.72s-0.496 0.384-0.736 0.608l-40.336 40.304c1.872 3.872 6.704 11.632 18.944 23.872zM667.040 516.272l-48.8-48.832c-0.4-0.080-0.8-0.080-1.2-0.176-53.872-13.456-78.976-6.976-108.016 0.56-16 4.144-33.12 8.496-54.416 9.808l125.52 125.504 86.928-86.864zM381.952 404.992c0.624 0.128 1.264 0.144 1.888 0.304 54.672 14.672 79.92 8.144 109.12 0.56 15.84-4.112 32.944-8.304 54-9.744l-81.936-81.984c-0.528-0.496-1.024-0.992-1.52-1.52l-88.016-88.080c-6.112-6.080-14.16-9.072-22.48-8.768l-73.392 73.392c-0.256 8.272 2.768 16.288 8.816 22.368l93.488 93.472zM206.24 185.12l43.424 43.504 42.848-42.848-43.44-43.536c-12-11.952-30.832-11.936-42.784-0.080-12.016 12.112-12.048 30.976-0.048 42.96zM96 258.816h93.376l-28.4-28.448c-36.64-36.64-36.672-96.416 0.064-133.44 18.416-18.288 42.544-27.424 66.672-27.424s48.304 9.168 66.656 27.52l28.432 28.48v-93.472h-226.8v226.784zM386.784 157.648c12.56 4.624 24.192 11.856 33.968 21.6l79.504 79.568h113.312v-226.784h-226.784v125.616zM904.352 32.032h-226.784v226.784h226.784v-226.784zM552.096 125.504h-31.152c-17.664 0-32-14.336-32-32s14.336-32 32-32h31.152c17.664 0 32 14.336 32 32s-14.336 32-32 32zM811.728 61.504h31.152c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.152c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="comment" d="M852.651 788.352h-681.301c-47.488 0-86.016-38.485-86.016-86.016v-594.944c0-24.875 20.395-41.899 42.027-41.899 8.875 0 17.963 2.859 25.941 9.259l145.365 116.309h553.984c47.488 0 86.016 38.485 86.016 86.016v425.259c0 47.488-38.485 86.016-86.016 86.016zM852.651 702.336v-425.344s-553.984 0-553.984 0c-19.541 0-38.485-6.656-53.717-18.859l-73.643-58.88v503.083s681.344 0 681.344 0v0zM317.312 532.352h48.043c10.298 0 18.645-8.348 18.645-18.645v-48.043c0-10.298-8.348-18.645-18.645-18.645h-48.043c-10.298 0-18.645 8.348-18.645 18.645v48.043c0 10.298 8.348 18.645 18.645 18.645zM487.979 532.352h48.043c10.298 0 18.645-8.348 18.645-18.645v-48.043c0-10.298-8.348-18.645-18.645-18.645h-48.043c-10.298 0-18.645 8.348-18.645 18.645v48.043c0 10.298 8.348 18.645 18.645 18.645zM658.645 532.352h48.043c10.298 0 18.645-8.348 18.645-18.645v-48.043c0-10.298-8.348-18.645-18.645-18.645h-48.043c-10.298 0-18.645 8.348-18.645 18.645v48.043c0 10.298 8.348 18.645 18.645 18.645z" /> -<glyph unicode="" glyph-name="comments" d="M719.184 570.976c0 150.832-154.144 273.552-343.6 273.552s-343.584-122.736-343.584-273.552c0-102.224 70.24-194.88 183.44-242.224 0.832-0.592 2.384-1.904 2.56-3.552 0.592-6.192-6.704-23.984-37.92-51.536-9.984-8.816-13.472-22.88-8.768-35.312 4.72-12.448 16.624-20.688 29.936-20.688 80.128 0 167.376 59.824 194.8 80.224 182.064 8.368 323.136 126.72 323.136 273.072zM383.856 361.52c-7.904-0.192-15.088-3.232-20.592-8.16-15.472-12.224-48.224-34.688-84.48-51.216 3.216 10.992 4.064 21.728 2.544 32.336-3.872 27.008-23.008 44.928-39.616 52.672-89.872 37.024-145.712 107.472-145.712 183.824 0 115.552 125.424 209.552 279.6 209.552s279.6-94 279.6-209.552c0-112.224-121.712-206.192-271.328-209.456zM992 364.784c0 101.056-75.888 190.080-193.344 226.8-16.816 5.248-34.816-4.112-40.096-20.992-5.264-16.88 4.128-34.816 20.992-40.096 90.176-28.176 148.432-93.216 148.432-165.696 0-65.2-47.936-125.472-126.512-157.888-14.224-6.672-32.096-23.408-35.696-48.608-1.024-7.184-0.896-14.432 0.4-21.76-28.144 13.712-53.008 30.864-65.44 40.624-5.504 4.976-12.752 8.048-20.72 8.24-76.272 1.664-147.856 30.96-191.52 78.336-11.936 12.992-32.208 13.872-45.2 1.856-12.992-11.968-13.84-32.208-1.856-45.2 53.888-58.528 135.952-94.16 226.448-98.608 25.392-18.752 101.584-70.288 171.92-70.288 13.312 0 25.232 8.24 29.936 20.688 4.704 12.432 1.216 26.496-8.768 35.312-30.272 26.688-31.792 40.096-31.2 41.904 100.128 42.208 162.208 124.512 162.208 215.392z" /> -<glyph unicode="" glyph-name="comments-question" d="M896 720h-230.4l1.984 30c1.712 25.264-7.216 50.368-24.512 68.896-17.296 18.496-41.728 29.104-67.072 29.104h-448c-52.944 0-96-43.056-96-96v-352c0-52.944 43.056-96 96-96v-96c0-12.944 7.792-24.608 19.76-29.568 3.952-1.648 8.112-2.432 12.24-2.432 8.336 0 16.512 3.248 22.64 9.376l118.64 118.624h75.328l2.688-34.512c3.84-52.416 48.096-93.488 100.736-93.488h242.736l118.64-118.624c6.112-6.128 14.304-9.376 22.64-9.376 4.112 0 8.288 0.8 12.24 2.432 11.968 4.96 19.76 16.624 19.76 29.568v96c52.944 0 96 43.056 96 96v352c0 52.944-43.056 96-96 96zM288 368c-8.48 0-16.624-3.376-22.624-9.376l-73.376-73.376v50.752c0 17.664-14.336 32-32 32h-32c-17.648 0-32 14.352-32 32v352c0 17.648 14.352 32 32 32h448c7.792 0 15.008-3.12 20.304-8.816 5.312-5.68 7.952-13.072 7.408-20.912l-23.296-352.224c-1.344-19.088-17.344-34.064-36.432-34.064h-256zM928 272c0-17.648-14.352-32-32-32h-32c-17.664 0-32-14.336-32-32v-50.752l-73.376 73.376c-6 6-14.144 9.376-22.624 9.376h-256c-19.296 0-35.504 15.008-36.912 34.32l-2.304 29.68h103.216c52.544 0 96.592 41.104 100.288 93.712l17.088 258.288h234.64c17.648 0 32-14.352 32-32v-352zM464 640c0 61.744-50.24 112-112 112s-112-50.256-112-112c0-17.664 14.336-32 32-32s32 14.336 32 32c0 26.464 21.536 48 48 48s48-21.536 48-48-21.536-48-48-48c-17.664 0-32-14.336-32-32v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v4.72c46.208 13.808 80 56.656 80 107.28zM352 471.984c-17.664 0-32-14.336-32-32v-7.984c0-17.664 14.336-32 32-32s32 14.336 32 32v7.984c0 17.664-14.336 32-32 32zM864 592h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 496h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 368h-7.984c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.984c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 368h-7.984c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.984c17.664 0 32 14.336 32 32s-14.336 32-32 32zM256 471.984c-17.664 0-32-14.336-32-32v-7.984c0-17.664 14.336-32 32-32s32 14.336 32 32v7.984c0 17.664-14.336 32-32 32zM448 471.984c-17.664 0-32-14.336-32-32v-7.984c0-17.664 14.336-32 32-32s32 14.336 32 32v7.984c0 17.664-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="content-slider" d="M928 288h-64v320h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-35.296 0-64-28.704-64-64v-320c0-35.296 28.704-64 64-64h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM982.624 470.624l-32 32c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l9.36-9.376-9.36-9.376c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l32 32c12.496 12.496 12.496 32.752 0 45.248zM160 672h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64v-320h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c35.296 0 64 28.704 64 64v320c0 35.296-28.704 64-64 64zM96 384c8.192 0 16.384 3.12 22.624 9.376 12.496 12.496 12.496 32.752 0 45.248l-9.36 9.376 9.36 9.376c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-32-32c-12.496-12.496-12.496-32.752 0-45.248l32-32c6.24-6.256 14.432-9.376 22.624-9.376zM704 704h-384c-35.296 0-64-28.704-64-64v-384c0-35.296 28.704-64 64-64h384c35.296 0 64 28.704 64 64v384c0 35.296-28.704 64-64 64zM704 640v-104.368s-49.088 34.544-49.088 34.544c-11.040 7.776-25.76 7.76-36.8 0l-81.664-57.36-86.704 57.792c-10.752 7.152-24.752 7.152-35.504 0l-94.256-62.832v132.208h384zM320 256v174.88l112 74.672 126.256-84.176c5.456-3.648 11.616-5.376 17.712-5.376 10.336 0 20.496 4.992 26.656 14.256 9.808 14.704 5.824 34.576-8.88 44.368l-0.176 0.112 42.912 30.128 67.536-47.52v-201.36s-384.016 0-384.016 0zM576 352h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="cookies" d="M966.528 543.488c-21.28 13.104-47.264 14.272-69.376 3.088l-77.808-38.72c-2.976-1.536-5.536-0.656-7.152 0.336-1.648 1.008-3.616 2.96-3.616 6.4v32c0 52.256-36.256 97.904-88.192 111.024-1.184 0.304-5.584 1.856-12.576 9.44-12.56 13.664-6 51.68 15.152 85.68 25.36 43.936 16.896 77.36 5.328 97.664-43.424 76.192-190.704 80-207.712 80.192-167.52 0.016-319.872-84.592-407.552-226.288-0.336-0.528-0.64-1.056-0.928-1.616-15.232-28.128-23.248-59.088-24.096-92.576-31.776-57.28-47.44-109.568-47.44-159.504 0-189.152 111.568-361.248 284.080-438.336 3.904-1.776 93.376-41.84 185.12-41.84 3.6 0 7.2 0.064 10.8 0.192 3.984 0 65.664 0.752 119.488 32.304 216.048 6.544 360.512 234.448 360.512 447.696v32c0 24.992-12.72 47.728-34.048 60.88zM707.184 79.408c1.232 3.040 2.672 5.856 3.744 9.072 5.584 16.768-3.472 34.896-20.24 40.48-16.704 5.6-34.88-3.472-40.48-20.24-24.208-72.624-128.688-74.128-130.768-74.144-81.12-3.104-167.52 35.584-168.512 36.032-149.648 66.88-246.352 216.032-246.352 379.984 0 14.592 1.968 29.904 5.792 45.856 7.984-11.536 22.832-16.976 36.72-12.080 16.688 5.792 25.52 24.032 19.712 40.736-20.128 57.872-19.728 107.088 1.168 146.32 76.016 122.24 207.744 195.168 352.256 195.168 60.592-0.672 136.096-19.152 152.464-47.872 1.968-3.456 7.184-12.608-4.592-33.040-31.424-50.4-45.904-120.016-7.344-161.984 13.632-14.752 28.432-24.208 43.984-28.128 23.824-6.016 39.84-25.696 39.84-48.976v-32c0-24.992 12.736-47.76 34.048-60.912 21.296-13.088 47.28-14.224 69.376-3.056l77.792 38.72c2.992 1.504 5.552 0.624 7.168-0.352 1.648-1.008 3.616-2.96 3.616-6.384v-32c0-154.592-91.088-324.128-229.376-371.2zM296.576 471.248c-52.944 0-96-43.056-96-96s43.056-96 96-96 96 43.056 96 96-43.056 96-96 96zM296.576 343.248c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM488.576 674.608c0 52.944-43.056 96-96 96s-96-43.056-96-96 43.056-96 96-96 96 43.056 96 96zM392.576 642.608c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM606.256 535.248c-52.944 0-96-43.056-96-96s43.056-96 96-96 96 43.056 96 96-43.056 96-96 96zM606.256 407.248c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM520.576 311.248c-52.944 0-96-43.056-96-96s43.056-96 96-96 96 43.056 96 96-43.056 96-96 96zM520.576 183.248c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM224.592 514.608c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32h16zM544.592 578.608h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32zM864.592 642.608c0-17.664 14.336-32 32-32h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32zM830.24 791.248c-17.664 0-32-14.336-32-32s14.336-32 32-32h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16zM814.24 855.248h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="copyright" d="M512 873.941c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667 426.667 191.019 426.667 426.667-191.019 426.667-426.667 426.667zM752.896 206.379c-64.341-64.341-149.888-99.797-240.896-99.797s-176.555 35.456-240.896 99.797c-64.341 64.341-99.797 149.888-99.797 240.896s35.456 176.555 99.797 240.896c64.341 64.341 149.888 99.797 240.896 99.797s176.555-35.456 240.896-99.797c64.341-64.341 99.797-149.888 99.797-240.896s-35.456-176.555-99.797-240.896zM706.56 366.464c-19.755 13.184-46.464 7.893-59.648-11.819-31.104-46.464-82.987-74.197-138.795-74.197-44.544 0-86.443 17.365-117.973 48.853-31.531 31.531-48.853 73.387-48.853 117.973 0 91.989 74.837 166.827 166.827 166.827 55.509 0 107.221-27.52 138.368-73.6 13.312-19.669 40.021-24.832 59.691-11.563 19.669 13.312 24.875 40.021 11.563 59.691-47.147 69.803-125.525 111.445-209.621 111.445-139.435 0-252.843-113.408-252.843-252.843 0-67.541 26.283-131.029 74.069-178.773 47.744-47.744 111.232-74.069 178.773-74.069 84.565 0 163.2 42.027 210.261 112.384 13.227 19.755 7.893 46.464-11.819 59.648z" /> -<glyph unicode="" glyph-name="countdown" d="M659.586 483.924c6.344 0 11.488 5.144 11.488 11.488s-5.144 11.488-11.488 11.488-11.488-5.144-11.488-11.488 5.142-11.488 11.488-11.488zM659.586 395.982c6.344 0 11.488 5.144 11.488 11.488s-5.144 11.488-11.488 11.488-11.488-5.144-11.488-11.488 5.142-11.488 11.488-11.488zM788.032 391.17c2.814-2.814 6.63-4.396 10.61-4.396h54.088c3.98 0 7.796 1.582 10.61 4.396l2.898 2.9c2.81 2.812 4.39 6.626 4.39 10.604v47.79c0 0.98-0.098 1.95-0.284 2.898 0.186 0.948 0.284 1.918 0.284 2.898v47.79c0 3.976-1.58 7.792-4.39 10.604l-2.898 2.9c-2.814 2.814-6.63 4.396-10.61 4.396h-54.088c-3.98 0-7.796-1.582-10.61-4.396l-2.9-2.902c-2.81-2.812-4.39-6.624-4.39-10.602v-47.79c0-0.98 0.098-1.95 0.286-2.898-0.186-0.948-0.286-1.918-0.286-2.898v-47.79c0-3.976 1.58-7.79 4.39-10.602l2.9-2.902zM840.628 416.774h-29.886v23.588h29.886v-23.588zM810.744 493.95h29.886v-23.588h-29.886v23.588zM547.414 391.168c2.814-2.814 6.628-4.394 10.608-4.394h42.794c3.978 0 7.794 1.58 10.608 4.394l8.546 8.546c2.812 2.812 4.392 6.626 4.392 10.606v90.082c0 3.978-1.58 7.792-4.392 10.606l-8.546 8.546c-2.814 2.814-6.628 4.394-10.608 4.394h-42.794c-3.978 0-7.794-1.58-10.608-4.394l-8.546-8.546c-2.812-2.812-4.392-6.626-4.392-10.606v-90.082c0-3.978 1.58-7.792 4.392-10.606l8.546-8.546zM564.474 493.95h29.886v-77.176h-29.886v77.176zM703.802 416.774c-8.284 0-15-6.714-15-15s6.716-15 15-15h39.752c3.978 0 7.794 1.58 10.608 4.394l8.546 8.546c2.812 2.812 4.392 6.626 4.392 10.606v16.894c0 3.978-1.58 7.792-4.392 10.606l-7.742 7.74 7.738 7.736c2.814 2.814 4.396 6.63 4.396 10.61v36.496c0 3.978-1.58 7.792-4.392 10.606l-8.546 8.546c-2.814 2.814-6.628 4.394-10.608 4.394h-39.752c-8.284 0-15-6.714-15-15s6.716-15 15-15h33.298v-23.588h-33.298c-8.284 0-15-6.714-15-15s6.716-15 15-15h13.938l19.36-19.36v-4.228h-33.298zM443.936 391.168c2.812-2.814 6.628-4.394 10.608-4.394h51.34c8.284 0 15 6.714 15 15s-6.716 15-15 15h-44.884v23.588h36.34c3.978 0 7.794 1.58 10.608 4.394l8.542 8.542c2.814 2.814 4.396 6.63 4.396 10.61v36.496c0 3.978-1.58 7.792-4.392 10.606l-8.544 8.546c-2.814 2.814-6.628 4.394-10.608 4.394h-39.752c-3.978 0-7.794-1.58-10.608-4.392l-11.588-11.588c-5.858-5.86-5.858-15.356 0-21.214 5.858-5.856 15.356-5.856 21.214 0l7.194 7.196h27.084v-23.588h-36.34c-3.978 0-7.794-1.58-10.608-4.394l-8.542-8.542c-2.814-2.814-4.396-6.63-4.396-10.61v-36.496c0-3.978 1.58-7.792 4.392-10.606l8.544-8.546zM345.852 451.442c0 52.25-42.358 94.608-94.608 94.608-13.064 0-25.508-2.648-36.826-7.436l38.882-87.172-92.55-27.684c11.838-38.744 47.876-66.926 90.494-66.926 52.25 0 94.608 42.358 94.608 94.608zM897.334 591.394h-556.846c-15.088 9.656-31.818 16.944-49.688 21.328 10.798 1.142 19.212 10.274 19.212 21.376 0 11.876-9.626 21.5-21.5 21.5h-74.534c-11.874 0-21.5-9.624-21.5-21.5 0-11.102 8.416-20.234 19.212-21.376-72.536-17.794-126.524-83.334-126.524-161.28 0-91.576 74.502-166.078 166.078-166.078 32.834 0 63.448 9.618 89.246 26.126h556.842c22.882 0 41.5 18.618 41.5 41.5v196.904c0 22.882-18.618 41.5-41.5 41.5zM895.834 364.806l-10.318-10.318h-499.556c19.706 27.304 31.362 60.782 31.362 96.952s-11.658 69.648-31.364 96.954h509.874v-183.586zM128.168 451.44c0 67.866 55.212 123.078 123.078 123.078 26.064 0 50.246-8.168 70.166-22.044 0.244-0.176 0.484-0.358 0.736-0.524 31.532-22.31 52.176-59.032 52.176-100.51s-20.636-78.186-52.158-100.496c-0.276-0.182-0.54-0.38-0.808-0.576-19.912-13.854-44.072-22.006-70.112-22.006-67.866 0-123.078 55.212-123.078 123.078z" /> -<glyph unicode="" glyph-name="counter" d="M874.412 746.332h-724.82c-35.34 0-64-28.64-64-64v-314.18c0-35.36 28.66-64 64-64h724.82c35.34 0 64 28.64 64 64v314.18c0 35.36-28.66 64-64 64zM283.332 417.552h-42.76v156.72h-32.42v37.42c10.48 0 19.16 1.72 26.060 5.18 6.92 3.46 11.26 10.52 13.040 21.22h36.080v-220.54zM491.512 417.552h-167.4v44.78l82.86 57.46c4.24 2.9 8.58 6.24 13.040 10.040 4.46 3.78 8.62 8.020 12.52 12.68 3.9 4.68 7.020 9.76 9.36 15.22 2.34 5.44 3.52 11.3 3.52 17.54 0 6.46-1.46 12.080-4.36 16.88-2.88 4.78-7.18 8.46-12.86 11.020s-12.76 3.84-21.22 3.84c-7.12 0-13.36-1.060-18.7-3.18-5.36-2.12-9.7-5.34-13.040-9.68s-5.8-9.76-7.36-16.22c-1.56-6.46-2.22-14.020-2-22.72l-40.76 8.36c-0.46 16.48 2.5 30.68 8.86 42.6 6.34 11.92 15.74 21.12 28.22 27.58s27.62 9.68 45.46 9.68c15.8 0 29.74-2.5 41.76-7.52 12.040-5 21.38-12.36 28.080-22.040 6.68-9.7 10.020-21.56 10.020-35.6 0-10.92-1.84-20.82-5.52-29.74-3.68-8.9-8.4-16.86-14.2-23.88s-12.14-13.26-19.040-18.72c-6.92-5.46-13.6-10.2-20.060-14.2l-56.14-38.1v-3l118.96 2v-35.080zM682.992 445.792c-6.46-10.36-16.44-18.44-29.92-24.24-13.48-5.78-30.34-8.68-50.62-8.68-14.26 0-26.62 1.5-37.080 4.5-10.48 3.020-19.22 7.24-26.24 12.7s-12.42 12.2-16.2 20.22c-3.8 8.020-6.020 16.92-6.68 26.74l38.080 11.7c0.44-7.58 2.060-14.040 4.84-19.4 2.8-5.34 6.42-9.74 10.86-13.18 4.46-3.46 9.54-5.98 15.22-7.52 5.68-1.56 11.74-2.34 18.2-2.34 8.92 0 16.94 1.28 24.060 3.84 7.14 2.56 12.76 6.62 16.88 12.2 4.12 5.56 6.18 12.46 6.18 20.7 0 10.92-3.46 19.66-10.36 26.24-6.9 6.56-17.040 11.14-30.4 13.7-13.38 2.56-29.64 3.060-48.8 1.5v25.060l75.52 52.14v3l-110.26-1v34.76h152.7v-41.1l-70.16-50.14v-3c20.72 0.88 37.2-1.46 49.44-7.020 12.26-5.56 21.060-13.14 26.4-22.72 5.36-9.58 8.020-20.28 8.020-32.080 0-14.040-3.22-26.22-9.68-36.58zM727.432 507.092v33.080h49.78v51.14h35.080v-51.14h50.14v-33.080h-50.14v-51.12h-35.080v51.12h-49.78zM899.372 404.892c0-35.36-28.66-64-64-64h-48.16l112.16 112.14v-48.14zM725.656 190.834c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-427.312c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h427.312zM812.638 148.5h-601.276c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h601.276c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="counters" d="M930.688 64h-837.328c-33.824 0-61.36 27.504-61.36 61.312v645.328c0 33.824 27.536 61.36 61.36 61.36h837.328c33.808 0 61.312-27.536 61.312-61.36v-645.328c0-33.808-27.504-61.312-61.312-61.312zM96 128h832v640h-832v-640zM176 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM864 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM736 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM528 384h-32c-52.944 0-96 43.056-96 96v32c0 52.944 43.056 96 96 96h32c52.944 0 96-43.056 96-96v-32c0-52.944-43.056-96-96-96zM496 544c-17.648 0-32-14.352-32-32v-32c0-17.648 14.352-32 32-32h32c17.648 0 32 14.352 32 32v32c0 17.648-14.352 32-32 32h-32zM576 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM544 192h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM320 384h-160c-11.088 0-21.392 5.744-27.216 15.168-5.824 9.44-6.352 21.216-1.408 31.136l80 160c5.424 10.848 16.496 17.68 28.624 17.68s23.2-6.848 28.624-17.68l80-160c4.96-9.92 4.416-21.696-1.408-31.136-5.824-9.424-16.128-15.168-27.216-15.168zM211.776 448h56.432l-28.224 56.448-28.224-56.448zM304 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM256 192h-32c-17.664 0-32 14.336-32 32s14.336 32 32 32h32c17.664 0 32-14.336 32-32s-14.336-32-32-32zM864 384h-160c-17.664 0-32 14.336-32 32v160c0 17.664 14.336 32 32 32h160c17.664 0 32-14.336 32-32v-160c0-17.664-14.336-32-32-32zM736 448h96v96h-96v-96zM848 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM728.016 192h-8.016c-17.664 0-32 14.336-32 32s14.336 32 32 32h8.016c17.664 0 32-14.336 32-32s-14.336-32-32-32zM848 192h-7.984c-17.664 0-32 14.336-32 32s14.336 32 32 32h7.984c17.664 0 32-14.336 32-32s-14.336-32-32-32z" /> -<glyph unicode="" glyph-name="creative-button" d="M787.813 559.265h-553.599c-35.77 0-64.873-29.103-64.873-64.873v-88.787c0-35.77 29.103-64.873 64.873-64.873h223.464l47.807-113.716-218.861 1.232v50.418c0 11.853-9.605 21.458-21.458 21.458s-21.458-9.605-21.458-21.458v-71.754c0-11.803 9.533-21.392 21.336-21.458l258.525-1.455 2.216-5.29c4.87-11.577 15.849-18.703 28.205-18.703 1.517 0 3.054 0.12 4.591 0.339 12.955 1.816 22.893 11.018 25.61 23.312l172.671-0.972c5.669 0 11.108 2.244 15.13 6.242 4.050 4.028 6.328 9.505 6.328 15.216v74.522c0 11.853-9.605 21.458-21.458 21.458s-21.458-9.605-21.458-21.458v-52.943l-145.981 0.822 4.948 42.21 87.609 9.202c14.232 1.497 25.45 12.296 27.247 26.289 1.777 13.873-6.268 27.047-19.542 32.037l-11.837 4.451h109.965c35.77 0 64.873 29.103 64.873 64.873v88.787c0 35.77-29.103 64.873-64.873 64.873zM579.261 310.311c-13.833-1.457-24.612-11.977-26.229-25.61l-5.509-46.968-52.996 126.074 129.727-48.765-44.992-4.731zM766.515 428.54h-511.002c-11.857 0-21.458 9.601-21.458 21.458s9.601 21.458 21.458 21.458h511.002c11.857 0 21.458-9.601 21.458-21.458s-9.601-21.458-21.458-21.458zM660.055 661.749h85.002v-42.232c0-11.853 9.605-21.458 21.458-21.458s21.458 9.605 21.458 21.458v63.69c0 11.853-9.607 21.458-21.458 21.458h-106.46c-11.851 0-21.458-9.605-21.458-21.458s9.607-21.458 21.458-21.458zM460.89 656.499h91.835c3.324 10.148 9.967 19.34 17.476 27.259 14.881 15.655 23.983 36.816 23.983 60.117 0 48.24-39.136 87.375-87.375 87.375s-87.375-39.138-87.375-87.375c0-23.3 9.102-44.461 23.983-60.117 7.509-7.919 14.198-17.111 17.476-27.259zM503.167 802.126c6.052 0 10.923-4.868 10.923-10.923s-4.868-10.923-10.923-10.923c-18.113 0-32.766-14.653-32.766-32.766 0-6.052-4.868-10.923-10.923-10.923s-10.921 4.868-10.921 10.923c0 30.171 24.438 54.609 54.609 54.609zM499.526 590.967h14.562c20.115 0 36.407 16.292 36.407 36.407v7.282h-87.375v-7.282c0-20.115 16.292-36.407 36.407-36.407zM255.904 595.672c9.589 0 17.705 6.294 20.456 14.973 1.232 2.707 1.936 5.703 1.936 8.871v41.235h84.663c11.853 0 21.458 9.607 21.458 21.458 0 4.767-1.573 9.156-4.202 12.717-3.831 5.859-10.44 9.737-17.963 9.737h-105.414c-6.342 0-12.025-2.769-15.953-7.142-3.97-3.894-6.437-9.312-6.437-15.312v-65.079c0-11.851 9.605-21.458 21.458-21.458z" /> -<glyph unicode="" glyph-name="credit-card-back" d="M943.904 751.52h-863.808c-26.56 0-48.096-21.536-48.096-48.096v-510.848c0-26.56 21.536-48.096 48.096-48.096h863.808c26.56 0 48.096 21.536 48.096 48.096v510.848c0 26.56-21.536 48.096-48.096 48.096zM96 603.744h59.136l35.936-61.072h-95.056v61.072zM265.312 542.672l-35.936 61.072h81.072l35.936-61.072h-81.072zM420.64 542.672l-35.936 61.072h81.072l35.936-61.072h-81.072zM575.968 542.672l-35.936 61.072h81.072l35.936-61.072h-81.072zM731.296 542.672l-35.936 61.072h81.072l35.936-61.072h-81.072zM886.624 542.672l-35.936 61.072h77.312v-61.072h-41.376zM928 687.52v-19.776h-832v19.776h832zM868.304 208.48h-772.304v270.208h150.992s0.048 0 0.064 0c0.016 0 0.048 0 0.064 0h155.216s0.048 0 0.064 0c0.016 0 0.048 0 0.064 0h155.216s0.048 0 0.064 0c0.016 0 0.048 0 0.064 0h155.216s0.048 0 0.064 0c0.016 0 0.048 0 0.064 0h155.216s0.048 0 0.064 0c0.016 0 0.048 0 0.064 0h59.584v-270.208h-59.696zM274.8 304.048h-104.304c-17.664 0-32-14.336-32-32s14.336-32 32-32h104.304c17.664 0 32 14.336 32 32s-14.336 32-32 32zM567.072 304.048h-185.552c-17.664 0-32-14.336-32-32s14.336-32 32-32h185.552c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="credit-card-front" d="M942.736 751.52h-861.472c-27.216 0-49.264-22.064-49.264-49.264v-508.496c0-27.216 22.064-49.264 49.264-49.264h861.456c27.216 0 49.264 22.064 49.264 49.264v508.496c0 27.216-22.064 49.264-49.264 49.264zM928 208.48h-832v479.040h832v-479.040zM170.496 240.048h104.304c17.664 0 32 14.336 32 32s-14.336 32-32 32h-104.304c-17.664 0-32-14.336-32-32s14.336-32 32-32zM567.072 304.048h-185.552c-17.664 0-32-14.336-32-32s14.336-32 32-32h185.552c17.664 0 32 14.336 32 32s-14.336 32-32 32zM170.496 353.904h691.36c17.664 0 32 14.336 32 32s-14.336 32-32 32h-691.36c-17.664 0-32-14.336-32-32s14.336-32 32-32zM755.312 648.016h86.656c17.647 0 31.952-14.305 31.952-31.952v-86.656c0-17.647-14.305-31.952-31.952-31.952h-86.656c-17.647 0-31.952 14.305-31.952 31.952v86.656c0 17.647 14.305 31.952 31.952 31.952z" /> -<glyph unicode="" glyph-name="currency-bitcoin" d="M730.965 468.48c23.339 29.227 37.376 66.261 37.376 106.496 0 94.293-76.715 171.008-171.008 171.008h-10.581v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-105.472v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-42.325h-53.291c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h53.291v-425.984h-53.291c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h53.291v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h105.472v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h53.248c94.293 0 171.008 76.715 171.008 171.008 0 65.92-31.488 120.789-80.043 149.504zM682.325 575.019c0-46.848-38.144-84.992-84.992-84.992h-202.069v169.984h202.069c46.848 0 84.992-38.144 84.992-84.992zM640 233.984h-244.736v169.984h255.659c50.901 0 74.069-44.075 74.069-84.992 0-46.848-38.144-84.992-84.992-84.992z" /> -<glyph unicode="" glyph-name="custom-css" d="M746.207 384.119h20.959c23.714 0 42.916 19.222 42.916 42.916v107.47c0 11.018-8.943 19.961-19.961 19.961h-556.236c-11.038 0-19.961-8.943-19.961-19.961v-107.47c0-23.694 19.202-42.916 42.916-42.916h0.998c11.018 0 19.961-8.923 19.961-19.961l1.317-23.953c0-11.018 8.943-19.961 19.961-19.961h408.542c11.018 0 19.961 8.943 19.961 19.961l-1.337 23.953c0 11.038 8.943 19.961 19.961 19.961zM277.123 526.98l-36.189-36.169c-2.655-2.675-7.206-0.778-7.206 2.974v35.91c0 2.315 1.876 4.212 4.192 4.212l36.189 0.279c3.773 0.040 5.689-4.531 3.014-7.206zM372.614 491.289c-2.515 0-4.671-0.339-6.527-0.978-1.856-0.659-3.294-2.216-4.312-4.651-1.038-2.435-1.557-6.328-1.557-11.657 0-4.332-0.699-8.144-2.116-11.398s-3.254-5.968-5.529-8.144c-2.296-2.176-4.731-3.912-7.346-5.21-2.595-1.317-5.15-2.236-7.645-2.775v-3.753c2.495-0.659 5.070-1.617 7.725-2.934 2.675-1.297 5.11-3.074 7.346-5.29 2.216-2.236 4.032-4.95 5.449-8.144 1.417-3.214 2.116-6.986 2.116-11.338 0-5.31 0.519-9.202 1.557-11.637 1.018-2.455 2.455-3.992 4.312-4.651s4.012-0.978 6.527-0.978v-19.721c-2.076-0.319-4.132-0.559-6.208-0.719-2.056-0.16-3.733-0.259-5.050-0.259-3.912 0-7.306 0.579-10.18 1.717s-5.33 3.074-7.326 5.789c-2.016 2.715-3.613 6.407-4.811 11.078s-2.056 10.599-2.615 17.765c-0.319 4.551-1.078 8.364-2.276 11.398-1.198 3.054-2.775 5.429-4.731 7.166s-4.172 2.834-6.667 3.274v17.266c2.375 0.539 4.551 1.677 6.507 3.413s3.553 4.252 4.811 7.505c1.258 3.254 2.036 7.386 2.355 12.376 0.559 7.066 1.397 12.935 2.535 17.606s2.715 8.384 4.731 11.158c1.996 2.775 4.451 4.731 7.326 5.869s6.328 1.717 10.34 1.717c1.517 0 3.274-0.12 5.23-0.339s3.952-0.479 6.028-0.818v-19.702zM463.776 413.96c-1.697-3.733-4.172-7.046-7.425-9.941-3.254-2.874-7.306-5.13-12.136-6.747-4.831-1.637-10.679-2.455-17.506-2.455-7.406 0-13.913 1.038-19.562 3.094-5.649 2.076-10.38 5.030-14.172 8.883-3.813 3.852-6.707 8.503-8.723 13.933s-3.014 11.518-3.014 18.244c0 6.966 0.998 13.254 3.014 18.903s4.91 10.539 8.723 14.671c3.793 4.132 8.463 7.306 14.013 9.521 5.529 2.236 11.897 3.353 19.063 3.353s13.354-1.138 18.564-3.433c5.23-2.276 9.481-5.469 12.795-9.601s5.569-8.903 6.767-14.352l-24.273-8.144c-0.339 3.593-1.198 6.527-2.615 8.803s-3.234 3.932-5.449 4.97c-2.236 1.038-4.651 1.557-7.266 1.557-2.715 0-5.090-0.559-7.166-1.637-2.056-1.078-3.793-2.715-5.21-4.89s-2.495-4.811-3.254-7.905c-0.759-3.094-1.138-6.647-1.138-10.659 0-5.769 0.719-10.579 2.196-14.432 1.457-3.852 3.633-6.767 6.507-8.723 2.894-1.956 6.388-2.934 10.519-2.934 4.232 0 7.545 0.878 9.941 2.615 2.375 1.737 4.132 3.892 5.21 6.447 1.078 2.535 1.737 5.070 1.956 7.565l22.815-5.050c-0.439-4.012-1.497-7.905-3.174-11.657zM549.551 407.773c-3.034-4.172-7.525-7.386-13.434-9.601-5.928-2.236-13.174-3.353-21.758-3.353-5.749 0-10.979 0.519-15.629 1.557-4.691 1.018-8.763 2.515-12.236 4.471s-6.328 4.332-8.543 7.086c-2.236 2.775-3.773 5.849-4.651 9.222l19.562 8.623c0.759-1.836 2.076-3.713 3.992-5.609 1.896-1.916 4.451-3.453 7.645-4.651 3.214-1.198 7.086-1.796 11.657-1.796 4.352 0 7.745 0.619 10.18 1.876 2.455 1.238 3.673 3.074 3.673 5.449 0 1.737-0.679 3.134-2.036 4.172-1.357 1.018-3.393 1.956-6.108 2.755-2.715 0.818-6.088 1.617-10.1 2.375-4.132 0.858-8.324 1.876-12.555 3.014s-8.204 2.715-11.897 4.711c-3.693 2.016-6.647 4.671-8.883 7.984-2.216 3.314-3.333 7.525-3.333 12.635 0 5.33 1.417 9.961 4.232 13.933 2.834 3.972 7.026 7.086 12.635 9.362 5.589 2.296 12.396 3.433 20.44 3.433 7.166 0 13.474-0.938 18.903-2.775 5.429-1.856 9.961-4.471 13.613-7.905 3.633-3.413 6.168-7.525 7.565-12.296l-21.019-7.505c-0.539 2.395-1.657 4.451-3.333 6.208-1.697 1.737-3.813 3.054-6.348 3.992-2.555 0.918-5.569 1.377-9.042 1.377-4.252 0-7.525-0.659-9.861-1.956s-3.513-3.034-3.513-5.21c0-1.737 0.798-3.174 2.375-4.332 1.557-1.138 3.813-2.076 6.747-2.834 2.934-0.778 6.407-1.577 10.44-2.455 4.232-0.858 8.444-1.876 12.615-3.014 4.192-1.138 7.984-2.655 11.418-4.551 3.413-1.916 6.128-4.411 8.144-7.505s3.014-7.086 3.014-11.977c0-5.749-1.517-10.719-4.571-14.911zM639.014 407.773c-3.054-4.172-7.525-7.386-13.454-9.601-5.908-2.236-13.174-3.353-21.738-3.353-5.769 0-10.979 0.519-15.649 1.557-4.671 1.018-8.743 2.515-12.216 4.471s-6.328 4.332-8.563 7.086c-2.216 2.775-3.773 5.849-4.631 9.222l19.542 8.623c0.759-1.836 2.096-3.713 3.992-5.609 1.896-1.916 4.451-3.453 7.665-4.651 3.194-1.198 7.086-1.796 11.637-1.796 4.352 0 7.745 0.619 10.2 1.876 2.435 1.238 3.653 3.074 3.653 5.449 0 1.737-0.679 3.134-2.036 4.172-1.357 1.018-3.393 1.956-6.108 2.755-2.715 0.818-6.088 1.617-10.1 2.375-4.132 0.858-8.304 1.876-12.555 3.014-4.232 1.138-8.204 2.715-11.877 4.711-3.693 2.016-6.667 4.671-8.883 7.984-2.236 3.314-3.353 7.525-3.353 12.635 0 5.33 1.417 9.961 4.252 13.933 2.815 3.972 7.026 7.086 12.615 9.362 5.589 2.296 12.416 3.433 20.46 3.433 7.166 0 13.454-0.938 18.903-2.775 5.429-1.856 9.961-4.471 13.593-7.905 3.633-3.413 6.168-7.525 7.585-12.296l-21.019-7.505c-0.559 2.395-1.657 4.451-3.353 6.208-1.677 1.737-3.793 3.054-6.348 3.992-2.555 0.918-5.569 1.377-9.042 1.377-4.232 0-7.525-0.659-9.861-1.956s-3.493-3.034-3.493-5.21c0-1.737 0.778-3.174 2.355-4.332 1.577-1.138 3.833-2.076 6.767-2.834 2.934-0.778 6.407-1.577 10.42-2.455 4.232-0.858 8.444-1.876 12.635-3.014 4.172-1.138 7.984-2.655 11.398-4.551 3.433-1.916 6.148-4.411 8.144-7.505 2.016-3.094 3.014-7.086 3.014-11.977 0-5.749-1.517-10.719-4.551-14.911zM701.412 435.239c-2.395-0.439-4.591-1.537-6.587-3.274-2.016-1.737-3.653-4.112-4.89-7.166-1.258-3.034-2.036-6.847-2.375-11.398-0.539-7.166-1.397-13.094-2.595-17.765s-2.795-8.364-4.811-11.078c-2.016-2.715-4.451-4.651-7.326-5.789-2.894-1.138-6.288-1.717-10.2-1.717-1.297 0-2.954 0.1-4.97 0.259-1.996 0.16-4.032 0.399-6.108 0.719v19.721c2.495 0 4.671 0.319 6.527 0.978 1.836 0.659 3.254 2.196 4.232 4.651 0.978 2.435 1.477 6.328 1.477 11.637 0 4.352 0.699 8.124 2.116 11.338 1.397 3.194 3.214 5.908 5.449 8.144 2.236 2.216 4.671 3.992 7.326 5.29 2.675 1.317 5.25 2.276 7.745 2.934v3.753c-2.395 0.539-4.91 1.457-7.565 2.775-2.675 1.297-5.15 3.034-7.425 5.21s-4.132 4.89-5.529 8.144c-1.417 3.254-2.116 7.066-2.116 11.398 0 5.33-0.499 9.222-1.477 11.657s-2.395 3.992-4.232 4.651c-1.856 0.639-4.032 0.978-6.527 0.978v19.702c2.076 0.339 4.052 0.599 5.948 0.818s3.613 0.339 5.13 0.339c4.032 0 7.465-0.579 10.36-1.717 2.874-1.138 5.31-3.094 7.326-5.869s3.593-6.487 4.731-11.158c1.138-4.671 1.976-10.539 2.515-17.606 0.439-4.99 1.278-9.122 2.535-12.376 1.238-3.254 2.854-5.769 4.811-7.505s4.112-2.874 6.507-3.413v-17.266zM235.085 620.531c11.851 0 21.458 9.607 21.458 21.458s9.625 21.458 21.458 21.458h84.834c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-84.834c-34.754 0-63.163-27.678-64.336-62.151-0.076-0.731-0.114-1.473-0.114-2.224 0-11.851 9.683-21.458 21.534-21.458zM660.472 663.447h85.429c11.833 0 21.458-9.625 21.458-21.458s9.607-21.458 21.458-21.458 21.458 9.607 21.458 21.458c0 35.497-28.878 64.374-64.374 64.374h-85.429c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM788.965 320.415h-0.014c-11.843 0-21.45-9.599-21.458-21.444l-0.014-21.141c0-11.833-9.625-21.458-21.458-21.458h-190.967c-5.651 0-11.072-2.23-15.091-6.202l-27.772-27.468-27.662 27.446c-4.018 3.988-9.452 6.226-15.112 6.226h-191.44c-11.833 0-21.458 9.625-21.458 21.444l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472h-0.014c-11.845 0-21.45-9.599-21.458-21.444l-0.014-21.139c0-35.497 28.878-64.374 64.374-64.374h182.601l36.479-36.191c4.184-4.15 9.647-6.226 15.112-6.226s10.909 2.068 15.091 6.202l36.614 36.215h182.146c35.497 0 64.374 28.878 64.374 64.36l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472zM428.106 655.569c-1.278-3.174-1.397-5.569-0.18-8.743 1.098-2.934 10.559-19.282 12.536-21.039 3.573-3.154 7.046-3.014 11.378-1.936 7.226 1.757 14.532 4.93 21.698 7.086l12.416-7.106c5.33-9.022 1.058-29.702 14.372-31.998 4.631-0.798 17.306-0.719 22.137-0.24 4.811 0.479 8.204 3.314 9.721 7.865 2.395 7.226 2.615 16.368 4.91 23.774l12.815 7.585c2.795 0.778 21.897-8.444 27.945-7.725 1.757 0.22 4.391 1.637 5.669 2.854 1.876 1.836 11.717 18.903 12.496 21.598 2.096 6.966-1.537 9.801-6.108 14.152-2.296 2.196-14.013 11.378-14.412 13.334l0.279 15.15c4.232 5.429 17.765 13.494 20.101 19.362 1.178 2.954 0.958 5.629-0.2 8.563-1.098 2.854-10.519 19.003-12.436 20.6-3.593 3.014-7.206 2.894-11.458 1.836-7.106-1.717-14.532-5.17-21.718-7.066-4.112 2.555-8.104 5.529-12.815 6.926-4.012 10.28-0.759 30.94-15.33 32.417-4.87 0.479-16.967 0.539-21.718-0.16-12.296-1.796-9.402-22.915-13.733-31.558l-13.114-7.605-24.053 7.725c-3.553 0.719-7.306-0.599-9.641-3.413-2.056-2.455-11.338-18.664-12.076-21.478-0.958-3.613-0.319-7.246 2.156-10.1 4.531-5.25 12.955-10.14 17.785-15.29 0.459-0.479 0.918-0.898 0.958-1.597l-0.060-15.13c-6.787-6.068-14.811-11.478-20.32-18.644zM511.882 708.046c14.252 0 25.83-11.557 25.83-25.83s-11.577-25.83-25.83-25.83-25.85 11.537-25.85 25.83 11.577 25.83 25.85 25.83z" /> -<glyph unicode="" glyph-name="custom-cursor" d="M805.994 506.398l-206.157 77.509c-12.156-3.353-18.783-6.907-23.354-14.152-3.014-4.771-5.13-11.158-7.346-20.161l221.747-83.377c0.14-0.040 0.259-0.1 0.359-0.14-0.2-0.080-0.519-0.16-0.998-0.22l-242.826-25.51c-19.422-2.036-34.553-16.667-36.768-35.571l-26.987-229.671c-0.719-0.419-2.395-0.519-2.914-0.12 0 0-0.060 0.080-0.16 0.319l-203.542 484.114 111.362-41.878c-2.615 6.368-4.032 13.334-4.032 20.6 0 1.278 0.040 2.535 0.14 3.793 0.499 7.406 2.495 14.452 5.709 20.779l-101.562 38.185c-15.849 5.968-33.594 2.016-45.232-10.060-11.218-11.657-14.312-28.105-8.104-42.916l205.698-489.244c6.986-16.628 22.895-26.868 40.8-26.868 2.236 0 4.471 0.16 6.747 0.479 20.24 2.854 35.391 18.065 37.726 37.826l26.748 227.675 241.688 25.39c20.899 2.196 36.708 17.306 39.303 37.607 2.575 20.003-8.703 38.325-28.045 45.611zM435.717 627.38c20.68-4.948 35.371-11.597 46.15-22.057 7.905-7.625 13.733-17.286 18.284-29.802 1.976-5.389 3.713-11.318 5.27-17.825 1.337-5.629 6.048-8.444 10.759-8.444s9.402 2.815 10.759 8.444c0.579 2.435 1.198 4.791 1.836 7.066 2.096 7.565 4.511 14.252 7.326 20.181 3.413 7.106 7.445 13.134 12.316 18.304 10.959 11.657 26.189 18.863 48.206 24.133 11.238 2.695 11.238 18.823 0 21.518-42.297 10.12-59.564 27.406-69.684 69.704-1.357 5.609-6.068 8.424-10.759 8.424s-9.422-2.815-10.759-8.424c-10.14-42.297-27.406-59.584-69.704-69.704-1.537-0.379-2.854-0.998-3.972-1.796-7.066-5.050-5.729-17.386 3.972-19.721zM604.507 685.348c16.128-3.872 27.107-9.202 34.952-17.965 6.707-7.525 11.118-17.586 14.412-31.419 0.958-3.972 4.292-5.968 7.625-5.968s6.667 1.996 7.625 5.968c7.166 29.961 19.402 42.198 49.364 49.384 7.964 1.896 7.964 13.334 0 15.23-29.961 7.186-42.198 19.422-49.364 49.384-0.958 3.972-4.292 5.968-7.625 5.968s-6.667-1.996-7.625-5.968c-7.166-29.961-19.402-42.198-49.364-49.384-4.072-0.978-6.068-4.451-5.968-7.845 0.1-3.274 2.076-6.447 5.968-7.386z" /> -<glyph unicode="" glyph-name="custom-font" d="M583.676 422.045c1.238 0.519 2.415 1.158 3.513 1.856l-3.573 0.798 0.060-2.655zM572.775 419.011c-2.555-0.439-5.050-0.898-7.485-1.397-2.455-0.479-4.631-1.098-6.527-1.856-1.896-0.778-3.393-1.796-4.491-3.114-1.078-1.297-1.617-3.094-1.617-5.37 0-3.034 1.038-5.489 3.094-7.326 2.056-1.856 4.731-2.775 7.984-2.775 1.956 0 3.932 0.359 5.948 1.058s3.932 1.677 5.789 2.934c1.836 1.238 3.513 2.795 5.050 4.651 1.517 1.836 2.655 3.852 3.413 6.028l-0.259 10.2c-1.058-0.479-2.156-0.878-3.314-1.238-2.515-0.778-5.030-1.377-7.585-1.796zM722.265 384.119h44.912c23.694 0 42.916 19.222 42.916 42.916v107.47c0 11.018-8.943 19.961-19.961 19.961h-556.254c-11.018 0-19.961-8.943-19.961-19.961v-107.47c0-23.694 19.222-42.916 42.916-42.916h43.575c11.038 0 19.961-8.923 19.961-19.961l1.337-23.953c0-11.018 8.943-19.961 19.961-19.961h341.992c11.038 0 19.961 8.943 19.961 19.961l-1.317 23.953c0 11.038 8.923 19.961 19.961 19.961zM277.115 526.98l-36.169-36.169c-2.675-2.675-7.206-0.778-7.206 2.974v35.91c0 2.315 1.856 4.212 4.192 4.212l36.169 0.279c3.773 0.040 5.689-4.531 3.014-7.206zM490.578 380.885l-5.968 20.201h-42.158l-5.968-20.201h-28.684l36.509 107.53h38.445l36.509-107.53h-28.684zM588.008 380.885c-0.439 2.495-0.858 5.509-1.297 9.042s-0.759 7.126-0.978 10.839h-3.094c-1.517-4.132-3.733-7.905-6.607-11.338-2.874-3.413-6.348-6.088-10.42-7.984s-8.663-2.854-13.773-2.854c-4.771 0-9.022 0.958-12.715 2.854s-6.567 4.671-8.623 8.324c-2.076 3.633-3.094 8.064-3.094 13.274 0 4.89 0.938 8.923 2.834 12.136 1.916 3.194 4.671 5.749 8.324 7.665 3.633 1.896 8.004 3.473 13.114 4.711 5.11 1.258 10.919 2.375 17.426 3.353 3.154 0.539 5.789 1.058 7.905 1.537 2.116 0.499 3.733 1.278 4.811 2.375 1.078 1.078 1.637 2.655 1.637 4.711 0 2.715-0.978 5.050-2.934 7.006s-5.11 2.934-9.462 2.934c-3.034 0-5.769-0.539-8.224-1.617-2.435-1.098-4.531-2.675-6.268-4.731-1.737-2.076-3.054-4.571-3.912-7.505l-23.135 6.847c1.397 4.571 3.393 8.523 5.948 11.897s5.609 6.168 9.202 8.404c3.593 2.216 7.685 3.852 12.296 4.87 4.611 1.038 9.541 1.557 14.751 1.557 8.683 0 15.769-1.377 21.258-4.152s9.561-7.066 12.216-12.875c2.675-5.809 3.992-13.274 3.992-22.396v-13.214c0-3.912 0.1-7.845 0.259-11.797 0.16-3.972 0.379-7.944 0.639-11.897 0.279-3.972 0.639-7.964 1.058-11.977h-23.135zM462.233 467.895l-14.572-49.224h31.738l-14.572 49.224h-2.595zM235.085 620.531c11.851 0 21.458 9.607 21.458 21.458s9.625 21.458 21.458 21.458h84.834c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-84.834c-34.754 0-63.163-27.678-64.336-62.151-0.076-0.731-0.114-1.473-0.114-2.224 0-11.851 9.683-21.458 21.534-21.458zM660.472 663.447h85.429c11.833 0 21.458-9.625 21.458-21.458s9.607-21.458 21.458-21.458 21.458 9.607 21.458 21.458c0 35.497-28.878 64.374-64.374 64.374h-85.429c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM428.118 655.569c-1.278-3.174-1.397-5.569-0.2-8.743 1.118-2.934 10.559-19.282 12.536-21.039 3.593-3.154 7.046-3.014 11.378-1.936 7.246 1.757 14.532 4.93 21.698 7.086l12.416-7.106c5.33-9.022 1.058-29.702 14.392-31.998 4.611-0.798 17.286-0.719 22.117-0.24 4.811 0.479 8.204 3.314 9.721 7.865 2.415 7.226 2.635 16.368 4.91 23.774l12.815 7.585c2.795 0.778 21.897-8.444 27.965-7.725 1.757 0.22 4.371 1.637 5.649 2.854 1.876 1.836 11.717 18.903 12.516 21.598 2.096 6.966-1.537 9.801-6.108 14.152-2.315 2.196-14.033 11.378-14.412 13.334l0.259 15.15c4.232 5.429 17.785 13.494 20.121 19.362 1.178 2.954 0.958 5.629-0.2 8.563-1.118 2.854-10.539 19.003-12.436 20.6-3.613 3.014-7.226 2.894-11.478 1.836-7.106-1.717-14.532-5.17-21.698-7.066-4.112 2.555-8.104 5.529-12.815 6.926-4.032 10.28-0.778 30.94-15.33 32.417-4.89 0.479-16.987 0.539-21.718-0.16-12.296-1.796-9.422-22.915-13.753-31.558l-13.094-7.605-24.053 7.725c-3.573 0.719-7.326-0.599-9.661-3.413-2.036-2.455-11.318-18.664-12.076-21.478-0.958-3.613-0.299-7.246 2.176-10.1 4.511-5.25 12.935-10.14 17.765-15.29 0.459-0.479 0.918-0.898 0.978-1.597l-0.080-15.13c-6.787-6.068-14.791-11.478-20.3-18.644zM511.874 708.046c14.272 0 25.83-11.557 25.83-25.83s-11.557-25.83-25.83-25.83-25.83 11.537-25.83 25.83 11.557 25.83 25.83 25.83zM788.963 320.415h-0.014c-11.845 0-21.45-9.599-21.458-21.444l-0.014-21.139c0-11.833-9.625-21.458-21.458-21.458h-190.967c-5.651 0-11.072-2.23-15.091-6.202l-27.772-27.468-27.662 27.446c-4.018 3.988-9.452 6.226-15.112 6.226h-191.44c-11.833 0-21.458 9.625-21.458 21.444l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472h-0.014c-11.843 0-21.45-9.599-21.458-21.444l-0.014-21.141c0-35.497 28.878-64.374 64.374-64.374h182.601l36.479-36.191c4.184-4.15 9.647-6.226 15.112-6.226s10.909 2.068 15.091 6.202l36.614 36.215h182.148c35.497 0 64.374 28.878 64.374 64.36l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472z" /> -<glyph unicode="" glyph-name="custom-js" d="M722.263 384.119h44.912c23.694 0 42.916 19.222 42.916 42.916v107.47c0 11.018-8.943 19.961-19.961 19.961h-556.254c-11.018 0-19.961-8.943-19.961-19.961v-107.47c0-23.694 19.222-42.916 42.916-42.916h43.575c11.038 0 19.961-8.923 19.961-19.961l1.337-23.953c0-11.018 8.943-19.961 19.961-19.961h341.992c11.038 0 19.961 8.943 19.961 19.961l-1.317 23.953c0 11.038 8.923 19.961 19.961 19.961zM277.133 526.98l-36.189-36.169c-2.655-2.675-7.206-0.778-7.206 2.974v35.91c0 2.315 1.856 4.212 4.192 4.212l36.169 0.279c3.793 0.040 5.689-4.531 3.034-7.206zM387.517 491.289c-2.495 0-4.671-0.339-6.507-0.978-1.856-0.659-3.294-2.216-4.332-4.651s-1.537-6.328-1.537-11.657c0-4.332-0.719-8.144-2.116-11.398-1.417-3.254-3.274-5.968-5.549-8.144s-4.731-3.912-7.326-5.21c-2.615-1.317-5.17-2.236-7.665-2.775v-3.753c2.495-0.659 5.070-1.617 7.745-2.934 2.655-1.297 5.11-3.074 7.326-5.29 2.236-2.236 4.052-4.95 5.469-8.144 1.397-3.214 2.116-6.986 2.116-11.338 0-5.31 0.499-9.202 1.537-11.637 1.038-2.455 2.475-3.992 4.332-4.651 1.836-0.659 4.012-0.978 6.507-0.978v-19.721c-2.056-0.319-4.132-0.559-6.188-0.719-2.076-0.16-3.753-0.259-5.050-0.259-3.912 0-7.306 0.579-10.18 1.717-2.894 1.138-5.33 3.074-7.346 5.789-1.996 2.715-3.613 6.407-4.811 11.078-1.178 4.671-2.056 10.599-2.595 17.765-0.319 4.551-1.098 8.364-2.276 11.398-1.198 3.054-2.775 5.429-4.731 7.166s-4.192 2.834-6.687 3.274v17.266c2.395 0.539 4.571 1.677 6.527 3.413s3.553 4.252 4.811 7.505c1.238 3.254 2.036 7.386 2.355 12.376 0.539 7.066 1.377 12.935 2.515 17.606 1.158 4.671 2.715 8.384 4.731 11.158s4.451 4.731 7.326 5.869c2.894 1.138 6.328 1.717 10.36 1.717 1.517 0 3.254-0.12 5.21-0.339s3.972-0.479 6.028-0.818v-19.702zM478.44 436.536c0-9.122-1.357-16.727-4.072-22.815s-6.847-10.679-12.396-13.773c-5.529-3.094-12.595-4.631-21.179-4.631-1.078 0-2.395 0.060-3.912 0.16s-3.533 0.279-6.028 0.479l-1.138 24.113c1.198-0.2 2.415-0.379 3.673-0.479 1.238-0.1 2.256-0.16 3.014-0.16 4.132 0 7.306 0.559 9.521 1.717 2.236 1.138 3.813 2.954 4.731 5.449s1.377 5.869 1.377 10.1v67.947h26.408v-68.107zM585.57 410.387c-3.533-4.95-8.823-8.783-15.889-11.498s-15.809-4.072-26.229-4.072c-6.966 0-13.254 0.659-18.903 1.956s-10.539 3.294-14.671 5.948c-4.132 2.655-7.386 6.048-9.781 10.18-2.375 4.132-3.793 8.903-4.232 14.352l22.975 7.645c0.319-4.551 1.637-8.364 3.912-11.398 2.276-3.054 5.35-5.29 9.202-6.767 3.852-1.457 8.184-2.196 12.955-2.196 4.571 0 8.404 0.579 11.498 1.717s5.429 2.595 7.006 4.391c1.557 1.796 2.355 3.713 2.355 5.789 0 2.375-1.038 4.371-3.094 5.948-2.076 1.577-4.89 2.934-8.483 4.072-3.573 1.138-7.765 2.256-12.536 3.333-5.429 1.317-10.759 2.715-15.969 4.232-5.21 1.537-9.941 3.513-14.172 5.948-4.252 2.455-7.585 5.609-10.020 9.462-2.455 3.852-3.673 8.723-3.673 14.572 0 6.627 1.677 12.396 5.050 17.286s8.304 8.703 14.831 11.478c6.507 2.775 14.552 4.152 24.113 4.152 9.462 0 17.486-1.357 24.113-4.072s11.737-6.487 15.31-11.318c3.593-4.831 5.549-10.46 5.869-16.867l-23.454-6.687c0 3.154-0.519 5.928-1.557 8.324-1.018 2.375-2.475 4.371-4.312 5.948-1.856 1.557-4.132 2.755-6.847 3.573s-5.809 1.218-9.282 1.218c-4.132 0-7.645-0.479-10.519-1.457s-5.010-2.256-6.427-3.833c-1.417-1.577-2.116-3.393-2.116-5.449 0-2.615 1.118-4.751 3.333-6.447 2.236-1.677 5.27-3.094 9.122-4.232s8.124-2.256 12.795-3.333c4.671-0.978 9.501-2.216 14.512-3.673 4.99-1.457 9.661-3.393 14.013-5.789 4.332-2.395 7.845-5.609 10.499-9.681 2.655-4.092 3.992-9.222 3.992-15.41 0-6.627-1.757-12.416-5.29-17.346zM686.513 435.239c-2.395-0.439-4.591-1.537-6.607-3.274s-3.633-4.112-4.89-7.166c-1.258-3.034-2.036-6.847-2.355-11.398-0.559-7.166-1.417-13.094-2.615-17.765s-2.795-8.364-4.811-11.078c-1.996-2.715-4.451-4.651-7.326-5.789s-6.268-1.717-10.18-1.717c-1.317 0-2.974 0.1-4.97 0.259-2.016 0.16-4.052 0.399-6.108 0.719v19.721c2.495 0 4.671 0.319 6.507 0.978 1.856 0.659 3.254 2.196 4.252 4.651 0.958 2.435 1.457 6.328 1.457 11.637 0 4.352 0.699 8.124 2.116 11.338 1.417 3.194 3.234 5.908 5.469 8.144 2.216 2.216 4.651 3.992 7.326 5.29 2.655 1.317 5.23 2.276 7.745 2.934v3.753c-2.395 0.539-4.93 1.457-7.585 2.775-2.655 1.297-5.13 3.034-7.406 5.21-2.296 2.176-4.132 4.89-5.549 8.144s-2.116 7.066-2.116 11.398c0 5.33-0.499 9.222-1.457 11.657-0.998 2.435-2.395 3.992-4.252 4.651-1.836 0.639-4.012 0.978-6.507 0.978v19.702c2.056 0.339 4.032 0.599 5.948 0.818 1.896 0.22 3.613 0.339 5.13 0.339 4.012 0 7.465-0.579 10.34-1.717s5.33-3.094 7.346-5.869c1.996-2.775 3.573-6.487 4.711-11.158s1.976-10.539 2.535-17.606c0.419-4.99 1.278-9.122 2.515-12.376 1.258-3.254 2.854-5.769 4.811-7.505s4.132-2.874 6.527-3.413v-17.266zM235.085 620.531c11.851 0 21.458 9.607 21.458 21.458s9.625 21.458 21.458 21.458h84.834c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-84.834c-34.754 0-63.163-27.678-64.336-62.151-0.076-0.731-0.114-1.473-0.114-2.224 0-11.851 9.683-21.458 21.534-21.458zM660.472 663.447h85.429c11.833 0 21.458-9.625 21.458-21.458s9.607-21.458 21.458-21.458 21.458 9.607 21.458 21.458c0 35.497-28.878 64.374-64.374 64.374h-85.429c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM428.118 655.569c-1.278-3.174-1.397-5.569-0.2-8.743 1.118-2.934 10.559-19.282 12.536-21.039 3.593-3.154 7.046-3.014 11.378-1.936 7.246 1.757 14.532 4.93 21.698 7.086l12.416-7.106c5.35-9.022 1.058-29.702 14.392-31.998 4.611-0.798 17.286-0.719 22.117-0.24 4.811 0.479 8.204 3.314 9.721 7.865 2.415 7.226 2.635 16.368 4.91 23.774l12.815 7.585c2.795 0.778 21.897-8.444 27.965-7.725 1.757 0.22 4.371 1.637 5.649 2.854 1.876 1.836 11.717 18.903 12.516 21.598 2.096 6.966-1.537 9.801-6.108 14.152-2.315 2.196-14.033 11.378-14.412 13.334l0.259 15.15c4.232 5.429 17.785 13.494 20.121 19.362 1.178 2.954 0.958 5.629-0.2 8.563-1.118 2.854-10.539 19.003-12.436 20.6-3.613 3.014-7.226 2.894-11.478 1.836-7.106-1.717-14.532-5.17-21.698-7.066-4.112 2.555-8.104 5.529-12.815 6.926-4.032 10.28-0.778 30.94-15.33 32.417-4.89 0.479-16.987 0.539-21.718-0.16-12.296-1.796-9.422-22.915-13.733-31.558l-13.114-7.605-24.053 7.725c-3.573 0.719-7.326-0.599-9.661-3.413-2.036-2.455-11.318-18.664-12.076-21.478-0.958-3.613-0.299-7.246 2.176-10.1 4.511-5.25 12.935-10.14 17.765-15.29 0.459-0.479 0.918-0.898 0.978-1.597l-0.080-15.13c-6.787-6.068-14.791-11.478-20.3-18.644zM511.874 708.046c14.272 0 25.83-11.557 25.83-25.83s-11.557-25.83-25.83-25.83-25.83 11.537-25.83 25.83 11.557 25.83 25.83 25.83zM788.965 320.415h-0.014c-11.843 0-21.45-9.599-21.458-21.444l-0.014-21.141c0-11.833-9.625-21.458-21.458-21.458h-190.967c-5.651 0-11.072-2.23-15.091-6.202l-27.77-27.468-27.662 27.446c-4.018 3.988-9.452 6.226-15.112 6.226h-191.44c-11.833 0-21.458 9.625-21.458 21.444l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472h-0.014c-11.845 0-21.45-9.599-21.458-21.444l-0.014-21.139c0-35.497 28.878-64.374 64.374-64.374h182.601l36.479-36.191c4.184-4.15 9.647-6.226 15.112-6.226s10.911 2.068 15.091 6.202l36.612 36.215h182.148c35.497 0 64.374 28.878 64.374 64.36l0.014 21.125c0.008 11.851-9.593 21.464-21.444 21.472z" /> -<glyph unicode="" glyph-name="date-form" d="M768.636 743.12h-74.95v42.038c0 0.562-0.456 1.018-1.018 1.018h-119.468c-0.562 0-1.018-0.456-1.018-1.018v-42.038h-205.696v42.038c0 0.562-0.456 1.018-1.018 1.018h-119.466c-0.562 0-1.018-0.456-1.018-1.018v-42.038h-74.952c-23.662 0-42.198-22.11-42.198-50.334v-450.49c0-28.224 18.536-50.334 42.198-50.334h598.606c23.662 0 42.198 22.11 42.198 50.334v450.49c0 28.224-18.536 50.334-42.198 50.334zM170.834 242.296v344.266h597v-287.85l-63.75-63.75h-531.566c-0.77 1.342-1.686 3.894-1.686 7.334zM233.438 511.278h119.468c0.562 0 1.018-0.456 1.018-1.018v-83.852c0-0.562-0.456-1.020-1.020-1.020h-119.466c-0.562 0-1.018 0.456-1.018 1.018v83.854c0 0.562 0.456 1.018 1.018 1.018zM409.6 511.278h119.468c0.562 0 1.018-0.456 1.018-1.018v-83.852c0-0.562-0.456-1.020-1.020-1.020h-119.466c-0.562 0-1.018 0.456-1.018 1.018v83.854c0 0.562 0.456 1.018 1.018 1.018zM585.762 511.278h119.466c0.562 0 1.018-0.456 1.018-1.018v-83.854c0-0.562-0.456-1.018-1.018-1.018h-119.466c-0.562 0-1.018 0.456-1.018 1.018v83.852c0 0.562 0.456 1.020 1.020 1.020zM233.438 383h119.468c0.562 0 1.018-0.456 1.018-1.018v-83.298c0-0.562-0.456-1.018-1.018-1.018h-119.468c-0.562 0-1.018 0.456-1.018 1.018v83.298c0 0.562 0.456 1.018 1.018 1.018zM409.6 383h119.468c0.562 0 1.018-0.456 1.018-1.018v-83.298c0-0.562-0.456-1.018-1.018-1.018h-119.468c-0.562 0-1.018 0.456-1.018 1.018v83.298c0 0.562 0.456 1.018 1.018 1.018zM585.76 383h119.468c0.562 0 1.018-0.456 1.018-1.018v-83.298c0-0.562-0.456-1.018-1.018-1.018h-119.468c-0.562 0-1.018 0.456-1.018 1.018v83.298c0 0.562 0.456 1.018 1.018 1.018zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5zM932.536 404.86c-8.396 8.394-22.010 8.394-30.406 0l-22.786-22.786-9.772 9.774c-8.396 8.394-22.010 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.178-40.18 53.19 53.192c8.396 8.396 8.396 22.010 0 30.406z" /> -<glyph unicode="" glyph-name="delete" d="M896 754.389h-597.333c-14.507 0-27.989-7.296-35.968-19.413l-170.667-260.181c-9.387-14.336-9.387-32.853 0-47.147l170.667-260.181c7.936-12.117 21.461-19.413 35.968-19.413h597.333c23.765 0 43.008 19.243 43.008 43.008v520.32c0 23.765-19.243 43.008-43.008 43.008zM852.992 233.984h-531.115l-142.464 217.216 142.464 217.216h531.115v-434.389zM424.277 323.925c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l62.251 62.251 62.251-62.251c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-62.251 62.251 62.251 62.251c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-62.251-62.251-62.251 62.251c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l62.251-62.251-62.251-62.251c-16.811-16.811-16.811-44.032 0-60.8z" /> -<glyph unicode="" glyph-name="delete-forever" d="M744.405 735.957c-5.333 14.635-18.304 25.515-34.133 27.819l-6.101 24.405c-6.059 24.192-20.224 46.080-39.808 61.653-0.171 0.128-0.384 0.299-0.555 0.427-19.925 15.317-44.629 23.723-69.504 23.723h-164.565c-24.875 0-49.536-8.448-69.504-23.723-0.171-0.128-0.341-0.256-0.512-0.384-19.84-15.701-34.005-37.675-39.893-61.867l-6.059-24.235c-15.829-2.304-28.8-13.184-34.133-27.819-47.872-6.357-84.907-47.403-84.907-96.981v-54.869c0-23.552 11.648-44.416 29.44-57.216l23.381-327.509c-15.531-12.928-25.429-32.384-25.429-54.101v-27.435c0-53.973 43.904-97.877 97.877-97.877h384c53.973 0 97.877 43.904 97.877 97.877v27.435c0 21.717-9.899 41.173-25.429 54.101l23.381 327.509c17.792 12.8 29.44 33.664 29.44 57.216v54.869c0 49.579-37.035 90.624-84.907 96.981zM332.629 215.723l-21.291 297.984h401.365l-21.291-297.984h-358.784zM280.747 639.019c0 6.656 5.205 11.861 11.861 11.861h438.869c6.656 0 11.861-5.205 11.861-11.861v-39.296h-462.592v39.296zM403.413 767.616c1.365 5.675 4.651 10.709 9.472 14.635 5.035 3.755 10.837 5.76 16.853 5.76h164.565c6.016 0 11.819-2.005 16.853-5.76 4.779-3.883 8.107-9.088 9.6-15.019l2.219-8.917c-8.277-4.864-14.763-12.416-18.261-21.461h-194.176c-2.389 6.101-6.101 11.52-10.837 15.915l3.627 14.507s0.043 0.256 0.085 0.341zM715.861 117.845c0-6.656-5.205-11.861-11.861-11.861h-384c-6.656 0-11.861 5.205-11.861 11.861v11.861h407.723v-11.861zM609.835 383.488c-30.251 4.949-46.891 11.264-57.344 21.717s-16.768 27.093-21.717 57.344c-1.493 9.088-9.259 15.701-18.475 15.701s-16.981-6.613-18.475-15.701c-4.949-30.251-11.264-46.891-21.717-57.344s-27.093-16.768-57.344-21.717c-9.088-1.493-15.701-9.259-15.701-18.475s6.613-16.981 15.701-18.475c30.251-4.949 46.891-11.264 57.344-21.717 10.496-10.496 16.768-27.093 21.717-57.344 1.493-9.088 9.259-15.701 18.475-15.701s16.981 6.613 18.475 15.701c4.949 30.251 11.264 46.891 21.717 57.344 10.496 10.496 27.093 16.768 57.344 21.717v0c9.088 1.493 15.701 9.259 15.701 18.475s-6.613 16.981-15.701 18.475zM458.709 286.592c-15.061 3.584-21.205 9.728-24.789 24.789-0.939 4.011-6.699 4.011-7.637 0-3.584-15.061-9.728-21.205-24.789-24.789-4.011-0.939-4.011-6.699 0-7.637 15.061-3.584 21.205-9.728 24.789-24.789 0.939-4.011 6.699-4.011 7.637 0 3.584 15.061 9.728 21.205 24.789 24.789 4.011 0.939 4.011 6.699 0 7.637zM565.248 442.752c15.061-3.584 21.205-9.728 24.789-24.789 0.939-4.011 6.699-4.011 7.637 0 3.584 15.061 9.728 21.205 24.789 24.789 4.011 0.939 4.011 6.699 0 7.637-15.061 3.584-21.205 9.728-24.789 24.789-0.939 4.011-6.699 4.011-7.637 0-3.584-15.061-9.728-21.205-24.789-24.789-4.011-0.939-4.011-6.699 0-7.637z" /> -<glyph unicode="" glyph-name="dentistry" d="M804.181 762.283c-49.621 42.581-112.512 69.035-164.181 69.035-39.211 0-80.043-17.152-116.053-32.341-7.637-3.2-15.061-6.315-21.973-9.088-30.251 22.784-67.584 41.387-117.931 41.387-51.669 0-114.56-26.453-164.181-69.035-59.435-50.987-92.16-117.504-92.16-187.307 0-61.824 32.427-118.997 61.056-169.387 18.645-32.853 37.931-66.816 37.931-86.613 0-32.683 0-100.651 11.861-161.579 22.059-113.579 75.52-137.429 116.48-137.429 28.331 0 53.888 10.837 73.899 31.317 51.243 52.437 51.029 156.459 50.731 170.752 0.043 85.589 12.928 131.968 23.765 155.776 2.987 6.571 5.888 11.691 8.576 15.616 2.688-3.968 5.589-9.045 8.576-15.616 10.837-23.808 23.723-70.187 23.765-155.776-0.299-14.293-0.469-118.315 50.731-170.752 20.011-20.48 45.568-31.317 73.899-31.317 40.96 0 94.421 23.851 116.48 137.429 11.861 60.928 11.861 128.896 11.861 161.579 0 19.755 19.285 53.76 37.931 86.613 28.629 50.432 61.056 107.563 61.056 169.387 0 69.76-32.725 136.277-92.16 187.307zM760.491 448.043c-25.259-44.544-49.152-86.571-49.152-129.067 0-29.995 0-92.373-10.283-145.195-9.045-46.592-22.955-67.84-32.085-67.84-5.163 0-8.533 1.451-12.331 5.376-19.243 19.627-26.965 75.733-26.325 109.227 0 0.341 0 0.683 0 0.981 0 96.725-14.933 169.344-44.331 215.808-27.051 42.752-58.155 50.816-67.029 52.267-2.304 0.384-4.651 0.555-6.955 0.555s-4.651-0.171-6.955-0.555c-8.875-1.451-39.979-9.557-67.029-52.267-29.397-46.464-44.331-119.083-44.331-215.808 0-0.299 0-0.64 0-0.939 0.683-33.579-7.040-89.685-26.325-109.312-3.84-3.925-7.168-5.376-12.331-5.376-9.088 0-22.997 21.205-32.085 67.84-10.283 52.821-10.283 115.2-10.283 145.195 0 42.453-23.893 84.523-49.152 129.067-24.533 43.179-49.877 87.851-49.877 126.933 0 59.776 38.955 102.101 62.165 122.027 38.869 33.365 82.347 48.299 108.16 48.299 41.259 0 65.877-21.333 102.613-56.149 29.099-27.563 62.123-58.837 110.293-72.96 22.784-6.656 46.677 6.4 53.333 29.184s-6.4 46.677-29.184 53.333c-17.621 5.163-32.725 15.104-47.701 27.691 24.021 9.856 48.811 18.901 66.645 18.901 25.856 0 69.291-14.933 108.16-48.299 23.211-19.925 62.165-62.293 62.165-122.027 0-39.125-25.344-83.755-49.877-126.933z" /> -<glyph unicode="" glyph-name="desk" d="M960 512v128c0 17.664-14.336 32-32 32h-96v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-288h-199.008l-16 64h87.008c35.296 0 64 28.704 64 64v224c0 35.296-28.704 64-64 64h-384c-35.296 0-64-28.704-64-64v-224c0-35.296 28.704-64 64-64h87.008l-16-64h-135.008c-17.664 0-32-14.336-32-32s14.336-32 32-32v-448c0-17.664 14.336-32 32-32s32 14.336 32 32v320h448v-320c0-17.664 14.336-32 32-32s32 14.336 32 32v64h256v-64c0-17.664 14.336-32 32-32s32 14.336 32 32v448c17.664 0 32 14.336 32 32s-14.336 32-32 32zM896 608v-96h-64v96h64zM704 768h64v-256h-64v256zM127.968 864h384.032v-224h-384l-0.032 224zM280.992 576h78.016l16-64h-110.016l16 64zM128 448h768v-64h-768v64zM896 320v-64h-256v64h256zM640 128v64h256v-64h-256z" /> -<glyph unicode="" glyph-name="desktop" d="M938.667 702.123c0 71.253-57.771 128.981-128.981 128.981h-595.371c-71.253 0-128.981-57.771-128.981-128.981v-340.352s0-0.128 0-0.213c0-0.085 0-0.128 0-0.213v-84.139c0-71.253 57.771-128.981 128.981-128.981h228.181l-21.248-42.539h-122.581c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h144.043c1.749-0.213 3.499-0.341 5.291-0.341h128c1.792 0 3.541 0.128 5.291 0.341h144.043c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-122.581l-21.248 42.539h228.181c71.253 0 128.981 57.771 128.981 128.981v84.139s0 0.128 0 0.213c0 0.085 0 0.128 0 0.213v340.352zM171.349 702.123c0 23.723 19.285 43.008 43.008 43.008h595.328c23.723 0 43.008-19.285 43.008-43.008v-297.387h-681.344v297.387zM852.651 277.205c0-23.723-19.285-43.008-43.008-43.008h-595.328c-23.723 0-43.008 19.285-43.008 43.008v41.131h681.344v-41.131zM512 255.019c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333-21.333-9.557-21.333-21.333 9.557-21.333 21.333-21.333z" /> -<glyph unicode="" glyph-name="destruction" d="M562.944 296.192c83.328 83.328 83.328 218.88 0 302.165-47.531 47.531-112.085 67.925-174.208 61.227-0.896 1.067-1.792 2.091-2.816 3.115l-25.813 25.813c-37.888 37.888-97.28 41.344-139.136 10.496l-61.397 61.397c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l61.397-61.397c-13.525-18.304-20.864-40.32-20.864-63.488 0-28.587 11.136-55.467 31.36-75.648l25.813-25.813c0.939-0.939 1.963-1.877 2.987-2.731-0.811-7.68-1.237-15.403-1.237-23.211 0-57.088 22.229-110.72 62.592-151.083 41.643-41.643 96.384-62.464 151.083-62.464s109.44 20.821 151.083 62.464zM284.416 633.813c3.285 0 6.528-0.768 9.515-2.261l-66.389-66.389c-1.92 3.755-2.261 7.339-2.261 9.515 0 3.243 0.811 9.515 6.144 14.848l19.072 19.072s0 0 0 0 0 0 0 0l19.072 19.072c4.096 4.096 9.472 6.144 14.848 6.144zM284.16 447.275c0 34.091 13.269 66.176 37.376 90.283 24.875 24.875 57.6 37.333 90.283 37.333s65.365-12.459 90.283-37.333c49.792-49.792 49.792-130.773 0-180.565s-130.773-49.792-180.565 0c-24.107 24.107-37.376 56.192-37.376 90.283zM938.368 497.024c-3.029 17.493-16.512 31.36-33.92 34.816l-162.645 32.512 66.133 165.333c6.613 16.555 2.347 35.456-10.752 47.531s-32.256 14.891-48.256 6.955l-121.899-60.245-26.837 116.651c-3.285 14.251-13.611 25.856-27.349 30.805-13.781 4.949-29.099 2.56-40.704-6.357l-131.627-101.035c-18.859-14.464-22.4-41.472-7.936-60.288 14.464-18.859 41.472-22.4 60.288-7.936l78.549 60.288 24.021-104.448c2.944-12.8 11.605-23.595 23.467-29.227s25.685-5.504 37.461 0.299l69.973 34.603-43.605-109.056c-4.736-11.861-3.968-25.216 2.133-36.437s16.853-19.157 29.355-21.675l104.277-20.864-117.973-70.784c-11.349-6.827-18.944-18.475-20.565-31.616s2.901-26.283 12.288-35.669l69.632-69.632-116.011 23.595c-22.741 4.608-45.056-9.643-50.432-32.213l-28.416-119.936-76.544 51.029c-19.755 13.184-46.464 7.851-59.648-11.947s-7.851-46.464 11.947-59.648l128-85.333c7.168-4.779 15.488-7.211 23.851-7.211 5.333 0 10.667 0.981 15.744 2.987 13.099 5.163 22.827 16.384 26.069 30.080l33.067 139.563 215.168-43.776c18.603-3.797 37.461 5.077 46.464 21.803s5.931 37.333-7.467 50.773l-131.712 131.712 166.101 99.669c15.232 9.131 23.296 26.709 20.267 44.203z" /> -<glyph unicode="" glyph-name="diamond" d="M991.6 535.040c1.232 22.448-3.904 44.96-15.392 65.36l-74 131.216c-24.192 42.4-71.728 68.752-124.064 68.752h-532.288c-52.336 0-99.872-26.336-124.144-68.896l-73.936-131.088c-11.472-20.368-16.608-42.896-15.376-65.344 0-0.288-0.080-0.544-0.080-0.832 0-0.336 0.096-0.656 0.096-0.992 0.048-0.592-0.032-1.184 0-1.792 0.080-0.896 0.336-1.76 0.432-2.672 0.080-0.48 0.128-0.96 0.224-1.424 2.704-22.192 11.344-43.408 25.616-61.6l359.424-454.048c22.048-27.872 56.272-43.856 93.872-43.856s71.808 15.984 93.872 43.856l359.488 454.128c14.192 18.032 22.832 39.264 25.552 61.504 0.112 0.48 0.16 0.976 0.24 1.472 0.096 0.896 0.352 1.744 0.432 2.64 0.048 0.592-0.032 1.184 0 1.76 0 0.336 0.096 0.656 0.096 0.992 0 0.288-0.080 0.544-0.080 0.832zM844.608 416.416l-93.024 85.808h160.96l-67.92-85.808zM512 111.84l-117.456 390.384h234.912l-117.456-390.384zM111.456 502.224h160.96l-93.024-85.808-67.92 85.808zM611.952 736.368l23.040-170.16h-245.984l23.040 170.16h199.904zM846.544 700.048l73.92-131.056c0.512-0.912 0.864-1.84 1.328-2.768h-222.208l-23.040 170.16h101.6c28.96 0 55.84-14.32 68.4-36.336zM177.376 699.904c12.64 22.16 39.52 36.464 68.48 36.464h101.6l-23.040-170.16h-222.192c0.464 0.912 0.8 1.84 1.312 2.752l73.856 130.944zM219.216 366.096l116.976 107.904 124.096-412.448-241.072 304.544zM563.696 61.552l124.096 412.448 116.976-107.904-241.072-304.544zM512 832.176c17.664 0 32 14.336 32 32v31.984c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.984c0-17.664 14.336-32 32-32zM105.648 809.584c6.256-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.64 9.376c12.496 12.496 12.496 32.768 0 45.248l-31.984 31.968c-12.496 12.496-32.752 12.496-45.264 0-12.496-12.496-12.496-32.768 0-45.248l31.984-31.968zM895.728 800.208c8.192 0 16.368 3.12 22.624 9.376l31.984 31.968c12.496 12.48 12.496 32.752 0 45.248s-32.752 12.496-45.264 0l-31.984-31.968c-12.496-12.48-12.496-32.752 0-45.248 6.256-6.256 14.432-9.376 22.64-9.376z" /> -<glyph unicode="" glyph-name="distance" d="M896 617.984c-23.765 0-43.008-19.243-43.008-43.008v-256c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v256c0 23.765-19.243 43.008-43.008 43.008zM128 617.984c-23.765 0-43.008-19.243-43.008-43.008v-256c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v256c0 23.765-19.243 43.008-43.008 43.008zM803.755 423.125c0.427 0.597 0.768 1.237 1.152 1.877 0.341 0.597 0.725 1.152 1.024 1.749 0.341 0.64 0.64 1.28 0.939 1.963 0.299 0.64 0.597 1.237 0.853 1.877s0.469 1.28 0.725 1.92c0.256 0.683 0.512 1.365 0.725 2.048 0.213 0.64 0.341 1.28 0.512 1.963 0.171 0.725 0.384 1.408 0.512 2.133 0.171 0.768 0.256 1.536 0.341 2.261 0.085 0.64 0.213 1.237 0.256 1.877 0.299 2.816 0.299 5.675 0 8.491-0.043 0.64-0.171 1.237-0.256 1.877-0.128 0.768-0.213 1.536-0.341 2.261s-0.341 1.408-0.512 2.133c-0.171 0.64-0.299 1.323-0.512 1.963-0.213 0.683-0.469 1.365-0.725 2.048-0.213 0.64-0.427 1.28-0.725 1.92-0.256 0.64-0.555 1.237-0.853 1.877s-0.597 1.323-0.939 1.963c-0.299 0.597-0.683 1.152-1.024 1.749-0.384 0.64-0.725 1.28-1.152 1.877-0.427 0.64-0.896 1.237-1.365 1.877-0.384 0.512-0.725 1.024-1.152 1.493-0.896 1.109-1.835 2.133-2.859 3.157l-128 128c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l54.613-54.613h-304.384l54.613 54.613c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-128-128c-1.024-1.024-1.963-2.048-2.859-3.157-0.384-0.469-0.768-1.024-1.109-1.493-0.469-0.597-0.939-1.237-1.365-1.877-0.427-0.597-0.768-1.237-1.152-1.877-0.341-0.597-0.725-1.152-1.024-1.749-0.341-0.64-0.64-1.28-0.939-1.963-0.299-0.64-0.597-1.237-0.853-1.877s-0.469-1.28-0.725-1.92c-0.256-0.683-0.512-1.365-0.725-2.048-0.213-0.64-0.341-1.28-0.512-1.963-0.171-0.725-0.384-1.408-0.512-2.133-0.128-0.768-0.256-1.493-0.341-2.261-0.085-0.64-0.213-1.237-0.256-1.877-0.299-2.816-0.299-5.675 0-8.491 0.043-0.64 0.171-1.237 0.256-1.877 0.128-0.768 0.213-1.536 0.341-2.261s0.341-1.408 0.512-2.133c0.171-0.64 0.299-1.323 0.512-1.963 0.213-0.683 0.469-1.365 0.725-2.048 0.213-0.64 0.427-1.28 0.725-1.92 0.256-0.64 0.555-1.237 0.853-1.877s0.597-1.323 0.939-1.963c0.299-0.597 0.683-1.152 1.024-1.749 0.384-0.64 0.725-1.237 1.152-1.877s0.896-1.237 1.365-1.877c0.384-0.512 0.725-1.024 1.109-1.493 0.896-1.109 1.835-2.133 2.859-3.157l128-128c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-54.613 54.613h304.384l-54.613-54.613c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l128 128c1.024 1.024 1.963 2.048 2.859 3.157 0.384 0.512 0.768 1.024 1.152 1.493 0.469 0.597 0.939 1.237 1.365 1.877z" /> -<glyph unicode="" glyph-name="diversity" d="M879.957 304.384c-11.691 6.699-24.021 11.349-36.523 14.037 7.296 46.891-13.483 95.189-55.637 121.6-1.323 0.853-2.688 1.621-4.011 2.432-27.349 15.744-61.141 19.84-92.629 11.307-22.912-6.229-36.437-29.867-30.208-52.779s29.867-36.437 52.779-30.208c9.6 2.603 19.499 1.579 27.221-2.859 0.427-0.256 0.811-0.469 1.237-0.725 15.104-9.472 20.907-29.44 13.227-45.44-7.211-15.019-37.035-24.107-49.749-25.984l-56.875-6.4 22.955-52.821c4.779-11.904 12.075-42.24 2.731-56.064-9.941-14.763-30.080-19.84-45.909-11.605-0.427 0.213-0.853 0.469-1.237 0.683-7.723 4.395-13.611 12.416-16.213 22.016l-43.008 158.421 116.053 116.053c23.083 23.083 36.267 54.4 36.224 85.973 0 1.536 0 3.115-0.085 4.651-1.963 49.707-33.536 91.733-77.867 108.715 3.883 12.203 5.973 25.216 5.973 38.699 0 70.784-57.557 128.341-128.341 128.341s-128.341-57.557-128.341-128.341c0-13.483 2.091-26.453 5.973-38.699-44.331-16.981-75.904-59.008-77.867-108.715-0.043-1.579-0.085-3.115-0.085-4.651-0.043-31.573 13.141-62.891 36.224-85.973 16.811-16.811 44.032-16.811 60.8 0 16.811 16.811 16.811 44.032 0 60.8-7.040 7.040-11.051 16.128-11.051 25.003 0 0.469 0 0.981 0 1.451 0.683 17.835 15.147 32.768 32.896 34.048 16.597 1.237 39.381-20.181 47.317-30.251l33.707-45.184 34.603 45.269c8.235 10.752 31.275 31.317 47.232 30.165 17.749-1.28 32.171-16.256 32.896-34.048 0-0.469 0-0.981 0-1.451 0-8.875-4.011-18.005-11.051-25.045l-116.267-116.267-159.104 41.472c-31.573 8.235-65.28 3.755-92.501-12.245-1.323-0.768-2.688-1.621-3.968-2.432-41.856-26.837-62.123-75.307-54.4-122.112-12.629-2.901-24.875-7.723-36.395-14.464v0c-61.056-35.797-81.579-114.603-45.781-175.616 17.323-29.568 45.141-50.603 78.336-59.264 10.795-2.816 21.717-4.224 32.597-4.224 22.528 0 44.757 5.973 64.725 17.707 11.52 6.741 21.675 15.104 30.379 24.704 21.675-17.323 48.469-26.581 75.776-26.581 19.413 0 39.083 4.651 57.301 14.421 1.408 0.768 2.773 1.536 4.096 2.304 27.264 15.915 47.616 43.179 55.851 74.752 5.973 22.997-7.765 46.464-30.763 52.437s-46.464-7.765-52.437-30.763c-2.517-9.6-8.32-17.707-16.043-22.187-0.384-0.213-0.811-0.469-1.237-0.683-15.744-8.405-35.925-3.499-45.995 11.136-9.472 13.739-2.517 44.117 2.176 56.107l22.741 52.523-57.216 6.315c-12.715 1.749-42.667 10.539-50.048 25.472-7.851 15.957-2.261 35.968 12.757 45.611 0.384 0.256 0.811 0.512 1.195 0.725 7.637 4.523 17.536 5.632 27.179 3.157l158.848-41.387 43.008-158.421c8.533-31.488 29.184-58.539 56.619-74.155 1.365-0.768 2.731-1.536 4.096-2.261 17.92-9.344 37.205-13.824 56.235-13.824 27.733 0 54.955 9.557 76.757 27.349 8.789-9.515 19.072-17.749 30.635-24.405 20.053-11.477 41.941-16.939 63.573-16.939 44.544 0 87.893 23.168 111.573 64.512 35.157 61.397 13.824 139.989-47.573 175.147zM519.979 746.368c23.339 0 42.325-18.987 42.325-42.325s-18.987-42.325-42.325-42.325-42.325 18.987-42.325 42.325 18.987 42.325 42.325 42.325zM266.539 179.328c-2.859-10.923-9.813-20.139-19.541-25.856-9.771-5.717-21.163-7.296-32.085-4.437s-20.139 9.813-25.856 19.541c-11.819 20.139-5.035 46.123 15.104 57.941v0c9.771 5.717 21.163 7.296 32.085 4.437s20.139-9.813 25.856-19.541c5.717-9.771 7.296-21.163 4.437-32.085zM852.907 171.989c-5.632-9.813-14.72-16.853-25.643-19.797s-22.315-1.493-32.128 4.139c-9.813 5.632-16.853 14.72-19.797 25.643s-1.493 22.315 4.139 32.128c5.632 9.813 14.72 16.853 25.643 19.797 3.712 1.024 7.424 1.493 11.179 1.493 7.296 0 14.464-1.877 20.992-5.632 9.813-5.632 16.853-14.72 19.797-25.643s1.493-22.315-4.139-32.128z" /> -<glyph unicode="" glyph-name="done-all" d="M501.333 331.904l215.424 215.424s18.603 18.603 18.603 18.603c16.811 16.811 16.811 44.032 0 60.8s-44.032 16.811-60.8 0l-49.024-49.024s0 0 0 0l-184.96-184.96 60.8-60.8zM926.421 625.792c-16.811 16.811-44.032 16.811-60.8 0l-353.579-353.579-113.579 113.579c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l17.579-17.579-35.2-35.2-98.56 98.56c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l159.36-159.36 96 96 96-96 414.421 414.421c16.811 16.811 16.811 44.032 0 60.8z" /> -<glyph unicode="" glyph-name="done-outline" d="M916.011 726.144l-29.696 29.696c-16.256 16.256-37.845 25.173-60.8 25.173s-44.587-8.96-60.8-25.173l-329.813-329.813-90.283 90.283c-33.536 33.536-88.107 33.536-121.6 0l-29.696-29.696c-16.256-16.256-25.173-37.845-25.173-60.8s8.96-44.587 25.173-60.8l180.821-180.821c16.768-16.768 38.784-25.131 60.8-25.131s44.032 8.363 60.8 25.131l420.309 420.309c16.256 16.256 25.173 37.845 25.173 60.8s-8.96 44.587-25.173 60.8zM434.901 245.035l-180.821 180.821 29.696 29.696 151.125-151.083 390.613 390.613 29.696-29.696-420.309-420.309z" /> -<glyph unicode="" glyph-name="download" d="M960 466.8c-17.664 0-32-14.336-32-32v-349.328c0-26.816-21.824-48.64-48.64-48.64h-734.72c-26.816 0-48.64 21.824-48.64 48.64v349.328c0 17.664-14.336 32-32 32s-32-14.336-32-32v-349.328c0-62.112 50.528-112.64 112.64-112.64h734.72c62.112 0 112.64 50.528 112.64 112.64v349.328c0 17.664-14.336 32-32 32zM491.6 250.64c1.488-1.488 3.136-2.832 4.896-4 0.784-0.528 1.648-0.896 2.48-1.344 1.008-0.544 1.968-1.152 3.040-1.6 1.056-0.432 2.16-0.688 3.248-1.008 0.912-0.272 1.792-0.624 2.736-0.816 2.064-0.416 4.16-0.624 6.272-0.624s4.192 0.224 6.272 0.624c0.944 0.192 1.824 0.544 2.736 0.816 1.088 0.32 2.192 0.576 3.248 1.008 1.056 0.448 2.032 1.040 3.040 1.6 0.832 0.448 1.68 0.816 2.48 1.344 1.76 1.184 3.408 2.512 4.896 4l250.464 250.464c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-195.856-195.856v540.672c0 17.664-14.336 32-32 32s-32-14.336-32-32v-540.672l-195.856 195.856c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l250.464-250.464z" /> -<glyph unicode="" glyph-name="dribbble" d="M813.696 741.968c-83.312 83.312-192.512 124.96-301.696 124.96s-218.384-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.312-83.312 192.512-124.96 301.696-124.96s218.384 41.648 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM512 780.928c76.784 0 149.696-25.232 209.248-71.776-48.176-46.832-102.576-84.736-162.256-112.928-0.112-0.048-0.24-0.112-0.352-0.16-37.68 68.944-77.584 131.52-113.6 178.32 21.808 4.32 44.224 6.544 66.96 6.544zM271.12 681.152c26.048 26.048 55.552 47.344 87.504 63.472 31.952-37.44 74.8-99.632 119.2-179.872-36.448-11.264-74.416-19.408-113.6-24.336-76.496-9.616-141.104-4.72-177.952 0.112 16.096 52.528 44.896 100.656 84.848 140.608zM171.328 440.256c0 5.152 0.128 10.288 0.352 15.408 24.688-3.392 60.176-6.8 103.104-6.8 29.168 0 61.744 1.568 96.656 5.808 50.784 6.144 99.856 17.136 146.72 32.752 1.52-3.072 3.024-6.144 4.528-9.264 3.6-7.424 7.104-14.832 10.56-22.208-39.488-13.616-77.040-31.056-112.368-52.272-69.616-41.824-130.4-98.208-181.28-168.064-44.288 58.704-68.272 129.824-68.272 204.656zM512 99.6c-77.68 0-151.392 25.84-211.328 73.44 45.424 65.488 100.048 117.856 162.832 155.92 32.56 19.744 67.424 35.744 104.304 47.92 38.624-95.392 62.88-183.216 69.808-253.44-39.456-15.632-81.904-23.824-125.616-23.824zM617.552 478.576c-6.128 13.424-12.016 25.856-17.456 37.104-0.64 1.328-1.296 2.656-1.952 3.984 67.664 32.304 129.28 75.376 183.776 128.512 36.88-47.68 60.16-103.792 67.888-163.552-46.448 6.48-117.968 11.424-199.888-0.496-10.896-1.584-21.68-3.44-32.368-5.536zM752.88 199.376c-10.896-10.896-22.416-20.944-34.448-30.144-12.336 77.968-38.768 158.88-66.24 228.192 2.32 0.384 4.608 0.784 6.944 1.136 81.12 12.24 151.616 5.312 190.88-1.008-9.296-74.816-42.976-144-97.136-198.176z" /> -<glyph unicode="" glyph-name="dual-button" d="M682.668 361.834h-170.674v13.23c60.14 0 109.060 48.92 109.060 109.040s-48.92 109.060-109.060 109.060v5.658h340.37c23.97 0 43.472-20.308 43.472-45.274v-111.358c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v111.358c0 48.674-38.792 88.274-86.472 88.274h-680.726c-47.68 0-86.472-39.6-86.472-88.274v-146.44c0-48.676 38.792-88.276 86.472-88.276h511.028c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM511.992 418.064c-36.42 0-66.040 29.62-66.040 66.040s29.62 66.060 66.040 66.060 66.060-29.64 66.060-66.060-29.64-66.040-66.060-66.040zM552.292 502.484h-27.26c-0.96 0-1.82 0.62-2.12 1.54l-8.42 25.92c-0.4 1.22-1.46 1.82-2.5 1.82-1.060 0-2.1-0.62-2.48-1.82l-8.42-25.92c-0.3-0.92-1.16-1.54-2.12-1.54h-27.26c-2.54 0-3.6-3.26-1.56-4.74l22.060-16.040c0.78-0.56 1.12-1.56 0.82-2.48l-8.44-25.94c-0.78-2.4 1.98-4.42 4.040-2.92l22.060 16.020c0.4 0.28 0.82 0.44 1.3 0.44 0.46 0 0.92-0.14 1.32-0.44l22.060-16.020c2.040-1.5 4.8 0.52 4.020 2.92l-8.42 25.94c-0.3 0.92 0.040 1.92 0.82 2.48l22.040 16.040c2.060 1.48 1 4.74-1.54 4.74zM968.532 359.484l-249.32 99.14c-1.96 0.78-3.94 1.16-5.9 1.16-3.96 0-7.76-1.58-10.78-4.6-4.5-4.52-5.8-10.76-3.44-16.68l99.14-249.32c3.68-9.3 11.94-11.68 18.44-10.8s13.84 5.36 14.94 15.3l9.98 89.84c1.92 17.28 15.32 30.68 32.6 32.6l89.84 9.98c9.94 1.1 14.42 8.44 15.3 14.94 0.86 6.5-1.5 14.76-10.8 18.44z" /> -<glyph unicode="" glyph-name="duplicator" d="M614.927 235.080c22.756 0 41.2 18.444 41.2 41.2v343.429c0 22.756-18.444 41.2-41.2 41.2h-205.858c-22.756 0-41.2-18.444-41.2-41.2v-343.429c0-22.756 18.444-41.2 41.2-41.2h205.858zM618.46 401.435v-113.059c0-8.244-6.687-14.929-14.931-14.929h-107.031l121.962 127.99zM785.751 332.581c-11.851 0-21.458-9.605-21.458-21.458v-126.609c0-18.987-15.446-34.433-34.433-34.433h-435.719c-18.987 0-34.433 15.446-34.433 34.433v206.8l44.451-51.481c4.244-4.914 10.23-7.435 16.252-7.435 4.966 0 9.959 1.717 14.015 5.218 8.97 7.745 9.963 21.294 2.218 30.265l-82.152 95.142c-4.076 4.721-10.004 7.433-16.24 7.433s-12.166-2.713-16.242-7.433l-82.152-95.142c-7.745-8.97-6.753-22.52 2.218-30.265s22.52-6.753 30.265 2.218l44.453 51.481v-206.8c0-42.651 34.698-77.349 77.349-77.349h435.719c42.651 0 77.349 34.698 77.349 77.349v126.609c0 11.853-9.605 21.458-21.458 21.458zM884.968 554.394c-8.968 7.745-22.52 6.753-30.265-2.216l-47.493-55.005v214.311c0 42.651-34.698 77.349-77.349 77.349h-435.719c-42.651 0-77.349-34.698-77.349-77.349v-126.611c0-11.851 9.605-21.458 21.458-21.458s21.458 9.607 21.458 21.458v126.611c0 18.987 15.446 34.433 34.433 34.433h435.719c18.987 0 34.433-15.446 34.433-34.433v-207.265l-41.409 47.958c-7.745 8.97-21.296 9.963-30.265 2.216-8.97-7.745-9.963-21.294-2.218-30.265l82.152-95.14c4.076-4.721 10.004-7.435 16.24-7.435v0c6.236 0 12.164 2.713 16.24 7.435l82.152 95.14c7.745 8.97 6.753 22.52-2.218 30.265z" /> -<glyph unicode="" glyph-name="earthquake" d="M896 491.008h-128c-19.755 0-36.949-13.44-41.728-32.597l-43.691-175.189-64.896 259.584c-4.181 16.725-17.963 29.355-34.987 32.043s-34.048-5.035-43.179-19.669l-53.035-84.864-60.8 243.157c-4.864 19.499-22.571 33.067-42.752 32.555-20.096-0.469-37.205-14.848-41.131-34.56l-60.757-303.787-29.269 58.581c-7.296 14.549-22.187 23.765-38.443 23.765h-85.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h58.752l73.429-146.901c8.235-16.427 25.984-25.856 44.16-23.381 18.219 2.432 32.853 16.171 36.437 34.176l47.829 239.147 38.955-155.819c4.181-16.725 17.963-29.355 34.987-32.043s34.048 5.035 43.179 19.669l53.035 84.864 82.133-328.491c4.779-19.157 21.973-32.555 41.728-32.555v0c19.755 0 36.949 13.44 41.728 32.597l77.227 309.717h94.379c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="echo" d="M587.648 522.667c-20.224 20.224-47.061 31.36-75.648 31.36s-55.467-11.136-75.648-31.36c-20.224-20.224-31.36-47.061-31.36-75.648s11.136-55.467 31.36-75.648c20.224-20.224 47.061-31.36 75.648-31.36s55.467 11.136 75.648 31.36c20.224 20.224 31.36 47.061 31.36 75.648s-11.136 55.467-31.36 75.648c0 0 0 0 0 0zM526.848 432.171c-5.333-5.333-11.605-6.144-14.848-6.144s-9.515 0.811-14.848 6.144c-5.333 5.333-6.144 11.605-6.144 14.848s0.811 9.515 6.144 14.848c5.333 5.333 11.605 6.144 14.848 6.144s9.515-0.811 14.848-6.144v0c5.333-5.333 6.144-11.605 6.144-14.848s-0.811-9.515-6.144-14.848zM693.248 628.267c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8 66.432-66.432 66.432-174.507 0-240.896-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c99.968 99.968 99.968 262.571 0 362.539zM391.552 628.267c-16.811 16.811-44.032 16.811-60.8 0-99.968-99.968-99.968-262.571 0-362.539 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8-66.432 66.432-66.432 174.507 0 240.896 16.811 16.811 16.811 44.032 0 60.8zM826.411 718.763c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8 56.363-56.363 87.381-131.285 87.381-210.944s-31.019-154.624-87.381-210.944c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c149.845 149.845 149.845 393.685 0 543.531zM171.008 447.019c0 79.701 31.019 154.624 87.381 210.944 16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0-149.845-149.845-149.845-393.685 0-543.531 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8-56.363 56.363-87.381 131.285-87.381 210.944z" /> -<glyph unicode="" glyph-name="elementor" d="M813.696 741.952c-166.624 166.624-436.784 166.624-603.408 0s-166.624-436.784 0-603.392c166.624-166.624 436.784-166.624 603.408 0s166.624 436.784 0 603.392zM405.424 262.384h-71.040v355.296h71.040v-355.296zM689.6 262.384h-213.168v71.040h213.168v-71.040zM689.6 404.528h-213.168v71.040h213.168v-71.040zM689.6 546.656h-213.168v71.024h213.168v-71.024z" /> -<glyph unicode="" glyph-name="email-form" d="M503.386 310.974v185.27c0 19.992-16.264 36.256-36.256 36.256h-303.040c-19.992 0-36.256-16.264-36.256-36.256v-186.48c0-9.712 3.79-18.836 10.672-25.69 6.846-6.816 15.924-10.566 25.578-10.566h0.152l303.042 1.208c19.91 0.082 36.11 16.346 36.11 36.258zM223.432 427.73l-52.598-41.574v80.18l52.598-38.606zM211.946 489.5h204.222l-100.732-75.958-103.49 75.958zM460.386 468.988v-82.852l-53.644 42.402 53.644 40.452zM170.834 316.534v14.81l88.554 69.994 32.732-24.026c7.006-5.14 15.18-7.708 23.35-7.708 8.338 0 16.672 2.674 23.752 8.014l32.034 24.156 89.13-70.452v-13.636l-289.552-1.154zM661.984 459.498c-7.548 4.614-16.688 7.006-27.026 7.006-30.98 0-53.466-23.568-53.466-56.040 0-32.698 22.486-56.428 53.466-56.428 13.898 0 25.544 4.246 34.2 12.376 5.612-7.968 14.856-12.376 26.514-12.376 27.124 0 43.974 23.29 43.974 60.78 0 53.672-41.534 92.626-98.756 92.626-59.194 0-100.536-39.472-100.536-95.99 0-56.866 41.016-96.582 99.746-96.582 9.18 0 19.172 1.208 28.136 3.396 6.116 1.494 11.178 5.398 14.254 10.99 3.132 5.696 3.738 12.494 1.66 18.654l-2.218 6.578-6.188-3.148c-10.058-5.118-23.050-8.052-35.644-8.052-41.602 0-69.554 27.392-69.554 68.164 0 40.54 28.268 67.776 70.344 67.776 18.358 0 34.072-5.016 45.928-13.918h-24.834v-5.812zM695.94 456.83c9.532-10.968 14.896-25.476 14.896-42.412 0-18.654-3.968-29.792-10.612-29.792-1.496 0-4.284 0-4.284 7.442v64.762zM639.11 385.216c-14.352 0-23.27 9.674-23.27 25.248 0 15.334 8.916 24.86 23.27 24.86s23.27-9.526 23.27-24.86c0-15.574-8.916-25.248-23.27-25.248zM779.284 621.304h-526.784c-21.56 0-39.102-17.542-39.102-39.102 0-11.876 9.626-21.5 21.5-21.5 10.542 0 19.314 7.588 21.148 17.602h519.34v-299.608l-47.084-47.084h-472.254c-1.834 10.014-10.606 17.602-21.148 17.602-11.874 0-21.5-9.624-21.5-21.5 0-21.56 17.542-39.102 39.102-39.102h526.786c21.56 0 39.102 17.542 39.102 39.102v354.49c0 21.56-17.542 39.102-39.102 39.102zM236.668 660.168h345.764c12.958 0 23.5 10.542 23.5 23.5v124c0 12.958-10.542 23.5-23.5 23.5h-345.764c-12.958 0-23.5-10.542-23.5-23.5v-124c0-12.958 10.542-23.5 23.5-23.5zM256.168 788.168h306.764v-85h-306.764v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5zM932.536 404.86c-8.396 8.394-22.010 8.394-30.406 0l-22.784-22.786-9.774 9.774c-8.396 8.394-22.008 8.398-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.178-40.18 53.19 53.192c8.396 8.396 8.396 22.010 0 30.406z" /> -<glyph unicode="" glyph-name="envelope" d="M864 800h-704c-70.576 0-128-57.424-128-128v-448c0-70.576 57.424-128 128-128h704c70.576 0 128 57.424 128 128v448c0 70.576-57.424 128-128 128zM554.544 407.968c-29.84-20.912-70.16-20.96-100.096-0.224l-284.128 328.256h682.432l-298.208-328.032zM928 224c0-35.296-28.704-64-64-64h-704c-35.296 0-64 28.704-64 64v448c0 14.112 4.736 27.056 12.496 37.648l202.736-234.224-145.168-200.672c-10.352-14.32-7.152-34.32 7.168-44.672 5.664-4.112 12.24-6.080 18.736-6.080 9.92 0 19.696 4.592 25.952 13.248l136.336 188.464 54.224-62.656c1.504-1.728 3.184-3.296 5.008-4.672 26.736-20.032 58.784-30.048 90.848-30.048s64.096 10.016 90.848 30.048c1.616 1.216 3.12 2.576 4.496 4.080l60.64 66.704 136.976-191.76c6.24-8.752 16.080-13.408 26.064-13.408 6.432 0 12.944 1.936 18.576 5.952 14.384 10.288 17.712 30.272 7.44 44.64l-145.008 203.024 211.040 232.144c7.824-10.608 12.592-23.6 12.592-37.76v-448z" /> -<glyph unicode="" glyph-name="envelope-check" d="M512 231.723h-340.992v354.859l274.603-181.717c7.211-4.779 15.445-7.125 23.723-7.125s16.555 2.389 23.723 7.125l274.603 181.717v-139.605c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v218.709c0 47.189-36.437 85.547-81.237 85.547h-606.208c-44.8 0-81.237-38.4-81.237-85.547v-434.389c0-47.189 36.437-85.589 81.237-85.589h345.771c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM469.333 492.288l-261.376 172.971h522.795l-261.376-172.971zM926.123 377.515c-16.939 16.64-44.16 16.384-60.8-0.555l-140.459-142.976-59.691 59.691c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l90.368-90.368c8.064-8.064 18.987-12.587 30.421-12.587h0.171c11.477 0.043 22.443 4.693 30.464 12.885l170.88 173.909c16.64 16.939 16.384 44.16-0.555 60.8z" /> -<glyph unicode="" glyph-name="envelope-circle-check" d="M725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM837.419 319.275c9.771-9.429 11.776-23.893 5.845-35.371-1.28-2.517-2.987-4.907-5.077-7.040l-123.307-128c-5.589-5.803-13.269-9.131-21.333-9.216h-0.299c-7.979 0-15.573 3.157-21.205 8.789l-59.221 59.179c-11.691 11.733-11.691 30.72 0 42.453 11.733 11.733 30.72 11.733 42.453 0l37.589-37.589 102.101 105.984c4.907 5.12 11.179 8.064 17.707 8.917 8.704 1.152 17.877-1.536 24.704-8.107zM445.611 404.864c7.211-4.779 15.445-7.125 23.723-7.125s16.555 2.389 23.723 7.125l274.603 181.717v-54.272c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v133.376c0 47.189-36.437 85.547-81.237 85.547h-606.208c-44.8 0-81.237-38.4-81.237-85.547v-434.389c0-47.189 36.437-85.589 81.237-85.589h260.437c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-255.659v354.859l274.603-181.717zM469.333 492.288l-261.376 172.971h522.795l-261.376-172.971z" /> -<glyph unicode="" glyph-name="envelope-open" d="M896.128 557.568c0 0.299-0.043 0.597-0.085 0.896-0.128 1.195-0.299 2.389-0.555 3.541-0.085 0.341-0.171 0.683-0.213 1.024-0.213 0.939-0.427 1.835-0.725 2.773-0.085 0.341-0.171 0.64-0.299 0.981-0.341 1.067-0.725 2.091-1.152 3.115-0.171 0.384-0.341 0.768-0.469 1.152-0.427 1.024-0.939 2.005-1.451 2.987-0.128 0.213-0.256 0.427-0.384 0.64-0.512 0.896-1.024 1.749-1.579 2.56-0.171 0.256-0.341 0.555-0.512 0.811-0.683 0.981-1.365 1.92-2.133 2.816-0.128 0.171-0.299 0.341-0.427 0.512-0.683 0.811-1.408 1.621-2.176 2.389-0.128 0.171-0.299 0.299-0.427 0.469-0.853 0.853-1.749 1.664-2.688 2.432-0.213 0.171-0.427 0.341-0.64 0.512-0.811 0.64-1.621 1.28-2.475 1.835-0.213 0.128-0.384 0.299-0.597 0.427-0.043 0-0.085 0.085-0.128 0.085l-317.611 210.176c-28.843 19.072-66.091 19.072-94.933 0l-317.611-210.176s-0.085-0.085-0.128-0.085c-0.213-0.128-0.384-0.299-0.597-0.427-0.853-0.597-1.664-1.195-2.475-1.835-0.213-0.171-0.427-0.341-0.64-0.512-0.939-0.768-1.835-1.579-2.688-2.432-0.171-0.128-0.299-0.299-0.427-0.469-0.768-0.768-1.493-1.579-2.176-2.389-0.128-0.171-0.299-0.341-0.427-0.512-0.725-0.896-1.451-1.877-2.133-2.816-0.171-0.256-0.341-0.555-0.512-0.811-0.555-0.853-1.067-1.707-1.579-2.56-0.128-0.213-0.256-0.427-0.384-0.64-0.512-0.981-0.981-1.963-1.451-2.987-0.171-0.384-0.341-0.768-0.469-1.152-0.427-1.024-0.811-2.048-1.152-3.115-0.085-0.299-0.171-0.64-0.299-0.981-0.256-0.896-0.512-1.835-0.725-2.773-0.085-0.341-0.171-0.683-0.213-1.024-0.213-1.152-0.427-2.347-0.555-3.541 0-0.299-0.043-0.597-0.085-0.896-0.128-1.28-0.213-2.56-0.213-3.883v-385.536c0-46.933 36.437-85.12 81.237-85.12h601.429c47.403 0 86.016 38.4 86.016 85.547v385.109c0 1.323-0.085 2.603-0.213 3.883zM512 727.979l263.424-174.336-263.424-174.336-263.424 174.336 263.424 174.336zM213.675 169.003v304.64l250.88-166.016c14.421-9.557 30.933-14.293 47.445-14.293s33.024 4.779 47.445 14.293l250.88 166.016v-304.64h-596.651z" /> -<glyph unicode="" glyph-name="envelope-open-dollar" d="M943.904 648.752l-436.72-337.488-427.088 337.488c-26.56 0-48.096-21.536-48.096-48.096v-510.848c0-26.56 21.536-48.096 48.096-48.096h863.808c26.56 0 48.096 21.536 48.096 48.096v510.848c0 26.56-21.536 48.096-48.096 48.096zM928 105.712h-832v448.912l371.504-293.568c11.632-9.184 25.648-13.792 39.68-13.792 13.792 0 27.6 4.448 39.136 13.36l381.68 294.944v-449.872zM254.336 570.672c17.664 0 32 14.336 32 32v219.616h450.656c0.384-48.256 0.624-65.712 0.688-70.768v-148.848c0-17.664 14.336-32 32-32s32 14.336 32 32v150.448c-0.080 4.56-0.336 23.536-0.752 77.536-0.224 30.672-25.36 55.632-56.048 55.632h-466.48c-30.912 0-56.064-25.136-56.064-56.048v-227.568c0-17.664 14.336-32 32-32zM509.6 441.552c17.664 0 32 14.336 32 32v15.76c28.464 11.664 52.368 37.968 52.368 71.872 0 54.416-43.12 74.848-71.664 88.368-25.872 12.256-31.472 16.592-31.472 24.384 0 2.96 0 8.464 9.696 12.48 12.064 5.008 27.36 2.512 32.944-3.056 12.496-12.48 32.768-12.496 45.264 0 12.48 12.496 12.48 32.752 0 45.248-9.872 9.856-22.88 16.72-37.12 20.64v12.976c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.176c-0.512-0.208-1.056-0.304-1.568-0.512-30.816-12.768-49.2-39.536-49.2-71.616 0-49.984 40.976-69.392 68.080-82.24 29.168-13.808 35.056-18.944 35.056-30.528 0-6.096-11.808-14.496-20.368-14.496-14.48 0-35.712 9.968-40.672 14.112-12.496 12.272-32.576 12.208-45.008-0.24-12.496-12.496-12.496-32.752 0-45.248 10.384-10.384 31.488-21.456 53.68-27.664v-14.112c0-17.664 14.336-32 32-32z" /> -<glyph unicode="" glyph-name="equalizer" d="M239.019 697.685v47.957c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-47.957c-39.637-16.768-67.413-56.021-67.413-101.76s27.819-84.949 67.413-101.76v-345.899c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v345.899c39.637 16.768 67.413 56.021 67.413 101.76s-27.819 84.949-67.413 101.76zM196.011 571.52c-13.44 0-24.405 10.965-24.405 24.405s10.965 24.405 24.405 24.405 24.405-10.965 24.405-24.405-10.965-24.405-24.405-24.405zM555.008 446.848v298.837c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-298.837c-39.637-16.768-67.413-56.021-67.413-101.76s27.819-84.992 67.413-101.76v-95.019c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v95.019c39.637 16.768 67.413 56.021 67.413 101.76s-27.819 84.949-67.413 101.76zM512 320.64c-13.44 0-24.405 10.965-24.405 24.448s10.965 24.405 24.405 24.405 24.405-10.965 24.405-24.405-10.965-24.448-24.405-24.448zM871.253 694.315v51.328c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-51.328c-39.637-16.768-67.413-56.021-67.413-101.76s27.819-84.949 67.413-101.76v-342.485c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v342.485c39.637 16.768 67.413 56.021 67.413 101.76s-27.819 84.949-67.413 101.76zM828.245 568.149c-13.44 0-24.405 10.965-24.405 24.405s10.965 24.405 24.405 24.405 24.405-10.965 24.405-24.405-10.923-24.405-24.405-24.405z" /> -<glyph unicode="" glyph-name="error" d="M512 873.941c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667 426.667 191.019 426.667 426.667-191.019 426.667-426.667 426.667zM752.896 206.379c-64.341-64.341-149.888-99.797-240.896-99.797s-176.555 35.456-240.896 99.797c-64.341 64.341-99.797 149.888-99.797 240.896s35.456 176.555 99.797 240.896c64.341 64.341 149.888 99.797 240.896 99.797s176.555-35.456 240.896-99.797c64.341-64.341 99.797-149.888 99.797-240.896s-35.456-176.555-99.797-240.896zM531.627 660.352h-39.296c-20.139 0-36.096-16.939-34.944-37.035l14.037-242.048c1.067-18.517 16.384-32.981 34.944-32.981h11.179c18.56 0 33.877 14.464 34.944 32.981l14.037 242.048c1.152 20.096-14.805 37.035-34.944 37.035zM554.539 277.376c0-23.493-19.045-42.539-42.539-42.539s-42.539 19.045-42.539 42.539c0 23.493 19.045 42.539 42.539 42.539s42.539-19.045 42.539-42.539z" /> -<glyph unicode="" glyph-name="event" d="M872.546 831.11h-67.212v28.796c0 22.882-18.618 41.5-41.5 41.5h-86.798c-22.882 0-41.5-18.618-41.5-41.5v-28.796h-247.070v28.796c0 22.882-18.618 41.5-41.5 41.5h-86.798c-22.882 0-41.5-18.618-41.5-41.5v-28.796h-67.212c-22.882 0-41.5-18.618-41.5-41.5v-685.276c0-22.882 18.618-41.5 41.5-41.5h721.092c22.882 0 41.5 18.618 41.5 41.5v685.276c0 22.882-18.618 41.5-41.5 41.5zM678.536 858.406h83.798v-98.472h-83.798v98.472zM261.666 858.406h83.798v-98.472h-83.798v98.472zM218.666 788.11v-29.676c0-22.882 18.618-41.5 41.5-41.5h86.798c22.882 0 41.5 18.618 41.5 41.5v29.676h247.070v-29.676c0-22.882 18.618-41.5 41.5-41.5h86.798c22.882 0 41.5 18.618 41.5 41.5v29.676h65.712v-112.002h-718.090v112.002h65.712zM152.954 633.108h718.092v-410.512l-116.76-116.76h-601.332v527.272zM699.328 287.782c7.562 10.96 14.168 24.136 19.288 39.13 17.544 51.38 8.41 96.626-21.568 109.418l-220.774 143.824c-6.054 5.79-12.596 9.326-18.752 11.428-0.306 0.104-0.618 0.19-0.926 0.288-0.076 0.022-0.15 0.050-0.226 0.070-55.396 17.438-130.366-63.2-158.35-145.156-13.792-40.396-18.884-81.42-14.336-115.516 5.254-39.376 22.846-66.084 49.538-75.196 6.318-2.158 12.832-3.222 19.474-3.222 0.508 0 1.018 0.036 1.526 0.050l198.46-0.41c-5.7-15.764-6.024-33.19-0.542-50.296 8.704-27.168 30.188-47.87 57.474-55.378 14.482-3.986 28.898-7.204 41.466-7.204 12.788 0 23.664 3.334 30.732 12.578 4.686 6.126 10.772 19.412-1.114 39.53-15.664 26.508 5.82 74.148 18.63 96.062zM680.218 396.774v-0.006c-0.032 0.010-0.048 0.022-0.076 0.032 0.024-0.008 0.050-0.016 0.076-0.026zM679.756 396.928c3.868-3.544 8.846-24.848-1.832-56.12-3.056-8.952-6.634-16.428-10.302-22.616-0.032-0.048-0.072-0.090-0.104-0.14-0.164-0.246-1.376-2.072-3.254-5.176-8.012-11.712-15.832-17.236-19.146-17.576l-33.828 0.070c-1.428 0.324-2.91 0.51-4.434 0.534-2.348 0.042-4.94-0.104-7.688-0.508l-171.010 0.354c20.276 23.474 37.636 54.766 49.556 89.68 14.202 41.592 22.232 85.52 22.030 120.518-0.016 2.664-0.092 5.22-0.196 7.728l175.882-114.576c1.386-0.902 2.838-1.622 4.328-2.17zM338.712 432.892c11.372 33.3 32.458 67.414 56.41 91.252 19.374 19.282 35.89 27.266 44.962 27.266 0.61 0 1.176-0.048 1.718-0.12l6.308-4.108c4.664-6.264 8.51-19.968 8.634-41.482 0.174-30.38-7.014-69.152-19.724-106.376-11.518-33.732-29.326-64.162-48.858-83.486-15.568-15.404-30.912-22.532-41.044-19.068-10.134 3.458-17.914 18.484-20.81 40.19-3.634 27.234 0.888 62.202 12.406 95.934zM621.024 188.274c-13.038 3.59-23.742 13.95-27.936 27.042-3.714 11.598-1.694 23.362 5.544 32.274 1.992 2.45 3.816 4.042 5.452 4.798l33.578-0.070c-6.98-25.614-7.21-48.632-0.662-67.89-4.276 0.848-9.54 2.076-15.978 3.848zM771.442 317.632c10.026 37.24-31.988 52.518-31.988 52.518s-1.91-51.562-21.962-78.776c0 0 43.924-10.98 53.95 26.26z" /> -<glyph unicode="" glyph-name="event-2" d="M872.546 831.11h-67.212v28.796c0 22.882-18.618 41.5-41.5 41.5h-86.798c-22.882 0-41.5-18.618-41.5-41.5v-28.796h-247.070v28.796c0 22.882-18.618 41.5-41.5 41.5h-86.798c-22.882 0-41.5-18.618-41.5-41.5v-28.796h-67.212c-22.882 0-41.5-18.618-41.5-41.5v-685.276c0-22.882 18.618-41.5 41.5-41.5h721.092c22.882 0 41.5 18.618 41.5 41.5v685.276c0 22.882-18.618 41.5-41.5 41.5zM678.536 858.406h83.798v-98.472h-83.798v98.472zM261.666 858.406h83.798v-98.472h-83.798v98.472zM218.666 788.11v-29.676c0-22.882 18.618-41.5 41.5-41.5h86.798c22.882 0 41.5 18.618 41.5 41.5v29.676h247.070v-29.676c0-22.882 18.618-41.5 41.5-41.5h86.798c22.882 0 41.5 18.618 41.5 41.5v29.676h65.712v-112.002h-718.090v112.002h65.712zM152.954 633.108h718.092v-410.512l-116.76-116.76h-601.332v527.272zM699.328 287.782c7.562 10.96 14.168 24.136 19.288 39.13 17.544 51.38 8.41 96.626-21.568 109.418l-220.774 143.824c-6.054 5.79-12.596 9.326-18.752 11.428-0.306 0.104-0.618 0.19-0.926 0.288-0.076 0.022-0.15 0.050-0.226 0.070-55.396 17.438-130.366-63.2-158.35-145.156-13.792-40.396-18.884-81.42-14.336-115.516 5.254-39.376 22.846-66.084 49.538-75.196 6.318-2.158 12.832-3.222 19.474-3.222 0.508 0 1.018 0.036 1.526 0.050l198.46-0.41c-5.7-15.764-6.024-33.19-0.542-50.296 8.704-27.168 30.188-47.87 57.474-55.378 14.482-3.986 28.898-7.204 41.466-7.204 12.788 0 23.664 3.334 30.732 12.578 4.686 6.126 10.772 19.412-1.114 39.53-15.664 26.508 5.82 74.148 18.63 96.062zM680.218 396.774v-0.006c-0.032 0.010-0.048 0.022-0.076 0.032 0.024-0.008 0.050-0.016 0.076-0.026zM679.756 396.928c3.868-3.544 8.846-24.848-1.832-56.12-3.056-8.952-6.634-16.428-10.302-22.616-0.032-0.048-0.072-0.090-0.104-0.14-0.164-0.246-1.376-2.072-3.254-5.176-8.012-11.712-15.832-17.236-19.146-17.576l-33.828 0.070c-1.428 0.324-2.91 0.51-4.434 0.534-2.348 0.042-4.94-0.104-7.688-0.508l-171.010 0.354c20.276 23.474 37.636 54.766 49.556 89.68 14.202 41.592 22.232 85.52 22.030 120.518-0.016 2.664-0.092 5.22-0.196 7.728l175.882-114.576c1.386-0.902 2.838-1.622 4.328-2.17zM338.712 432.892c11.372 33.3 32.458 67.414 56.41 91.252 19.374 19.282 35.89 27.266 44.962 27.266 0.61 0 1.176-0.048 1.718-0.12l6.308-4.108c4.664-6.264 8.51-19.968 8.634-41.482 0.174-30.38-7.014-69.152-19.724-106.376-11.518-33.732-29.326-64.162-48.858-83.486-15.568-15.404-30.912-22.532-41.044-19.068-10.134 3.458-17.914 18.484-20.81 40.19-3.634 27.234 0.888 62.202 12.406 95.934zM621.024 188.274c-13.038 3.59-23.742 13.95-27.936 27.042-3.714 11.598-1.694 23.362 5.544 32.274 1.992 2.45 3.816 4.042 5.452 4.798l33.578-0.070c-6.98-25.614-7.21-48.632-0.662-67.89-4.276 0.848-9.54 2.076-15.978 3.848zM771.442 317.632c10.026 37.24-31.988 52.518-31.988 52.518s-1.91-51.562-21.962-78.776c0 0 43.924-10.98 53.95 26.26z" /> -<glyph unicode="" glyph-name="event-list" d="M830.112 255.904l-30.288 61.040-30.272-61.040-67.376-10 48.944-47.216-11.408-67.12 60.112 31.696 60.128-31.696-11.424 67.12 48.96 47.216-67.376 10zM224 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 480h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 416h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 416h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 288h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 768h-96v32c0 17.664-14.336 32-32 32h-64c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-64c-17.664 0-32-14.336-32-32v-576c0-0.608 0.144-1.168 0.176-1.76s-0.048-1.168 0.016-1.776c0-0.128 0.048-0.256 0.064-0.384 0.032-0.208 0.064-0.416 0.096-0.624 0.064-0.544 0.192-1.072 0.256-1.616 0.032-0.128 0.032-0.272 0.064-0.4 11.536-89.072 91.392-153.44 191.312-153.44h384c0-17.664 14.336-32 32-32h320c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM928 704v-288h-64v288h64zM128 768c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h32v-96h-704v96h32zM224 128c-53.76 0-114.448 28.352-126.64 90.176 12.528 21.456 48.928 77.52 96.368 95.888 7.472-80 38.448-143.184 80.464-186.080h-50.208zM416 128c-78.656 0-160 83.776-160 224 0 17.664-14.336 32-32 32-52.704 0-96.080-29.664-128-62.208v286.208h704v-192h-160c-17.664 0-32-14.336-32-32v-256h-192zM928 96h-256v256h256v-256zM384 288h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="expand-circle-down" d="M813.696 748.971c-83.328 83.328-192.512 124.971-301.696 124.971s-218.368-41.643-301.696-124.971c-166.613-166.613-166.613-436.779 0-603.392 83.328-83.328 192.512-124.971 301.696-124.971s218.368 41.643 301.696 124.971c166.613 166.613 166.613 436.779 0 603.392zM752.896 206.379c-64.341-64.341-149.888-99.797-240.896-99.797s-176.555 35.456-240.896 99.797-99.797 149.888-99.797 240.896 35.456 176.555 99.797 240.896c64.341 64.341 149.888 99.797 240.896 99.797s176.555-35.456 240.896-99.797 99.797-149.888 99.797-240.896-35.456-176.555-99.797-240.896zM630.912 541.397l-118.912-118.912-118.912 118.912c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l149.333-149.333c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l149.333 149.333c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0z" /> -<glyph unicode="" glyph-name="facebook" d="M693.584 710.128c26.64 0 48.096-0.656 60.432-1.968v144.976c-23.408 6.496-80.608 13.008-113.744 13.008-174.864 0-255.472-82.56-255.472-260.672v-68.896h-107.904v-159.904h107.904v-363.328l189.808 0.528v362.8h141.552l29.36 159.904h-170.912v56.56c0 84.496 33.168 117.008 118.96 117.008zM926.464 541.84c-0.688 2.832-1.424 5.664-2.176 8.48 0.752-2.816 1.488-5.648 2.176-8.48zM924.288 550.32c-0.048 0.208-0.112 0.416-0.16 0.624 0.048-0.208 0.112-0.416 0.16-0.624z" /> -<glyph unicode="" glyph-name="favorite" d="M830.677 723.712c-43.989 44.288-101.803 66.432-159.616 66.432s-115.115-21.973-159.061-65.877c-43.904 43.904-101.504 65.877-159.061 65.877-57.813 0-115.627-22.144-159.616-66.432-87.595-88.192-85.632-231.381 2.304-319.275l285.995-285.995c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l285.995 285.995c87.893 87.893 89.899 231.083 2.304 319.275zM767.573 465.237l-255.573-255.573-255.573 255.573c-54.955 54.955-55.851 143.701-2.091 197.888 26.283 26.453 61.312 41.045 98.603 41.045 37.12 0 72.021-14.464 98.261-40.704l60.8-60.8 60.8 60.8c26.24 26.24 61.141 40.704 98.261 40.704s72.32-14.592 98.603-41.045c53.803-54.187 52.864-142.933-2.091-197.888z" /> -<glyph unicode="" glyph-name="fax" d="M928 784h-72.896c-11.104 19.040-31.52 32-55.104 32h-256c-23.584 0-44-12.96-55.104-32h-72.896c-35.296 0-64-28.704-64-64h-73.312c-15.472 30.704-48.656 64-86.688 64h-64c-52.544 0-96-63.568-96-96v-512c0-32.432 43.456-96 96-96h64c38.032 0 71.216 33.296 86.688 64h73.312c0-35.296 28.704-64 64-64h512c35.296 0 64 28.704 64 64v576c0 35.296-28.704 64-64 64zM512 560h320v-64h-320v64zM800 752v-128h-256v128h256zM192 144h-64c-9.088 0-28.752 22.112-32 33.568v508.88c3.248 11.456 22.912 33.568 32 33.568h64c9.088 0 28.752-22.112 32-33.568v-508.88c-3.248-11.456-22.912-33.568-32-33.568zM288 208v448h64v-448h-64zM928 144h-512v576h64v-96c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h384c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32v96h64v-576zM608 656h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 240h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 240h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 368h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM832 240h-64v64h64v-64z" /> -<glyph unicode="" glyph-name="feather" d="M939.312 236.768c-6.16 16.56-24.576 24.992-41.136 18.864l-70.928-26.336 42.736 142.624c15.28 50.96-3.568 105.824-46.896 136.56l-59.408 42.16 1.568 16.24c4.608 47.232-21.056 92.768-63.968 113.344l-86.464 41.12-0.048 0.368c-6.4 46.128-43.12 83.008-89.328 89.664l-60.528 8.624c-12.528 36.976-41.792 65.92-79.984 77.6l-85.584 26.128c-51.856 15.568-106.448-12.192-124.176-63.552l-9.456-27.824-19.856-6.976c-24.704-8.624-44.864-27.328-55.296-51.312-10.48-24.064-10.432-51.68 0.224-75.936l33.056-74.064c20.352-46.016 62.144-78.464 111.728-86.784l7.504-1.264 22.112-82.672c11.824-44.336 48.192-78.144 93.184-87.312l20.032-68.752c15.584-54.064 61.632-95.152 117.328-104.672l186.544-31.792-47.104-25.856c-15.488-8.496-21.152-27.952-12.64-43.456 5.808-10.592 16.784-16.592 28.080-16.592 5.2 0 10.48 1.264 15.376 3.952l61.216 33.616-10.208-37.12c-4.688-17.040 5.328-34.656 22.368-39.344 2.848-0.784 5.68-1.152 8.496-1.152 14.048 0 26.944 9.328 30.848 23.536l9.040 32.896c16.288-33.904 29.488-67.312 38.112-99.536 3.824-14.304 16.752-23.728 30.896-23.728 2.736 0 5.52 0.352 8.304 1.104 17.056 4.56 27.2 22.112 22.624 39.184-9.104 34.016-22.64 68.96-39.216 104.224l27.968-11.792c16.304-6.912 35.056 0.784 41.92 17.040 6.88 16.288-0.768 35.040-17.040 41.92l-36.368 15.344 55.488 20.608c16.56 6.16 25.008 24.576 18.864 41.136zM439.872 315.072l-11.264 38.64 22.384-3.84c1.824-0.32 3.664-0.448 5.44-0.448 15.312 0 28.848 11.008 31.52 26.592 2.992 17.424-8.72 33.952-26.144 36.96l-89.232 15.296c-21.968 3.824-39.84 20.128-45.568 41.568l-14.576 54.448 14.592-2.464c1.792-0.32 3.6-0.448 5.36-0.448 15.344 0 28.88 11.040 31.52 26.672 2.96 17.424-8.8 33.936-26.224 36.88l-63.648 10.752c-0.512 0.096-1.024 0.192-1.536 0.256l-26.32 4.448c-28.336 4.752-52.208 23.28-63.872 49.664l-33.024 73.984c-3.472 7.888-3.504 16.592-0.064 24.464 3.392 7.792 9.68 13.632 17.776 16.448l17.952 6.304 52.672-41.76c13.824-10.96 33.984-8.656 44.96 5.2 10.992 13.84 8.656 33.968-5.2 44.96l-48.832 38.704 7.152 21.072c6.4 18.576 26.256 28.656 45.040 23.008l85.456-26.096c20.896-6.368 36.8-24.432 40.512-45.984l10.96-63.664c2.672-15.584 16.208-26.576 31.504-26.576 1.792 0 3.632 0.144 5.456 0.464 17.424 2.992 29.104 19.536 26.112 36.96l-2.736 15.904 38.352-5.456c18.112-2.608 32.512-17.040 35.040-35.232l13.664-95.616c2.272-15.952 15.968-27.472 31.632-27.472 1.52 0 3.024 0.112 4.576 0.336 17.488 2.496 29.648 18.704 27.136 36.208l-2.72 19.056 48-22.832c18.688-8.96 29.872-28.784 27.872-49.392l-10.8-111.568c-1.696-17.6 11.168-33.232 28.768-34.928 1.040-0.112 2.080-0.16 3.104-0.16 16.304 0 30.224 12.368 31.808 28.928l2.112 21.856 29.472-20.928c20.928-14.848 30-41.36 22.608-65.984l-40.944-136.656c-155.056 233.216-391.424 444.96-404.8 456.848-13.2 11.712-33.456 10.544-45.168-2.656-11.744-13.2-10.56-33.44 2.64-45.168 3.2-2.848 240.288-215.2 392.384-442.128l-206.272 35.168c-31.648 5.408-57.76 28.672-66.624 59.392z" /> -<glyph unicode="" glyph-name="featured-image" d="M124.718 706.188c0-5.627 4.634-9.93 9.93-9.93s9.93 4.634 9.93 9.93-4.634 9.93-9.93 9.93-9.93-4.634-9.93-9.93zM170.728 706.188c0-5.627 4.634-9.93 9.93-9.93s9.93 4.634 9.93 9.93-4.634 9.93-9.93 9.93-9.93-4.634-9.93-9.93zM144.909 551.606h131.742c6.62 0 12.247 5.627 12.247 12.247s-5.627 12.247-12.247 12.247h-131.742c-6.62 0-12.247-5.627-12.247-12.247s5.627-12.247 12.247-12.247zM828.446 223.906h-384.303c-6.62 0-12.247-5.627-12.247-12.247s5.627-12.247 12.247-12.247h384.303c6.62 0 12.247 5.627 12.247 12.247s-5.627 12.247-12.247 12.247zM953.568 703.54h-483.275c-6.62 0-12.247-5.627-12.247-12.247v-47.335h-375.366v75.47c0 20.854 16.882 37.404 37.404 37.404h515.052c6.62 0 12.247 5.627 12.247 12.247s-5.627 12.247-12.247 12.247h-515.052c-34.094 0-61.899-27.805-61.899-61.899v-542.857c0-34.094 27.805-61.899 61.899-61.899h574.634c6.62 0 12.247 5.627 12.247 12.247s-5.627 12.247-12.247 12.247h-342.596v480.627h105.923v-159.878c0-6.62 5.627-12.247 12.247-12.247s12.247 5.627 12.247 12.247v219.46h458.781v-372.387h-482.944l164.512 255.209 135.052-161.533c2.317-2.648 5.627-4.303 9.268-4.303v0c3.641 0 6.951 1.655 9.268 4.303l107.578 129.756c4.303 5.296 3.641 12.909-1.655 17.213s-12.909 3.641-17.213-1.655l-97.979-118.502-136.045 162.857c-2.648 2.979-6.289 4.634-10.261 4.303-3.972 0-7.282-2.317-9.599-5.627l-185.697-287.979c-2.317-3.641-2.648-8.606-0.331-12.578 1.986-3.972 6.289-6.289 10.592-6.289h517.701c6.62 0 12.247 5.627 12.247 12.247v396.882c0 6.62-5.627 12.247-12.247 12.247zM327.296 138.836h-41.376v363.45c0 5.958-4.965 10.923-10.923 10.923h-192.648v106.585h244.948v-480.958zM826.996 602.538c7.864-33.269-12.73-66.614-45.999-74.479s-66.614 12.73-74.479 45.999c-7.864 33.269 12.73 66.614 45.999 74.479s66.614-12.73 74.479-45.999z" /> -<glyph unicode="" glyph-name="feedback" d="M852.651 788.352h-681.301c-47.488 0-86.016-38.485-86.016-86.016v-594.944c0-24.875 20.395-41.899 42.027-41.899 8.875 0 17.963 2.859 25.941 9.259l145.365 116.309h553.984c47.488 0 86.016 38.485 86.016 86.016v425.259c0 47.488-38.485 86.016-86.016 86.016zM852.651 276.992h-553.984c-19.541 0-38.485-6.656-53.717-18.859l-73.643-58.88v503.083h681.344v-425.344zM481.536 439.808c0.811-13.909 12.331-24.789 26.283-24.789h8.405c13.952 0 25.472 10.88 26.283 24.789l10.581 182.016c0.896 15.104-11.136 27.861-26.283 27.861h-29.525c-15.147 0-27.136-12.757-26.283-27.861l10.581-182.016zM544 361.685c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32z" /> -<glyph unicode="" glyph-name="figma" d="M215.312 707.312c0 88.176 71.504 159.68 159.68 159.68h274.016c88.176 0 159.68-71.504 159.68-159.68 0-55.84-28.672-105.008-72.176-133.504 43.504-28.496 72.176-77.68 72.176-133.504 0-88.176-71.504-159.68-159.68-159.68h-3.504c-41.344 0-79.008 15.664-107.344 41.504v-147.184c0-89.344-73.344-161.344-162.352-161.344-88 0-160.512 71.344-160.512 159.68 0 55.84 28.672 105.008 72 133.504-43.344 28.496-72 77.68-72 133.504s28.672 105.008 72 133.504c-43.344 28.496-72 77.68-72 133.504zM469.328 531.408h-94.080c-50.368 0-91.104-40.752-91.104-91.104 0-50.080 40.464-90.832 90.544-91.104h94.64v182.224zM554.672 440.304c0-50.368 40.752-91.104 91.104-91.104h2.976c50.224 0 91.104 40.752 91.104 91.104s-40.88 91.104-91.104 91.104h-2.976c-50.368 0-91.104-40.752-91.104-91.104zM375.28 263.024h-0.56c-49.344-0.272-89.2-40.416-89.2-89.76s40.704-89.76 90.448-89.76c50.592 0 91.984 40.976 91.984 91.152v88.368h-92.688zM375.28 797.072c-49.616 0-89.76-40.144-89.76-89.76s40.144-89.76 89.76-89.76h92.688v179.52h-92.688zM554.672 616.208h94.080c50.224 0 91.104 40.752 91.104 91.104s-40.88 91.104-91.104 91.104h-94.080v-182.224z" /> -<glyph unicode="" glyph-name="file" d="M896.576 568.688c-0.272 6.112-2.256 11.936-5.872 17.008-0.112 0.176-0.256 0.336-0.368 0.496-0.928 1.248-1.632 2.608-2.752 3.728l-116.064 116.064v131.248c0 50.048-40.72 90.768-90.784 90.768h-462.912c-50.048 0-90.768-40.72-90.768-90.768v-663.456c0-47.68 37.264-87.328 84.72-90.256 1.888-0.128 3.792-0.192 5.712-0.192h41.776v-24.624c0-50.016 40.688-90.704 90.704-90.704h456.192c50.048 0 90.768 40.72 90.768 90.768v506.144c0 1.28-0.24 2.512-0.368 3.776zM217.488 147.328l-1.68 0.048c-13.888 0.864-24.768 12.448-24.768 26.384v663.472c0 14.768 12 26.768 26.768 26.768h462.912c14.768 0 26.784-12 26.784-26.768v-67.248l-21.232 21.232s-0.032 0.016-0.048 0.032l-1.648 1.648c-1.056 1.056-2.368 1.728-3.536 2.624-0.256 0.176-0.496 0.384-0.752 0.544-5.104 3.632-10.96 5.6-17.088 5.856-1.216 0.112-2.4 0.352-3.632 0.352h-297.872c-56.496 0-102.448-45.952-102.448-102.448v-552.496h-41.776zM806.176 32h-456.192c-14.72 0-26.704 11.984-26.704 26.704v641.12c0 21.2 17.248 38.448 38.448 38.448h268.256v-108.72c0-51.968 42.288-94.256 94.256-94.256h108.736v-476.528c0-14.768-12-26.768-26.768-26.768zM593.392 155.92h-174.752c-17.664 0-32-14.336-32-32s14.336-32 32-32h174.752c17.664 0 32 14.336 32 32s-14.336 32-32 32zM706.24 146.56c-5.92-5.92-9.28-14.24-9.28-22.72 0-8.32 3.36-16.64 9.28-22.56 6.080-5.92 14.4-9.44 22.72-9.44s16.64 3.52 22.56 9.44c6.080 5.92 9.44 14.24 9.44 22.56 0 8.48-3.36 16.8-9.44 22.72-11.84 11.84-33.28 11.84-45.28 0zM418.64 225.344h310.32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-310.32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM418.64 475.808h54.4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-54.4c-17.664 0-32-14.336-32-32s14.336-32 32-32zM418.64 609.696h109.088c17.664 0 32 14.336 32 32s-14.336 32-32 32h-109.088c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="file-arrow-down" d="M848.896 638.763c-2.005 4.736-4.949 9.173-8.789 13.013v0s0 0 0 0c-0.171 0.171-0.341 0.341-0.512 0.512l-208.341 202.709c-7.509 10.581-19.925 17.536-33.877 17.536h-340.992c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h511.317c46.635 0 84.523 37.419 84.523 83.371v517.632c0 5.803-1.195 11.307-3.328 16.299zM638.891 731.648l69.547-67.627h-69.547v67.627zM769.109 105.045s-0.597-0.512-1.451-0.512h-511.317c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-475.904zM539.264 539.008c-0.512 0.427-1.024 0.768-1.536 1.152-0.597 0.469-1.195 0.939-1.835 1.365-0.597 0.427-1.237 0.768-1.877 1.152-0.555 0.341-1.152 0.683-1.707 1.024-0.64 0.341-1.323 0.64-1.963 0.939-0.597 0.299-1.237 0.597-1.877 0.853s-1.28 0.469-1.92 0.725c-0.683 0.256-1.365 0.512-2.048 0.725-0.64 0.213-1.323 0.341-1.963 0.512-0.725 0.171-1.408 0.384-2.133 0.512-0.768 0.171-1.536 0.256-2.261 0.341-0.64 0.085-1.237 0.213-1.877 0.256-2.816 0.299-5.675 0.299-8.491 0-0.64-0.043-1.237-0.171-1.877-0.256-0.768-0.128-1.536-0.213-2.261-0.341s-1.408-0.341-2.133-0.512c-0.64-0.171-1.323-0.299-1.963-0.512-0.683-0.213-1.365-0.469-2.048-0.725-0.64-0.213-1.28-0.427-1.92-0.725-0.64-0.256-1.237-0.555-1.877-0.853s-1.323-0.597-1.963-0.939c-0.597-0.299-1.152-0.683-1.707-1.024-0.64-0.384-1.28-0.725-1.877-1.152-0.64-0.427-1.237-0.896-1.835-1.365-0.512-0.384-1.024-0.725-1.536-1.152-1.109-0.896-2.133-1.835-3.157-2.859l-128-128c-16.811-16.811-16.811-44.032 0-60.8 16.811-16.811 44.032-16.811 60.8 0l54.613 54.613v-210.944c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v210.944l54.613-54.613c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-128 128c-1.024 1.024-2.048 1.963-3.157 2.859z" /> -<glyph unicode="" glyph-name="file-arrow-up" d="M848.896 638.763c-2.005 4.736-4.949 9.173-8.789 13.013v0s0 0 0 0c-0.171 0.171-0.341 0.341-0.512 0.512l-208.341 202.709c-7.509 10.581-19.925 17.536-33.877 17.536h-340.992c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h511.317c46.635 0 84.523 37.419 84.523 83.371v517.632c0 5.803-1.195 11.307-3.328 16.299zM638.891 731.648l69.547-67.627h-69.547v67.627zM769.109 105.045s-0.597-0.512-1.451-0.512h-511.317c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-475.904zM555.008 505.771c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-210.944l-54.613 54.613c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l128-128c1.024-1.024 2.048-1.963 3.157-2.859 0.512-0.427 1.024-0.768 1.536-1.152 0.597-0.469 1.237-0.939 1.877-1.365 0.597-0.427 1.237-0.768 1.877-1.152 0.555-0.341 1.152-0.725 1.749-1.024 0.64-0.341 1.323-0.64 1.963-0.939 0.597-0.299 1.237-0.597 1.877-0.853s1.28-0.469 1.92-0.725c0.683-0.256 1.365-0.512 2.048-0.725 0.64-0.213 1.323-0.341 1.963-0.512 0.725-0.171 1.408-0.384 2.133-0.512 0.768-0.171 1.493-0.256 2.261-0.341 0.64-0.085 1.237-0.213 1.877-0.256 1.408-0.128 2.816-0.213 4.224-0.213s2.816 0.085 4.224 0.213c0.64 0.043 1.237 0.171 1.877 0.256 0.768 0.128 1.536 0.213 2.261 0.341s1.408 0.341 2.133 0.512c0.64 0.171 1.323 0.299 1.963 0.512 0.683 0.213 1.365 0.469 2.048 0.725 0.64 0.213 1.28 0.427 1.92 0.725 0.64 0.256 1.237 0.555 1.877 0.853s1.323 0.597 1.963 0.939c0.597 0.299 1.152 0.683 1.749 1.024 0.64 0.384 1.28 0.725 1.877 1.152 0.64 0.427 1.237 0.896 1.877 1.365 0.512 0.384 1.024 0.725 1.536 1.152 1.109 0.896 2.133 1.835 3.157 2.859l128 128c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-54.613-54.613v210.944z" /> -<glyph unicode="" glyph-name="file-audio" d="M848.896 638.763c-2.005 4.736-4.949 9.173-8.789 13.013v0s0 0 0 0c-0.171 0.171-0.341 0.341-0.512 0.512l-208.341 202.709c-7.509 10.581-19.925 17.536-33.877 17.536h-340.992c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h511.317c46.635 0 84.523 37.419 84.523 83.371v517.632c0 5.803-1.195 11.307-3.328 16.299zM638.891 731.648l69.547-67.627h-69.547v67.627zM769.109 105.045s-0.597-0.512-1.451-0.512h-511.317c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-475.904zM531.669 482.773c-13.909 7.509-30.805 6.784-43.989-1.835l-54.656-35.797c-11.221-7.125-62.208-16.171-90.923-16.171-11.435 0-22.357-4.565-30.464-12.629-8.064-8.107-12.587-19.072-12.544-30.464l0.256-106.197c0.043-23.723 19.285-42.88 43.008-42.88 26.795 0 74.709-9.557 85.589-17.067l56.704-44.544c7.723-6.059 17.109-9.173 26.581-9.173 6.4 0 12.8 1.408 18.773 4.309 14.805 7.211 24.192 22.229 24.192 38.656v235.947c0 15.787-8.661 30.336-22.571 37.845zM468.224 295.68c-23.467 12.715-56.235 19.755-82.944 23.467l-0.085 26.965c26.667 3.243 59.435 9.387 83.029 20.48v-70.912zM622.635 156.843c6.443-3.413 13.312-5.035 20.096-5.035 15.403 0 30.293 8.32 38.016 22.869 27.989 52.736 42.155 108.501 42.155 165.675s-14.165 112.896-42.155 165.675c-11.136 20.992-37.163 28.971-58.155 17.835s-28.971-37.163-17.835-58.155c21.333-40.192 32.128-82.389 32.128-125.355s-10.795-85.163-32.128-125.355c-11.136-20.992-3.157-47.019 17.835-58.155z" /> -<glyph unicode="" glyph-name="file-certificate" d="M661.333 104.533h-404.992c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-69.931c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v111.488s0 0.171 0 0.256c0 0.896-0.085 1.749-0.128 2.645 0 0.512 0 0.981-0.085 1.493-0.085 0.811-0.213 1.579-0.341 2.389-0.085 0.555-0.171 1.152-0.256 1.707-0.128 0.597-0.299 1.152-0.427 1.707-0.384 1.451-0.811 2.859-1.323 4.224-0.213 0.597-0.384 1.195-0.64 1.792 0 0 0 0.043-0.043 0.085-0.896 2.091-2.005 4.096-3.243 6.059-0.213 0.299-0.341 0.64-0.555 0.939-0.341 0.512-0.768 1.024-1.152 1.536-0.427 0.597-0.853 1.195-1.323 1.749-0.341 0.384-0.725 0.768-1.067 1.152-0.555 0.64-1.152 1.28-1.749 1.877-0.085 0.085-0.128 0.128-0.171 0.213l-208.555 202.923c-7.552 10.496-19.84 17.365-33.749 17.365-0.171 0-0.341 0-0.469 0-0.171 0-0.341 0-0.512 0h-340.011c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h404.992c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM638.891 731.648l69.504-67.627h-69.504v67.627zM944.597 344.192c-4.181 12.928-32.896 13.44-40.704 24.192-7.893 10.88 0.427 38.315-10.453 46.208-10.752 7.808-34.219-8.491-47.147-4.309-12.459 4.053-21.803 31.232-35.627 31.232s-23.125-27.179-35.584-31.232c-12.928-4.181-36.437 12.16-47.147 4.309-10.88-7.893-2.56-35.328-10.453-46.208-7.808-10.752-36.523-11.264-40.747-24.192-4.053-12.459 18.731-29.696 18.731-43.52s-22.784-31.061-18.731-43.52c4.181-12.928 32.939-13.44 40.747-24.192 7.893-10.88-0.427-38.315 10.453-46.208 4.395-3.2 10.965-2.347 18.048-0.512l-7.125-158.037c0-7.467 11.051-10.709 16.341-4.779l48.896 54.528c3.541 3.968 9.771 3.968 13.312 0l48.853-54.528c5.291-5.931 16.341-2.688 16.341 4.779l-7.125 158.037c7.083-1.835 13.611-2.688 18.048 0.512 10.88 7.893 2.56 35.328 10.453 46.208 7.808 10.752 36.523 11.264 40.704 24.192 4.053 12.459-18.731 29.696-18.731 43.52s22.784 31.019 18.731 43.52zM810.667 358.656c32.043 0 57.984-25.941 57.984-57.984s-25.941-57.984-57.984-57.984-57.984 25.941-57.984 57.984 25.941 57.984 57.984 57.984z" /> -<glyph unicode="" glyph-name="file-circle-check" d="M490.667 104.533h-234.325c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-69.931c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v111.488s0 0.171 0 0.256c0 0.896-0.085 1.749-0.128 2.645 0 0.512 0 0.981-0.085 1.493-0.085 0.811-0.213 1.579-0.341 2.389-0.085 0.555-0.171 1.152-0.256 1.707-0.128 0.597-0.299 1.152-0.427 1.707-0.384 1.451-0.811 2.859-1.323 4.224-0.213 0.597-0.384 1.195-0.64 1.792 0 0 0 0.043-0.043 0.085-0.896 2.091-2.005 4.096-3.243 6.059-0.213 0.299-0.341 0.64-0.555 0.939-0.341 0.512-0.768 1.024-1.152 1.536-0.427 0.597-0.853 1.195-1.323 1.749-0.341 0.384-0.725 0.768-1.067 1.152-0.555 0.64-1.152 1.28-1.749 1.877-0.085 0.085-0.128 0.128-0.171 0.213l-208.555 202.923c-7.552 10.496-19.84 17.365-33.749 17.365-0.171 0-0.341 0-0.469 0-0.171 0-0.341 0-0.512 0h-340.011c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h234.325c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM638.891 731.648l69.504-67.627h-69.504v67.627zM725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM837.419 319.275c9.771-9.429 11.776-23.893 5.845-35.371-1.28-2.517-2.987-4.907-5.077-7.040l-123.307-128c-5.589-5.803-13.269-9.131-21.333-9.216h-0.299c-7.979 0-15.573 3.157-21.205 8.789l-59.221 59.179c-11.691 11.733-11.691 30.72 0 42.453 11.733 11.733 30.72 11.733 42.453 0l37.589-37.589 102.101 105.984c4.907 5.12 11.179 8.064 17.707 8.917 8.704 1.152 17.877-1.536 24.704-8.107z" /> -<glyph unicode="" glyph-name="file-circle-exclaimation" d="M490.667 104.533h-234.325c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-69.931c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v111.488s0 0.171 0 0.256c0 0.896-0.085 1.749-0.128 2.645 0 0.512 0 0.981-0.085 1.493-0.085 0.811-0.213 1.579-0.341 2.389-0.085 0.555-0.171 1.152-0.256 1.707-0.128 0.597-0.299 1.152-0.427 1.707-0.384 1.451-0.811 2.859-1.323 4.224-0.213 0.597-0.384 1.195-0.64 1.792 0 0 0 0.043-0.043 0.085-0.896 2.091-2.005 4.096-3.243 6.059-0.213 0.299-0.341 0.64-0.555 0.939-0.341 0.512-0.768 1.024-1.152 1.536-0.427 0.597-0.853 1.195-1.323 1.749-0.341 0.384-0.725 0.768-1.067 1.152-0.555 0.64-1.152 1.28-1.749 1.877-0.085 0.085-0.128 0.128-0.171 0.213l-208.555 202.923c-7.552 10.496-19.84 17.365-33.749 17.365-0.171 0-0.341 0-0.469 0-0.171 0-0.341 0-0.512 0h-340.011c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h234.325c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM638.891 731.648l69.504-67.627h-69.504v67.627zM725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM763.648 356.992v-0.981s-9.856-168.917-9.856-168.917c-0.768-13.013-11.52-23.125-24.533-23.125h-7.851c-13.013 0-23.765 10.155-24.533 23.125l-9.813 168.917v0.981c-0.853 14.123 10.325 25.984 24.491 25.984h27.563c14.123 0 25.344-11.861 24.533-25.984zM695.979 108.843c-0.341 1.749-0.469 3.541-0.469 5.333 0 16.512 13.355 29.867 29.867 29.867s29.867-13.355 29.867-29.867c0-1.835-0.171-3.584-0.469-5.333-2.517-13.952-14.72-24.533-29.397-24.533s-26.88 10.581-29.397 24.533z" /> -<glyph unicode="" glyph-name="file-circle-minus" d="M490.667 104.533h-234.325c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-69.931c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v111.488s0 0.171 0 0.256c0 0.896-0.085 1.749-0.128 2.645 0 0.512 0 0.981-0.085 1.493-0.085 0.811-0.213 1.579-0.341 2.389-0.085 0.555-0.171 1.152-0.256 1.707-0.128 0.597-0.299 1.152-0.427 1.707-0.384 1.451-0.811 2.859-1.323 4.224-0.213 0.597-0.384 1.195-0.64 1.792 0 0 0 0.043-0.043 0.085-0.896 2.091-2.005 4.096-3.243 6.059-0.213 0.299-0.341 0.64-0.555 0.939-0.341 0.512-0.768 1.024-1.152 1.536-0.427 0.597-0.853 1.195-1.323 1.749-0.341 0.384-0.725 0.768-1.067 1.152-0.555 0.64-1.152 1.28-1.749 1.877-0.085 0.085-0.128 0.128-0.171 0.213l-208.555 202.923c-7.552 10.496-19.84 17.365-33.749 17.365-0.171 0-0.341 0-0.469 0-0.171 0-0.341 0-0.512 0h-340.011c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h234.325c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM638.891 731.648l69.504-67.627h-69.504v67.627zM725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM852.395 233.643c0-16.555-13.44-29.995-29.995-29.995h-194.091c-16.555 0-29.995 13.44-29.995 29.995s13.44 29.995 29.995 29.995h194.091c16.597 0 29.995-13.44 29.995-29.995z" /> -<glyph unicode="" glyph-name="file-circle-plus" d="M490.667 104.533h-234.325c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-69.931c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v111.488s0 0.171 0 0.256c0 0.896-0.085 1.749-0.128 2.645 0 0.512 0 0.981-0.085 1.493-0.085 0.811-0.213 1.579-0.341 2.389-0.085 0.555-0.171 1.152-0.256 1.707-0.128 0.597-0.299 1.152-0.427 1.707-0.384 1.451-0.811 2.859-1.323 4.224-0.213 0.597-0.384 1.195-0.64 1.792 0 0 0 0.043-0.043 0.085-0.896 2.091-2.005 4.096-3.243 6.059-0.213 0.299-0.341 0.64-0.555 0.939-0.341 0.512-0.768 1.024-1.152 1.536-0.427 0.597-0.853 1.195-1.323 1.749-0.341 0.384-0.725 0.768-1.067 1.152-0.555 0.64-1.152 1.28-1.749 1.877-0.085 0.085-0.128 0.128-0.171 0.213l-208.555 202.923c-7.552 10.496-19.84 17.365-33.749 17.365-0.171 0-0.341 0-0.469 0-0.171 0-0.341 0-0.512 0h-340.011c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h234.325c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM638.891 731.648l69.504-67.627h-69.504v67.627zM725.333 447.872c-118.101 0-214.187-96.085-214.187-214.187s96.085-214.187 214.187-214.187 214.187 96.085 214.187 214.187-96.085 214.187-214.187 214.187zM822.4 203.648h-67.029v-67.029c0-16.555-13.44-29.995-29.995-29.995s-29.995 13.44-29.995 29.995v67.029h-67.029c-16.555 0-29.995 13.44-29.995 29.995s13.44 29.995 29.995 29.995h67.029v67.029c0 16.597 13.44 29.995 29.995 29.995s29.995-13.44 29.995-29.995v-67.029h67.029c16.597 0 29.995-13.44 29.995-29.995s-13.44-29.995-29.995-29.995z" /> -<glyph unicode="" glyph-name="file-info" d="M960 406.704v344.784c0 53.504-43.504 97.024-96.992 97.024h-734.016c-53.488 0-96.992-43.536-96.992-97.024v-510.976c0-53.504 43.504-97.024 96.992-97.024h431.472c43.84-58.16 113.264-96 191.552-96 132.336 0 240 107.664 240 240 0 43.408-11.76 84.048-32 119.232zM128.992 784.512h734.032c18.192 0 32.992-14.816 32.992-33.024v-30.976h-800.016v30.976c0 18.224 14.8 33.024 32.992 33.024zM128.992 207.488c-18.192 0-32.992 14.816-32.992 33.024v416h800v-177.488c-40.16 30.272-89.936 48.448-144 48.448-63.12 0-120.432-24.672-163.328-64.64h-396.672c-17.664 0-32-14.336-32-32v-127.36c0-17.664 14.336-32 32-32h320.816c1.488-22.32 6-43.76 13.184-64h-397.008zM516.832 335.488h-292.832v63.36h315.584c-10.368-19.696-18.176-40.928-22.752-63.36zM752 111.488c-97.040 0-176 78.96-176 176s78.96 176 176 176 176-78.96 176-176-78.96-176-176-176zM752 335.488c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM756.016 431.488h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM554.672 558.848h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 559.488h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM373.328 558.848h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM736 559.488h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="file-music" d="M848.896 638.763c-2.005 4.736-4.949 9.173-8.789 13.013v0s0 0 0 0c-0.171 0.171-0.341 0.341-0.512 0.512l-208.341 202.709c-7.509 10.581-19.925 17.536-33.877 17.536h-340.992c-46.635 0-84.523-37.419-84.523-83.371v-684.331c0-45.995 37.931-83.371 84.523-83.371h511.317c46.635 0 84.523 37.419 84.523 83.371v517.632c0 5.803-1.195 11.307-3.328 16.299zM638.891 731.648l69.547-67.627h-69.547v67.627zM769.109 105.045s-0.597-0.512-1.451-0.512h-511.317c-0.853 0-1.28 0.341-1.451 0.512v683.904s0.597 0.512 1.451 0.512h299.477v-166.997c0-22.955 18.603-41.557 41.557-41.557h171.776v-475.904zM516.352 519.808c-11.307-6.187-19.115-17.28-21.077-30.037l-22.699-145.877c-9.6 3.115-19.84 4.779-30.464 4.779-54.912 0-99.584-44.672-99.584-99.584s44.672-99.584 99.584-99.584c54.4 0 98.731 43.819 99.541 98.048l27.392 176.085 54.229-23.851c20.992-9.259 45.525 0.299 54.741 21.291 9.259 20.992-0.299 45.525-21.291 54.741l-103.723 45.611c-11.819 5.205-25.344 4.608-36.693-1.579z" /> -<glyph unicode="" glyph-name="file-pdf" d="M943.52 660.288c-0.112 8.176-3.040 16.208-9.056 22.224l-236.112 236.112c-6.032 6.048-14.096 8.976-22.304 9.072-1.040 0.080-2.048 0.304-3.088 0.304h-353.728c-58.832 0-106.704-47.872-106.704-106.704v-369.344c-76.704-24.896-132.352-96.96-132.352-181.872s55.648-156.976 132.352-181.872v-13.52c0-58.832 47.872-106.704 106.704-106.704h518.064c58.752 0 106.544 47.792 106.544 106.544v582.592c0 1.072-0.224 2.112-0.32 3.184zM707.712 818.736l126.848-126.848h-86.432c-22.288 0-40.416 18.128-40.416 40.4v86.448zM144.16 270.080c0 70.16 57.072 127.248 127.248 127.248h364.336c70.16 0 127.248-57.072 127.248-127.248s-57.072-127.248-127.248-127.248h-364.336c-70.16 0-127.248 57.072-127.248 127.248zM837.296 32h-518.064c-23.552 0-42.704 19.152-42.704 42.704v4.144h359.232c105.456 0 191.248 85.792 191.248 191.248s-85.792 191.248-191.248 191.248h-359.232v359.952c0 23.552 19.152 42.704 42.704 42.704h324.496v-131.696c0-57.568 46.848-104.4 104.416-104.4h131.696v-553.344c0-23.456-19.088-42.544-42.544-42.544zM310.032 222.016h20.56c1.616 0 3.008 1.136 3.312 2.72l5.984 30.224c0.32 1.584 1.712 2.72 3.312 2.72h8.56c28.032 0 52.624 12.048 52.624 44.72 0 22.352-17.376 30.608-39.552 30.608h-33.968c-1.616 0-3.008-1.136-3.312-2.72l-20.848-104.24c-0.416-2.096 1.184-4.048 3.312-4.048zM350.672 308.48c0.304 1.584 1.696 2.736 3.328 2.736h7.104c10.064 0 16.032-4.096 16.032-12.96 0-12.272-8.016-18.752-22-18.752h-5.952c-2.128 0-3.728 1.936-3.328 4.032l4.832 24.944zM412.464 222.016h32.416c34.832 0 61.472 22.208 61.472 67.296 0 30.064-18.784 43.712-49.872 43.712h-23.184c-1.616 0-3.008-1.136-3.312-2.72l-20.848-104.24c-0.416-2.096 1.184-4.048 3.312-4.048zM453.408 311.216h2.4c13.040 0 22.656-6.176 22.656-23.68 0-32.256-15.792-43.936-34.32-43.936-2.128 0-3.728 1.952-3.312 4.048l12.576 63.568zM519.712 222.016h20.592c1.616 0 2.992 1.136 3.312 2.72l7.296 36.192c0.32 1.584 1.712 2.72 3.312 2.72h29.232c1.616 0 3.008 1.152 3.328 2.736l2.912 15.040c0.4 2.096-1.2 4.032-3.328 4.032h-26.384c-2.128 0-3.728 1.936-3.328 4.032l3.296 17.024c0.304 1.584 1.696 2.736 3.328 2.736h35.216c1.616 0 3.008 1.152 3.328 2.736l3.296 17.024c0.4 2.096-1.2 4.032-3.328 4.032h-61.248c-1.616 0-3.008-1.136-3.312-2.72l-20.848-104.24c-0.416-2.096 1.184-4.048 3.312-4.048zM793.776 576.608h-432.336c-17.664 0-32-14.336-32-32s14.336-32 32-32h432.336c17.664 0 32 14.336 32 32s-14.336 32-32 32zM361.456 620.144h69.104c17.664 0 32 14.336 32 32s-14.336 32-32 32h-69.104c-17.664 0-32-14.336-32-32s14.336-32 32-32zM361.456 727.664h179.056c17.664 0 32 14.336 32 32s-14.336 32-32 32h-179.056c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="film-play" d="M992 736c0 61.744-50.256 112-112 112h-80v32c0 17.664-14.336 32-32 32h-608c-8.48 0-16.624-3.376-22.624-9.376l-96-96c-6-6-9.376-14.144-9.376-22.624v-768c0-17.664 14.336-32 32-32h816c61.744 0 112 50.256 112 112v624c0 1.84-0.24 3.6-0.544 5.344 0.336 3.504 0.544 7.056 0.544 10.656zM928 224c0-26.464-21.536-48-48-48h-176v320h176c17.184 0 33.424 4.016 48 10.96v-282.96zM640 112v-64h-256v64h256zM224 176v320h416v-320h-416zM640 624v-64h-256v64h256zM320 560h-96v64h96v-64zM928 608c0-26.464-21.536-48-48-48h-176v64h176c17.184 0 33.424 4.016 48 10.96v-26.96zM880 784c26.464 0 48-21.536 48-48s-21.536-48-48-48h-80v96h80zM96 770.752l77.248 77.248h562.752v-160h-544c-17.664 0-32-14.336-32-32v-608h-64v722.752zM224 112h96v-64h-96v64zM880 48h-176v64h176c17.184 0 33.424 4.016 48 10.96v-26.96c0-26.464-21.536-48-48-48zM526.32 363.904l-158.56 79.28c-9.904 4.944-21.696 4.416-31.136-1.408-9.424-5.824-15.168-16.128-15.168-27.216v-158.56c0-11.088 5.744-21.392 15.168-27.216 5.136-3.168 10.992-4.784 16.832-4.784 4.896 0 9.792 1.12 14.32 3.376l158.56 79.28c10.848 5.424 17.68 16.496 17.68 28.624s-6.848 23.2-17.68 28.624zM385.44 307.776v55.008l55.008-27.504-55.008-27.504z" /> -<glyph unicode="" glyph-name="filterable-gallery" d="M746.209 488.848c-11.851 0-21.458-9.605-21.458-21.458v-77.383l-49.523 48.994c-7.982 8.701-19.282 13.542-31.049 13.304-12.098-0.242-23.422-5.787-31.067-15.218-0.048-0.060-0.098-0.122-0.146-0.182l-141.29-178.188-121.818 96.571c-9.084 8.603-20.891 13.32-33.415 13.32h-0.112c-13.039-0.030-25.285-5.168-34.483-14.468-0.174-0.176-0.345-0.355-0.513-0.537l-109.837-119.047v343.16l86.387 81.132h275.406c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-337.221c-37.211 0-67.486-30.275-67.486-67.486v-504.113c0-37.211 30.275-67.486 67.486-67.486h504.113c37.211 0 67.486 30.275 67.486 67.486v337.223c0 11.853-9.607 21.458-21.458 21.458zM700.182 105.597h-504.113c-13.548 0-24.57 11.020-24.57 24.57v41.104l141.039 152.867c1.369 1.285 2.932 1.517 3.902 1.559 1.076 0 2.647-0.297 4.054-1.709 0.587-0.589 1.208-1.144 1.86-1.661l139.438-110.54c0.012-0.010 0.024-0.020 0.036-0.028l74.73-59.242c3.944-3.126 8.647-4.645 13.316-4.645 6.326 0 12.593 2.787 16.829 8.128 7.362 9.286 5.801 22.784-3.485 30.145l-57.911 45.91 139.829 176.346 79.615-78.764v-199.472c0-13.548-11.022-24.57-24.57-24.57zM446.819 632.827c-70.502 0-127.87-57.348-127.87-127.87s57.368-127.87 127.87-127.87 127.87 57.368 127.87 127.87-57.368 127.87-127.87 127.87zM446.819 420.003c-46.848 0-84.954 38.106-84.954 84.954s38.106 84.954 84.954 84.954 84.954-38.106 84.954-84.954-38.106-84.954-84.954-84.954zM746.215 829.345c-82.319 0-149.049-66.73-149.049-149.029s66.73-149.049 149.049-149.049 149.029 66.73 149.029 149.049-66.73 149.029-149.029 149.029zM832.207 731.015l-63.037-74.514c-2.795-3.274-4.312-7.445-4.312-11.757v-50.781c0-10.060-8.164-18.204-18.224-18.204-5.030 0-9.581 2.036-12.895 5.33-3.294 3.294-5.33 7.845-5.33 12.875v49.144c0 4.312-1.537 8.483-4.332 11.777l-64.035 75.592c-10.020 11.817-1.657 29.942 13.833 30.001l144.358 0.539c15.53 0.040 24.013-18.125 13.973-30.001z" /> -<glyph unicode="" glyph-name="filter-list" d="M232.576 872.533c-81.707 0-148.224-66.475-148.224-148.224s66.475-148.224 148.224-148.224 148.224 66.475 148.224 148.224-66.475 148.224-148.224 148.224zM232.576 659.2c-35.925 0-65.152 29.227-65.152 65.152s29.227 65.152 65.152 65.152 65.152-29.227 65.152-65.152-29.227-65.152-65.152-65.152zM789.333 576.128c81.707 0 148.224 66.475 148.224 148.224s-66.475 148.224-148.224 148.224-148.224-66.475-148.224-148.224 66.475-148.224 148.224-148.224zM789.333 789.461c35.925 0 65.152-29.227 65.152-65.152s-29.227-65.152-65.152-65.152-65.152 29.227-65.152 65.152 29.227 65.152 65.152 65.152zM232.576 317.867c-81.707 0-148.224-66.475-148.224-148.224s66.475-148.224 148.224-148.224 148.224 66.475 148.224 148.224-66.475 148.224-148.224 148.224zM232.576 104.533c-35.925 0-65.152 29.227-65.152 65.152s29.227 65.152 65.152 65.152 65.152-29.227 65.152-65.152-29.227-65.152-65.152-65.152zM789.333 317.867c-81.707 0-148.224-66.475-148.224-148.224s66.475-148.224 148.224-148.224 148.224 66.475 148.224 148.224-66.475 148.224-148.224 148.224zM789.333 104.533c-35.925 0-65.152 29.227-65.152 65.152s29.227 65.152 65.152 65.152 65.152-29.227 65.152-65.152-29.227-65.152-65.152-65.152z" /> -<glyph unicode="" glyph-name="finance-award" d="M425.472 188.624c-4.816 3.84-9.648 7.632-14.416 11.152l-91.632-119.040-9.904 76.112c-1.088 8.4-5.504 16.048-12.224 21.216-6.72 5.184-15.168 7.424-23.664 6.368l-76.096-9.92 53.584 69.648c-17.024 18.432-24.448 42.72-30.688 65.072l-120.72-156.928c-7.888-10.272-8.832-24.272-2.368-35.488 6.464-11.2 19.024-17.344 31.872-15.76l120.976 15.76 15.744-120.976c1.664-12.832 10.912-23.392 23.408-26.752 2.768-0.752 5.568-1.104 8.336-1.104 9.776 0 19.2 4.48 25.36 12.48l139.856 181.712c-13.68 7.472-25.952 17.248-37.424 26.432zM924.288 152.64l-121.584 158.032c-0.832-2.592-1.664-5.184-2.48-7.792-6.208-19.808-13.136-41.472-26.72-59.216l52.96-68.848-76.112 9.92c-17.328 2.272-33.584-10.080-35.872-27.6l-9.904-76.112-92.672 120.4c-7.92-4.56-16.304-10.608-24.576-16.688-8.928-6.576-18.352-13.44-28.416-19.376l142.064-184.56c6.16-8 15.584-12.48 25.36-12.48 2.768 0 5.568 0.352 8.336 1.104 12.496 3.36 21.728 13.92 23.408 26.752l15.744 120.976 120.976-15.76c12.864-1.632 25.408 4.544 31.872 15.76 6.448 11.216 5.52 25.216-2.368 35.488zM670.8 273.312c18.88-0.816 38.448-1.664 47.056 4.368 9.44 6.592 15.472 25.792 21.296 44.368 6.24 19.824 12.672 40.336 25.664 57.616 13.168 17.488 31.264 29.44 48.752 40.992 14.368 9.504 29.184 19.28 34.816 28.816 0.256 2.576 0.784 5.104 1.648 7.552 3.584 10.336-2.672 29.168-8.72 47.376-6.32 19.056-13.488 40.672-13.088 62.752 0.384 21.28 7.888 41.152 15.152 60.368 6.944 18.384 14.128 37.392 10.608 48.912s-20.080 23.28-36.096 34.656c-16.752 11.904-34.064 24.208-46.272 41.664-12.64 18.096-18.752 40.032-24.144 59.376-5.152 18.48-10.464 37.6-19.2 44.176-8.992 6.752-29.008 6.56-48.272 6.448-21.040-0.192-42.656-0.336-63.328 6.816-20.416 7.072-37.2 20.496-53.44 33.488-15.2 12.16-30.928 24.736-42.448 24.944h-0.256c-10.464 0-26.112-11.504-41.232-22.64-16.368-12.064-34.944-25.728-56.496-32.304-21.536-6.576-44.576-5.6-64.912-4.72-18.896 0.784-38.464 1.632-47.072-4.368-9.44-6.608-15.472-25.808-21.296-44.368-6.24-19.84-12.672-40.352-25.664-57.616-13.168-17.472-31.248-29.424-48.752-40.992-16.112-10.656-32.784-21.664-36.448-32.272-3.568-10.336 2.672-29.168 8.72-47.376 6.336-19.056 13.504-40.656 13.104-62.72-0.384-21.296-7.904-41.168-15.152-60.384-6.96-18.384-14.144-37.392-10.624-48.912 0.736-2.4 1.168-4.864 1.328-7.36 5.296-10.464 20.272-21.088 34.784-31.392 16.752-11.904 34.064-24.224 46.272-41.664 12.64-18.096 18.752-40.032 24.144-59.392 5.136-18.464 10.448-37.584 19.2-44.176 8.96-6.736 28.992-6.576 48.256-6.432 3.168 0.032 6.352 0.064 9.568 0.064 17.936 0 36.208-0.8 53.744-6.864 20.432-7.072 37.232-20.512 53.456-33.504 15.2-12.16 30.928-24.736 42.448-24.944 11.008-0.464 26.272 11.424 41.504 22.64 16.368 12.064 34.944 25.712 56.496 32.304 21.568 6.56 44.576 5.6 64.912 4.72zM540.608 294.768c-10.944-8.048-24.24-17.984-31.6-17.952-7.872 0.144-20.912 10.56-32.4 19.744-13.28 10.64-28.336 22.688-46.304 28.912-15.456 5.36-31.84 6.048-46.96 6.048-2.656 0-5.28-0.032-7.856-0.048-14.528-0.096-31.12-0.272-37.248 4.336-5.904 4.448-10.512 20.976-14.208 34.256-4.624 16.608-9.856 35.44-20.976 51.328-10.736 15.344-26.288 26.4-40.016 36.16-10.752 7.632-22.768 16.176-27.040 23.568-0.208 2.096-0.624 4.16-1.232 6.176-2.416 7.952 3.536 23.712 8.784 37.616 5.952 15.744 12.704 33.616 13.040 52.336 0.336 19.376-5.808 37.92-11.248 54.288-4.336 13.072-9.744 29.36-7.328 36.352 2.496 7.216 16.32 16.352 28.496 24.4 14.32 9.472 30.544 20.192 42.128 35.552 11.44 15.184 17.216 33.6 22.32 49.84 4.4 14.048 9.408 29.968 15.856 34.48 5.776 4.032 22.704 3.296 36.24 2.72 17.408-0.736 37.184-1.584 56.128 4.176 18.896 5.76 34.832 17.488 48.88 27.84 10.944 8.064 24.432 17.872 31.616 17.968 7.872-0.144 20.912-10.56 32.384-19.76 13.296-10.64 28.368-22.688 46.336-28.912 18.176-6.288 37.632-6.16 54.784-6 14.64 0.096 31.168 0.256 37.264-4.336 5.904-4.464 10.512-20.976 14.208-34.256 4.624-16.608 9.856-35.44 20.976-51.328 10.736-15.36 26.304-26.416 40.032-36.16 12.112-8.608 25.84-18.368 28.272-26.304 2.416-7.952-3.536-23.712-8.784-37.632-5.952-15.744-12.688-33.6-13.024-52.32-0.336-19.392 5.808-37.952 11.232-54.32 4.336-13.072 9.728-29.344 7.312-36.336-0.704-2.048-1.2-4.16-1.488-6.288-4.512-6.672-16.368-14.512-27.008-21.536-14.32-9.472-30.544-20.192-42.128-35.552-11.44-15.168-17.2-33.584-22.32-49.824-4.4-14.048-9.408-29.952-15.856-34.464-5.776-4.048-22.704-3.328-36.24-2.736-17.44 0.768-37.216 1.584-56.112-4.176-18.912-5.76-34.848-17.504-48.912-27.84zM591.824 520.832c0 54.416-43.12 74.848-71.664 88.368-25.872 12.256-31.472 16.592-31.472 24.384 0 2.96 0 8.48 9.696 12.496 12.112 5.008 27.344 2.528 32.928-3.056 12.496-12.496 32.752-12.496 45.248 0s12.496 32.752 0 45.264c-9.856 9.856-22.864 16.736-37.104 20.656v12.976c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.176c-0.512-0.192-1.040-0.304-1.552-0.512-30.816-12.768-49.216-39.536-49.216-71.632 0-49.984 40.976-69.376 68.064-82.224 29.168-13.808 35.056-18.944 35.056-30.528 0-6.096-11.792-14.496-20.352-14.496-14.48 0-35.712 9.968-40.672 14.112-12.512 12.256-32.592 12.208-45.008-0.24-12.496-12.496-12.496-32.752 0-45.248 10.384-10.384 31.488-21.456 53.68-27.664v-14.112c0-17.68 14.336-32 32-32s32 14.32 32 32v15.76c28.464 11.664 52.352 37.968 52.352 71.872z" /> -<glyph unicode="" glyph-name="finance-shield" d="M917.84 821.136c-6.016 6.176-14.544 9.792-23.168 9.792-257.872 0-362.128 88.16-362.976 88.896-11.84 10.656-29.68 10.96-41.888 0.736-1.072-0.896-110.224-89.632-363.84-89.632-17.664 0-32-14.336-32-32v-306.88c0-129.712 56.736-252.416 151.76-328.24l230.192-183.632c10.128-8.112 22.272-12.16 34.4-12.16s24.24 4.032 34.336 12.112l230.24 183.664c95.024 75.808 151.76 198.512 151.744 327.44 7.712 312.944 2.528 318.24-8.816 329.872zM862.672 492.048c0-110.416-47.728-214.416-127.664-278.208l-224.672-179.232-224.688 179.232c-79.936 63.776-127.664 167.776-127.664 278.208v275.328c195.808 5.632 308.336 61.936 351.92 89.36 42.832-28.016 153.52-84.448 355.712-89.456 1.184-50.256-0.304-167.632-2.944-275.232zM522.64 545.2c-24.288 11.504-28.16 15.12-28.16 20.848 0 2.576 0 6.48 7.744 9.68 10.32 4.288 23.76 2.24 28.384-2.384 12.496-12.496 32.752-12.496 45.248 0s12.496 32.752 0 45.248c-9.104 9.104-20.976 15.6-34.016 19.424v10.432c0 17.664-14.336 32-32 32s-32-14.336-32-32v-13.552s-0.080-0.032-0.128-0.048c-29.6-12.256-47.248-37.984-47.248-68.816 0-48 38.976-66.464 64.752-78.672 27.584-13.056 31.504-17.392 31.504-26.56 0-4.128-9.744-11.392-16.88-11.392-12.096 0-31.296 8.352-36.544 12.64-12.544 12.176-32.56 12.080-44.96-0.336-12.48-12.496-12.48-32.768 0.032-45.248 9.648-9.648 28.96-19.92 49.472-25.904v-11.568c0-17.664 14.336-32 32-32s32 14.336 32 32v13.344c26.704 11.472 48.88 36.432 48.88 68.464 0 52.144-42.624 72.336-68.096 84.4z" /> -<glyph unicode="" glyph-name="fingerprint" d="M370.912 768.304c-110.336-53.424-178.912-163.008-178.912-285.952v-68.688c0-15.216 1.168-31.152 3.472-47.36 2.288-15.968 15.968-27.488 31.648-27.488 1.52 0 3.024 0.112 4.56 0.32 17.488 2.496 29.664 18.704 27.168 36.208-1.92 13.408-2.848 25.936-2.848 38.336v68.688c0 98.208 54.72 185.696 142.816 228.352 15.904 7.696 22.544 26.832 14.848 42.736-7.68 15.936-26.832 22.512-42.752 14.864zM64 800c17.664 0 32 14.336 32 32v32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32v-64c0-17.664 14.336-32 32-32zM960 928h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h64v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v64c0 17.664-14.336 32-32 32zM160 32h-64v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-64c0-17.664 14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 96c-17.664 0-32-14.336-32-32v-32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32zM960 288h-140.272c16.928 39.424 25.92 82 25.92 125.664v68.688c0 175.152-142.496 317.664-317.664 317.664h-18.336c-17.664 0-32-14.336-32-32s14.336-32 32-32h18.336c139.856 0 253.664-113.792 253.664-253.664v-68.688c0-44.448-11.424-87.52-33.104-125.664h-225.024c-76.928 0-139.52 62.592-139.52 139.52v40.976c0 17.664-14.336 32-32 32s-32-14.336-32-32v-40.976c0-54.016 21.296-103.040 55.744-139.52h-230.256c-11.312 35.328-17.488 72.96-17.488 112v96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-96c0-38.736 5.2-76.256 14.816-112h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h37.632c67.52-150.704 218.832-256 394.368-256h32c9.728 0 19.456 0.448 29.152 1.088 2.32 0.16 4.64 0.32 6.944 0.496 9.488 0.784 18.96 1.776 28.336 3.168 1.008 0.144 2 0.352 3.008 0.512 5.616 0.88 11.216 1.776 16.768 2.864 0.864 0.176 1.632 0.512 2.464 0.752 135.6 27.392 250.576 118.048 307.888 247.104h37.424c17.664 0 32 14.336 32 32s-14.336 32-32 32zM593.936 38.080c-7.744-1.392-15.552-2.512-23.408-3.408-3.232-0.368-6.432-0.8-9.68-1.088-10.912-0.96-21.872-1.584-32.864-1.584h-32c-139.2 0-260.592 77.696-323.104 192h678.448c-53.264-98.416-147.856-166.272-257.408-185.92zM110.896 609.76c3.76-1.44 7.632-2.128 11.44-2.128 12.864 0 24.992 7.824 29.888 20.576 54.848 143.232 189.792 235.776 343.776 235.776h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-180.736 0-339.136-108.688-403.568-276.912-6.32-16.496 1.936-35.008 18.448-41.328zM658.208 840.528c142.24-53.568 237.792-192.016 237.792-344.528v-96c0-17.664 14.336-32 32-32s32 14.336 32 32v96c0 179.008-112.224 341.536-279.232 404.432-16.576 6.208-34.992-2.128-41.232-18.672-6.224-16.544 2.144-35.008 18.672-41.232zM672 427.52c0-18.816-3.696-37.216-11.008-54.688-6.832-16.32 0.864-35.040 17.168-41.856 4.032-1.68 8.224-2.496 12.336-2.496 12.512 0 24.4 7.408 29.536 19.664 10.592 25.328 15.968 52.032 15.968 79.376v40.976c0 17.664-14.336 32-32 32s-32-14.336-32-32v-40.976zM532.48 672h-8.976c-54.48 0-105.616-21.152-143.984-59.568-12.48-12.496-12.48-32.752 0.032-45.248 12.464-12.464 32.752-12.496 45.248 0.032 26.288 26.304 61.328 40.784 98.704 40.784h8.976c37.376 0 72.416-14.48 98.704-40.784 6.256-6.272 14.432-9.392 22.64-9.392s16.368 3.12 22.608 9.36c12.512 12.496 12.512 32.752 0.032 45.248-38.368 38.4-89.504 59.568-143.984 59.568zM518.832 480c7.984 0 13.264-3.728 16.288-6.88 12.288-12.752 32.528-13.12 45.248-0.88 12.736 12.272 13.12 32.512 0.88 45.248-16.448 17.088-38.608 26.496-62.4 26.496-48.336 0-87.68-40-87.68-89.168v-13.664c0-49.168 39.344-89.168 87.68-89.168 17.664 0 32 14.336 32 32s-14.336 32-32 32c-13.056 0-23.68 11.296-23.68 25.168v13.664c0 13.872 10.624 25.168 23.68 25.168z" /> -<glyph unicode="" glyph-name="flag" d="M971.152 298.816l-104.336 101.184 104.336 101.184c1.344 1.296 2.56 2.72 3.664 4.24 14.32 19.792 16.304 45.616 5.168 67.36-11.104 21.712-33.136 35.216-57.488 35.216h-229.632v160c0 52.944-43.056 96-96 96h-325.6c-13.216 37.232-48.688 64-90.4 64h-32c-52.944 0-96-43.056-96-96v-674.080c-10.496-18.896-16-40.096-16-61.92 0-70.576 57.424-128 128-128s128 57.424 128 128c0 21.664-5.504 42.864-16 61.856v290.144h96v-160c0-52.944 43.056-96 96-96h453.632c24.336 0 46.368 13.504 57.488 35.216 11.12 21.744 9.136 47.568-5.168 67.36-1.088 1.52-2.32 2.944-3.664 4.24zM164.88 32c-35.296 0-64 28.704-64 64 0 12.624 3.664 24.8 10.624 35.232 3.504 5.264 5.376 11.44 5.376 17.744v683.024c0 17.648 14.352 32 32 32h32c17.648 0 32-14.352 32-32v-683.008c0-6.256 1.824-12.368 5.28-17.616 6.912-10.48 10.72-23.056 10.72-35.376 0-35.296-28.704-64-64-64zM276.88 800h320c17.648 0 32-14.352 32-32v-261.6c-10.032 3.568-20.768 5.6-32 5.6h-320v288zM468.88 448h128c17.648 0 32-14.352 32-32s-14.352-32-32-32h-128c-11.232 0-21.968-2.048-32-5.6v69.6h32zM564.88 256h-96c-17.936 0-32 14.064-32 32s14.064 32 32 32h128c52.944 0 96 43.056 96 96v127.872l229.36-0.976-101.392-98.352-27.232 26.432c-12.64 12.304-32.928 12-45.248-0.688-12.304-12.672-12-32.944 0.688-45.248l62.864-61.008c0.192-0.176 0.4-0.304 0.592-0.464l110.48-107.168-358.112-0.368z" /> -<glyph unicode="" glyph-name="flashlight" d="M751.275 644.949c-8.149 10.24-20.523 16.213-33.621 16.213h-411.264c-13.099 0-25.472-5.973-33.621-16.213s-11.221-23.637-8.277-36.395l37.973-166.016c11.989-52.437 40.448-96.384 81.237-126.208v-253.867c0-23.765 19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008v253.867c40.747 29.824 69.248 73.771 81.237 126.208l6.912 30.251c1.749 4.224 2.773 8.789 3.115 13.525l27.947 122.24c2.901 12.757-0.128 26.155-8.277 36.395zM576.597 377.472c-13.739-7.552-22.229-21.973-22.229-37.675v-234.325h-84.651v234.325c0 15.659-8.533 30.080-22.229 37.675-26.453 14.592-46.165 38.656-56.661 68.693h242.475c-10.496-30.037-30.165-54.101-56.661-68.693zM653.867 532.181h-283.691l-9.856 43.008h303.36l-9.856-43.008z" /> -<glyph unicode="" glyph-name="flashlight-on" d="M717.611 661.163h-411.221c-13.099 0-25.472-5.973-33.621-16.213s-11.221-23.637-8.277-36.395l37.973-166.016c11.989-52.437 40.448-96.384 81.237-126.208v-253.867c0-23.765 19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008v253.867c40.747 29.824 69.248 73.771 81.237 126.208l6.912 30.251c1.749 4.224 2.773 8.789 3.115 13.525l27.947 122.24c2.901 12.757-0.128 26.155-8.277 36.395s-20.523 16.213-33.621 16.213zM663.68 575.147l-9.856-43.008h-283.691l-9.856 43.008h303.36zM576.597 377.472c-13.739-7.552-22.229-21.973-22.229-37.675v-234.325h-84.651v234.325c0 15.659-8.533 30.080-22.229 37.675-26.453 14.592-46.165 38.656-56.661 68.693h242.475c-10.496-30.037-30.165-54.101-56.661-68.693zM512 702.677c23.765 0 43.008 19.243 43.008 43.008v85.333c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-85.333c0-23.765 19.243-43.008 43.008-43.008zM341.376 702.677c6.443 0 13.013 1.451 19.2 4.565 21.248 10.624 29.867 36.437 19.243 57.685l-42.667 85.333c-10.624 21.248-36.437 29.867-57.685 19.243s-29.867-36.437-19.243-57.685l42.667-85.333c7.552-15.061 22.741-23.765 38.485-23.765zM744.576 869.461c-21.248 10.624-47.061 2.005-57.685-19.243l-42.667-85.333c-10.624-21.248-2.005-47.061 19.243-57.685 6.187-3.072 12.715-4.565 19.2-4.565 15.787 0 30.976 8.704 38.485 23.765l42.667 85.333c10.624 21.248 2.005 47.061-19.243 57.685z" /> -<glyph unicode="" glyph-name="flip-box" d="M729.296 895.296l-448-96c-14.752-3.168-25.296-16.208-25.296-31.296v-640c0-15.088 10.544-28.128 25.296-31.296l448-96c2.224-0.464 4.464-0.704 6.704-0.704 7.248 0 14.368 2.464 20.128 7.104 7.504 6.080 11.872 15.232 11.872 24.896v832c0 9.664-4.368 18.816-11.872 24.896-7.52 6.064-17.408 8.384-26.832 6.4zM704 824.416v-510.736l-69.376 104.064c-5.76 8.64-15.36 13.952-25.728 14.24-10.192 0.384-20.272-4.48-26.48-12.784l-68.864-91.824-70.912 106.368c-5.664 8.496-15.024 13.776-25.232 14.224-10.432 0.176-20.016-4.016-26.368-11.984l-71.008-88.768v394.912l384 82.304zM320 153.872v90.912l93.664 117.056 103.712-155.6c6.176-9.248 16.32-14.256 26.656-14.256 6.096 0 12.272 1.728 17.712 5.376 14.704 9.792 18.672 29.664 8.88 44.368l-19.44 29.168 55.28 73.696 97.536-146.304v-126.736l-384 82.304zM192 768h-128c-17.664 0-32-14.336-32-32v-576c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96v512h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 768h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-512h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32v576c0 17.664-14.336 32-32 32zM399.968 631.984c2.224 0 4.464 0.224 6.736 0.704l224 48c17.28 3.696 28.304 20.72 24.592 38-3.696 17.264-20.64 28.288-38 24.592l-224-48c-17.28-3.696-28.304-20.72-24.592-38 3.216-15.008 16.496-25.296 31.264-25.296zM561.328 603.28l-168.048-36.016c-17.28-3.696-28.288-20.72-24.56-38 3.216-15.008 16.48-25.28 31.248-25.28 2.224 0 4.48 0.24 6.752 0.72l167.984 35.984c17.296 3.696 28.304 20.704 24.608 37.984s-20.752 28.288-37.984 24.608zM192 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 448h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 320h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 448c0-17.664 14.336-32 32-32h32c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-96c-17.664 0-32-14.336-32-32zM832 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="folder" d="M873.072 736.048h-344.032l-53.584 79.744c-20.88 31.072-55.68 49.616-93.12 49.616h-231.424c-65.584 0-118.928-53.344-118.928-118.928v-596.96c0-65.584 53.344-118.928 118.928-118.928h756.544c46.608 0 84.528 37.92 84.528 84.528v502c0 65.584-53.344 118.928-118.928 118.928zM150.928 801.408h231.424c16.080 0 31.024-7.968 40-21.312l29.6-44.048h-144.032c-30.016 0-59.28-12.32-80.288-33.824l-131.632-134.832v179.088c0 30.288 24.64 54.928 54.928 54.928zM928 115.12c0-11.328-9.2-20.528-20.528-20.528h-756.544c-30.288 0-54.928 24.64-54.928 54.928v326.224l177.424 181.76c9.008 9.232 21.6 14.528 34.48 14.528h565.168c30.288 0 54.928-24.64 54.928-54.928v-502z" /> -<glyph unicode="" glyph-name="folder-arrow-down" d="M785.323 703.317h-245.163c-6.699 0-12.971 2.603-17.664 7.339l-45.483 45.483c-20.949 20.949-48.853 32.512-78.507 32.512h-159.829c-61.184 0-111.019-49.792-111.019-111.019v-461.355c0-61.227 49.792-111.019 111.019-111.019h546.688c61.184 0 111.019 49.792 111.019 111.019v375.979c0 61.227-49.792 111.019-111.019 111.019zM810.325 216.32c0-13.781-11.221-25.003-25.003-25.003h-546.645c-13.781 0-25.003 11.221-25.003 25.003v461.355c0 13.781 11.221 25.003 25.003 25.003h159.829c6.656 0 12.971-2.603 17.664-7.339l45.483-45.483c20.949-20.949 48.853-32.512 78.507-32.512h245.163c13.781 0 25.003-11.221 25.003-25.003v-375.979zM585.685 410.837l-30.677-30.677v152.192c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-152.192l-30.677 30.677c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l104.107-104.107s0.043-0.043 0.085-0.085c0.981-0.981 2.005-1.877 3.072-2.773 0.512-0.427 1.024-0.768 1.536-1.152 0.597-0.469 1.195-0.939 1.835-1.365 0.597-0.427 1.237-0.768 1.877-1.152 0.555-0.341 1.152-0.683 1.707-1.024 0.64-0.341 1.28-0.64 1.963-0.939 0.64-0.299 1.237-0.597 1.877-0.853s1.28-0.469 1.92-0.725c0.683-0.256 1.365-0.512 2.048-0.725 0.64-0.213 1.28-0.341 1.963-0.512 0.725-0.171 1.408-0.384 2.133-0.512 0.768-0.128 1.493-0.256 2.261-0.341 0.64-0.085 1.237-0.213 1.877-0.256 1.408-0.128 2.816-0.213 4.224-0.213s2.816 0.085 4.224 0.213c0.64 0.043 1.28 0.171 1.877 0.256 0.768 0.128 1.536 0.213 2.261 0.341s1.408 0.341 2.133 0.512c0.64 0.171 1.323 0.299 1.963 0.512 0.683 0.213 1.365 0.469 2.048 0.725 0.64 0.213 1.28 0.427 1.92 0.725 0.64 0.256 1.237 0.555 1.877 0.853s1.323 0.597 1.963 0.939c0.597 0.299 1.152 0.683 1.707 1.024 0.64 0.384 1.28 0.725 1.877 1.152 0.64 0.427 1.237 0.896 1.835 1.365 0.512 0.384 1.067 0.725 1.536 1.152 1.067 0.896 2.091 1.792 3.072 2.773 0 0 0.043 0.043 0.085 0.085l104.107 104.107c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0z" /> -<glyph unicode="" glyph-name="folder-arrow-up" d="M785.323 703.317h-245.163c-6.699 0-12.971 2.603-17.664 7.339l-45.483 45.483c-20.949 20.949-48.853 32.512-78.507 32.512h-159.829c-61.227 0-111.019-49.792-111.019-111.019v-461.355c0-61.227 49.792-111.019 111.019-111.019h546.645c61.227 0 111.019 49.792 111.019 111.019v375.979c0 61.227-49.792 111.019-111.019 111.019zM810.325 216.32c0-13.781-11.221-25.003-25.003-25.003h-546.645c-13.781 0-25.003 11.221-25.003 25.003v461.355c0 13.781 11.221 25.003 25.003 25.003h159.829c6.656 0 12.971-2.603 17.664-7.339l45.483-45.483c20.949-20.949 48.853-32.512 78.507-32.512h245.163c13.781 0 25.003-11.221 25.003-25.003v-375.979zM542.421 562.731c-1.024 1.024-2.048 1.963-3.157 2.859-0.512 0.427-1.024 0.768-1.536 1.152-0.597 0.469-1.195 0.939-1.835 1.365-0.597 0.427-1.237 0.768-1.877 1.152-0.555 0.341-1.152 0.683-1.707 1.024-0.64 0.341-1.323 0.64-1.963 0.939-0.597 0.299-1.237 0.597-1.877 0.853s-1.28 0.469-1.92 0.725c-0.683 0.256-1.365 0.512-2.048 0.725-0.64 0.213-1.323 0.341-1.963 0.512-0.725 0.171-1.408 0.384-2.133 0.512-0.768 0.171-1.536 0.256-2.261 0.341-0.64 0.085-1.237 0.213-1.877 0.256-2.816 0.299-5.675 0.299-8.491 0-0.64-0.043-1.237-0.171-1.877-0.256-0.768-0.128-1.536-0.213-2.261-0.341s-1.408-0.341-2.133-0.512c-0.64-0.171-1.323-0.299-1.963-0.512-0.683-0.213-1.365-0.469-2.048-0.725-0.64-0.213-1.28-0.427-1.92-0.725-0.64-0.256-1.237-0.555-1.877-0.853s-1.323-0.597-1.963-0.939c-0.597-0.299-1.152-0.683-1.707-1.024-0.64-0.384-1.28-0.725-1.877-1.152-0.64-0.427-1.237-0.896-1.835-1.365-0.512-0.384-1.024-0.725-1.536-1.152-1.109-0.896-2.133-1.835-3.157-2.859l-104.107-104.107c-16.811-16.811-16.811-44.032 0-60.8 16.811-16.811 44.032-16.811 60.8 0l30.677 30.677v-152.192c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v152.192l30.677-30.677c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-104.107 104.107z" /> -<glyph unicode="" glyph-name="folder-check" d="M583.808 519.893l-134.528-136.064-66.304 66.304c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l96.853-96.853c8.064-8.064 18.987-12.587 30.421-12.587h0.128c11.435 0 22.4 4.608 30.464 12.757l164.949 166.784c16.683 16.896 16.555 44.117-0.341 60.8s-44.117 16.555-60.8-0.341zM785.323 703.317h-245.163c-6.699 0-12.971 2.603-17.664 7.339l-45.483 45.483c-20.949 20.949-48.853 32.512-78.507 32.512h-159.829c-61.227 0-111.019-49.792-111.019-111.019v-461.355c0-61.227 49.792-111.019 111.019-111.019h546.645c61.227 0 111.019 49.792 111.019 111.019v375.979c0 61.227-49.792 111.019-111.019 111.019zM810.325 216.32c0-13.781-11.221-25.003-25.003-25.003h-546.645c-13.781 0-25.003 11.221-25.003 25.003v461.355c0 13.781 11.221 25.003 25.003 25.003h159.829c6.656 0 12.971-2.603 17.664-7.339l45.483-45.483c20.949-20.949 48.853-32.512 78.507-32.512h245.163c13.781 0 25.003-11.221 25.003-25.003v-375.979z" /> -<glyph unicode="" glyph-name="folder-file" d="M896 832h-115.568l-3.968 11.904c-10.528 31.152-39.664 52.096-72.464 52.096h-160c-35.296 0-64-28.704-64-64h-115.568l-3.968 11.904c-10.528 31.152-39.664 52.096-72.464 52.096h-160c-35.296 0-64-28.704-64-64v-136.896c-19.040-11.104-32-31.52-32-55.104v-544c0-52.944 43.056-96 96-96h768c52.944 0 96 43.056 96 96v640c0 52.944-43.056 96-96 96zM96 96v544h200.944l24.704-74.128c4.464-13.408 16.96-21.888 30.352-21.888 3.36 0 6.768 0.528 10.128 1.664 13.408 4.464 21.728 16.96 21.744 30.352h384.144c17.648 0 32-14.352 32-32v-448c0-11.232 2.032-21.968 5.6-32h-677.616c-17.952 0-32 14.064-32 32zM928 96c0-17.936-14.048-32-32-32s-32 14.064-32 32v448c0 52.944-43.056 96-96 96h-403.6l-14.048 42.128c-4.352 13.056-16.592 21.872-30.352 21.872h-192v128h160c5.424 0 10.080-3.376 11.792-8.448l21.84-65.664c5.584-16.752 23.696-25.856 40.464-20.256 13.424 4.464 21.76 16.96 21.76 30.352h96.144c0-17.664 14.336-32 32-32s32 14.336 32 32v64h160c5.424 0 10.080-3.376 11.792-8.448l21.84-65.664c4.464-13.408 16.96-21.904 30.352-21.904 3.344 0 6.752 0.528 10.112 1.664 13.424 4.464 21.76 16.96 21.76 30.352h96.144c17.952 0 32-14.064 32-32v-640zM704 320h-512c-17.664 0-32-14.336-32-32v-160c0-17.664 14.336-32 32-32h512c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32zM672 160h-448v96h448v-96zM704 416h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM704 512h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="folder-open" d="M978.096 433.152c-10.432 17.712-25.584 31.152-43.296 39.52v29.392c0 55.104-44.832 99.936-99.92 99.936h-36.72v144.096c0 55.104-44.832 99.936-99.936 99.936h-381.616c-54.88 0-99.536-44.656-99.536-99.536v-144.496h-85.136c-55.104 0-99.936-44.832-99.936-99.936v-352.176c0-55.104 44.832-99.936 99.936-99.936h630.928c36.304 0 69.776 19.712 87.376 51.424l129.104 232.576c17.36 31.28 16.896 68.352-1.248 99.2zM834.88 538c19.808 0 35.92-16.128 35.92-35.936v-19.664h-72.64v55.616h36.72zM281.072 746.496c0 19.6 15.936 35.536 35.536 35.536h381.616c19.808 0 35.936-16.128 35.936-35.936v-263.696h-453.072v264.096zM131.936 538h85.136v-80.272l-121.072-250.992v295.344c0 19.808 16.128 35.936 35.936 35.936zM923.376 365.024l-129.104-232.576c-6.336-11.392-18.352-18.48-31.408-18.48h-583.44c-18.544 0-27.84 12.384-30.992 17.712-3.12 5.328-9.456 19.456-0.432 35.664 0.304 0.528 0.576 1.072 0.848 1.632l120.336 249.424h622.8c18.544 0 27.824-12.384 30.976-17.696 3.12-5.328 9.44-19.456 0.432-35.664zM348.112 506.48h164.656c17.664 0 32 14.336 32 32s-14.336 32-32 32h-164.656c-17.664 0-32-14.336-32-32s14.336-32 32-32zM669.44 570.48h-72.208c-17.664 0-32-14.336-32-32s14.336-32 32-32h72.208c17.664 0 32 14.336 32 32s-14.336 32-32 32zM348.112 598.176h321.328c17.664 0 32 14.336 32 32s-14.336 32-32 32h-321.328c-17.664 0-32-14.336-32-32s14.336-32 32-32zM348.112 689.888h231.664c17.664 0 32 14.336 32 32s-14.336 32-32 32h-231.664c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="folder-open-2" d="M902.741 538.368c-2.048 2.304-4.181 4.48-6.4 6.571v47.403c0 61.227-49.792 111.019-111.019 111.019h-245.163c-6.699 0-12.971 2.603-17.664 7.339l-45.483 45.483c-20.949 20.949-48.853 32.512-78.507 32.512h-159.829c-61.227 0-111.019-49.792-111.019-111.019v-461.355c0-61.227 49.792-111.019 111.019-111.019h553.813c56.619 0 104.064 42.453 110.336 98.731l27.563 247.979c3.499 31.36-6.571 62.805-27.605 86.272zM213.675 677.675c0 13.781 11.221 25.003 25.003 25.003h159.829c6.656 0 12.971-2.603 17.664-7.339l45.483-45.483c20.949-20.949 48.853-32.512 78.507-32.512h245.163c13.781 0 25.003-11.221 25.003-25.003v-16.981h-462.635c-47.872 0-90.155-30.507-105.301-75.904l-28.715-86.101v264.363zM844.885 461.568l-27.563-248.021c-1.408-12.672-12.075-22.229-24.832-22.229h-553.813c-2.773 0-5.419 0.469-7.893 1.28l93.227 279.637c3.413 10.24 12.928 17.109 23.723 17.109h472.363c9.728 0 15.829-5.205 18.645-8.32 2.773-3.115 7.296-9.771 6.229-19.413z" /> -<glyph unicode="" glyph-name="folders" d="M884.352 760.976h-297.12l-45.392 67.536c-18.928 28.208-50.496 45.024-84.464 45.024h-201.376c-59.344 0-107.632-48.288-107.632-107.648v-519.424c0-59.344 48.288-107.632 107.632-107.632h658.304c42.848 0 77.696 34.864 77.696 77.696v436.8c0 59.344-48.288 107.632-107.648 107.632zM256 809.536h201.376c12.608 0 24.32-6.24 31.344-16.704l21.408-31.856h-117.536c-27.248 0-53.792-11.184-72.832-30.672l-107.392-110.016v145.616c0 24.064 19.568 43.648 43.632 43.648zM928 216.544c0-7.568-6.144-13.696-13.696-13.696h-658.304c-24.064 0-43.632 19.568-43.632 43.632v282.16l153.2 156.96c7.040 7.232 16.912 11.376 27.008 11.376h491.76c24.064 0 43.648-19.568 43.648-43.632v-436.8zM870.544 86.464h-621.696c-84.288 0-152.848 68.56-152.848 152.832v469.12c0 17.664-14.336 32-32 32s-32-14.336-32-32v-469.12c0-119.568 97.28-216.832 216.848-216.832h621.696c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="forest" d="M907.563 239.701l-64.768 64.768c16.469 0.085 31.445 9.515 38.571 24.363 7.168 14.891 5.163 32.597-5.163 45.483l-83.456 104.32c16.811 3.968 30.976 15.744 37.803 32.213 8.064 19.456 4.267 41.515-9.6 57.088l-163.115 204.544c-8.149 10.24-20.523 16.171-33.621 16.171s-25.472-5.973-33.621-16.171l-42.667-53.504c-14.805-18.56-11.776-45.611 6.784-60.416s45.611-11.776 60.416 6.784l9.045 11.349 90.581-113.579h-10.325c-16.512 0-31.616-9.472-38.741-24.363-7.168-14.891-5.163-32.597 5.163-45.483l82.261-102.827h-14.165c-17.408 0-33.067-10.496-39.723-26.539-6.656-16.085-2.987-34.56 9.301-46.848l64.768-64.768h-102.741l-52.139 52.139c16.469 0.085 31.445 9.515 38.571 24.363 7.168 14.891 5.163 32.597-5.163 45.483l-83.456 104.32c16.811 3.968 30.976 15.744 37.803 32.213 8.064 19.456 4.267 41.515-9.6 57.088l-163.157 204.544c-8.149 10.24-20.523 16.171-33.621 16.171s-25.472-5.973-33.621-16.171l-163.115-204.544c-13.867-15.573-17.664-37.632-9.6-57.088 6.827-16.469 20.992-28.245 37.803-32.213l-83.456-104.32c-10.325-12.928-12.331-30.592-5.163-45.483 7.125-14.848 22.101-24.32 38.571-24.363l-64.768-64.768c-12.288-12.288-15.957-30.805-9.301-46.848 6.656-16.085 22.315-26.539 39.723-26.539h136.021c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-32.213l64.768 64.768c12.288 12.288 15.957 30.805 9.301 46.848-6.656 16.085-22.315 26.539-39.723 26.539h-14.165l82.261 102.827c10.325 12.928 12.331 30.592 5.163 45.483s-22.229 24.363-38.741 24.363h-10.325l90.581 113.579 90.581-113.579h-10.325c-16.512 0-31.616-9.472-38.741-24.363-7.168-14.891-5.163-32.597 5.163-45.483l82.261-102.827h-14.165c-17.408 0-33.067-10.496-39.723-26.539-6.656-16.085-2.987-34.56 9.301-46.848l64.768-64.768h-106.155v78.891c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-268.203c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v103.296h138.368v-103.296c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v103.296h209.963c17.408 0 33.067 10.496 39.723 26.539 6.656 16.085 2.987 34.56-9.301 46.848z" /> -<glyph unicode="" glyph-name="form" d="M788.184 618.832h-636.85c-12.958 0-23.5-10.542-23.5-23.5v-253.716c0-12.958 10.542-23.5 23.5-23.5h636.852c12.958 0 23.5 10.542 23.5 23.5v253.716c0 12.958-10.542 23.5-23.5 23.5zM170.834 575.832h597.852v-146.748l-70.076-67.968h-527.776v214.716zM233.596 490.5h219.384c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-219.384c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM624.474 448.166h-390.878c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h390.878c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5zM236.668 661.166h345.764c12.958 0 23.5 10.542 23.5 23.5v124c0 12.958-10.542 23.5-23.5 23.5h-345.764c-12.958 0-23.5-10.542-23.5-23.5v-124c0-12.958 10.542-23.5 23.5-23.5zM256.168 789.166h306.764v-85h-306.764v85zM512 768.166h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM932.536 425.274c-8.396 8.396-22.008 8.396-30.406 0l-23.384-23.384-10.168 10.168c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.57 53.79 53.788c8.396 8.396 8.396 22.010 0 30.406zM551.282 289.496l-23.382-23.384-10.166 10.168c-8.396 8.394-22.008 8.398-30.406 0-8.396-8.396-8.398-22.010 0-30.406l40.572-40.574 53.79 53.792c8.396 8.396 8.396 22.010 0 30.406-8.396 8.394-22.010 8.394-30.406 0zM685.468 696.968l53.79 53.79c8.396 8.396 8.396 22.010 0 30.406-8.396 8.398-22.010 8.398-30.406 0l-23.382-23.382-10.168 10.166c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.572zM236.668 149.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.668c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.668c0 12.979 10.521 23.5 23.5 23.5zM266.168 191.832h129c29.224 0 53 23.776 53 53s-23.776 53-53 53h-129c-29.224 0-53-23.776-53-53s23.776-53 53-53zM266.168 254.832h129c5.514 0 10-4.486 10-10s-4.486-10-10-10h-129c-5.514 0-10 4.486-10 10s4.486 10 10 10z" /> -<glyph unicode="" glyph-name="forum" d="M793.131 661.632h-25.131v27.051c0 38.016-30.805 68.779-68.779 68.779h-545.109c-38.016 0-68.779-30.805-68.779-68.779v-475.989c0-19.883 16.299-33.536 33.621-33.536 7.083 0 14.379 2.304 20.736 7.381l73.813 59.051c5.163-52.523 49.237-93.653 102.699-93.653h372.523l89.941-72.875c13.184-10.709 29.099-16.171 45.227-16.171 10.496 0 21.12 2.347 31.104 7.083 25.472 12.16 41.301 37.291 41.301 65.664v421.973c0 57.344-46.293 103.979-103.211 103.979zM171.349 322.005v349.483h510.677v-305.877h-426.027c-19.541 0-38.485-6.656-53.717-18.859l-30.976-24.747zM810.325 164.139l-79.275 64.256c-7.637 6.187-17.237 9.6-27.093 9.6h-387.755c-9.472 0-17.195 8.064-17.195 18.005v23.637h400.171c38.016 0 68.779 30.805 68.779 68.779v227.2h25.131c9.472 0 17.195-8.064 17.195-18.005v-393.515z" /> -<glyph unicode="" glyph-name="full-screen-slider" d="M738.716 662.102h-614.574c-22.882 0-41.5-18.618-41.5-41.5v-345.602c0-22.882 18.618-41.5 41.5-41.5h614.574c22.882 0 41.5 18.618 41.5 41.5v345.602c0 22.882-18.618 41.5-41.5 41.5zM737.216 276.5h-611.574v274.94l62.2 67.662h549.374v-342.602zM810.572 640.196c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c5.030 0 8.368-2.994 8.368-4.974v-288.838c0-1.98-3.338-4.974-8.368-4.974-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c28.324 0 51.368 21.522 51.368 47.974v288.838c0 26.454-23.044 47.974-51.368 47.974zM889.99 617.186c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c4.456 0 7.33-1.596 8.368-2.534v-247.702c-1.038-0.938-3.91-2.536-8.368-2.536-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c28.804 0 51.368 19.508 51.368 44.41v249.952c0 24.902-22.564 44.408-51.368 44.408zM492.32 362.894c-8.286 0-15.002-6.716-15.002-15.002s6.718-15.002 15.002-15.002 15.002 6.718 15.002 15.002-6.718 15.002-15.002 15.002zM431.43 362.894c-8.286 0-15.002-6.716-15.002-15.002s6.718-15.002 15.002-15.002 15.002 6.718 15.002 15.002-6.716 15.002-15.002 15.002zM370.54 362.894c-8.286 0-15.002-6.716-15.002-15.002s6.716-15.002 15.002-15.002 15.002 6.718 15.002 15.002-6.716 15.002-15.002 15.002zM358.702 467.77h83.378l-8.272-8.13c-8.468-8.324-8.586-21.938-0.262-30.404 4.208-4.284 9.77-6.43 15.334-6.43 5.44 0 10.884 2.052 15.070 6.166l45.752 44.97c0.010 0.010 0.020 0.022 0.032 0.034 0.464 0.458 0.906 0.942 1.328 1.44 0.030 0.038 0.066 0.070 0.096 0.106 2.846 3.418 4.628 7.736 4.908 12.462 0.024 0.398 0.062 0.796 0.064 1.198 0 0.016 0 0.030 0 0.046 0 0.014 0 0.028 0 0.042 0 0.272-0.030 0.538-0.040 0.808-0.016 0.436-0.024 0.874-0.066 1.306-0.040 0.418-0.116 0.826-0.18 1.238-0.044 0.286-0.074 0.574-0.13 0.856-0.096 0.488-0.228 0.962-0.356 1.436-0.054 0.202-0.096 0.408-0.156 0.608-0.148 0.486-0.328 0.958-0.508 1.43-0.070 0.186-0.128 0.376-0.204 0.558-0.18 0.434-0.39 0.852-0.598 1.272-0.106 0.214-0.198 0.434-0.31 0.644-0.188 0.352-0.404 0.686-0.61 1.024-0.162 0.266-0.31 0.536-0.482 0.794-0.164 0.244-0.35 0.472-0.524 0.71-0.242 0.332-0.476 0.67-0.74 0.988-0.012 0.016-0.028 0.028-0.040 0.044-0.426 0.514-0.872 1.014-1.348 1.49l-45.752 45.754c-8.398 8.392-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l9.056-9.056h-84.030c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5z" /> -<glyph unicode="" glyph-name="gear" d="M921.936 564.64l-35.392 10.256c-9.664 2.8-17.44 9.744-21.552 19.648-3.872 9.328-3.312 19.76 1.584 28.608l17.744 32.24c20.752 37.616 14.016 85.088-16.352 115.472l-33.12 33.104c-30.336 30.384-77.856 37.104-115.472 16.368l-32.24-17.76c-8.864-4.896-19.28-5.456-29.216-1.312-9.296 3.84-16.256 11.6-19.040 21.28l-10.24 35.392c-11.952 41.248-50.304 70.048-93.216 70.048h-46.848c-42.928 0-81.264-28.8-93.216-70.064l-10.24-35.376c-2.8-9.68-9.744-17.44-19.664-21.536-9.328-3.92-19.744-3.312-28.576 1.552l-32.272 17.776c-37.632 20.736-85.104 14-115.456-16.352l-33.12-33.12c-30.368-30.368-37.104-77.856-16.368-115.456l17.776-32.288c4.88-8.832 5.44-19.248 1.312-29.184-3.856-9.312-11.632-16.256-21.312-19.056l-35.36-10.24c-41.264-11.936-70.080-50.272-70.080-93.216v-46.848c0-42.96 28.816-81.296 70.064-93.216l35.392-10.256c9.664-2.8 17.44-9.744 21.552-19.648 3.872-9.328 3.312-19.76-1.584-28.608l-17.744-32.24c-20.752-37.616-14.016-85.104 16.352-115.472l33.12-33.104c30.352-30.368 77.84-37.104 115.472-16.368l32.24 17.776c8.88 4.896 19.296 5.44 29.216 1.312 9.296-3.84 16.256-11.6 19.040-21.28l10.24-35.392c11.952-41.248 50.304-70.048 93.216-70.048h46.848c42.928 0 81.264 28.8 93.216 70.064l10.24 35.376c2.8 9.68 9.744 17.44 19.664 21.536 9.344 3.888 19.776 3.296 28.576-1.552l32.272-17.792c37.632-20.736 85.104-13.984 115.456 16.368l33.12 33.12c30.368 30.368 37.104 77.856 16.368 115.456l-17.776 32.288c-4.88 8.832-5.44 19.248-1.312 29.184 3.856 9.312 11.632 16.256 21.312 19.056l35.36 10.24c41.264 11.936 70.080 50.272 70.080 93.216v46.848c0 42.96-28.816 81.296-70.064 93.216zM928 424.576c0-14.624-9.808-27.664-23.872-31.744l-35.36-10.24c-28.448-8.24-51.296-28.656-62.864-56.576-11.408-27.44-9.712-58.080 4.608-84.048l17.776-32.272c7.056-12.8 4.768-28.976-5.584-39.312l-33.12-33.12c-10.336-10.336-26.496-12.64-39.312-5.584l-32.272 17.792c-26 14.336-56.64 15.984-84.56 4.384-27.392-11.328-47.808-34.16-56.048-62.64l-10.24-35.36c-4.080-14.048-17.12-23.872-31.744-23.872h-46.848c-14.624 0-27.664 9.808-31.744 23.856l-10.24 35.376c-8.24 28.48-28.656 51.312-56.544 62.848-12.048 5.008-24.704 7.488-37.328 7.488-16.112 0-32.16-4.048-46.752-12.096l-32.24-17.776c-12.832-7.088-28.992-4.768-39.328 5.584l-33.12 33.12c-10.336 10.336-12.64 26.496-5.568 39.328l17.744 32.24c14.336 26 16.032 56.64 4.4 84.608-11.344 27.376-34.192 47.808-62.624 56.032l-35.392 10.256c-14.048 4.064-23.856 17.104-23.856 31.728v46.848c0 14.624 9.808 27.664 23.872 31.744l35.36 10.24c28.448 8.24 51.296 28.656 62.864 56.576 11.408 27.44 9.712 58.080-4.608 84.048l-17.776 32.272c-7.040 12.8-4.768 28.976 5.584 39.312l33.12 33.12c10.336 10.368 26.496 12.608 39.312 5.568l32.272-17.776c26.016-14.336 56.672-16 84.56-4.384 27.392 11.328 47.808 34.16 56.048 62.64l10.24 35.36c4.080 14.048 17.12 23.872 31.744 23.872h46.848c14.624 0 27.664-9.808 31.744-23.856l10.24-35.376c8.24-28.48 28.656-51.312 56.544-62.848 27.424-11.392 58.064-9.744 84.080 4.608l32.24 17.776c12.832 7.024 28.976 4.8 39.328-5.584l33.12-33.104c10.336-10.336 12.624-26.512 5.568-39.328l-17.744-32.24c-14.336-26-16.032-56.64-4.4-84.608 11.344-27.376 34.192-47.808 62.624-56.032l35.392-10.256c14.048-4.064 23.856-17.104 23.856-31.728v-46.848zM512 684.528c-130.416 0-236.528-106.112-236.528-236.528s106.112-236.528 236.528-236.528 236.528 106.112 236.528 236.528-106.112 236.528-236.528 236.528zM512 275.472c-95.136 0-172.528 77.392-172.528 172.528s77.392 172.528 172.528 172.528 172.528-77.392 172.528-172.528-77.392-172.528-172.528-172.528z" /> -<glyph unicode="" glyph-name="gift" d="M801.621 658.944c5.12 13.696 7.936 28.544 7.936 43.989 0 69.675-56.704 126.379-126.379 126.379h-1.493c-69.419 0-131.157-33.664-169.685-85.547-38.528 51.883-100.224 85.547-169.685 85.547h-1.493c-69.675 0-126.379-56.704-126.379-126.379 0-15.488 2.816-30.293 7.936-43.989-52.693-7.893-93.269-53.461-93.269-108.331v-35.072c0-35.243 16.725-66.603 42.667-86.656v-255.275c0-60.416 49.152-109.525 109.525-109.525h461.355c60.416 0 109.525 49.152 109.525 109.525v255.275c25.941 20.053 42.667 51.413 42.667 86.656v35.072c0 54.869-40.533 100.437-93.269 108.331zM811.776 550.613v-35.072c0-14.592-11.861-26.453-26.453-26.453h-231.808v87.467h129.621c3.669 0 7.296 0.171 10.88 0.512h91.264c14.592 0 26.453-11.861 26.453-26.453zM681.685 746.24h1.493c23.851 0 43.307-19.413 43.307-43.307 0-21.632-15.957-39.595-36.693-42.795h-129.109c17.451 50.048 65.109 86.101 121.045 86.101zM340.821 746.24h1.493c55.936 0 103.595-36.011 121.045-86.101h-129.109c-20.779 3.2-36.693 21.163-36.693 42.795 0 23.851 19.413 43.307 43.307 43.307zM212.224 550.613c0 14.592 11.861 26.453 26.453 26.453h91.264c3.584-0.299 7.211-0.512 10.88-0.512h129.621v-87.467h-231.808c-14.592 0-26.453 11.861-26.453 26.453v35.072zM254.891 173.611v231.808h215.595v-258.261h-189.141c-14.592 0-26.453 11.861-26.453 26.453zM769.109 173.611c0-14.592-11.861-26.453-26.453-26.453h-189.141v258.261h215.595v-231.808z" /> -<glyph unicode="" glyph-name="glass-cup" d="M734.677 831.019h-445.355c-40.533 0-72.064-35.243-67.584-75.52l70.229-631.979c3.84-34.432 32.939-60.501 67.584-60.501h304.939c34.645 0 63.744 26.069 67.584 60.501l70.229 631.979c4.48 40.277-27.051 75.52-67.584 75.52zM714.581 745.003l-40.192-361.685h-324.779l-40.192 361.685h405.163zM648.363 148.992h-272.725l-16.469 148.352h305.664l-16.469-148.352z" /> -<glyph unicode="" glyph-name="glass-effect" d="M831.376 703.669c-11.851 0-21.458-9.607-21.458-21.458v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.763l-140.47-140.47c-0.93-0.010-1.852-0.064-2.753-0.19-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-2.673c0.359 0.407 0.747 0.798 1.070 1.228 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.473 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c8.38 8.38 8.38 21.965 0 30.345-8.378 8.38-21.967 8.38-30.345 0l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-3.904-3.904h-2.639c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-2.878l3.523 3.521c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.597 1.543 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c8.38 8.38 8.38 21.967 0 30.347s-21.967 8.38-30.347 0l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.234c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.597-1.543-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.786-0.593-1.539-1.248-2.256-1.962h-2.302c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.072-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.753c-0.623 0.010-1.24-0.010-1.85-0.056-0.603 0.124-1.216 0.224-1.836 0.297-1.216 0.144-2.433 0.355-3.621 0.627-0.605 0.138-1.208 0.25-1.812 0.335-0.557 0.248-1.13 0.475-1.719 0.677-1.152 0.399-2.294 0.864-3.399 1.385-0.563 0.265-1.13 0.503-1.705 0.717-0.491 0.361-1.004 0.707-1.535 1.030-1.048 0.641-2.072 1.343-3.044 2.092-0.497 0.381-1.004 0.739-1.523 1.070-0.407 0.459-0.836 0.906-1.289 1.339-0.888 0.848-1.743 1.753-2.535 2.689-0.403 0.477-0.824 0.934-1.26 1.367-0.299 0.537-0.625 1.062-0.974 1.579-0.689 1.016-1.329 2.080-1.904 3.16-0.291 0.549-0.603 1.078-0.934 1.591-0.178 0.583-0.381 1.162-0.613 1.739-0.455 1.134-0.852 2.304-1.18 3.477-0.168 0.597-0.359 1.182-0.573 1.753-0.048 0.607-0.124 1.216-0.226 1.828-0.202 1.206-0.339 2.445-0.413 3.679-0.042 0.701-0.118 1.391-0.222 2.072 0.108 0.87 0.162 1.755 0.162 2.653v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v3.986c0 0.417 0.008 0.832 0.022 1.246 0.022 0.625 0.016 1.246-0.014 1.86 0.138 0.599 0.252 1.206 0.341 1.824 0.172 1.21 0.413 2.425 0.713 3.609 0.154 0.601 0.279 1.204 0.377 1.802 0.261 0.549 0.499 1.116 0.717 1.697 0.425 1.142 0.92 2.278 1.469 3.373 0.279 0.555 0.531 1.116 0.757 1.683 0.375 0.483 0.731 0.988 1.068 1.511 0.665 1.032 1.391 2.038 2.162 2.994 0.393 0.487 0.763 0.986 1.108 1.497 0.469 0.395 0.926 0.814 1.369 1.256 0.87 0.87 1.796 1.703 2.753 2.473 0.487 0.393 0.952 0.802 1.395 1.226 0.541 0.287 1.076 0.599 1.599 0.936 1.030 0.665 2.106 1.276 3.196 1.822 0.557 0.279 1.096 0.579 1.617 0.898 0.587 0.164 1.174 0.355 1.755 0.571 1.14 0.425 2.319 0.792 3.503 1.096 0.603 0.152 1.192 0.329 1.767 0.531 0.609 0.034 1.222 0.094 1.834 0.182 1.214 0.174 2.455 0.283 3.689 0.325 0.798 0.030 1.587 0.1 2.361 0.212 0.94-0.126 1.9-0.192 2.874-0.192h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.409l-1.479-1.477c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.473-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.597-1.543-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-0.719-0.719c-8.38-8.38-8.38-21.967 0-30.347 4.19-4.19 9.683-6.284 15.174-6.284s10.983 2.096 15.174 6.284l0.719 0.719c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.597 1.543 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.695 0.693 1.323 1.423 1.902 2.184h0.052c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h3.817l-1.216-1.216c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.972-2.264-0.788-0.595-1.543-1.252-2.262-1.97l-4.234-4.234c-0.719-0.719-1.375-1.475-1.972-2.266-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.266-1.97l-4.234-4.234c-0.717-0.719-1.373-1.475-1.968-2.264-0.79-0.597-1.545-1.252-2.264-1.97l-4.236-4.236c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.717-1.375-1.475-1.972-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.373-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.717-1.375-1.475-1.972-2.264-0.788-0.595-1.545-1.252-2.262-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.79-0.595-1.545-1.252-2.266-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.597-1.545-1.252-2.264-1.97l-4.234-4.236c-0.719-0.719-1.375-1.475-1.97-2.264-0.788-0.595-1.545-1.252-2.264-1.97l-4.236-4.234c-8.38-8.38-8.38-21.967 0-30.347 4.19-4.19 9.681-6.286 15.172-6.286s10.985 2.096 15.174 6.286l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.717 0.719 1.373 1.475 1.968 2.264 0.79 0.595 1.547 1.252 2.266 1.97l4.234 4.236c0.719 0.719 1.375 1.477 1.972 2.264 0.788 0.595 1.543 1.252 2.262 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.262 1.97l4.236 4.234c0.719 0.717 1.375 1.475 1.972 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.266 1.972l4.234 4.234c0.717 0.719 1.373 1.475 1.968 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.972 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.373 1.475 1.97 2.264 0.788 0.597 1.545 1.252 2.264 1.97l4.234 4.236c0.719 0.719 1.375 1.475 1.97 2.264 0.79 0.595 1.545 1.252 2.264 1.97l4.236 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.597 1.545 1.254 2.264 1.972l4.234 4.236c0.719 0.717 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.968l4.234 4.234c0.719 0.719 1.375 1.477 1.972 2.266 0.788 0.595 1.545 1.252 2.264 1.97l4.234 4.234c0.719 0.719 1.375 1.475 1.97 2.264 0.788 0.595 1.545 1.252 2.264 1.97l4.236 4.236c0.611 0.609 1.152 1.26 1.671 1.92h1.613c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-0.184 0-0.359-0.034-0.541-0.038-2.204 0.359-4.449 0.369-6.659 0.038h-4.777c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-0.371 0-0.725-0.056-1.090-0.076-1.18 0.086-2.365 0.088-3.543-0.018-0.453 0.028-0.894 0.094-1.355 0.094h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.988c-1.058 0-2.098-0.076-3.114-0.224-1.182 0.16-2.393 0.22-3.627 0.178-2.747-0.098-5.515-0.341-8.23-0.727-1.399-0.2-2.749-0.531-4.034-0.976-1.359-0.076-2.733-0.285-4.102-0.633-2.675-0.681-5.34-1.513-7.921-2.475-1.325-0.495-2.571-1.106-3.733-1.816-1.309-0.365-2.605-0.862-3.868-1.495-2.459-1.234-4.88-2.613-7.198-4.106-1.186-0.763-2.272-1.623-3.252-2.565-1.202-0.635-2.359-1.395-3.455-2.28-2.138-1.725-4.206-3.585-6.15-5.527-0.996-0.996-1.874-2.066-2.633-3.194-1.040-0.874-2.008-1.858-2.892-2.952-1.727-2.14-3.357-4.397-4.849-6.709-0.765-1.188-1.397-2.421-1.902-3.685-0.832-1.080-1.575-2.252-2.208-3.517-1.236-2.465-2.351-5.022-3.312-7.599-0.495-1.325-0.85-2.669-1.074-4.014-0.583-1.232-1.056-2.539-1.405-3.91-0.679-2.669-1.22-5.405-1.611-8.13-0.2-1.395-0.257-2.779-0.19-4.134-0.305-1.323-0.489-2.695-0.539-4.1-0.032-0.916-0.048-1.834-0.048-2.757v-3.986c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.016 0.072-2.016 0.208-2.994-0.136-0.978-0.208-1.978-0.208-2.994v-5.988c0-1.134 0.088-2.248 0.257-3.333-0.158-1.278-0.202-2.585-0.124-3.914 0.162-2.747 0.471-5.511 0.922-8.214 0.234-1.395 0.595-2.737 1.072-4.012 0.11-1.359 0.351-2.727 0.733-4.088 0.743-2.653 1.639-5.296 2.663-7.855 0.525-1.313 1.166-2.545 1.906-3.691 0.397-1.303 0.926-2.589 1.589-3.837 1.289-2.427 2.729-4.811 4.272-7.088 0.79-1.168 1.677-2.232 2.639-3.19 0.663-1.186 1.449-2.323 2.359-3.399 1.775-2.096 3.685-4.122 5.675-6.022 1.020-0.972 2.112-1.824 3.254-2.557 0.898-1.016 1.908-1.962 3.024-2.82 2.18-1.675 4.475-3.252 6.821-4.687 1.206-0.737 2.453-1.339 3.731-1.814 1.096-0.804 2.288-1.519 3.565-2.122 2.495-1.178 5.082-2.234 7.687-3.134 1.335-0.461 2.687-0.786 4.034-0.976 1.248-0.553 2.563-0.996 3.942-1.311 2.683-0.615 5.431-1.090 8.17-1.413 1.399-0.166 2.783-0.194 4.134-0.092 1.331-0.275 2.709-0.427 4.12-0.441l6.224-0.004c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.988c1.058 0 2.098 0.076 3.116 0.224 1.182-0.158 2.393-0.218 3.625-0.178 2.751 0.098 5.521 0.341 8.234 0.729 1.399 0.2 2.745 0.529 4.032 0.974 1.359 0.078 2.731 0.285 4.1 0.633 2.673 0.679 5.338 1.513 7.925 2.477 1.323 0.495 2.573 1.106 3.735 1.818 1.309 0.365 2.607 0.862 3.868 1.495 2.459 1.234 4.878 2.615 7.192 4.104 1.186 0.763 2.272 1.623 3.252 2.563 1.204 0.637 2.363 1.397 3.461 2.286 2.136 1.725 4.204 3.583 6.144 5.521 0.996 0.998 1.874 2.066 2.633 3.192 1.040 0.874 2.010 1.862 2.894 2.958 1.727 2.142 3.359 4.397 4.847 6.709 0.765 1.188 1.397 2.421 1.902 3.685 0.83 1.078 1.571 2.25 2.204 3.511 1.236 2.465 2.351 5.024 3.316 7.607 0.495 1.325 0.85 2.671 1.072 4.016 0.583 1.232 1.056 2.537 1.405 3.908 0.679 2.667 1.22 5.401 1.609 8.132 0.2 1.397 0.259 2.781 0.19 4.14 0.305 1.319 0.489 2.689 0.539 4.094 0.034 0.914 0.048 1.83 0.048 2.753v3.992c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.978 0.208 2.994v5.988c0 11.851-9.607 21.458-21.458 21.458zM810.084 169.618v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 181.594v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 193.571v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 205.548v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 217.524v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 229.501v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 241.477v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 253.454v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM810.084 265.431v1.184c0.022-0.196 0.014-0.399 0.042-0.591-0.026-0.194-0.018-0.397-0.042-0.593zM605.597 714.032c42.295-10.122 59.572-27.4 69.696-69.696 2.691-11.24 18.831-11.24 21.522 0 10.122 42.295 27.398 59.572 69.696 69.696 11.24 2.691 11.24 18.831 0 21.52-42.295 10.122-59.572 27.4-69.696 69.696-2.691 11.242-18.831 11.242-21.522 0-10.122-42.295-27.4-59.572-69.696-69.696-11.24-2.691-11.24-18.831 0-21.52zM888.373 787.233c-29.963 7.172-42.202 19.41-49.374 49.374-1.906 7.964-13.34 7.964-15.246 0-7.172-29.963-19.41-42.202-49.374-49.374-7.962-1.906-7.962-13.34 0-15.246 29.963-7.172 42.202-19.41 49.374-49.374 1.906-7.962 13.34-7.962 15.246 0 7.172 29.963 19.41 42.202 49.374 49.374 7.962 1.906 7.962 13.34 0 15.246zM438.37 293.727c-48.94 11.713-68.931 31.702-80.642 80.642-3.114 13.007-21.789 13.007-24.903 0-11.713-48.94-31.704-68.931-80.642-80.642-13.007-3.114-13.007-21.789 0-24.903 48.94-11.713 68.931-31.704 80.642-80.642 3.114-13.009 21.789-13.009 24.903 0 11.713 48.94 31.702 68.929 80.642 80.642 13.007 3.114 13.007 21.789 0 24.903z" /> -<glyph unicode="" glyph-name="glasses" d="M960 377.344h-11.2c-6.128 17.264-14.624 33.376-25.152 47.984-0.128 0.224-0.208 0.48-0.336 0.704l-194.32 317.936c-10.176 16.752-27.648 27.728-47.92 30.176-23.264 2.736-47.056-5.52-63.696-22.176l-32-32c-12.496-12.496-12.496-32.752 0-45.248 12.48-12.496 32.768-12.496 45.248 0l32 32c4.032 4.048 10.48 4.464 11.712 3.936l127.408-208.464c-10.976 1.952-22.224 3.152-33.76 3.152-88.096 0-162.336-59.712-184.832-140.736-18.4 7.104-42 12.736-71.168 12.736s-52.752-5.632-71.168-12.736c-22.512 81.024-96.752 140.736-184.832 140.736-11.568 0-22.832-1.2-33.824-3.168l127.056 208.096c1.68 0.896 8.112 0.464 12.16-3.552l32-32c12.48-12.496 32.768-12.496 45.248 0 12.496 12.496 12.496 32.752 0 45.248l-32 32c-16.656 16.656-40.48 24.928-63.712 22.176-20.272-2.432-37.728-13.424-47.888-30.112l-194.336-318c-0.144-0.224-0.208-0.48-0.336-0.704-10.544-14.608-19.024-30.72-25.152-47.984h-11.2c-17.664 0-32-14.336-32-32v-64c0-17.664 14.336-32 32-32h11.2c26.448-74.448 97.392-128 180.8-128 100.256 0 182.704 77.28 191.152 175.392 11.008 6.816 32.336 16.608 64.848 16.608s53.968-9.856 64.832-16.56c8.448-98.128 90.88-175.44 191.168-175.44 83.408 0 154.352 53.552 180.8 128h11.2c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32zM256 185.344c-70.576 0-128 57.424-128 128s57.424 128 128 128 128-57.424 128-128-57.424-128-128-128zM768 185.344c-70.576 0-128 57.424-128 128s57.424 128 128 128 128-57.424 128-128-57.424-128-128-128z" /> -<glyph unicode="" glyph-name="globe" d="M976.656 300.416c14.64 45.92 22.592 94.768 22.592 145.472s-7.968 99.568-22.592 145.472c-0.224 0.624-0.368 1.264-0.64 1.872-62.336 192.784-243.488 332.656-456.768 332.656s-394.416-139.856-456.768-332.64c-0.256-0.608-0.416-1.248-0.64-1.872-14.64-45.92-22.592-94.768-22.592-145.472s7.968-99.568 22.592-145.472c0.224-0.624 0.368-1.264 0.64-1.872 62.336-192.784 243.488-332.656 456.768-332.656s394.416 139.856 456.768 332.656c0.256 0.608 0.416 1.248 0.64 1.872zM900.288 612.56h-167.92c-15.376 93.936-43.712 172.624-80.944 227.68 111.472-37.456 201.968-120.88 248.864-227.68zM138.208 279.232h167.92c15.376-93.936 43.712-172.624 80.944-227.68-111.472 37.456-201.968 120.88-248.864 227.68zM651.008 51.408c23.776 35.456 44.24 81.136 60.24 136.128 4.944 16.976-4.816 34.72-21.776 39.664-16.992 4.976-34.736-4.832-39.664-21.792-31.024-106.624-82.272-175.52-130.544-175.52-57.728 0-120.4 96.864-147.856 249.328h219.952c17.664 0 32 14.336 32 32s-14.336 32-32 32h-228.944c-3.376 32.448-5.264 66.72-5.264 102.672 0 6.048 0.064 12.064 0.176 18.064 0.32 17.664-13.76 32.24-31.44 32.56-0.192 0-0.368 0-0.576 0-17.408 0-31.664-13.952-31.984-31.44-0.112-6.368-0.176-12.768-0.176-19.184 0-35.456 1.664-69.76 4.784-102.672h-181.84c-8.368 32.848-12.848 67.248-12.848 102.672s4.48 69.808 12.848 102.672h105.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-83.856c46.96 106.944 137.632 190.432 249.296 227.824-23.808-35.52-44.32-81.312-60.336-136.432-4.928-16.976 4.848-34.72 21.808-39.648 16.992-4.928 34.736 4.832 39.664 21.808 31.008 106.784 82.288 175.792 130.608 175.792 57.728 0 120.4-96.864 147.856-249.328h-218.752c-17.664 0-32-14.336-32-32s14.336-32 32-32h227.744c3.376-32.448 5.264-66.72 5.264-102.672 0-5.952-0.064-11.888-0.176-17.776-0.32-17.664 13.744-32.256 31.424-32.576 0.208 0 0.384 0 0.592 0 17.408 0 31.664 13.952 31.984 31.424 0.112 6.288 0.176 12.592 0.176 18.944 0 35.456-1.664 69.76-4.784 102.672h181.824c8.368-32.848 12.848-67.248 12.848-102.672s-4.48-69.808-12.848-102.672h-104.768c-17.664 0-32-14.336-32-32s14.336-32 32-32h82.656c-46.96-106.944-137.632-190.432-249.296-227.824zM335.216 647.408c-36.208 0-65.664-29.92-65.664-66.688s29.456-66.688 65.664-66.688 65.648 29.92 65.648 66.688-29.456 66.688-65.648 66.688zM333.568 580.72c0 1.776 1.072 2.688 1.664 2.688 0.56 0 1.648-0.96 1.648-2.688 0-3.488-3.296-3.488-3.296 0zM713.856 343.232h-14.656c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.656c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="globe-pointer" d="M516.64 928c-174.464 0-327.184-94.544-409.872-235.024-0.432-0.64-0.736-1.344-1.152-2-40.816-70.128-64.336-151.52-64.336-238.336 0-17.664 14.336-32 32-32h127.856c17.664 0 32 14.336 32 32s-14.336 32-32 32h-94.496c3.12 40.224 12 78.832 25.888 115.008 8.176-3.824 17.2-6.128 26.8-6.128 23.392 0 43.648 12.816 54.72 31.664h81.504c-0.688-3.728-1.408-7.232-2.096-11.12-3.040-17.408 8.592-34 26-37.024 17.616-3.104 33.984 8.576 37.024 26 1.36 7.776 2.752 15.088 4.176 22.16h123.968v-117.808c-18.848-11.072-31.664-31.328-31.664-54.72 0-5.456 0.912-10.672 2.208-15.728l-10.608-10.304c-12.672-12.304-12.976-32.56-0.656-45.248 6.272-6.448 14.608-9.696 22.96-9.696 8.032 0 16.080 3.008 22.304 9.040l11.024 10.704c5.28-1.424 10.736-2.432 16.464-2.432 23.392 0 43.664 12.816 54.72 31.664h117.2c-1.712-50.832-7.424-98.032-16.16-140.672h-29.088c-17.664 0-32-14.336-32-32s14.336-32 32-32h12.784c-26.8-86.144-66.672-145.408-107.456-166.32v86.304c0 17.664-14.336 32-32 32s-32-14.336-32-32v-126.672c0-17.664 14.336-32 32-32 80.592 0 160.224 20.544 230.32 59.44 0.672 0.368 1.328 0.784 1.968 1.184l53.584 35.008c0.672 0.432 1.312 0.912 1.936 1.376 4.688 3.6 9.296 7.232 13.84 10.976 0.544 0.432 1.056 0.912 1.584 1.376l42.016 39.344c0.496 0.464 0.992 0.96 1.456 1.472 82.992 88.416 128.672 203.904 128.672 325.2 0 262.112-213.248 475.36-475.36 475.36zM752.608 484.64c-1.568 49.472-6.736 96.64-15.008 140.528h152.336c15.872-34.208 27.264-70.896 33.216-109.376-21.184-1.744-39.312-13.728-49.552-31.152h-120.992zM852.88 689.168h-130.16c-16.736 59.76-39.712 111.088-67.296 150.672 80.32-28.88 149.072-82.080 197.456-150.672zM548.64 855.632c40.816-20.912 80.704-80.24 107.504-166.448h-107.504v166.448zM376 839.216c-26.608-38.784-48.992-89.44-65.76-150.048h-96.16c-4.688 7.984-10.896 14.944-18.48 20.224 46.736 58.32 108.928 103.744 180.4 129.824zM376.976 689.168c26.304 84.624 65.872 145.44 107.664 166.576v-166.576h-107.664zM672.432 625.168c8.736-42.608 14.432-89.76 16.144-140.528h-117.2c-5.52 9.408-13.312 17.2-22.72 22.72v117.808h123.792zM752.608 420.64h120.992c10.224-17.408 28.336-29.376 49.488-31.136-5.872-38.048-17.008-74.864-33.056-109.536h-152.464c8.288 43.92 13.456 91.136 15.024 140.672zM817.36 171.968l-40.464-37.888c-3.424-2.8-6.896-5.552-10.4-8.256l-51.584-33.68c-19.024-10.496-38.944-19.232-59.36-26.544 27.504 39.536 50.432 90.752 67.136 150.368h130.416c-10.832-15.36-22.736-30.080-35.744-44zM343.568 348.528l-253.744-19.664c-1.6-0.128-3.168-0.352-4.72-0.72-17.616-4.064-31.648-17.36-36.624-34.688-4.96-17.296-0.144-35.92 12.576-48.64l39.072-39.072-52.576-87.6c-10.048-11.552-15.536-26.176-15.552-41.664 0-17.040 6.624-33.072 18.656-45.088l44.704-44.704c12.016-12.048 28.032-18.672 45.072-18.672h0.032c15.504 0 30.128 5.504 41.664 15.552l87.6 52.576 37.728-37.728c13.744-13.76 34.608-18.304 53.104-11.52 17.552 6.416 29.408 21.744 30.96 40.064l20.976 252.512c3.456 19.168-2.624 38.64-16.512 52.528-13.84 13.872-33.28 19.904-52.416 16.544zM330.544 65.824l-33.232 33.216c-10.384 10.384-26.496 12.368-39.088 4.816l-111.84-67.136c-2.272-1.36-3.888-2.944-5.744-4.816l-44.768 44.272c1.872 1.856 3.504 3.936 4.864 6.208l67.136 111.84c7.568 12.592 5.584 28.72-4.816 39.088l-34.352 34.352 220.032 17.056-18.176-218.912zM534.128 215.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-44.848c-17.664 0-32-14.336-32-32s14.336-32 32-32h44.848zM358.624 426.080v44.72c0 17.664-14.336 32-32 32s-32-14.336-32-32v-44.72c0-17.664 14.336-32 32-32s32 14.336 32 32z" /> -<glyph unicode="" glyph-name="glowing-background-mouse-effect" d="M877.255 345.608l-104.815 39.423c5.030 20.5 7.685 41.918 7.685 63.975 0 148.071-120.046 268.136-268.136 268.136-13.813 0-27.387-1.038-40.641-3.054-33.994-5.17-65.891-16.727-94.436-33.415-7.246-4.232-14.292-8.803-21.099-13.713 4.831-3.633 11.038-6.148 19.202-8.104 5.389-1.278 5.389-9.022 0-10.3-20.26-4.851-28.524-13.134-33.375-33.395-1.297-5.389-9.022-5.389-10.32 0-2.355 9.801-5.489 16.807-10.42 21.957-23.714-24.093-42.896-52.657-56.19-84.295-13.434-31.918-20.859-67.009-20.859-103.817 0-148.091 120.046-268.136 268.136-268.136 17.406 0 34.453 1.657 50.941 4.831l42.078-100.104c6.028-14.292 19.662-23.095 35.012-23.095 1.896 0 3.813 0.14 5.749 0.399 17.366 2.455 30.381 15.57 32.377 32.596l18.723 159.309c0.439 0.399 0.878 0.818 1.317 1.258l169.429 17.805c17.945 1.896 31.518 14.911 33.754 32.397 2.216 17.286-7.485 33.095-24.113 39.343zM737.128 303.311l-50.122-5.27c-16.847-1.757-29.961-14.492-31.898-30.96l-5.689-48.366-11.757-100.045-135.416 322.091 337.002-126.713-102.121-10.739zM422.782 617.357c24.512 5.869 34.533 15.889 40.401 40.401 1.557 6.507 10.919 6.507 12.476 0 5.869-24.512 15.869-34.533 40.401-40.401 6.507-1.557 6.507-10.919 0-12.476-24.532-5.869-34.533-15.869-40.401-40.401-1.557-6.507-10.919-6.507-12.476 0-5.869 24.532-15.889 34.533-40.401 40.401-6.507 1.557-6.507 10.919 0 12.476zM386.333 398.245c-3.034-12.695-21.258-12.695-24.293 0-11.418 47.747-30.94 67.249-78.686 78.686-12.675 3.034-12.675 21.258 0 24.293 47.747 11.418 67.269 30.92 78.686 78.666 3.034 12.695 21.258 12.695 24.293 0 11.438-47.747 30.94-67.249 78.686-78.666 7.645-1.816 10.679-9.142 9.122-15.35-1.018-4.112-4.072-7.725-9.122-8.943-1.337-0.319-2.655-0.639-3.932-0.978-44.892-11.577-63.636-31.299-74.754-77.708zM355.813 666.96c-7.166 5.37-11.278 13.194-14.172 25.291-1.297 5.389-9.022 5.389-10.32 0-4.851-20.26-13.134-28.544-33.395-33.395-5.37-1.278-5.37-9.022 0-10.3 10.46-2.495 17.725-5.928 22.975-11.438 4.312 4.391 8.783 8.623 13.394 12.715 6.867 6.068 14.053 11.797 21.518 17.127z" /> -<glyph unicode="" glyph-name="graphic-bar" d="M928 912h-832c-35.296 0-64-28.704-64-64v-800c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v800c0 35.296-28.704 64-64 64zM928 848v-256h-192c-17.664 0-32-14.336-32-32v-320h-160v224c0 17.664-14.336 32-32 32s-32-14.336-32-32h-160c0 17.664-14.336 32-32 32s-32-14.336-32-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-96h-160v96h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v256h832zM96 240h160v-192h-160v192zM320 272v128h160v-352h-160v224zM544 176h160v-128h-160v128zM768 48v480h160v-480h-160zM576 592c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32zM416 528h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 592h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM160 752h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 656h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM448 752h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 208h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 144h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 496h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 752h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="graphic-pie" d="M462.16 380.336h-348.32c-17.664 0-32-14.336-32-32 0-31.248 3.936-62.272 11.488-92.336h-29.328c-17.664 0-32-14.336-32-32s14.336-32 32-32h51.648c18.784-41.824 44.912-80.304 77.536-112.928 70.848-71.024 168.88-111.76 268.976-111.76 17.664 0 32 14.336 32 32v349.008c0 17.664-14.336 32-32 32zM430.16 158.88c-29.264 4.944-56.24 16.48-79.44 33.12h1.28c17.664 0 32 14.336 32 32s-14.336 32-32 32h-58.192c-10.128 18.464-17.152 38.816-20.768 60.336h157.12v-157.44zM147.488 316.336h60.896c2.624-21.008 7.824-41.2 15.248-60.336h-63.68c-6 19.632-10.336 39.808-12.448 60.336zM238.464 124.32c-20.16 20.144-37.248 43.024-51.168 67.68h72.448c40.688-52.688 101.232-89.088 170.432-97.792v-61.232c-71.824 7.472-140.32 39.808-191.696 91.328zM560.096 518.112c3.952-1.648 8.112-2.432 12.224-2.432 8.336 0 16.528 3.248 22.656 9.392l246.352 246.656c12.48 12.48 12.48 32.72 0 45.216-70.896 71.008-168.944 111.744-269.008 111.744-17.664 0-32-14.336-32-32v-349.008c0-12.96 7.792-24.608 19.76-29.568zM604.336 737.072c28.432-4.896 55.552-16.16 79.12-32.864l-79.12-79.216v112.080zM772.304 793.168l-43.2-43.248c-36.176 27.984-79.488 45.952-124.784 51.792v61.312c61.264-6.368 120.112-30.848 167.984-69.84zM462.16 828.848c-152.656 0-284.512-90.576-345.008-220.848h-53.152c-17.664 0-32-14.336-32-32s14.336-32 32-32h30.096c-7.984-30.688-12.256-62.848-12.256-96 0-17.664 14.336-32 32-32h348.336c17.664 0 32 14.336 32 32v348.848c0 17.664-14.336 32-32 32zM430.16 763.232v-61.12c-67.6-8.496-127.040-43.376-167.68-94.112h-73.232c49.888 85.040 138.208 144.864 240.912 155.232zM160.96 544h64c-8.176-20.192-13.792-41.648-16.592-64h-60.944c2.224 22.112 6.976 43.456 13.52 64zM273.040 480c3.872 22.976 11.744 44.544 22.992 64h55.968c17.664 0 32 14.336 32 32 0 16.56-12.624 30.016-28.752 31.664 22.128 14.928 47.584 25.152 74.912 29.776v-157.456h-157.12zM960 288h-28.016c6.656 28.416 10.176 57.776 10.176 87.68 0 101.792-39.552 197.472-111.36 269.424-12.032 12.048-33.312 12.048-45.296 0l-246.32-246.816c-6-6-9.344-14.144-9.344-22.608v-348.848c0-17.664 14.336-32 32-32 100.048 0 198.080 40.64 268.976 111.552 34.336 34.416 61.2 74.288 80 117.616h49.2c17.664 0 32 14.336 32 32s-14.336 32-32 32zM807.024 576.080c46.080-56.416 71.136-126.464 71.136-200.384 0-30.112-4.352-59.52-12.416-87.68h-63.696c10.032 27.408 15.776 56.848 15.776 87.68 0 56.768-19.552 112.384-54.064 157.040l43.264 43.344zM718.112 486.976c22.864-32.336 35.728-71.424 35.728-111.296 0-31.6-7.792-61.36-21.36-87.68h-60.48c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.28c-24.48-19.040-53.632-32.208-85.456-37.584v176.048l124.272 124.528zM785.52 151.616c-51.36-51.36-119.872-83.648-191.68-91.104v61.232c71.152 8.944 133.152 47.168 173.824 102.256h71.92c-14.32-26.24-32.368-50.64-54.048-72.384z" /> -<glyph unicode="" glyph-name="graphic-spectrum-equalizer" d="M128 540.715c-23.765 0-43.008-19.243-43.008-43.008v-193.408c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v193.408c0 23.765-19.243 43.008-43.008 43.008zM384 637.44c-23.765 0-43.008-19.243-43.008-43.008v-273.963c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v273.963c0 23.765-19.243 43.008-43.008 43.008zM256 685.781c-23.765 0-43.008-19.243-43.008-43.008v-406.741c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v406.741c0 23.765-19.243 43.008-43.008 43.008zM768 669.483c-23.765 0-43.008-19.243-43.008-43.008v-396.885c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v396.885c0 23.765-19.243 43.008-43.008 43.008zM896 535.851c-23.765 0-43.008-19.243-43.008-43.008v-129.664c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v129.664c0 23.765-19.243 43.008-43.008 43.008zM512 831.147c-23.765 0-43.008-19.243-43.008-43.008v-677.291c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v677.291c0 23.765-19.243 43.008-43.008 43.008zM640 734.123c-23.765 0-43.008-19.243-43.008-43.008v-483.541c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v483.541c0 23.765-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="grid-round" d="M224.368 928c-106.24 0-192.352-86.112-192.352-192.336s86.112-192.336 192.336-192.336 192.336 86.112 192.336 192.336-86.096 192.336-192.32 192.336zM224.368 607.328c-70.768 0-128.336 57.568-128.336 128.336s57.568 128.336 128.336 128.336 128.336-57.568 128.336-128.336-57.568-128.336-128.336-128.336zM799.68 543.328c106.224 0 192.336 86.112 192.336 192.336s-86.112 192.336-192.336 192.336-192.336-86.112-192.336-192.336 86.112-192.336 192.336-192.336zM799.68 864c70.768 0 128.336-57.568 128.336-128.336s-57.568-128.336-128.336-128.336-128.336 57.568-128.336 128.336 57.568 128.336 128.336 128.336zM224.368 352.688c-106.224 0-192.336-86.112-192.336-192.336s86.112-192.336 192.336-192.336 192.336 86.112 192.336 192.336-86.112 192.336-192.336 192.336zM224.368 32c-70.768 0-128.336 57.568-128.336 128.336s57.568 128.336 128.336 128.336 128.336-57.568 128.336-128.336-57.568-128.336-128.336-128.336zM799.68 352.688c-106.224 0-192.336-86.112-192.336-192.336s86.112-192.336 192.336-192.336 192.336 86.112 192.336 192.336-86.112 192.336-192.336 192.336zM799.68 32c-70.768 0-128.336 57.568-128.336 128.336s57.568 128.336 128.336 128.336 128.336-57.568 128.336-128.336-57.568-128.336-128.336-128.336z" /> -<glyph unicode="" glyph-name="grid-rounds" d="M147.824 928c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.84 51.856 115.84 115.824-51.856 115.824-115.84 115.824zM147.824 760.336c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.84-23.248 51.84-51.824-23.248-51.824-51.84-51.824zM876.176 696.336c63.968 0 115.824 51.856 115.824 115.824s-51.856 115.824-115.824 115.824-115.84-51.856-115.84-115.824 51.856-115.824 115.84-115.824zM876.176 864c28.576 0 51.824-23.248 51.824-51.824s-23.248-51.824-51.824-51.824-51.84 23.248-51.84 51.824 23.248 51.824 51.84 51.824zM512 928c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.824 51.856 115.824 115.824-51.856 115.824-115.824 115.824zM512 760.336c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.824-23.248 51.824-51.824-23.248-51.824-51.824-51.824zM147.824 199.664c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.84 51.856 115.84 115.824-51.856 115.824-115.84 115.824zM147.824 32c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.84-23.248 51.84-51.824-23.248-51.824-51.84-51.824zM876.176 199.664c-63.968 0-115.84-51.856-115.84-115.824s51.856-115.824 115.84-115.824 115.824 51.856 115.824 115.824-51.856 115.824-115.824 115.824zM876.176 32c-28.576 0-51.84 23.248-51.84 51.824s23.248 51.824 51.84 51.824 51.824-23.248 51.824-51.824-23.248-51.824-51.824-51.824zM512 199.664c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.824 51.856 115.824 115.824-51.856 115.824-115.824 115.824zM512 32c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.824-23.248 51.824-51.824-23.248-51.824-51.824-51.824zM147.824 563.824c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.84 51.856 115.84 115.824-51.856 115.824-115.84 115.824zM147.824 396.176c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.84-23.248 51.84-51.824-23.248-51.824-51.84-51.824zM876.176 563.824c-63.968 0-115.84-51.856-115.84-115.824s51.856-115.824 115.84-115.824 115.824 51.856 115.824 115.824-51.856 115.824-115.824 115.824zM876.176 396.176c-28.576 0-51.84 23.248-51.84 51.824s23.248 51.824 51.84 51.824 51.824-23.248 51.824-51.824-23.248-51.824-51.824-51.824zM512 563.824c-63.968 0-115.824-51.856-115.824-115.824s51.856-115.824 115.824-115.824 115.824 51.856 115.824 115.824-51.856 115.824-115.824 115.824zM512 396.176c-28.576 0-51.824 23.248-51.824 51.824s23.248 51.824 51.824 51.824 51.824-23.248 51.824-51.824-23.248-51.824-51.824-51.824z" /> -<glyph unicode="" glyph-name="group-add" d="M704.981 482.475c13.995 20.736 22.187 45.653 22.187 72.491 0 71.595-58.24 129.835-129.835 129.835s-129.835-58.24-129.835-129.835c0-26.837 8.192-51.755 22.144-72.491-26.368-14.379-49.621-33.963-68.267-57.259 11.904 19.584 18.731 42.581 18.731 67.157 0 71.595-58.24 129.835-129.835 129.835s-129.835-58.24-129.835-129.835c0-26.837 8.192-51.797 22.187-72.491-70.016-38.272-117.632-112.597-117.632-197.888 0-23.765 19.243-43.008 43.008-43.008h364.629c23.765 0 43.008 19.243 43.008 43.008 0 54.443-19.413 104.448-51.712 143.445 12.544 17.536 29.056 32.128 48.256 42.325 20.181 10.709 42.112 16.128 65.152 16.128 61.824 0 114.347-40.491 132.523-96.299h-111.189c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h160.981c23.765 0 43.008 19.243 43.008 43.008 0 85.291-47.616 159.616-117.632 197.888zM597.333 598.827c24.192 0 43.819-19.669 43.819-43.819s-19.669-43.819-43.819-43.819-43.819 19.669-43.819 43.819 19.669 43.819 43.819 43.819zM310.315 536.235c24.192 0 43.819-19.669 43.819-43.861s-19.669-43.819-43.819-43.819-43.819 19.669-43.819 43.819 19.669 43.861 43.819 43.861zM310.315 265.003h-132.523c18.176 55.851 70.699 96.299 132.523 96.299s114.347-40.491 132.523-96.299h-132.523zM908.373 667.307h-35.712v35.712c0 16.555-13.44 29.995-29.995 29.995s-29.995-13.44-29.995-29.995v-35.712h-35.712c-16.555 0-29.995-13.44-29.995-29.995s13.44-29.995 29.995-29.995h35.712v-35.712c0-16.555 13.44-29.995 29.995-29.995s29.995 13.44 29.995 29.995v35.712h35.712c16.555 0 29.995 13.44 29.995 29.995s-13.44 29.995-29.995 29.995z" /> -<glyph unicode="" glyph-name="handyman" d="M926.421 178.731l-192.085 192.085c-8.064 8.064-18.987 12.587-30.421 12.587h-67.541l-63.573 63.573 132.437 132.437 42.24-42.24c10.709-10.709 24.747-16.085 38.784-16.085s28.075 5.376 38.784 16.085l40.832 40.832 43.648-43.648c24.704 24.704 25.557 64.171 2.645 89.899l0.085 0.085-150.187 150.187c-10.709 10.709-24.747 16.085-38.784 16.085-10.112 0-20.267-2.816-29.141-8.363l0.384 73.259-21.845 24.704c-5.248 5.931-14.379 6.187-19.925 0.597l-122.496-122.496c-5.333-5.333-5.333-14.037 0-19.371l25.941-25.941 71.637 2.517c-12.629-21.077-9.856-48.811 8.32-66.944l8.32-8.32-132.437-132.437-212.992 212.992v24.875c0 11.392-4.523 22.357-12.587 30.421l-85.333 85.333c-8.064 8.064-18.987 12.587-30.421 12.587s-22.357-4.523-30.421-12.587l-42.667-42.667c-16.811-16.811-16.811-44.032 0-60.8l85.333-85.333c8.064-8.064 18.987-12.587 30.421-12.587h24.875l212.992-212.992-63.659-63.659h-67.541c-11.392 0-22.357-4.523-30.421-12.587l-192-192c-8.064-8.064-12.587-18.987-12.587-30.421s4.523-22.357 12.587-30.421l85.333-85.333c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l192 192c8.064 8.064 12.587 18.987 12.587 30.421v67.541l63.659 63.659 63.573-63.573v-67.541c0-11.392 4.523-22.357 12.587-30.421l192.085-192.085c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l85.333 85.333c8.064 8.064 12.587 18.987 12.587 30.421s-4.523 22.357-12.587 30.421zM723.328 691.797l67.371-67.371-4.395-4.395-67.371 67.371 4.395 4.395zM362.325 272.811l-148.992-148.992-24.533 24.533 148.992 148.992h24.533v-24.533zM810.667 123.819l-149.077 149.077v24.533h24.533l149.077-149.077-24.533-24.533z" /> -<glyph unicode="" glyph-name="header-info" d="M426.834 660.578c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h41.064c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-41.064zM533.464 660.578c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h41.064c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-41.064zM640.968 660.578c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h41.064c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-41.064zM320.166 660.578c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h42.666c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-42.666zM259.726 511h120.55c25.622 0 46.392-20.77 46.392-46.392v-163.216c0-25.622-20.77-46.392-46.392-46.392h-120.55c-25.622 0-46.392 20.77-46.392 46.392v163.216c0 25.622 20.77 46.392 46.392 46.392zM490.834 446.834h108.988c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-108.988c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM717.022 383c0 11.876-9.626 21.5-21.5 21.5h-204.69c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h204.69c11.874 0 21.5 9.624 21.5 21.5zM958.572 502.822l-224.22 89.14c-11.2 4.44-23.96 1.82-32.48-6.72-8.52-8.52-11.16-21.26-6.7-32.48l47-118.22v-173.98c0-23.44-19.060-42.5-42.5-42.5h-492.42c-20.62 0-37.42 16.78-37.42 37.42v295.63h470.168c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-470.168v44.888c0 20.64 16.8 37.42 37.42 37.42h497.48c20.64 0 37.44-16.78 37.44-37.42 0-11.88 9.62-21.5 21.5-21.5s21.5 9.62 21.5 21.5c0 44.34-36.080 80.42-80.44 80.42h-497.48c-44.34 0-80.42-36.080-80.42-80.42v-383.52c0-44.34 36.080-80.42 80.42-80.42h492.42c47.14 0 85.5 38.36 85.5 85.5v66.060c5.24-11 16.28-17.9 28.34-17.9 1.4 0 2.8 0.1 4.22 0.28 14.34 1.94 25.48 13.32 27.080 27.7l10.56 95.060 95.040 10.56c14.38 1.6 25.78 12.72 27.7 27.060 1.94 14.34-6.1 28.080-19.54 33.44zM840.412 473.362c-14.12-1.58-25.080-12.54-26.66-26.66l-6.58-59.28-23.22 58.4-0.080 0.24-0.54 1.32-37.22 93.62 153.58-61.060-59.28-6.58zM490.834 300.158c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h122.774c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-122.774z" /> -<glyph unicode="" glyph-name="header-offcanvas" d="M819.222 831.509h-614.444c-42.014 0-76.197-34.183-76.197-76.197v-614.442c0-42.014 34.183-76.195 76.197-76.195h614.442c42.014 0 76.195 34.181 76.195 76.195v614.442c0 42.014-34.181 76.197-76.195 76.197zM204.778 788.593h614.442c18.35 0 33.279-14.929 33.279-33.281v-94.228h-681v94.228c0 18.35 14.929 33.281 33.281 33.281zM653.895 492.198c-6.427 0-11.639-5.1-11.639-11.392v-373.219h-36.249v510.579h246.495v-125.968h-198.608zM171.499 140.87v413.544l60.496 63.753h331.095v-510.579h-358.312c-18.35 0-33.281 14.929-33.281 33.279zM802.64 575.916h-141.599c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h141.599c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM810.084 703.501c11.585 0 20.975 9.39 20.975 20.975s-9.392 20.975-20.975 20.975-20.975-9.392-20.975-20.975 9.392-20.975 20.975-20.975zM746.209 703.501c11.585 0 20.975 9.39 20.975 20.975s-9.392 20.975-20.975 20.975-20.975-9.392-20.975-20.975 9.392-20.975 20.975-20.975zM682.333 703.501c11.585 0 20.975 9.39 20.975 20.975s-9.392 20.975-20.975 20.975-20.975-9.392-20.975-20.975 9.392-20.975 20.975-20.975z" /> -<glyph unicode="" glyph-name="headset-mic" d="M897.707 489.899c-0.512 211.883-173.013 384.085-385.024 384.085s-384.512-172.203-385.024-384.085c0-0.085 0-0.171 0-0.213v-147.925c0-59.776 48.64-108.416 108.416-108.416h65.323c23.765 0 43.008 19.243 43.008 43.008v213.333c0 23.765-19.243 43.008-43.008 43.008h-84.565c21.205 144.256 145.792 255.317 295.808 255.317s274.603-111.104 295.808-255.317h-84.565c-23.765 0-43.008-19.243-43.008-43.008v-213.333c0-23.765 19.243-43.008 43.008-43.008h87.765v-41.984h-256.725v42.325c0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-85.333c0-23.765 19.243-43.008 43.008-43.008h342.699c23.765 0 43.008 19.243 43.008 43.008v341.333s0 0.171 0 0.213zM258.432 319.317h-22.357c-12.373 0-22.4 10.069-22.4 22.4v104.917h44.757v-127.317zM766.976 319.317v127.317h44.757v-127.317h-44.757z" /> -<glyph unicode="" glyph-name="helicopter" d="M881.493 820.821c-9.429 8.149-21.888 11.861-34.261 10.069l-292.309-41.771c-0.427 23.381-19.499 42.197-42.965 42.197s-42.539-18.816-42.965-42.197l-292.309 41.771c-12.331 1.749-24.832-1.92-34.261-10.069s-14.805-20.011-14.805-32.469v-42.667c0-23.765 19.243-43.008 43.008-43.008h298.325v-3.285c-109.099-20.267-192-116.139-192-231.040v-128c0-38.229 9.173-74.368 25.472-106.325h-89.131c-23.765 0-43.008-19.243-43.008-43.008v-85.333c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v42.325h120.789c38.187-26.88 84.736-42.667 134.869-42.667s96.683 15.787 134.869 42.667h120.789v-42.325c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v85.333c0 23.765-19.243 43.008-43.008 43.008h-89.131c16.299 31.957 25.472 68.096 25.472 106.325v128c0 114.901-82.901 210.773-192 231.040v3.285h298.325c23.765 0 43.008 19.243 43.008 43.008v42.667c0 12.459-5.419 24.32-14.805 32.469zM468.992 610.987v-163.627h-105.984v20.992c0 67.2 44.757 124.16 105.984 142.635zM363.008 340.352v20.992h297.984v-20.992c0-82.176-66.859-148.992-148.992-148.992s-148.992 66.859-148.992 148.992zM660.992 468.352v-20.992h-105.984v163.669c61.269-18.517 105.984-75.435 105.984-142.635z" /> -<glyph unicode="" glyph-name="help" d="M416 160h-32v160c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-128h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM351.856 384.176c0.112 0 0.208 0 0.32 0 17.488 0 31.824 14.16 31.824 31.824s-14.16 32-31.824 32.176c-17.84 0-32.336-14.512-32.176-32.176 0-17.552 14.336-31.824 31.856-31.824zM987.216 912.832c-5.824 9.424-16.128 15.168-27.216 15.168h-480c-35.296 0-64-28.704-64-64v-288h-256c-35.296 0-64-28.704-64-64v-376.448l-60.624-121.232c-4.96-9.92-4.416-21.696 1.408-31.136 5.824-9.424 16.128-15.168 27.216-15.168h480c35.296 0 64 28.704 64 64v288h256c35.296 0 64 28.704 64 64v376.432l60.624 121.232c4.96 9.92 4.416 21.696-1.408 31.136zM115.776 32l40.848 81.68c2.224 4.432 3.376 9.344 3.376 14.32v384h384v-159.904s0-0.064 0-0.096 0-0.064 0-0.096v-319.904s-428.224 0-428.224 0zM867.376 782.32c-2.224-4.432-3.376-9.344-3.376-14.32v-384h-256v128c0 35.296-28.704 64-64 64h-64v288h428.224l-40.848-81.68zM608 672c17.664 0 32 14.336 32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32-32-14.336-32-32v-64c0-17.664 14.336-32 32-32s32 14.336 32 32v37.488c37.248 13.2 64 48.8 64 90.512 0 52.944-43.056 96-96 96s-96-43.056-96-96c0-17.664 14.336-32 32-32zM672 512c-17.664 0-32-14.16-32-31.824-0.176-17.84 14.336-32.176 32-32.176s32 14.512 32 32.176c-0.176 17.488-14.336 31.824-32 31.824z" /> -<glyph unicode="" glyph-name="horizontal-menu-copy" d="M803.9 554.612l-602.643-0.359c-44.573 0-80.822-36.249-80.822-80.822v-51.36c0-44.553 36.249-80.822 80.842-80.822l602.643 0.359c44.573 0 80.822 36.249 80.822 80.822v51.36c0 44.573-36.249 80.822-80.842 80.822zM841.826 422.43c0-20.899-17.007-37.906-37.906-37.906l-602.663-0.359c-20.899 0-37.906 17.007-37.906 37.906v51.36c0 20.917 17.007 37.906 37.926 37.906l602.643 0.359c20.899 0 37.906-17.007 37.906-37.906v-51.36zM782.578 470.442l-555.489-0.353c-11.851-0.006-21.452-9.621-21.444-21.472 0.008-11.847 9.613-21.444 21.458-21.444l555.489 0.353c11.851 0.008 21.452 9.621 21.444 21.472-0.008 11.847-9.613 21.444-21.458 21.444zM803.9 277.952l-602.643-0.359c-44.573 0-80.822-36.269-80.822-80.822v-51.36c0-44.573 36.249-80.822 80.842-80.822l602.663 0.339c44.553 0.020 80.802 36.269 80.802 80.822v51.36c0 44.573-36.249 80.842-80.842 80.842zM782.582 150.86l-555.475-0.359c-11.857 0-21.458 9.601-21.458 21.438-0.020 11.857 9.581 21.478 21.438 21.478l555.495 0.359c11.837 0 21.438-9.601 21.458-21.458 0-11.837-9.601-21.458-21.458-21.458zM803.9 831.291l-602.643-0.359c-44.573 0-80.822-36.249-80.822-80.822v-51.36c0-44.573 36.249-80.822 80.842-80.822l602.643 0.359c44.573 0 80.822 36.249 80.822 80.822v51.36c0 44.553-36.249 80.822-80.842 80.822zM841.826 699.108c0-20.919-17.007-37.906-37.906-37.906l-602.663-0.359c-20.899 0-37.906 17.007-37.906 37.906v51.36c0 20.899 17.007 37.906 37.926 37.906l602.643 0.359c20.899 0 37.906-17.007 37.906-37.906v-51.36zM782.578 747.116l-555.489-0.355c-11.851-0.008-21.452-9.621-21.444-21.472 0.008-11.847 9.613-21.444 21.458-21.444l555.489 0.355c11.851 0.008 21.452 9.621 21.444 21.472-0.008 11.847-9.613 21.444-21.458 21.444z" /> -<glyph unicode="" glyph-name="horizontal-progress-bar" d="M128 512h214.096c30.384-20.176 66.784-32 105.904-32s75.52 11.824 105.904 32h342.096c43.792 0 96 27.76 96 160s-52.208 160-96 160h-342.096c-30.384 20.176-66.784 32-105.904 32s-75.52-11.824-105.904-32h-214.096c-43.792 0-96-27.76-96-160s52.208-160 96-160zM928 672c0-35.856-4.16-96-32-96h-281.984c16.416 28.272 25.984 61.008 25.984 96s-9.552 67.728-25.984 96h281.984c27.84 0 32-60.144 32-96zM576 672c0-70.576-57.424-128-128-128s-128 57.424-128 128 57.424 128 128 128 128-57.424 128-128zM128 768h153.984c-11.296-19.456-19.2-41.024-23.088-64h-98.896c-17.664 0-32-14.336-32-32s14.336-32 32-32h98.896c3.872-22.976 11.792-44.544 23.088-64h-153.984c-27.84 0-32 60.144-32 96s4.16 96 32 96zM896 384h-118.096c-30.384 20.176-66.784 32-105.904 32s-75.52-11.824-105.904-32h-438.096c-43.792 0-96-27.76-96-160s52.208-160 96-160h438.096c30.384-20.176 66.784-32 105.904-32s75.52 11.824 105.904 32h118.096c43.792 0 96 27.76 96 160s-52.208 160-96 160zM96 224c0 35.856 4.16 96 32 96h377.984c-11.296-19.456-19.2-41.024-23.088-64h-322.896c-17.664 0-32-14.336-32-32s14.336-32 32-32h322.896c3.872-22.976 11.792-44.544 23.088-64h-377.984c-27.84 0-32 60.144-32 96zM544 224c0 70.576 57.424 128 128 128s128-57.424 128-128-57.424-128-128-128-128 57.424-128 128zM896 128h-57.984c16.416 28.272 25.984 61.008 25.984 96s-9.552 67.728-25.984 96h57.984c27.84 0 32-60.144 32-96s-4.16-96-32-96zM512 672c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM736 224c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64z" /> -<glyph unicode="" glyph-name="hotspot" d="M922.97 835.79c-9.292 7.388-22.816 5.852-30.21-3.442-7.392-9.292-5.852-22.818 3.44-30.21 18.426-14.656 28.994-36.546 28.994-60.056 0-42.286-34.402-76.686-76.686-76.686-16.912 0-32.552 5.514-45.246 14.822-0.542 0.456-1.1 0.878-1.674 1.27-18.092 14.040-29.768 35.972-29.768 60.594 0 25.518 12.644 49.292 33.824 63.602 9.84 6.648 12.426 20.014 5.78 29.852-6.648 9.84-20.012 12.43-29.852 5.782-33.032-22.316-52.754-59.414-52.754-99.234 0-30.172 11.246-57.75 29.736-78.824l-76.020-76.020s-0.002 0.004-0.004 0.004c-3.94 4.26-9.56 6.92-15.8 6.92h-101.36c-11.88 0-21.5-9.62-21.5-21.5v-90.18l-43.22-41.52c-0.28-0.28-0.56-0.56-0.84-0.86l-66.68-71.62-100.1 108.44c-4.12 4.48-9.96 7.060-16.020 6.92-6.080-0.080-11.86-2.7-15.88-7.26l-47.44-53.72v279.96h407.64c11.88 0 21.5 9.64 21.5 21.5s-9.62 21.5-21.5 21.5h-409.138c-22.88 0-41.5-18.6-41.5-41.5v-514.66c0-22.88 18.62-41.5 41.5-41.5h517.74c11.1 0 21.54 4.34 29.38 12.2s12.16 18.32 12.12 29.42l-0.48 170.76c-0.020 5.94-2.5 11.62-6.84 15.68l-115.88 107.92v47.98l104.242 104.242c16.73-8.902 35.796-13.968 56.032-13.968 65.996 0 119.686 53.692 119.686 119.686 0 36.69-16.484 70.846-45.224 93.708zM645.232 492.824h-58.36v58.34h58.36v-58.34zM767.972 351.104l0.46-159.94h-514.74v166.76l63.9 72.34 99.66-107.98c4.060-4.4 9.78-6.9 15.76-6.92h0.040c5.98 0 11.68 2.48 15.74 6.86l82.080 88.14 41.080 39.46h90.040l105.98-98.72zM841.494 748.202c-25.088 0-30.236 39.15-30.322 39.856-14.004-11.436-22.66-29.17-21.634-48.886 1.574-30.242 26.298-54.644 56.556-55.852 33.712-1.346 61.464 25.594 61.464 59.008 0 0.778-0.016 1.554-0.044 2.324-0.536 13.838-6.534 26.896-16.094 36.916-2.354 2.466-4.56 4.916-6.622 7.342-36.842 43.25-29.546 79.254-29.546 79.254-21.352-19.236-22.398-46.85-21.132-68.554 1.106-19.236 19.92-51.408 7.376-51.408zM874.322 575.168c-11.874 0-21.5-9.624-21.5-21.5v-447.834h-683.47v682.334h513.314c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-514.814c-22.884 0-41.5-18.618-41.5-41.5v-685.334c0-22.882 18.616-41.5 41.5-41.5h686.47c22.884 0 41.5 18.618 41.5 41.5v449.334c0 11.876-9.626 21.5-21.5 21.5zM345.772 569.564c0-45.18 36.76-81.94 81.94-81.94s81.92 36.76 81.92 81.94-36.74 81.92-81.92 81.92-81.94-36.76-81.94-81.92zM427.712 530.624c-21.46 0-38.94 17.46-38.94 38.94s17.48 38.92 38.94 38.92 38.92-17.46 38.92-38.92-17.46-38.94-38.92-38.94z" /> -<glyph unicode="" glyph-name="hourglass" d="M800 105.984h-4.992v37.675c0 52.309-20.352 101.504-57.344 138.496l-164.821 164.821 164.821 164.821c36.992 36.992 57.344 86.187 57.344 138.496v37.675h5.035c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-576.043c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h4.992v-37.675c0-52.309 20.352-101.504 57.344-138.496l164.821-164.821-164.821-164.821c-36.992-36.992-57.344-86.187-57.344-138.496v-37.675h-5.035c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h576c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM315.008 750.293v37.419l393.984 0.256v-37.675c0-29.355-11.435-56.917-32.171-77.653l-164.821-164.821-164.821 164.821c-20.736 20.736-32.171 48.341-32.171 77.653zM315.008 143.701c0 29.355 11.435 56.917 32.171 77.653l164.821 164.821 164.821-164.821c20.736-20.736 32.171-48.341 32.171-77.653v-37.419l-393.984-0.256v37.675z" /> -<glyph unicode="" glyph-name="hourglass-bottom" d="M800 105.984h-4.992v37.675c0 52.309-20.352 101.504-57.344 138.496l-19.797 19.797-0.213 1.024h-0.811l-144 144 164.821 164.821c36.992 36.992 57.344 86.187 57.344 138.496v37.675h5.035c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-576.043c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h4.992v-37.675c0-52.309 20.352-101.504 57.344-138.496l164.821-164.821-164.821-164.821c-36.992-36.992-57.344-86.187-57.344-138.496v-37.675h-5.035c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h576c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM428.843 303.019l83.2 83.2 83.2-83.2h-166.357zM315.008 750.293v37.419l393.984 0.256v-37.675c0-29.355-11.435-56.917-32.171-77.653l-164.821-164.821-164.821 164.821c-20.736 20.736-32.171 48.341-32.171 77.653z" /> -<glyph unicode="" glyph-name="hourglass-top" d="M800 105.984h-4.992v37.675c0 52.309-20.352 101.504-57.344 138.496l-164.821 164.821 164.821 164.821c36.992 36.992 57.344 86.187 57.344 138.496v37.675h5.035c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-576.043c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h4.992v-37.675c0-52.309 20.352-101.504 57.344-138.496l164.821-164.821-164.821-164.821c-36.992-36.992-57.344-86.187-57.344-138.496v-37.675h-5.035c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h576c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM315.008 750.293v37.419l393.984 0.256v-37.675c0-13.653-2.517-26.923-7.253-39.296l-379.392-0.256c-4.821 12.459-7.339 25.813-7.339 39.552zM315.008 143.701c0 29.355 11.435 56.917 32.171 77.653l164.821 164.821 164.821-164.821c20.736-20.736 32.171-48.341 32.171-77.653v-37.419l-393.984-0.256v37.675z" /> -<glyph unicode="" glyph-name="house" d="M985.040 580.24l-69.088 169.824c-18.656 45.52-67.184 76.096-120.736 76.096h-566.432c-50.864 0-96.72-28.288-119.68-73.808-0.384-0.784-0.752-1.568-1.072-2.352l-69.056-169.744c-10.416-21.728-9.088-46.896 3.632-67.552 12.928-20.992 35.248-33.536 59.792-33.712v-314.192c0-12.144 2.432-24.592 7.28-36.592 4.816-11.328 11.6-21.52 20.768-30.944 8.816-8.56 19.008-15.328 30.8-20.32 11.616-4.704 23.744-7.088 36.096-7.088h629.376c12.176 0 24.64 2.448 36.544 7.28 11.28 4.768 21.488 11.536 31.056 20.832 8.544 8.864 15.296 19.040 20.24 30.736 4.64 11.456 7.088 23.92 7.088 36.096v314.192c24.56 0.176 46.896 12.736 59.792 33.696 12.736 20.672 14.048 45.808 3.632 67.568zM385.6 133.84h-93.344v125.344c0 4.016 0.832 8.208 2.192 11.584 1.68 3.984 4.064 7.552 6.56 10.112 3.056 3.008 6.624 5.376 10.080 6.848 3.904 1.584 8.096 2.4 12.112 2.4h31.472c8.352 0 16.16-3.2 21.968-8.992 5.696-5.696 8.976-13.696 8.976-21.936v-125.344zM855.408 153.168c-1.68-3.968-4.080-7.6-6.384-10-3.12-3.024-6.736-5.424-10.272-6.928-3.888-1.584-8.064-2.4-12.064-2.4h-377.088v125.344c0 25.088-10.112 49.584-27.712 67.184-17.888 17.888-41.76 27.744-67.216 27.744h-31.472c-12.32 0-24.432-2.368-36.576-7.28-11.36-4.816-21.584-11.632-30.864-20.704-8.592-8.8-15.408-19.008-20.432-30.912-4.688-11.616-7.056-23.728-7.056-36.048v-125.344h-30.944c-4 0-8.176 0.832-11.616 2.224-3.968 1.68-7.552 4.064-10.032 6.448-3.008 3.088-5.408 6.704-6.896 10.16-1.584 3.904-2.4 8.096-2.4 12.112v314.16h30.944c8.48 0 16.624 3.376 22.624 9.376l103.248 103.248 103.248-103.248c6-6 14.144-9.376 22.624-9.376h408.56v-314.16c0-4-0.832-8.176-2.224-11.616zM926.928 546.24c-0.928-1.504-2.688-3.296-5.824-3.296h-458.784l-116.496 116.496c-12.496 12.496-32.752 12.496-45.248 0l-116.496-116.496h-81.152c-3.136 0-4.912 1.792-5.824 3.296-0.912 1.488-1.696 3.792-0.336 6.512 0.368 0.768 0.736 1.552 1.056 2.336l68.96 169.456c12.192 23.232 35.84 37.616 62.016 37.616h566.432c27.872 0 52.592-14.624 61.488-36.304l69.488-170.768c0.336-0.8 0.688-1.584 1.056-2.336 1.376-2.72 0.576-5.040-0.336-6.512zM700.816 417.056h-94.4c-52.336 0-94.944-42.592-94.944-94.944v-94.4c0-17.664 14.336-32 32-32h220.288c17.664 0 32 14.336 32 32v94.4c0 52.336-42.592 94.944-94.944 94.944zM731.744 259.712h-156.288v62.4c0 17.056 13.872 30.944 30.944 30.944h94.4c17.056 0 30.944-13.872 30.944-30.944v-62.4z" /> -<glyph unicode="" glyph-name="id-card" d="M777.76 879.088c-17.44 4.256-34.624 9.008-52 13.84-62.112 17.232-126.336 35.056-213.76 35.056s-151.008-17.664-212.816-34.768c-17.616-4.88-35.024-9.68-52.864-14-48.4-11.952-86.32-60.816-86.32-111.232v-704c0-52.944 43.056-96 96-96h512c52.944 0 96 43.056 96 96v704.016c0 50.576-37.904 99.376-86.24 111.088zM261.504 817.056c18.352 4.432 36.432 9.44 54.72 14.48 57.712 15.952 117.392 32.448 195.776 32.448s138.672-16.64 196.64-32.736c18.032-4.992 35.856-9.936 54-14.352 19.552-4.752 37.36-28.048 37.36-48.912v-288h-96v96c0 17.664-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32v-96h-96v288.016c0 20.832 17.952 44.24 37.504 49.056zM640 334.592c-13.888 12.464-29.488 22.992-46.448 31.008 9.104 14.672 14.448 31.904 14.448 50.4 0 52.944-43.056 96-96 96s-96-43.056-96-96c0-18.496 5.344-35.728 14.448-50.4-16.96-8.016-32.56-18.544-46.448-31.008v209.408h256v-209.408zM480 416c0 17.648 14.352 32 32 32s32-14.352 32-32-14.352-32-32-32-32 14.352-32 32zM512 320c46.432 0 88.176-25.408 110.608-64h-221.216c22.432 38.592 64.176 64 110.608 64zM800 64c0-17.648-14.352-32-32-32h-512c-17.648 0-32 14.352-32 32v224c17.664 0 32 14.336 32 32s-14.336 32-32 32v64h96v-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c17.664 0 32 14.336 32 32s-14.336 32-32 32v160h96v-64c-17.664 0-32-14.336-32-32s14.336-32 32-32v-224zM448 736h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 640h448c17.664 0 32 14.336 32 32s-14.336 32-32 32h-448c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 128h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM704 128h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="image" d="M914.096 168.608c8.4-10.8 21.184-16.8 34.368-16.8 4.72 0 9.488 0.768 14.128 2.352 17.6 6.032 29.408 22.592 29.408 41.184v532.672c0 48.512-39.472 87.984-87.984 87.984h-784.032c-48.512 0-87.984-39.472-87.984-87.984v-379.264c0-17.664 14.336-32 32-32s32 14.336 32 32v379.264c0 13.232 10.768 23.984 23.984 23.984h784.032c13.216 0 23.984-10.752 23.984-23.984v-473.056l-208.288 267.68c-0.496 0.656-1.040 1.296-1.616 1.92-14.064 15.44-37.616 16.976-53.568 3.456l-259.536-219.728-132.88 156.368c-7.712 9.12-18.72 14.144-30.96 13.664-11.952-0.448-22.848-6.256-29.888-15.952l-158.144-218.176c-13.84-19.12-21.152-41.696-21.152-65.28 0-54.528 44.352-98.896 98.896-98.896h827.696c17.664 0 32 14.336 32 32s-14.336 32-32 32h-827.664c-19.232 0-34.896 15.648-34.896 34.896 0 10.016 3.104 19.616 8.992 27.728l139.216 192.064 199.568-234.848c11.44-13.488 31.648-15.104 45.104-3.664s15.104 31.648 3.664 45.104l-46.096 54.24 239.28 202.592 228.352-293.488zM575.552 592.944c0 64.624-52.576 117.2-117.2 117.2s-117.2-52.576-117.2-117.2 52.576-117.2 117.2-117.2 117.2 52.576 117.2 117.2zM405.136 592.944c0 29.328 23.856 53.2 53.2 53.2s53.2-23.872 53.2-53.2-23.856-53.2-53.2-53.2-53.2 23.872-53.2 53.2z" /> -<glyph unicode="" glyph-name="image-accordion" d="M767.501 618.499c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c11.452 0 21.125-7.236 21.125-15.803v-223.563c0-8.565-9.675-15.803-21.125-15.803-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c35.313 0 64.041 26.341 64.041 58.719v223.563c0 32.379-28.73 58.719-64.041 58.719zM873.959 597.207c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c11.649 0 21.125-9.477 21.125-21.125v-170.333c0-11.649-9.477-21.125-21.125-21.125-11.853 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c35.311 0 64.041 28.73 64.041 64.041v170.333c0 35.313-28.73 64.041-64.041 64.041zM256.499 575.583c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458c-35.313 0-64.041-26.341-64.041-58.719v-223.563c0-32.377 28.73-58.719 64.041-58.719 11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458c-11.452 0-21.125 7.236-21.125 15.803v223.563c0 8.567 9.675 15.803 21.125 15.803zM150.041 554.292c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458c-35.313 0-64.043-28.73-64.043-64.041v-170.333c0-35.313 28.73-64.041 64.043-64.041 11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458c-11.649 0-21.127 9.477-21.127 21.125v170.333c0 11.649 9.477 21.125 21.127 21.125zM681.956 661.914h-339.916c-23.714 0-42.956-19.242-42.956-42.956v-340.914c0-23.734 19.242-42.956 42.956-42.956h339.916c23.734 0 42.958 19.222 42.958 42.956v340.914c0 23.714-19.222 42.956-42.958 42.956zM533.286 533.166c0-31.838-25.81-57.627-57.627-57.627s-57.647 25.79-57.647 57.627 25.81 57.647 57.647 57.647 57.627-25.81 57.627-57.647zM682.016 345.492l-79.744 68.366-55.951-63.236 4.431-2.874c9.939-6.447 12.775-19.741 6.328-29.682-6.447-9.939-19.741-12.775-29.682-6.328l-123.399 79.984-61.999-61.999v60.701l37.766 37.766c11.957 11.957 31.079 12.635 43.854 1.976l86.272-55.951 74.255 83.896c7.765 8.763 21.139 9.701 30.021 2.076l67.847-58.166v-56.53z" /> -<glyph unicode="" glyph-name="image-box" d="M854.668 831.168h-685.334c-22.882 0-41.5-18.618-41.5-41.5v-685.334c0-22.882 18.618-41.5 41.5-41.5h685.334c22.882 0 41.5 18.618 41.5 41.5v685.334c0 22.882-18.618 41.5-41.5 41.5zM853.168 424.33l-76.038 74.38c-4.908 5.522-11.956 8.626-19.342 8.456-7.386-0.148-14.306-3.51-18.996-9.23l-189.628-236.476-170.74 133.84c-13.506 13.384-35.432 13.336-48.876-0.112l-158.714-158.712v444.050l114.618 107.642h567.716v-363.838zM170.834 107.066c0.642-0.418 1.282-0.836 1.938-1.232h-1.938v1.232zM850.736 105.834c0.824 0.498 1.63 1.016 2.43 1.546v-1.546h-2.43zM510.418 445.364c83.244 0 150.968 67.724 150.968 150.968s-67.724 150.968-150.968 150.968-150.968-67.724-150.968-150.968 67.724-150.968 150.968-150.968z" /> -<glyph unicode="" glyph-name="image-comparison" d="M854.672 805.706h-321.18v27.080h55.584c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-77.066s-0.012 0-0.020 0-0.012 0-0.020 0h-77.050c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h55.57v-27.080h-321.158c-22.88 0-41.5-18.62-41.5-41.5v-631.78c0-22.88 18.62-41.5 41.5-41.5h321.16v-27.708h-55.57c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h154.154c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-55.584v27.708h321.18c22.88 0 41.5 18.62 41.5 41.5v631.78c0 22.88-18.62 41.5-41.5 41.5zM853.172 762.706v-215.934l-32.736 36.824c-8.668 9.748-21.122 15.184-34.164 14.93-13.042-0.26-25.266-6.198-33.536-16.286l-206.582-251.982-12.664 12.528v136.96c60.46 10.26 106.64 63.020 106.64 126.34s-46.18 116.1-106.64 126.36v30.26h319.68zM511.992 691.246c7.42 0 14.62-0.96 21.5-2.74 36.58-9.56 63.64-42.88 63.64-82.42s-27.060-72.84-63.64-82.4c-6.88-1.78-14.080-2.74-21.5-2.74v170.3zM490.492 762.706v-35.1c-58.56-9.48-103.26-60.28-103.26-121.52s44.7-112.020 103.26-121.5v-95.438l-118.67 113.862c-9.296 8.92-24.102 8.474-32.844-0.988l-168.146-181.992v442.676h319.66zM533.492 133.926v148.372l86.17-85.248c4.192-4.146 9.656-6.214 15.12-6.214 5.54 0 11.080 2.128 15.286 6.378 8.35 8.442 8.278 22.054-0.164 30.406l-73.046 72.266 209.132 255.094c0.122 0.148 0.444 0.542 1.144 0.556 0.706 0.028 1.040-0.366 1.166-0.51l60.116-67.622c1.42-1.596 3.028-2.922 4.756-3.992v-349.486h-319.68z" /> -<glyph unicode="" glyph-name="image-gallery" d="M835.992 533.478h-242.66c-33.14 0-60-26.86-60-60v-350.48c0-33.14 26.86-60 60-60h242.66c33.14 0 60 26.86 60 60v350.48c0 33.14-26.86 60-60 60zM852.992 122.998c0-9.38-7.62-17-17-17h-242.66c-9.38 0-17 7.62-17 17v350.48c0 9.38 7.62 17 17 17h242.66c9.38 0 17-7.62 17-17v-350.48zM835.992 830.998h-242.66c-33.14 0-60-26.86-60-60v-134.86c0-33.14 26.86-60 60-60h242.66c33.14 0 60 26.86 60 60v134.86c0 33.14-26.86 60-60 60zM835.992 787.998c1.36 0 2.68-0.16 3.94-0.46 6.48-2.2 11.44-7.68 12.94-14.48 0.080-0.68 0.12-1.36 0.12-2.060v-94.3l-111.3 111.3h94.3zM187.992 321.658h242.68c33.137 0 60-26.863 60-60v-138.66c0-33.137-26.863-60-60-60h-242.68c-33.137 0-60 26.863-60 60v138.66c0 33.137 26.863 60 60 60zM430.672 830.998h-242.68c-33.12 0-60-26.86-60-60v-346.66c0-33.14 26.88-60 60-60h242.68c33.14 0 60 26.86 60 60v346.66c0 33.14-26.86 60-60 60zM447.672 424.338c0-9.38-7.64-17-17-17h-242.68c-9.36 0-17 7.62-17 17v259.686l110.71 103.974h148.968c9.36 0 17-7.62 17-17v-346.66z" /> -<glyph unicode="" glyph-name="image-hotspot" d="M547.376 385.68c5.616-11.216 16.912-17.68 28.656-17.68 4.8 0 9.68 1.072 14.288 3.376l17.68 8.848 17.68-8.848c4.592-2.304 9.488-3.376 14.288-3.376 11.744 0 23.040 6.464 28.656 17.68 4.992 9.984 4.256 21.312-0.928 30.32 5.184 8.992 5.936 20.32 0.928 30.32-7.888 15.792-27.104 22.24-42.944 14.32l-17.68-8.848-17.68 8.848c-15.84 7.92-35.040 1.488-42.944-14.32-4.992-9.984-4.256-21.312 0.928-30.32-5.184-8.992-5.936-20.32-0.928-30.32zM355.376 385.68c5.616-11.216 16.912-17.68 28.656-17.68 4.8 0 9.68 1.072 14.288 3.376l17.68 8.848 17.68-8.848c4.592-2.304 9.488-3.376 14.288-3.376 11.744 0 23.040 6.464 28.656 17.68 4.992 9.984 4.256 21.312-0.928 30.32 5.184 8.992 5.936 20.32 0.928 30.32-7.888 15.792-27.088 22.24-42.944 14.32l-17.68-8.848-17.68 8.848c-15.856 7.92-35.024 1.488-42.944-14.32-4.992-9.984-4.256-21.312 0.928-30.32-5.184-8.992-5.936-20.32-0.928-30.32zM704 640h114.752l22.624-22.624c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l22.624 22.624h50.752c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32h-160v64c0 17.664-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32v-64h-64c-17.664 0-32-14.336-32-32v-800c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v544c0 17.664-14.336 32-32 32s-32-14.336-32-32v-384h-32v96c0 42.912-28.304 79.312-67.216 91.584l-5.152 41.072c23.6 9.424 40.368 32.416 40.368 59.36 0 33.408-25.808 60.608-58.496 63.44-18.72 56.56-72.032 96.56-133.504 96.56h-320c-2.928 0-5.792-0.224-8.672-0.4-11.040 19.264-31.568 32.4-55.328 32.4-35.296 0-64-28.704-64-64 0-12.096 3.568-23.296 9.408-32.944-11.024-17.168-18.512-36.896-21.2-58.256l-17.040-137.232c-38.896-12.272-67.184-48.672-67.184-91.568v-96h-32v607.984h32v-32c0-17.664 14.336-32 32-32h70.32l39.936-26.624c5.376-3.584 11.568-5.376 17.744-5.376s12.368 1.792 17.744 5.376l39.936 26.624h134.32c17.664 0 32 14.336 32 32v32h160v-96c0-17.664 14.336-32 32-32zM832 160h-64v96c0 17.648 14.352 32 32 32s32-14.352 32-32v-96zM320 160v39.76c13.44 2.8 31.456 6.352 52.112 9.888 11.472-10.864 26.864-17.648 43.888-17.648 22.864 0 42.816 12.144 54.144 30.224 14.336 1.088 28.464 1.776 41.856 1.776 66.688 0 151.056-15.712 192-24.24v-39.76h-384zM672 544c36.336 0 67.168-25.776 74.656-60.768-6.704-10.112-10.656-22.208-10.656-35.232 0-18.992 8.48-35.904 21.664-47.632l6.928-55.216c-32.784-13.072-56.72-43.632-60.144-80.128-46.432 9.312-125.936 22.976-192.464 22.976-12.976 0-26.48-0.544-40.112-1.456-10.88 19.824-31.712 33.456-55.888 33.456-29.92 0-54.896-20.704-61.872-48.48-12.784-2.256-24.464-4.48-34.576-6.496-3.424 36.512-27.376 67.088-60.176 80.144l16.352 131.712c1.664 13.2 6.832 25.152 14.256 35.328 22.4 0.704 41.776 12.896 52.656 30.928 3.104 0.384 6.176 0.864 9.376 0.864h320zM192 256c0 17.648 14.352 32 32 32s32-14.352 32-32v-96h-64v96zM928 96v-64h-832v64h832zM448 768h-112c-6.32 0-12.496-1.872-17.744-5.376l-30.256-20.176-30.256 20.176c-5.248 3.504-11.44 5.376-17.744 5.376h-48v96h256v-96zM928 800v-96h-32c-8.48 0-16.624-3.376-22.624-9.376l-9.376-9.376-9.376 9.376c-6 6-14.144 9.376-22.624 9.376h-96v96h192z" /> -<glyph unicode="" glyph-name="image-hover" d="M403.432 515.746c-0.92 0-1.68-0.36-2.26-1.060l-157.020-191.020v-138.48c0-2.22 1.78-4 4-4h428.76l-271.22 333.48c-0.58 0.72-1.34 1.080-2.26 1.080zM577.672 529.006c32.16 0 58.34 26.18 58.34 58.34s-26.18 58.34-58.34 58.34-58.32-26.18-58.32-58.34 26.16-58.34 58.32-58.34zM403.432 558.746h0.12c13.84-0.040 26.78-6.22 35.5-16.94l142.58-175.32c0.7 1.36 1.56 2.68 2.58 3.9l92.24 110.82c3.98 4.78 9.84 7.6 16.060 7.74 6.2 0.2 12.18-2.42 16.36-7l72-79.020v310.98c0 2.22-1.78 4-4 4h-528.72c-2.22 0-4-1.78-4-4v-322.52l123.8 150.6c8.76 10.66 21.68 16.76 35.48 16.76zM577.672 688.686c55.88 0 101.34-45.46 101.34-101.34s-45.46-101.34-101.34-101.34-101.32 45.46-101.32 101.34 45.44 101.34 101.32 101.34zM973.392 251.586l-121.020 48.12v447.3c0 22.88-18.62 41.5-41.5 41.5h-596.66c-22.88 0-41.5-18.62-41.5-41.5v-600.66c0-22.88 18.62-41.5 41.5-41.5h566.3l13.12-33.020c4.86-12.26 16.64-20.080 29.54-20.080 1.42 0 2.84 0.080 4.28 0.28 14.52 1.96 25.78 13.48 27.4 28.040l11.020 99.26 99.28 11.040c14.54 1.62 26.080 12.88 28.020 27.38 1.96 14.52-6.18 28.42-19.78 33.84zM824.232 194.026l-7.18-64.74-65.26 164.12 164.12-65.24-64.72-7.2c-14.28-1.58-25.36-12.66-26.96-26.94zM215.712 147.846v597.66h593.66v-428.7l-28.5 11.32v10.96l-87.16 95.64-76.44-91.86c-2.92-3.48-6.7-5.82-10.78-6.96l124.52-153.1-2-1.62h21.14l13.26-33.34h-547.7z" /> -<glyph unicode="" glyph-name="image-info" d="M960 928h-896c-17.664 0-32-14.336-32-32v-384c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v384c0 17.664-14.336 32-32 32zM352 864v-126.736l-38.624 50.224c-5.888 7.648-14.896 12.24-24.528 12.48-10.016 0.544-18.88-3.84-25.136-11.152l-68.512-79.936-8.56 12.848c-5.312 7.984-13.936 13.152-23.472 14.096-9.552 0.944-18.992-2.448-25.776-9.216l-41.376-41.376v178.768h256zM96 594.752l59.024 59.024 42.336-63.52c6.176-9.248 16.32-14.256 26.656-14.256 6.096 0 12.272 1.728 17.712 5.376 14.704 9.792 18.672 29.664 8.88 44.368l-18.544 27.824 54.576 63.68 65.344-84.976v-88.272h-255.984v50.752zM928 544h-512v320h512v-320zM960 416h-896c-17.664 0-32-14.336-32-32v-384c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v384c0 17.664-14.336 32-32 32zM352 352v-194.672c-17.408 2.048-34.624 2.88-51.504 2.64-73.152 67.392-158.976 87.552-204.496 93.472v98.56h256zM96 188.672c27.664-4.432 69.664-15.008 111.888-39.488-44.864-9.632-83.68-24.016-111.888-36.416v75.888zM96 41.904c39.072 19.76 146.016 66.48 256 50.88v-60.8h-256v9.904zM928 32h-512v78.944c0.080 0.32 0.24 0.592 0.32 0.912 1.232 5.232 0.96 10.416-0.32 15.28v224.848h512v-320zM512 768h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 672h352c17.664 0 32 14.336 32 32s-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32zM544 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 768h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32zM624 256h112c17.664 0 32 14.336 32 32s-14.336 32-32 32h-112c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 160h352c17.664 0 32 14.336 32 32s-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 256h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="image-list" d="M893.632 928h-763.264c-54.256 0-98.368-44.128-98.368-98.368v-763.248c0-54.256 44.128-98.368 98.368-98.368h763.248c54.256 0 98.368 44.128 98.368 98.368v763.248c0 54.256-44.128 98.368-98.368 98.368zM928 66.368c0-18.96-15.424-34.368-34.368-34.368h-763.264c-18.96 0-34.368 15.424-34.368 34.368v763.264c0 18.96 15.424 34.368 34.368 34.368h763.248c18.96 0 34.368-15.424 34.368-34.368v-763.248zM827.264 828.432h-331.856c-17.664 0-32-14.336-32-32v-431.408c0-17.664 14.336-32 32-32h331.856c17.664 0 32 14.336 32 32v431.408c0 17.664-14.336 32-32 32zM795.264 764.432v-123.040l-11.744 11.744c-12.496 12.496-32.752 12.496-45.248 0l-76.928-76.928-43.744 43.744c-12.496 12.496-32.752 12.496-45.248 0l-44.944-44.928v189.408h267.856zM527.408 397.024v87.504l67.568 67.552 76.928-76.928c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-10.56 10.56 54.304 54.304 34.368-34.368v-153.856h-267.856zM362.672 297.488h-165.936c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h165.936c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM330.672 131.568h-101.936v101.92h101.936v-101.92zM827.264 297.488h-331.856c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h331.856c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM795.264 131.568h-267.856v101.92h267.856v-101.92zM362.672 562.976h-165.936c-17.664 0-32-14.336-32-32v-165.936c0-17.664 14.336-32 32-32h165.936c17.664 0 32 14.336 32 32v165.936c0 17.664-14.336 32-32 32zM330.672 397.024h-101.936v101.936h101.936v-101.936zM362.672 828.432h-165.936c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h165.936c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM330.672 662.512h-101.936v101.92h101.936v-101.92z" /> -<glyph unicode="" glyph-name="image-marquee" d="M192.012 533.166h249.48c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-249.48c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM390.842 384c0 11.876-9.626 21.5-21.5 21.5h-241.332c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h241.332c11.874 0 21.5 9.624 21.5 21.5zM397.8 447.834c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-291.122c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h291.122zM485.632 298.662c0-11.88 9.64-21.5 21.5-21.5h324.88c11.88 0 21.5 9.62 21.5 21.5v75.080l-80.4 68.92-56.060-63.36 4.44-2.86c9.96-6.46 12.8-19.78 6.34-29.74-6.46-9.958-19.78-12.8-29.74-6.36l-25.4 16.48c-0.060 0.040-0.12 0.080-0.18 0.12l-98.060 63.56-84.82-84.82c-1.24-1.24-2.58-2.28-4-3.14v-33.88zM528.632 435.482l21.54 21.54c11.98 12 31.14 12.68 43.94 1.98l86.44-56.040 74.4 84.060c7.78 8.78 21.18 9.7 30.1 2.060l68.46-58.7v166.96c0 11.86-9.62 21.5-21.5 21.5h-324.88c-11.86 0-21.5-9.64-21.5-21.5v-204.84l43 42.98zM678.152 507.602c-31.9 0-57.74 25.86-57.74 57.76 0 4.14 0.44 7.6 1.26 10.48 0.46 1.62 1.060 3.060 1.76 4.34l109.3 0.26c0.78-1.34 1.42-2.86 1.9-4.6 0.84-2.88 1.28-6.34 1.28-10.48 0-31.9-25.86-57.76-57.76-57.76zM938.852 628.122c0 1.36-0.040 2.72-0.12 4.060-0.060 1.42-0.28 2.78-0.6 4.12 0.040 1.36-0.040 2.76-0.28 4.16-0.44 2.74-1.040 5.48-1.78 8.16-0.38 1.36-0.88 2.66-1.5 3.9-0.26 1.34-0.64 2.7-1.18 4.020-1.040 2.58-2.22 5.14-3.54 7.58-0.68 1.26-1.46 2.42-2.32 3.5-0.56 1.26-1.22 2.48-2.040 3.66-1.58 2.3-3.3 4.52-5.14 6.64-0.94 1.080-1.96 2.040-3.060 2.88-0.82 1.12-1.76 2.18-2.8 3.14-2.080 1.9-4.28 3.72-6.54 5.36-1.18 0.84-2.4 1.56-3.66 2.14-1.060 0.9-2.22 1.72-3.46 2.42-2.48 1.4-5.060 2.66-7.68 3.74-1.34 0.56-2.7 0.98-4.060 1.26-1.26 0.64-2.6 1.16-4 1.56-2.74 0.78-5.542 1.4-8.34 1.84-1.44 0.24-2.86 0.32-4.26 0.26-1.36 0.32-2.76 0.52-4.2 0.58-0.96 0.040-1.92 0.060-2.9 0.060h-3.96c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2.020-0.060-2.98-0.2-0.98 0.14-2 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2-0.060-2.98-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2.020-0.060-2.98-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2-0.060-2.98-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2.020-0.060-3-0.2-0.96 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1 0-2-0.060-2.98-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-5.98c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-2.98 0.2h-6c-1.020 0-2.020-0.060-3-0.2-0.98 0.14-1.98 0.2-3 0.2h-6c-1.020 0-2-0.080-2.98-0.2-0.032-0.004-0.064-0.014-0.096-0.018-0.956 0.128-1.922 0.22-2.914 0.22h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c0.986 0 1.948 0.090 2.898 0.218 0.038-0.004 0.074-0.016 0.11-0.020 0.98-0.12 1.96-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2 0.080 2.98 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2.020 0.080 2.98 0.2 0.98-0.12 2-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2 0.080 2.98 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.96-0.12 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2 0.080 2.98 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2 0.080 2.98 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2.020 0.080 3 0.2 0.96-0.12 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1 0 2 0.080 2.98 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h6c1.020 0 2.020 0.080 3 0.2 0.98-0.12 1.98-0.2 3-0.2h3.96c0.38 0 0.78 0 1.16-0.020 0.58-0.020 1.18-0.020 1.76 0 0.56-0.14 1.12-0.24 1.7-0.34 1.12-0.18 2.24-0.42 3.36-0.74 0.54-0.16 1.1-0.3 1.66-0.4 0.52-0.26 1.040-0.52 1.58-0.74 1.060-0.44 2.1-0.94 3.1-1.52 0.52-0.28 1.040-0.56 1.58-0.8 0.44-0.38 0.9-0.74 1.38-1.1 0.94-0.68 1.86-1.44 2.74-2.24 0.44-0.4 0.9-0.78 1.36-1.14 0.34-0.48 0.72-0.94 1.12-1.4 0.78-0.9 1.52-1.86 2.18-2.84 0.36-0.5 0.72-0.98 1.1-1.44 0.24-0.54 0.5-1.1 0.78-1.62 0.56-1.060 1.080-2.16 1.52-3.28 0.24-0.56 0.48-1.12 0.76-1.64 0.1-0.6 0.24-1.2 0.4-1.78 0.32-1.16 0.58-2.36 0.78-3.54 0.1-0.62 0.22-1.22 0.36-1.8-0.020-0.62 0-1.22 0.020-1.84 0.040-0.6 0.060-1.2 0.060-1.8v-3.080c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-2.98-0.14-1-0.2-2-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1 0.060-2 0.2-3-0.14-0.96-0.2-1.96-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1 0.060-2 0.2-2.98-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-5.98c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-5.98c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-5.98c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.96-0.2-1.96-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1 0.060-2 0.2-2.98-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1 0.060-2 0.2-2.98-0.020-0.12-0.040-0.22-0.040-0.34-0.12-0.86-0.16-1.76-0.16-2.66v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-5.98c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6.24c0.020-0.94 0.080-1.84 0.2-2.74-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.98-0.2-1.98-0.2-3v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.96-0.2-1.96-0.2-2.98v-6c0-1.020 0.060-2.020 0.2-3-0.14-0.94-0.2-1.9-0.2-2.88-0.020-1.22-0.080-2.46-0.22-3.66-0.080-0.62-0.12-1.22-0.14-1.84-0.18-0.58-0.34-1.16-0.48-1.76-0.26-1.18-0.6-2.34-0.98-3.48-0.2-0.58-0.38-1.16-0.52-1.74-0.3-0.52-0.58-1.060-0.86-1.6-0.5-1.080-1.080-2.14-1.72-3.16-0.32-0.52-0.62-1.040-0.88-1.58-0.4-0.44-0.8-0.9-1.18-1.36-0.74-0.94-1.52-1.84-2.36-2.7-0.42-0.42-0.82-0.86-1.2-1.3-0.5-0.34-0.96-0.7-1.44-1.080-0.9-0.72-1.86-1.42-2.84-2.042-0.5-0.3-0.98-0.64-1.46-0.98-0.54-0.22-1.060-0.44-1.6-0.7-1.040-0.5-2.1-0.92-3.18-1.3-0.56-0.18-1.1-0.4-1.62-0.62-0.56-0.080-1.14-0.18-1.72-0.3-1.1-0.22-2.24-0.4-3.38-0.5-0.6-0.060-1.2-0.14-1.8-0.24-0.74 0.080-1.48 0.12-2.24 0.12h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2.020-0.080-2.98-0.22-0.98 0.14-2 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2-0.080-2.98-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.96 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2-0.080-2.98-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2.020-0.080-3-0.22-0.96 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2-0.080-2.98-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-2.98 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2.020-0.080-2.98-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1 0-2-0.080-2.98-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-6c-1.020 0-2.020-0.080-3-0.22-0.98 0.14-1.98 0.22-3 0.22h-5.98c-1.040 0-2.040-0.080-3.040-0.22-0.032-0.004-0.060-0.012-0.092-0.018-0.974 0.136-1.96 0.23-2.972 0.23h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c1.028 0 2.030 0.096 3.018 0.236 0.016 0 0.030-0.006 0.046-0.008 1-0.14 2-0.22 3.040-0.22h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.96-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2 0.060 2.98 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2.020 0.060 2.98 0.2 0.98-0.14 2-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2 0.060 2.98 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2.020 0.060 2.98 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2 0.060 2.98 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2.020 0.060 3 0.2 0.96-0.14 1.98-0.2 2.98-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1 0 2 0.060 2.98 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h5.98c1.020 0 2.020 0.060 3 0.2 0.98-0.14 1.98-0.2 3-0.2h6c1.28 0 2.52 0.1 3.74 0.32 1.36-0.14 2.76-0.16 4.18-0.020 2.84 0.24 5.68 0.68 8.46 1.26 1.42 0.32 2.78 0.74 4.060 1.3 1.4 0.18 2.78 0.5 4.16 0.98 2.7 0.9 5.34 2 7.9 3.22 1.32 0.62 2.52 1.36 3.64 2.2 1.3 0.5 2.58 1.12 3.8 1.9 2.38 1.5 4.7 3.16 6.88 4.92 1.12 0.92 2.14 1.9 3.020 2.96 1.14 0.78 2.24 1.68 3.24 2.7 1.96 2 3.84 4.12 5.56 6.3 0.88 1.14 1.64 2.32 2.26 3.54 0.94 1.020 1.8 2.12 2.54 3.34 1.48 2.36 2.82 4.84 4.020 7.36 0.62 1.3 1.1 2.62 1.44 3.94 0.68 1.2 1.26 2.46 1.74 3.82 0.9 2.62 1.68 5.32 2.28 8.040 0.32 1.38 0.5 2.76 0.54 4.14 0.4 1.3 0.7 2.66 0.86 4.080 0.32 2.72 0.48 5.52 0.5 8.28 0 1.060-0.080 2.1-0.22 3.12 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1-0.080 2-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1-0.080 2-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v5.98c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v5.98c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 2.98v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 2.98v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1-0.080 2-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v5.98c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v5.98c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v5.98c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 2.98v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1.020-0.080 2.020-0.22 2.98 0.14 1 0.22 2 0.22 3v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1-0.080 2-0.22 3 0.14 0.96 0.22 1.96 0.22 2.98v6c0 1.020-0.080 2.020-0.22 3 0.14 0.98 0.22 1.98 0.22 3v6c0 1-0.080 2-0.22 2.98 0.14 0.98 0.22 1.98 0.22 3v3.060z" /> -<glyph unicode="" glyph-name="image-masonry" d="M960 928h-896c-17.664 0-32-14.336-32-32v-896c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v896c0 17.664-14.336 32-32 32zM640 480v242.752l13.264 13.248h50.736v-256h-64zM512 480v128h64v-128h-64zM379.776 559.872c-0.224 0.384-0.56 0.656-0.784 1.040-1.008 1.6-2.144 3.088-3.408 4.496-0.464 0.512-0.896 1.056-1.392 1.536-1.76 1.712-3.664 3.264-5.808 4.544-0.144 0.080-0.304 0.128-0.448 0.208-1.952 1.12-4.064 2.016-6.288 2.72-0.784 0.256-1.6 0.4-2.4 0.592-0.912 0.208-1.776 0.544-2.736 0.672-0.816 0.112-1.616 0.048-2.432 0.112-0.496 0.032-0.96 0.208-1.472 0.224-0.32 0-0.608-0.112-0.928-0.112-5.344-0.032-10.416-1.392-14.912-3.84-0.048-0.032-0.080-0.064-0.128-0.080-2.080-1.152-4-2.528-5.776-4.096-0.432-0.368-0.848-0.752-1.248-1.152-1.632-1.616-3.12-3.36-4.384-5.312-0.112-0.16-0.272-0.288-0.368-0.448l-0.192-0.32s-0.096-0.144-0.144-0.224l-129.424-207.072-6.48 12.976c-4.96 9.92-14.704 16.56-25.744 17.568-10.928 0.88-21.808-3.792-28.48-12.672l-38.4-51.2v288h64c52.944 0 96 43.056 96 96v37.6c37.232 13.216 64 48.688 64 90.4v32h128v-423.504l-68.224 119.376zM704 800h-64c-8.48 0-16.624-3.376-22.624-9.376l-32-32c-6-6-9.376-14.144-9.376-22.624v-64h-64v192h192v-64zM768 512h8.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-8.016v93.6c7.328-1.808 15.28-2.928 24.016-2.928 23.856 0 42.288 7.664 55.984 18 13.712-10.336 32.144-18 56.016-18 8.736 0 16.672 1.104 23.984 2.912v-61.584h-39.984c-17.664 0-32-14.336-32-32s14.336-32 32-32h39.984v-64h-160v32zM928 742.704c-2.944-5.136-9.536-12.032-23.984-12.032-17.264 0-23.376 9.808-25.36 14.72-2.96 9.984-10.608 18.384-21.216 21.616-16.912 5.136-34.672-4.016-39.808-20.928-1.696-4.64-7.6-15.408-25.616-15.408-14.48 0-21.072 6.896-24.016 12.032v121.296h160v-121.296zM256 864v-32c0-17.936-14.048-32-32-32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-32c0-17.936-14.048-32-32-32h-64v192h160zM96 213.328l58.528 78.048 8.848-17.68c5.184-10.336 15.552-17.104 27.104-17.664 11.472-0.224 22.528 5.184 28.656 15.008l79.776 127.648-10.592-74.16c-1.424-9.984 1.936-20.032 9.056-27.152l49.072-49.072-56.16-140.4c-6.56-16.416 1.408-35.024 17.824-41.616 3.904-1.552 7.92-2.304 11.872-2.304 12.688 0 24.704 7.632 29.712 20.128l64 160c4.752 11.888 1.968 25.472-7.088 34.512l-52.688 52.688 16.544 115.84 77.504-135.648v-279.504h-351.968v181.328zM832 32h-224v32h32c12.112 0 23.2 6.848 28.624 17.68l23.152 46.32h56.448l23.152-46.32c5.424-10.848 16.512-17.68 28.624-17.68h32v-32zM896 32v64c0 17.664-14.336 32-32 32h-44.224l-23.152 46.32c-5.424 10.848-16.512 17.68-28.624 17.68h-96c-12.112 0-23.2-6.848-28.624-17.68l-23.152-46.32h-44.224c-17.664 0-32-14.336-32-32v-64h-32v384h416v-384h-32zM360.016 704h-8.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 288h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 384h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="images" d="M981.312 435.008l-104.624 181.136v98c0 33.152-26.976 60.144-60.128 60.144h-31.2l-50.032 86.624c-10.768 18.656-28.144 31.984-48.896 37.536-20.688 5.504-42.336 2.656-60.832-8.096l-201.152-116.064h-217.024c-33.184 0-60.176-26.992-60.176-60.144v-99.904l-75.024-43.376c-18.608-10.752-31.92-28.112-37.472-48.88-5.568-20.768-2.688-42.432 8.048-60.992l104.448-181.136v-98.016c0-33.152 27.008-60.144 60.176-60.144h31.152l50.032-86.624c10.784-18.688 28.208-32.016 49.024-37.552 6.864-1.824 13.824-2.72 20.72-2.72 13.952 0 27.68 3.664 39.968 10.832l201.152 116.064h217.072c33.152 0 60.128 26.992 60.128 60.144v99.872l75.296 43.456c38.096 22.176 51.296 71.392 29.328 109.84zM812.688 409.536l-6.88 14.288c-0.336 0.72-0.72 1.424-1.104 2.112-13.952 24.192-35.872 41.248-61.472 49.136l-54.624 102.448c-19.696 33.76-54.72 53.936-93.696 53.936s-73.856-20.176-94.112-54.992l-142.256-266.208c-9.824 3.696-20.176 6.304-30.96 7.552-23.056 41.072-66.848 67.52-115.024 67.52h-1.312v101.232c11.36-2.448 22.912-4.032 34.576-4.032 91.008 0 165.056 74.064 165.056 165.088 0 21.584-4.384 42.896-12.496 62.672h414.32v-300.752zM444.176 185.696v1.264c0 33.152-12.4 63.408-32.688 86.592l145.168 271.728c8.096 13.872 22.384 22.176 38.24 22.176 15.968 0 30.32-8.304 37.824-21.104l39.248-73.648c-22.72-8.784-42.176-25.2-55.344-48.080l-123.184-238.928h-49.248zM657.648 834.96c3.76 2.192 8.112 2.8 12.288 1.664 4.224-1.12 7.76-3.856 9.984-7.68l31.552-54.624h-158.944l105.136 60.656zM324.976 710.304c13.984-17.744 21.888-39.952 21.888-62.672 0-55.744-45.328-101.088-101.056-101.088-11.792 0-23.472 2.288-34.576 6.336v157.424h113.744zM96.56 505.472c0.672 2.448 2.528 7.024 7.68 10l43.008 24.864v-132.352l-49.040 85.040c-2.96 5.104-2.304 9.984-1.648 12.448zM211.248 321.328h1.312c28.672 0 54.4-18.144 64-45.12 0.048-0.112 0.128-0.208 0.176-0.32 1.104-3.040 2.64-5.856 4.576-8.384 0.096-0.112 0.192-0.224 0.272-0.336 5.856-7.488 14.88-12.4 25.12-12.4h5.632c37.408 0 67.84-30.4 67.84-67.792v-1.264h-168.944v135.632zM366.224 60.992c-4.976-2.88-9.744-2.256-12.144-1.616-2.464 0.64-7.040 2.512-10.032 7.68l-31.552 54.624h158.944l-105.2-60.704zM565.44 185.696l107.344 208.272c7.968 13.824 22.256 22.080 38.24 22.080 15.632 0 29.648-7.888 37.696-21.184l63.968-132.944v-76.224h-247.248zM919.904 380.544l-43.2-24.928v132.576l49.12-85.040c4.528-7.92 1.824-18.096-5.92-22.592z" /> -<glyph unicode="" glyph-name="image-showcase" d="M320 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 640h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 544h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM448 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM928 800h-64v32c0 35.296-28.704 64-64 64h-576c-35.296 0-64-28.704-64-64v-32h-64c-35.296 0-64-28.704-64-64v-576c0-35.296 28.704-64 64-64h64v-32c0-35.296 28.704-64 64-64h576c35.296 0 64 28.704 64 64v32h64c35.296 0 64 28.704 64 64v576c0 35.296-28.704 64-64 64zM928 736v-448h-64v448h64zM457.616 256h-227.872l120.64 193.024 107.248-193.024zM530.832 256l-34.704 62.48 45.792 68.688 74.96-131.168h-86.032zM690.56 256l-118.784 207.872c-5.504 9.632-15.6 15.712-26.688 16.112-11.184 0.672-21.584-5.008-27.712-14.24l-56.224-84.336-81.184 146.128c-5.504 9.888-15.824 16.16-27.136 16.432-11.52 0.768-21.968-5.44-27.968-15.024l-100.864-161.376v336.416h576v-448h-109.44zM224 832h576v-64h-576v64zM160 736v-448h-64v448h64zM96 160v64h64v-64h-64zM800 64h-576v128h576v-128zM864 160v64h64v-64h-64z" /> -<glyph unicode="" glyph-name="image-slider" d="M192 320h640c17.664 0 32 14.336 32 32v512c0 17.664-14.336 32-32 32h-640c-17.664 0-32-14.336-32-32v-512c0-17.664 14.336-32 32-32zM553.376 617.376l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-9.376 9.376 9.376 9.376c6 6 9.376 14.144 9.376 22.624v29.424l108.016-86.4c5.776-4.64 12.864-7.008 19.984-7.008 4.88 0 9.776 1.104 14.32 3.376l17.68 8.848v-76.224h-576v108.224l81.68-40.848c8.992-4.496 19.632-4.496 28.624 0l49.68 24.848 49.68-24.848c11.152-5.568 24.56-4.176 34.304 3.648l108.016 86.4v-16.176l-22.624-22.624c-12.496-12.496-12.496-32.752 0-45.248zM224 480h274.816c-97.68-37.392-165.424-80.192-188.832-96h-85.984v96zM439.792 384c83.2 40.752 211.392 89.008 360.208 95.248v-95.248h-360.208zM800 832v-140.224l-28-14-144.016 115.2c-0.192 0.16-0.448 0.208-0.656 0.352-2.512 1.92-5.296 3.472-8.336 4.592-0.496 0.176-0.992 0.304-1.488 0.464-3.024 0.944-6.176 1.6-9.52 1.6s-6.496-0.656-9.52-1.6c-0.496-0.16-0.992-0.272-1.488-0.464-3.024-1.12-5.808-2.672-8.336-4.592-0.208-0.16-0.448-0.192-0.656-0.352l-144.016-115.2-45.68 22.848c-8.992 4.496-19.632 4.496-28.624 0l-49.68-24.848-96 48v108.224h576zM73.376 553.376c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-9.376 9.376 9.376 9.376c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-32-32c-12.496-12.496-12.496-32.752 0-45.248l32-32zM905.376 553.376c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l32 32c12.496 12.496 12.496 32.752 0 45.248l-32 32c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l9.376-9.376-9.376-9.376c-12.496-12.496-12.496-32.752 0-45.248zM960 160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c0 17.664-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32h144v-64h-144c-17.664 0-32-14.336-32-32s14.336-32 32-32h320c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-144v64h144zM272 96v64h112v-64h-112zM448 64v128h128v-128h-128zM752 96h-112v64h112v-64zM320 736h2c17.664 0 32 14.336 32 32s-14.336 32-32 32h-2c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="image-stack-info" d="M927.744 383.572c6.649 19.692 10.256 40.77 10.256 62.678 0 108.29-88.102 196.392-196.392 196.392-42.796 0-82.433-13.769-114.732-37.098-33.303 24.029-73.467 37.098-114.876 37.098-42.796 0-82.433-13.769-114.732-37.098-33.303 24.029-73.467 37.098-114.876 37.098-108.29 0-196.394-88.102-196.394-196.392s88.102-196.394 196.394-196.394c41.409 0 81.573 13.068 114.876 37.098 32.299-23.33 71.936-37.098 114.732-37.098 41.287 0 81.549 13.122 114.842 37.123 32.305-23.344 71.953-37.123 114.768-37.123 85.707 0 158.752 55.19 185.5 131.892 0.24 0.601 0.455 1.208 0.637 1.824zM895.086 446.249c0-5.697-0.335-11.314-0.944-16.851l-70.293 60.925c-8.204 7.11-20.426 6.974-28.468-0.319l-75.862-68.792-20.161 25.706c-0.551 0.703-1.144 1.369-1.779 1.996-10.949 10.855-28.726 10.815-39.627-0.086-0.076-0.076-0.152-0.152-0.226-0.228l-58.296-60.063c-7.264 17.829-11.302 37.303-11.302 57.711 0 84.627 68.85 153.476 153.478 153.476s153.476-68.85 153.476-153.476zM128.914 446.249c0 84.627 68.85 153.476 153.478 153.476 29.281 0 57.745-8.388 82.176-23.883-30.457-34.608-48.96-79.978-48.96-129.593s18.504-94.986 48.96-129.595c-24.43-15.496-52.897-23.883-82.176-23.883-84.627 0-153.478 68.85-153.478 153.478zM358.522 446.249c0 84.627 68.85 153.476 153.478 153.476 29.279 0 57.745-8.388 82.176-23.883-30.457-34.608-48.96-79.978-48.96-129.593s18.512-95.004 48.98-129.615c-24.44-15.488-52.994-23.863-82.193-23.863-84.627 0-153.478 68.85-153.478 153.478zM741.608 292.773c-48.296 0-91.427 22.446-119.582 57.428l54.559 56.212 54.953-70.071c4.234-5.397 10.533-8.218 16.901-8.218 4.631 0 9.298 1.495 13.226 4.575 9.326 7.314 10.957 20.801 3.643 30.127l-19.24 24.534 64.047 58.077 71.488-61.963c-24.045-53.406-77.73-90.701-139.997-90.701zM765.036 532.070c0-24.245-19.655-43.9-43.9-43.9s-43.9 19.655-43.9 43.9c0 24.245 19.655 43.9 43.9 43.9s43.9-19.655 43.9-43.9z" /> -<glyph unicode="" glyph-name="instagram" d="M747.552 771.104c52.688 0 95.552-42.864 95.552-95.552v-471.104c0-52.688-42.864-95.552-95.552-95.552h-471.104c-52.688 0-95.552 42.864-95.552 95.552v471.104c0 52.688 42.864 95.552 95.552 95.552h471.104zM747.552 866.672h-471.104c-105.552 0-191.104-85.568-191.104-191.104v-471.104c0-105.552 85.568-191.104 191.104-191.104h471.104c105.552 0 191.104 85.568 191.104 191.104v471.104c0 105.552-85.568 191.104-191.104 191.104v0zM508.544 586.048c79.92 0 144.928-65.024 144.928-144.928s-65.024-144.928-144.928-144.928-144.928 65.024-144.928 144.928 65.024 144.928 144.928 144.928zM508.544 681.6c-132.816 0-240.496-107.664-240.496-240.496s107.664-240.496 240.496-240.496 240.496 107.664 240.496 240.496-107.664 240.496-240.496 240.496v0zM749.040 724.448c-26.176 0-47.408-21.232-47.408-47.408s21.232-47.408 47.408-47.408 47.408 21.232 47.408 47.408-21.232 47.408-47.408 47.408v0z" /> -<glyph unicode="" glyph-name="instagram-feed" d="M854.672 832.164h-685.34c-22.88 0-41.5-18.62-41.5-41.5v-685.34c0-22.88 18.62-41.5 41.5-41.5h685.34c22.88 0 41.5 18.62 41.5 41.5v685.34c0 22.88-18.62 41.5-41.5 41.5zM853.172 106.824h-682.34v682.34h682.34v-682.34zM304.482 698.528c0-21.070-16.277-38.15-36.356-38.15s-36.356 17.080-36.356 38.15c0 21.070 16.277 38.15 36.356 38.15s36.356-17.080 36.356-38.15zM583.564 677.028h-240.944c-11.874 0-21.5 9.624-21.5 21.5s9.626 21.5 21.5 21.5h240.944c11.874 0 21.5-9.624 21.5-21.5s-9.626-21.5-21.5-21.5zM755.552 617.664h-470.74c-25.38 0-45.96-20.58-45.96-45.96v-334.74c0-25.38 20.58-45.96 45.96-45.96h470.74c25.4 0 45.96 20.58 45.96 45.96v334.74c0 25.38-20.56 45.96-45.96 45.96zM611.132 390.084c-0.42-0.54-0.9-1.040-1.38-1.54l-87.84-92.18c-5.16-5.42-13.54-5.42-18.7 0l-87.86 92.2c-22.38 23.5-25.020 61.74-4.1 86.7 22.92 27.32 62.62 28.32 86.76 2.98 3.4-3.56 6.3-7.44 8.72-11.58 2.52-4.34 8.42-4.34 11.060-0.060 2.24 3.6 4.86 7.020 7.88 10.18 0.48 0.5 0.96 1 1.46 1.44 23.3 22.92 59.88 22.42 82.62-1.44 22.72-23.86 23.22-62.26 1.38-86.7zM785.272 250.064c0-18.72-14.46-33.9-32.28-33.9h-89.9l122.18 128.24v-94.34z" /> -<glyph unicode="" glyph-name="interactive-link" d="M342.248 597.342h339.5c23.76 0 43 19.24 43 43v42.44c0 23.74-19.24 43-43 43h-339.5c-23.76 0-43-19.26-43-43v-42.44c0-23.76 19.24-43 43-43zM342.248 682.782h339.5v-42.44h-339.5v42.44zM809.448 576.082h85.96c23.74 0 43 19.24 43 43v85.96c0 23.74-19.26 43-43 43h-85.96c-23.76 0-43-19.26-43-43v-85.96c0-23.76 19.24-43 43-43zM809.448 705.042h85.96v-85.96h-85.96v85.96zM682.408 300.822h-339.52c-23.74 0-43-19.26-43-43v-44.16c0-23.74 19.26-43 43-43h339.52c23.74 0 43 19.26 43 43v44.16c0 23.74-19.26 43-43 43zM682.408 213.662h-339.52v44.16h339.52v-44.16zM895.988 322.222h-85.96c-23.74 0-43-19.26-43-43v-85.96c0-23.74 19.26-43 43-43h85.96c23.74 0 43 19.26 43 43v85.96c0 23.74-19.26 43-43 43zM895.988 193.262h-85.96v85.96h85.96v-85.96zM342.24 514.442h340.094c23.748 0 43-19.252 43-43v-44.442c0-23.748-19.252-43-43-43h-340.094c-23.748 0-43 19.252-43 43v44.442c0 23.748 19.252 43 43 43zM214.608 534.702h-85.96c-23.74 0-43-19.26-43-43v-85.958c0-23.76 19.26-43 43-43h85.96c23.76 0 43 19.24 43 43v85.958c0 23.74-19.24 43-43 43zM128.008 451.142v25.060c0 8 6.46 14.46 14.44 14.46h27.64l-42.080-39.52z" /> -<glyph unicode="" glyph-name="invoice" d="M896.896 575.952c-0.224 6.288-2.272 12.272-6.016 17.472-0.032 0.048-0.080 0.096-0.112 0.144-0.96 1.312-1.712 2.736-2.896 3.904l-106.624 106.624c-0.032 135.936-0.096 137.264-0.208 138.656-3.232 47.808-43.328 85.264-91.28 85.264h-492.704c-33.696 0-61.104-27.408-61.104-61.104v-706.176c0-47.088 36.736-87.024 83.536-90.912 0.576-0.048 2.032-0.080 4.144-0.128 1.168-0.128 2.336-0.192 3.552-0.192h24.768v-10.016c0-50.432 41.040-91.488 91.488-91.488h462.336c50.432 0 91.488 41.040 91.488 91.488v512.928c0 1.184-0.24 2.352-0.352 3.52zM691.568 703.248l96.416-96.416h-95.152c-0.704 0-1.264 0.576-1.264 1.264v95.152zM251.936 750.592v-617.056c-12 0.016-25.264 0.048-27.072 0.064-13.968 1.152-24.912 13.072-24.912 27.12v703.28h489.808c14.4 0 26.464-11.232 27.376-24.080 0.032-3.104 0.064-37.392 0.080-71.808l-35.040 35.040c-1.136 1.136-2.512 1.856-3.76 2.784-0.144 0.096-0.272 0.208-0.416 0.32-5.136 3.68-11.040 5.68-17.232 5.92-1.2 0.112-2.384 0.352-3.6 0.352h-343.28c-34.16 0-61.936-27.776-61.936-61.936zM805.76 32h-462.336c-15.152 0-27.488 12.336-27.488 27.488v689.024h311.632v-140.416c0-35.984 29.28-65.264 65.264-65.264h140.416v-483.344c0-15.152-12.336-27.488-27.488-27.488zM574.24 366.096c0-48.512 39.488-88 88-88h56.224c48.512 0 88 39.488 88 88v17.936c0 48.528-39.488 88-88 88h-56.224c-48.512 0-88-39.472-88-88v-17.936zM638.24 384.032c0 13.232 10.768 24 24 24h56.224c13.232 0 24-10.768 24-24v-17.936c0-13.232-10.768-24-24-24h-56.224c-13.232 0-24 10.768-24 24v17.936zM384.576 644.144h160.048c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160.048c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384.576 535.248h95.184c17.664 0 32 14.336 32 32s-14.336 32-32 32h-95.184c-17.664 0-32-14.336-32-32s14.336-32 32-32zM774.464 135.2h-389.888c-17.664 0-32-14.336-32-32s14.336-32 32-32h389.888c17.664 0 32 14.336 32 32s-14.336 32-32 32zM774.464 244.752h-168.24c-17.664 0-32-14.336-32-32s14.336-32 32-32h168.24c17.664 0 32 14.336 32 32s-14.336 32-32 32zM397.472 207.024c0-17.664 14.336-32 32-32s32 14.336 32 32v12c25.744 11.36 46.992 35.584 46.992 66.608 0 50.912-41.424 70.512-66.176 82.256-22.528 10.672-26.336 14.080-26.336 18.912 0 2.288 0 5.408 6.672 8.16 10.176 4.208 22.336 1.584 25.92-2.032 12.496-12.496 32.768-12.48 45.264 0 12.496 12.496 12.496 32.768 0 45.264-8.688 8.704-19.952 15.008-32.336 18.784v9.056c0 17.664-14.336 32-32 32s-32-14.336-32-32v-12.24c-28.512-12.096-45.536-37.056-45.536-66.976 0-46.944 37.888-64.88 62.96-76.752 25.872-12.272 29.568-16.224 29.568-24.4 0-3.040-8.544-9.696-14.992-9.696-11.232 0-29.264 7.808-34.304 11.84-12.528 12.16-32.512 12.032-44.896-0.352-12.496-12.496-12.496-32.752 0-45.248 9.248-9.248 27.584-19.104 47.184-24.96v-10.176z" /> -<glyph unicode="" glyph-name="invoice-dollar" d="M960 458.368h-161.664v372.72c0 52.848-43.008 95.84-95.84 95.84h-574.656c-52.848 0-95.84-43.008-95.84-95.84v-766.192c0-52.848 42.992-95.84 95.84-95.84h735.232s0.032 0 0.064 0c0.032 0 0.080 0 0.112 0 71.008 0 128.752 57.824 128.752 128.928v328.384c0 17.664-14.336 32-32 32zM96 64.912v766.176c0 17.856 13.984 31.84 31.84 31.84h574.64c17.568 0 31.84-14.288 31.84-31.84v-733.104c0-23.68 6.528-45.824 17.728-64.928h-624.208c-17.856 0-31.84 13.984-31.84 31.84zM928 97.984c0-35.792-29.040-64.928-64.752-64.928s-64.928 29.12-64.928 64.928v296.384h129.664v-296.384zM185.104 511.84c0-17.664 14.336-32 32-32s32 14.336 32 32v2.784c33.6 12.88 57.552 45.328 57.552 83.328 0 49.376-40.176 89.552-89.552 89.552-13.968 0-25.344 11.456-25.344 25.552 0 13.968 11.376 25.344 25.344 25.344 8.864 0 14.736-4.016 18.112-7.392 12.496-12.496 32.752-12.496 45.248 0s12.496 32.752 0 45.248c-9.024 9.024-19.744 15.68-31.36 20.096v2.8c0 17.664-14.336 32-32 32s-32-14.336-32-32v-2.784c-33.488-12.912-57.344-45.344-57.344-83.312 0-49.376 40.080-89.552 89.344-89.552 14.096 0 25.552-11.456 25.552-25.552 0-13.968-11.456-25.328-25.552-25.328-6.88 0-13.168 2.56-17.744 7.2-12.384 12.608-32.64 12.736-45.248 0.368-12.608-12.384-12.768-32.656-0.368-45.248 8.976-9.12 19.696-15.84 31.376-20.288v-2.816zM383.232 735.232h95.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-95.776c-17.664 0-32-14.336-32-32s14.336-32 32-32zM383.232 639.472h31.92c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.92c-17.664 0-32-14.336-32-32s14.336-32 32-32zM638.624 575.76h-255.392c-17.664 0-32-14.336-32-32s14.336-32 32-32h255.392c17.664 0 32 14.336 32 32s-14.336 32-32 32zM415.152 416.16h-223.456c-17.664 0-32-14.336-32-32s14.336-32 32-32h223.456c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 416.16h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM191.696 224.448h63.84c17.664 0 32 14.336 32 32s-14.336 32-32 32h-63.84c-17.664 0-32-14.336-32-32s14.336-32 32-32zM351.312 160.768h-159.616c-17.664 0-32-14.336-32-32s14.336-32 32-32h159.616c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 288.448h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 160.768h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM478.944 671.472c0-17.664 14.336-32 32-32h31.92c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.92c-17.664 0-32-14.336-32-32zM542.864 416.16h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="item-list" d="M222.606 831.166c-52.258 0-94.772-42.514-94.772-94.772s42.514-94.774 94.772-94.774 94.772 42.516 94.772 94.774-42.514 94.772-94.772 94.772zM222.606 684.62c-28.548 0-51.772 23.224-51.772 51.774s23.224 51.772 51.772 51.772 51.772-23.224 51.772-51.772-23.224-51.774-51.772-51.774zM252.606 736.394c0-16.569-13.431-30-30-30s-30 13.431-30 30c0 16.569 13.431 30 30 30s30-13.431 30-30zM222.606 542.774c-52.258 0-94.772-42.516-94.772-94.774s42.514-94.772 94.772-94.772 94.772 42.514 94.772 94.772-42.514 94.774-94.772 94.774zM222.606 396.228c-28.548 0-51.772 23.224-51.772 51.772s23.224 51.774 51.772 51.774 51.772-23.224 51.772-51.774-23.224-51.772-51.772-51.772zM252.606 448c0-16.569-13.431-30-30-30s-30 13.431-30 30c0 16.569 13.431 30 30 30s30-13.431 30-30zM222.606 252.378c-52.258 0-94.772-42.516-94.772-94.774s42.514-94.772 94.772-94.772 94.772 42.514 94.772 94.772-42.514 94.774-94.772 94.774zM222.606 105.834c-28.548 0-51.772 23.224-51.772 51.772s23.224 51.774 51.772 51.774 51.772-23.224 51.772-51.774-23.224-51.772-51.772-51.772zM252.606 157.606c0-16.569-13.431-30-30-30s-30 13.431-30 30c0 16.569 13.431 30 30 30s30-13.431 30-30zM874.668 469.5h-474.722c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h474.722c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM874.668 179.106h-474.722c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h474.722c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM399.944 714.894h474.722c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-474.722c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5z" /> -<glyph unicode="" glyph-name="joystick" d="M725.675 276.992h-170.667v173.995c97.28 19.968 170.667 106.24 170.667 209.323 0 117.803-95.829 213.675-213.675 213.675s-213.675-95.829-213.675-213.675c0-103.083 73.387-189.355 170.667-209.323v-173.995h-41.984v41.984c0 23.765-19.243 43.008-43.008 43.008h-128c-23.765 0-43.008-19.243-43.008-43.008v-74.709c-26.155-23.467-42.667-57.472-42.667-95.317 0-70.571 57.429-128 128-128h427.349c70.571 0 128 57.429 128 128s-57.429 128-128 128zM384.341 660.352c0 70.4 57.259 127.659 127.659 127.659s127.659-57.259 127.659-127.659-57.259-127.659-127.659-127.659-127.659 57.259-127.659 127.659zM725.675 107.008h-427.349c-23.168 0-41.984 18.859-41.984 41.984s18.859 41.984 41.984 41.984h427.349c23.168 0 41.984-18.859 41.984-41.984s-18.859-41.984-41.984-41.984z" /> -<glyph unicode="" glyph-name="keep" d="M761.515 449.408l-74.837 116.395v223.445c18.859 4.523 32.939 21.504 32.939 41.771 0 23.765-19.243 43.008-43.008 43.008h-23.765c-2.944 0.64-6.016 0.981-9.173 0.981h-263.296c-3.157 0-6.229-0.341-9.173-0.981h-23.765c-23.765 0-43.008-19.243-43.008-43.008 0-20.267 14.037-37.205 32.896-41.771v-223.445l-74.837-116.395c-8.491-13.227-9.131-30.037-1.579-43.861s22.016-22.4 37.76-22.4h170.325v-320.171c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v320.171h170.325c15.744 0 30.208 8.576 37.76 22.4s6.912 30.635-1.579 43.861zM377.429 469.163l39.083 60.757c4.48 6.955 6.827 15.019 6.827 23.253v234.837h177.323v-234.837c0-8.235 2.389-16.341 6.827-23.253l39.083-60.757h-269.099z" /> -<glyph unicode="" glyph-name="keyboard" d="M827.989 745.557h-631.979c-60.416 0-109.525-49.152-109.525-109.525v-375.979c0-60.416 49.152-109.525 109.525-109.525h631.979c60.416 0 109.525 49.152 109.525 109.525v375.936c0 60.416-49.152 109.525-109.525 109.525zM854.443 260.011c0-14.592-11.861-26.453-26.453-26.453h-631.979c-14.592 0-26.453 11.861-26.453 26.453v375.979c0 14.592 11.861 26.453 26.453 26.453h631.979c14.592 0 26.453-11.861 26.453-26.453v-375.979zM725.333 361.557h-426.667c-22.955 0-41.557-18.603-41.557-41.557s18.603-41.557 41.557-41.557h426.667c22.955 0 41.557 18.603 41.557 41.557s-18.603 41.557-41.557 41.557zM213.333 490.667h85.333v-88.875h-85.333v88.875zM341.333 490.667h85.333v-88.875h-85.333v88.875zM469.333 490.667h85.333v-88.875h-85.333v88.875zM597.333 490.667h85.333v-88.875h-85.333v88.875zM725.333 490.667h85.333v-88.875h-85.333v88.875zM213.333 618.667h85.333v-85.333h-85.333v85.333zM341.333 618.667h85.333v-85.333h-85.333v85.333zM469.333 618.667h85.333v-85.333h-85.333v85.333zM597.333 618.667h85.333v-85.333h-85.333v85.333zM725.333 618.667h85.333v-85.333h-85.333v85.333z" /> -<glyph unicode="" glyph-name="key-left" d="M649.584 928.352c-188.832 0-342.432-153.616-342.432-342.416 0-21.184 2.208-41.84 5.904-61.984l-87.616-87.472c-8.592-8.56-11.6-21.264-7.744-32.784l5.28-15.808-181.584-181.584c-6-6-9.376-14.144-9.376-22.624v-184.048c0-2.096 0.224-4.192 0.64-6.272 0.192-0.96 0.544-1.84 0.816-2.768 0.32-1.072 0.56-2.16 0.992-3.2 0.448-1.104 1.072-2.096 1.648-3.136 0.432-0.784 0.784-1.616 1.296-2.368 2.352-3.52 5.36-6.528 8.88-8.88 0.752-0.512 1.584-0.848 2.368-1.296 1.040-0.576 2.032-1.2 3.136-1.648 1.040-0.432 2.128-0.672 3.2-0.992 0.928-0.272 1.808-0.624 2.768-0.816 2.064-0.416 4.16-0.624 6.272-0.624h184.048c8.48 0 16.624 3.376 22.624 9.376l23.024 23.024c6 6 9.376 14.144 9.376 22.624v32.688l4.304 4.304h32.688c17.664 0 32 14.336 32 32v32.768l45.776 45.68 50.224-16.784c11.536-3.84 24.192-0.832 32.768 7.728l88.128 88.128c19.712-3.536 39.904-5.696 60.624-5.696 188.816 0 342.416 153.616 342.416 342.432s-153.648 342.448-342.448 342.448zM469.568 220.32l-50.208 16.768c-11.536 3.84-24.176 0.864-32.752-7.712l-69.104-68.944c-6.048-6-9.44-14.176-9.44-22.688v-14.080h-13.936c-8.48 0-16.624-3.376-22.624-9.36l-23.040-23.024c-6-6-9.376-14.16-9.376-22.64v-32.704l-4.288-4.288h-93.552l48.416 48.416c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-48.416-48.416v93.552l152.384 152.384c5.984-6.144 14.032-9.984 22.688-9.984 3.36 0 6.768 0.544 10.144 1.664 16.752 5.616 25.808 23.728 20.224 40.496l-16.768 50.192 48.944 48.88c34.896-83.28 101.776-149.888 185.2-184.496l-49.264-49.248zM649.584 307.504c-19.584 0-38.672 2.080-57.136 5.952-3.504 1.632-7.232 2.56-11.008 2.832-98.688 24.96-176.368 102.576-201.44 201.216-0.352 3.168-1.088 6.272-2.384 9.232-4.16 19.104-6.48 38.88-6.48 59.2 0 153.52 124.912 278.416 278.432 278.416s278.416-124.912 278.416-278.416-124.912-278.432-278.416-278.432zM506.912 522.208c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l79.664-79.664c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-79.664 79.664zM799.904 735.584c-83.472 83.376-219.328 83.344-302.8 0-12.496-12.48-12.528-32.736-0.032-45.248 12.464-12.512 32.72-12.512 45.248-0.032 58.528 58.448 153.792 58.464 212.336 0.032 58.448-58.544 58.448-153.808 0-212.352-12.496-12.512-12.464-32.768 0.032-45.248 6.256-6.256 14.416-9.36 22.608-9.36s16.384 3.12 22.64 9.392c83.344 83.488 83.344 219.328-0.032 302.832z" /> -<glyph unicode="" glyph-name="kite" d="M521.941 257.323v0s0 0 0.043 0c0.981 0.256 1.963 0.555 2.944 0.853 0.299 0.085 0.597 0.213 0.853 0.299 0.768 0.256 1.536 0.555 2.261 0.896 0.213 0.085 0.469 0.171 0.683 0.299 0.896 0.384 1.792 0.811 2.645 1.28 0.299 0.171 0.597 0.341 0.896 0.512 0.597 0.341 1.237 0.725 1.792 1.067 0.299 0.171 0.597 0.384 0.896 0.555 0.811 0.555 1.621 1.109 2.389 1.707 0.128 0.085 0.256 0.213 0.384 0.341 0.683 0.512 1.323 1.067 1.963 1.664 0.256 0.213 0.469 0.427 0.725 0.64 0.555 0.512 1.109 1.067 1.621 1.621 0.171 0.171 0.384 0.384 0.555 0.555 0.683 0.725 1.323 1.493 1.963 2.304 0.128 0.171 0.256 0.341 0.341 0.469 0.341 0.469 0.725 0.939 1.024 1.408l266.667 380.971s0.171 0.256 0.256 0.341c0.128 0.213 0.256 0.427 0.427 0.597 0.597 0.939 1.195 1.877 1.707 2.859 0.128 0.213 0.213 0.469 0.341 0.683 0.469 0.939 0.939 1.877 1.365 2.816 0.128 0.256 0.213 0.555 0.341 0.811 0.384 0.939 0.725 1.877 1.024 2.816 0.085 0.256 0.171 0.555 0.256 0.811 0.299 1.067 0.597 2.091 0.811 3.2 0.043 0.213 0.128 0.469 0.171 0.683 0.256 1.195 0.427 2.347 0.555 3.541 0 0.171 0.043 0.341 0.043 0.512 0.128 1.28 0.171 2.517 0.213 3.797 0 0.085 0 0.171 0 0.256 0 0.043 0 0.085 0 0.128 0 1.237-0.085 2.517-0.171 3.755 0 0.171 0 0.384-0.043 0.555-0.128 1.152-0.299 2.261-0.512 3.413-0.043 0.299-0.128 0.555-0.171 0.853 0 0.128-0.043 0.213-0.085 0.341-0.085 0.299-0.171 0.597-0.256 0.939-0.256 0.981-0.512 2.005-0.811 2.944-0.128 0.384-0.299 0.811-0.427 1.195-0.341 0.939-0.683 1.835-1.067 2.731-0.213 0.427-0.427 0.853-0.597 1.28-0.384 0.811-0.811 1.621-1.28 2.432-0.256 0.469-0.555 0.896-0.811 1.365-0.427 0.725-0.896 1.408-1.408 2.091-0.341 0.469-0.683 0.939-1.024 1.408-0.469 0.64-0.981 1.237-1.493 1.835-0.384 0.469-0.811 0.896-1.237 1.365-0.555 0.555-1.109 1.109-1.664 1.664-0.427 0.427-0.896 0.811-1.323 1.195-0.64 0.555-1.28 1.024-1.92 1.536-0.427 0.341-0.896 0.683-1.323 0.981-0.768 0.512-1.536 1.024-2.304 1.493-0.299 0.171-0.597 0.384-0.896 0.555l-266.667 152.363s-0.256 0.128-0.384 0.213c-0.341 0.213-0.725 0.384-1.109 0.597-0.725 0.384-1.451 0.725-2.176 1.067-0.341 0.171-0.725 0.341-1.067 0.469-1.024 0.427-2.005 0.768-3.029 1.109-0.384 0.128-0.768 0.256-1.195 0.341-0.853 0.256-1.707 0.469-2.56 0.683-0.299 0.085-0.597 0.171-0.939 0.213-1.152 0.213-2.304 0.384-3.456 0.512-0.299 0-0.597 0.043-0.939 0.085-2.475 0.213-4.992 0.213-7.467 0-0.299 0-0.597-0.043-0.939-0.085-1.152-0.128-2.304-0.299-3.456-0.512-0.299-0.043-0.597-0.128-0.939-0.213-0.853-0.213-1.707-0.427-2.56-0.683-0.384-0.128-0.768-0.213-1.195-0.341-1.024-0.341-2.048-0.683-3.029-1.109-0.384-0.171-0.725-0.341-1.067-0.469-0.725-0.341-1.451-0.683-2.176-1.067-0.384-0.171-0.725-0.384-1.109-0.597-0.128-0.085-0.256-0.128-0.384-0.213l-266.667-152.363c-0.299-0.171-0.597-0.384-0.896-0.555-0.768-0.469-1.579-0.981-2.304-1.493-0.469-0.341-0.896-0.683-1.323-0.981-0.64-0.512-1.28-0.981-1.92-1.536-0.469-0.384-0.896-0.811-1.323-1.195-0.555-0.555-1.109-1.067-1.664-1.664-0.427-0.427-0.811-0.896-1.237-1.365-0.512-0.597-1.024-1.195-1.493-1.835-0.341-0.469-0.725-0.939-1.024-1.408-0.469-0.683-0.939-1.408-1.408-2.091-0.299-0.469-0.555-0.896-0.811-1.365-0.469-0.768-0.853-1.579-1.28-2.432-0.213-0.427-0.427-0.853-0.597-1.28-0.384-0.896-0.725-1.792-1.067-2.731-0.128-0.384-0.299-0.768-0.427-1.195-0.299-0.981-0.597-1.963-0.811-2.944-0.085-0.299-0.171-0.597-0.256-0.939 0-0.128-0.043-0.213-0.085-0.341-0.043-0.299-0.128-0.555-0.171-0.853-0.213-1.152-0.384-2.261-0.512-3.413 0-0.171 0-0.384-0.043-0.555-0.128-1.237-0.171-2.517-0.171-3.755 0-0.043 0-0.085 0-0.128 0-0.085 0-0.171 0-0.256 0-1.28 0.085-2.56 0.213-3.797 0-0.171 0.043-0.341 0.043-0.512 0.128-1.195 0.299-2.389 0.555-3.541 0.043-0.213 0.085-0.469 0.171-0.683 0.213-1.067 0.512-2.133 0.811-3.2 0.085-0.299 0.171-0.555 0.256-0.811 0.299-0.939 0.64-1.92 1.024-2.816 0.128-0.256 0.213-0.555 0.341-0.811 0.427-0.939 0.853-1.877 1.365-2.816 0.128-0.213 0.213-0.469 0.341-0.683 0.512-0.981 1.109-1.92 1.707-2.859 0.128-0.213 0.256-0.427 0.427-0.597 0.085-0.128 0.171-0.256 0.256-0.341l231.936-331.349-143.872-35.584c-26.069-4.992-44.672-27.349-44.672-54.187 0-27.221 19.2-49.877 45.909-54.4l232.704-46.635-79.061-30.933c-21.376-8.363-31.915-32.469-23.552-53.803 6.4-16.384 22.101-26.411 38.699-26.411 5.035 0 10.155 0.939 15.104 2.859l164.48 64.341c24.064 7.552 39.723 29.909 38.4 55.467-1.365 26.197-20.096 47.189-45.824 51.584l-203.776 40.832 84.181 20.821s0 0 0 0zM553.557 759.424l68.693-39.253h-68.693v39.253zM470.443 720.171h-68.693l68.693 39.253v-39.253zM470.443 637.056v-207.616l-145.323 207.616h145.323zM553.557 637.056h145.323l-145.323-207.616v207.616z" /> -<glyph unicode="" glyph-name="lab-research" d="M768 873.984h-512c-23.765 0-43.008-19.243-43.008-43.008v-170.667c0-23.765 19.243-43.008 43.008-43.008h42.325v-383.659c0-117.803 95.829-213.675 213.675-213.675s213.675 95.829 213.675 213.675v383.659h42.325c23.765 0 43.008 19.243 43.008 43.008v170.709c0 23.765-19.243 43.008-43.008 43.008zM299.008 788.011h425.984v-84.651h-425.984v84.651zM639.659 575.317h-127.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h127.659v-63.317h-170.325c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h170.325v-63.317h-127.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h120.192c-17.707-49.28-64.896-84.651-120.192-84.651-70.4 0-127.659 57.259-127.659 127.659v383.659h255.317v-41.984z" /> -<glyph unicode="" glyph-name="labs" d="M481.621 151.467c-23.424-27.819-58.496-45.483-97.621-45.483-70.4 0-127.659 57.301-127.659 127.659v383.659h255.317v-42.027h-127.659c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h127.659v-51.541c24.704 19.029 54.059 32.341 86.016 38.016v56.363s0 0.085 0 0.128 0 0.085 0 0.128v84.864h42.325c23.723 0 43.008 19.243 43.008 43.008v170.667c0 23.723-19.243 43.008-43.008 43.008h-512c-23.723 0-43.008-19.243-43.008-43.008v-170.667c0-23.765 19.243-43.008 43.008-43.008h42.325v-383.659c0-117.803 95.829-213.675 213.675-213.675 67.157 0 127.147 31.104 166.315 79.701-26.539 12.117-49.963 29.867-68.693 51.797zM213.333 703.36h-42.325v84.651h425.984v-84.651h-383.659zM497.664 425.984h-156.331c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h101.76c10.496 33.28 29.525 62.805 54.571 86.016zM384 276.651c-23.723 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h71.424c-13.184 25.899-20.864 55.083-21.419 86.016h-49.963zM876.16 97.451l-107.691 107.691c12.373 22.315 19.413 47.957 19.413 75.264 0 85.845-69.589 155.477-155.477 155.477-11.947 0-23.595-1.323-34.731-3.883-18.816-4.309-36.309-11.989-51.84-22.443-12.885-8.661-24.405-19.2-34.176-31.189-9.344-11.52-17.109-24.405-22.869-38.315-7.637-18.347-11.861-38.485-11.861-59.605 0-1.237 0-2.517 0.043-3.755 0.725-31.488 10.837-60.629 27.605-84.821-0.128-0.384-0.299-0.811-0.427-1.195h1.237c17.067-24.149 40.875-43.221 68.693-54.443 18.005-7.296 37.675-11.307 58.283-11.307 27.307 0 52.949 7.040 75.264 19.413l15.659-15.701 91.989-91.989c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.379 12.587c16.811 16.768 16.811 44.032 0 60.8zM701.397 272.213c-3.755-31.787-29.013-57.088-60.8-60.8-2.688-0.299-5.419-0.469-8.192-0.469-12.8 0-24.832 3.499-35.157 9.6-20.48 12.075-34.304 34.389-34.304 59.904 0 25.643 13.995 48.128 34.731 60.16 10.24 5.888 22.101 9.301 34.731 9.301 38.315 0 69.461-31.147 69.461-69.461 0-2.773-0.171-5.504-0.469-8.192z" /> -<glyph unicode="" glyph-name="laptop" d="M986.784 190.208l-55.312 128.288c-6.992 16.224-25.776 23.696-42.048 16.704-16.224-6.992-23.712-25.824-16.704-42.048l55.792-127.52-832.512-0.752 55.152 127.168c7.024 16.208-0.416 35.056-16.624 42.096-16.224 7.040-35.072-0.416-42.096-16.624l-55.152-127.168c-8.528-19.68-6.608-42.144 5.168-60.064 11.76-17.936 31.6-28.64 53.040-28.64h833.008c21.424 0 41.248 10.688 53.008 28.592s13.744 40.336 5.264 60zM153.712 356.304h716.576c17.6 0 31.856 14.272 31.856 31.856v299.968c0 40.992-33.232 74.24-74.24 74.24h-631.824c-40.992 0-74.24-33.232-74.24-74.24v-299.968c0-17.6 14.256-31.856 31.856-31.856zM185.856 688.144c0 5.648 4.592 10.24 10.24 10.24h226.128c2.944-14.64 15.856-25.664 31.36-25.664h116.864c15.504 0 28.416 11.040 31.36 25.664h226.128c5.648 0 10.24-4.592 10.24-10.24v-267.824h-652.32v267.824z" /> -<glyph unicode="" glyph-name="leaderboard" d="M853.333 532.651h-180.992v255.701c0 23.765-19.243 43.008-43.008 43.008h-234.667c-23.765 0-43.008-19.243-43.008-43.008v-148.992h-180.992c-23.765 0-43.008-19.243-43.008-43.008v-448.043c0-23.765 19.243-43.008 43.008-43.008h224s0.341 0 0.555 0h233.6s0.341 0 0.555 0h224c23.765 0 43.008 19.243 43.008 43.008v341.333c0 23.765-19.243 43.008-43.008 43.008zM213.675 553.344h137.984v-362.027h-137.984v362.027zM437.675 596.352v148.992h148.651v-553.984h-148.651v404.992zM810.325 191.317h-137.984v255.317h137.984v-255.317z" /> -<glyph unicode="" glyph-name="leaf" d="M894.592 709.461c-1.749 5.888-12.203 36.821-47.787 66.432-44.203 36.779-106.624 55.467-185.472 55.467-69.632 0-140.501-13.611-204.928-39.381-76.416-30.549-138.667-75.691-185.003-134.272-41.259-52.096-68.48-113.579-80.896-182.656-12.757-71.040-9.771-150.528 8.832-236.416-18.133-35.84-28.971-78.507-28.971-132.949 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 102.571 46.080 140.544 129.707 209.451 75.093 61.867 168.491 138.837 258.176 292.224 11.989 20.48 5.077 46.848-15.403 58.837s-46.848 5.077-58.837-15.403c-81.963-140.16-168.832-211.755-238.635-269.269-20.949-17.28-41.173-33.963-59.861-51.371-11.435 111.147 11.051 203.136 67.328 274.219 82.347 103.979 220.587 141.013 322.517 141.013 79.701 0 118.528-23.168 136.619-41.045-1.152-0.981-2.261-1.963-3.413-2.944-26.24-22.613-55.979-48.299-78.123-98.688-23.211-52.864-34.048-123.989-34.048-223.915 0-55.509-16.597-184.576-170.325-184.576-68.864 0-93.099 27.776-94.123 28.971 0.597-0.725 0.896-1.152 0.896-1.152l-69.547-50.603c4.693-6.485 49.28-63.189 162.773-63.189 81.323 0 148.395 28.245 194.005 81.749 40.747 47.787 62.293 113.067 62.293 188.8 0 186.453 38.144 219.392 82.347 257.493 11.093 9.557 22.528 19.456 34.005 31.659 10.411 11.136 14.165 26.923 9.899 41.557z" /> -<glyph unicode="" glyph-name="lightblub" d="M512.688 928h-1.44c-193.68-0.368-351.248-158.288-351.248-352 0-73.584 23.76-146.88 66.912-206.384 30.4-42.064 61.088-103.408 61.088-145.616 0-17.664 14.336-32 32-32v-63.728c0-29.36 11.44-56.96 32.192-77.696l18.368-18.368c20.688-20.688 48.176-32.112 77.44-32.176v0c0-17.68 14.336-32.016 32-32.016h64c17.664 0 32 14.336 32 32v0c29.264 0.080 56.752 11.504 77.44 32.192l18.368 18.368c20.752 20.752 32.192 48.336 32.192 77.696v63.728c17.664 0 32 14.336 32 32 0 42.208 30.688 103.552 61.056 145.584 43.168 59.552 66.944 132.848 66.944 206.416 0 193.712-157.568 351.632-351.312 352zM640 128.272c0-12.272-4.768-23.776-13.44-32.448l-18.368-18.368c-8.672-8.672-20.192-13.44-32.448-13.44h-127.472c-12.272 0-23.776 4.768-32.448 13.44l-18.368 18.368c-8.672 8.672-13.44 20.192-13.44 32.448v63.728h256v-63.728zM416 480c0 17.648 14.352 32 32 32s32-14.352 32-32-14.352-32-32-32-32 14.352-32 32zM448 384c24.608 0 46.992 9.376 64 24.64 17.008-15.264 39.392-24.64 64-24.64 2.032 0 4.016 0.176 6.016 0.304-15.168-33.84-31.84-71.76-36.592-128.304h-66.88c-4.752 56.544-21.424 94.464-36.592 128.304 2-0.128 3.984-0.304 6.016-0.304zM576 448c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM745.216 407.104c-29.328-40.576-60.336-98.224-70.096-151.104h-65.392c4.416 42.896 17.28 72.192 30.896 102.608 15.424 34.416 31.36 70 31.36 121.392 0 52.944-43.056 96-96 96-24.608 0-46.992-9.376-64-24.64-17.008 15.264-39.392 24.64-64 24.64-52.944 0-96-43.056-96-96 0-51.392 15.936-86.976 31.36-121.392 13.632-30.416 26.496-59.712 30.896-102.608h-65.392c-9.76 52.896-40.768 110.528-70.128 151.136-35.312 48.704-54.752 108.672-54.752 168.864 0 158.496 128.928 287.68 287.312 288l0.688 32 0.624-32c158.448-0.32 287.376-129.504 287.376-288 0-60.192-19.44-120.16-54.784-168.896z" /> -<glyph unicode="" glyph-name="line-chart" d="M874.666 155.548h-643.438v654.12c0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-13.486h-38.896c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h38.896v-110.388h-38.896c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h38.896v-103.108h-38.896c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h38.896v-109.102h-38.896c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h38.896v-167.536c0-11.876 9.626-21.5 21.5-21.5h117.554v-28.908c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v28.908h109.1v-28.908c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v28.908h103.108v-28.908c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v28.908h110.388v-28.908c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v28.908h52.788c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM348.782 232.8c39.822 0 72.22 32.396 72.22 72.218 0 17.51-6.268 33.58-16.67 46.096l70.532 110.136c8.080-3.132 16.848-4.868 26.020-4.868 11.662 0 22.676 2.796 32.438 7.724l47.46-52.814c-3.856-8.83-6.008-18.566-6.008-28.8 0-39.822 32.398-72.218 72.22-72.218s72.22 32.396 72.22 72.218c0 14.314-4.204 27.656-11.416 38.892l69.278 95.512c7.316-2.502 15.15-3.88 23.304-3.88 39.822 0 72.22 32.398 72.22 72.22s-32.398 72.218-72.22 72.218-72.22-32.396-72.22-72.218c0-16.078 5.286-30.944 14.206-42.958l-67.562-93.144c-8.566 3.588-17.96 5.578-27.814 5.578-13.848 0-26.792-3.926-37.794-10.71l-44.938 50.008c5.632 10.278 8.842 22.066 8.842 34.592 0 39.822-32.398 72.218-72.22 72.218s-72.22-32.396-72.22-72.218c0-14.958 4.572-28.868 12.392-40.408l-72.78-113.648c-6.206 1.742-12.738 2.694-19.492 2.694-39.822 0-72.22-32.398-72.22-72.22s32.398-72.218 72.22-72.218zM800.378 614.454c16.112 0 29.22-13.108 29.22-29.218s-13.108-29.22-29.22-29.22c-6.34 0-12.198 2.052-16.994 5.498-0.11 0.084-0.208 0.176-0.322 0.258-0.062 0.044-0.126 0.080-0.188 0.124-7.096 5.336-11.716 13.798-11.716 23.342 0 16.112 13.108 29.218 29.22 29.218zM623.958 400.41c0.25 0.308 0.508 0.61 0.738 0.928 5.364 6.336 13.362 10.374 22.294 10.374 16.112 0 29.22-13.108 29.22-29.22s-13.108-29.218-29.22-29.218-29.22 13.108-29.22 29.218c0 6.754 2.326 12.964 6.188 17.918zM500.882 557.82c16.112 0 29.22-13.108 29.22-29.218s-13.108-29.218-29.22-29.218c-6.562 0-12.606 2.202-17.49 5.868-0.924 0.956-1.954 1.832-3.078 2.622-5.338 5.296-8.652 12.632-8.652 20.728 0 16.112 13.108 29.218 29.22 29.218zM348.782 334.24c5.946 0 11.478-1.794 16.098-4.858 0 0 0 0 0 0s0 0 0.004 0c7.896-5.236 13.118-14.196 13.118-24.36 0-16.112-13.108-29.218-29.22-29.218s-29.22 13.108-29.22 29.218 13.108 29.22 29.22 29.22z" /> -<glyph unicode="" glyph-name="link" d="M956.32 892.304c-23.008 23.008-53.488 35.696-85.824 35.696s-62.912-12.704-85.936-35.744l-77.872-77.872c-116.656 50.944-251.2 30.16-347.712-53.696-4.992 1.312-10.112 2.224-15.408 2.24h-0.24c-16.528 0-32.064-6.432-43.76-18.144l-84.32-84.32c-11.76-11.744-18.208-27.376-18.144-44 0.016-5.088 0.848-10 2.048-14.8-83.104-95.76-103.536-230.064-52.512-347.312l-78.88-78.864c-23.040-23.040-35.744-53.568-35.744-85.952s12.688-62.816 35.68-85.808 53.488-35.696 85.824-35.696 62.912 12.704 85.936 35.744l77.856 77.856c42.352-18.496 87.056-27.632 131.488-27.632 77.84 0 154.544 28.080 216 81.424 5.088-1.36 10.304-2.304 15.712-2.32h0.24c16.528 0 32.064 6.432 43.744 18.128l84.32 84.32c11.744 11.744 18.192 27.36 18.128 43.984-0.016 5.328-0.928 10.448-2.256 15.456 83.856 96.512 104.624 231.056 53.696 347.696l77.872 77.872c23.040 23.040 35.744 53.568 35.744 85.952s-12.688 62.816-35.68 85.808zM657.152 764.848l-45.792-45.792c-56.576 9.76-114.848-4.064-160.896-37.776l-39.376 39.376c70.16 55.216 162.144 71.584 246.064 44.208zM720.688 490.752c-3.408-24-12.736-46.944-27.264-66.704-4.144 0.864-8.4 1.36-12.736 1.36h-0.24c-16.528-0.064-32-6.56-43.408-18.144l-84.144-84.144c-11.744-11.584-18.256-27.040-18.32-43.584 0-4.416 0.496-8.736 1.376-12.96-19.76-14.544-42.72-23.888-66.72-27.296 10.784 18.384 16.656 39.296 16.656 61.136 0 32.384-12.656 62.896-35.632 85.84-22.96 22.976-53.456 35.632-85.84 35.632-21.84 0-42.736-5.872-61.12-16.64 3.408 24 12.736 46.944 27.264 66.704 4.144-0.864 8.4-1.36 12.736-1.36h0.24c16.528 0.064 32 6.56 43.408 18.144l84.144 84.144c11.744 11.584 18.256 27.040 18.32 43.584 0 4.416-0.496 8.752-1.376 12.976 19.76 14.544 42.736 23.888 66.736 27.296-10.784-18.384-16.672-39.296-16.672-61.152 0-32.384 12.656-62.896 35.632-85.84 22.96-22.976 53.456-35.632 85.84-35.632 21.84 0 42.736 5.872 61.12 16.64zM258.416 571.36c0.752 0.624 1.552 1.152 2.256 1.872 1.52 1.536 2.832 3.2 3.968 4.928 10.336 11.856 10.48 29.44 0.288 41.488l78.336 78.336 81.216-81.216-81.264-81.264c-0.624 0.544-1.328 0.928-1.968 1.408-0.736 0.544-1.456 1.12-2.224 1.6-0.992 0.608-2.016 1.104-3.040 1.6-0.832 0.4-1.632 0.816-2.48 1.136-1.040 0.384-2.096 0.656-3.152 0.928-0.896 0.24-1.776 0.512-2.688 0.672-1.056 0.176-2.096 0.224-3.168 0.304-0.944 0.064-1.888 0.192-2.848 0.176-1.040-0.016-2.064-0.176-3.104-0.304-0.96-0.112-1.92-0.16-2.88-0.352-1.040-0.208-2.048-0.592-3.072-0.912-0.912-0.288-1.84-0.496-2.72-0.864-1.104-0.464-2.144-1.104-3.2-1.68-0.736-0.416-1.504-0.736-2.224-1.2-1.728-1.152-3.376-2.48-4.912-4-48.64-48.64-70.176-118.192-58.592-185.328l-44.896-44.896c-30.496 93.44-7.44 196.128 62.352 267.584zM194.192 48.992c-21.84-21.888-59.328-21.968-81.232-0.032-10.944 10.928-16.96 25.312-16.96 40.544s6.032 29.728 16.992 40.672v0s210.816 210.832 210.816 210.832c10.896 10.896 25.296 16.88 40.608 16.88s29.696-5.984 40.592-16.88 16.88-25.296 16.88-40.592-5.984-29.712-16.88-40.608l-210.832-210.816zM366.848 131.152l45.808 45.808c11.904-2.048 23.856-3.168 35.792-3.168 44.768 0 88.64 14.448 124.992 41.072l39.488-39.488c-70.16-55.232-162.144-71.6-246.080-44.208zM763.504 322.944s-0.048-0.064-0.064-0.080c-0.032-0.032-0.064-0.048-0.096-0.080-1.488-1.52-2.8-3.136-3.92-4.848-0.16-0.256-0.256-0.528-0.416-0.784-0.944-1.504-1.792-3.056-2.448-4.672-0.256-0.64-0.4-1.312-0.608-1.968-0.416-1.264-0.864-2.528-1.136-3.824-0.16-0.8-0.176-1.6-0.288-2.4-0.144-1.184-0.32-2.368-0.336-3.552 0-0.864 0.112-1.728 0.16-2.592 0.080-1.136 0.128-2.256 0.336-3.376 0.16-0.88 0.432-1.728 0.656-2.592 0.288-1.088 0.56-2.16 0.96-3.216 0.32-0.848 0.752-1.648 1.152-2.48 0.496-1.024 0.976-2.048 1.584-3.024 0.48-0.784 1.056-1.504 1.616-2.256 0.48-0.64 0.864-1.344 1.408-1.952l-81.264-81.264-81.248 81.248 81.264 81.264c0.624-0.544 1.312-0.928 1.968-1.408 0.736-0.56 1.472-1.12 2.24-1.6 0.992-0.608 2.016-1.104 3.040-1.6 0.816-0.384 1.616-0.816 2.448-1.12 1.072-0.4 2.176-0.688 3.28-0.976 0.848-0.224 1.68-0.48 2.544-0.624 1.152-0.208 2.32-0.256 3.472-0.336 0.672-0.048 1.344-0.192 2.032-0.192 0.16 0 0.32 0.048 0.464 0.048 1.216 0.016 2.432 0.192 3.632 0.352 0.784 0.096 1.552 0.128 2.336 0.288 1.28 0.256 2.512 0.688 3.76 1.12 0.672 0.224 1.376 0.368 2.032 0.656 1.36 0.56 2.64 1.312 3.92 2.064 0.496 0.288 1.040 0.496 1.52 0.832 1.744 1.152 3.392 2.496 4.928 4.032 48.64 48.64 70.176 118.192 58.592 185.328l45.808 45.808c30.64-93.888 6.736-197.984-65.36-270.208zM911.008 765.792l-210.816-210.816c-21.776-21.76-59.424-21.792-81.2 0-10.896 10.896-16.88 25.296-16.88 40.592s5.984 29.712 16.88 40.608l210.832 210.816c10.944 10.976 25.392 16.992 40.672 16.992s29.632-6.016 40.56-16.976c10.944-10.928 16.96-25.312 16.96-40.544s-6.032-29.728-16.992-40.688zM104.656 619.648h0.064l22.656 0.048c17.664 0.032 31.968 14.384 31.936 32.064-0.032 17.664-14.352 31.936-32 31.936h-0.064l-22.656-0.048c-17.664-0.032-31.968-14.384-31.936-32.064 0.032-17.664 14.352-31.936 32-31.936zM308.256 800.688h0.064c17.648 0 31.968 14.288 32 31.936l0.048 22.656c0.032 17.664-14.272 32.032-31.936 32.064h-0.064c-17.648 0-31.968-14.288-32-31.936l-0.048-22.656c-0.032-17.664 14.272-32.032 31.936-32.064zM715.744 95.312h-0.064c-17.648 0-31.968-14.288-32-31.936l-0.048-22.656c-0.032-17.664 14.272-32.032 31.936-32.064h0.064c17.648 0 31.968 14.288 32 31.936l0.048 22.656c0.032 17.664-14.272 32.032-31.936 32.064zM919.344 276.352h-0.064l-22.656-0.048c-17.664-0.032-31.968-14.384-31.936-32.064 0.032-17.664 14.352-31.936 32-31.936h0.064l22.656 0.048c17.664 0.032 31.968 14.384 31.936 32.064-0.032 17.664-14.352 31.936-32 31.936z" /> -<glyph unicode="" glyph-name="linkedin" d="M141.168 569.584h159.056v-512.080h-159.056v512.080zM704.96 582.416c-77.392 0-129.264-42.464-150.496-82.688h-2.224v69.856h-152.544v-512.080h158.88v253.552c0 66.768 12.672 131.312 95.36 131.312 81.488 0 82.688-76.192 82.688-135.6v-249.28h158.88v281.296c0 137.648-29.616 243.632-190.56 243.632zM220.608 824.496c-50.864 0-92.112-41.232-92.112-92.096 0-50.848 41.264-92.96 92.112-92.96s92.112 42.112 92.112 92.96c0 50.864-41.232 92.096-92.096 92.096z" /> -<glyph unicode="" glyph-name="link-simple" d="M930.192 866.192c-39.856 39.856-92.848 61.808-149.2 61.808s-109.344-21.952-149.168-61.776l-178.048-177.76c-12.512-12.496-12.512-32.752 0-45.248 12.496-12.512 32.752-12.512 45.248 0l178.048 177.744c27.76 27.76 64.672 43.056 103.952 43.056s76.192-15.296 103.952-43.056 43.056-64.688 43.056-103.952-15.296-76.176-43.056-103.952l-201.728-201.728c-57.328-57.328-150.576-57.312-207.904 0-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248 41.136-41.136 95.168-61.696 149.2-61.696s108.064 20.56 149.2 61.696l201.728 201.728c39.856 39.84 61.808 92.832 61.808 149.2s-21.952 109.344-61.808 149.2zM524.656 253.552l-64.224-63.456-113.488-115.040c-27.76-27.76-64.672-43.056-103.952-43.056s-76.192 15.296-103.952 43.056-43.056 64.688-43.056 103.952 15.296 76.176 43.056 103.952l201.728 201.728c57.344 57.312 150.592 57.296 207.904 0 12.48-12.496 32.768-12.496 45.248 0 12.496 12.496 12.496 32.752 0 45.248-82.272 82.288-216.144 82.304-298.4 0l-201.728-201.728c-39.856-39.84-61.808-92.832-61.808-149.2s21.952-109.344 61.808-149.2c39.856-39.856 92.848-61.808 149.2-61.808s109.344 21.952 149.344 61.952l113.328 114.864 64.224 63.488c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0z" /> -<glyph unicode="" glyph-name="list" d="M278.336 773.328h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32zM78.816 837.648h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 479.92h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32zM78.816 480.24h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 122.352h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32zM78.816 122.672h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="live-tv" d="M896 831.317h-768c-23.765 0-43.008-19.243-43.008-43.008v-576c0-23.765 19.243-43.008 43.008-43.008h768c23.765 0 43.008 19.243 43.008 43.008v576.043c0 23.765-19.243 43.008-43.008 43.008zM852.992 255.317h-681.984v490.027h681.984v-489.984zM405.077 326.016c6.656-3.883 14.123-5.803 21.589-5.803 7.381 0 14.72 1.877 21.333 5.675l213.333 121.899c12.715 7.253 20.864 20.523 21.632 35.157s-6.016 28.629-17.963 37.163l-213.333 152.363c-13.099 9.344-30.336 10.624-44.672 3.243s-23.339-22.144-23.339-38.229v-274.304c0-15.317 8.149-29.483 21.419-37.205zM469.675 553.899l90.709-64.811-90.709-51.84v116.651zM768 148.651h-512c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h512c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="loader" d="M237.536 767.712c0.464 2.864 0.56 5.84 0.224 8.864-2 17.552-17.808 30.256-35.408 28.176-15.488-1.76-28.304-12-33.44-26.72s-1.488-30.704 9.536-41.728l138.928-138.928c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-125.072 125.072zM300.72 448c0 17.664-14.336 32-32 32h-176.88c-1.696 2.368-3.744 4.544-6.128 6.432-13.856 10.992-33.984 8.688-44.976-5.136-9.696-12.208-11.504-28.496-4.736-42.544s20.672-22.752 36.256-22.752h196.464c17.664 0 32 14.336 32 32zM317.36 298.608l-125.072-125.072c-2.848 0.464-5.824 0.56-8.864 0.224-17.568-2-30.176-17.856-28.176-35.408 1.76-15.488 12-28.304 26.72-33.44 4.4-1.536 8.928-2.288 13.392-2.288 10.448 0 20.624 4.096 28.336 11.824l138.928 138.928c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0zM512 236.72c-17.664 0-32-14.336-32-32v-176.88c-2.368-1.696-4.544-3.744-6.432-6.128-10.992-13.84-8.688-33.968 5.136-44.976 7.312-5.808 16.096-8.784 24.976-8.784 5.952 0 11.936 1.328 17.568 4.048 14.032 6.768 22.752 20.672 22.752 36.256v196.464c0 17.664-14.336 32-32 32zM706.64 298.608c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l125.072-125.072c-0.464-2.864-0.56-5.84-0.224-8.864 1.856-16.336 15.696-28.384 31.76-28.384 1.2 0 2.432 0.064 3.664 0.208 15.488 1.76 28.304 12 33.44 26.72s1.488 30.704-9.536 41.728l-138.928 138.928zM987.984 457.248c-6.768 14.032-20.672 22.752-36.256 22.752h-196.464c-17.664 0-32-14.336-32-32s14.336-32 32-32h176.88c1.696-2.368 3.744-4.544 6.128-6.432 5.888-4.672 12.912-6.944 19.888-6.944 9.424 0 18.752 4.144 25.072 12.080 9.696 12.208 11.504 28.496 4.736 42.544zM684.016 588.016c8.192 0 16.384 3.12 22.624 9.376l125.072 125.072c2.88-0.48 5.856-0.576 8.864-0.224 17.568 2 30.176 17.856 28.176 35.408-1.76 15.488-12 28.304-26.72 33.44-14.704 5.136-30.704 1.488-41.728-9.536l-138.928-138.928c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376zM512 659.28c17.664 0 32 14.336 32 32v176.88c2.368 1.696 4.544 3.744 6.432 6.128 10.992 13.84 8.688 33.968-5.136 44.976-12.224 9.696-28.512 11.52-42.544 4.736-14.032-6.768-22.752-20.672-22.752-36.256v-196.464c0-17.664 14.336-32 32-32zM512 498.8c-28.224 0-51.168-22.96-51.168-51.168s22.96-51.168 51.168-51.168 51.168 22.96 51.168 51.168-22.96 51.168-51.168 51.168zM512 434.8c-7.072 0-12.832 5.76-12.832 12.832s5.76 12.832 12.832 12.832 12.832-5.76 12.832-12.832-5.76-12.832-12.832-12.832z" /> -<glyph unicode="" glyph-name="lock" d="M512 448c-70.576 0-128-57.424-128-128 0-28.832 9.76-56.64 27.328-79.008l-3.504-9.776c-4.368-11.856-5.728-24.176-4.032-36.528 1.632-11.984 6.128-23.616 13.104-33.76 7.168-10.336 16.816-18.784 27.536-24.256 10.768-5.664 23.056-8.672 35.568-8.672h64c12.512 0 24.8 3.008 35.184 8.464 11.104 5.664 20.768 14.128 28.032 24.592 6.88 10.016 11.36 21.648 12.992 33.6 1.696 12.384 0.352 24.704-3.92 36.304l-3.6 10.048c17.552 22.352 27.328 50.176 27.328 79.008 0 70.576-57.424 128-128 128zM545.872 237.68l10.256-28.592c0.704-1.936 0.928-3.808 0.656-5.776-0.288-2.096-1.12-4.256-2.256-5.92-1.184-1.68-2.672-3.008-4.8-4.096-1.584-0.848-3.616-1.296-5.728-1.296h-64c-2.112 0-4.144 0.448-6.112 1.504-1.744 0.896-3.232 2.208-4.32 3.744-1.232 1.808-2.080 3.968-2.368 6.096-0.272 1.936-0.048 3.808 0.768 6.016l10.16 28.336c4.4 12.272 0.912 25.968-8.8 34.656-13.552 12.112-21.328 29.488-21.328 47.664 0 35.296 28.704 64 64 64s64-28.704 64-64c0-18.176-7.776-35.552-21.328-47.664-9.712-8.688-13.2-22.384-8.8-34.656zM768 585.216v150.784c0 104.736-81.952 189.024-187.44 191.936l-132.56 0.064c-105.872 0-192-86.128-192-192v-150.784c-63.84-33.152-128-112.4-128-297.216 0-218.32 122.016-320 384-320s384 101.68 384 320c0 184.832-64.16 264.064-128 297.216zM320 736c0 70.576 57.424 128 127.984 128l131.68-0.048c69.712-1.92 124.336-58.128 124.336-127.952v-130.368c-11.904 1.744-22.8 2.368-32 2.368h-32v96c0 12.304-2.48 24.928-7.344 36.976-4.848 11.44-11.696 21.744-20.992 31.296-8.928 8.672-19.248 15.536-31.168 20.576-11.76 4.752-24.032 7.152-36.48 7.152h-64c-12.448 0-24.72-2.4-36.992-7.36-11.472-4.88-21.808-11.744-31.2-20.944-8.704-8.912-15.6-19.248-20.672-31.216-4.672-11.568-7.152-24.192-7.152-36.48v-96h-32c-9.2 0-20.096-0.624-32-2.368v130.368zM448 608v96c0 4.16 0.864 8.464 2.288 12 1.728 4.096 4.176 7.76 6.768 10.432 3.168 3.088 6.848 5.536 10.432 7.056 4.048 1.648 8.368 2.496 12.512 2.496h64c4.128 0 8.464-0.864 12-2.304 4.112-1.728 7.824-4.208 10.416-6.704 3.104-3.184 5.568-6.896 7.104-10.512 1.632-4.016 2.48-8.336 2.48-12.48v-96h-128zM512 32c-227.296 0-320 74.176-320 256 0 95.616 20.784 256 160 256h320c139.216 0 160-160.384 160-256 0-181.824-92.704-256-320-256z" /> -<glyph unicode="" glyph-name="lock-2" d="M810.667 575.36h-84.992v88.789c0 117.803-95.829 213.675-213.675 213.675s-213.675-95.872-213.675-213.675v-88.789h-84.992c-23.765 0-43.008-19.243-43.008-43.008v-469.333c0-23.723 19.243-43.008 43.008-43.008h597.333c23.765 0 43.008 19.243 43.008 43.008v469.333c0 23.723-19.243 43.008-43.008 43.008zM767.659 105.984h-511.317v383.36h511.317v-383.36zM384.341 664.107c0 70.4 57.259 127.659 127.659 127.659s127.659-57.259 127.659-127.659v-88.789h-255.317v88.789zM559.36 393.6c-14.293 7.083-30.379 11.093-47.36 11.093s-33.109-3.968-47.36-11.093c-35.285-17.493-59.605-53.931-59.605-95.915 0-59.008 48-107.008 107.008-107.008s107.008 48 107.008 107.008c0 41.984-24.32 78.421-59.605 95.915zM512 276.651c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992z" /> -<glyph unicode="" glyph-name="login" d="M810.283 831.317h-298.283c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h291.029c3.157-5.376 7.296-16.981 7.296-33.451v-529.792c0-16.469-4.139-28.075-7.296-33.451h-291.029c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h298.283c49.067 0 86.059 51.371 86.059 119.424v529.877c0 68.096-36.992 119.424-86.059 119.424zM627.755 477.397l-170.667 170.667c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l97.28-97.28h-322.901c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h322.859l-97.28-97.28c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l170.667 170.667c16.811 16.811 16.811 44.032 0 60.8z" /> -<glyph unicode="" glyph-name="logout" d="M512 148.651h-291.029c-3.157 5.376-7.296 16.981-7.296 33.451v529.792c0 16.469 4.139 28.075 7.296 33.451h291.029c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-298.283c-49.067 0-86.059-51.371-86.059-119.424v-529.792c0-68.096 36.992-119.424 86.059-119.424h298.283c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM883.755 477.397l-170.667 170.667c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l97.28-97.28h-322.859c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h322.859l-97.28-97.28c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l170.667 170.667c16.811 16.811 16.811 44.032 0 60.8z" /> -<glyph unicode="" glyph-name="lottie-animation" d="M835.368 831.251h-646.737c-33.071 0-59.883-26.81-59.883-59.883v-646.737c0-33.071 26.812-59.883 59.883-59.883h646.737c33.073 0 59.883 26.812 59.883 59.883v646.737c0 33.073-26.81 59.883-59.883 59.883zM852.335 124.632c0-9.356-7.611-16.967-16.967-16.967h-497.772l-165.932 165.932v497.772c0 9.356 7.611 16.967 16.967 16.967h646.737c9.356 0 16.967-7.611 16.967-16.967v-646.737zM825.933 746.545c0-8.269-6.704-14.973-14.973-14.973s-14.973 6.704-14.973 14.973c0 8.269 6.704 14.973 14.973 14.973s14.973-6.704 14.973-14.973zM750.189 761.52c-8.27 0-14.973-6.703-14.973-14.973s6.705-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM689.415 761.52c-8.27 0-14.973-6.703-14.973-14.973s6.703-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM605.577 637.444h-187.154c-52.945 0-95.867-42.92-95.867-95.867v-187.154c0-52.947 42.922-95.867 95.867-95.867h187.154c52.947 0 95.867 42.92 95.867 95.867v187.154c0 52.947-42.922 95.867-95.867 95.867zM627.85 526.678c-0.942-2.274-2.325-4.34-4.068-6.080s-3.811-3.118-6.086-4.058c-2.276-0.94-4.715-1.421-7.176-1.419-39.595 0-54.971-24.115-75.574-63.789l-12.689-23.971c-19.43-37.405-43.603-83.94-108.827-83.94-4.966 0.006-9.727 1.982-13.238 5.493s-5.487 8.272-5.493 13.236c0 2.459 0.483 4.896 1.425 7.168 0.942 2.274 2.321 4.338 4.060 6.076 1.739 1.741 3.805 3.12 6.076 4.060 2.272 0.942 4.709 1.425 7.168 1.425 39.623 0 54.997 24.117 75.574 63.789l12.715 23.973c19.43 37.403 43.605 83.94 108.803 83.94 4.97 0 9.737-1.972 13.254-5.485 3.517-3.511 5.495-8.276 5.503-13.246 0-2.461-0.485-4.9-1.427-7.174z" /> -<glyph unicode="" glyph-name="male" d="M856.235 830.208c-0.469 0-0.939 0.043-1.408 0.085-0.512 0-0.981 0.085-1.493 0.085-0.043 0-0.128 0-0.171 0-0.085 0-0.171 0-0.213 0l-255.573 0.512c-22.912 0-41.515-18.56-41.557-41.472-0.043-22.955 18.517-41.557 41.472-41.643l155.477-0.299-223.232-223.232c-41.301 28.8-91.435 45.739-145.493 45.739-140.544 0-254.891-114.347-254.891-254.891s114.347-254.891 254.891-254.891 254.891 114.347 254.891 254.891c0 56.576-18.517 108.885-49.835 151.211l222.763 222.763v-156.715c0-22.955 18.603-41.557 41.557-41.557s41.557 18.603 41.557 41.557v256.512c0 21.973-17.067 39.893-38.613 41.387zM384 143.317c-94.72 0-171.776 77.056-171.776 171.776s77.056 171.776 171.776 171.776 171.776-77.056 171.776-171.776-77.056-171.776-171.776-171.776z" /> -<glyph unicode="" glyph-name="medication" d="M810.667 767.317h-597.333c-23.765 0-43.008-19.243-43.008-43.008v-661.333c0-23.765 19.243-43.008 43.008-43.008h597.333c23.765 0 43.008 19.243 43.008 43.008v661.376c0 23.765-19.243 43.008-43.008 43.008zM767.659 105.984h-511.317v575.36h511.317v-575.317zM213.333 788.011h597.333c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-597.333c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM373.333 342.315h87.339v-87.339c0-16.555 13.44-29.995 29.995-29.995h42.667c16.555 0 29.995 13.44 29.995 29.995v87.339h87.339c16.555 0 29.995 13.44 29.995 29.995v42.667c0 16.555-13.44 29.995-29.995 29.995h-87.339v87.339c0 16.555-13.44 29.995-29.995 29.995h-42.667c-16.555 0-29.995-13.44-29.995-29.995v-87.339h-87.339c-16.555 0-29.995-13.44-29.995-29.995v-42.667c0-16.555 13.44-29.995 29.995-29.995z" /> -<glyph unicode="" glyph-name="medium" d="M566.752 441.008c0-133.75-107.71-242.176-240.576-242.176s-240.576 108.426-240.576 242.176c0 133.75 107.71 242.176 240.576 242.176s240.576-108.426 240.576-242.176zM710.432 669.056c-66.368 0-120.224-102.096-120.224-228.048s53.84-228.048 120.352-228.048 120.352 102.096 120.352 228.048h-0.272c0 125.952-53.84 228.048-120.224 228.048zM938.624 440.992c0-112.843-18.919-204.32-42.256-204.32s-42.256 91.477-42.256 204.32c0 112.843 18.919 204.32 42.256 204.32s42.256-91.477 42.256-204.32z" /> -<glyph unicode="" glyph-name="megaphone" d="M960 592v256c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.080c-99.712-74.208-239.472-111.92-416-111.92h-72.896c-11.104 19.040-31.52 32-55.104 32h-128c-35.296 0-64-28.704-64-64h-32c-35.296 0-64-28.704-64-64v-32c-17.664 0-32-14.336-32-32v-96c0-17.664 14.336-32 32-32v-32c0-35.296 28.704-64 64-64h32c0-35.296 28.704-64 64-64h3.776l24.608-195.984c4.096-34.224 33.168-60.016 67.616-60.016h64c33.648 0 62.8 22.736 70.912 55.28l19.024 76.368c40.368 11.344 70.080 48.4 70.080 92.352v62.224c146.592-8.16 264.672-45.152 352-110.144v-16.080c0-17.664 14.336-32 32-32s32 14.336 32 32v192c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32zM768 696.624v-369.248c-66.496 21.52-141.28 34.512-224 38.88v291.488c82.72 4.368 157.504 17.36 224 38.88zM480 368h-64v288h64v-288zM160 400h-32v224h32c35.296 0 64 28.704 63.968 64h128.032v-352h-128c0 35.296-28.704 64-64 64zM480 240c0-17.648-14.352-32-32-32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h23.056l-14.256-57.248c-0.976-3.904-4.672-6.752-8.8-6.752h-64c-2.032 0-3.824 1.6-4.096 3.808l-23.632 188.192h59.728c23.584 0 44 12.96 55.104 32h72.896v-64zM832 302.976v418.048c22.512 10.064 43.808 21.36 64 33.728v-485.52c-20.192 12.368-41.488 23.664-64 33.728zM288 496h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM288 592h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="menu" d="M896 233.984h-768c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h768c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM128 660.011h768c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-768c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM896 491.008h-768c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h768c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="menu-open" d="M768 233.984h-640c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h640c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008zM128 660.011h640c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-640c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM128 404.992h475.648c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-475.648c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM786.133 447.019l140.245 140.245c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-170.667-170.667c-16.811-16.811-16.811-44.032 0-60.8l170.667-170.667c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-140.245 140.245z" /> -<glyph unicode="" glyph-name="messanger" d="M693.456 548.16l-107.712-81.744c-7.296-5.536-17.36-5.552-24.656-0.064l-79.744 59.824c-23.936 17.936-58.080 11.632-74.032-13.664l-100.272-159.072c-9.632-15.264 9.152-32.464 23.52-21.552l107.712 81.744c7.296 5.536 17.36 5.552 24.656 0.064l79.744-59.824c23.936-17.952 58.080-11.632 74.032 13.648l100.272 159.072c9.632 15.28-9.152 32.48-23.52 21.568zM814.416 749.088c-79.232 76.256-186.624 118.24-302.416 118.24s-223.184-42-302.416-118.24c-80.56-77.536-124.928-183.664-124.928-298.848 0-60.848 12.176-118.912 36.192-172.608 19.84-44.368 47.024-84.144 80.96-118.56l1.12-36.544c0.928-30.272 13.568-58.336 35.568-79.024 21.152-19.888 48.736-30.848 77.68-30.848 15.824 0 31.232 3.264 45.792 9.696l49.344 21.776c32.656-7.296 66.432-10.992 100.688-10.992 115.792 0 223.184 42 302.416 118.24 80.56 77.536 124.928 183.664 124.928 298.848s-44.368 221.328-124.928 298.848zM512 119.152c-34.544 0-67.664 4.56-98.8 13.12-2.384 0.656-4.816 0.976-7.248 0.976-3.76 0-7.504-0.784-11.008-2.32l-67.744-29.904c-3.648-1.616-7.392-2.352-11.040-2.352-14.096 0-26.816 11.12-27.28 26.512l-1.856 60.704c-0.224 7.488-3.584 14.48-9.168 19.472-66.4 59.392-107.2 145.376-107.2 244.896 0 190.24 149.040 331.088 341.328 331.088s341.328-140.848 341.328-331.088-149.040-331.088-341.328-331.088z" /> -<glyph unicode="" glyph-name="microphone" d="M834.272 479.904h-32.448v0.24c0 23.712-13.056 44.224-32.224 55.344v202.464c0 71.616-65.264 161.168-186.192 186.128-2.192 0.448-4.272 0.368-6.672 0.656l-134.016-0.896c-2.272 0-4.512-0.272-6.72-0.768-119.2-26.464-181.552-113.168-181.552-185.12v-202.464c-19.168-11.12-32.224-31.648-32.224-55.344v-0.24h-32.448c-35.408 0-64.224-28.816-64.224-64.224v-32.24c0-186.592 121.888-322.032 289.808-322.032h0.224v-64.688c0-17.664 14.336-32 32-32s32 14.336 32 32v64.688h64.912v-64.688c0-17.664 14.336-32 32-32s32 14.336 32 32v65.472c166.368 8.192 290.032 143.312 290.032 321.248v32.24c0 35.408-28.816 64.224-64.224 64.224zM737.584 480.352l0.224-0.224-0.224-64.688-451.392 0.24 0.224 64.672h451.168zM318.416 351.456l387.168-0.224c0-71.2-57.936-129.136-129.136-129.136h-128.912c-71.2 0-129.136 57.936-129.136 129.136v0.224zM446.64 859.872l127.024 0.848c90.96-20.032 131.92-83.552 131.92-122.768v-0.24h-0.224c-17.664 0-32-14.336-32-32s14.336-32 32-32h0.224v-32.672h-0.224c-17.664 0-32-14.336-32-32s14.336-32 32-32h0.224v-32.688h-387.168v32.688h0.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-0.224v32.672h0.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-0.224v0.24c0 38.336 39.808 100.992 128.224 121.92zM834.496 383.456c0-147.104-104-258.032-241.936-258.032h-177.248c-132.96 0-225.808 106.112-225.808 258.032l0.224 32.448h32.448v-0.224c0-23.712 13.056-44.24 32.224-55.36v-9.088c0-106.496 86.64-193.136 193.136-193.136h128.912c106.496 0 193.136 86.64 193.136 193.136v9.088c19.168 11.12 32.224 31.648 32.224 55.36v0.112l32.672-0.112v-32.24zM479.776 254.784h64.448c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64.448c-17.664 0-32-14.336-32-32s14.336-32 32-32zM415.328 577.040h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576.448 577.040h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM415.328 673.712h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576.448 673.712h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="minus" d="M720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="mobile" d="M701.008 928h-378.032c-48.176 0-87.376-39.2-87.376-87.376v-785.248c0-48.176 39.2-87.376 87.376-87.376h378.032c48.176 0 87.376 39.2 87.376 87.376v785.248c0 48.176-39.2 87.376-87.376 87.376zM724.384 55.376c0-12.896-10.48-23.376-23.376-23.376h-378.032c-12.896 0-23.376 10.48-23.376 23.376v785.248c0 12.896 10.48 23.376 23.376 23.376h97.488c5.168-10.736 16.048-18.208 28.752-18.208h118.304c12.704 0 23.584 7.472 28.752 18.208h104.72c12.896 0 23.376-10.48 23.376-23.376v-785.248zM519.264 106.176h-14.528c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.528c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="mockup" d="M896.16 909.776h-572.88c-52.688 0-95.76-42.848-96.016-95.504l-1.168-213.44-6.16-1.232c-35.008-6.896-66.96-23.968-92.368-49.376l-73.68-73.664c-22.816-22.88-28.4-57.664-13.904-86.464l35.984-72.048c12.256-24.4 36.672-39.008 62.96-39.008 5.68 0 11.456 0.688 17.216 2.096l57.568 14.416v-213.68c0-52.752 42.928-95.664 95.664-95.664h318.352c41.52 0 76.848 26.64 90.048 63.664h178.384c52.848 0 95.84 42.928 95.84 95.664v668.576c0 52.752-42.992 95.664-95.84 95.664zM627.712 50.224h-318.352c-17.456 0-31.664 14.208-31.664 31.664v286.512c0 17.664-14.336 32-32 32s-32-14.336-32-32v-6.848l-72.992-18.272c-3.104-0.736-6.112 0.656-7.52 3.44l-36 72.064c-2.112 4.224-1.312 9.28 1.984 12.56l73.648 73.632c16.4 16.4 36.992 27.424 59.6 31.872l31.408 6.288c0.368 0.064 0.72 0.144 1.088 0.224l43.824 8.784c8.24-72.32 58.976-124.192 61.552-126.752 6.176-6.176 14.368-9.376 22.64-9.376 5.92 0 11.856 1.632 17.136 4.976l58.336 36.992 58.288-36.976c5.28-3.344 11.216-4.992 17.136-4.992 8.272 0 16.464 3.2 22.64 9.376 2.576 2.576 53.344 54.48 61.584 126.848l90.256-18.016c13.824-2.768 26.304-9.456 36.208-19.488l73.472-73.424c9.296-9.28 11.584-23.472 5.76-35.184l-23.392-46.784c-5.040-10.064-16.592-15.36-27.472-12.592l-59.456 14.832v6.832c0 17.664-14.336 32-32 32s-32-14.336-32-32v-286.512c0-17.472-14.208-31.664-31.664-31.664zM468.544 527.744c-56.768 0-85.536 21.28-93.264 68.64 0.016 2.544 3.616 7.76 6.24 8.816 17.808 6.624 52.784 17.728 87.024 17.728s69.344-11.104 87.28-17.776c2.464-1.008 6.064-6.208 6.144-8.416-4.816-29.616-19.744-68.992-93.424-68.992zM928 145.568c0-17.472-14.288-31.664-31.84-31.664h-172.768v181.712l43.808-10.944c7.088-1.792 14.24-2.656 21.328-2.656 32.704 0 63.92 18.448 79.040 48.688l23.424 46.864c18.080 36.448 10.944 80.24-17.792 108.992l-8.544 8.528v159.84c0 17.664-14.336 32-32 32s-32-14.336-32-32v-95.888l-0.816 0.816c-18.784 18.992-42.656 31.808-69.040 37.088l-108.944 21.744c-7.088 20.72-23.184 38.912-43.856 46.496-26.672 9.904-67.296 21.728-109.456 21.728s-82.672-11.824-109.088-21.664c-20.848-7.552-37.024-25.792-44.112-46.56l-25.168-5.040 1.104 200.272c0.080 17.552 14.448 31.824 32.016 31.824h572.88c17.568 0 31.84-14.208 31.84-31.664v-668.544zM418.784 814.288h-31.84c-17.664 0-32-14.336-32-32v-31.84c0-17.664 14.336-32 32-32s31.92 14.256 32 31.84c17.6 0.096 31.84 14.368 31.84 32s-14.336 32-32 32zM832.656 814.288h-31.84c-17.664 0-32-14.336-32-32s14.24-31.904 31.84-32c0.080-17.6 14.368-31.84 32-31.84s32 14.336 32 32v31.84c0 17.664-14.336 32-32 32zM673.472 814.288h-127.344c-17.664 0-32-14.336-32-32s14.336-32 32-32h127.344c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832.656 257.136c-17.616 0-31.904-14.24-32-31.824-17.6-0.096-31.84-14.368-31.84-32s14.336-32 32-32h31.84c17.664 0 32 14.336 32 32v31.824c0 17.664-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="mode-standby" d="M512.597 553.941c-29.099 0-55.424-11.819-74.496-30.848-19.072-19.072-30.848-45.397-30.848-74.453 0-58.155 47.189-105.344 105.344-105.344s105.344 47.189 105.344 105.344c0 29.099-11.819 55.424-30.848 74.453-19.072 19.072-45.397 30.848-74.496 30.848zM511.019 832.341c-212.48 0-385.365-172.885-385.365-385.323s172.843-385.323 385.323-385.323 385.323 172.843 385.323 385.323-172.843 385.323-385.28 385.323zM511.019 147.669c-165.035 0-299.349 134.272-299.349 299.349s134.272 299.349 299.349 299.349 299.349-134.272 299.349-299.349-134.272-299.349-299.349-299.349z" /> -<glyph unicode="" glyph-name="money" d="M881.856 686.704c0 7.744 0.992 15.248 2.832 22.416h-745.472c1.856-7.168 2.832-14.672 2.832-22.416 0-49.040-39.744-88.784-88.784-88.784-7.072 0-13.92 0.816-20.512 2.384v-342.432c6.592 1.568 13.44 2.384 20.512 2.384 49.040 0 88.784-39.744 88.784-88.784 0-6.928-0.8-13.68-2.288-20.176h744.368c-1.488 6.496-2.288 13.248-2.288 20.176 0 49.024 39.744 88.784 88.784 88.784 7.616 0 15.056-0.96 22.128-2.768v343.2c-7.072-1.808-14.496-2.768-22.128-2.768-49.024 0-88.784 39.744-88.784 88.784zM924.192 321.84c-48.816-15.12-87.568-53.408-103.296-101.968h-617.872c-15.552 48.016-53.616 86-101.68 101.456v215.536c48.8 15.696 87.296 54.624 102.384 103.696h616.48c15.248-49.616 54.432-88.848 104-104.192v-214.512zM512.768 554.832c-68.864 0-124.688-55.824-124.688-124.688s55.824-124.688 124.688-124.688 124.688 55.824 124.688 124.688-55.824 124.688-124.688 124.688zM512.768 374.032c-30.944 0-56.112 25.168-56.112 56.112s25.168 56.112 56.112 56.112 56.112-25.168 56.112-56.112-25.168-56.112-56.112-56.112zM963.504 209.776c-16.16 0-29.264-13.104-29.264-29.264s13.104-29.264 29.264-29.264 29.264 13.104 29.264 29.264-13.104 29.264-29.264 29.264zM62.032 650.592c16.16 0 29.264 13.104 29.264 29.264s-13.104 29.264-29.264 29.264-29.264-13.104-29.264-29.264 13.104-29.264 29.264-29.264zM963.504 650.592c16.16 0 29.264 13.104 29.264 29.264s-13.104 29.264-29.264 29.264-29.264-13.104-29.264-29.264 13.104-29.264 29.264-29.264zM62.032 209.824c-16.16 0-29.264-13.104-29.264-29.264s13.104-29.264 29.264-29.264 29.264 13.104 29.264 29.264-13.104 29.264-29.264 29.264z" /> -<glyph unicode="" glyph-name="money-bank-check" d="M927.824 704l-63.824-0.336v128.336c0 24.080-13.52 44.832-33.2 55.76 0.704 2.64 1.2 5.376 1.2 8.24 0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32 0-2.864 0.496-5.6 1.2-8.24-19.696-10.928-33.2-31.68-33.2-55.76v-128h-576c-35.296 0-64-28.704-64-64v-512c0-23.584 12.96-44 32-55.104v-40.896c0-35.296 28.704-64 64-64h768c35.296 0 64 28.704 64 64v40.896c19.040 11.104 32 31.52 32 55.104v512c0 35.296-28.704 64-64.176 64zM768 365.248l-32 32v50.72s0 0.016 0 0.032 0 0.016 0 0.032v127.84s0 0.080 0 0.128 0 0.080 0 0.128v95.68s0 0.128 0 0.192-0.016 0.128-0.016 0.192v31.808s64.016 0 64.016 0v-306.752l-32-32zM672 480h-288v64h288v-64zM735.968 832h64.032v-64h-64.032v64zM96 640h576v-32h-320c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h320v-32c0-8.48 3.376-16.624 9.376-22.624l54.624-54.624v-25.312c-18.832-7.936-34.608-22.784-44.576-43.040-2.704-5.376-8.848-14.4-19.424-14.4h-32c0 35.296-28.704 64-64 64h-32c-32.672 0-61.344-18.64-76.576-49.6-2.704-5.376-8.848-14.4-19.424-14.4-17.664 0-32-14.336-32-32s14.336-32 32-32c32.304 0 60.928 18.544 76.704 49.872 3.184 6.432 9.104 14.128 19.296 14.128h32c0-35.296 28.704-64 64-64h32c32.304 0 60.928 18.544 76.704 49.872 3.184 6.432 9.104 14.128 19.296 14.128h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64v18.752l54.624 54.624c6 6 9.376 14.144 9.376 22.624v255.648l64 0.352v-512h-832v512zM128 32v32h768v-32h-768zM204.672 406.48h-44.672c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.272c4.064-12.992 16.064-22.48 30.4-22.48 16.832 0 30.48 13.040 31.76 29.552 26.528 12.128 45.088 38.752 45.088 69.776 0 42.288-34.464 76.672-76.848 76.672-6.992 0-12.672 5.76-12.672 12.848s5.68 12.848 12.672 12.848h44.848c17.664 0 32 14.336 32 32s-14.336 32-32 32h-14.496c-4.128 12.912-16.080 22.32-30.352 22.32-16.784 0-30.4-12.976-31.744-29.408-26.432-12.144-44.928-38.752-44.928-69.744 0-42.368 34.384-76.848 76.672-76.848 7.072 0 12.848-5.68 12.848-12.672 0-7.2-5.648-12.848-12.848-12.848zM501.664 352c0 17.664-14.336 32-32 32h-117.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h117.664c17.664 0 32 14.336 32 32zM565.664 320h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 224h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="money-check" d="M927.664 711.36h-831.328c-35.536 0-64.336-28.8-64.336-64.336v-433.728c0-35.536 28.8-64.336 64.336-64.336h831.328c35.536 0 64.336 28.8 64.336 64.336v433.728c0 35.536-28.8 64.336-64.336 64.336zM927.664 212.944l-831.664 0.336 0.336 434.064 831.664-0.336-0.336-434.064zM434.4 491.008h107.904c17.664 0 32 14.336 32 32s-14.336 32-32 32h-107.904c-17.664 0-32-14.336-32-32s14.336-32 32-32zM844.672 555.008h-191.968c-17.664 0-32-14.336-32-32s14.336-32 32-32h191.968c17.664 0 32 14.336 32 32s-14.336 32-32 32zM844.672 369.312h-410.272c-17.664 0-32-14.336-32-32s14.336-32 32-32h410.272c17.664 0 32 14.336 32 32s-14.336 32-32 32zM255.072 461.792c-25.888 12.272-31.472 16.592-31.472 24.384 0 2.976 0 8.48 9.712 12.496 12.096 4.992 27.344 2.496 32.912-3.056 12.496-12.496 32.752-12.496 45.264 0 12.496 12.48 12.496 32.752 0 45.248-9.856 9.872-22.88 16.752-37.12 20.672v12.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.16c-0.496-0.192-1.040-0.304-1.536-0.512-30.832-12.768-49.232-39.552-49.232-71.648 0-49.984 40.976-69.392 68.080-82.224 29.168-13.808 35.056-18.96 35.056-30.528 0-6.096-11.808-14.496-20.368-14.496-14.48 0-35.696 9.952-40.656 14.096-12.512 12.304-32.592 12.208-45.008-0.208-12.496-12.496-12.512-32.752-0.016-45.264 10.384-10.384 31.488-21.456 53.696-27.664v-14.112c0-17.664 14.336-32 32-32s32 14.336 32 32v15.76c28.464 11.664 52.368 37.984 52.368 71.888 0 54.416-43.136 74.848-71.664 88.352z" /> -<glyph unicode="" glyph-name="money-currency" d="M401.824 222.976c-26.128-9.472-53.552-14.288-81.52-14.288-131.952 0-239.312 107.344-239.312 239.312s107.344 239.312 239.312 239.312c28.24 0 55.92-4.896 82.24-14.576 16.544-6.048 34.896 2.4 40.976 18.976 6.080 16.56-2.416 34.896-18.96 40.976-33.408 12.256-68.48 18.464-104.256 18.464-167.152 0-303.152-136-303.152-303.152s136-303.152 303.152-303.152c35.424 0 70.176 6.096 103.312 18.128 16.576 6.016 25.12 24.336 19.104 40.896-6.016 16.576-24.32 25.12-40.896 19.104zM323.728 570.992c6.736 0 13.52-0.544 20.144-1.616 17.36-2.944 33.808 8.96 36.64 26.352 2.832 17.408-8.976 33.808-26.368 36.64-10 1.632-20.24 2.464-30.416 2.464-103.024 0-186.832-83.808-186.832-186.832s83.808-186.832 186.832-186.832c10.352 0 20.736 0.864 30.832 2.544 17.392 2.896 29.136 19.344 26.24 36.736-2.896 17.376-19.392 29.088-36.736 26.24-6.656-1.104-13.504-1.664-20.352-1.664-67.824 0-122.992 55.168-122.992 122.992s55.168 122.992 122.992 122.992zM707.488 479.344c-23.312 11.056-27.264 14.672-27.264 19.904 0 2.384 0 5.968 7.248 8.976 9.792 4.048 22.88 2.112 27.2-2.224 12.464-12.464 32.672-12.464 45.152 0 12.464 12.448 12.464 32.672 0 45.136-8.896 8.896-20.464 15.296-33.184 19.088v9.776c0 17.632-14.288 31.92-31.92 31.92s-31.92-14.288-31.92-31.92v-12.912c-29.072-12.128-46.432-37.472-46.432-67.84 0-47.408 38.384-65.584 63.776-77.616 26.736-12.656 30.544-16.8 30.544-25.504 0-3.408-8.944-10.592-15.984-10.592-11.664 0-30.288 8.096-35.424 12.24-12.48 12.144-32.464 12.032-44.816-0.32-12.464-12.464-12.464-32.672 0-45.136 9.44-9.44 28.256-19.504 48.32-25.424v-10.896c0-17.632 14.288-31.92 31.92-31.92s31.92 14.288 31.92 31.92v12.688c26.192 11.392 47.904 35.952 47.904 67.456 0 51.456-41.984 71.328-67.072 83.2zM689.856 735.312c-158.672 0-287.312-128.624-287.312-287.312s128.624-287.312 287.312-287.312 287.312 128.64 287.312 287.312-128.64 287.312-287.312 287.312zM689.856 224.544c-123.216 0-223.456 100.24-223.456 223.456s100.24 223.456 223.456 223.456 223.456-100.24 223.456-223.456-100.24-223.456-223.456-223.456z" /> -<glyph unicode="" glyph-name="money-rotation" d="M517.392 269.744c17.904 0 32.416 14.512 32.416 32.416v15.872c28.768 11.808 52.928 38.4 52.928 72.672 0 55.040-43.6 75.696-72.464 89.36-25.824 12.24-31.76 16.816-31.76 24.576 0 2.976 0 8.512 9.76 12.544 12.224 5.056 27.568 2.512 33.184-3.072 12.64-12.656 33.184-12.656 45.824 0 12.656 12.656 12.656 33.168 0 45.824-9.968 9.968-23.104 16.912-37.488 20.88v13.024c0 17.904-14.512 32.416-32.416 32.416s-32.416-14.512-32.416-32.416v-16.288c-0.496-0.192-1.024-0.304-1.52-0.496-31.168-12.896-49.776-40-49.776-72.432 0-50.56 41.424-70.176 68.832-83.152 29.424-13.936 35.376-19.12 35.376-30.784 0-6.128-11.888-14.56-20.512-14.56-14.592 0-36.048 10.064-41.040 14.24-12.688 12.384-33.024 12.32-45.6-0.256-12.64-12.672-12.64-33.184 0.016-45.84 10.496-10.48 31.792-21.648 54.208-27.92v-14.208c0-17.904 14.512-32.416 32.416-32.416zM196.896 319.328c-51.952 127.248-22.72 272.256 74.464 369.44 129.12 129.088 336.752 132.176 470.112 10.096l-93.68 0.416c-17.84 0-32.336-14.416-32.416-32.272-0.080-17.904 14.368-32.48 32.272-32.56l165.472-0.736c8.576 0 16.8 3.408 22.88 9.456 6.112 6.096 9.536 14.352 9.536 22.976l-0.112 165.44c0 17.904-14.528 32.4-32.416 32.4h-0.016c-17.904 0-32.4-14.528-32.384-32.432l0.064-80.256c-158.912 140.944-402.96 135.424-555.104-16.704-115.68-115.68-150.48-288.32-88.64-439.776 5.12-12.56 17.248-20.176 30.016-20.176 4.080 0 8.224 0.768 12.24 2.416 16.576 6.752 24.528 25.68 17.76 42.256zM889.84 594.592c-6.48 16.704-25.248 24.976-41.936 18.528-16.688-6.48-24.976-25.248-18.528-41.92 48.656-125.68 18.528-268.448-76.736-363.728-129.024-129.008-336.464-132.176-469.824-10.352l93.6-0.416c17.84 0 32.336 14.416 32.416 32.272 0.080 17.904-14.368 32.48-32.272 32.56l-165.328 0.736c-8.64 0.816-16.896-3.376-23.024-9.456-6.112-6.096-9.536-14.368-9.536-22.992l0.128-165.44c0-17.888 14.528-32.384 32.416-32.384h0.016c17.904 0 32.4 14.528 32.384 32.448l-0.064 80.32c76.384-67.664 172.4-101.584 268.432-101.584 103.744 0 207.504 39.504 286.48 118.48 113.408 113.408 149.264 283.36 91.36 432.944z" /> -<glyph unicode="" glyph-name="money-target" d="M519.984 713.136h-16.896c-17.664 0-32-14.336-32-32s14.336-32 32-32h16.896c17.664 0 32 14.336 32 32s-14.336 32-32 32zM876.176 368.128c-16.912 5.264-34.816-4.176-40.064-21.056-44.352-142.608-174.608-238.416-324.112-238.416-17.664 0-32-14.336-32-32v-76.64c0-17.664 14.336-32 32-32s32 14.336 32 32v45.872c164.048 12.768 303.68 122.928 353.216 282.192 5.248 16.88-4.176 34.816-21.040 40.064zM960 480h-45.872c-12.752 164.048-122.912 303.664-282.176 353.232-16.864 5.248-34.816-4.176-40.064-21.056s4.176-34.816 21.040-40.064c142.608-44.352 238.432-174.608 238.432-324.112 0-17.664 14.336-32 32-32h76.64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM147.824 527.872c3.168-0.992 6.368-1.456 9.52-1.456 13.648 0 26.288 8.8 30.544 22.512 44.352 142.608 174.608 238.416 324.112 238.416 17.664 0 32 14.336 32 32v76.64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-45.872c-164.048-12.768-303.68-122.928-353.216-282.192-5.248-16.88 4.176-34.816 21.040-40.064zM411.040 123.904c-142.608 44.352-238.416 174.608-238.416 324.096 0 17.664-14.336 32-32 32h-76.64c-17.664 0-32-14.336-32-32s14.336-32 32-32h45.872c12.752-164.032 122.912-303.664 282.16-353.216 3.168-0.992 6.368-1.456 9.52-1.456 13.648 0 26.288 8.8 30.544 22.512 5.248 16.88-4.176 34.8-21.040 40.064zM543.536 575.456c0 17.664-14.336 32-32 32s-32-14.336-32-32v-11.728c-28.064-12.032-44.832-36.688-44.832-66.24 0-46.496 37.456-64.256 62.256-75.984 25.232-11.952 28.816-15.76 28.816-23.584 0-2.48-7.904-9.040-14.24-9.040-10.912 0-28.48 7.616-33.424 11.536-12.512 12.096-32.48 11.984-44.88-0.352-12.496-12.496-12.512-32.752-0.016-45.248 9.088-9.104 27.072-18.8 46.32-24.624v-9.632c0-17.664 14.336-32 32-32s32 14.336 32 32v11.504c25.36 11.312 46.24 35.264 46.24 65.872 0 50.416-40.96 69.824-65.424 81.424-21.936 10.384-25.648 13.648-25.648 18.144 0 2.224 0 4.976 6.272 7.568 9.808 4.080 21.536 1.552 24.992-1.872 12.48-12.496 32.768-12.496 45.248 0 12.496 12.496 12.496 32.752 0 45.248-8.528 8.528-19.536 14.752-31.664 18.496v8.528zM511.536 247.776c-110.656 0-200.672 90.032-200.672 200.688 0 67.936 34 130.752 90.944 168.048 14.784 9.664 18.928 29.52 9.248 44.304s-29.52 18.944-44.304 9.232c-75.056-49.152-119.872-131.984-119.872-221.584 0-145.952 118.736-264.688 264.672-264.688s264.672 118.736 264.672 264.688c0 89.632-44.816 172.448-119.888 221.6-14.8 9.664-34.624 5.536-44.304-9.248-9.68-14.8-5.536-34.624 9.248-44.32 56.944-37.264 90.928-100.080 90.928-168.032 0-110.656-90.016-200.688-200.672-200.688z" /> -<glyph unicode="" glyph-name="more-horiz" d="M832 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM832 425.984c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992zM192 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM192 425.984c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992zM511.019 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM511.019 425.984c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992z" /> -<glyph unicode="" glyph-name="more-vert" d="M512 233.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM512 105.984c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992zM512 660.011c59.008 0 107.008 48 107.008 107.008s-48 107.008-107.008 107.008-107.008-48-107.008-107.008 48-107.008 107.008-107.008zM512 788.011c11.563 0 20.992-9.429 20.992-20.992s-9.429-20.992-20.992-20.992-20.992 9.429-20.992 20.992 9.429 20.992 20.992 20.992zM512 555.008c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM512 427.008c-11.563 0-20.992 9.429-20.992 20.992s9.429 20.992 20.992 20.992 20.992-9.429 20.992-20.992-9.429-20.992-20.992-20.992z" /> -<glyph unicode="" glyph-name="mouse" d="M766.464 560.683v14.293h-1.963c-20.181 121.045-125.397 213.333-252.16 213.333s-232.021-92.288-252.16-213.333h-2.645v-21.291c-0.597-6.955-0.853-13.995-0.853-21.077v-45.867c0-2.859 0.299-5.632 0.853-8.277v-203.733c0-140.544 113.92-254.464 254.464-254.464 70.272 0 133.888 28.501 179.925 74.539 46.080 46.080 74.539 109.653 74.539 179.925v201.131c0.981 3.456 1.536 7.083 1.536 10.88v45.867c0 9.472-0.512 18.859-1.536 28.032zM680.491 274.816c0-92.885-75.563-168.448-168.491-168.448s-168.491 75.563-168.491 168.448v172.203h125.824v-21.333c0-23.723 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v21.333h125.141v-172.203zM348.032 575.019c18.859 73.131 85.376 127.36 164.309 127.36s145.451-54.187 164.309-127.36c3.456-13.44 5.333-27.52 5.333-41.984h-126.677v41.984c0 23.723-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-41.984h-126.677c0 14.507 1.877 28.544 5.376 41.984z" /> -<glyph unicode="" glyph-name="mouse-127" d="M512.341 788.352c-141.184 0-255.659-114.475-255.659-255.659v-290.517c0-122.496 114.475-221.824 255.659-221.824s255.659 99.328 255.659 221.824v290.517c0 141.184-114.475 255.659-255.659 255.659zM681.6 242.176c0-80.981-75.947-146.859-169.259-146.859s-169.259 65.877-169.259 146.859v186.709h126.293v-3.2c0-23.723 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v3.2h126.251v-186.709zM555.349 532.992v41.984c0 23.723-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008v-41.984h-126.677c0.171 93.397 76.203 169.344 169.685 169.344s169.472-75.947 169.643-169.344h-126.677z" /> -<glyph unicode="" glyph-name="music-note" d="M887.083 861.013c-9.899 10.112-24.107 14.763-38.059 12.331l-248.747-42.667c-18.261-3.115-32.427-17.579-35.243-35.883l-25.173-164.565c-1.195-3.925-1.877-8.064-1.877-12.331l-33.365-217.984c-1.152 0.853-2.347 1.707-3.499 2.56-41.003 28.971-94.805 44.928-151.424 44.928s-110.421-15.957-151.424-44.928c-44.885-31.701-70.656-77.099-70.656-124.544s25.728-92.843 70.656-124.544c41.003-28.971 94.805-44.928 151.424-44.928s110.421 15.957 151.424 44.928c41.387 29.227 66.517 70.144 70.144 113.536l47.957 313.387 209.664 34.005c17.749 2.859 31.829 16.512 35.328 34.133l34.261 174.251c2.731 13.867-1.536 28.203-11.435 38.315zM349.739 194.475c-72.491 0-136.064 38.997-136.064 83.456s63.573 83.499 136.064 83.499 136.064-38.997 136.064-83.499-63.573-83.456-136.064-83.456zM785.621 694.4l-152.704-24.747 12.459 81.536 156.672 26.88-16.469-83.669z" /> -<glyph unicode="" glyph-name="nav-menu" d="M872.672 732.42h-721.34c-12.96 0-23.5-10.54-23.5-23.5v-112.36c0-12.94 10.54-23.5 23.5-23.5h721.34c12.96 0 23.5 10.56 23.5 23.5v112.36c0 12.96-10.54 23.5-23.5 23.5zM853.172 616.062h-682.34v73.36h682.34v-73.36zM202.718 630.97h614.876c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-614.876c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM872.672 527.76h-721.34c-12.96 0-23.5-10.54-23.5-23.5v-112.34c0-12.96 10.54-23.5 23.5-23.5h721.34c12.96 0 23.5 10.54 23.5 23.5v112.34c0 12.96-10.54 23.5-23.5 23.5zM853.172 411.42h-682.34v73.34h682.34v-73.34zM202.718 426.32h614.876c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-614.876c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM872.672 323.12h-721.34c-12.96 0-23.5-10.54-23.5-23.5v-112.36c0-12.96 10.54-23.5 23.5-23.5h721.34c12.96 0 23.5 10.54 23.5 23.5v112.36c0 12.96-10.54 23.5-23.5 23.5zM730.152 221.66h-527.44c-11.86 0-21.5 9.64-21.5 21.5s9.64 21.5 21.5 21.5h527.44c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5zM877.612 197.1c0-3-1.1-5.74-2.94-7.86-1.78-2.060-4.24-3.52-7.060-3.98h-86.74l96.74 96.76v-84.92z" /> -<glyph unicode="" glyph-name="network-wifi" d="M512 272.683c-18.176 0-34.645-7.381-46.549-19.285s-19.285-28.373-19.285-46.549c0-36.352 29.483-65.835 65.835-65.835s65.835 29.483 65.835 65.835c0 18.176-7.381 34.645-19.285 46.549s-28.373 19.285-46.549 19.285zM512 491.221c-81.792 0-158.72-31.872-216.576-89.685-16.811-16.768-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.379 12.587c41.643 41.6 96.939 64.512 155.776 64.512s114.133-22.912 155.776-64.512c16.811-16.768 44.032-16.768 60.8 0 16.768 16.811 16.768 44.032 0 60.8-57.856 57.856-134.784 89.685-216.576 89.685zM883.755 556.672c-99.328 99.285-231.339 153.984-371.755 153.984s-272.427-54.699-371.755-153.984c-16.811-16.811-16.811-44.032 0-60.8s44.032-16.811 60.8 0c83.072 83.029 193.493 128.768 310.912 128.768s227.883-45.739 310.912-128.768c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.768 44.032 0 60.8z" /> -<glyph unicode="" glyph-name="news-ticker" d="M895.531 575.75h-666.422c-18.546 0-34.926-11.326-40.395-27.931l-58.057-176.272c-8.392-25.482 11.937-51.298 40.395-51.298h666.422c18.546 0 34.926 11.326 40.395 27.931l58.057 176.272c8.392 25.48-11.937 51.298-40.395 51.298zM837.622 363.17c-0.046-0.002-0.096-0.004-0.148-0.004h-569.526l-69.568 76.814 30.582 92.851c0.046 0.002 0.096 0.004 0.148 0.004h664.394l-55.881-169.665zM256.499 618.168h617.46c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-617.46c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM490.71 235.25h-247.654c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h247.654c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM794.355 277.832h-239.77c-11.851 0-21.458-9.607-21.458-21.458v-85.168c0-11.851 9.607-21.458 21.458-21.458h239.77c11.851 0 21.458 9.607 21.458 21.458v85.168c0 11.851-9.607 21.458-21.458 21.458zM772.896 192.665h-196.854v42.251h196.854v-42.251zM597.168 426.542h227.879c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-227.879c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM490.71 426.542h42.583c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-42.583c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM364.235 426.542h42.583c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-42.583c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM256.499 426.805h21.292c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-21.292c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458z" /> -<glyph unicode="" glyph-name="night-light-moon" d="M787.584 192.256c-44.8 26.112-81.109 61.909-107.989 106.496-26.88 44.672-39.979 93.483-39.979 149.248s13.056 104.576 39.979 149.248c26.837 44.587 63.189 80.427 107.989 106.496 13.184 7.68 21.291 21.76 21.376 37.035s-7.979 29.397-21.12 37.163c-27.989 16.555-58.581 29.44-90.923 38.315s-66.091 13.397-100.267 13.397c-51.968 0-101.845-10.155-148.267-30.165-45.995-19.84-86.827-47.403-121.301-81.877s-61.995-75.093-81.835-120.789c-20.053-46.165-30.208-96.213-30.208-148.779 0-51.968 10.155-101.845 30.165-148.224 19.84-45.995 47.403-86.827 81.877-121.301s75.264-62.037 121.301-81.877c46.421-20.011 96.299-30.165 148.267-30.165 34.176 0 67.925 4.523 100.267 13.397s62.891 21.76 90.923 38.315c13.141 7.765 21.163 21.888 21.12 37.163s-8.192 29.355-21.376 37.035zM674.133 162.731c-24.917-6.827-51.029-10.325-77.483-10.325-40.149 0-78.592 7.808-114.176 23.125-36.011 15.531-67.797 36.992-94.549 63.744s-48.213 58.581-63.744 94.549c-15.36 35.584-23.125 73.984-23.125 114.176 0 40.704 7.765 79.232 23.083 114.517 15.531 35.755 36.992 67.456 63.787 94.251 26.752 26.752 58.581 48.213 94.549 63.744 35.584 15.36 74.027 23.125 114.176 23.125 26.496 0 52.565-3.456 77.483-10.325 2.005-0.555 4.053-1.152 6.059-1.707-28.885-25.813-53.717-55.893-74.24-89.941-34.688-57.643-52.309-122.752-52.309-193.621s17.579-135.979 52.309-193.621c20.523-34.048 45.355-64.128 74.24-89.941-2.005-0.597-4.011-1.152-6.059-1.707z" /> -<glyph unicode="" glyph-name="note-hashtag" d="M736 448h-7.008l6.064 24.24c4.288 17.152-6.144 34.528-23.28 38.816-17.104 4.288-34.512-6.144-38.816-23.28l-9.936-39.76h-62.016l6.064 24.24c4.288 17.152-6.144 34.528-23.28 38.816-17.072 4.288-34.512-6.144-38.816-23.28l-9.936-39.76h-23.008c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.008l-17.424-69.712h-22.72c-17.664 0-32-14.336-32-32s14.336-32 32-32h6.72l-4.624-18.512c-4.288-17.152 6.144-34.528 23.28-38.816 2.608-0.656 5.216-0.96 7.792-0.96 14.336 0 27.376 9.696 31.008 24.24l8.512 34.048h62.016l-4.624-18.512c-4.288-17.152 6.144-34.528 23.28-38.816 2.608-0.656 5.216-0.96 7.792-0.96 14.336 0 27.376 9.696 31.008 24.24l8.512 34.048h31.296c17.664 0 32 14.336 32 32s-14.336 32-32 32h-15.296l17.424 69.712h23.008c17.664 0 32 14.336 32 32s-14.336 32-32 32zM629.584 314.288h-62.016l17.424 69.712h62.016l-17.424-69.712zM928 800h-768c-35.296 0-64-28.704-64-64v-64c-35.296 0-64-28.704-64-64v-448c0-35.296 28.704-64 64-64h704c35.296 0 64 28.704 64 64h64c35.296 0 64 28.704 64 64v512c0 35.296-28.704 64-64 64zM96 608h85.712v-448h-85.712v448zM800 160h-554.288v448h554.288v-448zM928 224h-64v384c0 35.296-28.704 64-64 64h-640v64h768v-512zM412.576 546.288h-99.44c-17.664 0-32-14.336-32-32s14.336-32 32-32h99.44c17.664 0 32 14.336 32 32s-14.336 32-32 32zM346.288 446.864h-33.136c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.136c17.664 0 32 14.336 32 32s-14.336 32-32 32zM346.288 281.136h-33.136c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.136c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="notes" d="M896 704h-37.6c-13.216 37.232-48.688 64-90.4 64h-37.6c-13.216 37.232-48.688 64-90.4 64h-32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-32c-52.944 0-96-43.056-96-96v-608c0-2.144 0.224-4.256 0.64-6.32 0.288-1.408 0.784-2.736 1.232-4.080 0.224-0.624 0.336-1.28 0.592-1.888 0.608-1.456 1.408-2.816 2.208-4.144 0.256-0.432 0.448-0.928 0.736-1.344 1.168-1.744 2.496-3.376 3.984-4.848l95.952-95.952c1.472-1.488 3.104-2.816 4.848-3.984 0.432-0.288 0.912-0.464 1.344-0.736 1.344-0.816 2.688-1.6 4.144-2.208 0.608-0.256 1.264-0.368 1.888-0.592 1.344-0.464 2.656-0.96 4.080-1.232 2.064-0.416 4.192-0.64 6.32-0.64h736c52.944 0 96 43.056 96 96v511.968c0 52.944-43.056 96-96 96zM800 672v-576c0-17.936-14.064-32-32-32h-37.6c3.568 10.032 5.6 20.768 5.6 32v608h32c17.936 0 32-14.064 32-32zM128 768h32v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h32c17.936 0 32-14.064 32-32v-640c0-17.936-14.064-32-32-32h-448v64c0 17.664-14.336 32-32 32h-64v576c0 17.936 14.064 32 32 32zM928 96c0-17.936-14.064-32-32-32h-37.6c3.568 10.032 5.6 20.768 5.6 32v544h32c17.936 0 32-14.064 32-32v-512zM224 544h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM224 384h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM224 224h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="notification" d="M512 20.864c58.667 0 106.24 47.488 106.411 106.155h-212.821c0.128-58.624 47.701-106.155 106.411-106.155zM811.008 233.984v298.325c0 164.864-134.144 299.008-299.008 299.008s-299.008-134.144-299.008-299.008v-298.325c-23.595-0.171-42.667-19.371-42.667-43.008 0-23.723 19.243-43.008 43.008-43.008h597.333c23.765 0 43.008 19.243 43.008 43.008 0 23.637-19.072 42.837-42.667 43.008zM299.008 233.984v298.325c0 117.461 95.573 212.992 212.992 212.992s212.992-95.573 212.992-212.992v-298.325h-425.984zM512 745.344c-23.765 0-43.008 19.243-43.008 43.008v42.667c0 23.765 19.243 43.008 43.008 43.008s43.008-19.243 43.008-43.008v-42.667c0-23.765-19.243-43.008-43.008-43.008z" /> -<glyph unicode="" glyph-name="number" d="M770.746 617.834h-601.32c-22.934 0-41.592-18.904-41.592-42.138 0-11.876 9.626-21.498 21.5-21.498 11.584 0 21.030 9.162 21.484 20.636h598.52v-277.044l-63.954-63.956h-534.568c-0.452 11.474-9.898 20.638-21.484 20.638-11.874 0-21.5-9.624-21.5-21.5 0-23.234 18.658-42.138 41.592-42.138h601.32c22.934 0 41.592 18.904 41.592 42.138v342.722c0 23.234-18.658 42.138-41.592 42.138zM932.536 424.274c-8.396 8.394-22.010 8.394-30.406 0l-23.382-23.384-10.168 10.168c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.572 53.79 53.79c8.396 8.396 8.396 22.010 0 30.406zM236.672 660.162h345.76c12.96 0 23.5 10.54 23.5 23.5v124c0 12.96-10.54 23.5-23.5 23.5h-345.76c-12.96 0-23.5-10.54-23.5-23.5v-124c0-12.96 10.54-23.5 23.5-23.5zM256.172 788.162h306.76v-85h-306.76v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5zM752.692 331.622v164.38c0 19.32-17.2 35.040-38.34 35.040h-614.92c-18.54 0-33.6-15.72-33.6-35.040v-183.34c0-19.32 15.060-35.040 33.6-35.040h599.26l54 54zM582.972 359.122c-3.44 4.32-2.72 10.62 1.62 14.040 4.32 3.44 10.6 2.72 14.040-1.6l24.12-30.36 23.94 30.16c3.44 4.32 9.74 5.040 14.060 1.6 4.32-3.42 5.040-9.72 1.6-14.040l-31.78-40c-1.9-2.4-4.78-3.78-7.82-3.78-3.060 0-5.94 1.38-7.84 3.78l-1.36 1.7-30.58 38.5zM662.352 449.542c3.44-4.32 2.72-10.6-1.6-14.040-1.84-1.46-4.040-2.18-6.22-2.18-2.94 0-5.86 1.3-7.84 3.78l-24.1 30.36-23.96-30.16c-3.44-4.32-9.72-5.040-14.040-1.6-4.34 3.42-5.060 9.72-1.62 14.040l31.78 40.020c1.9 2.38 4.78 3.76 7.84 3.76 3.040 0 5.92-1.38 7.82-3.76l1.36-1.72 30.58-38.5zM108.832 488.042h405.32v-73.7h197.84c5.52 0 10-4.48 10-10s-4.48-10-10-10h-197.84v-73.72h-405.32v167.42zM394.912 425.834h-216.556c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h216.556c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="open-in-new" d="M853.333 831.616h-320c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h216.448l-353.536-353.536c-16.811-16.811-16.811-44.032 0-60.8 8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l353.28 353.28v-216.192c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008v320.256c0 23.765-19.243 43.008-43.008 43.008zM768 361.984c-23.765 0-43.008-19.243-43.008-43.008v-127.659h-468.651v468.693h127.659c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008h-132.181c-44.928 0-81.493-36.565-81.493-81.493v-477.653c0-44.928 36.565-81.493 81.493-81.493h477.653c44.928 0 81.493 36.565 81.493 81.493v132.181c0 23.765-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="paper-form" d="M880 928h-752c-52.944 0-96-43.056-96-96v-768c0-52.944 43.056-96 96-96h608c52.944 0 96 43.056 96 96v352h128c17.664 0 32 14.336 32 32v368c0 61.744-50.24 112-112 112zM768 64c0-17.936-14.048-32-32-32h-608c-17.952 0-32 14.064-32 32v768c0 17.936 14.048 32 32 32h650.96c-6.96-14.576-10.96-30.816-10.96-48v-752zM928 480h-96v336c0 26.464 21.536 48 48 48s48-21.536 48-48v-336zM672 736h-480c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h480c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 608h-416v64h416v-64zM672 496h-480c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h480c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 368h-416v64h416v-64zM320 768h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM416 256h-224c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h224c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM384 128h-160v64h160v-64zM672 256h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 128h-64v64h64v-64z" /> -<glyph unicode="" glyph-name="paper-plane" d="M989.456 879.632c-3.12 10.576-8.832 20.4-17.328 29.2-7.952 7.712-17.792 13.472-29.68 16.976-11.264 2.864-22.896 2.912-33.392 0.224l-698.816-172.528c-22.64-5.664-43.456-16.928-60.080-32.432-16.768-15.488-29.568-35.248-37.072-57.344l-75.664-227.232c-7.472-22.256-7.152-46.72 0.96-69.072 8.208-22.208 23.92-41.12 44.16-53.2l156.4-94.016-73.36-73.36c-12.48-12.48-12.496-32.72-0.032-45.216l68.16-68.336c6.080-6.096 14.272-9.408 22.656-9.408 2.656 0 5.328 0.336 7.984 1.008l95.296 24.528 18.528-30.832c12.144-20.32 31.056-36.016 53.408-44.288 11.552-4.192 23.712-6.304 35.872-6.304 11.168 0 22.32 1.776 32.96 5.328l227.536 75.792c21.904 7.456 41.664 20.272 57.024 36.912 15.616 16.736 26.864 37.552 32.576 60.304l172.384 698.432c2.784 10.8 2.72 22.448-0.48 34.864zM98.464 389.424c-3.136 8.624-3.28 18.096-0.368 26.752l75.632 227.136c4.016 11.824 10.896 22.464 19.952 30.848 8.976 8.352 19.76 14.176 32 17.232l643.264 158.8-583.376-583.376-170.144 102.272c-7.936 4.752-13.824 11.824-16.96 20.336zM266.080 91.424l-32.672 32.752 50.768 50.768 41.040-68.288-59.152-15.216zM755.408 161.792c-3.088-12.336-8.896-23.136-17.36-32.208-8.272-8.976-18.912-15.824-30.544-19.792l-227.36-75.728c-8.608-2.864-18.096-2.736-26.544 0.336-8.672 3.2-15.76 9.088-20.544 17.088l-102.224 170.080 583.344 583.36-158.768-643.136z" /> -<glyph unicode="" glyph-name="pause" d="M383.317 830.891h-169.344c-47.488 0-86.016-38.485-86.016-86.016v-593.792c0-47.488 38.485-86.016 86.016-86.016h169.344c47.488 0 86.016 38.485 86.016 86.016v593.792c0 47.488-38.485 86.016-86.016 86.016zM383.317 151.125h-169.344v593.749s169.344 0 169.344 0v-593.792zM810.027 830.891h-169.344c-47.488 0-86.016-38.485-86.016-86.016v-593.792c0-47.488 38.485-86.016 86.016-86.016h169.344c47.488 0 86.016 38.485 86.016 86.016v593.792c0 47.488-38.485 86.016-86.016 86.016zM810.027 744.875v-593.792h-169.344v593.792s169.344 0 169.344 0v0z" /> -<glyph unicode="" glyph-name="paypal" d="M893.008 540.176c-8.368 42.064-28.896 75.552-60.992 99.52-5.024 3.76-10.608 6.24-16.352 7.52 0.992 23.552-1.104 45.664-6.288 66.256-15.168 60.224-56.672 105.024-119.984 129.584-63.696 24.72-95.584 24.544-248.816 23.68-35.008-0.192-78.576-0.448-130.448-0.448-38.624 0-72.224-28.592-78.128-66.432l-104.48-663.056c-0.048-0.288-0.080-0.576-0.128-0.848-2.56-18.624 3.040-37.392 15.344-51.504 12.256-14.048 30.064-22.112 48.832-22.112h91.168l-5.344-41.328c-1.584-12.272 2.176-24.624 10.352-33.904 8.16-9.296 19.936-14.608 32.304-14.608h165.008c35.408 0 66.192 25.744 73.2 61.232 0.176 0.928 0.336 1.872 0.464 2.816 0.144 1.104 0.24 1.872 0.32 2.528 0.416 3.44 0.816 5.936 14.016 88.896l10.976 68.976s0 0.080 0.016 0.112c0.832 0 1.632-0.016 2.384-0.032 2.432-0.032 4.944-0.064 7.552-0.064 163.904 0 266.592 81.216 296.96 234.88 0.032 0.144 0.064 0.288 0.080 0.448 7.552 40.416 8.224 76.72 2.016 107.92zM325.952 356.544s-0.016-0.096-0.032-0.144c-4.128-22.672-15.936-97.312-25.856-160.208-0.032-0.176-0.048-0.336-0.080-0.512-0.4-2.544-0.8-5.056-1.184-7.552-2.288-14.48-4.432-28.032-6.288-39.808h-76.128l99.584 631.968c49.552 0.016 91.296 0.256 125.088 0.448 149.552 0.848 168.768 0.96 217.232-17.856 37.248-14.448 59.392-37.472 67.696-70.416 8.224-32.624 3.296-75.92-14.224-125.248-0.048-0.144-0.096-0.288-0.144-0.432-30.048-87.488-98.608-130.656-209.808-131.968-13.568-0.224-26.112 0.048-38.256 0.304-29.936 0.64-55.792 1.2-78.768-6.56-22.096-7.456-50.256-26-58.8-72.032zM806.496 448.272c-11.904-60.032-35.984-102.224-73.648-129.040-33.872-24.096-80.592-36.32-138.896-36.32-2.176 0-4.288 0.032-6.336 0.064-23.792 0.336-73.28 1.040-88-69.376-0.144-0.672-0.272-1.36-0.368-2.048l-11.168-70.112c-8.464-53.136-11.744-73.792-13.168-82.992h-105.984l16.144 124.624c9.84 62.304 21.488 136.048 25.456 157.808 0.624 3.312 1.296 5.248 1.712 6.24 7.584 2.912 31.664 2.4 49.456 2.016 12.336-0.256 26.32-0.56 41.312-0.32 147.504 1.744 247.728 67.376 289.872 189.808 1.632 4.608 3.184 9.184 4.64 13.728 21.84-34.704 12.528-85.152 8.992-104.096z" /> -<glyph unicode="" glyph-name="pen" d="M992 819.056c0 16.832-6.896 33.312-18.832 45.152l-44.864 44.864c-11.952 12.032-28.432 18.928-45.248 18.928s-33.296-6.896-45.152-18.848l-50.688-50.688c-49.904 18.208-105.968-27.104-129.44-46.192-0.352-0.288-0.704-0.576-1.040-0.88l-42.432-37.632c-3.536-3.344-7.136-6.8-11.328-10.912l-41.968-42.864c-36.928-39.808-71.472-82.928-79.968-122.96-0.544-0.48-1.152-0.848-1.664-1.36l-90-90c-1.136-1.136-2.048-2.4-2.992-3.648-47.552-11.472-105.264-59.648-172.736-127.136-73.136-73.152-111.52-135.216-139.472-202.896-0.368-0.8-0.72-1.6-1.008-2.432-13.696-33.536-24.96-68.48-36.576-106.912-9.232-30.56-4.224-58.4 13.744-76.352 12.032-12.048 28.496-18.256 47.232-18.256 9.184 0 18.928 1.504 28.944 4.528 38.384 11.6 73.28 22.816 106.784 36.48 1.040 0.368 2.048 0.8 3.056 1.28 67.568 27.92 129.568 66.288 202.56 139.296 67.456 67.472 115.648 125.184 127.12 172.736 1.248 0.928 2.528 1.856 3.664 2.992l90 90c0.48 0.48 0.8 1.024 1.248 1.52 6.688 1.376 13.584 3.472 20.704 6.384 34.272 14 76.672 46.976 133.44 103.744 23.552 23.552 45.776 47.248 64.24 70.512l3.664-3.648c24.72-24.736 24.72-64.96 0-89.696l-157.472-157.648c-12.496-12.496-12.48-32.768 0.016-45.248 6.256-6.24 14.432-9.36 22.624-9.36s16.384 3.12 22.64 9.392l157.456 157.632c49.68 49.664 49.68 130.512 0 180.192l-13.392 13.392c11.84 25.168 15.68 49.056 7.68 70.736l50.56 50.544c12.016 11.936 18.928 28.416 18.928 45.248zM229.824 77.296l-88.544 88.528c8.976 19.728 19.104 38.96 31.264 58.256l115.536-115.536c-19.296-12.16-38.528-22.272-58.256-31.248zM108 33.84c-6.192-1.856-10-2-11.92-1.76-0.192 1.952-0.112 5.808 1.776 12.080 6.032 19.936 11.888 38.672 17.984 56.624l48.928-48.928c-18-6.112-36.768-11.968-56.768-18zM393.664 194.896c-18.432-18.416-35.984-34.352-53.088-48.352l-130.032 130.032c14 17.104 29.936 34.656 48.368 53.088 129.088 129.088 152.096 109.104 152.992 108.256l90-90c0.912-0.928 20.88-23.872-108.24-153.008zM547.072 393.248l-89.824 89.808 44.192 44.192s0.112-0.144 0.192-0.224l89.392-89.408s0.16-0.112 0.224-0.192l-44.192-44.192zM769.84 572.288c-49.184-49.168-87.008-79.376-112.4-89.76-14.752-6-17.712-3.040-21.152 0.352l-89.392 89.408c-16.688 16.688 37.136 78.416 60.448 103.568l40.864 41.712c3.424 3.344 6.784 6.576 9.312 8.992l41.152 36.48c26.192 21.2 59.584 43.824 71.184 32.208l89.392-89.408c13.824-13.824-19.6-63.744-89.392-133.552zM882.16 773.408l-44.784 44.784 45.6 45.712 44.944-44.752-45.76-45.744z" /> -<glyph unicode="" glyph-name="pencil" d="M963.984 810.016l-90.032 90.048c-37.36 37.104-98 37.088-135.12-0.048l-50.944-50.816c-0.72 0.224-1.376 0.512-2.096 0.72-11.664 2.896-23.888 2.528-35.184-0.976-11.536-3.552-21.824-10.112-29.456-18.608-8.24-8.88-13.792-19.888-16-31.504l-5.92-29.312-29.536-5.856c-11.552-2.464-21.92-7.712-30.864-15.664-8.848-7.888-15.424-18.112-19.328-30.576-3.168-11.36-3.36-23.312-0.528-34.672 0.16-0.656 0.448-1.264 0.624-1.92l-455.648-455.712c-5.136-5.136-8.368-11.856-9.184-19.072l-22.56-202.496c-1.072-9.664 2.304-19.296 9.184-26.176 6.032-6.032 14.192-9.376 22.624-9.376 1.184 0 2.352 0.064 3.552 0.208l202.496 22.56c7.216 0.8 13.952 4.032 19.072 9.168l67.232 67.232s0.144 0.112 0.208 0.176l388.256 388.256c0.704-0.208 1.36-0.496 2.064-0.672 5.136-1.28 10.416-1.936 15.84-1.936 6.416 0 12.992 0.928 19.712 2.8 11.424 3.6 21.648 10.176 29.568 19.040 7.936 8.912 13.2 19.296 15.76 31.296l5.776 29.088 28.88 5.824c12 2.32 23.040 7.872 31.584 15.76 8.864 7.952 15.408 18.272 18.88 29.6 3.6 11.424 3.968 23.664 0.832 36.208-0.128 0.496-0.352 0.944-0.496 1.424l50.768 50.768c37.136 37.152 37.168 97.776 0 135.216zM251.808 53.12l-95.072-10.592-50.208 50.208 10.592 95.072 18.496 18.496c4.672-9.776 10.576-18.752 17.888-26.016 8.592-8.912 19.44-16.224 30.96-20.96 10.080-4.32 20.688-6.688 31.552-7.312 0.624-10.752 2.96-21.296 7.136-31.136 4.912-11.952 12.224-22.816 20.624-30.896 7.776-7.84 16.864-13.84 26.496-18.4l-18.48-18.48zM356.656 157.92c-0.096-0.096-0.208-0.144-0.288-0.24l-22.512-22.528c-2.944-2.944-6.304-5.168-10.976-7.072-6.864-2.992-15.184-3.328-23.664 0.32-3.776 1.552-7.136 3.792-10.512 7.184-2.576 2.48-4.768 5.808-6.48 9.968-1.648 3.872-2.464 7.856-2.464 11.856 0 4.128 0.8 8.032 2.672 12.384 1.536 3.808 3.728 7.104 6.704 10.080l22.528 22.512c12.496 12.48 12.496 32.752 0 45.248-12.496 12.48-32.752 12.512-45.264 0l-22.528-22.512c-2.992-2.992-6.288-5.168-10.928-7.056-6.912-3.024-15.28-3.312-23.712 0.288-3.824 1.584-7.184 3.776-10.16 6.864-2.896 2.88-5.152 6.256-6.896 10.464-1.6 3.712-2.4 7.664-2.4 11.696 0 4.16 0.784 8.032 2.672 12.384 1.504 3.744 3.776 7.12 6.672 10.048l22.56 22.544s0 0.016 0.016 0.032l337.216 337.248 134.72-134.72-336.992-336.992zM850.016 603.84l-50.048-10.096c-12.656-2.56-22.544-12.464-25.056-25.136l-9.84-49.584c-0.112-0.512-0.304-0.992-0.848-1.888-0.768-0.256-1.472-0.224-2.704 0.4l-180.496 180.864c-0.080 0.336-0.112 1.024 0.336 1.776 0.688 0.624 1.216 0.8 1.216 0.8l50 9.92c12.672 2.512 22.592 12.384 25.136 25.056l10.336 50.88c0.112 0.128 1.344 1.040 1.456 1.168 0.96-0.272 1.472-0.576 1.616-0.688 0 0 0.016 0 0.032 0l179.936-180.112c0.16-0.16 0.576-1.456 0.72-1.616-0.016-0.064-1.776-1.68-1.808-1.744zM918.736 720.048l-44.976-44.976-134.672 134.8 44.96 44.848c12.496 12.464 32.16 12.464 44.72 0l89.888-89.888c12.544-12.624 12.576-32.304 0.080-44.8z" /> -<glyph unicode="" glyph-name="pen-paintbrush" d="M456.72 219.904c22.688 0.528 45.2 7.968 64.128 22.272l48.048-47.936-2.576-58.736c-0.72-16.432 11.136-30.752 27.44-33.072l265.664-38.016c1.52-0.224 3.024-0.336 4.528-0.336 2.080 0 4.144 0.208 6.192 0.608 0.576 0.112 1.104 0.352 1.68 0.496 1.44 0.368 2.896 0.72 4.288 1.296 0.672 0.272 1.296 0.704 1.952 1.024 1.2 0.592 2.432 1.152 3.568 1.904 1.488 0.976 2.832 2.16 4.16 3.392 0.256 0.24 0.544 0.4 0.784 0.64 0 0 0 0 0 0s0 0 0 0c0.032 0.032 0.048 0.064 0.080 0.096 1.664 1.68 3.072 3.504 4.288 5.424 0.352 0.544 0.592 1.136 0.912 1.712 0.816 1.472 1.536 2.96 2.096 4.512 0.272 0.736 0.464 1.504 0.672 2.256 0.416 1.456 0.72 2.928 0.928 4.416 0.112 0.832 0.192 1.648 0.24 2.48 0.080 1.584 0.016 3.152-0.128 4.72-0.048 0.512 0.032 1.024-0.032 1.536l-38.016 265.776c-2.32 16.288-16.928 28.016-33.056 27.44l-58.624-2.544-38.544 38.448 215.856 189.424c29.824 26.288 47.104 62.544 48.672 102.32 1.328 39.984-13.44 77.424-41.456 105.248l-27.904 28.112c-27.728 27.664-65.792 43.024-105.552 41.472-39.84-1.6-76.144-18.992-102.112-48.864l-194.336-221.344-231.744 259.12c-25.808 28.736-60.864 44.064-99.232 42.768-38.112-1.12-76.24-18.896-107.328-50-31.232-31.232-49.056-69.408-50.192-107.504-1.136-37.712 14.464-73.856 42.816-99.136l268.16-240.032c-16.912-19.28-26.496-43.488-27.328-69.296-46.384 10.64-96.592 3.92-140.16-21.648-45.856-26.784-55.664-64.464-67.008-108.080-10.624-40.88-23.856-91.728-71.104-162.608-0.256-0.384-0.416-0.8-0.656-1.2-0.448-0.736-0.848-1.488-1.232-2.256-0.512-1.024-0.96-2.048-1.36-3.104-0.288-0.768-0.56-1.536-0.8-2.336-0.336-1.168-0.576-2.336-0.768-3.52-0.128-0.752-0.272-1.488-0.352-2.272-0.144-1.488-0.144-2.976-0.080-4.464 0.016-0.432-0.064-0.848-0.016-1.296 0-0.080 0.032-0.16 0.048-0.24 0.176-1.888 0.512-3.776 1.024-5.616 0.192-0.688 0.496-1.312 0.736-1.984 0.4-1.12 0.768-2.256 1.296-3.344 0.4-0.816 0.88-1.552 1.344-2.32 0.512-0.864 0.992-1.728 1.584-2.544 0.56-0.784 1.216-1.472 1.84-2.192 0.48-0.544 0.88-1.152 1.408-1.68 0.208-0.208 0.448-0.384 0.656-0.592 0.304-0.288 0.624-0.56 0.944-0.848 36.832-35.904 93.168-57.696 155.184-59.76 3.088-0.096 6.176-0.144 9.264-0.144 54.368 0 108.384 14.768 156.8 42.96 74.656 43.488 109.952 129.424 92.448 208.976zM421.056 297.232l-14.304 14.416c-0.112 0.112-0.192 0.24-0.304 0.352-0.144 0.144-0.32 0.272-0.464 0.432l-12.736 12.848s-0.080 0.080-0.112 0.112c-8.784 8.768-13.616 20.48-13.616 32.992s4.848 24.256 13.648 33.056c2.848 2.848 6.064 5.12 9.424 7.104 3.008 0.896 5.904 2.16 8.592 3.952 4.8 1.648 9.84 2.688 15.056 2.688 12.48 0 24.256-4.896 33.104-13.76l27.824-27.824c18.272-18.272 18.272-48 0-66.256-18.224-18.176-47.952-18.16-66.144-0.112zM730.688 336.048c6.24-6.24 14.416-9.344 22.592-9.344 0.272 0 0.528 0.064 0.784 0.080 0.208 0 0.4-0.048 0.592-0.048l43.68 1.888 20.304-141.92-58.576 58.656c-12.48 12.528-32.736 12.496-45.248 0.032-12.512-12.48-12.512-32.752-0.032-45.248l58.72-58.8-141.984 20.32 1.92 43.856c0 0.24-0.048 0.464-0.032 0.704 0.032 1.168-0.096 2.32-0.192 3.488-0.080 0.96-0.112 1.92-0.272 2.848-0.176 1.008-0.496 1.968-0.784 2.96-0.288 1.024-0.512 2.048-0.896 3.024-0.352 0.88-0.832 1.712-1.248 2.576-0.496 1.008-0.96 2.032-1.568 2.96-0.48 0.752-1.072 1.424-1.616 2.144-0.736 0.976-1.472 1.952-2.32 2.832-0.16 0.16-0.272 0.368-0.432 0.528l-65.264 65.104c2.192 6.448 3.776 13.056 4.736 19.744 1.392-0.080 2.752-0.4 4.144-0.4 17.408 0 34.816 6.080 48.704 18.336l62.752 55.072 51.504-51.392zM763.088 805.328c14.384 16.544 34.448 26.144 56.288 27.008 21.28 0.832 42.736-7.6 57.872-22.72l27.952-28.16c15.408-15.296 23.488-35.856 22.768-57.664-0.88-21.92-10.464-42.016-26.992-56.576l-326.832-286.816c-3.952-3.44-9.984-3.168-13.76 0.608l-83.6 83.664c-3.872 3.872-4.080 9.888-0.576 13.92l286.88 326.736zM428.048 520.72c-13.12-15.072-18.976-34.128-17.952-52.832-3.328-0.48-6.608-1.12-9.856-1.888l-207.488 185.712 115.072 116.272 170.224-190.304-50-56.944zM127.52 832.704c19.52 19.552 42.24 30.656 63.984 31.296 19.184 0.336 36.496-6.88 49.664-21.52l23.888-26.704-120.064-121.328-27.472 24.592c-14.432 12.88-22.064 30.448-21.488 49.504 0.656 22.048 11.536 44.24 31.488 64.16zM332.064 66.24c-40.784-23.744-86.24-35.616-131.792-34.16-14.96 0.496-29.152 2.736-42.672 5.952 44.704 13.248 95.536 35.712 126.88 73.424 11.296 13.6 9.44 33.76-4.16 45.056-13.616 11.296-33.76 9.408-45.056-4.16-23.504-28.288-68.592-46.128-108.544-56.592 25.136 49.6 35.664 89.232 43.776 120.368 10.752 41.28 15.568 56.208 37.424 68.976 24.448 14.352 51.952 19.744 78.4 16.992-20.384-16.608-41.504-38.176-54.544-63.616-8.064-15.728-1.856-35.008 13.856-43.072 4.672-2.4 9.664-3.536 14.576-3.536 11.632 0 22.832 6.336 28.496 17.392 13.232 25.776 44.208 49.312 65.92 63.008 2.144-1.856 4.464-3.44 6.496-5.472l0.352-0.352c7.312-7.312 13.872-15.936 19.424-25.552l-4.704-3.088c-14.784-9.664-18.928-29.52-9.232-44.304 6.144-9.376 16.352-14.464 26.8-14.464 1.168 0 2.304 0.368 3.456 0.496 0.192-44.8-23.264-88.944-65.12-113.328zM991.28 454.512c-3.296 32.208-30.256 57.52-63.344 57.52-35.296 0-64-28.704-64-63.984s28.704-64 64-64v-319.952c-17.664 0-32-14.336-32-32h-319.952c0 35.296-28.704 64-64 64s-63.984-28.704-63.984-64c0-33.088 25.312-60.048 57.52-63.344 2.080-0.432 4.24-0.656 6.464-0.656h447.952c17.664 0 32 14.336 32 32v447.952c0 2.208-0.224 4.368-0.656 6.464zM779.856 661.696c6.256-6.24 14.416-9.36 22.608-9.36s16.384 3.12 22.64 9.392c12.48 12.496 12.464 32.768-0.032 45.248l-22.336 22.32c-12.528 12.48-32.784 12.496-45.248-0.032-12.48-12.496-12.464-32.768 0.032-45.248l22.336-22.32z" /> -<glyph unicode="" glyph-name="person-add" d="M648.704 437.291c34.987 35.029 56.661 83.328 56.661 136.619 0 106.624-86.741 193.408-193.408 193.408s-193.408-86.741-193.408-193.408c0-53.291 21.675-101.632 56.661-136.661-130.176-53.888-221.995-182.229-221.995-331.648 0-23.765 19.243-43.008 43.008-43.008h631.467c23.765 0 43.008 19.243 43.008 43.008 0 149.419-91.819 277.76-221.995 331.648zM512 681.344c59.221 0 107.392-48.171 107.392-107.392s-48.171-107.392-107.392-107.392-107.392 48.171-107.392 107.392 48.171 107.392 107.392 107.392zM512 148.651h-269.312c20.693 130.005 133.589 229.717 269.355 229.717s248.661-99.712 269.355-229.717h-269.355zM908.373 579.115h-35.712v35.712c0 16.555-13.44 29.995-29.995 29.995s-29.995-13.44-29.995-29.995v-35.712h-35.712c-16.555 0-29.995-13.44-29.995-29.995s13.44-29.995 29.995-29.995h35.712v-35.712c0-16.555 13.44-29.995 29.995-29.995s29.995 13.44 29.995 29.995v35.712h35.712c16.555 0 29.995 13.44 29.995 29.995s-13.44 29.995-29.995 29.995z" /> -<glyph unicode="" glyph-name="pets" d="M768.683 393.728c-49.408 19.157-95.957 73.472-135.552 112.683-27.563 27.264-67.328 51.883-121.131 51.883s-93.568-24.619-121.131-51.883c-39.637-39.168-86.144-93.525-135.552-112.683-93.525-36.267-127.317-129.109-127.317-179.883 0-64 42.667-150.827 128-150.827 19.797 0 44.203 2.645 70.016 6.741 61.611 9.771 123.776 14.635 185.984 14.635s124.373-4.864 185.984-14.635c25.813-4.096 50.219-6.741 70.016-6.741 85.333 0 128 86.827 128 150.827 0 50.773-33.749 143.573-127.317 179.883zM794.155 164.565c-11.179-15.573-21.291-15.573-26.155-15.573-9.429 0-26.88 0.981-56.576 5.675-65.749 10.411-132.821 15.701-199.424 15.701s-133.717-5.291-199.424-15.701c-29.696-4.693-47.147-5.675-56.576-5.675-4.864 0-14.976 0-26.155 15.573-10.965 15.275-15.872 35.755-15.872 49.28 0 8.107 3.456 29.355 16.64 51.627 13.44 22.741 32.213 38.912 55.765 48.085 58.197 22.571 104.149 69.632 144.683 111.147 7.168 7.339 13.909 14.251 20.267 20.523 24.491 24.192 46.336 27.008 60.672 27.008s36.181-2.816 60.672-27.008c6.357-6.315 13.099-13.227 20.267-20.523 40.533-41.515 86.485-88.619 144.683-111.189 23.595-9.131 42.325-25.301 55.765-48.085 13.141-22.272 16.64-43.52 16.64-51.627 0-13.525-4.907-34.005-15.872-49.28zM661.333 617.899c58.923 0 106.667 47.744 106.667 106.667s-47.744 106.667-106.667 106.667-106.667-47.744-106.667-106.667 47.744-106.667 106.667-106.667zM661.333 745.259c11.392 0 20.651-9.259 20.651-20.651s-9.259-20.651-20.651-20.651-20.651 9.259-20.651 20.651 9.259 20.651 20.651 20.651zM832.512 660.096c-58.923 0-106.667-47.744-106.667-106.667s47.744-106.667 106.667-106.667 106.667 47.744 106.667 106.667-47.744 106.667-106.667 106.667zM832.512 532.736c-11.392 0-20.651 9.259-20.651 20.651s9.259 20.651 20.651 20.651 20.651-9.259 20.651-20.651-9.259-20.651-20.651-20.651zM405.589 617.899c58.923 0 106.667 47.744 106.667 106.667s-47.744 106.667-106.667 106.667-106.667-47.744-106.667-106.667 47.744-106.667 106.667-106.667zM405.589 745.259c11.392 0 20.651-9.259 20.651-20.651s-9.259-20.651-20.651-20.651-20.651 9.259-20.651 20.651 9.259 20.651 20.651 20.651zM234.411 446.763c58.923 0 106.667 47.744 106.667 106.667s-47.744 106.667-106.667 106.667-106.667-47.744-106.667-106.667 47.744-106.667 106.667-106.667zM234.411 574.080c11.392 0 20.651-9.259 20.651-20.651s-9.259-20.651-20.651-20.651-20.651 9.259-20.651 20.651 9.259 20.651 20.651 20.651z" /> -<glyph unicode="" glyph-name="phone-classic" d="M512 495.888c-70.24 0-127.376-57.136-127.376-127.376s57.136-127.36 127.376-127.36 127.376 57.136 127.376 127.36-57.136 127.376-127.376 127.376zM512 305.152c-34.944 0-63.376 28.416-63.376 63.36s28.432 63.376 63.376 63.376 63.376-28.432 63.376-63.376-28.432-63.36-63.376-63.36zM967.856 699.728c-17.6 14.928-179.904 145.856-455.856 145.856s-438.272-130.928-455.712-145.744c-22.336-18.736-30.672-55.904-19.056-84.432l28.976-72.416c19.168-48.176 65.072-79.296 116.976-79.296h94.032l-5.264-22.816c-5.024-14.416-17.28-37.040-44.56-37.040-30.32 0-60.656-14.016-79.216-36.576-15.648-19.024-21.76-42.176-17.248-65.152l24.48-124.912c-14.336-3.168-25.072-15.92-25.072-31.2 0-17.664 14.336-32 32-32h31.584v-31.584c0-17.664 14.336-32 32-32s32 14.336 32 32v31.584h508.256v-31.584c0-17.664 14.336-32 32-32s32 14.336 32 32v31.584h31.584c17.664 0 32 14.336 32 32 0 15.28-10.736 28.032-25.072 31.2l24.48 124.912c0.384 2.032 0.592 4.096 0.592 6.16 0 52.704-43.552 95.584-97.056 95.584-27.296 0-39.504 22.624-44.496 37.024l-5.296 22.832h94c51.888 0 97.792 31.12 116.944 79.232l28.944 72.32c11.664 28.704 3.328 65.872-18.864 84.496zM796.64 339.824c17.632 0 31.632-12.544 32.96-28.992l-26.032-132.848h-583.136l-26.752 136.448c-0.288 1.488-1.168 6 3.888 12.16 6.496 7.92 18.464 13.232 29.776 13.232 48.448 0 88.976 31.52 105.744 82.24 0.32 0.944 0.576 1.872 0.8 2.848l20.96 90.624c9.264 26.096 33.92 43.536 61.76 43.536h190.752c27.84 0 52.496-17.44 61.776-43.552l20.992-90.624c0.224-0.944 0.48-1.872 0.784-2.8 16.72-50.752 57.232-82.272 105.712-82.272zM927.376 639.184l-29.024-72.544c-9.424-23.664-31.984-38.96-57.504-38.96h-108.816l-0.896 3.872c-0.224 0.976-0.48 1.936-0.816 2.88-10.384 31.232-31.968 56.16-59.248 71.6 0 0.32 0.096 0.608 0.096 0.928v47.68c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.584h-190.336v31.584c0 17.664-14.336 32-32 32s-32-14.336-32-32v-47.68c0-0.32 0.080-0.608 0.096-0.928-27.28-15.424-48.848-40.352-59.232-71.584-0.336-0.96-0.592-1.904-0.816-2.896l-0.896-3.856h-108.832c-25.52 0-48.080 15.296-57.536 39.008l-29.056 72.656c-1.264 3.104-0.304 9.856 0.992 11.568 6.288 5.344 156.992 130.672 414.448 130.672s408.176-125.328 414.128-130.336c1.616-2.032 2.576-8.784 1.248-12.064z" /> -<glyph unicode="" glyph-name="phone-volume-down" d="M552.021 657.323c93.909 0 170.325-76.416 170.325-170.325 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 141.355-114.987 256.341-256.341 256.341-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008zM896.853 653.227c-37.632 77.611-101.077 141.099-178.731 178.688-21.376 10.368-47.104 1.408-57.429-19.968-10.368-21.376-1.408-47.104 19.968-57.429 60.288-29.184 109.611-78.507 138.837-138.795 7.424-15.317 22.784-24.277 38.741-24.277 6.272 0 12.672 1.365 18.731 4.309 21.376 10.368 30.293 36.096 19.925 57.429zM858.112 323.157l-186.027 110.976c-16.896 10.069-38.528 7.424-52.437-6.528l-72.149-72.149c-30.72 21.163-59.605 45.269-86.187 71.808-26.795 26.795-51.072 55.979-72.363 86.955l72.021 72.021c13.909 13.909 16.597 35.499 6.528 52.395l-110.336 185.344c-9.6 16.171-28.629 24.192-46.933 19.84l-192.256-45.824c-19.243-4.565-32.853-21.675-33.024-41.472-0.811-91.861 16.043-181.504 50.048-266.411 35.2-87.979 87.296-166.784 154.795-234.325 66.901-66.901 144.981-118.699 232.021-153.899 83.669-33.835 172.032-50.987 262.656-50.987 0.427 0 0.811 0 1.237 0 19.541 0 36.565 13.227 41.515 32.085l50.389 192.256c4.864 18.517-3.115 38.016-19.541 47.829zM752.725 137.771c-151.936 7.723-293.675 70.528-402.048 178.901-59.221 59.221-104.917 128.384-135.765 205.44-25.685 64.128-40.192 131.371-43.264 200.277l127.872 30.507 77.056-129.451-72.96-72.96c-14.037-14.037-16.64-35.797-6.315-52.736 28.843-47.445 63.616-91.605 103.253-131.243 39.381-39.381 83.243-73.941 130.347-102.741 16.939-10.368 38.784-7.765 52.821 6.272l73.088 73.088 129.493-77.269-33.579-128.128z" /> -<glyph unicode="" glyph-name="phone-volume-mute" d="M858.112 323.157l-186.027 110.976c-16.896 10.069-38.528 7.424-52.437-6.528l-72.149-72.149c-30.72 21.163-59.605 45.269-86.187 71.808-26.795 26.795-51.072 55.979-72.363 86.955l72.021 72.021c13.909 13.909 16.597 35.499 6.528 52.395l-110.336 185.344c-9.6 16.171-28.629 24.192-46.933 19.84l-192.256-45.824c-19.243-4.565-32.853-21.675-33.024-41.472-0.811-91.861 16.043-181.504 50.048-266.411 35.2-87.979 87.296-166.784 154.795-234.325 66.901-66.901 144.981-118.699 232.021-153.899 83.669-33.835 172.032-50.987 262.656-50.987 0.427 0 0.811 0 1.237 0 19.541 0 36.565 13.227 41.515 32.085l50.389 192.256c4.864 18.517-3.115 38.016-19.541 47.829zM752.725 137.771c-151.936 7.723-293.675 70.528-402.048 178.901-59.221 59.221-104.917 128.384-135.765 205.44-25.685 64.128-40.192 131.371-43.264 200.277l127.872 30.507 77.056-129.451-72.96-72.96c-14.037-14.037-16.64-35.797-6.315-52.736 28.843-47.445 63.616-91.605 103.253-131.243 39.381-39.381 83.243-73.941 130.347-102.741 16.939-10.368 38.784-7.765 52.821 6.272l73.088 73.088 129.493-77.269-33.579-128.128zM576.64 564.053c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587l45.227 45.227 45.184-45.227c8.405-8.405 19.413-12.587 30.421-12.587s22.016 4.181 30.421 12.587c16.811 16.811 16.811 44.032 0 60.8l-45.227 45.227 45.227 45.227c16.811 16.811 16.811 44.032 0 60.8-16.811 16.811-44.032 16.811-60.8 0l-45.184-45.227-45.227 45.227c-16.811 16.811-44.032 16.811-60.8 0-16.811-16.811-16.811-44.032 0-60.8l45.227-45.227-45.227-45.227c-16.811-16.811-16.811-44.032 0-60.8z" /> -<glyph unicode="" glyph-name="phone-volume-up" d="M858.112 323.157l-186.027 110.976c-16.896 10.069-38.528 7.424-52.437-6.528l-72.149-72.149c-30.72 21.163-59.605 45.269-86.187 71.808-26.795 26.795-51.072 55.979-72.363 86.955l72.021 72.021c13.909 13.909 16.597 35.499 6.528 52.395l-110.336 185.344c-9.643 16.171-28.629 24.192-46.933 19.84l-192.256-45.824c-19.243-4.565-32.853-21.675-33.024-41.472-0.811-91.861 16.043-181.504 50.048-266.411 35.2-87.979 87.296-166.784 154.795-234.325 66.901-66.901 144.981-118.699 232.021-153.899 83.669-33.835 172.032-50.987 262.656-50.987 0.427 0 0.811 0 1.237 0 19.541 0 36.565 13.227 41.515 32.085l50.389 192.256c4.864 18.517-3.115 38.016-19.541 47.829zM752.725 137.771c-151.936 7.723-293.675 70.528-402.048 178.901-59.221 59.221-104.917 128.384-135.765 205.44-25.685 64.128-40.192 131.371-43.264 200.277l127.872 30.507 77.056-129.451-72.96-72.96c-14.037-14.037-16.64-35.797-6.315-52.736 28.843-47.445 63.616-91.605 103.253-131.243 39.381-39.381 83.243-73.941 130.347-102.741 16.939-10.368 38.784-7.765 52.821 6.272l73.088 73.088 129.493-77.269-33.579-128.128zM722.347 486.997c0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 141.355-114.987 256.341-256.341 256.341-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008c93.909 0 170.325-76.416 170.325-170.325zM562.176 881.493c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008c164.523 0 298.325-133.845 298.325-298.325 0-23.765 19.243-43.008 43.008-43.008s43.008 19.243 43.008 43.008c0 211.925-172.416 384.341-384.341 384.341z" /> -<glyph unicode="" glyph-name="pie-chart" d="M891.344 771.552c-56.144 65.12-129.712 110.656-212.736 131.648-8.704 2.24-17.968 0.656-25.456-4.304-7.504-4.944-12.576-12.816-14-21.68l-55.312-347.664c-2.496-15.68 6.88-30.816 22.032-35.568l335.936-105.312c3.12-0.992 6.352-1.472 9.568-1.472 5.6 0 11.168 1.472 16.096 4.336 7.776 4.528 13.28 12.112 15.184 20.912 6.192 28.72 9.328 58.336 9.328 88 0 99.552-35.744 195.808-100.656 271.088zM925.792 460.768l-274.384 86.016 45.184 284.048c56.432-20.432 106.512-54.944 146.288-101.056 54.896-63.664 85.12-145.104 85.12-229.312 0-13.28-0.736-26.544-2.208-39.68zM892.16 347.712l-373.424 116.288 61.312 385.488c1.328 8.384-0.72 16.976-5.712 23.824-4.992 6.88-12.512 11.488-20.896 12.816-23.216 3.664-47.040 5.536-70.8 5.536-248.48 0-450.64-202.16-450.64-450.64s202.16-450.64 450.64-450.64c198.848 0 371.888 127.536 430.576 317.328 5.216 16.864-4.208 34.768-21.056 40zM482.64 54.384c-213.2 0-386.64 173.456-386.64 386.64s173.44 386.64 386.64 386.64c9.664 0 19.344-0.352 28.96-1.056l-60.416-379.888c-2.496-15.696 6.912-30.864 22.080-35.584l368.144-114.624c-58.48-146.064-198.896-242.112-358.768-242.112z" /> -<glyph unicode="" glyph-name="pie-chart-2" d="M510.462 473.056c1.932-5.792 6.236-10.49 11.838-12.922 2.73-1.184 5.644-1.776 8.556-1.776 3.062 0 6.122 0.654 8.966 1.958l338.364 155.264c10.782 4.948 15.518 17.692 10.586 28.48-30.898 67.584-80.22 124.894-142.632 165.734-64.020 41.894-138.464 64.038-215.286 64.038-42.884 0-84.844-6.846-124.716-20.35-11.21-3.794-17.244-15.938-13.5-27.166l117.82-353.262zM530.858 830.834c129.632 0 248.774-72.102 309.282-185.4l-296.468-136.040-103.252 309.584c29.214 7.874 59.544 11.856 90.438 11.856zM912.668 562.31c-3.51 7.624-11.298 12.506-19.692 12.506-2.852 0-5.676-0.568-8.308-1.67l-324.46-135.934c-8.564-3.588-13.858-12.268-13.126-21.524 0.732-9.258 7.324-16.998 16.344-19.196l339.826-82.788c1.708-0.416 3.416-0.616 5.102-0.616 9.282 0 17.792 6.048 20.576 15.314 9.282 30.876 13.988 62.988 13.988 95.444 0 48.288-10.178 94.872-30.25 138.46zM892.916 360.482l-255.82 62.322 244.494 102.432c12.172-32.318 18.328-66.328 18.328-101.386 0-21.414-2.35-42.648-7.002-63.368zM468.296 411.822l-111.056 332.99c-148.016-49.206-254.66-188.786-254.66-353.262 0-130.366 67.044-245.048 168.394-311.504l0.224 0.34c58.318-38.026 127.732-60.054 202.578-60.054 168.394 0 310.914 111.938 356.79 265.438l-336.342 100.902c-12.22 3.666-21.892 13.048-25.928 25.15z" /> -<glyph unicode="" glyph-name="pie-chart-analyst" d="M960 496.688h-68.896c-8.080 100.576-53.776 190.656-123.056 256.176l44.512 77.968h14.784c17.664 0 32 14.336 32 32s-14.336 32-32 32h-33.36c-11.488 0-22.096-6.16-27.792-16.144l-48.624-85.168c-54.976 37.232-119.76 60.96-189.568 66.672v37.072c0 17.664-14.336 32-32 32-193.328 0.016-368.272-121.76-435.328-303.040-19.024-51.456-28.672-105.616-28.672-160.944 0-144.288 66.224-273.392 169.856-358.56l-23.76-41.568h-14.592c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.152c11.472 0 22.080 6.16 27.776 16.112l29.824 52.144c61.696-37.824 132.896-61.52 209.072-66.848v-2.56c0-17.664 14.336-32 32-32 273.872 0 496.672 222.816 496.672 496.688 0 17.664-14.336 32-32 32zM685.648 737.6l-52.096-91.248c-8.768-15.344-3.424-34.896 11.92-43.664 5.008-2.848 10.464-4.208 15.84-4.208 11.12 0 21.92 5.792 27.824 16.144l46.032 80.624c50.704-52.656 84.368-121.776 91.728-198.56h-298.88v299.312c58.256-5.696 112.048-26.544 157.648-58.4zM463.328 863.904v-342.816l-296.608 171.248c67.536 97.456 176.464 161.632 296.608 171.568zM345.392 293.296c-15.328 8.736-34.88 3.44-43.664-11.888l-67.568-118.16c-84.56 73.392-138.176 181.536-138.176 302.032 0 47.728 8.32 94.4 24.704 138.752 4.048 10.976 8.608 21.68 13.568 32.128l329.040-189.952v-379.584c-64.624 5.248-124.96 25.952-177.296 58.368l71.28 124.64c8.768 15.344 3.44 34.896-11.904 43.664zM528 33.232s0 0.032 0 0.048v399.408h398.832c-15.632-212.912-186.016-383.488-398.832-399.456zM924.672 830.848h2.176c17.664 0 32 14.336 32 32s-14.336 32-32 32h-2.176c-17.664 0-32-14.336-32-32s14.336-32 32-32zM66 65.152h-2c-17.664 0-32-14.336-32-32s14.336-32 32-32h2c17.664 0 32 14.336 32 32s-14.336 32-32 32zM630.192 297.52h-2c-17.664 0-32-14.336-32-32s14.336-32 32-32h2c17.664 0 32 14.336 32 32s-14.336 32-32 32zM729.808 297.52h-2.128c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM232.016 430.176h-2c-17.664 0-32-14.336-32-32s14.336-32 32-32h2c17.664 0 32 14.336 32 32s-14.336 32-32 32zM331.52 430.176h-2c-17.664 0-32-14.336-32-32s14.336-32 32-32h2c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="pill" d="M829.013 764.032c-48.427 48.427-112.768 75.093-181.248 75.093s-132.821-26.667-181.248-75.093l-271.531-271.531c-48.427-48.427-75.093-112.768-75.093-181.248s26.667-132.821 75.093-181.248c48.427-48.427 112.768-75.093 181.248-75.093s132.821 26.667 181.248 75.093l271.531 271.531c48.427 48.427 75.093 112.768 75.093 181.248s-26.667 132.821-75.093 181.248zM496.683 190.805c-32.171-32.171-74.965-49.877-120.448-49.877s-88.277 17.707-120.448 49.877c-32.171 32.171-49.877 74.965-49.877 120.448s17.707 88.277 49.877 120.448l105.344 105.344 240.896-240.896-105.344-105.344zM768.213 462.336l-105.344-105.344-240.896 240.896 105.344 105.344c32.171 32.171 74.965 49.877 120.448 49.877s88.277-17.707 120.448-49.877c32.171-32.171 49.877-74.965 49.877-120.448s-17.707-88.277-49.877-120.448z" /> -<glyph unicode="" glyph-name="pin-map-location" d="M672 608c0 88.224-71.776 160-160 160s-160-71.776-160-160 71.776-160 160-160 160 71.776 160 160zM416 608c0 52.944 43.056 96 96 96s96-43.056 96-96-43.056-96-96-96-96 43.056-96 96zM832 480h-38.224c23.2 44.32 38.224 88.256 38.224 128 0 176.448-143.552 320-320 320s-320-143.552-320-320c0-39.744 15.024-83.68 38.224-128h-38.224c-52.944 0-96-43.056-96-96v-320c0-52.944 43.056-96 96-96h383.888s0.064 0 0.096 0c0.032 0 0.064 0 0.096 0h159.92c8.48 0 16.624 3.376 22.624 9.376l160 160c6 6 9.376 14.144 9.376 22.624v224c0 52.944-43.056 96-96 96zM736 224c-35.296 0-64-28.704-64-64v-128h-72.928l-50.128 150.384c22.144 20.528 61.648 58.448 104.304 105.616h210.752v-64h-128zM832 416c17.648 0 32-14.352 32-32v-32h-156.144c16.512 20.64 32.544 42.144 47.344 64h76.8zM512 864c141.152 0 256-114.848 256-256 0-108.832-168.656-290.224-256-372.528-87.344 82.32-256 263.696-256 372.528 0 141.152 114.848 256 256 256zM192 416h76.8c50.56-74.656 115.824-144.992 163.008-192h-271.808v160c0 17.648 14.352 32 32 32zM160 64v96h328.944l42.656-128h-339.6c-17.648 0-32 14.352-32 32zM736 45.264v114.736h114.752l-114.752-114.736z" /> -<glyph unicode="" glyph-name="pinterest" d="M532.512 866.672c-175.424 0-348.784-116.944-348.784-306.208 0-120.368 67.712-188.752 108.736-188.752 16.928 0 26.672 47.184 26.672 60.528 0 15.904-40.528 49.76-40.528 115.92 0 137.456 104.64 234.912 240.048 234.912 116.432 0 202.608-66.16 202.608-187.728 0-90.784-36.416-261.072-154.384-261.072-42.576 0-78.992 30.768-78.992 74.88 0 64.624 45.136 127.2 45.136 193.888 0 113.184-160.544 92.672-160.544-44.112 0-28.72 3.584-60.528 16.416-86.688-23.6-101.552-71.808-252.864-71.808-357.504 0-32.32 4.624-64.112 7.696-96.432 5.808-6.496 2.912-5.808 11.792-2.56 86.176 117.968 83.088 141.056 122.080 295.44 21.024-40 75.392-61.552 118.48-61.552 181.568 0 263.12 176.96 263.12 336.48 0 169.776-146.688 280.56-307.744 280.56z" /> -<glyph unicode="" glyph-name="planet" d="M970.4 906.416c-40.208 40.176-116.8 25.056-234.256-46.192-15.104-9.168-19.936-28.848-10.768-43.968s28.864-19.936 43.952-10.752c109.296 66.32 150.672 60.752 155.808 55.664 14.528-14.544-10.080-91.712-91.216-210.16-69.6 98.048-183.968 162.224-313.088 162.224-211.664 0-383.84-172.192-383.84-383.824 0-128.144 63.184-241.744 159.968-311.488-111.584-74.608-184.048-97.104-198.112-83.056-5.056 5.072-10.608 46.112 54.784 154.368 9.136 15.12 4.288 34.8-10.848 43.936-15.104 9.136-34.784 4.304-43.936-10.848-70.432-116.608-85.232-192.72-45.248-232.72 14.752-14.752 34.464-21.344 57.872-21.344 63.44 0 153.968 48.48 246.096 113.872 49.584-23.408 104.912-36.56 163.28-36.56 211.648 0 383.824 172.192 383.824 383.84 0 57.456-12.768 111.952-35.488 160.928 94.368 130.272 157.76 259.552 101.232 316.096zM200.992 429.392c0 176.352 143.488 319.824 319.84 319.824 115.584 0 216.736-61.84 272.928-153.952-50.56-66.944-116.72-143.936-200.912-228.128-89.12-89.136-170.112-157.968-239.712-209.568-91.12 56.416-152.144 157.008-152.144 271.824zM840.672 429.392c0-176.352-143.472-319.84-319.824-319.84-36.112 0-70.72 6.304-103.12 17.376 82.992 64.544 162.768 137.328 220.384 194.944 54.928 54.928 123.648 129.984 185.856 208.768 10.672-31.872 16.704-65.856 16.704-101.264z" /> -<glyph unicode="" glyph-name="play" d="M858.736 540.624l-574.176 369.712c-34.432 22.176-76.464 23.68-112.384 4.080-35.952-19.616-57.424-55.76-57.424-96.72v-739.408c0-40.96 21.472-77.104 57.424-96.72 16.768-9.136 34.848-13.696 52.88-13.696 20.608 0 41.136 5.952 59.52 17.776l574.176 369.712c31.632 20.368 50.512 54.992 50.512 92.624s-18.896 72.256-50.512 92.624zM824.080 409.184l-574.176-369.712c-14.4-9.296-32.016-9.936-47.088-1.712-15.056 8.224-24.064 23.36-24.064 40.528v739.408c0 17.168 8.992 32.32 24.064 40.528 7.024 3.84 14.608 5.744 22.16 5.744 8.64 0 17.248-2.496 24.944-7.456l574.176-369.712c13.456-8.672 21.168-22.8 21.168-38.816s-7.712-30.144-21.168-38.816z" /> -<glyph unicode="" glyph-name="play-arrow" d="M835.669 467.797l-497.579 355.371c-13.099 9.344-30.336 10.624-44.672 3.243s-23.339-22.144-23.339-38.229v-639.744c0-15.317 8.149-29.483 21.419-37.205 6.656-3.883 14.123-5.803 21.589-5.803 7.381 0 14.72 1.877 21.333 5.675l497.579 284.331c12.715 7.253 20.864 20.523 21.632 35.157s-6.016 28.629-17.963 37.163zM356.096 222.549v482.091l374.955-267.819-374.955-214.272z" /> -<glyph unicode="" glyph-name="play-circle" d="M813.696 748.971c-83.328 83.328-192.512 124.971-301.696 124.971s-218.368-41.643-301.696-124.971c-166.613-166.613-166.613-436.779 0-603.392 83.328-83.328 192.512-124.971 301.696-124.971s218.368 41.643 301.696 124.971c166.613 166.613 166.613 436.779 0 603.392zM752.896 206.379c-64.341-64.341-149.888-99.797-240.896-99.797s-176.555 35.456-240.896 99.797-99.797 149.888-99.797 240.896 35.456 176.555 99.797 240.896c64.341 64.341 149.888 99.797 240.896 99.797s176.555-35.456 240.896-99.797c64.341-64.341 99.797-149.888 99.797-240.896s-35.456-176.555-99.797-240.896zM729.003 482.005l-298.667 213.333c-13.099 9.344-30.336 10.624-44.672 3.243s-23.339-22.144-23.339-38.229v-384c0-15.317 8.149-29.483 21.419-37.205 6.656-3.883 14.123-5.803 21.589-5.803 7.339 0 14.72 1.877 21.333 5.675l298.667 170.667c12.715 7.253 20.864 20.523 21.632 35.157s-6.016 28.629-17.963 37.163zM448.341 350.421v226.347l176.043-125.739-176.043-100.608z" /> -<glyph unicode="" glyph-name="plus" d="M720 480h-176v176c0 17.664-14.336 32-32 32s-32-14.336-32-32v-176h-176c-17.664 0-32-14.336-32-32s14.336-32 32-32h176v-176c0-17.664 14.336-32 32-32s32 14.336 32 32v176h176c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="podcast" d="M512 875.008c-235.477 0-427.008-191.531-427.008-427.008 0-114.048 44.416-221.269 125.056-301.952 41.515-41.515 90.069-73.429 142.976-94.635l-28.843 112.043c-92.245 61.099-153.216 165.803-153.216 284.501 0 188.032 152.96 340.992 340.992 340.992s340.992-152.96 340.992-340.992c0-118.699-60.971-223.403-153.216-284.501l-28.757-111.787c156.928 63.189 267.947 217.003 267.947 396.288 0 235.477-191.573 427.008-427.008 427.008zM512 660.992c117.419 0 212.992-95.531 212.992-212.992 0-38.827-10.453-75.264-28.672-106.667 7.68-6.699 14.208-14.72 19.2-23.893 2.773-5.035 4.949-10.283 6.613-15.659 4.736-15.104 5.163-31.275 1.152-46.848l-6.272-24.32c57.813 54.571 93.952 131.84 93.952 217.429 0 164.864-134.144 299.008-299.008 299.008s-299.008-134.101-299.008-299.008c0-85.589 36.139-162.859 93.952-217.429l-6.272 24.32c-4.011 15.573-3.541 31.744 1.152 46.848 1.664 5.376 3.84 10.624 6.613 15.659 4.992 9.131 11.52 17.195 19.2 23.893-18.261 31.36-28.672 67.84-28.672 106.667 0 117.461 95.531 212.992 212.992 212.992zM681.643 265.6c3.84 14.976-0.683 30.251-10.795 40.661-4.651 4.779-10.496 8.576-17.28 10.837l-46.379 15.488c4.309 3.541 8.405 7.339 12.288 11.392 0.597 0.597 1.152 1.195 1.707 1.792 0.683 0.725 1.323 1.451 1.963 2.176s1.28 1.451 1.92 2.176c2.219 2.56 4.352 5.163 6.4 7.893 2.432 3.243 4.779 6.613 6.955 10.027 0.469 0.768 0.939 1.536 1.408 2.261 0.085 0.128 0.213 0.299 0.256 0.427 0.512 0.811 0.981 1.579 1.451 2.389 0.896 1.536 1.749 3.115 2.603 4.693 0.384 0.683 0.725 1.408 1.109 2.091 1.664 3.2 3.2 6.528 4.608 9.899 0.469 1.109 0.939 2.261 1.365 3.371 0.469 1.109 0.896 2.261 1.28 3.413 0.427 1.109 0.811 2.261 1.195 3.413 0 0 0 0.085 0 0.128 0.341 0.981 0.683 1.963 0.981 2.944 0.341 1.067 0.683 2.176 0.981 3.243 0.256 0.811 0.469 1.579 0.64 2.389 0.171 0.64 0.341 1.28 0.512 1.92 0.64 2.389 1.195 4.821 1.664 7.296 0.128 0.64 0.299 1.28 0.384 1.963 0.171 0.811 0.299 1.621 0.469 2.432 0 0.128 0 0.299 0.043 0.427 0.213 1.237 0.427 2.432 0.597 3.669 0 0.213 0.043 0.384 0.085 0.597 0.171 1.067 0.299 2.133 0.427 3.2 0.043 0.469 0.128 0.939 0.171 1.408 0.085 0.853 0.213 1.749 0.256 2.603 0.043 0.427 0.085 0.896 0.128 1.323 0.043 0.683 0.128 1.365 0.171 2.091 0.043 0.896 0.128 1.749 0.171 2.645 0.043 1.109 0.085 2.219 0.128 3.328 0 1.451 0.043 2.901 0.043 4.352 0 82.517-67.157 149.675-149.675 149.675s-149.675-67.157-149.675-149.675c0-1.451 0-2.901 0.043-4.352 0-1.109 0.085-2.219 0.128-3.328 0-0.896 0.085-1.792 0.171-2.645 0-0.683 0.085-1.365 0.171-2.091 0-0.427 0.043-0.896 0.128-1.323 0.043-0.853 0.171-1.749 0.256-2.603 0-0.469 0.085-0.939 0.171-1.408 0.128-1.067 0.256-2.133 0.427-3.2 0-0.213 0-0.384 0.085-0.597 0.171-1.237 0.341-2.432 0.597-3.669 0-0.128 0-0.299 0.043-0.384 0.256-1.323 0.469-2.688 0.768-4.011 0.299-1.365 0.555-2.731 0.896-4.096v0c0.299-1.365 0.64-2.731 0.981-4.053 0.256-1.067 0.555-2.091 0.853-3.157 0.171-0.683 0.384-1.365 0.597-2.048 0.299-0.939 0.555-1.877 0.853-2.773 0.384-1.195 0.768-2.347 1.195-3.499 0.085-0.299 0.171-0.555 0.299-0.811 0.341-0.981 0.683-1.963 1.067-2.944 0.085-0.299 0.213-0.555 0.299-0.811 0.341-0.896 0.683-1.749 1.024-2.645 0.171-0.384 0.299-0.768 0.469-1.195 0.469-1.152 0.981-2.304 1.493-3.456 0.384-0.896 0.811-1.835 1.28-2.731 1.323-2.901 2.816-5.717 4.352-8.448 0.597-1.109 1.237-2.219 1.877-3.285 0.555-0.981 1.152-1.92 1.749-2.901 0.811-1.323 1.664-2.688 2.56-3.968 0.597-0.939 1.237-1.835 1.835-2.731 1.152-1.621 2.304-3.243 3.499-4.821 2.048-2.688 4.181-5.333 6.4-7.893 0.64-0.725 1.28-1.451 1.92-2.176s1.28-1.451 1.963-2.176c0.555-0.64 1.152-1.237 1.707-1.792 3.883-4.011 7.979-7.808 12.288-11.392l-46.379-15.488c-6.741-2.261-12.587-6.059-17.28-10.837-10.112-10.411-14.635-25.685-10.795-40.661l3.115-12.075 30.379-118.187 21.376-83.072c1.835-7.040 5.291-13.312 9.984-18.432 7.936-8.619 19.285-13.867 31.659-13.867h146.261c12.416 0 23.808 5.333 31.787 14.037 4.608 5.077 8.064 11.264 9.856 18.261l21.376 83.072 33.493 130.261zM588.373 248.235l-12.373-48.171-11.989-46.507-11.349-44.117-0.896-3.413h-79.616l-0.896 3.413-11.349 44.117-11.989 46.507-12.373 48.171 1.323 0.427 75.051 25.003 76.373-25.429zM575.659 448c0-35.115-28.544-63.659-63.659-63.659s-63.701 28.544-63.701 63.659 28.587 63.701 63.701 63.701 63.659-28.587 63.659-63.701z" /> -<glyph unicode="" glyph-name="popup-modal" d="M895.417 682.209c0 0.866-0.066 1.717-0.166 2.557v86.603c0 33.073-26.81 59.883-59.883 59.883h-646.737c-33.071 0-59.883-26.81-59.883-59.883v-646.737c0-33.073 26.812-59.883 59.883-59.883h646.737c33.073 0 59.883 26.81 59.883 59.883v555.020c0.1 0.84 0.166 1.691 0.166 2.557zM188.632 788.335h646.737c9.356 0 16.967-7.611 16.967-16.967v-67.702h-680.671v67.702c0 9.356 7.611 16.967 16.967 16.967zM835.368 107.665h-497.772l-165.932 165.932v387.156h680.671v-536.119c0-9.356-7.611-16.967-16.967-16.967zM825.933 746.545c0-8.269-6.704-14.973-14.973-14.973s-14.973 6.704-14.973 14.973c0 8.269 6.704 14.973 14.973 14.973s14.973-6.704 14.973-14.973zM750.189 731.572c8.27 0 14.973 6.705 14.973 14.973s-6.703 14.973-14.973 14.973-14.973-6.703-14.973-14.973 6.705-14.973 14.973-14.973zM689.417 731.572c8.27 0 14.973 6.705 14.973 14.973s-6.703 14.973-14.973 14.973-14.973-6.703-14.973-14.973 6.703-14.973 14.973-14.973zM659.769 555.213h-134.643c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h82.948l-143.003-143.003c-8.38-8.38-8.38-21.967 0-30.347 4.192-4.19 9.681-6.284 15.174-6.284s10.983 2.096 15.174 6.284l142.891 142.891v-82.838c0-11.851 9.607-21.458 21.458-21.458s21.458 9.607 21.458 21.458v134.753c0 11.851-9.607 21.458-21.458 21.458zM613.885 349.642c-11.851 0-21.458-9.607-21.458-21.458v-50.352h-190.464v190.462h50.352c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-55.609c-20.765 0-37.658-16.893-37.658-37.656v-200.981c0-20.763 16.893-37.656 37.658-37.656h200.981c20.765 0 37.658 16.893 37.658 37.656v55.609c0 11.851-9.607 21.458-21.458 21.458z" /> -<glyph unicode="" glyph-name="portfolio-gallery" d="M678.332 323.166v467.5c0 22.88-18.62 41.5-41.5 41.5h-467.5c-22.88 0-41.5-18.62-41.5-41.5v-467.5c0-22.88 18.62-41.5 41.5-41.5h467.5c22.88 0 41.5 18.62 41.5 41.5zM645.292 688.606l-112.24 112.24h82.58c16.38 0 29.66-13.28 29.66-29.66v-82.58zM469.452 527.926l44.8-137.9c0.42-1.26-1.040-2.32-2.12-1.54l-117.3 85.24c-0.34 0.24-0.82 0.24-1.16 0l-117.3-85.24c-1.080-0.78-2.54 0.28-2.12 1.54l44.8 137.9c0.14 0.4 0 0.86-0.34 1.1l-117.32 85.24c-1.080 0.78-0.52 2.48 0.8 2.48h145.020c0.42 0 0.8 0.28 0.92 0.68l44.82 137.9c0.4 1.26 2.2 1.26 2.6 0l44.82-137.9c0.12-0.4 0.5-0.68 0.92-0.68h145.020c1.32 0 1.88-1.7 0.8-2.48l-117.32-85.24c-0.34-0.24-0.48-0.7-0.34-1.1zM786.548 214.95v443.986c0 35.844-29.162 65.006-65.006 65.006-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c12.134 0 22.006-9.872 22.006-22.006v-442.486h-442.486c-12.134 0-22.008 9.874-22.008 22.008 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-35.846 29.162-65.008 65.008-65.008h443.986c22.882 0 41.5 18.618 41.5 41.5zM831.16 614.326c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c12.134 0 22.008-9.872 22.008-22.006v-442.486h-442.486c-12.134 0-22.008 9.874-22.008 22.008 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-35.846 29.162-65.008 65.008-65.008h443.986c22.882 0 41.5 18.618 41.5 41.5v443.986c0 35.844-29.162 65.006-65.008 65.006z" /> -<glyph unicode="" glyph-name="portofolio-gallery" d="M678.332 323.166v467.5c0 22.88-18.62 41.5-41.5 41.5h-467.5c-22.88 0-41.5-18.62-41.5-41.5v-467.5c0-22.88 18.62-41.5 41.5-41.5h467.5c22.88 0 41.5 18.62 41.5 41.5zM645.292 688.606l-112.24 112.24h82.58c16.38 0 29.66-13.28 29.66-29.66v-82.58zM469.452 527.926l44.8-137.9c0.42-1.26-1.040-2.32-2.12-1.54l-117.3 85.24c-0.34 0.24-0.82 0.24-1.16 0l-117.3-85.24c-1.080-0.78-2.54 0.28-2.12 1.54l44.8 137.9c0.14 0.4 0 0.86-0.34 1.1l-117.32 85.24c-1.080 0.78-0.52 2.48 0.8 2.48h145.020c0.42 0 0.8 0.28 0.92 0.68l44.82 137.9c0.4 1.26 2.2 1.26 2.6 0l44.82-137.9c0.12-0.4 0.5-0.68 0.92-0.68h145.020c1.32 0 1.88-1.7 0.8-2.48l-117.32-85.24c-0.34-0.24-0.48-0.7-0.34-1.1zM786.548 214.95v443.986c0 35.844-29.162 65.006-65.006 65.006-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c12.134 0 22.006-9.872 22.006-22.006v-442.486h-442.486c-12.134 0-22.008 9.874-22.008 22.008 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-35.846 29.162-65.008 65.008-65.008h443.986c22.882 0 41.5 18.618 41.5 41.5zM831.16 614.326c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c12.134 0 22.008-9.872 22.008-22.006v-442.486h-442.486c-12.134 0-22.008 9.874-22.008 22.008 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-35.846 29.162-65.008 65.008-65.008h443.986c22.882 0 41.5 18.618 41.5 41.5v443.986c0 35.844-29.162 65.006-65.008 65.006z" /> -<glyph unicode="" glyph-name="post-author" d="M126.465 635.691c0-5.098-4.133-9.231-9.231-9.231s-9.231 4.133-9.231 9.231c0 5.098 4.133 9.231 9.231 9.231s9.231-4.133 9.231-9.231zM169.234 635.691c0-5.098-4.133-9.231-9.231-9.231s-9.231 4.133-9.231 9.231c0 5.098 4.133 9.231 9.231 9.231s9.231-4.133 9.231-9.231zM126.772 491.692h123.076c6.154 0 11.385 5.231 11.385 11.385s-5.231 11.385-11.385 11.385h-123.076c-6.154 0-11.385-5.231-11.385-11.385s5.231-11.385 11.385-11.385zM684.306 94.772c0-5.268-4.27-9.538-9.538-9.538s-9.538 4.27-9.538 9.538c0 5.268 4.27 9.538 9.538 9.538s9.538-4.27 9.538-9.538zM719.691 94.772c0-5.268-4.27-9.538-9.538-9.538s-9.538 4.27-9.538 9.538c0 5.268 4.27 9.538 9.538 9.538s9.538-4.27 9.538-9.538zM745.537 104.31c-5.231 0-9.538-4.308-9.538-9.538s4.308-9.538 9.538-9.538 9.538 4.308 9.538 9.538-4.308 9.538-9.538 9.538zM687.383 812.92c-141.537 0-259.69-101.23-285.536-235.383h-333.536v70.461c0 19.384 15.692 35.077 35.077 35.077h267.075c6.154 0 11.385 5.231 11.385 11.385s-5.231 11.385-11.385 11.385h-267.075c-32 0-57.846-25.846-57.846-57.846v-507.073c0-32 25.846-57.846 57.846-57.846h532.919c6.154 0 11.385 5.231 11.385 11.385s-5.231 11.385-11.385 11.385h-316.305v448.919h78.461c-1.231-10.769-1.846-21.846-1.846-33.23 0-67.999 24-134.153 67.692-186.46 4.308-5.231 8.923-10.154 13.538-15.077 1.846-2.154 4-4 5.846-5.846l2.462-2.462c54.461-52.307 125.845-80.922 201.537-80.922s147.076 28.615 201.229 80.922c7.692 7.385 15.077 15.384 21.846 23.384 43.692 52 67.692 118.461 67.692 186.46 0 160.614-130.46 291.075-291.075 291.075v0.308zM297.232 106.157h-38.769v339.382c0 5.538-4.615 10.154-10.154 10.154h-179.999v99.384h228.921v-448.919zM893.228 349.847c-5.231-6.154-10.461-12-16.308-17.846-27.692 77.846-102.153 133.845-189.537 133.845s-161.845-55.692-189.845-133.845l-3.692 3.692c-4.308 4.615-8.615 9.231-12.615 13.846-40.307 48.307-62.461 109.23-62.461 171.999 0 22.532 0.923 27.384 3.077 40.615 0.308 1.231 0.615 2.462 0.615 4s0 0 0 0.308c21.538 126.768 131.999 223.69 264.613 223.69s268.306-120.307 268.306-268.306c0-73.846-22.154-123.999-62.461-171.999h0.308zM787.468 605.903c0-55.398-44.909-100.307-100.307-100.307s-100.307 44.909-100.307 100.307c0 55.398 44.909 100.307 100.307 100.307s100.307-44.909 100.307-100.307zM841.228 187.387h-429.843c-6.154 0-11.385-5.231-11.385-11.385s5.231-11.385 11.385-11.385h429.843c6.154 0 11.385 5.231 11.385 11.385s-5.231 11.385-11.385 11.385z" /> -<glyph unicode="" glyph-name="post-carousel" d="M536.98 660.818s0 0 0 0l-20.774-20.774c-6.168-6.17-10.184-14.332-11.306-22.982l-8.992-69.284c-1.068-8.23 1.684-16.314 7.552-22.182 5.038-5.038 11.708-7.778 18.7-7.778 1.154 0 2.316 0.074 3.482 0.226l69.278 8.99c8.654 1.124 16.82 5.138 22.988 11.308l181.142 181.142c15.492 15.494 15.492 40.706 0 56.2l-45.5 45.5c-7.506 7.506-17.484 11.638-28.1 11.638s-20.594-4.132-28.098-11.638l-5.144-5.144s-155.224-155.224-155.224-155.224zM698.578 679.828l-76.918-76.916-5.242 5.24 111.432 111.43 5.24-5.24-34.512-34.514zM697.446 749.988l-111.432-111.432-5.24 5.242 111.432 111.43 5.242-5.242zM541.298 563.438l6.098 46.986 2.97 2.97 40.888-40.888-2.97-2.97-46.988-6.098zM725.446 788.472l40.888-40.886-2.838-2.838-40.886 40.888 2.836 2.836zM655.39 226.828c22.884 0 41.5 18.618 41.5 41.5v268.368c0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-223.724l-43.142-43.142h-221.59v341.162h72.196c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-277.168v61.414h362.5c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-364c-22.884 0-41.5-18.618-41.5-41.5v-448.576c0-22.882 18.616-41.5 41.5-41.5h472.704zM346.158 610.99v-341.162h-19.37v264.126c0 4.552-3.69 8.244-8.244 8.244h-134.358v68.792h161.97zM223.848 682.92c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 6.627 5.373 12 12 12s12-5.373 12-12zM272.020 682.92c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 6.627 5.373 12 12 12s12-5.373 12-12zM219.466 559.312h100.284c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-100.284c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM792.162 187.348v387.322c0 30.316-24.666 54.982-54.982 54.982-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c6.606 0 11.982-5.376 11.982-11.982v-385.822h-453.4c-6.608 0-11.982 5.376-11.982 11.982 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-30.316 24.664-54.982 54.982-54.982h454.9c22.884 0 41.5 18.618 41.5 41.5zM819.852 546.98c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c6.606 0 11.982-5.376 11.982-11.982v-385.822h-453.4c-6.608 0-11.982 5.376-11.982 11.982 0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5c0-30.316 24.664-54.982 54.982-54.982h454.9c22.884 0 41.5 18.618 41.5 41.5v387.322c0 30.316-24.666 54.982-54.982 54.982z" /> -<glyph unicode="" glyph-name="post-category-list" d="M868.26 694.159h-123.589c-38.455 0-69.742-31.285-69.742-69.742v-277.175c0-38.457 31.287-69.742 69.742-69.742h123.589c38.455 0 69.742 31.287 69.742 69.742v277.175c0 38.457-31.287 69.742-69.742 69.742zM895.086 347.243c0-14.793-12.032-26.826-26.826-26.826h-103.174l-47.24 47.238v256.763c0 14.791 12.032 26.826 26.826 26.826h123.589c14.793 0 26.826-12.034 26.826-26.826v-277.175zM573.793 694.159h-123.589c-38.457 0-69.742-31.285-69.742-69.742v-277.175c0-38.457 31.287-69.742 69.742-69.742h123.589c38.457 0 69.742 31.287 69.742 69.742v277.175c0 38.457-31.285 69.742-69.742 69.742zM600.619 347.243c0-14.793-12.034-26.826-26.826-26.826h-97.042l-53.372 53.372v250.628c0 14.791 12.034 26.826 26.826 26.826h123.589c14.791 0 26.826-12.034 26.826-26.826v-277.175zM279.328 694.159h-123.589c-38.457 0-69.742-31.285-69.742-69.742v-277.175c0-38.457 31.285-69.742 69.742-69.742h123.589c38.457 0 69.742 31.287 69.742 69.742v277.175c0 38.457-31.287 69.742-69.742 69.742zM306.156 347.243c0-14.793-12.034-26.826-26.826-26.826h-98.821l-51.593 51.593v252.407c0 14.791 12.032 26.826 26.826 26.826h123.589c14.793 0 26.826-12.034 26.826-26.826v-277.175zM599.771 257.542h-172.938c-11.853 0-21.458-9.607-21.458-21.458s9.605-21.458 21.458-21.458h172.938c11.853 0 21.458 9.607 21.458 21.458s-9.605 21.458-21.458 21.458zM304.004 257.542h-172.94c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h172.94c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM892.934 257.542h-172.94c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h172.94c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458z" /> -<glyph unicode="" glyph-name="post-comment" d="M126.941 679.036c-5.432 0-9.587-4.474-9.587-9.587s4.474-9.587 9.587-9.587 9.587 4.474 9.587 9.587-4.474 9.587-9.587 9.587zM171.039 679.036c-5.432 0-9.587-4.474-9.587-9.587s4.474-9.587 9.587-9.587 9.587 4.474 9.587 9.587-4.474 9.587-9.587 9.587zM136.528 520.538h126.862c6.391 0 11.823 5.432 11.823 11.823s-5.432 11.823-11.823 11.823h-126.862c-6.391 0-11.823-5.432-11.823-11.823s5.432-11.823 11.823-11.823zM688.392 795.991c-69.343 0-132.933-20.451-182.144-54.004h-393.687c-32.914 0-59.756-26.842-59.756-59.756v-522.466c0-32.914 26.842-59.756 59.756-59.756h515.436c32.914 0 59.756 26.842 59.756 59.756v129.099c0 6.391-5.432 11.823-11.823 11.823s-11.823-5.432-11.823-11.823v-78.61h-162.651c-6.391 0-11.823-5.432-11.823-11.823s5.432-11.823 11.823-11.823h162.651v-26.842c0-19.812-16.297-36.109-36.109-36.109h-292.070v462.391h70.94c-0.639-6.391-0.959-13.102-0.959-19.812 0-47.613 17.575-93.309 51.128-131.975l-66.786-137.087c-3.515-7.35-1.917-15.978 4.154-22.049 4.474-4.154 10.545-6.391 16.617-6.391s7.669 0.959 11.184 2.556l161.693 81.486c33.553-10.865 68.703-16.297 104.813-16.297 73.177 0 142.2 22.369 194.607 62.952 7.669 5.752 14.699 11.823 21.41 18.214 42.82 41.222 66.467 93.629 66.467 148.272 0 126.542-126.862 229.438-282.483 229.438l-0.32 0.639zM312.281 123.656h-39.944v349.589c0 5.752-4.793 10.545-10.545 10.545h-185.34v102.576h235.829v-462.71zM76.452 609.693v72.538c0 19.812 16.297 36.109 36.109 36.109h363.969c-32.914-30.038-55.921-67.425-65.828-108.328l-334.25-0.32zM888.112 435.218c-6.071-5.752-12.782-11.504-19.493-16.617-48.252-37.387-112.162-57.839-179.907-57.839s-69.662 5.432-102.256 16.617l-4.793 1.598-166.486-83.722 69.982 143.478-5.432 6.071c-32.914 35.47-50.489 77.651-50.489 121.749 0 113.441 116.317 205.791 259.156 205.791s258.836-92.35 258.836-205.791c0-50.914-21.090-94.268-59.436-131.016l0.32-0.32zM597.226 576.813c3.532-14.942-5.717-29.919-20.66-33.451s-29.919 5.717-33.451 20.66c-3.532 14.942 5.717 29.919 20.66 33.451s29.919-5.717 33.451-20.66zM699.381 590.002c10.857-10.857 10.857-28.46 0-39.316s-28.46-10.857-39.316 0c-10.857 10.857-10.857 28.46 0 39.316s28.46 10.857 39.316 0zM816.632 576.751c3.532-14.942-5.717-29.919-20.66-33.451s-29.919 5.717-33.451 20.66c-3.532 14.942 5.717 29.919 20.66 33.451s29.919-5.717 33.451-20.66z" /> -<glyph unicode="" glyph-name="post-content" d="M433.696 196.833h36.534l11.417 35.881h74.046l11.417-35.881h36.534l-60.672 174.513h-48.603l-60.346-174.513h-0.326zM520.137 344.598l27.726-88.398h-59.041l27.726 88.398h3.588zM768.696 265.007c0 14.679-2.283 27.726-7.176 38.491s-11.091 19.572-19.572 25.443c-8.481 6.198-18.267 9.133-29.684 9.133s-16.636-1.957-22.833-5.545-11.091-8.807-15.005-15.331-6.85-14.026-9.133-22.181h-5.219c0.979 5.545 1.631 10.764 2.61 15.983 0.652 5.219 1.631 10.112 2.283 15.005s0.979 9.46 0.979 13.7v44.688h-33.272v-120.039c0 0 0-67.848 0-67.848h28.379l-0.652 39.143h4.893c1.631-8.807 4.567-16.31 8.481-22.833s9.133-11.417 15.331-14.679c6.524-3.588 14.026-5.219 23.16-5.219s22.181 2.936 30.336 9.133 14.679 14.679 19.245 25.443 6.85 23.16 6.85 37.186v0.326zM729.879 242.174c-2.61-6.85-6.198-12.069-11.091-15.657s-10.764-5.545-17.614-5.545-11.091 1.305-15.331 4.241-8.155 6.198-11.091 10.438-5.219 8.807-6.524 14.026-2.283 9.786-2.283 14.026v4.567c0 3.262 0.326 6.85 1.305 11.091 0.979 3.914 2.283 7.829 4.241 11.417s4.567 7.176 7.176 10.112 6.198 5.545 9.786 7.502c3.914 1.957 8.155 2.936 12.722 2.936 6.85 0 12.722-1.957 17.288-5.545 4.567-3.914 8.155-9.133 10.764-15.983s3.914-14.679 3.914-23.486-1.305-16.962-3.914-23.812l0.652-0.326zM894.28 233.693c-2.283-4.567-5.871-7.829-10.438-10.764s-10.438-3.914-17.614-3.914-15.005 1.957-20.224 5.545-9.46 9.133-12.069 15.983-3.914 15.331-3.914 25.117 0.652 13.374 1.957 19.245 3.588 10.764 6.198 14.679 6.198 7.176 10.438 9.46 9.133 3.588 14.679 3.588 10.764-1.305 15.005-3.588 7.829-5.545 10.112-9.786c2.61-4.241 3.914-9.133 4.241-14.352l31.314 9.786c-1.631 9.133-4.893 16.636-10.112 23.486-5.219 6.524-12.069 11.743-20.224 15.331s-17.941 5.545-29.031 5.545-21.203-1.957-29.684-5.545-15.657-8.807-21.203-15.657c-5.871-6.85-10.112-14.679-13.048-23.812s-4.567-18.919-4.567-29.357 1.305-19.245 4.241-28.053c2.936-8.481 7.176-16.31 12.722-22.507 5.545-6.524 12.722-11.417 21.529-15.005s19.245-5.545 31.314-5.545 17.941 1.305 25.117 3.588 13.374 5.545 18.593 9.786 9.46 9.46 12.395 15.331 4.893 12.395 6.198 19.572l-29.684 6.198c-0.652-5.219-1.957-9.786-4.241-14.352zM141.427 681.229c0-5.219 4.241-9.786 9.786-9.786s9.786 4.241 9.786 9.786-4.241 9.786-9.786 9.786-9.786-4.241-9.786-9.786zM186.116 681.229c0-5.219 4.241-9.786 9.786-9.786s9.786 4.241 9.786 9.786-4.241 9.786-9.786 9.786-9.786-4.241-9.786-9.786zM160.999 530.854h128.194c6.524 0 12.069 5.545 12.069 12.069s-5.545 12.069-12.069 12.069h-128.194c-6.524 0-12.069-5.545-12.069-12.069s5.545-12.069 12.069-12.069zM928.53 796.049h-375.121c-19.572 0-35.555-15.983-35.555-35.555v-139.61h-417.527v73.067c0 19.898 16.31 36.207 36.207 36.207h315.102c6.524 0 12.069 5.545 12.069 12.069s-5.545 12.069-12.069 12.069h-315.102c-33.272 0-60.346-27.074-60.346-60.346v-527.78c0-33.272 27.074-60.346 60.346-60.346h554.854c6.524 0 12.069 5.545 12.069 12.069s-5.545 12.069-12.069 12.069h-329.128v467.108h155.594v-12.069c0-6.524 5.545-12.069 12.069-12.069s12.069 5.545 12.069 12.069v175.818c0 6.198 5.219 11.417 11.417 11.417h375.121c6.198 0 11.417-5.219 11.417-11.417v-234.532l-84.158 121.67c-2.283 3.262-5.871 5.219-9.786 5.219v0c-3.914 0-7.502-1.957-9.786-5.219l-81.548-116.451-98.51 165.706c-2.283 3.588-6.524 5.871-10.764 5.871s-8.481-2.61-10.438-6.524l-125.258-238.121c-1.957-3.588-1.957-8.155 0.326-11.743s6.198-5.871 10.438-5.871h408.393c19.572 0 35.555 15.983 35.555 35.555v284.44c0 19.572-15.983 35.555-35.555 35.555l-0.326-0.326zM338.448 129.963h-40.122v352.94c0 5.871-4.567 10.438-10.438 10.438h-187.235v103.403h237.794v-466.782zM939.947 476.38c0-6.198-5.219-11.417-11.417-11.417h-388.495l106.013 201.261 97.205-163.096c1.957-3.588 5.871-5.871 9.786-5.871 3.914-0.326 7.829 1.631 10.438 5.219l82.201 117.756 94.27-136.349v-7.502zM798.053 709.281c0-24.681-20.008-44.688-44.688-44.688s-44.688 20.008-44.688 44.688c0 24.681 20.008 44.688 44.688 44.688s44.688-20.008 44.688-44.688zM741.948 117.894c0-5.585-4.527-10.112-10.112-10.112s-10.112 4.527-10.112 10.112c0 5.585 4.527 10.112 10.112 10.112s10.112-4.527 10.112-10.112zM768.369 128.006c-5.545 0-10.112-4.567-10.112-10.112s4.567-10.112 10.112-10.112 10.112 4.567 10.112 10.112-4.567 10.112-10.112 10.112zM805.229 128.006c-5.545 0-10.112-4.567-10.112-10.112s4.567-10.112 10.112-10.112 10.112 4.567 10.112 10.112-4.567 10.112-10.112 10.112z" /> -<glyph unicode="" glyph-name="post-excerpt" d="M752.618 112.452h-362.77v514.808h252.1c7.072 0 13.082 6.011 13.082 13.082s-6.011 13.082-13.082 13.082h-540.619v80.616c0 22.275 18.032 40.308 40.308 40.308h557.591c22.275 0 40.308-18.032 40.308-40.308v-162.999h-210.732c-18.74 0-33.943-15.204-33.943-33.943s15.204-33.943 33.943-33.943h354.284c18.74 0 33.943 15.204 33.943 33.943s-15.204 33.943-33.943 33.943h-117.388v162.999c0 36.418-29.7 66.472-66.472 66.472h-557.591c-36.418 0-66.472-29.7-66.472-66.472v-581.281c0-36.418 29.7-66.472 66.472-66.472h610.981c7.072 0 13.082 6.011 13.082 13.082s-6.011 13.082-13.082 13.082zM364.037 627.26v-514.808h-44.551v388.935c0 6.364-5.304 11.668-11.668 11.668h-206.489v114.205h262.708zM146.94 719.897c0-6.011 4.95-10.607 10.607-10.607s10.607 4.95 10.607 10.607-4.95 10.607-10.607 10.607-10.607-4.95-10.607-10.607zM196.088 719.897c0-6.011 4.95-10.607 10.607-10.607s10.607 4.95 10.607 10.607-4.95 10.607-10.607 10.607-10.607-4.95-10.607-10.607zM168.508 554.423h141.077c7.072 0 13.082 6.011 13.082 13.082s-6.011 13.082-13.082 13.082h-141.077c-7.072 0-13.082-6.011-13.082-13.082s6.011-13.082 13.082-13.082zM957.692 249.286h-428.535c-18.74 0-33.943-15.204-33.943-33.943s15.204-33.943 33.943-33.943h428.535c18.74 0 33.943 15.204 33.943 33.943s-15.204 33.943-33.943 33.943zM529.157 410.164h254.929c18.746 0 33.943-15.197 33.943-33.943s-15.197-33.943-33.943-33.943h-254.929c-18.746 0-33.943 15.197-33.943 33.943s15.197 33.943 33.943 33.943z" /> -<glyph unicode="" glyph-name="post-grid" d="M712.174 554.834c-11.874 0-21.5-9.624-21.5-21.5v-228.624l-24.264-24.266h-173.032v278.476c0 11.876-9.626 21.5-21.5 21.5h-138.554v25.33c0 7.28 5.922 13.204 13.202 13.204h165.47c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-165.47c-30.99 0-56.202-25.212-56.202-56.204v-312.104c0-30.99 25.212-56.204 56.202-56.204h330.946c30.99 0 56.202 25.212 56.202 56.204v239.688c0 11.876-9.624 21.5-21.5 21.5zM450.378 537.42v-256.976h-10.414v161.448c0 3.556-2.882 6.438-6.436 6.438h-100.204v89.092h117.054zM359.582 598.298c0-5.175-4.195-9.37-9.37-9.37s-9.37 4.195-9.37 9.37c0 5.175 4.195 9.37 9.37 9.37s9.37-4.195 9.37-9.37zM378.458 598.298c0-5.174 4.196-9.37 9.37-9.37s9.372 4.196 9.372 9.37-4.196 9.37-9.372 9.37-9.37-4.194-9.37-9.37zM369.456 478.478h48.046c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-48.046c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM659.762 402.15c0 11.876-9.626 21.5-21.5 21.5h-101.724c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h101.724c11.874 0 21.5 9.624 21.5 21.5zM536.54 362.834c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h35.592c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5h-35.592zM768 618.832c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c11.474 0 21.166-7.25 21.166-15.832v-224c0-8.582-9.694-15.834-21.166-15.834-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c35.382 0 64.166 26.392 64.166 58.834v224c0 32.44-28.786 58.832-64.166 58.832zM874.666 597.498c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c11.67 0 21.166-9.494 21.166-21.166v-170.666c0-11.672-9.496-21.166-21.166-21.166-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c35.382 0 64.166 28.786 64.166 64.166v170.666c0 35.38-28.786 64.166-64.166 64.166zM256 575.832c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5c-35.382 0-64.166-26.392-64.166-58.832v-224c0-32.442 28.786-58.834 64.166-58.834 11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5c-11.474 0-21.166 7.252-21.166 15.834v224c0 8.582 9.694 15.832 21.166 15.832zM149.334 554.5c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5c-35.38 0-64.166-28.786-64.166-64.168v-170.664c0-35.382 28.786-64.168 64.166-64.168 11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5c-11.67 0-21.166 9.496-21.166 21.168v170.664c0 11.672 9.496 21.168 21.166 21.168zM783.040 808.198c-7.504 7.506-17.484 11.638-28.1 11.638s-20.594-4.132-28.098-11.638l-5.144-5.144s-155.224-155.224-155.224-155.224c0 0 0 0 0 0l-20.774-20.774c-6.168-6.17-10.184-14.332-11.306-22.982l-8.992-69.284c-1.068-8.23 1.684-16.314 7.552-22.182 5.038-5.038 11.708-7.778 18.7-7.778 1.154 0 2.316 0.074 3.482 0.226l69.278 8.99c8.654 1.124 16.82 5.138 22.988 11.308l181.142 181.142c15.492 15.494 15.492 40.706 0 56.2l-45.5 45.5zM617.778 556.548l-46.988-6.098 6.098 46.986 2.97 2.97 40.888-40.888-2.97-2.97zM615.506 625.57l-5.24 5.242 111.432 111.43 5.242-5.242-111.432-111.43zM728.072 666.842l-76.918-76.916-5.242 5.24 111.432 111.43 5.242-5.242-34.512-34.512zM792.99 731.76l-40.886 40.888 2.836 2.836 40.888-40.886-2.838-2.838z" /> -<glyph unicode="" glyph-name="post-info" d="M166.803 651.002c0-5.049 4.158-8.91 8.91-8.91s8.91 4.158 8.91 8.91-4.158 8.91-8.91 8.91-8.91-4.158-8.91-8.91zM207.791 651.002c0-5.049 4.158-8.91 8.91-8.91s8.91 4.158 8.91 8.91-4.158 8.91-8.91 8.91-8.91-4.158-8.91-8.91zM184.624 512.298h118.507c5.94 0 10.989 5.049 10.989 10.989s-5.049 10.989-10.989 10.989h-118.507c-5.94 0-10.989-5.049-10.989-10.989s5.049-10.989 10.989-10.989v0zM712.709 139.252c-5.049 0-9.207-4.158-9.207-9.207s4.158-9.207 9.207-9.207 9.207 4.158 9.207 9.207-4.158 9.207-9.207 9.207zM746.865 139.252c-5.049 0-9.207-4.158-9.207-9.207s4.158-9.207 9.207-9.207 9.207 4.158 9.207 9.207-4.158 9.207-9.207 9.207zM780.724 139.252c-5.049 0-9.207-4.158-9.207-9.207s4.158-9.207 9.207-9.207 9.207 4.158 9.207 9.207-4.158 9.207-9.207 9.207zM708.551 805.744c-127.121 0-233.747-90.291-258.696-210.284h-321.365v67.718c0 18.712 15.148 33.859 33.859 33.859h257.211c5.94 0 10.989 5.049 10.989 10.989s-5.049 10.989-10.989 10.989h-257.211c-30.592 0-55.838-24.949-55.838-55.838v-488.285c0-30.592 24.949-55.838 55.838-55.838h513.234c5.94 0 10.989 5.049 10.989 10.989s-5.049 10.989-10.989 10.989h-304.733v432.447h75.441c-1.188-10.395-1.782-21.088-1.782-31.78 0-61.778 21.682-121.774 61.481-169.296 3.861-4.752 8.019-9.207 12.177-13.662l7.722-7.722c49.304-47.225 114.349-73.362 182.959-73.362s133.358 26.137 182.662 73.362c7.128 6.831 13.662 13.959 19.9 21.385 39.502 47.225 61.481 107.518 61.481 169.296 0 145.535-118.507 264.042-264.042 264.042h-0.297zM348.871 141.035h-37.423v326.712c0 5.346-4.455 9.801-9.801 9.801h-173.454v95.934h220.382v-432.447h0.297zM894.479 386.365c-5.643-6.831-11.88-13.365-18.118-19.603-45.146-43.364-104.548-67.421-167.514-67.421s-122.368 23.761-167.514 67.124l-2.376 2.079-4.752 4.752c-3.861 4.158-7.722 8.316-11.286 12.474-36.235 43.661-56.432 98.608-56.432 155.337 0 133.655 108.706 242.064 242.064 242.064s242.064-108.706 242.064-242.064c0-57.769-19.9-111.973-56.432-155.337l0.297 0.594zM893.885 219.445h-434.824c-5.94 0-10.989-5.049-10.989-10.989s5.049-10.989 10.989-10.989h434.824c5.94 0 10.989 5.049 10.989 10.989s-5.049 10.989-10.989 10.989zM778.942 403.295h-31.483c-3.861 0-6.831 2.97-6.831 6.831v179.691c0 3.861-2.97 6.831-6.831 6.831h-82.569c-3.861 0-6.831-2.97-6.831-6.831v-21.385c0-3.861 2.97-6.831 6.831-6.831h31.483c3.861 0 6.831-2.97 6.831-6.831v-144.941c0-3.861-2.97-6.831-6.831-6.831h-54.947c-3.861 0-6.831-2.97-6.831-6.831v-19.306c0-3.861 2.97-6.831 6.831-6.831h151.178c3.861 0 6.831 2.97 6.831 6.831v19.306c0 3.861-2.97 6.831-6.831 6.831v0.297zM739.184 677.153c0-19.684-15.957-35.641-35.641-35.641s-35.641 15.957-35.641 35.641c0 19.684 15.957 35.641 35.641 35.641s35.641-15.957 35.641-35.641z" /> -<glyph unicode="" glyph-name="post-list" d="M181.334 765.892h194.042c29.547 0 53.5-23.953 53.5-53.5v-194.042c0-29.547-23.953-53.5-53.5-53.5h-194.042c-29.547 0-53.5 23.953-53.5 53.5v194.042c0 29.547 23.953 53.5 53.5 53.5zM181.334 431.15h194.042c29.547 0 53.5-23.953 53.5-53.5v-194.042c0-29.547-23.953-53.5-53.5-53.5h-194.042c-29.547 0-53.5 23.953-53.5 53.5v194.042c0 29.547 23.953 53.5 53.5 53.5zM872.668 667.672h-381.158c-12.958 0-23.5-10.542-23.5-23.5v-125.020c0-12.958 10.542-23.5 23.5-23.5h381.158c12.958 0 23.5 10.542 23.5 23.5v125.020c0 12.958-10.542 23.5-23.5 23.5zM853.168 538.652h-342.158v86.020h342.158v-86.020zM489.51 692.094h245.426c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-245.426c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM872.668 332.93h-381.158c-12.958 0-23.5-10.542-23.5-23.5v-125.022c0-12.958 10.542-23.5 23.5-23.5h381.158c12.958 0 23.5 10.542 23.5 23.5v125.022c0 12.958-10.542 23.5-23.5 23.5zM853.168 203.908h-342.158v86.022h342.158v-86.022zM734.936 357.35c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-245.426c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h245.426z" /> -<glyph unicode="" glyph-name="post-navigation" d="M130.132 690.245c0-5.266 4.337-9.293 9.293-9.293s9.293 4.337 9.293 9.293-4.337 9.293-9.293 9.293-9.293-4.337-9.293-9.293zM191.778 690.245c0-5.133-4.161-9.293-9.293-9.293s-9.293 4.161-9.293 9.293c0 5.133 4.161 9.293 9.293 9.293s9.293-4.161 9.293-9.293zM149.029 545.27h123.601c6.196 0 11.462 5.266 11.462 11.462s-5.266 11.462-11.462 11.462h-123.601c-6.196 0-11.462-5.266-11.462-11.462s5.266-11.462 11.462-11.462zM965.291 518.010h-530.338c-6.196 0-11.462-5.266-11.462-11.462v-245.653c0-6.196 5.266-11.462 11.462-11.462h214.366v-56.070c0-19.516-15.799-35.315-35.315-35.315h-271.055v451.035h92.004c6.196 0 11.462 5.266 11.462 11.462s-5.266 11.462-11.462 11.462h-344.782v70.629c0 19.516 15.799 35.315 35.315 35.315h488.518c19.516 0 35.315-15.799 35.315-35.315v-125.15h-214.366c-6.196 0-11.462-5.266-11.462-11.462s5.266-11.462 11.462-11.462h453.513c6.196 0 11.462 5.266 11.462 11.462s-5.266 11.462-11.462 11.462h-216.224v125.15c0 31.907-26.021 58.238-58.238 58.238h-488.518c-31.907 0-58.238-26.021-58.238-58.238v-509.273c0-31.907 26.021-58.238 58.238-58.238h488.518c31.907 0 58.238 26.021 58.238 58.238v56.070h293.049c6.196 0 11.462 5.266 11.462 11.462v245.653c0 6.196-5.266 11.462-11.462 11.462zM320.335 609.084v-451.035h-39.032v340.754c0 5.576-4.647 10.223-10.223 10.223h-180.91v100.058h230.164zM446.724 495.086h241.626v-222.73h-241.626v222.73zM953.829 272.357h-242.865v222.73h242.865v-222.73zM793.364 421.669l66.602-45.537-66.602-45.537c-5.266-3.717-6.505-10.842-3.098-15.799 2.168-3.098 5.886-4.956 9.603-4.956s4.337 0.62 6.505 1.859l80.542 54.83c3.098 2.168 4.956 5.576 4.956 9.603s-1.859 7.435-4.956 9.603l-80.542 54.83c-5.266 3.408-12.391 2.168-15.799-3.098s-2.168-12.391 3.098-15.799h-0.31zM602.852 330.904l-66.602 45.537 66.602 45.537c5.266 3.717 6.505 10.842 3.098 15.799-3.408 5.266-10.842 6.505-15.799 3.098l-80.542-54.83c-3.098-2.168-4.956-5.576-4.956-9.603s1.859-7.435 4.956-9.603l80.542-54.83c1.859-1.239 4.337-1.859 6.505-1.859 3.717 0 7.125 1.859 9.603 4.956 3.408 5.266 2.168 12.391-3.098 15.799h-0.31z" /> -<glyph unicode="" glyph-name="post-title" d="M500.024 452.267l-65.335-189.578h39.629l12.139 38.915h80.329l12.139-38.915h39.629l-65.692 189.578h-52.839zM494.312 327.31l29.99 96.038h3.927l30.347-96.038h-64.264zM694.957 280.54c4.284-6.783 9.997-12.139 16.78-16.066 7.14-3.927 15.352-5.712 24.991-5.712s23.92 3.213 32.846 9.997 16.066 15.709 21.064 27.491 7.497 24.991 7.497 40.343-2.499 29.99-7.497 41.771-12.139 21.064-21.064 27.848c-8.925 6.426-19.993 9.997-32.132 9.997s-17.851-2.142-24.634-6.069-12.139-9.64-16.066-16.423c-4.284-7.14-7.497-14.995-9.997-24.277h-5.712c1.071 6.069 1.785 11.782 2.856 17.137 0.714 5.712 1.428 11.068 2.142 16.423s1.071 10.354 1.071 14.995v48.555h-36.059v-130.312c0 0 0-73.546 0-73.546h30.704l-0.714 42.485h4.998c1.785-9.64 4.998-17.851 9.283-24.634h-0.357zM686.745 340.162c0 3.57 0.357 7.497 1.428 11.782s2.499 8.568 4.641 12.496 4.998 7.854 7.854 11.068c3.213 3.213 6.783 6.069 10.711 7.854 3.927 2.142 8.568 2.856 13.924 2.856 7.497 0 13.567-2.142 18.922-6.069 4.998-4.284 8.925-9.997 11.782-17.137 2.856-7.497 4.284-15.709 4.284-25.348s-1.428-18.208-4.284-25.705-6.783-13.21-12.139-17.137-11.782-6.069-19.279-6.069-11.782 1.428-16.78 4.284-8.925 6.783-12.139 11.425-5.355 9.64-7.14 14.995c-1.428 5.355-2.142 10.711-2.142 15.352v4.998l0.357 0.357zM939.515 318.384c-0.714-5.712-2.142-10.711-4.641-15.352s-6.426-8.568-11.068-11.782c-4.998-2.856-11.425-4.284-19.279-4.284s-16.066 2.142-21.778 6.069-10.354 9.64-13.21 17.494c-2.856 7.497-4.284 16.78-4.284 27.134s0.714 14.638 2.142 20.707 3.927 11.425 6.783 16.066c2.856 4.284 6.783 7.854 11.068 10.354 4.641 2.499 9.64 3.57 16.066 3.57s11.425-1.071 16.066-3.57 8.211-6.069 11.068-10.711c2.499-4.641 4.284-9.64 4.641-15.352l33.917 10.711c-1.785 9.64-5.355 18.208-11.068 25.348s-12.853 12.853-21.778 16.78-19.279 5.712-31.418 5.712-22.849-2.142-32.132-6.069-16.78-9.64-23.206-16.78c-6.069-7.14-11.068-15.709-14.281-25.705s-4.998-20.35-4.998-32.132 1.428-21.064 4.641-30.347 7.854-17.494 13.924-24.634 13.924-12.496 23.563-16.423 20.707-5.712 33.917-5.712 19.636 1.428 27.491 3.927 14.638 6.069 19.993 10.711c5.712 4.641 9.997 9.997 13.21 16.78 3.213 6.426 5.355 13.567 6.783 21.064l-32.132 6.783v-0.357zM716.378 114.883h-361.304v506.968h190.292c7.14 0 13.21 6.069 13.21 13.21s-6.069 13.21-13.21 13.21h-474.479v79.258c0 21.778 17.494 39.272 39.272 39.272h628.712l-111.747-111.747c-5.355-5.355-8.568-12.139-9.64-19.636l-10.354-78.901c-0.714-5.712 1.428-11.782 5.355-15.709 3.57-3.57 8.211-5.355 13.21-5.355s1.785 0 2.499 0l78.544 10.354c7.497 1.071 14.281 4.284 19.636 9.64l45.342 45.342c0 0 0 0 0 0l160.302 160.302c6.426 6.426 9.997 14.995 9.997 23.92s-3.57 17.494-9.997 23.92l-51.768 51.768c-12.853 12.853-35.345 12.853-47.841 0l-13.924-13.924c0 0-54.624-54.624-54.624-54.624-1.428 0.357-2.856 0.714-4.641 0.714h-649.776c-36.416 0-65.692-29.633-65.692-65.692v-573.017c0-36.416 29.633-65.692 65.692-65.692h606.577c7.14 0 13.21 6.069 13.21 13.21s-6.069 13.21-13.21 13.21h0.357zM753.151 619.352c-7.854-7.854-21.064-7.854-28.919 0l-7.14 7.14 142.451 142.451 21.778-21.778-127.813-127.813h-0.357zM698.17 645.057l-7.14 7.14c-7.854 7.854-7.854 21.064 0 28.919l127.813 127.813 21.778-21.778-142.451-142.451v0.357zM703.525 571.511l-68.905-8.925 8.925 68.905c0 1.785 1.071 3.213 2.142 4.284l15.709 15.709c2.142-6.426 6.069-12.853 11.068-17.851l33.203-33.203c5.355-5.355 11.425-8.925 17.851-11.068l-15.709-15.709c-1.071-1.071-2.856-1.785-4.284-2.142zM851.332 841.775c1.428 1.428 3.213 2.142 5.355 2.142s3.927-0.714 5.355-2.142l51.768-51.768c1.428-1.428 2.142-3.213 2.142-5.355s-0.714-3.927-2.142-5.355l-13.924-13.924-62.478 62.478 13.924 13.924zM328.655 621.851v-506.968h-43.556v383.082c0 6.426-4.998 11.425-11.425 11.425h-203.144v112.104h258.125v0.357zM136.221 713.248c0-5.915-4.795-10.711-10.711-10.711s-10.711 4.795-10.711 10.711c0 5.915 4.795 10.711 10.711 10.711s10.711-4.795 10.711-10.711zM184.776 713.248c0-5.915-4.795-10.711-10.711-10.711s-10.711 4.795-10.711 10.711c0 5.915 4.795 10.711 10.711 10.711s10.711-4.795 10.711-10.711zM136.221 550.090h139.238c7.14 0 13.21 6.069 13.21 13.21s-6.069 13.21-13.21 13.21h-139.238c-7.14 0-13.21-6.069-13.21-13.21s6.069-13.21 13.21-13.21zM857.758 204.852h-405.932c-7.14 0-13.21-6.069-13.21-13.21s6.069-13.21 13.21-13.21h405.932c7.14 0 13.21 6.069 13.21 13.21s-6.069 13.21-13.21 13.21z" /> -<glyph unicode="" glyph-name="presentation" d="M928 928h-64c-23.584 0-44-12.96-55.104-32h-593.792c-11.104 19.040-31.52 32-55.104 32h-64c-35.296 0-64-28.704-64-64v-128c0-23.584 12.96-44 32-55.104v-424.896c0-35.296 28.704-64 64-64h352v-37.6c-37.232-13.216-64-48.688-64-90.4 0-52.944 43.056-96 96-96s96 43.056 96 96c0 41.712-26.768 77.184-64 90.4v37.6h352c35.296 0 64 28.704 64 64v424.896c19.040 11.104 32 31.52 32 55.104v128c0 35.296-28.704 64-64 64zM512 32c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM928 864v-128h-64v128h64zM800 768h-576v64h576v-64zM96 864h64v-128h-64l-0.032 128h0.032zM128 256v416h32c23.584 0 44 12.96 55.104 32h593.792c11.104-19.040 31.52-32 55.104-32h32v-416h-768zM448 384h-224v40.928l61.552 20.512 52.144-26.080c10.256-5.088 22.496-4.352 32.064 2l96 64c14.704 9.792 18.672 29.664 8.88 44.368-9.808 14.704-29.664 18.72-44.368 8.88l-80.544-53.696-47.392 23.696c-7.6 3.776-16.384 4.4-24.432 1.728l-53.872-17.952v19.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-17.664 14.336-32 32-32h256c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 576h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM448 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 640h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 512h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 384h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="price-list" d="M682.996 151.37h-490.826c-12.058 0-21.834-9.776-21.834-21.834s9.776-21.834 21.834-21.834h490.824c12.058 0 21.834 9.776 21.834 21.834s-9.776 21.834-21.834 21.834zM193.012 767h490.824c12.059 0 21.834-9.775 21.834-21.834v-41.93c0-12.059-9.775-21.834-21.834-21.834h-490.824c-12.059 0-21.834 9.775-21.834 21.834v41.93c0 12.059 9.775 21.834 21.834 21.834zM192.17 617.902h490.824c12.058 0 21.834 9.776 21.834 21.834s-9.776 21.834-21.834 21.834h-490.824c-12.058 0-21.834-9.776-21.834-21.834s9.776-21.834 21.834-21.834zM839.728 652.666c-4.854-1.734-10.848-2.602-17.994-2.602-7.31 0-13.868 1.114-19.666 3.314-5.8 2.23-10.368 5.576-13.706 10.036-3.33 4.428-5.080 10.158-5.242 17.158l-29.546-9.076c0.31-7.928 2.060-14.804 5.242-20.596 3.174-5.822 7.658-10.654 13.464-14.556 5.8-3.902 12.706-6.752 20.736-8.58 4.384-0.998 9.092-1.694 14.068-2.142l-5.374-31.090h32.18l-5.536 30.742c10.876 0.582 20.324 2.316 28.292 5.248 9.926 3.654 17.436 8.858 22.524 15.61 5.080 6.752 7.626 14.71 7.626 23.94 0 8.734-1.912 15.858-5.722 21.34s-8.696 9.88-14.658 13.224c-5.954 3.344-12.434 5.978-19.426 7.99-6.992 1.982-13.744 3.686-20.254 5.11-6.992 1.424-13.464 3.004-19.418 4.77-5.962 1.734-10.654 3.964-14.070 6.66-3.414 2.724-5.118 6.224-5.118 10.5 0 3.19 1.108 6.102 3.338 8.828 2.222 2.694 5.558 4.832 10.004 6.442 4.452 1.58 9.77 2.354 15.972 2.354 5.242 0 9.926-0.62 14.062-1.888 4.126-1.27 7.658-3.098 10.6-5.482s5.164-5.358 6.674-8.95c1.51-3.562 2.268-7.65 2.268-12.264l30.268 8.114c-0.48 9.354-3.298 17.436-8.462 24.188-5.166 6.752-12.436 11.986-21.804 15.734-6.61 2.62-14.104 4.296-22.452 5.070l5.294 29.836h-32.18l5.078-29.824c-8.528-0.778-16.034-2.498-22.476-5.206-9.052-3.808-15.966-9.136-20.736-15.98-4.762-6.814-7.148-14.866-7.148-24.064 0-8.116 1.742-14.804 5.242-20.132 3.492-5.328 8.222-9.664 14.186-13.008 5.954-3.314 12.59-6.070 19.898-8.208 7.302-2.136 14.85-4.088 22.64-5.854 6.992-1.58 13.186-3.158 18.59-4.77 5.396-1.58 9.648-3.654 12.746-6.194 3.104-2.54 4.654-5.636 4.654-9.292 0-3.5-1.24-6.66-3.694-9.54-2.47-2.85-6.124-5.142-10.964-6.906zM193.012 256.8h490.824c12.059 0 21.834-9.775 21.834-21.834v-41.93c0-12.059-9.775-21.834-21.834-21.834h-490.824c-12.059 0-21.834 9.775-21.834 21.834v41.93c0 12.059 9.775 21.834 21.834 21.834zM866.418 194.436c-5.954 3.344-12.434 5.976-19.426 7.99-6.992 1.982-13.744 3.686-20.254 5.11-6.992 1.424-13.464 3.004-19.418 4.77-5.962 1.734-10.654 3.964-14.070 6.658-3.414 2.726-5.118 6.226-5.118 10.5 0 3.19 1.108 6.1 3.338 8.826 2.222 2.694 5.558 4.832 10.004 6.442 4.452 1.58 9.77 2.354 15.972 2.354 5.242 0 9.926-0.62 14.062-1.888 4.126-1.27 7.658-3.098 10.6-5.482s5.164-5.358 6.674-8.95c1.51-3.562 2.268-7.65 2.268-12.264l30.268 8.114c-0.48 9.354-3.298 17.436-8.462 24.188-5.166 6.752-12.436 11.986-21.804 15.734-6.61 2.62-14.104 4.296-22.452 5.070l5.294 29.834h-32.18l5.078-29.822c-8.528-0.778-16.034-2.498-22.476-5.206-9.052-3.81-15.966-9.136-20.736-15.982-4.762-6.814-7.148-14.866-7.148-24.064 0-8.114 1.742-14.804 5.242-20.13 3.492-5.328 8.222-9.664 14.186-13.008 5.954-3.314 12.59-6.072 19.898-8.208 7.302-2.136 14.85-4.088 22.64-5.854 6.992-1.58 13.186-3.16 18.59-4.77 5.396-1.58 9.648-3.654 12.746-6.194 3.104-2.54 4.654-5.636 4.654-9.292 0-3.5-1.24-6.66-3.694-9.54-2.47-2.85-6.124-5.142-10.964-6.908-4.854-1.734-10.848-2.602-17.994-2.602-7.31 0-13.868 1.116-19.666 3.314-5.8 2.23-10.368 5.574-13.706 10.034-3.33 4.428-5.080 10.16-5.242 17.158l-29.546-9.074c0.31-7.928 2.060-14.804 5.242-20.596 3.174-5.824 7.658-10.654 13.464-14.556 5.8-3.902 12.706-6.752 20.736-8.58 4.384-1 9.092-1.694 14.068-2.142l-5.374-31.090h32.18l-5.536 30.742c10.876 0.58 20.324 2.316 28.292 5.246 9.926 3.656 17.436 8.858 22.524 15.61 5.080 6.75 7.626 14.71 7.626 23.94 0 8.734-1.912 15.858-5.722 21.338-3.81 5.482-8.696 9.88-14.658 13.226zM193.012 511.9h490.824c12.059 0 21.834-9.775 21.834-21.834v-41.93c0-12.059-9.775-21.834-21.834-21.834h-490.824c-12.059 0-21.834 9.775-21.834 21.834v41.93c0 12.059 9.775 21.834 21.834 21.834zM192.17 362.802h490.824c12.058 0 21.834 9.776 21.834 21.834s-9.776 21.834-21.834 21.834h-490.824c-12.058 0-21.834-9.776-21.834-21.834s9.776-21.834 21.834-21.834zM866.418 449.536c-5.954 3.344-12.434 5.976-19.426 7.99-6.992 1.982-13.744 3.686-20.254 5.11-6.992 1.424-13.464 3.004-19.418 4.77-5.962 1.734-10.654 3.964-14.070 6.66-3.414 2.724-5.118 6.224-5.118 10.5 0 3.19 1.108 6.1 3.338 8.826 2.222 2.696 5.558 4.832 10.004 6.442 4.452 1.58 9.77 2.354 15.972 2.354 5.242 0 9.926-0.62 14.062-1.888 4.126-1.27 7.658-3.098 10.6-5.482s5.164-5.358 6.674-8.95c1.51-3.562 2.268-7.65 2.268-12.264l30.268 8.114c-0.48 9.354-3.298 17.436-8.462 24.188-5.166 6.752-12.436 11.986-21.804 15.734-6.61 2.62-14.104 4.296-22.452 5.070l5.294 29.834h-32.18l5.078-29.822c-8.528-0.778-16.034-2.498-22.476-5.206-9.052-3.81-15.966-9.136-20.736-15.98-4.762-6.814-7.148-14.868-7.148-24.066 0-8.114 1.742-14.804 5.242-20.13 3.492-5.328 8.222-9.664 14.186-13.008 5.954-3.314 12.59-6.070 19.898-8.208 7.302-2.136 14.85-4.088 22.64-5.854 6.992-1.58 13.186-3.16 18.59-4.77 5.396-1.58 9.648-3.654 12.746-6.194 3.104-2.54 4.654-5.636 4.654-9.292 0-3.5-1.24-6.66-3.694-9.54-2.47-2.85-6.124-5.142-10.964-6.908-4.854-1.734-10.848-2.602-17.994-2.602-7.31 0-13.868 1.116-19.666 3.314-5.8 2.23-10.368 5.576-13.706 10.036-3.33 4.428-5.080 10.158-5.242 17.158l-29.546-9.074c0.31-7.928 2.060-14.804 5.242-20.596 3.174-5.824 7.658-10.654 13.464-14.556 5.8-3.902 12.706-6.752 20.736-8.58 4.384-0.998 9.092-1.694 14.068-2.142l-5.374-31.090h32.18l-5.536 30.742c10.876 0.58 20.324 2.316 28.292 5.248 9.926 3.654 17.436 8.858 22.524 15.61 5.080 6.75 7.626 14.71 7.626 23.94 0 8.734-1.912 15.858-5.722 21.34s-8.696 9.878-14.658 13.224z" /> -<glyph unicode="" glyph-name="price-table" d="M582.682 226.402c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-141.364c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h141.364zM669.050 205.862h-314.1c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h314.1c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5zM329.072 421.784v-99.98c0-14.060 11.44-25.5 25.5-25.5h335.22c14.060 0 25.5 11.44 25.5 25.5v99.98c0 14.060-11.44 25.5-25.5 25.5h-335.22c-14.060 0-25.5-11.44-25.5-25.5zM372.232 385.604h34.32l6.080 18.68 4.54 13.98c0.12 0.36 0.62 0.36 0.74 0l4.54-13.98 6.080-18.68h34.34c0.38 0 0.52-0.48 0.22-0.7l-27.78-20.2 8.26-25.4 2.36-7.24c0.12-0.36-0.3-0.66-0.6-0.44l-27.78 20.18-27.78-20.18c-0.32-0.22-0.72 0.080-0.6 0.44l2.36 7.24 8.24 25.4-27.7 20.14v0.72c0.040 0.020 0.1 0.040 0.16 0.040zM476.852 372.104c0 3.42 1.4 6.52 3.64 8.76s5.36 3.64 8.78 3.64h164c6.84 0 12.4-5.56 12.4-12.4 0-3.44-1.38-6.54-3.64-8.78-2.24-2.26-5.34-3.64-8.76-3.64h-164c-6.86 0-12.42 5.56-12.42 12.42zM463.632 600.204c6.52-3.62 13.8-6.66 21.82-9s16.3-4.48 24.84-6.42c7.68-1.74 14.48-3.46 20.4-5.24 5.92-1.72 10.6-4 14-6.78 3.4-2.8 5.1-6.2 5.1-10.2 0-3.84-1.36-7.3-4.060-10.46-2.7-3.14-6.72-5.66-12.020-7.58-5.34-1.92-11.9-2.86-19.74-2.86-8.020 0-15.22 1.22-21.58 3.64-6.38 2.44-11.38 6.12-15.040 11-3.66 4.86-5.58 11.16-5.76 18.84l-32.42-9.96c0.34-8.7 2.26-16.24 5.76-22.6 3.48-6.4 8.4-11.7 14.78-15.98 6.36-4.28 13.94-7.4 22.74-9.4 4.82-1.1 9.96-1.9 15.44-2.38l-5.9-34.1h35.3l-6.060 33.72c11.94 0.62 22.3 2.56 31.040 5.78 10.88 4 19.12 9.72 24.72 17.12 5.56 7.42 8.36 16.14 8.36 26.28 0 9.58-2.1 17.38-6.28 23.4s-9.54 10.84-16.080 14.52c-6.54 3.66-13.64 6.56-21.32 8.76-7.66 2.18-15.080 4.040-22.22 5.6-7.68 1.58-14.78 3.3-21.3 5.24-6.54 1.9-11.7 4.36-15.44 7.3-3.76 3-5.62 6.84-5.62 11.52 0 3.5 1.22 6.7 3.66 9.7 2.44 2.94 6.1 5.3 10.98 7.060 4.88 1.74 10.72 2.58 17.52 2.58 5.76 0 10.9-0.68 15.44-2.060 4.52-1.4 8.4-3.4 11.62-6.020 3.24-2.62 5.66-5.88 7.32-9.82 1.66-3.92 2.5-8.4 2.5-13.46l33.2 8.9c-0.52 10.26-3.62 19.14-9.28 26.54s-13.64 13.16-23.92 17.26c-7.26 2.88-15.48 4.74-24.64 5.58l5.8 32.72h-35.3l5.58-32.7c-9.36-0.86-17.58-2.76-24.66-5.74-9.94-4.18-17.52-10.020-22.76-17.52-5.22-7.48-7.84-16.32-7.84-26.42 0-8.9 1.92-16.24 5.76-22.080 3.82-5.84 9.020-10.6 15.56-14.28zM152.514 705.674h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-37.752 0-68.468-31.944-68.468-71.208v-493.652c0-39.264 30.714-71.208 68.468-71.208h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-14.042 0-25.468 12.654-25.468 28.208v493.652c0 15.552 11.424 28.208 25.468 28.208zM871.486 748.674h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c14.042 0 25.468-12.654 25.468-28.208v-493.652c0-15.552-11.426-28.208-25.468-28.208h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c37.754 0 68.468 31.944 68.468 71.208v493.652c0 39.264-30.714 71.208-68.468 71.208zM728.452 831.164h-443.56c-22.88 0-41.5-18.62-41.5-41.5v-685.34c0-22.88 18.62-41.5 41.5-41.5h443.56c22.88 0 41.5 18.62 41.5 41.5v685.34c0 22.88-18.62 41.5-41.5 41.5zM726.952 105.824h-440.56v574.702l114.614 107.638h325.946v-682.34z" /> -<glyph unicode="" glyph-name="pricing-compare" d="M448.125 788.501h127.75c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-127.75c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM591.040 128.789h-127.75c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h127.75c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM703.626 788.501h127.75c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-127.75c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM150.039 575.585h723.92c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-723.92c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM192.624 682.043h127.75c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-127.75c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458zM469.249 703.501c0-23.574 19.177-42.751 42.751-42.751s42.751 19.177 42.751 42.751-19.177 42.751-42.751 42.751-42.751-19.177-42.751-42.751zM512.010 703.335c-0.11 0.008-0.166 0.060-0.176 0.166 0.010 0.106 0.064 0.158 0.156 0.166 0.114-0.008 0.168-0.062 0.176-0.156-0.008-0.114-0.062-0.168-0.158-0.176zM729.868 668.224c4.19-4.19 9.681-6.284 15.172-6.284s10.983 2.096 15.174 6.284l6.108 6.108 7.296-7.296c4.192-4.192 9.681-6.286 15.174-6.286s10.983 2.096 15.174 6.284c8.38 8.38 8.38 21.967 0 30.347l-7.298 7.298 7.298 7.298c8.38 8.38 8.38 21.965 0 30.347-8.378 8.38-21.965 8.38-30.347 0l-7.296-7.296-4.94 4.94c-8.382 8.378-21.965 8.378-30.347 0-8.38-8.38-8.38-21.967 0-30.347l4.94-4.94-6.108-6.108c-8.38-8.38-8.38-21.967 0-30.347zM873.959 405.583h-723.92c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h723.92c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM192.624 512.041c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h127.75c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-127.75zM469.249 490.583c0-23.572 19.177-42.751 42.751-42.751s42.751 19.177 42.751 42.751-19.177 42.751-42.751 42.751-42.751-19.177-42.751-42.751zM512.010 490.417c-0.11 0.008-0.166 0.060-0.176 0.166 0.010 0.108 0.064 0.16 0.156 0.166 0.116-0.008 0.17-0.062 0.178-0.156-0.008-0.114-0.062-0.168-0.158-0.176zM724.168 490.583c0-23.572 19.177-42.751 42.751-42.751s42.751 19.177 42.751 42.751-19.177 42.751-42.751 42.751-42.751-19.177-42.751-42.751zM766.926 490.417c-0.11 0.008-0.164 0.060-0.174 0.166 0.010 0.108 0.064 0.16 0.154 0.166 0.116-0.008 0.17-0.062 0.178-0.156-0.008-0.114-0.062-0.168-0.158-0.176zM873.959 192.665h-723.92c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h723.92c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM320.374 256.209c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-127.75c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h127.75zM554.749 277.667c0 23.572-19.177 42.751-42.751 42.751s-42.751-19.177-42.751-42.751 19.177-42.751 42.751-42.751 42.751 19.177 42.751 42.751zM511.99 277.832c0.116-0.008 0.17-0.062 0.178-0.156-0.008-0.116-0.062-0.17-0.156-0.178-0.112 0.008-0.166 0.060-0.176 0.166 0.010 0.108 0.064 0.16 0.156 0.166zM729.868 242.39c4.19-4.19 9.683-6.284 15.174-6.284s10.983 2.094 15.174 6.284l6.108 6.108 7.296-7.296c4.19-4.19 9.683-6.284 15.174-6.284s10.983 2.094 15.174 6.284c8.38 8.38 8.38 21.967 0 30.347l-7.296 7.296 7.296 7.296c8.38 8.38 8.38 21.967 0 30.347s-21.967 8.38-30.347 0l-7.296-7.296-4.94 4.94c-8.38 8.38-21.967 8.38-30.347 0s-8.38-21.967 0-30.347l4.94-4.94-6.108-6.108c-8.38-8.38-8.38-21.967 0-30.347z" /> -<glyph unicode="" glyph-name="pricing-image-box" d="M582.152 324.614c11.86 0 21.5 9.62 21.5 21.5s-9.64 21.5-21.5 21.5h-140.3c-11.88 0-21.5-9.62-21.5-21.5s9.62-21.5 21.5-21.5h140.3zM667.852 191.174h-311.7c-11.88 0-21.5-9.64-21.5-21.5s9.62-21.5 21.5-21.5h311.7c11.88 0 21.5 9.62 21.5 21.5s-9.62 21.5-21.5 21.5zM667.852 276.494h-311.7c-11.88 0-21.5-9.62-21.5-21.5s9.62-21.5 21.5-21.5h311.7c11.88 0 21.5 9.64 21.5 21.5s-9.62 21.5-21.5 21.5zM667.852 432.114h-311.7c-11.88 0-21.5-9.62-21.5-21.5s9.62-21.5 21.5-21.5h311.7c11.88 0 21.5 9.62 21.5 21.5s-9.62 21.5-21.5 21.5zM152.514 705.676h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-37.754 0-68.468-31.944-68.468-71.208v-493.652c0-39.266 30.714-71.208 68.468-71.208h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-14.042 0-25.468 12.654-25.468 28.208v493.652c0 15.552 11.426 28.208 25.468 28.208zM871.486 748.676h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c14.042 0 25.468-12.654 25.468-28.208v-493.652c0-15.554-11.426-28.208-25.468-28.208h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c37.754 0 68.468 31.944 68.468 71.208v493.652c0 39.264-30.714 71.208-68.468 71.208zM663.572 724.494h-104.36c1.74-3.52 2.7-8.2 2.7-14.34 0-2.42-0.14-4.82-0.44-7.16-0.94-7.74-3.38-15-7.040-21.5-10.040-17.9-29.2-29.98-51.18-29.98s-41.12 12.080-51.16 29.98c-3.66 6.5-6.1 13.76-7.042 21.5-0.3 2.34-0.44 4.74-0.44 7.16 0 6.14 0.94 10.8 2.7 14.34h-85.78c-22.88 0-41.5-18.62-41.5-41.5v-136.52l43 43s21.52 21.52 21.52 21.52c12 11.98 31.16 12.66 43.94 1.98l86.46-56.040 74.38 84.040c7.78 8.8 21.18 9.72 30.1 2.080l85.64-73.42v113.36c0 22.88-18.62 41.5-41.5 41.5zM662.072 549.854l-54.56 46.78-56.080-63.36 4.44-2.88c8.46-5.48 11.8-15.9 8.64-25-0.54-1.64-1.3-3.22-2.28-4.74-6.46-9.96-19.78-12.8-29.74-6.34l-123.64 80.16-84.82-84.82c-0.36-0.36-0.72-0.7-1.1-1 6.080-15.36 21.1-26.26 38.6-26.26h302.040c22.88 0 41.5 18.62 41.5 41.5v9.1l-43 36.86zM728.452 831.174h-443.56c-22.88 0-41.5-18.62-41.5-41.5v-685.34c0-22.88 18.62-41.5 41.5-41.5h443.56c22.88 0 41.5 18.62 41.5 41.5v685.34c0 22.88-18.62 41.5-41.5 41.5zM726.952 105.834h-440.56v574.7l114.6 107.64h325.96v-682.34z" /> -<glyph unicode="" glyph-name="pricing-list" d="M315.14 495.334c0-11.876 9.626-21.5 21.5-21.5h340.612c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-340.612c-11.874 0-21.5-9.624-21.5-21.5zM577.090 227.922c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-140.288c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h140.288zM662.802 207.868h-311.712c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h311.712c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM417.812 652.704c3.46-5.9 8.1-10.26 13.92-13.1s12.46-4.26 19.94-4.26c6.52 0 12.82 1.26 18.9 3.74 6.1 2.48 11.1 6.68 14.98 12.56 3.86 5.9 5.8 13.68 5.8 23.4 0 8.86-1.72 16.18-5.2 22-3.44 5.82-8.12 10.2-14 13.12-5.9 2.9-12.52 4.36-19.86 4.36-4.98 0-9.84-0.74-14.54-2.18-4.72-1.46-8.94-3.72-12.68-6.78-3.74-3.040-6.74-7.12-9.040-12.26-2.28-5.12-3.42-11.36-3.42-18.7 0-8.72 1.72-16.020 5.2-21.9zM436.932 686.564c1.66 2.7 3.76 4.66 6.34 5.92 2.54 1.26 5.28 1.88 8.2 1.88 2.9 0 5.74-0.66 8.52-1.98 2.76-1.32 5.040-3.44 6.86-6.34 1.8-2.9 2.68-6.84 2.68-11.84 0-4.72-0.82-8.42-2.48-11.12s-3.82-4.68-6.44-5.92c-2.64-1.26-5.34-1.86-8.1-1.86-3.060 0-5.96 0.68-8.74 2.060-2.76 1.38-5.020 3.56-6.74 6.54-1.74 3-2.6 6.84-2.6 11.54s0.82 8.42 2.5 11.12zM534.792 633.364c-3.74-3.1-6.74-7.24-8.94-12.36-2.22-5.12-3.32-11.36-3.32-18.7 0-8.72 1.7-16 5.080-21.8 3.4-5.82 8.040-10.18 13.92-13.1 5.9-2.9 12.5-4.36 19.84-4.36 6.52 0 12.82 1.28 18.92 3.84 6.080 2.58 11.12 6.74 15.060 12.56s5.92 13.58 5.92 23.28c0 8.86-1.72 16.24-5.2 22.12-3.46 5.88-8.16 10.26-14.12 13.1s-12.6 4.26-19.94 4.26c-4.86 0-9.66-0.7-14.44-2.080-4.8-1.4-9.040-3.64-12.78-6.76zM553.072 620.284c2.62 1.32 5.4 1.98 8.3 1.98 2.92 0 5.72-0.66 8.42-1.98s4.96-3.44 6.76-6.34 2.7-6.94 2.7-12.060c0-4.7-0.84-8.4-2.5-11.1-1.66-2.72-3.8-4.64-6.44-5.82s-5.32-1.76-8.1-1.76c-2.92 0-5.78 0.64-8.62 1.96s-5.1 3.46-6.76 6.44c-1.66 2.98-2.48 6.84-2.48 11.54s0.78 8.42 2.38 11.12c1.6 2.68 3.7 4.7 6.34 6.020zM477.432 570.524l82.28 137.12h-25.76l-82.28-137.12h25.76zM350.752 447.444c-14.060 0-25.5-11.44-25.5-25.5v-99.16c0-14.060 11.44-25.5 25.5-25.5h332.6c14.060 0 25.5 11.44 25.5 25.5v99.16c0 14.060-11.44 25.5-25.5 25.5h-332.6zM402.312 386.084l10.52 32.4c0.12 0.36 0.64 0.36 0.74 0l4.56-14.040 5.98-18.36h34.060c0.38 0 0.54-0.5 0.24-0.72l-27.56-20.020 8.14-25.060 2.38-7.34c0.12-0.36-0.3-0.66-0.6-0.44l-27.56 20.020-27.56-20.020c-0.32-0.22-0.72 0.080-0.6 0.44l2.38 7.34 8.14 25.060-27.32 19.84v0.9h34.060zM472.072 372.664c0 3.4 1.38 6.48 3.6 8.72 2.22 2.22 5.3 3.6 8.7 3.6h162.76c6.8 0 12.32-5.52 12.32-12.32 0-3.4-1.38-6.48-3.6-8.7-2.24-2.22-5.32-3.6-8.72-3.6h-162.76c-6.8 0-12.3 5.5-12.3 12.3zM152.514 705.674h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-37.752 0-68.468-31.944-68.468-71.208v-493.652c0-39.264 30.714-71.208 68.468-71.208h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-14.042 0-25.468 12.654-25.468 28.208v493.652c0 15.552 11.424 28.208 25.468 28.208zM871.486 748.674h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c14.042 0 25.468-12.654 25.468-28.208v-493.652c0-15.552-11.424-28.208-25.468-28.208h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c37.752 0 68.468 31.944 68.468 71.208v493.652c0 39.264-30.714 71.208-68.468 71.208zM728.452 831.164h-443.56c-22.88 0-41.5-18.62-41.5-41.5v-685.34c0-22.88 18.62-41.5 41.5-41.5h443.56c22.88 0 41.5 18.62 41.5 41.5v685.34c0 22.88-18.62 41.5-41.5 41.5zM726.952 105.824h-440.56v574.7l114.614 107.638h325.946v-682.34z" /> -<glyph unicode="" glyph-name="pricing-table" d="M377.68 496c14.048 0 25.472-11.52 25.472-25.68 0-14.048-11.424-25.472-25.472-25.472-8.912 0-14.8 4.032-18.192 7.424-12.48 12.512-32.736 12.512-45.248 0.032-12.496-12.48-12.512-32.752-0.032-45.248 9.056-9.056 19.808-15.744 31.472-20.176v-2.88c0-17.664 14.336-32 32-32s32 14.336 32 32v2.864c33.552 12.912 57.472 45.408 57.472 83.456 0 49.456-40.144 89.68-89.472 89.68-14.176 0-25.68 11.52-25.68 25.68 0 14.048 11.52 25.472 25.68 25.472 6.832 0 13.232-2.64 18.032-7.44 12.496-12.496 32.752-12.496 45.248 0s12.496 32.752 0 45.248c-9.024 9.024-19.712 15.68-31.28 20.112v2.912c0 17.664-14.336 32-32 32s-32-14.336-32-32v-2.832c-33.68-12.896-57.68-45.408-57.68-83.472 0-49.456 40.24-89.68 89.68-89.68zM704 704h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 544h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 320h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM681.376 342.624l-41.376-41.376-9.376 9.376c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0zM512 160h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM694.624 182.624c-12.496 12.496-32.752 12.496-45.248 0l-9.376-9.376-9.376 9.376c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l9.376-9.376-9.376-9.376c-12.496-12.496-12.496-32.752 0-45.248 6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l9.376 9.376 9.376-9.376c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-9.376 9.376 9.376 9.376c12.496 12.496 12.496 32.752 0 45.248zM960 864h-128v32c0 17.664-14.336 32-32 32h-576c-17.664 0-32-14.336-32-32v-32h-128c-17.664 0-32-14.336-32-32v-768c0-17.664 14.336-32 32-32h128v-32c0-17.664 14.336-32 32-32h576c17.664 0 32 14.336 32 32v32h128c17.664 0 32 14.336 32 32v768c0 17.664-14.336 32-32 32zM928 800v-96h-96v96h96zM256 864h512v-64h-512v64zM192 800v-96h-96v96h96zM96 96v544h96v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-96zM768 32h-512v704h512v-704zM832 96v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v160h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h96v-544h-96zM704 480h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="printer" d="M853.333 660.352h-128v127.659c0 23.723-19.243 43.008-43.008 43.008h-340.651c-23.723 0-43.008-19.243-43.008-43.008v-127.659h-128c-23.723 0-43.008-19.243-43.008-43.008v-341.76c0-23.723 19.243-43.008 43.008-43.008h128v-106.581c0-23.765 19.243-43.008 43.008-43.008h340.651c23.723 0 43.008 19.243 43.008 43.008v106.581h128c23.723 0 43.008 19.243 43.008 43.008v341.76c0 23.723-19.243 43.008-43.008 43.008zM384.683 745.003h254.635v-83.712h-254.635v83.712zM639.317 232.576v-63.573h-254.635v167.723h254.635v-104.149zM810.325 318.592h-85.035v61.141c0 23.723-19.243 43.008-43.008 43.008h-340.651c-23.723 0-43.008-19.243-43.008-43.008v-61.141h-85.035v255.744h596.693v-255.744zM725.333 446.635c23.765 0 43.051 19.285 43.051 43.051s-19.285 43.051-43.051 43.051-43.051-19.285-43.051-43.051 19.285-43.051 43.051-43.051z" /> -<glyph unicode="" glyph-name="process-step" d="M234.666 384c27.802 0 51.454 17.732 60.288 42.5h134.46c9.532-36.718 42.896-63.834 82.598-63.834 47.128 0 85.334 38.206 85.334 85.334s-38.206 85.334-85.334 85.334c-39.702 0-73.066-27.114-82.598-63.834h-134.46c-8.834 24.768-32.486 42.5-60.288 42.5-35.346 0-64-28.654-64-64s28.654-64 64-64zM512.012 490.334c23.342 0 42.334-18.99 42.334-42.334s-18.99-42.334-42.334-42.334-42.334 18.99-42.334 42.334 18.992 42.334 42.334 42.334zM277.334 320.166h-149.334c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h149.334c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM277.334 256.166h-110.038c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h110.038c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM897.684 320.166h-149.334c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h149.334c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM858.388 256.166h-110.036c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h110.036c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM586.678 320.166h-149.334c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h149.334c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM567.030 256.166h-110.036c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h110.036c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM789.334 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-27.802 0-51.454-17.732-60.288-42.5h-67.712c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h67.712c8.834-24.768 32.486-42.5 60.288-42.5zM494.8 584.434c4.060-5.414 10.432-8.6 17.2-8.6s13.14 3.186 17.2 8.6l42.666 56.888c2.792 3.722 4.3 8.248 4.3 12.9v28.444c0 11.876-9.626 21.5-21.5 21.5h-85.334c-11.876 0-21.5-9.624-21.5-21.5v-28.444c0-4.652 1.508-9.178 4.298-12.9l42.666-56.888zM533 661.166l-21-27.998-21 27.998h41.998z" /> -<glyph unicode="" glyph-name="product-carousel" d="M682.332 661.34h-340.66c-23.76 0-43-19.26-43-43v-340.68c0-23.74 19.24-43 43-43h340.66c23.74 0 43 19.26 43 43v340.68c0 23.74-19.26 43-43 43zM456.352 312.94c-12.54 0-22.72 10.16-22.72 22.7s10.18 22.72 22.72 22.72 22.7-10.18 22.7-22.72-10.16-22.7-22.7-22.7zM562.332 312.94c-12.54 0-22.72 10.16-22.72 22.7s10.18 22.72 22.72 22.72 22.72-10.18 22.72-22.72-10.18-22.7-22.72-22.7zM632.012 514.12l-41.24-80.24c-2.58-5-7.72-8.14-13.34-8.14h-121.68l-10.38-20.72h147.42c8.28 0 15-6.72 15-15s-6.72-15-15-15h-171.72c-5.2 0-10.040 2.7-12.78 7.12-2.72 4.42-2.96 9.96-0.64 14.6l22.56 44.96-30.1 83.18-12.2 0.54c-8.28 0.34-14.7 7.34-14.34 15.62s7.36 14.72 15.64 14.34l22.22-0.96c6.080-0.26 11.4-4.16 13.46-9.88l32.14-88.8h111.24l25.82 50.22h-103.34c-8.28 0-15 6.72-15 15s6.72 15 15 15h127.92c5.22 0 10.080-2.72 12.8-7.18s2.92-10.020 0.54-14.66zM687.212 522.96l-89.88 95.7h71.9c9.92 0 17.98-8.040 17.98-17.98v-77.72zM768 618.832c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c11.474 0 21.166-7.25 21.166-15.832v-224c0-8.582-9.694-15.834-21.166-15.834-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c35.382 0 64.166 26.392 64.166 58.834v224c0 32.44-28.786 58.832-64.166 58.832zM874.666 597.498c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c11.67 0 21.166-9.494 21.166-21.166v-170.666c0-11.672-9.496-21.166-21.166-21.166-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5c35.382 0 64.166 28.786 64.166 64.166v170.666c0 35.38-28.786 64.166-64.166 64.166zM256 320.166c-11.474 0-21.166 7.252-21.166 15.834v224c0 8.582 9.694 15.832 21.166 15.832 11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5c-35.382 0-64.166-26.392-64.166-58.832v-224c0-32.442 28.786-58.834 64.166-58.834 11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM149.334 554.5c11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5c-35.38 0-64.166-28.786-64.166-64.168v-170.664c0-35.382 28.786-64.168 64.166-64.168 11.876 0 21.5 9.624 21.5 21.5s-9.624 21.5-21.5 21.5c-11.67 0-21.166 9.496-21.166 21.168v170.664c0 11.672 9.496 21.168 21.166 21.168z" /> -<glyph unicode="" glyph-name="product-grid" d="M576.352 469.34h276.66c23.74 0 43 19.24 43 43v276.66c0 23.74-19.26 43-43 43h-276.66c-23.76 0-43-19.26-43-43v-276.66c0-23.76 19.24-43 43-43zM681.392 557.3c-8.84 0-16 7.16-16 16s7.16 16 16 16 16-7.16 16-16-7.18-16-16-16zM756.032 557.3c-8.82 0-16 7.16-16 16s7.18 16 16 16 16-7.16 16-16-7.16-16-16-16zM634.112 728.5l15.66-0.66c4.46-0.2 8.36-3.060 9.86-7.26l22.54-62.26h77.78l17.74 34.52h-72.080c-6.060 0-11 4.92-11 11s4.94 11 11 11h90.1c3.84 0 7.4-2 9.4-5.28 1.98-3.26 2.14-7.34 0.38-10.76l-29.040-56.5c-1.88-3.66-5.66-5.98-9.78-5.98h-85.44l-6.88-13.72h103.14c6.060 0 11-4.92 11-11s-4.94-11-11-11h-120.96c-3.8 0-7.36 1.98-9.36 5.22s-2.18 7.3-0.46 10.72l15.8 31.48-21.040 58.16-8.3 0.34c-6.080 0.28-10.78 5.4-10.52 11.48 0.26 6.060 5.38 10.72 11.46 10.5zM447.668 832h-276.668c-23.748 0-43-19.252-43-43v-276.666c0-23.75 19.252-43 43-43h276.666c23.748 0 43 19.25 43 43v276.666c0 23.748-19.252 43-43 43zM447.668 512.334h-276.668v276.666h276.666v-276.666zM447.668 426.666h-276.668c-23.748 0-43-19.252-43-43v-276.666c0-23.748 19.252-43 43-43h276.666c23.748 0 43 19.252 43 43v276.666c0 23.748-19.252 43-43 43zM447.668 107h-172.698l-103.97 110.706v165.96h276.666v-276.666zM853.532 427.3h-276c-23.748 0-43-19.252-43-43v-276c0-23.748 19.252-43 43-43h276c23.748 0 43 19.252 43 43v276c0 23.748-19.252 43-43 43zM853.532 108.3h-276v276h276v-276zM258.646 629.166h29.188v-29.186c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v29.186h29.188c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-29.188v29.188c0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-29.188h-29.188c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM258.646 223.834h29.188v-29.188c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v29.188h29.188c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-29.188v29.188c0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-29.188h-29.188c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM664.844 224.8h29.188v-29.188c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v29.188h29.188c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-29.188v29.188c0 11.876-9.626 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-29.188h-29.188c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5z" /> -<glyph unicode="" glyph-name="product-highlight" d="M929.328 832h-834.656c-34.56 0-62.672-28.112-62.672-62.672v-642.656c0-34.56 28.112-62.672 62.672-62.672h834.656c34.56 0 62.672 28.112 62.672 62.672v642.656c0 34.56-28.112 62.672-62.672 62.672zM928 768v-64h-832v64h832zM96 128v512h832v-512h-832zM480 576h-320c-17.664 0-32-14.336-32-32v-320c0-17.664 14.336-32 32-32h320c17.664 0 32 14.336 32 32v320c0 17.664-14.336 32-32 32zM297.936 512h44.128v-41.376c-11.872 11.312-32.256 11.312-44.128 0v41.376zM448 256h-256v256h41.936v-118.624c0-12.944 7.792-24.608 19.744-29.568 11.968-4.944 25.712-2.224 34.88 6.944l31.44 31.44 31.44-31.44c6.112-6.128 14.304-9.376 22.624-9.376 4.128 0 8.288 0.8 12.256 2.432 11.952 4.96 19.744 16.624 19.744 29.568v118.624h41.936v-256zM576 512h192c17.664 0 32 14.336 32 32s-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32zM649.376 470.624l-41.376-41.376-9.376 9.376c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0zM649.376 310.624l-41.376-41.376-9.376 9.376c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0zM864 448h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 288h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 352h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="progress-bar" d="M782.564 313.194h-626.478c-15.58 0-28.254-12.674-28.254-28.252v-121.74c0-15.58 12.674-28.254 28.254-28.254h626.476c15.58 0 28.252 12.674 28.252 28.254v121.74c0 15.578-12.674 28.252-28.252 28.252zM170.834 177.948v92.246h276.992v-92.246h-276.992zM767.816 177.948h-276.992v92.246h276.992v-92.246zM782.564 537.124h-626.478c-15.58 0-28.254-12.674-28.254-28.254v-121.74c0-15.58 12.674-28.254 28.254-28.254h626.476c15.58 0 28.252 12.674 28.252 28.254v121.74c0 15.58-12.674 28.254-28.252 28.254zM767.816 401.876h-112.496v92.248h112.496v-92.248zM782.564 761.052h-626.478c-15.58 0-28.254-12.674-28.254-28.254v-121.74c0-15.58 12.674-28.254 28.254-28.254h626.476c15.58 0 28.252 12.674 28.252 28.254v121.74c0 15.58-12.674 28.254-28.252 28.254zM170.834 625.804v92.248h369.976v-92.248h-369.976zM767.816 625.804h-184.008v92.248h184.008v-92.248zM848.756 646.716l30 50.768h-12l-30-50.768h12zM872.256 672.062c-1.82-0.488-3.488-1.294-5-2.424-1.514-1.126-2.718-2.666-3.616-4.616s-1.346-4.384-1.346-7.306c0-3.334 0.64-6.090 1.922-8.27s3.064-3.794 5.346-4.846c2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346s4.346 2.448 5.884 4.654c1.538 2.204 2.308 5.204 2.308 8.998 0 3.384-0.654 6.166-1.96 8.348-1.308 2.178-3.104 3.792-5.384 4.846-2.282 1.050-4.912 1.576-7.884 1.576-1.898 0-3.756-0.244-5.578-0.73zM882.334 661.178c0.486-0.874 0.73-2.050 0.73-3.538 0-1.438-0.244-2.552-0.73-3.348-0.488-0.794-1.116-1.36-1.884-1.692-0.768-0.334-1.642-0.5-2.616-0.5-1.026 0-1.96 0.192-2.808 0.576-0.846 0.384-1.526 1.026-2.038 1.924-0.514 0.896-0.77 2.062-0.77 3.5s0.244 2.55 0.73 3.346 1.14 1.372 1.962 1.73c0.82 0.36 1.692 0.54 2.616 0.54 1.078 0 2.026-0.206 2.846-0.616 0.82-0.412 1.474-1.052 1.962-1.924zM829.564 672.754c2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346s4.346 2.45 5.884 4.654c1.538 2.206 2.308 5.206 2.308 9 0 3.384-0.654 6.166-1.962 8.346s-3.102 3.794-5.384 4.846c-2.284 1.050-4.912 1.578-7.884 1.578-1.898 0-3.756-0.244-5.578-0.73-1.82-0.488-3.488-1.296-5-2.424s-2.718-2.668-3.616-4.616c-0.898-1.95-1.346-4.384-1.346-7.308 0-3.334 0.64-6.090 1.922-8.268 1.282-2.182 3.064-3.796 5.346-4.848zM832.95 689.602c0.488 0.792 1.14 1.372 1.962 1.73 0.82 0.358 1.692 0.538 2.616 0.538 1.078 0 2.026-0.206 2.846-0.616s1.474-1.050 1.962-1.922c0.486-0.874 0.73-2.052 0.73-3.54 0-1.436-0.244-2.55-0.73-3.346-0.488-0.796-1.116-1.36-1.884-1.694s-1.642-0.5-2.616-0.5c-1.026 0-1.962 0.194-2.808 0.578s-1.526 1.026-2.040 1.922-0.768 2.064-0.768 3.5 0.242 2.55 0.73 3.348zM866.756 476.434l-30-50.766h12l30 50.766h-12zM869.564 423.552c2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346s4.346 2.448 5.884 4.654c1.538 2.204 2.308 5.204 2.308 8.998 0 3.384-0.654 6.166-1.96 8.348-1.308 2.178-3.104 3.792-5.384 4.846-2.282 1.050-4.912 1.576-7.884 1.576-1.898 0-3.756-0.244-5.578-0.73-1.82-0.488-3.488-1.294-5-2.424-1.514-1.126-2.718-2.666-3.616-4.616s-1.346-4.384-1.346-7.306c0-3.334 0.64-6.090 1.922-8.27s3.064-3.794 5.346-4.846zM872.948 440.398c0.488 0.794 1.14 1.372 1.962 1.73 0.82 0.36 1.692 0.54 2.616 0.54 1.078 0 2.026-0.206 2.846-0.616 0.82-0.412 1.474-1.052 1.962-1.924 0.486-0.874 0.73-2.050 0.73-3.538 0-1.438-0.244-2.552-0.73-3.348-0.488-0.794-1.116-1.36-1.884-1.692-0.768-0.334-1.642-0.5-2.616-0.5-1.026 0-1.96 0.192-2.808 0.576-0.846 0.384-1.526 1.026-2.038 1.924-0.514 0.896-0.77 2.062-0.77 3.5s0.244 2.55 0.73 3.346zM829.564 451.704c2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346s4.346 2.45 5.884 4.654c1.538 2.206 2.308 5.206 2.308 9 0 3.384-0.654 6.166-1.962 8.346s-3.102 3.794-5.384 4.846c-2.284 1.050-4.912 1.578-7.884 1.578-1.898 0-3.756-0.244-5.578-0.73-1.82-0.488-3.488-1.296-5-2.424s-2.718-2.668-3.616-4.616c-0.898-1.95-1.346-4.384-1.346-7.308 0-3.334 0.64-6.090 1.922-8.268 1.282-2.182 3.064-3.796 5.346-4.848zM832.95 468.552c0.488 0.792 1.14 1.372 1.962 1.73 0.82 0.358 1.692 0.538 2.616 0.538 1.078 0 2.026-0.206 2.846-0.616s1.474-1.050 1.962-1.922c0.486-0.874 0.73-2.052 0.73-3.54 0-1.436-0.244-2.55-0.73-3.346-0.488-0.796-1.116-1.36-1.884-1.694s-1.642-0.5-2.616-0.5c-1.026 0-1.962 0.194-2.808 0.578s-1.526 1.026-2.040 1.922-0.768 2.064-0.768 3.5 0.242 2.55 0.73 3.348zM894.194 217.622c-1.308 2.178-3.104 3.792-5.384 4.846-2.282 1.050-4.912 1.576-7.884 1.576-1.898 0-3.756-0.244-5.578-0.73-1.82-0.488-3.488-1.294-5-2.424-1.514-1.126-2.718-2.666-3.616-4.616s-1.346-4.384-1.346-7.306c0-3.334 0.64-6.090 1.922-8.27s3.064-3.794 5.346-4.846c2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346s4.346 2.448 5.884 4.654c1.538 2.204 2.308 5.204 2.308 8.998 0 3.384-0.654 6.166-1.96 8.348zM885.424 205.544c-0.488-0.794-1.116-1.36-1.884-1.692-0.768-0.334-1.642-0.5-2.616-0.5-1.026 0-1.96 0.192-2.808 0.576-0.846 0.384-1.526 1.026-2.038 1.924-0.514 0.896-0.77 2.062-0.77 3.5s0.244 2.55 0.73 3.346 1.14 1.372 1.962 1.73c0.82 0.36 1.692 0.54 2.616 0.54 1.078 0 2.026-0.206 2.846-0.616 0.82-0.412 1.474-1.052 1.962-1.924 0.486-0.874 0.73-2.050 0.73-3.538 0-1.438-0.244-2.552-0.73-3.348zM847.962 223.774c2.384 0.896 4.346 2.45 5.884 4.654 1.538 2.206 2.308 5.206 2.308 9 0 3.384-0.654 6.166-1.962 8.346s-3.102 3.794-5.384 4.846c-2.284 1.050-4.912 1.578-7.884 1.578-1.898 0-3.756-0.244-5.578-0.73-1.82-0.488-3.488-1.296-5-2.424s-2.718-2.668-3.616-4.616c-0.898-1.95-1.346-4.384-1.346-7.308 0-3.334 0.64-6.090 1.922-8.268 1.282-2.182 3.064-3.796 5.346-4.848 2.282-1.050 4.884-1.576 7.808-1.576 2.616 0 5.116 0.45 7.5 1.346zM836.078 234.006c-0.512 0.896-0.768 2.064-0.768 3.5s0.242 2.55 0.73 3.348c0.488 0.792 1.14 1.372 1.962 1.73 0.82 0.358 1.692 0.538 2.616 0.538 1.078 0 2.026-0.206 2.846-0.616s1.474-1.050 1.962-1.922c0.486-0.874 0.73-2.052 0.73-3.54 0-1.436-0.244-2.55-0.73-3.346-0.488-0.796-1.116-1.36-1.884-1.694s-1.642-0.5-2.616-0.5c-1.026 0-1.962 0.194-2.808 0.578s-1.526 1.026-2.040 1.922zM869.848 248.736l-30-50.768h12l29.998 50.768h-11.998zM496.836 693.428h-285.618c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h285.618c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM406.1 245.572h-194.882c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h194.882c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="progress-step" d="M772.72 440c13.808-46.192 56.656-80 107.28-80 61.744 0 112 50.256 112 112s-50.256 112-112 112c-50.624 0-93.472-33.792-107.28-80h-47.456l-22.624 22.624c-12.496 12.496-32.752 12.496-45.248 0-6.256-6.256-9.376-14.432-9.376-22.624h-28.736c-13.808 46.208-56.656 80-107.28 80s-93.472-33.792-107.28-80h-47.456l-22.624 22.624c-12.496 12.496-32.752 12.496-45.248 0-6.256-6.256-9.376-14.432-9.376-22.624h-28.736c-13.808 46.208-56.656 80-107.28 80-61.744 0-112-50.256-112-112s50.256-112 112-112c50.624 0 93.472 33.808 107.28 80h28.736c0-8.192 3.12-16.368 9.376-22.624s14.432-9.376 22.624-9.376 16.368 3.12 22.624 9.376l22.624 22.624h47.456c13.808-46.192 56.656-80 107.28-80s93.472 33.808 107.28 80h28.736c0-8.192 3.12-16.368 9.376-22.624s14.432-9.376 22.624-9.376 16.368 3.12 22.624 9.376l22.624 22.624h47.456zM144 424c-26.464 0-48 21.536-48 48s21.536 48 48 48 48-21.536 48-48-21.536-48-48-48zM512 424c-26.464 0-48 21.536-48 48s21.536 48 48 48 48-21.536 48-48-21.536-48-48-48zM880 520c26.464 0 48-21.536 48-48s-21.536-48-48-48-48 21.536-48 48 21.536 48 48 48zM64 248h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM256 312h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM256 184h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 248h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM608 184h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 312c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32zM960 312h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 744h256c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32s14.336-32 32-32zM352 648h112c17.664 0 32 14.336 32 32s-14.336 32-32 32h-112c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 712c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96zM960 152h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM886.624 206.624c-12.496 12.496-32.752 12.496-45.248 0l-41.376-41.376-9.376 9.376c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l32-32c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="protection" d="M940.784 756.624c-119.616 101.584-247.344 144.992-426.8 144.992h-3.952c-179.44 0-307.2-43.424-426.752-144.944-35.312-29.872-57.216-90.032-49.872-136.976 43.744-279.632 170.512-472.128 398.928-605.84 21.456-12.544 49.76-19.472 79.664-19.472s58.208 6.928 79.664 19.488c228.416 133.696 355.184 326.208 398.928 605.824 7.344 46.944-14.56 107.088-49.824 136.928zM927.36 629.616c-41.088-262.72-154.608-435.584-368.016-560.496-23.264-13.632-71.424-13.616-94.688 0-213.424 124.944-326.928 297.792-368.016 560.512-3.872 24.752 9.712 62.752 28 78.24 107.072 90.912 222.4 129.76 385.424 129.76h2c163.376 0.224 279.824-38.512 387.344-129.808 18.256-15.44 31.84-53.44 27.968-78.192zM511.952 760.576c-118.96-0.176-203.52-29.008-282.736-96.416-25.904-21.984-41.472-64.608-36.192-99.248 28.624-185.664 111.792-313.568 261.728-402.448 16.048-9.536 36.656-14.304 57.264-14.304s41.184 4.768 57.216 14.288c149.952 88.912 233.12 216.8 261.744 402.528 5.264 34.56-10.192 77.232-35.872 99.216-78.656 67.728-164.016 96.16-283.152 96.384zM767.712 574.656c-25.84-167.552-97.12-277.696-231.152-357.168-12.176-7.216-36.976-7.232-49.168 0-134.016 79.456-205.296 189.616-231.12 357.088-1.872 12.32 5.504 33.264 14.336 40.768 0 0 0.032 0.032 0.048 0.032 66.672 56.768 138.864 81.040 241.36 81.184h0.992c103.952 0 173.632-23.472 240.384-80.96 8.832-7.568 16.176-28.64 14.304-40.976zM428.544 446.864l95.776 95.792c12.496 12.496 12.496 32.768 0 45.248-12.496 12.496-32.752 12.496-45.264 0l-95.776-95.792c-12.496-12.496-12.496-32.768 0-45.248 6.256-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.64 9.376zM638.704 587.904l-223.504-223.504c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l223.504 223.504c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0z" /> -<glyph unicode="" glyph-name="quote" d="M199.168 64.88c-27.136 0-52.64 10.576-71.808 29.776l-14.816 14.832c-19.12 19.008-29.712 44.416-29.76 71.504-0.032 27.152 10.528 52.704 29.76 71.92l98.208 98.224h-82.752c-52.944 0-96 43.056-96 96v224c0 84.368 107.664 96 224 96s224-11.632 224-96v-290.192c0-49.776-19.408-96.64-54.672-131.952l-154.384-154.336c-19.136-19.184-44.64-29.76-71.776-29.76zM256 703.12c-100.192 0-160-11.968-160-32v-224c0-17.648 14.352-32 32-32h160c12.944 0 24.608-7.792 29.568-19.744s2.224-25.712-6.944-34.88l-152.832-152.848c-7.12-7.12-11.024-16.544-11.008-26.576 0-9.936 3.904-19.264 10.944-26.272l14.912-14.928c14.192-14.208 38.864-14.224 53.024 0l154.384 154.336c22.832 22.88 35.936 54.48 35.936 86.72v290.192c0 20.032-59.808 32-160 32zM135.168 230.288v0zM711.168 64.88c-27.136 0-52.64 10.576-71.808 29.776l-14.816 14.832c-19.12 19.008-29.712 44.416-29.76 71.504-0.032 27.152 10.528 52.704 29.76 71.92l98.208 98.224h-82.752c-52.944 0-96 43.056-96 96v224c0 84.368 107.664 96 224 96s224-11.632 224-96v-290.192c0-49.776-19.408-96.64-54.672-131.952l-154.384-154.336c-19.136-19.184-44.64-29.76-71.776-29.76zM768 703.12c-100.192 0-160-11.968-160-32v-224c0-17.648 14.352-32 32-32h160c12.944 0 24.608-7.792 29.568-19.744s2.224-25.712-6.944-34.88l-152.832-152.848c-7.12-7.12-11.024-16.544-11.008-26.576 0-9.936 3.904-19.264 10.944-26.272l14.912-14.928c14.208-14.208 38.88-14.224 53.024 0l154.384 154.336c22.832 22.88 35.936 54.48 35.936 86.72v290.192c0 20.032-59.808 32-160 32zM647.168 230.288v0z" /> -<glyph unicode="" glyph-name="radar" d="M922.411 565.547c-6.571 22.827-30.379 36.011-53.205 29.44s-36.011-30.379-29.44-53.205c8.789-30.549 13.269-62.379 13.269-94.507 0-91.093-35.456-176.725-99.883-241.109-64.427-64.427-150.059-99.883-241.109-99.883-188.032 0-340.992 152.96-340.992 340.992s152.96 340.992 340.992 340.992c76.459 0 149.077-25.003 208.512-71.125l-60.416-60.587c-43.008 30.549-94.293 47.061-148.096 47.061-141.355 0-256.341-114.987-256.341-256.341s114.987-256.341 256.341-256.341c68.693 0 133.248 26.837 181.717 75.52 48.128 48.384 74.624 112.597 74.624 180.821 0 23.765-19.243 43.008-43.008 43.008s-43.008-19.243-43.008-43.008c0-45.355-17.621-88.021-49.621-120.149-32.213-32.384-75.093-50.176-120.747-50.176-93.909 0-170.325 76.416-170.325 170.325s76.416 170.325 170.325 170.325c30.72 0 60.203-8.107 86.016-23.253l-64.128-64.256c-6.997 1.835-14.336 2.859-21.888 2.859-47.232 0-85.675-38.443-85.675-85.675s38.443-85.675 85.675-85.675 85.675 38.443 85.675 85.675c0 7.637-1.024 15.019-2.901 22.059l218.88 219.392s0 0 0 0 0 0 0 0l48.768 48.896c16.768 16.811 16.725 44.032-0.085 60.8s-44.032 16.725-60.8-0.085l-19.925-19.968c-75.989 62.080-170.24 95.872-269.653 95.872-235.392 0.043-426.965-191.531-426.965-426.965s191.531-427.008 427.008-427.008c114.048 0 221.269 44.416 301.952 125.056 80.64 80.64 125.056 187.861 125.056 301.952 0 40.192-5.589 80-16.597 118.315z" /> -<glyph unicode="" glyph-name="radial-progress-bar" d="M496 928c-17.664 0-32-14.336-32-32v-1.168c-231.552-16.88-416-212.608-416-447.424 0-148.144 74.72-287.952 196.512-371.024l-0.224-0.4s0 0 0 0c0 0 0 0 0 0-2.192-3.792-3.504-7.856-4.016-11.952 0-0.032 0-0.048-0.016-0.080-0.224-1.84-0.24-3.696-0.144-5.536 0-0.224-0.032-0.432-0.016-0.656 0.064-0.912 0.32-1.808 0.448-2.72 1.456-9.216 6.768-17.744 15.472-22.768 0 0 0.016 0 0.032 0 72.88-42.032 155.856-64.256 239.968-64.256 264.672 0 480 215.328 480 480s-215.344 479.984-480.016 479.984zM496 288c-6.416 0-12.8 0.496-19.136 1.264-1.776 0.208-3.504 0.528-5.248 0.8-4.672 0.72-9.296 1.632-13.872 2.752-1.84 0.448-3.68 0.896-5.488 1.424-4.944 1.408-9.824 3.072-14.608 4.944-1.152 0.448-2.352 0.8-3.488 1.28-5.456 2.288-10.752 4.96-15.936 7.856-48.976 27.392-82.208 79.712-82.208 139.696 0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160zM112 447.408c0 199.76 155.68 366.432 352 383.168v-161.12c-108.368-15.616-192-108.816-192-221.44 0-71.264 33.568-134.72 85.584-175.776l-80.992-140.272c-102.144 71.536-164.608 190.016-164.608 315.456zM496 32c-62.208 0-123.648 14.144-179.6 40.896l96.496 167.152c4.8-1.92 9.664-3.648 14.576-5.232 1.584-0.512 3.184-0.976 4.768-1.44 5.328-1.584 10.72-2.992 16.16-4.16 1.088-0.24 2.16-0.544 3.264-0.768 6.288-1.264 12.64-2.192 19.024-2.912 1.712-0.192 3.424-0.352 5.136-0.512 6.688-0.608 13.408-1.024 20.144-1.024 123.52 0 224 100.48 224 224 0 112.624-83.632 205.84-192 221.44v193.2c214.48-16.416 384-196.032 384-414.64 0-229.392-186.624-416-416-416zM464 480h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM560 416h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="radio" d="M896 703.317h-447.701c0 4.693-0.853 9.173-2.261 13.397l168.747 75.008c21.717 9.643 31.488 35.072 21.845 56.747-9.643 21.717-35.072 31.488-56.747 21.845l-279.68-124.288h-65.536c-23.637 0-42.795-19.072-42.965-42.667h-63.701c-23.765 0-43.008-19.243-43.008-43.008v-512c0-23.765 19.243-43.008 43.008-43.008h768c23.765 0 43.008 19.243 43.008 43.008v512c0 23.765-19.243 43.008-43.008 43.008zM852.992 532.651h-20.693c-0.171 23.595-19.328 42.667-42.965 42.667h-170.667c-23.637 0-42.795-19.072-42.965-42.667h-404.693v84.651h42.069s0.213 0 0.299 0c0.128 0 0.299 0 0.427 0h639.232v-84.651zM171.008 191.317v255.317h681.984v-255.317h-681.984zM810.667 318.080c0-58.91-47.756-106.667-106.667-106.667s-106.667 47.756-106.667 106.667c0 58.91 47.756 106.667 106.667 106.667s106.667-47.756 106.667-106.667zM426.667 361.984h-170.667c-23.765 0-43.008-19.243-43.008-43.008s19.243-43.008 43.008-43.008h170.667c23.765 0 43.008 19.243 43.008 43.008s-19.243 43.008-43.008 43.008z" /> -<glyph unicode="" glyph-name="reddit" d="M512.016 824.336c-211.92 0-384.336-172.416-384.336-384.336 0-88.192 29.504-171.84 83.84-239.696l-36.272-36.272c-18.224-18.224-23.616-45.376-13.76-69.184s32.88-39.184 58.656-39.184h291.888c211.92 0 384.336 172.416 384.336 384.336s-172.416 384.336-384.336 384.336zM512.016 141.664h-237.52l56.976 56.976-30.4 30.4c-56.352 56.352-87.376 131.264-87.376 210.96 0 164.496 133.84 298.336 298.336 298.336s298.336-133.824 298.336-298.336-133.84-298.336-298.336-298.336zM663.088 515.184c-14.272 0-27.408-4.816-37.904-12.896-28.576 17.68-64.64 28.8-104.112 30.288v0.16c0 26.448 19.664 48.4 45.152 52v0.048c4.624-19.6 22.224-34.192 43.232-34.192 24.528 0 44.416 19.888 44.416 44.416s-19.888 44.416-44.416 44.416c-21.456 0-39.344-15.2-43.504-35.424-35.92-3.856-63.984-34.32-63.984-71.248v-0.224c-39.072-1.648-74.752-12.768-103.072-30.32-10.512 8.144-23.728 12.992-38.048 12.992-34.384 0-62.256-27.872-62.256-62.256 0-24.944 14.656-46.448 35.84-56.368 2.064-72.272 80.8-130.384 177.664-130.384s175.712 58.192 177.664 130.512c21.008 10 35.552 31.424 35.552 56.224 0 34.384-27.872 62.256-62.256 62.256zM396.416 413.456c1.040 22.576 16.032 39.904 33.472 39.904s30.768-18.304 29.712-40.88c-1.040-22.576-14.064-30.784-31.504-30.784s-32.72 9.184-31.68 31.76zM577.728 354.448c-10.72-25.632-36.048-43.648-65.6-43.648s-54.848 18.016-65.6 43.648c-1.264 3.040 0.816 6.432 4.080 6.768 19.152 1.936 39.888 2.992 61.52 2.992s42.336-1.056 61.52-2.992c3.264-0.336 5.36-3.728 4.080-6.768zM596.176 381.696c-17.424 0-30.464 8.192-31.504 30.784-1.040 22.576 12.272 40.88 29.712 40.88s32.448-17.328 33.472-39.904c1.040-22.576-14.24-31.76-31.68-31.76z" /> -<glyph unicode="" glyph-name="report" d="M176 352c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-64c0-17.664 14.336-32 32-32zM496 352c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM368 352c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32c0-17.664 14.336-32 32-32zM272 352c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-17.664 14.336-32 32-32zM249.376 182.624l-41.376-41.376-9.376 9.376c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l32-32c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0zM880 928h-576c-52.944 0-96-43.056-96-96v-160h-64c-52.944 0-96-43.056-96-96v-512c0-52.944 43.056-96 96-96h736c52.944 0 96 43.056 96 96v768c0 52.944-43.056 96-96 96zM304 32h-160c-17.648 0-32 14.352-32 32v512c0 17.936 14.048 32 32 32h384c17.952 0 32-14.064 32-32v-512c0-17.648-14.352-32-32-32h-224zM912 64c0-17.648-14.352-32-32-32h-261.6c3.568 10.032 5.6 20.768 5.6 32v512c0 52.944-43.056 96-96 96h-256v160c0 17.648 14.352 32 32 32h160c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32h160c17.648 0 32-14.352 32-32v-768zM848 352h-160c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v192c0 17.664-14.336 32-32 32zM816 160h-96v128h96v-128zM665.376 425.376l32-32c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-41.376-41.376-9.376 9.376c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248zM368 768h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM848 768h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32h352c17.664 0 32 14.336 32 32s-14.336 32-32 32zM697.376 553.376c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l64 64c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-41.376-41.376-9.376 9.376c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l32-32zM176 224h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM528 256c0 17.664-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32zM496 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="review-slider" d="M876.052 716.63c-2.186 0-4.292-0.332-6.28-0.938-9.14 20.976-31.902 35.88-58.488 35.88h-11.214c-2.264 20.736-19.902 36.932-41.24 36.932h-632.158c-22.88 0-41.5-18.62-41.5-41.5v-597.84c0-22.88 18.62-41.5 41.5-41.5h632.16c22.88 0 41.5 18.62 41.5 41.5v19.348h10.954c26.584 0 49.348 14.904 58.486 35.88 1.988-0.606 4.094-0.938 6.28-0.938 35.204 0 62.78 22.756 62.78 51.804v409.566c0 29.048-27.576 51.802-62.78 51.802zM672.072 653.826c0.1-0.36-0.3-0.66-0.62-0.42l-15.66 11.38-15.68-11.38c-0.32-0.24-0.72 0.060-0.62 0.42l6 18.44-15.68 11.4c-0.3 0.22-0.14 0.7 0.22 0.7h19.38l6 18.44c0.12 0.36 0.62 0.36 0.74 0l6-18.44h19.38c0.38 0 0.52-0.48 0.22-0.7l-15.68-11.4 6-18.44zM598.652 654.026c0.12-0.36-0.3-0.66-0.6-0.44l-15.56 11.3-15.54-11.3c-0.3-0.22-0.72 0.080-0.6 0.44l5.94 18.28-15.56 11.3c-0.3 0.22-0.14 0.72 0.24 0.72h19.22l5.94 18.28c0.12 0.36 0.62 0.36 0.74 0l5.94-18.28h19.22c0.38 0 0.54-0.5 0.24-0.72l-15.56-11.3 5.94-18.28zM378.812 654.026c0.12-0.36-0.3-0.66-0.6-0.44l-15.56 11.3-15.54-11.3c-0.32-0.22-0.72 0.080-0.6 0.44l5.94 18.28-15.56 11.3c-0.3 0.22-0.14 0.72 0.24 0.72h19.22l5.94 18.28c0.12 0.36 0.62 0.36 0.74 0l5.94-18.28h19.22c0.38 0 0.54-0.5 0.24-0.72l-15.56-11.3 5.94-18.28zM362.652 618.506h184.62c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-184.62c-11.86 0-21.5 9.62-21.5 21.5s9.64 21.5 21.5 21.5zM452.092 654.026c0.12-0.36-0.3-0.66-0.6-0.44l-15.56 11.3-15.54-11.3c-0.3-0.22-0.72 0.080-0.6 0.44l5.94 18.28-15.56 11.3c-0.3 0.22-0.14 0.72 0.24 0.72h19.22l5.94 18.28c0.12 0.36 0.62 0.36 0.74 0l5.94-18.28h19.22c0.38 0 0.54-0.5 0.24-0.72l-15.56-11.3 5.94-18.28zM525.372 654.026c0.12-0.36-0.3-0.66-0.6-0.44l-15.56 11.3-15.54-11.3c-0.3-0.22-0.72 0.080-0.6 0.44l5.94 18.28-15.56 11.3c-0.3 0.22-0.14 0.72 0.24 0.72h19.22l5.94 18.28c0.12 0.36 0.62 0.36 0.74 0l5.94-18.28h19.22c0.38 0 0.54-0.5 0.24-0.72l-15.56-11.3 5.94-18.28zM311.092 637.466c0-39.6-32.1-71.7-71.7-71.7s-71.72 32.1-71.72 71.7 32.1 71.72 71.72 71.72 71.7-32.1 71.7-71.72zM128.172 520.346h629.16v-314.086l-54.496-55.594h-574.664v369.68zM831.068 224.822c0-6.294-8.124-13.308-19.782-13.308h-10.954v497.060h10.954c11.658 0 19.782-7.014 19.782-13.306v-470.446zM895.834 255.262c0-2.192-7.014-8.804-19.78-8.804-0.67 0-1.332-0.040-1.986-0.1v427.374c0.654-0.060 1.316-0.1 1.986-0.1 12.766 0 19.78-6.612 19.78-8.802v-409.566zM486.166 312.792c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-290.144c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h290.144zM555.064 272.822h-359.042c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h359.042c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM655.754 440.206h-459.732c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h459.732c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="rocket" d="M982.848 918.624c-12.48 12.496-32.768 12.496-45.248 0l-21.856-21.856c-68.928 20.112-300.256 70.192-460.32-103.824-18.64-20.272-36.8-40.768-54.432-61.232l-81.776 13.264c-52.736 8.56-124.816-34.832-156.912-66.928l-44.432-44.432c-17.952-17.936-27.84-41.776-27.856-67.152s9.856-49.232 27.792-67.168l82.368-82.464-49.36-29.648c-15.008-9.072-24.848-24.288-26.96-41.696-2.096-17.344 3.776-34.368 16.144-46.736l19.92-19.92c-31.056-5.392-61.168-20.688-86.704-46.224-65.904-65.92-34.656-213.584-30.88-230.208 2.736-12.016 12.128-21.392 24.144-24.112 1.6-0.368 39.792-8.912 85.664-10.288 0.32 0 0.64 0 0.96 0 8.48 0 16.624 3.36 22.624 9.376l9.232 9.232 5.6-5.568c7.392-7.344 17.872-10.688 28.192-8.816 33.344 5.952 59.6 18.416 77.872 36.912 25.36 25.28 41.024 54.864 46.432 86.544l19.76-19.76c10.736-10.736 24.992-16.592 39.888-16.592 2.336 0 4.704 0.144 7.072 0.432 17.392 2.16 32.544 12.048 41.504 27.072l29.568 49.232 82.48-82.48c18.496-18.496 42.8-27.744 67.104-27.744s48.72 9.28 67.28 27.84l44.4 44.56c32.080 32.096 75.536 104.16 66.912 156.896l-12.816 78.768c20.736 18.544 41.472 37.952 61.92 58.368 163.6 163.6 120.144 391.232 102.432 458.8l22.288 22.288c12.496 12.496 12.496 32.752 0 45.248zM154.016 566.432c0 8.288 3.248 16.064 9.104 21.936l44.432 44.432c24.848 24.848 77.44 52.896 101.376 48.992l44.368-7.2c-56.528-69.92-103.328-136.256-132.384-187.984l-57.824 57.904c-5.856 5.856-9.072 13.632-9.056 21.904zM470.272 237.184s-0.032 0.016-0.032 0.032l-14.32 14.32 49.44 38.416 54.48-54.48c-21.504-13.232-40.416-23.696-56.272-31.568l-33.28 33.28zM539.248 397.344l-128.832-100.128-49.152 49.152 100.096 128.752c5.616 7.168 12.992 8.64 16.896 8.88 3.952 0.256 11.392-0.336 17.792-6.736v0l45.296-45.296c6.464-6.464 7.024-13.968 6.784-17.872-0.24-3.872-1.712-11.184-8.88-16.752zM315.568 391.888l-14.272 14.272s-0.032 0.032-0.032 0.048l-33.12 33.152c8.032 15.584 18.816 34.112 32.48 55.328l53.376-53.376-38.432-49.424zM281.328 120.304c-0.016-23.6-10.352-46.368-30.048-66-6.336-6.416-15.936-11.632-28.176-15.36l-15.648 15.552c-12.512 12.464-32.72 12.4-45.184-0.064l-21.792-21.776c-15.28 0.992-29.088 2.768-39.6 4.384-7.392 47.104-10.256 122.496 17.584 150.336 12.976 12.976 26.608 21.12 40.208 25.584-17.52-36.992-7.552-87.76-4.944-99.184 3.392-14.816 16.56-24.832 31.136-24.832 2.352 0 4.72 0.256 7.12 0.8 17.216 3.888 28 21.008 24.144 38.24-5.28 23.52-4.624 53.504 1.296 59.408 14.864 14.88 27.984 5.728 33.424 0.496 0.16-0.16 0.336-0.288 0.48-0.448l0.096-0.096c19.28-19.296 29.888-43.104 29.872-67.008zM401.328 127.952l-209.328 209.312 54.784 32.912 187.44-187.456-32.896-54.768zM745.888 244.848c3.888-23.776-24.16-76.464-49.056-101.376l-44.4-44.56c-12.096-12.064-31.76-12.112-43.84-0.048l-57.536 57.536c51.552 27.744 118.224 72 188.256 128.912l6.592-40.48zM614.416 271.376l-58.144 58.144 22.224 17.28c19.728 15.312 31.936 38.384 33.504 63.296 1.568 24.976-7.712 49.44-25.424 67.136l-45.28 45.28c-17.632 17.648-41.968 26.816-66.96 25.376-24.944-1.536-48.064-13.696-63.472-33.44l-17.28-22.224-56.224 56.224c41.632 58.048 97.36 127.456 165.168 201.152 5.392 5.872 10.944 11.312 16.544 16.576l47.344-47.248c-14.64-24.304-22.624-52.112-22.624-81.184 0-42.224 16.416-81.904 46.272-111.744 30.8-30.8 71.248-46.192 111.712-46.192 28.144 0 56.224 7.632 81.136 22.544l46.688-46.688c-5.28-6.128-10.752-12.192-16.672-18.112-68.784-68.688-138.72-124.64-198.48-166.192zM768.288 571.28c-36.672-36.64-96.336-36.656-132.976-0.032-17.76 17.76-27.536 41.36-27.52 66.464 0 25.12 9.792 48.736 27.568 66.496 18.336 18.336 42.4 27.488 66.464 27.488s48.144-9.152 66.464-27.488c17.76-17.76 27.536-41.36 27.536-66.464s-9.776-48.72-27.536-66.464zM866.944 508.8l-36.896 36.896c19.232 26.672 29.76 58.512 29.76 92.032 0 42.208-16.432 81.888-46.288 111.728-55.408 55.424-141.968 60.8-203.664 16.544l-39.408 39.328c127.376 77.104 280.128 43.28 328.032 29.68 12.080-47.584 41.008-197.424-31.552-326.224z" /> -<glyph unicode="" glyph-name="romethemekit" d="M283.274 348.786h144.080v-144.080h-144.080v144.080zM525.456 447.674l96.524-96.526 45.298 44.596 60.784 60.804 31.786 31.312c4.62 4.55 4.654 12.024 0.052 16.61h-0.016s-143.59 143.484-143.59 143.484c-0.648 0.648-1.542 1.016-2.47 1.016h-199.808l156.378-156.356-44.94-44.94zM283.642 688.928l-0.368 0.366v-195.974l288.616-288.614 195.92 0.070-484.168 484.152zM873.852 809.116c-99.92 99.922-230.888 149.884-361.852 149.884s-261.932-49.962-361.852-149.884c-199.844-199.846-199.844-523.86 0-723.704 99.922-99.922 230.888-149.884 361.852-149.884s261.932 49.962 361.852 149.884c199.844 199.846 199.844 523.858 0 723.704zM813.514 158.348c-80.538-77.172-187.616-119.674-301.514-119.674s-220.976 42.502-301.514 119.674c-80.534 77.172-124.888 179.778-124.888 288.916s44.354 211.744 124.888 288.916c80.538 77.172 187.616 119.672 301.514 119.672s220.976-42.5 301.514-119.672c80.534-77.172 124.888-179.778 124.888-288.916s-44.354-211.744-124.888-288.916z" /> -<glyph unicode="" glyph-name="rtm-form" d="M873.060 495.889h-724.698c-18.481 0-33.629-15.148-33.629-33.629v-186.325c0-18.481 15.148-33.629 33.629-33.629h724.698c18.481 0 33.629 15.148 33.629 33.629v186.325c0 18.481-15.148 33.629-33.629 33.629zM137.152 275.934v186.325c0 6.059 5.15 11.21 11.21 11.21h724.698c6.059 0 11.21-5.15 11.21-11.21v-88.77l-108.765-108.765h-627.143c-6.059 0-11.21 5.15-11.21 11.21zM148.362 538.91h600.482c18.481 0 33.629 15.148 33.629 33.629v58.776c0 18.481-15.148 33.629-33.629 33.629h-600.482c-18.481 0-33.629-15.148-33.629-33.629v-58.776c0-18.481 15.148-33.629 33.629-33.629zM137.152 631.315c0 6.059 5.15 11.21 11.21 11.21h600.482c6.059 0 11.21-5.15 11.21-11.21v-58.776c0-6.059-5.15-11.21-11.21-11.21h-600.482c-6.059 0-11.21 5.15-11.21 11.21v58.776zM148.362 184.741h377.801c18.573 0 33.629-15.056 33.629-33.629v-63.32c0-18.573-15.056-33.629-33.629-33.629h-377.801c-18.573 0-33.629 15.056-33.629 33.629v63.32c0 18.573 15.056 33.629 33.629 33.629zM173.508 590.415h265.4c6.059 0 11.21 5.15 11.21 11.21s-5.15 11.21-11.21 11.21h-265.4c-6.059 0-11.21-5.15-11.21-11.21s5.15-11.21 11.21-11.21zM173.508 401.363h265.4c6.059 0 11.21 5.15 11.21 11.21s-5.15 11.21-11.21 11.21h-265.4c-6.059 0-11.21-5.15-11.21-11.21s5.15-11.21 11.21-11.21zM704.61 351.676h-531.405c-6.059 0-11.21-5.15-11.21-11.21s5.15-11.21 11.21-11.21h531.405c6.059 0 11.21 5.15 11.21 11.21s-5.15 11.21-11.21 11.21zM148.362 701.604h444.756c18.481 0 33.629 15.148 33.629 33.629v58.776c0 18.481-15.148 33.629-33.629 33.629h-444.756c-18.481 0-33.629-15.148-33.629-33.629v-58.776c0-18.481 15.148-33.629 33.629-33.629zM137.152 794.009c0 6.059 5.15 11.21 11.21 11.21h444.756c6.059 0 11.21-5.15 11.21-11.21v-58.776c0-6.059-5.15-11.21-11.21-11.21h-444.756c-6.059 0-11.21 5.15-11.21 11.21v58.776zM173.508 753.108h265.4c6.059 0 11.21 5.15 11.21 11.21s-5.15 11.21-11.21 11.21h-265.4c-6.059 0-11.21-5.15-11.21-11.21s5.15-11.21 11.21-11.21zM709.155 726.447l58.776 58.776c4.242 4.242 4.242 11.513 0 15.754s-11.513 4.242-15.754 0l-42.718-42.718-25.449 25.449c-4.242 4.242-11.513 4.242-15.754 0s-4.242-11.513 0-15.754l41.204-41.204-0.303-0.303zM847.611 575.569l58.776 58.776c4.242 4.242 4.242 11.513 0 15.754s-11.513 4.242-15.754 0l-42.718-42.718-25.449 25.449c-4.242 4.242-11.513 4.242-15.754 0s-4.242-11.513 0-15.754l41.204-41.204-0.303-0.303z" /> -<glyph unicode="" glyph-name="sack-dollar" d="M529.664 415.648c-26.56 12.592-32.304 17.12-32.304 25.552 0 3.008 0 9.28 10.464 13.616 12.576 5.248 28.48 2.544 34.352-3.312 12.128-12.128 31.76-12.128 43.872 0s12.128 31.76 0 43.872c-9.968 9.968-23.184 16.848-37.648 20.688v13.92c0 17.136-13.888 31.024-31.024 31.024s-31.024-13.888-31.024-31.024v-17.088c-0.736-0.288-1.52-0.448-2.256-0.752-30.544-12.656-48.784-39.168-48.784-70.944 0-49.52 40.8-68.864 67.792-81.648 29.84-14.128 35.888-19.472 35.888-31.712 0-6.752-12.336-15.712-21.616-15.712-14.976 0-36.672 10.224-41.648 14.464-12.144 11.904-31.632 11.872-43.696-0.192-12.128-12.128-12.128-31.76 0-43.872 10.464-10.464 31.888-21.616 54.32-27.744v-15.056c0-17.136 13.888-31.024 31.024-31.024s31.024 13.888 31.024 31.024v16.592c28.544 11.408 52.656 37.648 52.656 71.52 0 53.984-42.96 74.336-71.392 87.792zM708.976 704.576l59.28 112.304c10.864 20.576 10.176 44.752-1.84 64.688s-33.072 31.824-56.352 31.824h-396.16c-23.264 0-44.336-11.872-56.352-31.808s-12.704-44.112-1.84-64.704l59.296-112.32c-67.952-68.816-283.008-295.44-283.008-407.408 0-173.456 141.12-314.576 314.592-314.576h330.832c173.456 0 314.592 141.12 314.592 314.576 0 111.968-215.040 338.576-283.024 407.424zM310.72 849.568c1.088 1.808 2.624 1.808 3.2 1.808h396.16c0.576 0 2.112 0 3.2-1.824s0.384-3.184 0.112-3.696l-59.456-112.608-283.856 0.032-59.456 112.592c-0.272 0.512-0.992 1.872 0.112 3.696zM677.408 44.624h-330.832c-139.248 0-252.528 113.28-252.528 252.512 0 72.976 163.808 262.752 273.136 371.936h289.616c109.328-109.168 273.136-298.944 273.136-371.936 0-139.232-113.28-252.512-252.528-252.512z" /> -<glyph unicode="" glyph-name="scale-balanced" d="M435.216 634.56h-222.944c-17.664 0-32 14.336-32 32s14.336 32 32 32h222.944c17.664 0 32-14.336 32-32s-14.336-32-32-32zM811.712 12.128h-611.312c-17.664 0-32 14.336-32 32s14.336 32 32 32h611.312c17.664 0 32-14.336 32-32s-14.336-32-32-32zM512 711.328c-17.664 0-32 14.336-32 32v108.544c0 17.664 14.336 32 32 32s32-14.336 32-32v-108.544c0-17.664-14.336-32-32-32zM512 12.128c-17.664 0-32 14.336-32 32v545.648c0 17.664 14.336 32 32 32s32-14.336 32-32v-545.664c0-17.664-14.336-32-32-32zM512 557.776c-59.984 0-108.784 48.8-108.784 108.784s48.8 108.768 108.784 108.768 108.784-48.8 108.784-108.768-48.8-108.784-108.784-108.784zM512 711.328c-24.688 0-44.784-20.080-44.784-44.768s20.096-44.784 44.784-44.784 44.784 20.096 44.784 44.784-20.096 44.768-44.784 44.768zM64.144 264.64c-4.592 0-9.232 0.992-13.664 3.056-15.984 7.568-22.816 26.64-15.264 42.608l123.072 260.384c9.856 21.312 30.816 34.72 54.576 34.72v0c23.76 0 44.72-13.392 54.704-34.944l123.104-260.16c7.568-15.968 0.736-35.040-15.232-42.608-15.952-7.568-35.024-0.736-42.608 15.232l-119.952 253.504-119.808-253.488c-5.472-11.568-16.976-18.336-28.96-18.336zM209.648 543.344v0s0 0 0 0zM216.288 543.6v0s0 0 0 0zM212.896 111.248c-99.744 0-180.896 81.136-180.896 180.896 0 17.664 14.336 32 32 32h297.776c17.664 0 32-14.336 32-32 0-99.744-81.136-180.896-180.896-180.896zM100.448 260.144c13.952-48.96 59.072-84.896 112.432-84.896s98.48 35.936 112.432 84.896h-224.864zM811.712 634.56h-222.944c-17.664 0-32 14.336-32 32s14.336 32 32 32h222.944c17.664 0 32-14.336 32-32s-14.336-32-32-32zM959.856 264.64c-11.984 0-23.488 6.768-28.96 18.336l-119.808 253.488-119.952-253.504c-7.568-15.984-26.624-22.8-42.608-15.232-15.968 7.568-22.8 26.64-15.232 42.608l123.216 260.384c9.872 21.312 30.832 34.704 54.592 34.704v0c23.76 0 44.72-13.408 54.688-34.96l122.976-260.16c7.552-15.968 0.72-35.040-15.264-42.608-4.4-2.080-9.056-3.056-13.664-3.056zM807.824 543.36v0s0 0 0 0zM814.464 543.584v0s0 0 0 0zM811.104 111.248c-99.744 0-180.896 81.136-180.896 180.896 0 17.664 14.336 32 32 32h297.776c17.664 0 32-14.336 32-32 0-99.744-81.136-180.896-180.896-180.896zM698.672 260.144c13.952-48.96 59.072-84.896 112.432-84.896s98.48 35.936 112.432 84.896h-224.88z" /> -<glyph unicode="" glyph-name="scale-unbalanced" d="M812.688 78.512h-267.712v486.48c43.168 13.312 74.848 52.864 76.576 99.936l189.216 50.704c17.072 4.576 27.2 22.128 22.624 39.184s-22.112 27.264-39.184 22.624l-189.232-50.704c-13.744 21.792-34.896 38.448-60 46.176v81.36c0 17.664-14.336 32-32 32s-32-14.336-32-32v-81.36c-43.168-13.312-74.848-52.864-76.576-99.936l-189.216-50.704c-17.072-4.576-27.2-22.128-22.624-39.184 3.824-14.304 16.752-23.728 30.896-23.728 2.736 0 5.536 0.352 8.304 1.104l189.232 50.704c13.744-21.792 34.896-38.448 60-46.176v-486.48h-44.784c-17.664 0-32-14.336-32-32s14.336-32 32-32h376.496c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512.976 713.728c24.688 0 44.784-20.096 44.784-44.784s-20.096-44.784-44.784-44.784-44.784 20.096-44.784 44.784 20.096 44.784 44.784 44.784zM391.664 213.6l-123.104 260.128c-9.968 21.584-30.944 34.992-54.704 34.992s-44.736-13.408-54.592-34.736l-123.072-260.384c-2.288-4.848-3.104-9.968-2.896-14.992-0.112-1.056-0.32-2.096-0.32-3.184 0-99.744 81.136-180.896 180.896-180.896s180.896 81.136 180.896 180.896c0 0.752-0.176 1.472-0.224 2.224 0.384 5.328-0.4 10.8-2.848 15.968zM213.856 439.696l100.48-212.304h-200.816l100.336 212.304zM213.856 78.512c-53.36 0-98.48 35.936-112.432 84.896h224.88c-13.952-48.96-59.072-84.896-112.432-84.896zM992.64 349.856c0.208 5.008-0.608 10.144-2.896 14.992l-122.976 260.16c-9.968 21.552-30.928 34.96-54.688 34.96v0c-23.76 0-44.72-13.392-54.592-34.704l-123.216-260.384c-2.448-5.168-3.248-10.64-2.848-15.968-0.048-0.752-0.224-1.456-0.224-2.224 0-99.744 81.136-180.896 180.896-180.896s180.896 81.136 180.896 180.896c0 1.088-0.208 2.112-0.32 3.184zM812.064 590.992l100.352-212.32h-200.816l100.464 212.32zM812.080 229.776c-53.36 0-98.48 35.936-112.432 84.896h224.88c-13.952-48.96-59.072-84.896-112.432-84.896z" /> -<glyph unicode="" glyph-name="scale-unbalanced-flip" d="M588.784 78.512h-44.784v486.48c25.104 7.744 46.272 24.384 60 46.176l189.232-50.704c2.784-0.752 5.568-1.104 8.304-1.104 14.128 0 27.056 9.44 30.896 23.728 4.576 17.056-5.552 34.608-22.624 39.184l-189.216 50.704c-1.728 47.072-33.408 86.624-76.576 99.936v81.36c0 17.664-14.336 32-32 32s-32-14.336-32-32v-81.36c-25.104-7.744-46.272-24.384-60-46.176l-189.232 50.704c-17.104 4.624-34.624-5.568-39.184-22.624-4.576-17.056 5.552-34.608 22.624-39.184l189.216-50.704c1.728-47.072 33.408-86.624 76.576-99.936v-486.48h-267.728c-17.664 0-32-14.336-32-32s14.336-32 32-32h376.496c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 713.728c24.688 0 44.784-20.096 44.784-44.784s-20.096-44.784-44.784-44.784-44.784 20.096-44.784 44.784 20.096 44.784 44.784 44.784zM991.68 198.592c0.208 5.008-0.608 10.144-2.896 14.992l-122.976 260.144c-9.968 21.584-30.928 34.992-54.688 34.992v0c-23.76 0-44.736-13.392-54.592-34.72l-123.216-260.384c-2.448-5.168-3.248-10.64-2.848-15.968-0.048-0.752-0.224-1.456-0.224-2.224 0-99.744 81.136-180.896 180.896-180.896s180.896 81.136 180.896 180.896c0 1.088-0.208 2.112-0.32 3.184zM811.088 439.712l100.352-212.32h-200.816l100.464 212.32zM811.104 78.512c-53.36 0-98.48 35.936-112.432 84.896h224.88c-13.952-48.96-59.072-84.896-112.432-84.896zM393.776 346.672c0 0.752-0.176 1.472-0.224 2.224 0.384 5.328-0.416 10.8-2.848 15.968l-123.104 260.16c-9.984 21.552-30.944 34.944-54.704 34.944v0c-23.76 0-44.72-13.408-54.576-34.72l-123.072-260.384c-2.288-4.848-3.104-9.968-2.896-14.992-0.112-1.056-0.32-2.096-0.32-3.184 0-99.744 81.136-180.896 180.896-180.896s180.896 81.136 180.896 180.896zM212.912 590.992l100.464-212.32h-200.816l100.352 212.32zM100.448 314.672h224.88c-13.952-48.96-59.072-84.896-112.432-84.896s-98.48 35.936-112.432 84.896z" /> -<glyph unicode="" glyph-name="search" d="M858.496 146.608c-12.512 12.48-32.768 12.464-45.264 0-12.48-12.512-12.48-32.768 0.016-45.264l18.832-18.816c6.256-6.24 14.432-9.36 22.624-9.36s16.384 3.12 22.64 9.376c12.48 12.512 12.48 32.768-0.016 45.264l-18.832 18.816zM970.384 168.112l-71.552 71.552c-3.808 3.808-8.512 6.592-13.68 8.112l-54.672 15.904-74.416 74.4c35.216 58.56 55.52 127.056 55.52 200.224 0 214.896-174.816 389.696-389.712 389.696s-389.696-174.816-389.696-389.696 174.816-389.712 389.712-389.712c72.992 0 141.344 20.224 199.808 55.28l74.496-74.512 15.904-54.656c1.504-5.168 4.288-9.872 8.096-13.68l71.552-71.568c13.856-13.84 34.048-21.456 56.336-21.456 2.88 0 5.792 0.128 8.736 0.384 23.888 2.064 46.56 12.352 62.032 28.080l44.544 44.528c35.056 35.12 38.368 95.712 6.976 127.104zM421.888 212.576c-179.6 0-325.712 146.112-325.712 325.712s146.128 325.712 325.712 325.712 325.712-146.112 325.712-325.696-146.112-325.712-325.712-325.712zM674.32 241.744c15.728 13.408 30.384 28.048 43.808 43.776l50.288-50.288-43.792-43.792-50.32 50.32zM918.144 86.24l-44.704-44.688c-4.96-5.040-13.44-8.64-22.16-9.408-7.888-0.624-12.944 1.232-14.288 2.576l-65.728 65.744-10.608 36.464 62.272 62.272 36.48-10.608 65.744-65.728c4.048-4.048 4.88-24.72-7.008-36.624zM299.936 769.936c-7.728-4.064-15.232-8.496-22.32-13.184-14.72-9.776-18.752-29.648-8.976-44.352 6.16-9.28 16.336-14.32 26.688-14.32 6.064 0 12.224 1.712 17.664 5.328 5.28 3.504 10.896 6.832 16.704 9.872 15.648 8.224 21.664 27.568 13.44 43.2-8.224 15.664-27.568 21.696-43.216 13.456zM606.896 723.2c-49.44 49.488-115.216 76.736-185.2 76.736-17.664 0-32-14.336-32-32s14.336-32 32-32c52.88 0 102.56-20.592 139.936-57.984 37.312-37.312 57.856-86.96 57.856-139.792 0-17.664 14.336-32 32-32s32 14.336 32 32c0 69.936-27.2 135.664-76.592 185.040z" /> -<glyph unicode="" glyph-name="select" d="M752.692 330.822v166.46c0 19.42-17.2 35.22-38.34 35.22h-614.92c-18.54 0-33.6-15.8-33.6-35.22v-185.88c0-19.44 15.060-35.24 33.6-35.24h599.34l53.92 54.66zM539.472 443.162c3.9 3.9 10.24 3.9 14.14 0l56.46-56.44 56.44 56.44c3.9 3.9 10.24 3.9 14.14 0s3.9-10.24 0-14.14l-63.52-63.52c-1.96-1.96-4.52-2.92-7.060-2.92-2.56 0-5.12 0.96-7.080 2.92l-63.52 63.52c-3.9 3.9-3.9 10.24 0 14.14zM108.832 489.502h361.26v-170.34h-361.26v170.34zM409.548 425.834h-243.184c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h243.184c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM770.746 617.834h-601.32c-22.934 0-41.592-18.904-41.592-42.138 0-11.876 9.626-21.498 21.5-21.498 11.584 0 21.030 9.162 21.484 20.636h598.52v-277.044l-63.954-63.956h-534.568c-0.452 11.474-9.898 20.638-21.484 20.638-11.874 0-21.5-9.624-21.5-21.5 0-23.234 18.658-42.138 41.592-42.138h601.32c22.934 0 41.592 18.904 41.592 42.138v342.722c0 23.234-18.658 42.138-41.592 42.138zM932.536 424.274c-8.396 8.394-22.010 8.394-30.406 0l-23.382-23.384-10.168 10.168c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.572 53.79 53.79c8.396 8.396 8.396 22.010 0 30.406zM236.672 660.162h345.76c12.96 0 23.5 10.54 23.5 23.5v124c0 12.96-10.54 23.5-23.5 23.5h-345.76c-12.96 0-23.5-10.54-23.5-23.5v-124c0-12.96 10.54-23.5 23.5-23.5zM256.172 788.162h306.76v-85h-306.76v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5z" /> -<glyph unicode="" glyph-name="share-123" d="M768 319.232c-34.56 0-65.92-13.696-88.96-35.925l-329.003 163.712 329.003 163.712c23.040-22.229 54.4-35.925 88.96-35.925 70.784 0 128.213 57.429 128.213 128.213s-57.429 128.213-128.213 128.213-128.213-57.429-128.213-128.213c0-5.163 0.299-10.283 0.939-15.317l-295.893-147.243c-23.040 22.144-54.357 35.755-88.832 35.755-70.784 0-128.213-57.387-128.213-128.213s57.429-128.213 128.213-128.213c33.792 0 64.512 13.099 87.424 34.432l297.259-147.925c-0.64-5.035-0.939-10.112-0.939-15.317 0-70.784 57.429-128.213 128.213-128.213s128.213 57.429 128.213 128.213-57.429 128.213-128.213 128.213zM810.24 703.019c0-23.296-18.944-42.24-42.24-42.24s-42.24 18.944-42.24 42.24 18.944 42.24 42.24 42.24 42.24-18.944 42.24-42.24zM256 405.76c-23.296 0-42.24 18.944-42.24 42.24s18.944 42.24 42.24 42.24 42.24-18.944 42.24-42.24-18.944-42.24-42.24-42.24zM768 233.216c23.296 0 42.24-18.944 42.24-42.24s-18.944-42.24-42.24-42.24-42.24 18.944-42.24 42.24 18.944 42.24 42.24 42.24z" /> -<glyph unicode="" glyph-name="shield" d="M917.2 821.136c-6.016 6.176-14.544 9.792-23.168 9.792-257.872 0-362.128 88.16-362.976 88.896-11.728 10.528-29.52 10.832-41.744 0.864-1.104-0.896-112.896-89.744-363.984-89.744-17.664 0-32-14.336-32-32v-306.88c0-129.712 56.736-252.416 151.76-328.24v0l230.208-183.632c10.112-8.096 22.256-12.144 34.384-12.144s24.24 4.032 34.352 12.096l230.24 183.664c95.024 75.84 151.76 198.544 151.744 327.456 7.696 312.944 2.528 318.256-8.816 329.872zM862.016 492.048c0-110.4-47.728-214.416-127.664-278.208l-224.672-179.232-224.688 179.232c-79.952 63.792-127.68 167.792-127.68 278.208v275.328c195.824 5.632 308.336 61.936 351.92 89.36 42.832-28.016 153.536-84.448 355.712-89.456 1.2-50.256-0.288-167.632-2.928-275.232zM642.592 602.512l-239.152-239.152c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l239.152 239.152c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0zM534.528 671.072c-12.48 12.496-32.768 12.496-45.248 0l-154.416-154.416c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l154.416 154.416c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="shield-check" d="M912.048 821.168c-6.016 6.176-14.544 9.792-23.168 9.792-257.904 0-362.176 88.176-363.024 88.896-11.728 10.544-29.536 10.832-41.76 0.864-1.104-0.896-112.896-89.76-364-89.76-17.68 0-32-14.336-32-32v-306.896c0-129.728 56.736-252.432 151.776-328.272l230.224-183.648c10.128-8.096 22.256-12.144 34.4-12.144s24.24 4.032 34.352 12.096l230.256 183.696c95.040 75.84 151.776 198.544 151.76 327.488 7.696 312.976 2.528 318.288-8.816 329.904zM856.88 492.048c0-110.432-47.744-214.448-127.68-278.24l-224.688-179.248-224.704 179.248c-79.952 63.792-127.68 167.808-127.68 278.24v275.36c195.824 5.632 308.352 61.936 351.936 89.36 42.848-28.032 153.552-84.464 355.744-89.456 1.2-50.256-0.288-167.648-2.928-275.264zM630.448 609.568l-170.64-163.488-78.448 71.84c-13.040 11.952-33.264 11.024-45.2-2-11.936-13.040-11.040-33.28 1.984-45.216l100.56-92.080c6.128-5.6 13.856-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l192.288 184.224c12.768 12.224 13.184 32.48 0.976 45.248-12.224 12.752-32.48 13.168-45.248 0.976z" /> -<glyph unicode="" glyph-name="shield-minus" d="M925.84 821.136c-6.016 6.176-14.544 9.792-23.168 9.792-257.872 0-362.128 88.16-362.976 88.896-11.728 10.528-29.52 10.832-41.744 0.864-1.104-0.896-112.896-89.744-363.984-89.744-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.76-328.24v0l230.208-183.632c10.112-8.096 22.256-12.128 34.384-12.128s24.24 4.032 34.352 12.096l230.24 183.664c95.024 75.824 151.76 198.528 151.744 327.456 7.696 312.944 2.528 318.256-8.816 329.872zM870.672 492.048c0-110.416-47.728-214.416-127.664-278.208l-224.672-179.232-224.688 179.232c-79.952 63.792-127.68 167.792-127.68 278.208v275.328c195.824 5.632 308.336 61.936 351.92 89.36 42.832-28.016 153.536-84.448 355.712-89.456 1.2-50.256-0.288-167.632-2.928-275.232zM689.104 498.864h-338.224c-17.664 0-32-14.336-32-32s14.336-32 32-32h338.224c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="shield-plus" d="M918.736 821.136c-6.016 6.176-14.544 9.792-23.168 9.792-257.888 0-362.128 88.16-362.976 88.896-11.728 10.528-29.52 10.832-41.744 0.864-1.104-0.896-112.896-89.744-363.984-89.744-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.76-328.24v0l230.208-183.632c10.128-8.096 22.256-12.144 34.384-12.144s24.24 4.032 34.336 12.096l230.24 183.664c95.024 75.824 151.76 198.544 151.76 327.456 7.696 312.944 2.528 318.256-8.816 329.872zM863.568 492.048c0-110.416-47.728-214.416-127.68-278.208l-224.672-179.232-224.688 179.232c-79.952 63.792-127.68 167.792-127.68 278.208v275.328c195.824 5.632 308.352 61.936 351.92 89.36 42.832-28.016 153.52-84.448 355.712-89.456 1.2-50.256-0.288-167.632-2.928-275.232zM682 498.864h-137.12v137.104c0 17.664-14.336 32-32 32s-32-14.336-32-32v-137.104h-137.104c-17.664 0-32-14.336-32-32s14.336-32 32-32h137.104v-137.104c0-17.664 14.336-32 32-32s32 14.336 32 32v137.104h137.12c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="shield-xmark" d="M917.84 821.136c-6.016 6.176-14.544 9.792-23.168 9.792-257.872 0-362.128 88.16-362.976 88.896-11.712 10.528-29.52 10.832-41.744 0.864-1.104-0.896-112.896-89.744-363.984-89.744-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.76-328.24v0l230.208-183.632c10.112-8.096 22.256-12.128 34.384-12.128s24.24 4.032 34.352 12.096l230.24 183.664c95.024 75.824 151.76 198.528 151.744 327.456 7.696 312.944 2.528 318.256-8.816 329.872zM862.672 492.048c0-110.416-47.728-214.416-127.664-278.208l-224.672-179.232-224.688 179.232c-79.952 63.792-127.68 167.792-127.68 278.208v275.328c195.824 5.632 308.336 61.936 351.92 89.36 42.832-28.016 153.536-84.448 355.712-89.456 1.2-50.256-0.288-167.632-2.928-275.232zM654.208 609.072c-12.48 12.496-32.768 12.496-45.248 0l-96.96-96.96-96.96 96.96c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l96.96-96.96-96.96-96.96c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l96.96 96.96 96.96-96.96c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-96.96 96.96 96.96 96.96c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="shopping-cart" d="M970.432 783.344c-16.112 18.432-39.392 28.992-63.872 28.992h-695.744l-21.168 71.984c-4 13.616-16.496 22.976-30.704 22.976h-94.96c-17.664 0-32-14.336-32-32s14.336-32 32-32h70.992l102.176-347.552-76.192-248.4c-4.736-15.744-5.68-31.696-2.912-46.944 2.672-16.064 9.168-31.232 18.288-43.248 2.928-4.080 6.304-7.84 9.872-11.44-14.192-16.64-22.8-38.176-22.8-61.696 0-52.56 42.752-95.312 95.296-95.312s95.296 42.752 95.296 95.312c0 10.976-1.952 21.472-5.392 31.296h358.24c-3.424-9.824-5.392-20.32-5.392-31.296 0-52.56 42.752-95.312 95.312-95.312s95.296 42.752 95.296 95.312-42.752 95.296-95.296 95.296h-538.048c-5.856 0-11.84 1.44-17.2 4.144-5.376 2.736-9.936 6.56-13.664 11.728-3.408 4.48-5.648 9.776-6.72 16.224-1.024 5.664-0.64 11.552 1.088 17.328l47.728 155.568 44.416-151.072c4.112-13.936 16.864-22.992 30.688-22.992 2.992 0 6.032 0.416 9.040 1.312 16.96 4.992 26.656 22.784 21.664 39.728l-15.856 53.92h483.344c52.528 0 96.8 37.552 105.408 90.224l42.544 318.16c3.408 25.344-4.16 50.768-20.768 69.744zM290.016 84.016c0-17.264-14.048-31.312-31.296-31.312s-31.296 14.048-31.296 31.312 14.048 31.296 31.296 31.296 31.296-14.048 31.296-31.296zM796.8 52.704c-17.264 0-31.312 14.048-31.312 31.312s14.048 31.296 31.312 31.296 31.296-14.048 31.296-31.296-14.048-31.312-31.296-31.312zM276.16 590.080h94.688l5.216-62.592h-81.504l-18.4 62.592zM435.088 590.080h112.576v-62.592h-107.36l-5.216 62.592zM547.664 654.080h-117.904l-7.856 94.272h125.76v-94.272zM611.664 748.336h125.76l-7.856-94.272h-117.92v94.272zM547.664 463.488v-94.272h-94.4c0 0.784 0.112 1.52 0.048 2.32l-7.664 91.952h102.016zM611.664 463.488h102.032l-7.664-91.952c-0.064-0.784 0.048-1.536 0.048-2.32h-94.416v94.272zM611.664 527.488v62.592h112.576l-5.216-62.592h-107.36zM788.464 590.080h121.664l-8.368-62.592h-118.512l5.216 62.592zM922.272 741.232c4.432-5.088 6.448-12.048 5.504-19.12l-9.088-68.032h-124.88l7.664 91.952c0.064 0.784-0.048 1.536-0.048 2.32h105.152c7.824 0 12.864-3.872 15.696-7.104zM357.904 748.336c0-0.784-0.112-1.52-0.048-2.32l7.664-91.952h-108.176l-27.712 94.272h128.256zM313.376 463.488h68.032l7.856-94.272h-48.176l-27.712 94.272zM843.248 369.216h-73.184l7.856 94.272h115.28l-7.84-58.64c-3.376-20.64-21.088-35.632-42.112-35.632z" /> -<glyph unicode="" glyph-name="sidebar" d="M896 928h-766.176c-52.944 0-96-43.056-96-96v-768c0-52.944 43.056-96 96-96h766.176c52.944 0 96 43.056 96 96v768c0 52.944-43.056 96-96 96zM416 672h512v-224h-512v224zM129.824 864h766.176c17.936 0 32-14.064 32-32v-96h-830.176v96c0 17.648 14.352 32 32 32zM97.824 64v608h254.176v-640h-222.176c-17.648 0-32 14.352-32 32zM896 32h-480v352h512v-320c0-17.936-14.064-32-32-32zM832 768h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM704 768h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 576h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 448h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 320h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 256h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM480 576h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 544h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="site-logo" d="M429.214 232.708c-23.614-8.070-48.374-12.162-73.592-12.162-19.138 0-40.276 22.416-56.544 59.964-9 20.776-16.082 44.888-21.098 71.158h42.020c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-48.158c-1.688 17.274-2.584 35.124-2.584 53.332 0 3.338 0.030 6.662 0.088 9.968 0.208 11.872-9.246 21.666-21.118 21.876-11.862 0.142-21.666-9.244-21.876-21.118-0.064-3.556-0.094-7.134-0.094-10.726 0-18.114 0.828-35.954 2.404-53.332h-94.164c-4.128 17.114-6.33 34.968-6.33 53.332s2.202 36.218 6.33 53.332h55.974c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-40.866c24.782 52.786 69.256 94.554 123.91 115.784-10.996-18.566-20.528-41.25-28.204-67.678-3.312-11.402 3.248-23.332 14.65-26.642 11.406-3.314 23.332 3.248 26.644 14.65 16.762 57.716 43.852 95.010 69.016 95.010 14.852 0 30.892-13.294 45.17-37.434 14.008-23.686 25.282-56.442 32.424-93.69h-116.984c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h261.104c4.456-8.872 14.632-13.746 24.624-11.136 11.49 2.996 18.376 14.74 15.378 26.23-1.104 4.234-2.316 8.416-3.612 12.558-0.054 0.184-0.114 0.366-0.174 0.548-35.27 111.9-139.432 188.922-257.932 188.922-120.304 0-222.496-78.964-257.514-187.778-0.296-0.752-0.544-1.526-0.754-2.318-7.918-25.396-12.186-52.388-12.186-80.36s4.268-54.968 12.19-80.368c0.208-0.784 0.456-1.552 0.748-2.298 35.014-108.82 137.208-187.79 257.518-187.79 29.96 0 59.4 4.87 87.5 14.474 11.236 3.84 17.23 16.060 13.39 27.296-3.84 11.238-16.062 17.23-27.298 13.39zM561.728 544.332h-84.796c-8.146 46.984-21.834 86.468-39.432 115.884 54.326-20.958 99.206-62.278 124.23-115.884zM149.606 351.668h84.702c5.654-32.552 14.176-62.544 25.316-88.254 4.34-10.016 9.014-19.206 13.978-27.56-54.692 21.218-99.2 63.002-123.994 115.814zM234.652 522.92c0-10.648 8.372-19.278 18.7-19.278s18.7 8.63 18.7 19.278-8.372 19.278-18.7 19.278-18.7-8.63-18.7-19.278zM912.712 468.24h-519.64c-14.060 0-25.5-11.44-25.5-25.5v-162.4c0-14.060 11.44-25.5 25.5-25.5h519.64c14.060 0 25.5 11.44 25.5 25.5v162.4c0 14.060-11.44 25.5-25.5 25.5zM830.292 348.18c-3.54-3.54-8.44-5.74-13.84-5.74h-222.22c-10.8 0-19.58 8.78-19.58 19.58 0 5.42 2.2 10.3 5.74 13.86 3.54 3.54 8.44 5.74 13.84 5.74h222.22c10.82 0 19.58-8.78 19.58-19.6 0-5.4-2.18-10.3-5.74-13.84zM500.732 384.22h50.96c0.38 0 0.54-0.48 0.24-0.7l-41.24-29.958 15.76-48.48c0.1-0.36-0.3-0.66-0.62-0.44l-41.24 29.96-41.24-29.96c-0.3-0.22-0.7 0.080-0.6 0.44l15.76 48.48-41.24 29.958c-0.3 0.22-0.14 0.7 0.22 0.7h50.98l13.34 41.020 2.42 7.46c0.12 0.36 0.62 0.36 0.74 0l2.42-7.46 13.34-41.020zM816.672 276.34l96.52 96.5 1.8-49.6c0.94-25.62-19.58-46.9-45.22-46.9h-53.1z" /> -<glyph unicode="" glyph-name="sliders" d="M864 896h-704c-70.576 0-128-57.424-128-128v-640c0-70.576 57.424-128 128-128h704c70.576 0 128 57.424 128 128v640c0 70.576-57.424 128-128 128zM928 128c0-35.296-28.704-64-64-64h-704c-35.296 0-64 28.704-64 64v640c0 35.296 28.704 64 64 64h704c35.296 0 64-28.704 64-64v-640zM832 736h-101.6c-13.216 37.232-48.688 64-90.4 64-52.944 0-96-43.056-96-96s43.056-96 96-96c41.712 0 77.184 26.768 90.4 64h101.6c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 672c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM192 672h256.688c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256.688c-17.664 0-32-14.336-32-32s14.336-32 32-32zM832 480h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 416h133.6c13.216-37.232 48.688-64 90.4-64 52.944 0 96 43.056 96 96s-43.056 96-96 96c-41.712 0-77.184-26.768-90.4-64h-133.6c-17.664 0-32-14.336-32-32s14.336-32 32-32zM416 480c17.648 0 32-14.352 32-32s-14.352-32-32-32-32 14.352-32 32 14.352 32 32 32zM320 224h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832 224h-229.6c-13.216 37.232-48.688 64-90.4 64-52.944 0-96-43.056-96-96s43.056-96 96-96c41.712 0 77.184 26.768 90.4 64h229.6c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 160c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32z" /> -<glyph unicode="" glyph-name="sliders-up" d="M832 928h-640c-70.576 0-128-57.424-128-128v-704c0-70.576 57.424-128 128-128h640c70.576 0 128 57.424 128 128v704c0 70.576-57.424 128-128 128zM896 96c0-35.296-28.704-64-64-64h-640c-35.296 0-64 28.704-64 64v704c0 35.296 28.704 64 64 64h640c35.296 0 64-28.704 64-64v-704zM768 479.312c17.664 0 32 14.336 32 32v256.688c0 17.664-14.336 32-32 32s-32-14.336-32-32v-256.688c0-17.664 14.336-32 32-32zM768 416c-52.944 0-96-43.056-96-96 0-41.696 26.768-77.184 64-90.4v-101.6c0-17.664 14.336-32 32-32s32 14.336 32 32v101.6c37.232 13.216 64 48.688 64 90.4 0 52.944-43.056 96-96 96zM768 288c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM512 384c-17.664 0-32-14.336-32-32v-224c0-17.664 14.336-32 32-32s32 14.336 32 32v224c0 17.664-14.336 32-32 32zM544 634.4v133.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-133.6c-37.232-13.216-64-48.688-64-90.4 0-52.944 43.056-96 96-96s96 43.056 96 96c0 41.696-26.768 77.184-64 90.4zM512 512c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32zM256 608c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM256 544c-52.944 0-96-43.056-96-96 0-41.696 26.768-77.184 64-90.4v-229.6c0-17.664 14.336-32 32-32s32 14.336 32 32v229.6c37.232 13.216 64 48.688 64 90.4 0 52.944-43.056 96-96 96zM256 416c-17.648 0-32 14.352-32 32s14.352 32 32 32 32-14.352 32-32-14.352-32-32-32z" /> -<glyph unicode="" glyph-name="social-icons" d="M854.672 832.164h-685.34c-22.88 0-41.5-18.62-41.5-41.5v-685.34c0-22.88 18.62-41.5 41.5-41.5h685.34c22.88 0 41.5 18.62 41.5 41.5v685.34c0 22.88-18.62 41.5-41.5 41.5zM853.172 106.824h-682.34v682.34h682.34v-682.34zM304.482 698.528c0-21.070-16.277-38.15-36.356-38.15s-36.356 17.080-36.356 38.15c0 21.070 16.277 38.15 36.356 38.15s36.356-17.080 36.356-38.15zM583.564 677.028h-240.944c-11.874 0-21.5 9.624-21.5 21.5s9.626 21.5 21.5 21.5h240.944c11.874 0 21.5-9.624 21.5-21.5s-9.626-21.5-21.5-21.5zM755.552 617.664h-470.74c-25.38 0-45.96-20.58-45.96-45.96v-334.74c0-25.38 20.58-45.96 45.96-45.96h470.74c25.4 0 45.96 20.58 45.96 45.96v334.74c0 25.38-20.56 45.96-45.96 45.96zM611.132 390.084c-0.42-0.54-0.9-1.040-1.38-1.54l-87.84-92.18c-5.16-5.42-13.54-5.42-18.7 0l-87.86 92.2c-22.38 23.5-25.020 61.74-4.1 86.7 22.92 27.32 62.62 28.32 86.76 2.98 3.4-3.56 6.3-7.44 8.72-11.58 2.52-4.34 8.42-4.34 11.060-0.060 2.24 3.6 4.86 7.020 7.88 10.18 0.48 0.5 0.96 1 1.46 1.44 23.3 22.92 59.88 22.42 82.62-1.44 22.72-23.86 23.22-62.26 1.38-86.7zM785.272 250.064c0-18.72-14.46-33.9-32.28-33.9h-89.9l122.18 128.24v-94.34z" /> -<glyph unicode="" glyph-name="social-share" d="M960 416c-17.664 0-32-14.336-32-32v-320c0-17.648-14.352-32-32-32h-768c-17.648 0-32 14.352-32 32v768c0 17.648 14.352 32 32 32h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-52.944 0-96-43.056-96-96v-768c0-52.944 43.056-96 96-96h768c52.944 0 96 43.056 96 96v320c0 17.664-14.336 32-32 32zM494.32 483.376c15.808 7.904 22.224 27.12 14.32 42.944-7.888 15.792-27.088 22.256-42.944 14.32-273.088-136.544-241.776-413.808-241.44-416.592 2.016-16.192 15.792-27.984 31.68-27.984 1.296 0 2.608 0.080 3.936 0.24 17.504 2.144 29.968 18.080 27.888 35.6-1.136 9.568-25.232 235.616 206.544 351.504zM592.56 388.624c15.072 9.104 19.952 28.72 10.88 43.84-9.088 15.152-28.752 20.064-43.904 10.976-62.96-37.76-166.944-154.416-109.888-325.568 4.464-13.408 16.96-21.888 30.352-21.888 3.344 0 6.768 0.528 10.128 1.664 16.768 5.6 25.824 23.712 20.24 40.48-54.752 164.256 76.336 246.896 82.208 250.496zM479.984 621.952l156.96-49.008 49.008-156.96c4.224-13.536 16.736-22.464 30.528-22.464 1.648 0 3.312 0.128 4.992 0.384l154.336 24.32c13.232 2.080 23.76 12.208 26.384 25.344l89.168 446.176c2.096 10.48-1.184 21.328-8.752 28.896s-18.416 10.896-28.896 8.752l-446.176-89.168c-13.136-2.624-23.264-13.152-25.344-26.384l-24.32-154.336c-2.464-15.68 6.928-30.8 22.080-35.536zM541.968 779.808l377.248 75.408-75.408-377.248-104.992-16.544-40.016 128.128 147.664 147.664c12.496 12.496 12.496 32.752 0 45.248s-32.752 12.496-45.248 0l-147.664-147.664-128.128 40.016 16.544 104.992z" /> -<glyph unicode="" glyph-name="social-share-2" d="M488.242 269.45c14.060-14.060 36.856-14.060 50.916 0l239.054 239.054c1.31 1.31 2.62 2.62 3.76 3.988 59.408 63.394 58.096 163.014-3.76 224.87-61.914 61.914-161.476 63.166-224.87 3.76-1.368-1.14-2.676-2.45-3.988-3.76-8.198-8.198-15.344-17.064-21.418-26.418-7.19-11.070-23.236-11.058-30.128 0.2-6.544 10.69-14.44 20.78-23.694 30.036-65.714 65.714-173.764 63.126-236.142-7.766-56.934-64.704-49.778-163.916 11.166-224.858l239.104-239.104zM853.334 417.464h-112.99c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h112.99c23.436 0 42.5-19.066 42.5-42.5v-120.256l-68.364-68.364h-656.802c-23.436 0-42.5 19.064-42.5 42.5v146.12c0 23.434 19.064 42.5 42.5 42.5h102.284c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-102.284c-47.146 0-85.5-38.356-85.5-85.5v-146.12c0-47.144 38.354-85.5 85.5-85.5h682.666c47.146 0 85.5 38.356 85.5 85.5v146.12c0 47.144-38.354 85.5-85.5 85.5zM199.086 265.496c0-20.382 16.524-36.908 36.908-36.908s36.906 16.524 36.906 36.908-16.524 36.908-36.906 36.908-36.908-16.524-36.908-36.908zM402.074 265.496c0-20.384-16.524-36.908-36.908-36.908s-36.908 16.524-36.908 36.908c0 20.384 16.524 36.908 36.908 36.908s36.908-16.524 36.908-36.908zM622.6 265.496c0-20.382 16.524-36.908 36.906-36.908s36.908 16.524 36.908 36.908-16.524 36.908-36.908 36.908-36.906-16.524-36.906-36.908zM825.588 265.496c0-20.384-16.524-36.908-36.908-36.908s-36.908 16.524-36.908 36.908c0 20.384 16.524 36.908 36.908 36.908s36.908-16.524 36.908-36.908z" /> -<glyph unicode="" glyph-name="Spark" d="M843.051 510.72c-102.699 16.811-159.061 38.187-194.603 73.728s-56.917 91.904-73.728 194.603c-5.077 30.891-31.445 53.291-62.72 53.291s-57.685-22.4-62.72-53.291c-16.811-102.656-38.187-159.061-73.728-194.603s-91.904-56.917-194.603-73.728c-30.891-5.077-53.291-31.445-53.291-62.72s22.4-57.685 53.291-62.72c102.699-16.811 159.061-38.187 194.603-73.728s56.917-91.904 73.728-194.603c5.077-30.891 31.445-53.291 62.72-53.291s57.685 22.4 62.72 53.291c16.811 102.656 38.187 159.061 73.728 194.603s91.904 56.917 194.603 73.728c30.891 5.077 53.291 31.445 53.291 62.72s-22.4 57.685-53.291 62.72zM587.648 372.352c-33.664-33.664-57.515-76.8-75.648-139.392-18.133 62.592-41.984 105.771-75.648 139.392-33.664 33.664-76.8 57.515-139.392 75.648 62.592 18.133 105.771 41.984 139.392 75.648 33.664 33.664 57.515 76.8 75.648 139.392 18.133-62.592 41.984-105.771 75.648-139.392 33.664-33.664 76.8-57.515 139.392-75.648-62.592-18.133-105.771-41.984-139.392-75.648z" /> -<glyph unicode="" glyph-name="Sparkles" d="M843.051 510.72c-102.699 16.811-159.061 38.187-194.603 73.728s-56.917 91.904-73.728 194.603c-5.077 30.891-31.445 53.291-62.72 53.291s-57.685-22.4-62.72-53.291c-16.811-102.656-38.187-159.061-73.728-194.603s-91.904-56.917-194.603-73.728c-30.891-5.077-53.291-31.445-53.291-62.72s22.4-57.685 53.291-62.72c102.699-16.811 159.061-38.187 194.603-73.728s56.917-91.904 73.728-194.603c5.077-30.891 31.445-53.291 62.72-53.291s57.685 22.4 62.72 53.291c16.811 102.656 38.187 159.061 73.728 194.603s91.904 56.917 194.603 73.728c30.891 5.077 53.291 31.445 53.291 62.72s-22.4 57.685-53.291 62.72zM587.648 372.352c-33.664-33.664-57.515-76.8-75.648-139.392-18.133 62.592-41.984 105.771-75.648 139.392-33.664 33.664-76.8 57.515-139.392 75.648 62.592 18.133 105.771 41.984 139.392 75.648 33.664 33.664 57.515 76.8 75.648 139.392 18.133-62.592 41.984-105.771 75.648-139.392 33.664-33.664 76.8-57.515 139.392-75.648-62.592-18.133-105.771-41.984-139.392-75.648zM330.155 182.059c-51.029 12.203-71.893 33.067-84.096 84.096-3.243 13.568-22.741 13.568-25.984 0-12.203-51.029-33.067-71.893-84.096-84.096-13.568-3.243-13.568-22.741 0-25.984 51.029-12.203 71.893-33.067 84.096-84.096 3.243-13.568 22.741-13.568 25.984 0 12.203 51.029 33.067 71.893 84.096 84.096 13.568 3.243 13.568 22.741 0 25.984zM691.755 711.851c51.029-12.203 71.893-33.067 84.096-84.096 3.243-13.568 22.741-13.568 25.984 0 12.203 51.029 33.067 71.893 84.096 84.096 13.568 3.243 13.568 22.741 0 25.984-51.029 12.203-71.893 33.067-84.096 84.096-3.243 13.568-22.741 13.568-25.984 0-12.203-51.029-33.067-71.893-84.096-84.096-13.568-3.243-13.568-22.741 0-25.984z" /> -<glyph unicode="" glyph-name="speedometer" d="M509.376 930.608c-264.672 0-480-215.328-480-480 0-49.904 7.632-99.072 22.672-146.176 1.776-5.568 4.768-13.408 8.832-23.216-18.224-30.912-28.88-66.8-28.88-105.216 0-114.688 93.312-208 208-208 39.776 0 76.848 11.424 108.496 30.88 1.776-1.024 3.664-1.904 5.664-2.592 49.904-17.024 102.128-25.664 155.232-25.664 264.672 0 480 215.328 480 480s-215.344 479.984-480.016 479.984zM99.616 144.368c15.952 1.824 28.384 15.2 28.384 31.632s-12.432 29.824-28.384 31.632c3.664 16.288 10.128 31.52 18.816 45.216 5.792-4.576 12.72-7.008 19.728-7.008 8.192 0 16.384 3.12 22.624 9.376 11.6 11.6 12.288 29.792 2.368 42.352 13.696 8.688 28.912 15.152 45.216 18.816 1.824-15.952 15.2-28.384 31.632-28.384s29.824 12.432 31.632 28.384c16.288-3.664 31.52-10.128 45.216-18.816-9.92-12.56-9.232-30.752 2.368-42.352 6.24-6.256 14.432-9.376 22.624-9.376 7.008 0 13.936 2.432 19.728 7.008 8.688-13.696 15.152-28.912 18.816-45.216-15.952-1.824-28.384-15.2-28.384-31.632s12.432-29.824 28.384-31.632c-14.48-64.224-71.872-112.368-140.384-112.368s-125.92 48.144-140.384 112.368zM509.376 34.608c-35.872 0-71.248 4.688-105.568 13.664 27.584 35.296 44.192 79.568 44.192 127.728 0 56.24-22.528 107.248-58.912 144.72-0.656 0.8-1.216 1.648-1.968 2.4s-1.616 1.312-2.416 1.968c-37.472 36.384-88.48 58.896-144.704 58.896-49.52 0-95.008-17.456-130.752-46.448-10.336 36.64-15.856 74.56-15.856 113.056 0 229.392 186.624 416 416 416s416-186.608 416-416-186.624-416-416-416zM763.12 694.336c-0.704 0.88-1.328 1.808-2.144 2.624s-1.744 1.44-2.624 2.144c-63.536 62.352-150.512 100.896-246.352 100.896s-182.8-38.544-246.352-100.896c-0.88-0.704-1.808-1.328-2.624-2.144s-1.44-1.744-2.144-2.624c-62.336-63.536-100.88-150.512-100.88-246.336 0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32 0 88.224 71.776 160 160 160s160-71.776 160-160c0-42.688-16.624-82.848-46.8-113.072-12.48-12.496-12.464-32.752 0.016-45.232l90.496-90.48c6-6 14.144-9.376 22.624-9.376v0c8.48 0 16.624 3.376 22.624 9.376 66.432 66.496 103.024 154.848 103.024 248.8 0 95.84-38.544 182.8-100.88 246.336zM733.44 480c-5.456 37.856-20.336 72.608-42.288 101.888l45.648 45.648c33.152-41.424 55.152-92.096 61.312-147.552h-64.672zM544 669.44v64.672c55.456-6.16 106.128-28.16 147.552-61.312l-45.648-45.648c-29.296 21.952-64.048 36.848-101.904 42.304zM378.096 627.152l-45.648 45.648c41.424 33.152 92.096 55.152 147.552 61.312v-64.672c-37.856-5.456-72.608-20.352-101.904-42.304zM287.2 627.552l45.648-45.648c-21.952-29.296-36.832-64.048-42.288-101.888h-64.672c6.16 55.44 28.16 106.128 61.312 147.552zM737.104 268.336l-45.6 45.6c22.496 30.016 36.832 64.96 42.112 102.080h64.416c-5.968-54.192-26.816-105.104-60.928-147.664zM579.792 380.208c18.144 18.128 28.144 42.24 28.144 67.888s-9.984 49.76-28.128 67.888c-32.224 32.24-112.672 32.736-136.512 32.016-16.992-0.448-30.672-14.096-31.136-31.088-0.672-23.92-0.352-104.496 31.872-136.656 18.128-18.144 42.224-28.144 67.888-28.144s49.744 9.984 67.872 28.096zM476.912 483.216c27.136-1.968 51.472-6.912 57.68-12.512 6.016-6.048 9.344-14.080 9.344-22.608s-3.328-16.56-9.376-22.608c-12.096-12.080-33.184-12.064-45.216-0.032-5.616 6.208-10.512 30.576-12.432 57.76zM241.168 221.744l-24.016-24.496c-12.368-12.624-12.176-32.88 0.448-45.248 6.24-6.112 14.32-9.152 22.4-9.152 8.288 0 16.592 3.2 22.848 9.6l24.016 24.496c12.368 12.624 12.176 32.88-0.448 45.248-12.624 12.352-32.88 12.192-45.264-0.432zM512 256c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64zM608 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="square-arrow-down" d="M617.376 427.968l-73.376-73.376v264.080c0 17.664-14.336 32-32 32s-32-14.336-32-32v-264.080l-73.376 73.376c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l127.984-127.984c1.488-1.488 3.136-2.832 4.896-4 0.784-0.528 1.648-0.896 2.48-1.344 1.008-0.544 1.968-1.152 3.040-1.6 1.056-0.432 2.16-0.688 3.248-1.008 0.912-0.272 1.792-0.624 2.736-0.816 2.064-0.416 4.16-0.624 6.272-0.624s4.192 0.224 6.272 0.624c0.944 0.192 1.824 0.544 2.736 0.816 1.088 0.32 2.192 0.576 3.248 1.008 1.072 0.448 2.032 1.040 3.040 1.6 0.832 0.448 1.68 0.816 2.48 1.344 1.76 1.184 3.408 2.512 4.896 4l127.984 127.984c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.248 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-down-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 142s0 0 0 0h-596s0 0 0 0v596s0 0 0 0h596s0 0 0 0v-596zM609.6 427.744l-54.592-54.592v237.52c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-237.52l-54.592 54.592c-16.784 16.8-44.016 16.8-60.816 0s-16.8-44.016 0-60.816l128-128c1.008-1.008 2.064-1.952 3.152-2.848 0.496-0.4 1.024-0.752 1.52-1.136 0.608-0.464 1.216-0.928 1.856-1.36 0.608-0.416 1.248-0.768 1.872-1.136 0.576-0.352 1.136-0.704 1.728-1.024 0.64-0.336 1.296-0.64 1.952-0.944 0.624-0.288 1.232-0.608 1.856-0.864 0.64-0.256 1.28-0.48 1.936-0.704 0.672-0.24 1.344-0.496 2.048-0.72 0.64-0.192 1.312-0.336 1.952-0.496 0.704-0.176 1.408-0.368 2.128-0.512 0.752-0.144 1.52-0.24 2.288-0.352 0.624-0.096 1.248-0.208 1.872-0.272 1.408-0.144 2.832-0.208 4.24-0.208s2.832 0.080 4.24 0.208c0.64 0.064 1.248 0.176 1.872 0.272 0.768 0.112 1.52 0.192 2.288 0.352 0.72 0.144 1.408 0.336 2.128 0.512 0.656 0.16 1.312 0.304 1.952 0.496 0.688 0.208 1.36 0.464 2.048 0.72 0.64 0.224 1.296 0.448 1.936 0.704s1.248 0.576 1.856 0.864c0.656 0.304 1.312 0.592 1.952 0.944 0.592 0.32 1.152 0.672 1.728 1.024 0.624 0.368 1.264 0.736 1.872 1.136 0.64 0.432 1.232 0.896 1.856 1.36 0.512 0.384 1.024 0.736 1.52 1.136 1.104 0.896 2.16 1.856 3.152 2.848l128 128c16.8 16.8 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0z" /> -<glyph unicode="" glyph-name="square-arrow-down-left" d="M602.848 591.312l-186.736-186.736v103.76c0 17.664-14.336 32-32 32s-32-14.336-32-32v-181.008c0-2.096 0.224-4.192 0.624-6.272 0.192-0.944 0.544-1.824 0.816-2.736 0.32-1.088 0.576-2.176 1.008-3.232 0.448-1.072 1.056-2.048 1.616-3.072 0.448-0.816 0.8-1.664 1.328-2.448 2.336-3.504 5.36-6.528 8.864-8.864 0.784-0.528 1.648-0.896 2.48-1.344 1.008-0.544 1.968-1.152 3.040-1.6 1.056-0.432 2.16-0.688 3.248-1.008 0.912-0.272 1.792-0.624 2.736-0.816 2.064-0.416 4.16-0.624 6.272-0.624h181.008c17.664 0 32 14.336 32 32s-14.336 32-32 32h-103.76l186.736 186.736c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0zM984.8 813.552c0 63.2-51.232 114.448-114.448 114.448h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.232-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104zM870.352 32h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104c0-27.808-22.624-50.448-50.448-50.448z" /> -<glyph unicode="" glyph-name="square-arrow-down-left-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM348.8 313.184c0.112-0.752 0.192-1.52 0.352-2.272 0.144-0.72 0.336-1.424 0.528-2.128 0.16-0.656 0.304-1.312 0.496-1.952 0.208-0.688 0.464-1.36 0.72-2.048 0.224-0.64 0.448-1.296 0.704-1.92 0.256-0.64 0.576-1.248 0.864-1.872 0.304-0.656 0.592-1.312 0.944-1.952 0.32-0.592 0.688-1.168 1.024-1.744 0.368-0.624 0.72-1.248 1.136-1.856 0.432-0.64 0.912-1.248 1.376-1.872 0.384-0.496 0.72-1.024 1.136-1.504 1.792-2.192 3.808-4.208 6-6 0.496-0.416 1.024-0.768 1.536-1.152 0.608-0.464 1.2-0.928 1.84-1.36 0.608-0.416 1.248-0.768 1.888-1.152 0.576-0.336 1.136-0.704 1.728-1.024 0.64-0.352 1.312-0.64 1.968-0.944 0.608-0.288 1.216-0.592 1.856-0.864s1.296-0.48 1.936-0.704c0.672-0.24 1.344-0.496 2.032-0.704 0.656-0.192 1.312-0.336 1.968-0.512 0.704-0.176 1.392-0.368 2.112-0.512 0.752-0.144 1.52-0.24 2.288-0.352 0.624-0.096 1.248-0.208 1.872-0.272 1.408-0.144 2.832-0.208 4.24-0.208h181.024c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-77.216l167.952 167.952c16.8 16.8 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0l-167.952-167.952v77.216c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-181.024c0-1.424 0.080-2.832 0.208-4.24 0.064-0.64 0.176-1.264 0.272-1.888z" /> -<glyph unicode="" glyph-name="square-arrow-down-right" d="M632.688 540.336c-17.664 0-32-14.336-32-32v-103.76l-186.736 186.736c-12.496 12.496-32.752 12.496-45.248 0s-12.496-32.752 0-45.248l186.736-186.736h-103.776c-17.664 0-32-14.336-32-32s14.336-32 32-32h181.024c2.096 0 4.192 0.224 6.272 0.624 0.96 0.192 1.84 0.544 2.768 0.816 1.072 0.32 2.16 0.56 3.2 0.992 1.104 0.448 2.096 1.072 3.136 1.648 0.784 0.432 1.616 0.784 2.368 1.296 3.504 2.352 6.528 5.36 8.88 8.864 0.528 0.784 0.88 1.632 1.328 2.448 0.56 1.008 1.168 1.984 1.616 3.072 0.432 1.056 0.688 2.144 1.008 3.232 0.272 0.912 0.624 1.792 0.816 2.736 0.416 2.064 0.624 4.16 0.624 6.272v181.008c0 17.664-14.336 32-32 32zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-down-right-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM528.864 362.32h-77.216c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h181.024c1.424 0 2.832 0.080 4.24 0.208 0.64 0.064 1.248 0.176 1.872 0.272 0.768 0.112 1.52 0.192 2.288 0.352 0.72 0.144 1.408 0.336 2.112 0.512 0.656 0.16 1.312 0.304 1.968 0.512 0.688 0.208 1.36 0.464 2.032 0.704 0.656 0.24 1.296 0.448 1.936 0.704 0.624 0.256 1.232 0.576 1.856 0.864 0.656 0.304 1.312 0.608 1.968 0.944 0.592 0.32 1.152 0.672 1.728 1.024 0.624 0.384 1.264 0.736 1.888 1.152 0.64 0.432 1.232 0.896 1.84 1.36 0.512 0.384 1.040 0.736 1.536 1.152 2.192 1.792 4.208 3.808 6 6 0.4 0.496 0.752 1.008 1.136 1.52 0.464 0.624 0.944 1.216 1.376 1.856 0.4 0.608 0.768 1.248 1.136 1.872 0.352 0.576 0.704 1.152 1.024 1.744 0.336 0.64 0.624 1.296 0.944 1.952 0.288 0.624 0.608 1.232 0.864 1.872s0.48 1.28 0.704 1.92c0.24 0.688 0.512 1.36 0.72 2.048 0.192 0.64 0.336 1.296 0.496 1.952 0.176 0.704 0.368 1.408 0.512 2.128 0.144 0.752 0.24 1.52 0.352 2.272 0.096 0.624 0.208 1.248 0.272 1.888 0.144 1.408 0.208 2.832 0.208 4.24v181.024c0 23.744-19.248 43.008-43.008 43.008s-43.008-19.248-43.008-43.008v-77.216l-167.952 167.952c-16.784 16.8-44.016 16.8-60.816 0s-16.8-44.016 0-60.816l167.952-167.952z" /> -<glyph unicode="" glyph-name="square-arrow-left" d="M682.672 480h-264.080l73.376 73.376c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-127.984-127.984c-1.488-1.488-2.832-3.136-4.016-4.896-0.528-0.784-0.88-1.632-1.328-2.448-0.56-1.008-1.168-1.984-1.616-3.072-0.432-1.056-0.688-2.144-1.008-3.232-0.272-0.912-0.624-1.792-0.816-2.736-0.816-4.144-0.816-8.4 0-12.528 0.192-0.944 0.544-1.824 0.816-2.736 0.32-1.088 0.576-2.176 1.008-3.232 0.448-1.072 1.056-2.048 1.616-3.072 0.448-0.816 0.8-1.664 1.328-2.448 1.184-1.76 2.512-3.408 4.016-4.896l127.984-127.984c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-73.376 73.376h264.080c17.664 0 32 14.336 32 32s-14.336 32-32 32zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.824-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-left-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM305.568 463.872c-0.4-0.608-0.752-1.232-1.136-1.856-0.352-0.576-0.704-1.152-1.024-1.744-0.336-0.64-0.624-1.296-0.944-1.952-0.288-0.624-0.608-1.232-0.864-1.872s-0.48-1.28-0.704-1.92c-0.24-0.688-0.512-1.36-0.72-2.048-0.192-0.64-0.336-1.296-0.496-1.952-0.176-0.704-0.384-1.408-0.528-2.128-0.144-0.752-0.24-1.504-0.352-2.272-0.096-0.624-0.208-1.248-0.272-1.888-0.272-2.816-0.272-5.664 0-8.48 0.064-0.64 0.176-1.264 0.272-1.888 0.112-0.752 0.192-1.52 0.352-2.272 0.144-0.72 0.336-1.424 0.528-2.128 0.16-0.656 0.304-1.312 0.496-1.952 0.208-0.704 0.464-1.36 0.72-2.048 0.224-0.64 0.448-1.296 0.704-1.92 0.256-0.64 0.576-1.248 0.864-1.872 0.304-0.656 0.592-1.312 0.944-1.952 0.32-0.592 0.688-1.168 1.024-1.744 0.368-0.624 0.72-1.248 1.136-1.856 0.432-0.64 0.912-1.248 1.376-1.872 0.384-0.496 0.72-1.024 1.136-1.504 0.896-1.104 1.856-2.16 2.848-3.152l128-128c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.8 16.8 16.8 44.016 0 60.816l-54.592 54.592h237.52c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-237.52l54.592 54.592c16.8 16.8 16.8 44.016 0 60.816-16.784 16.8-44.016 16.8-60.816 0l-128-128c-1.008-1.008-1.952-2.064-2.848-3.152-0.4-0.496-0.752-1.008-1.136-1.504-0.464-0.624-0.944-1.232-1.376-1.872z" /> -<glyph unicode="" glyph-name="square-arrow-right" d="M712.224 435.76c0.432 1.056 0.688 2.144 1.008 3.232 0.272 0.912 0.624 1.792 0.816 2.736 0.816 4.144 0.816 8.4 0 12.528-0.192 0.944-0.544 1.824-0.816 2.736-0.32 1.088-0.576 2.176-1.008 3.232-0.448 1.072-1.056 2.048-1.616 3.072-0.448 0.816-0.8 1.664-1.328 2.448-1.184 1.76-2.512 3.408-4.016 4.896l-127.984 127.984c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l73.376-73.376h-264.080c-17.664 0-32-14.336-32-32s14.336-32 32-32h264.080l-73.376-73.376c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l127.984 127.984c1.488 1.488 2.832 3.136 4.016 4.896 0.528 0.784 0.88 1.632 1.328 2.448 0.56 1.008 1.168 1.984 1.616 3.072zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-right-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM341.328 396.992h237.52l-54.592-54.592c-16.8-16.8-16.8-44.016 0-60.816 8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592l128 128c1.008 1.008 1.952 2.064 2.848 3.152 0.4 0.496 0.752 1.008 1.136 1.52 0.464 0.624 0.944 1.216 1.376 1.856 0.416 0.608 0.768 1.248 1.136 1.872 0.352 0.576 0.704 1.152 1.024 1.744 0.336 0.64 0.624 1.296 0.944 1.952 0.288 0.624 0.608 1.232 0.864 1.872s0.48 1.28 0.704 1.92c0.24 0.688 0.512 1.36 0.72 2.048 0.192 0.64 0.336 1.296 0.496 1.952 0.176 0.704 0.368 1.408 0.512 2.128 0.144 0.752 0.24 1.52 0.352 2.272 0.096 0.624 0.208 1.248 0.272 1.888 0.272 2.816 0.272 5.664 0 8.48-0.064 0.64-0.176 1.248-0.272 1.888-0.112 0.768-0.192 1.52-0.352 2.272-0.144 0.72-0.336 1.424-0.512 2.128-0.16 0.656-0.304 1.312-0.496 1.952-0.208 0.704-0.464 1.36-0.72 2.048-0.224 0.64-0.448 1.296-0.704 1.92-0.256 0.64-0.576 1.248-0.864 1.872-0.304 0.656-0.592 1.312-0.944 1.952-0.32 0.592-0.688 1.168-1.024 1.744-0.368 0.624-0.72 1.264-1.136 1.872-0.432 0.64-0.912 1.248-1.376 1.856-0.384 0.512-0.736 1.024-1.136 1.52-0.896 1.104-1.856 2.16-2.848 3.152l-128 128c-16.784 16.8-44.016 16.8-60.816 0s-16.8-44.016 0-60.816l54.592-54.592h-237.52c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008z" /> -<glyph unicode="" glyph-name="square-arrow-up" d="M534.64 641.264c-1.488 1.488-3.136 2.832-4.896 4-0.8 0.544-1.68 0.912-2.528 1.376-0.992 0.544-1.936 1.136-2.976 1.568-1.072 0.448-2.192 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.144 0.816-8.4 0.816-12.544 0-0.928-0.192-1.792-0.528-2.688-0.8-1.104-0.32-2.208-0.576-3.28-1.024-1.056-0.432-2-1.040-2.992-1.584-0.832-0.464-1.712-0.832-2.512-1.36-1.76-1.184-3.408-2.512-4.896-4l-127.984-127.984c-12.496-12.496-12.496-32.752 0-45.248 12.48-12.496 32.768-12.496 45.248 0l73.376 73.376v-264.080c0-17.664 14.336-32 32-32s32 14.336 32 32v264.080l73.376-73.376c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-127.984 127.984zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-up-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM414.4 452.256l54.592 54.592v-237.52c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v237.52l54.592-54.592c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.8 16.8 16.8 44.016 0 60.816l-128 128c-1.008 1.008-2.064 1.952-3.152 2.848-0.496 0.4-1.024 0.752-1.52 1.136-0.608 0.464-1.216 0.928-1.856 1.36-0.608 0.416-1.248 0.768-1.872 1.136-0.576 0.352-1.136 0.704-1.728 1.024-0.64 0.336-1.296 0.64-1.952 0.944-0.624 0.288-1.232 0.608-1.856 0.864-0.64 0.256-1.28 0.48-1.92 0.704-0.672 0.24-1.344 0.512-2.048 0.72-0.64 0.192-1.296 0.336-1.952 0.496-0.704 0.176-1.408 0.384-2.128 0.528-0.752 0.144-1.504 0.24-2.256 0.352-0.64 0.096-1.248 0.208-1.888 0.272-1.392 0.144-2.8 0.208-4.192 0.208 0 0-0.032 0-0.048 0s-0.032 0-0.048 0c-1.408 0-2.8-0.080-4.192-0.208-0.64-0.064-1.264-0.176-1.888-0.272-0.752-0.112-1.52-0.192-2.256-0.352-0.72-0.144-1.424-0.336-2.128-0.528-0.656-0.16-1.312-0.304-1.952-0.496-0.688-0.208-1.36-0.464-2.048-0.72-0.64-0.224-1.296-0.448-1.92-0.704-0.64-0.256-1.248-0.576-1.856-0.864-0.656-0.304-1.312-0.592-1.952-0.944-0.592-0.32-1.152-0.672-1.728-1.024-0.624-0.368-1.264-0.736-1.872-1.136-0.64-0.432-1.232-0.896-1.856-1.36-0.512-0.384-1.024-0.736-1.52-1.136-1.104-0.896-2.16-1.856-3.152-2.848l-128-128c-16.8-16.8-16.8-44.016 0-60.816 16.784-16.8 44.016-16.8 60.816 0z" /> -<glyph unicode="" glyph-name="square-arrow-up-left" d="M468.576 536.672h103.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-181.008c-2.096 0-4.192-0.224-6.272-0.624-0.96-0.192-1.84-0.544-2.768-0.816-1.072-0.32-2.16-0.56-3.2-0.992-1.104-0.448-2.096-1.072-3.136-1.648-0.784-0.432-1.616-0.784-2.368-1.296-3.504-2.352-6.528-5.36-8.88-8.864-0.528-0.784-0.88-1.632-1.328-2.448-0.56-1.008-1.168-1.984-1.616-3.072-0.432-1.056-0.688-2.144-1.008-3.232-0.272-0.912-0.624-1.792-0.816-2.736-0.416-2.064-0.624-4.16-0.624-6.272v-181.008c0-17.664 14.336-32 32-32s32 14.336 32 32v103.76l186.72-186.736c6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-186.72 186.736zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-up-left-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM391.328 336.656c23.744 0 43.008 19.248 43.008 43.008v77.216l167.952-167.952c8.4-8.4 19.408-12.592 30.4-12.592s22.016 4.192 30.4 12.592c16.784 16.8 16.784 44.016 0 60.816l-167.952 167.952h77.216c23.744 0 43.008 19.248 43.008 43.008s-19.248 43.008-43.008 43.008h-181.008c-1.424 0-2.832-0.080-4.256-0.208-0.624-0.064-1.232-0.176-1.84-0.272-0.768-0.112-1.552-0.208-2.32-0.352-0.704-0.144-1.408-0.336-2.096-0.512-0.656-0.16-1.328-0.304-1.984-0.512-0.688-0.208-1.344-0.464-2.016-0.704-0.656-0.24-1.312-0.448-1.952-0.72-0.624-0.256-1.232-0.56-1.84-0.848-0.656-0.304-1.328-0.608-1.968-0.944-0.592-0.32-1.152-0.672-1.712-1.008-0.64-0.384-1.28-0.736-1.888-1.152-0.624-0.416-1.232-0.896-1.84-1.344-0.512-0.384-1.040-0.736-1.536-1.152-2.192-1.792-4.208-3.808-6-6-0.4-0.496-0.752-1.008-1.136-1.504-0.464-0.624-0.944-1.232-1.376-1.872-0.4-0.608-0.752-1.232-1.136-1.856-0.352-0.576-0.704-1.152-1.024-1.744-0.336-0.64-0.624-1.296-0.944-1.952-0.288-0.624-0.608-1.232-0.864-1.872s-0.48-1.28-0.704-1.92c-0.24-0.688-0.512-1.36-0.72-2.048-0.192-0.64-0.336-1.296-0.496-1.952-0.176-0.704-0.384-1.408-0.528-2.128-0.144-0.752-0.24-1.504-0.352-2.272-0.096-0.624-0.208-1.248-0.272-1.888-0.144-1.408-0.208-2.832-0.208-4.24v-181.024c0-23.744 19.248-43.008 43.008-43.008z" /> -<glyph unicode="" glyph-name="square-arrow-up-right" d="M663.232 577.68c-0.32 1.088-0.576 2.176-1.008 3.232-0.448 1.072-1.056 2.048-1.616 3.072-0.448 0.816-0.8 1.664-1.328 2.448-2.352 3.504-5.36 6.528-8.88 8.864-0.752 0.512-1.584 0.848-2.368 1.296-1.040 0.576-2.032 1.2-3.136 1.648-1.040 0.432-2.128 0.672-3.2 0.992-0.928 0.272-1.808 0.624-2.768 0.816-2.064 0.416-4.16 0.624-6.272 0.624h-181.008c-17.664 0-32-14.336-32-32s14.336-32 32-32h103.776l-186.72-186.736c-12.496-12.496-12.496-32.752 0-45.248 6.256-6.256 14.432-9.376 22.624-9.376s16.368 3.12 22.624 9.376l186.72 186.736v-103.76c0-17.664 14.336-32 32-32s32 14.336 32 32v181.008c0 2.096-0.224 4.192-0.624 6.272-0.192 0.944-0.544 1.824-0.816 2.736zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.248 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-arrow-up-right-2" d="M810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0zM391.328 276.32c11.008 0 22.016 4.192 30.4 12.592l167.952 167.952v-77.2c0-23.744 19.248-43.008 43.008-43.008s43.008 19.248 43.008 43.008v181.024s0 0.112 0 0.176c0 1.36-0.080 2.704-0.208 4.064-0.064 0.656-0.192 1.296-0.288 1.952-0.112 0.736-0.192 1.488-0.336 2.208-0.144 0.736-0.352 1.44-0.528 2.16-0.16 0.64-0.304 1.296-0.496 1.92-0.208 0.704-0.48 1.376-0.72 2.064-0.224 0.64-0.432 1.28-0.704 1.904-0.272 0.64-0.576 1.248-0.864 1.872-0.304 0.656-0.592 1.312-0.944 1.952-0.32 0.592-0.672 1.152-1.024 1.728-0.368 0.624-0.736 1.264-1.136 1.888-0.416 0.624-0.896 1.216-1.344 1.824-0.384 0.512-0.752 1.056-1.168 1.552-0.864 1.056-1.776 2.064-2.736 3.024-0.048 0.032-0.080 0.080-0.112 0.128-0.032 0.032-0.080 0.064-0.112 0.096-0.976 0.96-1.984 1.872-3.040 2.752-0.512 0.416-1.056 0.784-1.568 1.184-0.592 0.448-1.184 0.912-1.808 1.328s-1.264 0.784-1.904 1.152c-0.56 0.336-1.12 0.688-1.696 1.008-0.656 0.352-1.312 0.64-1.968 0.944-0.608 0.288-1.216 0.592-1.84 0.848-0.64 0.272-1.296 0.48-1.952 0.72-0.672 0.24-1.328 0.496-2.016 0.704-0.656 0.192-1.312 0.336-1.984 0.512-0.704 0.176-1.392 0.368-2.096 0.512-0.768 0.16-1.536 0.24-2.32 0.352-0.624 0.080-1.216 0.208-1.84 0.272-1.408 0.144-2.832 0.208-4.256 0.208h-181.008c-23.744 0-43.008-19.248-43.008-43.008s19.248-43.008 43.008-43.008h77.216l-167.952-167.952c-16.784-16.8-16.784-44.016 0-60.816 8.4-8.4 19.408-12.592 30.4-12.592z" /> -<glyph unicode="" glyph-name="square-caret-down" d="M654 573.744l-283.92 0.432c-48.272 0-72.688-58.208-38.8-92.64l141.168-143.472c10.672-10.832 24.736-16.256 38.816-16.256 13.952 0 27.904 5.328 38.544 16l142.656 143.040c34.192 34.288 9.968 92.832-38.464 92.896zM511.312 389.84l-118.384 120.304 238-0.368-119.632-119.952zM992 813.552c0 63.2-51.232 114.448-114.448 114.448h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104zM877.552 32h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104c0-27.808-22.624-50.448-50.448-50.448z" /> -<glyph unicode="" glyph-name="square-caret-down-2" d="M590.608 460.672l-78.608-85.552-78.608 85.552h157.216zM690.784 546.672h-357.568c-36.56 0-55.664-43.488-30.928-70.416l178.768-194.592c8.32-9.056 19.632-13.584 30.928-13.584s22.608 4.528 30.928 13.584l178.8 194.592c24.736 26.928 5.648 70.416-30.928 70.416v0zM810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> -<glyph unicode="" glyph-name="square-caret-left" d="M583.344 644.464c-13.248 0-26.752-4.864-37.808-15.744l-143.472-141.168c-21.584-21.232-21.696-55.984-0.256-77.36l143.040-142.656c11.088-11.056 24.704-16 38.064-16 27.968 0 54.784 21.696 54.832 54.48l0.432 283.824c0.048 32.832-26.8 54.64-54.832 54.64zM573.792 329.072l-119.952 119.632 120.304 118.384-0.368-238zM877.552 928h-731.104c-63.2 0-114.448-51.248-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.248 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-caret-left-2" d="M532.4 518.88v-157.216l-85.552 78.608 85.552 78.608zM576.144 661.136c-9.776 0-19.76-3.456-28.144-11.152l-194.592-178.768c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.8c8.384-7.696 18.368-11.152 28.16-11.152 21.632 0 42.256 16.896 42.256 42.080v357.568c0 25.184-20.624 42.080-42.256 42.080v0zM810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> -<glyph unicode="" glyph-name="square-caret-right" d="M479.152 628.464c-11.088 11.056-24.704 16-38.064 16-27.968 0-54.784-21.696-54.832-54.48l-0.432-283.824c-0.048-32.832 26.8-54.64 54.832-54.64 13.248 0 26.752 4.864 37.808 15.744l143.472 141.168c21.584 21.232 21.696 55.984 0.256 77.36l-143.040 142.656zM449.856 328.928l0.368 238.016 119.952-119.632-120.304-118.384zM877.552 928h-731.104c-63.2 0-114.448-51.248-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-caret-right-2" d="M491.6 518.864l85.552-78.608-85.552-78.608v157.216zM447.856 661.136c-21.632 0-42.256-16.896-42.256-42.080v-357.568c0-25.184 20.624-42.080 42.256-42.080 9.776 0 19.76 3.456 28.144 11.152l194.592 178.768c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.8c-8.384 7.696-18.368 11.152-28.16 11.152v0zM810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> -<glyph unicode="" glyph-name="square-caret-up" d="M551.552 557.92c-10.656 10.832-24.736 16.256-38.816 16.256-13.952 0-27.904-5.328-38.544-16l-142.656-143.040c-34.208-34.288-9.968-92.832 38.464-92.896l283.92-0.432c48.272 0 72.688 58.208 38.8 92.64l-141.168 143.472zM393.072 386.208l119.632 119.952 118.384-120.304-238 0.368zM877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-caret-up-2" d="M512.016 505.408l78.608-85.552h-157.216l78.608 85.552zM512.016 612.448c-11.296 0-22.608-4.528-30.928-13.584l-178.8-194.592c-24.736-26.928-5.648-70.416 30.928-70.416h357.568c36.576 0 55.664 43.488 30.928 70.416l-178.768 194.592c-8.32 9.056-19.632 13.584-30.928 13.584v0zM810 824h-596c-47.504 0-86-38.496-86-86v-596c0-47.504 38.496-86 86-86h596c47.504 0 86 38.496 86 86v596c0 47.504-38.496 86-86 86zM810 738v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> -<glyph unicode="" glyph-name="square-check" d="M693.328 599.104l-245.552-235.264-117.648 107.712c-13.024 11.936-33.28 11.024-45.216-2s-11.040-33.28 2-45.216l139.744-127.968c6.112-5.6 13.872-8.4 21.616-8.4 7.984 0 15.952 2.976 22.144 8.896l267.2 256c12.752 12.224 13.2 32.48 0.976 45.248-12.24 12.736-32.48 13.2-45.248 0.976zM877.552 928h-731.104c-63.2 0-114.448-51.248-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-minus" d="M877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104zM720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="square-plus" d="M877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.248 114.448-114.448 114.448zM928 82.448c0-27.824-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.824 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104zM712 480h-168v168c0 17.664-14.336 32-32 32s-32-14.336-32-32v-168h-168c-17.664 0-32-14.336-32-32s14.336-32 32-32h168v-168c0-17.664 14.336-32 32-32s32 14.336 32 32v168h168c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="square-user" d="M505.536 691.040c-90.736 0-164.272-73.552-164.272-164.272s73.552-164.272 164.272-164.272 164.272 73.552 164.272 164.272-73.552 164.272-164.272 164.272zM505.536 426.48c-55.296 0-100.272 44.992-100.272 100.272s44.992 100.272 100.272 100.272 100.272-44.992 100.272-100.272-44.992-100.272-100.272-100.272zM877.552 928h-731.104c-63.2 0-114.448-51.248-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM256.048 32c35.136 142.784 186.544 176.288 249.488 176.288 72.080 0 211.056-44.624 245.552-176.288h-495.040zM928 82.448c0-27.808-22.624-50.448-50.448-50.448h-60.864c-34.48 171.168-205.056 240.288-311.152 240.288-108.576 0-280.928-64.32-314.848-240.288h-44.224c-27.808 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.808 0 50.448-22.624 50.448-50.448v-731.104z" /> -<glyph unicode="" glyph-name="square-xmark" d="M877.552 928h-731.104c-63.2 0-114.448-51.232-114.448-114.448v-731.104c0-63.2 51.248-114.448 114.448-114.448h731.104c63.2 0 114.448 51.248 114.448 114.448v731.104c0 63.2-51.232 114.448-114.448 114.448zM928 82.448c0-27.824-22.624-50.448-50.448-50.448h-731.104c-27.824 0-50.448 22.624-50.448 50.448v731.104c0 27.808 22.624 50.448 50.448 50.448h731.104c27.824 0 50.448-22.624 50.448-50.448v-731.104zM676.048 612.048c-12.48 12.496-32.768 12.496-45.248 0l-118.8-118.8-118.8 118.8c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l118.8-118.8-118.8-118.8c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l118.8 118.8 118.8-118.8c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-118.8 118.8 118.8 118.8c12.496 12.496 12.496 32.752 0 45.248z" /> -<glyph unicode="" glyph-name="stacked-cards-scroll" d="M841.81 344.57l-36.012 22.692c-10.026 6.316-23.277 3.312-29.594-6.715-6.32-10.024-3.312-23.277 6.715-29.594l33.926-21.376-294.391-172.307c-6.687-3.91-14.991-3.912-21.678 0l-293.561 171.806 33.211 19.809c10.178 6.070 13.508 19.242 7.437 29.421-6.070 10.18-19.24 13.51-29.421 7.437l-35.389-21.107c-12.711-7.583-20.262-20.945-20.201-35.744s7.725-28.099 20.498-35.575l295.748-173.086c10.028-5.869 21.272-8.805 32.516-8.805s22.49 2.936 32.518 8.805l296.517 173.553c12.593 7.37 20.252 20.48 20.492 35.068s-6.988 27.941-19.332 35.72zM183.352 426.64l295.748-173.086c10.028-5.869 21.272-8.805 32.516-8.805s22.49 2.936 32.518 8.805l296.517 173.553c12.593 7.37 20.252 20.48 20.492 35.068s-6.988 27.941-19.332 35.72l-36.012 22.692c-10.026 6.316-23.277 3.312-29.594-6.715-6.32-10.024-3.312-23.277 6.715-29.594l33.926-21.376-294.391-172.309c-6.687-3.91-14.991-3.912-21.678 0l-293.561 171.806 33.211 19.807c10.178 6.072 13.508 19.244 7.437 29.421-6.070 10.178-19.24 13.51-29.421 7.437l-35.387-21.105c-12.711-7.583-20.262-20.945-20.203-35.744 0.062-14.801 7.725-28.099 20.498-35.575zM187.64 577.453l291.461-170.577c10.028-5.869 21.272-8.805 32.516-8.805s22.49 2.936 32.518 8.805l291.433 170.577c13.458 7.877 21.492 22.452 20.965 38.038-0.525 15.586-9.523 29.586-23.482 36.537l-292.75 145.807c-17.971 8.949-39.429 8.949-57.398 0l-292.75-145.805c-13.959-6.952-22.955-20.955-23.482-36.541s7.509-30.161 20.969-38.038z" /> -<glyph unicode="" glyph-name="stamp" d="M640.032 736.288c0 17.664-14.336 32-32 32h-192.080c-17.664 0-32-14.336-32-32s14.336-32 32-32h192.080c17.664 0 32 14.336 32 32zM928.16 32v0 32.032c0 52.944-43.072 96.016-96.016 96.016h-31.68l-0.336 32.368c-0.192 17.536-14.464 31.664-32 31.664h-64.032v64.032c0 35.296-28.72 64.016-64.016 64.016v0 128.064c0 18.608 15.68 49.536 36.56 72 38.352 41.584 59.472 95.6 59.472 152.080 0 64.528-22.224 122.24-62.576 162.48-40.192 40.080-96.384 61.248-162.416 61.248h-1.616c-63.824 0-118.528-20.928-158.24-60.528-40.816-40.704-63.28-98.656-63.28-163.2 0-56.48 21.12-110.496 59.568-152.176 20.784-22.384 36.464-53.296 36.464-71.904v-128.064c-35.296 0-64.016-28.72-64.016-64.016v-64.032h-64.032c-17.536 0-31.808-14.128-32-31.664l-0.336-32.368h-31.68c-52.96 0-96.032-43.072-96.032-96.016v-32.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h832.32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM394.464 595.584c-27.424 29.712-42.528 68.336-42.528 108.688 0 47.424 15.792 89.28 44.464 117.888 27.856 27.76 65.872 41.84 113.2 41.84 0.416 0 0.88 0 1.328 0 49.568 0 89.040-14.32 117.36-42.56 28.224-28.16 43.776-69.76 43.776-117.168 0-40.352-15.104-78.96-42.448-108.608-24.72-26.608-53.584-72.816-53.584-115.472v-128.064h-128.080v128.064c0 42.64-28.864 88.864-53.504 115.392zM864.128 32h-704.272v32.032c0 17.664 14.368 32.016 32.032 32.016h63.328c17.536 0 31.808 14.128 32 31.664l0.336 32.368h128.4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.016v64.048s256.128 0 256.128 0v-64.032h-32.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h128.4l0.336-32.368c0.192-17.536 14.464-31.664 32-31.664h63.344c17.664 0 32.016-14.352 32.016-32.016v-32.032z" /> -<glyph unicode="" glyph-name="star" d="M988.544 567.2c-8.288 25.488-29.904 43.712-56.416 47.568l-246.992 35.904-110.48 223.856c-2.432 4.896-5.376 9.472-8.752 13.6-13.84 16.864-34.576 26.272-56.448 25.264-19.296-0.688-37.552-9.36-50.112-23.808-3.92-4.512-7.296-9.6-10.016-15.104l-110.448-223.808-246.992-35.904c-26.528-3.856-48.144-22.080-56.416-47.568-8.288-25.488-1.504-52.944 17.68-71.648l178.72-174.208-42.192-245.984c-4.528-26.416 6.112-52.608 27.792-68.352 12.256-8.912 26.608-13.424 41.024-13.424 11.104 0 22.256 2.672 32.56 8.080l220.944 115.824 220.912-115.808c23.712-12.464 51.936-10.432 73.616 5.328 21.68 15.744 32.336 41.952 27.792 68.352l-42.192 246 178.72 174.208c19.184 18.704 25.968 46.16 17.68 71.648zM926.176 541.392l-190.768-185.952c-7.536-7.344-10.992-17.952-9.2-28.32l45.024-262.576c0.16-0.896 0.624-3.616-2.336-5.76-2.976-2.16-5.424-0.896-6.24-0.432l-235.792 123.616c-9.312 4.88-20.4 4.88-29.712 0l-235.824-123.632c-0.8-0.416-3.264-1.712-6.208 0.448-2.96 2.144-2.496 4.864-2.336 5.76l45.024 262.576c1.776 10.368-1.664 20.976-9.2 28.32l-190.768 185.952c-0.656 0.64-2.624 2.56-1.488 6.032s3.856 3.888 4.752 4.016l263.632 38.32c10.416 1.504 19.424 8.048 24.096 17.504l117.888 238.864c0.304 0.608 0.624 1.104 0.976 1.504 1.296 1.488 3.104 1.776 4.096 1.808h0.256c1.168 0 3.072-0.288 4.416-1.92 0.32-0.368 0.608-0.848 0.864-1.36l117.904-238.896c4.672-9.44 13.664-16 24.096-17.504l263.632-38.32c0.896-0.128 3.632-0.528 4.752-4.016s-0.848-5.408-1.488-6.032z" /> -<glyph unicode="" glyph-name="store" d="M991.936 675.216c-0.016 1.088-0.192 2.176-0.336 3.264-0.128 1.104-0.24 2.192-0.48 3.264-0.048 0.208-0.032 0.416-0.096 0.624l-16.448 65.584c-5.888 24.352-20.16 46.528-40.608 62.72-20.112 15.424-44.976 23.92-69.984 23.92h-703.984c-25.008 0-49.872-8.496-70.384-24.24-20.032-15.872-34.32-38.048-40.128-62.144l-16.512-65.84c-0.048-0.208-0.048-0.416-0.096-0.624-0.24-1.056-0.336-2.16-0.48-3.264-0.128-1.088-0.304-2.176-0.336-3.264 0-0.224-0.064-0.416-0.064-0.64v-581.152c0-17.664 14.336-32 32-32s32 14.336 32 32v32h96v-32c0-17.664 14.336-32 32-32h672c52.944 0 96 43.056 96 96v517.152c0 0.224-0.064 0.416-0.064 0.64zM768 546.576c0-4.144-0.864-8.464-2.288-12-1.728-4.096-4.224-7.84-6.592-10.336-3.264-3.152-7.008-5.648-10.608-7.168-4.048-1.648-8.368-2.496-12.512-2.496h-32c-4.128 0-8.464 0.864-12 2.304-4.096 1.728-7.808 4.192-10.352 6.656-3.152 3.248-5.632 6.96-7.152 10.544-1.632 4.032-2.496 8.352-2.496 12.496v96h96v-96zM608.016 546.128s-0.016-0.144-0.016-0.224v-127.328h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-229.152h-192v420.48c0 0.112-0.032 0.224-0.032 0.336s0.032 0.224 0.032 0.336v96h192v-96c0-0.144 0.016-0.304 0.016-0.448zM256 157.424v160c0 35.296-28.704 64-64 64h-96v74.752c10.032-3.568 20.768-5.6 32-5.6h32c24.64 0 47.072 9.408 64.080 24.72 8.080-7.136 17.040-13.168 27.44-17.568 11.76-4.752 24.032-7.152 36.48-7.152h32c10.752 0 21.392 1.92 32 5.6v-330.768h-96v32zM352 642.576v-96c0-4.144-0.864-8.464-2.288-12-1.728-4.096-4.224-7.84-6.592-10.336-3.264-3.152-7.008-5.648-10.608-7.168-4.048-1.648-8.368-2.496-12.512-2.496h-32c-4.128 0-8.464 0.864-12 2.304-4.096 1.728-7.808 4.192-10.352 6.656-3.152 3.248-5.632 6.96-7.152 10.544-1.632 4.032-2.496 8.352-2.496 12.496v96h96zM192 546.576c0-17.648-14.352-32-32-32h-32c-17.648 0-32 14.352-32 32v96h96v-96zM832 642.576h96v-96c0-17.648-14.352-32-32-32h-32c-17.648 0-32 14.352-32 32v96zM128.96 759.872c9.136 7.008 19.872 10.704 31.040 10.704h704c11.168 0 21.904-3.696 30.64-10.384 8.896-7.040 15.2-16.736 17.808-27.552l6.544-26.064h-813.968l6.608 26.336c2.544 10.544 8.848 20.24 17.328 26.976zM96 189.424s0 0.048 0 0.080v63.728s0 0.128 0 0.192v64h96v-128h-96zM896 125.424h-224v330.976c10.4-3.648 21.104-5.824 32-5.824h32c12.448 0 24.72 2.4 36.992 7.36 9.712 4.128 18.608 9.824 27.072 17.232 16.992-15.232 39.376-24.592 63.936-24.592h32c11.232 0 21.968 2.048 32 5.6v-298.752c0-17.648-14.352-32-32-32z" /> -<glyph unicode="" glyph-name="submit-button" d="M932.386 342.142l-85.52 32.16c4.78 9.020 7.48 19.32 7.48 30.22v88.96c0 35.84-29.16 65-65 65h-554.662c-35.84 0-65-29.16-65-65v-88.96c0-35.84 29.16-65 65-65h468.2l65.26-155.26c4.88-11.6 15.9-18.72 28.28-18.72 1.5 0 3.040 0.1 4.6 0.32 14.040 1.98 24.58 12.64 26.2 26.52l9.64 82.1 87.78 9.22c14.28 1.5 25.5 12.32 27.3 26.34 1.78 13.9-6.26 27.1-19.56 32.1zM789.926 243.422l-53.1 126.32 129.98-48.88-45.080-4.74c-13.86-1.46-24.66-12-26.26-25.66l-5.54-47.040zM768.006 427.502h-512c-11.86 0-21.5 9.62-21.5 21.5s9.64 21.5 21.5 21.5h512c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5z" /> -<glyph unicode="" glyph-name="table-comparison" d="M768.032 333.484h169.9v-57.2h-169.9v57.2zM768.032 426.504h169.9v-50.020h-169.9v50.020zM768.032 519.504h169.9v-50h-169.9v50zM768.032 619.704h169.9v-57.2h-169.9v57.2zM555.112 641.204v104.296h31.116c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-52.53c-0.030 0-0.058 0.004-0.086 0.004s-0.058-0.004-0.086-0.004h-52.524c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h31.11v-82.796h-401.44c-14.060 0-25.5-11.44-25.5-25.5v-378.42c0-14.060 11.44-25.5 25.5-25.5h401.44v-84.784h-31.11c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h105.228c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-31.116v127.784h169.92v57.2h-169.92v43h169.92v50.020h-169.92v43h169.92v50h-169.92v43h169.92v57.2h-169.92v21.5zM510.992 469.504h-169.36v50h169.36v-50zM298.632 469.504h-170.46v50h170.46v-50zM298.632 426.504v-50.020h-170.46v50.020h170.46zM341.632 426.504h169.36v-50.020h-169.36v50.020zM510.992 619.704v-57.2h-169.36v57.2h169.36zM298.632 619.704v-57.2h-170.46v57.2h170.46zM128.172 333.484h170.46v-57.2h-170.46v57.2zM510.992 276.284h-169.36v57.2h169.36v-57.2z" /> -<glyph unicode="" glyph-name="table-data" d="M928 832h-832c-35.296 0-64-28.704-64-64v-640c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v640c0 35.296-28.704 64-64 64zM192 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-96v640h96v-128zM928 128h-672v640h672v-640zM320 672h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 288c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-64h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-64h-96zM672 480h128v-64h-128v64zM672 352h128v-64h-128v64zM480 480h128v-64h-128v64zM480 352h128v-64h-128v64zM859.984 672h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32zM763.984 672h4.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4.016c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> -<glyph unicode="" glyph-name="tablet" d="M777.152 928h-536.544c-55.248 0-100.208-44.96-100.208-100.208v-759.6c0-55.248 44.96-100.208 100.208-100.208h536.544c55.248 0 100.208 44.96 100.208 100.208v759.6c0 55.248-44.96 100.208-100.208 100.208zM813.36 68.208c0-19.968-16.24-36.208-36.208-36.208h-536.544c-19.968 0-36.208 16.24-36.208 36.208v759.584c0 19.968 16.24 36.208 36.208 36.208h170.24c3.952-13.2 16.048-22.88 30.512-22.88h135.024c14.48 0 26.576 9.68 30.512 22.88h170.224c19.968 0 36.208-16.24 36.208-36.208v-759.6zM516.192 115.488h-14.592c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.592c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> -<glyph unicode="" glyph-name="tag" d="M920.144 582.64l-278.704 278.704c-12.288 12.288-32.208 12.288-44.512 0-12.288-12.288-12.288-32.224 0-44.512l278.704-278.688c71.248-71.264 71.248-187.232 0-258.48l-211.312-211.312c-12.288-12.288-12.288-32.224 0-44.512 6.144-6.144 14.208-9.216 22.256-9.216s16.112 3.072 22.256 9.216l211.312 211.312c95.808 95.808 95.808 251.696 0 347.504zM868.352 482.336l-368.64 368.624c-19.824 19.824-47.504 31.28-75.296 30.4l-285.312-5.104c-56.192-1.008-100.992-45.808-101.984-101.984l-5.104-285.296c-0.496-28.016 10.576-55.472 30.4-75.312l368.64-368.624c19.616-19.616 45.696-30.416 73.44-30.416s53.824 10.8 73.44 30.416l290.432 290.416c40.48 40.496 40.48 106.384 0 146.88zM823.84 379.968l-290.416-290.416c-15.456-15.456-42.384-15.456-57.856 0l-368.64 368.608c-7.808 7.808-12.176 18.64-11.968 29.68l5.104 285.312c0.384 22.128 18.032 39.76 40.176 40.16l286 5.104c10.784 0 21.312-4.336 28.96-11.984l368.64-368.624c15.936-15.952 15.936-41.904 0-57.856zM336.224 725.184c-40.816 40.8-107.232 40.816-148.016 0-19.76-19.776-30.656-46.048-30.656-74.016s10.88-54.24 30.656-74.016c20.416-20.4 47.2-30.592 74-30.592s53.6 10.192 74.016 30.592c19.776 19.76 30.656 46.048 30.656 74.016s-10.88 54.24-30.656 74.016v0zM291.712 621.664c-16.24-16.256-42.72-16.288-59.008 0-7.888 7.888-12.224 18.352-12.224 29.504s4.336 21.616 12.224 29.504c8.128 8.128 18.816 12.192 29.504 12.192s21.36-4.064 29.488-12.192v0c7.888-7.888 12.224-18.352 12.224-29.504s-4.336-21.616-12.224-29.488z" /> -<glyph unicode="" glyph-name="taxes" d="M383.344 461.072h-87.424c-13.248 0-24-10.752-24-24s10.752-24 24-24h87.424c13.248 0 24 10.752 24 24s-10.752 24-24 24zM515.552 142.896c0-13.248 10.752-24 24-24h87.424c13.248 0 24 10.752 24 24s-10.752 24-24 24h-87.424c-13.248 0-24-10.752-24-24zM193.040 520.608h190.304c13.248 0 24 10.752 24 24s-10.752 24-24 24h-190.304c-13.248 0-24-10.752-24-24s10.752-24 24-24zM604.4 759.664c0 13.248-10.752 24-24 24h-134.864c-13.248 0-24-10.752-24-24s10.752-24 24-24h134.864c13.248 0 24 10.752 24 24zM242.224 316.56c0-21.34-17.3-38.64-38.64-38.64s-38.64 17.3-38.64 38.64c0 21.34 17.3 38.64 38.64 38.64s38.64-17.3 38.64-38.64zM408.624 150.16c0-21.34-17.3-38.64-38.64-38.64s-38.64 17.3-38.64 38.64c0 21.34 17.3 38.64 38.64 38.64s38.64-17.3 38.64-38.64zM386.96 333.536c-9.376 9.376-24.56 9.376-33.936 0l-166.384-166.4c-9.376-9.376-9.376-24.56 0-33.936 4.688-4.688 10.832-7.024 16.976-7.024s12.288 2.336 16.976 7.024l166.384 166.4c9.376 9.376 9.376 24.56 0 33.936zM766.32 672.768v177.296c0 38.56-31.376 69.936-69.936 69.936h-382.48c-0.608 0-1.168-0.144-1.776-0.176-6.576 0.272-13.136-2.032-17.984-6.864l-236.112-236.096c-4.832-4.832-7.136-11.392-6.864-17.984-0.032-0.592-0.176-1.168-0.176-1.76v-611.168c0-38.56 31.36-69.936 69.92-69.936h575.456c38.56 0 69.936 31.376 69.936 69.936v155.44c116.448 15.408 206.688 115.104 206.688 235.696s-90.24 220.288-206.688 235.696zM287.104 838.064v-146.624c0-4.16-3.392-7.552-7.552-7.552h-146.624l154.176 154.176zM718.32 45.936c0-12.096-9.84-21.936-21.936-21.936h-575.456c-12.096 0-21.92 9.84-21.92 21.936v589.952h180.56c30.624 0 55.552 24.928 55.552 55.552v180.56h361.264c12.096 0 21.936-9.84 21.936-21.936v-175.824c-123.424-8.624-221.296-111.552-221.296-237.152s97.872-228.528 221.296-237.152v-153.984zM735.008 247.072c-104.768 0-189.984 85.232-189.984 190s85.216 190 189.984 190 190-85.232 190-190-85.232-190-190-190zM748.896 460.944c-21.696 10.416-26.384 14.32-26.384 21.84 0 2.544 0 8.496 9.184 12.272 10.512 4.272 23.104 1.872 27.872-2.976 9.296-9.456 24.512-9.568 33.936-0.256 9.44 9.296 9.568 24.48 0.256 33.936-8 8.144-18.736 13.696-30.448 16.752v12.288c0 13.248-10.752 24-24 24s-24-10.752-24-24v-14.752c-0.592-0.224-1.216-0.352-1.808-0.592-24.4-10-38.992-31.184-38.992-56.672 0-39.344 32.256-54.864 53.616-65.104 23.024-11.072 29.264-15.664 29.264-26.848 0-6.592-10.784-13.92-18.080-13.92-12.192 0-29.728 8.448-33.68 11.936-9.312 9.312-24.416 9.408-33.824 0.128-9.44-9.296-9.568-24.496-0.256-33.936 8.4-8.528 25.712-17.632 43.76-22.512v-13.168c0-13.248 10.752-24 24-24s24 10.752 24 24v14.336c22.752 8.976 42.080 29.968 42.080 57.136 0 42.96-33.984 59.296-56.48 70.112z" /> -<glyph unicode="" glyph-name="team" d="M934.274 512.934c-0.062 0.244-0.144 0.478-0.214 0.718-0.122 0.416-0.244 0.83-0.388 1.232-0.102 0.286-0.222 0.562-0.334 0.84-0.14 0.342-0.28 0.686-0.438 1.018-0.136 0.292-0.286 0.576-0.436 0.858-0.16 0.304-0.324 0.608-0.498 0.902-0.166 0.284-0.34 0.562-0.52 0.836-0.184 0.282-0.374 0.556-0.57 0.828-0.192 0.264-0.386 0.526-0.588 0.782-0.212 0.266-0.432 0.524-0.656 0.778-0.208 0.238-0.416 0.476-0.634 0.706-0.246 0.258-0.504 0.502-0.764 0.748-0.216 0.206-0.428 0.414-0.652 0.61-0.294 0.256-0.604 0.496-0.912 0.738-0.208 0.162-0.408 0.334-0.622 0.488-0.416 0.302-0.85 0.58-1.288 0.85-0.122 0.076-0.236 0.162-0.358 0.234-0.556 0.33-1.128 0.63-1.712 0.91-0.25 0.118-0.508 0.216-0.762 0.326-0.35 0.15-0.696 0.304-1.056 0.436-0.304 0.112-0.616 0.204-0.926 0.302-0.318 0.1-0.634 0.206-0.958 0.292-0.34 0.090-0.684 0.164-1.030 0.236-0.304 0.066-0.608 0.13-0.918 0.184-0.36 0.060-0.722 0.106-1.086 0.148-0.308 0.036-0.618 0.070-0.93 0.092-0.36 0.026-0.718 0.042-1.082 0.048-0.164 0.004-0.326 0.022-0.492 0.022h-594.352c-11.874 0-21.5-9.624-21.5-21.5v-378.29c-17.926 12.124-35.002 25.886-51.020 41.168-1.33 1.328-2.658 2.63-3.978 3.926-2.51 2.46-4.88 4.786-7.062 7.104-0.060 0.064-0.122 0.126-0.182 0.19-6.164 6.39-12.192 13.086-17.876 19.856-12.726 15.252-24.184 31.408-34.322 48.288h77.638c11.874 0 21.5 9.624 21.5 21.5v236.256c0 11.876-9.626 21.5-21.5 21.5h-96.438c-11.876 0-21.5-9.624-21.5-21.5v-164.744c-9.662 33.954-14.694 69.284-14.694 104.986 0 102.058 39.54 198.138 111.334 270.54 41.064 41.412 89.972 72.324 143.4 91.39-18.588-25.788-29.584-57.394-29.584-91.54 0-86.534 70.4-156.932 156.932-156.932s156.932 70.398 156.932 156.932-70.4 156.932-156.932 156.932c-2.868 0-5.712-0.088-8.542-0.242-110.82-2.754-214.55-47.416-292.738-126.264-79.834-80.508-123.802-187.34-123.802-300.816 0-99.846 35.266-197.096 99.34-273.884 6.332-7.542 12.998-14.95 19.818-22.022 2.74-2.904 5.5-5.612 8.17-8.23 1.28-1.254 2.568-2.516 3.856-3.804 0.118-0.118 0.236-0.232 0.356-0.348 28.042-26.788 59.054-49.44 92.168-67.328 62.166-33.614 132.542-51.378 203.518-51.378 4.34 0 8.678 0.066 13.012 0.2 60.692 1.854 120.576 16.646 174.624 43.124 3.866 1.894 7.704 3.846 11.508 5.86 0.010 0.004 0.018 0.012 0.028 0.018 24.39 12.816 47.314 27.882 68.018 44.688 8.868 7.096 18.088 15.192 28.274 24.83 11.346 10.856 22.182 22.436 32.202 34.41 64.054 76.46 99.332 173.722 99.332 273.868 0 22.042-1.536 42.666-4.694 63.052-0.108 0.694-0.252 1.376-0.424 2.044zM185.86 486.096h53.438v-193.256h-53.438v193.256zM624.18 718.228c0-62.822-51.11-113.932-113.932-113.932s-113.932 51.11-113.932 113.932c0 60.608 47.574 110.296 107.336 113.726 1.704 0.040 3.406 0.094 5.112 0.112h3.626c0.174 0 0.344 0.022 0.518 0.026 61.592-1.424 111.27-51.934 111.27-113.864zM500.81 64.022c-1.282 0.040-2.562 0.116-3.842 0.168-2.574 0.104-5.148 0.206-7.718 0.362-1.528 0.092-3.054 0.222-4.58 0.334-2.322 0.168-4.642 0.332-6.958 0.542-1.622 0.148-3.238 0.328-4.856 0.496-2.216 0.228-4.432 0.458-6.644 0.724-1.666 0.202-3.33 0.432-4.994 0.654-2.154 0.29-4.308 0.584-6.458 0.908-1.69 0.254-3.376 0.534-5.062 0.812-2.118 0.348-4.234 0.708-6.344 1.090-1.694 0.308-3.382 0.634-5.072 0.964-2.096 0.412-4.19 0.834-6.278 1.28-1.684 0.358-3.366 0.728-5.044 1.11-2.086 0.474-4.168 0.966-6.248 1.474-1.664 0.408-3.326 0.818-4.984 1.248-2.086 0.54-4.166 1.104-6.242 1.678-1.632 0.452-3.264 0.902-4.89 1.374-2.104 0.612-4.198 1.254-6.29 1.9-1.58 0.488-3.162 0.97-4.736 1.478-2.142 0.692-4.274 1.422-6.402 2.152-1.506 0.516-3.018 1.020-4.518 1.554-2.232 0.796-4.45 1.634-6.666 2.472-1.376 0.52-2.76 1.020-4.13 1.556-2.47 0.964-4.918 1.98-7.368 2.996-1.1 0.458-2.21 0.89-3.308 1.356-6.95 2.96-13.812 6.132-20.578 9.502v309.074l72.822 72.822h266.566v-383.848c-2.298-1.118-4.616-2.196-6.936-3.266-0.88-0.406-1.75-0.834-2.636-1.234-3.408-1.538-6.836-3.026-10.29-4.462-0.816-0.338-1.642-0.65-2.46-0.984-2.644-1.078-5.292-2.148-7.958-3.166-1.3-0.496-2.614-0.958-3.918-1.44-2.204-0.814-4.408-1.63-6.626-2.404-1.464-0.51-2.94-0.988-4.41-1.48-2.080-0.696-4.16-1.394-6.252-2.056-1.548-0.49-3.106-0.95-4.662-1.418-2.034-0.614-4.068-1.226-6.112-1.806-1.598-0.454-3.204-0.884-4.808-1.318-2.018-0.544-4.040-1.084-6.070-1.596-1.63-0.412-3.264-0.804-4.9-1.196-2.018-0.482-4.040-0.952-6.066-1.4-1.652-0.368-3.308-0.72-4.966-1.066-2.028-0.422-4.060-0.826-6.096-1.216-1.662-0.318-3.324-0.628-4.988-0.924-2.052-0.366-4.11-0.708-6.166-1.038-1.656-0.266-3.312-0.532-4.972-0.778-2.090-0.31-4.184-0.588-6.28-0.864-1.636-0.214-3.272-0.434-4.91-0.628-2.148-0.252-4.3-0.47-6.454-0.688-1.592-0.162-3.184-0.334-4.778-0.474-2.254-0.2-4.514-0.356-6.772-0.516-1.5-0.106-2.996-0.23-4.498-0.318-2.504-0.148-5.012-0.246-7.52-0.344-1.258-0.050-2.514-0.124-3.774-0.162-3.768-0.112-7.54-0.172-11.314-0.172-3.864 0-7.724 0.064-11.582 0.18zM884.959 783.66c58.667-24.301 86.526-91.559 62.226-150.226s-91.559-86.526-150.226-62.226c-58.667 24.301-86.526 91.559-62.226 150.226s91.559 86.526 150.226 62.226z" /> -<glyph unicode="" glyph-name="team-carousel" d="M686.668 745.834h-349.334c-44.94 0-81.5-36.56-81.5-81.5v-434.666c0-44.94 36.56-81.5 81.5-81.5h349.334c44.938 0 81.5 36.56 81.5 81.5v434.666c0 44.94-36.562 81.5-81.5 81.5zM725.168 229.668c0-21.228-17.272-38.5-38.5-38.5h-349.334c-21.228 0-38.5 17.272-38.5 38.5v350.382l130.74 122.784h257.094c21.228 0 38.5-17.272 38.5-38.5v-434.666zM152.526 639.834h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-37.754 0-68.468-31.944-68.468-71.208v-327.248c0-39.266 30.714-71.208 68.468-71.208h56.756c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.756c-14.042 0-25.468 12.654-25.468 28.208v327.248c0 15.552 11.426 28.208 25.468 28.208zM871.498 682.834h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c14.044 0 25.468-12.654 25.468-28.208v-327.248c0-15.554-11.424-28.208-25.468-28.208h-56.756c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.756c37.752 0 68.468 31.944 68.468 71.208v327.248c0 39.264-30.714 71.208-68.468 71.208zM383.932 339.188h256c11.874 0 21.5-9.626 21.5-21.5v-38.66c0-11.874-9.626-21.5-21.5-21.5h-256c-11.874 0-21.5 9.626-21.5 21.5v38.66c0 11.874 9.626 21.5 21.5 21.5zM404.246 384h215.506c11.912 0 20.788 10.802 18.712 22.532-7.762 43.86-37.796 80.010-77.986 96.412 17.084 14.024 27.986 35.304 27.986 59.134 0 42.234-34.238 76.47-76.472 76.47s-76.47-34.238-76.47-76.47c0-23.83 10.902-45.11 27.988-59.134-40.188-16.402-70.216-52.552-77.978-96.41-2.076-11.73 6.802-22.532 18.712-22.532zM511.994 595.548c18.456 0 33.472-15.014 33.472-33.47s-15.016-33.472-33.472-33.472-33.47 15.016-33.47 33.472 15.014 33.47 33.47 33.47zM511.998 469.44c31.244-0.008 59.010-16.772 73.918-42.44h-147.834c14.906 25.676 42.672 42.438 73.916 42.44z" /> -<glyph unicode="" glyph-name="team-content" d="M686.668 745.834h-349.334c-44.94 0-81.5-36.56-81.5-81.5v-434.666c0-44.94 36.56-81.5 81.5-81.5h349.334c44.938 0 81.5 36.56 81.5 81.5v434.666c0 44.94-36.562 81.5-81.5 81.5zM725.168 229.668c0-21.228-17.272-38.5-38.5-38.5h-349.334c-21.228 0-38.5 17.272-38.5 38.5v350.382l130.74 122.784h257.094c21.228 0 38.5-17.272 38.5-38.5v-434.666zM383.932 339.188h256c11.874 0 21.5-9.626 21.5-21.5v-38.66c0-11.874-9.626-21.5-21.5-21.5h-256c-11.874 0-21.5 9.626-21.5 21.5v38.66c0 11.874 9.626 21.5 21.5 21.5zM404.246 384h215.506c11.912 0 20.788 10.802 18.712 22.532-7.762 43.86-37.796 80.010-77.986 96.412 17.084 14.024 27.986 35.304 27.986 59.134 0 42.234-34.238 76.47-76.47 76.47s-76.47-34.238-76.47-76.47c0-23.83 10.902-45.11 27.988-59.134-40.188-16.402-70.216-52.552-77.978-96.41-2.076-11.73 6.802-22.532 18.712-22.532zM511.994 595.548c18.456 0 33.47-15.014 33.47-33.47s-15.014-33.472-33.47-33.472-33.47 15.016-33.47 33.472 15.014 33.47 33.47 33.47zM511.998 469.44c31.244-0.008 59.010-16.77 73.918-42.44h-147.834c14.908 25.676 42.672 42.438 73.918 42.44z" /> -<glyph unicode="" glyph-name="telegram" d="M851.808 709.536c-0.944 5.504-2.912 13.344-10.064 19.152-8.48 6.88-21.552 8.32-27.408 8.224-26.592-0.464-67.408-14.656-263.792-96.352-68.784-28.608-206.256-87.824-412.416-177.648-33.472-13.312-51.008-26.336-52.608-39.072-3.072-24.448 32.128-32.064 76.416-46.464 36.112-11.744 84.672-25.472 109.936-26.016 22.912-0.496 48.464 8.944 76.688 28.336 192.624 130.016 292.048 195.744 298.288 197.168 4.4 0.992 10.512 2.256 14.64-1.424s3.728-10.64 3.296-12.496c-3.504-14.928-184.448-179.52-194.864-190.336-39.792-41.328-85.056-66.624-15.232-112.624 60.416-39.808 95.584-65.216 157.824-106.016 39.776-26.080 70.96-56.992 112.032-53.216 18.896 1.744 38.416 19.504 48.336 72.496 23.424 125.248 69.472 396.608 80.128 508.432 0.928 9.792-0.24 22.336-1.184 27.84z" /> -<glyph unicode="" glyph-name="telephone" d="M932.536 424.274c-8.396 8.396-22.010 8.396-30.406 0l-23.384-23.384-10.168 10.168c-8.396 8.394-22.010 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.57 53.79 53.788c8.396 8.396 8.396 22.010 0 30.406zM380.562 276.334h305.552c21.666 0 39.23 17.564 39.23 39.23v177.392c0 21.666-17.564 39.23-39.23 39.23h-305.552c-21.666 0-39.23-17.564-39.23-39.23v-22.794h-56.006c-7.164 0-10.696-8.708-5.558-13.7l61.564-59.786v-81.112c0-21.666 17.564-39.23 39.23-39.23zM384.334 489.184h298.010v-169.85h-298.010v169.85zM273.548 302.826c9.070 9.264 17.942 18.728 26.78 28.216 7.182 7.71 6.496 18.372-1.746 24.952-14.888 11.886-29.886 23.634-44.932 35.318-7.122 5.53-15.636 5.11-22.414-0.77-3.18-2.758-6.33-5.552-9.5-8.322-4.258-3.72-8.526-7.434-12.818-11.176-32.604 26.044-54.736 58.886-66.724 98.798 1.116 0.594 2.082 1.128 3.066 1.63 7.882 4.022 15.806 7.964 23.64 12.078 7.498 3.938 10.728 11.678 8.472 19.824-0.504 1.82-1.048 3.628-1.578 5.44-4.76 16.314-9.46 32.644-14.304 48.932-3.082 10.36-12.976 15.416-22.678 11.506-12.264-4.944-24.466-10.054-36.618-15.268-6.73-2.886-11.958-7.858-13.5-14.976-1.786-8.248-2.722-16.782-3.020-25.226-0.652-18.46 3.028-36.392 8.44-53.928 12.856-41.654 34.874-77.994 65.086-109.248 24.124-24.956 51.47-45.036 85.812-54.068 10.886-2.864 20.48-1.944 28.536 6.286zM640 404.258c0-13.343-10.817-24.16-24.16-24.16s-24.16 10.817-24.16 24.16c0 13.343 10.817 24.16 24.16 24.16s24.16-10.817 24.16-24.16zM557.494 404.258c0-13.343-10.817-24.16-24.16-24.16s-24.16 10.817-24.16 24.16c0 13.343 10.817 24.16 24.16 24.16s24.16-10.817 24.16-24.16zM474.986 404.258c0-13.343-10.817-24.16-24.16-24.16s-24.16 10.817-24.16 24.16c0 13.343 10.817 24.16 24.16 24.16s24.16-10.817 24.16-24.16zM779.284 621.304h-526.784c-21.56 0-39.102-17.542-39.102-39.102 0-11.876 9.626-21.5 21.5-21.5 10.542 0 19.314 7.588 21.148 17.602h519.34v-346.694h-519.34c-1.834 10.014-10.606 17.602-21.148 17.602-11.874 0-21.5-9.624-21.5-21.5 0-21.56 17.542-39.102 39.102-39.102h526.786c21.56 0 39.102 17.542 39.102 39.102v354.49c0 21.56-17.542 39.102-39.102 39.102zM236.668 660.168h345.764c12.958 0 23.5 10.542 23.5 23.5v124c0 12.958-10.542 23.5-23.5 23.5h-345.764c-12.958 0-23.5-10.542-23.5-23.5v-124c0-12.958 10.542-23.5 23.5-23.5zM256.168 788.168h306.764v-85h-306.764v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5z" /> -<glyph unicode="" glyph-name="testimonial" d="M577.904 910.896l-59.088 0.768-75.984-0.848c-348.768-9.264-410.832-110.464-410.832-390.832 0-146.352 15.312-249.856 91.52-313.584 23.792-19.808 52.656-35.088 88.208-46.704 29.264-9.6 60.64-15.584 93.248-17.824l79.504-5.488c-16.816-17.776-30.16-39.104-38.512-63.232 0-0.032-0.016-0.064-0.032-0.096-6.864-20.080-3.728-41.488 8.608-58.72 13.808-19.312 36.944-30.848 61.872-30.848h192.224c24.944 0 48.064 11.536 61.872 30.848 12.336 17.232 15.456 38.64 8.56 58.816-8.352 24.144-21.712 45.504-38.56 63.296l78.528 5.408c32.656 2.272 64.016 8.272 93.28 17.84 35.584 11.648 64.416 26.928 88.208 46.752 76.176 63.664 91.472 167.168 91.472 313.536 0 302.256-85.056 382.624-414.096 390.912zM608.64 47.504h-192.224c-5.936 0-9.664 3.28-10.048 4.32 0 0 0 0.16 0.128 0.512 15.632 45.056 58.224 75.328 106.032 75.328s90.464-30.32 106.192-75.632c-0.416-1.248-4.144-4.528-10.080-4.528zM472.464 231.728c0 22.112 17.968 40.096 40.064 40.096s40.096-17.984 40.096-40.096c0-20.88-16.128-37.888-36.56-39.712l-4.064-0.288-0.784 0.048c-21.472 0.704-38.752 18.304-38.752 39.952zM859.52 255.584c-17.408-14.496-39.36-25.968-67.104-35.056-24.24-7.92-50.4-12.912-77.776-14.816l-103.52-7.136c3.52 10.432 5.52 21.568 5.52 33.168 0 57.392-46.704 104.096-104.096 104.096s-104.064-46.704-104.064-104.096c0-11.632 2-22.784 5.536-33.232l-104.624 7.216c-27.328 1.888-53.488 6.864-77.744 14.816-27.728 9.056-49.696 20.528-67.104 35.008-49.952 41.76-68.528 113.44-68.528 264.432 0 253.744 41.024 318.688 348.128 326.848l59.872 0.832 72.688-0.752c309.968-7.808 351.312-72.8 351.312-326.928 0-151.008-18.576-222.672-68.48-264.4zM256.224 720.352h336.384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-336.384c-17.664 0-32-14.336-32-32s14.336-32 32-32zM688.72 720.352h80.096c17.664 0 32 14.336 32 32s-14.336 32-32 32h-80.096c-17.664 0-32-14.336-32-32s14.336-32 32-32zM544.528 624.208c0 17.664-14.336 32-32 32h-160.192c-17.664 0-32-14.336-32-32s14.336-32 32-32h160.192c17.664 0 32 14.336 32 32zM704.704 624.208c0 17.664-14.336 32-32 32h-64.080c-17.664 0-32-14.336-32-32s14.336-32 32-32h64.080c17.664 0 32 14.336 32 32zM791.888 490.816l-26.176 51.104-26.112-51.104-57.024-7.536 40.56-40.56-10.544-56.608 53.12 25.968 53.184-25.968-10.544 56.608 40.56 40.56-57.024 7.536zM285.456 490.816l-26.128 51.104-26.176-51.104-57.024-7.536 40.56-40.56-10.544-56.608 53.184 25.968 53.136-25.968-10.544 56.608 40.56 40.56-57.024 7.536zM512.528 541.92l-26.176-51.104-57.024-7.536 40.608-40.56-10.544-56.608 53.136 25.968 53.12-25.968-10.544 56.608 40.624 40.56-57.024 7.536-26.176 51.104z" /> -<glyph unicode="" glyph-name="testimonial-carousel" d="M676.159 474.782c11.849 0 22.041 9.268 22.227 21.115 0.188 12.009-9.489 21.801-21.456 21.801h-339.948c-11.965 0-21.644-9.793-21.456-21.801 0.184-11.847 10.378-21.115 22.227-21.115h338.405zM576.965 229.349c11.965 0 21.644 9.793 21.456 21.801-0.184 11.847-10.378 21.115-22.227 21.115h-138.474c-11.849 0-22.041-9.268-22.227-21.115-0.188-12.009 9.489-21.801 21.456-21.801h140.017zM662.508 209.334h-310.334c-11.849 0-22.043-9.268-22.227-21.115-0.188-12.009 9.491-21.801 21.456-21.801h310.334c11.849 0 22.041 9.268 22.227 21.115 0.188 12.009-9.489 21.801-21.456 21.801zM682.96 448.447h-331.846c-14.090 0-25.514-11.422-25.514-25.512v-98.841c0-14.090 11.424-25.512 25.514-25.512h331.846c14.090 0 25.512 11.422 25.512 25.512v98.841c0 14.090-11.424 25.512-25.512 25.512zM458.502 386.488l-27.468-19.953c-0.022-0.016-0.032-0.044-0.022-0.070l8.13-24.969 2.317-7.144c0.136-0.417-0.341-0.765-0.697-0.507l-27.313 19.841c-0.022 0.016-0.052 0.016-0.074 0l-27.468-19.955c-0.319-0.22-0.719 0.080-0.619 0.439l2.375 7.326 8.13 24.969c0.008 0.026 0 0.054-0.024 0.070l-27.251 19.795v0.858h33.968c0.028 0 0.052 0.018 0.060 0.044l5.934 18.3 4.551 13.993c0.12 0.359 0.619 0.359 0.739 0l10.505-32.293c0.008-0.026 0.032-0.044 0.060-0.044h33.948c0.379 0 0.539-0.479 0.22-0.699zM655.578 365.13c-2.236-2.236-5.31-3.613-8.703-3.613h-161.83c-6.96 0-13.080 5.695-12.883 12.651 0.092 3.252 1.451 6.19 3.587 8.326 2.216 2.236 5.29 3.613 8.683 3.613h161.85c6.96 0 13.080-5.695 12.883-12.653-0.092-3.252-1.451-6.188-3.589-8.326zM153.215 706.17h55.875c11.849 0 22.041 9.268 22.227 21.115 0.188 12.009-9.489 21.801-21.456 21.801h-56.645c-37.678 0-68.335-31.882-68.335-71.069v-492.69c0-39.187 30.654-71.069 68.335-71.069h55.875c11.849 0 22.041 9.268 22.227 21.115 0.188 12.009-9.489 21.801-21.456 21.801h-56.645c-14.015 0-25.418 12.629-25.418 28.153v492.69c0 15.524 11.402 28.153 25.418 28.153zM870.785 749.086h-55.873c-11.849 0-22.041-9.268-22.227-21.115-0.188-12.009 9.489-21.801 21.456-21.801h56.645c14.015 0 25.418-12.629 25.418-28.153v-492.69c0-15.524-11.404-28.153-25.418-28.153h-55.873c-11.849 0-22.041-9.268-22.227-21.115-0.188-12.009 9.489-21.801 21.456-21.801h56.645c37.68 0 68.335 31.882 68.335 71.069v492.69c0 39.187-30.654 71.069-68.335 71.069zM727.972 831.419h-442.57c-22.911 0-41.483-18.572-41.483-41.481v-683.878c0-22.909 18.572-41.481 41.483-41.481h442.57c22.911 0 41.483 18.572 41.483 41.481v683.878c0 22.909-18.572 41.481-41.483 41.481zM726.539 107.557c0-0.034-0.028-0.062-0.064-0.062h-439.575c-0.036 0-0.064 0.028-0.064 0.062v573.49c0 0.018 0.006 0.034 0.020 0.046l114.353 107.394c0.012 0.010 0.028 0.018 0.044 0.018h325.223c0.036 0 0.064-0.028 0.064-0.062v-680.884zM429.505 650.536l41.794-30.365c0.022-0.016 0.032-0.044 0.022-0.070l-15.963-49.132c-2.88-8.867 7.27-16.24 14.811-10.761l41.792 30.365c0.022 0.016 0.052 0.016 0.074 0l41.792-30.365c7.543-5.481 17.693 1.892 14.811 10.761l-15.963 49.132c-0.008 0.026 0 0.054 0.022 0.070l41.794 30.365c7.543 5.479 3.665 17.412-5.657 17.412h-51.659c-0.028 0-0.052 0.018-0.060 0.044l-16.023 49.316c-2.862 8.809-15.326 8.809-18.186 0l-16.023-49.316c-0.008-0.026-0.034-0.044-0.060-0.044h-51.659c-9.324 0-13.2-11.931-5.657-17.412z" /> -<glyph unicode="" glyph-name="testimonial-carousel-2" d="M688.812 811.232h-354.22c-47.14 0-85.5-38.36-85.5-85.5v-555.46c0-47.16 38.36-85.5 85.5-85.5h354.22c47.16 0 85.5 38.34 85.5 85.5v555.46c0 47.14-38.34 85.5-85.5 85.5zM731.312 170.27c0-23.44-19.060-42.5-42.5-42.5h-354.22c-23.44 0-42.5 19.060-42.5 42.5v514.638l83.324 83.324h313.396c23.44 0 42.5-19.060 42.5-42.5v-555.46zM682.012 516.834h-340.612c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h340.612c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM581.85 227.924c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-140.29c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h140.29zM667.562 207.866h-311.712c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h311.712c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM476.58 616.268l-24.62-75.77c-0.118-0.36 0.294-0.66 0.602-0.438l64.454 46.83 64.454-46.83c0.306-0.222 0.718 0.078 0.602 0.438l-24.62 75.77 64.454 46.83c0.306 0.222 0.148 0.708-0.23 0.708h-79.67l-24.62 75.77c-0.116 0.36-0.626 0.36-0.744 0l-24.62-75.77h-79.67c-0.378 0-0.536-0.484-0.23-0.708l64.454-46.83zM678.012 447.452h-332.62c-14.060 0-25.5-11.44-25.5-25.5v-99.16c0-14.060 11.44-25.5 25.5-25.5h332.62c14.060 0 25.5 11.44 25.5 25.5v99.16c0 14.060-11.44 25.5-25.5 25.5zM396.952 386.072l10.54 32.4c0.12 0.36 0.62 0.36 0.74 0l4.56-14.020 5.96-18.38h34.080c0.38 0 0.54-0.48 0.22-0.7l-27.56-20.020 8.16-25.060 2.38-7.34c0.1-0.36-0.3-0.66-0.6-0.44l-27.58 20.020-27.56-20.020c-0.3-0.22-0.72 0.080-0.6 0.44l2.38 7.34 8.16 25.060-27.34 19.86v0.86h34.060zM466.712 372.672c0 3.4 1.38 6.48 3.62 8.72 2.22 2.22 5.3 3.6 8.7 3.6h162.76c6.8 0 12.32-5.52 12.32-12.32 0-3.4-1.38-6.48-3.62-8.72-2.22-2.22-5.3-3.6-8.7-3.6h-162.76c-6.8 0-12.32 5.52-12.32 12.32zM153.504 690.506h56.6c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.6c-37.682 0-68.338-30.656-68.338-68.338v-465.164c0-37.682 30.656-68.338 68.338-68.338h56.6c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-56.6c-13.972 0-25.338 11.368-25.338 25.338v465.164c0 13.97 11.366 25.338 25.338 25.338zM870.494 733.506h-56.598c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.598c13.972 0 25.338-11.368 25.338-25.338v-465.164c0-13.97-11.368-25.338-25.338-25.338h-56.598c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h56.598c37.682 0 68.338 30.656 68.338 68.338v465.164c0 37.682-30.658 68.338-68.338 68.338z" /> -<glyph unicode="" glyph-name="text-marquee" d="M489.402 355.098l15.414 47.572h96.59l15.414-47.572h39.256l-76.516 219.568h-52.896l-76.516-219.568h39.256zM550.948 545.056h4.324l37.726-116.438h-79.776l37.726 116.438zM779.828 459.392c-4.88-0.998-11.312-2.162-19.296-3.492-13.972-1.78-26.006-4.108-36.096-6.986-10.094-2.886-18.462-6.436-25.118-10.646-6.654-4.216-11.592-9.482-14.804-15.802-3.218-6.32-4.824-13.92-4.824-22.79 0-10.644 2.214-19.576 6.654-26.78 4.434-7.21 10.366-12.7 17.798-16.468 7.428-3.768 16.020-5.654 25.782-5.654 11.088 0 20.736 2.11 28.944 6.32 8.202 4.21 15.136 9.924 20.792 17.132 5.656 7.206 10.148 14.914 13.474 23.122h4.658c0.442-7.1 0.94-14.254 1.498-21.458 0.55-7.21 1.164-14.138 1.83-20.792h32.936c-0.888 7.538-1.664 15.302-2.33 23.288-0.666 7.984-1.112 16.078-1.33 24.286-0.224 8.204-0.448 15.968-0.666 23.29v35.264c0 16.41-2.444 29.882-7.318 40.42-4.88 10.532-12.366 18.296-22.456 23.288-10.094 4.99-22.788 7.486-38.092 7.486-10.204 0-19.742-1.164-28.61-3.494-8.874-2.328-16.582-5.82-23.122-10.478-6.544-4.658-11.976-10.206-16.302-16.634-4.324-6.436-7.6-13.754-9.814-21.958l32.602-10.644c1.548 8.426 4.658 15.136 9.314 20.126 4.658 4.99 10.032 8.592 16.136 10.812 6.096 2.212 12.36 3.326 18.796 3.326 11.53 0 19.96-2.718 25.284-8.15 5.324-5.438 7.984-11.926 7.984-19.462 0-4.88-1.164-8.598-3.494-11.144-2.328-2.55-5.936-4.324-10.812-5.322zM794.798 443.212v-24.24c-2.886-6.876-6.436-12.924-10.646-18.13-4.216-5.214-8.65-9.43-13.306-12.642-4.658-3.216-9.43-5.656-14.306-7.318-4.88-1.664-9.538-2.496-13.972-2.496-8.208 0-14.862 2.214-19.96 6.654-5.104 4.434-7.652 10.754-7.652 18.962 0 6.652 1.606 11.918 4.824 15.802 3.212 3.876 7.538 6.872 12.974 8.98 5.432 2.106 11.42 3.712 17.964 4.824 6.54 1.108 13.14 2.214 19.794 3.328 6.654 1.106 12.86 2.494 18.63 4.158 2.042 0.588 3.892 1.32 5.656 2.116zM192.012 533.166h249.48c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-249.48c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM390.842 384c0 11.876-9.626 21.5-21.5 21.5h-241.332c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h241.332c11.874 0 21.5 9.624 21.5 21.5zM397.798 447.834c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-291.12c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h291.12zM938.846 628.13c0 1.36-0.036 2.71-0.106 4.050-0.074 1.414-0.282 2.79-0.614 4.114 0.044 1.368-0.042 2.758-0.268 4.158-0.444 2.744-1.046 5.49-1.788 8.16-0.38 1.374-0.886 2.678-1.5 3.906-0.254 1.352-0.646 2.698-1.176 4.022-1.036 2.586-2.226 5.136-3.54 7.586-0.674 1.258-1.456 2.422-2.326 3.486-0.546 1.26-1.224 2.488-2.032 3.662-1.584 2.298-3.314 4.532-5.142 6.638-0.94 1.082-1.964 2.048-3.056 2.896-0.818 1.116-1.756 2.166-2.814 3.136-2.074 1.904-4.274 3.706-6.536 5.348-1.168 0.85-2.39 1.562-3.654 2.144-1.054 0.906-2.212 1.72-3.47 2.43-2.474 1.394-5.052 2.652-7.662 3.742-1.34 0.558-2.708 0.972-4.080 1.246-1.25 0.644-2.584 1.174-3.99 1.572-2.736 0.776-5.542 1.394-8.338 1.838-1.438 0.232-2.866 0.312-4.266 0.254-1.352 0.326-2.754 0.526-4.196 0.584-0.962 0.040-1.928 0.058-2.9 0.058h-3.966c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.982 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.982 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.020 0-2.016-0.096-2.998-0.232-0.982 0.136-1.976 0.232-2.998 0.232h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c1.020 0 2.016 0.096 2.998 0.232 0.982-0.136 1.978-0.232 2.998-0.232h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h3.966c0.386 0 0.77-0.008 1.152-0.024 0.592-0.024 1.18-0.024 1.764 0 0.554-0.134 1.12-0.248 1.694-0.338 1.124-0.18 2.256-0.43 3.364-0.744 0.554-0.156 1.11-0.292 1.666-0.402 0.512-0.262 1.036-0.508 1.576-0.732 1.054-0.44 2.1-0.95 3.104-1.516 0.518-0.292 1.042-0.56 1.572-0.804 0.442-0.378 0.904-0.744 1.386-1.094 0.942-0.686 1.862-1.44 2.734-2.24 0.442-0.406 0.898-0.79 1.364-1.152 0.35-0.476 0.722-0.944 1.118-1.398 0.78-0.898 1.518-1.852 2.192-2.83 0.344-0.502 0.708-0.984 1.086-1.448 0.238-0.546 0.5-1.092 0.788-1.626 0.566-1.054 1.078-2.154 1.526-3.27 0.228-0.566 0.474-1.118 0.744-1.652 0.112-0.59 0.25-1.182 0.412-1.772 0.322-1.158 0.582-2.35 0.776-3.542 0.098-0.61 0.222-1.208 0.37-1.798-0.020-0.61-0.014-1.222 0.018-1.844 0.032-0.594 0.046-1.192 0.046-1.798v-3.070c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.070-2.018 0.208-2.998-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.018 0.072-2.018 0.208-2.996-0.136-0.98-0.208-1.98-0.208-2.998v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.994c0-1.018 0.072-2.018 0.208-2.998-0.136-0.978-0.208-1.978-0.208-2.996v-5.996c0-1.016 0.070-2.016 0.208-2.994-0.132-0.942-0.202-1.904-0.208-2.88-0.006-1.226-0.080-2.46-0.216-3.666-0.070-0.614-0.114-1.224-0.13-1.83-0.182-0.576-0.342-1.166-0.478-1.766-0.266-1.174-0.598-2.344-0.992-3.478-0.2-0.578-0.374-1.158-0.522-1.74-0.302-0.52-0.584-1.054-0.846-1.606-0.512-1.080-1.090-2.14-1.718-3.152-0.322-0.52-0.62-1.046-0.892-1.582-0.406-0.436-0.798-0.892-1.172-1.37-0.736-0.936-1.532-1.838-2.368-2.686-0.42-0.426-0.82-0.866-1.198-1.316-0.49-0.332-0.968-0.688-1.436-1.064-0.912-0.734-1.87-1.422-2.852-2.042-0.498-0.312-0.978-0.644-1.44-0.99-0.542-0.208-1.078-0.44-1.608-0.694-1.034-0.494-2.106-0.932-3.192-1.3-0.55-0.188-1.086-0.394-1.612-0.622-0.568-0.074-1.138-0.172-1.71-0.292-1.112-0.236-2.25-0.408-3.382-0.512-0.61-0.054-1.212-0.134-1.804-0.238-0.738 0.076-1.488 0.116-2.246 0.116h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.982 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.996c-1.016 0-2.018-0.070-2.998-0.208-0.98 0.136-1.98 0.208-2.998 0.208h-5.994c-1.018 0-2.018-0.070-2.998-0.208-0.978 0.136-1.98 0.208-2.998 0.208h-5.996c-1.038 0-2.050-0.098-3.048-0.242-1 0.142-2.012 0.242-3.050 0.242h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c1.038 0 2.050 0.098 3.050 0.242 0.998-0.142 2.012-0.242 3.048-0.242h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.018 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.982-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.994c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.98-0.136 1.98-0.208 2.998-0.208h5.996c1.016 0 2.018 0.070 2.998 0.208 0.978-0.136 1.98-0.208 2.998-0.208h5.996c1.276 0 2.526 0.112 3.742 0.324 1.364-0.142 2.762-0.156 4.18-0.026 2.832 0.256 5.678 0.686 8.46 1.278 1.42 0.302 2.78 0.738 4.064 1.292 1.39 0.182 2.784 0.504 4.162 0.972 2.684 0.914 5.342 1.998 7.9 3.222 1.306 0.624 2.518 1.364 3.634 2.2 1.3 0.5 2.574 1.132 3.796 1.906 2.376 1.498 4.696 3.156 6.892 4.928 1.118 0.9 2.122 1.89 3.008 2.952 1.146 0.78 2.234 1.68 3.244 2.704 1.962 1.986 3.832 4.108 5.558 6.302 0.884 1.124 1.64 2.31 2.266 3.54 0.936 1.006 1.79 2.118 2.542 3.33 1.47 2.368 2.822 4.846 4.018 7.368 0.614 1.29 1.086 2.608 1.424 3.94 0.692 1.19 1.278 2.46 1.744 3.808 0.908 2.626 1.678 5.334 2.292 8.044 0.314 1.386 0.486 2.772 0.526 4.14 0.414 1.304 0.706 2.666 0.868 4.076 0.31 2.736 0.476 5.526 0.492 8.292 0.006 1.056-0.064 2.096-0.208 3.114 0.136 0.98 0.208 1.982 0.208 3v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.070 2.018-0.208 2.998 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.998 0.136 0.978 0.208 1.978 0.208 2.996v5.994c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v5.996c0 1.018-0.072 2.018-0.208 2.996 0.136 0.98 0.208 1.98 0.208 2.998v3.064z" /> -<glyph unicode="" glyph-name="text-area-form" d="M788.192 617.842h-636.86c-12.96 0-23.5-10.56-23.5-23.5v-294.68c0-12.96 10.54-23.5 23.5-23.5h636.86c12.96 0 23.5 10.54 23.5 23.5v294.68c0 12.94-10.54 23.5-23.5 23.5zM194.632 447.162h429.84c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-429.84c-11.88 0-21.5 9.62-21.5 21.5s9.62 21.5 21.5 21.5zM173.952 511.002c0 11.88 9.62 21.5 21.5 21.5h257.52c11.88 0 21.5-9.62 21.5-21.5s-9.62-21.5-21.5-21.5h-257.52c-11.88 0-21.5 9.62-21.5 21.5zM236.672 660.162h345.76c12.96 0 23.5 10.54 23.5 23.5v124c0 12.96-10.54 23.5-23.5 23.5h-345.76c-12.96 0-23.5-10.54-23.5-23.5v-124c0-12.96 10.54-23.5 23.5-23.5zM256.172 788.162h306.76v-85h-306.76v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM932.536 424.274c-8.396 8.394-22.010 8.394-30.406 0l-23.382-23.384-10.168 10.168c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.572 53.79 53.79c8.396 8.396 8.396 22.010 0 30.406zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5zM426.668 190.834c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-192c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h192z" /> -<glyph unicode="" glyph-name="text-form" d="M775.898 617.834h-523.198c-21.798 0-39.534-17.192-39.534-38.32 0-11.876 9.624-21.5 21.5-21.5 10.266 0 18.852 7.198 20.99 16.82h516.774v-225.434l-32.412-30.232h-484.548c-2.412 9.234-10.812 16.050-20.802 16.050-11.876 0-21.5-9.624-21.5-21.5 0-20.706 17.734-37.55 39.534-37.55h523.198c21.798 0 39.534 16.846 39.534 37.55v266.564c0 20.706-17.734 37.55-39.534 37.55zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5zM426.668 190.834c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-192c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h192zM236.668 660.168h345.762c12.958 0 23.5 10.542 23.5 23.5v124c0 12.958-10.542 23.5-23.5 23.5h-345.762c-12.958 0-23.5-10.542-23.5-23.5v-124c0-12.958 10.542-23.5 23.5-23.5zM256.168 788.168h306.762v-85h-306.762v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM932.536 404.86c-8.396 8.394-22.010 8.394-30.406 0l-22.784-22.786-9.772 9.774c-8.396 8.394-22.010 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.178-40.18 53.19 53.192c8.396 8.396 8.396 22.010 0 30.406z" /> -<glyph unicode="" glyph-name="text-marquee1" d="M505.414 350.986l13.724 44.87h92.928l13.806-44.87h53.844l-77.66 227.8h-72.828l-78.004-227.8h54.19zM567.886 539.438l33.666-109.412h-71.962l33.464 109.412h4.832zM790.336 459.882c-4.718-1.036-10.646-2.13-17.776-3.28-14.27-2.070-26.696-4.486-37.276-7.248-10.586-2.762-19.62-6.212-27.094-10.356-7.48-4.14-13.116-9.61-16.912-16.394-3.796-6.79-5.696-15.132-5.696-25.024 0-11.044 2.184-20.364 6.558-27.958 4.368-7.594 10.468-13.408 18.292-17.43 7.82-4.024 16.912-6.042 27.268-6.042 10.812 0 20.536 2.13 29.166 6.384 8.628 4.256 15.932 10.010 21.916 17.258 5.98 7.248 10.7 15.126 14.152 23.642h5.868c0.458-7.366 1.090-14.842 1.898-22.434 0.804-7.594 1.554-14.272 2.244-20.020h44.524c-0.922 8.284-1.726 16.622-2.416 25.024-0.69 8.396-1.208 16.794-1.554 25.198-0.346 8.396-0.518 16.622-0.518 24.678v30.718c0 18.638-2.762 33.878-8.284 45.732-5.522 11.848-13.866 20.59-25.024 26.232-11.164 5.634-25.488 8.456-42.972 8.456-10.818 0-21.054-1.154-30.718-3.452-9.664-2.302-18.18-5.814-25.542-10.528-7.366-4.718-13.58-10.528-18.638-17.43-5.064-6.902-8.974-15.074-11.736-24.506l43.834-13.46c1.84 7.128 4.772 13.056 8.802 17.776 4.022 4.712 8.854 8.164 14.496 10.354 5.636 2.186 11.676 3.28 18.12 3.28 10.124 0 17.484-2.302 22.090-6.902 4.6-4.606 6.904-10.128 6.904-16.568 0-4.606-1.154-8.112-3.452-10.528-2.302-2.416-5.814-4.14-10.528-5.176zM805.006 439.69v-22.78c-1.844-5.522-4.606-10.472-8.284-14.842-3.684-4.374-7.594-7.998-11.734-10.872-4.142-2.88-8.516-5.124-13.116-6.73-4.606-1.614-8.974-2.416-13.116-2.416-7.594 0-13.692 2.070-18.292 6.212-4.606 4.14-6.902 9.778-6.902 16.912 0 5.522 1.262 9.89 3.796 13.116 2.53 3.22 6.094 5.696 10.7 7.422 4.6 1.724 9.778 3.16 15.532 4.314 5.748 1.148 11.562 2.184 17.43 3.106 5.868 0.916 11.616 2.244 17.258 3.968 2.412 0.74 4.634 1.618 6.73 2.588zM938.834 615.060c0 1.124-0.086 2.228-0.252 3.306 0.154 1.238 0.202 2.508 0.136 3.796-0.138 2.65-0.402 5.324-0.786 7.95-0.198 1.35-0.516 2.652-0.944 3.896-0.070 1.316-0.264 2.642-0.586 3.966-0.63 2.586-1.392 5.172-2.262 7.684-0.446 1.29-1.004 2.512-1.658 3.654-0.316 1.278-0.752 2.542-1.318 3.782-1.102 2.42-2.332 4.814-3.656 7.12-0.678 1.182-1.452 2.274-2.306 3.274-0.55 1.2-1.218 2.368-2.008 3.484-1.53 2.16-3.176 4.276-4.898 6.286-0.886 1.036-1.848 1.964-2.872 2.79-0.76 1.072-1.628 2.090-2.606 3.038-1.91 1.85-3.928 3.628-5.994 5.288-1.060 0.852-2.176 1.586-3.334 2.204-0.942 0.912-1.982 1.748-3.116 2.496-2.218 1.464-4.532 2.84-6.878 4.092-1.206 0.642-2.444 1.158-3.702 1.552-1.1 0.72-2.28 1.352-3.538 1.876-2.458 1.028-4.992 1.948-7.53 2.736-1.304 0.404-2.616 0.68-3.924 0.832-1.22 0.506-2.504 0.904-3.844 1.186-2.61 0.546-5.268 0.974-7.898 1.274-1.35 0.156-2.684 0.172-3.99 0.084-1.272 0.264-2.584 0.416-3.93 0.446-0.602 0.014-1.204 0.020-1.808 0.020h-4.656c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.994-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.994-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.994-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.018-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.020 0-2.014-0.096-2.996-0.232-0.982 0.136-1.976 0.232-2.996 0.232h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c1.020 0 2.014 0.096 2.996 0.232 0.982-0.136 1.976-0.232 2.996-0.232h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.018 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208l5.518-0.008c0.688-0.018 1.37 0.004 2.042 0.050 0.648-0.136 1.31-0.242 1.982-0.318 1.302-0.148 2.622-0.362 3.922-0.632 0.652-0.136 1.302-0.242 1.952-0.318 0.606-0.25 1.232-0.476 1.872-0.676 1.254-0.39 2.508-0.846 3.728-1.354 0.62-0.26 1.246-0.488 1.876-0.686 0.548-0.36 1.118-0.698 1.708-1.012 1.166-0.622 2.314-1.304 3.414-2.030 0.564-0.374 1.14-0.714 1.724-1.028 0.476-0.46 0.978-0.902 1.504-1.324 1.028-0.826 2.032-1.71 2.984-2.634 0.484-0.468 0.984-0.91 1.498-1.324 0.382-0.54 0.792-1.064 1.23-1.576 0.864-1.012 1.692-2.074 2.46-3.16 0.386-0.542 0.792-1.064 1.216-1.562 0.274-0.6 0.58-1.194 0.916-1.778 0.658-1.144 1.268-2.334 1.816-3.534 0.278-0.612 0.582-1.204 0.908-1.774 0.158-0.634 0.344-1.27 0.562-1.9 0.43-1.242 0.808-2.524 1.12-3.804 0.158-0.65 0.346-1.288 0.558-1.908 0.036-0.656 0.1-1.316 0.198-1.978 0.192-1.308 0.324-2.642 0.392-3.964 0.038-0.742 0.114-1.472 0.226-2.192-0.11-0.878-0.166-1.774-0.166-2.682v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.992c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.018 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.98-0.208-2.996v-5.992c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.98-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.992c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.98-0.208-2.996v-5.99c0-1.018 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.996v-5.99c0-1.016 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.018 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.978-0.208-1.98-0.208-2.996v-5.99c0-1.016 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.992c0-1.016 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.98-0.208-1.98-0.208-2.996v-5.99c0-1.018 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.99c0-1.018 0.070-2.018 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.98-0.208-1.98-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.994-0.136-0.98-0.208-1.98-0.208-2.996v-5.992c0-1.016 0.070-2.016 0.208-2.994-0.136-0.98-0.208-1.98-0.208-2.996v-5.99c0-1.016 0.070-2.016 0.208-2.996-0.136-0.978-0.208-1.978-0.208-2.994v-5.992c0-0.904 0.056-1.792 0.164-2.668-0.11-0.712-0.186-1.438-0.226-2.174-0.070-1.326-0.204-2.66-0.396-3.964-0.098-0.662-0.164-1.322-0.2-1.978-0.214-0.62-0.402-1.258-0.562-1.908-0.314-1.276-0.692-2.556-1.128-3.806-0.218-0.63-0.406-1.262-0.564-1.896-0.328-0.572-0.632-1.164-0.912-1.774-0.546-1.196-1.16-2.386-1.824-3.54-0.332-0.578-0.636-1.164-0.908-1.758-0.43-0.502-0.842-1.030-1.23-1.578-0.764-1.078-1.588-2.13-2.45-3.134-0.442-0.516-0.858-1.046-1.244-1.59-0.514-0.412-1.014-0.852-1.498-1.32-0.954-0.922-1.96-1.806-2.992-2.63-0.526-0.422-1.028-0.864-1.504-1.322-0.58-0.308-1.152-0.648-1.714-1.016-1.112-0.732-2.268-1.416-3.434-2.038-0.59-0.312-1.16-0.65-1.71-1.010-0.63-0.198-1.256-0.424-1.876-0.682-1.208-0.504-2.462-0.958-3.73-1.35-0.63-0.196-1.244-0.418-1.842-0.664-0.658-0.074-1.318-0.18-1.978-0.318-1.288-0.268-2.608-0.478-3.922-0.626-0.672-0.074-1.334-0.182-1.984-0.314-0.656 0.046-1.322 0.064-1.994 0.052l-5.586-0.008c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.994-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.994-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.994-0.208-0.98 0.136-1.98 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.994 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.016 0-2.016-0.070-2.996-0.208-0.978 0.136-1.98 0.208-2.996 0.208h-5.99c-1.018 0-2.016-0.070-2.996-0.208-0.978 0.136-1.978 0.208-2.996 0.208h-5.992c-1.016 0-2.016-0.070-2.996-0.208-0.98 0.136-1.978 0.208-2.996 0.208h-5.99c-1.042 0-2.060-0.1-3.062-0.242-1.002 0.142-2.020 0.242-3.062 0.242h-3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h3c1.042 0 2.058 0.1 3.062 0.242 1.002-0.142 2.018-0.242 3.062-0.242h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.994 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.996-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.978-0.208 2.994-0.208h5.992c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.978-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.018 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.978-0.208 2.996-0.208h5.99c1.016 0 2.016 0.070 2.996 0.208 0.98-0.136 1.98-0.208 2.996-0.208h4.742c0.552 0 1.104 0.006 1.652 0.016 1.362 0.026 2.692 0.178 3.978 0.444 1.306-0.092 2.64-0.072 3.988 0.080 2.644 0.296 5.302 0.72 7.9 1.264 1.33 0.278 2.606 0.672 3.82 1.17 1.318 0.15 2.64 0.426 3.954 0.832 2.548 0.792 5.082 1.708 7.526 2.724 1.258 0.524 2.438 1.152 3.538 1.874 1.258 0.392 2.498 0.908 3.702 1.548 2.336 1.24 4.646 2.61 6.866 4.068 1.14 0.75 2.184 1.588 3.132 2.502 1.158 0.618 2.276 1.35 3.338 2.2 2.070 1.656 4.088 3.432 6 5.28 0.98 0.948 1.852 1.964 2.612 3.038 1.020 0.818 1.98 1.744 2.864 2.772 1.73 2.014 3.388 4.132 4.922 6.298 0.786 1.11 1.452 2.268 2.002 3.458 0.858 1.002 1.636 2.098 2.318 3.284 1.33 2.308 2.562 4.702 3.664 7.11 0.566 1.24 1.006 2.504 1.324 3.782 0.656 1.144 1.216 2.368 1.666 3.658 0.874 2.516 1.638 5.096 2.27 7.674 0.326 1.324 0.52 2.648 0.592 3.962 0.43 1.244 0.75 2.546 0.948 3.896 0.386 2.622 0.654 5.294 0.796 7.95 0.070 1.294 0.022 2.57-0.132 3.814 0.168 1.082 0.254 2.192 0.254 3.32v5.992c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.992c0 1.016-0.070 2.016-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.016-0.070 2.016-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.018-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99c0 1.018-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.98 0.208 2.996v5.992c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.98 0.208 2.996v5.99c0 1.016-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.018-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.978 0.208 1.98 0.208 2.996v5.99c0 1.018-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.996v5.99c0 1.016-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.992c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99c0 1.016-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.992c0 1.016-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.994v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99c0 1.018-0.070 2.018-0.208 2.996 0.136 0.978 0.208 1.978 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.992c0 1.016-0.070 2.016-0.208 2.994 0.136 0.98 0.208 1.98 0.208 2.996v5.99zM228.42 532.168h216.584c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-216.584c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM397.964 383c0 11.876-9.626 21.5-21.5 21.5h-216.584c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h216.584c11.874 0 21.5 9.624 21.5 21.5zM424.998 468.334c0 11.876-9.624 21.5-21.5 21.5h-296.83c-11.876 0-21.5-9.624-21.5-21.5s9.624-21.5 21.5-21.5h296.83c11.876 0 21.5 9.624 21.5 21.5z" /> -<glyph unicode="" glyph-name="textual-showcase" d="M213 489.258c23.748 0 43 19.252 43 43s-19.252 43-43 43h-84.092c-23.748 0-43-19.252-43-43s19.252-43 43-43h84.092zM895.378 575.258h-340.378c-23.748 0-43-19.25-43-43s19.252-43 43-43h340.378c23.75 0 43 19.252 43 43s-19.25 43-43 43zM597.334 361.286c0 23.748-19.252 43-43 43h-383.334c-23.748 0-43-19.252-43-43s19.252-43 43-43h383.334c23.748 0 43 19.25 43 43zM297.85 233.314h-82.938c-23.748 0-43-19.252-43-43s19.252-43 43-43h82.938c23.748 0 43 19.252 43 43s-19.252 43-43 43zM810.046 233.314h-212.092c-23.748 0-43-19.252-43-43s19.252-43 43-43h212.092c23.748 0 43 19.252 43 43s-19.252 43-43 43zM851.752 448.64h-167.5c-23.74 0-43-19.24-43-43v-85.96c0-23.74 19.26-43 43-43h167.5c23.74 0 43 19.26 43 43v85.96c0 23.76-19.26 43-43 43zM682.952 362.66v25.060c0 7.98 6.48 14.46 14.46 14.46h27.62l-42.080-39.52zM768.344 748.33h127.198c23.748 0 43-19.252 43-43v-1.66c0-23.748-19.252-43-43-43h-127.198c-23.748 0-43 19.252-43 43v1.66c0 23.748 19.252 43 43 43zM128.458 748.33h340.542c23.748 0 43-19.252 43-43v-1.66c0-23.748-19.252-43-43-43h-340.542c-23.748 0-43 19.252-43 43v1.66c0 23.748 19.252 43 43 43zM597.844 832h41.644c23.748 0 43-19.252 43-43v-83.664c0-23.748-19.252-43-43-43h-41.644c-23.748 0-43 19.252-43 43v83.664c0 23.748 19.252 43 43 43zM384 618.524c-47.048 0-85.19-38.14-85.19-85.19s38.14-85.19 85.19-85.19 85.19 38.14 85.19 85.19-38.14 85.19-85.19 85.19zM384 491.144c-23.264 0-42.19 18.926-42.19 42.19s18.926 42.19 42.19 42.19 42.19-18.926 42.19-42.19-18.926-42.19-42.19-42.19zM427.178 234.166h41.644c23.748 0 43-19.252 43-43v-83.664c0-23.748-19.252-43-43-43h-41.644c-23.748 0-43 19.252-43 43v83.664c0 23.748 19.252 43 43 43z" /> -<glyph unicode="" glyph-name="threads" d="M716.096 471.168c-3.68 1.76-7.408 3.456-11.184 5.088-6.592 121.36-72.896 190.848-184.256 191.552-0.496 0-1.008 0-1.504 0-66.608 0-122-28.432-156.096-80.16l61.248-42.016c25.472 38.64 65.44 46.88 94.88 46.88 0.336 0 0.688 0 1.024 0 36.672-0.24 64.336-10.896 82.24-31.68 13.024-15.136 21.744-36.048 26.064-62.448-32.512 5.52-67.664 7.216-105.248 5.072-105.872-6.096-173.92-67.84-169.36-153.632 2.32-43.52 24-80.96 61.040-105.424 31.328-20.672 71.664-30.784 113.584-28.496 55.36 3.040 98.8 24.16 129.104 62.784 23.008 29.328 37.568 67.344 44 115.248 26.384-15.92 45.936-36.88 56.736-62.064 18.368-42.816 19.44-113.184-37.984-170.56-50.304-50.256-110.784-72-202.16-72.672-101.376 0.752-178.048 33.264-227.888 96.624-46.672 59.344-70.8 145.040-71.696 254.736 0.896 109.696 25.024 195.408 71.696 254.736 49.84 63.36 126.512 95.872 227.888 96.624 102.112-0.752 180.112-33.424 231.872-97.104 25.376-31.232 44.512-70.496 57.12-116.272l71.76 19.152c-15.28 56.352-39.344 104.912-72.080 145.2-66.352 81.632-163.392 123.456-288.416 124.336h-0.496c-124.784-0.864-220.736-42.848-285.2-124.8-57.36-72.928-86.944-174.384-87.936-301.568v-0.304s0-0.304 0-0.304c0.992-127.184 30.576-228.656 87.936-301.568 64.464-81.936 160.416-123.936 285.2-124.8h0.496c110.928 0.768 189.136 29.808 253.552 94.176 84.272 84.208 81.744 189.744 53.968 254.528-19.936 46.464-57.92 84.192-109.888 109.12zM524.56 291.072c-46.4-2.608-94.608 18.208-96.976 62.816-1.76 33.072 23.536 69.984 99.824 74.384 8.736 0.512 17.312 0.752 25.728 0.752 27.712 0 53.632-2.688 77.2-7.84-8.784-109.792-60.352-127.616-105.776-130.112z" /> -<glyph unicode="" glyph-name="tiktok" d="M657.168 839.136h-114.256l-1.2-556.944c0-68.336-60.352-122.16-128.672-122.16s-123.696 55.376-123.696 123.696 55.376 123.696 123.696 123.696c5.12 0 10.016-0.912 14.976-1.504v119.44c-2.48 0.16-4.96 0.352-7.456 0.496-2.496 0.16-4.992 0.272-7.52 0.272-133.856 0-242.368-108.512-242.368-242.368s108.512-242.368 242.368-242.368 242.368 108.512 242.368 242.368v327.936c39.36-60.096 106.352-96.32 178.192-96.304 6.544 0.032 13.088 0.368 19.616 0.992h0.112v132.736c-102.752 7.504-185.376 87.552-196.16 190.016z" /> -<glyph unicode="" glyph-name="time" d="M752.692 330.822v166.46c0 19.42-17.2 35.22-38.34 35.22h-614.92c-18.54 0-33.6-15.8-33.6-35.22v-185.88c0-19.44 15.060-35.24 33.6-35.24h599.34l53.92 54.66zM621.432 362.742h-15v83.18h24.2l24.7-65.42h0.64l24.2 65.42h23.2v-83.18h-15.14l1.020 67.060h-1.26l-26.34-67.060h-13.88l-26.080 67.060h-1.14l0.88-67.060zM539.492 445.922h23.2l28.86-83.18h-17.38l-5.4 17.14h-35.26l-5.36-17.14h-17.4l28.74 83.18zM108.832 489.502h361.26v-170.34h-361.26v170.34zM248.742 425.834h-70.386c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h70.386c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM399.69 425.834h-70.386c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h70.386c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM295.526 432.172c0-3.592-2.912-6.504-6.504-6.504s-6.504 2.912-6.504 6.504c0 3.592 2.912 6.504 6.504 6.504s6.504-2.912 6.504-6.504zM295.526 376.494c0-3.592-2.912-6.504-6.504-6.504s-6.504 2.912-6.504 6.504c0 3.592 2.912 6.504 6.504 6.504s6.504-2.912 6.504-6.504zM770.746 617.834h-601.32c-22.934 0-41.592-18.904-41.592-42.138 0-11.876 9.626-21.498 21.5-21.498 11.584 0 21.030 9.162 21.484 20.636h598.52v-277.044l-63.954-63.956h-534.568c-0.452 11.474-9.898 20.638-21.484 20.638-11.874 0-21.5-9.624-21.5-21.5 0-23.234 18.658-42.138 41.592-42.138h601.32c22.934 0 41.592 18.904 41.592 42.138v342.722c0 23.234-18.658 42.138-41.592 42.138zM551.972 433.202h-1.76l-13.18-42.1h28.2l-13.26 42.1zM932.536 424.274c-8.396 8.394-22.010 8.394-30.406 0l-23.382-23.384-10.168 10.168c-8.396 8.394-22.008 8.394-30.406 0-8.396-8.396-8.396-22.010 0-30.406l40.572-40.572 53.79 53.79c8.396 8.396 8.396 22.010 0 30.406zM236.672 660.162h345.76c12.96 0 23.5 10.54 23.5 23.5v124c0 12.96-10.54 23.5-23.5 23.5h-345.76c-12.96 0-23.5-10.54-23.5-23.5v-124c0-12.96 10.54-23.5 23.5-23.5zM256.172 788.162h306.76v-85h-306.76v85zM512 767.168h-213.52c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h213.52c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM236.668 148.5h295.84c12.979 0 23.5-10.521 23.5-23.5v-38.666c0-12.979-10.521-23.5-23.5-23.5h-295.84c-12.979 0-23.5 10.521-23.5 23.5v38.666c0 12.979 10.521 23.5 23.5 23.5z" /> -<glyph unicode="" glyph-name="timeline" d="M586.442 758.77c0-39.892-32.338-72.23-72.23-72.23s-72.23 32.338-72.23 72.23c0 39.892 32.338 72.23 72.23 72.23s72.23-32.338 72.23-72.23zM514.212 520.232c-39.892 0-72.23-32.338-72.23-72.23s32.338-72.23 72.23-72.23 72.23 32.338 72.23 72.23-32.338 72.23-72.23 72.23zM514.212 418.772c-16.118 0-29.23 13.112-29.23 29.23s13.112 29.23 29.23 29.23 29.23-13.112 29.23-29.23-13.112-29.23-29.23-29.23zM586.442 135.23c0-39.892-32.338-72.23-72.23-72.23s-72.23 32.338-72.23 72.23c0 39.892 32.338 72.23 72.23 72.23s72.23-32.338 72.23-72.23zM492.712 639v-64c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5v64c0 11.876-9.624 21.5-21.5 21.5s-21.5-9.624-21.5-21.5zM535.712 255v64c0 11.876-9.624 21.5-21.5 21.5s-21.5-9.624-21.5-21.5v-64c0-11.876 9.626-21.5 21.5-21.5s21.5 9.624 21.5 21.5zM658.044 700.122h216.624c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-216.624c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM658.044 165.958h128.61c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-128.61c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5zM874.668 147.606h-216.624c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h216.624c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM366.632 500.176h-128.61c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h128.61c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5zM366.632 438.826h-217.3c-11.874 0-21.5-9.624-21.5-21.5s9.626-21.5 21.5-21.5h217.3c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5z" /> -<glyph unicode="" glyph-name="timer" d="M268.384 588.64l224.704-168.8c5.664-4.256 12.288-6.304 18.88-6.304 9.568 0 19.008 4.336 25.184 12.576 10.448 13.904 7.632 33.632-6.256 44.064l-224.704 168.8c-13.92 10.464-33.648 7.616-44.064-6.256-10.448-13.904-7.632-33.632 6.256-44.064zM512 928c-17.376 0-31.472-14.096-31.472-31.472v-282.72c0-17.376 14.096-31.472 31.472-31.472s31.472 14.096 31.472 31.472v250.064c215.264-16.16 385.568-196.64 385.568-415.872 0-229.968-187.088-417.056-417.056-417.056s-417.040 187.088-417.040 417.056c0 85.696 25.792 168.016 74.592 238.080 9.936 14.272 6.432 33.888-7.856 43.824-14.256 9.952-33.888 6.432-43.824-7.84-56.176-80.672-85.872-175.44-85.872-274.064 0-264.672 215.328-480 480-480s480 215.328 480 480-214.928 479.552-479.984 480z" /> -<glyph unicode="" glyph-name="toggle-off" d="M275.664 626.72c-88.048 0-159.664-71.632-159.664-159.68s71.632-159.664 159.664-159.664 159.68 71.632 159.68 159.664-71.648 159.68-159.68 159.68zM275.664 371.36c-52.752 0-95.664 42.928-95.664 95.664s42.928 95.68 95.664 95.68 95.68-42.928 95.68-95.68-42.928-95.664-95.68-95.664zM722.72 736.32h-421.44c-148.48 0-269.28-120.8-269.28-269.28s120.8-269.28 269.28-269.28h421.44c148.48 0 269.28 120.8 269.28 269.28s-120.8 269.28-269.28 269.28zM722.72 261.76h-421.44c-113.184 0-205.28 92.080-205.28 205.28s92.096 205.28 205.28 205.28h421.44c113.184 0 205.28-92.080 205.28-205.28s-92.096-205.28-205.28-205.28z" /> -<glyph unicode="" glyph-name="toggle-on" d="M756.336 626.72c-88.048 0-159.68-71.632-159.68-159.68s71.648-159.664 159.68-159.664 159.664 71.632 159.664 159.664-71.632 159.68-159.664 159.68zM756.336 371.36c-52.768 0-95.68 42.928-95.68 95.664s42.928 95.68 95.68 95.68 95.664-42.928 95.664-95.68-42.928-95.664-95.664-95.664zM730.72 736.32h-421.44c-148.48 0-269.28-120.8-269.28-269.28s120.8-269.28 269.28-269.28h421.44c148.48 0 269.28 120.8 269.28 269.28s-120.8 269.28-269.28 269.28zM730.72 261.76h-421.44c-113.184 0-205.28 92.080-205.28 205.28s92.096 205.28 205.28 205.28h421.44c113.184 0 205.28-92.080 205.28-205.28s-92.096-205.28-205.28-205.28z" /> -<glyph unicode="" glyph-name="tooltip" d="M775.485 689.592h-526.971c-42.651 0-77.349-34.698-77.349-77.349v-271.075c0-42.651 34.698-77.349 77.349-77.349h151.458c10.517 0 20.316-4.709 26.885-12.921l45.016-56.262c9.809-12.26 24.438-19.288 40.138-19.288s30.329 7.032 40.134 19.294l44.996 56.252c6.569 8.214 16.37 12.925 26.887 12.925h151.454c42.651 0 77.349 34.698 77.349 77.349v271.075c0 42.651-34.698 77.349-77.349 77.349zM809.918 341.169c0-18.987-15.446-34.433-34.433-34.433h-151.454c-23.628 0-45.643-10.583-60.402-29.033l-44.996-56.252c-2.216-2.771-5.102-3.184-6.623-3.184s-4.409 0.413-6.625 3.184l-45.016 56.262c-14.759 18.446-36.772 29.025-60.396 29.025h-151.458c-18.987 0-34.433 15.446-34.433 34.433v161.916l142.973 143.592h418.431c18.987 0 34.433-15.446 34.433-34.433v-271.075zM524.975 601.301h-25.947c-13.296 0-23.851-11.186-23.081-24.458l9.276-159.864c0.709-12.228 10.833-21.781 23.081-21.781h7.394c12.248 0 22.372 9.553 23.081 21.781l9.276 159.864c0.77 13.272-9.785 24.458-23.081 24.458zM511.998 376.46c-15.522 0-28.105-12.583-28.105-28.105s12.583-28.105 28.105-28.105 28.105 12.583 28.105 28.105-12.583 28.105-28.105 28.105z" /> -<glyph unicode="" glyph-name="trash" d="M512 480c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32s32 14.336 32 32v192c0 17.664-14.336 32-32 32zM384 448c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 448c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM768 768c0 17.664-14.336 32-32 32h-7.040l-10.432 41.616c-6.208 24.736-20.080 46.224-40.512 62.432-20.112 15.456-44.976 23.952-70.016 23.952h-192c-25.040 0-49.904-8.496-70.352-24.24-20.048-15.84-34.336-38.016-40.16-62.16l-10.432-41.616h-7.040c-17.664 0-32-14.336-32-32-52.944 0-96-43.056-96-96v-64c0-24.256 13.712-45.136 33.632-55.984l28.704-401.824c-18.144-11.312-30.336-31.28-30.336-54.192v-32c0-52.944 43.056-96 96-96h448c52.944 0 96 43.056 96 96v32c0 22.912-12.192 42.88-30.336 54.192l28.704 401.824c19.92 10.864 33.632 31.744 33.632 55.984v64c0 52.944-43.056 96-96 96zM285.792 160l-27.424 384h507.264l-27.424-384h-452.4zM384.992 853.296c9.104 7.008 19.84 10.704 31.008 10.704h192c11.168 0 21.904-3.696 30.624-10.384 8.928-7.072 15.072-16.608 17.824-27.568l6.624-26.432c-15.872-1.888-28.24-15.232-28.24-31.616h-256c0 12.864-7.632 23.888-18.592 28.96l7.376 29.344c2.576 10.72 8.72 20.144 17.36 26.992zM224 672c0 17.936 14.064 32 32 32h512c17.936 0 32-14.064 32-32v-64h-576v64zM768 64c0-17.936-14.064-32-32-32h-448c-17.936 0-32 14.064-32 32v32h512v-32z" /> -<glyph unicode="" glyph-name="trophy" d="M893.92 706.944c1.232 22.304-6.528 44.048-21.312 59.664-13.36 14.112-31.008 21.904-49.68 21.904h-49.552c0.832 24.832 0.992 43.248 0.992 52.208 0 48.128-34.032 87.296-75.872 87.296h-372.976c-41.84 0-75.872-39.152-75.872-87.296 0-8.96 0.144-27.376 0.944-52.208h-49.52c-18.672 0-36.32-7.776-49.68-21.904-14.768-15.616-22.544-37.36-21.312-59.664 15.856-286 163.776-505.328 349.92-528.064v-146.88h-138.064c-17.664 0-32-14.336-32-32s14.336-32 32-32h340.128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-138.064v146.88c186.144 22.736 334.048 242.048 349.92 528.064zM822.928 724.512c1.312 0 2.768-1.44 3.2-1.888 2.704-2.864 4.16-7.392 3.888-12.144-8.864-159.984-63.936-298.8-142.464-383.216 55.088 119.104 75.296 285.088 82.624 397.232h52.752zM325.52 864h372.976c4.080 0 11.872-9.072 11.872-23.28-0.048-154.544-37.328-595.68-202.352-595.68h-2.864c-156.176 0-191.456 441.136-191.488 595.664 0 14.224 7.792 23.296 11.872 23.296zM194 710.48c-0.272 4.752 1.184 9.296 3.888 12.144 0.416 0.432 1.888 1.888 3.2 1.888h52.576c6.88-109.904 25.664-271.456 76.144-389.984-74.976 85.008-127.184 220.512-135.808 375.952z" /> -<glyph unicode="" glyph-name="tumblr" d="M762.352 90.336l-36.672 107.168c-2.672 7.504-6.496 11.664-12.336 13.168-6.16 1.664-13.168-0.496-21.168-3.664-73.84-29.664-113.328 2.672-113.328 59.664v222h139.008c9.168 0 16.672 7.504 16.672 16.672v136.16c0 9.168-7.504 16.496-16.672 16.496h-138.336v192c0 9.168-7.504 16.672-16.672 16.672h-118.16c-16 0-25.504-8.832-26.832-27.168-4.672-68.496-37.168-158.832-140.496-195.168-11.328-4-18.832-14.672-18.832-26.672v-113.328c0-9.168 7.504-16.672 16.672-16.672h79.168v-240c0-86.336 43.664-234.336 244.992-234.336 79.008 0 139.664 28.672 162.336 52.832v0c6.16 6.496 3.664 15.84 0.672 24.16z" /> -<glyph unicode="" glyph-name="upload" d="M965.056 466.8c-17.664 0-32-14.336-32-32v-349.328c0-26.816-21.824-48.64-48.64-48.64h-734.72c-26.816 0-48.64 21.824-48.64 48.64v349.328c0 17.664-14.336 32-32 32s-32-14.336-32-32v-349.328c0-62.112 50.528-112.64 112.64-112.64h734.72c62.112 0 112.64 50.528 112.64 112.64v349.328c0 17.664-14.336 32-32 32zM291.44 618.064l195.856 195.856v-540.672c0-17.664 14.336-32 32-32s32 14.336 32 32v540.672l195.856-195.856c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-250.464 250.464c-1.488 1.488-3.136 2.832-4.896 4-0.8 0.544-1.68 0.912-2.528 1.376-0.992 0.544-1.936 1.136-2.976 1.568-1.072 0.448-2.192 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.144 0.816-8.4 0.816-12.544 0-0.928-0.192-1.792-0.528-2.688-0.8-1.104-0.32-2.208-0.576-3.28-1.024-1.056-0.432-2-1.040-2.992-1.584-0.832-0.464-1.712-0.832-2.512-1.36-1.76-1.184-3.408-2.512-4.896-4l-250.464-250.464c-12.496-12.496-12.496-32.752 0-45.248 12.48-12.496 32.768-12.496 45.248 0z" /> -<glyph unicode="" glyph-name="user" d="M512 305.024c158.464 0 391.536-86.848 400.016-273.024h-800.032c8.48 186.176 241.552 273.024 400.016 273.024zM512 369.024c-207.104 0-464.256-117.472-464.256-347.536 0-28.944 20.912-53.488 49.856-53.488h828.8c28.944 0 49.856 24.544 49.856 53.488 0 227.92-257.184 347.536-464.256 347.536v0zM512 864c84.48 0 153.216-68.736 153.216-153.216s-68.736-153.216-153.216-153.216-153.216 68.736-153.216 153.216 68.736 153.216 153.216 153.216zM512 928c-119.968 0-217.216-97.248-217.216-217.216s97.248-217.216 217.216-217.216 217.216 97.248 217.216 217.216-97.248 217.216-217.216 217.216v0z" /> -<glyph unicode="" glyph-name="users" d="M512 360.928c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM512 557.088c40.848 0 74.080-33.232 74.080-74.080s-33.232-74.080-74.080-74.080-74.080 33.232-74.080 74.080 33.232 74.080 74.080 74.080zM292.928 586.32c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM292.928 766.48c32.032 0 58.080-26.048 58.080-58.080s-26.048-58.080-58.080-58.080-58.080 26.048-58.080 58.080 26.048 58.080 58.080 58.080zM731.072 586.32c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM731.072 766.48c32.032 0 58.080-26.048 58.080-58.080s-26.048-58.080-58.080-58.080-58.080 26.048-58.080 58.080 26.048 58.080 58.080 58.080zM251.072 95.584c0-16.272 11.76-30.064 28.016-30.064h465.824c16.272 0 28.016 13.792 28.016 30.064 0 128.096-144.544 195.328-260.928 195.328s-260.928-66.032-260.928-195.328zM512 242.912c80.592 0 197.456-41.248 211.536-129.392h-423.056c14.080 88.144 130.944 129.392 211.536 129.392zM731.072 516.304c-11.712 0-23.712-0.752-35.808-2.096 1.728-10.176 2.832-20.56 2.832-31.2 0-11.392-1.184-22.512-3.152-33.344 12.512 1.744 24.736 2.64 36.144 2.64 70.88 0 165.216-33.648 190.48-97.392h-274.912c-33.92-35.632-81.664-58-134.64-58s-100.72 22.352-134.64 58h-275.232c25.152 66.24 122.192 97.392 190.8 97.392 11.552 0 23.76-0.944 36.16-2.72-1.984 10.864-3.168 22-3.168 33.424 0 10.592 1.088 20.912 2.8 31.040-12.080 1.36-24.096 2.272-35.792 2.272-116.4 0-260.928-66.032-260.928-195.328 0-16.272 11.76-30.064 28.016-30.064h903.952c16.272 0 28.016 13.792 28.016 30.064 0 128.096-144.544 195.328-260.928 195.328z" /> -<glyph unicode="" glyph-name="veritcal-menu" d="M536.221 830.102h-51.36c-44.573 0-80.822-36.269-80.822-80.842l0.339-602.643c0-44.573 36.269-80.842 80.842-80.842h51.36c44.553 0 80.822 36.269 80.822 80.842l-0.359 602.663c0 44.553-36.269 80.822-80.822 80.822zM536.58 108.691h-51.36c-20.919 0-37.926 17.007-37.926 37.926l-0.339 602.663c0 20.899 17.007 37.906 37.906 37.906h51.36c20.899 0 37.906-17.007 37.906-37.906l0.359-602.663c0-20.919-17.007-37.926-37.906-37.926zM509.663 749.385h-0.014c-11.851-0.006-21.452-9.621-21.444-21.472l0.355-555.475c0.008-11.847 9.611-21.444 21.458-21.444h0.014c11.851 0.008 21.452 9.621 21.444 21.472l-0.355 555.475c-0.008 11.847-9.611 21.444-21.458 21.444zM893.722 749.28c0 44.553-36.269 80.822-80.842 80.822h-51.36c-44.553 0-80.822-36.269-80.822-80.842l0.359-602.643c0-44.573 36.269-80.842 80.822-80.842h51.36c44.573 0 80.822 36.269 80.822 80.842l-0.339 602.663zM786.711 150.99h-0.020c-11.837 0-21.458 9.601-21.458 21.458l-0.359 555.475c0 11.837 9.601 21.458 21.458 21.458 5.928 0 11.298-2.395 15.17-6.288 3.892-3.872 6.288-9.242 6.288-15.15l0.359-555.475c0-11.857-9.601-21.458-21.438-21.478zM259.541 830.102h-51.36c-44.573 0-80.822-36.269-80.822-80.842l0.359-602.643c0-44.573 36.249-80.842 80.822-80.842h51.36c44.573 0 80.822 36.269 80.822 80.842l-0.359 602.663c0 44.553-36.249 80.822-80.822 80.822zM259.9 108.691h-51.36c-20.899 0-37.906 17.007-37.906 37.926l-0.359 602.663c0 20.899 17.007 37.906 37.906 37.906h51.36c20.899 0 37.906-17.007 37.906-37.906l0.359-602.663c0-20.919-17.007-37.926-37.906-37.926zM232.991 749.385h-0.014c-11.851-0.006-21.452-9.621-21.444-21.472l0.355-555.475c0.008-11.847 9.611-21.444 21.458-21.444h0.014c11.851 0.008 21.452 9.621 21.444 21.472l-0.355 555.475c-0.008 11.847-9.611 21.444-21.458 21.444z" /> -<glyph unicode="" glyph-name="video-box" d="M835.368 831.251h-646.737c-33.071 0-59.883-26.81-59.883-59.883v-646.737c0-33.071 26.812-59.883 59.883-59.883h646.737c33.071 0 59.883 26.812 59.883 59.883v646.737c0 33.073-26.812 59.883-59.883 59.883zM852.335 124.632c0-9.356-7.611-16.967-16.967-16.967h-497.774l-165.93 165.93v497.774c0 9.356 7.611 16.967 16.967 16.967h646.737c9.356 0 16.967-7.611 16.967-16.967v-646.737zM825.933 746.545c0-8.269-6.704-14.973-14.973-14.973s-14.973 6.704-14.973 14.973c0 8.269 6.704 14.973 14.973 14.973s14.973-6.704 14.973-14.973zM750.189 761.52c-8.27 0-14.973-6.703-14.973-14.973s6.703-14.973 14.973-14.973 14.973 6.705 14.973 14.973-6.703 14.973-14.973 14.973zM704.388 746.545c0-8.269-6.704-14.973-14.973-14.973s-14.973 6.704-14.973 14.973c0 8.269 6.704 14.973 14.973 14.973s14.973-6.704 14.973-14.973zM633.9 472.396l-171.453 104.777c-8.811 5.417-19.883 5.597-28.874 0.537s-14.586-14.586-14.586-24.945v-209.553c0-10.358 5.595-19.883 14.586-24.945 8.988-5.060 20.063-4.823 28.874 0.537l171.453 104.777c8.513 5.18 13.693 14.406 13.693 24.408s-5.18 19.169-13.693 24.408z" /> -<glyph unicode="" glyph-name="video-button" d="M633.9 472.396l-171.453 104.777c-8.811 5.417-19.883 5.597-28.874 0.537s-14.586-14.586-14.586-24.945v-209.553c0-10.358 5.595-19.883 14.586-24.945 8.988-5.060 20.063-4.823 28.874 0.537l171.453 104.777c8.513 5.18 13.693 14.406 13.693 24.408s-5.18 19.169-13.693 24.408zM873.628 707.862h-724.403c-35.497 0-64.374-28.878-64.374-64.374v-391.467c0-35.497 28.878-64.374 64.374-64.374h724.403c35.497 0 64.374 28.878 64.374 64.374v391.467c0 35.497-28.878 64.374-64.374 64.374zM895.086 252.021c0-11.833-9.627-21.458-21.458-21.458h-724.403c-11.833 0-21.458 9.625-21.458 21.458v318.412l86.886 94.515h658.975c11.831 0 21.458-9.627 21.458-21.458v-391.467z" /> -<glyph unicode="" glyph-name="video-camera" d="M992 464.128l-155.408-73.872v55.936c0 48.992-39.712 88.704-88.704 88.704h-110.832c44.72 31.456 74.016 83.36 74.016 142.192 0 96-77.824 173.824-173.84 173.824-85.536 0-156.496-61.84-170.976-143.216-21.888 22.48-52.416 36.48-86.272 36.48-66.528 0-120.464-53.936-120.464-120.464 0-35.216 15.2-66.784 39.28-88.816h-78.128c-48.992 0-88.704-39.712-88.704-88.704v-312.4c0-48.992 39.712-88.704 88.704-88.704h627.184c48.992 0 88.704 39.712 88.704 88.704v55.248l155.408-73.872v348.96zM537.248 786.912c60.56 0 109.84-49.264 109.84-109.824s-49.264-109.824-109.84-109.824-109.824 49.264-109.824 109.824 49.264 109.824 109.824 109.824zM280 680.16c31.136 0 56.464-25.328 56.464-56.464s-25.328-56.464-56.464-56.464-56.464 25.328-56.464 56.464 25.328 56.464 56.464 56.464zM392.496 580.896c11.984-18 27.264-33.568 44.944-46h-76.256c13.76 12.576 24.544 28.272 31.312 46zM772.592 133.792c0-13.616-11.088-24.704-24.704-24.704h-627.184c-13.616 0-24.704 11.088-24.704 24.704v312.4c0 13.616 11.088 24.704 24.704 24.704h627.184c13.616 0 24.704-11.088 24.704-24.704v-312.4zM928 216.448l-58.608 27.856v90.672l58.608 27.856v-146.384zM512.432 331.936l-122.4 78.816c-5.376 3.456-11.2 5.040-16.864 5.040-16.288 0-31.376-12.976-31.376-31.344v-157.632c0-18.368 15.088-31.344 31.376-31.344 5.664 0 11.488 1.568 16.864 5.040l122.4 78.816c19.136 12.32 19.136 40.304 0 52.624z" /> -<glyph unicode="" glyph-name="vimeo" d="M784.384 772.896c-106.448 3.424-178.624-56.576-216.336-180.16 47.136 20.224 116.736 25.536 108.512-53.136-2.4-26.576-19.712-65.136-51.776-115.888-89.488-140.912-111.248-93.936-160.448 217.2-13.888 87.424-50.576 128.4-110.4 122.576-52.976-4.8-137.488-91.2-225.936-168.848l36-46.624c34.464 24 54.512 36.176 60.336 36.176 49.888 0 75.6-129.776 135.936-351.248 31.024-82.624 68.912-123.936 113.648-123.936 72.336 0 160.624 67.888 265.024 203.648 101.136 129.936 153.248 232.288 156.688 307.024v0c4.464 99.936-32.736 151.2-111.248 153.248z" /> -<glyph unicode="" glyph-name="volume-down" d="M762.592 600.112c-12.432-12.544-12.352-32.816 0.176-45.264 24.096-23.904 37.36-55.984 37.36-90.336s-13.264-66.416-37.36-90.336c-12.544-12.448-12.608-32.704-0.16-45.248 6.256-6.304 14.464-9.456 22.704-9.456 8.16 0 16.32 3.088 22.544 9.296 36.288 36.032 56.272 84.24 56.272 135.744s-19.984 99.744-56.272 135.76c-12.56 12.448-32.8 12.368-45.264-0.176zM985.504 529.024c-3.536 17.328-20.528 28.592-37.744 24.944-17.312-3.536-28.48-20.432-24.944-37.744 3.44-16.864 5.184-34.256 5.184-51.696s-1.744-34.832-5.184-51.68c-3.552-17.312 7.632-34.224 24.944-37.744 2.16-0.448 4.32-0.656 6.432-0.656 14.896 0 28.224 10.432 31.312 25.6 4.32 21.056 6.496 42.768 6.496 64.496s-2.192 43.456-6.496 64.512zM672.016 538.4v229.616c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.032l-107.44-41.328c-0.496-0.192-1.008-0.352-1.488-0.576l-251.52-96.736c-7.36-2.832-14.080-6.752-20.256-11.344h-108.688c-23.136 0-44.896-9.008-61.232-25.36-16.144-16.112-25.392-38.432-25.392-61.264v-146.752c0-22.832 9.248-45.152 25.376-61.248 16.352-16.352 38.112-25.376 61.248-25.376h108.688c6.16-4.576 12.88-8.512 20.224-11.328l251.52-96.752c0.512-0.224 1.040-0.4 1.552-0.592l107.392-41.312v-10.032c0-17.664 14.336-32 32-32s32 14.336 32 32v229.616c37.232 13.216 64 48.688 64 90.4s-26.768 77.184-64 90.4zM102.608 358.64c-4.208 4.208-6.608 10.016-6.608 15.984v146.752c0 5.968 2.4 11.776 6.624 16 4.288 4.272 9.952 6.624 16 6.624h73.808c-0.128-1.84-0.432-3.648-0.432-5.52v-180.976c0-1.856 0.304-3.664 0.432-5.52h-73.808c-6.048 0-11.712 2.352-16.016 6.64zM256 357.52v180.976c0 9.296 5.824 17.776 14.512 21.12l209.504 80.592v-384.384l-209.52 80.592c-8.672 3.328-14.496 11.808-14.496 21.104zM640.016 416c-17.664 0-32-14.336-32-32v-177.424l-64 24.624v433.616l64 24.624v-177.424c0-17.664 14.336-32 32-32s32-14.352 32-32-14.352-32-32-32z" /> -<glyph unicode="" glyph-name="volume-mute" d="M925.328 448l57.296 57.296c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-57.296-57.296-57.296 57.296c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l57.296-57.296-57.296-57.296c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l57.296 57.296 57.296-57.296c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-57.296 57.296zM672.192 538.416v229.696c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.032l-107.648-41.408c-0.416-0.16-0.832-0.304-1.248-0.48l-251.712-96.816c-7.344-2.832-14.048-6.752-20.192-11.328h-108.736c-23.152 0-44.912-9.008-61.264-25.392-16.368-16.352-25.376-38.128-25.376-61.264v-146.784c0-23.136 9.008-44.912 25.376-61.264 16.352-16.368 38.128-25.392 61.28-25.392h108.736c6.16-4.576 12.864-8.496 20.208-11.328l251.616-96.768c0.48-0.224 0.992-0.384 1.488-0.576l107.488-41.344v-10.048c0-17.664 14.336-32 32-32s32 14.336 32 32v229.696c37.232 13.216 64.016 48.704 64.016 90.416s-26.784 77.2-64.016 90.416zM102.64 358.592c-4.272 4.288-6.64 9.968-6.64 16.016v146.784c0 6.048 2.352 11.728 6.64 16.016s9.968 6.64 16 6.64h73.84c-0.128-1.84-0.432-3.664-0.432-5.536v-181.024c0-1.872 0.304-3.68 0.432-5.536h-73.84c-6.048 0-11.728 2.352-16.016 6.64zM256.048 357.488v181.024c0 9.296 5.84 17.792 14.512 21.136l209.568 80.592v-384.496l-209.568 80.592c-8.688 3.344-14.528 11.84-14.528 21.136zM640.192 415.984c-17.664 0-32-14.336-32-32v-177.488l-64.048 24.64v433.728l64.048 24.624v-177.488c0-17.664 14.336-32 32-32s32.016-14.352 32.016-32.016-14.352-32.016-32.016-32.016z" /> -<glyph unicode="" glyph-name="volume-up" d="M672 538.4v229.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.032l-107.536-41.36c-0.448-0.176-0.912-0.32-1.344-0.512l-251.584-96.752c-7.36-2.832-14.064-6.768-20.224-11.344h-108.672c-23.152 0-44.912-9.008-61.264-25.376s-25.36-38.128-25.36-61.248v-146.752c0-23.12 9.008-44.88 25.36-61.248 16.352-16.352 38.112-25.376 61.264-25.376h108.688c6.16-4.576 12.864-8.496 20.208-11.328l251.552-96.752c0.48-0.208 0.96-0.368 1.456-0.56l107.472-41.328v-10.032c0-17.664 14.336-32 32-32s32 14.336 32 32v229.6c37.232 13.216 64 48.688 64 90.4s-26.768 77.184-64 90.4zM102.64 358.624c-4.272 4.288-6.64 9.952-6.64 16v146.752c0 6.048 2.352 11.712 6.64 16 4.272 4.288 9.952 6.624 16 6.624h73.808c-0.128-1.84-0.432-3.648-0.432-5.52v-180.976c0-1.856 0.304-3.664 0.432-5.52h-73.808c-6.048 0-11.728 2.336-16 6.624zM256 357.52v180.976c0 9.296 5.824 17.776 14.496 21.104l209.504 80.592v-384.352l-209.504 80.592c-8.672 3.328-14.496 11.808-14.496 21.104zM640 416c-17.664 0-32-14.336-32-32v-177.408l-64 24.624v433.6l64 24.624v-177.408c0-17.664 14.336-32 32-32s32-14.352 32-32-14.352-32-32-32zM762.432 312.304c6.256-6.304 14.48-9.456 22.704-9.456 8.144 0 16.304 3.088 22.544 9.28 36.32 36.048 56.32 84.304 56.32 135.872s-20 99.824-56.32 135.872c-12.544 12.432-32.8 12.352-45.248-0.176-12.448-12.544-12.368-32.816 0.176-45.264 24.112-23.92 37.392-56.048 37.392-90.432s-13.28-66.512-37.392-90.432c-12.544-12.448-12.624-32.72-0.176-45.264zM898.464 674.416c-29.136 29.184-63.312 52.256-101.6 68.528-16.272 6.96-35.056-0.64-41.984-16.912s0.656-35.040 16.912-41.968c30.672-13.056 58.048-31.536 81.392-54.912 48.24-48.192 74.8-112.528 74.8-181.168s-26.56-132.992-74.832-181.2c-23.312-23.344-50.672-41.808-81.36-54.88-16.272-6.928-23.84-25.696-16.912-41.968 5.184-12.176 17.008-19.488 29.456-19.488 4.176 0 8.432 0.832 12.512 2.576 38.288 16.288 72.464 39.344 101.568 68.496 60.336 60.304 93.568 140.72 93.568 226.448s-33.232 166.16-93.536 226.416z" /> -<glyph unicode="" glyph-name="wallet" d="M992 358.624c0 65.424-34.832 122.72-86.816 154.768 0.048 0.688 0.208 1.344 0.208 2.048v66.96c0 42.864-34.864 77.728-77.728 77.728h-52.096l-132.544 192.64c-8.88 12.912-25.808 17.504-39.984 10.816l-432.576-203.456h-60.752c-42.864 0-77.728-34.88-77.728-77.728v-475.312c0-42.864 34.88-77.728 77.728-77.728h717.936c42.864 0 77.728 34.88 77.728 77.728v96.896c51.856 32.080 86.608 89.296 86.608 154.64zM605.712 794.128l92.176-133.984h-377.056l284.864 133.984zM841.392 107.088c0-7.584-6.16-13.728-13.728-13.728h-717.936c-7.568 0-13.728 6.16-13.728 13.728v475.312c0 7.584 6.16 13.728 13.728 13.728h717.936c7.568 0 13.728-6.16 13.728-13.728v-44.768c-10.192 1.776-20.608 2.896-31.312 2.896h-339.952c-100.304 0-181.904-81.616-181.904-181.904s81.6-181.888 181.904-181.888h339.952c10.688 0 21.12 1.104 31.312 2.896v-72.528zM810.096 240.736h-339.952c-65.008 0-117.904 52.896-117.904 117.888s52.896 117.904 117.904 117.904h339.952c65.008 0 117.904-52.896 117.904-117.904s-52.896-117.888-117.904-117.888zM474.8 441.136c-45.488 0-82.512-37.008-82.512-82.512s37.008-82.496 82.512-82.496 82.512 37.008 82.512 82.496-37.008 82.512-82.512 82.512zM474.8 340.128c-10.208 0-18.512 8.304-18.512 18.496s8.304 18.512 18.512 18.512 18.512-8.32 18.512-18.512-8.304-18.496-18.512-18.496z" /> -<glyph unicode="" glyph-name="wallet-money" d="M992 311.616c0 84.848-13.552 135.84-42.624 160.48-6.464 5.472-13.728 9.232-21.376 11.936v67.584c0 30.144-17.456 59.232-42.272 77.344l28.656 107.44c5.616 20.752 2.8 42.432-7.936 61.056-10.704 18.608-28.032 31.936-48.848 37.552l-308.544 82.672c-20.72 5.552-42.416 2.608-61.024-8.224-18.592-10.8-31.824-28.16-37.28-48.736l-12.368-46.016-76.784 20.576c-20.656 5.664-42.336 2.896-60.992-7.856-18.688-10.752-32.016-28.144-37.504-48.848l-0.8-2.976h-102.304c-49.344 0-96-46.656-96-96v-59.2c-19.2-18.048-32-43.024-32-68.8v-480c0-49.344 46.656-96 96-96h704c49.344 0 96 46.656 96 96v67.232c7.696 2.72 14.896 6.784 21.392 12.304 29.056 24.64 42.608 75.648 42.608 160.464zM512.608 844.256c1.488 5.632 5.392 8.608 7.584 9.888 2.224 1.28 6.784 3.136 12.384 1.712l308.416-82.64c4.272-1.152 7.824-3.888 10.016-7.696 1.264-2.192 3.152-6.704 1.584-12.496l-28.112-105.408h-99.504l1.824 6.816c11.312 42.832-14.208 86.912-56.832 98.256l-169.744 45.472 12.384 46.096zM332.528 771.952c2.176 1.248 6.656 3.104 12.336 1.568l308.576-82.672c8.64-2.304 13.792-11.312 11.504-19.968l-6.224-23.264h-364.512l30.768 114.48c1.488 5.648 5.392 8.608 7.584 9.856zM128 679.616c0 14.352 17.648 32 32 32h85.12l-17.2-64h-99.92v32zM832 39.616h-704c-14.352 0-32 17.648-32 32v32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224v384c0 9.728 8.144 20.832 17.824 27.072 0.032 0.016 0.064 0.032 0.096 0.064 4.592 2.928 9.488 4.864 14.080 4.864h704c14.352 0 32-17.648 32-32v-67.52l-67.616-7.68c-0.544-0.064-1.072-0.144-1.6-0.224-52.112-8.592-89.936-53.2-89.936-106.080v-116.992c0-54.912 39.408-100.624 91.552-106.336l67.6-7.664v-67.504c0-14.352-17.648-32-32-32zM908 199.952c-0.816-0.688-1.776-1.456-5.92-0.784-0.544 0.096-1.088 0.176-1.632 0.24l-96.976 10.992c-19.424 2.128-34.64 20.896-34.64 42.736v116.992c0 21.168 14.96 39.056 35.664 42.816l95.936 10.896c0.544 0.064 1.088 0.144 1.648 0.24 4.192 0.672 5.088-0.096 5.904-0.784 3.344-2.832 20-21.52 20-111.664s-16.656-108.816-20-111.664z" /> -<glyph unicode="" glyph-name="watch" d="M528 461.248v82.752c0 17.664-14.336 32-32 32s-32-14.336-32-32v-96c0-8.48 3.376-16.624 9.376-22.624l32-32c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-22.624 22.624zM784 480h-1.888c-3.264 29.344-10.976 57.328-22.4 83.344l1.632 0.944c15.312 8.848 20.544 28.4 11.696 43.712-8.832 15.28-28.416 20.544-43.712 11.68l-1.856-1.072c-5.392 7.28-11.088 14.288-17.12 21.040l-41.856 200.24c-10.736 51.040-56.368 88.096-108.496 88.096h-128c-52.128 0-97.76-37.040-108.512-88.096l-42.064-200.48c-45.504-50.944-73.424-117.904-73.424-191.424s27.952-140.528 73.472-191.488l42.016-200.416c10.736-51.040 56.368-88.096 108.496-88.096h128c52.128 0 97.76 37.040 108.512 88.128l41.808 200.16c6.048 6.752 11.76 13.776 17.168 21.088l1.856-1.072c5.040-2.928 10.544-4.304 15.984-4.304 11.056 0 21.808 5.728 27.728 15.984 8.848 15.312 3.616 34.88-11.696 43.712l-1.632 0.944c11.424 26.032 19.136 54.016 22.4 83.344h1.888c17.664 0 32 14.336 32 32s-14.336 32-32 32zM675.152 314.112l-20.672 20.672c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l20.672-20.672c-29.296-21.952-64.048-36.848-101.904-42.304v29.44c0 17.664-14.336 32-32 32s-32-14.336-32-32v-29.44c-37.856 5.456-72.608 20.352-101.904 42.304l20.672 20.672c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-20.672-20.672c-21.952 29.296-36.832 64.048-42.288 101.888h29.44c17.664 0 32 14.336 32 32s-14.336 32-32 32h-29.44c5.456 37.856 20.336 72.608 42.288 101.888l20.672-20.672c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-20.672 20.672c29.296 21.952 64.048 36.848 101.904 42.304v-29.44c0-17.664 14.336-32 32-32s32 14.336 32 32v29.44c37.856-5.456 72.608-20.352 101.904-42.304l-20.672-20.672c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l20.672 20.672c21.952-29.296 36.832-64.048 42.288-101.888h-29.44c-17.664 0-32-14.336-32-32s14.336-32 32-32h29.44c-5.456-37.856-20.336-72.608-42.288-101.888zM605.872 826.784l26.128-125.024c-31.616 17.008-66.752 28.224-104 32.368v129.872h32c22.032 0 41.328-15.664 45.872-37.216zM432 864h32v-129.888c-37.296-4.144-72.464-15.376-104.112-32.416l26.224 125.040c4.544 21.6 23.84 37.264 45.872 37.264zM386.128 69.232l-26.224 125.056c31.632-17.040 66.8-28.256 104.080-32.4v-129.888h-32c-22.032 0-41.328 15.664-45.872 37.232zM560 32h-32v129.888c37.248 4.144 72.368 15.344 103.984 32.352l-26.096-124.992c-4.544-21.584-23.84-37.248-45.872-37.248z" /> -<glyph unicode="" glyph-name="whatsapp" d="M810.080 744.88c-80.128 80.32-186.832 124.496-300.24 124.496-234.080 0-424.544-190.48-424.544-424.544 0-74.768 19.504-147.824 56.608-212.272l-60.24-219.92 225.088 59.088c61.968-33.856 131.76-51.632 202.896-51.632h0.192c233.888 0 428.56 190.48 428.56 424.544 0 113.408-48.192 219.92-128.32 300.24zM751.424 205.792c-31.696-31.28-68.464-55.84-109.296-73.024-42.096-17.712-86.608-26.688-132.288-26.688h-0.192c-56.544 0-112.448 14.208-161.68 41.104l-30 16.384-114-29.936 30.336 110.736-17.888 31.056c-29.536 51.296-45.136 109.856-45.136 169.36 0 186.672 151.872 338.544 338.544 338.544 90.512 0 175.52-35.248 239.36-99.232 66.56-66.704 103.2-151.776 103.2-239.504 0-89.76-35.856-174.576-100.976-238.832zM703.376 355.904c-10.512 5.36-62.72 30.976-72.48 34.416-9.76 3.632-16.832 5.36-23.904-5.36-7.072-10.704-27.344-34.416-33.664-41.696-6.112-7.072-12.432-8.032-22.944-2.672-62.336 31.168-103.264 55.648-144.384 126.224-10.896 18.736 10.896 17.408 31.168 57.952 3.44 7.072 1.728 13.2-0.96 18.544-2.672 5.36-23.904 57.568-32.704 78.784-8.608 20.656-17.408 17.792-23.904 18.16-6.112 0.384-13.2 0.384-20.272 0.384s-18.544-2.672-28.304-13.2c-9.76-10.704-37.104-36.336-37.104-88.544s38.064-102.688 43.216-109.776c5.36-7.072 74.768-114.176 181.296-160.256 67.312-29.072 93.712-31.552 127.36-26.576 20.464 3.056 62.72 25.632 71.52 50.48 8.8 24.864 8.8 46.096 6.112 50.48-2.48 4.784-9.568 7.456-20.080 12.624z" /> -<glyph unicode="" glyph-name="woo-product" d="M806.542 629.67c-4.060 5.42-10.436 8.612-17.208 8.612h-494.336l-13.004 39.612c-2.792 8.506-10.56 14.39-19.502 14.776l-65.466 2.818c-11.92 0.536-21.896-8.694-22.406-20.556s8.692-21.892 20.556-22.404l50.604-2.178 13.006-39.62c0.098-0.334 0.21-0.658 0.322-0.984l58.158-177.166c2.972-9.056 11.384-14.8 20.424-14.8 2.222 0 4.484 0.348 6.71 1.078 11.282 3.704 17.424 15.852 13.722 27.132l-49.008 149.292h451.514l-49.412-168.596-345.956-24.754c-0.868-0.062-1.732-0.178-2.584-0.344-19.716-3.848-35.416-18.23-40.976-37.536s0.086-39.836 14.738-53.582c9.912-9.298 22.854-14.42 36.442-14.42h313.866c11.874 0 21.5 9.624 21.5 21.5s-9.626 21.5-21.5 21.5h-313.866c-2.618 0-5.112 0.986-7.020 2.78-4.13 3.876-3.362 8.51-2.84 10.322 0.492 1.706 2.124 5.64 6.944 7.006l359.22 25.704c8.958 0.64 16.572 6.782 19.098 15.398l61.684 210.474c1.906 6.498 0.636 13.516-3.424 18.936zM612.516 263.146c-22.536 0-40.804-18.268-40.804-40.804s18.268-40.804 40.804-40.804 40.804 18.27 40.804 40.804-18.268 40.804-40.804 40.804zM422.096 263.146c-22.536 0-40.804-18.268-40.804-40.804s18.268-40.804 40.804-40.804 40.804 18.27 40.804 40.804-18.268 40.804-40.804 40.804zM401.452 493.91l46.62 56.378c8.5 10.28 1.236 25.818-12.102 25.886l-90.608 0.47 29.088-78.172c4.244-11.408 19.246-13.942 27.002-4.562z" /> -<glyph unicode="" glyph-name="wordpress" d="M512 813.616c-205.392 0-372.608-167.072-372.608-372.608s167.232-372.608 372.608-372.608 372.608 167.232 372.608 372.608-167.232 372.608-372.608 372.608zM176.944 440.992c0 48.528 10.368 94.656 28.992 136.272l159.856-437.824c-111.792 54.384-188.864 169.024-188.864 301.552zM512 105.952c-32.912 0-64.608 4.8-94.656 13.68l100.512 292.080 102.912-282.16c0.752-1.648 1.504-3.152 2.4-4.656-34.704-12.176-72.112-18.928-111.184-18.928zM558.128 598.016c20.128 1.056 38.32 3.152 38.32 3.152 18.032 2.096 15.92 28.704-2.096 27.648 0 0-54.24-4.208-89.248-4.208-32.912 0-88.192 4.208-88.192 4.208-18.032 1.056-20.128-26.592-2.096-27.648 0 0 17.136-2.096 35.152-3.152l52.128-143.040-73.328-219.808-122 362.848c20.128 1.056 38.32 3.152 38.32 3.152 18.032 2.096 15.92 28.704-2.096 27.648 0 0-54.24-4.208-89.248-4.208-6.304 0-13.68 0.144-21.632 0.448 59.952 90.896 162.864 150.992 279.904 150.992 87.136 0 166.624-33.36 226.272-87.888-1.504 0.144-2.848 0.304-4.352 0.304-32.912 0-56.192-28.704-56.192-59.504 0-27.648 15.92-50.928 32.912-78.576 12.768-22.24 27.648-50.928 27.648-92.4 0-28.704-10.976-61.904-25.536-108.336l-33.36-111.632-121.248 360zM680.432 151.472l102.32 295.84c19.088 47.776 25.536 85.936 25.536 120.048 0 12.32-0.752 23.744-2.256 34.4 26.144-47.776 41.024-102.464 41.024-160.768 0-123.648-67.008-231.536-166.624-289.52z" /> -<glyph unicode="" glyph-name="working-hours" d="M966.368 340.544c-23.088 27.744-58.464 44.32-94.608 44.32h-7.856c19.84 26.512 31.728 59.28 31.728 94.864v31.712c0 87.6-71.264 158.864-158.864 158.864s-158.864-71.264-158.864-158.864v-31.712c0-35.584 11.904-68.352 31.728-94.864h-7.968c-36.992 0-72.96-17.12-96.192-45.808-19.312-23.84-27.248-52.416-22.976-81.040h-53.504v32.912c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.152c-59.056 6.272-113.008 29.744-156.88 65.216l21.936 22.016c12.464 12.512 12.432 32.784-0.080 45.248-12.528 12.464-32.784 12.432-45.264-0.096l-21.824-21.904c-35.44 43.856-58.864 97.76-65.136 156.768h31.168c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.168c6.272 59.008 29.712 112.928 65.136 156.784l21.824-21.904c6.256-6.288 14.464-9.424 22.672-9.424s16.336 3.104 22.592 9.328c12.512 12.464 12.56 32.736 0.080 45.248l-21.936 22.016c43.872 35.488 97.824 58.944 156.88 65.216v-31.168c0-17.664 14.336-32 32-32s32 14.336 32 32v31.136c10.224-1.088 20.384-2.608 30.368-4.72 2.24-0.464 4.464-0.688 6.656-0.688 14.8 0 28.096 10.336 31.28 25.376 3.664 17.296-7.392 34.288-24.688 37.936-22.72 4.8-46.144 7.44-69.584 7.824-1.056 0.016-2.048-0.176-3.088-0.256-0.992 0.096-1.936 0.304-2.944 0.304-99.392 0-189.568-39.968-255.456-104.64-0.896-0.72-1.84-1.344-2.656-2.16-0.864-0.864-1.536-1.84-2.288-2.784-64.64-65.888-104.608-156.064-104.608-255.44s39.984-189.584 104.64-255.472c0.736-0.912 1.392-1.872 2.24-2.72 0.816-0.816 1.76-1.44 2.64-2.144 57.584-56.512 133.728-94.192 218.368-102.768l22.848-159.888h-280.24c-17.664 0-32-14.336-32-32s14.336-32 32-32h824.592c17.664 0 32 14.336 32 32 0 9.328-4.064 17.664-10.448 23.52l41.632 225.088c5.776 31.296-2.704 62.528-23.888 87.968zM641.92 479.712v31.712c0 52.32 42.56 94.864 94.864 94.864s94.864-42.544 94.864-94.864v-31.712c0-52.32-42.56-94.864-94.864-94.864s-94.864 42.544-94.864 94.864zM546.080 265.024c-3.12 14.704 3.248 26.464 9.136 33.728 11.040 13.632 28.848 22.096 46.464 22.096h64.096l56.544-28.336c4.512-2.272 9.424-3.392 14.336-3.392s9.792 1.12 14.288 3.376l56.784 28.336h64.032c17.104 0 34.512-8.144 45.424-21.248 6.224-7.488 13.024-19.68 10.128-35.392l-42.224-228.24h-111.424l26.496 185.488c1.312 9.184-1.424 18.48-7.504 25.504-6.080 7.008-14.896 11.024-24.176 11.024h-220.944l-1.472 7.024zM447.376 35.984l-22.576 158.016h306.784l-22.576-158.016h-261.648zM134.192 67.136h126.864c17.664 0 32 14.336 32 32s-14.336 32-32 32h-126.864c-17.664 0-32-14.336-32-32s14.336-32 32-32zM134.192 162.288h31.712c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.712c-17.664 0-32-14.336-32-32s14.336-32 32-32zM565.2 808.608c15.968-10.768 30.992-23.12 44.64-36.736 6.24-6.224 14.416-9.328 22.592-9.328s16.416 3.136 22.672 9.408c12.464 12.528 12.432 32.784-0.080 45.264-16.528 16.464-34.704 31.424-54.032 44.448-14.656 9.872-34.544 6.032-44.416-8.64-9.888-14.656-6.016-34.544 8.64-44.416zM253.84 415.744c6.256-6.24 14.416-9.344 22.608-9.344s16.4 3.136 22.656 9.408l61.888 62.032c11.024-4.896 23.2-7.68 36.016-7.68 48.992 0 88.832 39.84 88.832 88.832 0 37.696-23.632 69.904-56.832 82.784v24.16c8.096 0.064 16.176 3.168 22.352 9.344 12.496 12.496 12.496 32.768 0 45.264l-31.712 31.696c-0.384 0.384-0.816 0.64-1.216 0.992-1.168 1.056-2.336 2.096-3.648 2.976-0.832 0.56-1.728 0.944-2.592 1.408-0.976 0.528-1.904 1.12-2.928 1.536-1.008 0.416-2.064 0.656-3.088 0.96-0.96 0.288-1.888 0.656-2.896 0.848-1.808 0.352-3.648 0.512-5.488 0.56-0.256 0-0.496 0.080-0.768 0.080s-0.496-0.064-0.768-0.080c-1.84-0.048-3.68-0.192-5.488-0.56-1.024-0.208-1.968-0.576-2.96-0.88-1.008-0.304-2.032-0.528-3.008-0.928-1.136-0.464-2.16-1.104-3.216-1.696-0.768-0.416-1.552-0.752-2.288-1.248-1.76-1.184-3.408-2.512-4.912-4.016l-31.696-31.68c-12.496-12.48-12.496-32.752 0-45.248 6.176-6.176 14.256-9.28 22.336-9.344v-24.144c-33.264-12.864-56.96-45.088-56.96-82.8 0-12.784 2.768-24.928 7.664-35.92l-61.92-62.080c-12.48-12.496-12.448-32.768 0.048-45.248zM397.008 534.176c-6.864 0-13.088 2.768-17.616 7.248-0.032 0.032-0.048 0.080-0.080 0.112 0 0-0.032 0.016-0.032 0.032-4.464 4.496-7.232 10.64-7.232 17.44 0 13.696 11.2 24.848 24.96 24.848 13.696 0 24.832-11.136 24.832-24.848s-11.136-24.832-24.832-24.832z" /> -<glyph unicode="" glyph-name="wrapper-link" d="M918.793 788.834h-44.667v44.667c0 11.851-9.607 21.458-21.458 21.458s-21.458-9.607-21.458-21.458v-44.667h-44.667c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458h44.667v-44.667c0-11.853 9.607-21.458 21.458-21.458s21.458 9.605 21.458 21.458v44.667h44.667c11.853 0 21.458 9.607 21.458 21.458s-9.605 21.458-21.458 21.458zM852.102 639.793c-11.853 0-21.458-9.607-21.458-21.458v-320.111l-148.143-148.143h-454.712c-18.987 0-34.433 15.446-34.433 34.433v526.971c0 18.987 15.446 34.433 34.433 34.433h475.837c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-475.837c-42.649 0-77.349-34.698-77.349-77.349v-526.971c0-42.651 34.7-77.349 77.349-77.349h568.422c42.649 0 77.349 34.698 77.349 77.349v433.819c0 11.851-9.607 21.458-21.458 21.458zM618.64 431.694c-8.38-8.38-8.38-21.967 0-30.347 4.19-4.19 9.683-6.286 15.174-6.286s10.983 2.096 15.174 6.286l43.796 43.798c24.526 24.526 38.034 57.134 38.034 91.819s-13.508 67.295-38.034 91.821c-24.526 24.526-57.134 38.034-91.819 38.034s-67.295-13.508-91.821-38.032l-43.798-43.798c-8.38-8.38-8.38-21.965 0-30.345 8.378-8.38 21.965-8.38 30.347 0l43.798 43.796c16.42 16.42 38.251 25.462 61.474 25.462s45.052-9.042 61.472-25.462 25.462-38.251 25.462-61.474-9.042-45.052-25.462-61.474l-43.798-43.796zM405.36 464.308c8.38 8.38 8.38 21.965 0 30.345s-21.967 8.38-30.347 0l-43.798-43.796c-50.629-50.629-50.629-133.010 0-183.639 24.526-24.526 57.136-38.034 91.821-38.034s67.295 13.508 91.821 38.034l43.798 43.798c8.38 8.38 8.38 21.965 0 30.347s-21.967 8.38-30.347 0l-43.796-43.796c-16.422-16.422-38.251-25.464-61.474-25.464s-45.052 9.042-61.474 25.464c-33.896 33.896-33.896 89.050 0 122.946l43.798 43.798zM602.451 538.451c-8.378 8.38-21.967 8.38-30.345 0l-150.556-150.554c-8.38-8.38-8.38-21.967 0-30.347 4.19-4.19 9.681-6.284 15.172-6.284s10.983 2.096 15.172 6.284l150.556 150.556c8.38 8.38 8.38 21.967 0 30.347z" /> -<glyph unicode="" glyph-name="xmark" d="M557.248 448l129.376 129.376c12.496 12.496 12.496 32.752 0 45.248-12.48 12.496-32.768 12.496-45.248 0l-129.376-129.376-129.376 129.376c-12.48 12.496-32.768 12.496-45.248 0-12.496-12.496-12.496-32.752 0-45.248l129.376-129.376-129.376-129.376c-12.496-12.496-12.496-32.752 0-45.248 6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376l129.376 129.376 129.376-129.376c6.24-6.256 14.432-9.376 22.624-9.376s16.384 3.12 22.624 9.376c12.496 12.496 12.496 32.752 0 45.248l-129.376 129.376z" /> -<glyph unicode="" glyph-name="x-twitter" d="M593.28 493.072l257.328 294.048h-117.824l-194.080-221.792-167.712 221.792h-242.976l290.208-379.664-275.184-314.576h117.984l212.272 242.656 185.744-242.656h236.976l-302.72 400.192zM265.344 720.368h70.096l421.216-557.056h-65.248l-426.064 557.056z" /> -<glyph unicode="" glyph-name="youtube" d="M920.592 646.992c-9.84 37.024-38.736 66.080-75.44 75.904-66.544 17.984-333.296 17.984-333.296 17.984s-266.768 0-333.28-17.984c-36.704-9.824-65.6-38.88-75.44-75.904-17.808-67.008-17.808-206.624-17.808-206.624s0-139.648 17.808-206.64c9.84-36.992 38.736-64.816 75.44-74.64 66.528-17.984 333.28-17.984 333.28-17.984s266.752 0 333.296 17.984c36.704 9.824 65.6 37.776 75.44 74.64 17.808 67.008 17.808 206.64 17.808 206.64s0 139.616-17.808 206.624zM837.504 255.888c-1.776-6.624-7.232-11.744-14.576-13.712l-0.192-0.064c-5.312-1.44-38.496-8.784-171.344-12.784-72.912-2.192-138.864-2.224-139.52-2.224s-66.624 0.032-139.52 2.224c-132.832 4-166.016 11.344-171.312 12.784l-0.224 0.064c-3.536 0.944-12.032 4.176-14.56 13.648-10.832 40.752-14.896 134.848-14.912 184.544 0.016 49.728 4.096 143.808 14.912 184.544 1.92 7.2 7.632 13.056 14.56 14.912l0.224 0.064c5.296 1.44 38.48 8.784 171.312 12.784 72.816 2.192 138.704 2.224 139.52 2.224s66.704-0.032 139.52-2.224c132.832-4 166.032-11.344 171.344-12.784l0.192-0.064c6.928-1.856 12.64-7.712 14.56-14.912 10.832-40.752 14.896-134.832 14.912-184.512-0.016-49.712-4.080-143.728-14.896-184.512zM424.72 313.568l222.88 126.816-222.88 126.816v-253.632z" /> +<?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="rtmicon-regular" 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="accordion" d="M835.936 588.288h-647.872c-32.8 0-59.488-26.688-59.488-59.488v-161.312c0-32.8 26.688-59.488 59.488-59.488h647.872c32.8 0 59.488 26.688 59.488 59.488v161.312c0 32.8-26.688 59.488-59.488 59.488zM824.352 426.848l-461.376-0.352c-11.84 0-21.472 9.6-21.472 21.44s9.568 21.472 21.44 21.472l461.376 0.352c5.92 0 11.296-2.4 15.168-6.304s6.304-9.248 6.304-15.136c0.032-11.872-9.568-21.472-21.44-21.472zM265.248 409.92c1.152-3.52-2.88-6.432-5.92-4.288l-28.512 20.736-28.512-20.736c-3.008-2.176-7.040 0.768-5.888 4.288l10.912 33.568-28.544 20.736c-3.008 2.176-1.472 6.912 2.272 6.912h35.264l10.912 33.568c1.152 3.52 6.112 3.52 7.296 0l10.88-33.568h35.264c3.712 0 5.248-4.736 2.24-6.912l-28.512-20.704 10.912-33.568zM852.512 277.824c-11.84 0-21.472-9.6-21.472-21.472 0-11.648-9.472-21.12-21.12-21.12h-595.68c-11.648 0-21.12 9.472-21.12 21.12 0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472c0-35.296 28.736-64.032 64.032-64.032h595.68c35.328 0 64.032 28.736 64.032 64.032 0 11.84-9.6 21.472-21.472 21.472zM769.056 150.336c-11.84 0-21.472-9.6-21.472-21.472 0-11.648-9.472-21.12-21.12-21.12h-428.768c-11.648 0-21.12 9.472-21.12 21.12 0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472c0-35.328 28.736-64.032 64.032-64.032h428.768c35.328 0 64.032 28.736 64.032 64.032 0 11.84-9.6 21.472-21.472 21.472zM171.68 618.304c11.84 0 21.472 9.6 21.472 21.472 0 11.648 9.472 21.12 21.12 21.12h595.68c11.648 0 21.12-9.472 21.12-21.12 0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472c0 35.296-28.736 64.032-64.032 64.032h-595.68c-35.328 0-64.032-28.736-64.032-64.032 0-11.84 9.6-21.472 21.472-21.472zM255.104 745.792c11.84 0 21.472 9.6 21.472 21.472 0 11.648 9.472 21.12 21.12 21.12h428.768c11.648 0 21.12-9.472 21.12-21.12 0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472c0 35.328-28.736 64.032-64.032 64.032h-428.768c-35.328 0-64.032-28.736-64.032-64.032 0-11.84 9.6-21.472 21.472-21.472z" /> +<glyph unicode="" glyph-name="account-balance" d="M912.736 715.296c-1.28 0.544-2.592 1.024-3.936 1.44-2.688 0.832-5.504 1.44-8.384 1.696-1.44 0.16-2.912 0.224-4.384 0.224h-768c-1.472 0-2.944-0.096-4.416-0.224-2.912-0.288-5.696-0.864-8.384-1.696-1.344-0.416-2.656-0.896-3.936-1.44-15.424-6.528-26.272-21.824-26.272-39.616v-469.312c0-23.744 19.264-43.008 43.008-43.008h768c23.744 0 43.008 19.264 43.008 43.008v469.312c0 17.792-10.816 33.088-26.24 39.616zM512 418.048c-29.472 0-53.472 24-53.472 53.472s23.968 53.472 53.472 53.472 53.472-23.968 53.472-53.472-24-53.472-53.472-53.472zM512 330.944c53.472 0 99.168-34.048 116.544-81.6h-233.024c17.376 47.552 63.040 81.6 116.544 81.6zM621.888 385.824c18.496 23.648 29.568 53.408 29.568 85.696 0 76.896-62.56 139.456-139.456 139.456s-139.456-62.56-139.456-139.456c0-32.288 11.072-62.048 29.6-85.728-48.448-29.888-83.936-78.912-95.776-136.48h-78.304c-10.912 25.664-31.424 46.304-57.024 57.376v269.184c25.376 10.976 45.792 31.36 56.768 56.768h568.48c10.976-25.376 31.36-45.792 56.736-56.768v-269.184c-25.568-11.072-46.112-31.712-57.024-57.376h-78.24c-11.84 57.568-47.328 106.592-95.808 136.48z" /> +<glyph unicode="" glyph-name="add" d="M682.688 483.008h-127.648v127.648c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-127.648h-127.648c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h127.648v-127.648c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v127.648h127.648c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="add-box" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM341.312 396.992h127.648v-127.648c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v127.648h127.648c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008h-127.648v127.648c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-127.648h-127.648c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008z" /> +<glyph unicode="" glyph-name="add-business" d="M336.096 738.336h351.84c23.744 0 43.008 19.232 43.008 43.008s-19.264 43.008-43.008 43.008h-351.84c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM896 184.352h-42.336v42.336c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.264-43.008-43.008v-42.336h-42.336c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h42.336v-42.336c0-23.744 19.264-43.008 43.008-43.008s43.008 19.264 43.008 43.008v42.336h42.336c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008zM597.312 184.352h-84.992v212.672h255.328v-42.336c0-23.744 19.264-43.008 43.008-43.008s43.008 19.264 43.008 43.008v42.336c15.36 0.096 29.504 8.416 37.088 21.792 7.616 13.472 7.424 30.016-0.544 43.328l-128 213.312c-7.776 12.96-21.76 20.864-36.864 20.864h-426.688c-15.104 0-29.088-7.936-36.864-20.864l-128-213.312c-7.968-13.28-8.192-29.824-0.544-43.328 7.584-13.408 21.728-21.696 37.088-21.792v-255.648c0-23.744 19.232-43.008 43.008-43.008h256c1.152 0 2.24 0.096 3.36 0.192 1.12-0.096 2.208-0.192 3.36-0.192h121.28c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008zM323.008 610.336h377.984l76.384-127.328h-530.784l76.384 127.328zM426.336 184.352h-170.016v212.672h170.016v-212.672z" /> +<glyph unicode="" glyph-name="add-card" d="M810.688 209.312c-23.744 0-43.008-19.264-43.008-43.008v-24.064h-298.016v58.144l135.2 20.768c11.264 1.728 21.408 7.872 28.16 17.088s9.568 20.672 7.808 31.968l-55.552 361.472h182.4v-38.688c0-23.744 19.264-43.008 43.008-43.008s43.008 19.232 43.008 43.008v81.696c0 23.744-19.264 43.008-43.008 43.008h-238.624l-18.624 121.248c-1.728 11.264-7.872 21.376-17.088 28.128s-20.672 9.536-31.968 7.808l-379.552-58.336c-11.264-1.728-21.376-7.872-28.16-17.088s-9.568-20.672-7.808-31.968l87.424-568.736c1.728-11.264 7.872-21.408 17.088-28.16 7.424-5.44 16.352-8.352 25.44-8.352 2.176 0 4.352 0.16 6.528 0.48l158.336 24.352v-87.904c0-23.744 19.232-43.008 43.008-43.008h384c23.744 0 43.008 19.264 43.008 43.008v67.040c0 23.744-19.264 43.008-43.008 43.008zM180.416 738.080l294.528 45.28 70.72-459.936s3.648-23.776 3.648-23.776l-294.528-45.28-74.368 483.712zM896 423.648h-42.336v42.304c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.304h-42.336c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h42.336v-42.336c0-23.744 19.264-43.008 43.008-43.008s43.008 19.264 43.008 43.008v42.336h42.336c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="add-circle" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.36c-64.352-64.352-149.888-99.776-240.896-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.864c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.864s-35.456-176.544-99.776-240.864zM682.688 483.008h-127.648v127.648c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-127.648h-127.648c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h127.648v-127.648c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v127.648h127.648c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="advanced-button" d="M789.344 558.496h-554.688c-35.84 0-64.992-29.152-64.992-64.992v-88.96c0-35.84 29.152-64.992 64.992-64.992h223.904l47.904-113.952-219.296 1.248v50.528c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-71.904c0-11.84 9.536-21.44 21.376-21.504l259.040-1.472 2.208-5.312c4.864-11.616 15.872-18.752 28.256-18.752 1.504 0 3.072 0.128 4.608 0.352 12.992 1.824 22.944 11.040 25.664 23.36l173.024-0.96c5.664 0 11.136 2.24 15.168 6.24s6.336 9.536 6.336 15.232v74.656c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-53.056l-146.272 0.832 4.96 42.304 87.776 9.216c14.272 1.504 25.504 12.32 27.296 26.336 1.792 13.888-6.272 27.104-19.584 32.096l-11.872 4.448h110.176c35.84 0 64.992 29.152 64.992 64.992v88.96c0 35.84-29.152 64.992-64.992 64.992zM556.992 339.52l68.48-25.728-45.088-4.736c-13.856-1.472-24.672-12-26.272-25.664l-5.504-47.072-53.088 126.304 61.504-23.136zM256 427.488c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h512c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-512zM257.344 597.344c11.872 0 21.504 9.632 21.504 21.504v42.304h84.128c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-105.632c-11.872 0-21.504-9.632-21.504-21.504v-63.808c0-11.872 9.632-21.504 21.504-21.504zM661.344 661.152h85.184v-42.304c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v63.808c0 11.872-9.632 21.504-21.504 21.504h-106.656c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM382.080 766.848l65.824-47.808c3.2-2.336 4.576-6.464 3.328-10.24l-25.152-77.376c-2.848-8.8 7.232-16.128 14.72-10.688l65.824 47.808c3.2 2.336 7.552 2.336 10.784 0l65.824-47.808c7.488-5.44 17.568 1.888 14.72 10.688l-25.152 77.376c-1.216 3.776 0.128 7.904 3.328 10.24l65.824 47.808c7.488 5.44 3.648 17.312-5.632 17.312h-81.344c-3.968 0-7.488 2.56-8.736 6.336l-25.152 77.376c-2.848 8.8-15.328 8.8-18.208 0l-25.152-77.376c-1.216-3.776-4.736-6.336-8.736-6.336h-81.344c-9.28 0-13.12-11.84-5.632-17.312z" /> +<glyph unicode="" glyph-name="advanced-google-map" d="M886.88 556.992l-151.808 60.736c-9.696 3.872-20 5.824-30.336 5.792h-0.032c-0.16 0-0.32 0-0.48 0-0.192 0-0.416 0.032-0.608 0.032-0.384 0-0.736-0.032-1.12-0.064-0.16 0-0.32 0-0.512 0-10.336-0.352-20.64-2.688-30.208-6.912l-160.256-71.232-181.056 72.416c-9.408 3.744-19.424 5.696-29.44 5.792-0.032-0.032-0.032 0-0.064 0-0.192 0-0.352 0-0.544 0s-0.352 0.032-0.544 0.032c-0.256 0-0.512-0.032-0.768-0.032-0.16 0-0.352 0-0.512 0-10.752-0.224-21.408-2.56-31.328-6.944l-132.96-59.104c-29.344-13.024-48.32-42.208-48.32-74.336v-309.984c0-27.648 13.824-53.12 37.024-68.192 13.44-8.736 28.8-13.152 44.288-13.152 11.2 0 22.464 2.304 33.088 7.040l84.32 37.472c4.928 2.208 10.272 3.296 15.616 3.296 4.864 0 9.696-0.928 14.272-2.72l189.44-75.776c2.528-1.024 5.28-1.536 8-1.536 3.008 0 5.952 0.64 8.736 1.856l168.512 74.88c9.408 4.192 20.32 4.384 29.888 0.544l107.328-42.912c25.088-10.048 53.44-6.976 75.808 8.16s35.744 40.32 35.744 67.36v312.064c0 33.44-20.064 63.104-51.136 75.52zM182.976 138.016c-12.128-5.376-25.44-4.32-36.544 2.88s-17.472 18.976-17.472 32.224v309.984c0 15.168 8.96 28.96 22.816 35.104l126.688 56.32v-395.040c-3.808-1.056-7.552-2.368-11.168-4l-84.32-37.472zM511.584 104.256l-181.056 72.416c-3.008 1.184-6.048 2.208-9.152 3.040 0 0 0 0 0 0v395.456s182.688-73.056 182.688-73.056c5.344-2.144 11.488-2.016 16.704 0.32l161.44 71.744v-394.912c-3.52-1.024-6.976-2.272-10.368-3.776l-160.256-71.232zM895.104 169.44c0-12.96-6.144-24.544-16.864-31.808s-23.808-8.672-35.84-3.84l-107.296 42.912c-3.264 1.312-6.592 2.368-9.984 3.264 0 0 0 0 0 0v395.552s145.824-58.336 145.824-58.336c14.656-5.856 24.16-19.872 24.16-35.68v-312.064zM412.512 702.624l47.968-34.848-18.336-56.384c-3.264-10.080 8.256-18.432 16.8-12.224l47.968 34.848 47.968-34.848c8.576-6.208 20.096 2.144 16.8 12.224l-18.336 56.384 47.968 34.848c8.576 6.208 4.16 19.776-6.432 19.776h-59.296l-18.336 56.384c-3.264 10.048-17.504 10.048-20.768 0l-18.336-56.384h-59.296c-10.592 0-14.976-13.536-6.432-19.776zM512.032 450.848c-54.72 0-99.232-44.512-99.232-99.232 0-36.384 39.616-105.024 72.864-156.192 5.824-8.96 15.68-14.304 26.368-14.304s20.544 5.344 26.368 14.336c33.248 51.168 72.832 119.776 72.832 156.16 0 54.72-44.48 99.232-99.2 99.232zM512.032 405.408c26.592 0 48.16-21.568 48.16-48.16s-21.568-48.16-48.16-48.16-48.16 21.568-48.16 48.16 21.568 48.16 48.16 48.16z" /> +<glyph unicode="" glyph-name="advanced-heading" d="M367.584 573.792l-85.632-250.048h59.488l15.072 49.248h102.016l15.168-49.248h59.104l-85.248 250.048h-79.936zM367.968 410.496l36.736 120.096h5.312l36.96-120.096h-79.008zM736.608 489.888c-6.048 12.992-15.232 22.592-27.456 28.8s-27.968 9.28-47.168 9.28c-11.872 0-23.104-1.28-33.728-3.776s-19.968-6.368-28.032-11.552c-8.096-5.184-14.912-11.552-20.448-19.136s-9.856-16.544-12.896-26.912l48.128-14.784c2.016 7.84 5.248 14.336 9.664 19.52s9.728 8.96 15.904 11.36c6.176 2.4 12.832 3.616 19.904 3.616 11.104 0 19.2-2.528 24.256-7.584s7.584-11.104 7.584-18.176c0-5.056-1.28-8.896-3.776-11.552s-6.368-4.544-11.552-5.696c-5.184-1.12-11.68-2.336-19.52-3.616-15.68-2.272-29.312-4.928-40.928-7.968s-21.536-6.816-29.728-11.36c-8.224-4.544-14.4-10.56-18.56-17.984s-6.24-16.608-6.24-27.456c0-12.128 2.4-22.368 7.2-30.688s11.488-14.72 20.096-19.136c8.576-4.416 18.56-6.624 29.92-6.624 11.872 0 22.528 2.336 32 7.008s17.504 10.976 24.064 18.944c6.56 7.968 11.744 16.608 15.52 25.952h6.432c0.512-8.096 1.184-16.288 2.080-24.64s1.696-15.648 2.464-21.984h48.864c-1.024 9.088-1.888 18.24-2.656 27.456s-1.312 18.432-1.696 27.648c-0.384 9.216-0.576 18.24-0.576 27.104v33.728c0 20.448-3.040 37.184-9.088 50.208zM683.936 379.808c-4.032-4.8-8.32-8.768-12.896-11.936s-9.344-5.632-14.4-7.392c-5.056-1.76-9.856-2.656-14.4-2.656-8.352 0-15.040 2.272-20.096 6.816s-7.584 10.72-7.584 18.56c0 6.048 1.376 10.848 4.16 14.4s6.688 6.24 11.744 8.16c5.056 1.888 10.72 3.456 17.056 4.736s12.704 2.4 19.136 3.424c6.432 1.024 12.736 2.464 18.944 4.352 2.656 0.8 5.088 1.76 7.392 2.848v-24.992c-2.016-6.048-5.056-11.488-9.088-16.288zM852.352 715.84h-191.040c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h191.040c23.968 0 43.456-19.488 43.456-43.456v-360.736c0-23.968-19.488-43.456-43.456-43.456h-680.736c-23.968 0-43.456 19.488-43.456 43.456v360.736c0 23.968 19.488 43.456 43.456 43.456h191.040c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-191.040c-47.68 0-86.464-38.784-86.464-86.464v-360.736c0-47.68 38.784-86.464 86.464-86.464h680.736c47.68 0 86.464 38.784 86.464 86.464v360.736c0 47.68-38.784 86.464-86.464 86.464zM382.080 766.848l65.824-47.808c3.2-2.336 4.576-6.464 3.328-10.272l-25.152-77.376c-2.848-8.8 7.232-16.128 14.72-10.688l65.824 47.808c3.2 2.336 7.552 2.336 10.784 0l65.824-47.808c7.488-5.44 17.568 1.888 14.72 10.688l-25.152 77.376c-1.216 3.776 0.128 7.904 3.328 10.272l65.824 47.808c7.488 5.44 3.648 17.312-5.632 17.312h-81.344c-3.968 0-7.488 2.56-8.736 6.336l-25.152 77.376c-2.848 8.8-15.328 8.8-18.208 0l-25.152-77.376c-1.216-3.776-4.736-6.336-8.736-6.336h-81.344c-9.28 0-13.12-11.84-5.632-17.312z" /> +<glyph unicode="" glyph-name="advanced-hero-slider" d="M737.28 662.688h-613.376c-22.848 0-41.408-18.592-41.408-41.408v-344.928c0-22.848 18.592-41.408 41.408-41.408h613.376c22.848 0 41.408 18.592 41.408 41.408v344.928c0 22.848-18.592 41.408-41.408 41.408zM735.776 277.824h-610.368v274.4l62.080 67.52h548.288v-341.92zM808.992 640.832c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c5.024 0 8.352-2.976 8.352-4.96v-288.288c0-1.984-3.328-4.96-8.352-4.96-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c28.256 0 51.264 21.472 51.264 47.872v288.288c0 26.4-23.008 47.872-51.264 47.872zM888.256 617.856c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c4.448 0 7.328-1.6 8.352-2.528v-247.232c-1.024-0.928-3.904-2.528-8.352-2.528-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c28.736 0 51.264 19.456 51.264 44.32v249.472c0 24.864-22.528 44.32-51.264 44.32zM491.36 364.064c-8.256 0-14.976-6.688-14.976-14.976s6.688-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.72 14.976-14.976 14.976zM445.568 349.088c0-8.256-6.72-14.976-14.976-14.976s-14.976 6.688-14.976 14.976c0 8.256 6.72 14.976 14.976 14.976s14.976-6.688 14.976-14.976zM369.824 334.112c8.256 0 14.976 6.72 14.976 14.976s-6.688 14.976-14.976 14.976-14.976-6.688-14.976-14.976 6.688-14.976 14.976-14.976zM358.368 498.944l36.704-26.656-14.016-43.136c-2.496-7.712 6.304-14.112 12.864-9.344l36.704 26.656 36.704-26.656c6.56-4.768 15.36 1.632 12.864 9.344l-14.016 43.136 36.704 26.656c6.56 4.768 3.2 15.104-4.896 15.104h-45.344l-14.016 43.136c-2.496 7.712-13.408 7.712-15.904 0l-14.016-43.136h-45.344c-8.096 0-11.456-10.368-4.896-15.104z" /> +<glyph unicode="" glyph-name="advanced-stick" d="M767.84 252.32l-1.184 358.080c0 29.44-23.968 53.408-53.344 53.408l-307.744 0.704c-11.84 0-21.44-9.568-21.472-21.408s9.568-21.472 21.408-21.504l307.744-0.704c5.792 0 10.496-4.704 10.496-10.56l1.184-358.080c0-11.84-9.632-21.472-21.408-21.472l-254.176 0.64v131.424c0 5.696-2.272 11.136-6.272 15.168s-9.472 6.272-15.168 6.272h-128.64v126.336c0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472v-136.032c0-5.696 2.272-11.136 6.272-15.168 31.52-31.52 52-55.552 73.632-81.024 21.248-24.992 43.232-50.816 76-83.552 4-4 9.44-6.272 15.104-6.272l276.096-0.704c35.488 0 64.384 28.864 64.384 64.448zM338.56 341.376h67.872v-78.208c-13.536 14.944-25.312 28.768-37.472 43.040-9.664 11.36-19.488 22.88-30.4 35.168zM342.432 536.768c4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.080 15.168 6.272c8.384 8.384 8.384 21.952 0 30.336l-60.256 60.256 45.536 45.952c11.776 11.904 9.792 31.936-4.512 40.64-9.92 6.048-21.12 7.936-34.464 0.704-0.224-0.128-0.448-0.256-0.672-0.416-9.664-6.304-22.144-6.080-31.072 1.216l-54.432 44.448c-6.688 5.472-10.144 13.888-9.568 22.528 0.288 3.904-0.256 7.616-1.44 11.168-6.016 18.368-29.696 23.552-43.36 9.856l-77.12-77.12c-13.6-13.6-8.512-36.992 9.664-43.296 2.496-0.864 5.024-1.408 7.52-1.536 0.48-0.032 0.928-0.032 1.376 0 8.736 0.448 17.184-2.944 22.656-9.76l44.992-56.256c6.88-8.608 7.232-20.48 1.472-29.888-7.040-11.552-6.496-23.648-0.832-34.72 8.128-15.84 29.44-19.072 41.984-6.4l52 52.448 60.128-60.128zM831.36 553.376c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c11.648 0 21.12-9.472 21.12-21.12v-361.632c0-11.84-9.632-21.472-21.472-21.472h-297.76c-11.648 0-21.12 9.472-21.12 21.12 0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472c0-35.296 28.736-64.032 64.032-64.032h297.76c35.488 0 64.384 28.864 64.384 64.384v361.632c0 35.328-28.736 64.032-64.032 64.032zM579.328 471.296h-45.344l-14.016 43.136c-2.496 7.712-13.408 7.712-15.904 0l-14.016-43.136h-45.344c-8.096 0-11.456-10.368-4.896-15.104l36.704-26.656-14.016-43.136c-2.496-7.712 6.304-14.112 12.864-9.344l36.704 26.656 36.704-26.656c6.56-4.768 15.36 1.632 12.864 9.344l-14.016 43.136 36.704 26.656c6.56 4.768 3.168 15.104-4.896 15.104z" /> +<glyph unicode="" glyph-name="advanced-tab" d="M874.080 670.976h-67.616v18.208c0 13.728-5.664 26.848-15.904 36.928l-16.512 16.224c-11.488 11.296-27.872 17.76-44.96 17.76h-118.304c-17.12 0-33.504-6.464-44.96-17.76l-7.488-7.36-7.488 7.36c-11.488 11.296-27.872 17.76-44.96 17.76h-118.304c-14.592 0-28.672-4.736-39.616-13.12 0 0 0 0 0 0-9.632 24.64-33.568 41.504-60.864 41.504h-137.856c-31.616 0-58.656-22.56-64.32-53.664l-0.352-1.92v-562.048c0-36.032 29.312-65.376 65.376-65.376h724.128c36.032 0 65.376 29.344 65.376 65.376v434.72c0 36.064-29.312 65.376-65.376 65.376zM610.752 717.088h118.304c5.824 0 11.392-2.016 14.848-5.408l16.544-16.256c1.952-1.92 3.040-4.16 3.040-6.24v-18.208h-180.192v18.208c0 3.104-0.288 6.176-0.864 9.184l13.536 13.312c3.456 3.392 8.992 5.408 14.848 5.408zM387.552 717.088h118.304c5.824 0 11.392-2.016 14.848-5.408l16.544-16.256c1.952-1.92 3.040-4.16 3.040-6.24v-18.208h-158.368c-10.784 0-20.032 7.68-22.016 18.272l-1.568 8.32 14.368 14.112c3.456 3.392 8.992 5.408 14.848 5.408zM896.448 170.88c0-12.352-10.048-22.368-22.368-22.368h-724.128c-12.352 0-22.368 10.048-22.368 22.368v557.856c2.528 9.824 11.392 16.768 21.664 16.768h137.824c10.784 0 20.032-7.68 22.016-18.272l8.576-45.888c5.76-30.912 32.8-53.376 64.256-53.376h492.192c12.32 0 22.368-10.048 22.368-22.368v-434.72zM212.416 425.504h316.928c14.048 0 25.504 11.456 25.504 25.504v92.352c0 14.048-11.456 25.504-25.504 25.504h-316.928c-14.048 0-25.504-11.424-25.504-25.504v-92.352c0-14.048 11.424-25.504 25.504-25.504zM323.36 505.6c2.112 2.112 4.992 3.392 8.16 3.392h158.208c6.368 0 11.552-5.152 11.552-11.52 0-3.2-1.312-6.080-3.392-8.16s-4.992-3.392-8.16-3.392h-158.208c-6.368 0-11.552 5.152-11.552 11.552 0 3.168 1.312 6.048 3.392 8.128zM216.224 510.016h22.432c1.056 0 2.016 0.672 2.336 1.696l4.608 14.112 2.336 7.2c0.832 2.624 4.576 2.624 5.44 0l2.336-7.2 4.576-14.112c0.352-1.024 1.28-1.696 2.368-1.696h22.432c2.784 0 3.936-3.552 1.696-5.184l-18.144-13.152c-0.864-0.64-1.216-1.76-0.896-2.784l6.944-21.312c0.864-2.624-2.176-4.832-4.416-3.2l-5.696 4.128-12.448 9.056c-0.864 0.608-2.048 0.608-2.912 0l-18.144-13.184c-2.24-1.632-5.248 0.576-4.416 3.2l3.296 10.112 3.648 11.232c0.352 1.024-0.032 2.144-0.896 2.784l-2.752 1.984-15.392 11.168c-2.24 1.632-1.088 5.184 1.696 5.184zM832 511.168h-213.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM190.72 341.312c0-11.872 9.632-21.504 21.504-21.504h457.184c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-457.184c-11.872 0-21.504-9.632-21.504-21.504zM752.16 278.4h-539.936c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h539.936c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="advanced-toggle" d="M654.944 426.656h-285.92c-99.744 0-180.576-80.832-180.576-180.576s80.832-180.608 180.576-180.608h285.92c49.856 0 95.008 20.224 127.712 52.896s52.896 77.856 52.896 127.712c0 99.744-80.864 180.576-180.608 180.576zM374.688 136.544c-60.032 0-108.704 48.672-108.704 108.672s48.672 108.704 108.704 108.704 108.672-48.672 108.672-108.704-48.672-108.672-108.672-108.672zM425.856 269.216h-25.472c-3.968 0-7.488 2.56-8.736 6.336l-7.872 24.256c-2.88 8.8-15.328 8.8-18.208 0l-7.872-24.256c-1.216-3.776-4.736-6.336-8.736-6.336h-25.472c-9.248 0-13.12-11.872-5.632-17.312l20.608-14.976c3.2-2.336 4.576-6.496 3.328-10.24l-7.872-24.256c-2.88-8.832 7.232-16.128 14.688-10.688l20.608 14.976c3.232 2.336 7.584 2.336 10.784 0l20.608-14.976c7.488-5.44 17.568 1.888 14.72 10.688l-7.872 24.256c-1.216 3.744 0.128 7.904 3.328 10.24l20.608 14.976c7.488 5.44 3.648 17.312-5.632 17.312zM369.024 470.816h285.92c99.744 0 180.608 80.832 180.608 180.576 0 49.856-20.224 95.008-52.896 127.712s-77.856 52.896-127.712 52.896h-285.92c-99.744 0-180.576-80.864-180.576-180.608 0-49.856 20.192-95.008 52.864-127.712s77.856-52.864 127.712-52.864zM369.024 788.992h285.92c75.872 0 137.6-61.728 137.6-137.6s-61.728-137.568-137.6-137.568h-285.92c-75.872 0-137.568 61.728-137.568 137.568s61.728 137.6 137.568 137.6zM648.064 541.888c60.032 0 108.672 48.672 108.672 108.672s-48.672 108.704-108.672 108.704-108.704-48.672-108.704-108.704 48.672-108.672 108.704-108.672zM596.864 674.528h25.472c3.968 0 7.488 2.56 8.736 6.336l7.872 24.224c2.848 8.832 15.328 8.832 18.208 0l7.872-24.224c1.248-3.776 4.768-6.336 8.736-6.336h25.472c9.248 0 13.088-11.872 5.632-17.312l-20.608-14.976c-3.232-2.336-4.544-6.496-3.328-10.272l7.872-24.256c2.848-8.8-7.232-16.128-14.72-10.688l-20.608 14.976c-3.2 2.336-7.552 2.336-10.784 0l-20.608-14.976c-7.488-5.44-17.568 1.888-14.72 10.688l7.872 24.256c1.248 3.776-0.096 7.936-3.328 10.272l-20.608 14.976c-7.488 5.44-3.648 17.312 5.632 17.312z" /> +<glyph unicode="" glyph-name="alarm-clock" d="M895.808 384.896c0 46.944-8.512 91.936-24.032 133.568 35.168 30.112 56.384 74.432 56.384 121.568 0 88.224-71.776 160-160 160-47.040 0-91.136-21.088-121.12-56.096-32.544 12.256-67.168 20.16-103.2 23.072v33.024c0 17.664-14.336 32-32 32s-32-14.336-32-32v-33.088c-35.84-3.040-70.304-10.976-102.688-23.2-30.016 35.136-74.208 56.288-121.312 56.288-88.224 0-160-71.776-160-160 0-47.328 21.376-91.84 56.864-122.016-15.392-41.472-23.84-86.336-23.84-133.12 0-122.432 57.728-231.552 147.328-301.792l-36.736-51.072h-15.584c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c10.304 0 19.968 4.96 25.984 13.312l47.808 66.496c54.336-29.568 116.608-46.4 182.72-46.4s127.808 16.672 182.016 46.016l47.52-66.112c6.016-8.352 15.68-13.312 25.984-13.312h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-15.616l-36.384 50.592c89.952 70.24 147.968 179.616 147.968 302.336zM768.192 736c52.928 0 96-43.040 96-96 0-22.304-7.936-43.552-21.6-60.448-32.832 55.488-79.2 102.016-134.592 135.008 16.8 13.568 37.952 21.44 60.192 21.44zM159.84 640c0 52.96 43.040 96 96 96 22.336 0 43.616-8 60.448-21.696-55.328-33.088-101.664-79.68-134.432-135.232-13.888 16.96-22.016 38.4-22.016 60.896zM192.832 384.896c0 175.168 141.76 317.76 316.576 319.36 0.8-0.064 1.6-0.256 2.4-0.256 0.96 0 1.824 0.192 2.752 0.256 44.96-0.32 87.648-10.016 126.432-27.168 0.224-0.16 0.416-0.352 0.64-0.448 1.568-0.896 3.264-1.6 4.928-2.208 109.216-50.848 185.28-161.344 185.28-289.536 0-176.192-143.328-319.52-319.52-319.52s-319.488 143.328-319.488 319.52zM543.808 474.4v133.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-133.6c-37.216-13.216-64-48.672-64-90.4 0-14.784 3.456-28.736 9.472-41.28l-63.712-63.552c-12.512-12.48-12.544-32.736-0.064-45.248 6.272-6.272 14.432-9.408 22.656-9.408s16.352 3.104 22.592 9.344l63.776 63.616c12.544-6.016 26.496-9.472 41.28-9.472 52.928 0 96 43.072 96 96 0 41.696-26.784 77.184-64 90.4zM511.84 352c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM300.288 845.376c13.952-10.784 34.048-8.224 44.896 5.728 3.744 4.832 23.392 12.864 38.656 12.864h256c15.264 0 34.88-8.032 38.656-12.864 6.336-8.16 15.808-12.416 25.376-12.416 6.816 0 13.696 2.176 19.52 6.656 13.952 10.784 16.576 30.816 5.792 44.8-21.376 27.744-65.152 37.792-89.344 37.792h-256c-24.192 0-67.968-10.080-89.344-37.792-10.752-13.984-8.16-34.016 5.792-44.8z" /> +<glyph unicode="" glyph-name="alert" d="M965.408 308.544l-358.144 568.032c-21.408 32.288-57.216 51.424-96.064 51.424-0.448 0-0.96 0-1.44 0-38.336-0.448-73.28-19.936-93.504-52.032l-357.248-566.688c-20.192-30.208-22.112-68.832-4.992-100.864s50.336-51.968 86.72-51.968h242.784v-156.448c0-17.664 14.336-32 32-32h188.448c17.664 0 32 14.336 32 32v156.448h247.36c36.288 0 69.472 19.904 86.56 51.936s15.232 70.688-4.512 100.192zM572 32h-124.448v124.448h124.448v-124.448zM913.504 238.528c-6.048-11.328-17.312-18.112-30.144-18.112h-742.592c-12.896 0-24.224 6.784-30.272 18.144s-5.408 24.448 2.208 35.84l357.728 567.424c8.736 13.888 23.36 21.984 40.16 22.176h0.672c17.28 0 33.216-8.48 42.336-22.176l358.208-568.128c7.136-10.688 7.776-23.808 1.728-35.168zM572.576 691.52h-125.632c-16.768 0-32.768-7.2-43.936-19.712-11.36-12.8-16.704-29.984-14.656-47.136l22.4-189.056c1.824-15.328 8.96-28.736 19.232-39.040-9.472-14.752-15.040-32.256-15.040-51.072 0-52.288 42.528-94.784 94.816-94.784s94.816 42.528 94.816 94.784c0 18.816-5.568 36.352-15.072 51.104 10.048 10.176 17.184 23.488 19.456 39.008l22.272 188.16c2.496 17.056-2.496 34.272-13.664 47.264-11.264 13.024-27.648 20.512-44.96 20.512zM567.264 627.52l-21.696-183.488c-0.352-2.24-2.144-3.744-4.352-3.744h-62.816c-1.92 0-3.84 1.376-4.032 2.848l-21.856 184.384h114.752zM509.792 314.656c-16.992 0-30.816 13.792-30.816 30.784s13.824 30.816 30.816 30.816 30.816-13.824 30.816-30.816-13.824-30.784-30.816-30.784zM792.416 753.12c8.192 0 16.384 3.136 22.624 9.376l94.24 94.24c12.48 12.48 12.48 32.736 0 45.248s-32.736 12.512-45.248 0l-94.24-94.24c-12.48-12.512-12.48-32.768 0-45.248 6.24-6.272 14.432-9.376 22.624-9.376zM826.592 673.824c-7.904-15.808-1.504-35.040 14.336-42.944l62.816-31.424c4.576-2.304 9.472-3.36 14.304-3.36 11.744 0 23.040 6.464 28.64 17.696 7.904 15.808 1.504 35.040-14.336 42.944l-62.816 31.424c-15.84 7.936-35.040 1.472-42.944-14.304zM204.512 762.528c6.272-6.272 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376c12.512 12.512 12.512 32.768 0 45.248l-94.24 94.24c-12.512 12.512-32.768 12.512-45.248 0s-12.48-32.736 0-45.248l94.208-94.208zM101.536 596.128c4.8 0 9.696 1.088 14.272 3.36l62.816 31.424c15.808 7.904 22.208 27.136 14.304 42.944-7.904 15.776-27.072 22.24-42.944 14.304l-62.816-31.424c-15.808-7.904-22.24-27.136-14.304-42.944 5.6-11.232 16.928-17.696 28.672-17.696z" /> +<glyph unicode="" glyph-name="analytics" d="M853.312 738.976h-128c-23.744 0-43.008-19.232-43.008-42.976v-554.336h-84.672v468.992c0 23.744-19.264 43.008-43.008 43.008h-127.968c-23.744 0-43.008-19.232-43.008-43.008v-468.992h-84.672v383.648c0 23.744-19.232 43.008-43.008 43.008h-127.968c-23.744 0-43.008-19.232-43.008-43.008v-426.688c0-23.744 19.264-43.008 43.008-43.008h725.312c23.744 0 42.976 19.264 42.976 43.008v597.344c0 23.744-19.264 42.976-42.976 42.976zM171.008 141.664v340.672h41.984v-340.672h-41.984zM469.664 141.664v426.016h41.984v-426.016h-41.984zM768.352 141.664v511.328h42.016v-511.328h-42.016zM128 610.336h170.688c10.304 0 20.256 3.712 28.064 10.4l86.976 74.912h183.648c11.424 0 22.336 4.544 30.4 12.608l72.736 72.736h152.864c23.744 0 42.976 19.232 42.976 43.008s-19.264 43.008-42.976 43.008h-170.688c-11.424 0-22.336-4.544-30.4-12.576l-72.736-72.736h-181.792c-10.304 0-20.256-3.68-28.064-10.4l-86.976-74.912h-154.72c-23.744 0-43.008-19.232-43.008-43.008s19.264-43.008 43.008-43.008z" /> +<glyph unicode="" glyph-name="anchor" d="M916.608 432.384c-14.24 8.576-32.096 8.224-45.952-0.928l-126.336-83.584c-15.808-10.464-22.912-30.080-17.472-48.256s22.208-30.592 41.184-30.592h42.432c-17.888-32.16-41.088-61.504-68.928-86.784-62.912-57.184-144.416-88.672-229.504-88.672-124.64 0-238.048 66.976-298.4 175.456h42.432c18.912 0 35.616 12.352 41.12 30.432s-1.408 37.664-17.088 48.224l-126.56 85.312c-13.792 9.312-31.744 9.792-46.016 1.312s-22.4-24.544-20.8-41.088c5.28-54.4 20.704-106.528 45.856-154.976 73.888-142.272 219.296-230.688 379.488-230.688 106.528 0 208.576 39.424 287.36 111.040 78.24 71.072 127.168 167.936 137.792 272.672 1.664 16.544-6.336 32.544-20.544 41.12zM321.696 374.976c20 0 37.92 8.928 50.048 23.040h97.28v-214.016c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v214.016h97.248c12.128-14.080 30.048-23.040 50.048-23.040 36.416 0 66.048 29.6 66.048 66.048s-29.6 66.016-66.048 66.016c-20 0-37.952-8.96-50.048-23.040h-97.248v133.792c49.664 17.728 85.312 65.216 85.312 120.896 0 70.784-57.568 128.352-128.352 128.352s-128.352-57.568-128.352-128.352c0-55.712 35.648-103.168 85.344-120.928v-133.76h-97.28c-12.128 14.080-30.048 23.040-50.048 23.040-36.416 0-66.016-29.6-66.016-66.016s29.6-66.048 66.016-66.048zM512 781.024c23.36 0 42.336-18.976 42.336-42.336s-18.976-42.336-42.336-42.336-42.336 18.976-42.336 42.336 19.008 42.336 42.336 42.336zM301.856 443.264c-0.064-0.736-0.128-1.504-0.128-2.272s0.064-1.504 0.128-2.272c-0.064 0.736-0.16 1.504-0.16 2.272s0.064 1.504 0.16 2.272z" /> +<glyph unicode="" glyph-name="android" d="M74.080 221.024h875.84c0 142.912-68.48 269.856-174.432 349.792l73.696 148.768c10.528 21.28 1.856 47.072-19.456 57.6s-47.072 1.856-57.6-19.424l-70.336-141.952c-57.408 27.648-121.792 43.168-189.824 43.168s-132.384-15.52-189.792-43.136l-70.336 141.952c-10.56 21.28-36.352 29.984-57.6 19.424s-29.984-36.352-19.424-57.6l73.696-148.736c-105.952-79.936-174.432-206.848-174.432-349.792zM760.832 469.888c45.696-45.696 77.28-101.728 92.544-162.848h-682.816c15.296 61.12 46.88 117.152 92.576 162.848 66.464 66.464 154.848 103.072 248.864 103.072s182.4-36.608 248.864-103.072zM341.312 373.024c23.552 0 42.688 19.104 42.688 42.688s-19.104 42.688-42.688 42.688-42.688-19.104-42.688-42.688 19.104-42.688 42.688-42.688zM682.688 373.024c23.552 0 42.688 19.104 42.688 42.688s-19.104 42.688-42.688 42.688-42.688-19.104-42.688-42.688 19.104-42.688 42.688-42.688z" /> +<glyph unicode="" glyph-name="animated-circle-button" d="M223.552 448c0 159.072 129.408 288.448 288.448 288.448 54.272 0 107.136-15.136 152.896-43.808 10.048-6.304 23.296-3.232 29.568 6.784s3.264 23.296-6.784 29.568c-52.576 32.928-113.344 50.336-175.68 50.336-182.72 0-331.36-148.64-331.36-331.36 0-66.4 19.584-130.464 56.608-185.28 4.16-6.144 10.912-9.44 17.792-9.44 4.128 0 8.32 1.184 12 3.68 9.824 6.624 12.416 19.968 5.76 29.792-32.224 47.68-49.248 103.456-49.248 161.248zM800.448 448c0-42.304-8.928-83.040-26.56-121.088-4.992-10.752-0.288-23.52 10.464-28.48 2.912-1.344 5.984-1.984 8.992-1.984 8.096 0 15.872 4.608 19.488 12.448 20.256 43.744 30.528 90.56 30.528 139.104 0 62.176-17.312 122.752-50.080 175.264-6.272 10.048-19.52 13.12-29.568 6.848s-13.12-19.52-6.848-29.568c28.512-45.664 43.584-98.4 43.584-152.512zM839.712 240.32l-149.12 56.064c34.784 40.896 55.776 93.856 55.776 151.616 0 129.216-105.152 234.368-234.368 234.368s-234.4-105.152-234.4-234.368 105.152-234.4 234.4-234.4c35.552 0 69.28 7.936 99.456 22.208l20.992-49.984c-37.536-17.28-78.432-26.272-120.48-26.272-56.64 0-111.456 16.384-158.528 47.424-9.888 6.496-23.2 3.776-29.728-6.112s-3.776-23.2 6.112-29.728c54.112-35.648 117.088-54.496 182.176-54.496 47.776 0 94.336 10.112 137.12 29.6l26.688-63.488c4.864-11.552 15.872-18.688 28.224-18.688 1.504 0 3.040 0.096 4.576 0.32 14.016 1.984 24.544 12.608 26.144 26.464l9.632 81.952 87.584 9.216c14.24 1.504 25.44 12.32 27.232 26.304 1.792 13.888-6.24 27.040-19.52 32.032zM706.336 199.104c-1.696-3.136-2.816-6.624-3.264-10.368l-1.408-11.968-4.096-34.976-10.432 24.864-16.896 40.128-25.664 61.088 129.728-48.8-44.992-4.736c-10.048-1.056-18.496-6.912-22.944-15.264zM512 256.512c-105.6 0-191.488 85.888-191.488 191.488s85.888 191.456 191.488 191.456 191.456-85.888 191.456-191.456c0-52.832-21.472-100.672-56.16-135.36l-16.832 6.336c-11.2 4.224-23.744 1.408-32-7.2-8-8.32-10.304-20.544-5.856-31.168l2.208-5.28c-25.056-12.064-53.184-18.848-82.816-18.848z" /> +<glyph unicode="" glyph-name="animated-heading" d="M853.344 704.544h-208.224v43.712h53.216c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-149.28c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h53.056v-43.712h-431.456c-47.136 0-85.504-38.368-85.504-85.504v-341.344c0-47.136 38.368-85.504 85.504-85.504h431.456v-44.448h-53.056c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h149.28c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-53.216v44.448h208.224c47.136 0 85.504 38.368 85.504 85.504v341.344c0 47.136-38.368 85.504-85.504 85.504zM170.656 235.2c-23.424 0-42.496 19.072-42.496 42.496v264.48l119.36 119.36h354.592v-112.192c-6.368-2.624-12.16-5.76-17.28-9.472-8.256-5.792-14.944-12.704-20.288-20.96s-9.152-17.376-11.136-27.648l35.648-11.808c2.016 11.808 6.24 21.184 12.48 28.096 0.192 0.192 0.384 0.384 0.576 0.576v-56.096c-12.352-3.744-22.592-8.352-30.656-13.792-8.032-5.568-13.824-12.48-17.824-20.288-3.776-8.032-5.568-17.152-5.568-27.648 0-14.272 2.688-25.856 8.48-35.008 5.568-9.376 13.152-16.064 22.752-20.736 6.848-3.264 14.528-5.312 22.848-6.176v-93.152h-431.456zM602.112 363.776c-1.952 1.088-3.776 2.336-5.472 3.744-6.912 5.792-10.464 14.272-10.464 25.632 0 9.376 2.24 16.704 6.912 22.080 2.496 3.008 5.536 5.664 9.024 7.936v-59.392zM645.12 436.416c5.984 0.992 11.904 1.952 17.952 2.688 9.152 1.12 17.376 2.912 24.96 5.344 2.464 0.672 4.448 1.792 6.464 2.688v-12c0-16.416-4.448-32.96-14.752-45.76-0.064-0.064-0.128-0.16-0.16-0.224-5.568-7.136-11.584-12.928-18.048-17.376-5.344-3.808-10.848-6.656-16.384-8.8v73.44zM689.376 472.768c-3.104-3.136-7.808-5.568-14.496-6.912-6.464-1.344-14.944-2.912-25.408-4.224-1.472-0.224-2.912-0.448-4.352-0.672v64.768c1.152 0.064 2.304 0.096 3.456 0.096 15.616 0 26.976-3.776 34.56-11.136 7.36-7.36 10.912-16.288 10.912-26.752 0-6.912-1.568-11.808-4.672-15.168zM895.84 277.696c0-23.424-19.072-42.496-42.496-42.496h-208.224v96c26.24 6.176 53.184 22.624 53.184 45.056 0 0 0.896-7.136 1.568-16.288 0.672-9.376 1.344-18.272 1.792-26.976h36.128c-0.896 8.928-1.568 18.72-2.464 28.992s-1.568 20.736-2.24 30.976c-0.448 10.464-0.672 20.064-0.448 29.216v48.832c0 19.84-3.136 36.128-9.376 49.28-6.016 12.928-15.392 22.528-27.424 28.544-12.256 6.24-27.648 9.152-45.92 9.152-1.632 0-3.2-0.064-4.8-0.096v103.712h208.224c23.424 0 42.496-19.072 42.496-42.496v-341.344zM359.84 613.184l-98.944-280.288h42.464l20.928 62.848h128.032l20.928-62.848h42.048l-98.528 280.288h-56.896zM334.176 425.472l51.584 155.008h5.088l51.584-155.008h-108.256z" /> +<glyph unicode="" glyph-name="apple" d="M740.832 406.4c-0.928 106.080 86.688 157.088 90.624 159.552-49.312 72.16-126.048 82.048-153.376 83.168-4.48 0.448-8.928 0.672-13.312 0.672-60.352 0-116.384-39.136-147.2-39.136-32.672 0-82.816 36.448-136.16 36.448-0.736 0-1.472 0-2.208-0.032-71.232-1.024-136.832-41.376-173.536-105.088-73.888-128.288-18.88-318.4 53.152-422.496 34.624-49.984 75.744-106.176 129.44-106.176 0.96 0 1.984 0 2.944 0.064 53.152 2.080 73.184 34.336 137.376 34.336 63.264 0 81.696-33.312 135.936-33.312 0.832 0 1.632 0 2.464 0 57.152 1.056 93.408 51.936 128.384 103.040 40.416 59.072 57.088 116.288 58.048 119.264-1.216 0.544-111.392 42.752-112.544 169.664zM724.416 166.048c-12.896-18.848-28.96-42.304-43.616-56.032-4.64-4.352-11.072-9.504-15.36-9.568-0.288 0-0.608 0-0.928 0-7.52 0-12.064 1.632-28.224 8.64-22.72 9.824-57.088 24.672-107.712 24.672-51.936 0-85.888-14.464-110.688-25.024-14.912-6.336-21.024-8.736-28.384-9.28-2.144 1.024-8.768 4.768-20 16.768-13.504 14.464-27.2 33.76-39.968 52.256-31.648 45.728-56.8 108.608-67.328 168.192-8.096 45.824-11.552 111.2 17.984 162.432 21.696 37.696 60.128 61.44 100.256 62.016h0.192s0.192 0 0.192 0c0.192 0 0.384 0 0.576 0 13.472 0 34.24-8.224 52.544-15.488 25.984-10.304 52.864-20.96 83.648-20.96 29.216 0 55.904 10.528 81.76 20.736 21.856 8.64 46.624 18.4 65.472 18.4 1.632 0 3.2-0.064 4.672-0.224l2.528-0.256 2.528-0.128c4.608-0.192 14.912-1.024 27.36-4.544-28.096-40.896-47.584-92.544-47.040-153.088 0.672-74.752 28.704-141.088 81.024-191.84 3.648-3.552 7.328-6.912 10.976-10.112-6.176-11.904-13.6-24.736-22.432-37.6zM519.904 658.912c47.424 0 94.656 28.192 124.16 63.904 31.36 37.952 52.448 90.784 46.688 143.328-45.216-1.824-99.84-30.112-132.256-68-29.024-33.6-54.496-87.328-47.616-138.848 3.008-0.256 6.016-0.352 9.024-0.352z" /> +<glyph unicode="" glyph-name="apps" d="M810.336 823.648h-596.672c-47.424 0-86.016-38.56-86.016-86.016v-596.672c0-47.424 38.56-86.016 86.016-86.016h596.672c47.424 0 86.016 38.592 86.016 86.016v596.672c0 47.424-38.592 86.016-86.016 86.016zM810.336 140.992h-596.672v596.672h596.672l0.064-596.672s0 0-0.064 0zM283.008 461.696h159.328c23.744 0 43.008 19.232 43.008 43.008v159.328c0 23.744-19.232 43.008-43.008 43.008h-159.328c-23.744 0-43.008-19.264-43.008-43.008v-159.328c0-23.744 19.264-43.008 43.008-43.008zM326.016 620.992h73.312v-73.312h-73.312v73.312zM580.48 461.344h159.328c23.744 0 43.008 19.232 43.008 43.008v159.328c0 23.744-19.264 43.008-43.008 43.008h-159.328c-23.744 0-43.008-19.264-43.008-43.008v-159.328c0-23.744 19.264-43.008 43.008-43.008zM623.52 620.672h73.312v-73.312h-73.312v73.312zM443.84 419.808h-159.328c-23.744 0-43.008-19.264-43.008-43.008v-159.328c0-23.744 19.264-43.008 43.008-43.008h159.328c23.744 0 43.008 19.264 43.008 43.008v159.328c0 23.744-19.232 43.008-43.008 43.008zM400.864 260.544h-73.312v73.312h73.312v-73.312zM740.992 419.808h-159.328c-23.744 0-43.008-19.264-43.008-43.008v-159.328c0-23.744 19.264-43.008 43.008-43.008h159.328c23.744 0 43.008 19.264 43.008 43.008v159.328c0 23.744-19.264 43.008-43.008 43.008zM697.984 260.544h-73.312v73.312h73.312v-73.312z" /> +<glyph unicode="" glyph-name="archive-post" d="M595.136 660.613h-247.115c-30.991 0-56.204-25.215-56.204-56.206v-312.118c0-30.991 25.213-56.206 56.204-56.206h330.96c30.991 0 56.204 25.215 56.204 56.206v239.698c0 11.875-9.625 21.5-21.5 21.5s-21.5-9.625-21.5-21.5v-228.635l-24.267-24.267h-173.038v278.49c0 11.875-9.625 21.5-21.5 21.5h-138.559v25.331c0 7.28 5.922 13.204 13.202 13.204h247.115c11.875 0 21.5 9.625 21.5 21.5s-9.625 21.5-21.5 21.5zM451.877 536.074v-256.988h-10.414v161.455c0 3.555-2.882 6.437-6.437 6.437h-100.208v89.096h117.059zM342.335 596.955c0-5.176 4.196-9.372 9.37-9.372s9.372 4.196 9.372 9.372-4.196 9.37-9.372 9.37-9.37-4.194-9.37-9.37zM379.952 596.955c0-5.176 4.196-9.372 9.37-9.372s9.372 4.196 9.372 9.372-4.196 9.37-9.372 9.37-9.37-4.194-9.37-9.37zM370.951 477.129h48.048c11.875 0 21.5 9.625 21.5 21.5s-9.627 21.5-21.5 21.5h-48.048c-11.875 0-21.5-9.625-21.5-21.5s9.625-21.5 21.5-21.5zM661.27 400.798c0 11.875-9.627 21.5-21.5 21.5h-101.729c-11.875 0-21.5-9.625-21.5-21.5s9.627-21.5 21.5-21.5h101.729c11.873 0 21.5 9.625 21.5 21.5zM538.041 361.481c-11.875 0-21.5-9.625-21.5-21.5s9.627-21.5 21.5-21.5h35.594c11.875 0 21.5 9.625 21.5 21.5s-9.625 21.5-21.5 21.5h-35.594zM831.763 575.916c-11.851 0-21.458-9.607-21.458-21.458v-274.023c0-71.878-58.476-130.355-130.355-130.355h-335.9c-71.878 0-130.355 58.476-130.355 130.355v336.141c0 71.878 58.478 130.355 130.355 130.355h274.408c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458h-274.408c-95.541 0-173.272-77.728-173.272-173.272v-336.141c0-95.541 77.728-173.272 173.272-173.272h335.9c95.541 0 173.272 77.728 173.272 173.272v274.023c0 11.851-9.607 21.458-21.458 21.458zM799.439 852.544c-64.674 0-117.105-52.43-117.105-117.105 0-24.009 7.236-46.322 19.632-64.899l-78.503-78.501c-8.38-8.38-8.38-21.967 0-30.347 4.192-4.19 9.681-6.284 15.174-6.284s10.985 2.096 15.174 6.284l78.101 78.101c19.087-13.5 42.371-21.458 67.526-21.458 64.676 0 117.105 52.43 117.105 117.105s-52.43 117.105-117.105 117.105zM799.439 661.249c-19.312 0-36.92 7.424-50.134 19.56-0.836 1.327-1.818 2.591-2.974 3.747-0.974 0.974-2.026 1.824-3.126 2.573-11.176 12.991-17.955 29.868-17.955 48.308 0 40.908 33.281 74.189 74.189 74.189s74.189-33.281 74.189-74.189-33.281-74.189-74.189-74.189z" /> +<glyph unicode="" glyph-name="archive-product" d="M845.764 398.038l-34.872 151.865c-0.028 0.122-0.072 0.238-0.102 0.359-0.104 0.415-0.222 0.824-0.349 1.23-0.088 0.279-0.176 0.559-0.273 0.834-0.136 0.377-0.285 0.747-0.441 1.114-0.122 0.289-0.244 0.577-0.377 0.858-0.164 0.343-0.343 0.679-0.525 1.014-0.156 0.285-0.307 0.571-0.475 0.848-0.196 0.323-0.407 0.637-0.619 0.95-0.18 0.265-0.353 0.533-0.545 0.79-0.238 0.319-0.493 0.625-0.749 0.93-0.19 0.228-0.373 0.459-0.573 0.681-0.295 0.327-0.613 0.635-0.928 0.944-0.182 0.178-0.355 0.361-0.543 0.533-0.369 0.335-0.761 0.649-1.154 0.958-0.16 0.124-0.309 0.257-0.471 0.379-0.447 0.331-0.914 0.637-1.387 0.934-0.114 0.072-0.22 0.156-0.333 0.226-0.018 0.010-0.036 0.018-0.054 0.028-0.467 0.279-0.954 0.529-1.445 0.772-0.16 0.080-0.311 0.172-0.473 0.246-0.395 0.184-0.806 0.339-1.216 0.499-0.271 0.108-0.537 0.228-0.81 0.323-0.297 0.104-0.609 0.182-0.914 0.271-0.395 0.12-0.788 0.246-1.19 0.341-0.036 0.008-0.070 0.022-0.106 0.030l-177.725 41.305c-11.545 2.683-23.077-4.499-25.758-16.043-2.683-11.543 4.499-23.077 16.043-25.758l94.096-21.869-190.674-51.020-190.316 47.579 107.764 26.941c11.498 2.874 18.488 14.526 15.614 26.023s-14.532 18.488-26.023 15.614l-191.035-47.759c-0.032-0.008-0.060-0.020-0.092-0.028-0.377-0.096-0.749-0.226-1.122-0.341-0.321-0.1-0.649-0.188-0.962-0.301-0.216-0.080-0.423-0.182-0.637-0.267-0.461-0.186-0.924-0.369-1.365-0.583-0.066-0.032-0.13-0.074-0.196-0.106-0.583-0.289-1.15-0.599-1.697-0.936-0.004-0.002-0.010-0.004-0.014-0.008-0.046-0.028-0.088-0.064-0.134-0.092-0.553-0.349-1.092-0.717-1.607-1.11-0.114-0.086-0.216-0.184-0.327-0.271-0.437-0.349-0.868-0.705-1.276-1.084-0.162-0.152-0.309-0.315-0.467-0.473-0.335-0.333-0.671-0.669-0.984-1.022-0.184-0.21-0.351-0.431-0.527-0.647-0.261-0.321-0.527-0.641-0.768-0.978-0.182-0.252-0.345-0.513-0.515-0.772-0.214-0.323-0.429-0.645-0.625-0.98-0.158-0.269-0.297-0.551-0.445-0.828-0.182-0.343-0.363-0.687-0.527-1.042-0.124-0.271-0.234-0.551-0.347-0.828-0.156-0.379-0.309-0.761-0.443-1.15-0.090-0.261-0.166-0.527-0.246-0.792-0.128-0.421-0.25-0.842-0.349-1.272-0.022-0.092-0.054-0.182-0.076-0.273l-34.872-157.742c-1.236-5.591-0.186-11.446 2.918-16.26s8.002-8.186 13.605-9.368l35.279-7.441v-197.48c0-9.699 6.507-18.194 15.873-20.718l261.537-70.494c1.83-0.493 3.707-0.741 5.585-0.741 1.826 0 3.653 0.234 5.433 0.699l261.541 68.45c9.44 2.471 16.025 11.001 16.025 20.759v208.728l36.153 9.224c11.288 2.88 18.216 14.24 15.61 25.594zM248.217 514.029l231.63-57.907-50.372-100.743-206.69 43.599 25.434 115.051zM270.921 344.963l165.908-34.996c9.549-2.016 19.256 2.669 23.622 11.4l29.093 58.186v-204.123l-70.129-42.481-148.496 40.026v171.986zM751.085 171.057l-218.623-57.218v265.715l29.093-58.186c3.701-7.4 11.214-11.865 19.189-11.863 1.759 0 3.541 0.218 5.308 0.667l165.034 42.102v-181.214zM592.203 356.032l-50.246 100.49 232.085 62.101 25.207-109.774-207.046-52.817zM504.77 580.431c3.573-2.276 7.561-3.361 11.504-3.361 7.090 0 14.031 3.513 18.121 9.937l36.553 57.414c14.057-5.896 29.339-9.114 45.090-9.114 8.404 0 16.945 0.912 25.488 2.809 63.139 14.017 102.959 76.562 88.942 139.701-12.12 54.595-60.514 91.755-114.211 91.751-8.404 0-16.945-0.912-25.488-2.809-63.139-14.017-102.959-76.562-88.942-139.701 5.204-23.44 17.107-43.651 33.231-59.101l-36.864-57.901c-6.366-9.996-3.421-23.261 6.575-29.624zM600.070 824.862c5.344 1.186 10.791 1.789 16.192 1.789h0.004c16.574 0 32.92-5.723 46.028-16.117 13.456-10.669 22.544-25.199 26.277-42.020 8.865-39.936-16.412-79.638-56.348-88.503-5.346-1.186-10.791-1.789-16.188-1.789-16.578 0-32.926 5.723-46.036 16.117-13.458 10.669-22.544 25.199-26.279 42.020-8.865 39.936 16.412 79.638 56.348 88.503z" /> +<glyph unicode="" glyph-name="arrow-down" d="M897.824 385.824c-12.48 12.48-32.768 12.48-45.248 0l-308.544-308.544 0.768 818.688c0 17.664-14.304 32-31.968 32.032h-0.032c-17.664 0-31.968-14.304-32-31.968l-0.768-818.816-308.64 308.64c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l363.2-363.2c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l363.2 363.2c12.48 12.48 12.48 32.736 0 45.248z" /> +<glyph unicode="" glyph-name="arrow-down-left" d="M854.656 790.016c-12.48 12.512-32.736 12.512-45.28 0.032l-585.408-584.288v441.184c0 17.664-14.336 32-32 32s-32-14.336-32-32v-518.4c0-17.664 14.336-32 32-32h518.4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-441.056l585.28 584.192c12.512 12.48 12.544 32.736 0.032 45.28z" /> +<glyph unicode="" glyph-name="arrow-down-right" d="M843.904 680.48c-17.696 0-32.064-14.336-32.064-32.064v-441.792l-585.152 586.24c-12.512 12.512-32.8 12.576-45.344 0.032s-12.544-32.8-0.032-45.344l585.28-586.368h-441.92c-17.696 0-32.064-14.336-32.064-32.064s14.336-32.064 32.064-32.064h519.264c17.696 0 32.064 14.336 32.064 32.064v519.264c0 17.696-14.336 32.064-32.064 32.064z" /> +<glyph unicode="" glyph-name="arrow-down-to-line" d="M489.28 179.296c6.272-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376l288.64 288.64c12.48 12.48 12.48 32.768 0 45.248s-32.736 12.48-45.248 0l-233.952-233.92 0.608 616.224c0 17.664-14.304 32-31.968 32.032h-0.032c-17.664 0-31.968-14.304-32-31.968l-0.608-616.384-234.048 234.048c-12.512 12.48-32.768 12.48-45.248 0s-12.512-32.768 0-45.248l288.64-288.64zM870.24 31.488l-715.136 0.672c-17.664 0-32-14.304-32-31.968s14.304-32 31.968-32.032l715.136-0.672c17.664 0 32 14.304 32 31.968s-14.304 32-31.968 32.032z" /> +<glyph unicode="" glyph-name="arrow-left" d="M960.032 479.168l-818.816 0.768 308.608 308.64c12.48 12.512 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-363.2-363.2c-12.512-12.48-12.512-32.736 0-45.248l363.2-363.2c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-308.544 308.544 818.688-0.768c17.664 0 32 14.304 32 31.968s-14.304 32.032-31.968 32.032z" /> +<glyph unicode="" glyph-name="arrow-long-down" d="M756.928 245.792c-12.544 12.48-32.768 12.448-45.28-0.064l-167.744-168.288v818.56c0 17.664-14.336 32-32 32s-32-14.336-32-32v-818.336l-167.52 168.736c-12.448 12.544-32.736 12.64-45.28 0.16s-12.608-32.736-0.16-45.28l222.24-223.808s0.032-0.032 0.064-0.064c1.472-1.472 3.072-2.784 4.8-3.968 0.256-0.192 0.576-0.288 0.864-0.48 1.472-0.928 3.008-1.792 4.64-2.496 0.448-0.192 0.96-0.288 1.472-0.448 1.472-0.544 2.944-1.088 4.544-1.408 2.080-0.416 4.192-0.64 6.304-0.64h0.032c2.144 0 4.256 0.224 6.336 0.64 1.312 0.288 2.56 0.736 3.808 1.184 0.736 0.256 1.472 0.384 2.176 0.672 1.344 0.544 2.56 1.312 3.808 2.048 0.544 0.32 1.184 0.544 1.696 0.928 1.728 1.184 3.328 2.496 4.8 3.936 0 0 0 0 0.032 0.032l222.432 223.136c12.48 12.544 12.448 32.768-0.064 45.28z" /> +<glyph unicode="" glyph-name="arrow-long-left" d="M960 480.096h-818.336l168.704 167.52c12.544 12.448 12.608 32.736 0.16 45.28s-32.736 12.608-45.248 0.16l-223.808-222.24s-0.032-0.032-0.064-0.064c-1.472-1.472-2.784-3.072-3.936-4.8-0.256-0.384-0.416-0.832-0.64-1.216-0.832-1.376-1.664-2.784-2.304-4.288-0.192-0.448-0.256-0.896-0.416-1.312-0.576-1.504-1.088-3.040-1.408-4.672-0.416-2.080-0.64-4.16-0.64-6.304 0 0 0 0 0 0s0 0 0 0c0-0.352 0.096-0.64 0.096-0.992 0.064-1.792 0.192-3.616 0.544-5.344 0.256-1.184 0.672-2.272 1.024-3.392 0.256-0.864 0.448-1.76 0.8-2.592 0.512-1.28 1.248-2.432 1.952-3.648 0.352-0.608 0.608-1.28 1.024-1.856 1.152-1.728 2.464-3.36 3.936-4.8 0 0 0 0 0.032-0.032l223.136-222.432c6.272-6.24 14.4-9.312 22.592-9.312s16.384 3.136 22.656 9.408c12.48 12.544 12.448 32.768-0.064 45.28l-168.32 167.744h818.592c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="arrow-long-right" d="M989.504 435.552c0.192 0.448 0.256 0.928 0.416 1.376 0.544 1.504 1.088 3.040 1.408 4.64 0.416 2.048 0.64 4.192 0.64 6.336 0 0 0 0 0 0s0 0 0 0c0 0.352-0.096 0.672-0.096 0.992-0.064 1.792-0.192 3.616-0.544 5.344-0.256 1.184-0.672 2.272-1.024 3.392-0.288 0.864-0.448 1.76-0.8 2.592-0.544 1.28-1.248 2.432-1.952 3.648-0.352 0.608-0.608 1.28-1.024 1.856-1.184 1.728-2.496 3.328-3.936 4.8 0 0 0 0.032-0.032 0.032l-223.136 222.4c-12.544 12.48-32.768 12.416-45.248-0.064s-12.448-32.768 0.064-45.28l168.288-167.744h-818.56c-17.664 0-32-14.336-32-32s14.336-32 32-32h818.336l-168.704-167.52c-12.544-12.448-12.608-32.736-0.16-45.28 6.24-6.304 14.464-9.472 22.688-9.472 8.16 0 16.32 3.072 22.528 9.312l223.808 222.24s0.032 0.032 0.064 0.064c1.472 1.472 2.784 3.072 3.936 4.8 0.288 0.384 0.448 0.864 0.672 1.28 0.832 1.376 1.664 2.752 2.272 4.256z" /> +<glyph unicode="" glyph-name="arrow-long-up" d="M757.024 694.72l-222.24 223.84s0 0-0.032 0.032c-1.472 1.472-3.104 2.816-4.832 4-0.096 0.064-0.192 0.096-0.288 0.16-1.632 1.088-3.36 2.016-5.184 2.784-0.384 0.16-0.832 0.224-1.216 0.384-1.568 0.576-3.104 1.12-4.768 1.472-2.048 0.416-4.192 0.64-6.336 0.64h-0.032c-2.144 0-4.256-0.224-6.336-0.64-1.376-0.288-2.72-0.768-4.032-1.216-0.672-0.224-1.312-0.352-1.984-0.608-1.472-0.608-2.816-1.408-4.128-2.208-0.448-0.256-0.96-0.448-1.376-0.768-1.76-1.152-3.36-2.496-4.832-3.968 0 0 0 0 0 0l-222.4-223.136c-12.48-12.544-12.448-32.768 0.064-45.28s32.768-12.448 45.248 0.064l167.744 168.32v-818.592c0-17.664 14.336-32 32-32s32 14.336 32 32v818.336l167.52-168.736c6.24-6.304 14.464-9.472 22.688-9.472 8.16 0 16.32 3.104 22.528 9.28 12.544 12.448 12.608 32.704 0.16 45.28z" /> +<glyph unicode="" glyph-name="arrow-right" d="M982.624 470.624l-363.2 363.2c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l308.544-308.544-818.688 0.768c-17.664 0-32-14.304-32-31.968s14.304-32.032 31.968-32.032l818.816-0.768-308.64-308.64c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l363.2 363.2c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="arrow-up" d="M897.824 555.424l-363.2 363.2c-12.48 12.512-32.768 12.512-45.248 0l-363.2-363.2c-12.48-12.48-12.48-32.768 0-45.248s32.768-12.48 45.248 0l308.544 308.544-0.768-818.688c0-17.664 14.304-32 31.968-32.032h0.032c17.664 0 31.968 14.304 32 31.968l0.768 818.816 308.64-308.64c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="arrow-up-left" d="M854.656 150.016l-585.472 586.592h442.144c17.664 0 32 14.336 32 32s-14.336 32-32 32h-519.36c-17.664 0-32-14.336-32-32v-519.36c0-17.664 14.336-32 32-32s32 14.336 32 32v442.016l585.344-586.464c6.272-6.24 14.432-9.408 22.656-9.408s16.352 3.136 22.592 9.344c12.48 12.48 12.544 32.736 0.064 45.28z" /> +<glyph unicode="" glyph-name="arrow-up-right" d="M832 799.392h-518.4c-17.664 0-32-14.336-32-32s14.336-32 32-32h441.088l-585.312-584.192c-12.512-12.48-12.512-32.736-0.064-45.28 6.272-6.24 14.464-9.408 22.656-9.408s16.352 3.136 22.624 9.344l585.408 584.288v-441.184c0-17.664 14.336-32 32-32s32 14.336 32 32v518.4c0 17.664-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="artist" d="M576 148.64h-333.344c20.704 130.016 133.6 229.728 269.344 229.728 60.768 0 118.272-19.552 166.272-56.544 18.816-14.496 45.824-11.008 60.288 7.808 14.496 18.816 11.008 45.824-7.808 60.288-22.944 17.664-47.584 32.288-73.44 43.808 48.928 41.376 80.032 103.168 80.032 172.128 0 124.288-101.12 225.408-225.408 225.408s-225.408-101.12-225.408-225.408c0-69.024 31.2-130.912 80.224-172.288-125.664-55.84-213.536-181.856-213.536-328.032 0-23.776 19.232-43.008 43.008-43.008h379.744c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM512 745.344c76.832 0 139.392-62.56 139.392-139.392s-62.56-139.392-139.392-139.392-139.392 62.56-139.392 139.392 62.56 139.392 139.392 139.392zM911.616 301.536l-77.088 33.92c-11.808 5.216-25.344 4.608-36.704-1.568-11.296-6.176-19.104-17.28-21.088-30.048l-15.104-97.056c-4.512 0.768-9.184 1.152-13.92 1.152-46.72 0-84.736-38.016-84.736-84.736s38.016-84.736 84.736-84.736c45.984 0 83.488 36.864 84.64 82.56l18.144 116.608 27.648-12.16c20.992-9.248 45.536 0.288 54.752 21.28 9.248 20.992-0.288 45.536-21.28 54.752z" /> +<glyph unicode="" glyph-name="attach-money" d="M896 511.328c-23.776 0-43.008-19.232-43.008-43.008v-154.624c-25.6-11.104-46.112-31.712-57.056-57.376h-78.24c-11.872 57.568-47.328 106.592-95.776 136.48 18.528 23.68 29.568 53.408 29.568 85.728 0 76.896-62.56 139.488-139.488 139.488s-139.488-62.56-139.488-139.488c0-32.288 11.040-62.048 29.568-85.728-48.48-29.92-83.936-78.944-95.776-136.48h-78.304c-10.912 25.696-31.456 46.304-57.056 57.376v269.184c25.376 10.976 45.792 31.36 56.736 56.736h454.912c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-554.624c-1.504 0-2.944-0.096-4.384-0.224-2.912-0.288-5.728-0.864-8.416-1.696-1.376-0.416-2.656-0.896-3.968-1.44-15.456-6.528-26.272-21.792-26.272-39.648v-469.344c0-23.776 19.232-43.008 43.008-43.008h768c23.776 0 43.008 19.232 43.008 43.008v255.008c0 23.776-19.232 43.008-43.008 43.008zM512 532c29.472 0 53.472-23.968 53.472-53.472s-23.968-53.472-53.472-53.472-53.472 23.968-53.472 53.472 23.968 53.472 53.472 53.472zM512 337.92c53.504 0 99.168-34.048 116.512-81.632h-233.056c17.376 47.584 63.008 81.632 116.512 81.632zM981.344 725.664h-42.336v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-42.336c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h42.336v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h42.336c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="audio-box" d="M835.36 831.264h-646.752c-33.056 0-59.872-26.816-59.872-59.872v-646.752c0-33.056 26.816-59.872 59.872-59.872h646.752c33.088 0 59.872 26.816 59.872 59.872v646.752c0 33.088-26.816 59.872-59.872 59.872zM852.32 124.64c0-9.344-7.616-16.96-16.96-16.96h-497.76l-165.92 165.92v497.76c0 9.344 7.616 16.96 16.96 16.96h646.752c9.344 0 16.96-7.616 16.96-16.96v-646.752zM810.976 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.72-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM750.176 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.72-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM689.408 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.688-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM636.128 578.976l-92.32-15.84c-9.12-1.568-16.192-8.768-17.568-17.888l-9.28-60.704c-0.48-1.696-0.768-3.488-0.8-5.344l-11.008-71.936c-14.72 8.64-33.152 13.696-53.376 13.696-49.312 0-87.936-30.048-87.936-68.416s38.624-68.416 87.936-68.416c47.168 0 84.544 27.52 87.68 63.52l17.184 112.32 73.888 11.968c8.864 1.44 15.872 8.224 17.632 17.056l12.736 64.672c1.376 6.912-0.768 14.080-5.696 19.136s-12.032 7.36-18.976 6.176zM451.712 327.040c-25.76 0-44.992 13.472-44.992 25.504s19.232 25.472 44.992 25.472 44.992-13.472 44.992-25.504-19.232-25.504-44.992-25.504zM608.864 511.936l-45.44-7.36 2.88 18.88 46.4 7.968-3.84-19.456z" /> +<glyph unicode="" glyph-name="audio-file" d="M852.224 616.928v0c0 5.536-1.152 10.848-3.168 15.648-2.048 4.896-5.024 9.472-8.992 13.472l-208.48 208.48c-7.52 10.88-20.064 18.048-34.272 18.048-0.352 0-0.64 0-0.992 0h-340c-46.624 0-84.512-37.92-84.512-84.512v-703.328c0-46.624 37.92-84.512 84.512-84.512h511.328c46.624 0 84.512 37.92 84.512 84.512v532.224s0 0.032 0 0.096zM638.88 729.728l71.52-71.52h-71.52v71.52zM769.12 84.64c0-0.8-0.64-1.44-1.44-1.44h-511.328c-0.8 0-1.44 0.64-1.44 1.44v703.36c0 0.8 0.64 1.44 1.44 1.44h299.488v-172.768c0-22.944 18.592-41.568 41.568-41.568h171.776v-490.464zM510.624 528.736c-11.744-7.68-18.848-20.736-18.848-34.784v-238.624s0-0.224 0-0.288c0-24.16-19.616-43.776-43.776-43.776s-43.776 19.616-43.776 43.776c0 19.072 12.192 35.84 30.336 41.696 21.856 7.040 33.824 30.464 26.784 52.256s-30.464 33.824-52.256 26.784c-52.608-16.928-87.936-65.504-87.936-120.8 0-69.984 56.928-126.88 126.88-126.88s126.56 56.608 126.848 126.304c0 0.224 0 0.384 0 0.608v175.264s48.384-21.28 48.384-21.28c20.992-9.248 45.536 0.288 54.752 21.28 9.248 20.992-0.288 45.536-21.28 54.752l-106.656 46.944c-12.832 5.632-27.68 4.448-39.424-3.232z" /> +<glyph unicode="" glyph-name="author-box" d="M512.128 874.848c-114.048 0-221.28-44.416-301.92-125.056s-125.056-187.84-125.056-301.92c0-99.776 35.232-196.96 99.264-273.696 6.336-7.552 12.992-14.944 19.808-22.016 2.784-2.944 5.568-5.696 8.288-8.352 1.248-1.216 2.496-2.464 3.744-3.712l0.32-0.32c79.84-76.512 184.8-118.656 295.52-118.656s215.712 42.144 295.264 118.624c11.328 10.816 22.144 22.4 32.16 34.4 64 76.416 99.264 173.6 99.264 273.696 0 235.424-191.424 426.944-426.72 426.944zM806.592 201.792c-6.816-8.16-14.080-16.096-21.6-23.712-41.728 110.208-148.288 188.64-272.864 188.64s-231.328-78.4-273.088-188.608c-1.216 1.216-2.432 2.432-3.552 3.648l-0.192 0.192c-6.144 6.368-12.16 13.056-17.856 19.84-57.568 68.96-89.248 156.384-89.248 246.112 0 211.712 172.224 383.936 383.936 383.936s383.712-172.224 383.712-383.936c0-90.016-31.68-177.376-89.248-246.080zM656.832 584.384c7.904-79.968-50.496-151.2-130.464-159.136s-151.2 50.496-159.136 130.464c-7.904 79.968 50.496 151.2 130.464 159.136s151.2-50.496 159.136-130.464z" /> +<glyph unicode="" glyph-name="auto-play" d="M665.312 703.328h-67.616c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h181.024c0.48 0 0.896 0.032 1.376 0.096 0.896 0 1.76 0.032 2.656 0.128 0.608 0.032 1.184 0.16 1.824 0.256 0.768 0.096 1.568 0.224 2.336 0.352 0.64 0.128 1.28 0.288 1.92 0.416 0.736 0.16 1.44 0.352 2.144 0.544s1.312 0.416 1.952 0.672c0.672 0.224 1.312 0.48 1.952 0.736 0.672 0.256 1.312 0.608 2.016 0.896 0.608 0.288 1.184 0.544 1.792 0.864 0.672 0.384 1.376 0.768 2.048 1.184 0.512 0.288 1.056 0.608 1.568 0.928 0.736 0.48 1.44 1.024 2.144 1.536 0.384 0.256 0.736 0.512 1.12 0.8 0.096 0.032 0.128 0.128 0.224 0.224 0.672 0.544 1.28 1.152 1.92 1.696 0.416 0.384 0.896 0.768 1.28 1.152 0.48 0.48 0.896 0.928 1.312 1.44 0.512 0.544 1.056 1.12 1.568 1.696 0.032 0.032 0.096 0.128 0.128 0.16 2.176 2.656 3.968 5.536 5.408 8.544 1.44 3.040 2.592 6.272 3.328 9.632 0 0.032 0 0.128 0.032 0.16 0.16 0.768 0.256 1.536 0.384 2.304 0.096 0.64 0.224 1.28 0.288 1.92 0.032 0.544 0.096 1.152 0.128 1.696 0.032 0.864 0.128 1.76 0.128 2.592 0 0.096 0 0.224 0 0.288v175.872c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-76.256c-64.48 46.24-142.112 71.648-223.648 71.648-102.656 0-199.168-39.968-271.776-112.544-72.576-72.576-112.544-169.088-112.544-271.744 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 79.712 31.008 154.624 87.392 210.944 56.352 56.352 131.296 87.392 210.944 87.392 54.944 0 107.616-14.848 153.312-42.272zM884.32 543.008c-5.888 23.008-29.312 36.864-52.352 30.976-23.008-5.888-36.864-29.312-30.976-52.352 6.176-24.16 9.344-49.184 9.344-74.368 0-5.248-0.128-10.592-0.416-15.84-1.248-23.712 16.992-43.936 40.704-45.184 0.768 0 1.536-0.032 2.272-0.032 22.752 0 41.728 17.792 42.912 40.736 0.352 6.752 0.512 13.568 0.512 20.256 0 32.416-4.064 64.64-12.032 95.744zM535.552 149.856c-7.776-0.608-15.712-0.896-23.552-0.896-40.416 0-79.616 7.936-116.448 23.552-21.856 9.248-47.104-0.928-56.352-22.784s0.928-47.104 22.784-56.352c47.52-20.192 98.016-30.432 150.048-30.432 10.080 0 20.224 0.384 30.208 1.152 23.68 1.824 41.376 22.528 39.552 46.208s-22.528 41.376-46.208 39.552zM827.936 310.912c-20.448 12.064-46.816 5.28-58.88-15.136-12.8-21.632-28.288-41.632-46.112-59.488-16-16-33.792-30.176-52.896-42.112-20.128-12.576-26.24-39.136-13.6-59.264 8.16-13.056 22.144-20.192 36.48-20.192 7.808 0 15.712 2.144 22.784 6.56 24.608 15.392 47.488 33.632 68.064 54.176 22.912 22.912 42.88 48.672 59.36 76.544 12.064 20.448 5.28 46.816-15.136 58.88zM235.424 335.136c-8.928 22.016-34.016 32.608-56.032 23.68s-32.608-34.016-23.68-56.032c14.688-36.224 34.816-69.92 59.808-100.192 8.48-10.272 20.768-15.616 33.184-15.616 9.632 0 19.328 3.232 27.36 9.856 18.304 15.104 20.896 42.24 5.76 60.544-19.424 23.52-35.040 49.664-46.432 77.728zM607.712 464.768l-153.12 87.136c-13.312 7.584-29.92-2.048-29.92-17.376v-174.24c0-15.36 16.544-24.96 29.92-17.376l153.12 87.136c13.472 7.68 13.472 27.104 0 34.784z" /> +<glyph unicode="" glyph-name="auto-renew" d="M884.32 543.008c-5.888 23.008-29.312 36.864-52.352 30.976-23.008-5.888-36.864-29.312-30.976-52.352 6.176-24.16 9.344-49.184 9.344-74.368 0-164.512-133.856-298.336-298.336-298.336-57.44 0-113.024 16.608-160.512 46.944h85.856c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-181.024c-23.776 0-43.008-19.232-43.008-43.008v-12.448c-0.384-3.36-0.416-6.752 0-10.112v-153.248c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v64.16c62.464-41.472 136.32-64.256 212.704-64.256 211.936 0 384.352 172.416 384.352 384.352 0 32.416-4.064 64.64-12.032 95.744zM222.496 374.88c-5.856 23.52-8.832 47.872-8.832 72.352 0 164.512 133.856 298.336 298.336 298.336 54.88 0 107.552-14.88 153.248-42.272h-67.584c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h181.024c23.776 0 43.008 19.232 43.008 43.008v175.904c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-76.288c-64.48 46.24-142.176 71.68-223.648 71.68-211.968 0.032-384.384-172.384-384.384-384.288 0-31.488 3.84-62.848 11.392-93.152 4.864-19.552 22.4-32.608 41.696-32.608 3.456 0 6.944 0.416 10.4 1.28 23.040 5.76 37.088 29.056 31.328 52.096z" /> +<glyph unicode="" glyph-name="award" d="M510.592 687.136c-66.528 0-120.448-53.92-120.448-120.448s53.92-120.448 120.448-120.448 120.448 53.92 120.448 120.448-53.92 120.448-120.448 120.448zM510.592 510.24c-31.136 0-56.448 25.312-56.448 56.448s25.312 56.448 56.448 56.448 56.448-25.312 56.448-56.448-25.312-56.448-56.448-56.448zM670.784 273.312c18.912-0.8 38.496-1.664 47.072 4.384 9.44 6.592 15.456 25.792 21.312 44.384 6.24 19.84 12.672 40.352 25.664 57.6 13.184 17.472 31.264 29.408 48.736 40.992 14.4 9.504 29.216 19.296 34.816 28.8 0.256 2.592 0.768 5.088 1.632 7.552 3.584 10.336-2.688 29.184-8.704 47.36-6.336 19.040-13.504 40.672-13.088 62.72 0.384 21.28 7.904 41.184 15.168 60.384 6.944 18.4 14.112 37.376 10.592 48.896s-20.064 23.264-36.096 34.656c-16.736 11.904-34.080 24.192-46.272 41.664-12.64 18.112-18.752 40-24.16 59.392-5.152 18.464-10.464 37.6-19.2 44.192-8.96 6.752-28.896 6.528-48.288 6.432-21.024-0.16-42.656-0.32-63.328 6.816-20.448 7.072-37.216 20.48-53.472 33.472-15.2 12.16-30.912 24.736-42.432 24.928-10.272 0.48-26.24-11.392-41.504-22.656-16.384-12.064-34.944-25.728-56.48-32.32s-44.576-5.6-64.928-4.704c-18.912 0.768-38.464 1.632-47.040-4.352-9.472-6.624-15.488-25.824-21.312-44.384-6.208-19.84-12.672-40.32-25.664-57.6-13.184-17.472-31.264-29.44-48.768-40.992-16.096-10.656-32.768-21.664-36.448-32.288-3.584-10.336 2.656-29.184 8.704-47.36 6.304-19.040 13.472-40.672 13.088-62.72-0.384-21.28-7.904-41.152-15.136-60.384-6.944-18.4-14.112-37.376-10.624-48.896 0.704-2.4 1.184-4.864 1.344-7.36 5.312-10.464 20.256-21.088 34.784-31.392 16.768-11.904 34.080-24.192 46.272-41.664 12.672-18.112 18.752-40.032 24.16-59.36 5.152-18.496 10.464-37.6 19.2-44.16 8.96-6.752 28.96-6.592 48.256-6.432 3.2 0 6.4 0.064 9.6 0.064 17.92 0 36.192-0.8 53.728-6.88 20.448-7.072 37.216-20.48 53.472-33.504 15.2-12.16 30.912-24.736 42.432-24.928h0.256c10.464 0 26.112 11.52 41.248 22.656 16.384 12.064 34.944 25.728 56.48 32.288s44.576 5.568 64.928 4.736zM540.608 294.752c-10.944-8.064-24.832-17.952-31.584-17.952-7.872 0.16-20.896 10.56-32.384 19.744-13.28 10.624-28.352 22.688-46.304 28.928-15.488 5.376-31.904 6.048-47.040 6.048-2.624 0-5.216 0-7.744-0.064-14.624-0.096-31.168-0.256-37.28 4.352-5.92 4.48-10.528 20.992-14.208 34.24-4.64 16.608-9.856 35.424-20.96 51.328-10.72 15.36-26.304 26.4-40 36.16-10.752 7.648-22.784 16.16-27.040 23.552-0.192 2.112-0.608 4.16-1.216 6.176-2.4 7.936 3.552 23.712 8.768 37.6 5.952 15.744 12.672 33.6 13.024 52.352 0.352 19.36-5.792 37.92-11.232 54.304-4.352 13.088-9.728 29.376-7.328 36.352 2.496 7.232 16.32 16.352 28.48 24.384 14.304 9.472 30.56 20.192 42.112 35.552 11.424 15.168 17.216 33.6 22.304 49.856 4.384 14.048 9.376 29.952 15.872 34.464 5.76 4 22.688 3.296 36.256 2.72 17.472-0.768 37.216-1.6 56.128 4.16s34.816 17.472 48.864 27.84c10.88 8 24.384 17.984 31.488 17.984h0.128c7.904-0.16 20.928-10.56 32.384-19.776 13.312-10.656 28.352-22.688 46.336-28.928 18.144-6.304 37.6-6.144 54.784-6.016 14.56 0.096 31.168 0.256 37.248-4.352 5.92-4.448 10.528-20.96 14.208-34.272 4.64-16.608 9.856-35.424 20.96-51.328 10.72-15.328 26.304-26.432 40-36.16 12.096-8.608 25.856-18.368 28.288-26.304s-3.52-23.712-8.768-37.6c-5.952-15.744-12.672-33.6-13.024-52.32-0.352-19.392 5.792-37.92 11.232-54.304 4.352-13.088 9.728-29.344 7.328-36.352-0.704-2.048-1.216-4.16-1.504-6.304-4.512-6.688-16.384-14.528-27.008-21.536-14.336-9.472-30.56-20.192-42.112-35.552-11.456-15.168-17.216-33.6-22.336-49.856-4.384-14.048-9.408-29.952-15.872-34.496-5.76-4-22.624-3.328-36.256-2.72-17.408 0.736-37.216 1.568-56.096-4.192s-34.848-17.504-48.928-27.84zM411.040 199.776l-91.648-119.072-9.92 76.096c-2.304 17.504-18.304 29.76-35.872 27.616l-76.096-9.92 53.6 69.664c-17.024 18.432-24.448 42.688-30.688 65.088l-120.704-156.928c-7.904-10.24-8.832-24.288-2.368-35.456s19.072-17.408 31.872-15.776l120.96 15.744 15.744-120.96c1.664-12.832 10.912-23.392 23.424-26.784 2.752-0.736 5.568-1.12 8.352-1.12 9.792 0 19.232 4.48 25.376 12.48l139.84 181.696c-13.696 7.456-25.952 17.248-37.408 26.432-4.8 3.84-9.664 7.616-14.4 11.168zM924.288 152.64l-121.6 158.048c-0.832-2.592-1.664-5.184-2.496-7.776-6.24-19.808-13.12-41.472-26.72-59.232l52.96-68.832-76.096 9.92c-17.504 2.24-33.6-10.080-35.872-27.616l-9.92-76.096-92.672 120.384c-7.904-4.544-16.32-10.592-24.576-16.672-8.928-6.592-18.336-13.44-28.448-19.392l142.048-184.576c6.144-8 15.584-12.48 25.376-12.48 2.784 0 5.568 0.352 8.352 1.12 12.48 3.36 21.728 13.952 23.424 26.784l15.744 120.96 120.96-15.744c12.832-1.664 25.408 4.544 31.872 15.776s5.504 25.216-2.368 35.456z" /> +<glyph unicode="" glyph-name="backpack" d="M853.472 434.976h-45.568s0 0 0 0c-2.208 15.136-5.504 29.92-9.888 44.192 34.208 31.264 55.68 76.256 55.68 126.176v85.248c0 23.712-19.232 43.008-43.008 43.008h-42.368v12c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-12h-41.984v54.688c0 23.712-19.232 43.008-43.008 43.008h-170.656c-23.712 0-43.008-19.232-43.008-43.008v-54.688h-41.984v12c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-12h-42.336c-23.776 0-43.008-19.232-43.008-43.008v-85.248c0-49.92 21.472-94.848 55.648-126.176-4.384-14.336-7.68-29.088-9.888-44.256 0 0 0 0 0 0h-45.568c-47.136 0-85.536-38.368-85.536-85.504v-85.472c0-79.648 54.784-146.784 128.64-165.664 3.488-20.256 21.12-35.616 42.368-35.616h512c21.248 0 38.88 15.392 42.368 35.616 73.856 18.912 128.64 86.016 128.64 165.664v85.472c0 47.136-38.368 85.504-85.536 85.504zM256.352 605.408v42.24h127.328c0.16-23.584 19.36-42.656 43.008-42.656h170.656c23.648 0 42.848 19.072 43.008 42.656h127.36v-42.24c0-15.2-4-29.44-10.976-41.824-14.624-25.824-42.368-43.264-74.112-43.264h-341.216c-31.744 0-59.488 17.504-74.080 43.296-7.008 12.32-10.976 26.592-10.976 41.76zM469.664 733.664v11.68h84.704v-54.368h-84.704v42.656zM171.008 263.968v84.992h41.984v-158.304c-25.088 14.816-41.984 42.080-41.984 73.248zM299.008 392.032c0 15.968 1.76 31.488 5.12 46.432 12-2.688 24.48-4.096 37.28-4.096h341.216c12.8 0 25.312 1.408 37.28 4.096 3.328-14.944 5.12-30.464 5.12-46.432v-243.328h-41.984v212.992c0 23.776-19.232 43.008-43.008 43.008h-256c-23.712 0-43.008-19.232-43.008-43.008v-212.992h-41.984v243.328zM427.008 318.688h169.984v-169.984h-169.984v169.984zM852.992 263.968c0-31.2-16.896-58.496-41.984-73.248v158.304h41.984v-84.992z" /> +<glyph unicode="" glyph-name="back-to-top-button" d="M661.184 459.52v-282.848c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v322.752c-12.736-14.912-27.168-28.288-43.008-39.904zM580.288 266.496c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v170.080c-13.664-6.752-28.064-12.288-43.008-16.48v-153.6zM488.832 411.776v-376.576c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v376.288c-6.528-0.512-13.152-0.768-19.84-0.768-7.808 0-15.552 0.352-23.168 1.056zM400.704 253.472c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v166.592c-14.944 4.192-29.312 9.728-43.008 16.448v-183.072zM319.84 499.392v-322.72c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v282.848c-15.808 11.616-30.272 24.992-43.008 39.872zM618.080 482.56c15.808 9.28 30.272 20.576 43.104 33.536 15.904 16.064 29.248 34.688 39.296 55.232 13.728 27.872 21.408 59.2 21.408 92.288 0 115.712-94.144 209.888-209.888 209.888s-209.888-94.144-209.888-209.888c0-30.016 6.304-58.528 17.728-84.384 10.4-23.648 25.056-45.024 43.008-63.136 15.744-15.936 34.016-29.376 54.176-39.616 7.712-3.968 15.744-7.424 23.968-10.368 15.104-5.472 31.008-9.216 47.488-11.072v252.608l-97.568-97.568c-7.648-7.648-19.648-8.352-28.064-2.048-0.832 0.608-1.632 1.312-2.368 2.048-8.384 8.384-8.384 22.016 0 30.4l134.304 134.272c0.48 0.48 0.992 0.96 1.536 1.408 0 0 0.032 0 0.032 0.032 0.512 0.448 1.088 0.864 1.632 1.216 0.288 0.192 0.576 0.384 0.864 0.576s0.576 0.352 0.864 0.512c0.608 0.352 1.248 0.64 1.888 0.928 1.28 0.544 2.624 0.96 4.032 1.248 0.256 0.064 0.512 0.096 0.768 0.128 0.032 0.032 0.064 0.032 0.064 0.032 0.096 0.032 0.224 0.032 0.352 0.064 0.672 0.096 1.312 0.16 2.016 0.192 0.352 0.032 0.736 0.032 1.12 0.032h0.16c0.544 0 1.088-0.032 1.632-0.096 0.096-0.032 0.224-0.032 0.32-0.032 0.096 0.032 0.128 0 0.224-0.032 0.672-0.064 1.344-0.16 2.016-0.288 0.704-0.128 1.376-0.32 2.048-0.512 0.384-0.128 0.768-0.256 1.152-0.416 0.192-0.064 0.384-0.128 0.576-0.224 0.384-0.16 0.8-0.352 1.216-0.544 2.528-1.184 4.768-2.88 6.624-4.928l131.392-133.664c8.32-8.48 8.192-22.080-0.256-30.4-4.192-4.128-9.632-6.176-15.072-6.176-5.568 0-11.136 2.176-15.328 6.432l-95.136 96.768v-252.352c0.128-0.032 0.256 0 0.352 0.032 16.8 1.568 33.024 5.152 48.448 10.496 13.248 4.576 25.888 10.432 37.792 17.408z" /> +<glyph unicode="" glyph-name="backup" d="M926.432 605.408c-16.8 16.8-44.032 16.8-60.8 0l-54.624-54.624v151.84c0 47.392-38.56 86.016-86.016 86.016h-425.984c-47.392 0-86.016-38.56-86.016-86.016v-127.648c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v127.648h425.984v-151.84l-54.624 54.624c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l128-128c0.992-0.992 2.048-1.952 3.168-2.848 0.512-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.184-0.928 1.824-1.376 0.608-0.416 1.248-0.768 1.888-1.152 0.544-0.352 1.152-0.736 1.696-1.024 0.64-0.352 1.312-0.64 1.952-0.928 0.608-0.288 1.248-0.608 1.824-0.864 0.64-0.256 1.28-0.48 1.92-0.736 0.672-0.256 1.376-0.512 2.048-0.736 0.64-0.224 1.28-0.352 1.952-0.512 0.736-0.16 1.408-0.384 2.144-0.512 0.768-0.16 1.504-0.256 2.272-0.352 0.64-0.096 1.248-0.224 1.888-0.256 1.408-0.128 2.816-0.224 4.224-0.224s2.816 0.096 4.224 0.224c0.64 0.032 1.248 0.16 1.888 0.256 0.768 0.128 1.536 0.224 2.272 0.352s1.408 0.352 2.144 0.512c0.64 0.16 1.312 0.288 1.952 0.512 0.672 0.224 1.376 0.48 2.048 0.736 0.64 0.224 1.28 0.416 1.92 0.736 0.64 0.256 1.248 0.544 1.824 0.864 0.64 0.288 1.312 0.608 1.952 0.928 0.608 0.288 1.152 0.672 1.696 1.024 0.64 0.384 1.28 0.736 1.888 1.152 0.64 0.416 1.248 0.896 1.824 1.376 0.512 0.384 1.024 0.736 1.536 1.152 1.12 0.896 2.144 1.824 3.168 2.848l128 128c16.8 16.8 16.8 44.032 0 60.8zM768 361.984c-23.776 0-43.008-19.232-43.008-43.008v-127.648h-425.984v151.84l54.624-54.624c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-128 128c-1.024 0.992-2.048 1.952-3.168 2.848-0.512 0.416-1.024 0.768-1.536 1.152-0.608 0.48-1.184 0.928-1.824 1.376-0.608 0.416-1.248 0.768-1.888 1.152-0.608 0.352-1.152 0.736-1.76 1.024-0.64 0.352-1.28 0.64-1.952 0.928-0.608 0.288-1.248 0.608-1.888 0.864s-1.28 0.48-1.92 0.736c-0.672 0.256-1.376 0.512-2.048 0.736-0.64 0.224-1.28 0.352-1.92 0.512-0.736 0.16-1.408 0.384-2.144 0.512s-1.504 0.224-2.272 0.352c-0.64 0.096-1.28 0.224-1.92 0.256-1.376 0.128-2.784 0.224-4.128 0.224 0 0-0.032 0-0.096 0s-0.032 0-0.096 0c-1.408 0-2.784-0.096-4.128-0.224-0.64-0.032-1.28-0.16-1.92-0.256-0.768-0.128-1.504-0.224-2.272-0.352-0.736-0.128-1.44-0.352-2.144-0.512-0.64-0.16-1.28-0.288-1.92-0.512-0.672-0.224-1.376-0.48-2.048-0.736-0.64-0.224-1.28-0.416-1.92-0.736-0.64-0.256-1.248-0.544-1.888-0.864s-1.312-0.608-1.952-0.928c-0.608-0.288-1.152-0.672-1.76-1.024-0.64-0.384-1.28-0.736-1.888-1.152-0.64-0.416-1.248-0.896-1.824-1.376-0.512-0.384-1.024-0.736-1.536-1.152-1.12-0.896-2.144-1.824-3.168-2.848l-128-128c-16.8-16.8-16.8-44.032 0-60.8 16.8-16.8 44.032-16.8 60.8 0l54.624 54.624v-151.84c0-47.392 38.56-86.016 86.016-86.016h425.984c47.392 0 86.016 38.56 86.016 86.016v127.648c0 23.776-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="badge-check" d="M993.216 440.192c0 67.936-37.12 128.384-95.2 159.36 19.168 62.976 2.656 132-45.408 180s-117.024 64.544-180 45.376c-30.976 58.080-91.424 95.2-159.392 95.2s-128.384-37.152-159.392-95.2c-62.976 19.168-132 2.656-180-45.376s-64.544-117.024-45.376-180c-58.080-31.008-95.2-91.424-95.2-159.36s37.12-128.384 95.2-159.392c-19.168-62.976-2.656-131.968 45.376-180s117.024-64.544 180-45.376c31.008-58.080 91.424-95.2 159.392-95.2s128.384 37.12 159.392 95.2c63.008-19.2 132-2.656 180 45.376 48.064 48.064 64.544 117.056 45.408 180 58.080 30.976 95.2 91.456 95.2 159.392zM847.040 328.544c-9.088-2.816-16.448-9.536-20.096-18.336s-3.168-18.72 1.248-27.168c24-45.536 15.648-100.608-20.8-137.056s-91.552-44.8-137.024-20.768c-8.416 4.448-18.368 4.928-27.168 1.248s-15.52-11.008-18.336-20.096c-15.232-49.184-60.096-82.208-111.616-82.208s-96.384 33.024-111.648 82.208c-2.816 9.088-9.536 16.448-18.304 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.152 0-10.272-1.216-14.912-3.68-45.536-24-100.576-15.648-137.024 20.768s-44.8 91.52-20.8 137.056c4.416 8.416 4.896 18.368 1.248 27.168s-11.008 15.52-20.096 18.336c-49.184 15.264-82.208 60.096-82.208 111.648s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.304s3.168 18.752-1.248 27.168c-24 45.536-15.648 100.608 20.8 137.056 36.416 36.416 91.52 44.8 137.024 20.768 8.384-4.416 18.336-4.896 27.168-1.248 8.768 3.648 15.52 11.008 18.304 20.096 15.232 49.184 60.096 82.208 111.648 82.208s96.384-33.024 111.616-82.208c2.816-9.088 9.536-16.448 18.336-20.096s18.784-3.168 27.168 1.248c45.536 24 100.608 15.648 137.024-20.768s44.8-91.52 20.8-137.056c-4.448-8.416-4.896-18.368-1.248-27.168s11.008-15.52 20.096-18.304c49.184-15.232 82.208-60.064 82.208-111.616s-33.024-96.384-82.208-111.616zM649.344 562.816l-186.176-178.368-86.56 79.264c-13.056 11.936-33.28 11.040-45.184-2.016s-11.040-33.28 1.984-45.216l108.672-99.52c6.112-5.6 13.856-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l207.808 199.104c12.768 12.224 13.184 32.48 0.96 45.248s-32.48 13.184-45.248 0.96z" /> +<glyph unicode="" glyph-name="badge-dollar" d="M992 448c0 67.936-37.12 128.384-95.2 159.392 19.168 62.976 2.656 131.968-45.408 180s-117.024 64.544-180 45.376c-30.976 58.080-91.424 95.2-159.392 95.2s-128.416-37.152-159.392-95.2c-62.944 19.136-131.968 2.656-180-45.376s-64.544-117.024-45.376-180c-58.080-31.008-95.2-91.424-95.2-159.392s37.12-128.384 95.2-159.392c-19.168-62.976-2.656-131.968 45.376-180s117.024-64.544 180-45.408c31.008-58.048 91.424-95.2 159.392-95.2s128.416 37.12 159.392 95.232c63.008-19.2 132-2.688 180 45.376s64.544 117.024 45.408 180c58.080 30.976 95.2 91.424 95.2 159.392zM845.792 336.384c-9.088-2.816-16.448-9.536-20.096-18.336s-3.168-18.72 1.248-27.168c24-45.536 15.648-100.608-20.8-137.024s-91.52-44.8-137.024-20.768c-8.448 4.448-18.368 4.928-27.168 1.248s-15.52-11.008-18.336-20.096c-15.232-49.184-60.096-82.208-111.648-82.208s-96.384 33.024-111.648 82.208c-2.816 9.088-9.536 16.448-18.304 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.152 0-10.272-1.216-14.912-3.68-45.504-24-100.576-15.648-137.024 20.8s-44.8 91.52-20.8 137.024c4.416 8.416 4.896 18.368 1.248 27.168s-11.008 15.52-20.096 18.336c-49.184 15.232-82.208 60.096-82.208 111.616s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.336s3.168 18.72-1.248 27.168c-24 45.536-15.648 100.608 20.8 137.024s91.52 44.768 137.024 20.8c8.384-4.416 18.336-4.896 27.168-1.248 8.768 3.648 15.52 11.008 18.304 20.096 15.232 49.184 60.096 82.208 111.648 82.208s96.384-33.024 111.648-82.208c2.816-9.088 9.536-16.448 18.336-20.096s18.752-3.168 27.168 1.248c45.536 24 100.576 15.648 137.024-20.768s44.8-91.52 20.8-137.024c-4.448-8.416-4.896-18.368-1.248-27.168s11.008-15.52 20.096-18.336c49.184-15.232 82.208-60.064 82.208-111.616s-33.024-96.384-82.208-111.616zM531.776 480.64c-37.76 18.144-49.504 26.688-49.504 44.672 0 4.96 0 20.128 20.864 28.672 19.2 7.872 45.088 4.704 56.512-6.912 12.384-12.576 32.672-12.736 45.248-0.352s12.736 32.672 0.352 45.28c-13.952 14.144-33.12 23.424-53.984 27.648v27.456c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.136c-2.816-0.896-5.664-1.6-8.384-2.72-37.92-15.552-60.576-48.416-60.576-87.904 0-61.152 49.6-84.96 85.792-102.368 38.656-18.592 54.368-28.576 54.368-53.152 0-17.728-23.712-32.128-39.168-32.128-23.008 0-56 15.808-62.912 22.528-12.416 12.576-32.672 12.736-45.216 0.352s-12.768-32.64-0.352-45.248c14.304-14.496 45.568-30.208 76.48-37.472v-28.896c0-17.664 14.336-32 32-32s32 14.336 32 32v30.432c37.824 12.992 71.168 47.424 71.168 90.432 0 67.264-52.384 92.448-90.656 110.848z" /> +<glyph unicode="" glyph-name="badge-percent" d="M989.28 442.432c0 67.936-37.12 128.384-95.2 159.392 19.136 63.008 2.656 132-45.408 180-48.064 48.064-117.088 64.544-180.032 45.376-30.976 58.048-91.424 95.2-159.36 95.2s-128.384-37.12-159.392-95.2c-62.976 19.168-132 2.656-180-45.376s-64.544-117.024-45.376-180c-58.080-31.008-95.2-91.424-95.2-159.392s37.12-128.384 95.2-159.36c-19.168-62.976-2.656-132 45.376-180s117.024-64.544 180-45.376c31.008-58.080 91.424-95.232 159.392-95.232s128.384 37.12 159.36 95.2c62.976-19.168 132-2.688 180.032 45.408 48.064 48.032 64.544 117.024 45.408 180 58.048 30.976 95.2 91.424 95.2 159.36zM843.072 330.816c-9.088-2.816-16.448-9.504-20.096-18.336s-3.168-18.72 1.248-27.168c24-45.568 15.616-100.64-20.8-137.056s-91.52-44.8-137.056-20.768c-8.416 4.448-18.336 4.896-27.168 1.248s-15.52-11.008-18.336-20.096c-15.232-49.184-60.096-82.208-111.616-82.208s-96.384 33.024-111.648 82.208c-2.816 9.088-9.536 16.448-18.304 20.096-3.936 1.632-8.096 2.432-12.256 2.432-5.152 0-10.272-1.216-14.912-3.68-45.504-24-100.576-15.648-137.024 20.768-36.416 36.448-44.8 91.52-20.8 137.056 4.416 8.416 4.896 18.368 1.248 27.168s-11.008 15.52-20.096 18.336c-49.184 15.232-82.208 60.096-82.208 111.616s33.024 96.384 82.208 111.616c9.088 2.816 16.448 9.536 20.096 18.336s3.168 18.72-1.248 27.168c-24 45.536-15.648 100.608 20.8 137.056s91.52 44.768 137.024 20.768c8.416-4.416 18.336-4.864 27.168-1.248 8.768 3.648 15.52 11.008 18.304 20.096 15.232 49.184 60.096 82.208 111.648 82.208s96.352-33.024 111.616-82.208c2.816-9.088 9.504-16.448 18.336-20.096s18.784-3.2 27.168 1.248c45.6 24 100.64 15.648 137.056-20.768s44.768-91.52 20.8-137.056c-4.448-8.416-4.896-18.368-1.248-27.168s11.008-15.52 20.096-18.304c49.184-15.232 82.208-60.096 82.208-111.648s-33.024-96.384-82.208-111.616zM405.568 493.056c41.984 0 76.032 34.016 76.032 76.032s-34.016 76.032-76.032 76.032-76.032-34.016-76.032-76.032 34.016-76.032 76.032-76.032zM405.568 581.088c6.624 0 12.032-5.376 12.032-12.032s-5.376-12.032-12.032-12.032-12.032 5.376-12.032 12.032 5.376 12.032 12.032 12.032zM612.992 391.84c-41.984 0-76.032-34.048-76.032-76.032s34.048-76.032 76.032-76.032 76.032 34.048 76.032 76.032-34.048 76.032-76.032 76.032zM612.992 303.808c-6.624 0-12.032 5.408-12.032 12.032s5.408 12.032 12.032 12.032 12.032-5.408 12.032-12.032-5.408-12.032-12.032-12.032zM649.568 628.8l-327.488-327.488c-12.48-12.48-12.48-32.736 0-45.248 6.272-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376l327.488 327.456c12.48 12.48 12.48 32.768 0 45.248s-32.736 12.48-45.248 0z" /> +<glyph unicode="" glyph-name="ban" d="M813.696 748.96c-83.328 83.328-192.512 124.96-301.696 124.96s-218.368-41.632-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.368 41.632 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 688.16c64.352-64.352 99.808-149.888 99.808-240.896 0-76.32-24.96-148.832-70.944-208.16l-477.92 477.856c59.36 45.984 131.84 70.944 208.16 70.944 91.008 0 176.544-35.456 240.896-99.808zM271.104 206.368c-64.352 64.352-99.808 149.888-99.808 240.896 0 76.672 25.184 149.504 71.584 208.992l478.080-478.080c-59.52-46.432-132.32-71.584-208.992-71.584-91.008 0-176.544 35.456-240.896 99.808z" /> +<glyph unicode="" glyph-name="banner-ad" d="M901.76 928h-768c-52.96 0-96-43.040-96-96v-768c0-52.928 43.040-96 96-96h768c52.928 0 96 43.072 96 96v768c0 52.96-43.072 96-96 96zM101.728 736h832v-128h-832v128zM101.728 544h832v-320h-832v320zM133.728 864h768c17.952 0 32-14.048 32-32v-32h-832v32c0 17.952 14.048 32 32 32zM293.76 32h-64v32h64v-32zM549.76 32h-64v32h64v-32zM805.76 32h-64v32h64v-32zM901.76 32h-32v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-64v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-64v64c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-64h-32c-17.952 0-32 14.048-32 32v96h832v-96c0-17.952-14.048-32-32-32zM583.744 704h-4c-17.664 0-32-14.336-32-32s14.336-32 32-32h4c17.664 0 32 14.336 32 32s-14.336 32-32 32zM455.744 704h-4.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM327.744 704h-4.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h4.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM711.744 704h-4c-17.664 0-32-14.336-32-32s14.336-32 32-32h4c17.664 0 32 14.336 32 32s-14.336 32-32 32zM645.76 512h-128c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32s32 14.336 32 32v32h64v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v192c0 17.664-14.336 32-32 32zM549.76 384v64h64v-64h-64zM805.76 512h-64c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h64c52.928 0 96 43.072 96 96v64c0 52.96-43.072 96-96 96zM837.76 352c0-17.664-14.336-32-32-32h-32v128h32c17.664 0 32-14.336 32-32v-64zM165.728 416h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM389.76 352h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM293.76 416h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="banner-discount" d="M896 928h-768c-35.296 0-64-28.704-64-64v-832c0-35.296 28.704-64 64-64h768c35.296 0 64 28.704 64 64v832c0 35.296-28.704 64-64 64zM896 160h-156.096c-312.576 72.48-396.544 270.592-418.112 352h94.208c17.664 0 32 14.336 32 32v228c0 17.664-14.336 32-32 32h-101.152v60h581.152v-704zM384 740v-164h-160v164h160zM250.848 864v-60h-58.848c-17.664 0-32-14.336-32-32v-228c0-17.664 14.336-32 32-32h64.48c16.256-68.448 77.696-243.648 292.992-352h-421.472v704h122.848zM128 32v64h768v-64h-768zM586.848 539.712c-10.496-6.080-16.672-17.536-15.936-29.632l14.976-249.984c0.736-12.672 8.928-23.68 20.832-28.096 3.616-1.344 7.36-2.016 11.104-2.016 8.48 0 16.832 3.424 22.976 9.728l51.552 53.216 10.784-18.656c5.952-10.272 16.672-16 27.712-16 5.44 0 10.944 1.376 16 4.288 15.296 8.832 20.544 28.416 11.68 43.712l-10.784 18.624 71.808 18.016c12.32 3.072 21.632 13.12 23.744 25.664 2.144 12.48-3.328 25.088-13.92 32.096l-208.96 137.984c-10.112 6.688-23.104 7.040-33.632 0.992zM733.504 387.36l-42.432-10.656c-0.256-0.064-0.48-0.224-0.736-0.288-2.496-0.704-4.992-1.6-7.36-2.976-0.064-0.032-0.128-0.064-0.192-0.096-2.336-1.376-4.384-3.072-6.24-4.864-0.192-0.192-0.48-0.32-0.672-0.544l-30.432-31.456-6.784 113.504 94.912-62.656zM493.504 717.248c6.24-6.144 14.368-9.216 22.496-9.216 8.256 0 16.48 3.168 22.784 9.504 12.416 12.576 12.288 32.864-0.288 45.28l-4 3.968c-12.608 12.416-32.864 12.32-45.28-0.256s-12.288-32.832 0.256-45.28l4.032-3.968zM698.688 602.592c-12.48 12.544-32.768 12.544-45.248 0.096-12.544-12.448-12.544-32.736-0.096-45.248l4-4.032c6.24-6.304 14.464-9.408 22.688-9.408s16.352 3.104 22.592 9.312c12.544 12.448 12.544 32.736 0.096 45.248l-4 4.032zM493.376 557.376c6.272-6.272 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l160 160c12.48 12.512 12.48 32.768 0 45.248s-32.736 12.512-45.248 0l-160-160c-12.48-12.48-12.48-32.768 0-45.248zM192 224h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 320h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="bar-char" d="M285.056 425.6h-71.744c-47.136 0-85.504-38.368-85.504-85.504v-170.24c0-11.872 9.632-21.504 21.504-21.504h199.744c11.872 0 21.504 9.632 21.504 21.504v170.24c0 47.136-38.368 85.504-85.504 85.504zM327.552 191.36h-156.736v148.768c0 23.424 19.072 42.496 42.496 42.496h71.744c23.424 0 42.496-19.072 42.496-42.496v-148.768zM547.872 659.872h-71.744c-47.136 0-85.504-38.368-85.504-85.504v-426.016h242.72v426.016c0 47.136-38.368 85.504-85.504 85.504zM810.656 830.976h-71.744c-47.136 0-85.504-38.368-85.504-85.504v-575.616c0-11.872 9.632-21.504 21.504-21.504h199.744c11.872 0 21.504 9.632 21.504 21.504v575.616c0 47.136-38.368 85.504-85.504 85.504zM853.152 191.36h-156.736v554.112c0 23.424 19.072 42.496 42.496 42.496h71.744c23.424 0 42.496-19.072 42.496-42.496v-554.112zM871.296 67.2h-721.952c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h721.952c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504z" /> +<glyph unicode="" glyph-name="barcode" d="M106.656 705.568h42.656c11.776 0 21.344-9.536 21.344-21.344v-472.448c0-11.776-9.536-21.344-21.344-21.344h-42.656c-11.776 0-21.344 9.536-21.344 21.344v472.448c0 11.776 9.536 21.344 21.344 21.344zM320 705.568h42.656c11.776 0 21.344-9.536 21.344-21.344v-472.448c0-11.776-9.536-21.344-21.344-21.344h-42.656c-11.776 0-21.344 9.536-21.344 21.344v472.448c0 11.776 9.536 21.344 21.344 21.344zM448 705.568h42.656c11.776 0 21.344-9.536 21.344-21.344v-472.448c0-11.776-9.536-21.344-21.344-21.344h-42.656c-11.776 0-21.344 9.536-21.344 21.344v472.448c0 11.776 9.536 21.344 21.344 21.344zM576 705.568h85.344c11.776 0 21.344-9.536 21.344-21.344v-472.448c0-11.776-9.536-21.344-21.344-21.344h-85.344c-11.776 0-21.344 9.536-21.344 21.344v472.448c0 11.776 9.536 21.344 21.344 21.344zM874.656 705.568h42.656c11.776 0 21.344-9.536 21.344-21.344v-472.448c0-11.776-9.536-21.344-21.344-21.344h-42.656c-11.776 0-21.344 9.536-21.344 21.344v472.448c0 11.776 9.536 21.344 21.344 21.344zM234.656 705.568v0c-11.776 0-21.344-9.568-21.344-21.344v-472.448c0-11.776 9.568-21.344 21.344-21.344v0c11.776 0 21.344 9.568 21.344 21.344v472.448c0 11.776-9.568 21.344-21.344 21.344zM789.344 705.568v0c-11.776 0-21.344-9.568-21.344-21.344v-472.448c0-11.776 9.568-21.344 21.344-21.344v0c11.776 0 21.344 9.568 21.344 21.344v472.448c0 11.776-9.568 21.344-21.344 21.344z" /> +<glyph unicode="" glyph-name="bar-progress" d="M932.48 896h-840.96c-32.832 0-59.52-26.72-59.52-59.52v-136.96c0-32.832 26.72-59.52 59.52-59.52h840.96c32.832 0 59.52 26.72 59.52 59.52v136.96c0 32.832-26.688 59.52-59.52 59.52zM928 704h-832v128h832v-128zM192 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM932.48 576h-840.96c-32.832 0-59.52-26.72-59.52-59.52v-136.96c0-32.832 26.72-59.52 59.52-59.52h840.96c32.832 0 59.52 26.688 59.52 59.52v136.96c0 32.832-26.688 59.52-59.52 59.52zM928 384h-832v128h832v-128zM932.48 256h-840.96c-32.832 0-59.52-26.688-59.52-59.52v-136.96c0-32.832 26.72-59.52 59.52-59.52h840.96c32.832 0 59.52 26.688 59.52 59.52v136.96c0 32.832-26.688 59.52-59.52 59.52zM928 64h-832v128h832v-128zM192 416h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 96h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="bars" d="M64 775.936h895.392c17.664 0 32 14.336 32 32s-14.336 32-32 32h-895.392c-17.664 0-32-14.336-32-32s14.336-32 32-32zM959.392 480h-894.88c-17.664 0-32-14.336-32-32s14.336-32 32-32h894.88c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 120.064h-895.52c-17.664 0-32-14.336-32-32s14.336-32 32-32h895.52c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="bar-sort-left" d="M64 768h463.104c17.664 0 32 14.336 32 32s-14.336 32-32 32h-463.104c-17.664 0-32-14.336-32-32s14.336-32 32-32zM545.408 128h-473.76c-17.664 0-32-14.336-32-32s14.336-32 32-32h473.76c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 479.168h-13.216c-2.272 0.512-4.64 0.832-7.040 0.832h-615.264c-2.432 0-4.768-0.32-7.040-0.832h-253.44c-17.664 0-32-14.336-32-32s14.336-32 32-32h896c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="bar-sort-right" d="M706.56 416.832h253.44c17.664 0 32 14.336 32 32s-14.336 32-32 32h-896c-17.664 0-32-14.336-32-32s14.336-32 32-32h13.216c2.272-0.512 4.608-0.832 7.040-0.832h615.264c2.432 0 4.768 0.32 7.040 0.832zM960 128h-463.104c-17.664 0-32-14.336-32-32s14.336-32 32-32h463.104c17.664 0 32 14.336 32 32s-14.336 32-32 32zM478.624 768h473.76c17.664 0 32 14.336 32 32s-14.336 32-32 32h-473.76c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="battery" d="M470.816 672h14.336v-14.336c0-17.664 14.336-32 32-32s32 14.336 32 32v14.336h14.336c17.664 0 32 14.336 32 32s-14.336 32-32 32h-14.336v14.336c0 17.664-14.336 32-32 32s-32-14.336-32-32v-14.336h-14.336c-17.664 0-32-14.336-32-32s14.336-32 32-32zM563.52 160h-92.672c-17.664 0-32-14.336-32-32s14.336-32 32-32h92.672c17.664 0 32 14.336 32 32s-14.336 32-32 32zM620.992 456.832h-32v96c0 17.664-14.336 32-32 32h-96c-13.088 0-24.864-7.968-29.696-20.128l-64-160c-3.936-9.856-2.72-21.024 3.232-29.824s15.872-14.048 26.496-14.048h32v-128c0-17.664 14.336-32 32-32h64c12.096 0 23.2 6.848 28.64 17.664l96 192c4.96 9.92 4.448 21.696-1.408 31.136s-16.128 15.168-27.232 15.168zM505.216 264.832h-12.224v128c0 17.664-14.336 32-32 32h-16.736l38.4 96h42.336v-96c0-17.664 14.336-32 32-32h12.224l-64-128zM805.184 32h-20.832c13.12 20.928 20.832 45.568 20.832 72v623.968c0 75.008-61.024 136-136 136h-10.72l-54.624 54.624c-6.016 6.016-14.144 9.376-22.624 9.376h-128c-8.48 0-16.64-3.36-22.624-9.376l-54.624-54.624h-10.72c-75.008 0-136-61.024-136-136v-623.968c0-26.464 7.712-51.104 20.832-72h-20.864c-17.664 0-32-14.336-32-32s14.336-32 32-32h576c17.664 0 32 14.336 32 32s-14.336 32-32 32zM365.184 32c-36.96 0-67.168 28.096-71.232 64h45.568c17.664 0 32 14.336 32 32s-14.336 32-32 32h-46.4v512h46.4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-45.568c4.064 35.904 34.24 64 71.232 64h303.936c36.96 0 67.168-28.096 71.232-64h-46.368c-17.664 0-32-14.336-32-32s14.336-32 32-32h47.168v-512h-47.168c-17.664 0-32-14.336-32-32s14.336-32 32-32h46.368c-4.064-35.904-34.24-64-71.232-64h-303.936z" /> +<glyph unicode="" glyph-name="behance" d="M640.768 683.104h214.048v-51.968h-214.048v51.968zM426.304 469.792v0c47.36 22.624 72.096 56.896 72.096 110.208 0 105.152-78.336 130.784-168.768 130.784h-248.928v-527.872h255.904c95.936 0 186.016 46.048 186.016 153.28 0 66.304-31.424 115.264-96.352 133.6zM196.768 620.672h108.864c41.856 0 79.552-11.744 79.552-60.32 0-44.832-29.344-62.848-70.752-62.848h-117.664v123.168zM320.832 272.576h-124.064v145.376h126.464c51.104 0 83.424-21.312 83.424-75.36 0-53.312-38.592-70.016-85.792-70.016zM938.688 368.512c0 113.056-66.144 207.328-186.048 207.328-116.48 0-195.552-87.584-195.552-202.272 0-119.008 74.912-200.64 195.552-200.64 91.328 0 150.432 41.12 178.88 128.544h-92.64c-9.984-32.64-51.072-49.888-82.976-49.888-61.504 0-93.856 36.064-93.856 97.28h275.712c0.448 6.24 0.896 12.96 0.896 19.648zM662.24 414.976c3.424 50.208 36.768 81.6 87.136 81.6 52.736 0 79.264-30.976 83.712-81.6h-170.848z" /> +<glyph unicode="" glyph-name="blob-shape" d="M125.856 835.552c43.328 9.024 87.552 5.216 127.872-10.848 3.872-1.568 7.904-2.304 11.84-2.304 12.736 0 24.736 7.648 29.728 20.16 6.528 16.416-1.472 35.040-17.856 41.6-52.064 20.768-108.992 25.632-164.608 14.080-17.312-3.616-28.416-20.544-24.832-37.856s20.544-28.352 37.856-24.832zM973.536 147.648c-12.512 12.48-32.768 12.48-45.248-0.032-18.72-18.752-39.424-35.328-61.312-49.12-50.144-31.2-100.288-52.448-149.024-63.072-17.28-3.776-28.192-20.832-24.416-38.112 3.264-14.976 16.544-25.152 31.232-25.152 2.272 0 4.544 0.256 6.88 0.736 55.872 12.256 112.768 36.224 169.344 71.392 26.112 16.48 50.496 36.064 72.576 58.144 12.48 12.48 12.48 32.768-0.032 45.248zM958.88 303.264c19.904 55.424 29.312 143.84 2.944 207.072-73.664 176.832-275.168 169.088-335.264 162.4-91.136-10.208-144.672 7.52-200.512 29.92l-163.488 65.376c-64.448 25.632-138.048 10.176-187.552-39.296-49.92-49.92-62.592-125.216-31.552-187.392l26.688-53.376c16.192-32.32 17.28-69.888 3.040-103.072l-37.376-87.008c-26.752-62.56-11.872-132.928 38.816-183.552 34.080-34.080 76.96-52 120.32-52 21.312 0 42.752 4.352 63.296 13.184l83.648 35.712c12.576 5.408 25.76 9.536 39.168 12.288v0c27.936 5.664 56.32 5.408 84.288-0.8l130.24-28.832c76.064-16.896 149.76 0.384 239.584 56.48 3.648 2.4 90.24 59.808 123.648 152.864zM609.504 156.384l-130.24 28.832c-36.768 8.16-74.112 8.48-110.912 1.024-17.696-3.616-35.104-9.024-51.648-16.16l-83.648-35.712c-37.888-16.352-81.248-6.624-113.152 25.248-31.776 31.808-41.472 75.168-25.216 113.12l37.376 86.976c21.664 50.56 19.936 107.744-4.64 156.928l-26.688 53.376c-18.752 37.472-10.912 83.072 19.552 113.504 21.376 21.376 49.792 32.768 78.56 32.768 13.472 0 27.072-2.528 40-7.648l163.392-65.344c59.168-23.744 125.824-45.92 231.392-34.112 48.896 5.408 212.576 12.352 269.12-123.424 18.72-44.928 11.904-116.384-4.096-160.8-26.080-72.448-97.824-120.48-97.92-120.576-73.856-46.144-132.768-60.992-191.232-47.936zM713.504 730.464c37.92 0 153.312 0 203.52-50.144 6.144-6.112 14.336-9.376 22.624-9.376 4.128 0 8.288 0.8 12.256 2.432 11.936 4.96 19.744 16.64 19.744 29.568 0 148.64-84.448 220.896-258.144 220.896-53.312 0-96.736-43.36-96.736-96.672s43.392-96.704 96.736-96.704zM713.504 859.872c108.064 0 165.952-27.936 185.952-93.632-59.040 24.576-130.816 28.256-185.952 28.256-18.048 0-32.736 14.656-32.736 32.704s14.688 32.672 32.736 32.672z" /> +<glyph unicode="" glyph-name="block" d="M809.984 831.008h-595.968c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.488 38.496-86.016 86.016-86.016h596c47.488 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM809.984 744.992v-596s-596 0-596 0v0 596s596 0 596 0v0zM341.344 661.344c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM341.344 234.656c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM770.016 661.344c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM770.016 234.656c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672z" /> +<glyph unicode="" glyph-name="blockquot" d="M593.312 513.344h63.2c7.296 0 14.080 3.712 18.048 9.824l70.24 108.64c5.056 7.424 9.504 14.336 13.344 20.992 8.096-13.888 19.424-23.904 31.072-30.496l-50.304-75.584c-4.384-6.592-4.8-15.072-1.056-22.080s11.040-11.36 18.944-11.36h63.2c7.296 0 14.080 3.712 18.048 9.824l70.24 108.64c19.648 28.896 30.304 49.952 30.304 78.4 0 51.744-38.368 89.28-91.232 89.28-27.424 0-52.736-9.792-71.264-27.584-4.896-4.704-9.216-9.888-12.96-15.488-15.296 26.4-44.064 43.072-79.264 43.072-27.424 0-52.736-9.792-71.264-27.584-19.168-18.4-29.76-44.256-29.76-72.8 0-39.712 20.896-64.352 42.88-76.768l-50.304-75.584c-4.384-6.592-4.8-15.072-1.056-22.080s11.040-11.36 18.944-11.36zM847.36 756.48c29.312 0 48.256-18.176 48.256-46.272 0-14.272-3.328-25.504-22.976-54.4-0.096-0.128-0.192-0.288-0.288-0.416l-64.032-99.040h-11.36l43.712 65.664c4.384 6.592 4.832 15.072 1.088 22.080s-11.008 11.36-18.944 11.36c-0.32 0-33.472 4.864-33.472 43.68 0 33.792 23.84 57.376 58.016 57.376zM683.84 756.48c29.312 0 48.256-18.176 48.256-46.272 0-14.272-3.328-25.504-22.976-54.4-0.096-0.128-0.192-0.288-0.288-0.416l-64.032-99.040h-11.36l43.712 65.664c4.384 6.592 4.832 15.072 1.088 22.080s-11.008 11.36-18.944 11.36c-0.32 0-33.472 4.864-33.472 43.68 0 33.792 23.84 57.376 58.016 57.376zM917.088 556.352c-11.872 0-21.504-9.632-21.504-21.504v-328.704l-76-76h-658.72c-18.048 0-32.704 14.688-32.704 32.704v433.312c0 18.048 14.656 32.704 32.704 32.704h374.656c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-374.656c-41.76 0-75.712-33.952-75.712-75.712v-433.312c0-41.76 33.952-75.712 75.712-75.712h702.016c41.76 0 75.712 33.952 75.712 75.712v372c0 11.872-9.632 21.504-21.504 21.504zM259.072 492.352h229.856c25.728 0 46.592 20.224 46.592 45.152s-20.864 45.152-46.592 45.152h-229.856c-25.728 0-46.592-20.224-46.592-45.152s20.864-45.152 46.592-45.152zM796.736 424.64c0 11.872-9.632 21.504-21.504 21.504h-551.936c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h551.936c11.872 0 21.504 9.632 21.504 21.504zM670.752 355.84h-447.424c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h447.424c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM670.752 265.568h-447.424c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h447.424c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="blog" d="M992.96 751.744c0 2.368-0.288 4.608-0.768 6.816v57.12c0 52.928-43.040 95.936-95.936 95.936h-767.36c-52.928 0-95.936-43.040-95.936-95.936v-735.36c0-52.928 43.040-95.936 95.936-95.936h767.36c52.928 0 95.936 43.040 95.936 95.936v664.64c0.48 2.208 0.768 4.48 0.768 6.816zM128.896 847.648h767.36c17.888 0 31.936-14.016 31.936-31.936v-31.936h-831.232v31.936c0 17.92 14.016 31.936 31.936 31.936zM896.256 48.352h-767.36c-17.888 0-31.936 14.048-31.936 31.936v639.456h831.232v-639.456c0-17.92-14.048-31.936-31.936-31.936zM544.576 431.52v96.448c0 17.664-14.336 32-32 32h-319.744c-17.664 0-32-14.336-32-32v-287.744c0-17.664 14.336-32 32-32h319.744c17.664 0 32 14.336 32 32v191.168s0 0.128 0 0.192zM480.576 495.936v-42.24l-134.112-53.632-39.936 26.624c-10.752 7.168-24.768 7.168-35.52 0l-46.176-30.784v100.064h255.744zM224.864 272.192v46.784l63.936 42.592 78.144-52.096c14.72-9.792 34.56-5.792 44.352 8.864 7.968 12 6.688 27.296-1.952 37.888l71.232 28.48v-112.576h-255.744zM256.768 144.288h-63.936c-17.664 0-32-14.336-32-32s14.336-32 32-32h63.936c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512.576 144.288h-159.872c-17.664 0-32-14.336-32-32s14.336-32 32-32h159.872c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832.288 559.936h-191.808c-17.664 0-32-14.336-32-32v-159.872c0-17.664 14.336-32 32-32h191.84c17.664 0 32 14.336 32 32v159.872c0 17.664-14.336 32-32 32zM800.288 400.064h-127.808v95.872h127.808v-95.872zM640.48 208.192h63.936c17.664 0 32 14.336 32 32s-14.336 32-32 32h-63.936c-17.664 0-32-14.336-32-32s14.336-32 32-32zM832.288 144.288h-191.808c-17.664 0-32-14.336-32-32s14.336-32 32-32h191.84c17.664 0 32 14.336 32 32s-14.336 32-32 32zM400.672 623.84h31.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.968c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240.8 623.84h31.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM624.48 655.84c0 17.664-14.336 32-32 32h-31.968c-17.664 0-32-14.336-32-32s14.336-32 32-32h31.968c17.664 0 32 14.336 32 32zM720.384 623.84h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="blog-carousel" d="M800 814.336h-576c-17.664 0-32-14.336-32-32v-672c0-17.664 14.336-32 32-32h576c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM768 142.336h-512v608h512v-608zM128 814.336h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-608h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM320 174.336h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 302.336h384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 398.336h192c17.664 0 32 14.336 32 32s-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 430.336c0-17.664 14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32zM320 654.336h256c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 494.336h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM960 142.336h-32v608h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-672c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM516 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM404.032 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM628 46.336h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="blog-post" d="M993.888 767.52c0 11.808-4.608 22.912-12.96 31.264l-56.672 56.672c-17.248 17.248-45.28 17.248-62.528 0l-225.632-225.632c-6.88-6.88-11.328-15.936-12.576-25.568l-11.2-86.304c-1.12-8.608 1.76-17.088 7.904-23.2 5.28-5.28 12.256-8.128 19.584-8.128 1.216 0 2.432 0.064 3.648 0.224l86.304 11.2c9.632 1.248 18.72 5.728 25.568 12.576l25.408 25.408s0 0 0 0l200.224 200.224c8.352 8.352 12.96 19.456 12.96 31.264zM892.128 825.056c0.224 0.224 0.544 0.352 0.864 0.352s0.64-0.128 0.864-0.352l56.672-56.672c0.096-0.096 0.352-0.352 0.352-0.864s-0.256-0.768-0.352-0.864l-10.144-10.144-58.4 58.4 10.144 10.144zM763.712 579.84l-13.984 13.984 146.272 146.272 13.984-13.984-146.272-146.272zM705.312 638.24l146.272 146.272 13.984-13.984-146.272-146.272-13.984 13.984zM724.896 541.024c-0.192-0.192-0.448-0.32-0.704-0.352l-66.688-8.672 8.64 66.688c0.032 0.256 0.16 0.512 0.352 0.704l8.416 8.416 58.4-58.4-8.416-8.416zM830.624 533.184c-11.872 0-21.504-9.632-21.504-21.504v-280.256l-64.288-64.288h-276.032v435.52h126.304c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-381.6v44.576c0 23.424 19.072 42.496 42.496 42.496h448c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-448c-47.136 0-85.504-38.368-85.504-85.504v-480.576c0-47.136 38.368-85.504 85.504-85.504h510.624c47.136 0 85.504 38.368 85.504 85.504v302.048c0 11.872-9.632 21.504-21.504 21.504zM425.824 602.656v-435.52h-29.408v334.272c0 5.664-4.608 10.272-10.272 10.272h-172.64v90.976h212.32zM246.144 690.592c0-9.536 7.744-17.28 17.28-17.28s17.28 7.744 17.28 17.28-7.744 17.28-17.28 17.28-17.28-7.744-17.28-17.28zM325.12 690.592c0-9.536 7.744-17.28 17.28-17.28s17.28 7.744 17.28 17.28-7.744 17.28-17.28 17.28-17.28-7.744-17.28-17.28zM262.72 538.272h124.928c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-124.928c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504z" /> +<glyph unicode="" glyph-name="bluetooth" d="M741.888 287.776l-165.76 165.76 159.2 159.2c24.288 24.288 24.288 63.776 0 88.064l-154.88 154.88c-17.888 17.888-44.512 23.168-67.872 13.472s-38.432-32.256-38.432-57.504v-256.128l-177.024 177.024c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l218.208-218.208-220.672-220.672c-16.8-16.8-16.8-44.032 0-60.8 16.8-16.8 44.032-16.8 60.8 0l179.488 179.488v-269.28c0-25.248 15.104-47.872 38.432-57.504 7.776-3.2 15.872-4.768 23.904-4.768 16.16 0 32.032 6.304 44 18.272l161.44 161.44c24.288 24.288 24.288 63.776 0 88.064zM560.128 754.4l97.568-97.568-97.568-97.568v195.2zM560.128 139.616v208.352l104.192-104.192-104.192-104.192z" /> +<glyph unicode="" glyph-name="bolt" d="M849.376 541.568c-7.168 14.848-22.24 24.288-38.688 24.288h-244.32l59.008 249.696c5.088 20.192-3.712 41.344-21.76 51.968-18.464 10.848-41.952 7.84-57.056-7.296-0.736-0.736-1.44-1.504-2.144-2.304l-363.648-420.704c-11.008-12.704-13.568-30.72-6.56-45.984 7.008-15.328 22.272-25.12 39.072-25.12h245.632l-60.96-288.864c-4.608-20.576 5.024-41.632 23.68-51.68 7.040-3.744 14.624-5.6 22.176-5.6 12.928 0 25.6 5.344 34.784 15.392 0.64 0.736 1.28 1.44 1.888 2.176l363.808 458.528c10.24 12.928 12.192 30.592 5.024 45.44zM516.224 220.96l37.856 179.232c2.688 12.672-0.512 25.888-8.672 35.968s-20.448 15.904-33.408 15.904h-204.672l197.888 228.96-35.040-148.32c-3.040-12.8 0-26.272 8.096-36.576 8.16-10.336 20.576-16.288 33.696-16.288h209.664l-205.408-258.912z" /> +<glyph unicode="" glyph-name="book" d="M960 224.128v608c0 52.96-43.072 96-96 96h-672c-82.4 0-128-75.68-128-128v-704c0-85.216 82.048-128 128-128h736c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v101.6c37.216 13.216 64 48.672 64 90.4zM128 96.128v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64v192c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c0 18.208 19.040 64 64 64h32v-448c0-17.664 14.336-32 32-32s32 14.336 32 32v448h576c17.952 0 32-14.048 32-32v-608c0-17.664-14.336-32-32-32h-544c-11.232 0-21.984-2.048-32-5.6v37.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-11.232 2.048-21.952 5.6-32h-37.6c-15.424 0-64 19.264-64 64zM320 32.128c-17.952 0-32 14.048-32 32v32c0 17.952 14.048 32 32 32h512v-96h-512zM384 736.128h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 608.128h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 352.128h352c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM416 480.128h288v-64h-288v64zM384 256.128h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM704 288.128c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32z" /> +<glyph unicode="" glyph-name="bookmark" d="M767.648 873.984h-511.328c-47.392 0-86.016-38.56-86.016-86.016v-692.896c0-25.504 15.072-48.64 38.368-58.976s50.56-5.92 69.472 11.168c0.352 0.288 0.672 0.64 1.024 0.992l232.8 225.632 232.8-225.632c0.352-0.352 0.672-0.64 1.024-0.992 12.064-10.976 27.648-16.736 43.36-16.736 8.832 0 17.696 1.792 26.112 5.504 23.296 10.336 38.368 33.504 38.368 58.976v692.992c0 47.392-38.56 86.016-86.016 86.016zM767.648 145.92l-225.76 218.784c-16.672 16.16-43.168 16.16-59.872 0l-225.76-218.784v642.080s0 0 0 0h511.328v-642.080z" /> +<glyph unicode="" glyph-name="box" d="M896.256 662.912s0 0.096 0 0.096c-0.032 0.8-0.128 1.632-0.224 2.432 0 0.032 0 0.128 0 0.16-0.224 1.664-0.512 3.328-0.896 4.96 0 0.096-0.032 0.224-0.096 0.288-0.16 0.64-0.352 1.312-0.544 1.952-0.096 0.224-0.128 0.416-0.224 0.672-0.16 0.544-0.384 1.056-0.544 1.632-0.096 0.224-0.16 0.48-0.256 0.672-0.224 0.608-0.48 1.184-0.736 1.792-0.032 0.128-0.128 0.256-0.16 0.416-0.352 0.736-0.672 1.44-1.024 2.144-0.096 0.16-0.16 0.288-0.256 0.48-0.288 0.544-0.608 1.12-0.896 1.632-0.128 0.224-0.224 0.384-0.352 0.544-0.352 0.512-0.64 1.024-0.992 1.536-0.096 0.128-0.224 0.288-0.288 0.416-1.408 2.048-3.040 3.968-4.768 5.76 0 0-0.032 0.032-0.096 0.096-0.608 0.608-1.184 1.152-1.824 1.696 0 0 0 0 0 0-1.92 1.696-4 3.232-6.24 4.608-0.096 0.032-0.16 0.096-0.256 0.128-0.608 0.384-1.248 0.736-1.824 1.056-0.16 0.096-0.352 0.16-0.512 0.288-0.512 0.256-1.056 0.544-1.632 0.8-0.224 0.096-0.416 0.224-0.672 0.288-0.544 0.256-1.12 0.48-1.664 0.672-0.224 0.096-0.416 0.16-0.608 0.256 0 0-0.096 0-0.128 0.032l-341.344 128.032c-9.728 3.68-20.48 3.68-30.208 0l-341.472-127.968s-0.096 0-0.128-0.032c-0.224-0.096-0.416-0.16-0.608-0.256-0.544-0.224-1.12-0.416-1.664-0.672-0.224-0.096-0.48-0.224-0.672-0.288-0.544-0.256-1.056-0.512-1.632-0.8-0.16-0.096-0.384-0.16-0.544-0.288-0.64-0.352-1.248-0.672-1.824-1.024-0.096-0.032-0.16-0.096-0.256-0.16-2.208-1.376-4.32-2.912-6.24-4.608 0 0-0.032 0-0.096-0.032-0.608-0.544-1.184-1.12-1.792-1.696 0 0-0.032-0.032-0.096-0.096-1.76-1.792-3.36-3.712-4.768-5.76-0.128-0.16-0.224-0.288-0.288-0.48-0.352-0.512-0.672-1.024-0.992-1.536-0.128-0.224-0.256-0.384-0.352-0.608-0.288-0.544-0.64-1.056-0.896-1.632-0.096-0.16-0.16-0.288-0.256-0.48-0.384-0.672-0.736-1.408-1.024-2.144-0.032-0.128-0.128-0.256-0.16-0.416-0.256-0.608-0.512-1.184-0.736-1.792-0.096-0.224-0.16-0.48-0.256-0.672-0.224-0.544-0.384-1.056-0.544-1.632-0.096-0.224-0.128-0.416-0.224-0.64-0.224-0.64-0.384-1.312-0.544-1.952 0-0.096-0.032-0.224-0.096-0.288-0.384-1.632-0.736-3.296-0.896-4.96 0-0.032 0-0.128 0-0.16-0.096-0.8-0.16-1.632-0.224-2.432 0 0 0-0.096 0-0.128-0.096-1.056-0.096-2.176-0.096-3.232v-426.784c0-17.952 11.168-34.016 28-40.288l341.344-127.136c0.288-0.128 0.64-0.224 0.928-0.288 0.672-0.256 1.408-0.48 2.144-0.672 0.608-0.16 1.248-0.352 1.824-0.48 0.672-0.16 1.312-0.352 2.016-0.48 0.768-0.128 1.536-0.256 2.304-0.352 0.544-0.096 1.12-0.16 1.664-0.224 1.376-0.128 2.72-0.224 4.096-0.224s2.72 0.096 4.096 0.224c0.544 0.032 1.12 0.128 1.664 0.224 0.768 0.096 1.536 0.224 2.304 0.352 0.672 0.128 1.312 0.288 2.016 0.48 0.64 0.16 1.248 0.288 1.888 0.48 0.736 0.224 1.408 0.416 2.080 0.672 0.288 0.128 0.64 0.16 0.992 0.288l341.344 127.136c16.8 6.272 28 22.368 28 40.288v426.784c0 1.12 0 2.176-0.096 3.232zM468.992 167.552l-255.36 95.136v335.712l255.36-95.136v-335.712zM512 579.040l-218.528 81.408 218.528 81.952 218.528-81.952-218.528-81.408zM810.336 262.688l-255.328-95.136v335.712l255.328 95.136v-335.712z" /> +<glyph unicode="" glyph-name="box-archive" d="M852.384 575.328c-23.776 0-43.008-19.232-43.008-43.008v-383.392h-595.712v383.392c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-385.92c0-46.048 38.56-83.456 86.016-83.456h595.744c47.392 0 86.016 37.472 86.016 83.456v385.92c0 23.776-19.232 43.008-43.008 43.008zM810.336 831.328h-596.64c-47.392 0-86.016-38.56-86.016-86.016v-84.992c0-23.776 19.232-43.008 43.008-43.008h682.656c23.776 0 43.008 19.232 43.008 43.008v84.992c0 47.392-38.56 86.016-86.016 86.016zM810.336 703.328h-596.64v41.984h596.64v-41.984zM682.656 489.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-341.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h341.344z" /> +<glyph unicode="" glyph-name="box-check" d="M896.288 597.664c0 1.28-0.096 2.56-0.224 3.808 0 0.288-0.096 0.608-0.128 0.896-0.128 0.992-0.256 1.92-0.416 2.848-0.096 0.416-0.16 0.864-0.256 1.248-0.256 1.152-0.512 2.272-0.864 3.36-0.128 0.352-0.256 0.736-0.384 1.056-0.256 0.8-0.544 1.632-0.896 2.432-0.16 0.416-0.384 0.896-0.544 1.312-0.352 0.8-0.768 1.632-1.152 2.432-0.16 0.288-0.288 0.608-0.416 0.864-0.544 1.024-1.184 2.048-1.824 3.040-0.224 0.352-0.416 0.64-0.672 0.992-0.256 0.384-0.512 0.768-0.8 1.152l-128 170.656c-8.096 10.848-20.864 17.184-34.4 17.184h-426.624c-13.536 0-26.272-6.368-34.4-17.184l-128-170.656c-0.288-0.384-0.512-0.768-0.8-1.152-0.224-0.352-0.48-0.64-0.672-0.992-0.64-0.992-1.28-2.016-1.824-3.040-0.16-0.288-0.288-0.608-0.48-0.896-0.416-0.768-0.8-1.568-1.152-2.4-0.224-0.416-0.384-0.896-0.544-1.312-0.288-0.8-0.608-1.568-0.896-2.4-0.128-0.384-0.256-0.736-0.384-1.12-0.352-1.12-0.64-2.272-0.864-3.36-0.096-0.416-0.16-0.864-0.256-1.248-0.16-0.928-0.352-1.92-0.416-2.848 0-0.288-0.096-0.608-0.128-0.896-0.128-1.28-0.16-2.528-0.224-3.808 0-0.128 0-0.224 0-0.352v-469.344c0-23.776 19.232-43.008 43.008-43.008h682.656c23.776 0 43.008 19.232 43.008 43.008v469.344s0 0.224 0 0.352zM767.328 640.352h-212.352v84.64h148.832l63.488-84.64zM320.16 724.992h148.832v-84.64h-212.352l63.488 84.64zM213.664 171.008v383.328h255.328v-22.016c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v22.016h255.328v-383.328h-596.64zM609.024 476.832l-147.36-152.96-54.368 54.368c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l85.344-85.344c8.064-8.064 18.976-12.576 30.432-12.576 0.128 0 0.256 0 0.384 0 11.552 0.128 22.56 4.864 30.56 13.184l177.792 184.544c16.48 17.12 15.968 44.32-1.152 60.8s-44.32 15.968-60.8-1.152z" /> +<glyph unicode="" glyph-name="box-circle-check" d="M725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM837.408 319.264c9.76-9.44 11.776-23.904 5.856-35.36-1.28-2.528-2.976-4.896-5.088-7.040l-123.296-128c-5.6-5.792-13.28-9.12-21.344-9.216h-0.288c-7.968 0-15.584 3.168-21.216 8.8l-59.232 59.168c-11.68 11.744-11.68 30.72 0 42.464 11.744 11.744 30.72 11.744 42.464 0l37.6-37.6 102.112 105.984c4.896 5.12 11.168 8.064 17.696 8.928 8.704 1.152 17.888-1.536 24.704-8.096zM448 256.352h-276.992v335.648h212.64v-15.392c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v15.392h212.64v-80.992c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v123.744s0 0.16 0 0.256v0c0 0.64 0 1.248 0 1.824 0 0.48 0 0.928-0.096 1.376 0 0.096 0 0.16 0 0.256 0 0.256-0.032 0.512-0.096 0.768 0 0.128 0 0.256 0 0.352 0 0.128 0 0.288-0.032 0.416-0.128 1.12-0.288 2.208-0.512 3.328 0 0.032 0 0.096 0 0.128 0 0.16-0.096 0.352-0.096 0.512-0.032 0.224-0.096 0.48-0.128 0.672 0 0.16-0.032 0.352-0.128 0.512-0.096 0.416-0.224 0.864-0.352 1.28-0.032 0.224-0.128 0.416-0.224 0.64-0.128 0.416-0.256 0.8-0.384 1.248-0.352 1.056-0.736 2.080-1.152 3.104 0 0 0 0 0 0-0.096 0.256-0.224 0.512-0.352 0.768s-0.224 0.512-0.352 0.768c-0.224 0.48-0.416 0.928-0.672 1.44-0.096 0.224-0.224 0.384-0.352 0.608-0.256 0.48-0.512 0.928-0.8 1.408-0.384 0.672-0.768 1.312-1.184 2.016-0.352 0.512-0.64 0.992-1.024 1.44-0.224 0.288-0.384 0.608-0.608 0.896l-111.712 152.96c-8.096 11.104-20.992 17.632-34.72 17.632h-373.408c-13.728 0-26.624-6.56-34.72-17.632l-111.712-152.96c-0.16-0.256-0.352-0.512-0.544-0.768-0.384-0.544-0.768-1.12-1.152-1.664s-0.736-1.152-1.056-1.76c-0.288-0.544-0.64-1.12-0.928-1.664-0.096-0.16-0.224-0.352-0.288-0.512-0.256-0.48-0.48-0.928-0.672-1.44-0.096-0.224-0.16-0.416-0.256-0.608-0.16-0.384-0.352-0.8-0.512-1.248-0.384-0.928-0.736-1.92-1.056-2.848-0.128-0.384-0.224-0.736-0.352-1.12-0.096-0.288-0.16-0.608-0.256-0.896-0.096-0.352-0.224-0.736-0.288-1.12-0.096-0.288-0.128-0.544-0.16-0.864-0.096-0.384-0.16-0.736-0.256-1.12-0.224-1.056-0.384-2.080-0.512-3.2 0-0.096 0-0.16 0-0.256 0-0.288-0.032-0.544-0.096-0.864 0-0.128 0-0.256 0-0.384s0-0.288 0-0.416c0-0.416-0.032-0.864-0.096-1.28 0-0.64 0-1.248 0-1.824v0-421.664c0-23.776 19.232-43.008 43.008-43.008h320c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM640.672 678.016h-171.008v67.328h121.824l49.184-67.328zM261.856 745.344h121.824v-67.328h-171.008l49.184 67.328z" /> +<glyph unicode="" glyph-name="box-open" d="M937.888 533.792l-42.528 185.248c-0.352 1.568-0.768 3.168-1.312 4.704 0 0 0 0.096 0 0.128-0.416 1.28-0.928 2.56-1.504 3.808-0.032 0.128-0.096 0.224-0.16 0.352-0.544 1.152-1.152 2.304-1.792 3.424-0.096 0.128-0.16 0.256-0.256 0.416-0.64 1.056-1.312 2.144-2.080 3.168-0.096 0.128-0.16 0.256-0.288 0.384-0.768 1.024-1.568 2.048-2.432 2.976-0.096 0.096-0.16 0.16-0.256 0.256-0.896 0.992-1.824 1.952-2.816 2.848-0.032 0.032-0.096 0.096-0.128 0.128-1.024 0.928-2.144 1.824-3.232 2.688 0 0 0 0 0 0-3.36 2.56-7.168 4.608-11.36 6.048-0.032 0-0.128 0.032-0.16 0.032-1.248 0.416-2.528 0.8-3.808 1.152-0.128 0-0.256 0.096-0.384 0.096s-0.224 0.032-0.352 0.096l-341.344 79.328c-6.656 1.536-13.568 1.504-20.192-0.16l-341.344-85.344s-0.16-0.032-0.256-0.096c-0.096 0-0.224-0.032-0.288-0.096-1.312-0.352-2.592-0.768-3.84-1.184 0 0-0.032 0-0.096 0-5.504-2.048-10.4-5.12-14.496-8.96 0 0-0.032-0.032-0.096-0.096-0.992-0.928-1.92-1.92-2.816-2.944-0.096-0.096-0.128-0.16-0.224-0.256-0.864-0.992-1.664-2.016-2.4-3.040-0.096-0.128-0.16-0.256-0.256-0.384-0.736-1.024-1.408-2.080-2.016-3.168-0.096-0.128-0.16-0.288-0.256-0.416-0.608-1.12-1.184-2.208-1.696-3.36-0.032-0.128-0.128-0.256-0.16-0.384-0.512-1.184-0.992-2.432-1.408-3.68 0-0.096-0.032-0.16-0.096-0.256-0.416-1.312-0.8-2.656-1.12-4 0 0 0 0 0 0v-0.128s-0.128-0.384-0.16-0.608l-42.496-192.256c-2.464-11.232-0.384-22.944 5.856-32.608s16.032-16.384 27.264-18.784l29.856-6.304v-228.064c0-19.456 13.056-36.48 31.84-41.504l320-86.272c3.68-0.992 7.424-1.504 11.168-1.504 3.68 0 7.328 0.48 10.88 1.408l320 83.744c18.912 4.96 32.128 22.048 32.128 41.6v242.4l31.616 8.064c22.624 5.76 36.512 28.544 31.264 51.296zM844.704 555.488l-224.384-57.248-46.24 92.512 247.392 66.176 23.296-101.472zM512.384 745.088l163.616-38.016-164.384-44-163.68 40.928 164.384 41.088zM179.36 544.128l23.776 107.424 246.432-61.6-46.496-93.024-223.712 47.2zM788.992 265.248l-276.832-72.448-277.152 74.72v176.928l182.784-38.56c19.168-4.064 38.56 5.344 47.328 22.816l46.88 93.728 46.88-93.728c7.424-14.816 22.496-23.776 38.432-23.776 3.552 0 7.072 0.416 10.624 1.312l181.024 46.176v-187.232z" /> +<glyph unicode="" glyph-name="box-package" d="M384 160v64c12.96 0 24.608 7.808 29.568 19.744s2.208 25.696-6.944 34.88l-32 32c-12.48 12.48-32.768 12.48-45.248 0l-32-32c-9.152-9.152-11.872-22.912-6.944-34.88s16.64-19.744 29.568-19.744v-64h-96v64c12.928 0 24.608 7.808 29.568 19.744s2.208 25.696-6.944 34.88l-32 32c-12.512 12.48-32.768 12.48-45.248 0l-32-32c-9.152-9.152-11.904-22.912-6.944-34.88s16.608-19.744 29.568-19.744v-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM160 384h192c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128v96h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-160c0-17.664 14.336-32 32-32zM672 544h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM768 512h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM991.456 229.92l-6.112 32.384s-0.032 0.16-0.064 0.256l-18.144 96.352c-0.128 0.608-0.256 1.216-0.384 1.824-8.096 32.544-37.216 55.264-70.72 55.264v224c0 0.352-0.096 0.64-0.096 0.96-0.032 1.248-0.192 2.464-0.384 3.712-0.16 0.992-0.288 2.016-0.512 3.008-0.096 0.288-0.096 0.64-0.16 0.928l-54.432 195.040c-10.304 31.296-39.36 52.352-72.384 52.352h-608.032c-33.12 0-62.272-21.024-72.992-53.76l-53.856-193.664c-0.064-0.288-0.064-0.608-0.16-0.896-0.256-1.024-0.384-2.080-0.544-3.136-0.16-1.184-0.32-2.336-0.384-3.52 0-0.352-0.096-0.672-0.096-0.992v-576c0-35.296 28.704-64 64-64h829.504c36.672 0 66.496 29.856 66.496 66.528v154.976c0 0.384-0.096 0.704-0.096 1.056 0.096 2.432 0 4.896-0.448 7.36zM904.48 345.792l10.88-57.792h-326.816l11.072 59.072c0.448 2.336 4.096 4.928 8.384 4.928h288c3.904 0 7.296-2.496 8.48-6.208zM779.168 825.056l33.76-121.056h-209.824l-21.312 128h186.208c5.312 0 9.952-3.328 11.168-6.944zM516.896 832l21.312-128h-148.448l21.312 128h105.792zM384 640h160v-64h-18.752l-22.624 22.624c-12.48 12.48-32.768 12.48-45.248 0l-22.624-22.624h-50.752v64zM160 832h186.208l-21.312-128h-209.888l33.248 119.648c1.632 4.992 6.368 8.352 11.744 8.352zM96 635.648l1.216 4.352h222.784v-96c0-17.664 14.336-32 32-32h96c8.48 0 16.64 3.36 22.624 9.376l9.376 9.376 9.376-9.376c6.016-6.016 14.144-9.376 22.624-9.376h64c17.664 0 32 14.336 32 32v96h222.784l1.216-4.384v-219.616h-224c-35.072 0-65.056-24-71.296-57.12l-24.16-128.992c-0.48-2.496-0.576-4.928-0.448-7.36 0-0.384-0.096-0.704-0.096-1.088v-154.976c0-0.864 0.224-1.664 0.256-2.496h-416.256v571.648zM925.504 64h-347.136c-1.312 0-2.336 1.12-2.336 2.496v154.496l0.544 2.976h350.88l0.576-3.040v-154.464c0-1.376-1.152-2.496-2.496-2.496z" /> +<glyph unicode="" glyph-name="box-stacked" d="M555.008 299.296v105.056c0 23.776-19.232 43.008-43.008 43.008h-341.344c-23.776 0-43.008-19.232-43.008-43.008v-105.056c0-23.648 19.072-42.784 42.656-42.976v-189.792c0-23.776 19.232-43.008 43.008-43.008h256c23.776 0 43.008 19.232 43.008 43.008v189.792c23.584 0.16 42.656 19.328 42.656 42.976zM468.992 361.344v-15.488h-255.328v15.488h255.328zM256.352 109.536v146.784h169.984v-146.784h-169.984zM853.344 447.328h-234.656c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h191.648v-19.040h-191.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h148.992v-146.784h-191.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h234.656c23.776 0 43.008 19.232 43.008 43.008v189.792c23.584 0.16 42.656 19.328 42.656 42.976v105.056c0 23.776-19.232 43.008-43.008 43.008zM334.752 682.24h6.24v-171.232c0-23.776 19.232-43.008 43.008-43.008h256c23.776 0 43.008 19.232 43.008 43.008v171.232h6.24c23.776 0 43.008 19.232 43.008 43.008v105.76c0 23.776-19.232 43.008-43.008 43.008h-354.464c-23.776 0-43.008-19.232-43.008-43.008v-105.76c0-23.776 19.232-43.008 43.008-43.008zM596.992 553.984h-169.984v128.224h169.984v-128.224zM377.76 788h268.448v-19.808h-268.448v19.808z" /> +<glyph unicode="" glyph-name="breadcumb" d="M929.088 477.568l-91.84 127.296c-11.072 15.296-29.728 24.448-49.984 24.448h-188.928c-11.072 16.992-29.632 27.072-50.016 27.072h-172.256c1.888-2.4 3.648-4.928 5.28-7.552l21.856-35.424h145.12c4.864 0 9.344-2.016 12.48-5.568 0.672-0.736 1.248-1.504 1.792-2.368l91.84-148.832c3.328-5.408 3.328-12.16 0-17.568l-91.84-148.832c-0.544-0.864-1.12-1.664-1.792-2.368-3.136-3.552-7.616-5.568-12.48-5.568h-145.344l-21.632-35.072c-1.728-2.784-3.584-5.408-5.568-7.904h172.544c20.352 0 38.944 10.080 50.016 27.072h188.928c20.256 0 38.912 9.152 49.984 24.448l91.84 127.296c13.024 18.048 13.024 41.408 0 59.488zM894.208 443.232l-91.84-127.296c-2.912-4.032-8.832-6.624-15.104-6.624h-162.336l66.112 107.136c11.936 19.328 11.936 43.392 0 62.752l-66.112 107.136h162.336c6.272 0 12.192-2.592 15.104-6.624l91.84-127.296c2.176-3.008 2.176-6.176 0-9.184zM442.336 468.096l-97.6 158.176c-6.944 11.296-19.264 18.176-32.544 18.176h-206.88c-11.040 0-20-8.96-20-20v-352.8c0-11.072 8.96-20 20-20h206.88c13.248 0 25.568 6.848 32.544 18.144l97.6 158.176c7.616 12.288 7.616 27.84 0 40.16z" /> +<glyph unicode="" glyph-name="briefcase" d="M191.68-32c-52.96 0-96 43.072-96 96v320c0 17.664 14.336 32 32 32s32-14.336 32-32v-320c0-17.952 14.048-32 32-32 17.664 0 32-14.336 32-32s-14.336-32-32-32zM831.68-32c-17.664 0-32 14.336-32 32s14.336 32 32 32c17.952 0 32 14.048 32 32v320c0 17.664 14.336 32 32 32s32-14.336 32-32v-320c0-52.928-43.072-96-96-96zM959.68-32h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM831.68-32h-768c-17.664 0-32 14.336-32 32s14.336 32 32 32h768c17.664 0 32-14.336 32-32s-14.336-32-32-32zM799.68 320h-32c-17.664 0-32 14.336-32 32s14.336 32 32 32h32c70.592 0 128 57.408 128 128v160c0 19.136-17.472 30.656-34.688 32.096-3.808 0.448-256.288 31.904-381.28 31.904s-377.472-31.424-380.032-31.744c-1.344-0.16-2.656-0.256-3.968-0.256-17.632 0-32-14.336-32-32v-160c0-70.592 57.408-128 128-128h32c17.664 0 32-14.336 32-32s-14.336-32-32-32h-32c-105.856 0-192 86.144-192 192v160c0 52.192 41.888 94.816 93.824 95.968 24.928 3.072 261.376 32.032 386.176 32.032 129.024 0 377.44-30.944 387.968-32.256 51.904-4.352 92-45.6 92-95.744v-160c0-105.856-86.144-192-192-192zM639.68 320h-256c-17.664 0-32 14.336-32 32s14.336 32 32 32h256c17.664 0 32-14.336 32-32s-14.336-32-32-32zM362.336 256h-85.312c-29.408 0-53.344 23.904-53.344 53.312v85.344c0 29.408 23.936 53.312 53.344 53.312h85.312c29.408 0 53.312-23.904 53.312-53.312v-85.344c0-29.408-23.936-53.312-53.312-53.312zM287.68 320h64v64h-64v-64zM362.336 384v0zM319.68 384c-17.664 0-32 14.336-32 32v340.672c0 17.664 14.336 32 32 32s32-14.336 32-32v-340.672c0-17.664-14.336-32-32-32zM319.68-32c-17.664 0-32 14.336-32 32v288c0 17.664 14.336 32 32 32s32-14.336 32-32v-288c0-17.664-14.336-32-32-32zM746.336 256h-85.312c-29.408 0-53.312 23.904-53.312 53.312v85.344c0 29.408 23.936 53.312 53.312 53.312h85.312c29.408 0 53.312-23.904 53.312-53.312v-85.344c0-29.408-23.936-53.312-53.312-53.312zM671.68 320h64v64h-64v-64zM746.336 384v0zM703.68 384c-17.664 0-32 14.336-32 32v340.672c0 17.664 14.336 32 32 32s32-14.336 32-32v-340.672c0-17.664-14.336-32-32-32zM703.68-32c-17.664 0-32 14.336-32 32v288c0 17.664 14.336 32 32 32s32-14.336 32-32v-288c0-17.664-14.336-32-32-32zM191.68 512c-17.664 0-32 14.336-32 32v192c0 17.664 14.336 32 32 32s32-14.336 32-32v-192c0-17.664-14.336-32-32-32zM831.68 512c-17.664 0-32 14.336-32 32v192c0 17.664 14.336 32 32 32s32-14.336 32-32v-192c0-17.664-14.336-32-32-32zM319.712 736c-2.592 0-5.184 0.32-7.808 0.96-17.152 4.32-27.552 21.664-23.264 38.816l24.32 96.992c8.064 32.512 37.184 55.232 70.72 55.232h256c33.312 0 62.464-22.624 70.816-55.008l24.224-97.248c4.288-17.152-6.176-34.528-23.328-38.784-17.216-4.32-34.528 6.208-38.784 23.328l-24.16 96.992c-0.992 3.84-4.64 6.752-8.8 6.752h-256c-4.096 0-7.648-2.784-8.64-6.752l-24.352-97.024c-3.648-14.528-16.672-24.224-31.008-24.224zM607.68 480h-192c-17.664 0-32 14.336-32 32v64.128c0 35.232 28.672 63.872 63.872 63.872h128.256c35.232 0 63.872-28.672 63.872-63.872v-64.128c0-17.664-14.336-32-32-32zM447.68 544h128v32.128l-128-0.128v-32zM191.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM383.68 96h-96c-17.664 0-32 14.336-32 32s14.336 32 32 32h96c17.664 0 32-14.336 32-32s-14.336-32-32-32zM735.68 96h-96c-17.664 0-32 14.336-32 32s14.336 32 32 32h96c17.664 0 32-14.336 32-32s-14.336-32-32-32zM895.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM543.68 96h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="browser" d="M928 912h-832c-35.296 0-64-28.704-64-64v-800c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v800c0 35.296-28.704 64-64 64zM928 816h-360.928l-10.688 32h371.616v-32zM488.96 848l24.704-74.112c4.352-13.056 16.576-21.888 30.336-21.888h384v-64h-832v64h128c13.792 0 26.016 8.832 30.368 21.888l24.704 74.144h209.888zM211.584 848l-10.656-32h-104.96v32h115.616zM96 48v576h832v-576h-832zM192 368h640c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-640c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM800 432h-64v64h64v-64zM224 496h448v-64h-448v64zM352 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM320 176h-96v64h96v-64zM608 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM576 176h-96v64h96v-64zM864 304h-160c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM832 176h-96v64h96v-64z" /> +<glyph unicode="" glyph-name="bug-report" d="M853.344 445.856h-107.776v43.776c0 0.384 0 0.768 0 1.12h65.152c22.944 0 41.568 18.592 41.568 41.568v170.656c0 22.944-18.592 41.568-41.568 41.568s-41.568-18.592-41.568-41.568v-129.12h-39.296c-19.84 51.104-57.12 93.536-104.544 119.936 21.28 25.696 34.144 58.624 34.144 94.496v42.656c0 22.944-18.592 41.568-41.568 41.568s-41.568-18.592-41.568-41.568v-42.656c0-35.872-29.216-65.12-65.12-65.12s-65.12 29.216-65.12 65.12v42.656c0 22.944-18.592 41.568-41.568 41.568s-41.568-18.592-41.568-41.568v-42.656c0-36.192 13.056-69.344 34.656-95.072-46.944-26.464-83.808-68.64-103.52-119.392h-39.296v129.12c0 22.944-18.592 41.568-41.568 41.568s-41.568-18.592-41.568-41.568v-170.656c0-22.944 18.592-41.568 41.568-41.568h65.152c0-0.384 0-0.768 0-1.12v-43.776h-107.776c-22.944 0-41.568-18.592-41.568-41.568s18.592-41.568 41.568-41.568h108.672c1.312-15.456 4.192-30.464 8.352-44.928h-74.368c-22.944 0-41.568-18.592-41.568-41.568v-170.656c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v129.12h76.768c42.88-52.064 107.808-85.344 180.352-85.344s137.472 33.28 180.352 85.344h76.768v-129.12c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v170.656c0 22.944-18.592 41.568-41.568 41.568h-74.368c4.192 14.464 7.040 29.472 8.352 44.928h108.672c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM512 232.544c-82.944 0-150.432 67.488-150.432 150.432v106.656c0 82.944 67.488 150.432 150.432 150.432s150.432-67.488 150.432-150.432v-106.656c0-82.944-67.488-150.432-150.432-150.432zM526.752 596.352h-29.536c-15.136 0-27.136-12.768-26.272-27.872l10.592-182.016c0.8-13.92 12.32-24.8 26.272-24.8h8.416c13.952 0 25.472 10.88 26.272 24.8l10.592 182.016c0.896 15.104-11.136 27.872-26.272 27.872zM544 308.352c0-17.664-14.336-32-32-32s-32 14.336-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32z" /> +<glyph unicode="" glyph-name="business-hour" d="M896.128 669.376c-0.032 0.384-0.032 0.8-0.096 1.184s-0.096 0.768-0.16 1.152c-0.064 0.48-0.16 0.928-0.288 1.408-0.096 0.288-0.16 0.608-0.256 0.896-0.096 0.384-0.224 0.768-0.352 1.12s-0.288 0.768-0.416 1.12c-0.16 0.352-0.32 0.736-0.48 1.088-0.704 1.504-1.568 2.88-2.592 4.16-0.224 0.288-0.448 0.576-0.704 0.832s-0.48 0.544-0.736 0.768c-0.608 0.64-1.248 1.216-1.92 1.792l-174.72 141.472c-3.808 3.104-8.608 4.8-13.504 4.8h-375.872c-4.928 0-9.696-1.696-13.536-4.8l-174.688-141.472c-0.672-0.576-1.344-1.152-1.92-1.792-0.256-0.256-0.512-0.512-0.736-0.768s-0.48-0.576-0.704-0.832c-1.024-1.28-1.888-2.656-2.592-4.16-0.16-0.352-0.32-0.736-0.48-1.088s-0.288-0.736-0.416-1.12c-0.128-0.352-0.256-0.736-0.352-1.12-0.096-0.288-0.16-0.608-0.256-0.896-0.128-0.48-0.224-0.928-0.288-1.408-0.064-0.384-0.128-0.768-0.16-1.152s-0.064-0.768-0.096-1.184-0.032-0.8-0.032-1.184v-80.608c0-16 13.024-29.024 29.024-29.024h38.048v-320.768c0-22.88 18.624-41.504 41.504-41.504h55.52s0 0 0 0c41.504-79.232 124.608-133.44 220.096-133.44s178.592 54.208 220.096 133.44c0 0 0 0 0 0h55.52c22.88 0 41.504 18.624 41.504 41.504v320.768h38.048c16 0 29.024 13.024 29.024 29.024v80.608c0 0.384-0.032 0.8-0.032 1.184zM331.68 788.16h360.608l121.632-98.496h-603.904l121.632 98.496zM708.096 601.536h-102.048v45.12h102.048v-45.12zM563.040 601.536h-102.048v45.12h102.048v-45.12zM417.984 601.536h-102.080v45.12h102.080v-45.12zM170.816 646.656h102.048v-45.12h-102.048v45.12zM237.888 558.56h49.024c2.592 0 5.12 0.352 7.52 0.992 2.368-0.672 4.896-0.992 7.488-0.992h130.048c2.592 0 5.12 0.352 7.52 0.992 2.4-0.672 4.896-0.992 7.488-0.992h43.744c-126.976-10.816-227.040-117.664-227.040-247.392 0-24.992 3.712-49.12 10.624-71.872h-36.416v319.264zM533.504 106.944c-7.072-0.736-14.24-1.12-21.504-1.12s-14.432 0.384-21.504 1.12c-96.064 10.048-172.64 86.624-182.688 182.688-0.736 7.072-1.12 14.24-1.12 21.504s0.384 14.432 1.12 21.504c10.048 96.064 86.624 172.64 182.688 182.688 7.072 0.736 14.24 1.12 21.504 1.12s14.432-0.384 21.504-1.12c96.096-10.048 172.672-86.624 182.688-182.688 0.448-4.096 0.736-8.224 0.928-12.384v-0.032c0.128-3.008 0.192-6.048 0.192-9.088s-0.064-6.080-0.192-9.088v-0.032c-0.192-4.16-0.48-8.288-0.928-12.384-10.048-96.096-86.624-172.672-182.688-182.688zM786.112 239.264h-36.416c6.912 22.752 10.624 46.88 10.624 71.872 0 0.352 0 0.736-0.032 1.088-0.544 129.248-100.384 235.52-227.040 246.304h43.744c2.592 0 5.12 0.352 7.52 0.992 2.4-0.672 4.928-0.992 7.52-0.992h130.048c2.592 0 5.12 0.352 7.52 0.992 2.368-0.672 4.896-0.992 7.488-0.992h48.992v-319.264zM853.184 601.536h-102.080v45.12h102.080v-45.12zM682.816 332.64h13.536c-9.824 85.344-77.536 153.024-162.88 162.848v-10.144c0-11.872-9.632-21.504-21.504-21.504s-21.504 9.632-21.504 21.504v10.144c-85.344-9.824-153.024-77.504-162.848-162.848h10.144c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-10.144c9.824-85.344 77.504-153.056 162.848-162.88v10.144c0 11.872 9.632 21.504 21.504 21.504s21.504-9.632 21.504-21.504v-10.144c85.344 9.824 153.056 77.536 162.88 162.88h-13.536c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504zM533.504 302.24l-90.688-90.688c-4.192-4.192-9.696-6.304-15.2-6.304s-11.008 2.112-15.2 6.304c-8.384 8.384-8.384 22.016 0 30.432l78.112 78.112v95.552c0 11.872 9.632 21.504 21.504 21.504s21.504-9.632 21.504-21.504v-113.376z" /> +<glyph unicode="" glyph-name="calculate" d="M896 489.984h-340.992v341.024c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-340.992h-340.992c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h340.992v-340.992c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v340.992h340.992c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM170.656 617.344h213.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-213.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM383.136 339.488c-16.8 16.8-44.032 16.8-60.8 0l-45.024-45.024-45.024 45.024c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l45.024-45.024-45.024-45.024c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l45.024 45.024 45.024-45.024c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-45.024 45.024 45.024 45.024c16.8 16.8 16.8 44.032 0 60.8zM640 617.344h63.648v-63.648c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v63.648h63.648c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-63.648v63.648c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-63.648h-63.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM810.656 319.328h-170.656c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM810.656 191.328h-170.656c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="calendar" d="M893.504 880h-29.504c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.472c-54.336 0-98.528-44.192-98.528-98.528v-698.976c0-54.336 44.192-98.496 98.528-98.496h762.976c54.336 0 98.496 44.192 98.496 98.496v698.976c0 54.336-44.192 98.528-98.496 98.528zM160 752h704c17.664 0 32-14.336 32-32s-14.336-32-32-32h-704c-17.664 0-32 14.336-32 32s14.336 32 32 32zM928 82.496c0-19.040-15.488-34.496-34.496-34.496h-762.976c-19.040 0-34.528 15.488-34.528 34.496v477.472h832v-477.472z" /> +<glyph unicode="" glyph-name="calendar-check" d="M893.504 880h-29.504c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.472c-54.336 0-98.528-44.192-98.528-98.528v-698.976c0-54.336 44.192-98.496 98.528-98.496h762.976c54.336 0 98.496 44.192 98.496 98.496v698.976c0 54.336-44.192 98.528-98.496 98.528zM160 752h704c17.664 0 32-14.336 32-32s-14.336-32-32-32h-704c-17.664 0-32 14.336-32 32s14.336 32 32 32zM928 82.496c0-19.040-15.488-34.496-34.496-34.496h-762.976c-19.040 0-34.528 15.488-34.528 34.496v477.472h832v-477.472zM418.72 139.648c6.112-5.6 13.856-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l300.576 288c12.768 12.256 13.184 32.48 0.96 45.248s-32.48 13.184-45.248 0.96l-278.944-267.264-135.104 123.712c-13.024 11.936-33.28 11.040-45.184-1.984s-11.040-33.28 1.984-45.216l157.184-143.936z" /> +<glyph unicode="" glyph-name="calendar-check-2" d="M852.992 788.64h-84.64v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-340.704v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-84.64c-47.392 0-86.016-38.56-86.016-86.016v-596.64c0-47.392 38.56-86.016 86.016-86.016h681.984c47.392 0 86.016 38.56 86.016 86.016v596.704c0 47.392-38.56 86.016-86.016 86.016zM171.008 702.688h84.64v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h340.704v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h84.64v-127.328h-682.016v127.328zM852.992 105.984h-681.984v383.328h682.016v-383.328s0 0 0 0zM610.208 414.048l-147.36-141.472-55.552 55.552c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l85.344-85.344c8.416-8.416 19.424-12.576 30.432-12.576 10.72 0 21.472 3.968 29.792 12l177.792 170.656c17.152 16.416 17.696 43.648 1.248 60.8-16.416 17.12-43.648 17.696-60.8 1.248z" /> +<glyph unicode="" glyph-name="calendar-clock" d="M448 192.928h-276.992v296.416h540.928c7.456-12.768 21.248-21.344 37.12-21.344 23.776 0 43.008 19.232 43.008 43.008v21.344s0 0 0 0.032v170.272c0 47.392-38.56 86.016-86.016 86.016h-129.696v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-169.984v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-63.328c-47.392 0-86.016-38.56-86.016-86.016v-509.728c0-47.392 38.56-86.016 86.016-86.016h276.992c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM171.008 702.688h63.328v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h169.984v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h129.696v-127.328h-535.040v127.328zM725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM755.328 361.632v-111.712l48.352-31.456c13.92-9.056 17.824-27.616 8.8-41.504-5.76-8.832-15.36-13.664-25.184-13.664-5.6 0-11.264 1.568-16.352 4.864l-61.984 40.32c-8.544 5.536-13.664 15.008-13.664 25.12v128c0 16.608 13.44 29.984 29.984 29.984s29.984-13.44 29.984-29.984z" /> +<glyph unicode="" glyph-name="calendar-days" d="M893.504 881.12h-29.504c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-256c0 17.664-14.336 32-32 32s-32-14.336-32-32h-29.472c-54.304 0-98.528-44.192-98.528-98.528v-698.976c0-54.336 44.192-98.528 98.528-98.528h762.976c54.336 0 98.496 44.192 98.496 98.496v698.976c0 54.336-44.192 98.528-98.496 98.528zM404.864 49.12c-16.672 41.6-20.032 84-20.672 128h95.808v-128h-75.136zM480 561.152v-128h-160v128h160zM704 561.152v-128h-160v128h160zM928 561.152v-128h-160v128h160zM352 305.12h-32v64h160v-128h-96v32c0 17.664-14.336 32-32 32zM256 433.12h-160v128h160v-128zM96 369.12h160v-64h-160v64zM320 241.12v-32c0-48.992 0-99.168 14.048-150.432-87.232 30.528-187.392 127.104-223.84 182.432h209.792zM544 177.12h160v-128h-160v128zM544 241.12v128h160v-128h-160zM768 369.12h160v-128h-160v128zM130.528 817.12h29.472c0-17.664 14.336-32 32-32s32 14.336 32 32h256c0-17.664 14.336-32 32-32s32 14.336 32 32h256c0-17.664 14.336-32 32-32s32 14.336 32 32h29.504c19.040 0 34.496-15.488 34.496-34.528v-157.504h-832v157.472c0 19.040 15.488 34.528 34.528 34.528zM130.528 49.12c-19.040 0-34.528 15.488-34.528 34.496v71.296c32.64-37.44 74.944-75.328 120.16-105.792h-85.664zM893.504 49.12h-125.504v128h160v-93.504c0-19.040-15.488-34.496-34.496-34.496zM160 689.152h704c17.664 0 32 14.336 32 32s-14.336 32-32 32h-704c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="calendar-minus" d="M618.912 340.96h-213.856c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h213.856c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM852.992 788.64h-84.64v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-340.704v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-84.64c-47.392 0-86.016-38.56-86.016-86.016v-596.64c0-47.392 38.56-86.016 86.016-86.016h681.984c47.392 0 86.016 38.56 86.016 86.016v596.704c0 47.392-38.56 86.016-86.016 86.016zM171.008 702.688h84.64v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h340.704v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h84.64v-127.328h-682.016v127.328zM852.992 105.984h-681.984v383.328h682.016v-383.328s0 0 0 0z" /> +<glyph unicode="" glyph-name="calendar-plus" d="M618.912 340.96h-63.904v63.904c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-63.904h-63.904c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h63.904v-63.904c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v63.904h63.904c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM852.992 788.64h-84.64v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-340.704v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-84.64c-47.392 0-86.016-38.56-86.016-86.016v-596.64c0-47.392 38.56-86.016 86.016-86.016h681.984c47.392 0 86.016 38.56 86.016 86.016v596.704c0 47.392-38.56 86.016-86.016 86.016zM171.008 702.688h84.64v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h340.704v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h84.64v-127.328h-682.016v127.328zM852.992 105.984h-681.984v383.328h682.016v-383.328s0 0 0 0z" /> +<glyph unicode="" glyph-name="calendar-star" d="M624.16 365.856h-54.432l-16.8 51.744c-5.76 17.696-22.272 29.696-40.864 29.696s-35.168-12-40.864-29.696l-16.8-51.744h-54.432c-18.656 0-35.168-12-40.864-29.696-5.76-17.696 0.544-37.12 15.616-48.096l44.032-32-16.8-51.744c-5.76-17.696 0.544-37.12 15.616-48.096s35.488-10.976 50.56 0l44.032 32 44.032-32c7.552-5.472 16.416-8.192 25.248-8.192s17.76 2.72 25.248 8.192c15.072 10.976 21.376 30.368 15.616 48.096l-16.8 51.744 44.032 32c15.072 10.976 21.376 30.368 15.616 48.096s-22.272 29.696-40.864 29.696zM852.992 788.64h-84.64v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-340.704v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-84.64c-47.392 0-86.016-38.56-86.016-86.016v-596.64c0-47.392 38.56-86.016 86.016-86.016h681.984c47.392 0 86.016 38.56 86.016 86.016v596.704c0 47.392-38.56 86.016-86.016 86.016zM171.008 702.688h84.64v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h340.704v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h84.64v-127.328h-682.016v127.328zM852.992 105.984h-681.984v383.328h682.016v-383.328s0 0 0 0z" /> +<glyph unicode="" glyph-name="calendar-xmark" d="M618.016 403.968c-16.8 16.8-44.032 16.8-60.8 0l-45.216-45.216-45.216 45.216c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l45.216-45.216-45.216-45.216c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l45.216 45.216 45.216-45.216c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-45.216 45.216 45.216 45.216c16.8 16.8 16.8 44.032 0 60.8zM852.992 788.64h-84.64v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-340.704v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-84.64c-47.392 0-86.016-38.56-86.016-86.016v-596.64c0-47.392 38.56-86.016 86.016-86.016h681.984c47.392 0 86.016 38.56 86.016 86.016v596.704c0 47.392-38.56 86.016-86.016 86.016zM171.008 702.688h84.64v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h340.704v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h84.64v-127.328h-682.016v127.328zM852.992 105.984h-681.984v383.328h682.016v-383.328s0 0 0 0z" /> +<glyph unicode="" glyph-name="call-to-action" d="M899.168 732.48l-757.408 0.544c-2.432 0-4.832-0.192-7.168-0.544h-9.792c-21.344 0-38.656-17.312-38.656-38.656v-462.688c0-21.344 17.312-38.656 38.656-38.656h774.368c21.344 0 38.656 17.312 38.656 38.656v462.688c0 21.344-17.312 38.656-38.656 38.656zM592.64 235.424h-463.552v58.24c2.112 1.024 4.064 2.368 5.824 4.128l100.896 100.896 156.768-119.072c3.872-2.944 8.448-4.384 12.96-4.384 6.464 0 12.896 2.912 17.088 8.48 7.168 9.44 5.344 22.912-4.096 30.080l-28.832 21.888 78.624 89.536 123.904-106.24c0.128-0.128 0.288-0.224 0.416-0.32v-83.232zM592.64 375.136l-112.512 96.448c-8.928 7.648-22.336 6.688-30.080-2.144l-94.624-107.776-97.344 73.952c-13.504 12.096-34.368 11.648-47.296-1.312l-81.696-81.696v202.112l115.136 134.784h348.416v-314.432zM742.976 579.328c3.808-1.824 6.816-4.608 9.056-8.384s3.328-8.448 3.328-14.144c0-6.208-1.248-11.168-3.808-14.88s-5.728-6.4-9.632-8.032c-3.904-1.632-7.936-2.464-12.064-2.464-4.704 0-8.928 0.928-12.704 2.784s-6.72 4.64-8.896 8.352c-2.176 3.744-3.264 8.384-3.264 13.952 0 4.704 0.704 8.672 2.112 11.968s3.328 5.92 5.696 7.936c2.4 1.984 5.12 3.424 8.192 4.32s6.144 1.312 9.248 1.312c4.704 0 8.928-0.896 12.768-2.72zM728.736 623.904l-52.608-87.712h-16.48l52.64 87.712h16.48zM636.832 614.72c1.472 3.264 3.392 5.92 5.792 7.84s5.088 3.392 8.096 4.32c3.008 0.928 6.144 1.408 9.312 1.408 4.704 0 8.928-0.928 12.704-2.784s6.752-4.672 8.96-8.384c2.208-3.712 3.328-8.416 3.328-14.080 0-6.208-1.248-11.2-3.712-14.976s-5.696-6.432-9.568-8.032c-3.904-1.6-7.936-2.4-12.096-2.4-4.768 0-9.024 0.896-12.768 2.72s-6.688 4.608-8.896 8.384c-2.208 3.744-3.328 8.416-3.328 14.016 0 4.704 0.704 8.672 2.176 11.968zM646.4 512.384h94.656c11.872 0 21.472-9.6 21.472-21.472s-9.6-21.472-21.472-21.472h-94.656c-11.872 0-21.472 9.632-21.472 21.472s9.6 21.472 21.472 21.472zM846.4 310.816c0-7.808-6.336-14.144-14.112-14.144h-188.16c-7.776 0-14.112 6.336-14.112 14.144v36.704c0 7.808 6.336 14.144 14.112 14.144h188.16c7.776 0 14.112-6.336 14.112-14.144v-36.704zM856.768 401.824h-210.336c-11.872 0-21.472 9.6-21.472 21.472s9.6 21.472 21.472 21.472h210.336c11.84 0 21.472-9.6 21.472-21.472s-9.632-21.472-21.472-21.472zM718.912 557.056c0-3.008 0.512-5.472 1.6-7.392s2.496-3.264 4.32-4.128 3.648-1.248 5.504-1.248c1.792 0 3.52 0.352 5.184 1.12s3.040 1.984 4.096 3.744c1.088 1.728 1.6 4.096 1.6 7.104 0 3.264-0.576 5.856-1.728 7.712s-2.592 3.2-4.32 4.064c-1.728 0.832-3.52 1.28-5.376 1.28s-3.648-0.448-5.344-1.28c-1.664-0.832-3.040-2.144-4.064-3.84s-1.504-4.096-1.504-7.104zM654.592 591.712c1.792-0.864 3.648-1.312 5.6-1.312 1.792 0 3.488 0.384 5.184 1.184s3.040 2.048 4.096 3.808c1.056 1.728 1.6 4.096 1.6 7.104 0 3.2-0.576 5.696-1.728 7.552s-2.624 3.2-4.384 4.064c-1.792 0.832-3.584 1.248-5.44 1.248s-3.616-0.384-5.248-1.184c-1.664-0.8-3.008-2.048-4.064-3.808s-1.6-4.096-1.6-7.104 0.544-5.472 1.664-7.392c1.088-1.888 2.528-3.296 4.32-4.192zM341.664 470.656c47.040 0 85.344 38.272 85.344 85.344s-38.272 85.344-85.344 85.344-85.344-38.272-85.344-85.344 38.272-85.344 85.344-85.344zM341.664 598.4c23.392 0 42.432-19.040 42.432-42.432s-19.008-42.432-42.432-42.432-42.432 19.008-42.432 42.432 19.008 42.432 42.432 42.432z" /> +<glyph unicode="" glyph-name="call-to-action1" d="M853.344 703.2h-680.608c-47.136 0-85.504-38.368-85.504-85.504v-340.48c0-47.168 38.368-85.504 85.504-85.504h680.608c47.136 0 85.504 38.336 85.504 85.504v340.48c0 47.136-38.368 85.504-85.504 85.504zM651.936 234.72c-8.384 2.944-14.368 10.912-14.368 20.288 0 11.872 9.632 21.504 21.504 21.504h89.888c11.872 0 21.504-9.632 21.504-21.504 0-9.376-5.984-17.312-14.336-20.288h-104.16zM685.664 503.424h-22.336l71.328 127.136h22.336l-71.296-127.136zM758.944 569.856c6.368 0 12.128-1.312 17.28-3.936s9.248-6.688 12.256-12.128c3.008-5.472 4.512-12.288 4.512-20.512 0-8.992-1.728-16.192-5.152-21.6s-7.776-9.248-13.056-11.648-10.752-3.552-16.384-3.552c-6.368 0-12.096 1.376-17.216 4.032s-9.12 6.752-12.064 12.128-4.416 12.128-4.416 20.224c0 6.816 0.96 12.608 2.88 17.344s4.512 8.576 7.744 11.456c3.264 2.88 6.944 4.992 11.072 6.272s8.32 1.92 12.512 1.92zM748.928 452.48c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-89.888c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h89.888zM658.976 366.048h199.712c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-199.712c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504zM632.448 617.248c1.984 4.736 4.608 8.544 7.84 11.36s6.912 4.928 10.976 6.272c4.096 1.344 8.288 2.016 12.608 2.016 6.368 0 12.096-1.376 17.184-4.064s9.152-6.752 12.16-12.128 4.512-12.192 4.512-20.416c0-8.992-1.664-16.192-5.024-21.696-3.36-5.44-7.68-9.344-12.96-11.648s-10.752-3.456-16.384-3.456c-6.496 0-12.256 1.312-17.28 3.936s-9.056 6.688-12.064 12.128-4.512 12.224-4.512 20.32c0 6.816 0.992 12.576 2.976 17.344zM130.208 277.216v290.752l86.208 92.256h373.152v-425.472h-416.896c-23.424 0-42.496 19.072-42.496 42.496zM513.024 598.912h-321.024c-11.872 0-21.504-9.632-21.504-21.504v-279.616c0-0.384 0.032-0.768 0.032-1.184 0.224-4.64 1.92-8.896 4.64-12.32 0.864-1.12 1.888-2.144 2.976-3.072 3.712-3.136 8.512-5.024 13.728-5.056h321.152c11.872 0 21.504 9.632 21.504 21.504v279.744c0 11.872-9.632 21.504-21.504 21.504zM414.144 555.904c-1.44-16.192-13.632-28.864-28.416-28.864s-26.976 12.672-28.416 28.864h56.832zM491.52 319.168h-257.92l77.024 108.608 72.352-65.728c4.256-3.872 9.824-5.824 15.552-5.568s11.072 2.848 14.912 7.104l78.112 86.976v-131.392zM491.52 514.944l-95.648-106.528-74.304 67.52c-4.576 4.128-10.656 6.112-16.768 5.472s-11.648-3.936-15.232-8.928l-76.064-107.264v190.752h100.768c1.6-39.904 33.056-71.872 71.488-71.872s69.888 31.936 71.488 71.872h34.304v-40.992zM751.616 516.96c2.464-1.216 4.96-1.824 7.488-1.824 2.4 0 4.736 0.544 7.008 1.632s4.128 2.88 5.568 5.408c1.44 2.496 2.144 5.952 2.144 10.304 0 4.736-0.768 8.48-2.336 11.168s-3.488 4.672-5.856 5.888c-2.336 1.248-4.768 1.824-7.264 1.824s-4.928-0.608-7.2-1.824c-2.272-1.216-4.128-3.072-5.504-5.568s-2.048-5.952-2.048-10.304 0.736-7.936 2.144-10.688c1.44-2.752 3.392-4.736 5.856-5.984zM656.48 583.904c2.4-1.28 4.928-1.888 7.552-1.888 2.432 0 4.736 0.576 7.040 1.728s4.128 3.008 5.568 5.472c1.472 2.528 2.176 5.952 2.176 10.304 0 4.608-0.768 8.288-2.336 10.976s-3.552 4.672-5.952 5.888c-2.432 1.216-4.864 1.824-7.392 1.824s-4.864-0.576-7.104-1.728c-2.208-1.152-4.064-2.976-5.504-5.472s-2.144-5.952-2.144-10.304 0.768-7.936 2.272-10.688 3.456-4.768 5.856-6.080z" /> +<glyph unicode="" glyph-name="camera" d="M937.152 682.208l-134.24 18.624-76.832 101.792c-24.224 32.096-62.688 51.264-102.912 51.264h-247.040c-40.224 0-78.688-19.168-102.912-51.264l-77.056-102.144-110.848-17.92c-30.912-4.96-53.344-29.696-53.344-58.72v-487.936c0-32.864 28.928-59.616 64.448-59.616h831.072c35.552 0 64.448 26.752 64.448 59.616v487.328c0 29.76-23.072 54.56-54.848 58.976zM928 140.288c-0.16 0-0.288 0-0.48 0h-831.072c-0.16 0-0.32 0-0.448 0v479.2l123.072 19.872c8.16 1.312 15.456 5.728 20.416 12.32l84.832 112.416c12.192 16.16 31.552 25.792 51.84 25.792h247.008c20.256 0 39.616-9.632 51.808-25.792l84.832-112.416c5.12-6.784 12.736-11.264 21.152-12.416l147.040-20.64v-478.336zM512 684.96c-137.888 0-250.048-112.16-250.048-250.048s112.16-250.048 250.048-250.048 250.048 112.192 250.048 250.048-112.192 250.048-250.048 250.048zM512 248.832c-102.624 0-186.048 83.456-186.048 186.048s83.456 186.048 186.048 186.048 186.048-83.456 186.048-186.048-83.456-186.048-186.048-186.048z" /> +<glyph unicode="" glyph-name="campaign" d="M810.656 404h85.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-85.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM703.744 697.824c-13.536 7.584-30.176 7.328-43.424-0.736l-106.4-64.736c-38.4-23.328-82.4-35.68-127.328-35.68h-255.904c-23.776 0-43.008-19.232-43.008-43.008v-105.984c0-70.784 57.344-128.416 128-128.992v-85.024c0-23.648 19.072-42.784 42.656-42.976v-45.952c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v173.952h42.752c43.296 0 84.64-13.472 119.648-39.008l110.592-80.736c7.52-5.472 16.384-8.288 25.344-8.288 6.656 0 13.312 1.536 19.456 4.64 14.432 7.328 23.52 22.144 23.52 38.304v426.656c0 15.52-8.352 29.856-21.92 37.504zM213.664 447.648v63.008h84.64v-105.984h-41.696c-23.712 0-43.008 19.296-43.008 43.008zM639.648 318.304l-42.24 30.816c-49.792 36.352-108.672 55.552-170.336 55.552h-42.752v105.984h42.24c60.672 0 120.192 16.672 172.032 48.224l41.056 24.96v-265.568zM810.72 574.688c6.432 0 13.024 1.44 19.2 4.576l85.344 42.656c21.248 10.624 29.856 36.448 19.232 57.696s-36.448 29.856-57.696 19.232l-85.344-42.656c-21.248-10.624-29.856-36.448-19.232-57.696 7.552-15.072 22.752-23.776 38.496-23.776zM915.232 272.128l-85.344 42.656c-21.248 10.624-47.072 2.016-57.696-19.232s-2.016-47.072 19.232-57.696l85.344-42.656c6.176-3.072 12.704-4.576 19.2-4.576 15.776 0 30.976 8.704 38.496 23.776 10.624 21.248 2.016 47.072-19.232 57.696z" /> +<glyph unicode="" glyph-name="camping" d="M889.824 171.136l-82.208 131.552s0 0 0 0l-211.104 337.76s0 0 0 0l-33.76 53.984 71.072 113.76c12.576 20.128 6.432 46.688-13.696 59.264s-46.688 6.496-59.264-13.664l-48.864-78.208-48.864 78.208c-12.576 20.128-39.136 26.24-59.264 13.664s-26.272-39.136-13.696-59.264l71.072-113.76-327.136-523.36c-12.576-20.128-6.432-46.688 13.664-59.264 7.072-4.448 14.976-6.528 22.752-6.528 14.336 0 28.32 7.168 36.512 20.224l17.76 28.384c24.224-30.752 60.64-48.608 100.96-48.608h372.352c40.32 0 76.768 17.824 100.96 48.608l17.76-28.384c8.16-13.056 22.176-20.224 36.512-20.224 7.776 0 15.648 2.144 22.752 6.528 20.128 12.576 26.272 39.136 13.664 59.264zM430.816 191.328l81.184 101.504 81.184-101.504h-162.4zM735.776 213.504c-3.424-6.144-13.152-19.84-32.672-21.888l-157.536 196.896c-8.16 10.208-20.512 16.128-33.568 16.128s-25.44-5.92-33.568-16.128l-157.536-196.896c-19.488 2.048-29.28 15.712-32.672 21.888-3.712 6.656-10.976 24.224 1.152 43.648l222.624 356.224 222.624-356.224c12.128-19.36 4.832-36.992 1.152-43.648z" /> +<glyph unicode="" glyph-name="card-carousel" d="M736 826.144h-448c-17.664 0-32-14.336-32-32v-640c0-17.664 14.336-32 32-32h448c17.664 0 32 14.336 32 32v640c0 17.664-14.336 32-32 32zM704 762.144v-210.752l-73.376 73.376c-12.48 12.48-32.736 12.48-45.248 0l-73.376-73.376-105.376 105.376c-12.48 12.48-32.768 12.48-45.248 0l-41.376-41.376v146.752h384zM320 186.144v338.752l64 64 137.376-137.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-9.376 9.376 50.752 50.752 96-96v-274.752h-384zM199.744 793.184l-128 32c-17.088 4.32-34.528-6.144-38.816-23.296s6.144-34.528 23.296-38.816l103.744-25.952v-382.016l-103.776-25.952c-17.12-4.288-27.584-21.664-23.296-38.816 3.648-14.528 16.704-24.256 31.008-24.256 2.56 0 5.184 0.288 7.808 0.96l88.256 22.048v-78.048l-103.776-25.952c-17.12-4.288-27.584-21.664-23.296-38.816 3.648-14.528 16.704-24.256 31.008-24.256 2.56 0 5.184 0.288 7.808 0.96l128 32c14.24 3.552 24.256 16.352 24.256 31.040v576c0 14.688-10.016 27.488-24.256 31.040zM608 378.144h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM480 666.144h4.032c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4.032c-17.664 0-32-14.336-32-32s14.336-32 32-32zM516 90.144h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 90.144h-7.968c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.968c17.664 0 32 14.336 32 32s-14.336 32-32 32zM616 90.144h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 282.144h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM905.376 419.52c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l32 32c12.48 12.48 12.48 32.768 0 45.248l-32 32c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.768 0-45.248l9.376-9.376-9.376-9.376c-12.48-12.48-12.48-32.736 0-45.248zM118.624 528.768c-12.48 12.48-32.768 12.48-45.248 0l-32-32c-12.512-12.48-12.512-32.768 0-45.248l32-32c6.272-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376c12.512 12.48 12.512 32.768 0 45.248l-9.376 9.376 9.376 9.376c12.512 12.48 12.512 32.768 0 45.248zM952.256 267.072c2.592-0.64 5.216-0.96 7.808-0.96 14.336 0 27.36 9.696 31.008 24.256 4.288 17.152-6.144 34.528-23.264 38.816l-103.744 25.952v382.016l103.744 25.952c17.12 4.288 27.552 21.664 23.264 38.816s-21.664 27.584-38.816 23.296l-128-32c-14.24-3.584-24.256-16.352-24.256-31.040v-576c0-14.688 10.016-27.488 24.256-31.040l128-32c2.592-0.64 5.216-0.96 7.808-0.96 14.336 0 27.36 9.696 31.008 24.256 4.288 17.152-6.144 34.528-23.264 38.816l-103.744 25.952v78.048l88.256-22.048z" /> +<glyph unicode="" glyph-name="card-slider" d="M688.8 811.232h-354.208c-47.136 0-85.504-38.368-85.504-85.504v-555.456c0-47.168 38.368-85.504 85.504-85.504h354.208c47.168 0 85.504 38.336 85.504 85.504v555.456c0 47.136-38.336 85.504-85.504 85.504zM731.328 170.272c0-23.456-19.072-42.496-42.496-42.496h-354.208c-23.424 0-42.496 19.072-42.496 42.496v514.624l83.328 83.328h313.408c23.456 0 42.496-19.072 42.496-42.496v-555.456zM682.016 751.36h-265.568c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h73.408c2.656-35.904 32.704-64.32 69.312-64.32s66.624 28.416 69.312 64.32h32.096v-191.552h-277.216l82.4 114.848 77.92-83.68c4.096-4.384 9.856-6.88 15.776-6.848 5.984 0 11.68 2.528 15.744 6.912l70.72 76.608c8.064 8.736 7.52 22.336-1.216 30.368s-22.336 7.52-30.368-1.216l-55.008-59.584-80.032 85.92c-4.384 4.704-10.688 7.2-17.088 6.816s-12.352-3.68-16.096-8.928l-122.144-170.208c-4.704-6.56-5.344-15.168-1.664-22.368s11.072-11.68 19.136-11.68h340.608c11.872 0 21.504 9.632 21.504 21.504v234.528c0 11.872-9.632 21.504-21.504 21.504zM559.136 687.040c-12.832 0-23.584 9.184-25.984 21.312h52c-2.432-12.128-13.152-21.312-25.984-21.312zM581.856 227.936c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-140.288c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h140.288zM667.552 207.872h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM678.016 447.456h-332.608c-14.048 0-25.504-11.456-25.504-25.504v-99.168c0-14.048 11.424-25.504 25.504-25.504h332.608c14.048 0 25.504 11.456 25.504 25.504v99.168c0 14.048-11.456 25.504-25.504 25.504zM396 384.16l6.592 20.288 3.936 12.096c0.096 0.352 0.608 0.352 0.736 0l3.936-12.096 6.592-20.288h34.080c0.384 0 0.512-0.48 0.224-0.704l-27.552-20.032 10.528-32.384c0.128-0.352-0.288-0.672-0.608-0.448l-27.552 20.032-27.552-20.032c-0.288-0.224-0.736 0.096-0.608 0.448l3.008 9.248 7.52 23.136-26.368 19.168v1.568h33.12zM465.76 370.752c0 3.392 1.376 6.496 3.616 8.736s5.312 3.616 8.736 3.616h162.752c6.784 0 12.288-5.504 12.288-12.32 0-3.392-1.376-6.496-3.616-8.736s-5.312-3.616-8.704-3.616h-162.752c-6.816 0-12.32 5.504-12.32 12.32zM153.504 690.496h56.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.608c-37.696 0-68.352-30.656-68.352-68.352v-465.152c0-37.696 30.656-68.352 68.352-68.352h56.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.608c-13.984 0-25.344 11.36-25.344 25.344v465.152c0 13.984 11.36 25.344 25.344 25.344zM870.496 733.504h-56.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.608c13.984 0 25.344-11.36 25.344-25.344v-465.152c0-13.984-11.36-25.344-25.344-25.344h-56.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.608c37.696 0 68.352 30.656 68.352 68.352v465.152c0 37.696-30.656 68.352-68.352 68.352z" /> +<glyph unicode="" glyph-name="caret-down" d="M670.976 559.744l-283.936 0.448c-48.256 0-72.672-58.208-38.816-92.64l141.184-143.456c10.656-10.816 24.736-16.256 38.816-16.256 13.952 0 27.904 5.312 38.528 16l142.656 143.040c34.208 34.304 9.952 92.832-38.464 92.896zM528.288 375.84l-118.4 120.288 238.016-0.352-119.616-119.936z" /> +<glyph unicode="" glyph-name="caret-down-2" d="M590.592 460.672l-78.624-85.568-78.624 85.568h157.216zM690.784 546.688h-357.568c-36.576 0-55.648-43.488-30.912-70.4l178.784-194.592c8.32-9.056 19.648-13.568 30.912-13.568s22.592 4.544 30.912 13.568l178.784 194.592c24.736 26.912 5.664 70.4-30.912 70.4v0z" /> +<glyph unicode="" glyph-name="caret-left" d="M583.36 644.448c-13.248 0-26.752-4.864-37.792-15.744l-143.456-141.184c-21.6-21.216-21.696-56-0.256-77.376l143.040-142.656c11.072-11.072 24.704-16 38.048-16 27.968 0 54.784 21.696 54.816 54.496l0.448 283.84c0.064 32.832-26.784 54.624-54.816 54.624zM573.792 329.088l-119.936 119.648 120.288 118.4-0.384-238.016z" /> +<glyph unicode="" glyph-name="caret-left-2" d="M532.384 518.88v-157.216l-85.568 78.592 85.568 78.624zM576.16 661.152c-9.76 0-19.744-3.456-28.16-11.136l-194.592-178.784c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.816c8.384-7.712 18.368-11.168 28.16-11.168 21.632 0 42.272 16.896 42.272 42.080v357.568c0 25.184-20.64 42.080-42.272 42.080v0z" /> +<glyph unicode="" glyph-name="caret-right" d="M622.176 485.792l-143.040 142.656c-11.104 11.040-24.704 16-38.080 16-27.968 0-54.784-21.696-54.816-54.496l-0.448-283.84c-0.064-32.832 26.816-54.624 54.816-54.624 13.248 0 26.752 4.864 37.792 15.744l143.488 141.184c21.568 21.216 21.696 55.968 0.256 77.376zM449.856 328.928l0.352 238.016 119.936-119.616-120.288-118.4z" /> +<glyph unicode="" glyph-name="caret-right-2" d="M491.616 518.848l85.568-78.624-85.568-78.624v157.216zM447.84 661.152c-21.632 0-42.272-16.896-42.272-42.080v-357.568c0-25.184 20.64-42.080 42.272-42.080 9.792 0 19.744 3.456 28.16 11.168l194.592 178.784c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.816c-8.384 7.712-18.368 11.136-28.16 11.136v0z" /> +<glyph unicode="" glyph-name="caret-up" d="M692.736 414.464l-141.184 143.456c-10.656 10.816-24.736 16.256-38.816 16.256-13.952 0-27.904-5.312-38.528-16l-142.656-143.040c-34.208-34.304-9.984-92.832 38.464-92.896l283.936-0.448c48.288 0 72.672 58.208 38.784 92.64zM393.088 386.208l119.616 119.936 118.4-120.288-238.016 0.384z" /> +<glyph unicode="" glyph-name="caret-up-2" d="M512 505.408l78.624-85.568h-157.216l78.624 85.568zM512 612.448c-11.296 0-22.624-4.544-30.912-13.6l-178.816-194.592c-24.736-26.912-5.664-70.4 30.912-70.4h357.568c36.544 0 55.648 43.488 30.912 70.4l-178.784 194.592c-8.32 9.056-19.616 13.6-30.912 13.6v0z" /> +<glyph unicode="" glyph-name="celebration" d="M375.552 584.064c-10.016 10.016-24.352 14.464-38.272 11.872-13.952-2.592-25.696-11.904-31.456-24.864l-82.272-185.856c-4.064-5.376-6.688-11.52-7.904-17.824l-126.976-286.944c-7.2-16.256-3.616-35.296 8.96-47.84 8.224-8.224 19.232-12.576 30.368-12.576 5.888 0 11.808 1.184 17.44 3.712l490.016 217.824c12.928 5.76 22.24 17.536 24.832 31.456s-1.824 28.256-11.872 38.272l-272.864 272.864zM212.48 147.584l60.288 136.192 75.744-75.744-136.032-60.448zM432.672 245.472l-122.624 122.624 49.056 110.816 184.288-184.224-110.688-49.184zM910.976 615.296c-22.272 8.288-47.008-3.072-55.264-25.344l-28.256-76.064-77.664 53.792c-10.624 7.392-24.032 9.568-36.448 5.984s-22.56-12.576-27.616-24.48l-57.696-135.904c-9.248-21.856 0.928-47.104 22.784-56.352 5.472-2.336 11.168-3.424 16.768-3.424 16.736 0 32.64 9.856 39.584 26.208l37.024 87.264 79.744-55.264c10.912-7.552 24.704-9.632 37.376-5.664s22.784 13.6 27.392 26.080l47.488 128c8.288 22.272-3.072 47.008-25.344 55.264zM386.72 623.008c6.752-16.8 22.88-27.040 39.936-27.040 5.344 0 10.72 0.992 15.968 3.072 22.048 8.832 32.768 33.824 23.936 55.904l-19.072 47.712h64.48c16.864 0 32.128 9.824 39.136 25.12 6.528 14.304 4.704 30.848-4.48 43.36-5.152 8.576-23.648 46.688-38.368 78.048-10.080 21.504-35.68 30.816-57.184 20.736s-30.816-35.68-20.736-57.184c4.128-8.864 7.936-16.864 11.36-24.096h-57.76c-14.24 0-27.616-7.072-35.616-18.912s-9.6-26.848-4.32-40.064l42.656-106.656zM541.056 491.52c4.512-1.504 9.088-2.208 13.6-2.208 18.016 0 34.784 11.392 40.8 29.408l34.272 102.816 122.080 17.536c18.816 2.688 33.568 17.408 36.384 36.192l22.304 149.344c3.488 23.456-12.672 45.344-36.192 48.896-23.456 3.488-45.344-12.672-48.896-36.192l-17.568-117.664-116.64-16.768c-16.128-2.304-29.536-13.536-34.688-28.96l-42.656-128c-7.52-22.528 4.64-46.88 27.168-54.4z" /> +<glyph unicode="" glyph-name="charger" d="M813.696 748.96c-83.328 83.328-192.512 124.96-301.696 124.96s-218.368-41.632-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.368 41.632 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM839.040 543.104c-7.776 12.704-21.6 20.608-36.704 20.608h-236l49.184 208.224c51.232-16.288 98.208-44.672 137.344-83.808 41.088-41.088 70.368-90.784 86.144-145.024zM545.408 437.216c-8.16 10.080-20.448 15.904-33.408 15.904h-196.352l187.424 216.928-32.928-139.392c-3.040-12.8 0-26.272 8.096-36.576 8.16-10.336 20.576-16.288 33.696-16.288h201.344l-194.976-245.76 35.712 169.248c2.688 12.672-0.512 25.888-8.672 35.968zM171.36 447.264c0 91.008 35.456 176.544 99.808 240.896 59.296 59.296 136.608 94.048 219.616 99.104l-301.6-349.024c-11.008-12.704-13.568-30.72-6.56-45.984 7.008-15.328 22.272-25.12 39.072-25.12h237.312l-51.552-244.224c-50.848 16.352-97.44 44.64-136.32 83.488-64.352 64.352-99.808 149.888-99.808 240.896zM752.896 206.368c-60.32-60.32-139.296-95.232-223.904-99.36l307.072 386.976c5.632 7.072 8.736 15.616 9.216 24.32 4.864-23.136 7.392-46.88 7.392-71.040 0-91.008-35.456-176.544-99.808-240.896z" /> +<glyph unicode="" glyph-name="chart" d="M246.272 524.16h-150.464c-35.232 0-63.808-28.576-63.808-63.776v-403.52c0-35.232 28.576-63.808 63.808-63.808h150.464c35.232 0 63.776 28.544 63.776 63.808v403.52c0 35.232-28.576 63.808-63.808 63.808zM96 56.864l-0.192 403.328h150.272l0.192-403.104-150.272-0.192zM587.232 902.912h-150.496c-35.232 0-63.808-28.576-63.808-63.808v-782.272c0-35.232 28.576-63.808 63.808-63.808h150.496c35.232 0 63.808 28.544 63.808 63.808v782.272c0 35.232-28.544 63.808-63.808 63.808zM436.96 56.864l-0.224 782.048h150.272l0.192-781.856-150.272-0.192zM928.192 706.816h-150.496c-35.232 0-63.808-28.576-63.808-63.776v-586.144c0-35.232 28.544-63.808 63.808-63.808h150.496c35.232 0 63.808 28.544 63.808 63.808v586.144c0 35.232-28.544 63.808-63.808 63.808zM777.952 56.864l-0.192 585.92h150.272l0.192-585.696-150.24-0.192z" /> +<glyph unicode="" glyph-name="chart-line-down" d="M968 32l-864 0.64v863.36c0 17.664-14.336 32-32 32s-32-14.336-32-32v-863.36c0-35.648 28.992-64.64 64.672-64.64h863.36c17.664 0 32 14.336 32 32s-14.336 32-32 32zM363.936 326.048c5.472-7.36 13.856-12 23.008-12.768 0.896-0.064 1.76-0.096 2.656-0.096 8.224 0 16.16 3.168 22.176 8.928l220.512 211.552 164.384-196.608c11.328-13.568 31.488-15.36 45.088-4s15.36 31.52 4 45.088l-186.336 222.88c-5.664 6.816-13.952 10.944-22.784 11.424-8.768 0.416-17.504-2.72-23.904-8.864l-219.072-210.176-166.56 223.84c-10.56 14.176-30.592 17.12-44.768 6.592s-17.088-30.624-6.56-44.768l188.224-252.928zM706.464 230.656c0-17.664 14.336-32 32-32h205.888c17.664 0 32 14.336 32 32v206.4c0 17.664-14.336 32-32 32s-32-14.336-32-32v-174.4h-173.888c-17.664 0-32-14.336-32-32z" /> +<glyph unicode="" glyph-name="chart-line-up" d="M969.664 30.944h-864.352c-0.672 0-1.216 0.544-1.216 1.216v864.384c0 17.376-14.112 31.488-31.456 31.488s-31.488-14.080-31.488-31.488v-864.352c0-35.36 28.768-64.16 64.16-64.16h864.352c17.376 0 31.456 14.112 31.456 31.456s-14.112 31.456-31.456 31.456zM183.36 205.12c5.632-4.192 12.256-6.24 18.784-6.24 9.632 0 19.104 4.384 25.28 12.672l167.136 224.576 219.808-210.848c6.304-6.048 14.88-9.184 23.52-8.736 8.736 0.48 16.832 4.544 22.432 11.264l186.592 223.136c11.168 13.312 9.376 33.184-3.936 44.352-13.376 11.136-33.216 9.376-44.352-3.936l-164.96-197.28-221.216 212.192c-6.528 6.24-15.392 9.376-24.384 8.672-8.992-0.768-17.248-5.312-22.624-12.576l-188.416-253.216c-10.368-13.952-7.488-33.664 6.464-44.032zM739.84 566.752h174.688v-175.168c0-17.376 14.112-31.456 31.456-31.456s31.456 14.112 31.456 31.456v206.624c0 17.376-14.112 31.456-31.456 31.456h-206.144c-17.376 0-31.456-14.112-31.456-31.456s14.112-31.456 31.456-31.456z" /> +<glyph unicode="" glyph-name="chat-bubble" d="M852.64 788.352h-681.312c-47.488 0-86.016-38.496-86.016-86.016v-594.944c0-24.864 20.384-41.888 42.016-41.888 8.864 0 17.952 2.848 25.952 9.248l145.376 116.32h553.984c47.488 0 86.016 38.496 86.016 86.016v425.248c0 47.488-38.496 86.016-86.016 86.016zM852.64 276.992v0s-553.984 0-553.984 0c-19.552 0-38.496-6.656-53.728-18.848l-73.632-58.88v503.072h681.344v-425.344z" /> +<glyph unicode="" glyph-name="check" d="M919.104 711.712c-12.224 12.736-32.48 13.184-45.248 0.96l-482.624-462.432-241.632 221.28c-13.024 11.936-33.28 11.040-45.216-2.016s-11.040-33.28 2.016-45.216l263.744-241.504c6.112-5.6 13.888-8.384 21.6-8.384 7.968 0 15.968 2.976 22.144 8.896l504.288 483.136c12.736 12.224 13.216 32.48 0.96 45.248z" /> +<glyph unicode="" glyph-name="checkbox" d="M307.712 276.512h-156.384c-12.96 0-23.488-10.528-23.488-23.488v-166.656c0-12.96 10.528-23.488 23.488-23.488h156.384c12.96 0 23.488 10.528 23.488 23.488v166.656c0 12.96-10.528 23.488-23.488 23.488zM288.224 105.824h-117.376v127.68h117.376v-127.68zM319.488 426.592c-11.872 0-21.504-9.632-21.504-21.504v-11.264c0-5.184-4.224-9.408-9.408-9.408h-108.352c-5.184 0-9.408 4.224-9.408 9.408v108.352c0 5.184 4.224 9.408 9.408 9.408h73.632c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-73.632c-28.896 0-52.416-23.52-52.416-52.416v-108.352c0-28.896 23.52-52.416 52.416-52.416h108.352c28.896 0 52.416 23.52 52.416 52.416v11.264c0 11.872-9.632 21.504-21.504 21.504zM329.856 546.592l-86.592-86.592-14.464 14.464c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l23.040-23.040c5.824-5.856 13.6-9.056 21.856-9.056s16.032 3.232 21.856 9.056l95.136 95.136c8.384 8.384 8.384 22.016 0 30.4s-22.016 8.384-30.4 0zM180.256 617.76h108.352c28.896 0 52.416 23.52 52.416 52.416l-1.44 19.68c-0.896 11.84-11.232 20.736-23.072 19.808s-20.704-11.232-19.808-23.072l1.28-17.024c-0.288-4.928-4.384-8.832-9.376-8.832h-108.352c-5.184 0-9.408 4.224-9.408 9.408v108.352c0 5.184 4.224 9.408 9.408 9.408h73.632c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-73.632c-28.896 0-52.416-23.52-52.416-52.416v-108.352c0-28.896 23.52-52.416 52.416-52.416zM329.856 822.912l-86.592-86.592-14.464 14.464c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l23.040-23.040c5.824-5.824 13.6-9.056 21.856-9.056s16.032 3.232 21.856 9.056l95.136 95.136c8.384 8.384 8.384 22.016 0 30.4s-22.016 8.384-30.4 0zM405.344 468.16h287.2c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-287.2c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM874.656 425.824h-469.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h469.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM405.344 190.848h287.2c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-287.2c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM787.84 148.512h-382.496c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h382.496c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM405.344 745.504h216.256c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-216.256c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM405.344 660.16h345.568c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-345.568c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504z" /> +<glyph unicode="" glyph-name="check-box-outline-blank" d="M724.64 745.696h-425.312c-47.488 0-86.016-38.496-86.016-86.016v-425.344c0-47.488 38.496-86.016 86.016-86.016h425.344c47.488 0 86.016 38.496 86.016 86.016v425.344c0 47.488-38.496 86.016-86.016 86.016zM724.64 234.336h-425.312v425.344h425.344v-425.344z" /> +<glyph unicode="" glyph-name="chevron-down" d="M902.528 655.968c-12.544 12.448-32.832 12.352-45.248-0.224l-344.544-347.616-346.080 346.592c-12.48 12.48-32.736 12.512-45.248 0.032s-12.544-32.736-0.032-45.248l368.8-369.344c6.016-6.016 14.144-9.408 22.624-9.408h0.064c8.512 0 16.672 3.424 22.688 9.472l367.2 370.464c12.448 12.544 12.352 32.8-0.192 45.248z" /> +<glyph unicode="" glyph-name="chevron-left" d="M719.744 102.72l-347.616 344.544 346.592 346.080c12.512 12.48 12.544 32.736 0.032 45.248s-32.736 12.544-45.248 0.032l-369.312-368.8c-6.016-6.016-9.408-14.208-9.376-22.688s3.424-16.672 9.472-22.688l370.432-367.2c6.24-6.208 14.4-9.28 22.528-9.28 8.256 0 16.448 3.168 22.72 9.472 12.448 12.544 12.352 32.832-0.192 45.248z" /> +<glyph unicode="" glyph-name="chevron-right" d="M719.744 471.552l-370.432 367.2c-12.544 12.448-32.832 12.352-45.248-0.192s-12.352-32.832 0.224-45.248l347.616-344.544-346.592-346.080c-12.512-12.48-12.544-32.736-0.032-45.248 6.272-6.24 14.432-9.408 22.624-9.408s16.352 3.136 22.624 9.376l369.312 368.8c6.048 6.016 9.408 14.208 9.408 22.72s-3.424 16.672-9.472 22.688z" /> +<glyph unicode="" glyph-name="chevrons-down" d="M841.216 478.944l-344.544-347.616-346.080 346.592c-12.48 12.512-32.736 12.544-45.248 0.032s-12.512-32.736-0.032-45.248l368.8-369.344c6.016-6.016 14.144-9.408 22.624-9.408h0.064c8.512 0 16.672 3.424 22.656 9.472l367.2 370.432c12.448 12.544 12.352 32.832-0.192 45.28-12.576 12.448-32.832 12.352-45.28-0.224zM474.112 416.96c6.016-6.016 14.144-9.408 22.624-9.408h0.064c8.512 0 16.672 3.424 22.688 9.472l367.2 370.464c12.448 12.544 12.352 32.832-0.192 45.248-12.576 12.448-32.832 12.352-45.28-0.192l-344.544-347.616-346.080 346.592c-12.48 12.512-32.736 12.544-45.248 0.032s-12.512-32.736-0.032-45.248l368.8-369.344z" /> +<glyph unicode="" glyph-name="chevrons-left" d="M195.328 447.264l346.592 346.080c12.48 12.48 12.512 32.736 0.032 45.248s-32.736 12.544-45.248 0.032l-369.344-368.8c-6.016-6.016-9.408-14.208-9.376-22.688s3.424-16.672 9.472-22.688l370.464-367.2c6.24-6.208 14.4-9.28 22.528-9.28 8.256 0 16.48 3.168 22.72 9.472 12.448 12.544 12.352 32.832-0.192 45.248l-347.648 344.544zM896.576 102.72l-347.648 344.544 346.592 346.080c12.48 12.48 12.512 32.736 0.032 45.248s-32.736 12.544-45.248 0.032l-369.344-368.8c-6.016-6.016-9.408-14.208-9.376-22.688s3.424-16.672 9.472-22.688l370.464-367.2c6.24-6.208 14.4-9.28 22.528-9.28 8.256 0 16.448 3.168 22.72 9.472 12.448 12.544 12.352 32.832-0.192 45.248z" /> +<glyph unicode="" glyph-name="chevrons-right" d="M896.576 471.552l-370.464 367.2c-12.576 12.448-32.832 12.352-45.28-0.192s-12.352-32.832 0.224-45.248l347.616-344.544-346.592-346.080c-12.48-12.48-12.512-32.736-0.032-45.248 6.272-6.24 14.432-9.408 22.624-9.408s16.352 3.136 22.624 9.376l369.344 368.8c6.048 6.016 9.408 14.208 9.408 22.72s-3.424 16.672-9.472 22.656zM552.416 448.864c0 8.512-3.424 16.672-9.472 22.656l-370.464 367.2c-12.576 12.448-32.832 12.352-45.28-0.192s-12.32-32.832 0.192-45.248l347.616-344.576-346.592-346.080c-12.48-12.48-12.512-32.736-0.032-45.248 6.272-6.24 14.432-9.408 22.656-9.408s16.352 3.136 22.624 9.376l369.344 368.8c6.048 6.016 9.408 14.208 9.408 22.72z" /> +<glyph unicode="" glyph-name="chevrons-up" d="M144 407.584c8.256 0 16.448 3.168 22.72 9.472l344.544 347.616 346.080-346.592c12.48-12.512 32.736-12.544 45.248-0.032s12.512 32.736 0.032 45.248l-368.8 369.344c-6.016 6.016-14.144 9.376-22.624 9.376h-0.064c-8.512 0-16.672-3.424-22.688-9.472l-367.2-370.464c-12.448-12.576-12.32-32.832 0.192-45.28 6.272-6.208 14.368-9.28 22.528-9.28zM533.856 479.040c-6.016 6.016-14.144 9.376-22.624 9.376h-0.064c-8.512 0-16.672-3.424-22.688-9.472l-367.2-370.464c-12.448-12.544-12.32-32.832 0.192-45.248 6.272-6.208 14.368-9.28 22.528-9.28 8.256 0 16.448 3.168 22.72 9.472l344.544 347.616 346.080-346.592c12.48-12.512 32.736-12.544 45.248-0.032s12.512 32.736 0.032 45.248l-368.8 369.344z" /> +<glyph unicode="" glyph-name="chevron-up" d="M902.624 286.496l-368.8 369.344c-6.016 6.016-14.144 9.376-22.624 9.376h-0.064c-8.512 0-16.672-3.424-22.688-9.472l-367.2-370.464c-12.448-12.544-12.32-32.832 0.192-45.248 6.272-6.208 14.368-9.28 22.528-9.28 8.256 0 16.448 3.168 22.72 9.472l344.544 347.616 346.080-346.592c12.48-12.48 32.736-12.544 45.248-0.032s12.512 32.736 0.032 45.248z" /> +<glyph unicode="" glyph-name="circle-arrow-down" d="M512 930.784c-265.088 0-480-214.912-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 34.784c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM634.304 439.552l-90.24-90.24 0.288 280.16c0 17.664-14.304 32.032-31.968 32.032h-0.032c-17.664 0-31.968-14.304-32-31.968l-0.256-280.352-90.368 90.336c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l144.928-144.928c6.272-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l144.928 144.928c12.48 12.48 12.48 32.736 0 45.248s-32.736 12.48-45.248 0z" /> +<glyph unicode="" glyph-name="circle-arrow-down-2" d="M512 866.912c-235.648 0-426.688-191.040-426.688-426.688s191.040-426.688 426.688-426.688 426.688 191.040 426.688 426.688-191.040 426.688-426.688 426.688zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776-99.776 149.888-99.776 240.864 35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.456-176.544-99.776-240.864zM609.6 427.744l-54.592-54.592v237.504c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-237.504l-54.592 54.592c-16.768 16.8-44.032 16.8-60.8 0s-16.8-44 0-60.832l128-128c0.992-1.024 2.080-1.952 3.136-2.848 0.48-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.184-0.928 1.824-1.376s1.248-0.768 1.888-1.152c0.576-0.352 1.152-0.704 1.728-1.024 0.64-0.352 1.312-0.64 1.984-0.928 0.608-0.288 1.216-0.576 1.856-0.864s1.28-0.48 1.92-0.704c0.672-0.256 1.344-0.48 2.016-0.736 0.64-0.192 1.312-0.352 1.952-0.48 0.704-0.192 1.408-0.384 2.112-0.512 0.768-0.16 1.504-0.256 2.304-0.352 0.64-0.096 1.248-0.192 1.888-0.288 1.408-0.16 2.816-0.192 4.256-0.192s2.816 0.096 4.256 0.192c0.64 0.064 1.248 0.192 1.856 0.288 0.768 0.096 1.504 0.192 2.304 0.352 0.736 0.16 1.408 0.352 2.144 0.512 0.64 0.16 1.312 0.288 1.952 0.48 0.672 0.192 1.376 0.48 2.048 0.736 0.64 0.224 1.312 0.448 1.952 0.704s1.216 0.576 1.856 0.864c0.64 0.288 1.312 0.608 1.952 0.928 0.576 0.32 1.152 0.672 1.728 1.024 0.64 0.384 1.28 0.736 1.888 1.152s1.216 0.896 1.856 1.376c0.512 0.384 1.024 0.736 1.536 1.152 1.12 0.896 2.144 1.856 3.168 2.848l128 128c16.8 16.8 16.8 44 0 60.832s-44 16.8-60.832 0z" /> +<glyph unicode="" glyph-name="circle-arrow-down-left" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM616 596.8l-198.4-198.048v127.776c0 17.664-14.336 32-32 32s-32-14.336-32-32v-204.96c0-17.664 14.336-32 32-32h204.96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-127.616l198.304 197.92c12.512 12.48 12.544 32.736 0.032 45.28-12.48 12.48-32.736 12.544-45.28 0.032z" /> +<glyph unicode="" glyph-name="circle-arrow-down-left-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896 149.888 99.776 240.864 99.776 176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.456-176.544-99.776-240.864zM602.272 591.104l-167.936-167.968v77.216c0 23.744-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-181.024c0-1.408 0.064-2.816 0.224-4.256 0.064-0.64 0.16-1.28 0.256-1.888 0.128-0.736 0.192-1.504 0.352-2.272 0.16-0.736 0.352-1.408 0.544-2.144 0.16-0.64 0.288-1.312 0.48-1.952 0.224-0.672 0.448-1.376 0.736-2.048 0.224-0.64 0.448-1.312 0.704-1.92s0.576-1.248 0.864-1.856c0.288-0.64 0.576-1.312 0.96-1.952 0.32-0.576 0.672-1.184 1.024-1.76 0.352-0.64 0.736-1.28 1.152-1.856 0.448-0.64 0.896-1.248 1.376-1.856 0.384-0.512 0.736-1.024 1.152-1.504 1.792-2.208 3.808-4.192 6.016-6.016 0.48-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.184-0.928 1.824-1.376s1.248-0.768 1.888-1.152c0.576-0.352 1.152-0.704 1.696-1.024 0.64-0.352 1.312-0.64 1.984-0.928 0.608-0.288 1.216-0.576 1.856-0.864s1.28-0.48 1.92-0.704c0.672-0.256 1.344-0.48 2.016-0.736 0.64-0.192 1.312-0.352 1.952-0.48 0.704-0.192 1.408-0.384 2.112-0.512 0.768-0.16 1.504-0.256 2.304-0.352 0.64-0.096 1.248-0.192 1.888-0.288 1.408-0.16 2.816-0.192 4.256-0.192h181.024c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008h-77.216l167.936 167.936c16.8 16.8 16.8 44.032 0 60.832s-44 16.8-60.832 0z" /> +<glyph unicode="" glyph-name="circle-arrow-down-right" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM638.4 558.56c-17.664 0-32-14.336-32-32v-127.584l-197.92 198.304c-12.48 12.48-32.736 12.544-45.28 0.032s-12.544-32.736-0.032-45.28l198.048-198.4h-127.776c-17.664 0-32-14.336-32-32s14.336-32 32-32h204.96c17.664 0 32 14.336 32 32v204.96c0 17.664-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="circle-arrow-down-right-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.424-176.544-99.776-240.864zM632.672 543.328c-23.744 0-43.008-19.232-43.008-43.008v-77.216l-167.936 167.936c-16.768 16.8-44.032 16.8-60.832 0s-16.8-44.032 0-60.832l167.936-167.936h-77.216c-23.744 0-43.008-19.264-43.008-43.008s19.232-43.008 43.008-43.008h181.024c1.408 0 2.816 0.096 4.256 0.192 0.64 0.064 1.248 0.192 1.856 0.288 0.768 0.096 1.504 0.192 2.304 0.352 0.736 0.16 1.408 0.352 2.144 0.512 0.64 0.16 1.312 0.288 1.952 0.48 0.672 0.192 1.376 0.48 2.048 0.736 0.64 0.224 1.312 0.448 1.952 0.704s1.216 0.544 1.856 0.864c0.64 0.288 1.312 0.608 1.952 0.928 0.576 0.32 1.152 0.672 1.696 1.024 0.64 0.384 1.28 0.736 1.888 1.152s1.216 0.896 1.856 1.376c0.512 0.384 1.024 0.736 1.536 1.152 2.208 1.792 4.192 3.808 6.016 6.016 0.384 0.48 0.768 1.024 1.12 1.504 0.48 0.608 0.928 1.216 1.376 1.856 0.416 0.608 0.768 1.248 1.12 1.856 0.352 0.576 0.704 1.12 1.024 1.728 0.352 0.64 0.64 1.312 0.928 1.952s0.608 1.216 0.864 1.856 0.48 1.28 0.704 1.92c0.256 0.672 0.512 1.376 0.736 2.048 0.192 0.64 0.352 1.312 0.48 1.952 0.192 0.704 0.384 1.408 0.544 2.144s0.256 1.504 0.352 2.272c0.096 0.64 0.192 1.248 0.288 1.888 0.16 1.408 0.192 2.816 0.192 4.256v181.024c0 23.744-19.264 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="circle-arrow-left" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM690.784 479.648l-280.352 0.256 90.336 90.368c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-144.928-144.928c-12.48-12.48-12.48-32.768 0-45.248l144.928-144.928c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.512 12.48 12.512 32.736 0 45.248l-90.208 90.24 280.192-0.288c17.664 0 32 14.304 32 31.968s-14.304 32.032-31.968 32.032z" /> +<glyph unicode="" glyph-name="circle-arrow-left-2" d="M512 866.912c-235.648 0-426.688-191.040-426.688-426.688s191.040-426.688 426.688-426.688 426.688 191.040 426.688 426.688-191.040 426.688-426.688 426.688zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776-99.776 149.888-99.776 240.864 35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.864s-35.456-176.544-99.776-240.864zM682.688 483.008h-237.504l54.592 54.592c16.8 16.768 16.8 44.032 0 60.8s-44.032 16.8-60.832 0l-128-128c-0.992-0.992-1.952-2.080-2.848-3.136-0.384-0.48-0.768-0.992-1.152-1.504-0.448-0.64-0.96-1.248-1.376-1.888s-0.768-1.248-1.152-1.856c-0.352-0.576-0.704-1.152-1.024-1.76-0.352-0.64-0.64-1.28-0.96-1.952s-0.608-1.248-0.864-1.888-0.48-1.28-0.704-1.92c-0.256-0.672-0.512-1.376-0.736-2.048-0.192-0.64-0.352-1.28-0.48-1.952-0.16-0.704-0.384-1.408-0.544-2.112-0.16-0.768-0.256-1.504-0.352-2.272-0.096-0.64-0.224-1.248-0.256-1.888-0.256-2.816-0.256-5.664 0-8.48 0.064-0.64 0.16-1.28 0.256-1.888 0.128-0.736 0.192-1.504 0.352-2.272 0.16-0.736 0.352-1.408 0.544-2.144 0.16-0.64 0.288-1.312 0.48-1.952 0.224-0.672 0.448-1.376 0.736-2.048 0.224-0.64 0.448-1.312 0.704-1.92s0.576-1.248 0.864-1.856c0.288-0.64 0.576-1.312 0.96-1.952 0.32-0.576 0.672-1.184 1.024-1.76 0.352-0.64 0.736-1.248 1.152-1.856 0.448-0.64 0.896-1.248 1.376-1.856 0.384-0.48 0.736-1.024 1.152-1.504 0.896-1.12 1.856-2.144 2.848-3.168l128-128c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.8 16.8 16.8 44 0 60.832l-54.592 54.592h237.504c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="circle-arrow-right" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM568.48 615.552c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l90.24-90.24-280.192 0.256c-17.664 0-31.968-14.304-32-31.968s14.304-32.032 31.968-32.032l280.352-0.288-90.336-90.336c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l144.928 144.928c12.48 12.48 12.48 32.768 0 45.248l-144.928 144.928z" /> +<glyph unicode="" glyph-name="circle-arrow-right-2" d="M512 866.912c-235.648 0-426.688-191.040-426.688-426.688s191.040-426.688 426.688-426.688 426.688 191.040 426.688 426.688-191.040 426.688-426.688 426.688zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776-99.776 149.888-99.776 240.864 35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.864s-35.456-176.544-99.776-240.864zM717.088 414.304c0.448 0.608 0.928 1.216 1.344 1.824s0.768 1.248 1.12 1.888c0.352 0.576 0.704 1.12 1.024 1.728 0.352 0.64 0.64 1.312 0.928 1.952s0.608 1.216 0.864 1.856c0.256 0.64 0.48 1.28 0.704 1.888 0.256 0.672 0.512 1.376 0.736 2.048 0.192 0.64 0.352 1.28 0.48 1.92 0.192 0.736 0.384 1.408 0.544 2.144s0.224 1.472 0.352 2.208c0.096 0.64 0.224 1.312 0.288 1.952 0.128 1.344 0.192 2.688 0.192 4.064 0 0.064 0 0.096 0 0.192s0 0.096 0 0.192c0 1.376-0.096 2.688-0.192 4.064-0.064 0.64-0.192 1.312-0.288 1.952-0.096 0.736-0.192 1.472-0.352 2.208s-0.352 1.44-0.544 2.176c-0.16 0.64-0.288 1.28-0.48 1.92-0.192 0.704-0.48 1.376-0.736 2.080-0.224 0.64-0.448 1.28-0.704 1.888s-0.576 1.248-0.864 1.888c-0.288 0.672-0.576 1.312-0.928 1.952-0.32 0.576-0.672 1.152-1.024 1.728-0.384 0.64-0.736 1.28-1.12 1.888s-0.896 1.216-1.344 1.824c-0.384 0.512-0.736 1.056-1.184 1.568-0.864 1.056-1.76 2.080-2.72 3.040-0.064 0.032-0.096 0.064-0.096 0.128l-128 128c-16.8 16.8-44 16.8-60.832 0s-16.768-44.032 0-60.8l54.592-54.592h-237.504c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h237.504l-54.592-54.592c-16.768-16.768-16.768-44 0-60.832 8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576l128 128s0.064 0.096 0.096 0.128c0.96 0.96 1.856 1.952 2.72 3.040 0.416 0.512 0.768 1.024 1.184 1.568z" /> +<glyph unicode="" glyph-name="circle-arrow-up" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM534.624 649.376c-12.48 12.48-32.768 12.48-45.248 0l-144.928-144.928c-12.48-12.48-12.48-32.768 0-45.248s32.768-12.512 45.248 0l90.24 90.208-0.256-280.16c0-17.664 14.304-32 31.968-32.032h0.032c17.664 0 31.968 14.304 32 31.968l0.288 280.352 90.336-90.336c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-144.928 144.928z" /> +<glyph unicode="" glyph-name="circle-arrow-up-2" d="M512 866.912c-235.648 0-426.688-191.040-426.688-426.688s191.040-426.688 426.688-426.688 426.688 191.040 426.688 426.688-191.040 426.688-426.688 426.688zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776-99.776 149.888-99.776 240.864 35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.864s-35.456-176.544-99.776-240.864zM542.4 641.088s-0.096 0.064-0.096 0.096c-0.96 0.96-1.984 1.888-3.040 2.752-0.512 0.416-1.024 0.768-1.568 1.184-0.576 0.448-1.184 0.896-1.792 1.312s-1.28 0.768-1.888 1.152c-0.576 0.352-1.12 0.704-1.696 0.992-0.64 0.352-1.312 0.64-1.952 0.96-0.608 0.288-1.216 0.576-1.856 0.864s-1.312 0.48-1.952 0.704c-0.672 0.256-1.344 0.48-2.048 0.704-0.64 0.192-1.312 0.352-1.952 0.512-0.704 0.16-1.408 0.352-2.112 0.512-0.736 0.16-1.504 0.256-2.304 0.352-0.64 0.096-1.248 0.224-1.856 0.256-2.816 0.256-5.664 0.256-8.48 0-0.64-0.064-1.248-0.16-1.888-0.256-0.768-0.128-1.504-0.192-2.304-0.352-0.736-0.16-1.408-0.352-2.112-0.512-0.672-0.16-1.312-0.288-1.984-0.512s-1.376-0.448-2.016-0.704c-0.672-0.256-1.28-0.448-1.92-0.704s-1.248-0.576-1.824-0.864c-0.672-0.288-1.312-0.608-1.984-0.96-0.576-0.32-1.152-0.672-1.696-0.992-0.64-0.384-1.28-0.736-1.888-1.152s-1.216-0.864-1.792-1.312c-0.544-0.384-1.056-0.768-1.568-1.184-1.056-0.864-2.080-1.792-3.040-2.752-0.032-0.032-0.064-0.064-0.128-0.096l-128-128c-16.768-16.8-16.768-44.032 0-60.832s44.032-16.8 60.8 0l54.592 54.592v-237.504c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v237.504l54.592-54.592c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.768 16.8 16.768 44.032 0 60.832l-128 128z" /> +<glyph unicode="" glyph-name="circle-arrow-up-left" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM462.752 542.4h127.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-204.96c-17.664 0-32-14.336-32-32v-204.96c0-17.664 14.336-32 32-32s32 14.336 32 32v127.616l197.92-198.304c6.24-6.24 14.432-9.408 22.656-9.408s16.352 3.136 22.592 9.344c12.512 12.48 12.544 32.736 0.032 45.28l-198.048 198.4z" /> +<glyph unicode="" glyph-name="circle-arrow-up-left-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.424-176.544-99.776-240.864zM495.136 517.696h77.216c23.744 0 43.008 19.232 43.008 43.008s-19.264 43.008-43.008 43.008h-181.024c-1.408 0-2.816-0.064-4.256-0.224-0.64-0.064-1.248-0.16-1.888-0.256-0.768-0.128-1.504-0.192-2.304-0.352-0.736-0.16-1.408-0.352-2.112-0.512-0.672-0.16-1.312-0.288-1.952-0.48-0.672-0.224-1.376-0.448-2.016-0.704s-1.28-0.448-1.92-0.704c-0.64-0.256-1.248-0.576-1.824-0.864-0.672-0.288-1.312-0.608-1.984-0.96-0.576-0.32-1.152-0.672-1.696-0.992-0.64-0.384-1.28-0.736-1.888-1.152s-1.216-0.864-1.792-1.312c-0.544-0.384-1.056-0.768-1.568-1.184-1.056-0.864-2.016-1.76-3.008-2.72-0.064-0.064-0.128-0.096-0.16-0.16s-0.096-0.128-0.16-0.16c-0.96-0.96-1.824-1.952-2.688-2.976-0.416-0.512-0.768-1.056-1.184-1.568-0.448-0.608-0.896-1.184-1.312-1.792s-0.768-1.248-1.152-1.888c-0.352-0.576-0.704-1.152-1.024-1.728-0.352-0.64-0.64-1.28-0.96-1.952s-0.608-1.248-0.864-1.888c-0.256-0.64-0.448-1.28-0.704-1.888-0.256-0.672-0.512-1.376-0.736-2.080-0.192-0.64-0.352-1.28-0.48-1.92-0.16-0.736-0.384-1.408-0.544-2.176s-0.224-1.472-0.352-2.208c-0.096-0.672-0.224-1.28-0.288-1.952-0.128-1.344-0.192-2.72-0.224-4.064 0-0.064 0-0.128 0-0.16v-181.024c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v77.184l167.936-167.936c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.768 16.8 16.768 44 0 60.832l-167.936 167.936z" /> +<glyph unicode="" glyph-name="circle-arrow-up-right" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM638.4 606.4h-204.96c-17.664 0-32-14.336-32-32s14.336-32 32-32h127.616l-198.304-197.92c-12.48-12.48-12.544-32.736-0.064-45.248 6.24-6.272 14.432-9.408 22.656-9.408s16.352 3.136 22.624 9.344l198.432 198.048v-127.808c0-17.664 14.336-32 32-32s32 14.336 32 32v204.96c0 17.664-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="circle-arrow-up-right-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.424-176.544-99.776-240.864zM675.456 564.896c-0.064 0.672-0.192 1.28-0.288 1.952-0.096 0.736-0.192 1.472-0.352 2.208s-0.352 1.44-0.544 2.176c-0.16 0.64-0.288 1.28-0.48 1.92-0.192 0.704-0.48 1.376-0.736 2.080-0.224 0.64-0.448 1.28-0.704 1.888s-0.576 1.248-0.864 1.888c-0.288 0.672-0.576 1.312-0.928 1.952-0.32 0.576-0.672 1.152-1.024 1.728-0.384 0.64-0.736 1.28-1.152 1.888s-0.864 1.216-1.312 1.792c-0.384 0.544-0.736 1.056-1.184 1.568-0.832 1.056-1.76 2.016-2.688 2.976-0.064 0.064-0.096 0.128-0.16 0.16s-0.096 0.096-0.16 0.16c-0.96 0.96-1.952 1.856-2.976 2.72-0.512 0.416-1.024 0.768-1.568 1.184-0.576 0.448-1.184 0.896-1.792 1.312s-1.28 0.768-1.888 1.152c-0.544 0.352-1.12 0.672-1.696 0.992-0.64 0.352-1.312 0.64-1.952 0.96-0.608 0.288-1.216 0.576-1.856 0.864s-1.312 0.48-1.952 0.704c-0.672 0.256-1.344 0.48-2.048 0.704-0.64 0.192-1.312 0.352-1.952 0.48-0.704 0.16-1.408 0.352-2.144 0.512s-1.504 0.256-2.304 0.352c-0.64 0.096-1.248 0.224-1.856 0.256-1.408 0.16-2.816 0.224-4.256 0.224h-181.024c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h77.216l-167.936-167.936c-16.768-16.8-16.768-44 0-60.832 8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576l167.936 167.936v-77.216c0-23.744 19.264-43.008 43.008-43.008s43.008 19.264 43.008 43.008v181.024s0 0.128 0 0.16c0 1.376-0.096 2.72-0.192 4.064z" /> +<glyph unicode="" glyph-name="circle-caret-down" d="M654.016 573.76l-283.936 0.448c-48.256 0-72.672-58.208-38.816-92.64l141.184-143.456c10.656-10.816 24.736-16.256 38.816-16.256 13.952 0 27.904 5.312 38.528 16l142.656 143.040c34.208 34.304 9.952 92.832-38.464 92.896zM511.328 389.856l-118.4 120.288 238.016-0.352-119.648-119.936zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-caret-down-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.36c-64.352-64.352-149.888-99.776-240.896-99.776s-176.544 35.424-240.864 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.896-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.456-176.544-99.776-240.864zM590.592 460.672l-78.624-85.568-78.624 85.568h157.216zM690.784 546.688h-357.568c-36.576 0-55.648-43.488-30.912-70.4l178.784-194.592c8.32-9.056 19.648-13.568 30.912-13.568s22.592 4.544 30.912 13.568l178.784 194.592c24.736 26.912 5.664 70.4-30.912 70.4v0z" /> +<glyph unicode="" glyph-name="circle-caret-left" d="M583.36 644.448c-13.248 0-26.752-4.864-37.792-15.744l-143.456-141.184c-21.6-21.216-21.696-56-0.256-77.376l143.040-142.656c11.072-11.072 24.704-16 38.048-16 27.968 0 54.784 21.696 54.816 54.496l0.448 283.84c0.064 32.832-26.784 54.624-54.816 54.624zM573.792 329.088l-119.936 119.648 120.288 118.4-0.384-238.016zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-caret-left-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.36c-64.352-64.352-149.888-99.776-240.896-99.776s-176.544 35.424-240.896 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.896-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.424-176.544-99.776-240.864zM532.384 518.88v-157.216l-85.568 78.592 85.568 78.624zM576.16 661.152c-9.76 0-19.744-3.456-28.16-11.136l-194.592-178.784c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.816c8.384-7.712 18.368-11.168 28.16-11.168 21.632 0 42.24 16.896 42.24 42.080v357.568c0 25.184-20.64 42.080-42.24 42.080v0z" /> +<glyph unicode="" glyph-name="circle-caret-right" d="M479.136 628.448c-11.104 11.040-24.704 16-38.080 16-27.968 0-54.784-21.696-54.816-54.496l-0.448-283.84c-0.064-32.832 26.816-54.624 54.816-54.624 13.248 0 26.752 4.864 37.792 15.744l143.456 141.184c21.568 21.216 21.696 55.968 0.256 77.376l-143.040 142.656zM449.856 328.928l0.352 238.016 119.936-119.648-120.288-118.4zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-caret-right-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 199.36c-64.352-64.352-149.888-99.776-240.896-99.776s-176.544 35.424-240.896 99.776c-64.352 64.352-99.776 149.888-99.776 240.864s35.424 176.544 99.776 240.896c64.352 64.352 149.888 99.776 240.896 99.776s176.544-35.424 240.896-99.776c64.352-64.352 99.776-149.888 99.776-240.896s-35.424-176.544-99.776-240.864zM491.616 518.848l85.568-78.624-85.568-78.624v157.216zM447.84 661.152c-21.632 0-42.24-16.896-42.24-42.080v-357.568c0-25.184 20.64-42.080 42.24-42.080 9.792 0 19.744 3.456 28.16 11.168l194.592 178.784c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.816c-8.384 7.712-18.368 11.136-28.16 11.136v0z" /> +<glyph unicode="" glyph-name="circle-caret-up" d="M551.552 557.92c-10.656 10.816-24.736 16.256-38.816 16.256-13.952 0-27.904-5.312-38.528-16l-142.656-143.040c-34.208-34.304-9.984-92.832 38.464-92.896l283.936-0.448c48.288 0 72.672 58.208 38.784 92.64l-141.184 143.456zM393.088 386.208l119.616 119.936 118.4-120.288-238.016 0.384zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-caret-up-2" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.864 199.36c-64.352-64.352-149.888-99.776-240.864-99.776s-176.544 35.424-240.864 99.776-99.776 149.888-99.776 240.864 35.424 176.544 99.776 240.864c64.352 64.352 149.888 99.776 240.864 99.776s176.544-35.424 240.864-99.776c64.352-64.352 99.776-149.888 99.776-240.864s-35.456-176.544-99.776-240.864zM512 505.408l78.624-85.568h-157.216l78.624 85.568zM512 612.448c-11.296 0-22.624-4.544-30.912-13.6l-178.816-194.592c-24.736-26.912-5.664-70.4 30.912-70.4h357.568c36.544 0 55.648 43.488 30.912 70.4l-178.784 194.592c-8.32 9.056-19.616 13.6-30.912 13.6v0z" /> +<glyph unicode="" glyph-name="circle-check" d="M511.968 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM511.968 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM693.312 599.104l-245.568-235.264-117.632 107.712c-13.056 11.936-33.28 11.040-45.216-2.016s-11.040-33.28 2.016-45.216l139.744-127.968c6.112-5.6 13.888-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l267.2 256c12.736 12.224 13.216 32.48 0.96 45.248s-32.48 13.184-45.248 0.96z" /> +<glyph unicode="" glyph-name="circle-chevron-down" d="M663.424 558.080l-152.16-152.608-150.528 152.96c-12.384 12.576-32.672 12.736-45.28 0.352s-12.768-32.672-0.352-45.28l173.184-176c6.016-6.080 14.176-9.504 22.72-9.568h0.128c8.48 0 16.64 3.36 22.656 9.408l174.976 175.456c12.48 12.512 12.448 32.768-0.064 45.248s-32.768 12.448-45.248-0.064zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-chevron-left" d="M469.472 447.264l152.576 152.16c12.512 12.48 12.544 32.736 0.064 45.248s-32.736 12.544-45.248 0.064l-175.456-175.008c-6.048-6.016-9.44-14.208-9.408-22.784s3.456-16.704 9.568-22.688l176-173.184c6.24-6.144 14.336-9.184 22.432-9.184 8.288 0 16.544 3.168 22.816 9.568 12.384 12.608 12.224 32.864-0.384 45.28l-152.96 150.528zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-chevron-right" d="M447.136 644.736c-12.512 12.48-32.768 12.448-45.248-0.064s-12.448-32.768 0.064-45.248l152.576-152.16-152.96-150.528c-12.576-12.384-12.768-32.64-0.352-45.28 6.272-6.368 14.528-9.568 22.816-9.568 8.096 0 16.192 3.072 22.432 9.184l176 173.184c6.080 6.016 9.504 14.144 9.568 22.688s-3.36 16.736-9.408 22.784l-175.456 174.976zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-chevron-up" d="M535.712 558.432c-6.016 6.080-14.144 9.504-22.688 9.568h-0.096c-8.48 0-16.672-3.36-22.656-9.408l-175.008-175.456c-12.48-12.512-12.448-32.768 0.064-45.248s32.768-12.448 45.248 0.064l152.192 152.576 150.528-152.96c6.272-6.368 14.528-9.568 22.816-9.568 8.096 0 16.192 3.072 22.432 9.184 12.576 12.384 12.736 32.64 0.384 45.28l-173.184 176zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-down" d="M512 931.52c-265.088 0-480-214.912-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 35.52c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM654.048 500.416l-23.616 0.032 0.288 139.936c0.064 24.576-9.504 47.744-26.88 65.12s-40.48 27.008-65.088 27.008h-54.080c-24.64 0-47.744-9.6-65.12-27.040s-26.912-40.608-26.816-65.216l0.48-139.424-23.104 0.032c-35.456 0-65.984-20.288-79.712-52.992-13.728-32.736-6.816-68.768 18.112-94.112l141.184-143.456c16.288-16.576 38.080-25.728 61.344-25.792 0.096 0 0.192 0 0.288 0 23.136 0 44.864 9.024 61.216 25.408l142.656 143.040c25.12 25.184 32.288 61.28 18.688 94.144s-44.192 53.312-79.744 53.376zM669.792 398.112l-142.656-143.040c-4.256-4.256-9.888-6.592-15.904-6.592h-0.064c-6.016 0-11.712 2.4-15.936 6.688l-141.184 143.456c-9.472 9.6-6.432 20.288-4.672 24.448s7.232 13.76 20.672 13.76h0.064l55.168-0.096c8.48 0 16.672 3.36 22.656 9.408s9.376 14.208 9.344 22.72l-0.576 171.616c-0.032 7.488 2.848 14.528 8.16 19.84s12.288 8.224 19.808 8.224h54.080c7.456 0 14.496-2.912 19.776-8.224s8.192-12.32 8.16-19.776l-0.352-171.936c0-8.48 3.36-16.64 9.312-22.656s14.144-9.408 22.624-9.408l55.648-0.096c13.504 0 18.976-9.696 20.704-13.856s4.704-14.88-4.832-24.448z" /> +<glyph unicode="" glyph-name="circle-left" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM701.088 567.264h-0.352l-139.456-0.48 0.032 22.976c0.064 35.52-20.256 66.112-52.992 79.84s-68.768 6.816-94.112-18.112l-143.488-141.184c-16.576-16.288-25.728-38.080-25.792-61.312s8.928-45.088 25.376-61.504l143.040-142.656c16.736-16.704 38.304-25.472 60.512-25.472 11.232 0 22.592 2.24 33.6 6.784 32.864 13.6 53.312 44.192 53.376 79.744l0.032 23.616 140.16-0.288c24.512 0 47.552 9.536 64.928 26.88 17.408 17.376 27.008 40.48 27.008 65.088v54.080c0 24.64-9.6 47.744-27.040 65.12-17.376 17.28-40.384 26.816-64.864 26.816zM729.024 421.28c0-7.456-2.912-14.496-8.192-19.776s-12.288-8.16-19.712-8.16h-0.064l-172 0.352c-8.48 0-16.576-3.36-22.592-9.312-6.016-6.016-9.376-14.144-9.408-22.624l-0.064-55.648c-0.032-13.504-9.696-18.976-13.856-20.704-4.16-1.76-14.88-4.672-24.448 4.832l-143.040 142.656c-4.256 4.288-6.624 9.952-6.624 15.968s2.4 11.68 6.72 15.936l143.488 141.184c9.6 9.472 20.288 6.432 24.448 4.672s13.792-7.232 13.76-20.736l-0.064-55.136c0-8.512 3.36-16.672 9.376-22.688s14.144-9.344 22.592-9.344h0.096l171.712 0.576c7.456 0 14.432-2.912 19.712-8.16 5.312-5.28 8.224-12.288 8.224-19.808v-54.080z" /> +<glyph unicode="" glyph-name="circle-minus" d="M720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="circle-plus" d="M516.192 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.912 480-480 480zM516.192 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM716.192 488h-168v168c0 17.664-14.336 32-32 32s-32-14.336-32-32v-168h-168c-17.664 0-32-14.336-32-32s14.336-32 32-32h168v-168c0-17.664 14.336-32 32-32s32 14.336 32 32v168h168c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="circle-right" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM610.592 651.136c-25.184 25.12-61.216 32.288-94.144 18.688-32.864-13.6-53.312-44.16-53.376-79.744l-0.032-23.648-140.128 0.288c-24.544 0-47.584-9.536-64.96-26.848-17.408-17.376-27.008-40.48-27.008-65.088v-54.080c0-24.64 9.632-47.744 27.040-65.12s39.936-26.72 65.216-26.816l139.424 0.48-0.032-22.976c-0.064-35.52 20.256-66.112 52.992-79.84 11.136-4.672 22.624-6.976 33.952-6.976 22.048 0 43.424 8.608 60.096 25.024l143.456 141.184c16.576 16.288 25.76 38.080 25.824 61.312s-8.96 45.088-25.408 61.472l-143.040 142.656zM708.32 431.264l-143.488-141.184c-9.568-9.472-20.288-6.432-24.416-4.672s-13.76 7.264-13.76 20.736l0.096 55.136c0 8.512-3.36 16.672-9.408 22.688s-14.144 9.344-22.624 9.344h-0.128l-171.712-0.576c-7.424 0-14.432 2.88-19.712 8.16s-8.224 12.32-8.224 19.808v54.080c0 7.456 2.912 14.528 8.224 19.776s12.288 8.16 19.744 8.16h0.064l172-0.352c8.448 0 16.576 3.36 22.592 9.312 6.016 6.016 9.408 14.112 9.408 22.624l0.096 55.648c0 13.504 9.696 19.008 13.856 20.704 4.192 1.728 14.88 4.704 24.448-4.864l143.040-142.656c4.288-4.256 6.592-9.92 6.592-15.968s-2.4-11.68-6.688-15.904z" /> +<glyph unicode="" glyph-name="circle-up" d="M512 928c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM574.336 689.184c-16.288 16.576-38.080 25.728-61.312 25.792-0.096 0-0.192 0-0.288 0-23.136 0-44.864-9.024-61.184-25.408l-142.656-143.040c-25.12-25.184-32.256-61.28-18.688-94.112s44.16-53.312 79.744-53.376l23.648-0.032-0.288-139.936c-0.064-24.576 9.472-47.712 26.848-65.12s40.48-27.008 65.088-27.008h54.080c24.64 0 47.744 9.6 65.12 27.040s26.88 40.576 26.816 65.216l-0.48 139.424 23.104-0.032c35.456 0 65.984 20.288 79.712 52.992 13.728 32.736 6.784 68.768-18.112 94.112l-141.184 143.488zM674.592 476.416c-1.728-4.16-7.232-13.76-20.672-13.76h-0.064l-55.168 0.064c-8.48 0-16.64-3.36-22.656-9.376s-9.376-14.208-9.344-22.72l0.576-171.616c0-7.488-2.88-14.528-8.16-19.808s-12.288-8.224-19.808-8.224h-54.080c-7.456 0-14.496 2.912-19.776 8.192s-8.16 12.32-8.16 19.808l0.352 171.936c0 8.48-3.328 16.64-9.312 22.656s-14.112 9.376-22.624 9.408l-55.648 0.064c-13.504 0.032-19.008 9.696-20.704 13.856s-4.704 14.88 4.864 24.448l142.656 143.040c4.256 4.288 9.76 6.016 16 6.624 6.048-0.032 11.68-2.4 15.904-6.72l141.184-143.456c9.472-9.6 6.432-20.288 4.672-24.448z" /> +<glyph unicode="" glyph-name="circle-user" d="M516.576 362.496c90.72 0 164.288 73.568 164.288 164.256s-73.568 164.256-164.256 164.256-164.256-73.568-164.256-164.256 73.568-164.256 164.256-164.256zM516.576 627.040c55.296 0 100.288-44.992 100.288-100.256s-44.992-100.288-100.288-100.288-100.256 44.992-100.256 100.256 44.992 100.256 100.256 100.256zM512 932.032c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM96 452.064c0 229.376 186.624 416 416 416s416-186.624 416-416c0-103.552-38.112-198.304-100.928-271.2-78.208 84.96-208.96 123.424-310.432 123.424-105.088 0-238.4-40-315.424-128.288-65.376 73.504-105.184 170.208-105.184 276.064zM247.072 131.552c62.88 74.976 178.272 108.736 269.504 108.736 87.936 0 200.864-32.448 265.184-104.48-72.704-62.112-166.912-99.712-269.792-99.712-100.576 0-192.896 35.904-264.896 95.52z" /> +<glyph unicode="" glyph-name="circle-xmark" d="M855.584 787.392c-93.728 93.728-216.576 140.608-339.424 140.608s-245.696-46.88-339.424-140.608c-187.456-187.456-187.456-491.36 0-678.816 93.728-93.728 216.576-140.576 339.424-140.576s245.664 46.88 339.424 140.576c187.456 187.456 187.456 491.36 0 678.816zM810.336 153.856c-78.592-78.592-183.040-121.856-294.176-121.856s-215.584 43.264-294.176 121.856c-78.56 78.592-121.856 183.040-121.856 294.176s43.264 215.584 121.856 294.176c78.56 78.56 183.040 121.856 294.176 121.856s215.584-43.264 294.176-121.856c78.592-78.592 121.856-183.040 121.856-294.176s-43.264-215.584-121.856-294.176zM685.856 617.696c-12.48 12.48-32.768 12.48-45.248 0l-118.784-118.816-118.816 118.816c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l118.816-118.816-118.816-118.784c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l118.784 118.784 118.784-118.784c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-118.784 118.816 118.784 118.816c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="city" d="M944 32v576c0 35.296-28.704 64-64 64v64c0 23.584-12.96 44-32 55.104v72.896c0 35.296-28.704 64-64 64h-96c-35.296 0-64-28.704-64-64v-72.896c-19.040-11.104-32-31.52-32-55.104v-64c-35.296 0-64-28.704-64-64h-32v96c0 35.296-28.704 64-64 64h-256c-35.296 0-64-28.704-64-64v-488.896c-19.040-11.104-32-31.52-32-55.104v-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h864c17.664 0 32 14.336 32 32s-14.336 32-32 32zM784 864v-64h-96v64h96zM656 736h160v-64h-160v64zM592 608h288v-576h-112v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-112v576zM528 512v-480h-192v128c0 23.584-12.96 44-32 55.104v200.896c0 10.56 4.736 20.416 12.992 27.040l110.080 88.032c10.368 8.352 23.488 12.96 36.96 12.96h64v-32zM432 704v-100.672c-16.32-4.384-31.776-11.744-44.992-22.336l-110.016-87.968c-23.52-18.816-36.992-46.912-36.992-76.992v-192h-64v480h256zM144 160h128v-128h-32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-32v128zM464 160h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM464 288h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM368 416c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96zM784 128h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 128h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 384h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 384h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM784 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM656 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240 608h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM240 512h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="clapperboard-video" d="M991.424 770.912c-4.384 34.080-33.504 60.416-68.768 60.416h-821.312c-38.272 0-69.344-31.040-69.344-69.344v-628c0-38.304 31.040-69.312 69.344-69.312h821.344c38.304 0 69.312 31.040 69.312 69.312v628c0 3.040-0.192 6.016-0.576 8.928zM526.144 128.672l50.592 95.456c0.096 0.192 0.16 0.384 0.256 0.576h188.928l-50.912-96h-188.864zM264.864 128.672l50.592 95.456c0.096 0.192 0.16 0.384 0.256 0.576h188.896l-50.912-96h-188.864zM96 288.672v318.624h832v-318.624h-832zM497.888 767.328l-50.912-96h-188.864l50.912 96.032h188.864zM759.168 767.328l-50.912-96h-188.864l50.88 96.032h188.864zM928 761.984v-90.688h-147.328l50.912 96.032h91.072c2.944 0 4.992-2.304 5.312-5.344zM101.344 767.328h135.232l-50.88-96h-89.664v90.688c0 2.944 2.4 5.344 5.344 5.344zM96 133.984v90.688h147.296l-50.912-96h-91.072c-2.944 0-5.344 2.4-5.344 5.312zM922.688 128.672h-135.232l50.592 95.456c0.096 0.192 0.16 0.384 0.256 0.576h89.728v-90.688c0-2.944-2.4-5.312-5.312-5.312zM602.688 474.752l-124.448 80.128c-5.472 3.52-11.36 5.12-17.152 5.12-16.576 0-31.904-13.184-31.904-31.872v-160.256c0-18.688 15.328-31.872 31.904-31.872 5.76 0 11.68 1.6 17.152 5.12l124.448 80.128c19.456 12.544 19.456 40.96 0 53.504z" /> +<glyph unicode="" glyph-name="client-carousel" d="M686.656 745.824h-349.344c-44.928 0-81.504-36.576-81.504-81.504v-434.656c0-44.928 36.576-81.504 81.504-81.504h349.344c44.928 0 81.504 36.576 81.504 81.504v434.656c0 44.928-36.576 81.504-81.504 81.504zM725.184 229.664c0-21.216-17.28-38.496-38.496-38.496h-349.344c-21.216 0-38.496 17.28-38.496 38.496v434.656c0 21.216 17.28 38.496 38.496 38.496h349.344c21.216 0 38.496-17.28 38.496-38.496v-434.656zM152.512 639.84h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-37.76 0-68.48-31.936-68.48-71.2v-327.264c0-39.264 30.72-71.2 68.48-71.2h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-14.048 0-25.472 12.64-25.472 28.192v327.232c0 15.552 11.424 28.224 25.472 28.224zM871.488 682.848h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c14.048 0 25.472-12.64 25.472-28.224v-327.264c0-15.552-11.424-28.192-25.472-28.192h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c37.76 0 68.48 31.936 68.48 71.2v327.232c0 39.264-30.72 71.2-68.48 71.2zM383.936 339.2h256c11.872 0 21.504-9.632 21.504-21.504v-38.656c0-11.872-9.632-21.504-21.504-21.504h-256c-11.872 0-21.504 9.632-21.504 21.504v38.656c0 11.872 9.632 21.504 21.504 21.504zM389.632 470.464c3.872-12.736 21.984-18.4 29.248-28.768 7.52-10.752 6.72-29.632 16.96-37.344 8.16-6.144 21.056-3.712 32.16-4.512l11.040-0.192c11.040-5.344 20.864-18.944 33.024-19.168 11.808-0.224 22.176 13.152 33.888 18.080l14.944-0.256c10.24-0.16 21.056-1.856 28.32 3.2 10.752 7.52 10.56 26.496 18.272 36.736 7.808 10.336 26.048 15.424 30.304 27.648 0.8 2.304 1.024 4.736 0.896 7.2 0.608 10.656-7.040 23.008-7.616 34.016 0.608 11.072 9.536 23.68 8.896 35.104 0.128 2.304-0.064 4.576-0.736 6.784-3.872 12.736-21.984 18.4-29.248 28.768-7.52 10.752-6.72 29.632-16.96 37.344-8.16 6.144-21.056 3.712-32.16 4.512l-11.040 0.192c-11.040 5.344-20.864 18.944-33.024 19.168-11.808 0.224-22.176-13.152-33.888-18.080l-14.944 0.256c-10.208 0.16-21.056 1.856-28.32-3.2-10.752-7.52-10.56-26.496-18.272-36.736-7.808-10.336-26.048-15.424-30.304-27.648-0.8-2.304-1.024-4.736-0.896-7.2-0.608-10.656 7.040-23.008 7.616-34.016-0.608-11.072-9.536-23.68-8.896-35.104-0.128-2.304 0.064-4.576 0.736-6.784z" /> +<glyph unicode="" glyph-name="client-grid" d="M836 832h-350.496c-33.12 0-60-26.848-60-60v-242.656c0-33.152 26.88-60 60-60h350.496c33.152 0 60 26.848 60 60v242.656c0 33.152-26.848 60-60 60zM852.992 529.344c0-9.376-7.616-16.992-16.992-16.992h-350.496c-9.376 0-16.992 7.616-16.992 16.992v242.656c0 9.376 7.648 16.992 16.992 16.992h350.496c9.376 0 16.992-7.616 16.992-16.992v-242.656zM188 469.344h134.848c33.152 0 60 26.848 60 60v242.656c0 33.152-26.848 60-60 60h-134.848c-33.152 0-60-26.848-60-60v-242.656c0-33.152 26.848-60 60-60zM192.16 698.080c4.672 6.176 16.032 5.696 22.528 10.24 6.272 4.352 9.664 15.296 17.344 17.632 1.184 0.352 2.368 0.448 3.584 0.448 6.912 0.288 14.56-5.12 21.216-5.376 6.56 0.128 13.92 4.672 20.352 4.608 1.504 0.096 2.944-0.064 4.32-0.544 7.392-2.56 10.432-13.568 16.672-18.272 6.176-4.672 17.632-4.544 22.176-11.008 4.384-6.272 0.384-16.928 2.752-24.608s11.616-14.304 11.456-21.952c-0.128-7.904-9.696-14.208-12.256-21.504-2.56-7.392 1.056-18.208-3.648-24.48-4.672-6.176-16.064-5.696-22.528-10.208-6.24-4.384-9.664-15.296-17.344-17.632-1.184-0.352-2.368-0.48-3.616-0.448-6.912-0.288-14.528 5.152-21.216 5.408-6.56-0.16-13.92-4.672-20.352-4.608-1.472-0.064-2.944 0.064-4.32 0.576-7.392 2.56-10.432 13.568-16.672 18.272-6.176 4.672-17.632 4.544-22.144 11.008-4.352 6.24-0.416 16.896-2.752 24.608s-11.584 14.304-11.424 21.952c0.128 7.904 9.696 14.208 12.224 21.504 2.56 7.392-1.024 18.24 3.648 24.48zM836 426.656h-138.656c-33.152 0-60-26.848-60-60v-242.656c0-33.152 26.848-60 60-60h138.656c33.152 0 60 26.848 60 60v242.656c0 33.152-26.848 60-60 60zM829.92 197.92c-4.672-6.176-16.064-5.696-22.528-10.24-6.24-4.352-9.664-15.296-17.344-17.632-1.184-0.352-2.368-0.448-3.616-0.448-6.912-0.288-14.528 5.12-21.216 5.376-6.56-0.128-13.92-4.672-20.352-4.608-1.472-0.096-2.944 0.064-4.32 0.544-7.392 2.56-10.432 13.568-16.672 18.272-6.176 4.672-17.632 4.544-22.144 11.008-4.352 6.272-0.384 16.928-2.752 24.608s-11.584 14.336-11.456 21.952c0.16 7.904 9.728 14.208 12.256 21.504 2.56 7.392-1.024 18.208 3.648 24.448 4.672 6.176 16.032 5.728 22.528 10.24 6.272 4.352 9.664 15.296 17.344 17.632 1.184 0.352 2.368 0.48 3.616 0.448 6.912 0.32 14.56-5.12 21.216-5.376 6.56 0.16 13.92 4.672 20.352 4.608 1.504 0.096 2.944-0.064 4.32-0.544 7.392-2.56 10.432-13.568 16.672-18.272 6.176-4.672 17.632-4.544 22.144-11.008 4.384-6.24 0.384-16.896 2.752-24.608s11.616-14.336 11.456-21.952c-0.128-7.904-9.728-14.208-12.256-21.504-2.56-7.392 1.056-18.24-3.648-24.48zM534.688 426.656h-346.688c-33.152 0-60-26.848-60-60v-242.656c0-33.152 26.848-60 60-60h346.688c33.12 0 60 26.848 60 60v242.656c0 33.152-26.88 60-60 60zM551.68 124c0-9.376-7.648-16.992-16.992-16.992h-259.712l-103.968 110.72v148.96c0 9.376 7.648 16.992 16.992 16.992h346.688c9.376 0 16.992-7.616 16.992-16.992v-242.656zM431.616 285.888c-4.544 6.464-15.968 6.368-22.144 11.008-6.24 4.704-9.312 15.712-16.672 18.272-1.376 0.48-2.816 0.64-4.32 0.544-6.432 0.064-13.792-4.448-20.352-4.608-6.688 0.256-14.304 5.696-21.216 5.376-1.216 0.032-2.432-0.096-3.584-0.448-7.68-2.336-11.104-13.28-17.344-17.632-6.464-4.544-17.856-4.064-22.528-10.24-4.704-6.24-1.088-17.088-3.648-24.48-2.528-7.328-12.096-13.6-12.224-21.504-0.128-7.616 9.12-14.24 11.456-21.952s-1.632-18.336 2.752-24.608c4.544-6.464 15.968-6.368 22.144-11.008 6.24-4.704 9.312-15.712 16.672-18.272 1.376-0.48 2.816-0.64 4.32-0.544 6.432-0.064 13.792 4.448 20.352 4.608 6.688-0.256 14.304-5.696 21.216-5.376 1.216-0.032 2.432 0.096 3.584 0.448 7.68 2.336 11.104 13.28 17.344 17.632 6.464 4.544 17.856 4.064 22.528 10.24 4.704 6.24 1.088 17.088 3.648 24.48 2.528 7.328 12.096 13.6 12.224 21.504 0.128 7.616-9.12 14.24-11.456 21.952s1.632 18.336-2.752 24.608zM725.696 695.776c-4.544 6.464-15.968 6.368-22.144 11.008-6.24 4.704-9.312 15.712-16.672 18.272-1.376 0.48-2.816 0.608-4.32 0.544-6.432 0.064-13.792-4.448-20.352-4.608-6.688 0.256-14.304 5.696-21.216 5.376-1.216 0.032-2.432-0.096-3.584-0.448-7.68-2.336-11.104-13.28-17.344-17.632-6.464-4.544-17.856-4.064-22.528-10.24-4.704-6.24-1.088-17.088-3.648-24.48-2.528-7.328-12.096-13.6-12.224-21.504-0.128-7.616 9.12-14.24 11.456-21.952s-1.632-18.336 2.752-24.608c4.544-6.464 15.968-6.368 22.144-11.008 6.24-4.704 9.312-15.712 16.672-18.272 1.376-0.48 2.816-0.64 4.32-0.544 6.432-0.064 13.792 4.448 20.352 4.608 6.688-0.256 14.304-5.696 21.216-5.376 1.216-0.032 2.432 0.096 3.584 0.448 7.68 2.336 11.104 13.28 17.344 17.632 6.496 4.544 17.856 4.064 22.528 10.24 4.704 6.24 1.088 17.088 3.648 24.48 2.528 7.328 12.096 13.6 12.224 21.504 0.128 7.616-9.12 14.24-11.456 21.952s1.632 18.336-2.752 24.608z" /> +<glyph unicode="" glyph-name="client-list" d="M240 480c82.176 0 146.272 27.488 175.84 75.392 18.72 30.304 21.152 65.792 6.624 94.816-2.656 5.344-5.12 10.528-7.52 15.552-19.84 41.6-38.336 72.416-81.568 88.832 11.616 17.664 18.432 38.752 18.432 61.44 0 61.728-50.176 112-111.84 112s-112-50.272-112-112c0-22.688 6.816-43.776 18.464-61.44-43.232-16.416-61.792-47.232-81.6-88.8-2.368-4.992-4.832-10.176-7.488-15.52-14.528-29.12-12.064-64.576 6.624-94.816 29.6-47.936 93.76-75.424 176-75.424zM192 816c0 26.464 21.536 48 48 48s47.808-21.536 47.808-48-21.472-48-47.84-48-48 21.536-48 48zM114.656 621.664s0 0.064 0.032 0.064c2.816 5.664 5.44 11.136 7.968 16.448 17.44 36.576 26.976 56.256 72.032 63.008l-17.024-51.104c-3.84-11.52-0.864-24.192 7.744-32.768l32-32c6.272-6.272 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376l32 32c8.576 8.576 11.552 21.248 7.744 32.768l-17.024 51.104c44.864-6.752 54.432-26.432 71.84-63.008 2.528-5.312 5.152-10.816 8.032-16.576 4.576-9.152 3.136-21.376-3.776-32.64-17.408-28.224-62.816-45.024-121.408-45.024s-104.128 16.864-121.568 45.056c-6.976 11.264-8.384 23.456-3.808 32.64zM432.032 832h447.84c17.664 0 32-14.368 32-32.032l0.192-191.968c0-17.664-14.336-32-32-32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c52.928 0 96 43.040 96 96.032l-0.192 191.968c0 52.96-43.072 96-96 96h-447.84c-17.664 0-32-14.336-32-32s14.336-32 32-32zM496.032 736h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM847.84 608c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128zM751.84 736h64v-64h-64v64zM496.032 608h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM415.008 153.76c-19.84 41.568-38.336 72.384-81.568 88.832 11.616 17.664 18.432 38.752 18.432 61.408 0 61.76-50.176 112-111.84 112s-112-50.24-112-112c0-22.688 6.816-43.776 18.464-61.44-43.232-16.416-61.792-47.232-81.6-88.832-2.368-4.992-4.832-10.176-7.488-15.52-14.528-29.12-12.064-64.576 6.624-94.816 29.6-47.904 93.76-75.424 176-75.424s146.272 27.488 175.84 75.392c18.72 30.304 21.152 65.76 6.624 94.816-2.656 5.344-5.12 10.528-7.52 15.52zM192 304c0 26.464 21.536 48 48 48s47.808-21.536 47.808-48-21.472-48-47.84-48-48 21.536-48 48zM361.408 77.024c-17.408-28.192-62.816-45.024-121.408-45.024s-104.128 16.832-121.568 45.024c-6.976 11.264-8.384 23.456-3.808 32.64 0 0.032 0 0.064 0.032 0.096 2.816 5.664 5.44 11.168 7.968 16.48 17.44 36.576 26.976 56.256 72.032 63.008l-17.024-51.104c-3.84-11.52-0.864-24.192 7.744-32.736l32-32c6.272-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376l32 32c8.576 8.544 11.552 21.248 7.744 32.736l-17.024 51.072c44.864-6.784 54.432-26.432 71.84-62.976 2.528-5.312 5.152-10.784 8.032-16.544 4.576-9.152 3.136-21.376-3.776-32.64zM879.84 384h-447.84c-17.664 0-32-14.336-32-32s14.336-32 32-32h447.84c17.664 0 32-14.336 32-32.032l0.192-191.968c0-17.664-14.336-32-32-32h-384c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c52.928 0 96 43.072 96 96.032l-0.192 191.968c0 52.928-43.072 96-96 96zM496.032 224h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM847.84 96c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128zM751.84 224h64v-64h-64v64zM496.032 96h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="clipboard" d="M765.696 767.328h-61.344v63.648c0 23.776-19.232 43.008-43.008 43.008h-298.656c-23.776 0-43.008-19.232-43.008-43.008v-63.648h-63.328c-47.392 0-86.016-38.56-86.016-86.016v-575.328c0-47.392 38.56-86.016 86.016-86.016h509.344c47.392 0 86.016 38.56 86.016 86.016v575.36c0 47.392-38.56 86.016-86.016 86.016zM405.664 788h212.64v-20.64h-212.64v20.64zM765.696 105.984h-509.344v575.36h69.216c2.336-4.064 5.376-7.712 8.96-10.848 9.44-8.16 21.92-11.872 34.272-10.080l142.24 20.48 144.256-20.48c2.016-0.288 4.064-0.416 6.048-0.416 10.272 0 20.32 3.712 28.192 10.528 3.584 3.104 6.624 6.784 8.96 10.784h67.232v-575.328s0 0 0 0z" /> +<glyph unicode="" glyph-name="clipboard-check" d="M765.696 767.328h-61.344v63.648c0 23.776-19.232 43.008-43.008 43.008h-298.656c-23.776 0-43.008-19.232-43.008-43.008v-63.648h-63.328c-47.392 0-86.016-38.56-86.016-86.016v-575.328c0-47.392 38.56-86.016 86.016-86.016h509.344c47.392 0 86.016 38.56 86.016 86.016v575.36c0 47.392-38.56 86.016-86.016 86.016zM405.664 788h212.64v-20.64h-212.64v20.64zM765.696 105.984h-509.344v575.36h69.216c2.336-4.064 5.376-7.712 8.96-10.848 9.44-8.16 21.92-11.872 34.272-10.080l142.24 20.48 144.256-20.48c2.016-0.288 4.064-0.416 6.048-0.416 10.272 0 20.32 3.712 28.192 10.528 3.584 3.104 6.624 6.784 8.96 10.784h67.232v-575.328s0 0 0 0zM610.208 542.048l-147.36-141.472-55.552 55.552c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l85.344-85.344c8.416-8.416 19.424-12.576 30.432-12.576 10.72 0 21.472 3.968 29.792 12l177.792 170.656c17.152 16.416 17.696 43.648 1.248 60.8-16.416 17.152-43.648 17.696-60.8 1.248z" /> +<glyph unicode="" glyph-name="clipboard-list" d="M765.696 767.328h-61.344v63.648c0 23.776-19.232 43.008-43.008 43.008h-298.656c-23.776 0-43.008-19.232-43.008-43.008v-63.648h-63.328c-47.392 0-86.016-38.56-86.016-86.016v-575.328c0-47.392 38.56-86.016 86.016-86.016h509.344c47.392 0 86.016 38.56 86.016 86.016v575.36c0 47.392-38.56 86.016-86.016 86.016zM405.664 788h212.64v-20.64h-212.64v20.64zM765.696 105.984h-509.344v575.36h69.216c2.336-4.064 5.376-7.712 8.96-10.848 9.44-8.16 21.92-11.872 34.272-10.080l142.24 20.48 144.256-20.48c2.016-0.288 4.064-0.416 6.048-0.416 10.272 0 20.32 3.712 28.192 10.528 3.584 3.104 6.624 6.784 8.96 10.784h67.232v-575.328s0 0 0 0zM682.656 596.64h-213.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h213.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM341.344 596.352c-23.552 0-42.656-19.104-42.656-42.656s19.104-42.656 42.656-42.656 42.656 19.104 42.656 42.656-19.104 42.656-42.656 42.656zM682.656 425.984h-213.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h213.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM341.344 425.696c-23.552 0-42.656-19.104-42.656-42.656s19.104-42.656 42.656-42.656 42.656 19.104 42.656 42.656-19.104 42.656-42.656 42.656zM682.656 255.328h-213.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h213.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM341.344 255.008c-23.552 0-42.656-19.104-42.656-42.656s19.104-42.656 42.656-42.656 42.656 19.104 42.656 42.656-19.104 42.656-42.656 42.656z" /> +<glyph unicode="" glyph-name="clipping-mask" d="M604.704 831.168c-69.696 0-137.12-24.992-189.888-70.304-47.392-40.704-80.384-95.456-94.208-155.744h-65.6c-8.896 25.536-33.216 43.904-61.76 43.904-36.064 0-65.408-29.344-65.408-65.408 0-28.512 18.368-52.832 43.904-61.76v-331.84c-25.536-8.928-43.904-33.248-43.904-61.76 0-36.064 29.344-65.408 65.408-65.408 28.544 0 52.864 18.368 61.76 43.904h331.84c8.896-25.536 33.216-43.904 61.76-43.904 36.064 0 65.376 29.344 65.376 65.408 0 28.512-18.368 52.832-43.872 61.76v65.568c60.384 13.888 115.232 46.976 155.936 94.464 45.216 52.736 70.144 120.096 70.144 189.664 0 160.736-130.752 291.488-291.488 291.488zM377.76 438.56l122.976 122.976h34.688l-145.952-145.952c-4.288 7.424-8.224 15.072-11.712 22.976zM626.208 583.552v0.032c0 3.808 0.96 7.392 2.624 10.528v0.032c2.112 3.872 5.312 7.104 9.184 9.184h0.032c0.832 0.448 1.696 0.864 2.592 1.184 0.544 0.192 1.088 0.384 1.664 0.544l6.272 0.032h-6.208c1.984 0.576 4.096 0.896 6.272 0.896s4.288-0.32 6.272-0.896c7.328-2.144 13.152-7.968 15.232-15.328 0.576-1.952 0.864-4.032 0.864-6.176s-0.288-4.224-0.864-6.208c-2.688-9.344-11.296-16.192-21.504-16.192-12.352 0-22.368 10.016-22.4 22.368zM362.496 484.096c-1.824 7.872-3.232 15.872-4.288 24.032 0 0 0 0 0 0l53.376 53.376h28.32l-77.44-77.44s0 0 0 0zM431.264 361.888c-5.856 5.728-11.424 11.712-16.704 17.984l175.2 175.168c3.648-7.52 8.736-14.24 14.848-19.808 0 0 0 0 0 0l-173.344-173.344s0 0 0 0zM627.104 496.896v-34.688l-140.864-140.864c-7.392 4.032-14.592 8.416-21.504 13.152 0 0 0 0 0 0l162.4 162.4zM627.104 401.408v-34.688l-70.752-70.752c-9.408 1.856-18.592 4.224-27.552 7.136 0 0 0 0 0 0l98.336 98.336zM627.104 305.888v-13.696c-4.832-0.416-9.664-0.736-14.528-0.864v0l14.56 14.56zM414.016 319.36c0.032-0.032 0.064-0.032 0.064-0.064 0.672-0.96 1.408-1.856 2.272-2.72 1.792-1.792 3.872-3.2 6.048-4.224 0.032 0 0.032-0.032 0.064-0.064s0.032-0.032 0.032-0.032c49.952-40.096 113.312-64.096 182.176-64.096 7.488 0 14.976 0.288 22.4 0.864v-59.072c-18.784-6.56-33.728-21.472-40.256-40.256h-331.84c-6.528 18.784-21.472 33.696-40.256 40.256v331.84c18.816 6.56 33.728 21.472 40.256 40.256h59.072c-0.576-7.424-0.832-14.912-0.832-22.4 0-87.904 39.104-166.816 100.832-220.32zM670.080 122.048c-2.112-7.36-7.904-13.184-15.232-15.328h-12.512c-9.312 2.688-16.128 11.328-16.128 21.504 0 12.352 10.048 22.4 22.4 22.4 10.208 0 18.816-6.848 21.504-16.192v-12.384zM199.488 106.72h-12.512c-7.328 2.112-13.088 7.904-15.232 15.232v12.576c2.72 9.312 11.328 16.096 21.504 16.096 12.352 0 22.4-10.048 22.4-22.4 0-10.176-6.816-18.784-16.128-21.504zM171.744 589.856c2.144 7.328 7.904 13.088 15.232 15.232h12.512c9.312-2.688 16.128-11.328 16.128-21.504 0-12.352-10.048-22.4-22.4-22.4-10.176 0-18.784 6.816-21.504 16.096v12.576zM670.080 583.584c0 0.192 0 0.352-0.032 0.544 0.032-0.352 0.032-0.736 0.032-1.088v0.576z" /> +<glyph unicode="" glyph-name="clock" d="M736.736 325.76l-190.4 141.664-2.336 284.16c-0.16 17.6-14.432 31.744-32 31.744h-0.256c-17.664-0.16-31.872-14.592-31.744-32.256l2.464-300.064c0-0.704 0.16-1.376 0.224-2.080 0.064-1.12 0.16-2.208 0.352-3.296 0.192-1.024 0.448-2.048 0.768-3.040s0.544-1.952 0.896-2.88c0.384-0.992 0.864-1.92 1.312-2.88 0.448-0.928 0.896-1.792 1.472-2.688s1.184-1.696 1.856-2.528c0.64-0.8 1.248-1.568 1.92-2.336 0.768-0.832 1.664-1.568 2.528-2.336 0.544-0.448 0.96-0.96 1.504-1.408l203.168-151.168c5.76-4.288 12.448-6.336 19.072-6.336 9.76 0 19.424 4.48 25.696 12.896 10.528 14.176 7.616 34.24-6.592 44.768zM512 925.6c-265.088 0-480-214.88-480-480s214.88-480 480-480 480 214.88 480 480-214.88 480-480 480zM512 29.6c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416z" /> +<glyph unicode="" glyph-name="clock-desk" d="M882.336 160h-99.712c81.216 73.76 132.256 180.16 132.256 298.208 0 101.056-37.472 193.44-99.168 264.256l34.784 34.784c2.336-2.72 4.8-5.408 7.072-8.16 6.336-7.744 15.52-11.744 24.8-11.744 7.136 0 14.304 2.368 20.256 7.232 13.664 11.168 15.712 31.328 4.544 45.024-10.336 12.64-21.568 24.928-32.992 36.192-0.064 0.064-0.096 0.096-0.16 0.16 0 0 0 0-0.032 0.032 0 0-0.032 0-0.064 0.032-11.552 11.712-23.744 22.88-36.352 33.12-13.696 11.168-33.824 9.12-45.024-4.544s-9.152-33.856 4.544-45.024c2.752-2.272 5.472-4.704 8.192-7.072l-35.168-35.168c-62.272 52.064-140.448 85.632-226.048 92.416v36.256c0 17.664-14.336 32-32 32s-32-14.336-32-32v-36.256c-85.6-6.784-163.808-40.32-226.048-92.416l-35.168 35.168c2.72 2.368 5.408 4.8 8.16 7.072 13.696 11.168 15.712 31.328 4.512 45.024s-31.328 15.712-45.024 4.544c-12.64-10.336-24.928-21.568-36.192-32.992-0.064-0.064-0.096-0.096-0.16-0.16 0 0 0 0-0.032-0.032 0 0 0-0.032-0.032-0.064-11.712-11.552-22.88-23.744-33.12-36.32-11.168-13.696-9.152-33.856 4.544-45.024 5.952-4.864 13.088-7.232 20.224-7.232 9.28 0 18.464 4 24.8 11.744 2.272 2.752 4.704 5.44 7.072 8.16l34.784-34.784c-61.696-70.816-99.168-163.2-99.168-264.256 0-118.080 51.040-224.448 132.256-298.208h-99.712c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h740.704c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM173.12 458.208c0 186.848 152.032 338.912 338.88 338.912s338.88-152.032 338.88-338.912-152.032-338.912-338.912-338.912-338.912 152.032-338.912 338.912zM850.336 32h-676.672v64h162.080c53.28-26.048 113.088-40.672 176.256-40.672s122.976 14.656 176.256 40.672h162.080v-64zM326.208 308.832c-11.936-13.024-11.072-33.28 1.92-45.216 17.856-16.384 37.792-30.336 59.232-41.408 4.704-2.432 9.696-3.552 14.656-3.552 11.616 0 22.784 6.336 28.448 17.312 8.128 15.712 1.952 35.008-13.76 43.136-16.384 8.48-31.648 19.136-45.312 31.68-12.992 11.936-33.248 11.072-45.216-1.952zM448.768 663.552c2.784 0 5.6 0.352 8.416 1.152 7.488 2.048 15.136 3.552 22.816 4.768v-221.472c0-8.48 3.36-16.64 9.376-22.624l64-64c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-54.624 54.624v208.032c99.52-15.456 176-101.504 176-205.28 0-114.688-93.312-208-208-208-17.664 0-32-14.336-32-32s14.336-32 32-32c149.984 0 272 122.016 272 272s-122.016 272-272 272c-24.256 0-48.352-3.232-71.648-9.536-17.056-4.64-27.104-22.24-22.464-39.296 3.872-14.24 16.768-23.616 30.848-23.616zM291.648 363.552c16.896 5.152 26.432 23.040 21.28 39.936-5.376 17.6-8.352 35.904-8.864 54.528-0.48 17.664-14.848 31.616-32.864 31.104-17.664-0.48-31.584-15.2-31.072-32.864 0.672-24.32 4.576-48.352 11.616-71.392 4.192-13.792 16.896-22.688 30.592-22.688 3.104 0 6.24 0.448 9.344 1.408zM286.368 552c4.896-2.72 10.24-4 15.456-4 11.264 0 22.208 5.952 28.032 16.48 8.96 16.192 20.064 31.136 32.96 44.416 12.352 12.672 12.064 32.96-0.64 45.248s-32.96 12.064-45.248-0.64c-16.864-17.376-31.36-36.864-43.104-58.048-8.576-15.456-2.976-34.944 12.48-43.52z" /> +<glyph unicode="" glyph-name="close" d="M813.696 748.96c-83.328 83.328-192.512 124.96-301.696 124.96s-218.368-41.632-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.368 41.632 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 206.368c-64.352-64.352-149.888-99.808-240.896-99.808s-176.544 35.456-240.896 99.808c-64.352 64.352-99.808 149.888-99.808 240.896s35.456 176.544 99.808 240.896c64.352 64.352 149.888 99.808 240.896 99.808s176.544-35.456 240.896-99.808c64.352-64.352 99.808-149.888 99.808-240.896s-35.456-176.544-99.808-240.896zM663.072 598.112c-16.8 16.8-44.032 16.8-60.8 0l-90.272-90.272-90.272 90.272c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l90.272-90.272-90.272-90.272c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l90.272 90.272 90.272-90.272c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-90.272 90.272 90.272 90.272c16.8 16.8 16.8 44.032 0 60.8z" /> +<glyph unicode="" glyph-name="close-small" d="M835.104 236.64c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM835.104 108.64c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992zM878.112 343.008c0 23.776-19.232 43.008-43.008 43.008-141.344 0-256.352-114.976-256.352-256.352 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 93.92 76.416 170.336 170.336 170.336 23.776 0 43.008 19.232 43.008 43.008zM824.96 438.144c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008c-211.936 0-384.352-172.416-384.352-384.352 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 164.48 133.856 298.336 298.336 298.336zM299.008 767.008c0 59.008-48 107.008-107.008 107.008s-107.008-48-107.008-107.008 48-107.008 107.008-107.008 107.008 48 107.008 107.008zM171.008 767.008c0 11.552 9.44 20.992 20.992 20.992s20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992-20.992 9.44-20.992 20.992zM148.992 553.632c0-23.776 19.232-43.008 43.008-43.008 141.344 0 256.352 114.976 256.352 256.352 0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008c0-93.92-76.416-170.336-170.336-170.336-23.776 0-43.008-19.232-43.008-43.008zM202.144 458.496c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008c211.936 0 384.352 172.416 384.352 384.352 0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008c0-164.48-133.856-298.336-298.336-298.336zM661.344 702.688h148.992v-84.992c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v128c0 23.776-19.232 43.008-43.008 43.008h-192c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM341.024 191.328h-127.648v84.992c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-128c0-23.776 19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="cloud-check" d="M834.848 515.872c22.56 53.664 13.12 118.208-28.8 160.16-27.104 27.136-63.328 41.888-102.176 41.088-26.592-0.416-52.128-7.936-74.336-21.6-50.336 51.648-118.816 80.704-192.096 80.704-119.648 0-228.16-85.76-260.16-202.464-86.496-30.336-145.344-112.16-145.344-205.408 0-120.064 97.696-217.76 217.728-217.76h558.688c101.216 0 183.584 82.336 183.584 183.584 0 92.256-68.384 168.832-157.12 181.664zM808.384 214.624h-558.688c-84.768 0-153.728 68.96-153.728 153.76 0 70.592 47.712 131.904 116.064 149.088 12 3.040 21.184 12.704 23.584 24.864 19.008 96.864 105.792 169.92 201.824 169.92 64.128 0 123.36-29.216 162.496-80.128 5.632-7.328 14.112-11.84 23.296-12.448s18.208 2.816 24.704 9.312c15.232 15.232 35.456 23.808 56.928 24.16 21.024 0.64 41.152-7.616 55.904-22.368 29.952-29.984 29.024-83.584-1.696-115.648-9.568-8.256-13.92-21.184-10.72-33.6 7.168-27.744 37.696-27.744 60.064-27.744 65.952 0 119.584-53.664 119.584-119.552s-53.664-119.584-119.584-119.584zM648.096 570.112l-186.176-178.368-86.56 79.264c-13.056 11.936-33.28 11.040-45.184-2.016s-11.040-33.28 1.984-45.216l108.672-99.52c6.112-5.6 13.856-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l207.808 199.104c12.768 12.224 13.184 32.48 0.96 45.248s-32.48 13.184-45.248 0.96z" /> +<glyph unicode="" glyph-name="cloud-download" d="M834.656 500.48c7.328 17.44 11.456 36.352 11.936 55.616 0.992 40.256-13.408 77.376-40.544 104.512-47.424 47.424-120.832 53.792-176.48 19.52-50.336 51.648-118.784 80.736-192.096 80.736-119.616 0-228.16-85.792-260.16-202.464-86.496-30.336-145.344-112.192-145.344-205.408 0-120.064 97.696-217.76 217.728-217.76h558.688c101.216 0 183.584 82.336 183.584 183.584 0 92.32-68.48 168.928-157.344 181.696zM808.416 199.168h-558.688c-84.768 0-153.728 68.96-153.728 153.76 0 70.592 47.712 131.904 116.032 149.088 12 3.040 21.184 12.704 23.584 24.864 19.040 96.864 105.792 169.92 201.856 169.92 64.128 0 123.328-29.184 162.464-80.128 5.6-7.328 14.112-11.84 23.296-12.448 9.28-0.704 18.208 2.784 24.704 9.28 31.616 31.616 82.208 32.384 112.832 1.792 14.592-14.624 22.336-35.104 21.792-57.664-0.544-21.888-9.088-42.912-23.52-58.016-9.568-8.256-13.888-21.184-10.72-33.568 7.136-27.744 37.696-27.744 60.064-27.744 65.952 0 119.584-53.664 119.584-119.584s-53.664-119.584-119.584-119.584zM577.856 424.544l-33.856-33.856v158.72c0 17.664-14.336 32-32 32s-32-14.336-32-32v-158.72l-33.888 33.856c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l88.48-88.448c1.472-1.504 3.136-2.816 4.896-4 0.768-0.544 1.664-0.896 2.496-1.344 0.992-0.544 1.984-1.152 3.040-1.6s2.176-0.672 3.232-1.024c0.896-0.288 1.792-0.64 2.72-0.832 2.080-0.416 4.16-0.64 6.272-0.64s4.192 0.224 6.272 0.64c0.928 0.192 1.824 0.544 2.72 0.832 1.088 0.32 2.208 0.576 3.264 1.024s2.048 1.024 3.040 1.6c0.832 0.448 1.664 0.832 2.496 1.344 1.76 1.184 3.424 2.496 4.896 4l88.48 88.448c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0z" /> +<glyph unicode="" glyph-name="cloud-upload" d="M834.656 500.48c7.328 17.44 11.456 36.352 11.936 55.616 0.992 40.256-13.408 77.376-40.544 104.512-47.424 47.424-120.832 53.792-176.48 19.52-50.336 51.648-118.784 80.736-192.096 80.736-119.616 0-228.16-85.792-260.16-202.464-86.496-30.336-145.344-112.192-145.344-205.408 0-120.064 97.696-217.76 217.728-217.76h558.688c101.216 0 183.584 82.336 183.584 183.584 0 92.32-68.48 168.928-157.344 181.696zM808.416 199.168h-558.688c-84.768 0-153.728 68.96-153.728 153.76 0 70.592 47.712 131.904 116.032 149.088 12 3.040 21.184 12.704 23.584 24.864 19.040 96.864 105.792 169.92 201.856 169.92 64.128 0 123.328-29.184 162.464-80.128 5.6-7.328 14.112-11.84 23.296-12.448 9.312-0.704 18.208 2.784 24.704 9.28 31.616 31.616 82.208 32.384 112.832 1.792 14.592-14.624 22.336-35.104 21.792-57.664-0.544-21.888-9.088-42.912-23.52-58.016-9.568-8.256-13.888-21.184-10.72-33.568 7.136-27.744 37.696-27.744 60.064-27.744 65.952 0 119.584-53.664 119.584-119.584s-53.664-119.584-119.584-119.584zM534.624 572c-1.504 1.472-3.136 2.816-4.896 4-0.8 0.544-1.664 0.896-2.528 1.376-0.992 0.544-1.952 1.152-2.976 1.568-1.088 0.448-2.208 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.16 0.8-8.384 0.8-12.544 0-0.928-0.192-1.792-0.544-2.688-0.8-1.088-0.32-2.208-0.576-3.264-1.024s-2.016-1.056-3.008-1.6c-0.832-0.448-1.696-0.832-2.528-1.376-1.76-1.184-3.424-2.528-4.896-4l-88.48-88.448c-12.48-12.48-12.48-32.768 0-45.248s32.768-12.48 45.248 0l33.888 33.856v-158.72c0-17.664 14.336-32 32-32s32 14.336 32 32v158.72l33.856-33.856c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-88.48 88.448z" /> +<glyph unicode="" glyph-name="code" d="M896 656h-192v64c0 52.96-43.072 96-96 96h-480c-52.96 0-96-43.040-96-96v-384c0-52.928 43.040-96 96-96h192v-64c0-52.928 43.040-96 96-96h480c52.928 0 96 43.072 96 96v384c0 52.96-43.072 96-96 96zM928 560v-32h-544v32c0 17.664 14.336 32 32 32h480c17.664 0 32-14.336 32-32zM96 336v384c0 17.952 14.048 32 32 32h64v-448h-64c-17.952 0-32 14.048-32 32zM256 304v448h352c17.952 0 32-14.048 32-32v-64h-224c-52.96 0-96-43.040-96-96v-256h-64zM896 144h-480c-17.664 0-32 14.336-32 32v288h544v-288c0-17.664-14.336-32-32-32zM566.624 390.624c-12.48 12.48-32.768 12.48-45.248 0l-64-64c-12.48-12.48-12.48-32.736 0-45.248l64-64c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-41.376 41.376 41.376 41.376c12.48 12.48 12.48 32.736 0 45.248zM790.624 390.624c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l41.376-41.376-41.376-41.376c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.736 0 45.248l-64 64zM679.744 399.040c-17.12 4.32-34.496-6.144-38.784-23.264l-32-128c-4.288-17.152 6.144-34.528 23.296-38.816 2.592-0.64 5.216-0.96 7.776-0.96 14.336 0 27.36 9.696 31.040 24.256l32 128c4.288 17.152-6.144 34.528-23.296 38.816z" /> +<glyph unicode="" glyph-name="code-2" d="M0 960v-1024.992h1024.992v1024.992h-1024.992zM1023.008-63.008h-1021.024v1021.024h1021.024v-1021.024zM332.256 224.608c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-161.568 161.568 161.568 161.568c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-192-192c-16.8-16.8-16.8-44.032 0-60.8l192-192zM630.912 224.608c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l192 192c16.8 16.8 16.8 44.032 0 60.8l-192 192c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l161.568-161.568-161.568-161.568c-16.8-16.8-16.8-44.032 0-60.8z" /> +<glyph unicode="" glyph-name="coin" d="M991.744 557.024s0 0.064 0 0.064v193.952c0.192 1.344 0.256 2.688 0.256 4.064 0 118.272-313.984 149.536-480 149.536s-477.184-31.040-479.872-148c0-0.416-0.128-0.832-0.128-1.248 0-0.064 0-0.096 0-0.128s0-0.096 0-0.128c0-1.344 0.064-2.688 0.256-4v-193.728s0-0.064 0-0.064c0-0.032 0-0.064 0-0.096v-197.856s0-0.064 0-0.096c0-0.032 0-0.064 0-0.096v-218.336c0-118.208 313.792-149.44 479.744-149.44s479.744 31.232 479.744 149.44v218.080s0 0.064 0 0.096c0 0.032 0 0.064 0 0.096v197.888s0 0.064 0 0.096zM927.744 359.616c-9.376-27.904-163.968-81.952-415.744-81.952s-407.008 54.4-415.744 81.6v119.904c100.576-51.68 296.384-67.424 415.744-67.424s315.168 15.712 415.744 67.328v-119.424zM927.744 557.664c-9.376-27.936-163.968-81.952-415.744-81.952s-406.976 54.4-415.744 81.568v119.776c100.672-51.616 296.416-67.328 415.744-67.328 109.024 0 312.224 19.264 415.744 71.328v-123.392zM512 840.608c262.976 0 408.032-58.080 415.712-84.32-19.616-33.088-210.144-82.624-415.712-82.624-251.232 0-405.696 53.888-415.744 81.248v0.096c0 0.416 0 0.768-0.032 1.184 7.36 26.208 152.448 84.416 415.744 84.416zM512 55.36c-266.912 0-412.384 59.904-415.744 85.44v140.256c100.576-51.68 296.384-67.424 415.744-67.424s315.168 15.712 415.744 67.328v-140.096c-3.328-25.568-148.832-85.472-415.744-85.472z" /> +<glyph unicode="" glyph-name="coin-dollar" d="M137.76 448c0 10.496 0.544 20.864 1.408 31.136-27.168 39.424-43.168 87.136-43.168 138.528 0 135.040 109.856 244.864 244.864 244.864 51.36 0 99.040-15.968 138.432-43.072 10.336 0.864 20.768 1.408 31.328 1.408 23.328 0 46.112-2.272 68.288-6.368-56.64 68.448-142.24 112.064-238.016 112.064-170.624 0-308.896-138.304-308.896-308.864 0-95.84 43.68-181.472 112.16-238.144-4.16 22.208-6.4 45.088-6.4 68.448zM310.24 278.336c0 9.376 0.448 18.624 1.152 27.84-28.608 40.096-45.632 88.96-45.632 141.856 0 135.040 109.856 244.864 244.864 244.864 51.456 0 99.232-16.064 138.688-43.264 11.136 0.992 22.4 1.6 33.792 1.6 22.176 0 43.904-2.080 65.024-5.792-56.64 68.064-142.016 111.456-237.472 111.456-170.592 0-308.864-138.304-308.864-308.864 0-97.248 45.056-183.904 115.328-240.512-4.448 22.976-6.816 46.624-6.816 70.848zM683.136 523.2c135.040 0 244.864-109.856 244.864-244.896s-109.856-244.864-244.864-244.864-244.864 109.856-244.864 244.864 109.856 244.864 244.864 244.864zM683.136 587.2c-170.592 0-308.864-138.304-308.864-308.896s138.304-308.864 308.864-308.864 308.864 138.304 308.864 308.864-138.304 308.864-308.864 308.864v0zM777.792 214.848c0 57.376-45.888 79.104-76.256 93.504-29.408 13.952-35.744 19.072-35.744 28.992 0 3.328 0 11.040 12.256 16.128 14.112 5.856 32.096 2.72 38.784-3.904 12.48-12.48 32.768-12.48 45.248 0s12.48 32.736 0 45.248c-10.848 10.848-25.312 18.24-41.12 22.24v16.224c0 17.664-14.336 32-32 32s-32-14.336-32-32v-19.552c-1.12-0.416-2.304-0.64-3.36-1.12-32.384-13.408-51.744-41.568-51.744-75.264 0-52.544 43.552-73.184 72.352-86.816 30.72-14.528 39.648-20.992 39.648-35.648 0-8.736-14.816-18.496-24.864-18.496-16.704 0-40.64 11.36-46.016 16-12.48 12.352-32.64 12.288-45.12-0.128-12.512-12.48-12.544-32.736-0.032-45.248 11.36-11.36 34.752-23.456 59.136-29.92v-17.408c0-17.664 14.336-32 32-32s32 14.336 32 32v18.912c30.752 11.904 56.864 39.968 56.864 76.288z" /> +<glyph unicode="" glyph-name="coin-group" d="M992 304c0 52.928-43.072 96-96 96h-101.6c3.552 10.048 5.6 20.768 5.6 32v32c0 11.232-2.048 21.984-5.6 32h5.6c52.928 0 96 43.040 96 96v32c0 52.96-43.072 96-96 96h-5.6c3.552 10.048 5.6 20.768 5.6 32v32c0 52.96-43.072 96-96 96h-288c-52.96 0-96-43.040-96-96v-32c0-52.96 43.040-96 96-96h5.6c-3.552-10.016-5.6-20.768-5.6-32v-32c0-11.232 2.016-21.984 5.6-32h-9.152c-40.416 39.52-95.616 64-156.448 64-123.52 0-224-100.48-224-224 0-76.224 38.336-143.552 96.672-184.064-19.968-17.6-32.672-43.296-32.672-71.936v-32c0-52.928 43.040-96 96-96h288c24.608 0 46.976 9.376 64 24.64 17.024-15.264 39.392-24.64 64-24.64h288c52.928 0 96 43.072 96 96v32c0 24.608-9.376 46.976-24.64 64 15.264 17.024 24.64 39.392 24.64 64v32zM928 304v-32c0-17.664-14.336-32-32-32h-288c-17.664 0-32 14.336-32 32v32c0 17.664 14.336 32 32 32h288c17.664 0 32-14.336 32-32zM470.56 336h47.040c-3.552-10.048-5.6-20.768-5.6-32v-32c0-11.232 2.048-21.952 5.6-32h-105.12c26.816 26.24 47.072 59.136 58.112 96zM736 464v-32c0-17.952-14.048-32-32-32h-224c0 34.4-8.032 66.848-21.92 96h245.92c17.952 0 32-14.080 32-32zM384 752v32c0 17.632 14.336 32 32 32h288c17.664 0 32-14.368 32-32v-32c0-17.632-14.336-32-32-32h-288c-17.664 0-32 14.368-32 32zM480 592v32c0 17.664 14.336 32 32 32h288c17.664 0 32-14.336 32-32v-32c0-17.664-14.336-32-32-32h-288c-17.664 0-32 14.336-32 32zM96 400c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160-160 71.776-160 160zM480 80h-288c-17.632 0-32 14.336-32 32v32c0 17.664 14.368 32 32 32h288c17.664 0 32-14.336 32-32v-32c0-17.664-14.336-32-32-32zM928 112c0-17.664-14.336-32-32-32h-288c-17.664 0-32 14.336-32 32v32c0 17.664 14.336 32 32 32h288c17.664 0 32-14.336 32-32v-32zM256 464c35.296 0 64-28.704 64-64 0-17.664 14.336-32 32-32s32 14.336 32 32c0 70.592-57.408 128-128 128-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="coins" d="M957.632 674.016s0 0.064 0 0.064v135.84c0.096 1.12 0.192 2.272 0.192 3.392 0 111.424-311.584 114.656-347.104 114.656s-344.256-3.232-347.008-113.216c-0.032-0.416-0.128-0.832-0.128-1.28 0-0.032 0-0.064 0-0.096s0-0.064 0-0.096c0-1.152 0.064-2.304 0.192-3.424v-135.648s0-0.064 0-0.064c0-0.032 0-0.064 0-0.064v-54.624c-93.6-12.384-195.872-40.32-197.44-103.392-0.032-0.448-0.128-0.832-0.128-1.28 0-0.032 0-0.064 0-0.064s0-0.064 0-0.096c0-1.152 0.064-2.24 0.192-3.36v-135.712s0-0.064 0-0.096c0-0.032 0-0.064 0-0.096v-139.136s0-0.064 0-0.096c0-0.032 0-0.064 0-0.096v-153.536c0-111.392 311.424-114.592 346.912-114.592s346.944 3.232 346.944 114.592v153.376s0 0.064 0 0.096c0 0.032 0 0.064 0 0.096v40.384c94.304 12.448 197.408 40.64 197.408 104.736v153.376s0 0.064 0 0.064c0 0.032 0 0.064 0 0.064v139.136s0 0.064 0 0.064zM610.688 864c154.368 0 254.912-29.216 279.136-49.024-30.144-21.184-150.368-49.376-279.136-49.376-154.688 0-256.544 29.184-280.064 48.448 22.112 19.84 123.232 49.952 280.064 49.952zM413.312 565.312c154.368 0 254.912-29.184 279.136-49.056-30.144-21.184-150.368-49.376-279.136-49.376-154.656 0-256.544 29.152-280.064 48.48 22.112 19.84 123.232 49.952 280.064 49.952zM696.256 85.024c-14.336-19.616-117.856-53.024-282.912-53.024s-268.64 33.408-282.912 53.024v81.632c97.408-41.664 272.736-42.336 282.912-42.336s185.504 0.672 282.912 42.24v-81.568zM696.256 239.456c-16.352-19.072-120.576-51.104-282.912-51.104s-266.592 32.16-282.912 51.264v66.336c97.408-41.664 272.736-42.336 282.912-42.336s185.504 0.672 282.912 42.24v-66.432zM696.256 378.752c-16.352-19.072-120.576-51.104-282.912-51.104s-266.592 32.16-282.912 51.264v66.24c97.472-41.6 272.736-42.272 282.912-42.272 2.528 0 183.328 2.528 282.912 44.544v-68.704zM893.632 383.68c-9.312-12.736-56.384-31.264-133.376-42.688v34.272s0 0.064 0 0.096c0 0.032 0 0.064 0 0.096v57.76c46.784 6.176 95.84 16.064 133.408 32.064v-81.568zM893.632 538.112c-10.528-12.288-57.76-29.92-133.376-40.96v14.016c0.128 1.152 0.192 2.304 0.192 3.456 0 22.016-12.288 39.744-32.064 54.112 55.36 5.6 118.976 16.032 165.28 35.744v-66.432zM893.632 677.408c-16.352-19.040-120.576-51.136-282.912-51.136s-266.592 32.16-282.912 51.264v66.272c97.472-41.6 272.736-42.272 282.912-42.272 2.496 0 183.328 2.56 282.912 44.544v-68.704z" /> +<glyph unicode="" glyph-name="color-picker" d="M936.352 322.816h-372.16l148.096 148.192 21.312-21.28c10.976-11.104 24.704-16.992 39.808-17.024h0.192c22.24 0 44.96 12.352 71.456 38.816 57.792 57.888 38.688 94.56 22.048 111.456l-13.824 13.792c5.856 1.888 11.616 4.032 17.248 6.848 1.92 0.96 3.712 2.112 5.408 3.456l76.448 60.192c0.992 0.768 1.952 1.632 2.816 2.528 23.712 23.68 36.736 55.2 36.736 88.736s-13.056 65.024-36.736 88.736l-44 43.968c-48.928 48.96-128.544 48.96-177.472 0-0.896-0.896-1.728-1.824-2.496-2.816l-60.192-76.416c-1.312-1.696-2.496-3.488-3.456-5.44-2.816-5.632-5.152-11.392-7.040-17.216l-13.856 13.856c-16.64 16.608-53.248 35.936-111.328-22.080-57.984-58.048-38.688-94.624-22.048-111.296l21.472-21.44-291.648-291.616c-9.728-9.76-16.992-21.376-21.632-33.92h-157.536c-17.664 0-32-14.336-32-32v-290.784c0-17.664 14.336-32 32-32h872.352c17.664 0 32 14.336 32 32v290.784c0 17.664-14.336 32-32 32zM723.552 775.232l56.672 71.968c24.064 22.784 62.176 22.368 85.76-1.184l44-43.968c11.616-11.616 18.016-27.072 18.016-43.488 0-15.84-5.952-30.816-16.832-42.272l-71.968-56.672c-20.416-8.96-44.288-4.576-60.224 11.52l-24.896 24.8-19.552 19.552c-15.616 15.872-19.872 39.488-10.976 59.776zM601.504 757.888s0 0 0 0zM580.672 735.84c12.288 12.256 20.032 17.088 23.904 18.976l84.704-84.64c0.128-0.128 0.224-0.288 0.352-0.416l22.016-21.92 107.168-107.104c-1.856-3.84-6.656-11.648-19.008-24-12.192-12.192-19.936-17.024-23.808-18.912l-172.64 172.512c-0.224 0.224-0.384 0.48-0.576 0.736s-0.48 0.384-0.736 0.608l-40.352 40.32c1.856 3.872 6.688 11.648 18.944 23.872zM667.040 516.256l-48.8-48.832c-0.384-0.064-0.8-0.064-1.216-0.16-53.856-13.472-78.976-6.976-108.032 0.576-16 4.16-33.12 8.48-54.4 9.792l125.504 125.504 86.912-86.848zM381.952 404.992c0.64 0.128 1.28 0.16 1.888 0.288 54.656 14.688 79.936 8.16 109.12 0.544 15.84-4.096 32.96-8.288 54.016-9.76l-81.952-81.984c-0.544-0.48-1.024-0.992-1.504-1.504l-88.032-88.096c-6.112-6.080-14.176-9.088-22.496-8.768l-73.376 73.408c-0.256 8.288 2.752 16.288 8.8 22.368l93.472 93.472zM206.24 185.12l43.424 43.52 42.848-42.848-43.424-43.552c-12-11.936-30.816-11.936-42.784-0.096-12 12.096-12.064 30.976-0.064 42.976zM96 258.816h93.376l-28.416-28.448c-36.64-36.64-36.672-96.416 0.064-133.44 18.4-18.304 42.56-27.424 66.656-27.424s48.288 9.184 66.656 27.52l28.448 28.48v-93.472h-226.816v226.784zM386.784 157.664c12.576 4.64 24.192 11.84 33.984 21.6l79.52 79.552h113.312v-226.784h-226.784v125.6zM904.352 32.032h-226.784v226.784h226.784v-226.784zM552.096 125.504h-31.168c-17.664 0-32-14.336-32-32s14.336-32 32-32h31.168c17.664 0 32 14.336 32 32s-14.336 32-32 32zM811.712 61.504h31.168c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.168c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="comment" d="M852.64 788.352h-681.312c-47.488 0-86.016-38.496-86.016-86.016v-594.944c0-24.864 20.384-41.888 42.016-41.888 8.864 0 17.952 2.848 25.952 9.248l145.376 116.32h553.984c47.488 0 86.016 38.496 86.016 86.016v425.248c0 47.488-38.496 86.016-86.016 86.016zM852.64 702.336v-425.344s-553.984 0-553.984 0c-19.552 0-38.496-6.656-53.728-18.848l-73.632-58.88v503.072s681.344 0 681.344 0v0zM317.312 532.352h48.032c10.304 0 18.656-8.352 18.656-18.656v-48.032c0-10.304-8.352-18.656-18.656-18.656h-48.032c-10.304 0-18.656 8.352-18.656 18.656v48.032c0 10.304 8.352 18.656 18.656 18.656zM487.968 532.352h48.032c10.304 0 18.656-8.352 18.656-18.656v-48.032c0-10.304-8.352-18.656-18.656-18.656h-48.032c-10.304 0-18.656 8.352-18.656 18.656v48.032c0 10.304 8.352 18.656 18.656 18.656zM658.656 532.352h48.032c10.304 0 18.656-8.352 18.656-18.656v-48.032c0-10.304-8.352-18.656-18.656-18.656h-48.032c-10.304 0-18.656 8.352-18.656 18.656v48.032c0 10.304 8.352 18.656 18.656 18.656z" /> +<glyph unicode="" glyph-name="comments" d="M719.168 570.976c0 150.816-154.144 273.568-343.616 273.568s-343.584-122.72-343.584-273.568c0-102.208 70.24-194.88 183.424-242.24 0.832-0.576 2.368-1.888 2.56-3.552 0.608-6.208-6.72-24-37.92-51.52-9.984-8.832-13.472-22.88-8.768-35.328s16.608-20.672 29.952-20.672c80.128 0 167.36 59.808 194.816 80.224 182.080 8.384 323.136 126.72 323.136 273.088zM383.84 361.504c-7.904-0.192-15.104-3.232-20.576-8.16-15.456-12.224-48.224-34.688-84.48-51.232 3.232 10.976 4.064 21.728 2.528 32.352-3.872 27.008-23.008 44.928-39.616 52.672-89.888 37.024-145.696 107.456-145.696 183.84 0 115.552 125.44 209.536 279.616 209.536s279.616-94.016 279.616-209.536c0-112.224-121.696-206.176-271.328-209.44zM992 364.768c0 101.056-75.904 190.080-193.344 226.816-16.832 5.248-34.816-4.128-40.096-20.992s4.128-34.816 20.992-40.096c90.176-28.16 148.448-93.216 148.448-165.696 0-65.216-47.936-125.472-126.496-157.888-14.24-6.688-32.096-23.424-35.712-48.608-1.024-7.168-0.896-14.432 0.384-21.76-28.16 13.696-53.024 30.88-65.44 40.64-5.504 4.96-12.736 8.064-20.736 8.256-76.288 1.664-147.84 30.976-191.52 78.336-11.936 12.992-32.192 13.856-45.184 1.856-12.992-11.968-13.824-32.192-1.856-45.216 53.888-58.528 135.936-94.144 226.464-98.624 25.408-18.752 101.6-70.304 171.904-70.304 13.312 0 25.216 8.256 29.952 20.672s1.216 26.496-8.768 35.328c-30.272 26.688-31.808 40.096-31.2 41.888 100.128 42.208 162.208 124.512 162.208 215.392z" /> +<glyph unicode="" glyph-name="comments-question" d="M896 720h-230.4l1.984 30.016c1.696 25.28-7.232 50.368-24.512 68.896-17.312 18.496-41.728 29.088-67.072 29.088h-448c-52.96 0-96-43.040-96-96v-352c0-52.928 43.040-96 96-96v-96c0-12.928 7.808-24.608 19.744-29.568 3.936-1.664 8.096-2.432 12.256-2.432 8.352 0 16.512 3.264 22.624 9.376l118.624 118.624h75.328l2.688-34.496c3.84-52.416 48.096-93.504 100.736-93.504h242.72l118.624-118.624c6.112-6.144 14.304-9.376 22.624-9.376 4.096 0 8.288 0.8 12.256 2.432 11.968 4.96 19.744 16.64 19.744 29.568v96c52.928 0 96 43.072 96 96v352c0 52.96-43.072 96-96 96zM288 368c-8.48 0-16.64-3.36-22.624-9.376l-73.376-73.376v50.752c0 17.664-14.336 32-32 32h-32c-17.632 0-32 14.336-32 32v352c0 17.632 14.368 32 32 32h448c7.808 0 15.008-3.136 20.288-8.832s7.936-13.088 7.424-20.928l-23.296-352.224c-1.344-19.072-17.344-34.048-36.448-34.048h-256zM928 272c0-17.664-14.336-32-32-32h-32c-17.664 0-32-14.336-32-32v-50.752l-73.376 73.376c-6.016 6.016-14.144 9.376-22.624 9.376h-256c-19.296 0-35.52 15.008-36.896 34.336l-2.304 29.664h103.2c52.544 0 96.576 41.12 100.288 93.696l17.088 258.304h234.624c17.664 0 32-14.336 32-32v-352zM464 640c0 61.76-50.24 112-112 112s-112-50.24-112-112c0-17.664 14.336-32 32-32s32 14.336 32 32c0 26.464 21.536 48 48 48s48-21.536 48-48-21.536-48-48-48c-17.664 0-32-14.336-32-32v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v4.736c46.208 13.792 80 56.672 80 107.264zM352 471.968c-17.664 0-32-14.336-32-32v-8c0-17.664 14.336-32 32-32s32 14.336 32 32v8c0 17.664-14.336 32-32 32zM864 592h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 496h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 368h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 368h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM256 471.968c-17.664 0-32-14.336-32-32v-8c0-17.664 14.336-32 32-32s32 14.336 32 32v8c0 17.664-14.336 32-32 32zM448 471.968c-17.664 0-32-14.336-32-32v-8c0-17.664 14.336-32 32-32s32 14.336 32 32v8c0 17.664-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="content-slider" d="M928 288h-64v320h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-35.296 0-64-28.704-64-64v-320c0-35.296 28.704-64 64-64h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM982.624 470.624l-32 32c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l9.376-9.376-9.376-9.376c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l32 32c12.48 12.48 12.48 32.768 0 45.248zM160 672h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64v-320h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c35.296 0 64 28.704 64 64v320c0 35.296-28.704 64-64 64zM96 384c8.192 0 16.384 3.136 22.624 9.376 12.512 12.48 12.512 32.736 0 45.248l-9.344 9.376 9.344 9.376c12.512 12.48 12.512 32.768 0 45.248s-32.768 12.48-45.248 0l-32-32c-12.512-12.48-12.512-32.768 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376zM704 704h-384c-35.296 0-64-28.704-64-64v-384c0-35.296 28.704-64 64-64h384c35.296 0 64 28.704 64 64v384c0 35.296-28.704 64-64 64zM704 640v-104.352s-49.088 34.528-49.088 34.528c-11.040 7.776-25.76 7.744-36.8 0l-81.664-57.376-86.72 57.792c-10.752 7.136-24.768 7.136-35.52 0l-94.272-62.816v132.192h384zM320 256v174.88l112 74.688 126.24-84.192c5.472-3.648 11.616-5.376 17.696-5.376 10.336 0 20.48 4.992 26.656 14.24 9.792 14.688 5.824 34.592-8.864 44.352l-0.192 0.128 42.912 30.112 67.52-47.52v-201.376s-384.032 0-384.032 0zM576 352h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="cookies" d="M966.528 543.488c-21.28 13.088-47.264 14.272-69.376 3.104l-77.792-38.72c-2.976-1.536-5.536-0.672-7.168 0.352s-3.616 2.944-3.616 6.4v32c0 52.256-36.256 97.888-88.192 111.040-1.184 0.288-5.568 1.856-12.576 9.44-12.544 13.664-6.016 51.68 15.168 85.696 25.376 43.936 16.896 77.376 5.312 97.664-43.424 76.192-190.688 80-207.712 80.192-167.52 0-319.872-84.576-407.552-226.304-0.32-0.544-0.64-1.056-0.928-1.6-15.232-28.128-23.264-59.104-24.096-92.576-31.776-57.28-47.424-109.568-47.424-159.52 0-189.152 111.552-361.248 284.064-438.336 3.904-1.76 93.376-41.856 185.12-41.856 3.616 0 7.2 0.064 10.784 0.192 4 0 65.664 0.736 119.488 32.288 216.064 6.528 360.512 234.432 360.512 447.712v32c0 24.992-12.736 47.744-34.048 60.864zM707.168 79.424c1.216 3.040 2.688 5.856 3.744 9.088 5.568 16.768-3.456 34.88-20.256 40.48-16.704 5.6-34.88-3.456-40.48-20.256-24.192-72.64-128.672-74.144-130.784-74.144-81.12-3.104-167.52 35.584-168.512 36.032-149.632 66.88-246.368 216.032-246.368 379.968 0 14.592 1.984 29.888 5.792 45.856 7.968-11.552 22.816-16.96 36.704-12.064 16.672 5.792 25.536 24.032 19.712 40.736-20.128 57.888-19.744 107.072 1.184 146.304 76 122.24 207.744 195.168 352.256 195.168 60.576-0.672 136.096-19.168 152.448-47.872 1.952-3.456 7.168-12.608-4.576-33.024-31.424-50.4-45.888-120-7.36-161.984 13.632-14.752 28.448-24.192 44-28.128 23.808-6.016 39.84-25.696 39.84-48.96v-32c0-24.992 12.736-47.744 34.048-60.896 21.312-13.088 47.264-14.24 69.376-3.040l77.792 38.72c2.976 1.504 5.568 0.64 7.168-0.352 1.664-0.992 3.616-2.944 3.616-6.4v-32c0-154.592-91.072-324.128-229.376-371.2zM296.576 471.232c-52.96 0-96-43.040-96-96s43.040-96 96-96 96 43.072 96 96-43.040 96-96 96zM296.576 343.264c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM488.576 674.624c0 52.96-43.040 96-96 96s-96-43.040-96-96 43.040-96 96-96 96 43.040 96 96zM392.576 642.624c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM606.24 535.232c-52.928 0-96-43.040-96-96s43.072-96 96-96 96 43.072 96 96-43.072 96-96 96zM606.24 407.264c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM520.576 311.264c-52.96 0-96-43.072-96-96s43.040-96 96-96 96 43.072 96 96-43.072 96-96 96zM520.576 183.264c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM224.608 514.624c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32h16zM544.576 578.624h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32zM864.576 642.624c0-17.664 14.336-32 32-32h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32zM830.24 791.232c-17.664 0-32-14.336-32-32s14.336-32 32-32h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16zM814.24 855.264h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="copyright" d="M512 873.952c-235.648 0-426.656-191.008-426.656-426.656s191.008-426.656 426.656-426.656 426.656 191.008 426.656 426.656-191.008 426.656-426.656 426.656zM752.896 206.368c-64.352-64.352-149.888-99.808-240.896-99.808s-176.544 35.456-240.896 99.808c-64.352 64.352-99.808 149.888-99.808 240.896s35.456 176.544 99.808 240.896c64.352 64.352 149.888 99.808 240.896 99.808s176.544-35.456 240.896-99.808c64.352-64.352 99.808-149.888 99.808-240.896s-35.456-176.544-99.808-240.896zM706.56 366.464c-19.744 13.184-46.464 7.904-59.648-11.808-31.104-46.464-82.976-74.208-138.784-74.208-44.544 0-86.432 17.376-117.984 48.864-31.52 31.52-48.864 73.376-48.864 117.984 0 92 74.848 166.816 166.816 166.816 55.52 0 107.232-27.52 138.368-73.6 13.312-19.68 40.032-24.832 59.68-11.552 19.68 13.312 24.864 40.032 11.552 59.68-47.136 69.792-125.536 111.456-209.632 111.456-139.424 0-252.832-113.408-252.832-252.832 0-67.552 26.272-131.040 74.080-178.784 47.744-47.744 111.232-74.080 178.784-74.080 84.576 0 163.2 42.016 210.272 112.384 13.216 19.744 7.904 46.464-11.808 59.648z" /> +<glyph unicode="" glyph-name="countdown" d="M659.584 483.936c6.336 0 11.488 5.152 11.488 11.488s-5.152 11.488-11.488 11.488-11.488-5.152-11.488-11.488 5.152-11.488 11.488-11.488zM659.584 395.968c6.336 0 11.488 5.152 11.488 11.488s-5.152 11.488-11.488 11.488-11.488-5.152-11.488-11.488 5.152-11.488 11.488-11.488zM788.032 391.168c2.816-2.816 6.624-4.384 10.624-4.384h54.080c3.968 0 7.808 1.568 10.624 4.384l2.912 2.912c2.816 2.816 4.384 6.624 4.384 10.592v47.776c0 0.992-0.096 1.952-0.288 2.912 0.192 0.96 0.288 1.92 0.288 2.912v47.776c0 3.968-1.568 7.776-4.384 10.592l-2.912 2.912c-2.816 2.816-6.624 4.384-10.624 4.384h-54.080c-3.968 0-7.808-1.568-10.624-4.384l-2.912-2.912c-2.816-2.816-4.384-6.624-4.384-10.592v-47.776c0-0.992 0.096-1.952 0.288-2.912-0.192-0.96-0.288-1.92-0.288-2.912v-47.776c0-3.968 1.568-7.776 4.384-10.592l2.912-2.912zM840.64 416.768h-29.888v23.584h29.888v-23.584zM810.752 493.952h29.888v-23.584h-29.888v23.584zM547.424 391.168c2.816-2.816 6.624-4.384 10.592-4.384h42.784c3.968 0 7.808 1.568 10.592 4.384l8.544 8.544c2.816 2.816 4.384 6.624 4.384 10.592v90.080c0 3.968-1.568 7.776-4.384 10.592l-8.544 8.544c-2.816 2.816-6.624 4.384-10.592 4.384h-42.784c-3.968 0-7.808-1.568-10.592-4.384l-8.544-8.544c-2.816-2.816-4.384-6.624-4.384-10.592v-90.080c0-3.968 1.568-7.808 4.384-10.592l8.544-8.544zM564.48 493.952h29.888v-77.184h-29.888v77.184zM703.808 416.768c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008h39.744c3.968 0 7.808 1.568 10.592 4.384l8.544 8.544c2.816 2.816 4.384 6.624 4.384 10.592v16.896c0 3.968-1.568 7.808-4.384 10.592l-7.744 7.744 7.744 7.744c2.816 2.816 4.384 6.624 4.384 10.624v36.48c0 3.968-1.568 7.776-4.384 10.592l-8.544 8.544c-2.816 2.816-6.624 4.384-10.592 4.384h-39.744c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008h33.312v-23.584h-33.312c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008h13.952l19.36-19.36v-4.224h-33.312zM443.936 391.168c2.816-2.816 6.624-4.384 10.624-4.384h51.328c8.288 0 15.008 6.72 15.008 15.008s-6.72 15.008-15.008 15.008h-44.896v23.584h36.352c3.968 0 7.808 1.568 10.624 4.384l8.544 8.544c2.816 2.816 4.384 6.624 4.384 10.624v36.48c0 3.968-1.568 7.776-4.384 10.592l-8.544 8.544c-2.816 2.816-6.624 4.384-10.624 4.384h-39.744c-3.968 0-7.808-1.568-10.624-4.384l-11.584-11.584c-5.856-5.856-5.856-15.36 0-21.216s15.36-5.856 21.216 0l7.2 7.2h27.072v-23.584h-36.352c-3.968 0-7.808-1.568-10.624-4.384l-8.544-8.544c-2.816-2.816-4.384-6.624-4.384-10.624v-36.48c0-3.968 1.568-7.808 4.384-10.592l8.544-8.544zM345.856 451.456c0 52.256-42.368 94.624-94.624 94.624-13.056 0-25.504-2.656-36.832-7.424l38.88-87.168-92.544-27.68c11.84-38.752 47.872-66.912 90.496-66.912 52.256 0 94.592 42.368 94.592 94.624zM897.344 591.392h-556.832c-15.104 9.664-31.808 16.96-49.696 21.312 10.784 1.152 19.2 10.272 19.2 21.376 0 11.872-9.632 21.504-21.504 21.504h-74.528c-11.872 0-21.504-9.632-21.504-21.504 0-11.104 8.416-20.224 19.2-21.376-72.544-17.792-126.528-83.328-126.528-161.28 0-91.584 74.496-166.080 166.080-166.080 32.832 0 63.456 9.632 89.248 26.112h556.832c22.88 0 41.504 18.624 41.504 41.504v196.896c0 22.88-18.624 41.504-41.504 41.504zM895.84 364.8l-10.304-10.304h-499.552c19.712 27.296 31.36 60.768 31.36 96.96s-11.648 69.664-31.36 96.96h509.888v-183.584zM128.16 451.424c0 67.872 55.2 123.072 123.072 123.072 26.048 0 50.24-8.16 70.176-22.048 0.256-0.16 0.48-0.352 0.736-0.512 31.52-22.304 52.16-59.040 52.16-100.512s-20.64-78.176-52.16-100.48c-0.288-0.192-0.544-0.384-0.8-0.576-19.904-13.856-44.064-22.016-70.112-22.016-67.872 0-123.072 55.2-123.072 123.072z" /> +<glyph unicode="" glyph-name="counter" d="M874.4 746.336h-724.832c-35.328 0-64-28.64-64-64v-314.176c0-35.36 28.672-64 64-64h724.832c35.328 0 64 28.64 64 64v314.176c0 35.36-28.672 64-64 64zM283.328 417.568h-42.752v156.736h-32.416v37.408c10.464 0 19.168 1.728 26.048 5.184s11.264 10.528 13.024 21.216h36.096v-220.544zM491.52 417.568h-167.392v44.768l82.848 57.472c4.256 2.912 8.576 6.24 13.056 10.048s8.608 8.032 12.512 12.672c3.904 4.672 7.008 9.76 9.376 15.232s3.52 11.296 3.52 17.536c0 6.464-1.472 12.064-4.352 16.864s-7.168 8.448-12.864 11.008-12.768 3.84-21.216 3.84c-7.136 0-13.376-1.056-18.688-3.168s-9.696-5.344-13.056-9.696-5.792-9.76-7.36-16.224c-1.568-6.464-2.208-14.016-2.016-22.72l-40.768 8.352c-0.448 16.48 2.496 30.688 8.864 42.592s15.744 21.12 28.224 27.584 27.616 9.696 45.472 9.696c15.808 0 29.728-2.496 41.76-7.52s21.376-12.352 28.064-22.048c6.688-9.696 10.016-21.568 10.016-35.616 0-10.912-1.824-20.832-5.504-29.728s-8.384-16.864-14.208-23.872-12.128-13.248-19.040-18.72c-6.912-5.472-13.6-10.208-20.064-14.208l-56.128-38.112v-3.008l118.944 2.016v-35.072zM682.976 445.792c-6.464-10.368-16.448-18.432-29.92-24.256s-30.336-8.672-50.624-8.672c-14.272 0-26.624 1.504-37.088 4.512s-19.232 7.232-26.24 12.704-12.416 12.192-16.192 20.224c-3.808 8.032-6.016 16.928-6.688 26.752l38.080 11.712c0.448-7.584 2.048-14.048 4.832-19.392s6.432-9.728 10.848-13.184c4.448-3.456 9.536-5.984 15.232-7.52s11.744-2.336 18.208-2.336c8.928 0 16.928 1.28 24.064 3.84s12.768 6.624 16.864 12.192c4.128 5.568 6.176 12.448 6.176 20.704 0 10.912-3.456 19.648-10.368 26.24s-17.024 11.136-30.4 13.696c-13.376 2.56-29.632 3.072-48.8 1.504v25.056l75.52 52.128v3.008l-110.272-0.992v34.752h152.704v-41.088l-70.144-50.144v-3.008c20.736 0.864 37.216-1.472 49.44-7.008s21.056-13.152 26.4-22.72c5.376-9.568 8.032-20.288 8.032-32.064 0-14.048-3.232-26.208-9.664-36.576zM727.424 507.104v33.088h49.792v51.136h35.072v-51.136h50.144v-33.088h-50.144v-51.136h-35.072v51.136h-49.792zM899.36 404.896c0-35.36-28.672-64-64-64h-48.16l112.16 112.128v-48.128zM725.664 190.848c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-427.328c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h427.328zM812.64 148.512h-601.28c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h601.28c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="counters" d="M930.688 64h-837.312c-33.824 0-61.344 27.52-61.344 61.312v645.312c0 33.824 27.552 61.376 61.344 61.376h837.312c33.792 0 61.312-27.552 61.312-61.376v-645.312c0-33.792-27.52-61.312-61.312-61.312zM96 128h832v640h-832v-640zM176 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM864 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM736 672h-16c-17.664 0-32 14.336-32 32s14.336 32 32 32h16c17.664 0 32-14.336 32-32s-14.336-32-32-32zM528 384h-32c-52.96 0-96 43.072-96 96v32c0 52.96 43.040 96 96 96h32c52.928 0 96-43.040 96-96v-32c0-52.928-43.072-96-96-96zM496 544c-17.664 0-32-14.336-32-32v-32c0-17.664 14.336-32 32-32h32c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32h-32zM576 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM544 192h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32zM320 384h-160c-11.072 0-21.376 5.76-27.232 15.168s-6.368 21.216-1.408 31.136l80 160c5.44 10.848 16.512 17.696 28.608 17.696s23.2-6.848 28.64-17.696l80-160c4.96-9.92 4.416-21.696-1.408-31.136s-16.128-15.168-27.232-15.168zM211.776 448h56.448l-28.224 56.448-28.224-56.448zM304 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM256 192h-32c-17.664 0-32 14.336-32 32s14.336 32 32 32h32c17.664 0 32-14.336 32-32s-14.336-32-32-32zM864 384h-160c-17.664 0-32 14.336-32 32v160c0 17.664 14.336 32 32 32h160c17.664 0 32-14.336 32-32v-160c0-17.664-14.336-32-32-32zM736 448h96v96h-96v-96zM848 288h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32zM728 192h-8c-17.664 0-32 14.336-32 32s14.336 32 32 32h8c17.664 0 32-14.336 32-32s-14.336-32-32-32zM848 192h-8c-17.664 0-32 14.336-32 32s14.336 32 32 32h8c17.664 0 32-14.336 32-32s-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="creative-button" d="M787.808 559.264h-553.6c-35.776 0-64.864-29.088-64.864-64.864v-88.8c0-35.776 29.088-64.864 64.864-64.864h223.456l47.808-113.728-218.848 1.216v50.432c0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472v-71.744c0-11.808 9.536-21.408 21.344-21.472l258.528-1.44 2.208-5.28c4.864-11.584 15.84-18.688 28.192-18.688 1.504 0 3.040 0.128 4.576 0.352 12.96 1.824 22.88 11.008 25.6 23.328l172.672-0.96c5.664 0 11.104 2.24 15.136 6.24s6.336 9.504 6.336 15.232v74.528c0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472v-52.928l-145.984 0.832 4.96 42.208 87.616 9.216c14.24 1.504 25.44 12.288 27.232 26.304 1.792 13.888-6.272 27.040-19.552 32.032l-11.84 4.448h109.952c35.776 0 64.864 29.088 64.864 64.864v88.8c0 35.776-29.088 64.864-64.864 64.864zM579.264 310.304c-13.824-1.472-24.608-11.968-26.24-25.6l-5.504-46.976-52.992 126.080 129.728-48.768-44.992-4.736zM766.528 428.544h-511.008c-11.872 0-21.472 9.6-21.472 21.472s9.6 21.472 21.472 21.472h511.008c11.872 0 21.472-9.6 21.472-21.472s-9.6-21.472-21.472-21.472zM660.064 661.76h84.992v-42.24c0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472v63.68c0 11.84-9.6 21.472-21.472 21.472h-106.464c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM460.896 656.512h91.84c3.328 10.144 9.952 19.328 17.472 27.264 14.88 15.648 23.968 36.832 23.968 60.128 0 48.256-39.136 87.36-87.36 87.36s-87.36-39.136-87.36-87.36c0-23.296 9.088-44.448 23.968-60.128 7.52-7.904 14.208-17.12 17.472-27.264zM503.168 802.112c6.048 0 10.912-4.864 10.912-10.912s-4.864-10.912-10.912-10.912c-18.112 0-32.768-14.656-32.768-32.768 0-6.048-4.864-10.912-10.912-10.912s-10.912 4.864-10.912 10.912c0 30.176 24.448 54.624 54.624 54.624zM499.52 590.976h14.56c20.128 0 36.416 16.288 36.416 36.416v7.296h-87.36v-7.296c0-20.128 16.288-36.416 36.416-36.416zM255.904 595.68c9.6 0 17.696 6.304 20.448 14.976 1.248 2.72 1.92 5.696 1.92 8.864v41.248h84.672c11.84 0 21.472 9.6 21.472 21.472 0 4.768-1.568 9.152-4.192 12.704-3.84 5.856-10.432 9.728-17.952 9.728h-105.408c-6.336 0-12.032-2.784-15.968-7.136-3.968-3.904-6.432-9.312-6.432-15.328v-65.088c0-11.84 9.6-21.472 21.472-21.472z" /> +<glyph unicode="" glyph-name="credit-card-back" d="M943.904 751.52h-863.808c-26.56 0-48.096-21.536-48.096-48.096v-510.848c0-26.56 21.536-48.096 48.096-48.096h863.808c26.56 0 48.096 21.536 48.096 48.096v510.848c0 26.56-21.536 48.096-48.096 48.096zM96 603.744h59.136l35.936-61.088h-95.040v61.088zM265.312 542.688l-35.936 61.088h81.056l35.936-61.088h-81.088zM420.64 542.688l-35.936 61.088h81.088l35.936-61.088h-81.088zM575.968 542.688l-35.936 61.088h81.088l35.936-61.088h-81.088zM731.296 542.688l-35.936 61.088h81.088l35.936-61.088h-81.088zM886.624 542.688l-35.936 61.088h77.312v-61.088h-41.376zM928 687.52v-19.776h-832v19.776h832zM868.288 208.48h-772.288v270.208h150.976s0.064 0 0.064 0c0 0 0.064 0 0.064 0h155.232s0.064 0 0.064 0c0.032 0 0.064 0 0.064 0h155.232s0.064 0 0.064 0c0 0 0.064 0 0.064 0h155.232s0.064 0 0.064 0c0 0 0.064 0 0.064 0h155.232s0.064 0 0.064 0c0 0 0.064 0 0.064 0h59.584v-270.208h-59.712zM274.816 304.064h-104.32c-17.664 0-32-14.336-32-32s14.336-32 32-32h104.32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM567.072 304.064h-185.568c-17.664 0-32-14.336-32-32s14.336-32 32-32h185.568c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="credit-card-front" d="M942.72 751.52h-861.472c-27.232 0-49.28-22.048-49.28-49.248v-508.512c0-27.232 22.080-49.28 49.28-49.28h861.472c27.232 0 49.28 22.048 49.28 49.28v508.48c0 27.232-22.048 49.28-49.28 49.28zM928 208.48h-832v479.040h832v-479.040zM170.496 240.064h104.32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-104.32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM567.072 304.064h-185.568c-17.664 0-32-14.336-32-32s14.336-32 32-32h185.568c17.664 0 32 14.336 32 32s-14.336 32-32 32zM170.496 353.888h691.36c17.664 0 32 14.336 32 32s-14.336 32-32 32h-691.36c-17.664 0-32-14.336-32-32s14.336-32 32-32zM755.328 648.032h86.656c17.632 0 31.936-14.304 31.936-31.936v-86.656c0-17.632-14.304-31.936-31.936-31.936h-86.656c-17.632 0-31.936 14.304-31.936 31.936v86.656c0 17.632 14.304 31.936 31.936 31.936z" /> +<glyph unicode="" glyph-name="currency-bitcoin" d="M730.976 468.48c23.328 29.216 37.376 66.272 37.376 106.496 0 94.304-76.704 171.008-171.008 171.008h-10.592v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-105.472v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-42.336h-53.28c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h53.28v-425.984h-53.28c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h53.28v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h105.472v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h53.248c94.304 0 171.008 76.704 171.008 171.008 0 65.92-31.488 120.8-80.032 149.504zM682.336 575.008c0-46.848-38.144-84.992-84.992-84.992h-202.080v169.984h202.080c46.848 0 84.992-38.144 84.992-84.992zM640 233.984h-244.736v169.984h255.648c50.912 0 74.080-44.064 74.080-84.992 0-46.848-38.144-84.992-84.992-84.992z" /> +<glyph unicode="" glyph-name="custom-cs" d="M746.208 384.128h20.96c23.712 0 42.912 19.232 42.912 42.912v107.456c0 11.008-8.928 19.968-19.968 19.968h-556.224c-11.040 0-19.968-8.928-19.968-19.968v-107.456c0-23.68 19.2-42.912 42.912-42.912h0.992c11.008 0 19.968-8.928 19.968-19.968l1.312-23.968c0-11.008 8.928-19.968 19.968-19.968h408.544c11.008 0 19.968 8.928 19.968 19.968l-1.344 23.968c0 11.040 8.928 19.968 19.968 19.968zM277.12 526.976l-36.192-36.16c-2.656-2.688-7.2-0.768-7.2 2.976v35.904c0 2.304 1.888 4.224 4.192 4.224l36.192 0.288c3.776 0.032 5.696-4.544 3.008-7.2zM372.608 491.296c-2.528 0-4.672-0.352-6.528-0.992s-3.296-2.208-4.32-4.64c-1.024-2.432-1.568-6.336-1.568-11.648 0-4.32-0.704-8.16-2.112-11.392s-3.264-5.984-5.536-8.16c-2.304-2.176-4.736-3.904-7.36-5.216s-5.152-2.24-7.648-2.784v-3.744c2.496-0.672 5.056-1.632 7.712-2.944s5.12-3.072 7.36-5.28c2.208-2.24 4.032-4.96 5.44-8.16s2.112-6.976 2.112-11.328c0-5.312 0.512-9.216 1.568-11.648s2.464-4 4.32-4.64 4-0.992 6.528-0.992v-19.712c-2.080-0.32-4.128-0.544-6.208-0.704s-3.744-0.256-5.056-0.256c-3.904 0-7.296 0.576-10.176 1.728s-5.344 3.072-7.328 5.792c-2.016 2.72-3.616 6.4-4.8 11.072s-2.048 10.592-2.624 17.76c-0.32 4.544-1.088 8.352-2.272 11.392s-2.784 5.44-4.736 7.168-4.16 2.848-6.656 3.264v17.28c2.368 0.544 4.544 1.664 6.496 3.424s3.552 4.256 4.8 7.52c1.248 3.264 2.048 7.392 2.368 12.384 0.544 7.072 1.408 12.928 2.528 17.6s2.72 8.384 4.736 11.168c1.984 2.784 4.448 4.736 7.328 5.856s6.336 1.728 10.336 1.728c1.504 0 3.264-0.128 5.216-0.352s3.936-0.48 6.016-0.832v-19.712zM463.776 413.952c-1.696-3.744-4.16-7.040-7.424-9.952s-7.296-5.12-12.128-6.752c-4.832-1.632-10.688-2.464-17.504-2.464-7.392 0-13.92 1.024-19.552 3.104s-10.368 5.024-14.176 8.896c-3.808 3.84-6.72 8.512-8.736 13.92s-3.008 11.52-3.008 18.24c0 6.976 0.992 13.248 3.008 18.912s4.896 10.528 8.736 14.656c3.808 4.128 8.448 7.296 14.016 9.536s11.904 3.36 19.072 3.36 13.344-1.152 18.56-3.424c5.216-2.272 9.472-5.472 12.8-9.6s5.568-8.896 6.752-14.336l-24.288-8.16c-0.352 3.584-1.184 6.528-2.624 8.8s-3.232 3.936-5.44 4.96c-2.24 1.024-4.64 1.568-7.264 1.568-2.72 0-5.088-0.544-7.168-1.632s-3.808-2.72-5.216-4.896-2.496-4.8-3.264-7.904c-0.768-3.104-1.152-6.656-1.152-10.656 0-5.76 0.704-10.592 2.208-14.432s3.648-6.752 6.496-8.736c2.88-1.952 6.4-2.944 10.528-2.944 4.224 0 7.552 0.864 9.952 2.624s4.128 3.904 5.216 6.432c1.088 2.528 1.728 5.056 1.952 7.552l22.816-5.056c-0.448-4-1.504-7.904-3.168-11.648zM549.536 407.776c-3.040-4.16-7.52-7.392-13.44-9.6s-13.184-3.36-21.76-3.36c-5.76 0-10.976 0.512-15.616 1.568-4.704 1.024-8.768 2.528-12.224 4.48s-6.336 4.32-8.544 7.072c-2.24 2.784-3.776 5.856-4.64 9.216l19.552 8.608c0.768-1.824 2.080-3.712 4-5.6s4.448-3.456 7.648-4.64c3.2-1.184 7.072-1.792 11.648-1.792 4.352 0 7.744 0.608 10.176 1.888s3.68 3.072 3.68 5.44c0 1.728-0.672 3.136-2.048 4.16s-3.392 1.952-6.112 2.752c-2.72 0.832-6.080 1.632-10.112 2.368-4.128 0.864-8.32 1.888-12.544 3.008s-8.192 2.72-11.904 4.704c-3.68 2.016-6.656 4.672-8.896 8s-3.328 7.52-3.328 12.64c0 5.344 1.408 9.952 4.224 13.92s7.040 7.072 12.64 9.376c5.6 2.304 12.384 3.424 20.448 3.424 7.168 0 13.472-0.928 18.912-2.784s9.952-4.48 13.6-7.904c3.648-3.424 6.176-7.52 7.552-12.288l-21.024-7.52c-0.544 2.4-1.664 4.448-3.328 6.208s-3.808 3.040-6.336 4c-2.56 0.928-5.568 1.376-9.056 1.376-4.256 0-7.52-0.672-9.856-1.952s-3.52-3.040-3.52-5.216c0-1.728 0.8-3.168 2.368-4.32s3.808-2.080 6.752-2.848c2.944-0.768 6.4-1.568 10.432-2.464 4.224-0.864 8.448-1.888 12.608-3.008s8-2.656 11.424-4.544c3.424-1.92 6.144-4.416 8.16-7.52s3.008-7.072 3.008-11.968c0-5.76-1.504-10.72-4.576-14.912zM639.008 407.776c-3.040-4.16-7.52-7.392-13.44-9.6s-13.184-3.36-21.728-3.36c-5.76 0-10.976 0.512-15.648 1.568s-8.736 2.528-12.224 4.48-6.336 4.32-8.576 7.072c-2.208 2.784-3.776 5.856-4.64 9.216l19.552 8.608c0.768-1.824 2.112-3.712 4-5.6s4.448-3.456 7.68-4.64c3.2-1.184 7.072-1.792 11.648-1.792 4.352 0 7.744 0.608 10.208 1.888s3.648 3.072 3.648 5.44c0 1.728-0.672 3.136-2.048 4.16s-3.392 1.952-6.112 2.752c-2.72 0.832-6.080 1.632-10.112 2.368-4.128 0.864-8.288 1.888-12.544 3.008s-8.192 2.72-11.872 4.704c-3.68 2.016-6.656 4.672-8.896 8s-3.36 7.52-3.36 12.64c0 5.344 1.408 9.952 4.256 13.92s7.040 7.072 12.608 9.376c5.6 2.304 12.416 3.424 20.448 3.424 7.168 0 13.44-0.928 18.912-2.784s9.952-4.48 13.6-7.904c3.648-3.424 6.176-7.52 7.584-12.288l-21.024-7.52c-0.544 2.4-1.664 4.448-3.36 6.208s-3.808 3.040-6.336 4c-2.56 0.928-5.568 1.376-9.056 1.376-4.224 0-7.52-0.672-9.856-1.952s-3.488-3.040-3.488-5.216c0-1.728 0.768-3.168 2.368-4.32s3.84-2.080 6.752-2.848c2.944-0.768 6.4-1.568 10.432-2.464 4.224-0.864 8.448-1.888 12.64-3.008s8-2.656 11.392-4.544c3.424-1.92 6.144-4.416 8.16-7.52s3.008-7.072 3.008-11.968c0-5.76-1.504-10.72-4.544-14.912zM701.408 435.232c-2.4-0.448-4.576-1.536-6.592-3.264s-3.648-4.096-4.896-7.168c-1.248-3.040-2.048-6.848-2.368-11.392-0.544-7.168-1.408-13.088-2.592-17.76s-2.784-8.352-4.8-11.072c-2.016-2.72-4.448-4.64-7.328-5.792s-6.304-1.728-10.208-1.728c-1.312 0-2.944 0.096-4.96 0.256s-4.032 0.384-6.112 0.704v19.712c2.496 0 4.672 0.32 6.528 0.992s3.264 2.208 4.224 4.64c0.992 2.432 1.472 6.336 1.472 11.648 0 4.352 0.704 8.128 2.112 11.328s3.2 5.92 5.44 8.16c2.24 2.208 4.672 4 7.328 5.28s5.248 2.272 7.744 2.944v3.744c-2.4 0.544-4.896 1.472-7.552 2.784s-5.152 3.040-7.424 5.216-4.128 4.896-5.536 8.16c-1.408 3.264-2.112 7.072-2.112 11.392 0 5.344-0.512 9.216-1.472 11.648s-2.4 4-4.224 4.64c-1.856 0.64-4.032 0.992-6.528 0.992v19.712c2.080 0.352 4.064 0.608 5.952 0.832s3.616 0.352 5.12 0.352c4.032 0 7.456-0.576 10.368-1.728s5.312-3.104 7.328-5.856 3.584-6.496 4.736-11.168c1.152-4.672 1.984-10.528 2.528-17.6 0.448-4.992 1.28-9.12 2.528-12.384s2.848-5.76 4.8-7.52 4.096-2.88 6.496-3.424v-17.28zM235.072 620.544c11.84 0 21.472 9.6 21.472 21.472s9.632 21.472 21.472 21.472h84.832c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-84.832c-34.752 0-63.168-27.68-64.352-62.144-0.064-0.736-0.128-1.472-0.128-2.208 0-11.84 9.696-21.472 21.536-21.472zM660.48 663.456h85.44c11.84 0 21.472-9.632 21.472-21.472s9.6-21.472 21.472-21.472 21.472 9.6 21.472 21.472c0 35.488-28.864 64.384-64.384 64.384h-85.44c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM788.96 320.416v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-11.84-9.632-21.472-21.472-21.472h-190.976c-5.664 0-11.072-2.24-15.104-6.208l-27.776-27.456-27.648 27.456c-4.032 4-9.44 6.24-15.104 6.24h-191.424c-11.84 0-21.472 9.632-21.472 21.44v21.12c0 11.84-9.6 21.472-21.44 21.472v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-35.488 28.864-64.384 64.384-64.384h182.592l36.48-36.192c4.192-4.16 9.632-6.24 15.104-6.24s10.912 2.080 15.104 6.208l36.608 36.224h182.144c35.488 0 64.384 28.864 64.384 64.352v21.12c0 11.84-9.6 21.472-21.44 21.472zM428.096 655.584c-1.28-3.168-1.408-5.568-0.192-8.736 1.088-2.944 10.56-19.296 12.544-21.024 3.584-3.168 7.040-3.008 11.392-1.92 7.232 1.76 14.528 4.928 21.696 7.072l12.416-7.104c5.344-9.024 1.056-29.696 14.368-32 4.64-0.8 17.312-0.704 22.144-0.256s8.192 3.328 9.728 7.872c2.4 7.232 2.624 16.352 4.896 23.776l12.8 7.584c2.784 0.768 21.888-8.448 27.936-7.712 1.76 0.224 4.384 1.632 5.664 2.848 1.888 1.824 11.712 18.912 12.48 21.6 2.112 6.976-1.536 9.792-6.112 14.144-2.304 2.208-14.016 11.392-14.4 13.344l0.288 15.136c4.224 5.44 17.76 13.504 20.096 19.36 1.184 2.944 0.96 5.632-0.192 8.576-1.088 2.848-10.528 19.008-12.448 20.608-3.584 3.008-7.2 2.88-11.456 1.824-7.104-1.728-14.528-5.184-21.728-7.072-4.096 2.56-8.096 5.536-12.8 6.912-4 10.272-0.768 30.944-15.328 32.416-4.864 0.48-16.96 0.544-21.728-0.16-12.288-1.792-9.408-22.912-13.728-31.552l-13.12-7.616-24.064 7.712c-3.552 0.704-7.296-0.608-9.632-3.424-2.048-2.464-11.328-18.656-12.064-21.472-0.96-3.616-0.32-7.232 2.144-10.112 4.544-5.248 12.96-10.144 17.792-15.296 0.448-0.48 0.928-0.896 0.96-1.6l-0.064-15.136c-6.784-6.080-14.816-11.488-20.32-18.656zM511.872 708.032c14.24 0 25.824-11.552 25.824-25.824s-11.584-25.824-25.824-25.824-25.856 11.552-25.856 25.824 11.584 25.824 25.856 25.824z" /> +<glyph unicode="" glyph-name="custom-cursor" d="M805.984 506.4l-206.144 77.504c-12.16-3.36-18.784-6.912-23.36-14.144-3.008-4.768-5.12-11.168-7.36-20.16l221.76-83.392c0.128-0.032 0.256-0.096 0.352-0.128-0.192-0.064-0.512-0.16-0.992-0.224l-242.816-25.504c-19.424-2.048-34.56-16.672-36.768-35.584l-26.976-229.664c-0.704-0.416-2.4-0.512-2.912-0.128 0 0-0.064 0.096-0.16 0.32l-203.552 484.128 111.36-41.888c-2.624 6.368-4.032 13.344-4.032 20.608 0 1.28 0.032 2.528 0.128 3.808 0.512 7.392 2.496 14.464 5.696 20.768l-101.568 38.176c-15.84 5.952-33.6 2.016-45.216-10.048-11.232-11.648-14.304-28.096-8.096-42.912l205.696-489.248c6.976-16.64 22.88-26.88 40.8-26.88 2.24 0 4.48 0.16 6.752 0.48 20.256 2.848 35.392 18.080 37.728 37.824l26.752 227.68 241.696 25.376c20.896 2.208 36.704 17.312 39.296 37.6 2.56 20-8.704 38.336-28.032 45.6zM435.712 627.392c20.672-4.96 35.36-11.584 46.144-22.048 7.904-7.616 13.728-17.28 18.272-29.792 1.984-5.376 3.712-11.328 5.28-17.824 1.344-5.632 6.048-8.448 10.752-8.448s9.408 2.816 10.752 8.448c0.576 2.432 1.184 4.8 1.824 7.072 2.112 7.552 4.512 14.24 7.328 20.192 3.424 7.104 7.456 13.12 12.32 18.304 10.944 11.648 26.176 18.848 48.192 24.128 11.232 2.688 11.232 18.816 0 21.504-42.304 10.112-59.552 27.392-69.696 69.696-1.344 5.6-6.080 8.416-10.752 8.416s-9.408-2.816-10.752-8.416c-10.144-42.304-27.392-59.584-69.696-69.696-1.536-0.384-2.848-0.992-3.968-1.792-7.072-5.056-5.728-17.376 3.968-19.712zM604.512 685.344c16.128-3.872 27.104-9.216 34.944-17.952 6.72-7.52 11.104-17.6 14.4-31.424 0.96-3.968 4.288-5.984 7.616-5.984s6.656 1.984 7.616 5.984c7.168 29.952 19.392 42.208 49.376 49.376 7.968 1.888 7.968 13.344 0 15.232-29.952 7.2-42.208 19.424-49.376 49.376-0.96 3.968-4.288 5.952-7.616 5.952s-6.656-1.984-7.616-5.952c-7.168-29.952-19.392-42.208-49.376-49.376-4.064-0.992-6.080-4.448-5.952-7.84 0.096-3.264 2.080-6.432 5.952-7.392z" /> +<glyph unicode="" glyph-name="custom-font" d="M583.68 422.048c1.248 0.512 2.4 1.152 3.52 1.856l-3.584 0.8 0.064-2.656zM572.768 419.008c-2.56-0.448-5.056-0.896-7.488-1.408s-4.64-1.088-6.528-1.856c-1.888-0.768-3.392-1.792-4.48-3.104s-1.632-3.104-1.632-5.376c0-3.040 1.024-5.504 3.104-7.328s4.736-2.784 8-2.784c1.952 0 3.936 0.352 5.952 1.056s3.936 1.664 5.792 2.944c1.824 1.248 3.52 2.784 5.056 4.64s2.656 3.84 3.424 6.016l-0.256 10.208c-1.056-0.48-2.144-0.864-3.328-1.248-2.528-0.768-5.024-1.376-7.584-1.792zM722.272 384.128h44.928c23.68 0 42.912 19.232 42.912 42.912v107.456c0 11.008-8.928 19.968-19.968 19.968h-556.256c-11.008 0-19.968-8.928-19.968-19.968v-107.456c0-23.68 19.232-42.912 42.912-42.912h43.584c11.040 0 19.968-8.928 19.968-19.968l1.344-23.968c0-11.008 8.928-19.968 19.968-19.968h341.984c11.040 0 19.968 8.928 19.968 19.968l-1.312 23.968c0 11.040 8.928 19.968 19.968 19.968zM277.12 526.976l-36.16-36.16c-2.688-2.688-7.2-0.768-7.2 2.976v35.904c0 2.304 1.856 4.224 4.192 4.224l36.16 0.288c3.776 0.032 5.696-4.544 3.008-7.2zM490.592 380.896l-5.984 20.192h-42.144l-5.984-20.192h-28.672l36.512 107.52h38.432l36.512-107.52h-28.672zM588 380.896c-0.448 2.496-0.864 5.504-1.312 9.056s-0.768 7.136-0.992 10.848h-3.104c-1.504-4.128-3.744-7.904-6.592-11.328s-6.336-6.080-10.432-8-8.672-2.848-13.76-2.848c-4.768 0-9.024 0.96-12.704 2.848s-6.56 4.672-8.608 8.32c-2.080 3.648-3.104 8.064-3.104 13.28 0 4.896 0.928 8.928 2.848 12.128s4.672 5.76 8.32 7.68c3.648 1.888 8 3.488 13.12 4.704s10.912 2.368 17.44 3.36c3.168 0.544 5.792 1.056 7.904 1.536s3.744 1.28 4.8 2.368c1.088 1.088 1.632 2.656 1.632 4.704 0 2.72-0.992 5.056-2.944 7.008s-5.12 2.944-9.472 2.944c-3.040 0-5.76-0.544-8.224-1.632s-4.544-2.688-6.272-4.736c-1.728-2.080-3.040-4.576-3.904-7.52l-23.136 6.848c1.408 4.576 3.392 8.512 5.952 11.904s5.6 6.176 9.216 8.416c3.584 2.208 7.68 3.84 12.288 4.864s9.536 1.568 14.752 1.568c8.672 0 15.776-1.376 21.248-4.16s9.568-7.072 12.224-12.864c2.688-5.824 4-13.28 4-22.4v-13.216c0-3.904 0.096-7.84 0.256-11.808s0.384-7.936 0.64-11.904c0.288-3.968 0.64-7.968 1.056-11.968h-23.136zM462.24 467.904l-14.56-49.216h31.744l-14.56 49.216h-2.592zM235.072 620.544c11.84 0 21.472 9.6 21.472 21.472s9.632 21.472 21.472 21.472h84.832c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-84.832c-34.752 0-63.168-27.68-64.352-62.144-0.064-0.736-0.128-1.472-0.128-2.208 0-11.84 9.696-21.472 21.536-21.472zM660.48 663.456h85.44c11.84 0 21.472-9.632 21.472-21.472s9.6-21.472 21.472-21.472 21.472 9.6 21.472 21.472c0 35.488-28.864 64.384-64.384 64.384h-85.44c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM428.128 655.584c-1.28-3.168-1.408-5.568-0.192-8.736 1.12-2.944 10.56-19.296 12.544-21.024 3.584-3.168 7.040-3.008 11.392-1.92 7.232 1.76 14.528 4.928 21.696 7.072l12.416-7.104c5.344-9.024 1.056-29.696 14.4-32 4.608-0.8 17.28-0.704 22.112-0.256s8.192 3.328 9.728 7.872c2.4 7.232 2.624 16.352 4.896 23.776l12.8 7.584c2.784 0.768 21.888-8.448 27.968-7.712 1.76 0.224 4.384 1.632 5.664 2.848 1.888 1.824 11.712 18.912 12.512 21.6 2.112 6.976-1.536 9.792-6.112 14.144-2.304 2.208-14.048 11.392-14.4 13.344l0.256 15.136c4.224 5.44 17.792 13.504 20.128 19.36 1.184 2.944 0.96 5.632-0.192 8.576-1.12 2.848-10.528 19.008-12.448 20.608-3.616 3.008-7.232 2.88-11.488 1.824-7.104-1.728-14.528-5.184-21.696-7.072-4.096 2.56-8.096 5.536-12.8 6.912-4.032 10.272-0.768 30.944-15.328 32.416-4.896 0.48-16.992 0.544-21.728-0.16-12.288-1.792-9.408-22.912-13.76-31.552l-13.088-7.616-24.064 7.712c-3.584 0.704-7.328-0.608-9.664-3.424-2.048-2.464-11.328-18.656-12.064-21.472-0.96-3.616-0.288-7.232 2.176-10.112 4.512-5.248 12.928-10.144 17.76-15.296 0.448-0.48 0.928-0.896 0.992-1.6l-0.064-15.136c-6.784-6.080-14.784-11.488-20.288-18.656zM511.872 708.032c14.272 0 25.824-11.552 25.824-25.824s-11.552-25.824-25.824-25.824-25.824 11.552-25.824 25.824 11.552 25.824 25.824 25.824zM788.96 320.416v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-11.84-9.632-21.472-21.472-21.472h-190.976c-5.664 0-11.072-2.24-15.104-6.208l-27.776-27.456-27.648 27.456c-4.032 4-9.44 6.24-15.104 6.24h-191.424c-11.84 0-21.472 9.632-21.472 21.44v21.12c0 11.84-9.6 21.472-21.44 21.472v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-35.488 28.864-64.384 64.384-64.384h182.592l36.48-36.192c4.192-4.16 9.632-6.24 15.104-6.24s10.912 2.080 15.104 6.208l36.608 36.224h182.144c35.488 0 64.384 28.864 64.384 64.352v21.12c0 11.84-9.6 21.472-21.44 21.472z" /> +<glyph unicode="" glyph-name="custom-js" d="M722.272 384.128h44.928c23.68 0 42.912 19.232 42.912 42.912v107.456c0 11.008-8.928 19.968-19.968 19.968h-556.256c-11.008 0-19.968-8.928-19.968-19.968v-107.456c0-23.68 19.232-42.912 42.912-42.912h43.584c11.040 0 19.968-8.928 19.968-19.968l1.344-23.968c0-11.008 8.928-19.968 19.968-19.968h341.984c11.040 0 19.968 8.928 19.968 19.968l-1.312 23.968c0 11.040 8.928 19.968 19.968 19.968zM277.12 526.976l-36.192-36.16c-2.656-2.688-7.2-0.768-7.2 2.976v35.904c0 2.304 1.856 4.224 4.192 4.224l36.16 0.288c3.808 0.032 5.696-4.544 3.040-7.2zM387.52 491.296c-2.496 0-4.672-0.352-6.496-0.992s-3.296-2.208-4.32-4.64-1.536-6.336-1.536-11.648c0-4.32-0.704-8.16-2.112-11.392s-3.264-5.984-5.536-8.16-4.736-3.904-7.328-5.216c-2.624-1.312-5.184-2.24-7.68-2.784v-3.744c2.496-0.672 5.056-1.632 7.744-2.944s5.12-3.072 7.328-5.28c2.24-2.24 4.064-4.96 5.472-8.16s2.112-6.976 2.112-11.328c0-5.312 0.512-9.216 1.536-11.648s2.464-4 4.32-4.64c1.824-0.672 4-0.992 6.496-0.992v-19.712c-2.048-0.32-4.128-0.544-6.176-0.704s-3.744-0.256-5.056-0.256c-3.904 0-7.296 0.576-10.176 1.728s-5.344 3.072-7.36 5.792c-1.984 2.72-3.616 6.4-4.8 11.072s-2.048 10.592-2.592 17.76c-0.32 4.544-1.088 8.352-2.272 11.392s-2.784 5.44-4.736 7.168-4.192 2.848-6.688 3.264v17.28c2.4 0.544 4.576 1.664 6.528 3.424s3.552 4.256 4.8 7.52c1.248 3.264 2.048 7.392 2.368 12.384 0.544 7.072 1.376 12.928 2.528 17.6s2.72 8.384 4.736 11.168 4.448 4.736 7.328 5.856c2.88 1.152 6.336 1.728 10.368 1.728 1.504 0 3.264-0.128 5.216-0.352s3.968-0.48 6.016-0.832v-19.712zM478.432 436.544c0-9.12-1.344-16.736-4.064-22.816s-6.848-10.688-12.384-13.76c-5.536-3.104-12.608-4.64-21.184-4.64-1.088 0-2.4 0.064-3.904 0.16s-3.52 0.288-6.016 0.48l-1.152 24.128c1.184-0.192 2.4-0.384 3.68-0.48s2.24-0.16 3.008-0.16c4.128 0 7.296 0.544 9.536 1.728s3.808 2.944 4.736 5.44 1.376 5.856 1.376 10.112v67.936h26.4v-68.096zM585.568 410.4c-3.52-4.96-8.832-8.768-15.904-11.488s-15.808-4.064-26.24-4.064c-6.976 0-13.248 0.672-18.912 1.952s-10.528 3.296-14.656 5.952c-4.128 2.656-7.392 6.048-9.792 10.176s-3.808 8.896-4.224 14.336l22.976 7.648c0.32-4.544 1.632-8.352 3.904-11.392s5.344-5.28 9.216-6.752c3.84-1.472 8.192-2.208 12.96-2.208 4.576 0 8.416 0.576 11.488 1.728s5.44 2.592 7.008 4.384c1.568 1.792 2.368 3.712 2.368 5.792 0 2.368-1.024 4.384-3.104 5.952s-4.896 2.944-8.48 4.064c-3.584 1.152-7.776 2.24-12.544 3.328-5.44 1.312-10.752 2.72-15.968 4.224s-9.952 3.52-14.176 5.952c-4.256 2.464-7.584 5.6-10.016 9.472s-3.68 8.736-3.68 14.56c0 6.624 1.664 12.384 5.056 17.28s8.288 8.704 14.816 11.488c6.496 2.784 14.56 4.16 24.128 4.16 9.472 0 17.472-1.344 24.128-4.064s11.744-6.496 15.296-11.328c3.584-4.832 5.536-10.464 5.856-16.864l-23.456-6.688c0 3.168-0.512 5.92-1.568 8.32s-2.464 4.384-4.32 5.952c-1.856 1.568-4.128 2.752-6.848 3.584s-5.824 1.216-9.28 1.216c-4.128 0-7.648-0.48-10.528-1.472s-5.024-2.24-6.432-3.84c-1.408-1.568-2.112-3.392-2.112-5.44 0-2.624 1.12-4.736 3.328-6.432s5.28-3.104 9.12-4.224 8.128-2.24 12.8-3.328c4.672-0.992 9.504-2.208 14.528-3.68s9.664-3.392 14.016-5.792c4.32-2.4 7.84-5.6 10.496-9.696s4-9.216 4-15.424c0-6.624-1.76-12.416-5.28-17.344zM686.528 435.232c-2.4-0.448-4.576-1.536-6.592-3.264s-3.648-4.096-4.896-7.168c-1.248-3.040-2.048-6.848-2.368-11.392-0.544-7.168-1.408-13.088-2.624-17.76s-2.784-8.352-4.8-11.072c-1.984-2.72-4.448-4.64-7.328-5.792s-6.272-1.728-10.176-1.728c-1.312 0-2.976 0.096-4.96 0.256s-4.064 0.384-6.112 0.704v19.712c2.496 0 4.672 0.32 6.496 0.992s3.264 2.208 4.256 4.64c0.96 2.432 1.472 6.336 1.472 11.648 0 4.352 0.704 8.128 2.112 11.328s3.232 5.92 5.472 8.16c2.208 2.208 4.64 4 7.328 5.28s5.216 2.272 7.744 2.944v3.744c-2.4 0.544-4.928 1.472-7.584 2.784s-5.12 3.040-7.392 5.216c-2.304 2.176-4.128 4.896-5.536 8.16s-2.112 7.072-2.112 11.392c0 5.344-0.512 9.216-1.472 11.648-0.992 2.432-2.4 4-4.256 4.64s-4 0.992-6.496 0.992v19.712c2.048 0.352 4.032 0.608 5.952 0.832s3.616 0.352 5.12 0.352c4 0 7.456-0.576 10.336-1.728s5.344-3.104 7.36-5.856c1.984-2.784 3.584-6.496 4.704-11.168s1.984-10.528 2.528-17.6c0.416-4.992 1.28-9.12 2.528-12.384s2.848-5.76 4.8-7.52 4.128-2.88 6.528-3.424v-17.28zM235.072 620.544c11.84 0 21.472 9.6 21.472 21.472s9.632 21.472 21.472 21.472h84.832c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-84.832c-34.752 0-63.168-27.68-64.352-62.144-0.064-0.736-0.128-1.472-0.128-2.208 0-11.84 9.696-21.472 21.536-21.472zM660.48 663.456h85.44c11.84 0 21.472-9.632 21.472-21.472s9.6-21.472 21.472-21.472 21.472 9.6 21.472 21.472c0 35.488-28.864 64.384-64.384 64.384h-85.44c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM428.128 655.584c-1.28-3.168-1.408-5.568-0.192-8.736 1.12-2.944 10.56-19.296 12.544-21.024 3.584-3.168 7.040-3.008 11.392-1.92 7.232 1.76 14.528 4.928 21.696 7.072l12.416-7.104c5.344-9.024 1.056-29.696 14.4-32 4.608-0.8 17.28-0.704 22.112-0.256s8.192 3.328 9.728 7.872c2.4 7.232 2.624 16.352 4.896 23.776l12.8 7.584c2.784 0.768 21.888-8.448 27.968-7.712 1.76 0.224 4.384 1.632 5.664 2.848 1.888 1.824 11.712 18.912 12.512 21.6 2.112 6.976-1.536 9.792-6.112 14.144-2.304 2.208-14.048 11.392-14.4 13.344l0.256 15.136c4.224 5.44 17.792 13.504 20.128 19.36 1.184 2.944 0.96 5.632-0.192 8.576-1.12 2.848-10.528 19.008-12.448 20.608-3.616 3.008-7.232 2.88-11.488 1.824-7.104-1.728-14.528-5.184-21.696-7.072-4.096 2.56-8.096 5.536-12.8 6.912-4.032 10.272-0.768 30.944-15.328 32.416-4.896 0.48-16.992 0.544-21.728-0.16-12.288-1.792-9.408-22.912-13.728-31.552l-13.12-7.616-24.064 7.712c-3.584 0.704-7.328-0.608-9.664-3.424-2.048-2.464-11.328-18.656-12.064-21.472-0.96-3.616-0.288-7.232 2.176-10.112 4.512-5.248 12.928-10.144 17.76-15.296 0.448-0.48 0.928-0.896 0.992-1.6l-0.064-15.136c-6.784-6.080-14.784-11.488-20.288-18.656zM511.872 708.032c14.272 0 25.824-11.552 25.824-25.824s-11.552-25.824-25.824-25.824-25.824 11.552-25.824 25.824 11.552 25.824 25.824 25.824zM788.96 320.416v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-11.84-9.632-21.472-21.472-21.472h-190.976c-5.664 0-11.072-2.24-15.104-6.208l-27.776-27.456-27.648 27.456c-4.032 4-9.44 6.24-15.104 6.24h-191.424c-11.84 0-21.472 9.632-21.472 21.44v21.12c0 11.84-9.6 21.472-21.44 21.472v0c-11.84 0-21.44-9.6-21.472-21.44v-21.152c0-35.488 28.864-64.384 64.384-64.384h182.592l36.48-36.192c4.192-4.16 9.632-6.24 15.104-6.24s10.912 2.080 15.104 6.208l36.608 36.224h182.144c35.488 0 64.384 28.864 64.384 64.352v21.12c0 11.84-9.6 21.472-21.44 21.472z" /> +<glyph unicode="" glyph-name="date-for" d="M768.64 743.136h-74.944v42.048c0 0.576-0.448 1.024-1.024 1.024h-119.456c-0.576 0-1.024-0.448-1.024-1.024v-42.048h-205.696v42.048c0 0.576-0.448 1.024-1.024 1.024h-119.456c-0.576 0-1.024-0.448-1.024-1.024v-42.048h-74.944c-23.648 0-42.208-22.112-42.208-50.336v-450.496c0-28.224 18.528-50.336 42.208-50.336h598.592c23.648 0 42.208 22.112 42.208 50.336v450.496c0 28.224-18.528 50.336-42.208 50.336zM170.848 242.304v344.256h596.992v-287.84l-63.744-63.744h-531.552c-0.768 1.344-1.696 3.904-1.696 7.328zM233.44 511.264h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.84c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.84c0 0.576 0.448 1.024 1.024 1.024zM409.6 511.264h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.84c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.84c0 0.576 0.448 1.024 1.024 1.024zM585.76 511.264h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.84c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.84c0 0.576 0.448 1.024 1.024 1.024zM233.44 383.008h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.296c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.296c0 0.576 0.448 1.024 1.024 1.024zM409.6 383.008h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.296c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.296c0 0.576 0.448 1.024 1.024 1.024zM585.76 383.008h119.456c0.576 0 1.024-0.448 1.024-1.024v-83.296c0-0.576-0.448-1.024-1.024-1.024h-119.456c-0.576 0-1.024 0.448-1.024 1.024v83.296c0 0.576 0.448 1.024 1.024 1.024zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM932.544 404.864c-8.384 8.384-22.016 8.384-30.4 0l-22.784-22.784-9.76 9.76c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.192-40.192 53.184 53.184c8.384 8.384 8.384 22.016 0 30.4z" /> +<glyph unicode="" glyph-name="delete" d="M896 754.4h-597.344c-14.496 0-28-7.296-35.968-19.424l-170.656-260.192c-9.376-14.336-9.376-32.864 0-47.136l170.656-260.192c7.936-12.128 21.472-19.424 35.968-19.424h597.344c23.776 0 43.008 19.232 43.008 43.008v520.32c0 23.776-19.232 43.008-43.008 43.008zM852.992 233.984h-531.104l-142.464 217.216 142.464 217.216h531.104v-434.4zM424.288 323.936c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l62.24 62.24 62.24-62.24c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-62.24 62.24 62.24 62.24c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-62.24-62.24-62.24 62.24c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l62.24-62.24-62.24-62.24c-16.8-16.8-16.8-44.032 0-60.8z" /> +<glyph unicode="" glyph-name="delete-forever" d="M744.416 735.968c-5.344 14.624-18.304 25.504-34.144 27.808l-6.112 24.416c-6.048 24.192-20.224 46.080-39.808 61.664-0.16 0.128-0.384 0.288-0.544 0.416-19.936 15.328-44.64 23.712-69.504 23.712h-164.576c-24.864 0-49.536-8.448-69.504-23.712-0.16-0.128-0.352-0.256-0.512-0.384-19.84-15.712-34.016-37.664-39.904-61.856l-6.048-24.224c-15.84-2.304-28.8-13.184-34.144-27.808-47.872-6.368-84.896-47.392-84.896-96.992v-54.88c0-23.552 11.648-44.416 29.44-57.216l23.392-327.52c-15.52-12.928-25.44-32.384-25.44-54.112v-27.424c0-53.984 43.904-97.888 97.888-97.888h384c53.984 0 97.888 43.904 97.888 97.888v27.424c0 21.728-9.888 41.184-25.44 54.112l23.392 327.52c17.792 12.8 29.44 33.664 29.44 57.216v54.88c0 49.568-37.024 90.624-84.896 96.992zM332.64 215.712l-21.28 297.984h401.376l-21.28-297.984h-358.784zM280.736 639.008c0 6.656 5.216 11.872 11.872 11.872h438.88c6.656 0 11.872-5.216 11.872-11.872v-39.296h-462.592v39.296zM403.424 767.616c1.376 5.664 4.64 10.72 9.472 14.624 5.024 3.744 10.848 5.76 16.864 5.76h164.576c6.016 0 11.808-2.016 16.864-5.76 4.768-3.872 8.096-9.088 9.6-15.008l2.208-8.928c-8.288-4.864-14.752-12.416-18.272-21.472h-194.176c-2.4 6.112-6.112 11.52-10.848 15.904l3.616 14.496s0.032 0.256 0.096 0.352zM715.872 117.856c0-6.656-5.216-11.872-11.872-11.872h-384c-6.656 0-11.872 5.216-11.872 11.872v11.872h407.712v-11.872zM609.824 383.488c-30.24 4.96-46.88 11.264-57.344 21.728s-16.768 27.104-21.728 57.344c-1.504 9.088-9.248 15.712-18.464 15.712s-16.992-6.624-18.464-15.712c-4.96-30.24-11.264-46.88-21.728-57.344s-27.104-16.768-57.344-21.728c-9.088-1.504-15.712-9.248-15.712-18.464s6.624-16.992 15.712-18.464c30.24-4.96 46.88-11.264 57.344-21.728 10.496-10.496 16.768-27.104 21.728-57.344 1.504-9.088 9.248-15.712 18.464-15.712s16.992 6.624 18.464 15.712c4.96 30.24 11.264 46.88 21.728 57.344 10.496 10.496 27.104 16.768 57.344 21.728v0c9.088 1.504 15.712 9.248 15.712 18.464s-6.624 16.992-15.712 18.464zM458.72 286.592c-15.072 3.584-21.216 9.728-24.8 24.8-0.928 4-6.688 4-7.648 0-3.584-15.072-9.728-21.216-24.8-24.8-4-0.928-4-6.688 0-7.648 15.072-3.584 21.216-9.728 24.8-24.8 0.928-4 6.688-4 7.648 0 3.584 15.072 9.728 21.216 24.8 24.8 4 0.928 4 6.688 0 7.648zM565.248 442.752c15.072-3.584 21.216-9.728 24.8-24.8 0.928-4 6.688-4 7.648 0 3.584 15.072 9.728 21.216 24.8 24.8 4 0.928 4 6.688 0 7.648-15.072 3.584-21.216 9.728-24.8 24.8-0.928 4-6.688 4-7.648 0-3.584-15.072-9.728-21.216-24.8-24.8-4-0.928-4-6.688 0-7.648z" /> +<glyph unicode="" glyph-name="dentistry" d="M804.192 762.272c-49.632 42.592-112.512 69.024-164.192 69.024-39.2 0-80.032-17.152-116.064-32.352-7.648-3.2-15.072-6.304-21.984-9.088-30.24 22.784-67.584 41.376-117.92 41.376-51.68 0-114.56-26.464-164.192-69.024-59.424-50.976-92.16-117.504-92.16-187.296 0-61.824 32.416-119.008 61.056-169.376 18.656-32.864 37.92-66.816 37.92-86.624 0-32.672 0-100.64 11.872-161.568 22.048-113.568 75.52-137.44 116.48-137.44 28.32 0 53.888 10.848 73.888 31.328 51.232 52.448 51.040 156.448 50.72 170.752 0.032 85.6 12.928 131.968 23.776 155.776 2.976 6.56 5.888 11.68 8.576 15.616 2.688-3.968 5.6-9.056 8.576-15.616 10.848-23.808 23.712-70.176 23.776-155.776-0.288-14.304-0.48-118.304 50.72-170.752 20-20.48 45.568-31.328 73.888-31.328 40.96 0 94.432 23.84 116.48 137.44 11.872 60.928 11.872 128.896 11.872 161.568 0 19.744 19.296 53.76 37.92 86.624 28.64 50.432 61.056 107.552 61.056 169.376 0 69.76-32.736 136.288-92.16 187.296zM760.48 448.032c-25.248-44.544-49.152-86.56-49.152-129.056 0-29.984 0-92.384-10.272-145.184-9.056-46.592-22.944-67.84-32.096-67.84-5.152 0-8.544 1.44-12.32 5.376-19.232 19.616-26.976 75.744-26.336 109.216 0 0.352 0 0.672 0 0.992 0 96.736-14.944 169.344-44.32 215.808-27.040 42.752-58.144 50.816-67.040 52.256-2.304 0.384-4.64 0.544-6.944 0.544s-4.64-0.16-6.944-0.544c-8.864-1.44-39.968-9.568-67.040-52.256-29.408-46.464-44.32-119.072-44.32-215.808 0-0.288 0-0.64 0-0.928 0.672-33.568-7.040-89.696-26.336-109.312-3.84-3.936-7.168-5.376-12.32-5.376-9.088 0-23.008 21.216-32.096 67.84-10.272 52.832-10.272 115.2-10.272 145.184 0 42.464-23.904 84.512-49.152 129.056-24.544 43.168-49.888 87.84-49.888 126.944 0 59.776 38.944 102.112 62.176 122.016 38.88 33.376 82.336 48.288 108.16 48.288 41.248 0 65.888-21.344 102.624-56.16 29.088-27.552 62.112-58.848 110.304-72.96 22.784-6.656 46.688 6.4 53.344 29.184s-6.4 46.688-29.184 53.344c-17.632 5.152-32.736 15.104-47.712 27.68 24.032 9.856 48.8 18.912 66.656 18.912 25.856 0 69.28-14.944 108.16-48.288 23.2-19.936 62.176-62.304 62.176-122.016 0-39.136-25.344-83.744-49.888-126.944z" /> +<glyph unicode="" glyph-name="desk" d="M960 512v128c0 17.664-14.336 32-32 32h-96v128c0 17.664-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32v-288h-199.008l-16 64h87.008c35.296 0 64 28.704 64 64v224c0 35.296-28.704 64-64 64h-384c-35.296 0-64-28.704-64-64v-224c0-35.296 28.704-64 64-64h87.008l-16-64h-135.008c-17.664 0-32-14.336-32-32s14.336-32 32-32v-448c0-17.664 14.336-32 32-32s32 14.336 32 32v320h448v-320c0-17.664 14.336-32 32-32s32 14.336 32 32v64h256v-64c0-17.664 14.336-32 32-32s32 14.336 32 32v448c17.664 0 32 14.336 32 32s-14.336 32-32 32zM896 608v-96h-64v96h64zM704 768h64v-256h-64v256zM127.968 864h384.032v-224h-384l-0.032 224zM280.992 576h78.016l16-64h-110.016l16 64zM128 448h768v-64h-768v64zM896 320v-64h-256v64h256zM640 128v64h256v-64h-256z" /> +<glyph unicode="" glyph-name="desktop" d="M938.656 702.112c0 71.264-57.76 128.992-128.992 128.992h-595.36c-71.264 0-128.992-57.76-128.992-128.992v-340.352s0-0.128 0-0.224c0-0.096 0-0.128 0-0.224v-84.128c0-71.264 57.76-128.992 128.992-128.992h228.192l-21.248-42.528h-122.592c-23.552 0-42.656-19.104-42.656-42.656s19.104-42.656 42.656-42.656h144.032c1.76-0.224 3.488-0.352 5.28-0.352h128c1.792 0 3.552 0.128 5.28 0.352h144.032c23.552 0 42.656 19.104 42.656 42.656s-19.104 42.656-42.656 42.656h-122.592l-21.248 42.528h228.192c71.264 0 128.992 57.76 128.992 128.992v84.128s0 0.128 0 0.224c0 0.096 0 0.128 0 0.224v340.352zM171.36 702.112c0 23.712 19.296 43.008 43.008 43.008h595.328c23.712 0 43.008-19.296 43.008-43.008v-297.376h-681.344v297.376zM852.64 277.216c0-23.712-19.296-43.008-43.008-43.008h-595.328c-23.712 0-43.008 19.296-43.008 43.008v41.12h681.344v-41.12zM512 255.008c11.776 0 21.344 9.568 21.344 21.344s-9.568 21.344-21.344 21.344-21.344-9.568-21.344-21.344 9.568-21.344 21.344-21.344z" /> +<glyph unicode="" glyph-name="destruction" d="M562.944 296.192c83.328 83.328 83.328 218.88 0 302.176-47.52 47.52-112.096 67.936-174.208 61.216-0.896 1.056-1.792 2.080-2.816 3.104l-25.824 25.824c-37.888 37.888-97.28 41.344-139.136 10.496l-61.408 61.408c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l61.408-61.408c-13.536-18.304-20.864-40.32-20.864-63.488 0-28.576 11.136-55.456 31.36-75.648l25.824-25.824c0.928-0.928 1.952-1.888 2.976-2.72-0.8-7.68-1.248-15.392-1.248-23.2 0-57.088 22.24-110.72 62.592-151.072 41.632-41.632 96.384-62.464 151.072-62.464s109.44 20.832 151.072 62.464zM284.416 633.824c3.296 0 6.528-0.768 9.504-2.272l-66.4-66.4c-1.92 3.744-2.272 7.328-2.272 9.504 0 3.232 0.8 9.504 6.144 14.848l19.072 19.072s0 0 0 0 0 0 0 0l19.072 19.072c4.096 4.096 9.472 6.144 14.848 6.144zM284.16 447.264c0 34.080 13.28 66.176 37.376 90.272 24.864 24.864 57.6 37.344 90.272 37.344s65.376-12.448 90.272-37.344c49.792-49.792 49.792-130.784 0-180.576s-130.784-49.792-180.576 0c-24.096 24.096-37.376 56.192-37.376 90.272zM938.368 497.024c-3.040 17.504-16.512 31.36-33.92 34.816l-162.656 32.512 66.144 165.344c6.624 16.544 2.336 35.456-10.752 47.52s-32.256 14.88-48.256 6.944l-121.888-60.256-26.848 116.64c-3.296 14.24-13.6 25.856-27.36 30.816-13.792 4.96-29.088 2.56-40.704-6.368l-131.616-101.024c-18.848-14.464-22.4-41.472-7.936-60.288 14.464-18.848 41.472-22.4 60.288-7.936l78.56 60.288 24.032-104.448c2.944-12.8 11.616-23.584 23.456-29.216s25.696-5.504 37.472 0.288l69.984 34.592-43.616-109.056c-4.736-11.872-3.968-25.216 2.144-36.448s16.864-19.168 29.344-21.664l104.288-20.864-117.984-70.784c-11.36-6.816-18.944-18.464-20.576-31.616s2.912-26.272 12.288-35.68l69.632-69.632-116 23.584c-22.752 4.608-45.056-9.632-50.432-32.224l-28.416-119.936-76.544 51.040c-19.744 13.184-46.464 7.84-59.648-11.936s-7.84-46.464 11.936-59.648l128-85.344c7.168-4.768 15.488-7.2 23.84-7.2 5.344 0 10.656 0.992 15.744 2.976 13.088 5.152 22.816 16.384 26.080 30.080l33.056 139.552 215.168-43.776c18.592-3.808 37.472 5.088 46.464 21.792s5.92 37.344-7.456 50.784l-131.712 131.712 166.112 99.68c15.232 9.12 23.296 26.72 20.256 44.192z" /> +<glyph unicode="" glyph-name="diamond" d="M991.616 535.040c1.216 22.432-3.904 44.96-15.392 65.376l-74.016 131.232c-24.192 42.4-71.712 68.768-124.064 68.768h-532.288c-52.352 0-99.872-26.336-124.16-68.896l-73.952-131.104c-11.488-20.352-16.608-42.912-15.36-65.344 0-0.288-0.064-0.544-0.064-0.832 0-0.352 0.096-0.672 0.096-0.992 0.064-0.576-0.032-1.184 0-1.792 0.064-0.896 0.32-1.76 0.448-2.688 0.064-0.48 0.128-0.96 0.224-1.408 2.72-22.208 11.36-43.424 25.6-61.6l359.424-454.048c22.048-27.872 56.256-43.84 93.888-43.84s71.808 16 93.888 43.84l359.488 454.112c14.208 18.016 22.816 39.264 25.568 61.504 0.096 0.48 0.16 0.96 0.256 1.472 0.096 0.896 0.352 1.76 0.448 2.624 0.064 0.576-0.032 1.184 0 1.76 0 0.352 0.096 0.672 0.096 0.992 0 0.288-0.096 0.544-0.096 0.832zM844.608 416.416l-93.024 85.792h160.96l-67.904-85.792zM512 111.84l-117.472 390.4h234.912l-117.472-390.4zM111.456 502.208h160.96l-93.024-85.824-67.936 85.792zM611.936 736.352l23.040-170.176h-245.984l23.040 170.144h199.904zM846.528 700.064l73.92-131.072c0.512-0.896 0.864-1.824 1.312-2.752h-222.208l-23.040 170.144h101.6c28.96 0 55.84-14.304 68.384-36.32zM177.376 699.904c12.64 22.144 39.52 36.448 68.48 36.448h101.6l-23.040-170.176h-222.208c0.448 0.896 0.8 1.824 1.312 2.752l73.856 130.944zM219.232 366.112l116.96 107.904 124.096-412.448-241.088 304.544zM563.712 61.568l124.096 412.448 116.96-107.904-241.088-304.544zM512 832.192c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32c0-17.664 14.336-32 32-32zM105.632 809.6c6.272-6.272 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.512 12.512 12.512 32.768 0 45.248l-32 31.968c-12.48 12.512-32.768 12.512-45.28 0s-12.512-32.768 0-45.248l32-31.968zM895.712 800.192c8.192 0 16.384 3.136 22.624 9.376l32 31.968c12.48 12.48 12.48 32.736 0 45.248s-32.736 12.512-45.28 0l-32-31.968c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.272 14.432-9.376 22.624-9.376z" /> +<glyph unicode="" glyph-name="distance" d="M896 617.984c-23.776 0-43.008-19.232-43.008-43.008v-256c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v256c0 23.776-19.232 43.008-43.008 43.008zM128 617.984c-23.776 0-43.008-19.232-43.008-43.008v-256c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v256c0 23.776-19.232 43.008-43.008 43.008zM803.744 423.136c0.416 0.608 0.768 1.248 1.152 1.888 0.352 0.608 0.736 1.152 1.024 1.76 0.352 0.64 0.64 1.28 0.928 1.952 0.288 0.64 0.608 1.248 0.864 1.888s0.48 1.28 0.736 1.92c0.256 0.672 0.512 1.376 0.736 2.048 0.224 0.64 0.352 1.28 0.512 1.952 0.16 0.736 0.384 1.408 0.512 2.144 0.16 0.768 0.256 1.536 0.352 2.272 0.096 0.64 0.224 1.248 0.256 1.888 0.288 2.816 0.288 5.664 0 8.48-0.032 0.64-0.16 1.248-0.256 1.888-0.128 0.768-0.224 1.536-0.352 2.272s-0.352 1.408-0.512 2.144c-0.16 0.64-0.288 1.312-0.512 1.952-0.224 0.672-0.48 1.376-0.736 2.048-0.224 0.64-0.416 1.28-0.736 1.92-0.256 0.64-0.544 1.248-0.864 1.888s-0.608 1.312-0.928 1.952c-0.288 0.608-0.672 1.152-1.024 1.76-0.384 0.64-0.736 1.28-1.152 1.888-0.416 0.64-0.896 1.248-1.376 1.888-0.384 0.512-0.736 1.024-1.152 1.504-0.896 1.12-1.824 2.144-2.848 3.168l-128 128c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l54.624-54.624h-304.384l54.624 54.624c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-128-128c-1.024-1.024-1.952-2.048-2.848-3.168-0.384-0.48-0.768-1.024-1.12-1.504-0.48-0.608-0.928-1.248-1.376-1.888-0.416-0.608-0.768-1.248-1.152-1.888-0.352-0.608-0.736-1.152-1.024-1.76-0.352-0.64-0.64-1.28-0.928-1.952-0.288-0.64-0.608-1.248-0.864-1.888s-0.48-1.28-0.736-1.92c-0.256-0.672-0.512-1.376-0.736-2.048-0.224-0.64-0.352-1.28-0.512-1.952-0.16-0.736-0.384-1.408-0.512-2.144-0.128-0.768-0.256-1.504-0.352-2.272-0.096-0.64-0.224-1.248-0.256-1.888-0.288-2.816-0.288-5.664 0-8.48 0.032-0.64 0.16-1.248 0.256-1.888 0.128-0.768 0.224-1.536 0.352-2.272s0.352-1.408 0.512-2.144c0.16-0.64 0.288-1.312 0.512-1.952 0.224-0.672 0.48-1.376 0.736-2.048 0.224-0.64 0.416-1.28 0.736-1.92 0.256-0.64 0.544-1.248 0.864-1.888s0.608-1.312 0.928-1.952c0.288-0.608 0.672-1.152 1.024-1.76 0.384-0.64 0.736-1.248 1.152-1.888s0.896-1.248 1.376-1.888c0.384-0.512 0.736-1.024 1.12-1.504 0.896-1.12 1.824-2.144 2.848-3.168l128-128c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-54.624 54.624h304.384l-54.624-54.624c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l128 128c1.024 1.024 1.952 2.048 2.848 3.168 0.384 0.512 0.768 1.024 1.152 1.504 0.48 0.608 0.928 1.248 1.376 1.888z" /> +<glyph unicode="" glyph-name="diversity" d="M879.968 304.384c-11.68 6.688-24.032 11.36-36.512 14.048 7.296 46.88-13.472 95.2-55.648 121.6-1.312 0.864-2.688 1.632-4 2.432-27.36 15.744-61.152 19.84-92.64 11.296-22.912-6.24-36.448-29.856-30.208-52.768s29.856-36.448 52.768-30.208c9.6 2.592 19.488 1.568 27.232-2.848 0.416-0.256 0.8-0.48 1.248-0.736 15.104-9.472 20.896-29.44 13.216-45.44-7.2-15.008-37.024-24.096-49.76-25.984l-56.864-6.4 22.944-52.832c4.768-11.904 12.064-42.24 2.72-56.064-9.952-14.752-30.080-19.84-45.92-11.616-0.416 0.224-0.864 0.48-1.248 0.672-7.712 4.384-13.6 12.416-16.224 22.016l-43.008 158.432 116.064 116.064c23.072 23.072 36.256 54.4 36.224 85.984 0 1.536 0 3.104-0.096 4.64-1.952 49.696-33.536 91.744-77.856 108.704 3.872 12.192 5.984 25.216 5.984 38.688 0 70.784-57.568 128.352-128.352 128.352s-128.352-57.568-128.352-128.352c0-13.472 2.080-26.464 5.984-38.688-44.32-16.992-75.904-59.008-77.856-108.704-0.032-1.568-0.096-3.104-0.096-4.64-0.032-31.584 13.152-62.88 36.224-85.984 16.8-16.8 44.032-16.8 60.8 0 16.8 16.8 16.8 44.032 0 60.8-7.040 7.040-11.040 16.128-11.040 24.992 0 0.48 0 0.992 0 1.44 0.672 17.824 15.136 32.768 32.896 34.048 16.608 1.248 39.392-20.192 47.328-30.24l33.696-45.184 34.592 45.28c8.224 10.752 31.264 31.328 47.232 30.176 17.76-1.28 32.16-16.256 32.896-34.048 0-0.48 0-0.992 0-1.44 0-8.864-4-18.016-11.040-25.056l-116.256-116.256-159.104 41.472c-31.584 8.224-65.28 3.744-92.512-12.256-1.312-0.768-2.688-1.632-3.968-2.432-41.856-26.848-62.112-75.296-54.4-122.112-12.64-2.912-24.864-7.712-36.384-14.464v0c-61.056-35.808-81.568-114.592-45.792-175.616 17.312-29.568 45.152-50.592 78.336-59.264 10.784-2.816 21.728-4.224 32.608-4.224 22.528 0 44.768 5.984 64.736 17.696 11.52 6.752 21.664 15.104 30.368 24.704 21.664-17.312 48.48-26.592 75.776-26.592 19.424 0 39.072 4.64 57.312 14.432 1.408 0.768 2.784 1.536 4.096 2.304 27.264 15.904 47.616 43.168 55.84 74.752 5.984 23.008-7.776 46.464-30.752 52.448s-46.464-7.776-52.448-30.752c-2.528-9.6-8.32-17.696-16.032-22.176-0.384-0.224-0.8-0.48-1.248-0.672-15.744-8.416-35.936-3.488-45.984 11.136-9.472 13.728-2.528 44.128 2.176 56.096l22.752 52.512-57.216 6.304c-12.704 1.76-42.656 10.528-50.048 25.472-7.84 15.968-2.272 35.968 12.768 45.6 0.384 0.256 0.8 0.512 1.184 0.736 7.648 4.512 17.536 5.632 27.168 3.168l158.848-41.376 43.008-158.432c8.544-31.488 29.184-58.528 56.608-74.144 1.376-0.768 2.72-1.536 4.096-2.272 17.92-9.344 37.216-13.824 56.224-13.824 27.744 0 54.944 9.568 76.768 27.36 8.8-9.504 19.072-17.76 30.624-24.416 20.064-11.488 41.952-16.928 63.584-16.928 44.544 0 87.904 23.168 111.584 64.512 35.168 61.408 13.824 140-47.584 175.136zM519.968 746.368c23.328 0 42.336-18.976 42.336-42.336s-18.976-42.336-42.336-42.336-42.336 18.976-42.336 42.336 18.976 42.336 42.336 42.336zM266.528 179.328c-2.848-10.912-9.824-20.128-19.552-25.856-9.76-5.728-21.152-7.296-32.096-4.448s-20.128 9.824-25.856 19.552c-11.808 20.128-5.024 46.112 15.104 57.952v0c9.76 5.728 21.152 7.296 32.096 4.448s20.128-9.824 25.856-19.552c5.728-9.76 7.296-21.152 4.448-32.096zM852.896 172c-5.632-9.824-14.72-16.864-25.632-19.808s-22.304-1.504-32.128 4.128c-9.824 5.632-16.864 14.72-19.808 25.632s-1.504 22.304 4.128 32.128c5.632 9.824 14.72 16.864 25.632 19.808 3.712 1.024 7.424 1.504 11.168 1.504 7.296 0 14.464-1.888 20.992-5.632 9.824-5.632 16.864-14.72 19.808-25.632s1.504-22.304-4.128-32.128z" /> +<glyph unicode="" glyph-name="done-all" d="M501.344 331.904l215.424 215.424s18.592 18.592 18.592 18.592c16.8 16.8 16.8 44.032 0 60.8s-44.032 16.8-60.8 0l-49.024-49.024s0 0 0 0l-184.96-184.96 60.8-60.8zM926.432 625.792c-16.8 16.8-44.032 16.8-60.8 0l-353.568-353.568-113.568 113.568c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l17.568-17.568-35.2-35.2-98.56 98.56c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l159.36-159.36 96 96 96-96 414.432 414.432c16.8 16.8 16.8 44.032 0 60.8z" /> +<glyph unicode="" glyph-name="done-outline" d="M916 726.144l-29.696 29.696c-16.256 16.256-37.856 25.184-60.8 25.184s-44.576-8.96-60.8-25.184l-329.824-329.824-90.272 90.272c-33.536 33.536-88.096 33.536-121.6 0l-29.696-29.696c-16.256-16.256-25.184-37.856-25.184-60.8s8.96-44.576 25.184-60.8l180.832-180.832c16.768-16.768 38.784-25.12 60.8-25.12s44.032 8.352 60.8 25.12l420.32 420.32c16.256 16.256 25.184 37.856 25.184 60.8s-8.96 44.576-25.184 60.8zM434.912 245.024l-180.832 180.832 29.696 29.696 151.136-151.072 390.624 390.624 29.696-29.696-420.32-420.32z" /> +<glyph unicode="" glyph-name="download" d="M960 466.816c-17.664 0-32-14.336-32-32v-349.312c0-26.816-21.824-48.64-48.64-48.64h-734.72c-26.816 0-48.64 21.824-48.64 48.64v349.312c0 17.664-14.336 32-32 32s-32-14.336-32-32v-349.312c0-62.112 50.528-112.64 112.64-112.64h734.72c62.112 0 112.64 50.528 112.64 112.64v349.312c0 17.664-14.336 32-32 32zM491.616 250.624c1.472-1.504 3.136-2.816 4.896-4 0.768-0.544 1.664-0.896 2.496-1.344 0.992-0.544 1.984-1.152 3.040-1.6s2.176-0.672 3.232-1.024c0.896-0.288 1.792-0.64 2.72-0.832 2.080-0.416 4.16-0.64 6.272-0.64s4.192 0.224 6.272 0.64c0.928 0.192 1.824 0.544 2.72 0.832 1.088 0.32 2.208 0.576 3.264 1.024s2.048 1.024 3.040 1.6c0.832 0.448 1.664 0.832 2.496 1.344 1.76 1.184 3.424 2.496 4.896 4l250.464 250.464c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-195.84-195.84v540.672c0 17.664-14.336 32-32 32s-32-14.336-32-32v-540.672l-195.84 195.84c-12.48 12.48-32.768 12.48-45.248 0s-12.512-32.768 0-45.248l250.464-250.464z" /> +<glyph unicode="" glyph-name="dribbble" d="M813.696 741.952c-83.328 83.296-192.512 124.96-301.696 124.96s-218.4-41.664-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.4 41.664 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM512 780.928c76.768 0 149.696-25.216 209.248-71.776-48.192-46.816-102.592-84.736-162.24-112.928-0.096-0.064-0.256-0.128-0.352-0.16-37.664 68.96-77.6 131.52-113.6 178.304 21.792 4.32 44.224 6.56 66.976 6.56zM271.136 681.152c26.048 26.048 55.552 47.328 87.52 63.488 31.936-37.44 74.816-99.648 119.2-179.872-36.448-11.264-74.4-19.424-113.6-24.352-76.48-9.6-141.12-4.736-177.952 0.128 16.096 52.544 44.896 100.672 84.864 140.608zM171.328 440.256c0 5.152 0.128 10.304 0.352 15.424 24.672-3.392 60.16-6.816 103.104-6.816 29.184 0 61.76 1.568 96.672 5.792 50.784 6.144 99.84 17.152 146.72 32.768 1.504-3.072 3.040-6.144 4.544-9.28 3.616-7.424 7.104-14.816 10.56-22.208-39.488-13.6-77.056-31.072-112.352-52.288-69.6-41.824-130.4-98.208-181.28-168.064-44.288 58.688-68.288 129.824-68.288 204.64zM512 99.616c-77.696 0-151.392 25.856-211.328 73.44 45.408 65.504 100.064 117.856 162.816 155.904 32.576 19.744 67.424 35.744 104.288 47.904 38.624-95.392 62.88-183.232 69.792-253.44-39.456-15.616-81.888-23.808-125.6-23.808zM617.568 478.592c-6.144 13.408-12 25.856-17.472 37.088-0.64 1.312-1.312 2.656-1.952 3.968 67.648 32.288 129.28 75.36 183.776 128.512 36.864-47.68 60.16-103.776 67.904-163.552-46.432 6.496-117.952 11.424-199.904-0.48-10.88-1.6-21.664-3.424-32.384-5.536zM752.864 199.36c-10.88-10.88-22.432-20.928-34.432-30.144-12.352 77.952-38.784 158.88-66.24 228.192 2.336 0.384 4.608 0.768 6.944 1.12 81.12 12.256 151.616 5.312 190.88-1.024-9.312-74.816-42.976-144-97.12-198.176z" /> +<glyph unicode="" glyph-name="dual-button" d="M682.656 361.824h-170.688v13.216c60.128 0 109.056 48.928 109.056 109.056s-48.928 109.056-109.056 109.056v5.664h340.384c23.968 0 43.456-20.32 43.456-45.28v-111.36c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v111.36c0 48.672-38.784 88.288-86.464 88.288h-680.736c-47.68 0-86.464-39.616-86.464-88.288v-146.432c0-48.672 38.784-88.288 86.464-88.288h511.040c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM512 418.048c-36.416 0-66.048 29.632-66.048 66.048s29.632 66.048 66.048 66.048 66.048-29.632 66.048-66.048-29.632-66.048-66.048-66.048zM552.288 502.496h-27.264c-0.96 0-1.824 0.608-2.112 1.536l-8.416 25.92c-0.384 1.216-1.472 1.824-2.496 1.824s-2.112-0.608-2.496-1.824l-8.416-25.92c-0.288-0.928-1.152-1.536-2.112-1.536h-27.264c-2.528 0-3.616-3.264-1.568-4.736l22.048-16.032c0.768-0.576 1.12-1.568 0.832-2.496l-8.448-25.952c-0.768-2.4 1.984-4.416 4.032-2.912l22.048 16.032c0.384 0.288 0.832 0.448 1.312 0.448s0.928-0.128 1.312-0.448l22.048-16.032c2.048-1.504 4.8 0.512 4.032 2.912l-8.416 25.952c-0.288 0.928 0.032 1.92 0.832 2.496l22.048 16.032c2.048 1.472 0.992 4.736-1.536 4.736zM968.544 359.488l-249.312 99.136c-1.952 0.768-3.936 1.152-5.888 1.152-3.968 0-7.744-1.568-10.784-4.608-4.512-4.512-5.792-10.752-3.456-16.672l99.136-249.312c3.68-9.312 11.936-11.68 18.432-10.784s13.856 5.376 14.944 15.296l9.984 89.856c1.92 17.28 15.328 30.688 32.608 32.608l89.856 9.984c9.952 1.088 14.432 8.448 15.296 14.944s-1.504 14.752-10.784 18.432z" /> +<glyph unicode="" glyph-name="duplicator" d="M614.912 235.072c22.752 0 41.216 18.432 41.216 41.216v343.424c0 22.752-18.432 41.184-41.216 41.184h-205.856c-22.752 0-41.184-18.432-41.184-41.184v-343.424c0-22.752 18.432-41.216 41.184-41.216h205.856zM618.464 401.44v-113.056c0-8.256-6.688-14.944-14.944-14.944h-107.040l121.952 128zM785.76 332.576c-11.84 0-21.472-9.6-21.472-21.472v-126.624c0-18.976-15.456-34.432-34.432-34.432h-435.712c-18.976 0-34.432 15.456-34.432 34.432v206.816l44.448-51.488c4.256-4.928 10.24-7.424 16.256-7.424 4.96 0 9.952 1.728 14.016 5.216 8.96 7.744 9.952 21.28 2.208 30.272l-82.144 95.136c-4.064 4.736-10.016 7.424-16.256 7.424s-12.16-2.72-16.256-7.424l-82.144-95.136c-7.744-8.96-6.752-22.528 2.208-30.272s22.528-6.752 30.272 2.208l44.448 51.488v-206.784c0-42.656 34.688-77.344 77.344-77.344h435.712c42.656 0 77.344 34.688 77.344 77.344v126.624c0 11.84-9.6 21.472-21.472 21.472zM884.96 554.4c-8.96 7.744-22.528 6.752-30.272-2.208l-47.488-55.008v214.304c0 42.656-34.688 77.344-77.344 77.344h-435.712c-42.656 0-77.344-34.688-77.344-77.344v-126.624c0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472v126.624c0 18.976 15.456 34.432 34.432 34.432h435.712c18.976 0 34.432-15.456 34.432-34.432v-207.264l-41.408 47.968c-7.744 8.96-21.312 9.952-30.272 2.208s-9.952-21.28-2.208-30.272l82.144-95.136c4.064-4.736 10.016-7.424 16.256-7.424v0c6.24 0 12.16 2.72 16.256 7.424l82.144 95.136c7.744 8.96 6.752 22.528-2.208 30.272z" /> +<glyph unicode="" glyph-name="earthquake" d="M896 491.008h-128c-19.744 0-36.96-13.44-41.728-32.608l-43.68-175.2-64.896 259.584c-4.192 16.736-17.952 29.344-34.976 32.032s-34.048-5.024-43.168-19.68l-53.024-84.864-60.8 243.168c-4.864 19.488-22.56 33.056-42.752 32.544-20.096-0.48-37.216-14.848-41.12-34.56l-60.768-303.776-29.28 58.592c-7.296 14.56-22.176 23.776-38.432 23.776h-85.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h58.752l73.44-146.912c8.224-16.416 25.984-25.856 44.16-23.392 18.208 2.432 32.864 16.16 36.448 34.176l47.84 239.136 38.944-155.808c4.192-16.736 17.952-29.344 34.976-32.032s34.048 5.024 43.168 19.68l53.024 84.864 82.144-328.48c4.768-19.168 21.984-32.544 41.728-32.544v0c19.744 0 36.96 13.44 41.728 32.608l77.216 309.728h94.368c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="echo" d="M587.648 522.656c-20.224 20.224-47.072 31.36-75.648 31.36s-55.456-11.136-75.648-31.36c-20.224-20.224-31.36-47.072-31.36-75.648s11.136-55.456 31.36-75.648c20.224-20.224 47.072-31.36 75.648-31.36s55.456 11.136 75.648 31.36c20.224 20.224 31.36 47.072 31.36 75.648s-11.136 55.456-31.36 75.648c0 0 0 0 0 0zM526.848 432.16c-5.344-5.344-11.616-6.144-14.848-6.144s-9.504 0.8-14.848 6.144c-5.344 5.344-6.144 11.616-6.144 14.848s0.8 9.504 6.144 14.848c5.344 5.344 11.616 6.144 14.848 6.144s9.504-0.8 14.848-6.144v0c5.344-5.344 6.144-11.616 6.144-14.848s-0.8-9.504-6.144-14.848zM693.248 628.256c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8 66.432-66.432 66.432-174.496 0-240.896-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c99.968 99.968 99.968 262.56 0 362.528zM391.552 628.256c-16.8 16.8-44.032 16.8-60.8 0-99.968-99.968-99.968-262.56 0-362.528 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8-66.432 66.432-66.432 174.496 0 240.896 16.8 16.8 16.8 44.032 0 60.8zM826.4 718.752c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8 56.352-56.352 87.392-131.296 87.392-210.944s-31.008-154.624-87.392-210.944c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c149.856 149.856 149.856 393.696 0 543.52zM171.008 447.008c0 79.712 31.008 154.624 87.392 210.944 16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0-149.856-149.856-149.856-393.696 0-543.52 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8-56.352 56.352-87.392 131.296-87.392 210.944z" /> +<glyph unicode="" glyph-name="elementor" d="M813.696 741.952c-166.624 166.624-436.768 166.624-603.424 0s-166.624-436.768 0-603.392c166.624-166.624 436.768-166.624 603.424 0s166.624 436.768 0 603.392zM405.408 262.4h-71.040v355.296h71.040v-355.296zM689.6 262.4h-213.184v71.040h213.184v-71.040zM689.6 404.544h-213.184v71.040h213.184v-71.040zM689.6 546.656h-213.184v71.040h213.184v-71.040z" /> +<glyph unicode="" glyph-name="email-form" d="M503.392 310.976v185.28c0 20-16.256 36.256-36.256 36.256h-303.040c-20 0-36.256-16.256-36.256-36.256v-186.496c0-9.696 3.776-18.848 10.656-25.696 6.848-6.816 15.936-10.56 25.568-10.56h0.16l303.040 1.216c19.904 0.096 36.096 16.352 36.096 36.256zM223.424 427.744l-52.608-41.568v80.192l52.608-38.592zM211.936 489.504h204.224l-100.736-75.968-103.488 75.968zM460.384 468.992v-82.848l-53.632 42.4 53.632 40.448zM170.848 316.544v14.816l88.544 69.984 32.736-24.032c7.008-5.152 15.168-7.712 23.36-7.712 8.352 0 16.672 2.688 23.744 8l32.032 24.16 89.12-70.464v-13.632l-289.568-1.152zM661.984 459.488c-7.552 4.608-16.672 7.008-27.040 7.008-30.976 0-53.472-23.552-53.472-56.032 0-32.704 22.496-56.416 53.472-56.416 13.888 0 25.536 4.256 34.208 12.384 5.6-7.968 14.848-12.384 26.528-12.384 27.136 0 43.968 23.296 43.968 60.768 0 53.664-41.536 92.64-98.752 92.64-59.2 0-100.544-39.456-100.544-96 0-56.864 41.024-96.576 99.744-96.576 9.184 0 19.168 1.216 28.128 3.392 6.112 1.504 11.168 5.408 14.24 10.976 3.136 5.696 3.744 12.48 1.664 18.656l-2.208 6.592-6.176-3.136c-10.048-5.12-23.040-8.064-35.648-8.064-41.6 0-69.568 27.392-69.568 68.16 0 40.544 28.256 67.776 70.336 67.776 18.368 0 34.080-5.024 45.92-13.92h-24.832v-5.824zM695.936 456.832c9.536-10.976 14.88-25.472 14.88-42.4 0-18.656-3.968-29.792-10.624-29.792-1.504 0-4.288 0-4.288 7.456v64.768zM639.104 385.216c-14.336 0-23.264 9.664-23.264 25.248 0 15.328 8.928 24.864 23.264 24.864s23.264-9.536 23.264-24.864c0-15.584-8.928-25.248-23.264-25.248zM779.296 621.312h-526.784c-21.568 0-39.104-17.536-39.104-39.104 0-11.872 9.632-21.504 21.504-21.504 10.528 0 19.328 7.584 21.152 17.6h519.328v-299.616l-47.072-47.072h-472.256c-1.824 10.016-10.592 17.6-21.152 17.6-11.872 0-21.504-9.632-21.504-21.504 0-21.568 17.536-39.104 39.104-39.104h526.784c21.568 0 39.104 17.536 39.104 39.104v354.496c0 21.568-17.536 39.104-39.104 39.104zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM932.544 404.864c-8.384 8.384-22.016 8.384-30.4 0l-22.784-22.784-9.76 9.76c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.192-40.192 53.184 53.184c8.384 8.384 8.384 22.016 0 30.4z" /> +<glyph unicode="" glyph-name="envelope" d="M864 800h-704c-70.56 0-128-57.44-128-128v-448c0-70.592 57.44-128 128-128h704c70.592 0 128 57.408 128 128v448c0 70.56-57.408 128-128 128zM554.528 407.968c-29.856-20.928-70.144-20.96-100.096-0.224l-284.128 328.256h682.432l-298.208-328.032zM928 224c0-35.296-28.704-64-64-64h-704c-35.296 0-64 28.704-64 64v448c0 14.112 4.736 27.040 12.48 37.632l202.72-234.24-145.184-200.672c-10.368-14.336-7.136-34.336 7.168-44.672 5.664-4.096 12.256-6.080 18.72-6.080 9.92 0 19.68 4.576 25.952 13.248l136.352 188.48 54.208-62.656c1.504-1.728 3.2-3.296 4.992-4.672 26.72-20.032 58.784-30.048 90.848-30.048s64.096 10.016 90.848 30.048c1.6 1.216 3.136 2.592 4.48 4.096l60.64 66.688 136.96-191.744c6.24-8.736 16.096-13.408 26.048-13.408 6.432 0 12.928 1.952 18.592 5.952 14.4 10.304 17.696 30.272 7.456 44.64l-145.024 203.040 211.040 232.16c7.808-10.624 12.576-23.616 12.576-37.76v-448z" /> +<glyph unicode="" glyph-name="envelope-check" d="M512 231.712h-340.992v354.848l274.592-181.728c7.2-4.768 15.456-7.136 23.712-7.136s16.544 2.4 23.712 7.136l274.592 181.728v-139.616c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v218.72c0 47.2-36.448 85.536-81.248 85.536h-606.208c-44.8 0-81.248-38.4-81.248-85.536v-434.4c0-47.2 36.448-85.6 81.248-85.6h345.76c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM469.344 492.288l-261.376 172.96h522.784l-261.376-172.96zM926.112 377.504c-16.928 16.64-44.16 16.384-60.8-0.544l-140.448-142.976-59.68 59.68c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l90.368-90.368c8.064-8.064 18.976-12.576 30.432-12.576h0.16c11.488 0.032 22.432 4.704 30.464 12.896l170.88 173.92c16.64 16.928 16.384 44.16-0.544 60.8z" /> +<glyph unicode="" glyph-name="envelope-circle-check" d="M725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM837.408 319.264c9.76-9.44 11.776-23.904 5.856-35.36-1.28-2.528-2.976-4.896-5.088-7.040l-123.296-128c-5.6-5.792-13.28-9.12-21.344-9.216h-0.288c-7.968 0-15.584 3.168-21.216 8.8l-59.232 59.168c-11.68 11.744-11.68 30.72 0 42.464 11.744 11.744 30.72 11.744 42.464 0l37.6-37.6 102.112 105.984c4.896 5.12 11.168 8.064 17.696 8.928 8.704 1.152 17.888-1.536 24.704-8.096zM445.6 404.864c7.2-4.768 15.456-7.136 23.712-7.136s16.544 2.4 23.712 7.136l274.592 181.728v-54.272c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v133.376c0 47.2-36.448 85.536-81.248 85.536h-606.208c-44.8 0-81.248-38.4-81.248-85.536v-434.4c0-47.2 36.448-85.6 81.248-85.6h260.448c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-255.648v354.848l274.592-181.728zM469.344 492.288l-261.376 172.96h522.784l-261.376-172.96z" /> +<glyph unicode="" glyph-name="envelope-open" d="M896.128 557.568c0 0.288-0.032 0.608-0.096 0.896-0.128 1.184-0.288 2.4-0.544 3.552-0.096 0.352-0.16 0.672-0.224 1.024-0.224 0.928-0.416 1.824-0.736 2.784-0.096 0.352-0.16 0.64-0.288 0.992-0.352 1.056-0.736 2.080-1.152 3.104-0.16 0.384-0.352 0.768-0.48 1.152-0.416 1.024-0.928 2.016-1.44 2.976-0.128 0.224-0.256 0.416-0.384 0.64-0.512 0.896-1.024 1.76-1.568 2.56-0.16 0.256-0.352 0.544-0.512 0.8-0.672 0.992-1.376 1.92-2.144 2.816-0.128 0.16-0.288 0.352-0.416 0.512-0.672 0.8-1.408 1.632-2.176 2.4-0.128 0.16-0.288 0.288-0.416 0.48-0.864 0.864-1.76 1.664-2.688 2.432-0.224 0.16-0.416 0.352-0.64 0.512-0.8 0.64-1.632 1.28-2.464 1.824-0.224 0.128-0.384 0.288-0.608 0.416-0.032 0-0.096 0.096-0.128 0.096l-317.6 210.176c-28.832 19.072-66.080 19.072-94.944 0l-317.6-210.176s-0.096-0.096-0.128-0.096c-0.224-0.128-0.384-0.288-0.608-0.416-0.864-0.608-1.664-1.184-2.464-1.824-0.224-0.16-0.416-0.352-0.64-0.512-0.928-0.768-1.824-1.568-2.688-2.432-0.16-0.128-0.288-0.288-0.416-0.48-0.768-0.768-1.504-1.568-2.176-2.4-0.128-0.16-0.288-0.352-0.416-0.512-0.736-0.896-1.44-1.888-2.144-2.816-0.16-0.256-0.352-0.544-0.512-0.8-0.544-0.864-1.056-1.696-1.568-2.56-0.128-0.224-0.256-0.416-0.384-0.64-0.512-0.992-0.992-1.952-1.44-2.976-0.16-0.384-0.352-0.768-0.48-1.152-0.416-1.024-0.8-2.048-1.152-3.104-0.096-0.288-0.16-0.64-0.288-0.992-0.256-0.896-0.512-1.824-0.736-2.784-0.096-0.352-0.16-0.672-0.224-1.024-0.224-1.152-0.416-2.336-0.544-3.552 0-0.288-0.032-0.608-0.096-0.896-0.128-1.28-0.224-2.56-0.224-3.872v-385.536c0-46.944 36.448-85.12 81.248-85.12h601.44c47.392 0 86.016 38.4 86.016 85.536v385.12c0 1.312-0.096 2.592-0.224 3.872zM512 727.968l263.424-174.336-263.424-174.336-263.424 174.336 263.424 174.336zM213.664 168.992v304.64l250.88-166.016c14.432-9.568 30.944-14.304 47.456-14.304s33.024 4.768 47.456 14.304l250.88 166.016v-304.64h-596.64z" /> +<glyph unicode="" glyph-name="envelope-open-dollar" d="M943.904 648.768l-436.736-337.472-427.104 337.472c-26.56 0-48.096-21.536-48.096-48.096v-510.848c0-26.56 21.536-48.096 48.096-48.096h863.808c26.56 0 48.096 21.536 48.096 48.096v510.848c0 26.56-21.536 48.096-48.096 48.096zM928 105.696h-832v448.896l371.52-293.568c11.648-9.184 25.664-13.792 39.68-13.792 13.792 0 27.584 4.448 39.136 13.376l381.664 294.944v-449.888zM254.336 570.688c17.664 0 32 14.336 32 32v219.616h450.656c0.384-48.256 0.64-65.728 0.672-70.784v-148.864c0-17.664 14.336-32 32-32s32 14.336 32 32v150.464c-0.096 4.576-0.352 23.552-0.736 77.536-0.224 30.656-25.376 55.648-56.064 55.648h-466.496c-30.912 0-56.064-25.12-56.064-56.064v-227.584c0-17.664 14.336-32 32-32zM509.6 441.568c17.664 0 32 14.336 32 32v15.744c28.48 11.648 52.384 37.984 52.384 71.872 0 54.4-43.136 74.848-71.648 88.352-25.888 12.256-31.456 16.576-31.456 24.384 0 2.944 0 8.448 9.696 12.48 12.064 4.992 27.36 2.528 32.928-3.040 12.48-12.48 32.768-12.48 45.28 0s12.48 32.768 0 45.248c-9.856 9.856-22.88 16.704-37.12 20.64v12.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.16c-0.512-0.192-1.056-0.32-1.568-0.512-30.816-12.768-49.184-39.552-49.184-71.616 0-49.984 40.96-69.376 68.064-82.24 29.184-13.792 35.072-18.944 35.072-30.528 0-6.112-11.808-14.496-20.352-14.496-14.496 0-35.712 9.984-40.672 14.112-12.48 12.256-32.576 12.224-44.992-0.256-12.48-12.48-12.48-32.768 0-45.248 10.4-10.4 31.488-21.472 53.696-27.648v-14.112c0-17.664 14.336-32 32-32z" /> +<glyph unicode="" glyph-name="equalizer" d="M239.008 697.696v47.968c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-47.968c-39.648-16.768-67.424-56.032-67.424-101.76s27.808-84.96 67.424-101.76v-345.888c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v345.888c39.648 16.768 67.424 56.032 67.424 101.76s-27.808 84.96-67.424 101.76zM196 571.52c-13.44 0-24.416 10.976-24.416 24.416s10.976 24.416 24.416 24.416 24.416-10.976 24.416-24.416-10.976-24.416-24.416-24.416zM555.008 446.848v298.848c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-298.848c-39.648-16.768-67.424-56.032-67.424-101.76s27.808-84.992 67.424-101.76v-95.008c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v95.008c39.648 16.768 67.424 56.032 67.424 101.76s-27.808 84.96-67.424 101.76zM512 320.64c-13.44 0-24.416 10.976-24.416 24.448s10.976 24.416 24.416 24.416 24.416-10.976 24.416-24.416-10.976-24.448-24.416-24.448zM871.264 694.304v51.328c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-51.328c-39.648-16.768-67.424-56.032-67.424-101.76s27.808-84.96 67.424-101.76v-342.496c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v342.496c39.648 16.768 67.424 56.032 67.424 101.76s-27.808 84.96-67.424 101.76zM828.256 568.16c-13.44 0-24.416 10.976-24.416 24.416s10.976 24.416 24.416 24.416 24.416-10.976 24.416-24.416-10.912-24.416-24.416-24.416z" /> +<glyph unicode="" glyph-name="error" d="M512 873.952c-235.648 0-426.656-191.008-426.656-426.656s191.008-426.656 426.656-426.656 426.656 191.008 426.656 426.656-191.008 426.656-426.656 426.656zM752.896 206.368c-64.352-64.352-149.888-99.808-240.896-99.808s-176.544 35.456-240.896 99.808c-64.352 64.352-99.808 149.888-99.808 240.896s35.456 176.544 99.808 240.896c64.352 64.352 149.888 99.808 240.896 99.808s176.544-35.456 240.896-99.808c64.352-64.352 99.808-149.888 99.808-240.896s-35.456-176.544-99.808-240.896zM531.616 660.352h-39.296c-20.128 0-36.096-16.928-34.944-37.024l14.048-242.048c1.056-18.528 16.384-32.992 34.944-32.992h11.168c18.56 0 33.888 14.464 34.944 32.992l14.048 242.048c1.152 20.096-14.816 37.024-34.944 37.024zM554.528 277.376c0-23.488-19.040-42.528-42.528-42.528s-42.528 19.040-42.528 42.528c0 23.488 19.040 42.528 42.528 42.528s42.528-19.040 42.528-42.528z" /> +<glyph unicode="" glyph-name="error-404" d="M928.091 781.433h-832.183c-52.885 0-95.91-43.025-95.91-95.91v-450.038c0-52.885 43.025-95.91 95.91-95.91h832.18c52.885 0 95.91 43.025 95.91 95.91v450.038c0 52.885-43.025 95.91-95.91 95.91zM959.603 235.481c0-17.377-14.138-31.515-31.515-31.515h-832.18c-17.377 0-31.515 14.138-31.515 31.515v333.425l136.176 148.13h727.52c17.377 0 31.515-14.138 31.515-31.515v-450.038zM396.608 553.781h-74.162c-3.56-9.548-7.071-18.778-10.535-27.668-3.469-8.899-7.444-17.698-11.939-26.407s-9.882-17.652-16.152-26.826c-6.277-9.177-13.906-18.819-22.893-28.934v-42.419h90.453v-33.43h45.228v33.43h24.157v37.924h-24.157v114.33zM306.997 439.451v1.121c6.181 7.679 11.894 15.685 17.136 24.017 5.239 8.334 10.11 17.133 14.606 26.407 4.496 9.272 8.334 18.866 11.517 28.793h1.125v-80.34h-44.383zM552.655 546.056c-11.145 7.585-24.86 11.375-41.154 11.375-16.484 0-30.435-3.841-41.858-11.517-11.425-7.682-20.085-18.819-25.986-33.43s-8.849-32.403-8.849-53.375c0-14.609 1.588-27.767 4.777-39.466 3.18-11.707 7.957-21.677 14.325-29.919 6.368-8.246 14.229-14.564 23.596-18.964 9.364-4.397 20.132-6.601 32.304-6.601 12.547 0 23.599 2.251 33.147 6.741 9.551 4.496 17.559 10.909 24.017 19.242s11.326 18.402 14.606 30.199c3.275 11.798 4.914 25.093 4.914 39.889 0 20.597-2.854 38.157-8.566 52.672-5.716 14.51-14.141 25.564-25.283 33.147zM537.767 432.709c-1.030-7.303-2.667-13.343-4.917-18.12s-5.151-8.337-8.708-10.673c-3.56-2.343-7.865-3.514-12.924-3.514s-9.413 1.266-13.064 3.793c-3.651 2.53-6.698 6.272-9.131 11.236-2.435 4.961-4.213 11.141-5.339 18.541-1.121 7.395-1.682 16.054-1.682 25.986 0 13.667 0.985 25.001 2.953 33.988 1.966 8.99 5.052 15.735 9.272 20.226 4.213 4.496 9.59 6.741 16.152 6.741 6.927 0 12.501-2.343 16.713-7.025 4.213-4.686 7.303-11.657 9.272-20.928s2.948-20.833 2.948-34.691c0-9.738-0.516-18.261-1.542-25.564zM733.981 553.781h-74.162c-3.56-9.548-7.071-18.778-10.535-27.668-3.465-8.899-7.444-17.698-11.939-26.407s-9.879-17.652-16.152-26.826c-6.277-9.177-13.903-18.819-22.893-28.934v-42.419h90.453v-33.43h45.228v33.43h24.157v37.924h-24.157v114.33zM644.37 439.451v1.121c6.178 7.679 11.889 15.685 17.136 24.017 5.239 8.334 10.11 17.133 14.606 26.407 4.496 9.272 8.329 18.866 11.517 28.793h1.121v-80.34h-44.383zM993.060 685.721c0-14.559-11.802-26.362-26.362-26.362s-26.362 11.802-26.362 26.362c0 14.559 11.802 26.362 26.362 26.362s26.362-11.802 26.362-26.362zM859.707 712.082c-14.56 0-26.362-11.801-26.362-26.362s11.801-26.362 26.362-26.362 26.362 11.806 26.362 26.362-11.801 26.362-26.362 26.362zM779.070 685.721c0-14.559-11.802-26.362-26.362-26.362s-26.362 11.802-26.362 26.362c0 14.559 11.802 26.362 26.362 26.362s26.362-11.802 26.362-26.362z" /> +<glyph unicode="" glyph-name="event" d="M872.544 831.104h-67.2v28.8c0 22.88-18.624 41.504-41.504 41.504h-86.784c-22.88 0-41.504-18.624-41.504-41.504v-28.8h-247.072v28.8c0 22.88-18.624 41.504-41.504 41.504h-86.784c-22.88 0-41.504-18.624-41.504-41.504v-28.8h-67.2c-22.88 0-41.504-18.624-41.504-41.504v-685.28c0-22.88 18.624-41.504 41.504-41.504h721.088c22.88 0 41.504 18.624 41.504 41.504v685.28c0 22.88-18.624 41.504-41.504 41.504zM678.528 858.4h83.808v-98.464h-83.808v98.464zM261.664 858.4h83.808v-98.464h-83.808v98.464zM218.656 788.096v-29.664c0-22.88 18.624-41.504 41.504-41.504h86.784c22.88 0 41.504 18.624 41.504 41.504v29.664h247.072v-29.664c0-22.88 18.624-41.504 41.504-41.504h86.784c22.88 0 41.504 18.624 41.504 41.504v29.664h65.696v-112h-718.080v112h65.696zM152.96 633.12h718.080v-410.528l-116.768-116.768h-601.344v527.264zM699.328 287.776c7.552 10.976 14.176 24.128 19.296 39.136 17.536 51.392 8.416 96.64-21.568 109.408l-220.768 143.84c-6.048 5.792-12.608 9.312-18.752 11.424-0.32 0.096-0.608 0.192-0.928 0.288-0.064 0.032-0.16 0.064-0.224 0.064-55.392 17.44-130.368-63.2-158.336-145.152-13.792-40.384-18.88-81.408-14.336-115.52 5.248-39.36 22.848-66.080 49.536-75.2 6.304-2.144 12.832-3.232 19.488-3.232 0.512 0 1.024 0.032 1.536 0.064l198.464-0.416c-5.696-15.776-6.016-33.184-0.544-50.304 8.704-27.168 30.176-47.872 57.472-55.392 14.496-4 28.896-7.2 41.472-7.2 12.8 0 23.648 3.328 30.72 12.576 4.672 6.112 10.784 19.424-1.12 39.52-15.648 26.496 5.824 74.144 18.624 96.064zM680.224 396.768v0c-0.032 0-0.064 0.032-0.064 0.032 0.032 0 0.064 0 0.064-0.032zM679.744 396.928c3.872-3.552 8.832-24.832-1.824-56.128-3.072-8.96-6.624-16.416-10.304-22.624-0.032-0.064-0.064-0.096-0.096-0.128-0.16-0.256-1.376-2.080-3.264-5.184-8-11.712-15.84-17.248-19.136-17.568l-33.824 0.064c-1.44 0.32-2.912 0.512-4.448 0.544-2.336 0.032-4.928-0.096-7.68-0.512l-171.008 0.352c20.288 23.488 37.632 54.752 49.568 89.696 14.208 41.6 22.24 85.504 22.016 120.512-0.032 2.656-0.096 5.216-0.192 7.744l175.872-114.56c1.376-0.896 2.848-1.632 4.32-2.176zM338.72 432.896c11.36 33.312 32.448 67.424 56.416 91.264 19.36 19.296 35.904 27.264 44.96 27.264 0.608 0 1.184-0.064 1.728-0.128l6.304-4.096c4.672-6.272 8.512-19.968 8.64-41.472 0.16-30.368-7.008-69.152-19.712-106.368-11.52-33.728-29.312-64.16-48.864-83.488-15.552-15.392-30.912-22.528-41.056-19.072s-17.92 18.496-20.8 40.192c-3.648 27.232 0.896 62.208 12.416 95.936zM621.024 188.288c-13.024 3.584-23.744 13.952-27.936 27.040-3.712 11.584-1.696 23.36 5.536 32.288 1.984 2.464 3.808 4.032 5.44 4.8l33.568-0.064c-6.976-25.6-7.2-48.64-0.672-67.904-4.288 0.832-9.536 2.080-15.968 3.84zM771.456 317.632c10.016 37.248-32 52.512-32 52.512s-1.92-51.552-21.952-78.784c0 0 43.936-10.976 53.952 26.272z" /> +<glyph unicode="" glyph-name="event-2" d="M872.544 831.104h-67.2v28.8c0 22.88-18.624 41.504-41.504 41.504h-86.784c-22.88 0-41.504-18.624-41.504-41.504v-28.8h-247.072v28.8c0 22.88-18.624 41.504-41.504 41.504h-86.784c-22.88 0-41.504-18.624-41.504-41.504v-28.8h-67.2c-22.88 0-41.504-18.624-41.504-41.504v-685.28c0-22.88 18.624-41.504 41.504-41.504h721.088c22.88 0 41.504 18.624 41.504 41.504v685.28c0 22.88-18.624 41.504-41.504 41.504zM678.528 858.4h83.808v-98.464h-83.808v98.464zM261.664 858.4h83.808v-98.464h-83.808v98.464zM218.656 788.096v-29.664c0-22.88 18.624-41.504 41.504-41.504h86.784c22.88 0 41.504 18.624 41.504 41.504v29.664h247.072v-29.664c0-22.88 18.624-41.504 41.504-41.504h86.784c22.88 0 41.504 18.624 41.504 41.504v29.664h65.696v-112h-718.080v112h65.696zM152.96 633.12h718.080v-410.528l-116.768-116.768h-601.344v527.264zM699.328 287.776c7.552 10.976 14.176 24.128 19.296 39.136 17.536 51.392 8.416 96.64-21.568 109.408l-220.768 143.84c-6.048 5.792-12.608 9.312-18.752 11.424-0.32 0.096-0.608 0.192-0.928 0.288-0.064 0.032-0.16 0.064-0.224 0.064-55.392 17.44-130.368-63.2-158.336-145.152-13.792-40.384-18.88-81.408-14.336-115.52 5.248-39.36 22.848-66.080 49.536-75.2 6.304-2.144 12.832-3.232 19.488-3.232 0.512 0 1.024 0.032 1.536 0.064l198.464-0.416c-5.696-15.776-6.016-33.184-0.544-50.304 8.704-27.168 30.176-47.872 57.472-55.392 14.496-4 28.896-7.2 41.472-7.2 12.8 0 23.648 3.328 30.72 12.576 4.672 6.112 10.784 19.424-1.12 39.52-15.648 26.496 5.824 74.144 18.624 96.064zM680.224 396.768v0c-0.032 0-0.064 0.032-0.064 0.032 0.032 0 0.064 0 0.064-0.032zM679.744 396.928c3.872-3.552 8.832-24.832-1.824-56.128-3.072-8.96-6.624-16.416-10.304-22.624-0.032-0.064-0.064-0.096-0.096-0.128-0.16-0.256-1.376-2.080-3.264-5.184-8-11.712-15.84-17.248-19.136-17.568l-33.824 0.064c-1.44 0.32-2.912 0.512-4.448 0.544-2.336 0.032-4.928-0.096-7.68-0.512l-171.008 0.352c20.288 23.488 37.632 54.752 49.568 89.696 14.208 41.6 22.24 85.504 22.016 120.512-0.032 2.656-0.096 5.216-0.192 7.744l175.872-114.56c1.376-0.896 2.848-1.632 4.32-2.176zM338.72 432.896c11.36 33.312 32.448 67.424 56.416 91.264 19.36 19.296 35.904 27.264 44.96 27.264 0.608 0 1.184-0.064 1.728-0.128l6.304-4.096c4.672-6.272 8.512-19.968 8.64-41.472 0.16-30.368-7.008-69.152-19.712-106.368-11.52-33.728-29.312-64.16-48.864-83.488-15.552-15.392-30.912-22.528-41.056-19.072s-17.92 18.496-20.8 40.192c-3.648 27.232 0.896 62.208 12.416 95.936zM621.024 188.288c-13.024 3.584-23.744 13.952-27.936 27.040-3.712 11.584-1.696 23.36 5.536 32.288 1.984 2.464 3.808 4.032 5.44 4.8l33.568-0.064c-6.976-25.6-7.2-48.64-0.672-67.904-4.288 0.832-9.536 2.080-15.968 3.84zM771.456 317.632c10.016 37.248-32 52.512-32 52.512s-1.92-51.552-21.952-78.784c0 0 43.936-10.976 53.952 26.272z" /> +<glyph unicode="" glyph-name="event-list" d="M830.112 255.904l-30.304 61.024-30.272-61.024-67.36-10.016 48.928-47.232-11.424-67.136 60.096 31.712 60.128-31.712-11.424 67.136 48.96 47.232-67.36 10.016zM224 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 480h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 544h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 416h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 416h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 288h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 768h-96v32c0 17.664-14.336 32-32 32h-64c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-128c0 17.664-14.336 32-32 32s-32-14.336-32-32h-64c-17.664 0-32-14.336-32-32v-576c0-0.608 0.128-1.184 0.192-1.76s-0.064-1.184 0-1.76c0-0.128 0.064-0.256 0.064-0.384 0.032-0.192 0.064-0.416 0.096-0.64 0.064-0.544 0.192-1.088 0.256-1.6 0.032-0.128 0.032-0.288 0.064-0.384 11.552-89.088 91.392-153.44 191.328-153.44h384c0-17.664 14.336-32 32-32h320c17.664 0 32 14.336 32 32v672c0 17.664-14.336 32-32 32zM928 704v-288h-64v288h64zM128 768c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h128c0-17.664 14.336-32 32-32s32 14.336 32 32h32v-96h-704v96h32zM224 128c-53.76 0-114.432 28.352-126.656 90.176 12.544 21.472 48.928 77.504 96.384 95.904 7.488-80 38.464-143.168 80.448-186.080h-50.208zM416 128c-78.656 0-160 83.776-160 224 0 17.664-14.336 32-32 32-52.704 0-96.064-29.664-128-62.208v286.208h704v-192h-160c-17.664 0-32-14.336-32-32v-256h-192zM928 96h-256v256h256v-256zM384 288h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="expand-circle-down" d="M813.696 748.96c-83.328 83.328-192.512 124.96-301.696 124.96s-218.368-41.632-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.368 41.632 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 206.368c-64.352-64.352-149.888-99.808-240.896-99.808s-176.544 35.456-240.896 99.808-99.808 149.888-99.808 240.896 35.456 176.544 99.808 240.896c64.352 64.352 149.888 99.808 240.896 99.808s176.544-35.456 240.896-99.808 99.808-149.888 99.808-240.896-35.456-176.544-99.808-240.896zM630.912 541.408l-118.912-118.912-118.912 118.912c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l149.344-149.344c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l149.344 149.344c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0z" /> +<glyph unicode="" glyph-name="facebook" d="M693.568 710.112c26.624 0 48.096-0.672 60.448-1.952v144.96c-23.424 6.496-80.608 12.992-113.76 12.992-174.88 0-255.456-82.56-255.456-260.672v-68.896h-107.904v-159.904h107.904v-363.328l189.792 0.544v362.784h141.568l29.376 159.904h-170.912v56.576c0 84.48 33.184 116.992 118.976 116.992zM926.464 541.824c-0.672 2.816-1.408 5.664-2.176 8.48 0.736-2.816 1.504-5.664 2.176-8.48zM924.288 550.304c-0.064 0.224-0.096 0.416-0.16 0.64 0.064-0.224 0.096-0.416 0.16-0.64z" /> +<glyph unicode="" glyph-name="favorite" d="M830.688 723.712c-44 44.288-101.792 66.432-159.616 66.432s-115.104-21.984-159.072-65.888c-43.904 43.904-101.504 65.888-159.072 65.888-57.824 0-115.616-22.144-159.616-66.432-87.584-88.192-85.632-231.392 2.304-319.264l285.984-285.984c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l285.984 285.984c87.904 87.904 89.888 231.072 2.304 319.264zM767.584 465.248l-255.584-255.584-255.584 255.584c-54.944 54.944-55.84 143.712-2.080 197.888 26.272 26.464 61.312 41.056 98.592 41.056 37.12 0 72.032-14.464 98.272-40.704l60.8-60.8 60.8 60.8c26.24 26.24 61.152 40.704 98.272 40.704s72.32-14.592 98.592-41.056c53.792-54.176 52.864-142.944-2.080-197.888z" /> +<glyph unicode="" glyph-name="fax" d="M928 784h-72.896c-11.104 19.040-31.52 32-55.104 32h-256c-23.584 0-44-12.96-55.104-32h-72.896c-35.296 0-64-28.704-64-64h-73.312c-15.456 30.72-48.672 64-86.688 64h-64c-52.544 0-96-63.552-96-96v-512c0-32.448 43.456-96 96-96h64c38.016 0 71.232 33.312 86.688 64h73.312c0-35.296 28.704-64 64-64h512c35.296 0 64 28.704 64 64v576c0 35.296-28.704 64-64 64zM512 560h320v-64h-320v64zM800 752v-128h-256v128h256zM192 144h-64c-9.088 0-28.736 22.112-32 33.568v508.864c3.264 11.456 22.912 33.568 32 33.568h64c9.088 0 28.768-22.112 32-33.568v-508.864c-3.232-11.456-22.912-33.568-32-33.568zM288 208v448h64v-448h-64zM928 144h-512v576h64v-96c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h384c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32v96h64v-576zM608 656h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 240h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 240h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 368h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM832 240h-64v64h64v-64z" /> +<glyph unicode="" glyph-name="feather" d="M939.328 236.768c-6.144 16.544-24.576 24.992-41.12 18.88l-70.912-26.336 42.72 142.624c15.264 50.976-3.552 105.824-46.88 136.576l-59.424 42.176 1.568 16.256c4.608 47.232-21.056 92.768-63.968 113.344l-86.464 41.12-0.064 0.352c-6.4 46.112-43.136 83.008-89.312 89.664l-60.544 8.608c-12.544 36.96-41.792 65.92-79.968 77.6l-85.6 26.144c-51.84 15.552-106.432-12.192-124.16-63.552l-9.44-27.808-19.84-6.976c-24.704-8.608-44.864-27.328-55.296-51.296-10.496-24.064-10.432-51.68 0.224-75.936l33.056-74.048c20.352-46.016 62.144-78.464 111.744-86.784l7.488-1.28 22.112-82.688c11.84-44.352 48.192-78.144 93.184-87.328l20.032-68.736c15.584-54.048 61.632-95.168 117.344-104.672l186.528-31.808-47.104-25.856c-15.488-8.48-21.152-27.936-12.64-43.456 5.792-10.592 16.768-16.576 28.096-16.576 5.216 0 10.496 1.28 15.36 3.936l61.216 33.6-10.208-37.12c-4.672-17.024 5.312-34.656 22.368-39.36 2.848-0.768 5.664-1.152 8.48-1.152 14.048 0 26.944 9.312 30.848 23.52l9.024 32.896c16.288-33.888 29.472-67.328 38.112-99.552 3.808-14.304 16.736-23.712 30.88-23.712 2.72 0 5.504 0.352 8.288 1.12 17.056 4.544 27.2 22.112 22.624 39.168-9.12 34.016-22.624 68.96-39.232 104.224l27.968-11.808c16.288-6.912 35.072 0.768 41.92 17.024 6.88 16.288-0.768 35.040-17.024 41.92l-36.384 15.36 55.488 20.608c16.544 6.144 25.024 24.576 18.88 41.12zM439.872 315.072l-11.264 38.624 22.4-3.84c1.824-0.32 3.648-0.448 5.44-0.448 15.328 0 28.864 11.008 31.52 26.592 3.008 17.408-8.736 33.952-26.144 36.96l-89.216 15.296c-21.984 3.808-39.84 20.128-45.568 41.568l-14.592 54.432 14.592-2.464c1.792-0.32 3.616-0.448 5.376-0.448 15.328 0 28.864 11.040 31.52 26.688 2.944 17.408-8.8 33.92-26.208 36.864l-63.648 10.752c-0.512 0.096-1.024 0.192-1.536 0.256l-26.304 4.448c-28.352 4.768-52.192 23.264-63.872 49.664l-33.024 73.984c-3.488 7.904-3.488 16.576-0.064 24.448 3.392 7.808 9.696 13.632 17.792 16.448l17.952 6.304 52.672-41.76c13.824-10.976 33.984-8.672 44.96 5.184s8.672 33.984-5.184 44.96l-48.832 38.72 7.136 21.088c6.4 18.56 26.272 28.672 45.056 23.008l85.472-26.112c20.896-6.368 36.8-24.448 40.512-45.984l10.944-63.68c2.688-15.584 16.192-26.592 31.52-26.592 1.792 0 3.648 0.16 5.472 0.448 17.408 3.008 29.088 19.552 26.112 36.96l-2.72 15.904 38.368-5.44c18.112-2.624 32.512-17.024 35.040-35.232l13.664-95.616c2.272-15.936 15.968-27.456 31.616-27.456 1.504 0 3.040 0.128 4.576 0.352 17.472 2.496 29.664 18.72 27.136 36.192l-2.72 19.040 48-22.816c18.688-8.96 29.856-28.768 27.872-49.376l-10.784-111.552c-1.696-17.6 11.168-33.216 28.768-34.912 1.024-0.096 2.080-0.16 3.104-0.16 16.288 0 30.24 12.384 31.808 28.928l2.112 21.856 29.472-20.928c20.928-14.848 30.016-41.376 22.592-65.984l-40.928-136.672c-155.072 233.216-391.424 444.96-404.8 456.864-13.184 11.712-33.472 10.56-45.184-2.656s-10.56-33.44 2.624-45.184c3.2-2.848 240.288-215.2 392.384-442.144l-206.272 35.168c-31.648 5.408-57.76 28.672-66.624 59.392z" /> +<glyph unicode="" glyph-name="featured-image" d="M124.704 706.176c0-5.632 4.64-9.92 9.92-9.92s9.92 4.64 9.92 9.92-4.64 9.92-9.92 9.92-9.92-4.64-9.92-9.92zM170.72 706.176c0-5.632 4.64-9.92 9.92-9.92s9.92 4.64 9.92 9.92-4.64 9.92-9.92 9.92-9.92-4.64-9.92-9.92zM144.896 551.616h131.744c6.624 0 12.256 5.632 12.256 12.256s-5.632 12.256-12.256 12.256h-131.744c-6.624 0-12.256-5.632-12.256-12.256s5.632-12.256 12.256-12.256zM828.448 223.904h-384.288c-6.624 0-12.256-5.632-12.256-12.256s5.632-12.256 12.256-12.256h384.288c6.624 0 12.256 5.632 12.256 12.256s-5.632 12.256-12.256 12.256zM953.568 703.552h-483.264c-6.624 0-12.256-5.632-12.256-12.256v-47.328h-375.36v75.456c0 20.864 16.896 37.408 37.408 37.408h515.040c6.624 0 12.256 5.632 12.256 12.256s-5.632 12.256-12.256 12.256h-515.040c-34.080 0-61.888-27.808-61.888-61.888v-542.848c0-34.080 27.808-61.888 61.888-61.888h574.624c6.624 0 12.256 5.632 12.256 12.256s-5.632 12.256-12.256 12.256h-342.592v480.64h105.92v-159.872c0-6.624 5.632-12.256 12.256-12.256s12.256 5.632 12.256 12.256v219.456h458.784v-372.384h-482.944l164.512 255.2 135.040-161.536c2.304-2.656 5.632-4.288 9.28-4.288v0c3.648 0 6.944 1.664 9.28 4.288l107.584 129.76c4.288 5.28 3.648 12.896-1.664 17.216s-12.896 3.648-17.216-1.664l-97.984-118.496-136.032 162.848c-2.656 2.976-6.304 4.64-10.272 4.288-3.968 0-7.296-2.304-9.6-5.632l-185.696-287.968c-2.304-3.648-2.656-8.608-0.32-12.576 1.984-3.968 6.304-6.304 10.592-6.304h517.696c6.624 0 12.256 5.632 12.256 12.256v396.896c0 6.624-5.632 12.256-12.256 12.256zM327.296 138.848h-41.376v363.456c0 5.952-4.96 10.912-10.912 10.912h-192.64v106.592h244.96v-480.96zM827.008 602.528c7.872-33.28-12.736-66.624-45.984-74.464s-66.624 12.736-74.464 45.984c-7.872 33.28 12.736 66.624 45.984 74.464s66.624-12.736 74.464-45.984z" /> +<glyph unicode="" glyph-name="feedback" d="M852.64 788.352h-681.312c-47.488 0-86.016-38.496-86.016-86.016v-594.944c0-24.864 20.384-41.888 42.016-41.888 8.864 0 17.952 2.848 25.952 9.248l145.376 116.32h553.984c47.488 0 86.016 38.496 86.016 86.016v425.248c0 47.488-38.496 86.016-86.016 86.016zM852.64 276.992h-553.984c-19.552 0-38.496-6.656-53.728-18.848l-73.632-58.88v503.072h681.344v-425.344zM481.536 439.808c0.8-13.92 12.32-24.8 26.272-24.8h8.416c13.952 0 25.472 10.88 26.272 24.8l10.592 182.016c0.896 15.104-11.136 27.872-26.272 27.872h-29.536c-15.136 0-27.136-12.768-26.272-27.872l10.592-182.016zM544 361.696c0-17.664-14.336-32-32-32s-32 14.336-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32z" /> +<glyph unicode="" glyph-name="figma" d="M215.328 707.328c0 88.16 71.52 159.68 159.68 159.68h274.016c88.192 0 159.68-71.52 159.68-159.68 0-55.84-28.672-104.992-72.192-133.504 43.52-28.48 72.192-77.696 72.192-133.504 0-88.192-71.52-159.68-159.68-159.68h-3.52c-41.344 0-79.008 15.648-107.328 41.504v-147.168c0-89.344-73.344-161.344-162.336-161.344-88 0-160.512 71.36-160.512 159.68 0 55.84 28.672 105.024 72 133.504-43.328 28.48-72 77.664-72 133.504s28.672 104.992 72 133.504c-43.328 28.48-72 77.696-72 133.504zM469.312 531.424h-94.080c-50.368 0-91.104-40.768-91.104-91.104 0-50.080 40.448-90.816 90.528-91.104h94.624v182.208zM554.688 440.288c0-50.368 40.736-91.104 91.104-91.104h2.976c50.24 0 91.104 40.736 91.104 91.104s-40.864 91.104-91.104 91.104h-2.976c-50.368 0-91.104-40.768-91.104-91.104zM375.264 263.040h-0.576c-49.344-0.288-89.184-40.416-89.184-89.76s40.704-89.76 90.432-89.76c50.592 0 91.968 40.96 91.968 91.168v88.384h-92.672zM375.264 797.088c-49.6 0-89.76-40.16-89.76-89.76s40.16-89.76 89.76-89.76h92.672v179.52h-92.672zM554.688 616.224h94.080c50.24 0 91.104 40.768 91.104 91.104s-40.864 91.104-91.104 91.104h-94.080v-182.208z" /> +<glyph unicode="" glyph-name="file" d="M896.576 568.672c-0.288 6.112-2.24 11.936-5.856 16.992-0.096 0.16-0.256 0.352-0.384 0.48-0.928 1.248-1.632 2.624-2.752 3.744l-116.064 116.064v131.232c0 50.048-40.736 90.784-90.784 90.784h-462.912c-50.048 0-90.784-40.704-90.784-90.784v-663.456c0-47.68 37.28-87.328 84.704-90.24 1.888-0.128 3.808-0.192 5.696-0.192h41.792v-24.64c0-50.016 40.672-90.688 90.72-90.688h456.192c50.048 0 90.784 40.736 90.784 90.784v506.144c0 1.28-0.256 2.528-0.384 3.776zM217.472 147.328l-1.696 0.064c-13.888 0.864-24.768 12.448-24.768 26.4v663.456c0 14.784 12 26.784 26.784 26.784h462.912c14.784 0 26.784-12 26.784-26.784v-67.232l-21.216 21.216s-0.032 0-0.064 0.032l-1.664 1.632c-1.056 1.056-2.368 1.728-3.52 2.624-0.256 0.16-0.48 0.384-0.736 0.544-5.12 3.648-10.976 5.6-17.088 5.856-1.216 0.096-2.4 0.352-3.616 0.352h-297.888c-56.48 0-102.432-45.952-102.432-102.432v-552.512h-41.792zM806.176 32h-456.192c-14.72 0-26.72 12-26.72 26.688v641.12c0 21.184 17.248 38.464 38.432 38.464h268.256v-108.704c0-51.968 42.304-94.272 94.24-94.272h108.736v-476.544c0-14.784-12-26.784-26.784-26.784zM593.408 155.904h-174.752c-17.664 0-32-14.336-32-32s14.336-32 32-32h174.752c17.664 0 32 14.336 32 32s-14.336 32-32 32zM706.24 146.56c-5.92-5.92-9.28-14.24-9.28-22.72 0-8.32 3.36-16.64 9.28-22.56 6.080-5.92 14.4-9.44 22.72-9.44s16.64 3.52 22.56 9.44c6.080 5.92 9.44 14.24 9.44 22.56 0 8.48-3.36 16.8-9.44 22.72-11.84 11.84-33.28 11.84-45.28 0zM418.624 225.344h310.336c17.664 0 32 14.336 32 32s-14.336 32-32 32h-310.304c-17.664 0-32-14.336-32-32s14.336-32 32-32zM418.624 475.808h54.4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-54.4c-17.664 0-32-14.336-32-32s14.336-32 32-32zM418.624 609.696h109.088c17.664 0 32 14.336 32 32s-14.336 32-32 32h-109.088c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="file-arrow-down" d="M848.896 638.752c-2.016 4.736-4.96 9.184-8.8 13.024v0s0 0 0 0c-0.16 0.16-0.352 0.352-0.512 0.512l-208.352 202.72c-7.52 10.592-19.936 17.536-33.888 17.536h-340.992c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h511.328c46.624 0 84.512 37.408 84.512 83.36v517.632c0 5.792-1.184 11.296-3.328 16.288zM638.88 731.648l69.536-67.616h-69.536v67.616zM769.12 105.056s-0.608-0.512-1.44-0.512h-511.328c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-475.904zM539.264 539.008c-0.512 0.416-1.024 0.768-1.536 1.152-0.608 0.48-1.184 0.928-1.824 1.376-0.608 0.416-1.248 0.768-1.888 1.152-0.544 0.352-1.152 0.672-1.696 1.024-0.64 0.352-1.312 0.64-1.952 0.928-0.608 0.288-1.248 0.608-1.888 0.864s-1.28 0.48-1.92 0.736c-0.672 0.256-1.376 0.512-2.048 0.736-0.64 0.224-1.312 0.352-1.952 0.512-0.736 0.16-1.408 0.384-2.144 0.512-0.768 0.16-1.536 0.256-2.272 0.352-0.64 0.096-1.248 0.224-1.888 0.256-2.816 0.288-5.664 0.288-8.48 0-0.64-0.032-1.248-0.16-1.888-0.256-0.768-0.128-1.536-0.224-2.272-0.352s-1.408-0.352-2.144-0.512c-0.64-0.16-1.312-0.288-1.952-0.512-0.672-0.224-1.376-0.48-2.048-0.736-0.64-0.224-1.28-0.416-1.92-0.736-0.64-0.256-1.248-0.544-1.888-0.864s-1.312-0.608-1.952-0.928c-0.608-0.288-1.152-0.672-1.696-1.024-0.64-0.384-1.28-0.736-1.888-1.152-0.64-0.416-1.248-0.896-1.824-1.376-0.512-0.384-1.024-0.736-1.536-1.152-1.12-0.896-2.144-1.824-3.168-2.848l-128-128c-16.8-16.8-16.8-44.032 0-60.8 16.8-16.8 44.032-16.8 60.8 0l54.624 54.624v-210.944c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v210.944l54.624-54.624c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-128 128c-1.024 1.024-2.048 1.952-3.168 2.848z" /> +<glyph unicode="" glyph-name="file-arrow-up" d="M848.896 638.752c-2.016 4.736-4.96 9.184-8.8 13.024v0s0 0 0 0c-0.16 0.16-0.352 0.352-0.512 0.512l-208.352 202.72c-7.52 10.592-19.936 17.536-33.888 17.536h-340.992c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h511.328c46.624 0 84.512 37.408 84.512 83.36v517.632c0 5.792-1.184 11.296-3.328 16.288zM638.88 731.648l69.536-67.616h-69.536v67.616zM769.12 105.056s-0.608-0.512-1.44-0.512h-511.328c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-475.904zM555.008 505.76c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-210.944l-54.624 54.624c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l128-128c1.024-1.024 2.048-1.952 3.168-2.848 0.512-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.248-0.928 1.888-1.376 0.608-0.416 1.248-0.768 1.888-1.152 0.544-0.352 1.152-0.736 1.76-1.024 0.64-0.352 1.312-0.64 1.952-0.928 0.608-0.288 1.248-0.608 1.888-0.864s1.28-0.48 1.92-0.736c0.672-0.256 1.376-0.512 2.048-0.736 0.64-0.224 1.312-0.352 1.952-0.512 0.736-0.16 1.408-0.384 2.144-0.512 0.768-0.16 1.504-0.256 2.272-0.352 0.64-0.096 1.248-0.224 1.888-0.256 1.408-0.128 2.816-0.224 4.224-0.224s2.816 0.096 4.224 0.224c0.64 0.032 1.248 0.16 1.888 0.256 0.768 0.128 1.536 0.224 2.272 0.352s1.408 0.352 2.144 0.512c0.64 0.16 1.312 0.288 1.952 0.512 0.672 0.224 1.376 0.48 2.048 0.736 0.64 0.224 1.28 0.416 1.92 0.736 0.64 0.256 1.248 0.544 1.888 0.864s1.312 0.608 1.952 0.928c0.608 0.288 1.152 0.672 1.76 1.024 0.64 0.384 1.28 0.736 1.888 1.152 0.64 0.416 1.248 0.896 1.888 1.376 0.512 0.384 1.024 0.736 1.536 1.152 1.12 0.896 2.144 1.824 3.168 2.848l128 128c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-54.624-54.624v210.944z" /> +<glyph unicode="" glyph-name="file-audio" d="M848.896 638.752c-2.016 4.736-4.96 9.184-8.8 13.024v0s0 0 0 0c-0.16 0.16-0.352 0.352-0.512 0.512l-208.352 202.72c-7.52 10.592-19.936 17.536-33.888 17.536h-340.992c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h511.328c46.624 0 84.512 37.408 84.512 83.36v517.632c0 5.792-1.184 11.296-3.328 16.288zM638.88 731.648l69.536-67.616h-69.536v67.616zM769.12 105.056s-0.608-0.512-1.44-0.512h-511.328c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-475.904zM531.68 482.784c-13.92 7.52-30.816 6.784-44-1.824l-54.656-35.808c-11.232-7.136-62.208-16.16-90.912-16.16-11.424 0-22.368-4.576-30.464-12.64-8.064-8.096-12.576-19.072-12.544-30.464l0.256-106.208c0.032-23.712 19.296-42.88 43.008-42.88 26.784 0 74.72-9.568 85.6-17.056l56.704-44.544c7.712-6.048 17.12-9.184 26.592-9.184 6.4 0 12.8 1.408 18.784 4.32 14.816 7.2 24.192 22.24 24.192 38.656v235.936c0 15.776-8.672 30.336-22.56 37.856zM468.224 295.68c-23.456 12.704-56.224 19.744-82.944 23.456l-0.096 26.976c26.656 3.232 59.424 9.376 83.040 20.48v-70.912zM622.624 156.832c6.432-3.424 13.312-5.024 20.096-5.024 15.392 0 30.304 8.32 38.016 22.88 28 52.736 42.144 108.512 42.144 165.664s-14.176 112.896-42.144 165.664c-11.136 20.992-37.152 28.96-58.144 17.824s-28.96-37.152-17.824-58.144c21.344-40.192 32.128-82.4 32.128-125.344s-10.784-85.152-32.128-125.344c-11.136-20.992-3.168-47.008 17.824-58.144z" /> +<glyph unicode="" glyph-name="file-certificate" d="M661.344 104.544h-404.992c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-69.92c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v111.488s0 0.16 0 0.256c0 0.896-0.096 1.76-0.128 2.656 0 0.512 0 0.992-0.096 1.504-0.096 0.8-0.224 1.568-0.352 2.4-0.096 0.544-0.16 1.152-0.256 1.696-0.128 0.608-0.288 1.152-0.416 1.696-0.384 1.44-0.8 2.848-1.312 4.224-0.224 0.608-0.384 1.184-0.64 1.792 0 0 0 0.032-0.032 0.096-0.896 2.080-2.016 4.096-3.232 6.048-0.224 0.288-0.352 0.64-0.544 0.928-0.352 0.512-0.768 1.024-1.152 1.536-0.416 0.608-0.864 1.184-1.312 1.76-0.352 0.384-0.736 0.768-1.056 1.152-0.544 0.64-1.152 1.28-1.76 1.888-0.096 0.096-0.128 0.128-0.16 0.224l-208.544 202.912c-7.552 10.496-19.84 17.376-33.76 17.376-0.16 0-0.352 0-0.48 0-0.16 0-0.352 0-0.512 0h-340c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h404.992c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM638.88 731.648l69.504-67.616h-69.504v67.616zM944.608 344.192c-4.192 12.928-32.896 13.44-40.704 24.192-7.904 10.88 0.416 38.304-10.464 46.208-10.752 7.808-34.208-8.48-47.136-4.32-12.448 4.064-21.792 31.232-35.616 31.232s-23.136-27.168-35.584-31.232c-12.928-4.192-36.448 12.16-47.136 4.32-10.88-7.904-2.56-35.328-10.464-46.208-7.808-10.752-36.512-11.264-40.736-24.192-4.064-12.448 18.72-29.696 18.72-43.52s-22.784-31.072-18.72-43.52c4.192-12.928 32.928-13.44 40.736-24.192 7.904-10.88-0.416-38.304 10.464-46.208 4.384-3.2 10.976-2.336 18.048-0.512l-7.136-158.048c0-7.456 11.040-10.72 16.352-4.768l48.896 54.528c3.552 3.968 9.76 3.968 13.312 0l48.864-54.528c5.28-5.92 16.352-2.688 16.352 4.768l-7.136 158.048c7.072-1.824 13.6-2.688 18.048 0.512 10.88 7.904 2.56 35.328 10.464 46.208 7.808 10.752 36.512 11.264 40.704 24.192 4.064 12.448-18.72 29.696-18.72 43.52s22.784 31.008 18.72 43.52zM810.656 358.656c32.032 0 57.984-25.952 57.984-57.984s-25.952-57.984-57.984-57.984-57.984 25.952-57.984 57.984 25.952 57.984 57.984 57.984z" /> +<glyph unicode="" glyph-name="file-circle-check" d="M490.656 104.544h-234.336c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-69.92c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v111.488s0 0.16 0 0.256c0 0.896-0.096 1.76-0.128 2.656 0 0.512 0 0.992-0.096 1.504-0.096 0.8-0.224 1.568-0.352 2.4-0.096 0.544-0.16 1.152-0.256 1.696-0.128 0.608-0.288 1.152-0.416 1.696-0.384 1.44-0.8 2.848-1.312 4.224-0.224 0.608-0.384 1.184-0.64 1.792 0 0 0 0.032-0.032 0.096-0.896 2.080-2.016 4.096-3.232 6.048-0.224 0.288-0.352 0.64-0.544 0.928-0.352 0.512-0.768 1.024-1.152 1.536-0.416 0.608-0.864 1.184-1.312 1.76-0.352 0.384-0.736 0.768-1.056 1.152-0.544 0.64-1.152 1.28-1.76 1.888-0.096 0.096-0.128 0.128-0.16 0.224l-208.544 202.912c-7.552 10.496-19.84 17.376-33.76 17.376-0.16 0-0.352 0-0.48 0-0.16 0-0.352 0-0.512 0h-340c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h234.336c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM638.88 731.648l69.504-67.616h-69.504v67.616zM725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM837.408 319.264c9.76-9.44 11.776-23.904 5.856-35.36-1.28-2.528-2.976-4.896-5.088-7.040l-123.296-128c-5.6-5.792-13.28-9.12-21.344-9.216h-0.288c-7.968 0-15.584 3.168-21.216 8.8l-59.232 59.168c-11.68 11.744-11.68 30.72 0 42.464 11.744 11.744 30.72 11.744 42.464 0l37.6-37.6 102.112 105.984c4.896 5.12 11.168 8.064 17.696 8.928 8.704 1.152 17.888-1.536 24.704-8.096z" /> +<glyph unicode="" glyph-name="file-circle-exclaimation" d="M490.656 104.544h-234.336c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-69.92c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v111.488s0 0.16 0 0.256c0 0.896-0.096 1.76-0.128 2.656 0 0.512 0 0.992-0.096 1.504-0.096 0.8-0.224 1.568-0.352 2.4-0.096 0.544-0.16 1.152-0.256 1.696-0.128 0.608-0.288 1.152-0.416 1.696-0.384 1.44-0.8 2.848-1.312 4.224-0.224 0.608-0.384 1.184-0.64 1.792 0 0 0 0.032-0.032 0.096-0.896 2.080-2.016 4.096-3.232 6.048-0.224 0.288-0.352 0.64-0.544 0.928-0.352 0.512-0.768 1.024-1.152 1.536-0.416 0.608-0.864 1.184-1.312 1.76-0.352 0.384-0.736 0.768-1.056 1.152-0.544 0.64-1.152 1.28-1.76 1.888-0.096 0.096-0.128 0.128-0.16 0.224l-208.544 202.912c-7.552 10.496-19.84 17.376-33.76 17.376-0.16 0-0.352 0-0.48 0-0.16 0-0.352 0-0.512 0h-340c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h234.336c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM638.88 731.648l69.504-67.616h-69.504v67.616zM725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM763.648 356.992v-0.992s-9.856-168.928-9.856-168.928c-0.768-13.024-11.52-23.136-24.544-23.136h-7.84c-13.024 0-23.776 10.144-24.544 23.136l-9.824 168.928v0.992c-0.864 14.112 10.336 25.984 24.48 25.984h27.552c14.112 0 25.344-11.872 24.544-25.984zM695.968 108.832c-0.352 1.76-0.48 3.552-0.48 5.344 0 16.512 13.344 29.856 29.856 29.856s29.856-13.344 29.856-29.856c0-1.824-0.16-3.584-0.48-5.344-2.528-13.952-14.72-24.544-29.408-24.544s-26.88 10.592-29.408 24.544z" /> +<glyph unicode="" glyph-name="file-circle-minus" d="M490.656 104.544h-234.336c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-69.92c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v111.488s0 0.16 0 0.256c0 0.896-0.096 1.76-0.128 2.656 0 0.512 0 0.992-0.096 1.504-0.096 0.8-0.224 1.568-0.352 2.4-0.096 0.544-0.16 1.152-0.256 1.696-0.128 0.608-0.288 1.152-0.416 1.696-0.384 1.44-0.8 2.848-1.312 4.224-0.224 0.608-0.384 1.184-0.64 1.792 0 0 0 0.032-0.032 0.096-0.896 2.080-2.016 4.096-3.232 6.048-0.224 0.288-0.352 0.64-0.544 0.928-0.352 0.512-0.768 1.024-1.152 1.536-0.416 0.608-0.864 1.184-1.312 1.76-0.352 0.384-0.736 0.768-1.056 1.152-0.544 0.64-1.152 1.28-1.76 1.888-0.096 0.096-0.128 0.128-0.16 0.224l-208.544 202.912c-7.552 10.496-19.84 17.376-33.76 17.376-0.16 0-0.352 0-0.48 0-0.16 0-0.352 0-0.512 0h-340c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h234.336c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM638.88 731.648l69.504-67.616h-69.504v67.616zM725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM852.384 233.632c0-16.544-13.44-29.984-29.984-29.984h-194.080c-16.544 0-29.984 13.44-29.984 29.984s13.44 29.984 29.984 29.984h194.080c16.608 0 29.984-13.44 29.984-29.984z" /> +<glyph unicode="" glyph-name="file-circle-plus" d="M490.656 104.544h-234.336c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-69.92c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v111.488s0 0.16 0 0.256c0 0.896-0.096 1.76-0.128 2.656 0 0.512 0 0.992-0.096 1.504-0.096 0.8-0.224 1.568-0.352 2.4-0.096 0.544-0.16 1.152-0.256 1.696-0.128 0.608-0.288 1.152-0.416 1.696-0.384 1.44-0.8 2.848-1.312 4.224-0.224 0.608-0.384 1.184-0.64 1.792 0 0 0 0.032-0.032 0.096-0.896 2.080-2.016 4.096-3.232 6.048-0.224 0.288-0.352 0.64-0.544 0.928-0.352 0.512-0.768 1.024-1.152 1.536-0.416 0.608-0.864 1.184-1.312 1.76-0.352 0.384-0.736 0.768-1.056 1.152-0.544 0.64-1.152 1.28-1.76 1.888-0.096 0.096-0.128 0.128-0.16 0.224l-208.544 202.912c-7.552 10.496-19.84 17.376-33.76 17.376-0.16 0-0.352 0-0.48 0-0.16 0-0.352 0-0.512 0h-340c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h234.336c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM638.88 731.648l69.504-67.616h-69.504v67.616zM725.344 447.872c-118.112 0-214.176-96.096-214.176-214.176s96.096-214.176 214.176-214.176 214.176 96.096 214.176 214.176-96.096 214.176-214.176 214.176zM822.4 203.648h-67.040v-67.040c0-16.544-13.44-29.984-29.984-29.984s-29.984 13.44-29.984 29.984v67.040h-67.040c-16.544 0-29.984 13.44-29.984 29.984s13.44 29.984 29.984 29.984h67.040v67.040c0 16.608 13.44 29.984 29.984 29.984s29.984-13.44 29.984-29.984v-67.040h67.040c16.608 0 29.984-13.44 29.984-29.984s-13.44-29.984-29.984-29.984z" /> +<glyph unicode="" glyph-name="file-info" d="M960 406.688v344.768c0 53.504-43.52 97.024-96.992 97.024h-734.016c-53.472 0-96.992-43.552-96.992-97.024v-510.976c0-53.504 43.52-97.024 96.992-97.024h431.456c43.84-58.144 113.28-96 191.552-96 132.352 0 240 107.648 240 240 0 43.424-11.744 84.064-32 119.232zM128.992 784.512h734.048c18.208 0 32.992-14.816 32.992-33.024v-30.976h-800v30.976c0 18.208 14.784 33.024 32.992 33.024zM128.992 207.488c-18.208 0-32.992 14.816-32.992 33.024v416h800v-177.472c-40.16 30.272-89.952 48.448-144 48.448-63.136 0-120.448-24.672-163.328-64.64h-396.672c-17.664 0-32-14.336-32-32v-127.36c0-17.664 14.336-32 32-32h320.832c1.504-22.336 6.016-43.744 13.184-64h-396.992zM516.832 335.488h-292.832v63.36h315.584c-10.368-19.712-18.176-40.928-22.752-63.36zM752 111.488c-97.024 0-176 78.976-176 176s78.976 176 176 176 176-78.976 176-176-78.976-176-176-176zM752 335.488c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM756 431.488h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM554.688 558.848h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 559.488h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM373.312 558.848h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM736 559.488h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="file-music" d="M848.896 638.752c-2.016 4.736-4.96 9.184-8.8 13.024v0s0 0 0 0c-0.16 0.16-0.352 0.352-0.512 0.512l-208.352 202.72c-7.52 10.592-19.936 17.536-33.888 17.536h-340.992c-46.624 0-84.512-37.408-84.512-83.36v-684.32c0-45.984 37.92-83.36 84.512-83.36h511.328c46.624 0 84.512 37.408 84.512 83.36v517.632c0 5.792-1.184 11.296-3.328 16.288zM638.88 731.648l69.536-67.616h-69.536v67.616zM769.12 105.056s-0.608-0.512-1.44-0.512h-511.328c-0.864 0-1.28 0.352-1.44 0.512v683.904s0.608 0.512 1.44 0.512h299.488v-167.008c0-22.944 18.592-41.568 41.568-41.568h171.776v-475.904zM516.352 519.808c-11.296-6.176-19.104-17.28-21.088-30.048l-22.688-145.888c-9.6 3.104-19.84 4.768-30.464 4.768-54.912 0-99.584-44.672-99.584-99.584s44.672-99.584 99.584-99.584c54.4 0 98.72 43.808 99.552 98.048l27.392 176.096 54.24-23.84c20.992-9.248 45.536 0.288 54.752 21.28 9.248 20.992-0.288 45.536-21.28 54.752l-103.712 45.6c-11.808 5.216-25.344 4.608-36.704-1.568z" /> +<glyph unicode="" glyph-name="file-pdf" d="M943.52 660.288c-0.096 8.16-3.040 16.192-9.056 22.208l-236.096 236.096c-6.048 6.048-14.112 8.96-22.304 9.088-1.024 0.064-2.048 0.32-3.072 0.32h-353.728c-58.816 0-106.72-47.872-106.72-106.72v-369.344c-76.704-24.896-132.352-96.96-132.352-181.888s55.648-156.96 132.352-181.888v-13.504c0-58.816 47.872-106.688 106.72-106.688h518.080c58.752 0 106.528 47.808 106.528 106.528v582.592c0 1.088-0.224 2.112-0.32 3.2zM707.712 818.72l126.848-126.848h-86.432c-22.304 0-40.416 18.112-40.416 40.416v86.464zM144.16 270.080c0 70.144 57.088 127.264 127.264 127.264h364.352c70.144 0 127.264-57.088 127.264-127.264s-57.088-127.264-127.264-127.264h-364.352c-70.144 0-127.232 57.088-127.232 127.264zM837.312 32h-518.048c-23.552 0-42.72 19.168-42.72 42.688v4.16h359.232c105.472 0 191.232 85.792 191.232 191.264s-85.792 191.232-191.264 191.232h-359.232v359.936c0 23.552 19.136 42.72 42.72 42.72h324.48v-131.68c0-57.568 46.848-104.416 104.416-104.416h131.712v-553.344c0-23.456-19.072-42.528-42.528-42.528zM310.016 222.016h20.576c1.6 0 3.008 1.12 3.328 2.72l5.984 30.24c0.32 1.568 1.696 2.72 3.328 2.72h8.576c28.032 0 52.64 12.064 52.64 44.736 0 22.336-17.376 30.592-39.552 30.592h-33.984c-1.6 0-3.008-1.12-3.328-2.72l-20.864-104.256c-0.416-2.112 1.184-4.064 3.328-4.064zM350.688 308.48c0.288 1.568 1.696 2.72 3.328 2.72h7.104c10.080 0 16.032-4.096 16.032-12.96 0-12.288-8.032-18.752-22.016-18.752h-5.952c-2.112 0-3.744 1.952-3.328 4.032l4.832 24.928zM412.448 222.016h32.416c34.816 0 61.472 22.208 61.472 67.296 0 30.048-18.784 43.712-49.888 43.712h-23.2c-1.6 0-3.008-1.12-3.328-2.72l-20.864-104.256c-0.416-2.112 1.184-4.064 3.328-4.064zM453.408 311.232h2.4c13.056 0 22.656-6.176 22.656-23.68 0-32.256-15.776-43.936-34.304-43.936-2.112 0-3.744 1.952-3.328 4.064l12.576 63.552zM519.712 222.016h20.576c1.6 0 2.976 1.12 3.328 2.72l7.296 36.192c0.32 1.568 1.696 2.72 3.328 2.72h29.216c1.6 0 3.008 1.152 3.328 2.72l2.912 15.040c0.384 2.112-1.216 4.032-3.328 4.032h-26.4c-2.144 0-3.712 1.952-3.328 4.032l3.296 17.024c0.288 1.568 1.696 2.72 3.328 2.72h35.232c1.6 0 3.008 1.152 3.328 2.72l3.296 17.024c0.384 2.112-1.216 4.032-3.328 4.032h-61.248c-1.6 0-3.008-1.12-3.328-2.72l-20.832-104.256c-0.416-2.112 1.184-4.064 3.328-4.064zM793.76 576.608h-432.352c-17.664 0-32-14.336-32-32s14.336-32 32-32h432.352c17.664 0 32 14.336 32 32s-14.336 32-32 32zM361.472 620.16h69.088c17.664 0 32 14.336 32 32s-14.336 32-32 32h-69.088c-17.664 0-32-14.336-32-32s14.336-32 32-32zM361.472 727.648h179.072c17.664 0 32 14.336 32 32s-14.336 32-32 32h-179.072c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="film-play" d="M992 736c0 61.728-50.24 112-112 112h-80v32c0 17.664-14.336 32-32 32h-608c-8.48 0-16.608-3.36-22.624-9.376l-96-96c-6.016-6.016-9.376-14.144-9.376-22.624v-768c0-17.664 14.336-32 32-32h816c61.76 0 112 50.24 112 112v624c0 1.856-0.256 3.584-0.544 5.344 0.352 3.488 0.544 7.072 0.544 10.656zM928 224c0-26.464-21.536-48-48-48h-176v320h176c17.184 0 33.408 4.032 48 10.944v-282.944zM640 112v-64h-256v64h256zM224 176v320h416v-320h-416zM640 624v-64h-256v64h256zM320 560h-96v64h96v-64zM928 608c0-26.464-21.536-48-48-48h-176v64h176c17.184 0 33.408 4.032 48 10.944v-26.944zM880 784c26.464 0 48-21.536 48-48s-21.536-48-48-48h-80v96h80zM96 770.752l77.248 77.248h562.752v-160h-544c-17.664 0-32-14.336-32-32v-608h-64v722.752zM224 112h96v-64h-96v64zM880 48h-176v64h176c17.184 0 33.408 4 48 10.976v-26.976c0-26.464-21.536-48-48-48zM526.336 363.904l-158.56 79.264c-9.888 4.96-21.696 4.416-31.136-1.408s-15.168-16.128-15.168-27.232v-158.56c0-11.072 5.76-21.408 15.168-27.232 5.152-3.168 11.008-4.768 16.832-4.768 4.896 0 9.792 1.12 14.304 3.36l158.56 79.264c10.848 5.408 17.664 16.48 17.664 28.64s-6.848 23.2-17.664 28.64zM385.44 307.776v55.008l55.008-27.52-55.008-27.52z" /> +<glyph unicode="" glyph-name="filterable-gallery" d="M746.208 488.864c-11.84 0-21.472-9.6-21.472-21.472v-77.376l-49.536 48.992c-7.968 8.704-19.296 13.536-31.040 13.312-12.096-0.256-23.424-5.792-31.072-15.232-0.064-0.064-0.096-0.128-0.16-0.192l-141.28-178.176-121.824 96.576c-9.088 8.608-20.896 13.312-33.408 13.312h-0.128c-13.024-0.032-25.28-5.184-34.496-14.464-0.16-0.192-0.352-0.352-0.512-0.544l-109.824-119.040v343.168l86.4 81.12h275.392c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-337.216c-37.216 0-67.488-30.272-67.488-67.488v-504.128c0-37.216 30.272-67.488 67.488-67.488h504.128c37.216 0 67.488 30.272 67.488 67.488v337.216c0 11.84-9.6 21.472-21.472 21.472zM700.192 105.6h-504.128c-13.536 0-24.576 11.008-24.576 24.576v41.12l141.024 152.864c1.376 1.28 2.944 1.504 3.904 1.568 1.088 0 2.656-0.288 4.064-1.696 0.576-0.576 1.216-1.152 1.856-1.664l139.424-110.528c0 0 0.032-0.032 0.032-0.032l74.72-59.232c3.936-3.136 8.64-4.64 13.312-4.64 6.336 0 12.608 2.784 16.832 8.128 7.36 9.28 5.792 22.784-3.488 30.144l-57.92 45.92 139.84 176.352 79.616-78.752v-199.456c0-13.536-11.008-24.576-24.576-24.576zM446.816 632.832c-70.496 0-127.872-57.344-127.872-127.872s57.376-127.872 127.872-127.872 127.872 57.376 127.872 127.872-57.376 127.872-127.872 127.872zM446.816 420c-46.848 0-84.96 38.112-84.96 84.96s38.112 84.96 84.96 84.96 84.96-38.112 84.96-84.96-38.112-84.96-84.96-84.96zM746.208 829.344c-82.304 0-149.056-66.72-149.056-149.024s66.72-149.056 149.056-149.056 149.024 66.72 149.024 149.056-66.72 149.024-149.024 149.024zM832.192 731.008l-63.040-74.528c-2.784-3.264-4.32-7.456-4.32-11.744v-50.784c0-10.048-8.16-18.208-18.24-18.208-5.024 0-9.568 2.048-12.896 5.344s-5.344 7.84-5.344 12.864v49.152c0 4.32-1.536 8.48-4.32 11.776l-64.032 75.584c-10.016 11.808-1.664 29.952 13.824 30.016l144.352 0.544c15.52 0.032 24-18.112 13.984-30.016z" /> +<glyph unicode="" glyph-name="filter-list" d="M232.576 872.544c-81.696 0-148.224-66.464-148.224-148.224s66.464-148.224 148.224-148.224 148.224 66.464 148.224 148.224-66.464 148.224-148.224 148.224zM232.576 659.2c-35.936 0-65.152 29.216-65.152 65.152s29.216 65.152 65.152 65.152 65.152-29.216 65.152-65.152-29.216-65.152-65.152-65.152zM789.344 576.128c81.696 0 148.224 66.464 148.224 148.224s-66.464 148.224-148.224 148.224-148.224-66.464-148.224-148.224 66.464-148.224 148.224-148.224zM789.344 789.472c35.936 0 65.152-29.216 65.152-65.152s-29.216-65.152-65.152-65.152-65.152 29.216-65.152 65.152 29.216 65.152 65.152 65.152zM232.576 317.856c-81.696 0-148.224-66.464-148.224-148.224s66.464-148.224 148.224-148.224 148.224 66.464 148.224 148.224-66.464 148.224-148.224 148.224zM232.576 104.544c-35.936 0-65.152 29.216-65.152 65.152s29.216 65.152 65.152 65.152 65.152-29.216 65.152-65.152-29.216-65.152-65.152-65.152zM789.344 317.856c-81.696 0-148.224-66.464-148.224-148.224s66.464-148.224 148.224-148.224 148.224 66.464 148.224 148.224-66.464 148.224-148.224 148.224zM789.344 104.544c-35.936 0-65.152 29.216-65.152 65.152s29.216 65.152 65.152 65.152 65.152-29.216 65.152-65.152-29.216-65.152-65.152-65.152z" /> +<glyph unicode="" glyph-name="finance-award" d="M425.472 188.64c-4.8 3.84-9.664 7.616-14.4 11.168l-91.648-119.040-9.888 76.096c-1.088 8.384-5.504 16.064-12.224 21.216s-15.168 7.424-23.648 6.368l-76.096-9.92 53.6 69.664c-17.024 18.432-24.448 42.72-30.688 65.088l-120.704-156.928c-7.904-10.272-8.832-24.288-2.368-35.488s19.040-17.344 31.872-15.744l120.96 15.744 15.744-120.96c1.664-12.832 10.912-23.392 23.424-26.752 2.752-0.736 5.568-1.12 8.352-1.12 9.792 0 19.2 4.48 25.376 12.48l139.84 181.696c-13.696 7.456-25.952 17.248-37.408 26.432zM924.288 152.64l-121.6 158.048c-0.832-2.592-1.664-5.184-2.496-7.808-6.208-19.808-13.12-41.472-26.72-59.232l52.96-68.832-76.096 9.92c-17.312 2.272-33.568-10.080-35.872-27.616l-9.888-76.096-92.672 120.384c-7.904-4.544-16.288-10.592-24.576-16.672-8.928-6.592-18.336-13.44-28.416-19.36l142.048-184.576c6.144-8 15.584-12.48 25.376-12.48 2.784 0 5.568 0.352 8.352 1.12 12.48 3.36 21.728 13.92 23.424 26.752l15.744 120.96 120.96-15.744c12.864-1.632 25.408 4.544 31.872 15.744s5.504 25.216-2.368 35.488zM670.784 273.312c18.88-0.832 38.432-1.664 47.072 4.384 9.44 6.592 15.456 25.792 21.312 44.384 6.24 19.808 12.672 40.352 25.664 57.6 13.184 17.472 31.264 29.44 48.736 40.992 14.368 9.504 29.184 19.264 34.816 28.8 0.256 2.592 0.768 5.088 1.664 7.552 3.584 10.336-2.688 29.184-8.736 47.36-6.336 19.040-13.472 40.672-13.088 62.752 0.384 21.28 7.904 41.152 15.168 60.352 6.944 18.4 14.144 37.376 10.592 48.896s-20.096 23.264-36.096 34.656c-16.736 11.904-34.048 24.192-46.272 41.664-12.64 18.112-18.752 40.032-24.16 59.392-5.152 18.464-10.464 37.6-19.2 44.192-8.992 6.752-29.024 6.56-48.288 6.432-21.024-0.192-42.656-0.32-63.328 6.816-20.416 7.072-37.216 20.48-53.44 33.472-15.2 12.16-30.912 24.736-42.432 24.928h-0.256c-10.464 0-26.112-11.52-41.216-22.624-16.352-12.064-34.944-25.728-56.48-32.32s-44.576-5.6-64.928-4.704c-18.912 0.8-38.464 1.632-47.072-4.352-9.44-6.624-15.456-25.792-21.28-44.352-6.24-19.84-12.672-40.352-25.664-57.6-13.184-17.472-31.232-29.44-48.768-40.992-16.096-10.656-32.768-21.664-36.448-32.288-3.584-10.336 2.656-29.184 8.704-47.36 6.336-19.040 13.504-40.672 13.088-62.72-0.384-21.28-7.904-41.184-15.136-60.384-6.976-18.4-14.144-37.376-10.624-48.896 0.736-2.4 1.184-4.864 1.344-7.36 5.28-10.464 20.256-21.088 34.784-31.392 16.768-11.904 34.048-24.224 46.272-41.664 12.64-18.112 18.752-40.032 24.16-59.392 5.152-18.464 10.432-37.6 19.2-44.192 8.96-6.72 28.992-6.592 48.256-6.432 3.168 0.032 6.336 0.064 9.568 0.064 17.92 0 36.192-0.8 53.76-6.88 20.448-7.072 37.216-20.512 53.472-33.504 15.2-12.16 30.912-24.736 42.432-24.928 11.008-0.48 26.272 11.424 41.504 22.624 16.384 12.064 34.944 25.696 56.48 32.288 21.568 6.56 44.576 5.6 64.928 4.736zM540.608 294.784c-10.944-8.064-24.256-17.984-31.616-17.952-7.872 0.16-20.896 10.56-32.384 19.744-13.28 10.624-28.352 22.688-46.304 28.928-15.456 5.376-31.84 6.048-46.944 6.048-2.656 0-5.28-0.032-7.84-0.064-14.528-0.096-31.136-0.288-37.248 4.352-5.888 4.448-10.528 20.96-14.208 34.24-4.64 16.608-9.856 35.456-20.96 51.328-10.72 15.36-26.304 26.4-40.032 36.16-10.752 7.648-22.784 16.16-27.040 23.552-0.192 2.112-0.608 4.16-1.216 6.176-2.4 7.936 3.552 23.712 8.768 37.6 5.952 15.744 12.704 33.6 13.056 52.352 0.352 19.36-5.792 37.92-11.232 54.304-4.352 13.088-9.728 29.376-7.328 36.352 2.496 7.232 16.32 16.352 28.512 24.384 14.304 9.472 30.528 20.192 42.112 35.552 11.424 15.168 17.216 33.6 22.304 49.856 4.384 14.048 9.408 29.952 15.84 34.464 5.792 4.032 22.72 3.296 36.256 2.72 17.408-0.736 37.184-1.6 56.128 4.16 18.912 5.76 34.816 17.472 48.864 27.84 10.944 8.064 24.448 17.856 31.616 17.984 7.872-0.16 20.928-10.56 32.384-19.776 13.312-10.656 28.384-22.688 46.336-28.928 18.176-6.304 37.632-6.144 54.784-6.016 14.624 0.096 31.168 0.256 37.28-4.352 5.888-4.448 10.528-20.96 14.208-34.272 4.64-16.608 9.856-35.424 20.96-51.328 10.72-15.36 26.304-26.432 40.032-36.16 12.096-8.608 25.856-18.368 28.288-26.304s-3.52-23.712-8.768-37.632c-5.952-15.744-12.672-33.6-13.024-52.32-0.352-19.392 5.792-37.952 11.232-54.304 4.352-13.088 9.728-29.344 7.328-36.352-0.704-2.048-1.216-4.16-1.504-6.304-4.512-6.688-16.384-14.528-27.008-21.536-14.336-9.472-30.528-20.192-42.144-35.552-11.456-15.168-17.216-33.568-22.336-49.824-4.384-14.048-9.408-29.952-15.84-34.464-5.76-4.064-22.688-3.328-36.256-2.72-17.44 0.768-37.216 1.568-56.096-4.192s-34.848-17.504-48.928-27.84zM591.808 520.832c0 54.4-43.136 74.848-71.648 88.352-25.888 12.256-31.456 16.576-31.456 24.384 0 2.944 0 8.48 9.696 12.48 12.128 4.992 27.36 2.528 32.928-3.040 12.48-12.48 32.736-12.48 45.248 0s12.48 32.768 0 45.28c-9.856 9.856-22.88 16.736-37.12 20.672v12.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.16c-0.512-0.192-1.056-0.32-1.568-0.512-30.816-12.768-49.216-39.552-49.216-71.648 0-49.984 40.96-69.376 68.064-82.208 29.184-13.792 35.072-18.944 35.072-30.528 0-6.112-11.808-14.496-20.352-14.496-14.496 0-35.712 9.984-40.672 14.112-12.512 12.256-32.576 12.224-44.992-0.256-12.48-12.48-12.48-32.768 0-45.248 10.4-10.4 31.488-21.472 53.696-27.68v-14.112c0-17.664 14.336-32 32-32s32 14.336 32 32v15.744c28.48 11.648 52.352 37.984 52.352 71.872z" /> +<glyph unicode="" glyph-name="finance-shield" d="M917.856 821.12c-6.016 6.176-14.528 9.792-23.168 9.792-257.888 0-362.112 88.16-362.976 88.896-11.84 10.656-29.696 10.976-41.888 0.736-1.088-0.896-110.208-89.632-363.84-89.632-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.744-328.256l230.208-183.648c10.112-8.096 22.272-12.16 34.4-12.16s24.256 4.032 34.336 12.096l230.24 183.648c95.040 75.808 151.744 198.496 151.744 327.424 7.712 312.96 2.528 318.24-8.832 329.888zM862.688 492.064c0-110.4-47.712-214.4-127.648-278.208l-224.672-179.232-224.672 179.232c-79.936 63.776-127.648 167.776-127.648 278.208v275.328c195.808 5.632 308.352 61.952 351.936 89.344 42.848-28.032 153.536-84.448 355.712-89.472 1.184-50.272-0.288-167.648-2.944-275.232zM522.624 545.184c-24.288 11.52-28.16 15.136-28.16 20.864 0 2.592 0 6.496 7.744 9.696 10.336 4.288 23.744 2.24 28.384-2.4 12.48-12.48 32.736-12.48 45.248 0s12.48 32.768 0 45.248c-9.12 9.088-20.96 15.616-34.016 19.424v10.432c0 17.664-14.336 32-32 32s-32-14.336-32-32v-13.568s-0.064-0.032-0.128-0.064c-29.6-12.256-47.232-37.984-47.232-68.832 0-48 38.976-66.464 64.768-78.688 27.584-13.056 31.488-17.376 31.488-26.56 0-4.128-9.76-11.392-16.864-11.392-12.096 0-31.296 8.352-36.544 12.64-12.544 12.16-32.576 12.064-44.96-0.352-12.48-12.48-12.48-32.768 0.032-45.248 9.664-9.664 28.96-19.904 49.472-25.888v-11.552c0-17.664 14.336-32 32-32s32 14.336 32 32v13.344c26.688 11.456 48.864 36.448 48.864 68.448 0 52.16-42.624 72.352-68.096 84.416z" /> +<glyph unicode="" glyph-name="fingerprint" d="M370.912 768.32c-110.336-53.44-178.912-163.008-178.912-285.952v-68.672c0-15.232 1.184-31.168 3.488-47.36 2.304-15.968 15.968-27.488 31.648-27.488 1.536 0 3.040 0.096 4.576 0.32 17.472 2.496 29.664 18.688 27.168 36.192-1.92 13.408-2.848 25.952-2.848 38.336v68.672c0 98.208 54.72 185.696 142.816 228.352 15.904 7.68 22.528 26.816 14.848 42.72-7.68 15.936-26.816 22.528-42.752 14.88zM64 800c17.664 0 32 14.336 32 32v32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32v-64c0-17.664 14.336-32 32-32zM960 928h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h64v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v64c0 17.664-14.336 32-32 32zM160 32h-64v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-64c0-17.664 14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 96c-17.664 0-32-14.336-32-32v-32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32zM960 288h-140.256c16.928 39.424 25.92 82.016 25.92 125.664v68.672c0 175.136-142.496 317.664-317.664 317.664h-18.336c-17.664 0-32-14.336-32-32s14.336-32 32-32h18.336c139.84 0 253.664-113.792 253.664-253.664v-68.672c0-44.448-11.424-87.52-33.12-125.664h-225.024c-76.928 0-139.52 62.592-139.52 139.52v40.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-40.96c0-54.016 21.28-103.040 55.744-139.52h-230.272c-11.328 35.328-17.472 72.96-17.472 112v96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-96c0-38.72 5.216-76.256 14.816-112h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h37.632c67.52-150.688 218.848-256 394.368-256h32c9.728 0 19.456 0.448 29.152 1.088 2.336 0.16 4.64 0.32 6.944 0.48 9.504 0.768 18.976 1.76 28.352 3.168 1.024 0.16 2.016 0.352 3.008 0.512 5.6 0.864 11.232 1.76 16.768 2.88 0.864 0.192 1.632 0.512 2.464 0.736 135.616 27.392 250.592 118.048 307.904 247.104h37.408c17.664 0 32 14.336 32 32s-14.336 32-32 32zM593.952 38.080c-7.744-1.408-15.552-2.496-23.424-3.424-3.232-0.384-6.432-0.8-9.664-1.088-10.912-0.96-21.856-1.568-32.864-1.568h-32c-139.2 0-260.576 77.696-323.104 192h678.432c-53.28-98.432-147.84-166.272-257.408-185.92zM110.912 609.76c3.776-1.44 7.648-2.112 11.424-2.112 12.864 0 24.992 7.84 29.888 20.576 54.848 143.232 189.792 235.776 343.776 235.776h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-180.736 0-339.136-108.672-403.552-276.896-6.304-16.48 1.952-35.008 18.464-41.344zM658.208 840.544c142.24-53.568 237.792-192.032 237.792-344.544v-96c0-17.664 14.336-32 32-32s32 14.336 32 32v96c0 179.008-112.224 341.536-279.232 404.448-16.576 6.208-34.976-2.144-41.216-18.656s2.144-35.008 18.688-41.216zM672 427.52c0-18.816-3.712-37.216-11.008-54.688-6.816-16.32 0.864-35.040 17.184-41.856 4.032-1.664 8.224-2.496 12.352-2.496 12.512 0 24.384 7.424 29.536 19.648 10.592 25.312 15.968 52.032 15.968 79.36v40.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-40.96zM532.48 672h-8.96c-54.496 0-105.6-21.152-144-59.552-12.48-12.48-12.48-32.768 0.032-45.248 12.448-12.448 32.768-12.48 45.248 0.032 26.304 26.304 61.312 40.768 98.688 40.768h8.96c37.376 0 72.416-14.496 98.688-40.768 6.24-6.272 14.432-9.376 22.624-9.376s16.384 3.136 22.592 9.376c12.512 12.48 12.512 32.768 0.032 45.248-38.368 38.4-89.504 59.552-144 59.552zM518.816 480c8 0 13.28-3.744 16.288-6.88 12.288-12.768 32.544-13.12 45.248-0.864s13.12 32.512 0.864 45.248c-16.448 17.088-38.592 26.496-62.4 26.496-48.352 0-87.68-40-87.68-89.184v-13.664c0-49.184 39.328-89.184 87.68-89.184 17.664 0 32 14.336 32 32s-14.336 32-32 32c-13.056 0-23.68 11.296-23.68 25.184v13.664c0 13.888 10.624 25.184 23.68 25.184z" /> +<glyph unicode="" glyph-name="flag" d="M971.168 298.816l-104.352 101.184 104.352 101.184c1.344 1.28 2.56 2.72 3.648 4.256 14.336 19.808 16.288 45.6 5.184 67.36-11.104 21.696-33.12 35.232-57.472 35.232h-229.632v160c0 52.96-43.072 96-96 96h-325.6c-13.216 37.216-48.672 64-90.4 64h-32c-52.96 0-96-43.040-96-96v-674.080c-10.496-18.88-16-40.096-16-61.92 0-70.592 57.44-128 128-128s128 57.408 128 128c0 21.664-5.504 42.88-16 61.856v290.144h96v-160c0-52.928 43.040-96 96-96h453.632c24.352 0 46.368 13.504 57.504 35.232 11.136 21.76 9.12 47.552-5.184 67.36-1.088 1.504-2.336 2.944-3.648 4.256zM164.864 32c-35.296 0-64 28.704-64 64 0 12.64 3.68 24.8 10.624 35.232 3.52 5.28 5.376 11.456 5.376 17.76v683.040c0 17.632 14.368 32 32 32h32c17.632 0 32-14.368 32-32v-683.008c0-6.24 1.824-12.384 5.28-17.6 6.912-10.496 10.72-23.072 10.72-35.36 0-35.296-28.704-64-64-64zM276.864 800h320c17.664 0 32-14.368 32-32v-261.6c-10.048 3.552-20.768 5.6-32 5.6h-320v288zM468.864 448h128c17.664 0 32-14.336 32-32s-14.336-32-32-32h-128c-11.232 0-21.984-2.048-32-5.6v69.6h32zM564.864 256h-96c-17.92 0-32 14.048-32 32s14.080 32 32 32h128c52.928 0 96 43.072 96 96v127.872l229.376-0.96-101.408-98.368-27.232 26.432c-12.64 12.288-32.928 12-45.248-0.672s-12-32.928 0.672-45.248l62.88-61.024c0.192-0.192 0.384-0.288 0.576-0.48l110.496-107.168-358.112-0.384z" /> +<glyph unicode="" glyph-name="flashlight" d="M751.264 644.96c-8.16 10.24-20.512 16.224-33.632 16.224h-411.264c-13.088 0-25.472-5.984-33.632-16.224s-11.232-23.648-8.288-36.384l37.984-166.016c12-52.448 40.448-96.384 81.248-126.208v-253.856c0-23.776 19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008v253.856c40.736 29.824 69.248 73.76 81.248 126.208l6.912 30.24c1.76 4.224 2.784 8.8 3.104 13.536l27.936 122.24c2.912 12.768-0.128 26.144-8.288 36.384zM576.608 377.472c-13.728-7.552-22.24-21.984-22.24-37.664v-234.336h-84.64v234.336c0 15.648-8.544 30.080-22.24 37.664-26.464 14.592-46.176 38.656-56.672 68.704h242.464c-10.496-30.048-30.176-54.112-56.672-68.704zM653.856 532.192h-283.68l-9.856 43.008h303.36l-9.856-43.008z" /> +<glyph unicode="" glyph-name="flashlight-on" d="M717.6 661.152h-411.232c-13.088 0-25.472-5.984-33.632-16.224s-11.232-23.648-8.288-36.384l37.984-166.016c12-52.448 40.448-96.384 81.248-126.208v-253.856c0-23.776 19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008v253.856c40.736 29.824 69.248 73.76 81.248 126.208l6.912 30.24c1.76 4.224 2.784 8.8 3.104 13.536l27.936 122.24c2.912 12.768-0.128 26.144-8.288 36.384s-20.512 16.224-33.632 16.224zM663.68 575.136l-9.856-43.008h-283.68l-9.856 43.008h303.36zM576.608 377.472c-13.728-7.552-22.24-21.984-22.24-37.664v-234.336h-84.64v234.336c0 15.648-8.544 30.080-22.24 37.664-26.464 14.592-46.176 38.656-56.672 68.704h242.464c-10.496-30.048-30.176-54.112-56.672-68.704zM512 702.688c23.776 0 43.008 19.232 43.008 43.008v85.344c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-85.344c0-23.776 19.232-43.008 43.008-43.008zM341.376 702.688c6.432 0 13.024 1.44 19.2 4.576 21.248 10.624 29.856 36.448 19.232 57.696l-42.656 85.344c-10.624 21.248-36.448 29.856-57.696 19.232s-29.856-36.448-19.232-57.696l42.656-85.344c7.552-15.072 22.752-23.776 38.496-23.776zM744.576 869.472c-21.248 10.624-47.072 2.016-57.696-19.232l-42.656-85.344c-10.624-21.248-2.016-47.072 19.232-57.696 6.176-3.072 12.704-4.576 19.2-4.576 15.776 0 30.976 8.704 38.496 23.776l42.656 85.344c10.624 21.248 2.016 47.072-19.232 57.696z" /> +<glyph unicode="" glyph-name="flip-box" d="M729.312 895.296l-448-96c-14.752-3.168-25.28-16.192-25.28-31.296v-640c0-15.072 10.528-28.128 25.28-31.296l448-96c2.24-0.48 4.48-0.704 6.688-0.704 7.264 0 14.368 2.464 20.128 7.104 7.52 6.080 11.872 15.232 11.872 24.896v832c0 9.664-4.384 18.816-11.872 24.896s-17.408 8.384-26.816 6.4zM704 824.416v-510.72l-69.376 104.064c-5.76 8.64-15.36 13.952-25.728 14.24-10.208 0.384-20.288-4.48-26.496-12.768l-68.864-91.808-70.912 106.368c-5.664 8.48-15.040 13.76-25.216 14.24-10.432 0.16-20.032-4-26.368-12l-71.008-88.768v394.912l384 82.304zM320 153.856v90.912l93.664 117.056 103.712-155.616c6.176-9.248 16.32-14.24 26.656-14.24 6.112 0 12.288 1.728 17.696 5.376 14.688 9.792 18.688 29.664 8.864 44.384l-19.456 29.184 55.264 73.696 97.536-146.304v-126.72l-384 82.304zM192 768h-128c-17.664 0-32-14.336-32-32v-576c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96v512h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 768h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-512h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32v576c0 17.664-14.336 32-32 32zM399.968 631.968c2.208 0 4.448 0.224 6.72 0.704l224 48c17.28 3.712 28.288 20.736 24.576 38.016s-20.64 28.288-38.016 24.576l-224-48c-17.28-3.712-28.288-20.736-24.576-38.016 3.232-15.008 16.48-25.28 31.264-25.28zM561.312 603.264l-168.064-36.032c-17.28-3.712-28.288-20.704-24.576-38.016 3.232-15.008 16.48-25.28 31.232-25.28 2.208 0 4.48 0.256 6.752 0.736l167.968 35.968c17.312 3.712 28.288 20.704 24.608 37.984s-20.736 28.288-37.984 24.608zM192 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 448h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 320h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 448c0-17.664 14.336-32 32-32h32c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-96c-17.664 0-32-14.336-32-32zM832 256h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="folder" d="M873.088 736.064h-344.032l-53.6 79.744c-20.864 31.072-55.68 49.6-93.12 49.6h-231.424c-65.6 0-118.912-53.344-118.912-118.912v-596.96c0-65.6 53.344-118.912 118.912-118.912h756.544c46.592 0 84.544 37.92 84.544 84.544v502.016c0 65.6-53.344 118.912-118.912 118.912zM150.912 801.408h231.424c16.064 0 31.040-7.968 40-21.312l29.6-44.064h-144.032c-30.016 0-59.296-12.32-80.288-33.824l-131.648-134.816v179.072c0 30.304 24.64 54.912 54.912 54.912zM928 115.136c0-11.328-9.216-20.544-20.544-20.544h-756.544c-30.272 0-54.912 24.64-54.912 54.912v326.208l177.408 181.76c8.992 9.248 21.6 14.528 34.496 14.528h565.184c30.304 0 54.912-24.64 54.912-54.912v-501.984z" /> +<glyph unicode="" glyph-name="folder-arrow-down" d="M785.312 703.328h-245.152c-6.688 0-12.96 2.592-17.664 7.328l-45.472 45.472c-20.96 20.96-48.864 32.512-78.496 32.512h-159.84c-61.184 0-111.008-49.792-111.008-111.008v-461.344c0-61.216 49.792-111.008 111.008-111.008h546.688c61.184 0 111.008 49.792 111.008 111.008v375.968c0 61.216-49.792 111.008-111.008 111.008zM810.336 216.32c0-13.792-11.232-24.992-24.992-24.992h-546.656c-13.792 0-24.992 11.232-24.992 24.992v461.344c0 13.792 11.232 24.992 24.992 24.992h159.84c6.656 0 12.96-2.592 17.664-7.328l45.472-45.472c20.96-20.96 48.864-32.512 78.496-32.512h245.152c13.792 0 24.992-11.232 24.992-24.992v-375.968zM585.696 410.848l-30.688-30.688v152.192c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-152.192l-30.688 30.688c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l104.096-104.096s0.032-0.032 0.096-0.096c0.992-0.992 2.016-1.888 3.072-2.784 0.512-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.184-0.928 1.824-1.376 0.608-0.416 1.248-0.768 1.888-1.152 0.544-0.352 1.152-0.672 1.696-1.024 0.64-0.352 1.28-0.64 1.952-0.928 0.64-0.288 1.248-0.608 1.888-0.864s1.28-0.48 1.92-0.736c0.672-0.256 1.376-0.512 2.048-0.736 0.64-0.224 1.28-0.352 1.952-0.512 0.736-0.16 1.408-0.384 2.144-0.512 0.768-0.128 1.504-0.256 2.272-0.352 0.64-0.096 1.248-0.224 1.888-0.256 1.408-0.128 2.816-0.224 4.224-0.224s2.816 0.096 4.224 0.224c0.64 0.032 1.28 0.16 1.888 0.256 0.768 0.128 1.536 0.224 2.272 0.352s1.408 0.352 2.144 0.512c0.64 0.16 1.312 0.288 1.952 0.512 0.672 0.224 1.376 0.48 2.048 0.736 0.64 0.224 1.28 0.416 1.92 0.736 0.64 0.256 1.248 0.544 1.888 0.864s1.312 0.608 1.952 0.928c0.608 0.288 1.152 0.672 1.696 1.024 0.64 0.384 1.28 0.736 1.888 1.152 0.64 0.416 1.248 0.896 1.824 1.376 0.512 0.384 1.056 0.736 1.536 1.152 1.056 0.896 2.080 1.792 3.072 2.784 0 0 0.032 0.032 0.096 0.096l104.096 104.096c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0z" /> +<glyph unicode="" glyph-name="folder-arrow-up" d="M785.312 703.328h-245.152c-6.688 0-12.96 2.592-17.664 7.328l-45.472 45.472c-20.96 20.96-48.864 32.512-78.496 32.512h-159.84c-61.216 0-111.008-49.792-111.008-111.008v-461.344c0-61.216 49.792-111.008 111.008-111.008h546.656c61.216 0 111.008 49.792 111.008 111.008v375.968c0 61.216-49.792 111.008-111.008 111.008zM810.336 216.32c0-13.792-11.232-24.992-24.992-24.992h-546.656c-13.792 0-24.992 11.232-24.992 24.992v461.344c0 13.792 11.232 24.992 24.992 24.992h159.84c6.656 0 12.96-2.592 17.664-7.328l45.472-45.472c20.96-20.96 48.864-32.512 78.496-32.512h245.152c13.792 0 24.992-11.232 24.992-24.992v-375.968zM542.432 562.72c-1.024 1.024-2.048 1.952-3.168 2.848-0.512 0.416-1.024 0.768-1.536 1.152-0.608 0.48-1.184 0.928-1.824 1.376-0.608 0.416-1.248 0.768-1.888 1.152-0.544 0.352-1.152 0.672-1.696 1.024-0.64 0.352-1.312 0.64-1.952 0.928-0.608 0.288-1.248 0.608-1.888 0.864s-1.28 0.48-1.92 0.736c-0.672 0.256-1.376 0.512-2.048 0.736-0.64 0.224-1.312 0.352-1.952 0.512-0.736 0.16-1.408 0.384-2.144 0.512-0.768 0.16-1.536 0.256-2.272 0.352-0.64 0.096-1.248 0.224-1.888 0.256-2.816 0.288-5.664 0.288-8.48 0-0.64-0.032-1.248-0.16-1.888-0.256-0.768-0.128-1.536-0.224-2.272-0.352s-1.408-0.352-2.144-0.512c-0.64-0.16-1.312-0.288-1.952-0.512-0.672-0.224-1.376-0.48-2.048-0.736-0.64-0.224-1.28-0.416-1.92-0.736-0.64-0.256-1.248-0.544-1.888-0.864s-1.312-0.608-1.952-0.928c-0.608-0.288-1.152-0.672-1.696-1.024-0.64-0.384-1.28-0.736-1.888-1.152-0.64-0.416-1.248-0.896-1.824-1.376-0.512-0.384-1.024-0.736-1.536-1.152-1.12-0.896-2.144-1.824-3.168-2.848l-104.096-104.096c-16.8-16.8-16.8-44.032 0-60.8 16.8-16.8 44.032-16.8 60.8 0l30.688 30.688v-152.192c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v152.192l30.688-30.688c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-104.096 104.096z" /> +<glyph unicode="" glyph-name="folder-check" d="M583.808 519.904l-134.528-136.064-66.304 66.304c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l96.864-96.864c8.064-8.064 18.976-12.576 30.432-12.576h0.128c11.424 0 22.4 4.608 30.464 12.768l164.96 166.784c16.672 16.896 16.544 44.128-0.352 60.8s-44.128 16.544-60.8-0.352zM785.312 703.328h-245.152c-6.688 0-12.96 2.592-17.664 7.328l-45.472 45.472c-20.96 20.96-48.864 32.512-78.496 32.512h-159.84c-61.216 0-111.008-49.792-111.008-111.008v-461.344c0-61.216 49.792-111.008 111.008-111.008h546.656c61.216 0 111.008 49.792 111.008 111.008v375.968c0 61.216-49.792 111.008-111.008 111.008zM810.336 216.32c0-13.792-11.232-24.992-24.992-24.992h-546.656c-13.792 0-24.992 11.232-24.992 24.992v461.344c0 13.792 11.232 24.992 24.992 24.992h159.84c6.656 0 12.96-2.592 17.664-7.328l45.472-45.472c20.96-20.96 48.864-32.512 78.496-32.512h245.152c13.792 0 24.992-11.232 24.992-24.992v-375.968z" /> +<glyph unicode="" glyph-name="folder-file" d="M896 832h-115.552l-3.968 11.904c-10.528 31.168-39.648 52.096-72.48 52.096h-160c-35.296 0-64-28.704-64-64h-115.552l-3.968 11.904c-10.528 31.168-39.648 52.096-72.448 52.096h-160c-35.296 0-64-28.704-64-64v-136.896c-19.040-11.104-32-31.52-32-55.104v-544c0-52.928 43.040-96 96-96h768c52.928 0 96 43.072 96 96v640c0 52.96-43.072 96-96 96zM96 96v544h200.928l24.704-74.112c4.448-13.408 16.96-21.888 30.336-21.888 3.36 0 6.752 0.544 10.112 1.664 13.408 4.448 21.728 16.96 21.76 30.336h384.16c17.664 0 32-14.336 32-32v-448c0-11.232 2.048-21.952 5.6-32h-677.6c-17.952 0-32 14.048-32 32zM928 96c0-17.952-14.048-32-32-32s-32 14.048-32 32v448c0 52.96-43.072 96-96 96h-403.616l-14.048 42.112c-4.352 13.056-16.576 21.888-30.336 21.888h-192v128h160c5.408 0 10.080-3.392 11.776-8.448l21.824-65.664c5.6-16.768 23.712-25.856 40.448-20.256 13.408 4.448 21.76 16.96 21.76 30.368h96.16c0-17.664 14.336-32 32-32s32 14.336 32 32v64h160c5.408 0 10.080-3.392 11.808-8.448l21.856-65.664c4.48-13.408 16.96-21.888 30.336-21.888 3.36 0 6.752 0.512 10.112 1.664 13.408 4.448 21.76 16.96 21.76 30.368h96.16c17.952 0 32-14.048 32-32v-640zM704 320h-512c-17.664 0-32-14.336-32-32v-160c0-17.664 14.336-32 32-32h512c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32zM672 160h-448v96h448v-96zM704 416h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM704 512h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="folder-open" d="M978.112 433.152c-10.432 17.696-25.568 31.136-43.296 39.52v29.376c0 55.104-44.832 99.936-99.904 99.936h-36.736v144.096c0 55.104-44.832 99.936-99.936 99.936h-381.6c-54.88 0-99.552-44.672-99.552-99.552v-144.512h-85.12c-55.104 0-99.936-44.832-99.936-99.936v-352.192c0-55.104 44.832-99.936 99.936-99.936h630.912c36.288 0 69.76 19.712 87.36 51.424l129.12 232.576c17.376 31.264 16.896 68.352-1.248 99.2zM834.88 537.984c19.808 0 35.904-16.128 35.904-35.936v-19.648h-72.64v55.616h36.736zM281.088 746.496c0 19.584 15.936 35.552 35.552 35.552h381.6c19.808 0 35.936-16.128 35.936-35.936v-263.712h-453.088v264.096zM131.936 537.984h85.12v-80.256l-121.088-251.008v295.328c0 19.808 16.128 35.936 35.936 35.936zM923.36 365.024l-129.12-232.576c-6.336-11.392-18.336-18.496-31.424-18.496h-583.456c-18.56 0-27.84 12.384-30.976 17.696s-9.44 19.456-0.416 35.648c0.32 0.544 0.576 1.088 0.864 1.632l120.352 249.408h622.784c18.528 0 27.808-12.384 30.976-17.696 3.136-5.312 9.44-19.456 0.448-35.648zM348.128 506.496h164.672c17.664 0 32 14.336 32 32s-14.336 32-32 32h-164.672c-17.664 0-32-14.336-32-32s14.336-32 32-32zM669.44 570.496h-72.192c-17.664 0-32-14.336-32-32s14.336-32 32-32h72.192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM348.128 598.176h321.344c17.664 0 32 14.336 32 32s-14.336 32-32 32h-321.312c-17.664 0-32-14.336-32-32s14.336-32 32-32zM348.128 689.888h231.68c17.664 0 32 14.336 32 32s-14.336 32-32 32h-231.648c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="folder-open-2" d="M902.752 538.368c-2.048 2.304-4.192 4.48-6.4 6.56v47.392c0 61.216-49.792 111.008-111.008 111.008h-245.152c-6.688 0-12.96 2.592-17.664 7.328l-45.472 45.472c-20.96 20.96-48.864 32.512-78.496 32.512h-159.84c-61.216 0-111.008-49.792-111.008-111.008v-461.344c0-61.216 49.792-111.008 111.008-111.008h553.824c56.608 0 104.064 42.464 110.336 98.72l27.552 247.968c3.488 31.36-6.56 62.816-27.616 86.272zM213.664 677.664c0 13.792 11.232 24.992 24.992 24.992h159.84c6.656 0 12.96-2.592 17.664-7.328l45.472-45.472c20.96-20.96 48.864-32.512 78.496-32.512h245.152c13.792 0 24.992-11.232 24.992-24.992v-16.992h-462.624c-47.872 0-90.144-30.496-105.312-75.904l-28.704-86.112v264.352zM844.896 461.568l-27.552-248.032c-1.408-12.672-12.064-22.24-24.832-22.24h-553.824c-2.784 0-5.408 0.48-7.904 1.28l93.216 279.648c3.424 10.24 12.928 17.12 23.712 17.12h472.352c9.728 0 15.84-5.216 18.656-8.32 2.784-3.104 7.296-9.76 6.24-19.424z" /> +<glyph unicode="" glyph-name="folders" d="M884.352 760.96h-297.12l-45.408 67.552c-18.912 28.192-50.496 45.024-84.448 45.024h-201.376c-59.328 0-107.648-48.288-107.648-107.648v-519.424c0-59.36 48.288-107.616 107.648-107.616h658.304c42.848 0 77.696 34.88 77.696 77.696v436.8c0 59.328-48.288 107.648-107.648 107.648zM256 809.536h201.376c12.608 0 24.32-6.24 31.328-16.704l21.408-31.84h-117.536c-27.232 0-53.792-11.168-72.832-30.656l-107.392-110.016v145.632c0 24.064 19.584 43.648 43.648 43.648zM928 216.544c0-7.552-6.144-13.696-13.696-13.696h-658.304c-24.064 0-43.648 19.552-43.648 43.616v282.176l153.184 156.96c7.040 7.232 16.896 11.36 27.008 11.36h491.776c24.064 0 43.648-19.552 43.648-43.648v-436.8zM870.528 86.464h-621.696c-84.288 0-152.864 68.576-152.864 152.832v469.12c0 17.664-14.336 32-32 32s-32-14.336-32-32v-469.12c0-119.552 97.28-216.832 216.864-216.832h621.696c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="forest" d="M907.552 239.712l-64.768 64.768c16.48 0.096 31.456 9.504 38.56 24.352 7.168 14.88 5.152 32.608-5.152 45.472l-83.456 104.32c16.8 3.968 30.976 15.744 37.792 32.224 8.064 19.456 4.256 41.504-9.6 57.088l-163.104 204.544c-8.16 10.24-20.512 16.16-33.632 16.16s-25.472-5.984-33.632-16.16l-42.656-53.504c-14.816-18.56-11.776-45.6 6.784-60.416s45.6-11.776 60.416 6.784l9.056 11.36 90.592-113.568h-10.336c-16.512 0-31.616-9.472-38.752-24.352-7.168-14.88-5.152-32.608 5.152-45.472l82.272-102.816h-14.176c-17.408 0-33.056-10.496-39.712-26.528-6.656-16.096-2.976-34.56 9.312-46.848l64.768-64.768h-102.752l-52.128 52.128c16.48 0.096 31.456 9.504 38.56 24.352 7.168 14.88 5.152 32.608-5.152 45.472l-83.456 104.32c16.8 3.968 30.976 15.744 37.792 32.224 8.064 19.456 4.256 41.504-9.6 57.088l-163.168 204.544c-8.16 10.24-20.512 16.16-33.632 16.16s-25.472-5.984-33.632-16.16l-163.104-204.544c-13.856-15.584-17.664-37.632-9.6-57.088 6.816-16.48 20.992-28.256 37.792-32.224l-83.456-104.32c-10.336-12.928-12.32-30.592-5.152-45.472 7.136-14.848 22.112-24.32 38.56-24.352l-64.768-64.768c-12.288-12.288-15.968-30.816-9.312-46.848 6.656-16.096 22.304-26.528 39.712-26.528h136.032c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-32.224l64.768 64.768c12.288 12.288 15.968 30.816 9.312 46.848-6.656 16.096-22.304 26.528-39.712 26.528h-14.176l82.272 102.816c10.336 12.928 12.32 30.592 5.152 45.472s-22.24 24.352-38.752 24.352h-10.336l90.592 113.568 90.592-113.568h-10.336c-16.512 0-31.616-9.472-38.752-24.352-7.168-14.88-5.152-32.608 5.152-45.472l82.272-102.816h-14.176c-17.408 0-33.056-10.496-39.712-26.528-6.656-16.096-2.976-34.56 9.312-46.848l64.768-64.768h-106.144v78.88c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-268.192c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v103.296h138.368v-103.296c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v103.296h209.952c17.408 0 33.056 10.496 39.712 26.528 6.656 16.096 2.976 34.56-9.312 46.848z" /> +<glyph unicode="" glyph-name="form" d="M788.192 618.816h-636.864c-12.96 0-23.488-10.528-23.488-23.488v-253.728c0-12.96 10.528-23.488 23.488-23.488h636.864c12.96 0 23.488 10.528 23.488 23.488v253.728c0 12.96-10.528 23.488-23.488 23.488zM170.848 575.84h597.856v-146.752l-70.080-67.968h-527.776v214.72zM233.6 490.496h219.392c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-219.392c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM624.48 448.16h-390.88c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h390.88c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 661.152h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 789.152h306.752v-84.992h-306.752v84.992zM512 768.16h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM932.544 425.28c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM551.296 289.504l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4s-22.016 8.384-30.4 0zM685.472 696.96l53.792 53.792c8.384 8.384 8.384 22.016 0 30.4s-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576zM236.672 149.504h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM266.176 191.84h128.992c29.216 0 52.992 23.776 52.992 52.992s-23.776 52.992-52.992 52.992h-128.992c-29.216 0-52.992-23.776-52.992-52.992s23.776-52.992 52.992-52.992zM266.176 254.816h128.992c5.504 0 10.016-4.48 10.016-10.016s-4.48-10.016-10.016-10.016h-128.992c-5.504 0-10.016 4.48-10.016 10.016s4.48 10.016 10.016 10.016z" /> +<glyph unicode="" glyph-name="forum" d="M793.12 661.632h-25.12v27.040c0 38.016-30.816 68.768-68.768 68.768h-545.12c-38.016 0-68.768-30.816-68.768-68.768v-476c0-19.872 16.288-33.536 33.632-33.536 7.072 0 14.368 2.304 20.736 7.392l73.824 59.040c5.152-52.512 49.248-93.664 102.688-93.664h372.512l89.952-72.864c13.184-10.72 29.088-16.16 45.216-16.16 10.496 0 21.12 2.336 31.104 7.072 25.472 12.16 41.312 37.28 41.312 65.664v421.984c0 57.344-46.304 103.968-103.2 103.968zM171.36 322.016v349.472h510.688v-305.888h-426.016c-19.552 0-38.496-6.656-53.728-18.848l-30.976-24.736zM810.336 164.128l-79.264 64.256c-7.648 6.176-17.248 9.6-27.104 9.6h-387.744c-9.472 0-17.184 8.064-17.184 18.016v23.648h400.16c38.016 0 68.768 30.816 68.768 68.768v227.2h25.12c9.472 0 17.184-8.064 17.184-18.016v-393.504z" /> +<glyph unicode="" glyph-name="full-screen-slide" d="M738.72 662.112h-614.56c-22.88 0-41.504-18.624-41.504-41.504v-345.6c0-22.88 18.624-41.504 41.504-41.504h614.56c22.88 0 41.504 18.624 41.504 41.504v345.6c0 22.88-18.624 41.504-41.504 41.504zM737.216 276.512h-611.584v274.944l62.208 67.648h549.376v-342.592zM810.56 640.192c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c5.024 0 8.384-3.008 8.384-4.96v-288.832c0-1.984-3.328-4.96-8.384-4.96-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c28.32 0 51.36 21.536 51.36 47.968v288.832c0 26.464-23.040 47.968-51.36 47.968zM889.984 617.184c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c4.448 0 7.328-1.6 8.384-2.528v-247.712c-1.024-0.928-3.904-2.528-8.384-2.528-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c28.8 0 51.36 19.52 51.36 44.416v249.952c0 24.896-22.56 44.416-51.36 44.416zM492.32 362.88c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008 15.008 6.72 15.008 15.008-6.72 15.008-15.008 15.008zM431.424 362.88c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008 15.008 6.72 15.008 15.008-6.72 15.008-15.008 15.008zM370.528 362.88c-8.288 0-15.008-6.72-15.008-15.008s6.72-15.008 15.008-15.008 15.008 6.72 15.008 15.008-6.72 15.008-15.008 15.008zM358.688 467.776h83.392l-8.256-8.128c-8.48-8.32-8.576-21.952-0.256-30.4 4.224-4.288 9.76-6.432 15.328-6.432 5.44 0 10.88 2.048 15.072 6.176l45.76 44.96c0 0 0.032 0.032 0.032 0.032 0.448 0.448 0.896 0.928 1.312 1.44 0.032 0.032 0.064 0.064 0.096 0.096 2.848 3.424 4.64 7.744 4.896 12.448 0.032 0.384 0.064 0.8 0.064 1.184 0 0.032 0 0.032 0 0.032s0 0.032 0 0.032c0 0.256-0.032 0.544-0.032 0.8 0 0.448-0.032 0.864-0.064 1.312s-0.128 0.832-0.192 1.248c-0.032 0.288-0.064 0.576-0.128 0.864-0.096 0.48-0.224 0.96-0.352 1.44-0.064 0.192-0.096 0.416-0.16 0.608-0.16 0.48-0.32 0.96-0.512 1.44-0.064 0.192-0.128 0.384-0.192 0.544-0.192 0.448-0.384 0.864-0.608 1.28-0.096 0.224-0.192 0.448-0.32 0.64-0.192 0.352-0.416 0.672-0.608 1.024-0.16 0.256-0.32 0.544-0.48 0.8s-0.352 0.48-0.512 0.704c-0.256 0.32-0.48 0.672-0.736 0.992 0 0.032-0.032 0.032-0.032 0.032-0.416 0.512-0.864 1.024-1.344 1.504l-45.76 45.76c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l9.056-9.056h-84.032c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504z" /> +<glyph unicode="" glyph-name="gear" d="M921.952 564.64l-35.392 10.24c-9.664 2.816-17.44 9.76-21.568 19.648-3.872 9.312-3.328 19.744 1.568 28.608l17.76 32.256c20.736 37.6 14.016 85.088-16.352 115.456l-33.12 33.088c-30.336 30.4-77.856 37.088-115.456 16.352l-32.256-17.76c-8.864-4.896-19.264-5.44-29.216-1.312-9.312 3.84-16.256 11.584-19.040 21.28l-10.24 35.392c-11.936 41.248-50.304 70.048-93.216 70.048h-46.848c-42.912 0-81.28-28.8-93.216-70.048l-10.24-35.392c-2.816-9.696-9.728-17.44-19.648-21.536-9.312-3.904-19.744-3.328-28.576 1.536l-32.256 17.792c-37.632 20.736-85.088 14.016-115.456-16.352l-33.12-33.12c-30.368-30.368-37.088-77.856-16.352-115.456l17.792-32.288c4.864-8.832 5.44-19.232 1.312-29.184-3.84-9.312-11.648-16.256-21.312-19.040l-35.36-10.24c-41.28-11.936-70.080-50.272-70.080-93.216v-46.848c0-42.976 28.832-81.312 70.048-93.216l35.392-10.24c9.664-2.784 17.44-9.76 21.536-19.648 3.872-9.312 3.328-19.744-1.6-28.608l-17.728-32.256c-20.736-37.6-14.016-85.12 16.352-115.456l33.12-33.12c30.368-30.368 77.856-37.12 115.456-16.384l32.256 17.76c8.864 4.896 19.296 5.44 29.216 1.312 9.28-3.84 16.256-11.616 19.040-21.28l10.24-35.392c11.936-41.248 50.304-70.048 93.216-70.048h46.848c42.912 0 81.28 28.8 93.216 70.048l10.24 35.36c2.784 9.664 9.76 17.44 19.648 21.536 9.344 3.904 19.776 3.296 28.576-1.568l32.288-17.792c37.632-20.736 85.12-13.984 115.456 16.384l33.12 33.12c30.368 30.368 37.12 77.856 16.384 115.456l-17.76 32.288c-4.864 8.832-5.44 19.264-1.312 29.184 3.84 9.312 11.616 16.256 21.312 19.072l35.36 10.24c41.28 11.936 70.080 50.272 70.080 93.216v46.848c0 42.944-28.832 81.28-70.048 93.216zM928 424.576c0-14.624-9.792-27.648-23.872-31.744l-35.36-10.24c-28.448-8.256-51.296-28.64-62.88-56.576-11.424-27.456-9.696-58.080 4.608-84.064l17.76-32.288c7.072-12.8 4.768-28.96-5.568-39.328l-33.12-33.12c-10.336-10.336-26.496-12.64-39.328-5.568l-32.288 17.792c-26.016 14.336-56.64 16-84.576 4.384-27.392-11.328-47.808-34.144-56.064-62.624l-10.24-35.36c-4.096-14.048-17.12-23.872-31.744-23.872h-46.848c-14.624 0-27.648 9.792-31.744 23.84l-10.24 35.36c-8.256 28.48-28.672 51.328-56.544 62.848-12.064 5.024-24.704 7.488-37.312 7.488-16.128 0-32.16-4.064-46.752-12.096l-32.256-17.76c-12.832-7.072-28.992-4.768-39.328 5.568l-33.12 33.12c-10.336 10.336-12.64 26.496-5.568 39.328l17.728 32.256c14.336 26.016 16.032 56.64 4.416 84.608-11.328 27.36-34.208 47.808-62.624 56.032l-35.392 10.24c-14.048 4.064-23.84 17.12-23.84 31.712v46.848c0 14.624 9.792 27.648 23.872 31.744l35.36 10.24c28.448 8.256 51.296 28.672 62.88 56.576 11.392 27.424 9.696 58.080-4.608 84.064l-17.792 32.256c-7.040 12.8-4.768 28.96 5.6 39.328l33.12 33.12c10.336 10.368 26.496 12.608 39.296 5.568l32.256-17.792c26.016-14.336 56.672-16 84.576-4.384 27.392 11.328 47.808 34.144 56.064 62.624l10.24 35.36c4.064 14.048 17.12 23.872 31.744 23.872h46.848c14.624 0 27.648-9.792 31.744-23.84l10.24-35.392c8.256-28.48 28.64-51.328 56.544-62.848 27.424-11.392 58.048-9.728 84.096 4.608l32.256 17.792c12.832 7.040 28.96 4.8 39.328-5.6l33.12-33.088c10.336-10.336 12.64-26.528 5.568-39.328l-17.76-32.256c-14.336-26.016-16.032-56.64-4.384-84.608 11.36-27.36 34.208-47.808 62.624-56.032l35.392-10.24c14.048-4.064 23.84-17.088 23.84-31.744v-46.848zM512 684.544c-130.4 0-236.544-106.112-236.544-236.544s106.112-236.544 236.544-236.544 236.544 106.112 236.544 236.544-106.112 236.544-236.544 236.544zM512 275.456c-95.136 0-172.544 77.408-172.544 172.544s77.376 172.544 172.544 172.544 172.544-77.376 172.544-172.544-77.408-172.544-172.544-172.544z" /> +<glyph unicode="" glyph-name="gift" d="M801.632 658.944c5.12 13.696 7.936 28.544 7.936 44 0 69.664-56.704 126.368-126.368 126.368h-1.504c-69.408 0-131.168-33.664-169.696-85.536-38.528 51.872-100.224 85.536-169.696 85.536h-1.504c-69.664 0-126.368-56.704-126.368-126.368 0-15.488 2.816-30.304 7.936-44-52.704-7.904-93.28-53.472-93.28-108.32v-35.072c0-35.232 16.736-66.592 42.656-86.656v-255.264c0-60.416 49.152-109.536 109.536-109.536h461.344c60.416 0 109.536 49.152 109.536 109.536v255.264c25.952 20.064 42.656 51.424 42.656 86.656v35.072c0 54.88-40.544 100.448-93.28 108.32zM811.776 550.624v-35.072c0-14.592-11.872-26.464-26.464-26.464h-231.808v87.456h129.632c3.68 0 7.296 0.16 10.88 0.512h91.264c14.592 0 26.464-11.872 26.464-26.464zM681.696 746.24h1.504c23.84 0 43.296-19.424 43.296-43.296 0-21.632-15.968-39.584-36.704-42.784h-129.12c17.44 50.048 65.12 86.112 121.056 86.112zM340.832 746.24h1.504c55.936 0 103.584-36 121.056-86.112h-129.12c-20.768 3.2-36.704 21.152-36.704 42.784 0 23.84 19.424 43.296 43.296 43.296zM212.224 550.624c0 14.592 11.872 26.464 26.464 26.464h91.264c3.584-0.288 7.2-0.512 10.88-0.512h129.632v-87.456h-231.808c-14.592 0-26.464 11.872-26.464 26.464v35.072zM254.88 173.6v231.808h215.584v-258.272h-189.152c-14.592 0-26.464 11.872-26.464 26.464zM769.12 173.6c0-14.592-11.872-26.464-26.464-26.464h-189.152v258.272h215.584v-231.808z" /> +<glyph unicode="" glyph-name="glass-cup" d="M734.688 831.008h-445.344c-40.544 0-72.064-35.232-67.584-75.52l70.24-631.968c3.84-34.432 32.928-60.512 67.584-60.512h304.928c34.656 0 63.744 26.080 67.584 60.512l70.24 631.968c4.48 40.288-27.040 75.52-67.584 75.52zM714.592 744.992l-40.192-361.696h-324.768l-40.192 361.696h405.152zM648.352 148.992h-272.736l-16.48 148.352h305.664l-16.48-148.352z" /> +<glyph unicode="" glyph-name="glass-effect" d="M831.36 703.68c-11.84 0-21.472-9.6-21.472-21.472v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.76l-140.48-140.48c-0.928 0-1.856-0.064-2.752-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-2.688c0.352 0.416 0.736 0.8 1.056 1.216 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-3.904-3.904h-2.624c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-2.88l3.52 3.52c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.24-1.952h-2.304c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.76c-0.608 0-1.248 0-1.856-0.064-0.608 0.128-1.216 0.224-1.824 0.288-1.216 0.16-2.432 0.352-3.616 0.64-0.608 0.128-1.216 0.256-1.824 0.32-0.544 0.256-1.12 0.48-1.728 0.672-1.152 0.384-2.304 0.864-3.392 1.376-0.576 0.256-1.12 0.512-1.696 0.704-0.48 0.352-0.992 0.704-1.536 1.024-1.056 0.64-2.080 1.344-3.040 2.080-0.512 0.384-0.992 0.736-1.536 1.056-0.416 0.448-0.832 0.896-1.28 1.344-0.896 0.832-1.728 1.76-2.528 2.688-0.416 0.48-0.832 0.928-1.248 1.376-0.288 0.544-0.64 1.056-0.96 1.568-0.704 1.024-1.344 2.080-1.888 3.168-0.288 0.544-0.608 1.088-0.928 1.6-0.192 0.576-0.384 1.152-0.608 1.728-0.448 1.12-0.864 2.304-1.184 3.488-0.16 0.608-0.352 1.184-0.576 1.76-0.064 0.608-0.128 1.216-0.224 1.824-0.192 1.216-0.352 2.432-0.416 3.68-0.032 0.704-0.128 1.376-0.224 2.080 0.096 0.864 0.16 1.76 0.16 2.656v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v4c0 0.416 0 0.832 0.032 1.248 0.032 0.64 0 1.248 0 1.856 0.128 0.608 0.256 1.216 0.352 1.824 0.16 1.216 0.416 2.432 0.704 3.616 0.16 0.608 0.288 1.216 0.384 1.792 0.256 0.544 0.512 1.12 0.704 1.696 0.416 1.152 0.928 2.272 1.472 3.36 0.288 0.544 0.544 1.12 0.768 1.696 0.384 0.48 0.736 0.992 1.056 1.504 0.672 1.024 1.376 2.048 2.176 3.008 0.384 0.48 0.768 0.992 1.12 1.504 0.48 0.384 0.928 0.8 1.376 1.248 0.864 0.864 1.792 1.696 2.752 2.464 0.48 0.384 0.96 0.8 1.408 1.216 0.544 0.288 1.088 0.608 1.6 0.928 1.024 0.672 2.112 1.28 3.2 1.824 0.544 0.288 1.088 0.576 1.632 0.896 0.576 0.16 1.184 0.352 1.76 0.576 1.152 0.416 2.304 0.8 3.488 1.088 0.608 0.16 1.184 0.32 1.76 0.544 0.608 0.032 1.216 0.096 1.824 0.192 1.216 0.16 2.464 0.288 3.68 0.32 0.8 0.032 1.6 0.096 2.368 0.224 0.928-0.128 1.888-0.192 2.88-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.408l-1.472-1.472c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-0.704-0.704c-8.384-8.384-8.384-21.952 0-30.336 4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l0.704 0.704c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.312 1.408 1.888 2.176h0.064c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h3.808l-1.216-1.216c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-0.704-0.704-1.376-1.472-1.984-2.272-0.8-0.608-1.536-1.248-2.272-1.984l-4.224-4.224c-8.384-8.384-8.384-21.952 0-30.336 4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.952l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.704 0.704 1.376 1.472 1.984 2.272 0.8 0.608 1.536 1.248 2.272 1.984l4.224 4.224c0.608 0.608 1.152 1.248 1.664 1.92h1.6c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-0.192 0-0.352-0.032-0.544-0.032-2.208 0.352-4.448 0.384-6.656 0.032h-4.768c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-0.384 0-0.736-0.064-1.088-0.064-1.184 0.096-2.368 0.096-3.552-0.032-0.448 0.032-0.896 0.096-1.344 0.096h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.056 0-2.112-0.064-3.104-0.224-1.184 0.16-2.4 0.224-3.616 0.192-2.752-0.096-5.504-0.352-8.224-0.736-1.408-0.192-2.752-0.544-4.032-0.96-1.344-0.064-2.72-0.288-4.096-0.64-2.688-0.672-5.344-1.504-7.936-2.464-1.312-0.48-2.56-1.12-3.744-1.824-1.312-0.352-2.592-0.864-3.872-1.504-2.464-1.248-4.864-2.624-7.2-4.096-1.184-0.768-2.272-1.632-3.264-2.56-1.216-0.64-2.368-1.408-3.456-2.272-2.144-1.728-4.192-3.584-6.144-5.536-0.992-0.992-1.888-2.080-2.624-3.2-1.024-0.864-2.016-1.856-2.88-2.944-1.728-2.144-3.36-4.384-4.864-6.72-0.768-1.184-1.408-2.432-1.888-3.68-0.832-1.088-1.568-2.24-2.208-3.52-1.248-2.464-2.336-5.024-3.328-7.584-0.48-1.312-0.864-2.656-1.088-4-0.576-1.216-1.056-2.528-1.408-3.904-0.672-2.656-1.216-5.408-1.6-8.128-0.192-1.408-0.256-2.784-0.192-4.128-0.32-1.312-0.48-2.688-0.544-4.096-0.032-0.928-0.064-1.824-0.064-2.752v-4c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.12 0.096-2.24 0.256-3.328-0.16-1.28-0.192-2.592-0.128-3.904 0.16-2.752 0.48-5.504 0.928-8.224 0.224-1.408 0.608-2.752 1.088-4 0.096-1.344 0.352-2.72 0.736-4.096 0.736-2.656 1.632-5.312 2.656-7.84 0.512-1.312 1.152-2.56 1.92-3.68 0.384-1.312 0.928-2.592 1.6-3.84 1.28-2.432 2.72-4.8 4.256-7.072 0.8-1.184 1.664-2.24 2.624-3.2 0.672-1.184 1.44-2.336 2.368-3.392 1.76-2.112 3.68-4.128 5.664-6.016 1.024-0.96 2.112-1.824 3.264-2.56 0.896-1.024 1.92-1.952 3.040-2.816 2.176-1.664 4.48-3.264 6.816-4.672 1.216-0.736 2.464-1.344 3.744-1.824 1.088-0.8 2.304-1.504 3.552-2.112 2.496-1.184 5.088-2.24 7.68-3.136 1.344-0.448 2.688-0.8 4.032-0.96 1.248-0.544 2.56-0.992 3.936-1.312 2.688-0.608 5.44-1.088 8.16-1.408 1.408-0.16 2.784-0.192 4.128-0.096 1.344-0.288 2.72-0.416 4.128-0.448h6.208c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.056 0 2.112 0.064 3.104 0.224 1.184-0.16 2.4-0.224 3.616-0.192 2.752 0.096 5.536 0.352 8.224 0.736 1.408 0.192 2.752 0.544 4.032 0.96 1.344 0.064 2.72 0.288 4.096 0.64 2.688 0.672 5.344 1.504 7.936 2.464 1.312 0.48 2.56 1.12 3.744 1.824 1.312 0.352 2.592 0.864 3.872 1.504 2.464 1.248 4.864 2.624 7.2 4.096 1.184 0.768 2.272 1.632 3.264 2.56 1.216 0.64 2.368 1.408 3.456 2.272 2.144 1.728 4.192 3.584 6.144 5.536 0.992 0.992 1.888 2.080 2.624 3.2 1.024 0.864 2.016 1.856 2.88 2.944 1.728 2.144 3.36 4.384 4.832 6.72 0.768 1.184 1.408 2.432 1.888 3.68 0.832 1.088 1.568 2.24 2.208 3.52 1.248 2.464 2.336 5.024 3.328 7.616 0.48 1.312 0.864 2.656 1.088 4 0.576 1.216 1.056 2.528 1.408 3.904 0.672 2.656 1.216 5.408 1.6 8.128 0.192 1.408 0.256 2.784 0.192 4.128 0.32 1.312 0.48 2.688 0.544 4.096 0.032 0.928 0.064 1.824 0.064 2.752v4c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 11.84-9.6 21.472-21.472 21.472zM810.080 169.632v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 181.6v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 193.568v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 205.536v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 217.536v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 229.504v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 241.472v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 253.44v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM810.080 265.44v1.184c0.032-0.192 0-0.384 0.032-0.576-0.032-0.192-0.032-0.384-0.032-0.608zM605.6 714.048c42.304-10.112 59.584-27.392 69.696-69.696 2.688-11.232 18.816-11.232 21.536 0 10.112 42.304 27.392 59.584 69.696 69.696 11.232 2.688 11.232 18.816 0 21.536-42.304 10.112-59.584 27.392-69.696 69.696-2.688 11.232-18.816 11.232-21.536 0-10.112-42.304-27.392-59.584-69.696-69.696-11.232-2.688-11.232-18.816 0-21.536zM888.384 787.232c-29.952 7.168-42.208 19.424-49.376 49.376-1.92 7.968-13.344 7.968-15.232 0-7.168-29.952-19.424-42.208-49.376-49.376-7.968-1.92-7.968-13.344 0-15.232 29.952-7.168 42.208-19.424 49.376-49.376 1.92-7.968 13.344-7.968 15.232 0 7.168 29.952 19.424 42.208 49.376 49.376 7.968 1.92 7.968 13.344 0 15.232zM438.368 293.728c-48.928 11.712-68.928 31.712-80.64 80.64-3.104 12.992-21.792 12.992-24.896 0-11.712-48.928-31.712-68.928-80.64-80.64-12.992-3.104-12.992-21.792 0-24.896 48.928-11.712 68.928-31.712 80.64-80.64 3.104-13.024 21.792-13.024 24.896 0 11.712 48.928 31.712 68.928 80.64 80.64 12.992 3.104 12.992 21.792 0 24.896z" /> +<glyph unicode="" glyph-name="glasses" d="M960 377.344h-11.2c-6.144 17.28-14.624 33.376-25.152 48-0.128 0.224-0.192 0.48-0.352 0.704l-194.304 317.92c-10.176 16.768-27.648 27.744-47.904 30.176-23.264 2.72-47.072-5.536-63.712-22.176l-32-32c-12.48-12.512-12.48-32.768 0-45.248s32.768-12.48 45.248 0l32 32c4.032 4.064 10.496 4.448 11.712 3.936l127.424-208.48c-10.976 1.952-22.24 3.136-33.76 3.136-88.096 0-162.336-59.712-184.832-140.736-18.4 7.104-42.016 12.736-71.168 12.736s-52.768-5.632-71.168-12.736c-22.528 81.024-96.768 140.736-184.832 140.736-11.584 0-22.816-1.184-33.824-3.168l127.040 208.096c1.696 0.896 8.128 0.448 12.16-3.552l32-32c12.48-12.48 32.768-12.48 45.248 0s12.48 32.768 0 45.248l-32 32c-16.672 16.672-40.48 24.928-63.712 22.176-20.256-2.432-37.728-13.44-47.872-30.112l-194.336-318.016c-0.16-0.224-0.192-0.48-0.32-0.704-10.528-14.592-19.040-30.72-25.152-48h-11.2c-17.664 0-32-14.336-32-32v-64c0-17.664 14.336-32 32-32h11.2c26.464-74.432 97.376-128 180.8-128 100.256 0 182.72 77.28 191.136 175.392 11.008 6.816 32.352 16.608 64.832 16.608s53.952-9.856 64.832-16.544c8.448-98.144 90.88-175.456 191.168-175.456 83.424 0 154.336 53.568 180.8 128h11.2c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32zM256 185.344c-70.56 0-128 57.408-128 128s57.44 128 128 128 128-57.408 128-128-57.408-128-128-128zM768 185.344c-70.592 0-128 57.408-128 128s57.408 128 128 128 128-57.408 128-128-57.408-128-128-128z" /> +<glyph unicode="" glyph-name="globe" d="M976.64 300.416c14.624 45.92 22.592 94.784 22.592 145.472s-7.968 99.552-22.592 145.472c-0.224 0.64-0.384 1.28-0.64 1.888-62.336 192.768-243.488 332.672-456.768 332.672s-394.4-139.84-456.768-332.64c-0.256-0.608-0.416-1.248-0.64-1.888-14.656-45.92-22.592-94.752-22.592-145.472s7.968-99.552 22.592-145.472c0.224-0.64 0.384-1.28 0.64-1.856 62.336-192.768 243.488-332.672 456.768-332.672s394.4 139.84 456.768 332.64c0.256 0.608 0.416 1.248 0.64 1.856zM900.288 612.576h-167.904c-15.36 93.952-43.712 172.608-80.928 227.68 111.456-37.472 201.952-120.864 248.864-227.68zM138.208 279.232h167.904c15.36-93.952 43.712-172.64 80.96-227.68-111.456 37.472-201.952 120.864-248.864 227.68zM651.008 51.424c23.776 35.456 44.256 81.12 60.256 136.128 4.928 16.96-4.832 34.72-21.76 39.648-16.992 4.96-34.72-4.832-39.648-21.792-31.040-106.624-82.272-175.52-130.528-175.52-57.728 0-120.384 96.864-147.84 249.312h219.936c17.664 0 32 14.336 32 32s-14.336 32-32 32h-228.928c-3.36 32.448-5.28 66.72-5.28 102.688 0 6.048 0.064 12.064 0.16 18.080 0.32 17.664-13.76 32.256-31.424 32.576-0.192 0-0.352 0-0.576 0-17.408 0-31.648-13.952-31.968-31.424-0.128-6.368-0.16-12.768-0.16-19.2 0-35.456 1.664-69.76 4.768-102.688h-181.856c-8.352 32.832-12.832 67.264-12.832 102.688s4.48 69.792 12.832 102.688h105.952c17.664 0 32 14.336 32 32s-14.336 32-32 32h-83.84c46.976 106.944 137.632 190.432 249.28 227.84-23.808-35.52-44.32-81.312-60.352-136.416-4.928-16.96 4.864-34.72 21.792-39.648 16.992-4.928 34.72 4.832 39.648 21.792 31.008 106.784 82.304 175.808 130.592 175.808 57.728 0 120.384-96.864 147.84-249.344h-218.752c-17.664 0-32-14.336-32-32s14.336-32 32-32h227.744c3.36-32.448 5.28-66.72 5.28-102.656 0-5.952-0.064-11.904-0.192-17.76-0.32-17.664 13.76-32.256 31.424-32.576 0.192 0 0.384 0 0.576 0 17.408 0 31.648 13.952 32 31.424 0.096 6.304 0.192 12.576 0.192 18.944 0 35.456-1.664 69.76-4.768 102.688h181.824c8.384-32.864 12.832-67.232 12.832-102.688s-4.48-69.792-12.832-102.688h-104.768c-17.664 0-32-14.336-32-32s14.336-32 32-32h82.656c-46.976-106.944-137.632-190.432-249.312-227.84zM335.232 647.424c-36.192 0-65.664-29.92-65.664-66.688s29.472-66.688 65.664-66.688 65.664 29.92 65.664 66.688-29.472 66.688-65.664 66.688zM333.568 580.736c0 1.792 1.088 2.688 1.664 2.688s1.664-0.96 1.664-2.688c0-3.488-3.296-3.488-3.296 0zM713.856 343.232h-14.656c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.656c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="globe-pointer" d="M516.64 928c-174.464 0-327.2-94.528-409.888-235.040-0.448-0.64-0.736-1.344-1.152-2.016-40.832-70.112-64.32-151.52-64.32-238.336 0-17.664 14.336-32 32-32h127.84c17.664 0 32 14.336 32 32s-14.336 32-32 32h-94.496c3.136 40.224 12 78.816 25.888 115.008 8.16-3.84 17.184-6.112 26.816-6.112 23.392 0 43.648 12.8 54.72 31.648h81.504c-0.672-3.744-1.408-7.232-2.112-11.136-3.040-17.408 8.576-34.016 26.016-37.024 17.6-3.104 33.984 8.576 37.024 26.016 1.376 7.776 2.752 15.104 4.16 22.176h123.968v-117.792c-18.848-11.072-31.648-31.328-31.648-54.72 0-5.472 0.896-10.688 2.208-15.712l-10.624-10.304c-12.672-12.288-12.96-32.544-0.672-45.248 6.272-6.432 14.624-9.696 22.944-9.696 8.032 0 16.064 3.008 22.304 9.024l11.040 10.688c5.28-1.408 10.72-2.432 16.448-2.432 23.392 0 43.648 12.832 54.72 31.648h117.216c-1.696-50.816-7.424-98.048-16.16-140.672h-29.088c-17.664 0-32-14.336-32-32s14.336-32 32-32h12.768c-26.784-86.144-66.688-145.408-107.456-166.336v86.304c0 17.664-14.336 32-32 32s-32-14.336-32-32v-126.688c0-17.664 14.336-32 32-32 80.576 0 160.224 20.544 230.336 59.424 0.672 0.384 1.312 0.768 1.952 1.184l53.568 35.008c0.672 0.448 1.312 0.928 1.952 1.376 4.672 3.616 9.312 7.232 13.856 10.976 0.544 0.448 1.056 0.928 1.568 1.376l42.016 39.36c0.48 0.48 0.992 0.96 1.472 1.472 82.976 88.416 128.672 203.904 128.672 325.184 0 262.112-213.248 475.36-475.36 475.36zM752.608 484.64c-1.568 49.472-6.72 96.64-15.008 140.544h152.352c15.872-34.208 27.264-70.912 33.216-109.376-21.184-1.76-39.328-13.728-49.568-31.136h-120.992zM852.864 689.184h-130.144c-16.736 59.744-39.712 111.072-67.296 150.656 80.32-28.864 149.088-82.080 197.472-150.656zM548.64 855.648c40.832-20.928 80.704-80.256 107.52-166.464h-107.52v166.464zM376 839.2c-26.624-38.784-48.992-89.44-65.76-150.048h-96.16c-4.672 7.968-10.88 14.944-18.464 20.224 46.72 58.304 108.928 103.744 180.384 129.824zM376.96 689.184c26.304 84.608 65.888 145.44 107.648 166.56v-166.56h-107.648zM672.448 625.184c8.736-42.624 14.432-89.76 16.16-140.544h-117.216c-5.504 9.408-13.312 17.184-22.72 22.72v117.792h123.808zM752.608 420.64h120.992c10.24-17.408 28.352-29.376 49.504-31.136-5.856-38.048-17.024-74.88-33.056-109.536h-152.448c8.288 43.904 13.472 91.136 15.040 140.672zM817.376 171.968l-40.48-37.888c-3.424-2.784-6.88-5.568-10.4-8.256l-51.584-33.664c-19.040-10.496-38.944-19.232-59.36-26.528 27.52 39.52 50.432 90.752 67.136 150.368h130.432c-10.816-15.36-22.72-30.080-35.744-44zM343.552 348.544l-253.728-19.648c-1.6-0.128-3.168-0.352-4.704-0.736-17.6-4.064-31.648-17.376-36.64-34.688s-0.128-35.904 12.576-48.64l39.072-39.072-52.576-87.616c-10.048-11.552-15.552-26.176-15.552-41.664 0-17.024 6.624-33.088 18.656-45.088l44.704-44.704c12.032-12.064 28.032-18.688 45.088-18.688h0.032c15.488 0 30.112 5.504 41.664 15.552l87.584 52.576 37.728-37.728c13.728-13.76 34.624-18.304 53.088-11.52 17.568 6.432 29.408 21.76 30.944 40.064l20.96 252.512c3.456 19.168-2.624 38.624-16.512 52.544-13.824 13.856-33.28 19.904-52.416 16.544zM330.528 65.824l-33.216 33.216c-10.4 10.4-26.496 12.384-39.104 4.832l-111.84-67.136c-2.272-1.376-3.904-2.944-5.728-4.832l-44.768 44.288c1.856 1.856 3.52 3.936 4.864 6.208l67.136 111.84c7.584 12.576 5.6 28.736-4.832 39.072l-34.368 34.336 220.032 17.056-18.176-218.912zM534.144 215.968c17.664 0 32 14.336 32 32s-14.336 32-32 32h-44.864c-17.664 0-32-14.336-32-32s14.336-32 32-32h44.864zM358.624 426.080v44.736c0 17.664-14.336 32-32 32s-32-14.336-32-32v-44.736c0-17.664 14.336-32 32-32s32 14.336 32 32z" /> +<glyph unicode="" glyph-name="glowing-background-mouse-effect" d="M877.248 345.6l-104.8 39.424c5.024 20.512 7.68 41.92 7.68 63.968 0 148.064-120.032 268.128-268.128 268.128-13.824 0-27.392-1.024-40.64-3.040-33.984-5.184-65.888-16.736-94.432-33.408-7.232-4.224-14.304-8.8-21.088-13.728 4.832-3.648 11.040-6.144 19.2-8.096 5.376-1.28 5.376-9.024 0-10.304-20.256-4.864-28.512-13.12-33.376-33.408-1.312-5.376-9.024-5.376-10.304 0-2.368 9.792-5.504 16.8-10.432 21.952-23.712-24.096-42.912-52.672-56.192-84.288-13.44-31.904-20.864-67.008-20.864-103.808 0-148.096 120.032-268.128 268.128-268.128 17.408 0 34.464 1.664 50.944 4.832l42.080-100.096c6.016-14.304 19.648-23.104 35.008-23.104 1.888 0 3.808 0.128 5.76 0.384 17.376 2.464 30.368 15.584 32.384 32.608l18.72 159.296c0.448 0.384 0.864 0.832 1.312 1.248l169.44 17.792c17.952 1.888 31.52 14.912 33.76 32.384 2.208 17.28-7.488 33.088-24.128 39.328zM737.12 303.296l-50.112-5.28c-16.832-1.76-29.952-14.496-31.904-30.976l-5.696-48.352-11.744-100.032-135.424 322.080 336.992-126.72-102.112-10.752zM422.784 617.344c24.512 5.856 34.528 15.904 40.416 40.416 1.568 6.496 10.912 6.496 12.48 0 5.856-24.512 15.872-34.528 40.416-40.416 6.496-1.568 6.496-10.912 0-12.48-24.544-5.856-34.528-15.872-40.416-40.416-1.568-6.496-10.912-6.496-12.48 0-5.856 24.544-15.904 34.528-40.416 40.416-6.496 1.568-6.496 10.912 0 12.48zM386.336 398.24c-3.040-12.704-21.248-12.704-24.288 0-11.424 47.744-30.944 67.264-78.688 78.688-12.672 3.040-12.672 21.248 0 24.288 47.744 11.424 67.264 30.912 78.688 78.656 3.040 12.704 21.248 12.704 24.288 0 11.424-47.744 30.944-67.264 78.688-78.656 7.648-1.824 10.688-9.152 9.12-15.36-1.024-4.128-4.064-7.712-9.12-8.928-1.344-0.32-2.656-0.64-3.936-0.992-44.896-11.584-63.648-31.296-74.752-77.696zM355.808 666.944c-7.168 5.376-11.264 13.184-14.176 25.28-1.312 5.376-9.024 5.376-10.304 0-4.864-20.256-13.12-28.544-33.408-33.408-5.376-1.28-5.376-9.024 0-10.304 10.464-2.496 17.728-5.92 22.976-11.424 4.32 4.384 8.768 8.608 13.408 12.704 6.88 6.080 14.048 11.808 21.504 17.12z" /> +<glyph unicode="" glyph-name="graphic-bar" d="M928 912h-832c-35.296 0-64-28.704-64-64v-800c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v800c0 35.296-28.704 64-64 64zM928 848v-256h-192c-17.664 0-32-14.336-32-32v-320h-160v224c0 17.664-14.336 32-32 32s-32-14.336-32-32h-160c0 17.664-14.336 32-32 32s-32-14.336-32-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-96h-160v96h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v256h832zM96 240h160v-192h-160v192zM320 272v128h160v-352h-160v224zM544 176h160v-128h-160v128zM768 48v480h160v-480h-160zM576 592c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32zM416 528h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 592h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM160 752h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 656h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM448 752h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM192 208h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 368h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 144h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 496h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 752h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="graphic-pie" d="M462.176 380.352h-348.32c-17.664 0-32-14.336-32-32 0-31.264 3.936-62.272 11.488-92.352h-29.344c-17.664 0-32-14.336-32-32s14.336-32 32-32h51.648c18.784-41.824 44.928-80.288 77.536-112.928 70.848-71.040 168.864-111.744 268.96-111.744 17.664 0 32 14.336 32 32v348.992c0 17.664-14.336 32-32 32zM430.176 158.88c-29.28 4.928-56.256 16.48-79.424 33.12h1.28c17.664 0 32 14.336 32 32s-14.336 32-32 32h-58.208c-10.112 18.464-17.152 38.816-20.768 60.352h157.12v-157.44zM147.488 316.352h60.896c2.624-21.024 7.84-41.216 15.232-60.352h-63.68c-6.016 19.616-10.336 39.808-12.448 60.352zM238.464 124.32c-20.16 20.16-37.248 43.040-51.168 67.68h72.448c40.672-52.672 101.248-89.088 170.432-97.792v-61.216c-71.84 7.456-140.32 39.808-191.68 91.328zM560.096 518.112c3.936-1.664 8.096-2.432 12.224-2.432 8.352 0 16.544 3.232 22.656 9.376l246.336 246.656c12.48 12.48 12.48 32.704 0 45.216-70.88 71.008-168.928 111.744-269.024 111.744-17.664 0-32-14.336-32-32v-348.992c0-12.96 7.808-24.608 19.744-29.568zM604.352 737.088c28.448-4.896 55.552-16.16 79.136-32.864l-79.136-79.2v112.064zM772.288 793.184l-43.2-43.232c-36.192 28-79.488 45.952-124.768 51.808v61.312c61.28-6.368 120.096-30.848 168-69.824zM462.176 828.864c-152.672 0-284.512-90.56-344.992-220.864h-53.152c-17.664 0-32-14.336-32-32s14.336-32 32-32h30.112c-7.968-30.688-12.256-62.848-12.256-96 0-17.664 14.336-32 32-32h348.352c17.664 0 32 14.336 32 32v348.864c0 17.664-14.336 32-32 32zM430.176 763.232v-61.12c-67.584-8.48-127.040-43.36-167.68-94.112h-73.216c49.888 85.056 138.208 144.864 240.928 155.232zM160.96 544h64c-8.16-20.192-13.792-41.664-16.608-64h-60.96c2.208 22.112 6.976 43.456 13.536 64zM273.056 480c3.872 22.976 11.744 44.544 23.008 64h55.968c17.664 0 32 14.336 32 32 0 16.576-12.64 30.016-28.768 31.648 22.112 14.912 47.584 25.152 74.912 29.792v-157.44h-157.12zM960 288h-28c6.656 28.416 10.176 57.76 10.176 87.68 0 101.792-39.552 197.472-111.36 269.408-12.032 12.064-33.312 12.064-45.312 0l-246.336-246.816c-6.016-6.016-9.344-14.144-9.344-22.592v-348.832c0-17.664 14.336-32 32-32 100.064 0 198.080 40.64 268.96 111.552 34.336 34.432 61.216 74.304 80 117.6h49.216c17.664 0 32 14.336 32 32s-14.336 32-32 32zM807.040 576.064c46.080-56.416 71.136-126.464 71.136-200.384 0-30.112-4.352-59.52-12.416-87.68h-63.712c10.048 27.424 15.776 56.832 15.776 87.68 0 56.768-19.552 112.384-54.048 157.024l43.264 43.328zM718.112 486.976c22.88-32.352 35.712-71.424 35.712-111.296 0-31.616-7.808-61.376-21.376-87.68h-60.48c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.264c-24.48-19.040-53.632-32.192-85.472-37.6v176.064l124.288 124.544zM785.504 151.616c-51.36-51.36-119.872-83.648-191.68-91.104v61.216c71.168 8.928 133.152 47.168 173.824 102.24h71.904c-14.336-26.24-32.384-50.624-54.048-72.384z" /> +<glyph unicode="" glyph-name="graphic-spectrum-equalizer" d="M128 540.704c-23.776 0-43.008-19.232-43.008-43.008v-193.408c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v193.408c0 23.776-19.232 43.008-43.008 43.008zM384 637.44c-23.776 0-43.008-19.232-43.008-43.008v-273.952c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v273.952c0 23.776-19.232 43.008-43.008 43.008zM256 685.792c-23.776 0-43.008-19.232-43.008-43.008v-406.752c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v406.752c0 23.776-19.232 43.008-43.008 43.008zM768 669.472c-23.776 0-43.008-19.232-43.008-43.008v-396.896c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v396.896c0 23.776-19.232 43.008-43.008 43.008zM896 535.84c-23.776 0-43.008-19.232-43.008-43.008v-129.664c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v129.664c0 23.776-19.232 43.008-43.008 43.008zM512 831.136c-23.776 0-43.008-19.232-43.008-43.008v-677.28c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v677.28c0 23.776-19.232 43.008-43.008 43.008zM640 734.112c-23.776 0-43.008-19.232-43.008-43.008v-483.552c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v483.552c0 23.776-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="grid-round" d="M224.352 928c-106.24 0-192.352-86.112-192.352-192.352s86.112-192.352 192.352-192.352 192.32 86.112 192.32 192.352-86.112 192.352-192.32 192.352zM224.352 607.328c-70.784 0-128.352 57.568-128.352 128.352s57.568 128.352 128.352 128.352 128.352-57.568 128.352-128.352-57.568-128.352-128.352-128.352zM799.68 543.328c106.24 0 192.352 86.112 192.352 192.352s-86.112 192.352-192.352 192.352-192.352-86.112-192.352-192.352 86.112-192.352 192.352-192.352zM799.68 864c70.784 0 128.352-57.568 128.352-128.352s-57.568-128.352-128.352-128.352-128.352 57.568-128.352 128.352 57.568 128.352 128.352 128.352zM224.352 352.672c-106.24 0-192.352-86.112-192.352-192.352s86.112-192.352 192.352-192.352 192.352 86.112 192.352 192.352-86.112 192.352-192.352 192.352zM224.352 32c-70.784 0-128.352 57.568-128.352 128.352s57.568 128.352 128.352 128.352 128.352-57.568 128.352-128.352-57.568-128.352-128.352-128.352zM799.68 352.672c-106.24 0-192.352-86.112-192.352-192.352s86.112-192.352 192.352-192.352 192.352 86.112 192.352 192.352-86.112 192.352-192.352 192.352zM799.68 32c-70.784 0-128.352 57.568-128.352 128.352s57.568 128.352 128.352 128.352 128.352-57.568 128.352-128.352-57.568-128.352-128.352-128.352z" /> +<glyph unicode="" glyph-name="grid-rounds" d="M147.84 928c-63.968 0-115.808-51.84-115.808-115.84s51.872-115.84 115.808-115.84 115.84 51.84 115.84 115.84-51.84 115.808-115.84 115.808zM147.84 760.352c-28.576 0-51.808 23.232-51.808 51.84s23.264 51.808 51.808 51.808 51.84-23.264 51.84-51.808-23.232-51.84-51.84-51.84zM876.192 696.352c63.968 0 115.808 51.84 115.808 115.84s-51.84 115.808-115.808 115.808-115.84-51.872-115.84-115.808 51.84-115.84 115.84-115.84zM876.192 864c28.576 0 51.808-23.264 51.808-51.84s-23.264-51.84-51.808-51.84-51.84 23.232-51.84 51.84 23.264 51.808 51.84 51.808zM512 928c-63.968 0-115.84-51.84-115.84-115.84s51.84-115.84 115.84-115.84 115.808 51.84 115.808 115.84-51.84 115.808-115.84 115.808zM512 760.352c-28.576 0-51.84 23.232-51.84 51.84s23.232 51.808 51.84 51.808 51.808-23.264 51.808-51.808-23.264-51.84-51.84-51.84zM147.84 199.648c-63.968 0-115.808-51.84-115.808-115.808s51.872-115.808 115.808-115.808 115.84 51.84 115.84 115.808-51.84 115.808-115.84 115.808zM147.84 32c-28.576 0-51.808 23.264-51.808 51.808s23.264 51.808 51.808 51.808 51.84-23.264 51.84-51.808-23.232-51.808-51.84-51.808zM876.192 199.648c-63.968 0-115.84-51.84-115.84-115.808s51.84-115.808 115.84-115.808 115.808 51.84 115.808 115.808-51.84 115.808-115.808 115.808zM876.192 32c-28.576 0-51.84 23.264-51.84 51.808s23.264 51.808 51.84 51.808 51.808-23.264 51.808-51.808-23.264-51.808-51.808-51.808zM512 199.648c-63.968 0-115.84-51.84-115.84-115.808s51.84-115.808 115.84-115.808 115.808 51.84 115.808 115.808-51.84 115.808-115.84 115.808zM512 32c-28.576 0-51.84 23.264-51.84 51.808s23.232 51.808 51.84 51.808 51.808-23.264 51.808-51.808-23.264-51.808-51.84-51.808zM147.84 563.84c-63.968 0-115.808-51.84-115.808-115.84s51.872-115.808 115.808-115.808 115.84 51.84 115.84 115.84-51.84 115.84-115.84 115.84zM147.84 396.192c-28.576 0-51.808 23.264-51.808 51.84s23.264 51.84 51.808 51.84 51.84-23.232 51.84-51.84-23.232-51.84-51.84-51.84zM876.192 563.84c-63.968 0-115.84-51.84-115.84-115.84s51.84-115.808 115.84-115.808 115.808 51.84 115.808 115.84-51.84 115.84-115.808 115.84zM876.192 396.192c-28.576 0-51.84 23.264-51.84 51.84s23.264 51.84 51.84 51.84 51.808-23.232 51.808-51.84-23.264-51.84-51.808-51.84zM512 563.84c-63.968 0-115.84-51.84-115.84-115.84s51.84-115.808 115.84-115.808 115.808 51.84 115.808 115.84-51.84 115.84-115.84 115.84zM512 396.192c-28.576 0-51.84 23.264-51.84 51.84s23.232 51.84 51.84 51.84 51.808-23.232 51.808-51.84-23.264-51.84-51.84-51.84z" /> +<glyph unicode="" glyph-name="group-add" d="M704.992 482.464c13.984 20.736 22.176 45.664 22.176 72.48 0 71.584-58.24 129.824-129.824 129.824s-129.824-58.24-129.824-129.824c0-26.848 8.192-51.744 22.144-72.48-26.368-14.368-49.632-33.952-68.256-57.248 11.904 19.584 18.72 42.592 18.72 67.168 0 71.584-58.24 129.824-129.824 129.824s-129.824-58.24-129.824-129.824c0-26.848 8.192-51.808 22.176-72.48-70.016-38.272-117.632-112.608-117.632-197.888 0-23.776 19.232-43.008 43.008-43.008h364.64c23.776 0 43.008 19.232 43.008 43.008 0 54.432-19.424 104.448-51.712 143.456 12.544 17.536 29.056 32.128 48.256 42.336 20.192 10.72 42.112 16.128 65.152 16.128 61.824 0 114.336-40.48 132.512-96.288h-111.2c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h160.992c23.776 0 43.008 19.232 43.008 43.008 0 85.28-47.616 159.616-117.632 197.888zM597.344 598.816c24.192 0 43.808-19.68 43.808-43.808s-19.68-43.808-43.808-43.808-43.808 19.68-43.808 43.808 19.68 43.808 43.808 43.808zM310.304 536.224c24.192 0 43.808-19.68 43.808-43.872s-19.68-43.808-43.808-43.808-43.808 19.68-43.808 43.808 19.68 43.872 43.808 43.872zM310.304 264.992h-132.512c18.176 55.84 70.688 96.288 132.512 96.288s114.336-40.48 132.512-96.288h-132.512zM908.384 667.296h-35.712v35.712c0 16.544-13.44 29.984-29.984 29.984s-29.984-13.44-29.984-29.984v-35.712h-35.712c-16.544 0-29.984-13.44-29.984-29.984s13.44-29.984 29.984-29.984h35.712v-35.712c0-16.544 13.44-29.984 29.984-29.984s29.984 13.44 29.984 29.984v35.712h35.712c16.544 0 29.984 13.44 29.984 29.984s-13.44 29.984-29.984 29.984z" /> +<glyph unicode="" glyph-name="handyman" d="M926.432 178.72l-192.096 192.096c-8.064 8.064-18.976 12.576-30.432 12.576h-67.552l-63.584 63.584 132.448 132.448 42.24-42.24c10.72-10.72 24.736-16.096 38.784-16.096s28.064 5.376 38.784 16.096l40.832 40.832 43.648-43.648c24.704 24.704 25.568 64.16 2.656 89.888l0.096 0.096-150.176 150.176c-10.72 10.72-24.736 16.096-38.784 16.096-10.112 0-20.256-2.816-29.152-8.352l0.384 73.248-21.856 24.704c-5.248 5.92-14.368 6.176-19.936 0.608l-122.496-122.496c-5.344-5.344-5.344-14.048 0-19.36l25.952-25.952 71.648 2.528c-12.64-21.088-9.856-48.8 8.32-66.944l8.32-8.32-132.448-132.448-212.992 212.992v24.864c0 11.392-4.512 22.368-12.576 30.432l-85.344 85.344c-8.064 8.064-18.976 12.576-30.432 12.576s-22.368-4.512-30.432-12.576l-42.656-42.656c-16.8-16.8-16.8-44.032 0-60.8l85.344-85.344c8.064-8.064 18.976-12.576 30.432-12.576h24.864l212.992-212.992-63.648-63.648h-67.552c-11.392 0-22.368-4.512-30.432-12.576l-192-192c-8.064-8.064-12.576-18.976-12.576-30.432s4.512-22.368 12.576-30.432l85.344-85.344c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l192 192c8.064 8.064 12.576 18.976 12.576 30.432v67.552l63.648 63.648 63.584-63.584v-67.552c0-11.392 4.512-22.368 12.576-30.432l192.096-192.096c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l85.344 85.344c8.064 8.064 12.576 18.976 12.576 30.432s-4.512 22.368-12.576 30.432zM723.328 691.808l67.36-67.36-4.384-4.384-67.36 67.36 4.384 4.384zM362.336 272.8l-148.992-148.992-24.544 24.544 148.992 148.992h24.544v-24.544zM810.656 123.808l-149.088 149.088v24.544h24.544l149.088-149.088-24.544-24.544z" /> +<glyph unicode="" glyph-name="header-footer" d="M192.624 363h-41.615c-11.833 0-21.458 9.625-21.458 21.458v299.018c0 11.833 9.625 21.458 21.458 21.458h547.505c11.833 0 21.458-9.625 21.458-21.458v-86.433c0-11.851 9.607-21.458 21.458-21.458s21.458 9.607 21.458 21.458v86.433c0 35.497-28.878 64.374-64.374 64.374h-547.505c-35.497 0-64.374-28.878-64.374-64.374v-299.018c0-35.497 28.878-64.374 64.374-64.374h41.615c11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM874.855 534.932h-554.603c-35.245 0-63.919-28.674-63.919-63.919v-299.926c0-35.245 28.674-63.919 63.919-63.919h554.603c35.245 0 63.919 28.674 63.919 63.919v299.926c0 35.245-28.674 63.919-63.919 63.919zM895.858 171.085c0-11.581-9.422-21.003-21.003-21.003h-554.603c-11.581 0-21.003 9.422-21.003 21.003v222.21l90.753 98.721h484.853c11.581 0 21.003-9.422 21.003-21.003v-299.926zM192.29 660.918h468.95c11.575 0 20.959-9.384 20.959-20.959v-43.25c0-11.575-9.384-20.959-20.959-20.959h-468.95c-11.575 0-20.959 9.384-20.959 20.959v43.25c0 11.575 9.384 20.959 20.959 20.959zM356.192 278.667h468.95c11.575 0 20.959-9.384 20.959-20.959v-43.25c0-11.575-9.384-20.959-20.959-20.959h-468.95c-11.575 0-20.959 9.384-20.959 20.959v43.25c0 11.575 9.384 20.959 20.959 20.959z" /> +<glyph unicode="" glyph-name="header-info" d="M426.848 660.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h41.056c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-41.056zM533.472 660.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h41.056c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-41.056zM640.96 660.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h41.056c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-41.056zM320.16 660.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h42.656c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-42.656zM259.712 511.008h120.544c25.632 0 46.4-20.768 46.4-46.4v-163.2c0-25.632-20.768-46.4-46.4-46.4h-120.544c-25.632 0-46.4 20.768-46.4 46.4v163.232c0 25.632 20.768 46.4 46.4 46.4zM490.848 446.848h108.992c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-108.992c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM717.024 383.008c0 11.872-9.632 21.504-21.504 21.504h-204.704c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h204.704c11.872 0 21.504 9.632 21.504 21.504zM958.56 502.816l-224.224 89.152c-11.2 4.448-23.968 1.824-32.48-6.72s-11.168-21.248-6.688-32.48l47.008-118.208v-173.984c0-23.456-19.072-42.496-42.496-42.496h-492.416c-20.608 0-37.408 16.768-37.408 37.408v295.616h470.176c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-470.176v44.896c0 20.64 16.8 37.408 37.408 37.408h497.472c20.64 0 37.44-16.768 37.44-37.408 0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504c0 44.352-36.096 80.416-80.448 80.416h-497.472c-44.352 0-80.416-36.064-80.416-80.416v-383.52c0-44.352 36.064-80.416 80.416-80.416h492.416c47.136 0 85.504 38.368 85.504 85.504v66.048c5.248-11.008 16.288-17.888 28.352-17.888 1.408 0 2.784 0.096 4.224 0.288 14.336 1.952 25.472 13.312 27.072 27.712l10.56 95.072 95.040 10.56c14.368 1.6 25.792 12.736 27.712 27.072s-6.112 28.064-19.552 33.44zM840.416 473.376c-14.112-1.568-25.088-12.544-26.656-26.656l-6.592-59.264-23.328 58.656-0.544 1.312-37.216 93.632 153.568-61.056-59.264-6.592zM490.848 300.16c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h122.784c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-122.784z" /> +<glyph unicode="" glyph-name="header-offcanvas" d="M819.232 831.52h-614.432c-42.016 0-76.192-34.176-76.192-76.192v-614.432c0-42.016 34.176-76.192 76.192-76.192h614.432c42.016 0 76.192 34.176 76.192 76.192v614.432c0 42.016-34.176 76.192-76.192 76.192zM204.768 788.608h614.432c18.336 0 33.28-14.944 33.28-33.28v-94.24h-680.992v94.24c0 18.336 14.944 33.28 33.28 33.28zM653.888 492.192c-6.432 0-11.648-5.088-11.648-11.392v-373.216h-36.256v510.592h246.496v-125.984h-198.592zM171.488 140.864v413.536l60.512 63.744h331.104v-510.592h-358.304c-18.336 0-33.28 14.944-33.28 33.28zM802.624 575.904h-141.6c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h141.6c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM810.080 703.488c11.584 0 20.96 9.376 20.96 20.96s-9.408 20.96-20.96 20.96-20.96-9.376-20.96-20.96 9.408-20.96 20.96-20.96zM746.208 703.488c11.584 0 20.96 9.376 20.96 20.96s-9.408 20.96-20.96 20.96-20.96-9.376-20.96-20.96 9.408-20.96 20.96-20.96zM682.336 703.488c11.584 0 20.96 9.376 20.96 20.96s-9.408 20.96-20.96 20.96-20.96-9.376-20.96-20.96 9.408-20.96 20.96-20.96z" /> +<glyph unicode="" glyph-name="headset-mic" d="M897.696 489.888c-0.512 211.872-173.024 384.096-385.024 384.096s-384.512-172.192-385.024-384.096c0-0.096 0-0.16 0-0.224v-147.936c0-59.776 48.64-108.416 108.416-108.416h65.312c23.776 0 43.008 19.232 43.008 43.008v213.344c0 23.776-19.232 43.008-43.008 43.008h-84.576c21.216 144.256 145.792 255.328 295.808 255.328s274.592-111.104 295.808-255.328h-84.576c-23.776 0-43.008-19.232-43.008-43.008v-213.344c0-23.776 19.232-43.008 43.008-43.008h87.776v-41.984h-256.736v42.336c0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-85.344c0-23.776 19.232-43.008 43.008-43.008h342.688c23.776 0 43.008 19.232 43.008 43.008v341.344s0 0.16 0 0.224zM258.432 319.328h-22.368c-12.384 0-22.4 10.080-22.4 22.4v104.928h44.768v-127.328zM766.976 319.328v127.328h44.768v-127.328h-44.768z" /> +<glyph unicode="" glyph-name="helicopter" d="M881.504 820.832c-9.44 8.16-21.888 11.872-34.272 10.080l-292.32-41.76c-0.416 23.392-19.488 42.208-42.976 42.208s-42.528-18.816-42.976-42.208l-292.32 41.76c-12.32 1.76-24.832-1.92-34.272-10.080s-14.816-20-14.816-32.48v-42.656c0-23.776 19.232-43.008 43.008-43.008h298.336v-3.296c-109.088-20.256-192-116.128-192-231.040v-128c0-38.24 9.184-74.368 25.472-106.336h-89.12c-23.776 0-43.008-19.232-43.008-43.008v-85.344c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v42.336h120.8c38.176-26.88 84.736-42.656 134.88-42.656s96.672 15.776 134.88 42.656h120.8v-42.336c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v85.344c0 23.776-19.232 43.008-43.008 43.008h-89.12c16.288 31.968 25.472 68.096 25.472 106.336v128c0 114.912-82.912 210.784-192 231.040v3.296h298.336c23.776 0 43.008 19.232 43.008 43.008v42.656c0 12.448-5.408 24.32-14.816 32.48zM468.992 610.976v-163.616h-105.984v20.992c0 67.2 44.768 124.16 105.984 142.624zM363.008 340.352v20.992h297.984v-20.992c0-82.176-66.848-148.992-148.992-148.992s-148.992 66.848-148.992 148.992zM660.992 468.352v-20.992h-105.984v163.68c61.28-18.528 105.984-75.424 105.984-142.624z" /> +<glyph unicode="" glyph-name="help" d="M416 160h-32v160c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-128h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM351.84 384.192c0.128 0 0.224 0 0.32 0 17.472 0 31.84 14.144 31.84 31.808s-14.176 32-31.84 32.16c-17.824 0-32.352-14.528-32.16-32.16 0-17.568 14.336-31.808 31.84-31.808zM987.232 912.832c-5.824 9.408-16.128 15.168-27.232 15.168h-480c-35.296 0-64-28.704-64-64v-288h-256c-35.296 0-64-28.704-64-64v-376.448l-60.64-121.216c-4.96-9.92-4.416-21.696 1.408-31.136s16.128-15.168 27.232-15.168h480c35.296 0 64 28.704 64 64v288h256c35.296 0 64 28.704 64 64v376.448l60.64 121.216c4.96 9.92 4.416 21.696-1.408 31.136zM115.776 32l40.832 81.696c2.208 4.448 3.392 9.344 3.392 14.336v384h384v-159.904s0-0.064 0-0.096 0-0.064 0-0.096v-319.904s-428.224 0-428.224 0zM867.36 782.304c-2.24-4.416-3.36-9.344-3.36-14.304v-384h-256v128c0 35.296-28.704 64-64 64h-64v288h428.224l-40.832-81.696zM608 672c17.664 0 32 14.336 32 32s14.336 32 32 32 32-14.368 32-32-14.336-32-32-32-32-14.336-32-32v-64c0-17.664 14.336-32 32-32s32 14.336 32 32v37.472c37.248 13.184 64 48.8 64 90.528 0 52.96-43.072 96-96 96s-96-43.040-96-96c0-17.664 14.336-32 32-32zM672 512c-17.664 0-32-14.176-32-31.84-0.192-17.824 14.336-32.16 32-32.16s32 14.528 32 32.16c-0.192 17.472-14.336 31.84-32 31.84z" /> +<glyph unicode="" glyph-name="horizontal-menu-copy" d="M803.904 554.624l-602.656-0.352c-44.576 0-80.832-36.256-80.832-80.832v-51.36c0-44.544 36.256-80.832 80.832-80.832l602.656 0.352c44.576 0 80.832 36.256 80.832 80.832v51.36c0 44.576-36.256 80.832-80.832 80.832zM841.824 422.432c0-20.896-16.992-37.92-37.92-37.92l-602.656-0.352c-20.896 0-37.92 16.992-37.92 37.92v51.36c0 20.928 16.992 37.92 37.92 37.92l602.656 0.352c20.896 0 37.92-16.992 37.92-37.92v-51.36zM782.592 470.432l-555.488-0.352c-11.84 0-21.44-9.632-21.44-21.472s9.6-21.44 21.472-21.44l555.488 0.352c11.84 0 21.44 9.632 21.44 21.472s-9.6 21.44-21.472 21.44zM803.904 277.952l-602.656-0.352c-44.576 0-80.832-36.256-80.832-80.832v-51.36c0-44.576 36.256-80.832 80.832-80.832l602.656 0.352c44.544 0.032 80.8 36.256 80.8 80.832v51.36c0 44.576-36.256 80.832-80.832 80.832zM782.592 150.848l-555.488-0.352c-11.872 0-21.472 9.6-21.472 21.44s9.568 21.472 21.44 21.472l555.488 0.352c11.84 0 21.44-9.6 21.472-21.472s-9.6-21.472-21.472-21.472zM803.904 831.296l-602.656-0.352c-44.576 0-80.832-36.256-80.832-80.832v-51.36c0-44.576 36.256-80.832 80.832-80.832l602.656 0.352c44.576 0 80.832 36.256 80.832 80.832v51.36c0 44.544-36.256 80.832-80.832 80.832zM841.824 699.104c0-20.928-16.992-37.92-37.92-37.92l-602.656-0.352c-20.896 0-37.92 16.992-37.92 37.92v51.36c0 20.896 16.992 37.92 37.92 37.92l602.656 0.352c20.896 0 37.92-16.992 37.92-37.92v-51.36zM782.592 747.104l-555.488-0.352c-11.84 0-21.44-9.632-21.44-21.472s9.6-21.44 21.472-21.44l555.488 0.352c11.84 0 21.44 9.632 21.44 21.472s-9.6 21.44-21.472 21.44z" /> +<glyph unicode="" glyph-name="horizontal-progress-bar" d="M128 512h214.112c30.4-20.16 66.784-32 105.888-32s75.52 11.84 105.888 32h342.112c43.808 0 96 27.744 96 160s-52.192 160-96 160h-342.112c-30.4 20.192-66.784 32-105.888 32s-75.52-11.808-105.888-32h-214.112c-43.808 0-96-27.744-96-160s52.192-160 96-160zM928 672c0-35.84-4.16-96-32-96h-281.984c16.416 28.256 25.984 60.992 25.984 96s-9.568 67.744-25.984 96h281.984c27.84 0 32-60.16 32-96zM576 672c0-70.592-57.408-128-128-128s-128 57.408-128 128 57.408 128 128 128 128-57.44 128-128zM128 768h153.984c-11.296-19.456-19.2-41.024-23.104-64h-98.912c-17.664 0-32-14.336-32-32s14.336-32 32-32h98.912c3.872-22.976 11.776-44.544 23.104-64h-153.984c-27.84 0-32 60.16-32 96s4.16 96 32 96zM896 384h-118.112c-30.4 20.192-66.784 32-105.888 32s-75.52-11.808-105.888-32h-438.112c-43.808 0-96-27.744-96-160s52.192-160 96-160h438.112c30.4-20.192 66.784-32 105.888-32s75.52 11.808 105.888 32h118.112c43.808 0 96 27.744 96 160s-52.192 160-96 160zM96 224c0 35.84 4.16 96 32 96h377.984c-11.296-19.456-19.2-41.024-23.104-64h-322.912c-17.664 0-32-14.336-32-32s14.336-32 32-32h322.912c3.872-22.976 11.776-44.544 23.104-64h-377.984c-27.84 0-32 60.16-32 96zM544 224c0 70.592 57.408 128 128 128s128-57.408 128-128-57.408-128-128-128-128 57.408-128 128zM896 128h-57.984c16.416 28.288 25.984 61.024 25.984 96s-9.568 67.712-25.984 96h57.984c27.84 0 32-60.16 32-96s-4.16-96-32-96zM512 672c0-35.36-28.64-64-64-64s-64 28.64-64 64c0 35.36 28.64 64 64 64s64-28.64 64-64zM736 224c0-35.36-28.64-64-64-64s-64 28.64-64 64c0 35.36 28.64 64 64 64s64-28.64 64-64z" /> +<glyph unicode="" glyph-name="hotspot" d="M922.976 835.776c-9.28 7.392-22.816 5.856-30.208-3.456s-5.856-22.816 3.456-30.208c18.432-14.656 28.992-36.544 28.992-60.064 0-42.272-34.4-76.672-76.672-76.672-16.928 0-32.544 5.504-45.248 14.816-0.544 0.448-1.088 0.864-1.664 1.28-18.080 14.048-29.76 35.968-29.76 60.608 0 25.504 12.64 49.28 33.824 63.616 9.856 6.656 12.416 20 5.792 29.856s-20 12.416-29.856 5.792c-33.024-22.304-52.768-59.424-52.768-99.232 0-30.176 11.232-57.76 29.728-78.816l-76.032-76.032s0 0 0 0c-3.936 4.256-9.568 6.912-15.808 6.912h-101.376c-11.872 0-21.504-9.632-21.504-21.504v-90.176l-43.232-41.536c-0.288-0.288-0.576-0.544-0.832-0.864l-66.688-71.616-100.096 108.448c-4.128 4.48-9.952 7.072-16.032 6.912-6.080-0.064-11.872-2.688-15.872-7.264l-47.424-53.728v279.968h407.648c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-409.152c-22.88 0-41.504-18.592-41.504-41.504v-514.656c0-22.88 18.624-41.504 41.504-41.504h517.728c11.104 0 21.536 4.352 29.376 12.192s12.16 18.336 12.128 29.408l-0.48 170.752c-0.032 5.952-2.496 11.616-6.848 15.68l-115.872 107.936v47.968l104.256 104.256c16.736-8.896 35.808-13.984 56.032-13.984 65.984 0 119.68 53.696 119.68 119.68 0 36.704-16.48 70.848-45.216 93.696zM645.216 492.832h-58.368v58.336h58.368v-58.336zM767.968 351.104l0.448-159.936h-514.752v166.752l63.904 72.352 99.648-107.968c4.064-4.384 9.792-6.912 15.744-6.912h0.032c5.984 0 11.68 2.496 15.744 6.848l82.080 88.128 41.088 39.456h90.048l105.984-98.72zM841.504 748.192c-25.088 0-30.24 39.136-30.336 39.84-14.016-11.424-22.656-29.184-21.632-48.896 1.568-30.24 26.304-54.656 56.544-55.84 33.696-1.344 61.472 25.6 61.472 59.008 0 0.768 0 1.568-0.032 2.336-0.544 13.824-6.528 26.88-16.096 36.928-2.368 2.464-4.544 4.928-6.624 7.328-36.832 43.264-29.536 79.264-29.536 79.264-21.344-19.232-22.4-46.848-21.12-68.544 1.12-19.232 19.904-51.424 7.36-51.424zM874.336 575.168c-11.872 0-21.504-9.632-21.504-21.504v-447.84h-683.456v682.336h513.312c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-514.816c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h686.464c22.88 0 41.504 18.624 41.504 41.504v449.344c0 11.872-9.632 21.504-21.504 21.504zM345.76 569.568c0-45.184 36.768-81.952 81.952-81.952s81.92 36.768 81.92 81.952-36.736 81.92-81.92 81.92-81.952-36.768-81.952-81.92zM427.712 530.624c-21.472 0-38.944 17.472-38.944 38.944s17.472 38.912 38.944 38.912 38.912-17.472 38.912-38.912-17.472-38.944-38.912-38.944z" /> +<glyph unicode="" glyph-name="hourglass" d="M800 105.984h-4.992v37.664c0 52.32-20.352 101.504-57.344 138.496l-164.832 164.832 164.832 164.832c36.992 36.992 57.344 86.176 57.344 138.496v37.664h5.024c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-576.032c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h4.992v-37.664c0-52.32 20.352-101.504 57.344-138.496l164.832-164.832-164.832-164.832c-36.992-36.992-57.344-86.176-57.344-138.496v-37.664h-5.024c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h576c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM315.008 750.304v37.408l393.984 0.256v-37.664c0-29.344-11.424-56.928-32.16-77.664l-164.832-164.832-164.832 164.832c-20.736 20.736-32.16 48.352-32.16 77.664zM315.008 143.712c0 29.344 11.424 56.928 32.16 77.664l164.832 164.832 164.832-164.832c20.736-20.736 32.16-48.352 32.16-77.664v-37.408l-393.984-0.256v37.664z" /> +<glyph unicode="" glyph-name="hourglass-bottom" d="M800 105.984h-4.992v37.664c0 52.32-20.352 101.504-57.344 138.496l-19.808 19.808-0.224 1.024h-0.8l-144 144 164.832 164.832c36.992 36.992 57.344 86.176 57.344 138.496v37.664h5.024c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-576.032c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h4.992v-37.664c0-52.32 20.352-101.504 57.344-138.496l164.832-164.832-164.832-164.832c-36.992-36.992-57.344-86.176-57.344-138.496v-37.664h-5.024c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h576c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM428.832 303.008l83.2 83.2 83.2-83.2h-166.368zM315.008 750.304v37.408l393.984 0.256v-37.664c0-29.344-11.424-56.928-32.16-77.664l-164.832-164.832-164.832 164.832c-20.736 20.736-32.16 48.352-32.16 77.664z" /> +<glyph unicode="" glyph-name="hourglass-top" d="M800 105.984h-4.992v37.664c0 52.32-20.352 101.504-57.344 138.496l-164.832 164.832 164.832 164.832c36.992 36.992 57.344 86.176 57.344 138.496v37.664h5.024c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-576.032c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h4.992v-37.664c0-52.32 20.352-101.504 57.344-138.496l164.832-164.832-164.832-164.832c-36.992-36.992-57.344-86.176-57.344-138.496v-37.664h-5.024c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h576c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM315.008 750.304v37.408l393.984 0.256v-37.664c0-13.664-2.528-26.912-7.264-39.296l-379.392-0.256c-4.832 12.448-7.328 25.824-7.328 39.552zM315.008 143.712c0 29.344 11.424 56.928 32.16 77.664l164.832 164.832 164.832-164.832c20.736-20.736 32.16-48.352 32.16-77.664v-37.408l-393.984-0.256v37.664z" /> +<glyph unicode="" glyph-name="house" d="M985.024 580.256l-69.088 169.824c-18.656 45.536-67.168 76.096-120.736 76.096h-566.432c-50.88 0-96.704-28.288-119.68-73.792-0.384-0.768-0.736-1.568-1.088-2.368l-69.056-169.728c-10.432-21.728-9.088-46.912 3.616-67.552 12.928-20.992 35.232-33.536 59.776-33.696v-314.208c0-12.16 2.432-24.576 7.296-36.576 4.832-11.328 11.584-21.504 20.768-30.944 8.832-8.544 19.008-15.328 30.816-20.32 11.616-4.704 23.744-7.072 36.096-7.072h629.376c12.192 0 24.64 2.432 36.544 7.264 11.264 4.768 21.472 11.52 31.072 20.832 8.544 8.864 15.296 19.040 20.256 30.72 4.64 11.456 7.072 23.904 7.072 36.096v314.208c24.544 0.16 46.88 12.736 59.808 33.696 12.736 20.672 14.048 45.792 3.616 67.552zM385.6 133.856h-93.344v125.344c0 4 0.832 8.192 2.208 11.584 1.696 4 4.064 7.552 6.56 10.112 3.040 3.008 6.624 5.376 10.080 6.848 3.904 1.568 8.096 2.4 12.128 2.4h31.456c8.352 0 16.16-3.2 21.984-8.992 5.696-5.696 8.96-13.696 8.96-21.952v-125.344zM855.424 153.184c-1.664-3.968-4.096-7.616-6.4-10.016-3.136-3.040-6.72-5.408-10.272-6.912-3.904-1.568-8.064-2.4-12.064-2.4h-377.088v125.344c0 25.088-10.112 49.6-27.712 67.168-17.888 17.888-41.76 27.744-67.232 27.744h-31.456c-12.32 0-24.448-2.368-36.576-7.264-11.36-4.832-21.6-11.616-30.88-20.704-8.608-8.8-15.392-19.008-20.416-30.912-4.672-11.616-7.072-23.712-7.072-36.064v-125.344h-30.944c-4 0-8.16 0.832-11.616 2.24-3.968 1.664-7.552 4.064-10.048 6.432-3.008 3.072-5.408 6.688-6.88 10.144-1.6 3.904-2.4 8.096-2.4 12.096v314.176h30.944c8.48 0 16.608 3.36 22.624 9.376l103.264 103.232 103.232-103.232c6.016-6.016 14.144-9.376 22.624-9.376h408.576v-314.176c0-4-0.832-8.192-2.24-11.616zM926.912 546.24c-0.928-1.504-2.688-3.296-5.824-3.296h-458.784l-116.48 116.48c-12.48 12.48-32.768 12.48-45.248 0l-116.48-116.48h-81.152c-3.136 0-4.928 1.792-5.824 3.296s-1.696 3.776-0.32 6.528c0.352 0.768 0.736 1.568 1.056 2.336l68.96 169.44c12.192 23.232 35.84 37.632 62.016 37.632h566.432c27.872 0 52.576-14.624 61.472-36.32l69.504-170.784c0.352-0.8 0.672-1.6 1.056-2.336 1.376-2.72 0.576-5.056-0.352-6.528zM700.832 417.056h-94.4c-52.352 0-94.944-42.592-94.944-94.944v-94.4c0-17.664 14.336-32 32-32h220.288c17.664 0 32 14.336 32 32v94.4c0 52.352-42.592 94.944-94.944 94.944zM731.744 259.712h-156.288v62.4c0 17.056 13.856 30.944 30.944 30.944h94.4c17.056 0 30.944-13.856 30.944-30.944v-62.4z" /> +<glyph unicode="" glyph-name="icon-packs" d="M767.834 252.308l-1.192 358.067c0 29.442-23.953 53.396-53.348 53.396l-435.505 0.695c-11.829 0-21.43-9.575-21.458-21.41 0-0.621 0.038-1.232 0.088-1.84-0.048-0.581-0.088-1.164-0.088-1.759v-264.875c0-5.691 2.262-11.148 6.286-15.174 31.524-31.524 51.986-55.565 73.648-81.018 21.258-24.979 43.242-50.807 75.986-83.551 4.010-4.010 9.448-6.27 15.118-6.284l276.089-0.695c35.497 0 64.374 28.878 64.374 64.446zM406.418 263.163c-13.548 14.947-25.327 28.778-37.469 43.046-9.663 11.354-19.486 22.891-30.393 35.167h67.861v-78.211zM443.049 378.007c-4.024 4.024-9.481 6.284-15.172 6.284h-128.627v237.225l413.997-0.661c5.779 0 10.48-4.701 10.48-10.551l1.192-358.067c0-11.833-9.627-21.458-21.404-21.458l-254.18 0.641v131.413c0 5.691-2.26 11.148-6.284 15.174zM831.376 553.368c-11.851 0-21.458-9.607-21.458-21.458s9.607-21.458 21.458-21.458c11.647 0 21.125-9.477 21.125-21.125v-361.628c0-11.833-9.625-21.458-21.458-21.458h-297.752c-11.649 0-21.125 9.477-21.125 21.125 0 11.851-9.607 21.458-21.458 21.458s-21.458-9.607-21.458-21.458c0-35.311 28.73-64.041 64.041-64.041h297.752c35.497 0 64.374 28.878 64.374 64.374v361.628c0 35.313-28.73 64.041-64.041 64.041zM192.624 384.714c-11.647 0-21.125 9.477-21.125 21.125v361.628c0 11.833 9.625 21.458 21.458 21.458h297.752c11.649 0 21.125-9.477 21.125-21.125 0-11.851 9.607-21.458 21.458-21.458s21.458 9.607 21.458 21.458c0 35.311-28.73 64.041-64.041 64.041h-297.752c-35.497 0-64.374-28.878-64.374-64.374v-361.628c0-35.313 28.73-64.041 64.041-64.041 11.851 0 21.458 9.607 21.458 21.458s-9.607 21.458-21.458 21.458zM462.445 386.366c-2.501-7.699 6.31-14.1 12.859-9.342l36.694 26.66 36.694-26.66c6.549-4.759 15.362 1.643 12.859 9.342l-14.015 43.138 36.694 26.66c6.549 4.759 3.184 15.116-4.91 15.116h-45.357l-14.017 43.136c-2.501 7.699-13.394 7.699-15.895 0l-14.017-43.136h-45.357c-8.094 0-11.462-10.36-4.91-15.116l36.694-26.66-14.015-43.138z" /> +<glyph unicode="" glyph-name="id-card" d="M777.76 879.072c-17.44 4.256-34.624 8.992-52 13.856-62.112 17.216-126.336 35.040-213.76 35.040s-151.008-17.664-212.832-34.784c-17.6-4.864-35.040-9.664-52.864-14.016-48.416-11.936-86.304-60.832-86.304-111.232v-704c0-52.928 43.072-96 96-96h512c52.928 0 96 43.072 96 96v704c0 50.56-37.888 99.392-86.24 111.072zM261.504 817.056c18.336 4.416 36.448 9.44 54.72 14.464 57.696 15.936 117.376 32.448 195.776 32.448s138.688-16.64 196.64-32.736c18.048-4.992 35.84-9.952 54.016-14.368 19.552-4.768 37.376-28.064 37.376-48.928v-288h-96v96c0 17.664-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32v-96h-96v288.032c0 20.832 17.952 44.256 37.504 49.056zM640 334.592c-13.888 12.48-29.504 22.976-46.432 31.008 9.12 14.688 14.432 31.904 14.432 50.4 0 52.96-43.072 96-96 96s-96-43.040-96-96c0-18.496 5.344-35.712 14.432-50.4-16.96-8-32.576-18.528-46.432-31.008v209.408h256v-209.408zM480 416c0 17.664 14.336 32 32 32s32-14.336 32-32-14.336-32-32-32-32 14.336-32 32zM512 320c46.432 0 88.192-25.408 110.592-64h-221.216c22.432 38.592 64.16 64 110.624 64zM800 64c0-17.664-14.336-32-32-32h-512c-17.632 0-32 14.336-32 32v224c17.664 0 32 14.336 32 32s-14.336 32-32 32v64h96v-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h384c17.664 0 32 14.336 32 32s-14.336 32-32 32v160h96v-64c-17.664 0-32-14.336-32-32s14.336-32 32-32v-224zM448 736h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 640h448c17.664 0 32 14.336 32 32s-14.336 32-32 32h-448c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384 128h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM704 128h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM672 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 736h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="image" d="M914.112 168.608c8.384-10.784 21.184-16.8 34.368-16.8 4.736 0 9.472 0.768 14.144 2.336 17.6 6.048 29.408 22.592 29.408 41.184v532.672c0 48.512-39.456 87.968-88 87.968h-784.032c-48.512 0-87.968-39.488-87.968-87.968v-379.264c0-17.664 14.336-32 32-32s32 14.336 32 32v379.264c0 13.216 10.784 24 23.968 24h784.032c13.216 0 24-10.752 24-24v-473.056l-208.288 267.68c-0.48 0.672-1.024 1.28-1.6 1.92-14.048 15.424-37.6 16.96-53.568 3.456l-259.552-219.744-132.864 156.352c-7.712 9.12-18.72 14.144-30.976 13.664-11.936-0.448-22.848-6.272-29.888-15.936l-158.144-218.176c-13.856-19.136-21.152-41.696-21.152-65.28 0-54.528 44.352-98.88 98.912-98.88h827.712c17.664 0 32 14.336 32 32s-14.336 32-32 32h-827.648c-19.232 0-34.912 15.648-34.912 34.88 0 10.016 3.104 19.616 8.992 27.712l139.232 192.064 199.552-234.848c11.424-13.504 31.648-15.104 45.088-3.648s15.104 31.648 3.648 45.12l-46.112 54.24 239.296 202.592 228.352-293.472zM575.552 592.96c0 64.608-52.576 117.184-117.184 117.184s-117.184-52.576-117.184-117.184 52.576-117.184 117.184-117.184 117.184 52.576 117.184 117.184zM405.152 592.96c0 29.312 23.84 53.184 53.184 53.184s53.184-23.872 53.184-53.184-23.84-53.184-53.184-53.184-53.184 23.872-53.184 53.184z" /> +<glyph unicode="" glyph-name="image-accordion" d="M767.488 618.496c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c11.456 0 21.12-7.232 21.12-15.808v-223.552c0-8.576-9.664-15.808-21.12-15.808-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c35.328 0 64.032 26.336 64.032 58.72v223.552c0 32.384-28.736 58.72-64.032 58.72zM873.952 597.216c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c11.648 0 21.12-9.472 21.12-21.12v-170.336c0-11.648-9.472-21.12-21.12-21.12-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472c35.296 0 64.032 28.736 64.032 64.032v170.336c0 35.328-28.736 64.032-64.032 64.032zM256.512 575.584c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472c-35.328 0-64.032-26.336-64.032-58.72v-223.552c0-32.384 28.736-58.72 64.032-58.72 11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472c-11.456 0-21.12 7.232-21.12 15.808v223.552c0 8.576 9.664 15.808 21.12 15.808zM150.048 554.304c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472c-35.328 0-64.032-28.736-64.032-64.032v-170.336c0-35.328 28.736-64.032 64.032-64.032 11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472c-11.648 0-21.12 9.472-21.12 21.12v170.336c0 11.648 9.472 21.12 21.12 21.12zM681.952 661.92h-339.904c-23.712 0-42.944-19.232-42.944-42.944v-340.928c0-23.744 19.232-42.944 42.944-42.944h339.904c23.744 0 42.944 19.232 42.944 42.944v340.928c0 23.712-19.232 42.944-42.944 42.944zM533.28 533.152c0-31.84-25.824-57.632-57.632-57.632s-57.632 25.792-57.632 57.632 25.824 57.632 57.632 57.632 57.632-25.824 57.632-57.632zM682.016 345.504l-79.744 68.352-55.936-63.232 4.416-2.88c9.952-6.432 12.768-19.744 6.336-29.696s-19.744-12.768-29.696-6.336l-123.392 80-61.984-61.984v60.704l37.76 37.76c11.968 11.968 31.072 12.64 43.84 1.984l86.272-55.936 74.24 83.904c7.776 8.768 21.152 9.696 30.016 2.080l67.84-58.176v-56.544z" /> +<glyph unicode="" glyph-name="image-box" d="M854.656 831.168h-685.344c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h685.344c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM853.184 424.32l-76.032 74.368c-4.896 5.536-11.968 8.64-19.328 8.448s-14.304-3.52-19.008-9.216l-189.632-236.48-170.752 133.856c-13.504 13.376-35.424 13.344-48.864-0.096l-158.72-158.72v444.064l114.624 107.648h567.712v-363.84zM170.848 107.072c0.64-0.416 1.28-0.832 1.952-1.216h-1.952v1.216zM850.72 105.824c0.832 0.512 1.632 1.024 2.432 1.536v-1.536h-2.432zM510.432 445.376c83.232 0 150.976 67.712 150.976 150.976s-67.712 150.976-150.976 150.976-150.976-67.712-150.976-150.976 67.712-150.976 150.976-150.976z" /> +<glyph unicode="" glyph-name="image-comparison" d="M854.688 805.696h-321.184v27.072h55.584c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-77.056s0 0-0.032 0 0 0-0.032 0h-77.056c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h55.584v-27.072h-321.152c-22.88 0-41.504-18.624-41.504-41.504v-631.776c0-22.88 18.624-41.504 41.504-41.504h321.152v-27.712h-55.584c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h154.144c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-55.584v27.712h321.184c22.88 0 41.504 18.624 41.504 41.504v631.776c0 22.88-18.624 41.504-41.504 41.504zM853.184 762.72v-215.936l-32.736 36.832c-8.672 9.76-21.12 15.2-34.176 14.944s-25.28-6.208-33.536-16.288l-206.592-251.968-12.672 12.544v136.96c60.448 10.272 106.624 63.008 106.624 126.336s-46.176 116.096-106.624 126.368v30.272h319.68zM512 691.232c7.424 0 14.624-0.96 21.504-2.752 36.576-9.568 63.648-42.88 63.648-82.432s-27.072-72.832-63.648-82.4c-6.88-1.792-14.080-2.752-21.504-2.752v170.304zM490.496 762.72v-35.104c-58.56-9.472-103.264-60.288-103.264-121.504s44.704-112.032 103.264-121.504v-95.424l-118.656 113.856c-9.28 8.928-24.096 8.48-32.832-0.992l-168.16-181.984v442.688h319.648zM533.504 133.92v148.384l86.176-85.248c4.192-4.16 9.664-6.208 15.136-6.208 5.536 0 11.072 2.144 15.296 6.368 8.352 8.448 8.288 22.048-0.16 30.4l-73.056 72.256 209.12 255.104c0.128 0.16 0.448 0.544 1.152 0.544s1.024-0.352 1.152-0.512l60.128-67.616c1.408-1.6 3.040-2.912 4.768-4v-349.472h-319.68z" /> +<glyph unicode="" glyph-name="image-gallery" d="M836 533.472h-242.656c-33.152 0-60-26.848-60-60v-350.464c0-33.152 26.848-60 60-60h242.656c33.152 0 60 26.848 60 60v350.496c0 33.152-26.848 60-60 60zM852.992 123.008c0-9.376-7.616-16.992-16.992-16.992h-242.656c-9.376 0-16.992 7.616-16.992 16.992v350.496c0 9.376 7.616 16.992 16.992 16.992h242.656c9.376 0 16.992-7.616 16.992-16.992v-350.496zM836 831.008h-242.656c-33.152 0-60-26.848-60-60v-134.848c0-33.152 26.848-60 60-60h242.656c33.152 0 60 26.848 60 60v134.848c0 33.152-26.848 60-60 60zM836 788c1.376 0 2.688-0.16 3.936-0.448 6.496-2.208 11.456-7.68 12.928-14.464 0.096-0.672 0.128-1.376 0.128-2.048v-94.304l-111.296 111.296h94.304zM188 321.664h242.688c33.152 0 60-26.848 60-60v-138.656c0-33.152-26.848-60-60-60h-242.688c-33.152 0-60 26.848-60 60v138.656c0 33.152 26.848 60 60 60zM430.688 831.008h-242.688c-33.12 0-60-26.848-60-60v-346.656c0-33.152 26.88-60 60-60h242.688c33.152 0 60 26.848 60 60v346.656c0 33.152-26.848 60-60 60zM447.68 424.352c0-9.376-7.648-16.992-16.992-16.992h-242.688c-9.376 0-16.992 7.616-16.992 16.992v259.68l110.72 103.968h148.96c9.376 0 16.992-7.616 16.992-16.992v-346.656z" /> +<glyph unicode="" glyph-name="image-hotspot" d="M547.36 385.664c5.6-11.232 16.928-17.664 28.64-17.664 4.8 0 9.664 1.088 14.304 3.36l17.664 8.832 17.664-8.832c4.576-2.304 9.504-3.36 14.304-3.36 11.744 0 23.040 6.464 28.64 17.664 4.992 9.984 4.256 21.312-0.928 30.336 5.184 8.992 5.952 20.32 0.928 30.336-7.904 15.776-27.104 22.24-42.944 14.304l-17.664-8.864-17.664 8.864c-15.84 7.936-35.040 1.472-42.944-14.304-4.992-9.984-4.256-21.312 0.928-30.336-5.184-8.992-5.952-20.32-0.928-30.336zM355.36 385.664c5.6-11.232 16.896-17.664 28.672-17.664 4.8 0 9.696 1.088 14.304 3.36l17.696 8.832 17.696-8.832c4.576-2.304 9.472-3.36 14.304-3.36 11.744 0 23.040 6.464 28.672 17.664 4.992 9.984 4.256 21.312-0.928 30.336 5.184 8.992 5.92 20.32 0.928 30.336-7.872 15.776-27.104 22.24-42.944 14.304l-17.696-8.864-17.696 8.864c-15.84 7.936-35.040 1.472-42.944-14.304-4.992-9.984-4.256-21.312 0.928-30.336-5.184-8.992-5.92-20.32-0.928-30.336zM704 640h114.752l22.624-22.624c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l22.624 22.624h50.752c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32h-160v64c0 17.664-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32v-64h-64c-17.664 0-32-14.336-32-32v-800c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v544c0 17.664-14.336 32-32 32s-32-14.336-32-32v-384h-32v96c0 42.912-28.288 79.328-67.232 91.584l-5.152 41.088c23.616 9.408 40.384 32.416 40.384 59.36 0 33.408-25.792 60.608-58.496 63.424-18.72 56.576-72.032 96.576-133.504 96.576h-320c-2.912 0-5.792-0.224-8.672-0.384-11.040 19.264-31.552 32.384-55.328 32.384-35.296 0-64-28.704-64-64 0-12.096 3.584-23.296 9.408-32.96-11.040-17.184-18.528-36.896-21.184-58.272l-17.024-137.216c-38.912-12.288-67.168-48.672-67.168-91.552v-96h-32v608h32v-32c0-17.664 14.336-32 32-32h70.304l39.936-26.624c5.376-3.584 11.552-5.376 17.76-5.376s12.352 1.792 17.76 5.376l39.936 26.624h134.304c17.664 0 32 14.336 32 32v32h160v-96c0-17.664 14.336-32 32-32zM832 160h-64v96c0 17.664 14.336 32 32 32s32-14.336 32-32v-96zM320 160v39.744c13.44 2.784 31.456 6.336 52.128 9.888 11.456-10.88 26.848-17.664 43.872-17.664 22.848 0 42.816 12.16 54.144 30.24 14.336 1.088 28.448 1.76 41.856 1.76 66.688 0 151.072-15.712 192-24.256v-39.744h-384zM672 544c36.352 0 67.168-25.792 74.656-60.768-6.688-10.112-10.656-22.208-10.656-35.232 0-18.976 8.48-35.904 21.664-47.616l6.912-55.232c-32.768-13.088-56.736-43.616-60.16-80.128-46.432 9.312-125.952 22.976-192.448 22.976-12.96 0-26.496-0.544-40.128-1.472-10.88 19.808-31.712 33.472-55.872 33.472-29.92 0-54.912-20.704-61.888-48.48-12.768-2.24-24.448-4.48-34.592-6.496-3.424 36.512-27.36 67.072-60.16 80.16l16.352 131.712c1.664 13.184 6.816 25.152 14.272 35.328 22.4 0.704 41.792 12.896 52.672 30.912 3.104 0.384 6.176 0.864 9.376 0.864h320zM192 256c0 17.664 14.368 32 32 32s32-14.336 32-32v-96h-64v96zM928 96v-64h-832v64h832zM448 768h-112c-6.304 0-12.48-1.888-17.76-5.376l-30.24-20.16-30.24 20.16c-5.248 3.488-11.424 5.376-17.728 5.376h-48v96h256v-96zM928 800v-96h-32c-8.48 0-16.64-3.36-22.624-9.376l-9.376-9.376-9.376 9.376c-6.016 6.016-14.144 9.376-22.624 9.376h-96v96h192z" /> +<glyph unicode="" glyph-name="image-hover" d="M403.424 515.744c-0.928 0-1.696-0.352-2.272-1.056l-157.024-191.008v-138.496c0-2.208 1.792-4 4-4h428.768l-271.232 333.472c-0.576 0.736-1.344 1.088-2.272 1.088zM577.664 528.992c32.16 0 58.336 26.176 58.336 58.336s-26.176 58.336-58.336 58.336-58.336-26.176-58.336-58.336 26.144-58.336 58.336-58.336zM403.424 558.752h0.128c13.824-0.032 26.784-6.208 35.488-16.928l142.592-175.328c0.704 1.376 1.568 2.688 2.592 3.904l92.256 110.816c3.968 4.768 9.856 7.616 16.064 7.744 6.208 0.192 12.192-2.432 16.352-7.008l72-79.008v310.976c0 2.208-1.792 4-4 4h-528.736c-2.208 0-4-1.792-4-4v-322.528l123.808 150.592c8.768 10.656 21.696 16.768 35.488 16.768zM577.664 688.672c55.872 0 101.344-45.472 101.344-101.344s-45.472-101.344-101.344-101.344-101.312 45.472-101.312 101.344 45.44 101.344 101.312 101.344zM973.408 251.584l-121.024 48.128v447.296c0 22.88-18.624 41.504-41.504 41.504h-596.672c-22.88 0-41.504-18.624-41.504-41.504v-600.672c0-22.88 18.624-41.504 41.504-41.504h566.304l13.12-33.024c4.864-12.256 16.64-20.096 29.536-20.096 1.408 0 2.848 0.096 4.288 0.288 14.528 1.952 25.792 13.472 27.392 28.032l11.008 99.264 99.264 11.040c14.528 1.632 26.080 12.864 28.032 27.392s-6.176 28.416-19.776 33.856zM824.224 194.016l-7.168-64.736-65.248 164.128 164.128-65.248-64.736-7.2c-14.272-1.568-25.376-12.672-26.976-26.944zM215.712 147.84v597.664h593.664v-428.704l-28.512 11.328v10.976l-87.168 95.648-76.448-91.872c-2.912-3.488-6.688-5.824-10.784-6.976l124.512-153.088-2.016-1.632h21.152l13.248-33.344h-547.712z" /> +<glyph unicode="" glyph-name="image-info" d="M960 928h-896c-17.664 0-32-14.336-32-32v-384c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v384c0 17.664-14.336 32-32 32zM352 864v-126.72l-38.624 50.208c-5.888 7.648-14.912 12.256-24.544 12.48-10.016 0.544-18.88-3.84-25.152-11.136l-68.512-79.936-8.576 12.864c-5.312 8-13.952 13.152-23.488 14.112s-18.976-2.464-25.792-9.216l-41.376-41.376v178.784h256zM96 594.752l59.040 59.040 42.336-63.52c6.176-9.248 16.32-14.272 26.656-14.272 6.112 0 12.256 1.728 17.696 5.376 14.72 9.792 18.688 29.664 8.864 44.352l-18.56 27.84 54.56 63.68 65.344-84.96v-88.256h-256v50.752zM928 544h-512v320h512v-320zM960 416h-896c-17.664 0-32-14.336-32-32v-384c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v384c0 17.664-14.336 32-32 32zM352 352v-194.688c-17.408 2.048-34.624 2.88-51.52 2.624-73.152 67.392-158.976 87.552-204.512 93.472v98.56h256zM96 188.672c27.68-4.448 69.664-15.008 111.904-39.488-44.864-9.632-83.68-24-111.904-36.416v75.904zM96 41.888c39.072 19.744 146.016 66.496 256 50.88v-60.8h-256v9.888zM928 32h-512v78.944c0.064 0.32 0.256 0.576 0.32 0.928 1.248 5.216 0.96 10.432-0.32 15.264v224.832h512v-320zM512 768h160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 672h352c17.664 0 32 14.336 32 32s-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32zM544 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 768h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32zM624 256h112c17.664 0 32 14.336 32 32s-14.336 32-32 32h-112c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 160h352c17.664 0 32 14.336 32 32s-14.336 32-32 32h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 256h16c17.664 0 32 14.336 32 32s-14.336 32-32 32h-16c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="image-list" d="M893.632 928h-763.264c-54.272 0-98.368-44.128-98.368-98.368v-763.264c0-54.24 44.128-98.368 98.368-98.368h763.264c54.24 0 98.368 44.128 98.368 98.368v763.264c0 54.272-44.128 98.368-98.368 98.368zM928 66.368c0-18.976-15.424-34.368-34.368-34.368h-763.264c-18.976 0-34.368 15.424-34.368 34.368v763.264c0 18.976 15.424 34.368 34.368 34.368h763.264c18.976 0 34.368-15.424 34.368-34.368v-763.264zM827.264 828.416h-331.84c-17.664 0-32-14.336-32-32v-431.424c0-17.664 14.336-32 32-32h331.84c17.664 0 32 14.336 32 32v431.424c0 17.664-14.336 32-32 32zM795.264 764.416v-123.040l-11.744 11.744c-12.48 12.48-32.736 12.48-45.248 0l-76.928-76.928-43.744 43.744c-12.48 12.48-32.736 12.48-45.248 0l-44.928-44.928v189.408h267.84zM527.424 397.024v87.52l67.552 67.552 76.928-76.928c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-10.56 10.56 54.304 54.304 34.368-34.368v-153.856h-267.84zM362.688 297.504h-165.952c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h165.952c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM330.688 131.552h-101.952v101.92h101.952v-101.92zM827.264 297.504h-331.84c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h331.84c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM795.264 131.552h-267.84v101.92h267.84v-101.92zM362.688 562.976h-165.952c-17.664 0-32-14.336-32-32v-165.952c0-17.664 14.336-32 32-32h165.952c17.664 0 32 14.336 32 32v165.952c0 17.664-14.336 32-32 32zM330.688 397.024h-101.952v101.952h101.952v-101.952zM362.688 828.416h-165.952c-17.664 0-32-14.336-32-32v-165.92c0-17.664 14.336-32 32-32h165.952c17.664 0 32 14.336 32 32v165.92c0 17.664-14.336 32-32 32zM330.688 662.528h-101.952v101.92h101.952v-101.92z" /> +<glyph unicode="" glyph-name="image-marquee" d="M192 533.152h249.472c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-249.472c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM390.848 384c0 11.872-9.632 21.504-21.504 21.504h-241.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h241.344c11.872 0 21.504 9.632 21.504 21.504zM397.792 447.84c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-291.136c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h291.136zM485.632 298.656c0-11.872 9.632-21.504 21.504-21.504h324.864c11.872 0 21.504 9.632 21.504 21.504v75.072l-80.384 68.928-56.064-63.36 4.448-2.848c9.952-6.464 12.8-19.776 6.336-29.728s-19.776-12.8-29.728-6.368l-25.408 16.48c-0.064 0.032-0.128 0.096-0.192 0.128l-98.048 63.552-84.832-84.832c-1.248-1.248-2.592-2.272-4-3.136v-33.888zM528.64 435.488l21.536 21.536c11.968 12 31.136 12.672 43.936 1.984l86.432-56.032 74.4 84.064c7.776 8.768 21.184 9.696 30.112 2.048l68.448-58.688v166.976c0 11.872-9.632 21.504-21.504 21.504h-324.864c-11.872 0-21.504-9.632-21.504-21.504v-204.832l43.008 42.976zM678.144 507.616c-31.904 0-57.728 25.856-57.728 57.76 0 4.128 0.448 7.616 1.248 10.496 0.448 1.632 1.056 3.072 1.76 4.352l109.312 0.256c0.768-1.344 1.408-2.848 1.888-4.608 0.832-2.88 1.28-6.336 1.28-10.496 0-31.904-25.856-57.76-57.76-57.76zM938.848 628.128c0 1.376-0.032 2.72-0.128 4.064-0.064 1.408-0.288 2.784-0.608 4.128 0.032 1.376-0.032 2.752-0.288 4.16-0.448 2.752-1.024 5.472-1.792 8.16-0.384 1.376-0.864 2.656-1.504 3.904-0.256 1.344-0.64 2.688-1.184 4.032-1.024 2.592-2.208 5.152-3.552 7.584-0.672 1.248-1.472 2.432-2.336 3.488-0.544 1.248-1.216 2.496-2.048 3.648-1.568 2.304-3.296 4.512-5.152 6.624-0.928 1.088-1.952 2.048-3.072 2.88-0.832 1.12-1.76 2.176-2.784 3.136-2.080 1.888-4.288 3.712-6.528 5.376-1.184 0.832-2.4 1.568-3.648 2.144-1.056 0.896-2.208 1.728-3.456 2.432-2.496 1.408-5.056 2.656-7.68 3.744-1.344 0.576-2.688 0.992-4.064 1.248-1.248 0.64-2.592 1.152-4 1.568-2.752 0.768-5.536 1.408-8.352 1.824-1.44 0.256-2.848 0.32-4.256 0.256-1.376 0.32-2.752 0.512-4.192 0.576-0.96 0.032-1.92 0.064-2.912 0.064h-3.968c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-2.976-0.192-0.992 0.128-2.016 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-2.976-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-2.976-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-2.976-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-3.008-0.192-0.96 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-0.992 0-2.016-0.064-2.976-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-2.976 0.192h-6.016c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-6.016c-1.024 0-2.016-0.064-2.976-0.192-0.032 0-0.064 0-0.096-0.032-0.96 0.128-1.92 0.224-2.912 0.224h-3.008c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h3.008c0.992 0 1.952 0.096 2.912 0.224 0.032 0 0.064-0.032 0.096-0.032 0.992-0.128 1.952-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 2.016-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.96-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 3.008 0.192 0.96-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h3.968c0.384 0 0.768 0 1.152-0.032 0.576-0.032 1.184-0.032 1.76 0 0.544-0.128 1.12-0.256 1.696-0.352 1.12-0.192 2.24-0.416 3.36-0.736 0.544-0.16 1.088-0.288 1.664-0.384 0.512-0.256 1.024-0.512 1.568-0.736 1.056-0.448 2.112-0.928 3.104-1.504 0.512-0.288 1.024-0.576 1.568-0.8 0.448-0.384 0.896-0.736 1.376-1.088 0.928-0.672 1.856-1.44 2.752-2.24 0.448-0.384 0.896-0.768 1.376-1.152 0.352-0.48 0.736-0.928 1.12-1.408 0.768-0.896 1.504-1.856 2.176-2.848 0.352-0.512 0.736-0.992 1.088-1.44 0.256-0.544 0.512-1.088 0.768-1.632 0.544-1.056 1.088-2.176 1.504-3.264 0.256-0.576 0.48-1.12 0.768-1.632 0.096-0.608 0.256-1.184 0.384-1.792 0.32-1.152 0.576-2.368 0.768-3.552 0.096-0.608 0.224-1.216 0.352-1.792-0.032-0.608 0-1.216 0.032-1.824s0.064-1.184 0.064-1.792v-3.072c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-2.976-0.128-0.992-0.192-2.016-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-0.992 0.064-2.016 0.192-3.008-0.128-0.96-0.192-1.952-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-0.992 0.064-2.016 0.192-2.976-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.96-0.192-1.952-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-0.992 0.064-2.016 0.192-2.976-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-0.992 0.064-2.016 0.192-2.976-0.032-0.128-0.032-0.224-0.032-0.352-0.128-0.864-0.16-1.76-0.16-2.656v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.24c0.032-0.928 0.096-1.856 0.192-2.752-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.96-0.192-1.952-0.192-2.976v-6.016c0-1.024 0.064-2.016 0.192-3.008-0.128-0.928-0.192-1.888-0.192-2.88-0.032-1.216-0.096-2.464-0.224-3.648-0.096-0.608-0.128-1.216-0.128-1.856-0.192-0.576-0.352-1.152-0.48-1.76-0.256-1.184-0.608-2.336-0.992-3.488-0.192-0.576-0.384-1.152-0.512-1.728-0.288-0.512-0.576-1.056-0.864-1.6-0.512-1.088-1.088-2.144-1.728-3.168-0.32-0.512-0.608-1.024-0.864-1.568-0.384-0.448-0.8-0.896-1.184-1.376-0.736-0.928-1.504-1.856-2.368-2.688-0.416-0.416-0.832-0.864-1.216-1.312-0.512-0.352-0.96-0.704-1.44-1.088-0.896-0.736-1.856-1.408-2.848-2.048-0.512-0.288-0.992-0.64-1.472-0.992-0.544-0.224-1.056-0.448-1.6-0.704-1.024-0.512-2.112-0.928-3.168-1.312-0.544-0.192-1.088-0.384-1.632-0.608-0.544-0.096-1.152-0.192-1.728-0.288-1.088-0.224-2.24-0.384-3.392-0.512-0.608-0.064-1.216-0.128-1.792-0.256-0.736 0.096-1.472 0.128-2.24 0.128h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-2.016 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.96 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-3.008-0.224-0.96 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-2.976 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-0.992 0-2.016-0.096-2.976-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-6.016c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.048-0.096-3.040-0.224-0.032 0-0.064 0-0.096-0.032-0.96 0.128-1.952 0.224-2.976 0.224h-3.008c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h3.008c1.024 0 2.016 0.096 3.008 0.224 0 0 0.032 0 0.032 0 0.992-0.128 2.016-0.224 3.040-0.224h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.96-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 2.016-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 3.008 0.192 0.96-0.128 1.984-0.192 2.976-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c0.992 0 2.016 0.064 2.976 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h6.016c1.28 0 2.528 0.096 3.744 0.32 1.376-0.128 2.752-0.16 4.192-0.032 2.848 0.256 5.664 0.672 8.448 1.248 1.408 0.32 2.784 0.736 4.064 1.312 1.408 0.192 2.784 0.512 4.16 0.992 2.688 0.896 5.344 2.016 7.904 3.232 1.312 0.608 2.528 1.376 3.648 2.208 1.312 0.512 2.592 1.12 3.808 1.888 2.368 1.504 4.704 3.168 6.88 4.928 1.12 0.928 2.144 1.888 3.008 2.976 1.152 0.768 2.24 1.664 3.232 2.688 1.952 2.016 3.84 4.128 5.568 6.304 0.864 1.152 1.632 2.336 2.272 3.552 0.928 1.024 1.792 2.112 2.528 3.328 1.472 2.368 2.816 4.832 4.032 7.36 0.608 1.312 1.088 2.624 1.44 3.936 0.672 1.216 1.248 2.464 1.728 3.808 0.896 2.624 1.664 5.312 2.272 8.032 0.32 1.376 0.512 2.752 0.544 4.128 0.384 1.312 0.704 2.656 0.864 4.096 0.32 2.72 0.48 5.504 0.512 8.288 0 1.056-0.096 2.112-0.224 3.136 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 0.992-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 0.992-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v5.984c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v5.984c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 2.976v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 2.976v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 0.992-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v5.984c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v5.984c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v5.984c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 2.976v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 2.976 0.128 0.992 0.224 2.016 0.224 3.008v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 0.992-0.096 2.016-0.224 3.008 0.128 0.96 0.224 1.952 0.224 2.976v6.016c0 1.024-0.096 2.016-0.224 3.008 0.128 0.992 0.224 1.984 0.224 3.008v6.016c0 0.992-0.096 2.016-0.224 2.976 0.128 0.992 0.224 1.984 0.224 3.008v3.072z" /> +<glyph unicode="" glyph-name="image-masonry" d="M960 928h-896c-17.664 0-32-14.336-32-32v-896c0-17.664 14.336-32 32-32h896c17.664 0 32 14.336 32 32v896c0 17.664-14.336 32-32 32zM640 480v242.752l13.28 13.248h50.72v-256h-64zM512 480v128h64v-128h-64zM379.776 559.872c-0.224 0.384-0.576 0.672-0.768 1.056-0.992 1.6-2.144 3.104-3.424 4.48-0.448 0.512-0.896 1.056-1.376 1.536-1.76 1.696-3.648 3.264-5.792 4.544-0.16 0.064-0.288 0.128-0.448 0.224-1.952 1.12-4.064 2.016-6.304 2.72-0.768 0.256-1.6 0.384-2.4 0.576-0.896 0.224-1.792 0.544-2.72 0.672-0.8 0.128-1.6 0.064-2.432 0.128-0.48 0.032-0.96 0.224-1.472 0.224-0.32 0-0.608-0.128-0.928-0.128-5.344-0.032-10.4-1.376-14.912-3.84-0.064-0.032-0.064-0.064-0.128-0.064-2.080-1.152-4-2.528-5.792-4.096-0.448-0.352-0.864-0.768-1.248-1.152-1.632-1.6-3.136-3.36-4.384-5.312-0.128-0.16-0.256-0.288-0.352-0.448l-0.192-0.32s-0.096-0.16-0.16-0.224l-129.44-207.072-6.464 12.96c-4.96 9.92-14.72 16.544-25.728 17.568-10.912 0.864-21.792-3.808-28.48-12.672l-38.4-51.2v288h64c52.928 0 96 43.040 96 96v37.6c37.216 13.216 64 48.704 64 90.4v32h128v-423.52l-68.224 119.36zM704 800h-64c-8.48 0-16.64-3.392-22.624-9.376l-32-32c-6.016-6.016-9.376-14.144-9.376-22.624v-64h-64v192h192v-64zM768 512h8c17.664 0 32 14.336 32 32s-14.336 32-32 32h-8v93.6c7.328-1.792 15.264-2.912 24-2.912 23.84 0 42.304 7.648 56 18.016 13.696-10.336 32.16-18.016 56-18.016 8.736 0 16.672 1.088 24 2.912v-61.6h-40c-17.664 0-32-14.336-32-32s14.336-32 32-32h40v-64h-160v32zM928 742.72c-2.944-5.12-9.536-12.032-24-12.032-17.28 0-23.36 9.792-25.376 14.72-2.976 9.984-10.592 18.4-21.216 21.6-16.928 5.12-34.688-4-39.808-20.928-1.696-4.64-7.616-15.392-25.6-15.392-14.496 0-21.088 6.88-24 12.032v121.312h160v-121.312zM256 864v-32c0-17.952-14.048-32-32-32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32v-32c0-17.92-14.048-32-32-32h-64v192h160zM96 213.312l58.528 78.048 8.864-17.664c5.184-10.336 15.552-17.12 27.104-17.664 11.488-0.224 22.528 5.184 28.672 15.008l79.776 127.648-10.592-74.144c-1.408-9.984 1.92-20.032 9.056-27.168l49.088-49.088-56.16-140.384c-6.56-16.416 1.408-35.040 17.824-41.6 3.904-1.568 7.936-2.304 11.872-2.304 12.672 0 24.704 7.616 29.696 20.128l64 160c4.768 11.904 1.984 25.472-7.104 34.528l-52.672 52.672 16.544 115.84 77.504-135.648v-279.52h-351.968v181.312zM832 32h-224v32h32c12.096 0 23.2 6.848 28.64 17.664l23.168 46.336h56.448l23.168-46.336c5.408-10.848 16.512-17.664 28.64-17.664h32v-32zM896 32v64c0 17.664-14.336 32-32 32h-44.224l-23.168 46.336c-5.408 10.848-16.512 17.664-28.64 17.664h-96c-12.096 0-23.2-6.848-28.64-17.664l-23.168-46.336h-44.224c-17.664 0-32-14.336-32-32v-64h-32v384h416v-384h-32zM360.032 704h-8.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h8.032c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 288h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 384h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="images" d="M981.312 435.008l-104.64 181.12v98.016c0 33.152-26.976 60.16-60.128 60.16h-31.2l-50.048 86.624c-10.784 18.656-28.16 32-48.896 37.536-20.672 5.504-42.336 2.656-60.832-8.096l-201.152-116.064h-217.024c-33.184 0-60.16-26.976-60.16-60.16v-99.904l-75.040-43.36c-18.624-10.752-31.936-28.128-37.472-48.864s-2.688-42.432 8.064-60.992l104.448-181.152v-98.016c0-33.152 27.008-60.16 60.16-60.16h31.136l50.016-86.624c10.784-18.688 28.224-32 49.024-37.568 6.848-1.824 13.824-2.72 20.704-2.72 13.952 0 27.68 3.648 39.968 10.816l201.152 116.064h217.088c33.152 0 60.128 26.976 60.128 60.16v99.872l75.296 43.456c38.112 22.176 51.296 71.392 29.312 109.856zM812.672 409.536l-6.88 14.304c-0.352 0.736-0.736 1.408-1.12 2.112-13.952 24.192-35.872 41.248-61.472 49.152l-54.624 102.432c-19.712 33.76-54.72 53.92-93.696 53.92s-73.856-20.16-94.112-55.008l-142.24-266.208c-9.824 3.712-20.16 6.304-30.944 7.552-23.040 41.088-66.848 67.52-115.040 67.52h-1.312v101.216c11.36-2.432 22.912-4.032 34.56-4.032 91.008 0 165.056 74.080 165.056 165.088 0 21.6-4.384 42.912-12.48 62.656h414.304v-300.768zM444.16 185.696v1.28c0 33.152-12.384 63.424-32.672 86.592l145.152 271.744c8.096 13.888 22.4 22.176 38.24 22.176 15.968 0 30.336-8.288 37.824-21.088l39.264-73.632c-22.72-8.768-42.176-25.216-55.36-48.096l-123.168-238.912h-49.248zM657.664 834.944c3.744 2.176 8.096 2.784 12.288 1.664 4.224-1.12 7.744-3.84 9.984-7.68l31.552-54.624h-158.944l105.12 60.672zM324.96 710.304c13.984-17.728 21.888-39.968 21.888-62.656 0-55.744-45.344-101.088-101.056-101.088-11.808 0-23.488 2.304-34.56 6.336v157.44h113.728zM96.576 505.472c0.672 2.432 2.528 7.040 7.68 10.016l43.008 24.864v-132.352l-49.024 85.056c-2.944 5.088-2.304 9.984-1.632 12.448zM211.232 321.312h1.312c28.672 0 54.4-18.144 64-45.12 0.064-0.096 0.128-0.192 0.16-0.32 1.088-3.040 2.624-5.856 4.576-8.384 0.096-0.096 0.192-0.224 0.256-0.352 5.856-7.488 14.88-12.384 25.12-12.384h5.632c37.408 0 67.84-30.4 67.84-67.808v-1.28h-168.928v135.616zM366.208 60.992c-4.96-2.88-9.728-2.24-12.16-1.6-2.464 0.64-7.040 2.496-10.016 7.68l-31.552 54.624h158.944l-105.184-60.704zM565.44 185.696l107.36 208.288c7.968 13.824 22.24 22.080 38.24 22.080 15.616 0 29.664-7.904 37.696-21.184l63.968-132.928v-76.224h-247.264zM919.904 380.544l-43.2-24.928v132.576l49.12-85.024c4.544-7.904 1.824-18.112-5.92-22.592z" /> +<glyph unicode="" glyph-name="image-showcase" d="M320 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 640h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM736 544h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM448 160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM928 800h-64v32c0 35.296-28.704 64-64 64h-576c-35.296 0-64-28.704-64-64v-32h-64c-35.296 0-64-28.704-64-64v-576c0-35.296 28.704-64 64-64h64v-32c0-35.296 28.704-64 64-64h576c35.296 0 64 28.704 64 64v32h64c35.296 0 64 28.704 64 64v576c0 35.296-28.704 64-64 64zM928 736v-448h-64v448h64zM457.6 256h-227.872l120.64 193.024 107.232-193.024zM530.816 256l-34.72 62.496 45.792 68.672 74.976-131.168h-86.048zM690.56 256l-118.784 207.872c-5.504 9.632-15.616 15.712-26.688 16.128-11.168 0.672-21.568-4.992-27.712-14.24l-56.224-84.352-81.184 146.112c-5.504 9.888-15.84 16.16-27.136 16.448-11.52 0.768-21.984-5.44-27.968-15.040l-100.864-161.376v336.416h576v-448h-109.44zM224 832h576v-64h-576v64zM160 736v-448h-64v448h64zM96 160v64h64v-64h-64zM800 64h-576v128h576v-128zM864 160v64h64v-64h-64z" /> +<glyph unicode="" glyph-name="image-slider" d="M192 320h640c17.664 0 32 14.336 32 32v512c0 17.664-14.336 32-32 32h-640c-17.664 0-32-14.336-32-32v-512c0-17.664 14.336-32 32-32zM553.376 617.376l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-9.376 9.376 9.376 9.376c6.016 6.016 9.376 14.144 9.376 22.624v29.408l108-86.4c5.76-4.64 12.864-7.008 20-7.008 4.864 0 9.76 1.088 14.336 3.36l17.664 8.864v-76.224h-576v108.224l81.696-40.864c8.992-4.48 19.648-4.48 28.64 0l49.696 24.864 49.696-24.864c11.136-5.568 24.576-4.16 34.304 3.648l108 86.4v-16.16l-22.624-22.624c-12.48-12.48-12.48-32.768 0-45.248zM224 480h274.816c-97.696-37.408-165.44-80.192-188.832-96h-85.984v96zM439.776 384c83.2 40.736 211.392 88.992 360.224 95.232v-95.232h-360.224zM800 832v-140.224l-28-14.016-144 115.2c-0.192 0.16-0.448 0.192-0.64 0.352-2.496 1.92-5.312 3.488-8.352 4.608-0.48 0.16-0.992 0.32-1.504 0.448-3.040 0.928-6.176 1.6-9.504 1.6s-6.496-0.672-9.504-1.6c-0.48-0.16-0.992-0.256-1.504-0.448-3.040-1.12-5.792-2.656-8.352-4.608-0.192-0.16-0.448-0.192-0.64-0.352l-144-115.2-45.696 22.848c-8.992 4.512-19.648 4.512-28.64 0l-49.696-24.864-96 48v108.224h576zM73.376 553.376c6.272-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376c12.512 12.48 12.512 32.768 0 45.248l-9.376 9.376 9.376 9.376c12.512 12.48 12.512 32.768 0 45.248s-32.768 12.48-45.248 0l-32-32c-12.512-12.48-12.512-32.768 0-45.248l32-32zM905.376 553.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l32 32c12.48 12.48 12.48 32.768 0 45.248l-32 32c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.768 0-45.248l9.376-9.376-9.376-9.376c-12.48-12.48-12.48-32.768 0-45.248zM960 160c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c0 17.664-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32h144v-64h-144c-17.664 0-32-14.336-32-32s14.336-32 32-32h320c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-144v64h144zM272 96v64h112v-64h-112zM448 64v128h128v-128h-128zM752 96h-112v64h112v-64zM320 736h2.016c17.664 0 32 14.336 32 32s-14.336 32-32 32h-2.016c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="image-stack-info" d="M927.744 383.584c6.656 19.68 10.24 40.768 10.24 62.688 0 108.288-88.096 196.384-196.384 196.384-42.784 0-82.432-13.76-114.72-37.088-33.312 24.032-73.472 37.088-114.88 37.088-42.784 0-82.432-13.76-114.72-37.088-33.312 24.032-73.472 37.088-114.88 37.088-108.288 0-196.384-88.096-196.384-196.384s88.096-196.384 196.384-196.384c41.408 0 81.568 13.056 114.88 37.088 32.288-23.328 71.936-37.088 114.72-37.088 41.28 0 81.536 13.12 114.848 37.12 32.32-23.36 71.968-37.12 114.784-37.12 85.696 0 158.752 55.2 185.504 131.904 0.256 0.608 0.448 1.216 0.64 1.824zM895.072 446.24c0-5.696-0.32-11.328-0.928-16.864l-70.304 60.928c-8.192 7.104-20.416 6.976-28.48-0.32l-75.872-68.8-20.16 25.696c-0.544 0.704-1.152 1.376-1.792 1.984-10.944 10.848-28.736 10.816-39.616-0.096-0.064-0.064-0.16-0.16-0.224-0.224l-58.304-60.064c-7.264 17.824-11.296 37.312-11.296 57.696 0 84.64 68.864 153.472 153.472 153.472s153.472-68.864 153.472-153.472zM128.928 446.24c0 84.64 68.864 153.472 153.472 153.472 29.28 0 57.76-8.384 82.176-23.872-30.464-34.624-48.96-79.968-48.96-129.6s18.496-94.976 48.96-129.6c-24.416-15.488-52.896-23.872-82.176-23.872-84.64 0-153.472 68.864-153.472 153.472zM358.528 446.24c0 84.64 68.864 153.472 153.472 153.472 29.28 0 57.76-8.384 82.176-23.872-30.464-34.624-48.96-79.968-48.96-129.6s18.528-95.008 48.992-129.6c-24.448-15.488-52.992-23.872-82.208-23.872-84.64 0-153.472 68.864-153.472 153.472zM741.6 292.768c-48.288 0-91.424 22.432-119.584 57.44l54.56 56.224 54.944-70.080c4.224-5.408 10.528-8.224 16.896-8.224 4.64 0 9.312 1.504 13.216 4.576 9.312 7.328 10.944 20.8 3.648 30.112l-19.232 24.544 64.032 58.080 71.488-61.952c-24.032-53.408-77.728-90.688-140-90.688zM765.024 532.064c0-24.256-19.648-43.904-43.904-43.904s-43.904 19.648-43.904 43.904c0 24.256 19.648 43.904 43.904 43.904s43.904-19.648 43.904-43.904z" /> +<glyph unicode="" glyph-name="instagram" d="M747.552 771.104c52.672 0 95.552-42.88 95.552-95.552v-471.104c0-52.672-42.88-95.552-95.552-95.552h-471.104c-52.672 0-95.552 42.88-95.552 95.552v471.104c0 52.672 42.88 95.552 95.552 95.552h471.104zM747.552 866.656h-471.104c-105.568 0-191.104-85.568-191.104-191.104v-471.104c0-105.568 85.568-191.104 191.104-191.104h471.104c105.568 0 191.104 85.568 191.104 191.104v471.104c0 105.568-85.568 191.104-191.104 191.104v0zM508.544 586.048c79.904 0 144.928-65.024 144.928-144.928s-65.024-144.928-144.928-144.928-144.928 65.024-144.928 144.928 65.024 144.928 144.928 144.928zM508.544 681.6c-132.832 0-240.48-107.648-240.48-240.48s107.648-240.48 240.48-240.48 240.48 107.648 240.48 240.48-107.648 240.48-240.48 240.48v0zM749.024 724.448c-26.176 0-47.424-21.216-47.424-47.392s21.216-47.424 47.424-47.424 47.424 21.248 47.424 47.424-21.216 47.424-47.424 47.424v0z" /> +<glyph unicode="" glyph-name="instagram-feed" d="M854.688 832.16h-685.344c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h685.344c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM853.184 106.816h-682.336v682.336h682.336v-682.336zM304.48 698.528c0-21.056-16.288-38.144-36.352-38.144s-36.352 17.088-36.352 38.144c0 21.056 16.288 38.144 36.352 38.144s36.352-17.088 36.352-38.144zM583.552 677.024h-240.928c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h240.928c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504zM755.552 617.664h-470.752c-25.376 0-45.952-20.576-45.952-45.952v-334.752c0-25.376 20.576-45.952 45.952-45.952h470.752c25.408 0 45.952 20.576 45.952 45.952v334.752c0 25.376-20.544 45.952-45.952 45.952zM611.136 390.080c-0.416-0.544-0.896-1.024-1.376-1.536l-87.84-92.192c-5.152-5.408-13.536-5.408-18.688 0l-87.872 92.192c-22.368 23.488-25.024 61.728-4.096 86.688 22.912 27.328 62.624 28.32 86.752 2.976 3.392-3.552 6.304-7.424 8.736-11.584 2.528-4.352 8.416-4.352 11.072-0.064 2.24 3.616 4.864 7.008 7.872 10.176 0.48 0.512 0.96 0.992 1.472 1.44 23.296 22.912 59.872 22.432 82.624-1.44s23.232-62.272 1.376-86.688zM785.28 250.048c0-18.72-14.464-33.888-32.288-33.888h-89.888l122.176 128.256v-94.336z" /> +<glyph unicode="" glyph-name="interactive-link" d="M342.24 597.344h339.488c23.744 0 43.008 19.232 43.008 43.008v42.432c0 23.744-19.232 43.008-43.008 43.008h-339.488c-23.744 0-43.008-19.264-43.008-43.008v-42.432c0-23.744 19.232-43.008 43.008-43.008zM342.24 682.784h339.488v-42.432h-339.488v42.432zM809.44 576.096h85.952c23.744 0 43.008 19.232 43.008 43.008v85.952c0 23.744-19.264 43.008-43.008 43.008h-85.952c-23.744 0-43.008-19.264-43.008-43.008v-85.952c0-23.744 19.232-43.008 43.008-43.008zM809.44 705.056h85.952v-85.952h-85.952v85.952zM682.4 300.832h-339.52c-23.744 0-43.008-19.264-43.008-43.008v-44.16c0-23.744 19.264-43.008 43.008-43.008h339.52c23.744 0 43.008 19.264 43.008 43.008v44.16c0 23.744-19.264 43.008-43.008 43.008zM682.4 213.664h-339.52v44.16h339.52v-44.16zM896 322.208h-85.952c-23.744 0-43.008-19.264-43.008-43.008v-85.952c0-23.744 19.264-43.008 43.008-43.008h85.952c23.744 0 43.008 19.264 43.008 43.008v85.952c0 23.744-19.264 43.008-43.008 43.008zM896 193.248h-85.952v85.952h85.952v-85.952zM342.24 514.432h340.096c23.744 0 43.008-19.264 43.008-43.008v-44.448c0-23.744-19.264-43.008-43.008-43.008h-340.096c-23.744 0-43.008 19.264-43.008 43.008v44.448c0 23.744 19.264 43.008 43.008 43.008zM214.624 534.688h-85.952c-23.744 0-43.008-19.264-43.008-43.008v-85.952c0-23.744 19.264-43.008 43.008-43.008h85.952c23.744 0 43.008 19.232 43.008 43.008v85.952c0 23.744-19.232 43.008-43.008 43.008zM128 451.136v25.056c0 8 6.464 14.464 14.432 14.464h27.648l-42.080-39.52z" /> +<glyph unicode="" glyph-name="invoice" d="M896.896 575.936c-0.224 6.304-2.272 12.256-6.016 17.472-0.032 0.064-0.096 0.096-0.096 0.16-0.96 1.312-1.696 2.72-2.88 3.904l-106.624 106.624c-0.032 135.936-0.096 137.28-0.192 138.656-3.232 47.808-43.328 85.248-91.264 85.248h-492.704c-33.696 0-61.088-27.424-61.088-61.088v-706.176c0-47.072 36.736-87.040 83.552-90.912 0.576-0.064 2.048-0.096 4.16-0.128 1.184-0.128 2.336-0.192 3.552-0.192h24.768v-10.016c0-50.432 41.056-91.488 91.488-91.488h462.336c50.432 0 91.488 41.024 91.488 91.488v512.928c0 1.184-0.256 2.336-0.352 3.52zM691.552 703.232l96.416-96.416h-95.168c-0.704 0-1.28 0.576-1.28 1.28v95.136zM251.936 750.592v-617.056c-12 0-25.28 0.064-27.072 0.064-13.952 1.152-24.928 13.088-24.928 27.136v703.264h489.792c14.4 0 26.464-11.232 27.36-24.064 0.032-3.104 0.064-37.408 0.096-71.808l-35.040 35.040c-1.12 1.12-2.496 1.856-3.744 2.784-0.16 0.096-0.288 0.192-0.416 0.32-5.12 3.68-11.040 5.696-17.216 5.92-1.216 0.096-2.4 0.352-3.616 0.352h-343.264c-34.144 0-61.952-27.776-61.952-61.952zM805.76 32h-462.336c-15.136 0-27.488 12.352-27.488 27.488v689.024h311.648v-140.416c0-35.968 29.28-65.28 65.28-65.28h140.416v-483.328c0-15.168-12.352-27.488-27.488-27.488zM574.24 366.112c0-48.512 39.488-88 88-88h56.224c48.512 0 88 39.488 88 88v17.952c0 48.544-39.488 88-88 88h-56.224c-48.512 0-88-39.456-88-88v-17.952zM638.24 384.032c0 13.216 10.784 24 24 24h56.224c13.216 0 24-10.784 24-24v-17.952c0-13.216-10.784-24-24-24h-56.224c-13.216 0-24 10.784-24 24v17.952zM384.576 644.16h160.064c17.664 0 32 14.336 32 32s-14.336 32-32 32h-160.064c-17.664 0-32-14.336-32-32s14.336-32 32-32zM384.576 535.232h95.168c17.664 0 32 14.336 32 32s-14.336 32-32 32h-95.168c-17.664 0-32-14.336-32-32s14.336-32 32-32zM774.464 135.2h-389.888c-17.664 0-32-14.336-32-32s14.336-32 32-32h389.888c17.664 0 32 14.336 32 32s-14.336 32-32 32zM774.464 244.736h-168.256c-17.664 0-32-14.336-32-32s14.336-32 32-32h168.256c17.664 0 32 14.336 32 32s-14.336 32-32 32zM397.472 207.040c0-17.664 14.336-32 32-32s32 14.336 32 32v12c25.76 11.36 47.008 35.584 47.008 66.624 0 50.912-41.408 70.496-66.176 82.24-22.528 10.688-26.336 14.080-26.336 18.912 0 2.304 0 5.408 6.688 8.16 10.176 4.192 22.336 1.568 25.92-2.048 12.48-12.48 32.768-12.48 45.28 0s12.48 32.768 0 45.28c-8.672 8.704-19.936 15.008-32.352 18.784v9.056c0 17.664-14.336 32-32 32s-32-14.336-32-32v-12.256c-28.512-12.096-45.536-37.056-45.536-66.976 0-46.944 37.888-64.864 62.944-76.736 25.888-12.288 29.568-16.224 29.568-24.384 0-3.040-8.544-9.696-15.008-9.696-11.232 0-29.28 7.808-34.304 11.84-12.544 12.16-32.512 12.032-44.896-0.352-12.48-12.48-12.48-32.736 0-45.248 9.248-9.248 27.584-19.104 47.2-24.96v-10.176z" /> +<glyph unicode="" glyph-name="invoice-dollar" d="M960 458.368h-161.664v372.736c0 52.832-43.008 95.84-95.84 95.84h-574.656c-52.832 0-95.84-43.008-95.84-95.84v-766.208c0-52.832 42.976-95.84 95.84-95.84h735.232s0.032 0 0.064 0c0.032 0 0.096 0 0.096 0 71.008 0 128.768 57.824 128.768 128.928v328.384c0 17.664-14.336 32-32 32zM96 64.928v766.176c0 17.856 13.984 31.84 31.84 31.84h574.624c17.568 0 31.84-14.272 31.84-31.84v-733.12c0-23.68 6.528-45.824 17.728-64.928h-624.192c-17.856 0-31.84 13.984-31.84 31.84zM928 97.984c0-35.808-29.024-64.928-64.736-64.928s-64.928 29.12-64.928 64.928v296.384h129.664v-296.384zM185.12 511.84c0-17.664 14.336-32 32-32s32 14.336 32 32v2.784c33.6 12.864 57.536 45.344 57.536 83.328 0 49.376-40.16 89.568-89.568 89.568-13.952 0-25.344 11.456-25.344 25.536 0 13.952 11.392 25.344 25.344 25.344 8.864 0 14.72-4 18.112-7.392 12.512-12.512 32.736-12.512 45.248 0s12.48 32.768 0 45.248c-9.024 9.024-19.744 15.68-31.36 20.096v2.816c0 17.664-14.336 32-32 32s-32-14.336-32-32v-2.784c-33.472-12.928-57.344-45.344-57.344-83.296 0-49.376 40.064-89.568 89.344-89.568 14.112 0 25.536-11.456 25.536-25.568 0-13.984-11.456-25.312-25.536-25.312-6.88 0-13.184 2.56-17.728 7.2-12.384 12.608-32.64 12.736-45.248 0.352s-12.768-32.672-0.352-45.248c8.96-9.12 19.68-15.84 31.392-20.288v-2.816zM383.232 735.232h95.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-95.776c-17.664 0-32-14.336-32-32s14.336-32 32-32zM383.232 639.456h31.936c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.936c-17.664 0-32-14.336-32-32s14.336-32 32-32zM638.624 575.744h-255.392c-17.664 0-32-14.336-32-32s14.336-32 32-32h255.392c17.664 0 32 14.336 32 32s-14.336 32-32 32zM415.136 416.16h-223.456c-17.664 0-32-14.336-32-32s14.336-32 32-32h223.456c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 416.16h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM191.68 224.448h63.84c17.664 0 32 14.336 32 32s-14.336 32-32 32h-63.84c-17.664 0-32-14.336-32-32s14.336-32 32-32zM351.328 160.768h-159.616c-17.664 0-32-14.336-32-32s14.336-32 32-32h159.616c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 288.448h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM638.624 160.768h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32zM478.944 671.456c0-17.664 14.336-32 32-32h31.936c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.936c-17.664 0-32-14.336-32-32zM542.88 416.16h-8c-17.664 0-32-14.336-32-32s14.336-32 32-32h8c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="item-list" d="M222.592 831.168c-52.256 0-94.784-42.528-94.784-94.784s42.528-94.784 94.784-94.784 94.784 42.528 94.784 94.784-42.528 94.784-94.784 94.784zM222.592 684.608c-28.544 0-51.776 23.232-51.776 51.776s23.232 51.776 51.776 51.776 51.776-23.232 51.776-51.776-23.232-51.776-51.776-51.776zM252.608 736.384c0-16.576-13.44-30.016-30.016-30.016s-30.016 13.44-30.016 30.016c0 16.576 13.44 30.016 30.016 30.016s30.016-13.44 30.016-30.016zM222.592 542.784c-52.256 0-94.784-42.528-94.784-94.784s42.528-94.784 94.784-94.784 94.784 42.528 94.784 94.784-42.528 94.784-94.784 94.784zM222.592 396.224c-28.544 0-51.776 23.232-51.776 51.776s23.232 51.776 51.776 51.776 51.776-23.232 51.776-51.776-23.232-51.776-51.776-51.776zM252.608 448c0-16.576-13.44-30.016-30.016-30.016s-30.016 13.44-30.016 30.016c0 16.576 13.44 30.016 30.016 30.016s30.016-13.44 30.016-30.016zM222.592 252.384c-52.256 0-94.784-42.528-94.784-94.784s42.528-94.784 94.784-94.784 94.784 42.528 94.784 94.784-42.528 94.784-94.784 94.784zM222.592 105.824c-28.544 0-51.776 23.232-51.776 51.776s23.232 51.776 51.776 51.776 51.776-23.232 51.776-51.776-23.232-51.776-51.776-51.776zM252.608 157.6c0-16.576-13.44-30.016-30.016-30.016s-30.016 13.44-30.016 30.016c0 16.576 13.44 30.016 30.016 30.016s30.016-13.44 30.016-30.016zM874.656 469.504h-474.72c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h474.72c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM874.656 179.104h-474.72c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h474.72c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM399.936 714.88h474.72c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-474.72c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504z" /> +<glyph unicode="" glyph-name="joystick" d="M725.664 276.992h-170.656v173.984c97.28 19.968 170.656 106.24 170.656 209.312 0 117.792-95.84 213.664-213.664 213.664s-213.664-95.84-213.664-213.664c0-103.072 73.376-189.344 170.656-209.312v-173.984h-41.984v41.984c0 23.776-19.232 43.008-43.008 43.008h-128c-23.776 0-43.008-19.232-43.008-43.008v-74.72c-26.144-23.456-42.656-57.472-42.656-95.328 0-70.56 57.44-128 128-128h427.36c70.56 0 128 57.44 128 128s-57.44 128-128 128zM384.352 660.352c0 70.4 57.248 127.648 127.648 127.648s127.648-57.248 127.648-127.648-57.248-127.648-127.648-127.648-127.648 57.248-127.648 127.648zM725.664 107.008h-427.36c-23.168 0-41.984 18.848-41.984 41.984s18.848 41.984 41.984 41.984h427.36c23.168 0 41.984-18.848 41.984-41.984s-18.848-41.984-41.984-41.984z" /> +<glyph unicode="" glyph-name="keep" d="M761.504 449.408l-74.848 116.384v223.456c18.848 4.512 32.928 21.504 32.928 41.76 0 23.776-19.232 43.008-43.008 43.008h-23.776c-2.944 0.64-6.016 0.992-9.184 0.992h-263.296c-3.168 0-6.24-0.352-9.184-0.992h-23.776c-23.776 0-43.008-19.232-43.008-43.008 0-20.256 14.048-37.216 32.896-41.76v-223.456l-74.848-116.384c-8.48-13.216-9.12-30.048-1.568-43.872s22.016-22.4 37.76-22.4h170.336v-320.16c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v320.16h170.336c15.744 0 30.208 8.576 37.76 22.4s6.912 30.624-1.568 43.872zM377.44 469.152l39.072 60.768c4.48 6.944 6.816 15.008 6.816 23.264v234.848h177.312v-234.848c0-8.224 2.4-16.352 6.816-23.264l39.072-60.768h-269.088z" /> +<glyph unicode="" glyph-name="keyboard" d="M828 745.568h-631.968c-60.416 0-109.536-49.152-109.536-109.536v-375.968c0-60.416 49.152-109.536 109.536-109.536h631.968c60.416 0 109.536 49.152 109.536 109.536v375.936c0 60.416-49.152 109.536-109.536 109.536zM854.432 260c0-14.592-11.872-26.464-26.464-26.464h-631.968c-14.592 0-26.464 11.872-26.464 26.464v375.968c0 14.592 11.872 26.464 26.464 26.464h631.968c14.592 0 26.464-11.872 26.464-26.464v-375.968zM725.344 361.568h-426.656c-22.944 0-41.568-18.592-41.568-41.568s18.592-41.568 41.568-41.568h426.656c22.944 0 41.568 18.592 41.568 41.568s-18.592 41.568-41.568 41.568zM213.344 490.656h85.344v-88.864h-85.344v88.864zM341.344 490.656h85.344v-88.864h-85.344v88.864zM469.344 490.656h85.344v-88.864h-85.344v88.864zM597.344 490.656h85.344v-88.864h-85.344v88.864zM725.344 490.656h85.344v-88.864h-85.344v88.864zM213.344 618.656h85.344v-85.344h-85.344v85.344zM341.344 618.656h85.344v-85.344h-85.344v85.344zM469.344 618.656h85.344v-85.344h-85.344v85.344zM597.344 618.656h85.344v-85.344h-85.344v85.344zM725.344 618.656h85.344v-85.344h-85.344v85.344z" /> +<glyph unicode="" glyph-name="key-left" d="M649.568 928.352c-188.832 0-342.432-153.632-342.432-342.4 0-21.184 2.208-41.824 5.888-61.984l-87.616-87.456c-8.608-8.544-11.584-21.28-7.744-32.768l5.28-15.808-181.6-181.568c-6.016-6.016-9.376-14.144-9.376-22.624v-184.064c0-2.112 0.224-4.192 0.64-6.272 0.192-0.96 0.544-1.856 0.832-2.784 0.32-1.088 0.576-2.144 0.992-3.2 0.448-1.12 1.088-2.112 1.664-3.136 0.448-0.768 0.768-1.6 1.28-2.368 2.336-3.52 5.344-6.528 8.896-8.864 0.768-0.512 1.6-0.832 2.368-1.312 1.024-0.576 2.016-1.216 3.136-1.664 1.024-0.448 2.144-0.672 3.2-0.992 0.928-0.288 1.792-0.64 2.784-0.832 2.080-0.416 4.16-0.64 6.272-0.64h184.064c8.48 0 16.608 3.36 22.624 9.376l23.040 23.040c6.016 6.016 9.376 14.144 9.376 22.624v32.672l4.288 4.288h32.672c17.664 0 32 14.336 32 32v32.768l45.792 45.664 50.208-16.768c11.552-3.84 24.192-0.832 32.768 7.712l88.128 88.128c19.712-3.52 39.904-5.696 60.64-5.696 188.832 0 342.4 153.6 342.4 342.432s-153.664 342.432-342.432 342.432zM469.568 220.32l-50.208 16.768c-11.552 3.84-24.16 0.864-32.768-7.712l-69.088-68.928c-6.048-6.016-9.44-14.176-9.44-22.688v-14.080h-13.92c-8.48 0-16.64-3.36-22.624-9.376l-23.040-23.040c-6.016-6.016-9.376-14.144-9.376-22.624v-32.704l-4.288-4.288h-93.568l48.416 48.416c12.512 12.48 12.512 32.736 0 45.248s-32.768 12.48-45.248 0l-48.416-48.416v93.568l152.384 152.384c5.984-6.144 14.048-9.984 22.688-9.984 3.36 0 6.752 0.544 10.144 1.664 16.768 5.6 25.792 23.712 20.224 40.48l-16.768 50.208 48.96 48.864c34.912-83.264 101.792-149.888 185.184-184.48l-49.28-49.248zM649.568 307.52c-19.584 0-38.688 2.080-57.12 5.952-3.52 1.632-7.232 2.56-11.008 2.816-98.688 24.96-176.352 102.592-201.44 201.216-0.352 3.168-1.088 6.272-2.4 9.216-4.16 19.104-6.496 38.88-6.496 59.2 0 153.536 124.896 278.4 278.432 278.4s278.4-124.928 278.4-278.4-124.928-278.432-278.4-278.432zM506.912 522.208c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l79.648-79.648c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-79.648 79.648zM799.904 735.584c-83.456 83.392-219.328 83.328-302.816 0-12.48-12.48-12.544-32.736-0.032-45.248 12.448-12.512 32.736-12.512 45.248-0.032 58.528 58.464 153.792 58.464 212.352 0.032 58.432-58.528 58.432-153.792 0-212.352-12.48-12.512-12.48-32.768 0.032-45.248 6.24-6.24 14.432-9.376 22.592-9.376s16.384 3.136 22.624 9.408c83.328 83.488 83.328 219.328-0.032 302.816z" /> +<glyph unicode="" glyph-name="kite" d="M521.952 257.312v0s0 0 0.032 0c0.992 0.256 1.952 0.544 2.944 0.864 0.288 0.096 0.608 0.224 0.864 0.288 0.768 0.256 1.536 0.544 2.272 0.896 0.224 0.096 0.48 0.16 0.672 0.288 0.896 0.384 1.792 0.8 2.656 1.28 0.288 0.16 0.608 0.352 0.896 0.512 0.608 0.352 1.248 0.736 1.792 1.056 0.288 0.16 0.608 0.384 0.896 0.544 0.8 0.544 1.632 1.12 2.4 1.696 0.128 0.096 0.256 0.224 0.384 0.352 0.672 0.512 1.312 1.056 1.952 1.664 0.256 0.224 0.48 0.416 0.736 0.64 0.544 0.512 1.12 1.056 1.632 1.632 0.16 0.16 0.384 0.384 0.544 0.544 0.672 0.736 1.312 1.504 1.952 2.304 0.128 0.16 0.256 0.352 0.352 0.48 0.352 0.48 0.736 0.928 1.024 1.408l266.656 380.96s0.16 0.256 0.256 0.352c0.128 0.224 0.256 0.416 0.416 0.608 0.608 0.928 1.184 1.888 1.696 2.848 0.128 0.224 0.224 0.48 0.352 0.672 0.48 0.928 0.928 1.888 1.376 2.816 0.128 0.256 0.224 0.544 0.352 0.8 0.384 0.928 0.736 1.888 1.024 2.816 0.096 0.256 0.16 0.544 0.256 0.8 0.288 1.056 0.608 2.080 0.8 3.2 0.032 0.224 0.128 0.48 0.16 0.672 0.256 1.184 0.416 2.336 0.544 3.552 0 0.16 0.032 0.352 0.032 0.512 0.128 1.28 0.16 2.528 0.224 3.808 0 0.096 0 0.16 0 0.256 0 0.032 0 0.096 0 0.128 0 1.248-0.096 2.528-0.16 3.744 0 0.16 0 0.384-0.032 0.544-0.128 1.152-0.288 2.272-0.512 3.424-0.032 0.288-0.128 0.544-0.16 0.864 0 0.128-0.032 0.224-0.096 0.352-0.096 0.288-0.16 0.608-0.256 0.928-0.256 0.992-0.512 2.016-0.8 2.944-0.128 0.384-0.288 0.8-0.416 1.184-0.352 0.928-0.672 1.824-1.056 2.72-0.224 0.416-0.416 0.864-0.608 1.28-0.384 0.8-0.8 1.632-1.28 2.432-0.256 0.48-0.544 0.896-0.8 1.376-0.416 0.736-0.896 1.408-1.408 2.080-0.352 0.48-0.672 0.928-1.024 1.408-0.48 0.64-0.992 1.248-1.504 1.824-0.384 0.48-0.8 0.896-1.248 1.376-0.544 0.544-1.12 1.12-1.664 1.664-0.416 0.416-0.896 0.8-1.312 1.184-0.64 0.544-1.28 1.024-1.92 1.536-0.416 0.352-0.896 0.672-1.312 0.992-0.768 0.512-1.536 1.024-2.304 1.504-0.288 0.16-0.608 0.384-0.896 0.544l-266.656 152.352s-0.256 0.128-0.384 0.224c-0.352 0.224-0.736 0.384-1.12 0.608-0.736 0.384-1.44 0.736-2.176 1.056-0.352 0.16-0.736 0.352-1.056 0.48-1.024 0.416-2.016 0.768-3.040 1.12-0.384 0.128-0.768 0.256-1.184 0.352-0.864 0.256-1.696 0.48-2.56 0.672-0.288 0.096-0.608 0.16-0.928 0.224-1.152 0.224-2.304 0.384-3.456 0.512-0.288 0-0.608 0.032-0.928 0.096-2.464 0.224-4.992 0.224-7.456 0-0.288 0-0.608-0.032-0.928-0.096-1.152-0.128-2.304-0.288-3.456-0.512-0.288-0.032-0.608-0.128-0.928-0.224-0.864-0.224-1.696-0.416-2.56-0.672-0.384-0.128-0.768-0.224-1.184-0.352-1.024-0.352-2.048-0.672-3.040-1.12-0.384-0.16-0.736-0.352-1.056-0.48-0.736-0.352-1.44-0.672-2.176-1.056-0.384-0.16-0.736-0.384-1.12-0.608-0.128-0.096-0.256-0.128-0.384-0.224l-266.656-152.352c-0.288-0.16-0.608-0.384-0.896-0.544-0.768-0.48-1.568-0.992-2.304-1.504-0.48-0.352-0.896-0.672-1.312-0.992-0.64-0.512-1.28-0.992-1.92-1.536-0.48-0.384-0.896-0.8-1.312-1.184-0.544-0.544-1.12-1.056-1.664-1.664-0.416-0.416-0.8-0.896-1.248-1.376-0.512-0.608-1.024-1.184-1.504-1.824-0.352-0.48-0.736-0.928-1.024-1.408-0.48-0.672-0.928-1.408-1.408-2.080-0.288-0.48-0.544-0.896-0.8-1.376-0.48-0.768-0.864-1.568-1.28-2.432-0.224-0.416-0.416-0.864-0.608-1.28-0.384-0.896-0.736-1.792-1.056-2.72-0.128-0.384-0.288-0.768-0.416-1.184-0.288-0.992-0.608-1.952-0.8-2.944-0.096-0.288-0.16-0.608-0.256-0.928 0-0.128-0.032-0.224-0.096-0.352-0.032-0.288-0.128-0.544-0.16-0.864-0.224-1.152-0.384-2.272-0.512-3.424 0-0.16 0-0.384-0.032-0.544-0.128-1.248-0.16-2.528-0.16-3.744 0-0.032 0-0.096 0-0.128 0-0.096 0-0.16 0-0.256 0-1.28 0.096-2.56 0.224-3.808 0-0.16 0.032-0.352 0.032-0.512 0.128-1.184 0.288-2.4 0.544-3.552 0.032-0.224 0.096-0.48 0.16-0.672 0.224-1.056 0.512-2.144 0.8-3.2 0.096-0.288 0.16-0.544 0.256-0.8 0.288-0.928 0.64-1.92 1.024-2.816 0.128-0.256 0.224-0.544 0.352-0.8 0.416-0.928 0.864-1.888 1.376-2.816 0.128-0.224 0.224-0.48 0.352-0.672 0.512-0.992 1.12-1.92 1.696-2.848 0.128-0.224 0.256-0.416 0.416-0.608 0.096-0.128 0.16-0.256 0.256-0.352l231.936-331.36-143.872-35.584c-26.080-4.992-44.672-27.36-44.672-54.176 0-27.232 19.2-49.888 45.92-54.4l232.704-46.624-79.072-30.944c-21.376-8.352-31.904-32.48-23.552-53.792 6.4-16.384 22.112-26.4 38.688-26.4 5.024 0 10.144 0.928 15.104 2.848l164.48 64.352c24.064 7.552 39.712 29.92 38.4 55.456-1.376 26.208-20.096 47.2-45.824 51.584l-203.776 40.832 84.192 20.832s0 0 0 0zM553.568 759.424l68.704-39.264h-68.704v39.264zM470.432 720.16h-68.704l68.704 39.264v-39.264zM470.432 637.056v-207.616l-145.312 207.616h145.312zM553.568 637.056h145.312l-145.312-207.616v207.616z" /> +<glyph unicode="" glyph-name="lab-research" d="M768 873.984h-512c-23.776 0-43.008-19.232-43.008-43.008v-170.656c0-23.776 19.232-43.008 43.008-43.008h42.336v-383.648c0-117.792 95.84-213.664 213.664-213.664s213.664 95.84 213.664 213.664v383.648h42.336c23.776 0 43.008 19.232 43.008 43.008v170.72c0 23.776-19.232 43.008-43.008 43.008zM299.008 788h425.984v-84.64h-425.984v84.64zM639.648 575.328h-127.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h127.648v-63.328h-170.336c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h170.336v-63.328h-127.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h120.192c-17.696-49.28-64.896-84.64-120.192-84.64-70.4 0-127.648 57.248-127.648 127.648v383.648h255.328v-41.984z" /> +<glyph unicode="" glyph-name="labs" d="M481.632 151.456c-23.424-27.808-58.496-45.472-97.632-45.472-70.4 0-127.648 57.312-127.648 127.648v383.648h255.328v-42.016h-127.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h127.648v-51.552c24.704 19.040 54.048 32.352 86.016 38.016v56.352s0 0.096 0 0.128 0 0.096 0 0.128v84.864h42.336c23.712 0 43.008 19.232 43.008 43.008v170.656c0 23.712-19.232 43.008-43.008 43.008h-512c-23.712 0-43.008-19.232-43.008-43.008v-170.656c0-23.776 19.232-43.008 43.008-43.008h42.336v-383.648c0-117.792 95.84-213.664 213.664-213.664 67.168 0 127.136 31.104 166.304 79.712-26.528 12.128-49.952 29.856-68.704 51.808zM213.344 703.36h-42.336v84.64h425.984v-84.64h-383.648zM497.664 425.984h-156.32c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h101.76c10.496 33.28 29.536 62.816 54.56 86.016zM384 276.64c-23.712 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h71.424c-13.184 25.888-20.864 55.072-21.408 86.016h-49.952zM876.16 97.44l-107.68 107.68c12.384 22.304 19.424 47.968 19.424 75.264 0 85.856-69.6 155.488-155.488 155.488-11.936 0-23.584-1.312-34.72-3.872-18.816-4.32-36.32-12-51.84-22.432-12.896-8.672-24.416-19.2-34.176-31.2-9.344-11.52-17.12-24.416-22.88-38.304-7.648-18.336-11.872-38.496-11.872-59.616 0-1.248 0-2.528 0.032-3.744 0.736-31.488 10.848-60.64 27.616-84.832-0.128-0.384-0.288-0.8-0.416-1.184h1.248c17.056-24.16 40.864-43.232 68.704-54.432 18.016-7.296 37.664-11.296 58.272-11.296 27.296 0 52.96 7.040 75.264 19.424l15.648-15.712 92-92c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.368 12.576c16.8 16.768 16.8 44.032 0 60.8zM701.408 272.224c-3.744-31.776-29.024-57.088-60.8-60.8-2.688-0.288-5.408-0.48-8.192-0.48-12.8 0-24.832 3.488-35.168 9.6-20.48 12.064-34.304 34.4-34.304 59.904 0 25.632 13.984 48.128 34.72 60.16 10.24 5.888 22.112 9.312 34.72 9.312 38.304 0 69.472-31.136 69.472-69.472 0-2.784-0.16-5.504-0.48-8.192z" /> +<glyph unicode="" glyph-name="laptop" d="M986.784 190.208l-55.328 128.288c-6.976 16.224-25.76 23.712-42.048 16.704-16.224-6.976-23.712-25.824-16.704-42.048l55.808-127.52-832.512-0.736 55.136 127.168c7.040 16.192-0.416 35.072-16.608 42.112s-35.072-0.416-42.112-16.64l-55.168-127.168c-8.512-19.68-6.624-42.144 5.152-60.064s31.616-28.64 53.024-28.64h833.024c21.408 0 41.248 10.688 53.024 28.576s13.76 40.352 5.28 60zM153.696 356.288h716.576c17.6 0 31.84 14.272 31.84 31.84v299.968c0 40.992-33.216 74.24-74.24 74.24h-631.808c-40.992 0-74.24-33.216-74.24-74.24v-299.968c0-17.6 14.272-31.84 31.872-31.84zM185.856 688.16c0 5.664 4.608 10.24 10.24 10.24h226.112c2.944-14.624 15.84-25.664 31.36-25.664h116.864c15.52 0 28.416 11.040 31.36 25.664h226.112c5.664 0 10.24-4.576 10.24-10.24v-267.84h-652.32v267.84z" /> +<glyph unicode="" glyph-name="leaderboard" d="M853.344 532.64h-180.992v255.712c0 23.776-19.232 43.008-43.008 43.008h-234.656c-23.776 0-43.008-19.232-43.008-43.008v-148.992h-180.992c-23.776 0-43.008-19.232-43.008-43.008v-448.032c0-23.776 19.232-43.008 43.008-43.008h224s0.352 0 0.544 0h233.6s0.352 0 0.544 0h224c23.776 0 43.008 19.232 43.008 43.008v341.344c0 23.776-19.232 43.008-43.008 43.008zM213.664 553.344h137.984v-362.016h-137.984v362.016zM437.664 596.352v148.992h148.64v-553.984h-148.64v404.992zM810.336 191.328h-137.984v255.328h137.984v-255.328z" /> +<glyph unicode="" glyph-name="leaf" d="M894.592 709.472c-1.76 5.888-12.192 36.832-47.776 66.432-44.192 36.768-106.624 55.456-185.472 55.456-69.632 0-140.512-13.6-204.928-39.392-76.416-30.56-138.656-75.68-184.992-134.272-41.248-52.096-68.48-113.568-80.896-182.656-12.768-71.040-9.76-150.528 8.832-236.416-18.144-35.84-28.96-78.496-28.96-132.96 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 102.56 46.080 140.544 129.696 209.44 75.104 61.856 168.48 138.848 258.176 292.224 12 20.48 5.088 46.848-15.392 58.848s-46.848 5.088-58.848-15.392c-81.952-140.16-168.832-211.744-238.624-269.28-20.96-17.28-41.184-33.952-59.872-51.36-11.424 111.136 11.040 203.136 67.328 274.208 82.336 103.968 220.576 141.024 322.528 141.024 79.712 0 118.528-23.168 136.608-41.056-1.152-0.992-2.272-1.952-3.424-2.944-26.24-22.624-55.968-48.288-78.112-98.688-23.2-52.864-34.048-124-34.048-223.904 0-55.52-16.608-184.576-170.336-184.576-68.864 0-93.088 27.776-94.112 28.96 0.608-0.736 0.896-1.152 0.896-1.152l-69.536-50.592c4.704-6.496 49.28-63.2 162.784-63.2 81.312 0 148.384 28.256 194.016 81.76 40.736 47.776 62.304 113.056 62.304 188.8 0 186.464 38.144 219.392 82.336 257.504 11.104 9.568 22.528 19.456 34.016 31.648 10.4 11.136 14.176 26.912 9.888 41.568z" /> +<glyph unicode="" glyph-name="lightblub" d="M512.672 928h-1.44c-193.696-0.384-351.232-158.304-351.232-352 0-73.6 23.744-146.88 66.912-206.4 30.4-42.048 61.088-103.424 61.088-145.6 0-17.664 14.336-32 32-32v-63.712c0-29.376 11.424-56.96 32.192-77.696l18.368-18.368c20.672-20.672 48.16-32.096 77.44-32.192v0c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v0c29.28 0.096 56.736 11.52 77.44 32.192l18.368 18.368c20.736 20.736 32.192 48.352 32.192 77.696v63.712c17.664 0 32 14.336 32 32 0 42.208 30.688 103.552 61.056 145.6 43.168 59.552 66.944 132.864 66.944 206.4 0 193.696-157.568 351.648-351.328 352zM640 128.288c0-12.288-4.768-23.776-13.44-32.448l-18.368-18.368c-8.672-8.672-20.192-13.44-32.448-13.44h-127.456c-12.256 0-23.776 4.768-32.448 13.44l-18.368 18.368c-8.672 8.672-13.44 20.192-13.44 32.448v63.712h256v-63.712zM416 480c0 17.664 14.336 32 32 32s32-14.336 32-32-14.336-32-32-32-32 14.336-32 32zM448 384c24.608 0 47.008 9.376 64 24.64 17.024-15.264 39.392-24.64 64-24.64 2.048 0 4 0.192 6.016 0.288-15.168-33.856-31.84-71.744-36.576-128.288h-66.88c-4.768 56.544-21.408 94.464-36.576 128.288 2.016-0.128 3.968-0.288 6.016-0.288zM576 448c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM745.216 407.104c-29.312-40.576-60.352-98.24-70.112-151.104h-65.376c4.416 42.88 17.28 72.192 30.88 102.592 15.424 34.4 31.36 70.016 31.36 121.376 0 52.96-43.072 96-96 96-24.608 0-46.976-9.376-64-24.64-16.992 15.264-39.392 24.64-64 24.64-52.96 0-96-43.040-96-96 0-51.392 15.936-86.976 31.36-121.376 13.632-30.432 26.496-59.712 30.912-102.592h-65.376c-9.76 52.896-40.768 110.528-70.112 151.136-35.328 48.704-54.752 108.672-54.752 168.864 0 158.496 128.928 287.68 287.328 288l0.672 32 0.64-32c158.432-0.32 287.36-129.504 287.36-288 0-60.192-19.456-120.16-54.784-168.896z" /> +<glyph unicode="" glyph-name="line-char" d="M874.656 155.552h-643.424v654.112c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-13.472h-38.912c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h38.912v-110.4h-38.912c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h38.912v-103.104h-38.912c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h38.912v-109.088h-38.912c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h38.912v-167.52c0-11.872 9.632-21.504 21.504-21.504h117.568v-28.896c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v28.896h109.088v-28.896c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v28.896h103.104v-28.896c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v28.896h110.4v-28.896c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v28.896h52.8c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM348.768 232.8c39.808 0 72.224 32.384 72.224 72.224 0 17.504-6.272 33.568-16.672 46.112l70.528 110.144c8.064-3.136 16.864-4.864 26.016-4.864 11.648 0 22.688 2.784 32.448 7.712l47.456-52.8c-3.84-8.832-6.016-18.56-6.016-28.8 0-39.808 32.384-72.224 72.224-72.224s72.224 32.384 72.224 72.224c0 14.304-4.192 27.648-11.424 38.88l69.28 95.52c7.328-2.496 15.136-3.872 23.296-3.872 39.808 0 72.224 32.384 72.224 72.224s-32.384 72.224-72.224 72.224-72.224-32.384-72.224-72.224c0-16.064 5.28-30.944 14.208-42.944l-67.552-93.152c-8.576 3.584-17.952 5.568-27.808 5.568-13.856 0-26.784-3.936-37.792-10.72l-44.928 50.016c5.632 10.272 8.832 22.080 8.832 34.592 0 39.808-32.384 72.224-72.224 72.224s-72.224-32.384-72.224-72.224c0-14.944 4.576-28.864 12.384-40.416l-72.768-113.632c-6.208 1.728-12.736 2.688-19.488 2.688-39.808 0-72.224-32.384-72.224-72.224s32.384-72.224 72.224-72.224zM800.384 614.464c16.096 0 29.216-13.12 29.216-29.216s-13.12-29.216-29.216-29.216c-6.336 0-12.192 2.048-16.992 5.504-0.096 0.096-0.192 0.16-0.32 0.256-0.064 0.032-0.128 0.064-0.192 0.128-7.104 5.344-11.712 13.792-11.712 23.328 0 16.128 13.12 29.216 29.216 29.216zM623.968 400.416c0.256 0.32 0.512 0.608 0.736 0.928 5.376 6.336 13.376 10.368 22.304 10.368 16.096 0 29.216-13.12 29.216-29.216s-13.12-29.216-29.216-29.216-29.216 13.12-29.216 29.216c0 6.752 2.336 12.96 6.176 17.92zM500.896 557.824c16.128 0 29.216-13.12 29.216-29.216s-13.12-29.216-29.216-29.216c-6.56 0-12.608 2.208-17.504 5.856-0.928 0.96-1.952 1.824-3.072 2.624-5.344 5.28-8.64 12.64-8.64 20.736 0 16.128 13.12 29.216 29.216 29.216zM348.768 334.24c5.952 0 11.488-1.792 16.096-4.864 0 0 0 0 0 0s0 0 0 0c7.904-5.248 13.12-14.208 13.12-24.352 0-16.096-13.12-29.216-29.216-29.216s-29.216 13.12-29.216 29.216 13.12 29.216 29.216 29.216z" /> +<glyph unicode="" glyph-name="link" d="M956.32 892.32c-23.008 23.008-53.472 35.68-85.824 35.68s-62.912-12.704-85.952-35.744l-77.856-77.856c-116.64 50.944-251.2 30.144-347.712-53.696-4.992 1.312-10.112 2.208-15.424 2.24h-0.256c-16.544 0-32.064-6.432-43.744-18.144l-84.32-84.32c-11.744-11.744-18.208-27.36-18.144-44 0-5.088 0.864-10.016 2.048-14.816-83.104-95.744-103.552-230.080-52.512-347.296l-78.88-78.88c-23.040-23.040-35.744-53.568-35.744-85.952s12.704-62.816 35.68-85.792 53.472-35.712 85.824-35.712 62.912 12.704 85.952 35.744l77.856 77.856c42.336-18.496 87.040-27.616 131.488-27.616 77.824 0 154.56 28.096 216 81.408 5.088-1.376 10.304-2.304 15.712-2.336h0.256c16.544 0 32.064 6.432 43.744 18.144l84.32 84.32c11.744 11.744 18.208 27.36 18.144 44 0 5.312-0.928 10.432-2.24 15.456 83.84 96.512 104.64 231.072 53.696 347.712l77.856 77.888c23.040 23.040 35.744 53.568 35.744 85.952s-12.672 62.816-35.68 85.824zM657.152 764.864l-45.792-45.792c-56.576 9.76-114.848-4.064-160.896-37.76l-39.36 39.392c70.144 55.232 162.144 71.584 246.048 44.192zM720.672 490.752c-3.424-24-12.736-46.944-27.264-66.72-4.16 0.864-8.384 1.376-12.736 1.376h-0.256c-16.544-0.064-32-6.56-43.424-18.144l-84.16-84.16c-11.744-11.584-18.24-27.040-18.336-43.584 0-4.416 0.48-8.736 1.376-12.96-19.744-14.528-42.72-23.904-66.72-27.296 10.784 18.4 16.672 39.296 16.672 61.12 0 32.384-12.672 62.88-35.648 85.856s-53.472 35.616-85.856 35.616c-21.824 0-42.72-5.856-61.12-16.64 3.424 24 12.736 46.944 27.264 66.72 4.16-0.864 8.384-1.376 12.736-1.376h0.256c16.544 0.064 32 6.56 43.424 18.144l84.16 84.16c11.744 11.584 18.24 27.040 18.304 43.584 0 4.416-0.48 8.768-1.376 12.96 19.744 14.528 42.752 23.872 66.752 27.296-10.784-18.4-16.672-39.296-16.672-61.152 0-32.384 12.64-62.912 35.616-85.856s53.472-35.648 85.856-35.648c21.856 0 42.72 5.888 61.12 16.64zM258.4 571.36c0.768 0.64 1.568 1.152 2.24 1.888 1.504 1.536 2.816 3.2 3.968 4.928 10.336 11.84 10.496 29.44 0.288 41.472l78.336 78.336 81.216-81.216-81.28-81.28c-0.64 0.544-1.312 0.928-1.984 1.408-0.736 0.544-1.472 1.12-2.208 1.6-0.992 0.608-2.016 1.088-3.040 1.6-0.832 0.384-1.632 0.8-2.496 1.152-1.056 0.384-2.112 0.672-3.136 0.928-0.896 0.256-1.792 0.512-2.688 0.672-1.056 0.16-2.112 0.224-3.168 0.288-0.96 0.064-1.888 0.192-2.848 0.16-1.056-0.032-2.080-0.16-3.104-0.288-0.96-0.128-1.92-0.16-2.88-0.352-1.056-0.224-2.048-0.576-3.072-0.896-0.896-0.288-1.824-0.48-2.72-0.864-1.088-0.448-2.144-1.088-3.2-1.696-0.736-0.416-1.504-0.736-2.208-1.184-1.728-1.152-3.36-2.496-4.896-4-48.64-48.64-70.176-118.208-58.592-185.312l-44.896-44.896c-30.496 93.44-7.424 196.128 62.336 267.584zM194.208 48.992c-21.856-21.888-59.328-21.952-81.216-0.032-10.944 10.912-16.96 25.312-16.96 40.544s6.016 29.728 16.992 40.672v0s210.816 210.816 210.816 210.816c10.912 10.88 25.28 16.864 40.608 16.864s29.696-5.984 40.576-16.864 16.864-25.312 16.864-40.576-5.984-29.696-16.864-40.608l-210.816-210.816zM366.848 131.168l45.792 45.792c11.904-2.048 23.84-3.168 35.776-3.168 44.768 0 88.64 14.432 124.992 41.088l39.488-39.488c-70.144-55.232-162.144-71.616-246.080-44.192zM763.52 322.944s-0.064-0.064-0.064-0.096c-0.032-0.032-0.064-0.064-0.096-0.096-1.504-1.504-2.784-3.136-3.904-4.832-0.16-0.256-0.256-0.544-0.416-0.768-0.928-1.504-1.792-3.072-2.432-4.672-0.256-0.64-0.384-1.312-0.608-1.952-0.416-1.28-0.864-2.528-1.12-3.808-0.16-0.8-0.192-1.6-0.288-2.4-0.16-1.184-0.32-2.368-0.352-3.552 0-0.864 0.096-1.728 0.16-2.592 0.096-1.12 0.128-2.24 0.352-3.36 0.16-0.864 0.448-1.728 0.64-2.592 0.288-1.088 0.544-2.144 0.96-3.232 0.32-0.832 0.736-1.664 1.152-2.496 0.48-1.024 0.96-2.048 1.568-3.040 0.48-0.768 1.056-1.504 1.6-2.24 0.48-0.64 0.864-1.344 1.408-1.952l-81.28-81.28-81.248 81.248 81.28 81.28c0.64-0.544 1.312-0.928 1.952-1.408 0.736-0.544 1.472-1.12 2.24-1.6 0.992-0.608 2.016-1.12 3.040-1.6 0.832-0.384 1.6-0.832 2.432-1.12 1.088-0.384 2.176-0.672 3.264-0.96 0.832-0.224 1.664-0.48 2.528-0.64 1.152-0.192 2.336-0.256 3.456-0.352 0.672-0.064 1.344-0.192 2.048-0.192 0.16 0 0.32 0.064 0.48 0.064 1.216 0 2.432 0.192 3.616 0.352 0.768 0.096 1.568 0.128 2.336 0.288 1.28 0.256 2.496 0.672 3.744 1.12 0.672 0.224 1.376 0.384 2.048 0.64 1.376 0.544 2.624 1.312 3.904 2.048 0.48 0.288 1.024 0.48 1.504 0.832 1.76 1.152 3.392 2.496 4.928 4.032 48.64 48.64 70.176 118.208 58.592 185.312l45.792 45.792c30.624-93.888 6.72-197.984-65.376-270.208zM911.008 765.792l-210.816-210.816c-21.76-21.76-59.424-21.792-81.216 0-10.88 10.912-16.864 25.28-16.864 40.576s5.984 29.696 16.864 40.608l210.816 210.816c10.944 10.976 25.408 16.992 40.672 16.992s29.632-6.016 40.576-16.96c10.944-10.912 16.96-25.312 16.96-40.544s-6.048-29.728-16.992-40.672zM104.672 619.648h0.064l22.656 0.064c17.664 0.032 31.968 14.4 31.936 32.064s-14.368 31.936-32 31.936h-0.064l-22.656-0.064c-17.664-0.032-31.968-14.4-31.936-32.064s14.368-31.936 32-31.936zM308.256 800.672h0.064c17.664 0 31.968 14.304 32 31.936l0.064 22.656c0.032 17.664-14.272 32.032-31.936 32.064h-0.064c-17.664 0-31.968-14.272-32-31.936l-0.064-22.656c-0.032-17.664 14.272-32.032 31.936-32.064zM715.744 95.328h-0.064c-17.664 0-31.968-14.304-32-31.936l-0.064-22.656c-0.032-17.664 14.272-32.032 31.936-32.064h0.064c17.664 0 31.968 14.304 32 31.936l0.064 22.656c0.032 17.664-14.272 32.032-31.936 32.064zM919.36 276.352h-0.064l-22.656-0.064c-17.664-0.032-31.968-14.4-31.936-32.064s14.336-31.936 32-31.936h0.064l22.656 0.064c17.664 0.032 31.968 14.4 31.936 32.064s-14.336 31.936-32 31.936z" /> +<glyph unicode="" glyph-name="linkedin" d="M141.184 569.6h159.072v-512.096h-159.072v512.096zM704.96 582.4c-77.408 0-129.28-42.464-150.496-82.688h-2.24v69.856h-152.544v-512.096h158.88v253.568c0 66.784 12.672 131.328 95.36 131.328 81.472 0 82.688-76.192 82.688-135.616v-249.28h158.88v281.28c0 137.664-29.6 243.648-190.56 243.648zM220.608 824.512c-50.88 0-92.096-41.216-92.096-92.096s41.28-92.96 92.096-92.96 92.128 42.112 92.128 92.96c0 50.88-41.216 92.096-92.096 92.096z" /> +<glyph unicode="" glyph-name="link-simple" d="M930.208 866.176c-39.84 39.872-92.832 61.792-149.216 61.792s-109.344-21.952-149.184-61.792l-178.048-177.76c-12.512-12.48-12.512-32.768 0-45.248s32.768-12.512 45.248 0l178.048 177.728c27.744 27.776 64.672 43.040 103.936 43.040s76.192-15.296 103.936-43.040 43.072-64.704 43.072-103.936-15.296-76.192-43.072-103.936l-201.728-201.728c-57.312-57.312-150.592-57.312-207.904 0-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248c41.152-41.12 95.168-61.696 149.184-61.696s108.064 20.544 149.216 61.696l201.728 201.728c39.84 39.84 61.792 92.832 61.792 149.184s-21.952 109.344-61.792 149.184zM524.64 253.568l-64.224-63.456-113.472-115.040c-27.744-27.744-64.672-43.072-103.936-43.072s-76.192 15.296-103.936 43.072-43.040 64.672-43.040 103.936 15.296 76.192 43.040 103.936l201.728 201.728c57.344 57.312 150.592 57.28 207.904 0 12.48-12.48 32.768-12.48 45.248 0s12.48 32.768 0 45.248c-82.272 82.304-216.16 82.304-298.4 0l-201.728-201.728c-39.872-39.84-61.792-92.832-61.792-149.216s21.952-109.344 61.792-149.216c39.84-39.84 92.864-61.792 149.184-61.792s109.344 21.952 149.344 61.952l113.344 114.88 64.224 63.488c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0z" /> +<glyph unicode="" glyph-name="list" d="M278.336 773.344h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32zM78.816 837.632h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 479.936h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32zM78.816 480.256h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32zM960 122.336h-681.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h681.664c17.664 0 32 14.336 32 32s-14.336 32-32 32zM78.816 122.688h-14.816c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.816c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="live-tv" d="M896 831.328h-768c-23.776 0-43.008-19.232-43.008-43.008v-576c0-23.776 19.232-43.008 43.008-43.008h768c23.776 0 43.008 19.232 43.008 43.008v576.032c0 23.776-19.232 43.008-43.008 43.008zM852.992 255.328h-681.984v490.016h681.984v-489.984zM405.088 326.016c6.656-3.872 14.112-5.792 21.6-5.792 7.392 0 14.72 1.888 21.344 5.664l213.344 121.888c12.704 7.264 20.864 20.512 21.632 35.168s-6.016 28.64-17.952 37.152l-213.344 152.352c-13.088 9.344-30.336 10.624-44.672 3.232s-23.328-22.144-23.328-38.24v-274.304c0-15.328 8.16-29.472 21.408-37.216zM469.664 553.888l90.72-64.8-90.72-51.84v116.64zM768 148.64h-512c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h512c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="loader" d="M237.536 767.712c0.448 2.88 0.576 5.856 0.224 8.864-2.016 17.536-17.792 30.272-35.424 28.16-15.488-1.76-28.32-12-33.44-26.72s-1.472-30.72 9.536-41.728l138.912-138.912c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-125.088 125.088zM300.736 448c0 17.664-14.336 32-32 32h-176.864c-1.696 2.368-3.744 4.544-6.144 6.432-13.856 11.008-33.984 8.672-44.96-5.152-9.696-12.224-11.488-28.48-4.736-42.56s20.672-22.752 36.256-22.752h196.448c17.664 0 32 14.336 32 32zM317.376 298.592l-125.088-125.088c-2.848 0.48-5.824 0.544-8.864 0.224-17.568-2.016-30.176-17.856-28.16-35.424 1.76-15.488 12-28.288 26.72-33.44 4.416-1.536 8.928-2.304 13.376-2.304 10.464 0 20.608 4.096 28.352 11.808l138.912 138.912c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0zM512 236.736c-17.664 0-32-14.336-32-32v-176.864c-2.368-1.696-4.544-3.744-6.432-6.144-11.008-13.856-8.672-33.952 5.152-44.96 7.328-5.792 16.096-8.768 24.96-8.768 5.952 0 11.936 1.312 17.568 4.064 14.048 6.784 22.752 20.672 22.752 36.256v196.48c0 17.664-14.336 32-32 32zM706.624 298.592c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l125.088-125.088c-0.48-2.88-0.544-5.856-0.224-8.864 1.856-16.352 15.712-28.384 31.744-28.384 1.216 0 2.432 0.064 3.648 0.192 15.488 1.76 28.288 12 33.44 26.72s1.504 30.688-9.536 41.728l-138.912 138.912zM988 457.248c-6.784 14.016-20.672 22.752-36.256 22.752h-196.448c-17.664 0-32-14.336-32-32s14.336-32 32-32h176.864c1.696-2.368 3.744-4.544 6.144-6.432 5.888-4.672 12.928-6.944 19.904-6.944 9.408 0 18.752 4.16 25.088 12.096 9.696 12.192 11.52 28.48 4.736 42.528zM684 588.032c8.192 0 16.384 3.136 22.624 9.376l125.088 125.088c2.88-0.48 5.856-0.576 8.864-0.224 17.568 2.016 30.176 17.856 28.192 35.424-1.76 15.488-12 28.32-26.72 33.44s-30.688 1.472-41.728-9.536l-138.912-138.912c-12.48-12.48-12.48-32.768 0-45.248 6.24-6.272 14.432-9.376 22.624-9.376zM512 659.264c17.664 0 32 14.336 32 32v176.864c2.368 1.696 4.544 3.744 6.432 6.144 10.976 13.856 8.672 33.984-5.12 44.96-12.224 9.696-28.512 11.52-42.528 4.736s-22.752-20.672-22.752-36.256v-196.448c0-17.664 14.336-32 32-32zM512 498.816c-28.224 0-51.168-22.944-51.168-51.168s22.944-51.168 51.168-51.168 51.168 22.976 51.168 51.168-22.976 51.168-51.168 51.168zM512 434.784c-7.072 0-12.832 5.76-12.832 12.832s5.76 12.832 12.832 12.832 12.832-5.76 12.832-12.832-5.76-12.832-12.832-12.832z" /> +<glyph unicode="" glyph-name="lock" d="M512 448c-70.592 0-128-57.408-128-128 0-28.832 9.76-56.64 27.328-79.008l-3.52-9.76c-4.352-11.84-5.728-24.192-4.032-36.544 1.632-12 6.112-23.616 13.088-33.76 7.168-10.336 16.8-18.784 27.552-24.256 10.752-5.664 23.040-8.672 35.552-8.672h64c12.512 0 24.8 3.008 35.168 8.48 11.104 5.664 20.768 14.144 28.032 24.576 6.88 10.016 11.36 21.664 12.992 33.6 1.696 12.384 0.352 24.704-3.904 36.288l-3.616 10.048c17.568 22.336 27.328 50.176 27.328 79.008 0 70.592-57.408 128-128 128zM545.856 237.664l10.24-28.576c0.704-1.952 0.928-3.808 0.64-5.76-0.288-2.112-1.12-4.256-2.24-5.92-1.184-1.664-2.688-3.008-4.8-4.096-1.568-0.832-3.616-1.312-5.728-1.312h-64c-2.112 0-4.16 0.448-6.112 1.504-1.76 0.896-3.232 2.208-4.32 3.744-1.248 1.792-2.080 3.968-2.368 6.112-0.256 1.952-0.064 3.808 0.768 6.016l10.176 28.352c4.384 12.288 0.896 25.952-8.8 34.656-13.568 12.096-21.312 29.472-21.312 47.648 0 35.296 28.704 64 64 64s64-28.704 64-64c0-18.176-7.776-35.552-21.312-47.648-9.696-8.672-13.216-22.4-8.8-34.656zM768 585.216v150.784c0 104.736-81.952 189.024-187.456 191.936l-132.576 0.064c-105.888 0-192-86.112-192-192v-150.784c-63.84-33.152-128-112.384-128-297.216 0-218.304 122.016-320 384-320s384 101.696 384 320c0 184.832-64.16 264.064-128 297.216zM320 736c0 70.56 57.408 128 127.968 128l131.68-0.064c69.696-1.92 124.352-58.112 124.352-127.936v-130.368c-11.904 1.76-22.784 2.368-32 2.368h-32v96c0 12.32-2.496 24.928-7.36 36.96-4.832 11.424-11.712 21.728-20.992 31.296-8.928 8.672-19.264 15.552-31.168 20.576-11.744 4.768-24.032 7.136-36.48 7.136h-64c-12.448 0-24.736-2.4-36.992-7.36-11.456-4.864-21.792-11.744-31.2-20.928-8.704-8.928-15.616-19.232-20.672-31.232-4.672-11.584-7.136-24.192-7.136-36.48v-96h-32c-9.184 0-20.096-0.64-32-2.368v130.368zM448 608v96c0 4.16 0.864 8.448 2.304 12 1.728 4.096 4.16 7.744 6.752 10.432 3.168 3.072 6.848 5.536 10.432 7.072 4.064 1.632 8.352 2.496 12.512 2.496h64c4.128 0 8.48-0.864 12-2.304 4.096-1.728 7.808-4.192 10.432-6.72 3.104-3.168 5.568-6.88 7.104-10.528 1.632-4 2.496-8.352 2.496-12.48v-96h-128zM512 32c-227.296 0-320 74.176-320 256 0 95.616 20.768 256 160 256h320c139.232 0 160-160.384 160-256 0-181.824-92.704-256-320-256z" /> +<glyph unicode="" glyph-name="lock-2" d="M810.656 575.36h-84.992v88.8c0 117.792-95.84 213.664-213.664 213.664s-213.664-95.872-213.664-213.664v-88.8h-84.992c-23.776 0-43.008-19.232-43.008-43.008v-469.344c0-23.712 19.232-43.008 43.008-43.008h597.344c23.776 0 43.008 19.232 43.008 43.008v469.344c0 23.712-19.232 43.008-43.008 43.008zM767.648 105.984h-511.328v383.36h511.328v-383.36zM384.352 664.096c0 70.4 57.248 127.648 127.648 127.648s127.648-57.248 127.648-127.648v-88.8h-255.328v88.8zM559.36 393.6c-14.304 7.072-30.368 11.104-47.36 11.104s-33.12-3.968-47.36-11.104c-35.296-17.504-59.616-53.92-59.616-95.904 0-59.008 48-107.008 107.008-107.008s107.008 48 107.008 107.008c0 41.984-24.32 78.432-59.616 95.904zM512 276.64c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992z" /> +<glyph unicode="" glyph-name="login" d="M810.272 831.328h-298.272c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h291.040c3.168-5.376 7.296-16.992 7.296-33.44v-529.792c0-16.48-4.128-28.064-7.296-33.44h-291.040c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h298.272c49.056 0 86.048 51.36 86.048 119.424v529.888c0 68.096-36.992 119.424-86.048 119.424zM627.744 477.408l-170.656 170.656c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l97.28-97.28h-322.912c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h322.848l-97.28-97.28c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l170.656 170.656c16.8 16.8 16.8 44.032 0 60.8z" /> +<glyph unicode="" glyph-name="logout" d="M512 148.64h-291.040c-3.168 5.376-7.296 16.992-7.296 33.44v529.792c0 16.48 4.128 28.064 7.296 33.44h291.040c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-298.272c-49.056 0-86.048-51.36-86.048-119.424v-529.792c0-68.096 36.992-119.424 86.048-119.424h298.272c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM883.744 477.408l-170.656 170.656c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l97.28-97.28h-322.848c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h322.848l-97.28-97.28c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l170.656 170.656c16.8 16.8 16.8 44.032 0 60.8z" /> +<glyph unicode="" glyph-name="lottie-animation" d="M835.36 831.264h-646.752c-33.056 0-59.872-26.816-59.872-59.872v-646.752c0-33.056 26.816-59.872 59.872-59.872h646.752c33.088 0 59.872 26.816 59.872 59.872v646.752c0 33.088-26.816 59.872-59.872 59.872zM852.32 124.64c0-9.344-7.616-16.96-16.96-16.96h-497.76l-165.92 165.92v497.76c0 9.344 7.616 16.96 16.96 16.96h646.752c9.344 0 16.96-7.616 16.96-16.96v-646.752zM825.92 746.56c0-8.256-6.688-14.976-14.976-14.976s-14.976 6.72-14.976 14.976c0 8.256 6.688 14.976 14.976 14.976s14.976-6.72 14.976-14.976zM750.176 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.72-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM689.408 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.688-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM605.568 637.44h-187.168c-52.96 0-95.872-42.912-95.872-95.872v-187.168c0-52.96 42.912-95.872 95.872-95.872h187.168c52.96 0 95.872 42.912 95.872 95.872v187.168c0 52.96-42.912 95.872-95.872 95.872zM627.84 526.688c-0.928-2.272-2.336-4.352-4.064-6.080s-3.808-3.104-6.080-4.064c-2.272-0.928-4.704-1.408-7.168-1.408-39.584 0-54.976-24.128-75.584-63.776l-12.704-23.968c-19.424-37.408-43.616-83.936-108.832-83.936-4.96 0-9.728 1.984-13.248 5.504s-5.472 8.288-5.504 13.248c0 2.464 0.48 4.896 1.44 7.168s2.336 4.352 4.064 6.080c1.728 1.728 3.808 3.136 6.080 4.064s4.704 1.44 7.168 1.44c39.616 0 55.008 24.128 75.584 63.776l12.704 23.968c19.424 37.408 43.616 83.936 108.8 83.936 4.96 0 9.728-1.984 13.248-5.472s5.504-8.288 5.504-13.248c0-2.464-0.48-4.896-1.44-7.168z" /> +<glyph unicode="" glyph-name="male" d="M856.224 830.208c-0.48 0-0.928 0.032-1.408 0.096-0.512 0-0.992 0.096-1.504 0.096-0.032 0-0.128 0-0.16 0-0.096 0-0.16 0-0.224 0l-255.584 0.512c-22.912 0-41.504-18.56-41.568-41.472-0.032-22.944 18.528-41.568 41.472-41.632l155.488-0.288-223.232-223.232c-41.312 28.8-91.424 45.728-145.504 45.728-140.544 0-254.88-114.336-254.88-254.88s114.336-254.88 254.88-254.88 254.88 114.336 254.88 254.88c0 56.576-18.528 108.896-49.824 151.2l222.752 222.752v-156.704c0-22.944 18.592-41.568 41.568-41.568s41.568 18.592 41.568 41.568v256.512c0 21.984-17.056 39.904-38.624 41.376zM384 143.328c-94.72 0-171.776 77.056-171.776 171.776s77.056 171.776 171.776 171.776 171.776-77.056 171.776-171.776-77.056-171.776-171.776-171.776z" /> +<glyph unicode="" glyph-name="medication" d="M810.656 767.328h-597.344c-23.776 0-43.008-19.232-43.008-43.008v-661.344c0-23.776 19.232-43.008 43.008-43.008h597.344c23.776 0 43.008 19.232 43.008 43.008v661.376c0 23.776-19.232 43.008-43.008 43.008zM767.648 105.984h-511.328v575.36h511.328v-575.328zM213.344 788h597.344c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-597.344c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM373.344 342.304h87.328v-87.328c0-16.544 13.44-29.984 29.984-29.984h42.656c16.544 0 29.984 13.44 29.984 29.984v87.328h87.328c16.544 0 29.984 13.44 29.984 29.984v42.656c0 16.544-13.44 29.984-29.984 29.984h-87.328v87.328c0 16.544-13.44 29.984-29.984 29.984h-42.656c-16.544 0-29.984-13.44-29.984-29.984v-87.328h-87.328c-16.544 0-29.984-13.44-29.984-29.984v-42.656c0-16.544 13.44-29.984 29.984-29.984z" /> +<glyph unicode="" glyph-name="medium" d="M566.752 441.024c0-133.76-107.712-242.176-240.576-242.176s-240.576 108.416-240.576 242.176c0 133.76 107.712 242.176 240.576 242.176s240.576-108.416 240.576-242.176zM710.432 669.056c-66.368 0-120.224-102.112-120.224-228.032s53.856-228.064 120.352-228.064 120.352 102.112 120.352 228.064h-0.288c0 125.952-53.856 228.064-120.224 228.064zM938.624 440.992c0-112.832-18.912-204.32-42.24-204.32s-42.24 91.488-42.24 204.32c0 112.832 18.912 204.32 42.24 204.32s42.24-91.488 42.24-204.32z" /> +<glyph unicode="" glyph-name="megaphone" d="M960 592v256c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.064c-99.712-74.208-239.456-111.936-416-111.936h-72.896c-11.104 19.040-31.52 32-55.104 32h-128c-35.296 0-64-28.704-64-64h-32c-35.296 0-64-28.704-64-64v-32c-17.664 0-32-14.336-32-32v-96c0-17.664 14.336-32 32-32v-32c0-35.296 28.704-64 64-64h32c0-35.296 28.704-64 64-64h3.776l24.608-196c4.096-34.24 33.184-60 67.616-60h64c33.664 0 62.816 22.72 70.912 55.264l19.040 76.352c40.384 11.36 70.080 48.384 70.080 92.352v62.24c146.592-8.16 264.672-45.152 352-110.144v-16.096c0-17.664 14.336-32 32-32s32 14.336 32 32v192c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32zM768 696.64v-369.248c-66.496 21.504-141.28 34.496-224 38.88v291.488c82.72 4.352 157.504 17.376 224 38.88zM480 368h-64v288h64v-288zM160 400h-32v224h32c35.296 0 64 28.704 63.968 64h128.032v-352h-128c0 35.296-28.704 64-64 64zM480 240c0-17.664-14.336-32-32-32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h23.040l-14.272-57.248c-0.96-3.904-4.672-6.752-8.8-6.752h-64c-2.016 0-3.84 1.6-4.096 3.808l-23.648 188.192h59.744c23.584 0 44 12.96 55.104 32h72.896v-64zM832 302.976v418.048c22.496 10.048 43.808 21.376 64 33.728v-485.536c-20.192 12.384-41.504 23.648-64 33.728zM288 496h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM288 592h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="menu" d="M896 233.984h-768c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h768c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM128 660h768c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-768c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM896 491.008h-768c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h768c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="menu-open" d="M768 233.984h-640c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h640c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008zM128 660h640c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-640c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM128 404.992h475.648c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-475.648c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM786.144 447.008l140.256 140.256c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-170.656-170.656c-16.8-16.8-16.8-44.032 0-60.8l170.656-170.656c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-140.256 140.256z" /> +<glyph unicode="" glyph-name="messanger" d="M693.472 548.16l-107.712-81.728c-7.296-5.536-17.376-5.568-24.64-0.064l-79.744 59.84c-23.936 17.92-58.080 11.648-74.016-13.664l-100.256-159.072c-9.632-15.264 9.152-32.448 23.52-21.568l107.712 81.76c7.296 5.536 17.376 5.568 24.672 0.064l79.744-59.808c23.936-17.952 58.080-11.616 74.048 13.664l100.288 159.072c9.632 15.264-9.152 32.48-23.52 21.568zM814.432 749.088c-79.232 76.256-186.624 118.24-302.432 118.24s-223.168-42.016-302.4-118.24c-80.576-77.536-124.928-183.68-124.928-298.848 0-60.832 12.192-118.912 36.192-172.608 19.84-44.384 47.040-84.16 80.96-118.56l1.12-36.544c0.928-30.272 13.568-58.336 35.552-79.040 21.152-19.904 48.736-30.848 77.696-30.848 15.84 0 31.232 3.264 45.792 9.696l49.344 21.76c32.672-7.296 66.432-10.976 100.672-10.976 115.776 0 223.2 42.016 302.4 118.24 80.544 77.536 124.928 183.648 124.928 298.848s-44.384 221.344-124.928 298.848zM512 119.168c-34.528 0-67.648 4.544-98.816 13.12-2.4 0.64-4.8 0.96-7.232 0.96-3.744 0-7.52-0.768-11.008-2.336l-67.744-29.888c-3.648-1.6-7.392-2.336-11.040-2.336-14.112 0-26.816 11.136-27.296 26.496l-1.856 60.704c-0.224 7.488-3.584 14.496-9.184 19.456-66.4 59.392-107.2 145.376-107.2 244.896 0 190.24 149.056 331.104 341.312 331.104s341.312-140.864 341.312-331.104-149.024-331.072-341.312-331.072z" /> +<glyph unicode="" glyph-name="microphone" d="M834.272 479.904h-32.448v0.256c0 23.712-13.056 44.224-32.224 55.328v202.464c0 71.616-65.28 161.184-186.208 186.112-2.208 0.448-4.288 0.384-6.688 0.64l-134.016-0.896c-2.272 0-4.512-0.256-6.72-0.768-119.2-26.464-181.536-113.184-181.536-185.12v-202.464c-19.168-11.136-32.224-31.648-32.224-55.328v-0.256h-32.448c-35.424 0-64.224-28.8-64.224-64.224v-32.256c0-186.592 121.888-322.048 289.792-322.048h0.224v-64.672c0-17.664 14.336-32 32-32s32 14.336 32 32v64.672h64.896v-64.672c0-17.664 14.336-32 32-32s32 14.336 32 32v65.472c166.368 8.192 290.048 143.328 290.048 321.248v32.256c0 35.424-28.832 64.224-64.224 64.224zM737.568 480.352l0.224-0.224-0.224-64.704-451.392 0.256 0.224 64.672h451.168zM318.4 351.456l387.168-0.224c0-71.2-57.952-129.12-129.12-129.12h-128.928c-71.2 0-129.12 57.952-129.12 129.12v0.224zM446.624 859.872l127.040 0.832c90.976-20.032 131.904-83.552 131.904-122.784v-0.256h-0.224c-17.664 0-32-14.336-32-32s14.336-32 32-32h0.224v-32.672h-0.224c-17.664 0-32-14.336-32-32s14.336-32 32-32h0.224v-32.672h-387.168v32.672h0.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-0.224v32.672h0.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-0.224v0.256c0 38.336 39.808 100.992 128.224 121.92zM834.496 383.456c0-147.104-104-258.048-241.952-258.048h-177.248c-132.96 0-225.792 106.112-225.792 258.016l0.224 32.448h32.448v-0.224c0-23.712 13.056-44.256 32.224-55.36v-9.088c0-106.496 86.656-193.12 193.12-193.12h128.928c106.496 0 193.12 86.624 193.12 193.12v9.088c19.168 11.136 32.224 31.648 32.224 55.36v0.096l32.672-0.096v-32.256zM479.776 254.784h64.448c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64.448c-17.664 0-32-14.336-32-32s14.336-32 32-32zM415.328 577.056h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576.448 577.056h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM415.328 673.696h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576.448 673.696h32.224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.224c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="minus" d="M720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="mobile" d="M701.024 928h-378.016c-48.16 0-87.392-39.2-87.392-87.392v-785.248c0-48.192 39.2-87.36 87.392-87.36h378.016c48.192 0 87.36 39.2 87.36 87.36v785.248c0 48.192-39.2 87.392-87.36 87.392zM724.384 55.36c0-12.896-10.496-23.36-23.36-23.36h-378.016c-12.896 0-23.36 10.496-23.36 23.36v785.248c0 12.896 10.496 23.392 23.36 23.392h97.472c5.184-10.752 16.064-18.208 28.768-18.208h118.304c12.704 0 23.584 7.456 28.736 18.208h104.736c12.896 0 23.36-10.496 23.36-23.392v-785.248zM519.264 106.176h-14.528c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.528c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="mockup" d="M896.16 909.792h-572.864c-52.672 0-95.744-42.848-96.032-95.52l-1.184-213.44-6.144-1.248c-35.008-6.912-66.976-23.968-92.352-49.376l-73.696-73.664c-22.816-22.88-28.384-57.664-13.888-86.464l36-72.064c12.256-24.384 36.672-39.008 62.976-39.008 5.696 0 11.456 0.672 17.216 2.112l57.568 14.432v-213.664c0-52.736 42.912-95.648 95.648-95.648h318.336c41.504 0 76.832 26.624 90.048 63.648h178.4c52.832 0 95.84 42.912 95.84 95.648v668.576c0 52.768-42.976 95.68-95.84 95.68zM627.712 50.24h-318.336c-17.472 0-31.648 14.208-31.648 31.648v286.528c0 17.664-14.336 32-32 32s-32-14.336-32-32v-6.848l-72.992-18.272c-3.104-0.736-6.112 0.64-7.52 3.456l-36 72.064c-2.112 4.224-1.312 9.28 1.984 12.544l73.632 73.632c16.416 16.384 36.992 27.424 59.584 31.872l31.392 6.304c0.352 0.064 0.736 0.16 1.088 0.224l43.84 8.768c8.256-72.32 58.976-124.192 61.568-126.752 6.176-6.176 14.368-9.376 22.624-9.376 5.92 0 11.84 1.632 17.152 4.96l58.336 36.992 58.272-36.992c5.28-3.36 11.232-4.992 17.12-4.992 8.288 0 16.48 3.2 22.624 9.376 2.592 2.592 53.344 54.496 61.6 126.848l90.24-18.016c13.824-2.752 26.304-9.472 36.192-19.488l73.472-73.44c9.312-9.28 11.584-23.456 5.76-35.168l-23.392-46.784c-5.024-10.048-16.576-15.36-27.456-12.576l-59.456 14.816v6.816c0 17.664-14.336 32-32 32s-32-14.336-32-32v-286.528c0-17.472-14.208-31.648-31.648-31.648zM468.544 527.744c-56.768 0-85.536 21.28-93.28 68.64 0.032 2.528 3.616 7.744 6.24 8.8 17.792 6.624 52.768 17.728 87.040 17.728s69.344-11.104 87.264-17.792c2.464-0.992 6.048-6.208 6.144-8.416-4.832-29.6-19.744-68.992-93.408-68.992zM928 145.568c0-17.472-14.304-31.648-31.84-31.648h-172.768v181.696l43.808-10.944c7.072-1.792 14.24-2.656 21.312-2.656 32.704 0 63.904 18.432 79.040 48.672l23.424 46.88c18.080 36.448 10.944 80.256-17.792 108.992l-8.544 8.544v159.84c0 17.664-14.336 32-32 32s-32-14.336-32-32v-95.904l-0.832 0.8c-18.784 19.008-42.656 31.808-69.024 37.088l-108.928 21.76c-7.072 20.736-23.168 38.912-43.84 46.496-26.688 9.888-67.296 21.728-109.472 21.728s-82.688-11.84-109.088-21.664c-20.864-7.552-37.024-25.792-44.128-46.56l-25.184-5.056 1.088 200.256c0.064 17.536 14.432 31.808 32.032 31.808h572.896c17.568 0 31.84-14.208 31.84-31.68v-668.544zM418.784 814.304h-31.84c-17.664 0-32-14.336-32-32v-31.84c0-17.664 14.336-32 32-32s31.936 14.272 32 31.84c17.6 0.096 31.84 14.368 31.84 32s-14.336 32-32 32zM832.64 814.304h-31.84c-17.664 0-32-14.336-32-32s14.24-31.904 31.84-32c0.096-17.6 14.368-31.84 32-31.84s32 14.336 32 32v31.84c0 17.664-14.336 32-32 32zM673.472 814.304h-127.36c-17.664 0-32-14.336-32-32s14.336-32 32-32h127.36c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832.64 257.12c-17.6 0-31.904-14.24-32-31.808-17.6-0.096-31.84-14.368-31.84-32s14.336-32 32-32h31.84c17.664 0 32 14.336 32 32v31.808c0 17.664-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="mode-standby" d="M512.608 553.952c-29.088 0-55.424-11.808-74.496-30.848-19.072-19.072-30.848-45.408-30.848-74.464 0-58.144 47.2-105.344 105.344-105.344s105.344 47.2 105.344 105.344c0 29.088-11.808 55.424-30.848 74.464-19.072 19.072-45.408 30.848-74.496 30.848zM511.008 832.352c-212.48 0-385.376-172.896-385.376-385.312s172.832-385.312 385.312-385.312 385.312 172.832 385.312 385.312-172.832 385.312-385.28 385.312zM511.008 147.68c-165.024 0-299.36 134.272-299.36 299.36s134.272 299.36 299.36 299.36 299.36-134.272 299.36-299.36-134.272-299.36-299.36-299.36z" /> +<glyph unicode="" glyph-name="money" d="M881.856 686.72c0 7.744 0.992 15.232 2.816 22.4h-745.472c1.856-7.168 2.816-14.688 2.816-22.4 0-49.056-39.744-88.768-88.8-88.768-7.072 0-13.92 0.8-20.512 2.4v-342.432c6.592 1.568 13.44 2.4 20.512 2.4 49.056 0 88.8-39.744 88.8-88.768 0-6.912-0.8-13.664-2.304-20.192h744.384c-1.504 6.496-2.304 13.248-2.304 20.192 0 49.024 39.744 88.768 88.768 88.768 7.616 0 15.072-0.96 22.144-2.784v343.2c-7.072-1.792-14.496-2.752-22.144-2.752-49.024 0-88.768 39.744-88.768 88.768zM924.192 321.856c-48.832-15.136-87.552-53.408-103.296-101.952h-617.856c-15.552 48-53.6 86.016-101.696 101.472v215.552c48.8 15.712 87.296 54.624 102.4 103.68h616.48c15.264-49.6 54.432-88.864 104-104.192v-214.528zM512.768 554.816c-68.864 0-124.672-55.84-124.672-124.672s55.84-124.672 124.672-124.672 124.672 55.808 124.672 124.672-55.808 124.672-124.672 124.672zM512.768 374.048c-30.944 0-56.128 25.184-56.128 56.096s25.184 56.128 56.128 56.128 56.096-25.184 56.096-56.128-25.184-56.096-56.096-56.096zM963.52 209.76c-16.16 0-29.28-13.12-29.28-29.28s13.12-29.28 29.28-29.28 29.28 13.12 29.28 29.28-13.12 29.28-29.28 29.28zM62.016 650.592c16.16 0 29.248 13.088 29.248 29.28s-13.088 29.28-29.248 29.28-29.248-13.088-29.248-29.28 13.088-29.28 29.248-29.28zM963.52 650.592c16.16 0 29.28 13.088 29.28 29.28s-13.12 29.28-29.28 29.28-29.28-13.088-29.28-29.28 13.12-29.28 29.28-29.28zM62.016 209.824c-16.16 0-29.248-13.12-29.248-29.28s13.088-29.28 29.248-29.28 29.248 13.12 29.248 29.28-13.088 29.28-29.248 29.28z" /> +<glyph unicode="" glyph-name="money-bank-check" d="M927.808 704l-63.808-0.352v128.352c0 24.064-13.504 44.832-33.216 55.744 0.704 2.656 1.216 5.376 1.216 8.224 0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32 0-2.88 0.48-5.6 1.216-8.224-19.712-10.912-33.216-31.68-33.216-55.744v-128h-576c-35.296 0-64-28.704-64-64v-512c0-23.584 12.96-44 32-55.104v-40.896c0-35.296 28.704-64 64-64h768c35.296 0 64 28.704 64 64v40.896c19.040 11.104 32 31.52 32 55.104v512c0 35.296-28.704 64-64.192 64zM768 365.248l-32 32v50.72s0 0 0 0.032 0 0.032 0 0.032v127.84s0 0.064 0 0.128 0 0.064 0 0.128v95.68s0 0.128 0 0.192 0 0.128 0 0.192v31.808s64 0 64 0v-306.752l-32-32zM672 480h-288v64h288v-64zM735.968 832h64.032v-64h-64.032v64zM96 640h576v-32h-320c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h320v-32c0-8.48 3.36-16.64 9.376-22.624l54.624-54.624v-25.312c-18.816-7.936-34.592-22.784-44.576-43.040-2.688-5.376-8.832-14.4-19.424-14.4h-32c0 35.296-28.704 64-64 64h-32c-32.672 0-61.344-18.624-76.576-49.6-2.72-5.376-8.864-14.4-19.424-14.4-17.664 0-32-14.336-32-32s14.336-32 32-32c32.288 0 60.928 18.528 76.704 49.856 3.168 6.432 9.12 14.144 19.296 14.144h32c0-35.296 28.704-64 64-64h32c32.288 0 60.928 18.528 76.704 49.856 3.168 6.432 9.12 14.144 19.296 14.144h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64v18.752l54.624 54.624c6.016 6.016 9.376 14.144 9.376 22.624v255.648l64 0.352v-512h-832v512zM128 32v32h768v-32h-768zM204.672 406.496h-44.672c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.272c4.064-12.992 16.064-22.496 30.4-22.496 16.832 0 30.464 13.024 31.744 29.568 26.528 12.128 45.088 38.752 45.088 69.76 0 42.304-34.464 76.672-76.864 76.672-6.976 0-12.672 5.76-12.672 12.864s5.696 12.864 12.672 12.864h44.864c17.664 0 32 14.336 32 32s-14.336 32-32 32h-14.496c-4.128 12.896-16.096 22.304-30.368 22.304-16.768 0-30.4-12.96-31.744-29.408-26.432-12.16-44.928-38.752-44.928-69.728 0-42.368 34.368-76.832 76.672-76.832 7.072 0 12.864-5.664 12.864-12.672 0-7.2-5.632-12.832-12.864-12.832zM501.664 352c0 17.664-14.336 32-32 32h-117.664c-17.664 0-32-14.336-32-32s14.336-32 32-32h117.664c17.664 0 32 14.336 32 32zM565.664 320h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 224h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="money-check" d="M927.648 711.36h-831.328c-35.552 0-64.32-28.8-64.32-64.352v-433.728c0-35.552 28.8-64.352 64.32-64.352h831.328c35.552 0 64.352 28.8 64.352 64.352v433.728c0 35.552-28.8 64.352-64.352 64.352zM927.648 212.928l-831.648 0.352 0.32 434.080 831.648-0.352-0.352-434.080zM434.4 491.008h107.904c17.664 0 32 14.336 32 32s-14.336 32-32 32h-107.904c-17.664 0-32-14.336-32-32s14.336-32 32-32zM844.672 555.008h-191.968c-17.664 0-32-14.336-32-32s14.336-32 32-32h191.968c17.664 0 32 14.336 32 32s-14.336 32-32 32zM844.672 369.312h-410.272c-17.664 0-32-14.336-32-32s14.336-32 32-32h410.272c17.664 0 32 14.336 32 32s-14.336 32-32 32zM255.072 461.792c-25.888 12.256-31.488 16.576-31.488 24.384 0 2.976 0 8.48 9.696 12.48 12.096 4.992 27.36 2.496 32.928-3.040 12.48-12.48 32.768-12.48 45.28 0s12.48 32.768 0 45.248c-9.856 9.888-22.88 16.768-37.12 20.672v12.96c0 17.664-14.336 32-32 32s-32-14.336-32-32v-16.16c-0.512-0.192-1.024-0.288-1.536-0.512-30.816-12.768-49.216-39.552-49.216-71.648 0-49.984 40.96-69.408 68.096-82.24 29.184-13.792 35.040-18.976 35.040-30.528 0-6.112-11.808-14.496-20.352-14.496-14.464 0-35.68 9.952-40.672 14.112-12.512 12.288-32.576 12.192-45.024-0.192-12.512-12.48-12.512-32.736 0-45.28 10.4-10.4 31.488-21.472 53.696-27.648v-14.112c0-17.664 14.336-32 32-32s32 14.336 32 32v15.744c28.448 11.648 52.352 37.984 52.352 71.904 0 54.4-43.136 74.848-71.648 88.352z" /> +<glyph unicode="" glyph-name="money-currency" d="M401.824 222.976c-26.112-9.472-53.568-14.304-81.504-14.304-131.936 0-239.328 107.328-239.328 239.328s107.328 239.328 239.328 239.328c28.256 0 55.936-4.896 82.24-14.592 16.544-6.048 34.912 2.4 40.96 18.976s-2.4 34.912-18.944 40.96c-33.408 12.256-68.48 18.464-104.256 18.464-167.136 0-303.136-136-303.136-303.136s136-303.168 303.136-303.168c35.424 0 70.176 6.112 103.328 18.144 16.576 6.016 25.12 24.352 19.104 40.896s-24.32 25.12-40.896 19.104zM323.744 571.008c6.72 0 13.504-0.544 20.16-1.6 17.376-2.944 33.792 8.96 36.64 26.336s-8.96 33.792-26.368 36.64c-10.016 1.632-20.256 2.464-30.4 2.464-103.040 0-186.816-83.808-186.816-186.816s83.808-186.816 186.816-186.816c10.336 0 20.736 0.864 30.816 2.528 17.376 2.88 29.152 19.36 26.24 36.736s-19.392 29.088-36.736 26.24c-6.656-1.12-13.504-1.664-20.352-1.664-67.84 0-123.008 55.168-123.008 123.008s55.168 123.008 123.008 123.008zM707.488 479.328c-23.328 11.040-27.264 14.688-27.264 19.904 0 2.4 0 5.984 7.264 8.96 9.792 4.064 22.88 2.112 27.2-2.208 12.48-12.448 32.672-12.448 45.152 0s12.48 32.672 0 45.152c-8.896 8.896-20.48 15.296-33.184 19.104v9.792c0 17.632-14.304 31.936-31.904 31.936s-31.904-14.304-31.904-31.936v-12.896c-29.088-12.128-46.432-37.472-46.432-67.84 0-47.424 38.4-65.6 63.776-77.6 26.72-12.64 30.528-16.8 30.528-25.504 0-3.424-8.928-10.592-16-10.592-11.648 0-30.304 8.096-35.424 12.256-12.48 12.16-32.448 12.032-44.832-0.32-12.48-12.48-12.48-32.672 0-45.12 9.44-9.44 28.256-19.52 48.32-25.408v-10.88c0-17.632 14.304-31.904 31.904-31.904s31.904 14.304 31.904 31.904v12.672c26.208 11.392 47.904 35.936 47.904 67.456 0 51.456-41.984 71.328-67.072 83.2zM689.856 735.328c-158.688 0-287.328-128.64-287.328-287.328s128.64-287.328 287.328-287.328 287.328 128.64 287.328 287.328-128.64 287.328-287.328 287.328zM689.856 224.544c-123.232 0-223.456 100.256-223.456 223.456s100.256 223.456 223.456 223.456 223.456-100.256 223.456-223.456-100.256-223.456-223.456-223.456z" /> +<glyph unicode="" glyph-name="money-rotation" d="M517.408 269.76c17.888 0 32.416 14.528 32.416 32.416v15.872c28.768 11.808 52.928 38.4 52.928 72.672 0 55.040-43.616 75.712-72.48 89.376-25.824 12.256-31.744 16.8-31.744 24.576 0 2.976 0 8.512 9.76 12.544 12.224 5.056 27.552 2.528 33.184-3.072 12.64-12.672 33.184-12.672 45.824 0s12.64 33.184 0 45.824c-9.952 9.984-23.104 16.896-37.472 20.864v13.024c0 17.888-14.496 32.416-32.416 32.416s-32.416-14.528-32.416-32.416v-16.288c-0.48-0.192-1.024-0.288-1.504-0.48-31.168-12.896-49.792-40-49.792-72.448 0-50.56 41.408-70.176 68.832-83.136 29.408-13.952 35.36-19.136 35.36-30.784 0-6.144-11.904-14.56-20.512-14.56-14.592 0-36.064 10.048-41.056 14.24-12.672 12.384-33.024 12.32-45.6-0.256-12.64-12.672-12.64-33.184 0.032-45.856 10.496-10.496 31.808-21.664 54.208-27.904v-14.208c0-17.888 14.528-32.416 32.416-32.416zM196.896 319.328c-51.936 127.264-22.72 272.256 74.464 369.44 129.12 129.088 336.768 132.16 470.112 10.112l-93.696 0.416c-17.856 0-32.352-14.4-32.416-32.256-0.096-17.888 14.368-32.48 32.288-32.576l165.472-0.736c8.576 0 16.8 3.424 22.88 9.472 6.112 6.112 9.536 14.336 9.536 22.976l-0.096 165.44c0 17.888-14.528 32.416-32.416 32.416v0c-17.888 0-32.384-14.528-32.384-32.416l0.064-80.256c-158.912 140.928-402.944 135.424-555.104-16.704-115.68-115.68-150.464-288.32-88.64-439.776 5.12-12.544 17.248-20.192 30.016-20.192 4.096 0 8.224 0.768 12.256 2.432 16.576 6.752 24.512 25.664 17.76 42.24zM889.856 594.592c-6.496 16.704-25.248 24.96-41.952 18.528-16.672-6.496-24.96-25.248-18.528-41.92 48.64-125.696 18.528-268.448-76.736-363.744-129.024-129.024-336.448-132.16-469.824-10.336l93.6-0.416c17.824 0 32.352 14.432 32.416 32.288 0.064 17.888-14.368 32.48-32.256 32.576l-165.344 0.736c-8.64 0.832-16.896-3.36-23.040-9.472s-9.536-14.368-9.536-22.976l0.128-165.44c0-17.888 14.528-32.384 32.416-32.384v0c17.888 0 32.416 14.528 32.384 32.448l-0.064 80.32c76.384-67.648 172.416-101.6 268.448-101.6 103.744 0 207.52 39.52 286.496 118.496 113.408 113.408 149.28 283.36 91.36 432.96z" /> +<glyph unicode="" glyph-name="money-target" d="M520 713.12h-16.896c-17.664 0-32-14.336-32-32s14.336-32 32-32h16.896c17.664 0 32 14.336 32 32s-14.336 32-32 32zM876.192 368.128c-16.928 5.28-34.816-4.192-40.064-21.056-44.352-142.624-174.592-238.432-324.128-238.432-17.664 0-32-14.336-32-32v-76.64c0-17.664 14.336-32 32-32s32 14.336 32 32v45.856c164.064 12.768 303.68 122.912 353.216 282.208 5.248 16.864-4.192 34.816-21.024 40.064zM960 480h-45.856c-12.736 164.064-122.912 303.648-282.176 353.248-16.864 5.248-34.816-4.16-40.064-21.056s4.192-34.816 21.024-40.064c142.624-44.352 238.432-174.624 238.432-324.128 0-17.664 14.336-32 32-32h76.64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM147.84 527.872c3.168-0.992 6.368-1.472 9.536-1.472 13.632 0 26.304 8.8 30.56 22.528 44.352 142.624 174.624 238.4 324.096 238.4 17.664 0 32 14.336 32 32v76.64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-45.856c-164.064-12.768-303.68-122.912-353.216-282.208-5.248-16.864 4.16-34.816 21.024-40.064zM411.040 123.904c-142.624 44.352-238.4 174.592-238.4 324.096 0 17.664-14.336 32-32 32h-76.64c-17.664 0-32-14.336-32-32s14.336-32 32-32h45.856c12.736-164.032 122.912-303.648 282.176-353.216 3.168-0.992 6.368-1.472 9.504-1.472 13.664 0 26.304 8.8 30.528 22.496 5.248 16.864-4.16 34.784-21.056 40.064zM543.52 575.456c0 17.664-14.336 32-32 32s-32-14.336-32-32v-11.744c-28.064-12.032-44.832-36.672-44.832-66.24 0-46.496 37.472-64.256 62.24-75.968 25.216-11.936 28.832-15.744 28.832-23.584 0-2.496-7.904-9.024-14.24-9.024-10.912 0-28.48 7.616-33.408 11.52-12.512 12.096-32.48 12-44.864-0.352-12.48-12.48-12.512-32.736-0.032-45.248 9.088-9.12 27.072-18.784 46.304-24.64v-9.632c0-17.664 14.336-32 32-32s32 14.336 32 32v11.52c25.376 11.328 46.24 35.264 46.24 65.856 0 50.4-40.96 69.824-65.408 81.408-21.92 10.4-25.664 13.664-25.664 18.144 0 2.208 0 4.96 6.272 7.552 9.824 4.064 21.536 1.568 24.992-1.888 12.48-12.48 32.768-12.48 45.248 0s12.48 32.768 0 45.248c-8.544 8.544-19.52 14.752-31.648 18.496v8.544zM511.552 247.776c-110.656 0-200.672 90.048-200.672 200.672 0 67.936 34.016 130.752 90.944 168.064 14.784 9.664 18.912 29.504 9.248 44.288s-29.504 18.944-44.288 9.216c-75.040-49.152-119.872-132-119.872-221.6 0-145.952 118.72-264.704 264.672-264.704s264.672 118.72 264.672 264.672c0 89.632-44.832 172.448-119.904 221.6-14.784 9.664-34.624 5.536-44.288-9.248s-5.536-34.624 9.248-44.32c56.928-37.28 90.912-100.064 90.912-168.032 0-110.656-90.016-200.672-200.672-200.672z" /> +<glyph unicode="" glyph-name="more-horiz" d="M832 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM832 425.984c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992zM192 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM192 425.984c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992zM511.008 553.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM511.008 425.984c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992z" /> +<glyph unicode="" glyph-name="more-vert" d="M512 233.984c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM512 105.984c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992zM512 660c59.008 0 107.008 48 107.008 107.008s-48 107.008-107.008 107.008-107.008-48-107.008-107.008 48-107.008 107.008-107.008zM512 788c11.552 0 20.992-9.44 20.992-20.992s-9.44-20.992-20.992-20.992-20.992 9.44-20.992 20.992 9.44 20.992 20.992 20.992zM512 555.008c-59.008 0-107.008-48-107.008-107.008s48-107.008 107.008-107.008 107.008 48 107.008 107.008-48 107.008-107.008 107.008zM512 427.008c-11.552 0-20.992 9.44-20.992 20.992s9.44 20.992 20.992 20.992 20.992-9.44 20.992-20.992-9.44-20.992-20.992-20.992z" /> +<glyph unicode="" glyph-name="mouse" d="M766.464 560.672v14.304h-1.952c-20.192 121.056-125.408 213.344-252.16 213.344s-232.032-92.288-252.16-213.344h-2.656v-21.28c-0.608-6.944-0.864-13.984-0.864-21.088v-45.856c0-2.848 0.288-5.632 0.864-8.288v-203.744c0-140.544 113.92-254.464 254.464-254.464 70.272 0 133.888 28.512 179.936 74.528 46.080 46.080 74.528 109.664 74.528 179.936v201.12c0.992 3.456 1.536 7.072 1.536 10.88v45.856c0 9.472-0.512 18.848-1.536 28.032zM680.48 274.816c0-92.896-75.552-168.448-168.48-168.448s-168.48 75.552-168.48 168.448v172.192h125.824v-21.344c0-23.712 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v21.344h125.152v-172.192zM348.032 575.008c18.848 73.12 85.376 127.36 164.32 127.36s145.44-54.176 164.32-127.36c3.456-13.44 5.344-27.52 5.344-41.984h-126.688v41.984c0 23.712-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-41.984h-126.688c0 14.496 1.888 28.544 5.376 41.984z" /> +<glyph unicode="" glyph-name="mouse-12" d="M512.352 788.352c-141.184 0-255.648-114.464-255.648-255.648v-290.528c0-122.496 114.464-221.824 255.648-221.824s255.648 99.328 255.648 221.824v290.528c0 141.184-114.464 255.648-255.648 255.648zM681.6 242.176c0-80.992-75.936-146.848-169.248-146.848s-169.248 65.888-169.248 146.848v186.72h126.304v-3.2c0-23.712 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v3.2h126.24v-186.72zM555.36 532.992v41.984c0 23.712-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-41.984h-126.688c0.16 93.408 76.192 169.344 169.696 169.344s169.472-75.936 169.632-169.344h-126.688z" /> +<glyph unicode="" glyph-name="music-note" d="M887.072 861.024c-9.888 10.112-24.096 14.752-38.048 12.32l-248.736-42.656c-18.272-3.104-32.416-17.568-35.232-35.872l-25.184-164.576c-1.184-3.936-1.888-8.064-1.888-12.32l-33.376-217.984c-1.152 0.864-2.336 1.696-3.488 2.56-40.992 28.96-94.816 44.928-151.424 44.928s-110.432-15.968-151.424-44.928c-44.896-31.712-70.656-77.088-70.656-124.544s25.728-92.832 70.656-124.544c40.992-28.96 94.816-44.928 151.424-44.928s110.432 15.968 151.424 44.928c41.376 29.216 66.528 70.144 70.144 113.536l47.968 313.376 209.664 34.016c17.76 2.848 31.84 16.512 35.328 34.144l34.272 174.24c2.72 13.856-1.536 28.192-11.424 38.304zM349.728 194.464c-72.48 0-136.064 39.008-136.064 83.456s63.584 83.488 136.064 83.488 136.064-39.008 136.064-83.488-63.584-83.456-136.064-83.456zM785.632 694.4l-152.704-24.736 12.448 81.536 156.672 26.88-16.48-83.68z" /> +<glyph unicode="" glyph-name="nav-menu" d="M872.672 732.416h-721.344c-12.96 0-23.488-10.528-23.488-23.488v-112.352c0-12.928 10.528-23.488 23.488-23.488h721.344c12.96 0 23.488 10.56 23.488 23.488v112.352c0 12.96-10.528 23.488-23.488 23.488zM853.184 616.064h-682.336v73.376h682.336v-73.376zM202.72 630.976h614.88c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-614.88c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM872.672 527.744h-721.344c-12.96 0-23.488-10.528-23.488-23.488v-112.352c0-12.96 10.528-23.488 23.488-23.488h721.344c12.96 0 23.488 10.528 23.488 23.488v112.352c0 12.96-10.528 23.488-23.488 23.488zM853.184 411.424h-682.336v73.344h682.336v-73.344zM202.72 426.336h614.88c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-614.88c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM872.672 323.136h-721.344c-12.96 0-23.488-10.528-23.488-23.488v-112.352c0-12.96 10.528-23.488 23.488-23.488h721.344c12.96 0 23.488 10.528 23.488 23.488v112.352c0 12.96-10.528 23.488-23.488 23.488zM730.144 221.664h-527.456c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h527.456c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504zM877.6 197.088c0-3.008-1.088-5.728-2.944-7.872-1.792-2.048-4.256-3.52-7.072-3.968h-86.752l96.736 96.768v-84.928z" /> +<glyph unicode="" glyph-name="network-wifi" d="M512 272.672c-18.176 0-34.656-7.392-46.56-19.296s-19.296-28.384-19.296-46.56c0-36.352 29.472-65.824 65.824-65.824s65.824 29.472 65.824 65.824c0 18.176-7.392 34.656-19.296 46.56s-28.384 19.296-46.56 19.296zM512 491.232c-81.792 0-158.72-31.872-216.576-89.696-16.8-16.768-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.368 12.576c41.632 41.6 96.928 64.512 155.776 64.512s114.144-22.912 155.776-64.512c16.8-16.768 44.032-16.768 60.8 0 16.768 16.8 16.768 44.032 0 60.8-57.856 57.856-134.784 89.696-216.576 89.696zM883.744 556.672c-99.328 99.296-231.328 153.984-371.744 153.984s-272.416-54.688-371.744-153.984c-16.8-16.8-16.8-44.032 0-60.8s44.032-16.8 60.8 0c83.072 83.040 193.504 128.768 310.912 128.768s227.872-45.728 310.912-128.768c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.768 44.032 0 60.8z" /> +<glyph unicode="" glyph-name="news-ticket" d="M895.52 575.744h-666.432c-18.56 0-34.912-11.328-40.384-27.936l-58.048-176.256c-8.384-25.472 11.936-51.296 40.384-51.296h666.432c18.56 0 34.912 11.328 40.384 27.936l58.048 176.256c8.384 25.472-11.936 51.296-40.384 51.296zM837.632 363.168c-0.032 0-0.096 0-0.16 0h-569.536l-69.568 76.8 30.592 92.864c0.032 0 0.096 0 0.16 0h664.384l-55.872-169.664zM256.512 618.176h617.472c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-617.472c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM490.72 235.264h-247.648c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h247.648c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM794.368 277.824h-239.776c-11.84 0-21.472-9.6-21.472-21.472v-85.184c0-11.84 9.6-21.472 21.472-21.472h239.776c11.84 0 21.472 9.6 21.472 21.472v85.184c0 11.84-9.6 21.472-21.472 21.472zM772.896 192.672h-196.864v42.24h196.864v-42.24zM597.184 426.528h227.872c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-227.872c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM490.72 426.528h42.592c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-42.592c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM364.224 426.528h42.592c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-42.592c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM256.512 426.816h21.28c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-21.28c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472z" /> +<glyph unicode="" glyph-name="night-light-moon" d="M787.584 192.256c-44.8 26.112-81.12 61.92-108 106.496-26.88 44.672-39.968 93.472-39.968 149.248s13.056 104.576 39.968 149.248c26.848 44.576 63.2 80.416 108 106.496 13.184 7.68 21.28 21.76 21.376 37.024s-7.968 29.408-21.12 37.152c-28 16.544-58.592 29.44-90.912 38.304s-66.080 13.408-100.256 13.408c-51.968 0-101.856-10.144-148.256-30.176-45.984-19.84-86.816-47.392-121.312-81.888s-61.984-75.104-81.824-120.8c-20.064-46.176-30.208-96.224-30.208-148.768 0-51.968 10.144-101.856 30.176-148.224 19.84-45.984 47.392-86.816 81.888-121.312s75.264-62.048 121.312-81.888c46.432-20 96.288-30.176 148.256-30.176 34.176 0 67.936 4.512 100.256 13.408s62.88 21.76 90.912 38.304c13.152 7.776 21.152 21.888 21.12 37.152s-8.192 29.344-21.376 37.024zM674.144 162.72c-24.928-6.816-51.040-10.336-77.472-10.336-40.16 0-78.592 7.808-114.176 23.136-36 15.52-67.808 36.992-94.56 63.744s-48.224 58.592-63.744 94.56c-15.36 35.584-23.136 73.984-23.136 114.176 0 40.704 7.776 79.232 23.072 114.528 15.52 35.744 36.992 67.456 63.776 94.24 26.752 26.752 58.592 48.224 94.56 63.744 35.584 15.36 74.016 23.136 114.176 23.136 26.496 0 52.576-3.456 77.472-10.336 2.016-0.544 4.064-1.152 6.048-1.696-28.896-25.824-53.728-55.904-74.24-89.952-34.688-57.632-52.32-122.752-52.32-193.632s17.568-135.968 52.32-193.632c20.512-34.048 45.344-64.128 74.24-89.952-2.016-0.608-4-1.152-6.048-1.696z" /> +<glyph unicode="" glyph-name="note-hashtag" d="M736 448h-7.008l6.048 24.256c4.288 17.152-6.144 34.528-23.264 38.816s-34.528-6.144-38.816-23.264l-9.952-39.744h-62.016l6.048 24.256c4.288 17.152-6.144 34.528-23.264 38.816-17.088 4.288-34.496-6.144-38.816-23.264l-9.952-39.744h-23.008c-17.664 0-32-14.336-32-32s14.336-32 32-32h7.008l-17.408-69.696h-22.72c-17.664 0-32-14.336-32-32s14.336-32 32-32h6.72l-4.64-18.496c-4.288-17.152 6.144-34.528 23.264-38.816 2.624-0.64 5.216-0.96 7.808-0.96 14.336 0 27.36 9.696 31.008 24.256l8.512 34.048h62.016l-4.64-18.496c-4.288-17.152 6.144-34.528 23.264-38.816 2.592-0.64 5.216-0.96 7.808-0.96 14.336 0 27.36 9.696 31.008 24.256l8.512 34.048h31.296c17.664 0 32 14.336 32 32s-14.336 32-32 32h-15.296l17.408 69.696h23.008c17.664 0 32 14.336 32 32s-14.336 32-32 32zM629.568 314.304h-62.016l17.408 69.696h62.016l-17.408-69.696zM928 800h-768c-35.296 0-64-28.704-64-64v-64c-35.296 0-64-28.704-64-64v-448c0-35.296 28.704-64 64-64h704c35.296 0 64 28.704 64 64h64c35.296 0 64 28.704 64 64v512c0 35.296-28.704 64-64 64zM96 608h85.696v-448h-85.728v448zM800 160h-554.304v448h554.304v-448zM928 224h-64v384c0 35.296-28.704 64-64 64h-640v64h768v-512zM412.576 546.304h-99.424c-17.664 0-32-14.336-32-32s14.336-32 32-32h99.424c17.664 0 32 14.336 32 32s-14.336 32-32 32zM346.304 446.88h-33.152c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.152c17.664 0 32 14.336 32 32s-14.336 32-32 32zM346.304 281.12h-33.152c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.152c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="notes" d="M896 704h-37.6c-13.216 37.216-48.672 64-90.4 64h-37.6c-13.216 37.216-48.672 64-90.4 64h-32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-32c-52.96 0-96-43.040-96-96v-608c0-2.144 0.224-4.256 0.64-6.336 0.288-1.408 0.768-2.72 1.216-4.096 0.224-0.64 0.32-1.28 0.576-1.888 0.608-1.472 1.408-2.816 2.208-4.16 0.256-0.448 0.448-0.928 0.736-1.344 1.152-1.76 2.496-3.36 4-4.832l95.936-95.936c1.472-1.504 3.104-2.816 4.864-4 0.416-0.288 0.928-0.48 1.344-0.736 1.344-0.832 2.688-1.6 4.16-2.208 0.608-0.256 1.28-0.384 1.888-0.576 1.344-0.48 2.656-0.96 4.096-1.216 2.048-0.416 4.192-0.64 6.304-0.64h736c52.928 0 96 43.072 96 96v511.968c0 52.96-43.072 96-96 96zM800 672v-576c0-17.952-14.048-32-32-32h-37.6c3.552 10.048 5.6 20.768 5.6 32v608h32c17.952 0 32-14.080 32-32zM128 768h32v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h32c17.952 0 32-14.048 32-32v-640c0-17.952-14.048-32-32-32h-448v64c0 17.664-14.336 32-32 32h-64v576c0 17.952 14.048 32 32 32zM928 96c0-17.952-14.048-32-32-32h-37.6c3.552 10.048 5.6 20.768 5.6 32v544h32c17.952 0 32-14.080 32-32v-512zM224 544h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM224 384h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32zM224 224h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="notification" d="M512 20.864c58.656 0 106.24 47.488 106.4 106.144h-212.832c0.128-58.624 47.712-106.144 106.4-106.144zM811.008 233.984v298.336c0 164.864-134.144 299.008-299.008 299.008s-299.008-134.144-299.008-299.008v-298.336c-23.584-0.16-42.656-19.36-42.656-43.008 0-23.712 19.232-43.008 43.008-43.008h597.344c23.776 0 43.008 19.232 43.008 43.008 0 23.648-19.072 42.848-42.656 43.008zM299.008 233.984v298.336c0 117.472 95.584 212.992 212.992 212.992s212.992-95.584 212.992-212.992v-298.336h-425.984zM512 745.344c-23.776 0-43.008 19.232-43.008 43.008v42.656c0 23.776 19.232 43.008 43.008 43.008s43.008-19.232 43.008-43.008v-42.656c0-23.776-19.232-43.008-43.008-43.008z" /> +<glyph unicode="" glyph-name="number" d="M770.752 617.824h-601.312c-22.944 0-41.6-18.912-41.6-42.144 0-11.872 9.632-21.504 21.504-21.504 11.584 0 21.024 9.152 21.472 20.64h598.528v-277.056l-63.968-63.968h-534.56c-0.448 11.488-9.888 20.64-21.472 20.64-11.872 0-21.504-9.632-21.504-21.504 0-23.232 18.656-42.144 41.6-42.144h601.312c22.944 0 41.6 18.912 41.6 42.144v342.72c0 23.232-18.656 42.144-41.6 42.144zM932.544 424.288c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM752.704 331.616v164.384c0 19.328-17.216 35.040-38.336 35.040h-614.912c-18.528 0-33.6-15.712-33.6-35.040v-183.328c0-19.328 15.072-35.040 33.6-35.040h599.264l54.016 54.016zM582.976 359.136c-3.456 4.32-2.72 10.624 1.632 14.048s10.592 2.72 14.048-1.6l24.128-30.368 23.936 30.144c3.456 4.32 9.728 5.024 14.048 1.6s5.024-9.728 1.6-14.048l-31.776-40c-1.888-2.4-4.768-3.776-7.808-3.776s-5.952 1.376-7.84 3.776l-1.376 1.696-30.592 38.496zM662.336 449.536c3.456-4.32 2.72-10.592-1.6-14.048-1.856-1.472-4.032-2.176-6.208-2.176-2.944 0-5.856 1.312-7.84 3.776l-24.096 30.368-23.968-30.144c-3.456-4.32-9.728-5.024-14.048-1.6s-5.056 9.728-1.632 14.048l31.776 40.032c1.888 2.368 4.768 3.744 7.84 3.744s5.92-1.376 7.808-3.744l1.376-1.728 30.592-38.496zM108.832 488.032h405.312v-73.696h197.856c5.504 0 10.016-4.48 10.016-10.016s-4.48-10.016-10.016-10.016h-197.856v-73.728h-405.312v167.424zM394.912 425.824h-216.544c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h216.544c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="open-in-new" d="M853.344 831.616h-320c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h216.448l-353.536-353.536c-16.8-16.8-16.8-44.032 0-60.8 8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l353.28 353.28v-216.192c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008v320.256c0 23.776-19.232 43.008-43.008 43.008zM768 361.984c-23.776 0-43.008-19.232-43.008-43.008v-127.648h-468.64v468.704h127.648c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008h-132.192c-44.928 0-81.504-36.576-81.504-81.504v-477.664c0-44.928 36.576-81.504 81.504-81.504h477.664c44.928 0 81.504 36.576 81.504 81.504v132.192c0 23.776-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="paper-form" d="M880 928h-752c-52.96 0-96-43.040-96-96v-768c0-52.928 43.040-96 96-96h608c52.928 0 96 43.072 96 96v352h128c17.664 0 32 14.336 32 32v368c0 61.728-50.24 112-112 112zM768 64c0-17.952-14.048-32-32-32h-608c-17.952 0-32 14.048-32 32v768c0 17.952 14.048 32 32 32h650.976c-6.976-14.56-10.976-30.816-10.976-48v-752zM928 480h-96v336c0 26.464 21.536 48 48 48s48-21.536 48-48v-336zM672 736h-480c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h480c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 608h-416v64h416v-64zM672 496h-480c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h480c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 368h-416v64h416v-64zM320 768h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32zM416 256h-224c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h224c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM384 128h-160v64h160v-64zM672 256h-128c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 128h-64v64h64v-64z" /> +<glyph unicode="" glyph-name="paper-plane" d="M989.472 879.648c-3.136 10.56-8.832 20.384-17.312 29.216-7.936 7.712-17.792 13.472-29.664 16.96-11.264 2.88-22.88 2.912-33.408 0.224l-698.816-172.512c-22.624-5.664-43.456-16.928-60.064-32.448-16.768-15.488-29.568-35.232-37.088-57.344l-75.68-227.232c-7.488-22.24-7.168-46.72 0.96-69.088 8.192-22.208 23.936-41.12 44.16-53.216l156.416-94.016-73.376-73.376c-12.48-12.48-12.512-32.736-0.032-45.216l68.16-68.352c6.080-6.112 14.272-9.408 22.656-9.408 2.656 0 5.312 0.352 7.968 1.024l95.296 24.544 18.528-30.816c12.16-20.32 31.040-36 53.408-44.288 11.552-4.192 23.712-6.304 35.872-6.304 11.168 0 22.304 1.76 32.96 5.312l227.552 75.808c21.888 7.456 41.664 20.288 57.024 36.928 15.616 16.736 26.88 37.568 32.576 60.288l172.384 698.432c2.784 10.784 2.72 22.464-0.48 34.88zM98.464 389.408c-3.136 8.64-3.296 18.112-0.352 26.752l75.648 227.136c4 11.84 10.912 22.464 19.936 30.848 8.96 8.352 19.744 14.176 32 17.248l643.264 158.816-583.36-583.36-170.144 102.272c-7.936 4.736-13.824 11.808-16.96 20.352zM266.080 91.424l-32.672 32.736 50.784 50.784 41.056-68.288-59.136-15.232zM755.424 161.792c-3.072-12.352-8.896-23.136-17.376-32.192-8.288-8.96-18.912-15.808-30.528-19.808l-227.36-75.712c-8.608-2.88-18.112-2.72-26.528 0.352-8.672 3.2-15.744 9.088-20.544 17.088l-102.208 170.080 583.36 583.36-158.784-643.136z" /> +<glyph unicode="" glyph-name="pause" d="M383.328 830.88h-169.344c-47.488 0-86.016-38.496-86.016-86.016v-593.792c0-47.488 38.496-86.016 86.016-86.016h169.344c47.488 0 86.016 38.496 86.016 86.016v593.792c0 47.488-38.496 86.016-86.016 86.016zM383.328 151.136h-169.344v593.76s169.344 0 169.344 0v-593.792zM810.016 830.88h-169.344c-47.488 0-86.016-38.496-86.016-86.016v-593.792c0-47.488 38.496-86.016 86.016-86.016h169.344c47.488 0 86.016 38.496 86.016 86.016v593.792c0 47.488-38.496 86.016-86.016 86.016zM810.016 744.864v-593.792h-169.344v593.792s169.344 0 169.344 0v0z" /> +<glyph unicode="" glyph-name="paypal" d="M893.024 540.16c-8.384 42.080-28.896 75.552-60.992 99.52-5.024 3.744-10.592 6.24-16.352 7.52 0.992 23.552-1.12 45.664-6.304 66.272-15.168 60.224-56.672 105.024-120 129.6-63.712 24.704-95.584 24.544-248.832 23.68-35.008-0.192-78.592-0.448-130.432-0.448-38.624 0-72.224-28.576-78.112-66.432l-104.48-663.072c-0.064-0.288-0.064-0.576-0.128-0.832-2.56-18.624 3.040-37.408 15.328-51.52 12.256-14.048 30.048-22.112 48.832-22.112h91.168l-5.344-41.312c-1.6-12.288 2.176-24.64 10.336-33.888s19.936-14.592 32.288-14.592h165.024c35.424 0 66.208 25.76 73.216 61.216 0.192 0.928 0.352 1.856 0.48 2.816 0.16 1.12 0.256 1.856 0.32 2.528 0.416 3.456 0.832 5.952 14.016 88.896l10.976 68.96s0 0.096 0 0.096c0.832 0 1.632 0 2.4-0.032 2.432-0.032 4.928-0.064 7.552-0.064 163.904 0 266.592 81.216 296.96 234.88 0.032 0.16 0.064 0.288 0.096 0.448 7.552 40.416 8.224 76.736 2.016 107.936zM325.952 356.544s-0.032-0.096-0.032-0.16c-4.128-22.688-15.936-97.312-25.856-160.192-0.032-0.192-0.064-0.352-0.064-0.512-0.384-2.528-0.8-5.056-1.184-7.552-2.304-14.496-4.448-28.032-6.304-39.808h-76.128l99.584 631.968c49.568 0 91.296 0.256 125.088 0.448 149.568 0.864 168.768 0.96 217.216-17.856 37.248-14.464 59.392-37.472 67.712-70.4 8.224-32.64 3.296-75.936-14.24-125.248-0.064-0.16-0.096-0.288-0.16-0.448-30.048-87.488-98.592-130.656-209.792-131.968-13.568-0.224-26.112 0.064-38.24 0.288-29.92 0.64-55.808 1.216-78.784-6.56-22.112-7.456-50.24-26.016-58.816-72.032zM806.496 448.256c-11.904-60.032-36-102.208-73.664-129.056-33.856-24.096-80.576-36.32-138.88-36.32-2.176 0-4.288 0.032-6.336 0.064-23.808 0.352-73.28 1.024-88-69.376-0.16-0.672-0.256-1.376-0.352-2.048l-11.168-70.112c-8.448-53.12-11.744-73.792-13.184-82.976h-105.984l16.16 124.64c9.824 62.304 21.472 136.064 25.472 157.792 0.64 3.328 1.28 5.248 1.696 6.24 7.584 2.912 31.648 2.4 49.472 2.016 12.352-0.256 26.304-0.544 41.312-0.32 147.52 1.76 247.744 67.36 289.888 189.792 1.632 4.608 3.168 9.184 4.64 13.728 21.856-34.72 12.544-85.152 8.992-104.096z" /> +<glyph unicode="" glyph-name="pen" d="M992 819.072c0 16.832-6.88 33.312-18.816 45.152l-44.864 44.864c-11.936 12.032-28.448 18.944-45.248 18.944s-33.312-6.88-45.152-18.848l-50.688-50.688c-49.888 18.208-105.952-27.104-129.44-46.176-0.352-0.288-0.704-0.576-1.024-0.864l-42.432-37.632c-3.52-3.328-7.136-6.816-11.328-10.912l-41.952-42.88c-36.928-39.808-71.456-82.912-79.968-122.976-0.544-0.48-1.152-0.864-1.664-1.376l-90.016-90.016c-1.152-1.152-2.048-2.4-3.008-3.648-47.552-11.456-105.28-59.648-172.736-127.136-73.12-73.152-111.52-135.232-139.488-202.88-0.352-0.8-0.704-1.6-0.992-2.432-13.696-33.536-24.96-68.48-36.576-106.912-9.216-30.56-4.224-58.4 13.728-76.352 12.032-12.064 28.512-18.24 47.232-18.24 9.184 0 18.912 1.504 28.96 4.544 38.4 11.616 73.28 22.816 106.784 36.48 1.024 0.384 2.048 0.8 3.072 1.28 67.552 27.904 129.568 66.304 202.56 139.296 67.456 67.456 115.648 125.184 127.136 172.736 1.248 0.928 2.528 1.856 3.648 2.976l90.016 90.016c0.48 0.48 0.8 1.024 1.248 1.504 6.688 1.376 13.568 3.456 20.704 6.4 34.272 14.016 76.672 46.976 133.44 103.744 23.552 23.552 45.76 47.232 64.256 70.528l3.648-3.648c24.736-24.736 24.736-64.96 0-89.696l-157.472-157.664c-12.48-12.48-12.48-32.768 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.408l157.472 157.632c49.664 49.664 49.664 130.528 0 180.192l-13.408 13.376c11.84 25.184 15.68 49.056 7.68 70.72l50.56 50.528c12 11.936 18.912 28.416 18.912 45.248zM229.824 77.312l-88.544 88.544c8.96 19.712 19.104 38.976 31.264 58.24l115.552-115.52c-19.296-12.16-38.528-22.272-58.272-31.264zM108 33.856c-6.208-1.856-10.016-2.016-11.936-1.76-0.192 1.952-0.096 5.792 1.76 12.096 6.016 19.936 11.904 38.688 17.984 56.64l48.928-48.928c-18.016-6.112-36.768-11.968-56.768-18.016zM393.664 194.88c-18.432-18.432-35.968-34.336-53.088-48.352l-130.048 130.048c14.016 17.12 29.952 34.656 48.384 53.088 129.088 129.088 152.096 109.12 152.992 108.256l90.016-90.016c0.896-0.928 20.864-23.872-108.256-153.024zM547.072 393.248l-89.824 89.792 44.192 44.192s0.128-0.16 0.192-0.224l89.376-89.408s0.16-0.096 0.224-0.192l-44.192-44.192zM769.856 572.288c-49.184-49.184-87.008-79.36-112.384-89.76-14.752-6.016-17.696-3.040-21.152 0.352l-89.408 89.408c-16.672 16.672 37.12 78.4 60.448 103.552l40.864 41.696c3.424 3.328 6.784 6.56 9.312 8.992l41.152 36.48c26.208 21.184 59.584 43.84 71.168 32.192l89.408-89.408c13.824-13.824-19.616-63.744-89.408-133.536zM882.144 773.408l-44.768 44.768 45.6 45.728 44.928-44.736-45.76-45.728z" /> +<glyph unicode="" glyph-name="pencil" d="M964 810.016l-90.048 90.048c-37.376 37.088-98.016 37.088-135.136-0.064l-50.944-50.816c-0.736 0.224-1.376 0.512-2.112 0.704-11.648 2.912-23.904 2.528-35.168-0.96-11.52-3.552-21.824-10.112-29.472-18.624-8.256-8.864-13.792-19.904-16-31.488l-5.92-29.312-29.536-5.856c-11.552-2.464-21.92-7.712-30.88-15.648-8.832-7.904-15.424-18.112-19.328-30.56-3.168-11.36-3.36-23.296-0.544-34.656 0.16-0.672 0.448-1.28 0.64-1.92l-455.648-455.712c-5.152-5.12-8.384-11.84-9.184-19.072l-22.56-202.496c-1.056-9.664 2.304-19.296 9.184-26.176 6.016-6.048 14.208-9.376 22.624-9.376 1.184 0 2.368 0.064 3.552 0.192l202.496 22.56c7.232 0.8 13.952 4.032 19.072 9.184l67.232 67.232s0.16 0.096 0.224 0.192l388.256 388.256c0.704-0.224 1.376-0.48 2.048-0.672 5.12-1.28 10.432-1.92 15.84-1.92 6.432 0 12.992 0.928 19.712 2.816 11.424 3.616 21.664 10.176 29.568 19.040 7.936 8.896 13.216 19.296 15.744 31.296l5.76 29.088 28.864 5.824c12 2.304 23.040 7.872 31.584 15.744 8.864 7.936 15.424 18.272 18.88 29.6 3.616 11.424 3.968 23.648 0.832 36.192-0.128 0.48-0.352 0.96-0.48 1.408l50.784 50.784c37.12 37.152 37.184 97.792 0 135.232zM251.808 53.12l-95.072-10.592-50.208 50.208 10.592 95.072 18.496 18.496c4.672-9.76 10.56-18.752 17.888-26.016 8.608-8.928 19.424-16.224 30.976-20.96 10.080-4.32 20.672-6.688 31.552-7.328 0.608-10.752 2.976-21.312 7.136-31.136 4.928-11.936 12.224-22.816 20.608-30.88 7.776-7.84 16.864-13.856 26.496-18.4l-18.464-18.496zM356.672 157.92c-0.096-0.096-0.224-0.16-0.288-0.256l-22.528-22.528c-2.944-2.944-6.304-5.184-10.976-7.072-6.848-2.976-15.2-3.328-23.648 0.32-3.776 1.568-7.136 3.808-10.528 7.168-2.592 2.496-4.768 5.792-6.496 9.952-1.664 3.872-2.464 7.84-2.464 11.84 0 4.128 0.8 8.032 2.688 12.384 1.536 3.808 3.744 7.104 6.72 10.080l22.528 22.528c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.512-45.28 0l-22.528-22.496c-2.976-2.976-6.304-5.184-10.912-7.072-6.912-3.040-15.296-3.328-23.712 0.288-3.84 1.568-7.168 3.776-10.144 6.88-2.88 2.88-5.152 6.24-6.88 10.464-1.6 3.712-2.4 7.648-2.4 11.712 0 4.16 0.768 8.032 2.656 12.384 1.504 3.744 3.776 7.136 6.656 10.048l22.56 22.528s0 0 0 0.032l337.216 337.248 134.72-134.72-336.992-336.992zM850.016 603.84l-50.048-10.112c-12.64-2.56-22.528-12.448-25.056-25.152l-9.856-49.6c-0.096-0.512-0.288-0.992-0.832-1.888-0.768-0.256-1.472-0.224-2.688 0.384l-180.48 180.864c-0.096 0.352-0.096 1.024 0.352 1.792 0.672 0.64 1.216 0.8 1.216 0.8l50.016 9.92c12.672 2.528 22.592 12.384 25.12 25.056l10.336 50.88c0.096 0.128 1.344 1.024 1.472 1.184 0.96-0.256 1.472-0.576 1.6-0.672 0 0 0 0 0.032 0l179.936-180.096c0.16-0.16 0.576-1.472 0.736-1.6 0-0.064-1.76-1.696-1.792-1.76zM918.72 720.064l-44.96-44.96-134.688 134.816 44.96 44.832c12.48 12.448 32.16 12.448 44.736 0l89.888-89.888c12.544-12.608 12.576-32.32 0.096-44.8z" /> +<glyph unicode="" glyph-name="pen-paintbrush" d="M456.736 219.904c22.688 0.544 45.184 7.968 64.128 22.272l48.064-47.936-2.592-58.72c-0.736-16.448 11.136-30.752 27.456-33.088l265.664-38.016c1.504-0.224 3.040-0.352 4.544-0.352 2.080 0 4.16 0.192 6.208 0.608 0.576 0.096 1.12 0.352 1.664 0.48 1.44 0.384 2.88 0.736 4.288 1.312 0.672 0.288 1.312 0.704 1.952 1.024 1.216 0.576 2.432 1.152 3.552 1.888 1.504 0.96 2.816 2.144 4.16 3.392 0.256 0.256 0.544 0.384 0.768 0.64 0 0 0 0 0 0s0 0 0 0c0.032 0.032 0.064 0.064 0.096 0.096 1.664 1.664 3.072 3.52 4.288 5.408 0.352 0.544 0.576 1.12 0.928 1.696 0.832 1.472 1.536 2.976 2.112 4.512 0.288 0.736 0.48 1.504 0.672 2.24 0.416 1.472 0.736 2.912 0.928 4.416 0.096 0.832 0.192 1.664 0.256 2.496 0.096 1.568 0 3.168-0.128 4.736-0.064 0.512 0.032 1.024-0.032 1.536l-38.016 265.76c-2.336 16.288-16.928 28-33.056 27.456l-58.624-2.528-38.528 38.432 215.84 189.408c29.824 26.304 47.104 62.528 48.672 102.304 1.312 40-13.44 77.44-41.472 105.248l-27.904 28.096c-27.712 27.68-65.792 43.040-105.568 41.472-39.84-1.6-76.16-18.976-102.112-48.864l-194.336-221.344-231.744 259.136c-25.792 28.736-60.864 44.064-99.232 42.784-38.112-1.12-76.224-18.912-107.328-50.016-31.232-31.232-49.056-69.408-50.208-107.488-1.12-37.696 14.464-73.856 42.816-99.136l268.16-240.032c-16.896-19.264-26.496-43.488-27.328-69.312-46.4 10.624-96.576 3.904-140.16-21.664-45.856-26.784-55.68-64.448-67.008-108.096-10.624-40.864-23.872-91.712-71.104-162.624-0.256-0.384-0.416-0.8-0.64-1.216-0.448-0.736-0.832-1.504-1.216-2.24-0.512-1.024-0.96-2.048-1.344-3.104-0.288-0.768-0.576-1.536-0.8-2.336-0.32-1.184-0.576-2.336-0.768-3.52-0.128-0.736-0.256-1.504-0.352-2.272-0.128-1.504-0.128-2.976-0.064-4.48 0-0.448-0.064-0.832 0-1.312 0-0.096 0.032-0.16 0.064-0.256 0.192-1.888 0.512-3.776 1.024-5.6 0.192-0.672 0.512-1.312 0.736-1.984 0.384-1.12 0.768-2.24 1.28-3.36 0.384-0.832 0.896-1.568 1.344-2.336 0.512-0.864 0.992-1.728 1.6-2.528 0.576-0.768 1.216-1.472 1.856-2.208 0.48-0.544 0.896-1.152 1.408-1.664 0.192-0.192 0.448-0.384 0.64-0.576 0.32-0.288 0.64-0.544 0.96-0.832 36.832-35.904 93.184-57.696 155.168-59.744 3.072-0.096 6.176-0.16 9.28-0.16 54.368 0 108.384 14.784 156.8 42.976 74.656 43.488 109.952 129.408 92.448 208.96zM421.056 297.216l-14.304 14.432c-0.128 0.096-0.192 0.256-0.288 0.352-0.16 0.16-0.32 0.288-0.448 0.448l-12.736 12.832s-0.064 0.096-0.128 0.096c-8.768 8.768-13.6 20.48-13.6 32.992s4.864 24.256 13.664 33.056c2.848 2.848 6.080 5.12 9.408 7.104 3.008 0.896 5.888 2.144 8.576 3.936 4.8 1.664 9.824 2.688 15.040 2.688 12.48 0 24.256-4.896 33.088-13.76l27.84-27.808c18.272-18.272 18.272-48 0-66.24-18.208-18.176-47.936-18.144-66.144-0.096zM730.688 336.064c6.24-6.24 14.432-9.344 22.592-9.344 0.288 0 0.544 0.064 0.768 0.096 0.192 0 0.384-0.064 0.576-0.064l43.68 1.888 20.288-141.92-58.592 58.656c-12.48 12.544-32.736 12.48-45.248 0.032s-12.512-32.736-0.032-45.248l58.72-58.784-141.984 20.32 1.92 43.84c0 0.256-0.064 0.48-0.032 0.704 0.032 1.184-0.096 2.336-0.192 3.488-0.096 0.96-0.096 1.92-0.288 2.848-0.192 1.024-0.48 1.952-0.768 2.976s-0.512 2.048-0.896 3.040c-0.352 0.864-0.832 1.696-1.248 2.592-0.48 1.024-0.96 2.048-1.568 2.976-0.48 0.736-1.088 1.408-1.6 2.144-0.736 0.96-1.472 1.952-2.336 2.816-0.16 0.16-0.288 0.384-0.448 0.544l-65.28 65.12c2.208 6.432 3.776 13.056 4.736 19.744 1.408-0.096 2.752-0.384 4.16-0.384 17.408 0 34.816 6.080 48.704 18.336l62.752 55.072 51.52-51.392zM763.072 805.344c14.4 16.544 34.432 26.144 56.288 27.008 21.28 0.832 42.72-7.616 57.856-22.72l27.936-28.16c15.424-15.296 23.488-35.84 22.784-57.664-0.864-21.92-10.464-42.016-26.976-56.576l-326.816-286.816c-3.936-3.456-9.984-3.168-13.76 0.608l-83.616 83.648c-3.872 3.872-4.064 9.888-0.576 13.92l286.88 326.72zM428.064 520.736c-13.12-15.072-18.976-34.112-17.952-52.832-3.328-0.48-6.624-1.12-9.856-1.888l-207.488 185.696 115.072 116.256 170.208-190.304-50.016-56.96zM127.52 832.704c19.52 19.552 42.24 30.656 63.968 31.296 19.168 0.32 36.512-6.88 49.664-21.504l23.872-26.688-120.064-121.344-27.488 24.576c-14.432 12.864-22.048 30.464-21.472 49.504 0.672 22.048 11.552 44.256 31.488 64.16zM332.064 66.24c-40.768-23.744-86.24-35.616-131.808-34.144-14.976 0.48-29.152 2.72-42.656 5.952 44.704 13.248 95.552 35.712 126.88 73.408 11.296 13.6 9.44 33.76-4.16 45.056s-33.76 9.408-45.056-4.16c-23.488-28.288-68.576-46.144-108.544-56.576 25.152 49.6 35.68 89.216 43.776 120.384 10.752 41.28 15.584 56.192 37.44 68.96 24.448 14.336 51.936 19.744 78.4 16.992-20.384-16.608-41.504-38.176-54.528-63.616-8.064-15.712-1.856-35.008 13.856-43.072 4.672-2.4 9.664-3.52 14.592-3.52 11.648 0 22.816 6.336 28.48 17.408 13.216 25.76 44.192 49.312 65.92 63.008 2.144-1.856 4.448-3.456 6.496-5.472l0.352-0.352c7.328-7.328 13.888-15.936 19.424-25.568l-4.704-3.072c-14.784-9.664-18.912-29.504-9.216-44.288 6.144-9.376 16.352-14.464 26.816-14.464 1.184 0 2.304 0.384 3.456 0.48 0.192-44.8-23.264-88.928-65.12-113.312zM991.264 454.528c-3.296 32.224-30.24 57.504-63.36 57.504-35.296 0-64-28.704-64-63.968s28.704-64 64-64v-319.936c-17.664 0-32-14.336-32-32h-319.936c0 35.296-28.704 64-64 64s-63.968-28.704-63.968-64c0-33.088 25.312-60.064 57.504-63.36 2.080-0.448 4.256-0.64 6.464-0.64h447.936c17.664 0 32 14.336 32 32v447.936c0 2.208-0.224 4.352-0.64 6.464zM779.84 661.696c6.24-6.24 14.432-9.376 22.592-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768-0.032 45.248l-22.336 22.304c-12.544 12.48-32.768 12.512-45.248-0.032-12.48-12.512-12.48-32.768 0.032-45.248l22.336-22.304z" /> +<glyph unicode="" glyph-name="person-add" d="M648.704 437.28c34.976 35.040 56.672 83.328 56.672 136.608 0 106.624-86.752 193.408-193.408 193.408s-193.408-86.752-193.408-193.408c0-53.28 21.664-101.632 56.672-136.672-130.176-53.888-221.984-182.24-221.984-331.648 0-23.776 19.232-43.008 43.008-43.008h631.456c23.776 0 43.008 19.232 43.008 43.008 0 149.408-91.808 277.76-221.984 331.648zM512 681.344c59.232 0 107.392-48.16 107.392-107.392s-48.16-107.392-107.392-107.392-107.392 48.16-107.392 107.392 48.16 107.392 107.392 107.392zM512 148.64h-269.312c20.704 130.016 133.6 229.728 269.344 229.728s248.672-99.712 269.344-229.728h-269.344zM908.384 579.104h-35.712v35.712c0 16.544-13.44 29.984-29.984 29.984s-29.984-13.44-29.984-29.984v-35.712h-35.712c-16.544 0-29.984-13.44-29.984-29.984s13.44-29.984 29.984-29.984h35.712v-35.712c0-16.544 13.44-29.984 29.984-29.984s29.984 13.44 29.984 29.984v35.712h35.712c16.544 0 29.984 13.44 29.984 29.984s-13.44 29.984-29.984 29.984z" /> +<glyph unicode="" glyph-name="pets" d="M768.672 393.728c-49.408 19.168-95.968 73.472-135.552 112.672-27.552 27.264-67.328 51.872-121.12 51.872s-93.568-24.608-121.12-51.872c-39.648-39.168-86.144-93.536-135.552-112.672-93.536-36.256-127.328-129.12-127.328-179.872 0-64 42.656-150.816 128-150.816 19.808 0 44.192 2.656 70.016 6.752 61.6 9.76 123.776 14.624 185.984 14.624s124.384-4.864 185.984-14.624c25.824-4.096 50.208-6.752 70.016-6.752 85.344 0 128 86.816 128 150.816 0 50.784-33.76 143.584-127.328 179.872zM794.144 164.576c-11.168-15.584-21.28-15.584-26.144-15.584-9.44 0-26.88 0.992-56.576 5.664-65.76 10.4-132.832 15.712-199.424 15.712s-133.728-5.28-199.424-15.712c-29.696-4.704-47.136-5.664-56.576-5.664-4.864 0-14.976 0-26.144 15.584-10.976 15.264-15.872 35.744-15.872 49.28 0 8.096 3.456 29.344 16.64 51.616 13.44 22.752 32.224 38.912 55.776 48.096 58.208 22.56 104.16 69.632 144.672 111.136 7.168 7.328 13.92 14.24 20.256 20.512 24.48 24.192 46.336 27.008 60.672 27.008s36.192-2.816 60.672-27.008c6.368-6.304 13.088-13.216 20.256-20.512 40.544-41.504 86.496-88.608 144.672-111.2 23.584-9.12 42.336-25.312 55.776-48.096 13.152-22.272 16.64-43.52 16.64-51.616 0-13.536-4.896-34.016-15.872-49.28zM661.344 617.888c58.912 0 106.656 47.744 106.656 106.656s-47.744 106.656-106.656 106.656-106.656-47.744-106.656-106.656 47.744-106.656 106.656-106.656zM661.344 745.248c11.392 0 20.64-9.248 20.64-20.64s-9.248-20.64-20.64-20.64-20.64 9.248-20.64 20.64 9.248 20.64 20.64 20.64zM832.512 660.096c-58.912 0-106.656-47.744-106.656-106.656s47.744-106.656 106.656-106.656 106.656 47.744 106.656 106.656-47.744 106.656-106.656 106.656zM832.512 532.736c-11.392 0-20.64 9.248-20.64 20.64s9.248 20.64 20.64 20.64 20.64-9.248 20.64-20.64-9.248-20.64-20.64-20.64zM405.6 617.888c58.912 0 106.656 47.744 106.656 106.656s-47.744 106.656-106.656 106.656-106.656-47.744-106.656-106.656 47.744-106.656 106.656-106.656zM405.6 745.248c11.392 0 20.64-9.248 20.64-20.64s-9.248-20.64-20.64-20.64-20.64 9.248-20.64 20.64 9.248 20.64 20.64 20.64zM234.4 446.752c58.912 0 106.656 47.744 106.656 106.656s-47.744 106.656-106.656 106.656-106.656-47.744-106.656-106.656 47.744-106.656 106.656-106.656zM234.4 574.080c11.392 0 20.64-9.248 20.64-20.64s-9.248-20.64-20.64-20.64-20.64 9.248-20.64 20.64 9.248 20.64 20.64 20.64z" /> +<glyph unicode="" glyph-name="phone" d="M858.112 323.168l-186.016 110.976c-16.896 10.080-38.528 7.424-52.448-6.528l-72.16-72.16c-30.72 21.152-59.616 45.28-86.176 71.808-26.784 26.784-51.072 55.968-72.352 86.944l72.032 72.032c13.92 13.92 16.608 35.488 6.528 52.384l-110.336 185.344c-9.6 16.16-28.64 24.192-46.944 19.84l-192.256-45.824c-19.232-4.576-32.864-21.664-33.024-41.472-0.8-91.872 16.032-181.504 50.048-266.4 35.2-87.968 87.296-166.784 154.784-234.336 66.912-66.912 144.992-118.688 232.032-153.888 83.68-33.824 172.032-50.976 262.656-50.976 0.416 0 0.8 0 1.248 0 19.552 0 36.576 13.216 41.504 32.096l50.4 192.256c4.864 18.528-3.104 38.016-19.552 47.84zM752.736 137.76c-151.936 7.712-293.664 70.528-402.048 178.912-59.232 59.232-104.928 128.384-135.776 205.44-25.696 64.128-40.192 131.36-43.264 200.288l127.872 30.496 77.056-129.44-72.96-72.96c-14.048-14.048-16.64-35.808-6.304-52.736 28.832-47.456 63.616-91.616 103.264-131.232 39.392-39.392 83.232-73.952 130.336-102.752 16.928-10.368 38.784-7.776 52.832 6.272l73.088 73.088 129.504-77.28-33.568-128.128z" /> +<glyph unicode="" glyph-name="phone-classic" d="M512 495.872c-70.24 0-127.36-57.152-127.36-127.392s57.152-127.36 127.36-127.36 127.36 57.12 127.36 127.36-57.12 127.36-127.36 127.36zM512 305.152c-34.944 0-63.36 28.416-63.36 63.36s28.448 63.36 63.36 63.36 63.36-28.448 63.36-63.36-28.448-63.36-63.36-63.36zM967.84 699.744c-17.6 14.912-179.904 145.856-455.84 145.856s-438.272-130.912-455.712-145.728c-22.336-18.72-30.688-55.904-19.040-84.448l28.96-72.416c19.168-48.16 65.088-79.296 116.992-79.296h94.016l-5.28-22.816c-5.024-14.432-17.28-37.024-44.576-37.024-30.304 0-60.672-14.016-79.232-36.576-15.648-19.040-21.76-42.176-17.248-65.152l24.48-124.928c-14.336-3.168-25.088-15.904-25.088-31.2 0-17.664 14.336-32 32-32h31.584v-31.584c0-17.664 14.336-32 32-32s32 14.336 32 32v31.584h508.256v-31.584c0-17.664 14.336-32 32-32s32 14.336 32 32v31.584h31.584c17.664 0 32 14.336 32 32 0 15.264-10.72 28.032-25.088 31.2l24.48 124.928c0.384 2.048 0.576 4.096 0.576 6.144 0 52.704-43.552 95.584-97.056 95.584-27.296 0-39.52 22.624-44.48 37.024l-5.312 22.816h94.016c51.904 0 97.792 31.136 116.928 79.232l28.928 72.32c11.648 28.704 3.328 65.888-18.88 84.48zM796.64 339.808c17.632 0 31.616-12.544 32.96-28.992l-26.048-132.864h-583.136l-26.752 136.448c-0.288 1.504-1.184 6.016 3.904 12.16 6.496 7.904 18.464 13.216 29.792 13.216 48.448 0 88.992 31.52 105.728 82.24 0.32 0.928 0.576 1.856 0.8 2.848l20.96 90.624c9.28 26.112 33.92 43.552 61.76 43.552h190.752c27.84 0 52.48-17.44 61.76-43.552l20.992-90.624c0.224-0.928 0.48-1.856 0.768-2.784 16.736-50.752 57.216-82.272 105.696-82.272zM927.36 639.2l-29.024-72.544c-9.408-23.648-32-38.944-57.504-38.944h-108.832l-0.896 3.872c-0.224 0.96-0.48 1.92-0.832 2.88-10.4 31.232-31.968 56.16-59.264 71.584 0 0.32 0.096 0.608 0.096 0.928v47.68c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.584h-190.336v31.584c0 17.664-14.336 32-32 32s-32-14.336-32-32v-47.68c0-0.32 0.064-0.608 0.096-0.928-27.264-15.424-48.864-40.352-59.232-71.584-0.352-0.96-0.576-1.888-0.8-2.912l-0.896-3.84h-108.832c-25.536 0-48.064 15.296-57.536 39.008l-29.056 72.672c-1.248 3.104-0.32 9.856 0.992 11.552 6.272 5.344 156.992 130.656 414.432 130.656s408.192-125.344 414.144-130.336c1.6-2.016 2.592-8.768 1.248-12.064z" /> +<glyph unicode="" glyph-name="phone-volume-down" d="M552.032 657.312c93.92 0 170.336-76.416 170.336-170.336 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 141.344-114.976 256.352-256.352 256.352-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008zM896.864 653.216c-37.632 77.6-101.088 141.088-178.72 178.688-21.376 10.368-47.104 1.408-57.44-19.968-10.368-21.376-1.408-47.104 19.968-57.44 60.288-29.184 109.6-78.496 138.848-138.784 7.424-15.328 22.784-24.288 38.752-24.288 6.272 0 12.672 1.376 18.72 4.32 21.376 10.368 30.304 36.096 19.936 57.44zM858.112 323.168l-186.016 110.976c-16.896 10.080-38.528 7.424-52.448-6.528l-72.16-72.16c-30.72 21.152-59.616 45.28-86.176 71.808-26.784 26.784-51.072 55.968-72.352 86.944l72.032 72.032c13.92 13.92 16.608 35.488 6.528 52.384l-110.336 185.344c-9.6 16.16-28.64 24.192-46.944 19.84l-192.256-45.824c-19.232-4.576-32.864-21.664-33.024-41.472-0.8-91.872 16.032-181.504 50.048-266.4 35.2-87.968 87.296-166.784 154.784-234.336 66.912-66.912 144.992-118.688 232.032-153.888 83.68-33.824 172.032-50.976 262.656-50.976 0.416 0 0.8 0 1.248 0 19.552 0 36.576 13.216 41.504 32.096l50.4 192.256c4.864 18.528-3.104 38.016-19.552 47.84zM752.736 137.76c-151.936 7.712-293.664 70.528-402.048 178.912-59.232 59.232-104.928 128.384-135.776 205.44-25.696 64.128-40.192 131.36-43.264 200.288l127.872 30.496 77.056-129.44-72.96-72.96c-14.048-14.048-16.64-35.808-6.304-52.736 28.832-47.456 63.616-91.616 103.264-131.232 39.392-39.392 83.232-73.952 130.336-102.752 16.928-10.368 38.784-7.776 52.832 6.272l73.088 73.088 129.504-77.28-33.568-128.128z" /> +<glyph unicode="" glyph-name="phone-volume-mute" d="M858.112 323.168l-186.016 110.976c-16.896 10.080-38.528 7.424-52.448-6.528l-72.16-72.16c-30.72 21.152-59.616 45.28-86.176 71.808-26.784 26.784-51.072 55.968-72.352 86.944l72.032 72.032c13.92 13.92 16.608 35.488 6.528 52.384l-110.336 185.344c-9.6 16.16-28.64 24.192-46.944 19.84l-192.256-45.824c-19.232-4.576-32.864-21.664-33.024-41.472-0.8-91.872 16.032-181.504 50.048-266.4 35.2-87.968 87.296-166.784 154.784-234.336 66.912-66.912 144.992-118.688 232.032-153.888 83.68-33.824 172.032-50.976 262.656-50.976 0.416 0 0.8 0 1.248 0 19.552 0 36.576 13.216 41.504 32.096l50.4 192.256c4.864 18.528-3.104 38.016-19.552 47.84zM752.736 137.76c-151.936 7.712-293.664 70.528-402.048 178.912-59.232 59.232-104.928 128.384-135.776 205.44-25.696 64.128-40.192 131.36-43.264 200.288l127.872 30.496 77.056-129.44-72.96-72.96c-14.048-14.048-16.64-35.808-6.304-52.736 28.832-47.456 63.616-91.616 103.264-131.232 39.392-39.392 83.232-73.952 130.336-102.752 16.928-10.368 38.784-7.776 52.832 6.272l73.088 73.088 129.504-77.28-33.568-128.128zM576.64 564.064c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576l45.216 45.216 45.184-45.216c8.416-8.416 19.424-12.576 30.432-12.576s22.016 4.192 30.432 12.576c16.8 16.8 16.8 44.032 0 60.8l-45.216 45.216 45.216 45.216c16.8 16.8 16.8 44.032 0 60.8-16.8 16.8-44.032 16.8-60.8 0l-45.184-45.216-45.216 45.216c-16.8 16.8-44.032 16.8-60.8 0-16.8-16.8-16.8-44.032 0-60.8l45.216-45.216-45.216-45.216c-16.8-16.8-16.8-44.032 0-60.8z" /> +<glyph unicode="" glyph-name="phone-volume-up" d="M858.112 323.168l-186.016 110.976c-16.896 10.080-38.528 7.424-52.448-6.528l-72.16-72.16c-30.72 21.152-59.616 45.28-86.176 71.808-26.784 26.784-51.072 55.968-72.352 86.944l72.032 72.032c13.92 13.92 16.608 35.488 6.528 52.384l-110.336 185.344c-9.632 16.16-28.64 24.192-46.944 19.84l-192.256-45.824c-19.232-4.576-32.864-21.664-33.024-41.472-0.8-91.872 16.032-181.504 50.048-266.4 35.2-87.968 87.296-166.784 154.784-234.336 66.912-66.912 144.992-118.688 232.032-153.888 83.68-33.824 172.032-50.976 262.656-50.976 0.416 0 0.8 0 1.248 0 19.552 0 36.576 13.216 41.504 32.096l50.4 192.256c4.864 18.528-3.104 38.016-19.552 47.84zM752.736 137.76c-151.936 7.712-293.664 70.528-402.048 178.912-59.232 59.232-104.928 128.384-135.776 205.44-25.696 64.128-40.192 131.36-43.264 200.288l127.872 30.496 77.056-129.44-72.96-72.96c-14.048-14.048-16.64-35.808-6.304-52.736 28.832-47.456 63.616-91.616 103.264-131.232 39.392-39.392 83.232-73.952 130.336-102.752 16.928-10.368 38.784-7.776 52.832 6.272l73.088 73.088 129.504-77.28-33.568-128.128zM722.336 487.008c0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 141.344-114.976 256.352-256.352 256.352-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008c93.92 0 170.336-76.416 170.336-170.336zM562.176 881.504c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008c164.512 0 298.336-133.856 298.336-298.336 0-23.776 19.232-43.008 43.008-43.008s43.008 19.232 43.008 43.008c0 211.936-172.416 384.352-384.352 384.352z" /> +<glyph unicode="" glyph-name="pie-chart" d="M891.36 771.552c-56.16 65.12-129.696 110.656-212.736 131.648-8.704 2.24-17.952 0.64-25.472-4.32s-12.576-12.832-14.016-21.696l-55.328-347.648c-2.496-15.68 6.88-30.816 22.048-35.552l335.936-105.312c3.136-0.992 6.336-1.472 9.568-1.472 5.6 0 11.168 1.472 16.096 4.352 7.776 4.544 13.28 12.096 15.168 20.928 6.208 28.736 9.312 58.336 9.312 88 0 99.552-35.744 195.808-100.64 271.104zM925.792 460.768l-274.4 86.016 45.184 284.064c56.448-20.416 106.528-54.944 146.304-101.056 54.88-63.648 85.12-145.088 85.12-229.312 0-13.28-0.736-26.528-2.208-39.68zM892.16 347.712l-373.408 116.288 61.312 385.472c1.312 8.384-0.736 16.96-5.696 23.808s-12.512 11.488-20.896 12.832c-23.232 3.68-47.040 5.536-70.816 5.536-248.48 0-450.624-202.144-450.624-450.624s202.144-450.624 450.624-450.624c198.848 0 371.872 127.552 430.592 317.312 5.216 16.864-4.192 34.784-21.056 40zM482.624 54.4c-213.184 0-386.624 173.472-386.624 386.624s173.44 386.624 386.624 386.624c9.664 0 19.328-0.352 28.96-1.056l-60.416-379.872c-2.496-15.712 6.912-30.88 22.080-35.584l368.128-114.624c-58.496-146.048-198.88-242.112-358.752-242.112z" /> +<glyph unicode="" glyph-name="pie-chart-2" d="M510.464 473.056c1.92-5.792 6.24-10.496 11.84-12.928 2.72-1.184 5.632-1.792 8.544-1.792 3.072 0 6.112 0.64 8.96 1.952l338.368 155.264c10.784 4.96 15.52 17.696 10.592 28.48-30.912 67.584-80.224 124.896-142.624 165.728-64.032 41.888-138.464 64.032-215.296 64.032-42.88 0-84.832-6.848-124.704-20.352-11.2-3.808-17.248-15.936-13.504-27.168l117.824-353.248zM530.848 830.848c129.632 0 248.768-72.096 309.28-185.408l-296.48-136.032-103.264 309.6c29.216 7.872 59.552 11.84 90.432 11.84zM912.672 562.304c-3.52 7.616-11.296 12.512-19.68 12.512-2.848 0-5.664-0.576-8.32-1.664l-324.448-135.936c-8.576-3.584-13.856-12.256-13.12-21.536s7.328-16.992 16.352-19.2l339.84-82.784c1.696-0.416 3.424-0.608 5.088-0.608 9.28 0 17.792 6.048 20.576 15.328 9.28 30.88 13.984 62.976 13.984 95.456 0 48.288-10.176 94.88-30.24 138.464zM892.928 360.48l-255.808 62.336 244.48 102.432c12.16-32.32 18.336-66.336 18.336-101.376 0-21.408-2.336-42.656-7.008-63.36zM468.288 411.808l-111.040 332.992c-148-49.216-254.656-188.8-254.656-353.248 0-130.368 67.040-245.056 168.384-311.52l0.224 0.352c58.304-38.016 127.744-60.064 202.592-60.064 168.384 0 310.912 111.936 356.8 265.44l-336.352 100.896c-12.224 3.68-21.888 13.056-25.92 25.152z" /> +<glyph unicode="" glyph-name="pie-chart-analyst" d="M960 496.672h-68.896c-8.096 100.576-53.76 190.656-123.072 256.16l44.512 77.984h14.784c17.664 0 32 14.336 32 32s-14.336 32-32 32h-33.376c-11.488 0-22.112-6.144-27.808-16.16l-48.64-85.184c-54.976 37.216-119.744 60.96-189.568 66.656v37.088c0 17.664-14.336 32-32 32-193.312 0-368.256-121.76-435.328-303.040-19.040-51.456-28.672-105.6-28.672-160.928 0-144.288 66.24-273.408 169.856-358.56l-23.744-41.568h-14.592c-17.664 0-32-14.336-32-32s14.336-32 32-32h33.152c11.488 0 22.080 6.144 27.776 16.096l29.824 52.16c61.696-37.824 132.896-61.504 209.088-66.848v-2.56c0-17.664 14.336-32 32-32 273.888 0 496.672 222.816 496.672 496.672 0 17.664-14.336 32-32 32zM685.664 737.6l-52.096-91.264c-8.768-15.328-3.424-34.912 11.904-43.648 5.024-2.848 10.464-4.224 15.84-4.224 11.136 0 21.92 5.792 27.808 16.16l46.048 80.608c50.688-52.672 84.384-121.792 91.712-198.56h-298.88v299.328c58.24-5.696 112.064-26.56 157.664-58.4zM463.328 863.904v-342.816l-296.608 171.232c67.552 97.472 176.448 161.632 296.608 171.584zM345.376 293.312c-15.328 8.736-34.88 3.456-43.648-11.904l-67.552-118.144c-84.576 73.408-138.176 181.536-138.176 302.016 0 47.744 8.32 94.4 24.704 138.752 4.064 10.976 8.608 21.696 13.568 32.128l329.024-189.952v-379.584c-64.64 5.248-124.96 25.952-177.28 58.368l71.296 124.64c8.768 15.36 3.424 34.88-11.904 43.648zM528 33.216s0 0.032 0 0.064v399.424h398.816c-15.616-212.928-186.016-383.488-398.816-399.456zM924.672 830.848h2.176c17.664 0 32 14.336 32 32s-14.336 32-32 32h-2.176c-17.664 0-32-14.336-32-32s14.336-32 32-32zM66.016 65.152h-2.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM630.208 297.504h-2.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM729.792 297.504h-2.144c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.144c17.664 0 32 14.336 32 32s-14.336 32-32 32zM232 430.176h-2.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.016c17.664 0 32 14.336 32 32s-14.336 32-32 32zM331.52 430.176h-2.016c-17.664 0-32-14.336-32-32s14.336-32 32-32h2.016c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="pill" d="M829.024 764.032c-48.416 48.416-112.768 75.104-181.248 75.104s-132.832-26.656-181.248-75.104l-271.52-271.52c-48.416-48.416-75.104-112.768-75.104-181.248s26.656-132.832 75.104-181.248c48.416-48.416 112.768-75.104 181.248-75.104s132.832 26.656 181.248 75.104l271.52 271.52c48.416 48.416 75.104 112.768 75.104 181.248s-26.656 132.832-75.104 181.248zM496.672 190.816c-32.16-32.16-74.976-49.888-120.448-49.888s-88.288 17.696-120.448 49.888c-32.16 32.16-49.888 74.976-49.888 120.448s17.696 88.288 49.888 120.448l105.344 105.344 240.896-240.896-105.344-105.344zM768.224 462.336l-105.344-105.344-240.896 240.896 105.344 105.344c32.16 32.16 74.976 49.888 120.448 49.888s88.288-17.696 120.448-49.888c32.16-32.16 49.888-74.976 49.888-120.448s-17.696-88.288-49.888-120.448z" /> +<glyph unicode="" glyph-name="pin-map-location" d="M672 608c0 88.224-71.776 160-160 160s-160-71.776-160-160 71.776-160 160-160 160 71.776 160 160zM416 608c0 52.96 43.040 96 96 96s96-43.040 96-96-43.072-96-96-96-96 43.040-96 96zM832 480h-38.24c23.2 44.32 38.24 88.256 38.24 128 0 176.448-143.552 320-320 320s-320-143.552-320-320c0-39.744 15.040-83.68 38.208-128h-38.208c-52.96 0-96-43.072-96-96v-320c0-52.928 43.040-96 96-96h383.872s0.064 0 0.096 0c0.032 0 0.064 0 0.096 0h159.904c8.48 0 16.64 3.36 22.624 9.376l160 160c6.016 6.016 9.376 14.144 9.376 22.624v224c0 52.928-43.072 96-96 96zM736 224c-35.296 0-64-28.704-64-64v-128h-72.928l-50.144 150.4c22.144 20.544 61.664 58.432 104.288 105.6h210.752v-64h-128zM832 416c17.664 0 32-14.336 32-32v-32h-156.16c16.512 20.64 32.544 42.144 47.36 64h76.8zM512 864c141.152 0 256-114.848 256-256 0-108.832-168.64-290.208-256-372.544-87.328 82.304-256 263.712-256 372.544 0 141.152 114.848 256 256 256zM192 416h76.8c50.56-74.656 115.84-144.992 163.008-192h-271.808v160c0 17.664 14.368 32 32 32zM160 64v96h328.96l42.656-128h-339.616c-17.632 0-32 14.336-32 32zM736 45.28v114.72h114.752l-114.752-114.72z" /> +<glyph unicode="" glyph-name="pinterest" d="M532.512 866.656c-175.424 0-348.768-116.928-348.768-306.208 0-120.352 67.712-188.736 108.736-188.736 16.928 0 26.688 47.168 26.688 60.544 0 15.904-40.544 49.76-40.544 115.936 0 137.44 104.64 234.912 240.064 234.912 116.448 0 202.592-66.144 202.592-187.712 0-90.784-36.416-261.088-154.4-261.088-42.592 0-79.008 30.784-79.008 74.88 0 64.64 45.152 127.2 45.152 193.888 0 113.184-160.544 92.672-160.544-44.128 0-28.704 3.584-60.544 16.416-86.688-23.616-101.536-71.808-252.864-71.808-357.504 0-32.32 4.64-64.096 7.712-96.448 5.792-6.496 2.912-5.792 11.776-2.56 86.176 117.952 83.072 141.056 122.080 295.456 21.024-40 75.392-61.568 118.464-61.568 181.568 0 263.136 176.96 263.136 336.48 0 169.792-146.688 280.576-307.744 280.576z" /> +<glyph unicode="" glyph-name="planet" d="M970.4 906.4c-40.192 40.192-116.8 25.056-234.24-46.208-15.104-9.184-19.936-28.864-10.784-43.968s28.864-19.936 43.936-10.752c109.312 66.304 150.688 60.768 155.808 55.68 14.528-14.528-10.080-91.712-91.232-210.144-69.6 98.048-183.968 162.208-313.088 162.208-211.648 0-383.84-172.192-383.84-383.84 0-128.16 63.168-241.76 159.968-311.488-111.584-74.592-184.064-97.12-198.112-83.072-5.056 5.088-10.624 46.112 54.784 154.368 9.12 15.136 4.288 34.784-10.848 43.936-15.104 9.12-34.784 4.288-43.936-10.848-70.432-116.608-85.216-192.736-45.248-232.736 14.752-14.752 34.464-21.344 57.856-21.344 63.424 0 153.952 48.48 246.080 113.856 49.6-23.424 104.928-36.544 163.264-36.544 211.648 0 383.808 172.192 383.808 383.84 0 57.472-12.768 111.936-35.488 160.928 94.368 130.272 157.76 259.552 101.216 316.096zM200.992 429.408c0 176.352 143.488 319.84 319.84 319.84 115.584 0 216.736-61.824 272.928-153.952-50.56-66.944-116.736-143.936-200.928-228.128-89.12-89.12-170.112-157.952-239.712-209.568-91.136 56.416-152.16 157.024-152.16 271.808zM840.672 429.408c0-176.352-143.456-319.84-319.84-319.84-36.128 0-70.72 6.304-103.136 17.376 83.008 64.544 162.784 137.312 220.384 194.944 54.912 54.912 123.648 129.984 185.856 208.768 10.688-31.872 16.704-65.856 16.704-101.28z" /> +<glyph unicode="" glyph-name="play" d="M858.72 540.64l-574.176 369.696c-34.432 22.176-76.448 23.68-112.384 4.064s-57.44-55.776-57.44-96.704v-739.424c0-40.96 21.472-77.12 57.44-96.736 16.768-9.12 34.848-13.696 52.864-13.696 20.608 0 41.152 5.952 59.52 17.76l574.176 369.696c31.616 20.384 50.496 54.976 50.496 92.64s-18.88 72.256-50.496 92.64zM824.096 409.184l-574.176-369.696c-14.4-9.312-32-9.952-47.072-1.696s-24.064 23.36-24.064 40.544v739.424c0 17.184 8.992 32.32 24.064 40.512 7.040 3.84 14.624 5.728 22.144 5.728 8.64 0 17.248-2.496 24.928-7.456l574.176-369.696c13.472-8.672 21.184-22.816 21.184-38.816s-7.712-30.144-21.184-38.816z" /> +<glyph unicode="" glyph-name="play-arrow" d="M835.68 467.808l-497.568 355.36c-13.088 9.344-30.336 10.624-44.672 3.232s-23.328-22.144-23.328-38.24v-639.744c0-15.328 8.16-29.472 21.408-37.216 6.656-3.872 14.112-5.792 21.6-5.792 7.392 0 14.72 1.888 21.344 5.664l497.568 284.32c12.704 7.264 20.864 20.512 21.632 35.168s-6.016 28.64-17.952 37.152zM356.096 222.56v482.080l374.944-267.808-374.944-214.272z" /> +<glyph unicode="" glyph-name="play-circle" d="M813.696 748.96c-83.328 83.328-192.512 124.96-301.696 124.96s-218.368-41.632-301.696-124.96c-166.624-166.624-166.624-436.768 0-603.392 83.328-83.328 192.512-124.96 301.696-124.96s218.368 41.632 301.696 124.96c166.624 166.624 166.624 436.768 0 603.392zM752.896 206.368c-64.352-64.352-149.888-99.808-240.896-99.808s-176.544 35.456-240.896 99.808-99.808 149.888-99.808 240.896 35.456 176.544 99.808 240.896c64.352 64.352 149.888 99.808 240.896 99.808s176.544-35.456 240.896-99.808c64.352-64.352 99.808-149.888 99.808-240.896s-35.456-176.544-99.808-240.896zM728.992 482.016l-298.656 213.344c-13.088 9.344-30.336 10.624-44.672 3.232s-23.328-22.144-23.328-38.24v-384c0-15.328 8.16-29.472 21.408-37.216 6.656-3.872 14.112-5.792 21.6-5.792 7.328 0 14.72 1.888 21.344 5.664l298.656 170.656c12.704 7.264 20.864 20.512 21.632 35.168s-6.016 28.64-17.952 37.152zM448.352 350.432v226.336l176.032-125.728-176.032-100.608z" /> +<glyph unicode="" glyph-name="plus" d="M720 480h-176v176c0 17.664-14.336 32-32 32s-32-14.336-32-32v-176h-176c-17.664 0-32-14.336-32-32s14.336-32 32-32h176v-176c0-17.664 14.336-32 32-32s32 14.336 32 32v176h176c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="podcast" d="M512 875.008c-235.488 0-427.008-191.52-427.008-427.008 0-114.048 44.416-221.28 125.056-301.952 41.504-41.504 90.080-73.44 142.976-94.624l-28.832 112.032c-92.256 61.088-153.216 165.792-153.216 284.512 0 188.032 152.96 340.992 340.992 340.992s340.992-152.96 340.992-340.992c0-118.688-60.96-223.392-153.216-284.512l-28.768-111.776c156.928 63.2 267.936 216.992 267.936 396.288 0 235.488-191.584 427.008-427.008 427.008zM512 660.992c117.408 0 212.992-95.52 212.992-212.992 0-38.816-10.464-75.264-28.672-106.656 7.68-6.688 14.208-14.72 19.2-23.904 2.784-5.024 4.96-10.272 6.624-15.648 4.736-15.104 5.152-31.264 1.152-46.848l-6.272-24.32c57.824 54.56 93.952 131.84 93.952 217.44 0 164.864-134.144 299.008-299.008 299.008s-299.008-134.112-299.008-299.008c0-85.6 36.128-162.848 93.952-217.44l-6.272 24.32c-4 15.584-3.552 31.744 1.152 46.848 1.664 5.376 3.84 10.624 6.624 15.648 4.992 9.12 11.52 17.184 19.2 23.904-18.272 31.36-28.672 67.84-28.672 106.656 0 117.472 95.52 212.992 212.992 212.992zM681.632 265.6c3.84 14.976-0.672 30.24-10.784 40.672-4.64 4.768-10.496 8.576-17.28 10.848l-46.368 15.488c4.32 3.552 8.416 7.328 12.288 11.392 0.608 0.608 1.152 1.184 1.696 1.792 0.672 0.736 1.312 1.44 1.952 2.176s1.28 1.44 1.92 2.176c2.208 2.56 4.352 5.152 6.4 7.904 2.432 3.232 4.768 6.624 6.944 10.016 0.48 0.768 0.928 1.536 1.408 2.272 0.096 0.128 0.224 0.288 0.256 0.416 0.512 0.8 0.992 1.568 1.44 2.4 0.896 1.536 1.76 3.104 2.592 4.704 0.384 0.672 0.736 1.408 1.12 2.080 1.664 3.2 3.2 6.528 4.608 9.888 0.48 1.12 0.928 2.272 1.376 3.36 0.48 1.12 0.896 2.272 1.28 3.424 0.416 1.12 0.8 2.272 1.184 3.424 0 0 0 0.096 0 0.128 0.352 0.992 0.672 1.952 0.992 2.944 0.352 1.056 0.672 2.176 0.992 3.232 0.256 0.8 0.48 1.568 0.64 2.4 0.16 0.64 0.352 1.28 0.512 1.92 0.64 2.4 1.184 4.832 1.664 7.296 0.128 0.64 0.288 1.28 0.384 1.952 0.16 0.8 0.288 1.632 0.48 2.432 0 0.128 0 0.288 0.032 0.416 0.224 1.248 0.416 2.432 0.608 3.68 0 0.224 0.032 0.384 0.096 0.608 0.16 1.056 0.288 2.144 0.416 3.2 0.032 0.48 0.128 0.928 0.16 1.408 0.096 0.864 0.224 1.76 0.256 2.592 0.032 0.416 0.096 0.896 0.128 1.312 0.032 0.672 0.128 1.376 0.16 2.080 0.032 0.896 0.128 1.76 0.16 2.656 0.032 1.12 0.096 2.208 0.128 3.328 0 1.44 0.032 2.912 0.032 4.352 0 82.528-67.168 149.664-149.664 149.664s-149.664-67.168-149.664-149.664c0-1.44 0-2.912 0.032-4.352 0-1.12 0.096-2.208 0.128-3.328 0-0.896 0.096-1.792 0.16-2.656 0-0.672 0.096-1.376 0.16-2.080 0-0.416 0.032-0.896 0.128-1.312 0.032-0.864 0.16-1.76 0.256-2.592 0-0.48 0.096-0.928 0.16-1.408 0.128-1.056 0.256-2.144 0.416-3.2 0-0.224 0-0.384 0.096-0.608 0.16-1.248 0.352-2.432 0.608-3.68 0-0.128 0-0.288 0.032-0.384 0.256-1.312 0.48-2.688 0.768-4 0.288-1.376 0.544-2.72 0.896-4.096v0c0.288-1.376 0.64-2.72 0.992-4.064 0.256-1.056 0.544-2.080 0.864-3.168 0.16-0.672 0.384-1.376 0.608-2.048 0.288-0.928 0.544-1.888 0.864-2.784 0.384-1.184 0.768-2.336 1.184-3.488 0.096-0.288 0.16-0.544 0.288-0.8 0.352-0.992 0.672-1.952 1.056-2.944 0.096-0.288 0.224-0.544 0.288-0.8 0.352-0.896 0.672-1.76 1.024-2.656 0.16-0.384 0.288-0.768 0.48-1.184 0.48-1.152 0.992-2.304 1.504-3.456 0.384-0.896 0.8-1.824 1.28-2.72 1.312-2.912 2.816-5.728 4.352-8.448 0.608-1.12 1.248-2.208 1.888-3.296 0.544-0.992 1.152-1.92 1.76-2.912 0.8-1.312 1.664-2.688 2.56-3.968 0.608-0.928 1.248-1.824 1.824-2.72 1.152-1.632 2.304-3.232 3.488-4.832 2.048-2.688 4.192-5.344 6.4-7.904 0.64-0.736 1.28-1.44 1.92-2.176s1.28-1.44 1.952-2.176c0.544-0.64 1.152-1.248 1.696-1.792 3.872-4 7.968-7.808 12.288-11.392l-46.368-15.488c-6.752-2.272-12.576-6.048-17.28-10.848-10.112-10.4-14.624-25.696-10.784-40.672l3.104-12.064 30.368-118.176 21.376-83.072c1.824-7.040 5.28-13.312 9.984-18.432 7.936-8.608 19.296-13.856 31.648-13.856h146.272c12.416 0 23.808 5.344 31.776 14.048 4.608 5.088 8.064 11.264 9.856 18.272l21.376 83.072 33.504 130.272zM588.384 248.224l-12.384-48.16-12-46.496-11.36-44.128-0.896-3.424h-79.616l-0.896 3.424-11.36 44.128-12 46.496-12.384 48.16 1.312 0.416 75.040 24.992 76.384-25.44zM575.648 448c0-35.104-28.544-63.648-63.648-63.648s-63.712 28.544-63.712 63.648 28.576 63.712 63.712 63.712 63.648-28.576 63.648-63.712z" /> +<glyph unicode="" glyph-name="popup-moda" d="M895.424 682.208c0 0.864-0.064 1.728-0.16 2.56v86.592c0 33.088-26.816 59.872-59.872 59.872h-646.752c-33.056 0-59.872-26.816-59.872-59.872v-646.752c0-33.088 26.816-59.872 59.872-59.872h646.752c33.088 0 59.872 26.816 59.872 59.872v555.008c0.096 0.832 0.16 1.696 0.16 2.56zM188.64 788.32h646.752c9.344 0 16.96-7.616 16.96-16.96v-67.712h-680.672v67.712c0 9.344 7.616 16.96 16.96 16.96zM835.36 107.68h-497.76l-165.92 165.92v387.168h680.672v-536.128c0-9.344-7.616-16.96-16.96-16.96zM825.92 746.56c0-8.256-6.688-14.976-14.976-14.976s-14.976 6.72-14.976 14.976c0 8.256 6.688 14.976 14.976 14.976s14.976-6.72 14.976-14.976zM750.176 731.584c8.256 0 14.976 6.72 14.976 14.976s-6.688 14.976-14.976 14.976-14.976-6.688-14.976-14.976 6.72-14.976 14.976-14.976zM689.408 731.584c8.256 0 14.976 6.72 14.976 14.976s-6.688 14.976-14.976 14.976-14.976-6.688-14.976-14.976 6.688-14.976 14.976-14.976zM659.776 555.2h-134.656c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h82.944l-143.008-143.008c-8.384-8.384-8.384-21.952 0-30.336 4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l142.88 142.88v-82.848c0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472v134.752c0 11.84-9.6 21.472-21.472 21.472zM613.888 349.632c-11.84 0-21.472-9.6-21.472-21.472v-50.336h-190.464v190.464h50.336c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-55.616c-20.768 0-37.664-16.896-37.664-37.664v-200.992c0-20.768 16.896-37.664 37.664-37.664h200.992c20.768 0 37.664 16.896 37.664 37.664v55.616c0 11.84-9.6 21.472-21.472 21.472z" /> +<glyph unicode="" glyph-name="portfolio-gallery" d="M678.336 323.168v467.488c0 22.88-18.624 41.504-41.504 41.504h-467.488c-22.88 0-41.504-18.624-41.504-41.504v-467.488c0-22.88 18.624-41.504 41.504-41.504h467.488c22.88 0 41.504 18.624 41.504 41.504zM645.28 688.608l-112.256 112.256h82.592c16.384 0 29.664-13.28 29.664-29.664v-82.592zM469.44 527.936l44.8-137.888c0.416-1.248-1.024-2.336-2.112-1.536l-117.312 85.248c-0.352 0.256-0.832 0.256-1.152 0l-117.312-85.248c-1.088-0.768-2.528 0.288-2.112 1.536l44.8 137.888c0.128 0.384 0 0.864-0.352 1.088l-117.312 85.248c-1.088 0.768-0.512 2.496 0.8 2.496h145.024c0.416 0 0.8 0.288 0.928 0.672l44.832 137.888c0.384 1.248 2.208 1.248 2.592 0l44.832-137.888c0.128-0.384 0.512-0.672 0.928-0.672h145.024c1.312 0 1.888-1.696 0.8-2.496l-117.312-85.248c-0.352-0.256-0.48-0.704-0.352-1.088zM786.56 214.944v444c0 35.84-29.152 64.992-64.992 64.992-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c12.128 0 22.016-9.888 22.016-22.016v-442.496h-442.496c-12.128 0-22.016 9.888-22.016 22.016 0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504c0-35.84 29.152-65.024 64.992-65.024h444c22.88 0 41.504 18.624 41.504 41.504zM831.168 614.336c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c12.128 0 22.016-9.888 22.016-22.016v-442.496h-442.496c-12.128 0-22.016 9.888-22.016 22.016 0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504c0-35.84 29.152-65.024 64.992-65.024h444c22.88 0 41.504 18.624 41.504 41.504v444c0 35.84-29.152 64.992-65.024 64.992z" /> +<glyph unicode="" glyph-name="post-author" d="M126.464 635.68c0-5.088-4.128-9.216-9.216-9.216s-9.216 4.128-9.216 9.216c0 5.088 4.128 9.216 9.216 9.216s9.216-4.128 9.216-9.216zM169.248 635.68c0-5.088-4.128-9.216-9.216-9.216s-9.216 4.128-9.216 9.216c0 5.088 4.128 9.216 9.216 9.216s9.216-4.128 9.216-9.216zM126.784 491.68h123.072c6.144 0 11.392 5.216 11.392 11.392s-5.216 11.392-11.392 11.392h-123.072c-6.144 0-11.392-5.216-11.392-11.392s5.216-11.392 11.392-11.392zM684.32 94.784c0-5.28-4.256-9.536-9.536-9.536s-9.536 4.256-9.536 9.536c0 5.28 4.256 9.536 9.536 9.536s9.536-4.256 9.536-9.536zM719.68 94.784c0-5.28-4.256-9.536-9.536-9.536s-9.536 4.256-9.536 9.536c0 5.28 4.256 9.536 9.536 9.536s9.536-4.256 9.536-9.536zM745.536 104.32c-5.216 0-9.536-4.32-9.536-9.536s4.32-9.536 9.536-9.536 9.536 4.32 9.536 9.536-4.32 9.536-9.536 9.536zM687.392 812.928c-141.536 0-259.68-101.216-285.536-235.392h-333.536v70.464c0 19.392 15.68 35.072 35.072 35.072h267.072c6.144 0 11.392 5.216 11.392 11.392s-5.216 11.392-11.392 11.392h-267.072c-32 0-57.856-25.856-57.856-57.856v-507.072c0-32 25.856-57.856 57.856-57.856h532.928c6.144 0 11.392 5.216 11.392 11.392s-5.216 11.392-11.392 11.392h-316.32v448.928h78.464c-1.216-10.784-1.856-21.856-1.856-33.216 0-68 24-134.144 67.68-186.464 4.32-5.216 8.928-10.144 13.536-15.072 1.856-2.144 4-4 5.856-5.856l2.464-2.464c54.464-52.32 125.856-80.928 201.536-80.928s147.072 28.608 201.216 80.928c7.68 7.392 15.072 15.392 21.856 23.392 43.68 52 67.68 118.464 67.68 186.464 0 160.608-130.464 291.072-291.072 291.072v0.32zM297.248 106.144h-38.784v339.392c0 5.536-4.608 10.144-10.144 10.144h-180v99.392h228.928v-448.928zM893.216 349.856c-5.216-6.144-10.464-12-16.32-17.856-27.68 77.856-102.144 133.856-189.536 133.856s-161.856-55.68-189.856-133.856l-3.68 3.68c-4.32 4.608-8.608 9.216-12.608 13.856-40.32 48.32-62.464 109.216-62.464 172 0 22.528 0.928 27.392 3.072 40.608 0.32 1.216 0.608 2.464 0.608 4s0 0 0 0.32c21.536 126.784 132 223.68 264.608 223.68s268.32-120.32 268.32-268.32c0-73.856-22.144-124-62.464-172h0.32zM787.456 605.888c0-55.392-44.896-100.32-100.32-100.32s-100.32 44.896-100.32 100.32c0 55.392 44.896 100.32 100.32 100.32s100.32-44.896 100.32-100.32zM841.216 187.392h-429.856c-6.144 0-11.392-5.216-11.392-11.392s5.216-11.392 11.392-11.392h429.856c6.144 0 11.392 5.216 11.392 11.392s-5.216 11.392-11.392 11.392z" /> +<glyph unicode="" glyph-name="post-carousel" d="M536.992 660.832s0 0 0 0l-20.768-20.768c-6.176-6.176-10.176-14.336-11.296-22.976l-8.992-69.28c-1.056-8.224 1.696-16.32 7.552-22.176 5.024-5.024 11.712-7.776 18.688-7.776 1.152 0 2.304 0.064 3.488 0.224l69.28 8.992c8.64 1.12 16.832 5.152 22.976 11.296l181.152 181.152c15.488 15.488 15.488 40.704 0 56.192l-45.504 45.504c-7.52 7.52-17.472 11.648-28.096 11.648s-20.608-4.128-28.096-11.648l-5.152-5.152s-155.232-155.232-155.232-155.232zM698.592 679.84l-76.928-76.928-5.248 5.248 111.424 111.424 5.248-5.248-34.528-34.528zM697.44 749.984l-111.424-111.424-5.248 5.248 111.424 111.424 5.248-5.248zM541.312 563.424l6.112 46.976 2.976 2.976 40.896-40.896-2.976-2.976-46.976-6.112zM725.44 788.48l40.896-40.896-2.848-2.848-40.896 40.896 2.848 2.848zM655.392 226.816c22.88 0 41.504 18.624 41.504 41.504v268.352c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-223.712l-43.136-43.136h-221.6v341.152h72.192c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-277.184v61.408h362.496c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-364c-22.88 0-41.504-18.624-41.504-41.504v-448.576c0-22.88 18.624-41.504 41.504-41.504h472.704zM346.144 610.976v-341.152h-19.36v264.128c0 4.544-3.68 8.256-8.256 8.256h-134.368v68.8h161.984zM223.84 682.912c0-6.624-5.376-12-12-12s-12 5.376-12 12c0 6.624 5.376 12 12 12s12-5.376 12-12zM272.032 682.912c0-6.624-5.376-12-12-12s-12 5.376-12 12c0 6.624 5.376 12 12 12s12-5.376 12-12zM219.456 559.328h100.288c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-100.288c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM792.16 187.36v387.328c0 30.304-24.672 54.976-54.976 54.976-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c6.592 0 11.968-5.376 11.968-11.968v-385.824h-453.408c-6.624 0-11.968 5.376-11.968 11.968 0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504c0-30.304 24.672-54.976 54.976-54.976h454.912c22.88 0 41.504 18.624 41.504 41.504zM819.84 546.976c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c6.592 0 11.968-5.376 11.968-11.968v-385.824h-453.408c-6.624 0-11.968 5.376-11.968 11.968 0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504c0-30.304 24.672-54.976 54.976-54.976h454.912c22.88 0 41.504 18.624 41.504 41.504v387.328c0 30.304-24.672 54.976-54.976 54.976z" /> +<glyph unicode="" glyph-name="post-category-list" d="M868.256 694.144h-123.584c-38.464 0-69.728-31.296-69.728-69.728v-277.184c0-38.464 31.296-69.728 69.728-69.728h123.584c38.464 0 69.728 31.296 69.728 69.728v277.184c0 38.464-31.296 69.728-69.728 69.728zM895.072 347.232c0-14.784-12.032-26.816-26.816-26.816h-103.168l-47.232 47.232v256.768c0 14.784 12.032 26.816 26.816 26.816h123.584c14.784 0 26.816-12.032 26.816-26.816v-277.184zM573.792 694.144h-123.584c-38.464 0-69.728-31.296-69.728-69.728v-277.184c0-38.464 31.296-69.728 69.728-69.728h123.584c38.464 0 69.728 31.296 69.728 69.728v277.184c0 38.464-31.296 69.728-69.728 69.728zM600.608 347.232c0-14.784-12.032-26.816-26.816-26.816h-97.056l-53.376 53.376v250.624c0 14.784 12.032 26.816 26.816 26.816h123.584c14.784 0 26.816-12.032 26.816-26.816v-277.184zM279.328 694.144h-123.584c-38.464 0-69.728-31.296-69.728-69.728v-277.184c0-38.464 31.296-69.728 69.728-69.728h123.584c38.464 0 69.728 31.296 69.728 69.728v277.184c0 38.464-31.296 69.728-69.728 69.728zM306.144 347.232c0-14.784-12.032-26.816-26.816-26.816h-98.816l-51.584 51.584v252.416c0 14.784 12.032 26.816 26.816 26.816h123.584c14.784 0 26.816-12.032 26.816-26.816v-277.184zM599.776 257.536h-172.928c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h172.928c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM304 257.536h-172.928c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h172.928c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM892.928 257.536h-172.928c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h172.928c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472z" /> +<glyph unicode="" glyph-name="post-comment" d="M126.944 679.040c-5.44 0-9.6-4.48-9.6-9.6s4.48-9.6 9.6-9.6 9.6 4.48 9.6 9.6-4.48 9.6-9.6 9.6zM171.040 679.040c-5.44 0-9.6-4.48-9.6-9.6s4.48-9.6 9.6-9.6 9.6 4.48 9.6 9.6-4.48 9.6-9.6 9.6zM136.512 520.544h126.848c6.4 0 11.808 5.44 11.808 11.808s-5.44 11.808-11.808 11.808h-126.848c-6.4 0-11.808-5.44-11.808-11.808s5.44-11.808 11.808-11.808zM688.384 796c-69.344 0-132.928-20.448-182.144-54.016h-393.696c-32.928 0-59.744-26.848-59.744-59.744v-522.464c0-32.928 26.848-59.744 59.744-59.744h515.424c32.928 0 59.744 26.848 59.744 59.744v129.088c0 6.4-5.44 11.808-11.808 11.808s-11.808-5.44-11.808-11.808v-78.624h-162.656c-6.4 0-11.808-5.44-11.808-11.808s5.44-11.808 11.808-11.808h162.656v-26.848c0-19.808-16.288-36.096-36.096-36.096h-292.064v462.4h70.944c-0.64-6.4-0.96-13.088-0.96-19.808 0-47.616 17.568-93.312 51.136-131.968l-66.784-137.088c-3.52-7.36-1.92-15.968 4.16-22.048 4.48-4.16 10.56-6.4 16.608-6.4s7.68 0.96 11.2 2.56l161.696 81.472c33.568-10.88 68.704-16.288 104.8-16.288 73.184 0 142.208 22.368 194.592 62.944 7.68 5.76 14.688 11.808 21.408 18.208 42.816 41.216 66.464 93.632 66.464 148.256 0 126.528-126.848 229.44-282.496 229.44l-0.32 0.64zM312.288 123.648h-39.936v349.6c0 5.76-4.8 10.56-10.56 10.56h-185.344v102.592h235.84v-462.72zM76.448 609.696v72.544c0 19.808 16.288 36.096 36.096 36.096h363.968c-32.928-30.048-55.936-67.424-65.824-108.32l-334.24-0.32zM888.096 435.232c-6.080-5.76-12.768-11.52-19.488-16.608-48.256-37.376-112.16-57.824-179.904-57.824s-69.664 5.44-102.24 16.608l-4.8 1.6-166.496-83.712 69.984 143.488-5.44 6.080c-32.928 35.456-50.496 77.664-50.496 121.76 0 113.44 116.32 205.792 259.168 205.792s258.848-92.352 258.848-205.792c0-50.912-21.088-94.272-59.424-131.008l0.32-0.32zM597.216 576.8c3.52-14.944-5.728-29.92-20.672-33.44s-29.92 5.728-33.44 20.672c-3.52 14.944 5.728 29.92 20.672 33.44s29.92-5.728 33.44-20.672zM699.392 590.016c10.848-10.848 10.848-28.448 0-39.328s-28.448-10.848-39.328 0c-10.848 10.848-10.848 28.448 0 39.328s28.448 10.848 39.328 0zM816.64 576.736c3.52-14.944-5.728-29.92-20.672-33.44s-29.92 5.728-33.44 20.672c-3.52 14.944 5.728 29.92 20.672 33.44s29.92-5.728 33.44-20.672z" /> +<glyph unicode="" glyph-name="post-content" d="M433.696 196.832h36.544l11.424 35.872h74.048l11.424-35.872h36.544l-60.672 174.528h-48.608l-60.352-174.528h-0.32zM520.128 344.608l27.712-88.384h-59.040l27.712 88.384h3.584zM768.704 264.992c0 14.688-2.272 27.712-7.168 38.496s-11.104 19.584-19.584 25.44c-8.48 6.208-18.272 9.12-29.696 9.12s-16.64-1.952-22.848-5.536-11.104-8.8-15.008-15.328-6.848-14.016-9.12-22.176h-5.216c0.992 5.536 1.632 10.752 2.624 15.968 0.64 5.216 1.632 10.112 2.272 15.008s0.992 9.472 0.992 13.696v44.672h-33.28v-120.032c0 0 0-67.84 0-67.84h28.384l-0.64 39.136h4.896c1.632-8.8 4.576-16.32 8.48-22.848s9.12-11.424 15.328-14.688c6.528-3.584 14.016-5.216 23.168-5.216s22.176 2.944 30.336 9.12 14.688 14.688 19.232 25.44 6.848 23.168 6.848 37.184v0.32zM729.888 242.176c-2.624-6.848-6.208-12.064-11.104-15.648s-10.752-5.536-17.6-5.536-11.104 1.312-15.328 4.256-8.16 6.208-11.104 10.432-5.216 8.8-6.528 14.016-2.272 9.792-2.272 14.016v4.576c0 3.264 0.32 6.848 1.312 11.104 0.992 3.904 2.272 7.84 4.256 11.424s4.576 7.168 7.168 10.112 6.208 5.536 9.792 7.488c3.904 1.952 8.16 2.944 12.736 2.944 6.848 0 12.736-1.952 17.28-5.536 4.576-3.904 8.16-9.12 10.752-15.968s3.904-14.688 3.904-23.488-1.312-16.96-3.904-23.808l0.64-0.32zM894.272 233.696c-2.272-4.576-5.856-7.84-10.432-10.752s-10.432-3.904-17.6-3.904-15.008 1.952-20.224 5.536-9.472 9.12-12.064 15.968-3.904 15.328-3.904 25.12 0.64 13.376 1.952 19.232 3.584 10.752 6.208 14.688 6.208 7.168 10.432 9.472 9.12 3.584 14.688 3.584 10.752-1.312 15.008-3.584 7.84-5.536 10.112-9.792c2.624-4.256 3.904-9.12 4.256-14.336l31.328 9.792c-1.632 9.12-4.896 16.64-10.112 23.488-5.216 6.528-12.064 11.744-20.224 15.328s-17.952 5.536-29.024 5.536-21.216-1.952-29.696-5.536-15.648-8.8-21.216-15.648c-5.856-6.848-10.112-14.688-13.056-23.808s-4.576-18.912-4.576-29.344 1.312-19.232 4.256-28.064c2.944-8.48 7.168-16.32 12.736-22.496 5.536-6.528 12.736-11.424 21.536-15.008s19.232-5.536 31.328-5.536 17.952 1.312 25.12 3.584 13.376 5.536 18.592 9.792 9.472 9.472 12.384 15.328 4.896 12.384 6.208 19.584l-29.696 6.208c-0.64-5.216-1.952-9.792-4.256-14.336zM141.44 681.216c0-5.216 4.256-9.792 9.792-9.792s9.792 4.256 9.792 9.792-4.256 9.792-9.792 9.792-9.792-4.256-9.792-9.792zM186.112 681.216c0-5.216 4.256-9.792 9.792-9.792s9.792 4.256 9.792 9.792-4.256 9.792-9.792 9.792-9.792-4.256-9.792-9.792zM160.992 530.848h128.192c6.528 0 12.064 5.536 12.064 12.064s-5.536 12.064-12.064 12.064h-128.192c-6.528 0-12.064-5.536-12.064-12.064s5.536-12.064 12.064-12.064zM928.544 796.064h-375.136c-19.584 0-35.552-15.968-35.552-35.552v-139.616h-417.536v73.056c0 19.904 16.32 36.192 36.192 36.192h315.104c6.528 0 12.064 5.536 12.064 12.064s-5.536 12.064-12.064 12.064h-315.104c-33.28 0-60.352-27.072-60.352-60.352v-527.776c0-33.28 27.072-60.352 60.352-60.352h554.848c6.528 0 12.064 5.536 12.064 12.064s-5.536 12.064-12.064 12.064h-329.12v467.104h155.584v-12.064c0-6.528 5.536-12.064 12.064-12.064s12.064 5.536 12.064 12.064v175.808c0 6.208 5.216 11.424 11.424 11.424h375.136c6.208 0 11.424-5.216 11.424-11.424v-234.528l-84.16 121.664c-2.272 3.264-5.856 5.216-9.792 5.216v0c-3.904 0-7.488-1.952-9.792-5.216l-81.536-116.448-98.496 165.696c-2.272 3.584-6.528 5.856-10.752 5.856s-8.48-2.624-10.432-6.528l-125.248-238.112c-1.952-3.584-1.952-8.16 0.32-11.744s6.208-5.856 10.432-5.856h408.384c19.584 0 35.552 15.968 35.552 35.552v284.448c0 19.584-15.968 35.552-35.552 35.552l-0.32-0.32zM338.432 129.952h-40.128v352.928c0 5.856-4.576 10.432-10.432 10.432h-187.232v103.392h237.792v-466.784zM939.936 476.384c0-6.208-5.216-11.424-11.424-11.424h-388.48l106.016 201.248 97.216-163.104c1.952-3.584 5.856-5.856 9.792-5.856 3.904-0.32 7.84 1.632 10.432 5.216l82.208 117.76 94.272-136.352v-7.488zM798.048 709.28c0-24.672-20-44.672-44.672-44.672s-44.672 20-44.672 44.672c0 24.672 20 44.672 44.672 44.672s44.672-20 44.672-44.672zM741.952 117.888c0-5.6-4.512-10.112-10.112-10.112s-10.112 4.512-10.112 10.112c0 5.6 4.512 10.112 10.112 10.112s10.112-4.512 10.112-10.112zM768.384 128c-5.536 0-10.112-4.576-10.112-10.112s4.576-10.112 10.112-10.112 10.112 4.576 10.112 10.112-4.576 10.112-10.112 10.112zM805.216 128c-5.536 0-10.112-4.576-10.112-10.112s4.576-10.112 10.112-10.112 10.112 4.576 10.112 10.112-4.576 10.112-10.112 10.112z" /> +<glyph unicode="" glyph-name="post-excerpt" d="M752.608 112.448h-362.784v514.816h252.096c7.072 0 13.088 6.016 13.088 13.088s-6.016 13.088-13.088 13.088h-540.608v80.608c0 22.272 18.016 40.32 40.32 40.32h557.6c22.272 0 40.32-18.048 40.32-40.32v-163.008h-210.72c-18.752 0-33.952-15.2-33.952-33.952s15.2-33.952 33.952-33.952h354.272c18.752 0 33.952 15.2 33.952 33.952s-15.2 33.952-33.952 33.952h-117.376v163.008c0 36.416-29.696 66.464-66.464 66.464h-557.6c-36.416 0-66.464-29.696-66.464-66.464v-581.28c0-36.416 29.696-66.464 66.464-66.464h610.976c7.072 0 13.088 6.016 13.088 13.088s-6.016 13.088-13.088 13.088zM364.032 627.264v-514.816h-44.544v388.928c0 6.368-5.312 11.68-11.68 11.68h-206.496v114.208h262.72zM146.944 719.904c0-6.016 4.96-10.592 10.592-10.592s10.592 4.96 10.592 10.592-4.96 10.592-10.592 10.592-10.592-4.96-10.592-10.592zM196.096 719.904c0-6.016 4.96-10.592 10.592-10.592s10.592 4.96 10.592 10.592-4.96 10.592-10.592 10.592-10.592-4.96-10.592-10.592zM168.512 554.432h141.088c7.072 0 13.088 6.016 13.088 13.088s-6.016 13.088-13.088 13.088h-141.088c-7.072 0-13.088-6.016-13.088-13.088s6.016-13.088 13.088-13.088zM957.696 249.28h-428.544c-18.752 0-33.952-15.2-33.952-33.952s15.2-33.952 33.952-33.952h428.544c18.752 0 33.952 15.2 33.952 33.952s-15.2 33.952-33.952 33.952zM529.152 410.176h254.944c18.752 0 33.952-15.2 33.952-33.952s-15.2-33.952-33.952-33.952h-254.944c-18.752 0-33.952 15.2-33.952 33.952s15.2 33.952 33.952 33.952z" /> +<glyph unicode="" glyph-name="post-grid" d="M712.16 554.848c-11.872 0-21.504-9.632-21.504-21.504v-228.608l-24.256-24.256h-173.024v278.464c0 11.872-9.632 21.504-21.504 21.504h-138.56v25.344c0 7.264 5.92 13.216 13.216 13.216h165.472c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-165.472c-30.976 0-56.192-25.216-56.192-56.192v-312.096c0-30.976 25.216-56.192 56.192-56.192h330.944c30.976 0 56.192 25.216 56.192 56.192v239.68c0 11.872-9.632 21.504-21.504 21.504zM450.368 537.408v-256.992h-10.4v161.44c0 3.552-2.88 6.432-6.432 6.432h-100.192v89.088h117.056zM359.584 598.304c0-5.184-4.192-9.376-9.376-9.376s-9.376 4.192-9.376 9.376c0 5.184 4.192 9.376 9.376 9.376s9.376-4.192 9.376-9.376zM378.464 598.304c0-5.184 4.192-9.376 9.376-9.376s9.376 4.192 9.376 9.376-4.192 9.376-9.376 9.376-9.376-4.192-9.376-9.376zM369.472 478.464h48.032c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-48.032c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM659.776 402.144c0 11.872-9.632 21.504-21.504 21.504h-101.728c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h101.728c11.872 0 21.504 9.632 21.504 21.504zM536.544 362.848c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h35.584c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-35.584zM768 618.816c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c11.488 0 21.152-7.264 21.152-15.84v-224c0-8.576-9.696-15.84-21.152-15.84-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c35.392 0 64.16 26.4 64.16 58.848v224c0 32.448-28.8 58.816-64.16 58.816zM874.656 597.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c11.68 0 21.152-9.504 21.152-21.152v-170.656c0-11.68-9.504-21.152-21.152-21.152-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c35.392 0 64.16 28.8 64.16 64.16v170.656c0 35.392-28.8 64.16-64.16 64.16zM256 575.84c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-35.392 0-64.16-26.4-64.16-58.816v-224c0-32.448 28.8-58.848 64.16-58.848 11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-11.488 0-21.152 7.264-21.152 15.84v224c0 8.576 9.696 15.84 21.152 15.84zM149.344 554.496c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-35.392 0-64.16-28.8-64.16-64.16v-170.656c0-35.392 28.8-64.16 64.16-64.16 11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-11.68 0-21.152 9.504-21.152 21.184v170.656c0 11.68 9.504 21.184 21.152 21.184zM783.040 808.192c-7.52 7.52-17.472 11.648-28.096 11.648s-20.608-4.128-28.096-11.648l-5.152-5.152s-155.232-155.232-155.232-155.232c0 0 0 0 0 0l-20.768-20.768c-6.176-6.176-10.176-14.336-11.296-22.976l-8.992-69.28c-1.056-8.224 1.696-16.32 7.552-22.176 5.024-5.024 11.712-7.776 18.688-7.776 1.152 0 2.304 0.064 3.488 0.224l69.28 8.992c8.64 1.12 16.832 5.152 22.976 11.296l181.152 181.152c15.488 15.488 15.488 40.704 0 56.192l-45.504 45.504zM617.792 556.544l-46.976-6.112 6.112 46.976 2.976 2.976 40.896-40.896-2.976-2.976zM615.52 625.568l-5.248 5.248 111.424 111.424 5.248-5.248-111.424-111.424zM728.064 666.848l-76.928-76.928-5.248 5.248 111.424 111.424 5.248-5.248-34.496-34.528zM792.992 731.744l-40.896 40.896 2.848 2.848 40.896-40.896-2.848-2.848z" /> +<glyph unicode="" glyph-name="post-info" d="M166.816 651.008c0-5.056 4.16-8.896 8.896-8.896s8.896 4.16 8.896 8.896-4.16 8.896-8.896 8.896-8.896-4.16-8.896-8.896zM207.776 651.008c0-5.056 4.16-8.896 8.896-8.896s8.896 4.16 8.896 8.896-4.16 8.896-8.896 8.896-8.896-4.16-8.896-8.896zM184.608 512.288h118.496c5.952 0 10.976 5.056 10.976 10.976s-5.056 10.976-10.976 10.976h-118.496c-5.952 0-10.976-5.056-10.976-10.976s5.056-10.976 10.976-10.976v0zM712.704 139.264c-5.056 0-9.216-4.16-9.216-9.216s4.16-9.216 9.216-9.216 9.216 4.16 9.216 9.216-4.16 9.216-9.216 9.216zM746.88 139.264c-5.056 0-9.216-4.16-9.216-9.216s4.16-9.216 9.216-9.216 9.216 4.16 9.216 9.216-4.16 9.216-9.216 9.216zM780.736 139.264c-5.056 0-9.216-4.16-9.216-9.216s4.16-9.216 9.216-9.216 9.216 4.16 9.216 9.216-4.16 9.216-9.216 9.216zM708.544 805.728c-127.136 0-233.76-90.304-258.688-210.272h-321.376v67.712c0 18.72 15.136 33.856 33.856 33.856h257.216c5.952 0 10.976 5.056 10.976 10.976s-5.056 10.976-10.976 10.976h-257.216c-30.592 0-55.84-24.96-55.84-55.84v-488.288c0-30.592 24.96-55.84 55.84-55.84h513.248c5.952 0 10.976 5.056 10.976 10.976s-5.056 10.976-10.976 10.976h-304.736v432.448h75.456c-1.184-10.4-1.792-21.088-1.792-31.776 0-61.792 21.696-121.76 61.472-169.28 3.872-4.736 8.032-9.216 12.192-13.664l7.712-7.712c49.312-47.232 114.336-73.376 182.944-73.376s133.344 26.144 182.656 73.376c7.136 6.816 13.664 13.952 19.904 21.376 39.488 47.232 61.472 107.52 61.472 169.28 0 145.536-118.496 264.032-264.032 264.032h-0.288zM348.864 141.024h-37.408v326.72c0 5.344-4.448 9.792-9.792 9.792h-173.44v95.936h220.384v-432.448h0.288zM894.464 386.368c-5.632-6.816-11.872-13.376-18.112-19.616-45.152-43.36-104.544-67.424-167.52-67.424s-122.368 23.776-167.52 67.136l-2.368 2.080-4.736 4.736c-3.872 4.16-7.712 8.32-11.296 12.48-36.224 43.648-56.448 98.624-56.448 155.328 0 133.664 108.704 242.048 242.048 242.048s242.048-108.704 242.048-242.048c0-57.76-19.904-111.968-56.448-155.328l0.288 0.608zM893.888 219.456h-434.816c-5.952 0-10.976-5.056-10.976-10.976s5.056-10.976 10.976-10.976h434.816c5.952 0 10.976 5.056 10.976 10.976s-5.056 10.976-10.976 10.976zM778.944 403.296h-31.488c-3.872 0-6.816 2.976-6.816 6.816v179.68c0 3.872-2.976 6.816-6.816 6.816h-82.56c-3.872 0-6.816-2.976-6.816-6.816v-21.376c0-3.872 2.976-6.816 6.816-6.816h31.488c3.872 0 6.816-2.976 6.816-6.816v-144.928c0-3.872-2.976-6.816-6.816-6.816h-54.944c-3.872 0-6.816-2.976-6.816-6.816v-19.296c0-3.872 2.976-6.816 6.816-6.816h151.168c3.872 0 6.816 2.976 6.816 6.816v19.296c0 3.872-2.976 6.816-6.816 6.816v0.288zM739.168 677.152c0-19.68-15.968-35.648-35.648-35.648s-35.648 15.968-35.648 35.648c0 19.68 15.968 35.648 35.648 35.648s35.648-15.968 35.648-35.648z" /> +<glyph unicode="" glyph-name="post-list" d="M181.344 765.888h194.048c29.536 0 53.504-23.968 53.504-53.504v-194.048c0-29.536-23.968-53.504-53.504-53.504h-194.048c-29.536 0-53.504 23.968-53.504 53.504v194.048c0 29.536 23.968 53.504 53.504 53.504zM181.344 431.136h194.048c29.536 0 53.504-23.968 53.504-53.504v-194.048c0-29.536-23.968-53.504-53.504-53.504h-194.048c-29.536 0-53.504 23.968-53.504 53.504v194.048c0 29.536 23.968 53.504 53.504 53.504zM872.672 667.68h-381.152c-12.96 0-23.488-10.528-23.488-23.488v-125.024c0-12.96 10.528-23.488 23.488-23.488h381.152c12.96 0 23.488 10.528 23.488 23.488v125.024c0 12.96-10.528 23.488-23.488 23.488zM853.184 538.656h-342.144v86.016h342.144v-86.016zM489.504 692.096h245.44c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-245.44c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM872.672 332.928h-381.152c-12.96 0-23.488-10.528-23.488-23.488v-125.024c0-12.96 10.528-23.488 23.488-23.488h381.152c12.96 0 23.488 10.528 23.488 23.488v125.024c0 12.96-10.528 23.488-23.488 23.488zM853.184 203.904h-342.144v86.016h342.144v-86.016zM734.944 357.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-245.44c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h245.44z" /> +<glyph unicode="" glyph-name="post-navigation" d="M130.144 690.24c0-5.28 4.352-9.28 9.28-9.28s9.28 4.352 9.28 9.28-4.352 9.28-9.28 9.28-9.28-4.352-9.28-9.28zM191.776 690.24c0-5.12-4.16-9.28-9.28-9.28s-9.28 4.16-9.28 9.28c0 5.12 4.16 9.28 9.28 9.28s9.28-4.16 9.28-9.28zM149.024 545.28h123.616c6.208 0 11.456 5.28 11.456 11.456s-5.28 11.456-11.456 11.456h-123.616c-6.208 0-11.456-5.28-11.456-11.456s5.28-11.456 11.456-11.456zM965.28 518.016h-530.336c-6.208 0-11.456-5.28-11.456-11.456v-245.664c0-6.208 5.28-11.456 11.456-11.456h214.368v-56.064c0-19.52-15.808-35.328-35.328-35.328h-271.040v451.040h92c6.208 0 11.456 5.28 11.456 11.456s-5.28 11.456-11.456 11.456h-344.768v70.624c0 19.52 15.808 35.328 35.328 35.328h488.512c19.52 0 35.328-15.808 35.328-35.328v-125.152h-214.368c-6.208 0-11.456-5.28-11.456-11.456s5.28-11.456 11.456-11.456h453.504c6.208 0 11.456 5.28 11.456 11.456s-5.28 11.456-11.456 11.456h-216.224v125.152c0 31.904-26.016 58.24-58.24 58.24h-488.512c-31.904 0-58.24-26.016-58.24-58.24v-509.28c0-31.904 26.016-58.24 58.24-58.24h488.512c31.904 0 58.24 26.016 58.24 58.24v56.064h293.056c6.208 0 11.456 5.28 11.456 11.456v245.664c0 6.208-5.28 11.456-11.456 11.456zM320.32 609.088v-451.040h-39.040v340.768c0 5.568-4.64 10.208-10.208 10.208h-180.896v100.064h230.176zM446.72 495.072h241.632v-222.72h-241.632v222.72zM953.824 272.352h-242.88v222.72h242.88v-222.72zM793.376 421.664l66.592-45.536-66.592-45.536c-5.28-3.712-6.496-10.848-3.104-15.808 2.176-3.104 5.888-4.96 9.6-4.96s4.352 0.608 6.496 1.856l80.544 54.816c3.104 2.176 4.96 5.568 4.96 9.6s-1.856 7.424-4.96 9.6l-80.544 54.816c-5.28 3.424-12.384 2.176-15.808-3.104s-2.176-12.384 3.104-15.808h-0.32zM602.848 330.912l-66.592 45.536 66.592 45.536c5.28 3.712 6.496 10.848 3.104 15.808-3.424 5.28-10.848 6.496-15.808 3.104l-80.544-54.816c-3.104-2.176-4.96-5.568-4.96-9.6s1.856-7.424 4.96-9.6l80.544-54.816c1.856-1.248 4.352-1.856 6.496-1.856 3.712 0 7.136 1.856 9.6 4.96 3.424 5.28 2.176 12.384-3.104 15.808h-0.32z" /> +<glyph unicode="" glyph-name="post-title" d="M500.032 452.256l-65.344-189.568h39.616l12.128 38.912h80.32l12.128-38.912h39.616l-65.696 189.568h-52.832zM494.304 327.296l29.984 96.032h3.936l30.336-96.032h-64.256zM694.944 280.544c4.288-6.784 9.984-12.128 16.768-16.064 7.136-3.936 15.36-5.696 24.992-5.696s23.904 3.2 32.832 9.984 16.064 15.712 21.056 27.488 7.488 24.992 7.488 40.352-2.496 29.984-7.488 41.76-12.128 21.056-21.056 27.84c-8.928 6.432-20 9.984-32.128 9.984s-17.856-2.144-24.64-6.080-12.128-9.632-16.064-16.416c-4.288-7.136-7.488-15.008-9.984-24.288h-5.696c1.056 6.080 1.792 11.776 2.848 17.152 0.704 5.696 1.44 11.072 2.144 16.416s1.056 10.368 1.056 15.008v48.544h-36.064v-130.304c0 0 0-73.536 0-73.536h30.688l-0.704 42.496h4.992c1.792-9.632 4.992-17.856 9.28-24.64h-0.352zM686.752 340.16c0 3.584 0.352 7.488 1.44 11.776s2.496 8.576 4.64 12.48 4.992 7.84 7.84 11.072c3.2 3.2 6.784 6.080 10.72 7.84 3.936 2.144 8.576 2.848 13.92 2.848 7.488 0 13.568-2.144 18.912-6.080 4.992-4.288 8.928-9.984 11.776-17.152 2.848-7.488 4.288-15.712 4.288-25.344s-1.44-18.208-4.288-25.696-6.784-13.216-12.128-17.152-11.776-6.080-19.264-6.080-11.776 1.44-16.768 4.288-8.928 6.784-12.128 11.424-5.344 9.632-7.136 15.008c-1.44 5.344-2.144 10.72-2.144 15.36v4.992l0.352 0.352zM939.52 318.4c-0.704-5.696-2.144-10.72-4.64-15.36s-6.432-8.576-11.072-11.776c-4.992-2.848-11.424-4.288-19.264-4.288s-16.064 2.144-21.792 6.080-10.368 9.632-13.216 17.504c-2.848 7.488-4.288 16.768-4.288 27.136s0.704 14.624 2.144 20.704 3.936 11.424 6.784 16.064c2.848 4.288 6.784 7.84 11.072 10.368 4.64 2.496 9.632 3.584 16.064 3.584s11.424-1.056 16.064-3.584 8.224-6.080 11.072-10.72c2.496-4.64 4.288-9.632 4.64-15.36l33.92 10.72c-1.792 9.632-5.344 18.208-11.072 25.344s-12.864 12.864-21.792 16.768-19.264 5.696-31.424 5.696-22.848-2.144-32.128-6.080-16.768-9.632-23.2-16.768c-6.080-7.136-11.072-15.712-14.272-25.696s-4.992-20.352-4.992-32.128 1.44-21.056 4.64-30.336 7.84-17.504 13.92-24.64 13.92-12.48 23.552-16.416 20.704-5.696 33.92-5.696 19.648 1.44 27.488 3.936 14.624 6.080 20 10.72c5.696 4.64 9.984 9.984 13.216 16.768 3.2 6.432 5.344 13.568 6.784 21.056l-32.128 6.784v-0.352zM716.384 114.88h-361.312v506.976h190.304c7.136 0 13.216 6.080 13.216 13.216s-6.080 13.216-13.216 13.216h-474.464v79.264c0 21.792 17.504 39.264 39.264 39.264h628.704l-111.744-111.744c-5.344-5.344-8.576-12.128-9.632-19.648l-10.368-78.912c-0.704-5.696 1.44-11.776 5.344-15.712 3.584-3.584 8.224-5.344 13.216-5.344s1.792 0 2.496 0l78.528 10.368c7.488 1.056 14.272 4.288 19.648 9.632l45.344 45.344c0 0 0 0 0 0l160.288 160.288c6.432 6.432 9.984 15.008 9.984 23.904s-3.584 17.504-9.984 23.936l-51.776 51.776c-12.864 12.864-35.36 12.864-47.84 0l-13.92-13.92c0 0-54.624-54.624-54.624-54.624-1.44 0.352-2.848 0.704-4.64 0.704h-649.76c-36.416 0-65.696-29.632-65.696-65.696v-573.024c0-36.416 29.632-65.696 65.696-65.696h606.592c7.136 0 13.216 6.080 13.216 13.216s-6.080 13.216-13.216 13.216h0.352zM753.152 619.36c-7.84-7.84-21.056-7.84-28.928 0l-7.136 7.136 142.464 142.464 21.792-21.792-127.808-127.808h-0.352zM698.176 645.056l-7.136 7.136c-7.84 7.84-7.84 21.056 0 28.928l127.808 127.808 21.792-21.792-142.464-142.464v0.352zM703.52 571.52l-68.896-8.928 8.928 68.896c0 1.792 1.056 3.2 2.144 4.288l15.712 15.712c2.144-6.432 6.080-12.864 11.072-17.856l33.216-33.216c5.344-5.344 11.424-8.928 17.856-11.072l-15.712-15.712c-1.056-1.056-2.848-1.792-4.288-2.144zM851.328 841.76c1.44 1.44 3.2 2.144 5.344 2.144s3.936-0.704 5.344-2.144l51.776-51.776c1.44-1.44 2.144-3.2 2.144-5.344s-0.704-3.936-2.144-5.344l-13.92-13.92-62.464 62.464 13.92 13.92zM328.64 621.856v-506.976h-43.552v383.072c0 6.432-4.992 11.424-11.424 11.424h-203.136v112.096h258.112v0.352zM136.224 713.248c0-5.92-4.8-10.72-10.72-10.72s-10.72 4.8-10.72 10.72c0 5.92 4.8 10.72 10.72 10.72s10.72-4.8 10.72-10.72zM184.768 713.248c0-5.92-4.8-10.72-10.72-10.72s-10.72 4.8-10.72 10.72c0 5.92 4.8 10.72 10.72 10.72s10.72-4.8 10.72-10.72zM136.224 550.080h139.232c7.136 0 13.216 6.080 13.216 13.216s-6.080 13.216-13.216 13.216h-139.232c-7.136 0-13.216-6.080-13.216-13.216s6.080-13.216 13.216-13.216zM857.76 204.864h-405.92c-7.136 0-13.216-6.080-13.216-13.216s6.080-13.216 13.216-13.216h405.92c7.136 0 13.216 6.080 13.216 13.216s-6.080 13.216-13.216 13.216z" /> +<glyph unicode="" glyph-name="presentation" d="M928 928h-64c-23.584 0-44-12.96-55.104-32h-593.792c-11.104 19.040-31.52 32-55.104 32h-64c-35.296 0-64-28.704-64-64v-128c0-23.584 12.96-44 32-55.104v-424.896c0-35.296 28.704-64 64-64h352v-37.6c-37.248-13.216-64-48.672-64-90.4 0-52.928 43.040-96 96-96s96 43.072 96 96c0 41.696-26.784 77.184-64 90.4v37.6h352c35.296 0 64 28.704 64 64v424.896c19.040 11.104 32 31.52 32 55.104v128c0 35.296-28.704 64-64 64zM512 32c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM928 864v-128h-64v128h64zM800 768h-576v64h576v-64zM96 864h64v-128h-64l-0.032 128h0.032zM128 256v416h32c23.584 0 44 12.96 55.104 32h593.792c11.104-19.040 31.52-32 55.104-32h32v-416h-768zM448 384h-224v40.928l61.568 20.512 52.16-26.080c10.24-5.088 22.496-4.352 32.064 2.016l96 64c14.72 9.792 18.688 29.664 8.864 44.352s-29.664 18.72-44.352 8.864l-80.544-53.696-47.392 23.712c-7.616 3.776-16.384 4.384-24.448 1.728l-53.888-17.952v19.616c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-17.664 14.336-32 32-32h256c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 576h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM448 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 640h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 512h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM800 384h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="price-list" d="M683.008 151.36h-490.816c-12.064 0-21.824-9.76-21.824-21.824s9.792-21.824 21.824-21.824h490.816c12.064 0 21.824 9.76 21.824 21.824s-9.76 21.824-21.824 21.824zM193.024 767.008h490.816c12.064 0 21.824-9.76 21.824-21.824v-41.92c0-12.064-9.76-21.824-21.824-21.824h-490.816c-12.064 0-21.824 9.76-21.824 21.824v41.92c0 12.064 9.76 21.824 21.824 21.824zM192.16 617.888h490.816c12.064 0 21.824 9.792 21.824 21.824s-9.76 21.824-21.824 21.824h-490.816c-12.064 0-21.824-9.792-21.824-21.824s9.792-21.824 21.824-21.824zM839.712 652.672c-4.864-1.728-10.848-2.592-17.984-2.592-7.296 0-13.856 1.12-19.68 3.328s-10.368 5.568-13.696 10.048c-3.328 4.416-5.088 10.144-5.248 17.152l-29.536-9.088c0.32-7.936 2.048-14.816 5.248-20.608s7.648-10.656 13.472-14.56c5.792-3.904 12.704-6.752 20.736-8.576 4.384-0.992 9.088-1.696 14.080-2.144l-5.376-31.104h32.192l-5.536 30.752c10.88 0.576 20.32 2.304 28.288 5.248 9.92 3.648 17.44 8.864 22.528 15.616s7.616 14.72 7.616 23.936c0 8.736-1.92 15.872-5.728 21.344s-8.704 9.888-14.656 13.216c-5.952 3.328-12.448 5.984-19.424 8s-13.76 3.68-20.256 5.12c-6.976 1.44-13.472 3.008-19.424 4.768-5.952 1.728-10.656 3.968-14.080 6.656s-5.12 6.208-5.12 10.496c0 3.2 1.12 6.112 3.328 8.832 2.208 2.688 5.568 4.832 10.016 6.432s9.76 2.368 15.968 2.368c5.248 0 9.92-0.608 14.048-1.888s7.648-3.104 10.592-5.472 5.152-5.344 6.688-8.96c1.504-3.552 2.272-7.648 2.272-12.256l30.272 8.128c-0.48 9.344-3.296 17.44-8.448 24.192s-12.448 12-21.792 15.744c-6.624 2.624-14.112 4.288-22.464 5.056l5.28 29.824h-32.192l5.088-29.824c-8.544-0.768-16.032-2.496-22.464-5.216-9.056-3.808-15.968-9.12-20.736-15.968s-7.136-14.88-7.136-24.064c0-8.128 1.728-14.816 5.248-20.128s8.224-9.664 14.176-13.024c5.952-3.328 12.576-6.080 19.904-8.224s14.848-4.096 22.624-5.856c6.976-1.568 13.184-3.168 18.592-4.768s9.664-3.648 12.736-6.208c3.104-2.528 4.64-5.632 4.64-9.28 0-3.488-1.248-6.656-3.68-9.536s-6.112-5.152-10.976-6.912zM193.024 256.8h490.816c12.064 0 21.824-9.76 21.824-21.824v-41.92c0-12.064-9.76-21.824-21.824-21.824h-490.816c-12.064 0-21.824 9.76-21.824 21.824v41.92c0 12.064 9.76 21.824 21.824 21.824zM866.432 194.432c-5.952 3.36-12.448 5.984-19.424 8-6.976 1.984-13.76 3.68-20.256 5.12-6.976 1.408-13.472 3.008-19.424 4.768s-10.656 3.968-14.080 6.656c-3.424 2.72-5.12 6.24-5.12 10.496 0 3.2 1.12 6.112 3.328 8.832 2.208 2.688 5.568 4.832 10.016 6.432s9.76 2.368 15.968 2.368c5.248 0 9.92-0.608 14.048-1.888s7.648-3.104 10.592-5.472 5.152-5.344 6.688-8.96c1.504-3.552 2.272-7.648 2.272-12.256l30.272 8.128c-0.48 9.344-3.296 17.44-8.448 24.192s-12.448 12-21.792 15.744c-6.624 2.624-14.112 4.288-22.464 5.056l5.28 29.824h-32.192l5.088-29.824c-8.544-0.768-16.032-2.496-22.464-5.216-9.056-3.808-15.968-9.12-20.736-15.968-4.768-6.816-7.136-14.88-7.136-24.064 0-8.128 1.728-14.816 5.248-20.128s8.224-9.664 14.176-13.024c5.952-3.328 12.576-6.080 19.904-8.192s14.848-4.096 22.624-5.856c6.976-1.568 13.184-3.168 18.592-4.768s9.664-3.648 12.736-6.208c3.104-2.528 4.64-5.632 4.64-9.28 0-3.488-1.248-6.656-3.68-9.536s-6.112-5.152-10.976-6.912c-4.864-1.728-10.848-2.592-17.984-2.592-7.296 0-13.856 1.12-19.68 3.328-5.792 2.24-10.368 5.568-13.696 10.048-3.328 4.416-5.088 10.144-5.248 17.152l-29.536-9.088c0.32-7.936 2.048-14.816 5.248-20.608s7.648-10.656 13.472-14.56c5.792-3.904 12.704-6.752 20.736-8.576 4.384-0.992 9.088-1.696 14.080-2.144l-5.376-31.104h32.192l-5.536 30.752c10.88 0.576 20.32 2.304 28.288 5.248 9.92 3.648 17.44 8.864 22.528 15.616s7.616 14.72 7.616 23.936c0 8.736-1.92 15.872-5.728 21.344s-8.704 9.888-14.656 13.216zM193.024 511.904h490.816c12.064 0 21.824-9.76 21.824-21.824v-41.92c0-12.064-9.76-21.824-21.824-21.824h-490.816c-12.064 0-21.824 9.76-21.824 21.824v41.92c0 12.064 9.76 21.824 21.824 21.824zM192.16 362.816h490.816c12.064 0 21.824 9.76 21.824 21.824s-9.76 21.824-21.824 21.824h-490.816c-12.064 0-21.824-9.76-21.824-21.824s9.792-21.824 21.824-21.824zM866.432 449.536c-5.952 3.328-12.448 5.984-19.424 8s-13.76 3.68-20.256 5.12c-6.976 1.408-13.472 3.008-19.424 4.768s-10.656 3.968-14.080 6.656c-3.424 2.72-5.12 6.208-5.12 10.496 0 3.2 1.12 6.112 3.328 8.832s5.568 4.832 10.016 6.432c4.448 1.568 9.76 2.368 15.968 2.368 5.248 0 9.92-0.608 14.048-1.888s7.648-3.104 10.592-5.472 5.152-5.344 6.688-8.96c1.504-3.552 2.272-7.648 2.272-12.256l30.272 8.128c-0.48 9.344-3.296 17.44-8.448 24.192s-12.448 12-21.792 15.744c-6.624 2.624-14.112 4.288-22.464 5.056l5.28 29.824h-32.192l5.088-29.824c-8.544-0.768-16.032-2.496-22.464-5.216-9.056-3.808-15.968-9.152-20.736-15.968s-7.136-14.88-7.136-24.064c0-8.128 1.728-14.816 5.248-20.128s8.224-9.664 14.176-12.992c5.952-3.328 12.576-6.080 19.904-8.192s14.848-4.096 22.624-5.856c6.976-1.568 13.184-3.168 18.592-4.768s9.664-3.648 12.736-6.208c3.104-2.528 4.64-5.632 4.64-9.28 0-3.488-1.248-6.656-3.68-9.536s-6.112-5.152-10.976-6.912c-4.864-1.728-10.848-2.592-17.984-2.592-7.296 0-13.856 1.12-19.68 3.328-5.792 2.24-10.368 5.568-13.696 10.048s-5.088 10.144-5.248 17.152l-29.536-9.088c0.32-7.936 2.048-14.816 5.248-20.608s7.648-10.656 13.472-14.56c5.792-3.904 12.704-6.752 20.736-8.576 4.384-0.992 9.088-1.696 14.080-2.144l-5.376-31.104h32.192l-5.536 30.752c10.88 0.576 20.32 2.304 28.288 5.248 9.92 3.648 17.44 8.864 22.528 15.616s7.616 14.72 7.616 23.936c0 8.736-1.92 15.872-5.728 21.344s-8.704 9.888-14.656 13.216z" /> +<glyph unicode="" glyph-name="price-table" d="M582.688 226.4c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-141.376c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h141.376zM669.056 205.856h-314.112c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h314.112c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM329.088 421.792v-99.968c0-14.048 11.424-25.504 25.504-25.504h335.232c14.048 0 25.504 11.456 25.504 25.504v99.968c0 14.048-11.456 25.504-25.504 25.504h-335.232c-14.048 0-25.504-11.456-25.504-25.504zM372.224 385.6h34.304l6.080 18.688 4.544 13.984c0.128 0.352 0.608 0.352 0.736 0l4.544-13.984 6.080-18.688h34.336c0.384 0 0.512-0.48 0.224-0.704l-27.776-20.192 8.256-25.408 2.368-7.232c0.128-0.352-0.288-0.672-0.608-0.448l-27.776 20.192-27.776-20.192c-0.32-0.224-0.736 0.096-0.608 0.448l2.368 7.232 8.256 25.408-27.712 20.128v0.736c0.032 0.032 0.096 0.032 0.16 0.032zM476.864 372.096c0 3.424 1.408 6.528 3.648 8.768s5.376 3.648 8.768 3.648h164c6.848 0 12.384-5.568 12.384-12.384 0-3.456-1.376-6.528-3.648-8.768s-5.344-3.648-8.768-3.648h-164c-6.848 0-12.416 5.568-12.416 12.416zM463.648 600.192c6.528-3.616 13.792-6.656 21.824-8.992s16.288-4.48 24.832-6.432c7.68-1.728 14.464-3.456 20.416-5.248 5.92-1.728 10.592-4 14.016-6.784s5.088-6.208 5.088-10.208c0-3.84-1.376-7.296-4.064-10.464s-6.72-5.664-12.032-7.584c-5.344-1.92-11.904-2.848-19.744-2.848-8.032 0-15.232 1.216-21.568 3.648s-11.392 6.112-15.040 11.008c-3.648 4.864-5.568 11.168-5.76 18.848l-32.416-9.952c0.352-8.704 2.272-16.256 5.76-22.592 3.488-6.4 8.384-11.712 14.784-15.968s13.952-7.392 22.752-9.408c4.832-1.088 9.952-1.888 15.424-2.368l-5.888-34.112h35.296l-6.048 33.728c11.936 0.608 22.304 2.56 31.040 5.792 10.88 4 19.136 9.728 24.736 17.12 5.568 7.424 8.352 16.128 8.352 26.272 0 9.568-2.112 17.376-6.272 23.392s-9.536 10.848-16.096 14.528c-6.528 3.648-13.632 6.56-21.312 8.768s-15.072 4.032-22.208 5.6c-7.68 1.568-14.784 3.296-21.312 5.248-6.528 1.888-11.712 4.352-15.424 7.296-3.744 3.008-5.632 6.848-5.632 11.52 0 3.488 1.216 6.688 3.648 9.696 2.432 2.944 6.112 5.312 10.976 7.072s10.72 2.592 17.504 2.592c5.76 0 10.912-0.672 15.424-2.048s8.384-3.392 11.616-6.016c3.232-2.624 5.664-5.888 7.328-9.824s2.496-8.384 2.496-13.472l33.216 8.896c-0.512 10.272-3.616 19.136-9.28 26.528s-13.632 13.152-23.904 17.248c-7.264 2.88-15.488 4.736-24.64 5.568l5.792 32.704h-35.296l5.568-32.704c-9.376-0.864-17.568-2.752-24.672-5.728-9.952-4.192-17.504-10.016-22.752-17.504s-7.84-16.32-7.84-26.432c0-8.896 1.92-16.256 5.76-22.080s9.024-10.592 15.552-14.272zM152.512 705.664h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-37.76 0-68.48-31.936-68.48-71.2v-493.664c0-39.264 30.72-71.2 68.48-71.2h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-14.048 0-25.472 12.64-25.472 28.192v493.664c0 15.552 11.424 28.192 25.472 28.192zM871.488 748.672h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c14.048 0 25.472-12.64 25.472-28.192v-493.664c0-15.552-11.424-28.192-25.472-28.192h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c37.76 0 68.48 31.936 68.48 71.2v493.664c0 39.264-30.72 71.2-68.48 71.2zM728.448 831.168h-443.552c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h443.552c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM726.944 105.824h-440.576v574.688l114.624 107.648h325.952v-682.336z" /> +<glyph unicode="" glyph-name="pricing-compare" d="M448.128 788.512h127.744c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-127.744c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM591.040 128.8h-127.744c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h127.744c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM703.616 788.512h127.744c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-127.744c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM150.048 575.584h723.904c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-723.904c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM192.608 682.048h127.744c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-127.744c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472zM469.248 703.488c0-23.584 19.168-42.752 42.752-42.752s42.752 19.168 42.752 42.752-19.168 42.752-42.752 42.752-42.752-19.168-42.752-42.752zM512 703.328c-0.096 0-0.16 0.064-0.16 0.16s0.064 0.16 0.16 0.16c0.128 0 0.16-0.064 0.192-0.16s-0.064-0.16-0.16-0.16zM729.856 668.224c4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l6.112 6.112 7.296-7.296c4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272c8.384 8.384 8.384 21.952 0 30.336l-7.296 7.296 7.296 7.296c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-7.296-7.296-4.928 4.928c-8.384 8.384-21.952 8.384-30.336 0s-8.384-21.952 0-30.336l4.928-4.928-6.112-6.112c-8.384-8.384-8.384-21.952 0-30.336zM873.952 405.568h-723.904c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h723.904c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM192.608 512.032c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h127.744c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-127.744zM469.248 490.592c0-23.584 19.168-42.752 42.752-42.752s42.752 19.168 42.752 42.752-19.168 42.752-42.752 42.752-42.752-19.168-42.752-42.752zM512 490.432c-0.096 0-0.16 0.064-0.16 0.16s0.064 0.16 0.16 0.16c0.128 0 0.16-0.064 0.192-0.16s-0.064-0.16-0.16-0.16zM724.16 490.592c0-23.584 19.168-42.752 42.752-42.752s42.752 19.168 42.752 42.752-19.168 42.752-42.752 42.752-42.752-19.168-42.752-42.752zM766.912 490.432c-0.096 0-0.16 0.064-0.16 0.16s0.064 0.16 0.16 0.16c0.128 0 0.16-0.064 0.192-0.16s-0.064-0.16-0.16-0.16zM873.952 192.672h-723.904c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h723.904c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM320.384 256.224c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-127.744c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h127.744zM554.752 277.664c0 23.584-19.168 42.752-42.752 42.752s-42.752-19.168-42.752-42.752 19.168-42.752 42.752-42.752 42.752 19.168 42.752 42.752zM512 277.824c0.128 0 0.16-0.064 0.192-0.16s-0.064-0.16-0.16-0.192c-0.128 0-0.16 0.064-0.16 0.16s0.064 0.16 0.16 0.16zM729.856 242.4c4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.080 15.168 6.272l6.112 6.112 7.296-7.296c4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.080 15.168 6.272c8.384 8.384 8.384 21.952 0 30.336l-7.296 7.296 7.296 7.296c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-7.296-7.296-4.928 4.928c-8.384 8.384-21.952 8.384-30.336 0s-8.384-21.952 0-30.336l4.928-4.928-6.112-6.112c-8.384-8.384-8.384-21.952 0-30.336z" /> +<glyph unicode="" glyph-name="pricing-image-box" d="M582.144 324.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-140.288c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h140.288zM667.84 191.168h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM667.84 276.48h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM667.84 432.128h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM152.512 705.664h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-37.76 0-68.48-31.936-68.48-71.2v-493.664c0-39.264 30.72-71.2 68.48-71.2h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-14.048 0-25.472 12.64-25.472 28.192v493.664c0 15.552 11.424 28.192 25.472 28.192zM871.488 748.672h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c14.048 0 25.472-12.64 25.472-28.224v-493.664c0-15.552-11.424-28.192-25.472-28.192h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c37.76 0 68.48 31.936 68.48 71.2v493.664c0 39.264-30.72 71.2-68.48 71.2zM663.584 724.48h-104.352c1.728-3.52 2.688-8.192 2.688-14.336 0-2.432-0.128-4.832-0.448-7.168-0.928-7.744-3.392-15.008-7.040-21.504-10.048-17.888-29.216-29.984-51.168-29.984s-41.12 12.064-51.168 29.984c-3.648 6.496-6.112 13.76-7.040 21.504-0.288 2.336-0.448 4.736-0.448 7.168 0 6.144 0.928 10.816 2.688 14.336h-85.792c-22.88 0-41.504-18.624-41.504-41.504v-136.512l43.008 43.008s21.504 21.504 21.504 21.504c12 11.968 31.168 12.672 43.936 1.984l86.464-56.032 74.368 84.032c7.776 8.8 21.184 9.728 30.112 2.080l85.632-73.408v113.376c0 22.88-18.624 41.504-41.504 41.504zM662.080 549.856l-54.56 46.784-56.096-63.36 4.448-2.88c8.448-5.472 11.808-15.904 8.64-24.992-0.544-1.632-1.312-3.232-2.272-4.736-6.464-9.952-19.776-12.8-29.728-6.336l-123.648 80.16-84.832-84.832c-0.352-0.352-0.736-0.704-1.088-0.992 6.080-15.36 21.088-26.272 38.592-26.272h302.048c22.88 0 41.504 18.624 41.504 41.504v9.088l-43.008 36.864zM728.448 831.168h-443.552c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h443.552c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM726.944 105.824h-440.576v574.688l114.592 107.648h325.952v-682.336z" /> +<glyph unicode="" glyph-name="pricing-list" d="M315.136 495.328c0-11.872 9.632-21.504 21.504-21.504h340.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-340.608c-11.872 0-21.504-9.632-21.504-21.504zM577.088 227.936c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-140.288c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h140.288zM662.816 207.872h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM417.824 652.704c3.456-5.888 8.096-10.272 13.92-13.088s12.448-4.256 19.936-4.256c6.528 0 12.832 1.248 18.912 3.744s11.104 6.688 14.976 12.576c3.872 5.888 5.792 13.696 5.792 23.392 0 8.864-1.728 16.192-5.184 22.016-3.424 5.824-8.128 10.208-14.016 13.12s-12.512 4.352-19.872 4.352c-4.992 0-9.824-0.736-14.528-2.176s-8.928-3.712-12.672-6.784c-3.744-3.040-6.752-7.104-9.056-12.256s-3.424-11.36-3.424-18.688c0-8.736 1.728-16.032 5.184-21.888zM436.928 686.56c1.664 2.688 3.744 4.672 6.336 5.92 2.528 1.248 5.28 1.888 8.192 1.888s5.728-0.672 8.512-1.984c2.752-1.312 5.056-3.424 6.848-6.336s2.688-6.848 2.688-11.84c0-4.736-0.832-8.416-2.496-11.136s-3.808-4.672-6.432-5.92c-2.624-1.248-5.344-1.856-8.096-1.856-3.072 0-5.952 0.672-8.736 2.048s-5.024 3.552-6.752 6.528c-1.728 3.008-2.592 6.848-2.592 11.552s0.832 8.416 2.496 11.136zM534.784 633.376c-3.744-3.104-6.752-7.232-8.928-12.352s-3.328-11.36-3.328-18.688c0-8.736 1.696-16 5.088-21.792s8.032-10.176 13.92-13.088c5.888-2.912 12.512-4.352 19.84-4.352 6.528 0 12.832 1.28 18.912 3.84s11.136 6.752 15.072 12.576 5.92 13.568 5.92 23.296c0 8.864-1.728 16.256-5.216 22.112s-8.16 10.272-14.112 13.088-12.608 4.256-19.936 4.256c-4.864 0-9.664-0.704-14.432-2.080s-9.024-3.648-12.768-6.752zM553.088 620.288c2.624 1.312 5.408 1.984 8.288 1.984s5.728-0.672 8.416-1.984 4.96-3.424 6.752-6.336 2.688-6.944 2.688-12.064c0-4.704-0.832-8.384-2.496-11.104s-3.808-4.64-6.432-5.824-5.312-1.76-8.096-1.76c-2.912 0-5.792 0.64-8.608 1.952s-5.088 3.456-6.752 6.432c-1.664 2.976-2.496 6.848-2.496 11.552s0.768 8.416 2.368 11.136c1.6 2.688 3.712 4.704 6.336 6.016zM477.44 570.528l82.272 137.12h-25.76l-82.272-137.12h25.76zM350.752 447.456c-14.048 0-25.504-11.456-25.504-25.504v-99.168c0-14.048 11.424-25.504 25.504-25.504h332.608c14.048 0 25.504 11.456 25.504 25.504v99.168c0 14.048-11.456 25.504-25.504 25.504h-332.608zM402.304 386.080l10.528 32.384c0.128 0.352 0.64 0.352 0.736 0l10.56-32.416h34.048c0.384 0 0.544-0.512 0.256-0.736l-27.552-20.032 8.128-25.056 2.368-7.328c0.128-0.352-0.288-0.672-0.608-0.448l-27.552 20.032-27.552-20.032c-0.32-0.224-0.736 0.096-0.608 0.448l2.368 7.328 8.128 25.056-27.328 19.84v0.896h34.048zM472.064 372.672c0 3.392 1.376 6.496 3.616 8.736s5.312 3.616 8.704 3.616h162.752c6.784 0 12.32-5.504 12.32-12.32 0-3.392-1.376-6.496-3.616-8.704s-5.312-3.616-8.736-3.616h-162.752c-6.816 0-12.288 5.504-12.288 12.288zM152.512 705.664h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-37.76 0-68.48-31.936-68.48-71.2v-493.664c0-39.264 30.72-71.2 68.48-71.2h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-14.048 0-25.472 12.64-25.472 28.192v493.664c0 15.552 11.424 28.192 25.472 28.192zM871.488 748.672h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c14.048 0 25.472-12.64 25.472-28.192v-493.664c0-15.552-11.424-28.192-25.472-28.192h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c37.76 0 68.48 31.936 68.48 71.2v493.664c0 39.264-30.72 71.2-68.48 71.2zM728.448 831.168h-443.552c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h443.552c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM726.944 105.824h-440.576v574.688l114.624 107.648h325.952v-682.336z" /> +<glyph unicode="" glyph-name="pricing-table" d="M377.696 496c14.048 0 25.472-11.52 25.472-25.696 0-14.048-11.424-25.472-25.472-25.472-8.896 0-14.816 4.032-18.208 7.424-12.48 12.512-32.736 12.512-45.248 0.032s-12.512-32.768-0.032-45.248c9.056-9.056 19.808-15.744 31.456-20.192v-2.88c0-17.664 14.336-32 32-32s32 14.336 32 32v2.88c33.568 12.928 57.472 45.408 57.472 83.456 0 49.472-40.16 89.696-89.472 89.696-14.176 0-25.696 11.52-25.696 25.696 0 14.048 11.52 25.472 25.696 25.472 6.816 0 13.248-2.624 18.016-7.424 12.48-12.48 32.768-12.48 45.248 0s12.48 32.768 0 45.248c-9.024 9.024-19.712 15.68-31.296 20.128v2.912c0 17.664-14.336 32-32 32s-32-14.336-32-32v-2.816c-33.696-12.896-57.696-45.408-57.696-83.456 0-49.472 40.256-89.696 89.696-89.696zM704 704h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32zM544 544h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM512 320h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM681.376 342.624l-41.376-41.376-9.376 9.376c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.736 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.736 0 45.248s-32.736 12.48-45.248 0zM512 160h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM694.624 182.624c-12.48 12.48-32.736 12.48-45.248 0l-9.376-9.376-9.376 9.376c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.736 0-45.248l9.376-9.376-9.376-9.376c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l9.376 9.376 9.376-9.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-9.376 9.376 9.376 9.376c12.48 12.48 12.48 32.736 0 45.248zM960 864h-128v32c0 17.664-14.336 32-32 32h-576c-17.664 0-32-14.336-32-32v-32h-128c-17.664 0-32-14.336-32-32v-768c0-17.664 14.336-32 32-32h128v-32c0-17.664 14.336-32 32-32h576c17.664 0 32 14.336 32 32v32h128c17.664 0 32 14.336 32 32v768c0 17.664-14.336 32-32 32zM928 800v-96h-96v96h96zM256 864h512v-64h-512v64zM192 800v-96h-96v96h96zM96 96v544h96v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-160h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-96zM768 32h-512v704h512v-704zM832 96v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v160h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32v64h96v-544h-96zM704 480h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="printer" d="M853.344 660.352h-128v127.648c0 23.712-19.232 43.008-43.008 43.008h-340.64c-23.712 0-43.008-19.232-43.008-43.008v-127.648h-128c-23.712 0-43.008-19.232-43.008-43.008v-341.76c0-23.712 19.232-43.008 43.008-43.008h128v-106.592c0-23.776 19.232-43.008 43.008-43.008h340.64c23.712 0 43.008 19.232 43.008 43.008v106.592h128c23.712 0 43.008 19.232 43.008 43.008v341.76c0 23.712-19.232 43.008-43.008 43.008zM384.672 744.992h254.624v-83.712h-254.624v83.712zM639.328 232.576v-63.584h-254.624v167.712h254.624v-104.16zM810.336 318.592h-85.024v61.152c0 23.712-19.232 43.008-43.008 43.008h-340.64c-23.712 0-43.008-19.232-43.008-43.008v-61.152h-85.024v255.744h596.704v-255.744zM725.344 446.624c23.776 0 43.040 19.296 43.040 43.040s-19.296 43.040-43.040 43.040-43.040-19.296-43.040-43.040 19.296-43.040 43.040-43.040z" /> +<glyph unicode="" glyph-name="process-step" d="M234.656 384c27.808 0 51.456 17.728 60.288 42.496h134.464c9.536-36.704 42.912-63.84 82.592-63.84 47.136 0 85.344 38.208 85.344 85.344s-38.208 85.344-85.344 85.344c-39.712 0-73.056-27.104-82.592-63.84h-134.464c-8.832 24.768-32.48 42.496-60.288 42.496-35.36 0-64-28.64-64-64s28.64-64 64-64zM512 490.336c23.328 0 42.336-18.976 42.336-42.336s-18.976-42.336-42.336-42.336-42.336 18.976-42.336 42.336 19.008 42.336 42.336 42.336zM277.344 320.16h-149.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h149.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM277.344 256.16h-110.048c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h110.048c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM897.696 320.16h-149.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h149.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM858.4 256.16h-110.048c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h110.048c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM586.688 320.16h-149.344c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h149.344c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM567.040 256.16h-110.048c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h110.048c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM789.344 384c35.36 0 64 28.64 64 64s-28.64 64-64 64c-27.808 0-51.456-17.728-60.288-42.496h-67.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h67.712c8.832-24.768 32.48-42.496 60.288-42.496zM494.816 584.448c4.064-5.408 10.432-8.608 17.184-8.608s13.152 3.2 17.216 8.608l42.656 56.896c2.784 3.712 4.288 8.256 4.288 12.896v28.448c0 11.872-9.632 21.504-21.504 21.504h-85.344c-11.872 0-21.504-9.632-21.504-21.504v-28.448c0-4.64 1.504-9.184 4.288-12.896l42.656-56.896zM532.992 661.152l-20.992-28-20.992 28h41.984z" /> +<glyph unicode="" glyph-name="product-carousel" d="M682.336 661.344h-340.672c-23.744 0-43.008-19.264-43.008-43.008v-340.672c0-23.744 19.232-43.008 43.008-43.008h340.672c23.744 0 43.008 19.264 43.008 43.008v340.672c0 23.744-19.264 43.008-43.008 43.008zM456.352 312.928c-12.544 0-22.72 10.144-22.72 22.688s10.176 22.72 22.72 22.72 22.688-10.176 22.688-22.72-10.176-22.688-22.688-22.688zM562.336 312.928c-12.544 0-22.72 10.144-22.72 22.688s10.176 22.72 22.72 22.72 22.72-10.176 22.72-22.72-10.176-22.688-22.72-22.688zM632 514.112l-41.248-80.256c-2.592-4.992-7.712-8.128-13.344-8.128h-121.696l-10.368-20.736h147.424c8.288 0 15.008-6.72 15.008-15.008s-6.72-15.008-15.008-15.008h-171.712c-5.184 0-10.048 2.688-12.768 7.136s-2.944 9.952-0.64 14.592l22.56 44.96-30.112 83.168-12.192 0.544c-8.288 0.352-14.688 7.328-14.336 15.616s7.36 14.72 15.648 14.336l22.208-0.96c6.080-0.256 11.392-4.16 13.472-9.888l32.128-88.8h111.232l25.824 50.208h-103.328c-8.288 0-15.008 6.72-15.008 15.008s6.72 15.008 15.008 15.008h127.904c5.216 0 10.080-2.72 12.8-7.168s2.912-10.016 0.544-14.656zM687.2 522.944l-89.888 95.712h71.904c9.92 0 17.984-8.032 17.984-17.984v-77.728zM768 618.816c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c11.488 0 21.152-7.264 21.152-15.84v-224c0-8.576-9.696-15.84-21.152-15.84-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c35.392 0 64.16 26.4 64.16 58.848v224c0 32.448-28.8 58.816-64.16 58.816zM874.656 597.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c11.68 0 21.152-9.504 21.152-21.152v-170.656c0-11.68-9.504-21.152-21.152-21.152-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504c35.392 0 64.16 28.8 64.16 64.16v170.656c0 35.392-28.8 64.16-64.16 64.16zM256 320.16c-11.488 0-21.152 7.264-21.152 15.84v224c0 8.576 9.696 15.84 21.152 15.84 11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-35.392 0-64.16-26.4-64.16-58.816v-224c0-32.448 28.8-58.848 64.16-58.848 11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM149.344 554.496c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-35.392 0-64.16-28.8-64.16-64.16v-170.656c0-35.392 28.8-64.16 64.16-64.16 11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504c-11.68 0-21.152 9.504-21.152 21.184v170.656c0 11.68 9.504 21.184 21.152 21.184z" /> +<glyph unicode="" glyph-name="product-grid" d="M576.352 469.344h276.672c23.744 0 43.008 19.232 43.008 43.008v276.672c0 23.744-19.264 43.008-43.008 43.008h-276.672c-23.744 0-43.008-19.264-43.008-43.008v-276.672c0-23.744 19.232-43.008 43.008-43.008zM681.408 557.312c-8.832 0-16 7.168-16 16s7.168 16 16 16 16-7.168 16-16-7.168-16-16-16zM756.032 557.312c-8.832 0-16 7.168-16 16s7.168 16 16 16 16-7.168 16-16-7.168-16-16-16zM634.112 728.512l15.648-0.672c4.448-0.192 8.352-3.072 9.856-7.264l22.528-62.272h77.792l17.728 34.528h-72.096c-6.048 0-11.008 4.928-11.008 11.008s4.928 11.008 11.008 11.008h90.112c3.84 0 7.392-2.016 9.408-5.28s2.144-7.328 0.384-10.752l-29.024-56.512c-1.888-3.648-5.664-5.984-9.792-5.984h-85.44l-6.88-13.728h103.136c6.048 0 11.008-4.928 11.008-11.008s-4.928-11.008-11.008-11.008h-120.96c-3.808 0-7.36 1.984-9.376 5.216s-2.176 7.296-0.448 10.72l15.808 31.488-21.024 58.144-8.288 0.352c-6.080 0.288-10.784 5.408-10.528 11.488s5.376 10.72 11.456 10.496zM447.68 832h-276.672c-23.744 0-43.008-19.264-43.008-43.008v-276.672c0-23.744 19.264-43.008 43.008-43.008h276.672c23.744 0 43.008 19.264 43.008 43.008v276.672c0 23.744-19.264 43.008-43.008 43.008zM447.68 512.32h-276.672v276.672h276.672v-276.672zM447.68 426.656h-276.672c-23.744 0-43.008-19.264-43.008-43.008v-276.672c0-23.744 19.264-43.008 43.008-43.008h276.672c23.744 0 43.008 19.264 43.008 43.008v276.672c0 23.744-19.264 43.008-43.008 43.008zM447.68 107.008h-172.704l-103.968 110.72v165.952h276.672v-276.672zM853.536 427.296h-276c-23.744 0-43.008-19.264-43.008-43.008v-276c0-23.744 19.264-43.008 43.008-43.008h276c23.744 0 43.008 19.264 43.008 43.008v276c0 23.744-19.264 43.008-43.008 43.008zM853.536 108.288h-276v276h276v-276zM258.656 629.152h29.184v-29.184c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v29.184h29.184c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-29.184v29.184c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-29.184h-29.184c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM258.656 223.84h29.184v-29.184c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v29.184h29.184c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-29.184v29.184c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-29.184h-29.184c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM664.832 224.8h29.184v-29.184c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v29.184h29.184c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-29.184v29.184c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-29.184h-29.184c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504z" /> +<glyph unicode="" glyph-name="product-highlight" d="M929.312 832h-834.656c-34.56 0-62.656-28.096-62.656-62.656v-642.656c0-34.56 28.096-62.688 62.656-62.688h834.656c34.56 0 62.688 28.096 62.688 62.688v642.656c0 34.56-28.096 62.656-62.688 62.656zM928 768v-64h-832v64h832zM96 128v512h832v-512h-832zM480 576h-320c-17.664 0-32-14.336-32-32v-320c0-17.664 14.336-32 32-32h320c17.664 0 32 14.336 32 32v320c0 17.664-14.336 32-32 32zM297.92 512h44.128v-41.376c-11.872 11.328-32.256 11.328-44.128 0v41.376zM448 256h-256v256h41.952v-118.624c0-12.928 7.808-24.608 19.744-29.568s25.696-2.24 34.88 6.944l31.424 31.456 31.424-31.456c6.112-6.144 14.304-9.376 22.624-9.376 4.128 0 8.288 0.8 12.256 2.432 11.936 4.96 19.744 16.64 19.744 29.568v118.624h41.92v-256zM576 512h192c17.664 0 32 14.336 32 32s-14.336 32-32 32h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32zM649.376 470.624l-41.376-41.376-9.376 9.376c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.736 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.768 0 45.248s-32.736 12.48-45.248 0zM649.376 310.624l-41.376-41.376-9.376 9.376c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.736 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.736 0 45.248s-32.736 12.48-45.248 0zM864 448h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM864 288h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 352h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="progress-bar" d="M782.56 313.184h-626.464c-15.584 0-28.256-12.672-28.256-28.256v-121.728c0-15.584 12.672-28.256 28.256-28.256h626.464c15.584 0 28.256 12.672 28.256 28.256v121.728c0 15.584-12.672 28.256-28.256 28.256zM170.848 177.952v92.256h276.992v-92.256h-276.992zM767.808 177.952h-276.992v92.256h276.992v-92.256zM782.56 537.12h-626.464c-15.584 0-28.256-12.672-28.256-28.256v-121.728c0-15.584 12.672-28.256 28.256-28.256h626.464c15.584 0 28.256 12.672 28.256 28.256v121.728c0 15.584-12.672 28.256-28.256 28.256zM767.808 401.888h-112.48v92.256h112.48v-92.256zM782.56 761.056h-626.464c-15.584 0-28.256-12.672-28.256-28.256v-121.728c0-15.584 12.672-28.256 28.256-28.256h626.464c15.584 0 28.256 12.672 28.256 28.256v121.728c0 15.584-12.672 28.256-28.256 28.256zM170.848 625.792v92.256h369.984v-92.256h-369.984zM767.808 625.792h-184v92.256h184v-92.256zM848.768 646.72l30.016 50.784h-12l-30.016-50.784h12zM872.256 672.064c-1.824-0.48-3.488-1.28-4.992-2.432s-2.72-2.656-3.616-4.608-1.344-4.384-1.344-7.296c0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.832c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344s4.352 2.432 5.888 4.64c1.536 2.208 2.304 5.216 2.304 8.992 0 3.392-0.64 6.176-1.952 8.352s-3.104 3.776-5.376 4.832c-2.272 1.056-4.928 1.568-7.872 1.568-1.888 0-3.744-0.256-5.568-0.736zM882.336 661.184c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36s-1.12-1.376-1.888-1.696c-0.768-0.32-1.632-0.512-2.624-0.512-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92c-0.512 0.896-0.768 2.048-0.768 3.488s0.256 2.56 0.736 3.36 1.152 1.376 1.952 1.728c0.832 0.352 1.696 0.544 2.624 0.544 1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92zM829.568 672.768c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344s4.352 2.464 5.888 4.64c1.536 2.208 2.304 5.216 2.304 8.992 0 3.392-0.64 6.176-1.952 8.352s-3.104 3.808-5.376 4.832c-2.272 1.056-4.928 1.568-7.872 1.568-1.888 0-3.744-0.256-5.568-0.736s-3.488-1.28-4.992-2.432-2.72-2.656-3.616-4.608c-0.896-1.952-1.344-4.384-1.344-7.296 0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.864zM832.96 689.6c0.48 0.8 1.152 1.376 1.952 1.728s1.696 0.544 2.624 0.544c1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36s-1.12-1.376-1.888-1.696-1.632-0.512-2.624-0.512c-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92-0.768 2.080-0.768 3.488 0.256 2.56 0.736 3.36zM866.752 476.448l-30.016-50.752h12l30.016 50.752h-12zM869.568 423.552c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344s4.352 2.432 5.888 4.64c1.536 2.208 2.304 5.216 2.304 8.992 0 3.392-0.64 6.176-1.952 8.352s-3.104 3.776-5.376 4.832c-2.272 1.056-4.928 1.568-7.872 1.568-1.888 0-3.744-0.256-5.568-0.736s-3.488-1.28-4.992-2.432c-1.504-1.12-2.72-2.656-3.616-4.608s-1.344-4.384-1.344-7.296c0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.832zM872.96 440.384c0.48 0.8 1.152 1.376 1.952 1.728s1.696 0.544 2.624 0.544c1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36s-1.12-1.376-1.888-1.696c-0.768-0.32-1.632-0.512-2.624-0.512-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92c-0.512 0.896-0.768 2.048-0.768 3.488s0.256 2.56 0.736 3.36zM829.568 451.712c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344s4.352 2.464 5.888 4.64c1.536 2.208 2.304 5.216 2.304 8.992 0 3.392-0.64 6.176-1.952 8.352s-3.104 3.808-5.376 4.832c-2.272 1.056-4.928 1.568-7.872 1.568-1.888 0-3.744-0.256-5.568-0.736s-3.488-1.28-4.992-2.432-2.72-2.656-3.616-4.608c-0.896-1.952-1.344-4.384-1.344-7.296 0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.864zM832.96 468.544c0.48 0.8 1.152 1.376 1.952 1.728s1.696 0.544 2.624 0.544c1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36s-1.12-1.376-1.888-1.696-1.632-0.512-2.624-0.512c-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92-0.768 2.080-0.768 3.488 0.256 2.56 0.736 3.36zM894.208 217.632c-1.312 2.176-3.104 3.808-5.376 4.832s-4.928 1.568-7.872 1.568c-1.888 0-3.744-0.256-5.568-0.736s-3.488-1.28-4.992-2.432c-1.504-1.12-2.72-2.656-3.616-4.608s-1.344-4.384-1.344-7.296c0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.832c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344s4.352 2.432 5.888 4.64c1.536 2.208 2.304 5.216 2.304 8.992 0 3.392-0.64 6.176-1.952 8.352zM885.408 205.536c-0.48-0.8-1.12-1.376-1.888-1.696s-1.632-0.512-2.624-0.512c-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92c-0.512 0.896-0.768 2.048-0.768 3.488s0.256 2.56 0.736 3.36 1.152 1.376 1.952 1.728c0.832 0.352 1.696 0.544 2.624 0.544 1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36zM847.968 223.776c2.4 0.896 4.352 2.464 5.888 4.64s2.304 5.216 2.304 8.992c0 3.392-0.64 6.176-1.952 8.352s-3.104 3.808-5.376 4.832c-2.272 1.056-4.928 1.568-7.872 1.568-1.888 0-3.744-0.256-5.568-0.736s-3.488-1.312-4.992-2.432-2.72-2.656-3.616-4.608c-0.896-1.952-1.344-4.384-1.344-7.296 0-3.328 0.64-6.080 1.92-8.256s3.072-3.808 5.344-4.832c2.272-1.056 4.896-1.568 7.808-1.568 2.624 0 5.12 0.448 7.488 1.344zM836.064 234.016c-0.512 0.896-0.768 2.048-0.768 3.488s0.256 2.56 0.736 3.36c0.48 0.8 1.152 1.376 1.952 1.728s1.696 0.544 2.624 0.544c1.088 0 2.016-0.192 2.848-0.608s1.472-1.056 1.952-1.92c0.48-0.864 0.736-2.048 0.736-3.552 0-1.44-0.256-2.56-0.736-3.36s-1.12-1.376-1.888-1.696-1.632-0.512-2.624-0.512c-1.024 0-1.952 0.192-2.816 0.576s-1.536 1.024-2.048 1.92zM869.856 248.736l-30.016-50.784h12l29.984 50.784h-12zM496.832 693.44h-285.632c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h285.632c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM406.112 245.568h-194.88c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h194.88c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="progress-step" d="M772.736 440c13.792-46.208 56.64-80 107.264-80 61.76 0 112 50.24 112 112s-50.24 112-112 112c-50.624 0-93.472-33.792-107.264-80h-47.456l-22.624 22.624c-12.48 12.48-32.736 12.48-45.248 0-6.24-6.24-9.376-14.432-9.376-22.624h-28.736c-13.792 46.208-56.64 80-107.264 80s-93.472-33.792-107.264-80h-47.456l-22.624 22.624c-12.48 12.48-32.768 12.48-45.248 0-6.272-6.24-9.376-14.432-9.376-22.624h-28.736c-13.792 46.208-56.672 80-107.296 80-61.728 0-112-50.24-112-112s50.272-112 112-112c50.624 0 93.472 33.792 107.296 80h28.736c0-8.192 3.136-16.384 9.376-22.624s14.432-9.376 22.624-9.376 16.352 3.136 22.624 9.376l22.624 22.624h47.456c13.792-46.208 56.672-80 107.296-80s93.472 33.792 107.264 80h28.736c0-8.192 3.136-16.384 9.376-22.624s14.432-9.376 22.624-9.376 16.384 3.136 22.624 9.376l22.624 22.624h47.456zM144 424c-26.464 0-48 21.536-48 48s21.536 48 48 48 48-21.536 48-48-21.536-48-48-48zM512 424c-26.464 0-48 21.536-48 48s21.536 48 48 48 48-21.536 48-48-21.536-48-48-48zM880 520c26.464 0 48-21.536 48-48s-21.536-48-48-48-48 21.536-48 48 21.536 48 48 48zM64 248h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM256 312h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM256 184h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM416 248h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM608 184h-192c-17.664 0-32-14.336-32-32s14.336-32 32-32h192c17.664 0 32 14.336 32 32s-14.336 32-32 32zM768 312c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32zM960 312h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32zM384 744h256c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256c-17.664 0-32-14.336-32-32s14.336-32 32-32zM352 648h112c17.664 0 32 14.336 32 32s-14.336 32-32 32h-112c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 712c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96zM960 152h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM886.624 206.624c-12.48 12.48-32.736 12.48-45.248 0l-41.376-41.376-9.376 9.376c-12.48 12.48-32.736 12.48-45.248 0s-12.48-32.736 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.736 0 45.248z" /> +<glyph unicode="" glyph-name="protection" d="M940.768 756.608c-119.616 101.6-247.328 144.992-426.816 144.992h-3.936c-179.424 0-307.2-43.424-426.752-144.928-35.296-29.856-57.216-90.048-49.856-136.96 43.744-279.616 170.528-472.128 398.912-605.856 21.472-12.544 49.76-19.456 79.648-19.456s58.208 6.912 79.648 19.488c228.416 133.696 355.2 326.208 398.912 605.824 7.36 46.944-14.56 107.072-49.824 136.928zM927.36 629.6c-41.088-262.72-154.624-435.584-368-560.48-23.264-13.632-71.424-13.6-94.688 0-213.44 124.928-326.912 297.792-368.032 560.512-3.872 24.768 9.728 62.752 28 78.24 107.072 90.912 222.4 129.76 385.408 129.76h2.016c163.36 0.224 279.84-38.528 387.36-129.792 18.24-15.424 31.84-53.44 27.968-78.208zM511.936 760.576c-118.944-0.16-203.52-29.024-282.72-96.416-25.888-21.984-41.472-64.608-36.192-99.232 28.608-185.664 111.808-313.568 261.728-402.464 16.064-9.536 36.672-14.304 57.248-14.304s41.184 4.768 57.216 14.304c149.952 88.928 233.12 216.8 261.76 402.528 5.28 34.56-10.208 77.216-35.872 99.232-78.656 67.744-164 96.16-283.136 96.384zM767.712 574.656c-25.856-167.552-97.12-277.696-231.168-357.152-12.192-7.232-36.96-7.232-49.184 0-134.016 79.456-205.28 189.6-231.136 357.088-1.888 12.32 5.504 33.28 14.336 40.768 0 0 0.032 0.032 0.064 0.032 66.688 56.768 138.88 81.056 241.376 81.184h0.992c103.936 0 173.632-23.456 240.384-80.96 8.832-7.552 16.192-28.64 14.304-40.96zM428.544 446.88l95.776 95.808c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.28 0l-95.776-95.776c-12.48-12.48-12.48-32.768 0-45.248 6.272-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376zM638.688 587.904l-223.52-223.52c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l223.52 223.52c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0z" /> +<glyph unicode="" glyph-name="quote" d="M199.168 64.864c-27.136 0-52.64 10.592-71.808 29.76l-14.816 14.816c-19.136 19.008-29.728 44.416-29.76 71.52-0.032 27.168 10.528 52.704 29.76 71.904l98.208 98.24h-82.752c-52.96 0-96 43.072-96 96v224c0 84.352 107.648 96 224 96s224-11.648 224-96v-290.208c0-49.76-19.424-96.64-54.688-131.936l-154.4-154.336c-19.136-19.168-44.64-29.76-71.776-29.76zM256 703.136c-100.192 0-160-11.968-160-32v-224c0-17.664 14.368-32 32-32h160c12.96 0 24.608-7.808 29.568-19.744s2.208-25.696-6.944-34.88l-152.832-152.864c-7.136-7.136-11.040-16.544-11.008-26.592 0-9.952 3.904-19.264 10.944-26.272l14.912-14.912c14.208-14.208 38.88-14.24 53.024 0l154.368 154.336c22.816 22.88 35.936 54.496 35.936 86.72v290.208c0 20.032-59.808 32-160 32zM135.168 230.304v0zM711.168 64.864c-27.136 0-52.64 10.592-71.808 29.76l-14.816 14.816c-19.136 19.008-29.696 44.416-29.76 71.52-0.032 27.168 10.528 52.704 29.76 71.904l98.208 98.24h-82.752c-52.928 0-96 43.072-96 96v224c0 84.352 107.648 96 224 96s224-11.648 224-96v-290.208c0-49.76-19.424-96.64-54.688-131.936l-154.4-154.336c-19.136-19.168-44.64-29.76-71.776-29.76zM768 703.136c-100.192 0-160-11.968-160-32v-224c0-17.664 14.336-32 32-32h160c12.928 0 24.608-7.808 29.568-19.744s2.24-25.696-6.944-34.88l-152.832-152.864c-7.136-7.136-11.040-16.544-11.008-26.592 0-9.952 3.904-19.264 10.944-26.272l14.912-14.912c14.208-14.208 38.88-14.24 53.024 0l154.4 154.336c22.816 22.88 35.936 54.496 35.936 86.72v290.208c0 20.032-59.808 32-160 32zM647.168 230.304v0z" /> +<glyph unicode="" glyph-name="radar" d="M922.4 565.536c-6.56 22.816-30.368 36-53.216 29.44s-36-30.368-29.44-53.216c8.8-30.56 13.28-62.368 13.28-94.496 0-91.104-35.456-176.736-99.872-241.12-64.416-64.416-150.048-99.872-241.12-99.872-188.032 0-340.992 152.96-340.992 340.992s152.96 340.992 340.992 340.992c76.448 0 149.088-24.992 208.512-71.136l-60.416-60.576c-43.008 30.56-94.304 47.072-148.096 47.072-141.344 0-256.352-114.976-256.352-256.352s114.976-256.352 256.352-256.352c68.704 0 133.248 26.848 181.728 75.52 48.128 48.384 74.624 112.608 74.624 180.832 0 23.776-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008c0-45.344-17.632-88.032-49.632-120.16-32.224-32.384-75.104-50.176-120.736-50.176-93.92 0-170.336 76.416-170.336 170.336s76.416 170.336 170.336 170.336c30.72 0 60.192-8.096 86.016-23.264l-64.128-64.256c-7.008 1.824-14.336 2.848-21.888 2.848-47.232 0-85.664-38.432-85.664-85.664s38.432-85.664 85.664-85.664 85.664 38.432 85.664 85.664c0 7.648-1.024 15.008-2.912 22.048l218.88 219.392s0 0 0 0 0 0 0 0l48.768 48.896c16.768 16.8 16.736 44.032-0.096 60.8s-44.032 16.736-60.8-0.096l-19.936-19.968c-76 62.080-170.24 95.872-269.664 95.872-235.392 0.032-426.976-191.52-426.976-426.976s191.52-427.008 427.008-427.008c114.048 0 221.28 44.416 301.952 125.056 80.64 80.64 125.056 187.872 125.056 301.952 0 40.192-5.6 80-16.608 118.304z" /> +<glyph unicode="" glyph-name="radial-progress-bar" d="M496 928c-17.664 0-32-14.336-32-32v-1.184c-231.552-16.864-416-212.608-416-447.424 0-148.16 74.72-287.936 196.512-371.040l-0.224-0.384s0 0 0 0c0 0 0 0 0 0-2.208-3.808-3.488-7.84-4-11.936 0-0.032 0-0.064 0-0.096-0.224-1.856-0.256-3.712-0.16-5.536 0-0.224-0.032-0.448 0-0.64 0.064-0.928 0.32-1.792 0.448-2.72 1.44-9.216 6.784-17.76 15.456-22.784 0 0 0.032 0 0.032 0 72.864-42.048 155.84-64.256 239.968-64.256 264.672 0 480 215.328 480 480s-215.328 479.968-480.032 479.968zM496 288c-6.4 0-12.8 0.48-19.136 1.28-1.792 0.192-3.52 0.544-5.248 0.8-4.672 0.736-9.28 1.632-13.888 2.752-1.824 0.448-3.68 0.896-5.472 1.408-4.96 1.408-9.824 3.072-14.624 4.928-1.152 0.448-2.336 0.8-3.488 1.28-5.472 2.304-10.752 4.96-15.936 7.84-48.96 27.392-82.208 79.712-82.208 139.712 0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160zM112 447.424c0 199.744 155.68 366.432 352 383.168v-161.12c-108.352-15.616-192-108.832-192-221.44 0-71.264 33.568-134.72 85.6-175.776l-80.992-140.256c-102.144 71.552-164.608 190.016-164.608 315.456zM496 32c-62.208 0-123.648 14.144-179.616 40.896l96.48 167.168c4.8-1.92 9.664-3.648 14.592-5.216 1.6-0.512 3.2-0.96 4.768-1.44 5.312-1.568 10.72-2.976 16.16-4.16 1.088-0.256 2.176-0.544 3.264-0.768 6.304-1.28 12.64-2.208 19.040-2.912 1.696-0.192 3.424-0.352 5.152-0.512 6.688-0.608 13.408-1.024 20.16-1.024 123.52 0 224 100.48 224 224 0 112.64-83.648 205.856-192 221.44v193.184c214.496-16.416 384-196.032 384-414.624 0-229.408-186.624-416-416-416zM464 480h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM560 416h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="radio" d="M896 703.328h-447.712c0 4.704-0.864 9.184-2.272 13.408l168.736 75.008c21.728 9.632 31.488 35.072 21.856 56.736-9.632 21.728-35.072 31.488-56.736 21.856l-279.68-124.288h-65.536c-23.648 0-42.784-19.072-42.976-42.656h-63.712c-23.776 0-43.008-19.232-43.008-43.008v-512c0-23.776 19.232-43.008 43.008-43.008h768c23.776 0 43.008 19.232 43.008 43.008v512c0 23.776-19.232 43.008-43.008 43.008zM852.992 532.64h-20.704c-0.16 23.584-19.328 42.656-42.976 42.656h-170.656c-23.648 0-42.784-19.072-42.976-42.656h-404.704v84.64h42.080s0.224 0 0.288 0c0.128 0 0.288 0 0.416 0h639.232v-84.64zM171.008 191.328v255.328h681.984v-255.328h-681.984zM810.656 318.080c0-58.912-47.744-106.656-106.656-106.656s-106.656 47.744-106.656 106.656c0 58.912 47.744 106.656 106.656 106.656s106.656-47.744 106.656-106.656zM426.656 361.984h-170.656c-23.776 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h170.656c23.776 0 43.008 19.232 43.008 43.008s-19.232 43.008-43.008 43.008z" /> +<glyph unicode="" glyph-name="reddit" d="M512 824.352c-211.904 0-384.352-172.416-384.352-384.352 0-88.192 29.504-171.84 83.84-239.712l-36.256-36.288c-18.208-18.24-23.616-45.376-13.76-69.184s32.864-39.168 58.656-39.168h291.872c211.904 0 384.352 172.416 384.352 384.352s-172.416 384.352-384.352 384.352zM512 141.664h-237.504l56.96 56.96-30.4 30.4c-56.352 56.352-87.392 131.264-87.392 210.976 0 164.48 133.856 298.336 298.336 298.336s298.336-133.824 298.336-298.336-133.856-298.336-298.336-298.336zM663.072 515.2c-14.272 0-27.424-4.8-37.888-12.896-28.576 17.696-64.64 28.8-104.096 30.304v0.16c0 26.432 19.648 48.384 45.152 52v0.064c4.64-19.616 22.24-34.208 43.232-34.208 24.544 0 44.416 19.872 44.416 44.416s-19.904 44.416-44.416 44.416c-21.472 0-39.36-15.2-43.52-35.424-35.904-3.84-63.968-34.304-63.968-71.232v-0.224c-39.072-1.664-74.752-12.768-103.072-30.304-10.528 8.16-23.744 12.992-38.048 12.992-34.4 0-62.272-27.872-62.272-62.272 0-24.928 14.656-46.432 35.84-56.384 2.080-72.288 80.8-130.4 177.664-130.4s175.712 58.208 177.664 130.496c21.024 10.016 35.552 31.424 35.552 56.224 0 34.4-27.872 62.272-62.24 62.272zM396.416 413.472c1.056 22.592 16.032 39.904 33.472 39.904s30.752-18.304 29.696-40.864c-1.056-22.592-14.080-30.784-31.52-30.784s-32.704 9.184-31.68 31.744zM577.728 354.432c-10.72-25.632-36.064-43.648-65.6-43.648s-54.848 18.016-65.6 43.648c-1.28 3.040 0.8 6.432 4.064 6.784 19.136 1.952 39.872 2.976 61.536 2.976s42.336-1.056 61.504-2.976c3.264-0.352 5.376-3.712 4.096-6.784zM596.192 381.696c-17.408 0-30.464 8.192-31.52 30.784s12.288 40.864 29.696 40.864 32.448-17.312 33.472-39.904c1.024-22.592-14.24-31.744-31.68-31.744z" /> +<glyph unicode="" glyph-name="report" d="M176 352c17.664 0 32 14.336 32 32v64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-64c0-17.664 14.336-32 32-32zM496 352c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM368 352c17.664 0 32 14.336 32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32c0-17.664 14.336-32 32-32zM272 352c17.664 0 32 14.336 32 32v160c0 17.664-14.336 32-32 32s-32-14.336-32-32v-160c0-17.664 14.336-32 32-32zM249.376 182.624l-41.376-41.376-9.376 9.376c-12.48 12.48-32.768 12.48-45.248 0s-12.512-32.736 0-45.248l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0zM880 928h-576c-52.96 0-96-43.040-96-96v-160h-64c-52.96 0-96-43.040-96-96v-512c0-52.928 43.040-96 96-96h736c52.928 0 96 43.072 96 96v768c0 52.96-43.072 96-96 96zM304 32h-160c-17.632 0-32 14.336-32 32v512c0 17.92 14.048 32 32 32h384c17.952 0 32-14.080 32-32v-512c0-17.664-14.336-32-32-32h-224zM912 64c0-17.664-14.336-32-32-32h-261.6c3.552 10.048 5.6 20.768 5.6 32v512c0 52.96-43.072 96-96 96h-256v160c0 17.632 14.336 32 32 32h160c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32h160c17.664 0 32-14.368 32-32v-768zM848 352h-160c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h160c17.664 0 32 14.336 32 32v192c0 17.664-14.336 32-32 32zM816 160h-96v128h96v-128zM665.376 425.376l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-41.376-41.376-9.376 9.376c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248zM368 768h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM848 768h-352c-17.664 0-32-14.336-32-32s14.336-32 32-32h352c17.664 0 32 14.336 32 32s-14.336 32-32 32zM697.376 553.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l64 64c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-41.376-41.376-9.376 9.376c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l32-32zM176 224h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM528 256c0 17.664-14.336 32-32 32h-160c-17.664 0-32-14.336-32-32s14.336-32 32-32h160c17.664 0 32 14.336 32 32zM496 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="review-slider" d="M876.064 716.64c-2.176 0-4.288-0.32-6.272-0.928-9.152 20.96-31.904 35.872-58.496 35.872h-11.2c-2.272 20.736-19.904 36.928-41.248 36.928h-632.16c-22.88 0-41.504-18.624-41.504-41.504v-597.856c0-22.88 18.624-41.504 41.504-41.504h632.16c22.88 0 41.504 18.624 41.504 41.504v19.36h10.944c26.592 0 49.344 14.912 58.496 35.872 1.984-0.608 4.096-0.928 6.272-0.928 35.2 0 62.784 22.752 62.784 51.808v409.568c0 29.056-27.584 51.808-62.784 51.808zM672.064 653.824c0.096-0.352-0.288-0.672-0.608-0.416l-15.648 11.392-15.68-11.392c-0.32-0.256-0.736 0.064-0.608 0.416l6.016 18.432-15.68 11.392c-0.288 0.224-0.128 0.704 0.224 0.704h19.392l6.016 18.432c0.128 0.352 0.608 0.352 0.736 0l6.016-18.432h19.392c0.384 0 0.512-0.48 0.224-0.704l-15.68-11.392 6.016-18.432zM598.656 654.016c0.128-0.352-0.288-0.672-0.608-0.448l-15.552 11.296-15.552-11.296c-0.288-0.224-0.736 0.064-0.608 0.448l5.952 18.272-15.552 11.296c-0.288 0.224-0.128 0.736 0.256 0.736h19.232l5.952 18.272c0.128 0.352 0.608 0.352 0.736 0l5.952-18.272h19.232c0.384 0 0.544-0.512 0.256-0.736l-15.552-11.296 5.952-18.272zM378.816 654.016c0.128-0.352-0.288-0.672-0.608-0.448l-15.552 11.296-15.552-11.296c-0.32-0.224-0.736 0.064-0.608 0.448l5.952 18.272-15.552 11.296c-0.288 0.224-0.128 0.736 0.256 0.736h19.232l5.952 18.272c0.128 0.352 0.608 0.352 0.736 0l5.952-18.272h19.232c0.384 0 0.544-0.512 0.256-0.736l-15.552-11.296 5.952-18.272zM362.656 618.496h184.608c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-184.608c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504zM452.096 654.016c0.128-0.352-0.288-0.672-0.608-0.448l-15.552 11.296-15.552-11.296c-0.288-0.224-0.736 0.064-0.608 0.448l5.952 18.272-15.552 11.296c-0.288 0.224-0.128 0.736 0.256 0.736h19.232l5.952 18.272c0.128 0.352 0.608 0.352 0.736 0l5.952-18.272h19.232c0.384 0 0.544-0.512 0.256-0.736l-15.552-11.296 5.952-18.272zM525.376 654.016c0.128-0.352-0.288-0.672-0.608-0.448l-15.552 11.296-15.552-11.296c-0.288-0.224-0.736 0.064-0.608 0.448l5.952 18.272-15.552 11.296c-0.288 0.224-0.128 0.736 0.256 0.736h19.232l5.952 18.272c0.128 0.352 0.608 0.352 0.736 0l5.952-18.272h19.232c0.384 0 0.544-0.512 0.256-0.736l-15.552-11.296 5.952-18.272zM311.104 637.472c0-39.616-32.096-71.712-71.712-71.712s-71.712 32.096-71.712 71.712 32.096 71.712 71.712 71.712 71.712-32.096 71.712-71.712zM128.16 520.352h629.152v-314.080l-54.496-55.584h-574.656v369.696zM831.072 224.832c0-6.304-8.128-13.312-19.776-13.312h-10.944v497.056h10.944c11.648 0 19.776-7.008 19.776-13.312v-470.432zM895.84 255.264c0-2.208-7.008-8.8-19.776-8.8-0.672 0-1.344-0.032-1.984-0.096v427.36c0.64-0.064 1.312-0.096 1.984-0.096 12.768 0 19.776-6.624 19.776-8.8v-409.568zM486.176 312.8c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-290.144c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h290.144zM555.072 272.832h-359.040c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h359.040c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM655.744 440.192h-459.744c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h459.744c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="rocket" d="M982.848 918.624c-12.48 12.512-32.768 12.512-45.248 0l-21.856-21.856c-68.928 20.096-300.256 70.176-460.32-103.808-18.624-20.256-36.8-40.768-54.432-61.216l-81.792 13.28c-52.736 8.576-124.832-34.816-156.928-66.944l-44.448-44.448c-17.952-17.92-27.84-41.792-27.872-67.136s9.856-49.248 27.808-67.168l82.368-82.464-49.376-29.664c-15.008-9.088-24.832-24.288-26.976-41.696-2.112-17.344 3.776-34.368 16.16-46.72l19.904-19.904c-31.072-5.408-61.184-20.672-86.688-46.24-65.888-65.92-34.656-213.6-30.88-230.208 2.72-12 12.128-21.408 24.128-24.096 1.6-0.384 39.808-8.928 85.664-10.304 0.32 0 0.64 0 0.96 0 8.48 0 16.608 3.36 22.624 9.376l9.216 9.216 5.6-5.568c7.392-7.36 17.888-10.688 28.192-8.832 33.344 5.952 59.616 18.432 77.888 36.928 25.376 25.28 41.024 54.88 46.432 86.528l19.744-19.744c10.72-10.72 24.992-16.576 39.872-16.576 2.336 0 4.704 0.16 7.072 0.448 17.376 2.144 32.544 12.064 41.504 27.072l29.568 49.216 82.496-82.496c18.496-18.496 42.784-27.744 67.104-27.744s48.736 9.28 67.264 27.84l44.384 44.576c32.096 32.096 75.552 104.16 66.912 156.896l-12.832 78.784c20.736 18.528 41.472 37.952 61.92 58.368 163.616 163.616 120.16 391.232 102.432 458.816l22.304 22.272c12.48 12.48 12.48 32.768 0 45.248zM154.016 566.432c0 8.288 3.232 16.064 9.12 21.92l44.448 44.448c24.864 24.864 77.44 52.896 101.376 48.992l44.352-7.2c-56.544-69.92-103.328-136.256-132.384-187.968l-57.824 57.888c-5.856 5.856-9.088 13.632-9.056 21.888zM470.272 237.184s-0.032 0-0.032 0.032l-14.304 14.336 49.44 38.4 54.496-54.496c-21.504-13.216-40.416-23.712-56.256-31.552l-33.28 33.28zM539.264 397.344l-128.832-100.128-49.152 49.152 100.096 128.768c5.6 7.168 12.992 8.64 16.896 8.864 3.936 0.256 11.392-0.352 17.792-6.72v0l45.312-45.28c6.464-6.464 7.040-13.952 6.784-17.856-0.256-3.872-1.696-11.168-8.864-16.736zM315.552 391.904l-14.272 14.272s-0.032 0.032-0.032 0.064l-33.12 33.152c8.032 15.584 18.816 34.112 32.48 55.328l53.376-53.376-38.432-49.408zM281.312 120.288c-0.032-23.616-10.336-46.368-30.048-66.016-6.336-6.432-15.936-11.616-28.16-15.36l-15.648 15.552c-12.512 12.48-32.704 12.384-45.184-0.064l-21.792-21.76c-15.296 0.992-29.088 2.784-39.584 4.384-7.392 47.104-10.272 122.496 17.6 150.336 12.96 12.96 26.624 21.12 40.192 25.568-17.536-36.992-7.552-87.744-4.928-99.168 3.392-14.816 16.576-24.832 31.136-24.832 2.368 0 4.704 0.256 7.136 0.8 17.216 3.904 28 21.024 24.16 38.24-5.28 23.52-4.608 53.504 1.28 59.424 14.88 14.88 28 5.728 33.44 0.48 0.16-0.16 0.352-0.288 0.48-0.448l0.096-0.096c19.296-19.296 29.888-43.104 29.856-67.008zM401.312 127.936l-209.344 209.312 54.784 32.928 187.424-187.456-32.896-54.784zM745.888 244.832c3.904-23.776-24.16-76.448-49.056-101.376l-44.384-44.544c-12.096-12.064-31.744-12.096-43.84-0.064l-57.536 57.536c51.552 27.744 118.24 72 188.256 128.928l6.592-40.48zM614.432 271.36l-58.144 58.144 22.24 17.28c19.712 15.328 31.936 38.4 33.504 63.296 1.568 24.96-7.712 49.44-25.408 67.136l-45.28 45.28c-17.632 17.664-41.984 26.816-66.944 25.376-24.96-1.536-48.064-13.696-63.456-33.44l-17.28-22.208-56.224 56.224c41.632 58.048 97.376 127.456 165.184 201.152 5.376 5.888 10.944 11.328 16.544 16.576l47.36-47.232c-14.624-24.32-22.624-52.096-22.624-81.184 0-42.208 16.416-81.888 46.272-111.744 30.784-30.816 71.264-46.208 111.712-46.208 28.16 0 56.224 7.648 81.12 22.528l46.688-46.688c-5.28-6.112-10.752-12.192-16.672-18.112-68.768-68.672-138.72-124.64-198.496-166.208zM768.288 571.264c-36.672-36.64-96.352-36.672-132.96-0.032-17.76 17.76-27.52 41.376-27.52 66.464s9.792 48.736 27.552 66.496c18.336 18.336 42.4 27.488 66.464 27.488s48.16-9.152 66.464-27.488c17.76-17.76 27.552-41.376 27.552-66.464s-9.76-48.704-27.552-66.464zM866.944 508.8l-36.896 36.896c19.232 26.688 29.76 58.528 29.76 92.032 0 42.208-16.448 81.888-46.304 111.744-55.424 55.424-141.952 60.8-203.648 16.544l-39.424 39.328c127.36 77.088 280.128 43.296 328.032 29.696 12.096-47.584 41.024-197.408-31.552-326.208z" /> +<glyph unicode="" glyph-name="romethemekit" d="M283.264 348.8h144.096v-144.096h-144.096v144.096zM525.472 447.68l96.512-96.512 45.312 44.608 60.768 60.8 31.776 31.328c4.608 4.544 4.64 12.032 0.064 16.608v0s-143.584 143.488-143.584 143.488c-0.64 0.64-1.536 1.024-2.464 1.024h-199.808l156.384-156.352-44.928-44.928zM283.648 688.928l-0.352 0.352v-195.968l288.608-288.608 195.904 0.064-484.16 484.16zM873.856 809.12c-99.904 99.936-230.88 149.888-361.856 149.888s-261.92-49.952-361.856-149.888c-199.84-199.84-199.84-523.872 0-723.712 99.936-99.936 230.88-149.888 361.856-149.888s261.92 49.952 361.856 149.888c199.84 199.84 199.84 523.872 0 723.712zM813.504 158.336c-80.544-77.184-187.616-119.68-301.504-119.68s-220.96 42.496-301.504 119.68c-80.544 77.184-124.896 179.776-124.896 288.928s44.352 211.744 124.896 288.928c80.544 77.184 187.616 119.68 301.504 119.68s220.96-42.496 301.504-119.68c80.544-77.184 124.896-179.776 124.896-288.928s-44.352-211.744-124.896-288.928z" /> +<glyph unicode="" glyph-name="rtm-form" d="M873.056 495.904h-724.704c-18.496 0-33.632-15.136-33.632-33.632v-186.336c0-18.496 15.136-33.632 33.632-33.632h724.704c18.496 0 33.632 15.136 33.632 33.632v186.336c0 18.496-15.136 33.632-33.632 33.632zM137.152 275.936v186.336c0 6.048 5.152 11.2 11.2 11.2h724.704c6.048 0 11.2-5.152 11.2-11.2v-88.768l-108.768-108.768h-627.136c-6.048 0-11.2 5.152-11.2 11.2zM148.352 538.912h600.48c18.496 0 33.632 15.136 33.632 33.632v58.784c0 18.496-15.136 33.632-33.632 33.632h-600.48c-18.496 0-33.632-15.136-33.632-33.632v-58.784c0-18.496 15.136-33.632 33.632-33.632zM137.152 631.328c0 6.048 5.152 11.2 11.2 11.2h600.48c6.048 0 11.2-5.152 11.2-11.2v-58.784c0-6.048-5.152-11.2-11.2-11.2h-600.48c-6.048 0-11.2 5.152-11.2 11.2v58.784zM148.352 184.736h377.792c18.56 0 33.632-15.072 33.632-33.632v-63.328c0-18.56-15.072-33.632-33.632-33.632h-377.792c-18.56 0-33.632 15.072-33.632 33.632v63.328c0 18.56 15.072 33.632 33.632 33.632zM173.504 590.4h265.408c6.048 0 11.2 5.152 11.2 11.2s-5.152 11.2-11.2 11.2h-265.408c-6.048 0-11.2-5.152-11.2-11.2s5.152-11.2 11.2-11.2zM173.504 401.376h265.408c6.048 0 11.2 5.152 11.2 11.2s-5.152 11.2-11.2 11.2h-265.408c-6.048 0-11.2-5.152-11.2-11.2s5.152-11.2 11.2-11.2zM704.608 351.68h-531.392c-6.048 0-11.2-5.152-11.2-11.2s5.152-11.2 11.2-11.2h531.392c6.048 0 11.2 5.152 11.2 11.2s-5.152 11.2-11.2 11.2zM148.352 701.6h444.768c18.496 0 33.632 15.136 33.632 33.632v58.784c0 18.496-15.136 33.632-33.632 33.632h-444.768c-18.496 0-33.632-15.136-33.632-33.632v-58.784c0-18.496 15.136-33.632 33.632-33.632zM137.152 794.016c0 6.048 5.152 11.2 11.2 11.2h444.768c6.048 0 11.2-5.152 11.2-11.2v-58.784c0-6.048-5.152-11.2-11.2-11.2h-444.768c-6.048 0-11.2 5.152-11.2 11.2v58.784zM173.504 753.12h265.408c6.048 0 11.2 5.152 11.2 11.2s-5.152 11.2-11.2 11.2h-265.408c-6.048 0-11.2-5.152-11.2-11.2s5.152-11.2 11.2-11.2zM709.152 726.432l58.784 58.784c4.256 4.256 4.256 11.52 0 15.744s-11.52 4.256-15.744 0l-42.72-42.72-25.44 25.44c-4.256 4.256-11.52 4.256-15.744 0s-4.256-11.52 0-15.744l41.216-41.216-0.288-0.288zM847.616 575.584l58.784 58.784c4.256 4.256 4.256 11.52 0 15.744s-11.52 4.256-15.744 0l-42.72-42.72-25.44 25.44c-4.256 4.256-11.52 4.256-15.744 0s-4.256-11.52 0-15.744l41.216-41.216-0.288-0.288z" /> +<glyph unicode="" glyph-name="sack-dollar" d="M529.664 415.648c-26.56 12.576-32.288 17.12-32.288 25.568 0 3.008 0 9.28 10.464 13.6 12.576 5.248 28.48 2.528 34.368-3.328 12.128-12.128 31.744-12.128 43.872 0s12.128 31.744 0 43.872c-9.952 9.984-23.168 16.864-37.664 20.672v13.92c0 17.152-13.888 31.040-31.040 31.040s-31.040-13.888-31.040-31.040v-17.088c-0.736-0.288-1.504-0.448-2.24-0.768-30.528-12.672-48.768-39.168-48.768-70.944 0-49.504 40.8-68.864 67.808-81.664 29.856-14.144 35.904-19.456 35.904-31.712 0-6.752-12.352-15.712-21.6-15.712-14.976 0-36.672 10.24-41.664 14.464-12.16 11.904-31.648 11.872-43.712-0.192-12.128-12.128-12.128-31.744 0-43.872 10.464-10.464 31.872-21.6 54.304-27.744v-15.072c0-17.12 13.888-31.040 31.008-31.040s31.040 13.888 31.040 31.040v16.576c28.544 11.424 52.64 37.664 52.64 71.52 0 53.984-42.976 74.336-71.392 87.808zM708.96 704.576l59.264 112.32c10.88 20.576 10.176 44.768-1.856 64.704s-33.088 31.808-56.352 31.808h-396.16c-23.264 0-44.352-11.872-56.352-31.808s-12.704-44.096-1.856-64.704l59.296-112.32c-67.936-68.8-283.008-295.424-283.008-407.392 0-173.472 141.12-314.592 314.592-314.592h330.816c173.472 0 314.592 141.12 314.592 314.592 0 111.968-215.040 338.592-283.040 407.424zM310.72 849.568c1.088 1.824 2.624 1.824 3.2 1.824h396.16c0.576 0 2.112 0 3.2-1.824s0.384-3.168 0.096-3.68l-59.456-112.608-283.84 0.032-59.456 112.576c-0.256 0.512-0.992 1.856 0.128 3.68zM677.408 44.64h-330.816c-139.232 0-252.512 113.28-252.512 252.512 0 72.96 163.808 262.752 273.152 371.936h289.6c109.312-109.184 273.152-298.944 273.152-371.936 0-139.232-113.28-252.512-252.544-252.512z" /> +<glyph unicode="" glyph-name="scale-balanced" d="M435.232 634.56h-222.944c-17.664 0-32 14.336-32 32s14.336 32 32 32h222.944c17.664 0 32-14.336 32-32s-14.336-32-32-32zM811.712 12.128h-611.328c-17.664 0-32 14.336-32 32s14.336 32 32 32h611.328c17.664 0 32-14.336 32-32s-14.336-32-32-32zM512 711.328c-17.664 0-32 14.336-32 32v108.544c0 17.664 14.336 32 32 32s32-14.336 32-32v-108.544c0-17.664-14.336-32-32-32zM512 12.128c-17.664 0-32 14.336-32 32v545.664c0 17.664 14.336 32 32 32s32-14.336 32-32v-545.664c0-17.664-14.336-32-32-32zM512 557.792c-59.968 0-108.768 48.8-108.768 108.768s48.8 108.768 108.768 108.768 108.768-48.8 108.768-108.768-48.8-108.768-108.768-108.768zM512 711.328c-24.672 0-44.768-20.096-44.768-44.768s20.096-44.768 44.768-44.768 44.768 20.096 44.768 44.768-20.096 44.768-44.768 44.768zM64.16 264.64c-4.576 0-9.216 0.992-13.664 3.072-16 7.552-22.816 26.624-15.264 42.592l123.072 260.384c9.856 21.312 30.816 34.72 54.56 34.72v0c23.744 0 44.704-13.376 54.688-34.944l123.104-260.16c7.552-15.968 0.736-35.040-15.232-42.592s-35.040-0.736-42.624 15.232l-119.936 253.504-119.808-253.504c-5.472-11.552-16.96-18.336-28.96-18.336zM209.632 543.328v0s0 0 0 0zM216.288 543.616v0s0 0 0 0zM212.896 111.264c-99.744 0-180.896 81.12-180.896 180.896 0 17.664 14.336 32 32 32h297.792c17.664 0 32-14.336 32-32 0-99.744-81.152-180.896-180.896-180.896zM100.448 260.16c13.952-48.96 59.072-84.896 112.448-84.896s98.496 35.936 112.448 84.896h-224.864zM811.712 634.56h-222.944c-17.664 0-32 14.336-32 32s14.336 32 32 32h222.944c17.664 0 32-14.336 32-32s-14.336-32-32-32zM959.84 264.64c-12 0-23.488 6.784-28.96 18.336l-119.808 253.472-119.936-253.504c-7.552-16-26.624-22.784-42.592-15.232s-22.784 26.624-15.232 42.592l123.232 260.384c9.856 21.312 30.816 34.72 54.592 34.72v0c23.744 0 44.736-13.408 54.688-34.944l122.976-260.16c7.552-15.968 0.736-35.040-15.264-42.592-4.384-2.080-9.056-3.072-13.664-3.072zM807.808 543.36v0s0 0 0 0zM814.464 543.584v0s0 0 0 0zM811.104 111.264c-99.744 0-180.896 81.12-180.896 180.896 0 17.664 14.336 32 32 32h297.792c17.664 0 32-14.336 32-32 0-99.744-81.12-180.896-180.896-180.896zM698.688 260.16c13.952-48.96 59.072-84.896 112.448-84.896s98.496 35.936 112.448 84.896h-224.864z" /> +<glyph unicode="" glyph-name="scale-unbalanced" d="M812.672 78.496h-267.712v486.496c43.168 13.312 74.848 52.864 76.576 99.936l189.216 50.72c17.088 4.576 27.2 22.112 22.624 39.168s-22.112 27.264-39.168 22.624l-189.216-50.72c-13.76 21.792-34.88 38.464-60 46.176v81.344c0 17.664-14.336 32-32 32s-32-14.336-32-32v-81.344c-43.168-13.312-74.848-52.864-76.576-99.936l-189.216-50.72c-17.088-4.576-27.2-22.112-22.624-39.2 3.84-14.304 16.768-23.744 30.88-23.744 2.72 0 5.536 0.352 8.32 1.088l189.216 50.72c13.76-21.792 34.912-38.432 60-46.176v-486.496h-44.768c-17.664 0-32-14.336-32-32s14.336-32 32-32h376.48c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512.96 713.728c24.672 0 44.768-20.096 44.768-44.768s-20.096-44.768-44.768-44.768-44.768 20.096-44.768 44.768 20.096 44.768 44.768 44.768zM391.648 213.6l-123.104 260.128c-9.984 21.6-30.944 35.008-54.72 35.008s-44.736-13.408-54.592-34.72l-123.072-260.384c-2.272-4.832-3.104-9.952-2.912-14.976-0.128-1.056-0.32-2.112-0.32-3.168 0-99.744 81.12-180.896 180.896-180.896s180.896 81.12 180.896 180.896c0 0.736-0.16 1.472-0.224 2.24 0.384 5.312-0.384 10.784-2.848 15.968zM213.856 439.712l100.48-212.288h-200.832l100.32 212.288zM213.856 78.496c-53.376 0-98.496 35.936-112.448 84.896h224.864c-13.952-48.96-59.072-84.896-112.448-84.896zM992.64 349.856c0.192 5.024-0.608 10.144-2.88 14.976l-122.976 260.16c-9.952 21.568-30.912 34.944-54.688 34.944v0c-23.744 0-44.736-13.376-54.592-34.72l-123.232-260.384c-2.432-5.184-3.264-10.624-2.848-15.968-0.064-0.736-0.224-1.472-0.224-2.24 0-99.744 81.12-180.896 180.896-180.896s180.896 81.12 180.896 180.896c0 1.088-0.192 2.112-0.32 3.168zM812.064 591.008l100.352-212.32h-200.832l100.448 212.32zM812.096 229.76c-53.376 0-98.496 35.936-112.448 84.896h224.864c-13.952-48.96-59.072-84.896-112.448-84.896z" /> +<glyph unicode="" glyph-name="scale-unbalanced-flip" d="M588.768 78.496h-44.768v486.496c25.12 7.744 46.272 24.384 60 46.176l189.216-50.72c2.784-0.768 5.568-1.088 8.288-1.088 14.144 0 27.072 9.44 30.88 23.744 4.576 17.056-5.568 34.624-22.624 39.168l-189.216 50.72c-1.728 47.072-33.408 86.624-76.576 99.936v81.344c0 17.664-14.336 32-32 32s-32-14.336-32-32v-81.344c-25.088-7.744-46.272-24.384-60-46.176l-189.216 50.72c-17.12 4.608-34.624-5.568-39.168-22.624s5.536-34.624 22.624-39.168l189.216-50.72c1.728-47.072 33.408-86.624 76.576-99.936v-486.496h-267.744c-17.664 0-32-14.336-32-32s14.336-32 32-32h376.512c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 713.728c24.672 0 44.768-20.096 44.768-44.768s-20.096-44.768-44.768-44.768-44.768 20.096-44.768 44.768 20.096 44.768 44.768 44.768zM991.68 198.592c0.192 5.024-0.608 10.144-2.88 14.976l-122.976 260.16c-9.952 21.6-30.912 35.008-54.688 35.008v0c-23.744 0-44.736-13.376-54.592-34.72l-123.232-260.384c-2.432-5.184-3.264-10.624-2.848-15.968-0.064-0.736-0.224-1.472-0.224-2.24 0-99.744 81.12-180.896 180.896-180.896s180.896 81.12 180.896 180.896c0 1.088-0.192 2.112-0.32 3.168zM811.072 439.712l100.352-212.32h-200.832l100.48 212.32zM811.104 78.496c-53.376 0-98.496 35.936-112.448 84.896h224.864c-13.952-48.96-59.072-84.896-112.448-84.896zM393.792 346.688c0 0.736-0.16 1.472-0.224 2.24 0.384 5.312-0.416 10.784-2.848 15.968l-123.104 260.16c-9.984 21.568-30.944 34.944-54.72 34.944v0c-23.744 0-44.704-13.408-54.56-34.72l-123.072-260.384c-2.272-4.832-3.104-9.952-2.912-14.976-0.128-1.056-0.32-2.112-0.32-3.168 0-99.744 81.12-180.896 180.896-180.896s180.896 81.12 180.896 180.896zM212.928 591.008l100.448-212.32h-200.832l100.352 212.32zM100.448 314.688h224.864c-13.952-48.96-59.072-84.896-112.448-84.896s-98.496 35.936-112.448 84.896z" /> +<glyph unicode="" glyph-name="search" d="M858.496 146.592c-12.512 12.48-32.768 12.48-45.28 0-12.48-12.512-12.48-32.768 0-45.28l18.816-18.816c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.512 12.48 32.768 0 45.28l-18.816 18.816zM970.4 168.096l-71.552 71.552c-3.808 3.808-8.512 6.592-13.664 8.096l-54.688 15.904-74.4 74.4c35.232 58.56 55.52 127.040 55.52 200.224 0 214.88-174.816 389.696-389.696 389.696s-389.696-174.816-389.696-389.696 174.816-389.728 389.696-389.728c72.992 0 141.344 20.224 199.808 55.264l74.496-74.496 15.904-54.656c1.504-5.184 4.288-9.856 8.096-13.664l71.552-71.552c13.856-13.856 34.048-21.472 56.352-21.472 2.88 0 5.792 0.128 8.736 0.384 23.904 2.048 46.56 12.352 62.048 28.096l44.544 44.544c35.072 35.136 38.368 95.712 6.976 127.104zM421.888 212.576c-179.584 0-325.696 146.112-325.696 325.696s146.112 325.696 325.696 325.696 325.696-146.112 325.696-325.696-146.112-325.696-325.696-325.696zM674.336 241.76c15.712 13.408 30.4 28.064 43.808 43.776l50.304-50.304-43.808-43.808-50.336 50.336zM918.144 86.24l-44.704-44.672c-4.96-5.024-13.44-8.64-22.144-9.408-7.904-0.64-12.928 1.216-14.304 2.592l-65.728 65.76-10.592 36.48 62.272 62.272 36.48-10.592 65.76-65.728c4.064-4.064 4.864-24.736-7.008-36.64zM299.936 769.952c-7.744-4.064-15.232-8.512-22.304-13.184-14.72-9.792-18.752-29.632-8.96-44.352 6.176-9.28 16.352-14.336 26.688-14.336 6.080 0 12.224 1.696 17.664 5.312 5.28 3.488 10.912 6.816 16.704 9.888 15.648 8.224 21.664 27.584 13.44 43.2-8.224 15.648-27.552 21.696-43.232 13.44zM606.88 723.2c-49.44 49.472-115.232 76.736-185.184 76.736-17.664 0-32-14.336-32-32s14.336-32 32-32c52.864 0 102.56-20.576 139.936-57.984 37.312-37.312 57.856-86.944 57.856-139.808 0-17.664 14.336-32 32-32s32 14.336 32 32c0 69.952-27.2 135.648-76.576 185.024z" /> +<glyph unicode="" glyph-name="select" d="M752.704 330.816v166.464c0 19.424-17.216 35.232-38.336 35.232h-614.912c-18.528 0-33.6-15.808-33.6-35.232v-185.888c0-19.456 15.072-35.232 33.6-35.232h599.328l53.92 54.656zM539.456 443.168c3.904 3.904 10.24 3.904 14.144 0l56.448-56.448 56.448 56.448c3.904 3.904 10.24 3.904 14.144 0s3.904-10.24 0-14.144l-63.52-63.52c-1.952-1.952-4.512-2.912-7.072-2.912s-5.12 0.96-7.072 2.912l-63.52 63.52c-3.904 3.904-3.904 10.24 0 14.144zM108.832 489.504h361.248v-170.336h-361.248v170.336zM409.536 425.824h-243.168c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h243.168c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM770.752 617.824h-601.312c-22.944 0-41.6-18.912-41.6-42.144 0-11.872 9.632-21.504 21.504-21.504 11.584 0 21.024 9.152 21.472 20.64h598.528v-277.056l-63.968-63.968h-534.56c-0.448 11.488-9.888 20.64-21.472 20.64-11.872 0-21.504-9.632-21.504-21.504 0-23.232 18.656-42.144 41.6-42.144h601.312c22.944 0 41.6 18.912 41.6 42.144v342.72c0 23.232-18.656 42.144-41.6 42.144zM932.544 424.288c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488z" /> +<glyph unicode="" glyph-name="share" d="M768 319.232c-34.56 0-65.92-13.696-88.96-35.936l-328.992 163.712 328.992 163.712c23.040-22.24 54.4-35.936 88.96-35.936 70.784 0 128.224 57.44 128.224 128.224s-57.44 128.224-128.224 128.224-128.224-57.44-128.224-128.224c0-5.152 0.288-10.272 0.928-15.328l-295.904-147.232c-23.040 22.144-54.368 35.744-88.832 35.744-70.784 0-128.224-57.376-128.224-128.224s57.44-128.224 128.224-128.224c33.792 0 64.512 13.088 87.424 34.432l297.248-147.936c-0.64-5.024-0.928-10.112-0.928-15.328 0-70.784 57.44-128.224 128.224-128.224s128.224 57.44 128.224 128.224-57.44 128.224-128.224 128.224zM810.24 703.008c0-23.296-18.944-42.24-42.24-42.24s-42.24 18.944-42.24 42.24 18.944 42.24 42.24 42.24 42.24-18.944 42.24-42.24zM256 405.76c-23.296 0-42.24 18.944-42.24 42.24s18.944 42.24 42.24 42.24 42.24-18.944 42.24-42.24-18.944-42.24-42.24-42.24zM768 233.216c23.296 0 42.24-18.944 42.24-42.24s-18.944-42.24-42.24-42.24-42.24 18.944-42.24 42.24 18.944 42.24 42.24 42.24z" /> +<glyph unicode="" glyph-name="shield" d="M917.216 821.12c-6.016 6.176-14.528 9.792-23.168 9.792-257.856 0-362.144 88.16-362.976 88.896-11.712 10.528-29.504 10.848-41.76 0.864-1.088-0.896-112.896-89.728-363.968-89.728-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.744-328.256v0l230.208-183.616c10.112-8.096 22.24-12.16 34.4-12.16s24.256 4.032 34.336 12.096l230.24 183.648c95.040 75.84 151.744 198.528 151.744 327.456 7.712 312.96 2.528 318.24-8.832 329.888zM862.016 492.064c0-110.4-47.712-214.4-127.648-278.208l-224.672-179.232-224.672 179.232c-79.936 63.808-127.68 167.808-127.68 278.208v275.328c195.84 5.632 308.352 61.952 351.936 89.344 42.816-28.032 153.536-84.448 355.712-89.472 1.216-50.272-0.288-167.648-2.912-275.232zM642.592 602.528l-239.136-239.136c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l239.136 239.136c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0zM534.528 671.072c-12.48 12.48-32.768 12.48-45.248 0l-154.4-154.4c-12.48-12.48-12.48-32.768 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l154.4 154.4c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="shield-check" d="M912.064 821.184c-6.016 6.176-14.528 9.792-23.168 9.792-257.888 0-362.176 88.192-363.040 88.896-11.712 10.56-29.536 10.848-41.76 0.864-1.088-0.896-112.896-89.76-364-89.76-17.696 0-32-14.336-32-32v-306.912c0-129.728 56.736-252.448 151.776-328.288l230.208-183.648c10.112-8.096 22.24-12.16 34.4-12.16s24.256 4.032 34.336 12.096l230.24 183.712c95.040 75.84 151.776 198.528 151.744 327.488 7.712 312.96 2.528 318.304-8.832 329.888zM856.864 492.064c0-110.432-47.744-214.432-127.68-278.24l-224.672-179.264-224.704 179.264c-79.936 63.808-127.68 167.808-127.68 278.24v275.36c195.84 5.632 308.352 61.952 351.936 89.344 42.848-28.032 153.536-84.448 355.744-89.472 1.216-50.272-0.288-167.648-2.912-275.264zM630.432 609.568l-170.624-163.488-78.432 71.84c-13.056 11.936-33.28 11.040-45.184-2.016s-11.040-33.28 1.984-45.216l100.576-92.096c6.112-5.6 13.856-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l192.288 184.224c12.768 12.224 13.184 32.48 0.96 45.248s-32.48 13.184-45.248 0.96z" /> +<glyph unicode="" glyph-name="shield-minus" d="M925.856 821.12c-6.016 6.176-14.528 9.792-23.168 9.792-257.888 0-362.112 88.16-362.976 88.896-11.712 10.528-29.504 10.848-41.76 0.864-1.088-0.896-112.896-89.728-363.968-89.728-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.744-328.256v0l230.208-183.616c10.112-8.096 22.24-12.128 34.4-12.128s24.256 4.032 34.336 12.096l230.24 183.648c95.040 75.808 151.744 198.528 151.744 327.456 7.712 312.96 2.528 318.24-8.832 329.888zM870.688 492.064c0-110.4-47.712-214.4-127.648-278.208l-224.672-179.232-224.672 179.232c-79.936 63.808-127.68 167.808-127.68 278.208v275.328c195.84 5.632 308.352 61.952 351.936 89.344 42.816-28.032 153.536-84.448 355.712-89.472 1.216-50.272-0.288-167.648-2.912-275.232zM689.12 498.848h-338.208c-17.664 0-32-14.336-32-32s14.336-32 32-32h338.208c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="shield-plus" d="M918.72 821.12c-6.016 6.176-14.528 9.792-23.168 9.792-257.888 0-362.112 88.16-362.976 88.896-11.712 10.528-29.504 10.848-41.76 0.864-1.088-0.896-112.896-89.728-363.968-89.728-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.744-328.256v0l230.208-183.616c10.112-8.096 22.24-12.16 34.4-12.16s24.256 4.032 34.336 12.096l230.24 183.648c95.040 75.808 151.744 198.528 151.744 327.456 7.712 312.96 2.528 318.24-8.832 329.888zM863.552 492.064c0-110.4-47.712-214.4-127.68-278.208l-224.672-179.232-224.672 179.232c-79.936 63.808-127.68 167.808-127.68 278.208v275.328c195.84 5.632 308.352 61.952 351.936 89.344 42.816-28.032 153.504-84.448 355.712-89.472 1.216-50.272-0.288-167.648-2.912-275.232zM682.016 498.848h-137.12v137.088c0 17.664-14.336 32-32 32s-32-14.336-32-32v-137.12h-137.12c-17.664 0-32-14.336-32-32s14.336-32 32-32h137.12v-137.12c0-17.664 14.336-32 32-32s32 14.336 32 32v137.12h137.12c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="shield-xmark" d="M917.856 821.12c-6.016 6.176-14.528 9.792-23.168 9.792-257.888 0-362.112 88.16-362.976 88.896-11.712 10.528-29.504 10.848-41.76 0.864-1.088-0.896-112.896-89.728-363.968-89.728-17.664 0-32-14.336-32-32v-306.88c0-129.696 56.736-252.416 151.744-328.256v0l230.208-183.616c10.112-8.096 22.24-12.128 34.4-12.128s24.256 4.032 34.336 12.096l230.24 183.648c95.040 75.808 151.744 198.528 151.744 327.456 7.712 312.96 2.528 318.24-8.832 329.888zM862.688 492.064c0-110.4-47.712-214.4-127.648-278.208l-224.672-179.232-224.672 179.232c-79.936 63.808-127.68 167.808-127.68 278.208v275.328c195.84 5.632 308.352 61.952 351.936 89.344 42.816-28.032 153.536-84.448 355.712-89.472 1.216-50.272-0.288-167.648-2.912-275.232zM654.208 609.088c-12.48 12.48-32.768 12.48-45.248 0l-96.96-96.96-96.96 96.96c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l96.96-96.96-96.96-96.96c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l96.96 96.96 96.96-96.96c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-96.96 96.96 96.96 96.96c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="shopping-cart" d="M970.432 783.328c-16.096 18.432-39.392 28.992-63.872 28.992h-695.744l-21.184 71.968c-4 13.6-16.512 22.976-30.72 22.976h-94.944c-17.664 0-32-14.336-32-32s14.336-32 32-32h71.008l102.176-347.552-76.192-248.416c-4.736-15.744-5.696-31.712-2.912-46.944 2.656-16.064 9.184-31.232 18.304-43.264 2.912-4.096 6.304-7.84 9.856-11.456-14.208-16.64-22.816-38.176-22.816-61.696 0-52.544 42.752-95.328 95.296-95.328s95.296 42.752 95.296 95.328c0 10.976-1.952 21.472-5.376 31.296h358.24c-3.424-9.824-5.408-20.32-5.408-31.296 0-52.544 42.752-95.328 95.328-95.328s95.296 42.752 95.296 95.328-42.752 95.296-95.296 95.296h-538.048c-5.856 0-11.84 1.44-17.184 4.16-5.376 2.72-9.952 6.56-13.664 11.712-3.392 4.48-5.632 9.76-6.72 16.224-1.024 5.664-0.64 11.552 1.088 17.312l47.744 155.552 44.416-151.072c4.128-13.952 16.864-22.976 30.688-22.976 3.008 0 6.016 0.416 9.056 1.312 16.96 4.992 26.656 22.784 21.664 39.712l-15.84 53.92h483.328c52.544 0 96.8 37.568 105.408 90.24l42.528 318.176c3.424 25.344-4.16 50.784-20.768 69.728zM290.016 84c0-17.28-14.048-31.328-31.296-31.328s-31.296 14.048-31.296 31.328 14.048 31.296 31.296 31.296 31.296-14.048 31.296-31.296zM796.8 52.704c-17.28 0-31.328 14.048-31.328 31.328s14.048 31.296 31.328 31.296 31.296-14.048 31.296-31.296-14.048-31.328-31.296-31.328zM276.16 590.080h94.688l5.216-62.592h-81.504l-18.4 62.592zM435.104 590.080h112.576v-62.592h-107.36l-5.216 62.592zM547.648 654.080h-117.888l-7.84 94.272h125.76v-94.272zM611.648 748.352h125.76l-7.84-94.272h-117.92v94.272zM547.648 463.488v-94.272h-94.4c0 0.768 0.128 1.504 0.064 2.336l-7.648 91.936h102.016zM611.648 463.488h102.048l-7.648-91.936c-0.064-0.768 0.064-1.536 0.064-2.336h-94.432v94.272zM611.648 527.488v62.592h112.576l-5.216-62.592h-107.36zM788.48 590.080h121.664l-8.384-62.592h-118.496l5.216 62.592zM922.272 741.216c4.448-5.088 6.432-12.064 5.504-19.136l-9.088-68.032h-124.864l7.648 91.936c0.064 0.768-0.064 1.536-0.064 2.304h105.152c7.808 0 12.864-3.872 15.712-7.104zM357.888 748.352c0-0.768-0.128-1.536-0.064-2.304l7.648-91.936h-108.16l-27.712 94.272h128.256zM313.376 463.488h68.032l7.84-94.272h-48.16l-27.712 94.272zM843.264 369.216h-73.184l7.84 94.272h115.264l-7.84-58.656c-3.36-20.64-21.088-35.616-42.112-35.616z" /> +<glyph unicode="" glyph-name="sidebar" d="M896 928h-766.176c-52.96 0-96-43.040-96-96v-768c0-52.928 43.040-96 96-96h766.176c52.928 0 96 43.072 96 96v768c0 52.96-43.072 96-96 96zM416 672h512v-224h-512v224zM129.824 864h766.176c17.952 0 32-14.048 32-32v-96h-830.176v96c0 17.632 14.368 32 32 32zM97.824 64v608h254.176v-640h-222.176c-17.632 0-32 14.336-32 32zM896 32h-480v352h512v-320c0-17.952-14.048-32-32-32zM832 768h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM704 768h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 576h32c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 448h128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32zM160 320h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM288 256h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM480 576h96c17.664 0 32 14.336 32 32s-14.336 32-32 32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32zM576 544h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="single-post" d="M534.999 639.111c0 11.875-9.625 21.5-21.5 21.5h-165.477c-30.991 0-56.204-25.215-56.204-56.206v-312.118c0-30.991 25.213-56.206 56.204-56.206h330.962c30.991 0 56.204 25.215 56.204 56.206v239.698c0 11.875-9.625 21.5-21.5 21.5s-21.5-9.625-21.5-21.5v-228.635l-24.267-24.267h-173.038v278.49c0 11.875-9.627 21.5-21.5 21.5h-138.561v25.331c0 7.28 5.922 13.204 13.202 13.204h165.477c11.875 0 21.5 9.625 21.5 21.5zM451.877 536.074v-256.988h-10.414v161.455c0 3.555-2.882 6.437-6.437 6.437h-100.208v89.096h117.059zM342.335 596.955c0-5.176 4.196-9.372 9.37-9.372s9.37 4.196 9.37 9.372-4.196 9.37-9.37 9.37-9.37-4.194-9.37-9.37zM379.954 596.955c0-5.176 4.196-9.372 9.37-9.372s9.372 4.196 9.372 9.372-4.196 9.37-9.372 9.37-9.37-4.194-9.37-9.37zM370.949 477.129h48.048c11.875 0 21.5 9.625 21.5 21.5s-9.627 21.5-21.5 21.5h-48.048c-11.875 0-21.5-9.625-21.5-21.5s9.627-21.5 21.5-21.5zM661.27 400.798c0 11.875-9.627 21.5-21.5 21.5h-101.727c-11.875 0-21.5-9.625-21.5-21.5s9.627-21.5 21.5-21.5h101.727c11.873 0 21.5 9.625 21.5 21.5zM538.041 361.481c-11.875 0-21.5-9.625-21.5-21.5s9.627-21.5 21.5-21.5h35.594c11.875 0 21.5 9.625 21.5 21.5s-9.625 21.5-21.5 21.5h-35.594zM567.975 646.49s0 0 0 0l-20.775-20.775c-6.17-6.17-10.186-14.332-11.308-22.983l-8.992-69.287c-1.068-8.232 1.685-16.316 7.553-22.183 5.036-5.036 11.707-7.777 18.699-7.777 1.154 0 2.317 0.074 3.483 0.228l69.281 8.99c8.655 1.124 16.819 5.138 22.989 11.31l181.15 181.152c15.494 15.494 15.494 40.706 0 56.202l-45.503 45.501c-7.505 7.505-17.484 11.639-28.101 11.639s-20.594-4.134-28.099-11.639l-5.144-5.144s-155.233-155.231-155.233-155.231zM619.284 555.203l-46.99-6.098 6.1 46.988 2.97 2.97 40.89-40.89-2.97-2.97zM729.583 665.501l-76.922-76.92-5.242 5.24 111.436 111.436 5.24-5.242-34.515-34.515zM756.453 774.149l40.89-40.888-2.838-2.838-40.888 40.89 2.836 2.836zM728.449 735.664l-111.438-111.436-5.24 5.242 111.436 111.434 5.242-5.242zM831.763 639.791c-11.853 0-21.458-9.607-21.458-21.458v-337.898c0-71.878-58.478-130.355-130.355-130.355h-335.9c-71.878 0-130.355 58.476-130.355 130.355v336.141c0 71.878 58.478 130.355 130.355 130.355h253.223c11.853 0 21.458 9.607 21.458 21.458s-9.605 21.458-21.458 21.458h-253.223c-95.541 0-173.272-77.728-173.272-173.272v-336.141c0-95.541 77.728-173.272 173.272-173.272h335.9c95.541 0 173.272 77.728 173.272 173.272v337.898c0 11.851-9.607 21.458-21.458 21.458z" /> +<glyph unicode="" glyph-name="single-product" d="M845.764 398.038l-34.872 151.865c-0.026 0.116-0.068 0.228-0.098 0.341-0.104 0.417-0.224 0.83-0.351 1.24-0.086 0.275-0.172 0.551-0.269 0.824-0.136 0.381-0.289 0.755-0.445 1.126-0.12 0.285-0.238 0.569-0.371 0.848-0.166 0.349-0.347 0.687-0.531 1.026-0.152 0.281-0.301 0.563-0.465 0.836-0.198 0.329-0.413 0.645-0.629 0.964-0.176 0.261-0.347 0.525-0.535 0.776-0.242 0.325-0.503 0.637-0.763 0.948-0.186 0.222-0.363 0.449-0.557 0.665-0.303 0.335-0.629 0.653-0.954 0.97-0.174 0.17-0.339 0.345-0.519 0.509-0.381 0.347-0.784 0.671-1.192 0.992-0.146 0.114-0.283 0.238-0.433 0.349-0.465 0.345-0.95 0.665-1.445 0.974-0.1 0.062-0.19 0.134-0.289 0.196-0.014 0.008-0.026 0.014-0.040 0.022-0.495 0.295-1.012 0.563-1.535 0.82-0.128 0.064-0.25 0.138-0.379 0.198-0.417 0.196-0.854 0.359-1.287 0.529-0.246 0.096-0.487 0.208-0.737 0.295-0.305 0.106-0.625 0.186-0.938 0.279-0.387 0.116-0.772 0.242-1.164 0.335-0.032 0.008-0.062 0.020-0.094 0.028l-150.229 35.179c-11.537 2.703-23.083-4.461-25.786-16.001s4.461-23.083 16.001-25.786l66.927-15.673-190.967-51.098-190.316 47.579 68.953 17.238c11.498 2.874 18.488 14.526 15.614 26.023s-14.526 18.492-26.023 15.614l-152.223-38.056c-0.034-0.008-0.066-0.022-0.102-0.030-0.345-0.088-0.683-0.206-1.022-0.311-0.353-0.11-0.715-0.206-1.060-0.331-0.19-0.070-0.371-0.16-0.559-0.234-0.487-0.194-0.974-0.389-1.441-0.615-0.054-0.026-0.104-0.058-0.158-0.084-0.595-0.295-1.176-0.611-1.735-0.956-0.004-0.002-0.008-0.004-0.014-0.008-0.046-0.028-0.088-0.064-0.134-0.092-0.553-0.349-1.092-0.717-1.607-1.11-0.114-0.086-0.216-0.184-0.327-0.271-0.437-0.349-0.868-0.705-1.276-1.084-0.162-0.152-0.309-0.315-0.467-0.473-0.335-0.333-0.671-0.669-0.984-1.022-0.184-0.21-0.351-0.431-0.527-0.647-0.261-0.321-0.527-0.641-0.768-0.978-0.182-0.252-0.345-0.513-0.515-0.772-0.214-0.323-0.429-0.645-0.625-0.98-0.158-0.269-0.297-0.551-0.445-0.828-0.182-0.343-0.363-0.687-0.527-1.042-0.124-0.271-0.234-0.551-0.347-0.828-0.156-0.379-0.309-0.761-0.443-1.15-0.090-0.261-0.166-0.527-0.246-0.792-0.128-0.421-0.25-0.842-0.349-1.272-0.022-0.092-0.054-0.182-0.076-0.273l-34.872-157.742c-1.236-5.591-0.186-11.446 2.916-16.26 3.104-4.815 8.002-8.186 13.605-9.368l35.279-7.441v-197.48c0-9.699 6.507-18.194 15.873-20.718l261.537-70.494c1.83-0.493 3.707-0.741 5.585-0.741 1.826 0 3.653 0.234 5.433 0.699l261.541 68.45c9.44 2.471 16.025 11.001 16.025 20.759v208.728l36.153 9.224c11.288 2.88 18.216 14.24 15.61 25.594zM248.217 514.029l231.628-57.907-50.372-100.743-206.69 43.599 25.434 115.051zM270.919 344.963l165.91-34.996c9.547-2.016 19.256 2.669 23.622 11.4l29.093 58.186v-204.121l-70.129-42.479-148.496 40.026v171.986zM751.083 171.057l-218.623-57.218v265.715l29.093-58.186c3.701-7.4 11.214-11.865 19.189-11.863 1.759 0 3.541 0.218 5.308 0.667l165.034 42.102v-181.214zM592.203 356.032l-50.246 100.49 232.085 62.101 25.205-109.774-207.044-52.817zM385.497 680.763l54.693-39.736c5.12-3.721 7.262-10.314 5.306-16.334l-20.891-64.294c-4.497-13.841 11.344-25.35 23.119-16.795l54.691 39.736c5.12 3.721 12.052 3.721 17.172 0l54.693-39.736c11.773-8.553 27.614 2.954 23.117 16.795l-20.891 64.294c-1.956 6.020 0.188 12.613 5.308 16.334l54.691 39.736c11.773 8.553 5.723 27.177-8.831 27.177h-67.602c-6.33 0-11.939 4.076-13.893 10.094l-20.891 64.294c-4.497 13.841-24.077 13.841-28.574 0l-20.891-64.294c-1.956-6.020-7.565-10.094-13.893-10.094h-67.604c-14.554 0-20.604-18.622-8.831-27.177z" /> +<glyph unicode="" glyph-name="site-log" d="M429.216 232.704c-23.616-8.064-48.384-12.16-73.6-12.16-19.136 0-40.288 22.432-56.544 59.968-8.992 20.768-16.096 44.896-21.088 71.168h42.016c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-48.16c-1.696 17.28-2.592 35.136-2.592 53.344 0 3.328 0.032 6.656 0.096 9.984 0.224 11.872-9.248 21.664-21.12 21.888-11.872 0.128-21.664-9.248-21.888-21.12-0.064-3.552-0.096-7.136-0.096-10.72 0-18.112 0.832-35.968 2.4-53.344h-94.176c-4.128 17.12-6.336 34.976-6.336 53.344s2.208 36.224 6.336 53.344h55.968c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-40.864c24.768 52.8 69.248 94.56 123.904 115.776-11.008-18.56-20.512-41.248-28.192-67.68-3.328-11.392 3.232-23.328 14.656-26.656s23.328 3.232 26.656 14.656c16.768 57.728 43.84 95.008 69.024 95.008 14.848 0 30.88-13.28 45.184-37.44 14.016-23.68 25.28-56.448 32.416-93.696h-116.992c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h261.12c4.448-8.864 14.624-13.76 24.64-11.136 11.488 3.008 18.368 14.752 15.392 26.24-1.12 4.224-2.304 8.416-3.616 12.544-0.064 0.192-0.128 0.352-0.16 0.544-35.264 111.904-139.424 188.928-257.92 188.928-120.32 0-222.496-78.976-257.504-187.776-0.288-0.768-0.544-1.536-0.768-2.304-7.904-25.408-12.192-52.384-12.192-80.352s4.256-54.976 12.192-80.384c0.192-0.768 0.448-1.568 0.736-2.304 35.008-108.832 137.216-187.776 257.504-187.776 29.952 0 59.392 4.864 87.488 14.464 11.232 3.84 17.216 16.064 13.376 27.296s-16.064 17.216-27.296 13.376zM561.728 544.32h-84.8c-8.16 46.976-21.824 86.464-39.424 115.872 54.336-20.96 99.2-62.272 124.224-115.872zM149.6 351.68h84.704c5.664-32.544 14.176-62.528 25.312-88.256 4.352-10.016 9.024-19.2 13.984-27.552-54.688 21.216-99.2 63.008-124 115.808zM234.656 522.912c0-10.656 8.384-19.264 18.688-19.264s18.688 8.64 18.688 19.264-8.384 19.264-18.688 19.264-18.688-8.64-18.688-19.264zM912.704 468.256h-519.648c-14.048 0-25.504-11.424-25.504-25.504v-162.4c0-14.048 11.424-25.504 25.504-25.504h519.648c14.048 0 25.504 11.456 25.504 25.504v162.4c0 14.048-11.456 25.504-25.504 25.504zM830.304 348.192c-3.552-3.552-8.448-5.728-13.856-5.728h-222.208c-10.784 0-19.584 8.768-19.584 19.584 0 5.408 2.208 10.304 5.728 13.856s8.448 5.728 13.856 5.728h222.208c10.816 0 19.584-8.768 19.584-19.616 0-5.408-2.176-10.304-5.728-13.856zM500.736 384.224h50.944c0.384 0 0.544-0.48 0.256-0.704l-41.248-29.952 15.744-48.48c0.096-0.352-0.288-0.672-0.608-0.448l-41.248 29.952-41.248-29.952c-0.288-0.224-0.704 0.096-0.608 0.448l15.744 48.48-41.248 29.952c-0.288 0.224-0.128 0.704 0.224 0.704h50.976l13.344 41.024 2.432 7.456c0.128 0.352 0.608 0.352 0.736 0l2.432-7.456 13.344-41.024zM816.672 276.352l96.512 96.512 1.792-49.6c0.928-25.632-19.584-46.912-45.216-46.912h-53.088z" /> +<glyph unicode="" glyph-name="sliders" d="M864 896h-704c-70.56 0-128-57.44-128-128v-640c0-70.592 57.44-128 128-128h704c70.592 0 128 57.408 128 128v640c0 70.56-57.408 128-128 128zM928 128c0-35.296-28.704-64-64-64h-704c-35.296 0-64 28.704-64 64v640c0 35.296 28.704 64 64 64h704c35.296 0 64-28.704 64-64v-640zM832 736h-101.6c-13.216 37.216-48.672 64-90.4 64-52.928 0-96-43.040-96-96s43.072-96 96-96c41.696 0 77.184 26.784 90.4 64h101.6c17.664 0 32 14.336 32 32s-14.336 32-32 32zM640 672c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.368 32-32-14.336-32-32-32zM192 672h256.672c17.664 0 32 14.336 32 32s-14.336 32-32 32h-256.672c-17.664 0-32-14.336-32-32s14.336-32 32-32zM832 480h-224c-17.664 0-32-14.336-32-32s14.336-32 32-32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32zM192 416h133.6c13.216-37.216 48.672-64 90.4-64 52.96 0 96 43.072 96 96s-43.040 96-96 96c-41.696 0-77.184-26.784-90.4-64h-133.6c-17.664 0-32-14.336-32-32s14.336-32 32-32zM416 480c17.664 0 32-14.336 32-32s-14.336-32-32-32-32 14.336-32 32 14.336 32 32 32zM320 224h-128c-17.664 0-32-14.336-32-32s14.336-32 32-32h128c17.664 0 32 14.336 32 32s-14.336 32-32 32zM832 224h-229.6c-13.216 37.216-48.672 64-90.4 64-52.96 0-96-43.072-96-96s43.040-96 96-96c41.696 0 77.184 26.784 90.4 64h229.6c17.664 0 32 14.336 32 32s-14.336 32-32 32zM512 160c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="sliders-up" d="M832 928h-640c-70.56 0-128-57.44-128-128v-704c0-70.592 57.44-128 128-128h640c70.592 0 128 57.408 128 128v704c0 70.56-57.408 128-128 128zM896 96c0-35.296-28.704-64-64-64h-640c-35.296 0-64 28.704-64 64v704c0 35.296 28.704 64 64 64h640c35.296 0 64-28.704 64-64v-704zM768 479.328c17.664 0 32 14.336 32 32v256.672c0 17.664-14.336 32-32 32s-32-14.336-32-32v-256.672c0-17.664 14.336-32 32-32zM768 416c-52.928 0-96-43.072-96-96 0-41.696 26.784-77.184 64-90.4v-101.6c0-17.664 14.336-32 32-32s32 14.336 32 32v101.6c37.216 13.216 64 48.672 64 90.4 0 52.928-43.072 96-96 96zM768 288c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM512 384c-17.664 0-32-14.336-32-32v-224c0-17.664 14.336-32 32-32s32 14.336 32 32v224c0 17.664-14.336 32-32 32zM544 634.4v133.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-133.6c-37.216-13.216-64-48.672-64-90.4 0-52.96 43.040-96 96-96s96 43.040 96 96c0 41.696-26.784 77.184-64 90.4zM512 512c-17.664 0-32 14.336-32 32s14.336 32 32 32 32-14.336 32-32-14.336-32-32-32zM256 608c17.664 0 32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32zM256 544c-52.96 0-96-43.040-96-96 0-41.696 26.784-77.184 64-90.4v-229.6c0-17.664 14.336-32 32-32s32 14.336 32 32v229.6c37.216 13.216 64 48.672 64 90.4 0 52.96-43.040 96-96 96zM256 416c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="social-icon" d="M854.688 832.16h-685.344c-22.88 0-41.504-18.624-41.504-41.504v-685.344c0-22.88 18.624-41.504 41.504-41.504h685.344c22.88 0 41.504 18.624 41.504 41.504v685.344c0 22.88-18.624 41.504-41.504 41.504zM853.184 106.816h-682.336v682.336h682.336v-682.336zM304.48 698.528c0-21.056-16.288-38.144-36.352-38.144s-36.352 17.088-36.352 38.144c0 21.056 16.288 38.144 36.352 38.144s36.352-17.088 36.352-38.144zM583.552 677.024h-240.928c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h240.928c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504zM755.552 617.664h-470.752c-25.376 0-45.952-20.576-45.952-45.952v-334.752c0-25.376 20.576-45.952 45.952-45.952h470.752c25.408 0 45.952 20.576 45.952 45.952v334.752c0 25.376-20.544 45.952-45.952 45.952zM611.136 390.080c-0.416-0.544-0.896-1.024-1.376-1.536l-87.84-92.192c-5.152-5.408-13.536-5.408-18.688 0l-87.872 92.192c-22.368 23.488-25.024 61.728-4.096 86.688 22.912 27.328 62.624 28.32 86.752 2.976 3.392-3.552 6.304-7.424 8.736-11.584 2.528-4.352 8.416-4.352 11.072-0.064 2.24 3.616 4.864 7.008 7.872 10.176 0.48 0.512 0.96 0.992 1.472 1.44 23.296 22.912 59.872 22.432 82.624-1.44s23.232-62.272 1.376-86.688zM785.28 250.048c0-18.72-14.464-33.888-32.288-33.888h-89.888l122.176 128.256v-94.336z" /> +<glyph unicode="" glyph-name="social-share" d="M960 416c-17.664 0-32-14.336-32-32v-320c0-17.664-14.336-32-32-32h-768c-17.632 0-32 14.336-32 32v768c0 17.632 14.368 32 32 32h320c17.664 0 32 14.336 32 32s-14.336 32-32 32h-320c-52.96 0-96-43.040-96-96v-768c0-52.928 43.040-96 96-96h768c52.928 0 96 43.072 96 96v320c0 17.664-14.336 32-32 32zM494.304 483.36c15.808 7.904 22.208 27.136 14.304 42.944-7.872 15.776-27.104 22.272-42.944 14.304-273.088-136.544-241.792-413.792-241.44-416.576 2.016-16.192 15.808-28 31.68-28 1.28 0 2.624 0.096 3.936 0.256 17.504 2.144 29.984 18.080 27.872 35.616-1.152 9.568-25.248 235.616 206.56 351.52zM592.544 388.64c15.072 9.12 19.936 28.736 10.88 43.84-9.088 15.168-28.736 20.064-43.904 10.976-62.944-37.76-166.944-154.4-109.888-325.568 4.448-13.408 16.96-21.888 30.336-21.888 3.328 0 6.752 0.544 10.112 1.664 16.768 5.6 25.824 23.712 20.256 40.48-54.752 164.256 76.32 246.88 82.208 250.496zM479.968 621.952l156.96-48.992 49.024-156.96c4.224-13.536 16.736-22.464 30.528-22.464 1.664 0 3.328 0.128 4.992 0.384l154.336 24.32c13.216 2.080 23.744 12.192 26.4 25.344l89.184 446.176c2.112 10.496-1.184 21.344-8.736 28.896s-18.432 10.912-28.896 8.768l-446.176-89.184c-13.152-2.624-23.264-13.152-25.344-26.368l-24.32-154.336c-2.464-15.68 6.912-30.816 22.080-35.552zM541.952 779.808l377.248 75.424-75.424-377.248-104.992-16.544-40 128.128 147.648 147.648c12.48 12.512 12.48 32.768 0 45.248s-32.736 12.512-45.248 0l-147.648-147.648-128.128 40.032 16.544 104.992z" /> +<glyph unicode="" glyph-name="social-share-2" d="M488.256 269.44c14.048-14.048 36.864-14.048 50.912 0l239.040 239.040c1.312 1.312 2.624 2.624 3.744 4 59.424 63.392 58.112 163.008-3.744 224.864-61.92 61.92-161.472 63.168-224.864 3.744-1.376-1.152-2.688-2.464-4-3.744-8.192-8.192-15.36-17.056-21.408-26.432-7.2-11.072-23.232-11.072-30.112 0.192-6.528 10.688-14.432 20.768-23.68 30.048-65.728 65.728-173.76 63.136-236.128-7.776-56.928-64.704-49.792-163.904 11.168-224.864l239.104-239.104zM853.344 417.472h-112.992c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h112.992c23.424 0 42.496-19.072 42.496-42.496v-120.256l-68.352-68.352h-656.8c-23.424 0-42.496 19.072-42.496 42.496v146.112c0 23.424 19.072 42.496 42.496 42.496h102.272c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-102.272c-47.136 0-85.504-38.368-85.504-85.504v-146.112c0-47.136 38.368-85.504 85.504-85.504h682.656c47.136 0 85.504 38.368 85.504 85.504v146.112c0 47.136-38.368 85.504-85.504 85.504zM199.072 265.504c0-20.384 16.512-36.896 36.896-36.896s36.896 16.512 36.896 36.896-16.512 36.896-36.896 36.896-36.896-16.512-36.896-36.896zM402.080 265.504c0-20.384-16.512-36.896-36.896-36.896s-36.896 16.512-36.896 36.896c0 20.384 16.512 36.896 36.896 36.896s36.896-16.512 36.896-36.896zM622.592 265.504c0-20.384 16.512-36.896 36.896-36.896s36.896 16.512 36.896 36.896-16.512 36.896-36.896 36.896-36.896-16.512-36.896-36.896zM825.6 265.504c0-20.384-16.512-36.896-36.896-36.896s-36.896 16.512-36.896 36.896c0 20.384 16.512 36.896 36.896 36.896s36.896-16.512 36.896-36.896z" /> +<glyph unicode="" glyph-name="spark" d="M843.040 510.72c-102.688 16.8-159.072 38.176-194.592 73.728s-56.928 91.904-73.728 194.592c-5.088 30.88-31.456 53.28-62.72 53.28s-57.696-22.4-62.72-53.28c-16.8-102.656-38.176-159.072-73.728-194.592s-91.904-56.928-194.592-73.728c-30.88-5.088-53.28-31.456-53.28-62.72s22.4-57.696 53.28-62.72c102.688-16.8 159.072-38.176 194.592-73.728s56.928-91.904 73.728-194.592c5.088-30.88 31.456-53.28 62.72-53.28s57.696 22.4 62.72 53.28c16.8 102.656 38.176 159.072 73.728 194.592s91.904 56.928 194.592 73.728c30.88 5.088 53.28 31.456 53.28 62.72s-22.4 57.696-53.28 62.72zM587.648 372.352c-33.664-33.664-57.504-76.8-75.648-139.392-18.144 62.592-41.984 105.76-75.648 139.392-33.664 33.664-76.8 57.504-139.392 75.648 62.592 18.144 105.76 41.984 139.392 75.648 33.664 33.664 57.504 76.8 75.648 139.392 18.144-62.592 41.984-105.76 75.648-139.392 33.664-33.664 76.8-57.504 139.392-75.648-62.592-18.144-105.76-41.984-139.392-75.648z" /> +<glyph unicode="" glyph-name="sparkles" d="M843.040 510.72c-102.688 16.8-159.072 38.176-194.592 73.728s-56.928 91.904-73.728 194.592c-5.088 30.88-31.456 53.28-62.72 53.28s-57.696-22.4-62.72-53.28c-16.8-102.656-38.176-159.072-73.728-194.592s-91.904-56.928-194.592-73.728c-30.88-5.088-53.28-31.456-53.28-62.72s22.4-57.696 53.28-62.72c102.688-16.8 159.072-38.176 194.592-73.728s56.928-91.904 73.728-194.592c5.088-30.88 31.456-53.28 62.72-53.28s57.696 22.4 62.72 53.28c16.8 102.656 38.176 159.072 73.728 194.592s91.904 56.928 194.592 73.728c30.88 5.088 53.28 31.456 53.28 62.72s-22.4 57.696-53.28 62.72zM587.648 372.352c-33.664-33.664-57.504-76.8-75.648-139.392-18.144 62.592-41.984 105.76-75.648 139.392-33.664 33.664-76.8 57.504-139.392 75.648 62.592 18.144 105.76 41.984 139.392 75.648 33.664 33.664 57.504 76.8 75.648 139.392 18.144-62.592 41.984-105.76 75.648-139.392 33.664-33.664 76.8-57.504 139.392-75.648-62.592-18.144-105.76-41.984-139.392-75.648zM330.144 182.048c-51.040 12.192-71.904 33.056-84.096 84.096-3.232 13.568-22.752 13.568-25.984 0-12.192-51.040-33.056-71.904-84.096-84.096-13.568-3.232-13.568-22.752 0-25.984 51.040-12.192 71.904-33.056 84.096-84.096 3.232-13.568 22.752-13.568 25.984 0 12.192 51.040 33.056 71.904 84.096 84.096 13.568 3.232 13.568 22.752 0 25.984zM691.744 711.84c51.040-12.192 71.904-33.056 84.096-84.096 3.232-13.568 22.752-13.568 25.984 0 12.192 51.040 33.056 71.904 84.096 84.096 13.568 3.232 13.568 22.752 0 25.984-51.040 12.192-71.904 33.056-84.096 84.096-3.232 13.568-22.752 13.568-25.984 0-12.192-51.040-33.056-71.904-84.096-84.096-13.568-3.232-13.568-22.752 0-25.984z" /> +<glyph unicode="" glyph-name="speedometer" d="M509.376 930.624c-264.672 0-480-215.328-480-480 0-49.92 7.616-99.072 22.656-146.176 1.792-5.568 4.768-13.408 8.832-23.232-18.208-30.912-28.864-66.784-28.864-105.216 0-114.688 93.312-208 208-208 39.776 0 76.832 11.424 108.512 30.88 1.792-1.024 3.648-1.888 5.664-2.592 49.888-17.024 102.112-25.664 155.232-25.664 264.672 0 480 215.328 480 480s-215.328 479.968-480.032 479.968zM99.616 144.384c15.936 1.824 28.384 15.2 28.384 31.616s-12.448 29.824-28.384 31.616c3.68 16.288 10.144 31.52 18.816 45.216 5.792-4.576 12.736-7.008 19.712-7.008 8.192 0 16.384 3.136 22.624 9.376 11.584 11.616 12.288 29.792 2.368 42.336 13.696 8.672 28.928 15.168 45.216 18.816 1.824-15.936 15.2-28.384 31.648-28.384s29.824 12.448 31.648 28.384c16.288-3.648 31.52-10.144 45.216-18.816-9.92-12.544-9.248-30.752 2.368-42.336 6.24-6.24 14.432-9.376 22.624-9.376 7.008 0 13.92 2.432 19.744 7.008 8.672-13.696 15.136-28.928 18.816-45.216-15.936-1.824-28.384-15.2-28.384-31.616s12.448-29.824 28.384-31.616c-14.496-64.224-71.872-112.384-140.384-112.384s-125.92 48.16-140.384 112.352zM509.376 34.592c-35.872 0-71.232 4.672-105.568 13.664 27.584 35.296 44.192 79.552 44.192 127.712 0 56.256-22.528 107.264-58.912 144.736-0.672 0.8-1.216 1.664-1.984 2.4s-1.6 1.312-2.4 1.952c-37.472 36.384-88.48 58.88-144.704 58.88-49.536 0-95.008-17.472-130.752-46.432-10.336 36.64-15.84 74.56-15.84 113.056 0 229.376 186.624 416 416 416s416-186.624 416-416-186.624-416-416-416zM763.136 694.336c-0.704 0.864-1.312 1.792-2.144 2.624s-1.76 1.44-2.624 2.144c-63.52 62.368-150.528 100.896-246.336 100.896s-182.816-38.528-246.336-100.896c-0.864-0.704-1.792-1.312-2.624-2.144s-1.44-1.76-2.144-2.624c-62.336-63.552-100.864-150.528-100.864-246.336 0-17.664 14.336-32 32-32h128c17.664 0 32 14.336 32 32 0 88.224 71.776 160 160 160s160-71.776 160-160c0-42.688-16.64-82.848-46.784-113.088-12.48-12.48-12.48-32.736 0-45.216l90.496-90.496c6.016-6.016 14.144-9.376 22.624-9.376v0c8.48 0 16.64 3.36 22.624 9.376 66.432 66.496 103.040 154.848 103.040 248.8 0 95.84-38.528 182.816-100.864 246.336zM733.44 480c-5.472 37.856-20.352 72.608-42.304 101.888l45.664 45.664c33.152-41.408 55.168-92.096 61.312-147.552h-64.672zM544 669.44v64.672c55.456-6.144 106.144-28.16 147.552-61.312l-45.664-45.664c-29.312 21.952-64.064 36.864-101.888 42.304zM378.112 627.136l-45.664 45.664c41.408 33.152 92.096 55.136 147.552 61.312v-64.672c-37.856-5.472-72.608-20.352-101.888-42.304zM287.2 627.552l45.664-45.664c-21.952-29.28-36.832-64.064-42.304-101.888h-64.672c6.144 55.424 28.16 106.112 61.312 147.552zM737.12 268.352l-45.6 45.6c22.496 30.016 36.832 64.96 42.112 102.080h64.416c-5.952-54.208-26.816-105.12-60.928-147.648zM579.808 380.192c18.144 18.144 28.16 42.24 28.16 67.904s-9.984 49.76-28.128 67.904c-32.224 32.256-112.672 32.736-136.512 32.032-16.992-0.448-30.688-14.112-31.136-31.104-0.672-23.936-0.352-104.48 31.872-136.64 18.112-18.144 42.208-28.16 67.872-28.16s49.76 9.984 67.872 28.096zM476.896 483.232c27.136-1.984 51.488-6.912 57.696-12.512 6.016-6.048 9.344-14.080 9.344-22.624s-3.328-16.544-9.376-22.592c-12.096-12.096-33.184-12.064-45.216-0.032-5.6 6.208-10.528 30.592-12.448 57.76zM241.184 221.76l-24-24.48c-12.352-12.64-12.16-32.864 0.448-45.248 6.24-6.112 14.304-9.152 22.4-9.152 8.288 0 16.608 3.2 22.848 9.6l24.032 24.48c12.352 12.64 12.16 32.864-0.448 45.248s-32.864 12.192-45.28-0.448zM512 256c-17.664 0-32-14.336-32-32s14.336-32 32-32h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64zM608 160h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="square-arrow-down" d="M617.376 427.968l-73.376-73.376v264.064c0 17.664-14.336 32-32 32s-32-14.336-32-32v-264.064l-73.376 73.376c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l127.968-128c1.472-1.504 3.136-2.816 4.896-4 0.768-0.544 1.664-0.896 2.496-1.344 0.992-0.544 1.984-1.152 3.040-1.6s2.176-0.672 3.232-1.024c0.896-0.288 1.792-0.64 2.72-0.832 2.080-0.416 4.16-0.64 6.272-0.64s4.192 0.224 6.272 0.64c0.928 0.192 1.824 0.544 2.72 0.832 1.088 0.32 2.208 0.576 3.264 1.024s2.048 1.024 3.040 1.6c0.832 0.448 1.664 0.832 2.496 1.344 1.76 1.184 3.424 2.496 4.896 4l128 128c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.264 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-down-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 141.984s0 0 0 0h-596s0 0 0 0v596s0 0 0 0h596s0 0 0 0v-596zM609.6 427.744l-54.592-54.592v237.504c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-237.504l-54.592 54.592c-16.768 16.8-44.032 16.8-60.8 0s-16.8-44 0-60.832l128-128c0.992-1.024 2.080-1.952 3.136-2.848 0.48-0.384 1.024-0.736 1.504-1.12 0.608-0.48 1.216-0.928 1.856-1.376s1.248-0.768 1.888-1.12c0.576-0.352 1.152-0.704 1.728-1.024 0.64-0.352 1.28-0.64 1.952-0.928s1.248-0.608 1.856-0.864c0.64-0.256 1.28-0.48 1.92-0.704s1.344-0.48 2.048-0.736c0.64-0.192 1.312-0.352 1.952-0.48 0.704-0.192 1.408-0.384 2.112-0.512 0.768-0.16 1.504-0.256 2.304-0.352 0.64-0.096 1.248-0.192 1.888-0.288 1.408-0.16 2.816-0.192 4.256-0.192s2.816 0.096 4.256 0.192c0.64 0.064 1.248 0.192 1.856 0.288 0.768 0.096 1.504 0.192 2.304 0.352 0.736 0.16 1.408 0.352 2.144 0.512 0.64 0.16 1.312 0.288 1.952 0.48 0.672 0.192 1.376 0.48 2.048 0.736 0.64 0.224 1.312 0.448 1.952 0.704s1.248 0.576 1.856 0.864c0.64 0.288 1.312 0.576 1.952 0.928 0.576 0.32 1.152 0.672 1.728 1.024 0.64 0.384 1.28 0.736 1.856 1.12 0.64 0.448 1.216 0.896 1.856 1.376 0.512 0.384 1.024 0.736 1.504 1.12 1.12 0.896 2.144 1.856 3.168 2.848l128 128c16.8 16.8 16.8 44 0 60.832s-44 16.8-60.832 0z" /> +<glyph unicode="" glyph-name="square-arrow-down-left" d="M602.848 591.328l-186.72-186.72v103.744c0 17.664-14.336 32-32 32s-32-14.336-32-32v-181.024c0-2.112 0.224-4.192 0.64-6.272 0.192-0.928 0.544-1.824 0.8-2.72 0.32-1.088 0.576-2.176 0.992-3.232s1.056-2.048 1.6-3.072c0.448-0.832 0.8-1.664 1.312-2.432 2.336-3.52 5.376-6.528 8.864-8.864 0.768-0.544 1.664-0.896 2.496-1.344 0.992-0.544 1.984-1.152 3.040-1.6s2.176-0.672 3.232-1.024c0.896-0.288 1.792-0.64 2.72-0.832 2.080-0.416 4.16-0.64 6.272-0.64h181.024c17.664 0 32 14.336 32 32s-14.336 32-32 32h-103.744l186.72 186.72c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0zM984.8 813.536c0 63.2-51.232 114.432-114.432 114.432h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.232-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104zM870.336 32h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104c0-27.808-22.624-50.432-50.432-50.432z" /> +<glyph unicode="" glyph-name="square-arrow-down-left-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM348.8 313.184c0.128-0.736 0.192-1.504 0.352-2.272 0.16-0.736 0.352-1.408 0.544-2.144 0.16-0.64 0.288-1.312 0.48-1.952 0.224-0.672 0.448-1.376 0.736-2.048 0.224-0.64 0.448-1.312 0.704-1.92s0.576-1.248 0.864-1.856c0.288-0.64 0.576-1.312 0.96-1.952 0.32-0.576 0.672-1.184 1.024-1.76 0.352-0.64 0.736-1.248 1.152-1.856 0.448-0.64 0.896-1.248 1.376-1.856 0.384-0.48 0.736-1.024 1.152-1.504 1.792-2.208 3.808-4.192 6.016-6.016 0.48-0.416 1.024-0.768 1.536-1.152 0.608-0.48 1.184-0.928 1.824-1.376s1.248-0.768 1.888-1.152c0.576-0.352 1.152-0.704 1.728-1.024 0.64-0.352 1.312-0.64 1.984-0.928 0.608-0.288 1.216-0.576 1.856-0.864s1.28-0.48 1.92-0.704c0.672-0.256 1.344-0.48 2.016-0.704s1.312-0.352 1.984-0.512c0.704-0.192 1.376-0.384 2.112-0.512s1.504-0.256 2.304-0.352c0.64-0.096 1.248-0.192 1.888-0.288 1.408-0.16 2.816-0.192 4.256-0.192h181.024c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008h-77.216l167.936 167.936c16.8 16.8 16.8 44.032 0 60.832s-44 16.8-60.832 0l-167.936-167.936v77.216c0 23.744-19.232 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-181.024c0-1.408 0.064-2.816 0.224-4.256 0.064-0.64 0.16-1.28 0.256-1.888z" /> +<glyph unicode="" glyph-name="square-arrow-down-right" d="M632.672 540.352c-17.664 0-32-14.336-32-32v-103.744l-186.72 186.72c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l186.752-186.752h-103.776c-17.664 0-32-14.336-32-32s14.336-32 32-32h181.024c2.112 0 4.192 0.224 6.272 0.64 0.96 0.192 1.856 0.544 2.784 0.832 1.088 0.32 2.144 0.544 3.2 0.992 1.12 0.448 2.112 1.088 3.136 1.664 0.768 0.448 1.6 0.768 2.368 1.312 3.52 2.336 6.528 5.376 8.864 8.864 0.544 0.768 0.864 1.632 1.312 2.432 0.544 1.024 1.184 1.984 1.6 3.072s0.672 2.144 1.024 3.232c0.288 0.928 0.64 1.792 0.832 2.72 0.416 2.048 0.64 4.16 0.64 6.272v181.024c0 17.664-14.336 32-32 32zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-down-right-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM528.864 362.336h-77.216c-23.744 0-43.008-19.264-43.008-43.008s19.232-43.008 43.008-43.008h181.024c1.408 0 2.816 0.096 4.256 0.192 0.64 0.064 1.248 0.192 1.856 0.288 0.768 0.096 1.504 0.192 2.304 0.352 0.736 0.16 1.408 0.352 2.112 0.512 0.64 0.16 1.312 0.288 1.952 0.512 0.672 0.192 1.376 0.48 2.048 0.704s1.312 0.448 1.952 0.704c0.64 0.256 1.216 0.576 1.856 0.864s1.312 0.608 1.952 0.928c0.576 0.32 1.152 0.672 1.728 1.024 0.64 0.384 1.28 0.736 1.888 1.152s1.216 0.896 1.856 1.376c0.512 0.384 1.024 0.736 1.536 1.152 2.208 1.792 4.192 3.808 6.016 6.016 0.384 0.48 0.736 1.024 1.12 1.504 0.48 0.64 0.928 1.216 1.376 1.856 0.384 0.608 0.768 1.248 1.12 1.856 0.352 0.576 0.704 1.152 1.024 1.76 0.352 0.64 0.64 1.312 0.928 1.952s0.608 1.216 0.864 1.856 0.48 1.28 0.704 1.92c0.256 0.672 0.512 1.376 0.736 2.048 0.192 0.64 0.352 1.312 0.48 1.952 0.192 0.704 0.384 1.408 0.512 2.144s0.256 1.504 0.352 2.272c0.096 0.64 0.192 1.248 0.288 1.888 0.16 1.408 0.192 2.816 0.192 4.256v181.024c0 23.744-19.264 43.008-43.008 43.008s-43.008-19.232-43.008-43.008v-77.216l-167.936 167.936c-16.768 16.8-44.032 16.8-60.832 0s-16.8-44.032 0-60.832l167.936-167.936z" /> +<glyph unicode="" glyph-name="square-arrow-left" d="M682.688 480h-264.064l73.376 73.376c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-127.968-127.968c-1.472-1.472-2.816-3.136-4.032-4.896-0.544-0.768-0.864-1.632-1.312-2.432-0.576-0.992-1.184-1.984-1.6-3.072-0.448-1.056-0.672-2.144-0.992-3.232-0.256-0.896-0.64-1.792-0.8-2.72-0.8-4.16-0.8-8.384 0-12.544 0.192-0.928 0.544-1.824 0.8-2.72 0.32-1.088 0.576-2.176 0.992-3.232s1.056-2.048 1.6-3.072c0.448-0.832 0.8-1.664 1.312-2.432 1.184-1.76 2.528-3.424 4.032-4.896l127.968-128c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-73.376 73.376h264.064c17.664 0 32 14.336 32 32s-14.336 32-32 32zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-left-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM305.568 463.872c-0.384-0.608-0.768-1.248-1.152-1.856-0.352-0.576-0.704-1.152-1.024-1.76-0.352-0.64-0.64-1.28-0.96-1.952s-0.608-1.248-0.864-1.888-0.48-1.28-0.704-1.92c-0.256-0.672-0.512-1.376-0.736-2.048-0.192-0.64-0.352-1.28-0.48-1.952-0.16-0.704-0.384-1.408-0.544-2.112-0.16-0.736-0.256-1.504-0.352-2.272-0.096-0.64-0.224-1.248-0.256-1.888-0.256-2.816-0.256-5.664 0-8.48 0.064-0.64 0.16-1.28 0.256-1.888 0.128-0.736 0.192-1.504 0.352-2.272 0.16-0.736 0.352-1.408 0.544-2.144 0.16-0.64 0.288-1.312 0.48-1.952 0.224-0.704 0.448-1.376 0.736-2.048 0.224-0.64 0.448-1.312 0.704-1.92s0.576-1.248 0.864-1.856c0.288-0.64 0.576-1.312 0.96-1.952 0.32-0.576 0.672-1.184 1.024-1.76 0.352-0.64 0.736-1.248 1.152-1.856 0.448-0.64 0.896-1.248 1.376-1.856 0.384-0.48 0.736-1.024 1.152-1.504 0.896-1.12 1.856-2.144 2.848-3.168l128-128c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.8 16.8 16.8 44 0 60.832l-54.592 54.592h237.504c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008h-237.504l54.592 54.592c16.8 16.8 16.8 44.032 0 60.8s-44.032 16.8-60.832 0l-128-128c-0.992-0.992-1.952-2.080-2.848-3.136-0.384-0.48-0.768-0.992-1.152-1.504-0.448-0.64-0.96-1.248-1.376-1.888z" /> +<glyph unicode="" glyph-name="square-arrow-right" d="M712.224 435.744c0.448 1.056 0.672 2.144 1.024 3.232 0.288 0.928 0.64 1.792 0.832 2.72 0.832 4.16 0.832 8.384 0 12.544-0.192 0.96-0.544 1.824-0.832 2.72-0.32 1.088-0.576 2.176-1.024 3.232s-1.056 2.048-1.6 3.072c-0.448 0.8-0.8 1.664-1.312 2.432-1.184 1.76-2.496 3.424-4 4.896l-128 127.968c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l73.376-73.376h-264.064c-17.664 0-32-14.336-32-32s14.336-32 32-32h264.064l-73.376-73.376c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l128 128c1.504 1.504 2.816 3.136 4 4.896 0.544 0.768 0.864 1.632 1.312 2.432 0.544 1.024 1.184 1.984 1.6 3.072zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-right-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM341.312 396.992h237.504l-54.592-54.592c-16.8-16.8-16.8-44 0-60.832 8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576l128 128c1.024 1.024 1.952 2.048 2.848 3.168 0.384 0.48 0.736 1.024 1.12 1.504 0.48 0.64 0.928 1.216 1.376 1.856 0.416 0.608 0.768 1.248 1.12 1.856 0.352 0.576 0.704 1.152 1.024 1.76 0.352 0.64 0.64 1.312 0.928 1.952s0.608 1.216 0.864 1.856 0.48 1.28 0.704 1.92c0.256 0.672 0.512 1.376 0.736 2.048 0.192 0.64 0.352 1.312 0.48 1.952 0.192 0.704 0.384 1.408 0.512 2.144s0.256 1.504 0.352 2.272c0.096 0.64 0.192 1.248 0.288 1.888 0.288 2.816 0.288 5.664 0 8.48-0.064 0.64-0.192 1.248-0.288 1.888-0.096 0.768-0.192 1.504-0.352 2.272s-0.352 1.408-0.512 2.112c-0.16 0.672-0.288 1.312-0.48 1.952-0.192 0.704-0.48 1.376-0.736 2.048-0.224 0.64-0.448 1.28-0.704 1.92s-0.576 1.248-0.864 1.888c-0.288 0.672-0.576 1.312-0.928 1.952-0.32 0.576-0.672 1.184-1.024 1.76-0.384 0.64-0.736 1.28-1.12 1.888s-0.928 1.248-1.376 1.856c-0.384 0.512-0.736 1.024-1.12 1.504-0.896 1.088-1.856 2.176-2.848 3.136l-128 128c-16.768 16.8-44 16.8-60.832 0s-16.8-44.032 0-60.832l54.592-54.592h-237.504c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008z" /> +<glyph unicode="" glyph-name="square-arrow-up" d="M534.624 641.28c-1.504 1.472-3.136 2.816-4.896 4-0.8 0.544-1.664 0.896-2.528 1.376-0.992 0.544-1.952 1.152-2.976 1.568-1.088 0.448-2.208 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.16 0.8-8.384 0.8-12.544 0-0.928-0.192-1.792-0.544-2.688-0.8-1.088-0.32-2.208-0.576-3.264-1.024s-2.016-1.056-3.008-1.6c-0.832-0.448-1.696-0.832-2.528-1.376-1.76-1.184-3.424-2.528-4.896-4l-127.968-127.968c-12.48-12.48-12.48-32.768 0-45.248s32.768-12.48 45.248 0l73.376 73.376v-264.096c0-17.664 14.336-32 32-32s32 14.336 32 32v264.064l73.376-73.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-128 127.968zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-up-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM414.4 452.256l54.592 54.592v-237.504c0-23.744 19.232-43.008 43.008-43.008s43.008 19.264 43.008 43.008v237.504l54.592-54.592c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.8 16.8 16.8 44.032 0 60.832l-128 128c-1.024 0.992-2.048 1.952-3.168 2.848-0.48 0.384-1.024 0.768-1.504 1.152-0.608 0.448-1.216 0.928-1.856 1.376-0.608 0.416-1.248 0.768-1.856 1.152-0.576 0.352-1.12 0.704-1.728 1.024-0.64 0.352-1.312 0.64-1.952 0.96s-1.216 0.608-1.856 0.864c-0.64 0.256-1.28 0.48-1.92 0.704-0.672 0.256-1.344 0.512-2.048 0.736-0.64 0.192-1.312 0.352-1.952 0.48-0.704 0.16-1.408 0.384-2.144 0.544s-1.504 0.256-2.24 0.352c-0.64 0.096-1.248 0.224-1.888 0.256-1.408 0.16-2.784 0.224-4.192 0.224 0 0-0.032 0-0.064 0s-0.032 0-0.064 0c-1.408 0-2.816-0.064-4.192-0.224-0.64-0.064-1.28-0.16-1.888-0.256-0.768-0.128-1.504-0.192-2.24-0.352s-1.408-0.352-2.112-0.544c-0.672-0.16-1.312-0.288-1.952-0.48-0.672-0.224-1.376-0.448-2.048-0.736-0.64-0.224-1.28-0.448-1.92-0.704s-1.248-0.576-1.856-0.864c-0.672-0.288-1.312-0.576-1.952-0.96-0.576-0.32-1.152-0.672-1.728-1.024-0.64-0.352-1.28-0.736-1.888-1.152s-1.248-0.896-1.856-1.376c-0.512-0.384-1.024-0.736-1.504-1.152-1.088-0.896-2.176-1.856-3.136-2.848l-128-128c-16.8-16.8-16.8-44.032 0-60.832s44.032-16.8 60.832 0z" /> +<glyph unicode="" glyph-name="square-arrow-up-left" d="M468.576 536.672h103.776c17.664 0 32 14.336 32 32s-14.336 32-32 32h-181.024c-2.112 0-4.192-0.224-6.272-0.64-0.96-0.192-1.824-0.544-2.752-0.8-1.088-0.32-2.176-0.576-3.2-0.992-1.088-0.448-2.112-1.088-3.136-1.664-0.768-0.448-1.6-0.768-2.368-1.28-3.52-2.336-6.528-5.376-8.864-8.864-0.544-0.768-0.864-1.632-1.312-2.432-0.576-0.992-1.184-1.984-1.6-3.072-0.448-1.056-0.672-2.144-0.992-3.232-0.256-0.896-0.64-1.792-0.8-2.72-0.416-2.080-0.64-4.16-0.64-6.272v-181.024c0-17.664 14.336-32 32-32s32 14.336 32 32v103.744l186.72-186.72c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-186.72 186.72zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-up-left-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM391.328 336.64c23.744 0 43.008 19.264 43.008 43.008v77.216l167.968-167.936c8.384-8.384 19.424-12.576 30.4-12.576s22.016 4.192 30.4 12.576c16.768 16.8 16.768 44 0 60.832l-167.936 167.936h77.216c23.744 0 43.008 19.232 43.008 43.008s-19.264 43.008-43.008 43.008h-181.024c-1.408 0-2.816-0.064-4.256-0.224-0.64-0.064-1.248-0.16-1.824-0.256-0.768-0.128-1.568-0.224-2.304-0.352-0.704-0.16-1.408-0.352-2.112-0.512s-1.312-0.288-1.984-0.512c-0.672-0.224-1.344-0.448-2.016-0.704s-1.312-0.448-1.952-0.736c-0.64-0.256-1.248-0.576-1.824-0.864-0.672-0.288-1.312-0.608-1.984-0.96-0.576-0.32-1.152-0.672-1.696-0.992-0.64-0.384-1.28-0.736-1.888-1.152s-1.248-0.896-1.824-1.344c-0.512-0.384-1.056-0.736-1.536-1.152-2.208-1.792-4.224-3.808-6.016-6.016-0.384-0.48-0.768-0.992-1.152-1.504-0.448-0.64-0.96-1.248-1.376-1.888s-0.768-1.248-1.152-1.856c-0.352-0.576-0.704-1.152-1.024-1.76-0.352-0.64-0.64-1.28-0.96-1.952s-0.608-1.248-0.864-1.888-0.48-1.28-0.704-1.92c-0.256-0.672-0.512-1.376-0.736-2.048-0.192-0.64-0.352-1.28-0.48-1.952-0.16-0.704-0.384-1.408-0.544-2.112-0.16-0.768-0.256-1.504-0.352-2.272-0.096-0.64-0.224-1.248-0.256-1.888-0.16-1.408-0.224-2.816-0.224-4.256v-181.024c0-23.744 19.232-43.008 43.008-43.008z" /> +<glyph unicode="" glyph-name="square-arrow-up-right" d="M663.232 577.696c-0.32 1.088-0.576 2.176-1.024 3.232s-1.056 2.048-1.6 3.072c-0.448 0.8-0.8 1.664-1.312 2.432-2.336 3.52-5.376 6.528-8.864 8.864-0.736 0.512-1.568 0.864-2.368 1.28-1.024 0.576-2.048 1.184-3.136 1.664-1.024 0.448-2.144 0.672-3.2 0.992-0.928 0.256-1.792 0.64-2.784 0.8-2.048 0.416-4.16 0.64-6.272 0.64h-181.024c-17.664 0-32-14.336-32-32s14.336-32 32-32h103.776l-186.72-186.72c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.352 3.136 22.624 9.376l186.72 186.72v-103.744c0-17.664 14.336-32 32-32s32 14.336 32 32v181.024c0 2.112-0.224 4.192-0.64 6.272-0.192 0.96-0.544 1.824-0.832 2.72zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.264 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-arrow-up-right-2" d="M810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0zM391.328 276.32c11.008 0 22.016 4.192 30.4 12.576l167.936 167.936v-77.216c0-23.744 19.264-43.008 43.008-43.008s43.008 19.264 43.008 43.008v181.024s0 0.128 0 0.16c0 1.376-0.096 2.72-0.192 4.064-0.064 0.672-0.192 1.28-0.288 1.952-0.096 0.736-0.192 1.472-0.352 2.208s-0.352 1.44-0.544 2.176c-0.16 0.64-0.288 1.28-0.48 1.92-0.192 0.704-0.48 1.376-0.736 2.080-0.224 0.64-0.448 1.28-0.704 1.888s-0.576 1.248-0.864 1.888c-0.288 0.672-0.576 1.312-0.928 1.952-0.32 0.576-0.672 1.152-1.024 1.728-0.384 0.64-0.736 1.28-1.12 1.888s-0.896 1.216-1.344 1.824c-0.384 0.512-0.736 1.056-1.184 1.568-0.864 1.056-1.76 2.080-2.72 3.040-0.064 0.032-0.096 0.064-0.096 0.128s-0.096 0.064-0.096 0.096c-0.96 0.96-1.984 1.888-3.040 2.752-0.512 0.416-1.056 0.768-1.568 1.184-0.576 0.448-1.184 0.896-1.792 1.312s-1.28 0.768-1.888 1.152c-0.544 0.352-1.12 0.672-1.696 0.992-0.64 0.352-1.312 0.64-1.952 0.96-0.608 0.288-1.216 0.576-1.856 0.864s-1.312 0.48-1.952 0.736c-0.672 0.256-1.312 0.48-2.016 0.704-0.64 0.192-1.312 0.352-1.984 0.512s-1.408 0.352-2.112 0.512c-0.768 0.16-1.536 0.256-2.336 0.352-0.64 0.064-1.216 0.224-1.856 0.256-1.408 0.16-2.816 0.224-4.256 0.224h-181.024c-23.744 0-43.008-19.232-43.008-43.008s19.232-43.008 43.008-43.008h77.216l-167.936-167.936c-16.768-16.8-16.768-44 0-60.832 8.384-8.384 19.424-12.576 30.4-12.576z" /> +<glyph unicode="" glyph-name="square-caret-down" d="M654.016 573.76l-283.936 0.448c-48.256 0-72.672-58.208-38.816-92.64l141.184-143.456c10.688-10.816 24.736-16.256 38.816-16.256 13.952 0 27.904 5.312 38.528 16l142.656 143.040c34.208 34.304 9.952 92.832-38.464 92.896zM511.328 389.856l-118.4 120.288 238.016-0.352-119.648-119.936zM992 813.536c0 63.2-51.232 114.432-114.432 114.432h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104zM877.568 32h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104c0-27.808-22.624-50.432-50.432-50.432z" /> +<glyph unicode="" glyph-name="square-caret-down-2" d="M590.592 460.672l-78.624-85.568-78.624 85.568h157.216zM690.784 546.688h-357.568c-36.576 0-55.648-43.488-30.912-70.4l178.784-194.592c8.32-9.056 19.648-13.568 30.912-13.568s22.592 4.544 30.912 13.568l178.784 194.592c24.736 26.912 5.664 70.4-30.912 70.4v0zM810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> +<glyph unicode="" glyph-name="square-caret-left" d="M583.36 644.448c-13.248 0-26.752-4.864-37.792-15.744l-143.456-141.184c-21.6-21.216-21.696-56-0.256-77.376l143.040-142.656c11.072-11.072 24.704-16 38.048-16 27.968 0 54.784 21.696 54.816 54.496l0.448 283.84c0.064 32.832-26.784 54.624-54.816 54.624zM573.792 329.088l-119.936 119.648 120.288 118.4-0.384-238.016zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.264 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-caret-left-2" d="M532.384 518.88v-157.216l-85.568 78.592 85.568 78.624zM576.16 661.152c-9.76 0-19.744-3.456-28.16-11.136l-194.592-178.784c-18.112-16.64-18.112-45.216 0-61.856l194.592-178.816c8.384-7.712 18.368-11.168 28.16-11.168 21.632 0 42.24 16.896 42.24 42.080v357.568c0 25.184-20.64 42.080-42.24 42.080v0zM810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> +<glyph unicode="" glyph-name="square-caret-right" d="M479.136 628.448c-11.104 11.040-24.704 16-38.080 16-27.968 0-54.784-21.696-54.816-54.496l-0.448-283.84c-0.064-32.832 26.816-54.624 54.816-54.624 13.248 0 26.752 4.864 37.792 15.744l143.456 141.184c21.568 21.216 21.696 55.968 0.256 77.376l-143.040 142.656zM449.856 328.928l0.352 238.016 119.936-119.648-120.288-118.4zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-caret-right-2" d="M491.616 518.848l85.568-78.624-85.568-78.624v157.216zM447.84 661.152c-21.632 0-42.24-16.896-42.24-42.080v-357.568c0-25.184 20.64-42.080 42.24-42.080 9.792 0 19.744 3.456 28.16 11.168l194.592 178.784c18.112 16.64 18.112 45.216 0 61.856l-194.592 178.816c-8.384 7.712-18.368 11.136-28.16 11.136v0zM810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> +<glyph unicode="" glyph-name="square-caret-up" d="M551.552 557.92c-10.656 10.816-24.736 16.256-38.816 16.256-13.952 0-27.904-5.312-38.528-16l-142.656-143.040c-34.208-34.304-9.984-92.832 38.464-92.896l283.936-0.448c48.288 0 72.672 58.208 38.784 92.64l-141.184 143.456zM393.088 386.208l119.616 119.936 118.4-120.288-238.016 0.384zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-caret-up-2" d="M512 505.408l78.624-85.568h-157.216l78.624 85.568zM512 612.448c-11.296 0-22.624-4.544-30.912-13.6l-178.816-194.592c-24.736-26.912-5.664-70.4 30.912-70.4h357.568c36.576 0 55.648 43.488 30.912 70.4l-178.784 194.592c-8.32 9.056-19.616 13.6-30.912 13.6v0zM810.016 824h-596c-47.488 0-86.016-38.496-86.016-86.016v-596c0-47.52 38.496-86.016 86.016-86.016h596c47.52 0 86.016 38.496 86.016 86.016v596c0 47.488-38.496 86.016-86.016 86.016zM810.016 737.984v-596s-596 0-596 0v0 596s596 0 596 0v0z" /> +<glyph unicode="" glyph-name="square-check" d="M693.312 599.104l-245.568-235.264-117.664 107.712c-13.024 11.936-33.28 11.040-45.216-2.016s-11.040-33.28 2.016-45.216l139.744-127.968c6.112-5.6 13.888-8.384 21.6-8.384 7.968 0 15.936 2.976 22.144 8.896l267.2 256c12.736 12.224 13.216 32.48 0.96 45.248s-32.48 13.184-45.248 0.96zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-minus" d="M877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104zM720 480h-416c-17.664 0-32-14.336-32-32s14.336-32 32-32h416c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="square-plus" d="M877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.264 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104zM712 480h-168v168c0 17.664-14.336 32-32 32s-32-14.336-32-32v-168h-168c-17.664 0-32-14.336-32-32s14.336-32 32-32h168v-168c0-17.664 14.336-32 32-32s32 14.336 32 32v168h168c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="square-user" d="M505.536 691.040c-90.72 0-164.256-73.568-164.256-164.256s73.568-164.256 164.256-164.256 164.256 73.568 164.256 164.256-73.568 164.256-164.256 164.256zM505.536 426.496c-55.296 0-100.256 44.992-100.256 100.256s44.992 100.256 100.256 100.256 100.256-44.992 100.256-100.256-44.992-100.256-100.256-100.256zM877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM256.064 32c35.136 142.784 186.528 176.288 249.472 176.288 72.064 0 211.040-44.64 245.536-176.288h-495.040zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-60.864c-34.496 171.168-205.056 240.288-311.136 240.288-108.576 0-280.928-64.32-314.848-240.288h-44.224c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104z" /> +<glyph unicode="" glyph-name="square-xmark" d="M877.568 928h-731.104c-63.2 0-114.432-51.232-114.432-114.432v-731.104c0-63.2 51.264-114.432 114.432-114.432h731.104c63.2 0 114.432 51.264 114.432 114.432v731.104c0 63.2-51.232 114.432-114.432 114.432zM928 82.432c0-27.808-22.624-50.432-50.432-50.432h-731.104c-27.808 0-50.464 22.624-50.464 50.432v731.104c0 27.808 22.624 50.464 50.464 50.464h731.104c27.808 0 50.432-22.624 50.432-50.464v-731.104zM676.064 612.064c-12.48 12.48-32.768 12.48-45.248 0l-118.816-118.816-118.816 118.816c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l118.816-118.816-118.816-118.784c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l118.816 118.784 118.784-118.784c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-118.784 118.816 118.784 118.816c12.48 12.48 12.48 32.768 0 45.248z" /> +<glyph unicode="" glyph-name="stacked-cards-scroll" d="M841.824 344.576l-36 22.688c-10.016 6.304-23.264 3.328-29.6-6.72s-3.328-23.264 6.72-29.6l33.92-21.376-294.4-172.32c-6.688-3.904-14.976-3.904-21.664 0l-293.568 171.808 33.216 19.808c10.176 6.080 13.504 19.232 7.424 29.408s-19.232 13.504-29.408 7.424l-35.392-21.12c-12.704-7.584-20.256-20.96-20.192-35.744s7.712-28.096 20.512-35.584l295.744-173.088c10.016-5.856 21.28-8.8 32.512-8.8s22.496 2.944 32.512 8.8l296.512 173.568c12.608 7.36 20.256 20.48 20.48 35.072s-6.976 27.936-19.328 35.712zM183.36 426.624l295.744-173.088c10.016-5.856 21.28-8.8 32.512-8.8s22.496 2.944 32.512 8.8l296.512 173.568c12.608 7.36 20.256 20.48 20.48 35.072s-6.976 27.936-19.328 35.712l-36 22.688c-10.016 6.304-23.264 3.328-29.6-6.72s-3.328-23.264 6.72-29.6l33.92-21.376-294.4-172.32c-6.688-3.904-14.976-3.904-21.664 0l-293.568 171.808 33.216 19.808c10.176 6.080 13.504 19.232 7.424 29.408s-19.232 13.504-29.408 7.424l-35.392-21.12c-12.704-7.584-20.256-20.96-20.192-35.744s7.712-28.096 20.512-35.584zM187.648 577.44l291.456-170.592c10.016-5.856 21.28-8.8 32.512-8.8s22.496 2.944 32.512 8.8l291.424 170.592c13.472 7.872 21.504 22.464 20.96 38.048s-9.536 29.6-23.488 36.544l-292.736 145.792c-17.984 8.96-39.424 8.96-57.408 0l-292.736-145.792c-13.952-6.944-22.944-20.96-23.488-36.544s7.52-30.176 20.96-38.048z" /> +<glyph unicode="" glyph-name="stamp" d="M640.032 736.288c0 17.664-14.336 32-32 32h-192.096c-17.664 0-32-14.336-32-32s14.336-32 32-32h192.096c17.664 0 32 14.336 32 32zM928.16 32v0 32.032c0 52.928-43.072 96-96 96h-31.68l-0.352 32.384c-0.192 17.536-14.464 31.648-32 31.648h-64.032v64.032c0 35.296-28.736 64-64 64v0 128.064c0 18.624 15.68 49.536 36.576 72 38.336 41.6 59.456 95.616 59.456 152.096 0 64.512-22.24 122.24-62.592 162.464-40.192 40.064-96.384 61.248-162.4 61.248h-1.6c-63.84 0-118.528-20.928-158.24-60.512-40.8-40.704-63.296-98.656-63.296-163.2 0-56.48 21.12-110.496 59.552-152.192 20.768-22.4 36.448-53.28 36.448-71.904v-128.064c-35.296 0-64.032-28.736-64.032-64v-64.032h-64.032c-17.536 0-31.808-14.144-32-31.648l-0.352-32.384h-31.68c-52.96 0-96.032-43.072-96.032-96v-32.032c-17.664 0-32-14.336-32-32s14.336-32 32-32h832.32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM394.464 595.584c-27.424 29.696-42.528 68.352-42.528 108.672 0 47.424 15.776 89.28 44.448 117.888 27.84 27.776 65.888 41.856 113.184 41.856 0.416 0 0.864 0 1.312 0 49.568 0 89.056-14.304 117.344-42.56 28.224-28.16 43.776-69.76 43.776-117.184 0-40.352-15.104-78.944-42.432-108.608-24.736-26.624-53.568-72.832-53.568-115.456v-128.064h-128.096v128.064c0 42.624-28.864 88.864-53.504 115.392zM864.128 32h-704.288v32.032c0 17.664 14.368 32 32.032 32h63.328c17.536 0 31.808 14.144 32 31.648l0.352 32.384h128.384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-32.032v64.064s256.128 0 256.128 0v-64.032h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h128.384l0.352-32.384c0.192-17.536 14.464-31.648 32-31.648h63.36c17.664 0 32-14.336 32-32v-32.032z" /> +<glyph unicode="" glyph-name="star" d="M988.544 567.2c-8.288 25.472-29.888 43.712-56.416 47.552l-246.976 35.904-110.496 223.84c-2.432 4.896-5.376 9.472-8.736 13.6-13.856 16.864-34.592 26.272-56.448 25.248-19.296-0.704-37.568-9.344-50.112-23.808-3.936-4.512-7.296-9.6-10.016-15.104l-110.432-223.808-246.976-35.904c-26.528-3.84-48.128-22.080-56.416-47.552s-1.504-52.96 17.664-71.648l178.72-174.208-42.208-245.984c-4.512-26.432 6.112-52.608 27.808-68.352 12.256-8.928 26.624-13.408 41.024-13.408 11.104 0 22.24 2.688 32.576 8.096l220.96 115.808 220.928-115.808c23.712-12.48 51.936-10.432 73.6 5.312s32.352 41.952 27.808 68.352l-42.208 246.016 178.72 174.208c19.168 18.72 25.952 46.144 17.664 71.648zM926.176 541.376l-190.784-185.952c-7.52-7.36-10.976-17.952-9.216-28.32l45.024-262.592c0.16-0.896 0.64-3.616-2.336-5.76s-5.408-0.896-6.24-0.448l-235.808 123.616c-9.312 4.864-20.384 4.864-29.696 0l-235.84-123.616c-0.8-0.416-3.264-1.696-6.208 0.448s-2.496 4.864-2.336 5.76l45.024 262.592c1.792 10.368-1.664 20.96-9.184 28.32l-190.784 185.952c-0.672 0.64-2.624 2.56-1.472 6.016s3.84 3.872 4.736 4.032l263.648 38.304c10.4 1.504 19.424 8.064 24.096 17.504l117.888 238.88c0.288 0.608 0.64 1.088 0.96 1.504 1.28 1.472 3.104 1.76 4.096 1.824h0.256c1.184 0 3.072-0.288 4.416-1.92 0.32-0.352 0.608-0.832 0.864-1.344l117.888-238.88c4.672-9.44 13.664-16 24.096-17.504l263.648-38.304c0.896-0.128 3.616-0.544 4.736-4.032s-0.832-5.408-1.504-6.016z" /> +<glyph unicode="" glyph-name="store" d="M991.936 675.232c0 1.088-0.192 2.176-0.352 3.264s-0.256 2.208-0.48 3.264c-0.064 0.224-0.032 0.416-0.096 0.64l-16.448 65.6c-5.888 24.352-20.16 46.528-40.608 62.72-20.096 15.424-44.96 23.936-69.984 23.936h-704c-25.024 0-49.856-8.48-70.4-24.224-20.032-15.872-34.336-38.048-40.128-62.144l-16.512-65.856c-0.064-0.224-0.064-0.416-0.096-0.64-0.256-1.056-0.32-2.176-0.48-3.264s-0.32-2.176-0.32-3.264c0-0.224-0.064-0.416-0.064-0.64v-581.152c0-17.664 14.336-32 32-32s32 14.336 32 32v32h96v-32c0-17.664 14.336-32 32-32h672c52.928 0 96 43.072 96 96v517.152c0 0.224-0.064 0.416-0.064 0.64zM768 546.592c0-4.16-0.864-8.448-2.304-12-1.728-4.096-4.224-7.84-6.592-10.336-3.264-3.136-7.008-5.664-10.592-7.168-4.064-1.664-8.384-2.496-12.512-2.496h-32c-4.128 0-8.48 0.864-12 2.304-4.096 1.728-7.808 4.192-10.336 6.656-3.168 3.232-5.632 6.944-7.168 10.528-1.632 4.032-2.496 8.352-2.496 12.48v96h96v-96zM608 546.112s0-0.16 0-0.224v-127.328h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-229.152h-192v420.48c0 0.128-0.032 0.224-0.032 0.352s0.032 0.224 0.032 0.352v96h192v-96c0-0.16 0-0.288 0-0.448zM256 157.408v160c0 35.296-28.704 64-64 64h-96v74.752c10.016-3.552 20.768-5.6 32-5.6h32c24.64 0 47.072 9.408 64.064 24.704 8.096-7.136 17.024-13.184 27.424-17.568 11.744-4.768 24.032-7.136 36.48-7.136h32c10.752 0 21.376 1.92 32 5.6v-330.752h-96v32zM352 642.592v-96c0-4.16-0.864-8.448-2.304-12-1.728-4.096-4.224-7.84-6.592-10.336-3.264-3.136-7.008-5.664-10.624-7.168-4.064-1.664-8.352-2.496-12.512-2.496h-32c-4.128 0-8.448 0.864-12 2.304-4.096 1.728-7.808 4.192-10.336 6.656-3.136 3.232-5.632 6.944-7.136 10.528-1.632 4.032-2.496 8.352-2.496 12.48v96h96zM192 546.592c0-17.664-14.368-32-32-32h-32c-17.632 0-32 14.336-32 32v96h96v-96zM832 642.592h96v-96c0-17.664-14.336-32-32-32h-32c-17.664 0-32 14.336-32 32v96zM128.96 759.872c9.12 7.008 19.872 10.72 31.040 10.72h704c11.168 0 21.888-3.68 30.624-10.4 8.896-7.040 15.2-16.736 17.792-27.552l6.528-26.048h-813.952l6.624 26.336c2.528 10.56 8.832 20.256 17.344 26.976zM96 189.408s0 0.064 0 0.096v63.712s0 0.128 0 0.192v64h96v-128h-96zM896 125.408h-224v330.976c10.4-3.648 21.12-5.824 32-5.824h32c12.448 0 24.736 2.4 36.992 7.36 9.696 4.128 18.592 9.824 27.072 17.248 16.992-15.232 39.36-24.576 63.936-24.576h32c11.232 0 21.952 2.048 32 5.6v-298.752c0-17.664-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="submit-button" d="M932.384 342.144l-85.504 32.16c4.768 9.024 7.488 19.328 7.488 30.208v88.96c0 35.84-29.152 64.992-64.992 64.992h-554.656c-35.84 0-64.992-29.152-64.992-64.992v-88.96c0-35.84 29.152-64.992 64.992-64.992h468.192l65.248-155.264c4.864-11.616 15.904-18.72 28.288-18.72 1.504 0 3.040 0.096 4.608 0.32 14.048 1.984 24.576 12.64 26.208 26.528l9.632 82.112 87.776 9.216c14.272 1.504 25.504 12.32 27.296 26.336 1.792 13.888-6.272 27.104-19.552 32.096zM789.92 243.424l-53.088 126.304 129.984-48.864-45.088-4.736c-13.856-1.472-24.672-12-26.272-25.664l-5.536-47.040zM768 427.488h-512c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504h512c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504z" /> +<glyph unicode="" glyph-name="table-comparison" d="M768.032 333.472h169.888v-57.216h-169.888v57.216zM768.032 426.496h169.888v-50.016h-169.888v50.016zM768.032 519.52h169.888v-50.016h-169.888v50.016zM768.032 619.712h169.888v-57.184h-169.888v57.184zM555.104 641.216v104.288h31.104c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-52.544c-0.032 0-0.064 0-0.096 0s-0.064 0-0.096 0h-52.512c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h31.104v-82.784h-401.44c-14.048 0-25.504-11.424-25.504-25.504v-378.432c0-14.048 11.424-25.504 25.504-25.504h401.44v-84.768h-31.104c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h105.216c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-31.104v127.776h169.92v57.216h-169.92v43.008h169.92v50.016h-169.92v43.008h169.92v50.016h-169.92v43.008h169.92v57.184h-169.92v21.504zM511.008 469.504h-169.376v50.016h169.376v-50.016zM298.624 469.504h-170.464v50.016h170.464v-50.016zM298.624 426.496v-50.016h-170.464v50.016h170.464zM341.632 426.496h169.376v-50.016h-169.376v50.016zM511.008 619.712v-57.184h-169.376v57.184h169.376zM298.624 619.712v-57.184h-170.464v57.184h170.464zM128.16 333.472h170.464v-57.216h-170.464v57.216zM511.008 276.288h-169.376v57.216h169.376v-57.216z" /> +<glyph unicode="" glyph-name="table-data" d="M928 832h-832c-35.296 0-64-28.704-64-64v-640c0-35.296 28.704-64 64-64h832c35.296 0 64 28.704 64 64v640c0 35.296-28.704 64-64 64zM192 640h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-32c-17.664 0-32-14.336-32-32s14.336-32 32-32h32v-64h-96v640h96v-128zM928 128h-672v640h672v-640zM320 672h64c17.664 0 32 14.336 32 32s-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32s14.336-32 32-32zM320 288c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32h128v-32c0-17.664 14.336-32 32-32s32 14.336 32 32v32c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v64c17.664 0 32 14.336 32 32s-14.336 32-32 32v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-128v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-32h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-64h-96c-17.664 0-32-14.336-32-32s14.336-32 32-32h96v-64h-96zM672 480h128v-64h-128v64zM672 352h128v-64h-128v64zM480 480h128v-64h-128v64zM480 352h128v-64h-128v64zM860 672h4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4c-17.664 0-32-14.336-32-32s14.336-32 32-32zM764 672h4c17.664 0 32 14.336 32 32s-14.336 32-32 32h-4c-17.664 0-32-14.336-32-32s14.336-32 32-32z" /> +<glyph unicode="" glyph-name="tablet" d="M777.152 928h-536.544c-55.232 0-100.192-44.96-100.192-100.192v-759.616c0-55.264 44.96-100.192 100.192-100.192h536.544c55.264 0 100.192 44.96 100.192 100.192v759.616c0 55.232-44.96 100.192-100.192 100.192zM813.376 68.192c0-19.968-16.256-36.192-36.192-36.192h-536.544c-19.968 0-36.192 16.256-36.192 36.192v759.584c0 19.968 16.256 36.192 36.192 36.192h170.24c3.936-13.216 16.064-22.88 30.528-22.88h135.008c14.496 0 26.592 9.696 30.496 22.88h170.208c19.968 0 36.192-16.224 36.192-36.192v-759.616zM516.192 115.488h-14.592c-17.664 0-32-14.336-32-32s14.336-32 32-32h14.592c17.664 0 32 14.336 32 32s-14.336 32-32 32z" /> +<glyph unicode="" glyph-name="tag" d="M920.16 582.624l-278.688 278.72c-12.288 12.288-32.192 12.288-44.512 0s-12.288-32.224 0-44.512l278.688-278.688c71.264-71.264 71.264-187.232 0-258.496l-211.328-211.328c-12.288-12.288-12.288-32.224 0-44.512 6.144-6.144 14.208-9.216 22.24-9.216s16.096 3.072 22.24 9.216l211.328 211.328c95.808 95.808 95.808 251.712 0 347.52zM868.352 482.336l-368.64 368.64c-19.84 19.808-47.52 31.296-75.296 30.4l-285.312-5.088c-56.192-0.992-100.992-45.824-101.984-101.984l-5.088-285.28c-0.48-28.032 10.592-55.488 30.4-75.296l368.64-368.64c19.616-19.616 45.696-30.432 73.44-30.432s53.824 10.784 73.44 30.432l290.432 290.432c40.48 40.48 40.48 106.4 0 146.88zM823.84 379.968l-290.432-290.432c-15.456-15.456-42.4-15.456-57.856 0l-368.64 368.608c-7.808 7.808-12.192 18.624-11.968 29.696l5.088 285.312c0.384 22.112 18.016 39.744 40.192 40.16l286.016 5.12c10.784 0 21.312-4.352 28.96-12l368.64-368.64c15.936-15.936 15.936-41.888 0-57.856zM336.224 725.184c-40.8 40.8-107.232 40.832-148 0-19.744-19.776-30.656-46.048-30.656-74.016s10.88-54.24 30.656-74.016c20.416-20.384 47.2-30.592 73.984-30.592s53.6 10.208 74.016 30.592c19.776 19.744 30.656 46.048 30.656 74.016s-10.88 54.24-30.656 74.016v0zM291.712 621.664c-16.256-16.256-42.72-16.288-59.008 0-7.904 7.872-12.224 18.336-12.224 29.504s4.352 21.6 12.224 29.504c8.128 8.128 18.816 12.192 29.504 12.192s21.376-4.064 29.472-12.192v0c7.872-7.872 12.224-18.336 12.224-29.504s-4.352-21.6-12.224-29.472z" /> +<glyph unicode="" glyph-name="taxes" d="M383.328 461.088h-87.424c-13.248 0-24-10.752-24-24s10.752-24 24-24h87.424c13.248 0 24 10.752 24 24s-10.752 24-24 24zM515.552 142.88c0-13.248 10.752-24 24-24h87.424c13.248 0 24 10.752 24 24s-10.752 24-24 24h-87.424c-13.248 0-24-10.752-24-24zM193.024 520.608h190.304c13.248 0 24 10.752 24 24s-10.752 24-24 24h-190.304c-13.248 0-24-10.752-24-24s10.752-24 24-24zM604.384 759.648c0 13.248-10.752 24-24 24h-134.88c-13.248 0-24-10.752-24-24s10.752-24 24-24h134.88c13.248 0 24 10.752 24 24zM242.208 316.544c0-21.344-17.312-38.624-38.624-38.624s-38.624 17.312-38.624 38.624c0 21.344 17.312 38.624 38.624 38.624s38.624-17.312 38.624-38.624zM408.64 150.144c0-21.344-17.312-38.624-38.624-38.624s-38.624 17.312-38.624 38.624c0 21.344 17.312 38.624 38.624 38.624s38.624-17.312 38.624-38.624zM386.944 333.536c-9.376 9.376-24.576 9.376-33.92 0l-166.368-166.4c-9.376-9.376-9.376-24.544 0-33.952 4.672-4.672 10.816-7.040 16.96-7.040s12.288 2.336 16.96 7.040l166.368 166.4c9.376 9.376 9.376 24.544 0 33.952zM766.336 672.768v177.28c0 38.56-31.36 69.952-69.952 69.952h-382.496c-0.608 0-1.184-0.128-1.792-0.192-6.592 0.256-13.152-2.016-17.984-6.848l-236.096-236.096c-4.832-4.832-7.136-11.392-6.848-17.984-0.032-0.576-0.192-1.184-0.192-1.76v-611.168c0-38.56 31.36-69.952 69.92-69.952h575.456c38.56 0 69.952 31.36 69.952 69.952v155.456c116.448 15.424 206.688 115.104 206.688 235.712s-90.24 220.288-206.688 235.712zM287.104 838.048v-146.624c0-4.16-3.392-7.552-7.552-7.552h-146.624l154.176 154.176zM718.336 45.952c0-12.096-9.856-21.952-21.952-21.952h-575.456c-12.096 0-21.92 9.856-21.92 21.952v589.952h180.576c30.624 0 55.552 24.928 55.552 55.552v180.576h361.28c12.096 0 21.952-9.856 21.952-21.952v-175.84c-123.424-8.64-221.28-111.552-221.28-237.152s97.888-228.544 221.28-237.152v-153.984zM735.008 247.072c-104.768 0-189.984 85.216-189.984 190.016s85.216 190.016 189.984 190.016 190.016-85.216 190.016-190.016-85.216-190.016-190.016-190.016zM748.896 460.96c-21.696 10.4-26.4 14.304-26.4 21.824 0 2.528 0 8.48 9.184 12.256 10.496 4.256 23.104 1.888 27.872-2.976 9.312-9.472 24.512-9.568 33.952-0.256s9.568 24.48 0.256 33.92c-8 8.16-18.72 13.696-30.432 16.768v12.288c0 13.248-10.752 24-24 24s-24-10.752-24-24v-14.752c-0.576-0.224-1.216-0.352-1.792-0.576-24.384-10.016-38.976-31.2-38.976-56.672 0-39.36 32.256-54.88 53.6-65.12 23.040-11.072 29.28-15.648 29.28-26.848 0-6.592-10.784-13.92-18.080-13.92-12.192 0-29.728 8.448-33.664 11.936-9.312 9.312-24.416 9.408-33.824 0.128-9.44-9.312-9.568-24.48-0.256-33.952 8.384-8.544 25.696-17.632 43.744-22.528v-13.184c0-13.248 10.752-24 24-24s24 10.752 24 24v14.336c22.752 8.96 42.080 29.952 42.080 57.12 0 42.976-33.984 59.296-56.48 70.112z" /> +<glyph unicode="" glyph-name="team" d="M934.272 512.928c-0.064 0.256-0.16 0.48-0.224 0.704-0.128 0.416-0.256 0.832-0.384 1.248-0.096 0.288-0.224 0.576-0.32 0.832-0.128 0.352-0.288 0.672-0.448 1.024-0.128 0.288-0.288 0.576-0.448 0.864s-0.32 0.608-0.512 0.896c-0.16 0.288-0.352 0.576-0.512 0.832s-0.384 0.544-0.576 0.832c-0.192 0.256-0.384 0.512-0.576 0.768s-0.448 0.512-0.64 0.768c-0.192 0.224-0.416 0.48-0.64 0.704s-0.512 0.512-0.768 0.736c-0.224 0.192-0.416 0.416-0.64 0.608-0.288 0.256-0.608 0.48-0.928 0.736-0.192 0.16-0.416 0.32-0.608 0.48-0.416 0.288-0.864 0.576-1.28 0.864-0.128 0.064-0.224 0.16-0.352 0.224-0.544 0.32-1.12 0.64-1.696 0.896-0.256 0.128-0.512 0.224-0.768 0.32-0.352 0.16-0.704 0.288-1.056 0.448-0.288 0.128-0.608 0.192-0.928 0.288s-0.64 0.192-0.96 0.288c-0.352 0.096-0.672 0.16-1.024 0.224-0.288 0.064-0.608 0.128-0.928 0.192-0.352 0.064-0.736 0.096-1.088 0.16-0.32 0.032-0.608 0.064-0.928 0.096-0.352 0.032-0.704 0.032-1.088 0.064-0.16 0-0.32 0.032-0.48 0.032h-594.336c-11.872 0-21.504-9.632-21.504-21.504v-378.304c-17.92 12.128-35.008 25.888-51.008 41.184-1.344 1.312-2.656 2.624-3.968 3.936-2.496 2.464-4.864 4.8-7.072 7.104-0.064 0.064-0.128 0.128-0.192 0.192-6.176 6.4-12.192 13.088-17.888 19.84-12.736 15.264-24.192 31.424-34.336 48.288h77.632c11.872 0 21.504 9.632 21.504 21.504v236.256c0 11.872-9.632 21.504-21.504 21.504h-96.448c-11.872 0-21.504-9.632-21.504-21.504v-164.736c-9.664 33.952-14.688 69.28-14.688 104.992 0 102.048 39.552 198.144 111.328 270.528 41.056 41.408 89.984 72.32 143.392 91.392-18.592-25.792-29.6-57.408-29.6-91.552 0-86.528 70.4-156.928 156.928-156.928s156.928 70.4 156.928 156.928-70.4 156.928-156.928 156.928c-2.88 0-5.696-0.096-8.544-0.256-110.816-2.752-214.56-47.424-292.736-126.272-79.84-80.512-123.808-187.328-123.808-300.8 0-99.84 35.264-197.088 99.328-273.888 6.336-7.552 12.992-14.944 19.808-22.016 2.752-2.912 5.504-5.6 8.16-8.224 1.28-1.248 2.56-2.528 3.84-3.808 0.128-0.128 0.224-0.224 0.352-0.352 28.032-26.784 59.040-49.44 92.16-67.328 62.176-33.6 132.544-51.392 203.52-51.392 4.352 0 8.672 0.064 13.024 0.192 60.704 1.856 120.576 16.64 174.624 43.136 3.872 1.888 7.712 3.84 11.52 5.856 0 0 0.032 0 0.032 0.032 24.384 12.832 47.328 27.872 68.032 44.672 8.864 7.104 18.080 15.2 28.288 24.832 11.36 10.848 22.176 22.432 32.192 34.4 64.064 76.448 99.328 173.728 99.328 273.856 0 22.048-1.536 42.656-4.704 63.040-0.096 0.704-0.256 1.376-0.416 2.048zM185.856 486.112h53.44v-193.248h-53.44v193.248zM624.192 718.24c0-62.816-51.104-113.92-113.92-113.92s-113.92 51.104-113.92 113.92c0 60.608 47.584 110.304 107.328 113.728 1.696 0.032 3.392 0.096 5.12 0.096h3.616c0.16 0 0.352 0.032 0.512 0.032 61.6-1.408 111.264-51.936 111.264-113.856zM500.8 64.032c-1.28 0.032-2.56 0.128-3.84 0.16-2.56 0.096-5.152 0.192-7.712 0.352-1.536 0.096-3.040 0.224-4.576 0.32-2.336 0.16-4.64 0.32-6.944 0.544-1.632 0.16-3.232 0.32-4.864 0.48-2.208 0.224-4.448 0.448-6.656 0.736-1.664 0.192-3.328 0.448-4.992 0.64-2.144 0.288-4.32 0.576-6.464 0.896-1.696 0.256-3.36 0.544-5.056 0.8-2.112 0.352-4.224 0.704-6.336 1.088-1.696 0.32-3.392 0.64-5.088 0.96-2.112 0.416-4.192 0.832-6.272 1.28-1.696 0.352-3.36 0.736-5.056 1.12-2.080 0.48-4.16 0.96-6.24 1.472-1.664 0.416-3.328 0.832-4.992 1.248-2.080 0.544-4.16 1.12-6.24 1.664-1.632 0.448-3.264 0.896-4.896 1.376-2.112 0.608-4.192 1.248-6.304 1.888-1.568 0.48-3.168 0.96-4.736 1.472-2.144 0.704-4.288 1.408-6.4 2.144-1.504 0.512-3.008 1.024-4.512 1.568-2.24 0.8-4.448 1.632-6.656 2.464-1.376 0.512-2.752 1.024-4.128 1.568-2.464 0.96-4.928 1.984-7.36 3.008-1.088 0.448-2.208 0.896-3.296 1.344-6.944 2.976-13.824 6.144-20.576 9.504v309.088l72.832 72.832h266.56v-383.84c-2.304-1.12-4.608-2.208-6.944-3.264-0.864-0.416-1.76-0.832-2.624-1.248-3.424-1.536-6.848-3.040-10.304-4.448-0.832-0.352-1.632-0.64-2.464-0.992-2.656-1.088-5.28-2.144-7.968-3.168-1.312-0.48-2.624-0.96-3.904-1.44-2.208-0.8-4.416-1.632-6.624-2.4-1.472-0.512-2.944-0.992-4.416-1.472-2.080-0.704-4.16-1.408-6.24-2.048-1.536-0.48-3.104-0.96-4.672-1.408-2.048-0.608-4.064-1.216-6.112-1.792-1.6-0.448-3.2-0.896-4.8-1.312-2.016-0.544-4.032-1.088-6.080-1.6-1.632-0.416-3.264-0.8-4.896-1.184-2.016-0.48-4.032-0.96-6.080-1.408-1.664-0.384-3.296-0.736-4.96-1.056-2.016-0.416-4.064-0.832-6.112-1.216-1.664-0.32-3.328-0.64-4.992-0.928-2.048-0.352-4.096-0.704-6.176-1.024-1.664-0.256-3.328-0.544-4.96-0.768-2.080-0.32-4.192-0.576-6.272-0.864-1.632-0.224-3.264-0.448-4.896-0.64-2.144-0.256-4.288-0.48-6.464-0.672-1.6-0.16-3.168-0.32-4.768-0.48-2.24-0.192-4.512-0.352-6.784-0.512-1.504-0.096-3.008-0.224-4.512-0.32-2.496-0.16-5.024-0.256-7.52-0.352-1.248-0.064-2.528-0.128-3.776-0.16-3.776-0.096-7.552-0.16-11.328-0.16-3.872 0-7.712 0.064-11.584 0.192zM884.96 783.648c58.656-24.288 86.528-91.552 62.24-150.24s-91.552-86.528-150.24-62.24c-58.656 24.288-86.528 91.552-62.24 150.24s91.552 86.528 150.24 62.24z" /> +<glyph unicode="" glyph-name="team-carousel" d="M686.656 745.824h-349.344c-44.928 0-81.504-36.576-81.504-81.504v-434.656c0-44.928 36.576-81.504 81.504-81.504h349.344c44.928 0 81.504 36.576 81.504 81.504v434.656c0 44.928-36.576 81.504-81.504 81.504zM725.184 229.664c0-21.216-17.28-38.496-38.496-38.496h-349.344c-21.216 0-38.496 17.28-38.496 38.496v350.368l130.752 122.784h257.088c21.216 0 38.496-17.28 38.496-38.496v-434.656zM152.512 639.84h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-37.76 0-68.48-31.936-68.48-71.2v-327.264c0-39.264 30.72-71.2 68.48-71.2h56.768c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.768c-14.048 0-25.472 12.64-25.472 28.192v327.232c0 15.552 11.424 28.224 25.472 28.224zM871.488 682.848h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c14.048 0 25.472-12.64 25.472-28.224v-327.264c0-15.552-11.424-28.192-25.472-28.192h-56.768c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.768c37.76 0 68.48 31.936 68.48 71.2v327.232c0 39.264-30.72 71.2-68.48 71.2zM383.936 339.2h256c11.872 0 21.504-9.632 21.504-21.504v-38.656c0-11.872-9.632-21.504-21.504-21.504h-256c-11.872 0-21.504 9.632-21.504 21.504v38.656c0 11.872 9.632 21.504 21.504 21.504zM404.256 384h215.52c11.904 0 20.8 10.816 18.72 22.528-7.776 43.872-37.792 80-77.984 96.416 17.088 14.016 28 35.296 28 59.136 0 42.24-34.24 76.48-76.48 76.48s-76.48-34.24-76.48-76.48c0-23.84 10.912-45.12 28-59.136-40.192-16.416-70.208-52.544-77.984-96.416-2.080-11.744 6.816-22.528 18.72-22.528zM512 595.552c18.464 0 33.472-15.008 33.472-33.472s-15.008-33.472-33.472-33.472-33.472 15.008-33.472 33.472 15.008 33.472 33.472 33.472zM512 469.44c31.232 0 59.008-16.768 73.92-42.432h-147.84c14.912 25.664 42.656 42.432 73.92 42.432z" /> +<glyph unicode="" glyph-name="team-content" d="M686.656 745.824h-349.344c-44.928 0-81.504-36.576-81.504-81.504v-434.656c0-44.928 36.576-81.504 81.504-81.504h349.344c44.928 0 81.504 36.576 81.504 81.504v434.656c0 44.928-36.576 81.504-81.504 81.504zM725.184 229.664c0-21.216-17.28-38.496-38.496-38.496h-349.344c-21.216 0-38.496 17.28-38.496 38.496v350.368l130.752 122.784h257.088c21.216 0 38.496-17.28 38.496-38.496v-434.656zM383.936 339.2h256c11.872 0 21.504-9.632 21.504-21.504v-38.656c0-11.872-9.632-21.504-21.504-21.504h-256c-11.872 0-21.504 9.632-21.504 21.504v38.656c0 11.872 9.632 21.504 21.504 21.504zM404.256 384h215.52c11.904 0 20.8 10.816 18.72 22.528-7.776 43.872-37.792 80-77.984 96.416 17.088 14.016 28 35.296 28 59.136 0 42.24-34.24 76.48-76.48 76.48s-76.48-34.24-76.48-76.48c0-23.84 10.912-45.12 28-59.136-40.192-16.416-70.208-52.544-77.984-96.416-2.080-11.744 6.816-22.528 18.72-22.528zM512 595.552c18.464 0 33.472-15.008 33.472-33.472s-15.008-33.472-33.472-33.472-33.472 15.008-33.472 33.472 15.008 33.472 33.472 33.472zM512 469.44c31.232 0 59.008-16.768 73.92-42.432h-147.84c14.912 25.664 42.656 42.432 73.92 42.432z" /> +<glyph unicode="" glyph-name="telegram" d="M851.808 709.536c-0.928 5.504-2.912 13.344-10.048 19.136-8.48 6.88-21.568 8.32-27.424 8.224-26.592-0.448-67.424-14.656-263.776-96.352-68.768-28.608-206.24-87.84-412.416-177.664-33.472-13.312-51.008-26.336-52.608-39.072-3.072-24.448 32.128-32.064 76.416-46.464 36.096-11.744 84.672-25.472 109.92-26.016 22.912-0.48 48.448 8.928 76.672 28.352 192.64 130.016 292.064 195.744 298.304 197.184 4.384 0.992 10.528 2.24 14.624-1.408s3.712-10.624 3.296-12.48c-3.52-14.912-184.448-179.52-194.88-190.336-39.808-41.312-85.056-66.624-15.232-112.64 60.416-39.808 95.584-65.216 157.824-106.016 39.776-26.080 70.976-56.992 112.032-53.216 18.88 1.76 38.432 19.52 48.352 72.48 23.424 125.248 69.472 396.608 80.128 508.448 0.928 9.792-0.256 22.336-1.184 27.84z" /> +<glyph unicode="" glyph-name="telephone" d="M932.544 424.288c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM380.576 276.32h305.568c21.664 0 39.232 17.568 39.232 39.232v177.376c0 21.664-17.568 39.232-39.232 39.232h-305.568c-21.664 0-39.232-17.568-39.232-39.232v-22.784h-56c-7.168 0-10.688-8.704-5.568-13.696l61.568-59.776v-81.12c0-21.664 17.568-39.232 39.232-39.232zM384.32 489.184h298.016v-169.856h-298.016v169.856zM273.536 302.816c9.056 9.28 17.952 18.72 26.784 28.224 7.168 7.712 6.496 18.368-1.76 24.96-14.88 11.872-29.888 23.648-44.928 35.328-7.136 5.536-15.648 5.12-22.4-0.768-3.168-2.752-6.336-5.568-9.504-8.32-4.256-3.712-8.512-7.424-12.832-11.168-32.608 26.048-54.72 58.88-66.72 98.784 1.12 0.608 2.080 1.12 3.072 1.632 7.872 4.032 15.808 7.968 23.648 12.064 7.488 3.936 10.72 11.68 8.48 19.84-0.512 1.824-1.056 3.616-1.568 5.44-4.768 16.32-9.472 32.64-14.304 48.928-3.072 10.368-12.96 15.424-22.688 11.52-12.256-4.96-24.48-10.048-36.608-15.264-6.72-2.88-11.968-7.872-13.504-14.976-1.792-8.256-2.72-16.768-3.008-25.216-0.64-18.464 3.040-36.384 8.448-53.92 12.864-41.664 34.88-77.984 65.088-109.248 24.128-24.96 51.456-45.024 85.824-54.080 10.88-2.88 20.48-1.952 28.544 6.272zM640 404.256c0-13.344-10.816-24.16-24.16-24.16s-24.16 10.816-24.16 24.16c0 13.344 10.816 24.16 24.16 24.16s24.16-10.816 24.16-24.16zM557.504 404.256c0-13.344-10.816-24.16-24.16-24.16s-24.16 10.816-24.16 24.16c0 13.344 10.816 24.16 24.16 24.16s24.16-10.816 24.16-24.16zM474.976 404.256c0-13.344-10.816-24.16-24.16-24.16s-24.16 10.816-24.16 24.16c0 13.344 10.816 24.16 24.16 24.16s24.16-10.816 24.16-24.16zM779.296 621.312h-526.784c-21.568 0-39.104-17.536-39.104-39.104 0-11.872 9.632-21.504 21.504-21.504 10.528 0 19.328 7.584 21.152 17.6h519.328v-346.688h-519.328c-1.824 10.016-10.592 17.6-21.152 17.6-11.872 0-21.504-9.632-21.504-21.504 0-21.568 17.536-39.104 39.104-39.104h526.784c21.568 0 39.104 17.536 39.104 39.104v354.496c0 21.568-17.536 39.104-39.104 39.104zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488z" /> +<glyph unicode="" glyph-name="testimonial" d="M577.888 910.912l-59.072 0.768-75.968-0.832c-348.768-9.248-410.816-110.464-410.816-390.816 0-146.336 15.296-249.856 91.52-313.568 23.808-19.808 52.64-35.072 88.224-46.688 29.28-9.6 60.64-15.584 93.248-17.824l79.52-5.504c-16.8-17.76-30.176-39.104-38.528-63.232 0-0.032-0.032-0.064-0.032-0.096-6.848-20.096-3.744-41.472 8.608-58.72 13.792-19.328 36.96-30.848 61.888-30.848h192.224c24.928 0 48.064 11.52 61.856 30.848 12.352 17.216 15.456 38.624 8.544 58.816-8.352 24.16-21.696 45.504-38.56 63.296l78.528 5.408c32.64 2.272 64 8.288 93.28 17.856 35.584 11.648 64.416 26.912 88.192 46.752 76.192 63.648 91.456 167.168 91.456 313.536 0 302.24-85.056 382.624-414.112 390.912zM608.64 47.52h-192.224c-5.92 0-9.664 3.264-10.048 4.32 0 0 0 0.16 0.128 0.512 15.648 45.056 58.208 75.328 106.048 75.328s90.464-30.336 106.208-75.648c-0.416-1.248-4.16-4.544-10.080-4.544zM472.448 231.712c0 22.112 17.984 40.096 40.064 40.096s40.096-17.984 40.096-40.096c0-20.864-16.128-37.888-36.544-39.712l-4.064-0.288-0.768 0.064c-21.472 0.704-38.752 18.304-38.752 39.936zM859.52 255.584c-17.408-14.496-39.36-25.952-67.104-35.072-24.256-7.904-50.4-12.928-77.76-14.816l-103.52-7.136c3.52 10.432 5.504 21.568 5.504 33.184 0 57.408-46.688 104.096-104.096 104.096s-104.064-46.688-104.064-104.096c0-11.616 2.016-22.784 5.536-33.216l-104.608 7.232c-27.328 1.888-53.472 6.88-77.728 14.816-27.744 9.056-49.696 20.544-67.104 35.008-49.952 41.76-68.544 113.44-68.544 264.448 0 253.728 41.024 318.688 348.128 326.848l59.872 0.832 72.704-0.736c309.952-7.808 351.328-72.8 351.328-326.912 0-151.008-18.592-222.688-68.48-264.384zM256.224 720.352h336.384c17.664 0 32 14.336 32 32s-14.336 32-32 32h-336.384c-17.664 0-32-14.336-32-32s14.336-32 32-32zM688.736 720.352h80.096c17.664 0 32 14.336 32 32s-14.336 32-32 32h-80.096c-17.664 0-32-14.336-32-32s14.336-32 32-32zM544.544 624.224c0 17.664-14.336 32-32 32h-160.192c-17.664 0-32-14.336-32-32s14.336-32 32-32h160.192c17.664 0 32 14.336 32 32zM704.704 624.224c0 17.664-14.336 32-32 32h-64.096c-17.664 0-32-14.336-32-32s14.336-32 32-32h64.096c17.664 0 32 14.336 32 32zM791.904 490.816l-26.176 51.104-26.112-51.104-57.024-7.552 40.544-40.544-10.528-56.608 53.12 25.952 53.184-25.952-10.528 56.608 40.576 40.576-57.024 7.552zM285.472 490.816l-26.112 51.104-26.176-51.104-57.024-7.552 40.576-40.544-10.56-56.608 53.184 25.952 53.152-25.952-10.528 56.608 40.576 40.576-57.024 7.552zM512.544 541.92l-26.176-51.104-57.024-7.552 40.608-40.576-10.528-56.608 53.12 25.952 53.12-25.952-10.528 56.608 40.64 40.576-57.024 7.552-26.176 51.104z" /> +<glyph unicode="" glyph-name="testimonial-carousel" d="M688.8 811.232h-354.208c-47.136 0-85.504-38.368-85.504-85.504v-555.456c0-47.168 38.368-85.504 85.504-85.504h354.208c47.168 0 85.504 38.336 85.504 85.504v555.456c0 47.136-38.336 85.504-85.504 85.504zM731.328 170.272c0-23.456-19.072-42.496-42.496-42.496h-354.208c-23.424 0-42.496 19.072-42.496 42.496v514.624l83.328 83.328h313.408c23.456 0 42.496-19.072 42.496-42.496v-555.456zM682.016 516.832h-340.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h340.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM581.856 227.936c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-140.288c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h140.288zM667.552 207.872h-311.712c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h311.712c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM476.576 616.256l-24.608-75.776c-0.128-0.352 0.288-0.672 0.608-0.448l64.448 46.816 64.448-46.816c0.32-0.224 0.704 0.064 0.608 0.448l-24.608 75.776 64.448 46.816c0.32 0.224 0.16 0.704-0.224 0.704h-79.68l-24.608 75.776c-0.128 0.352-0.64 0.352-0.736 0l-24.608-75.776h-79.68c-0.384 0-0.544-0.48-0.224-0.704l64.448-46.816zM678.016 447.456h-332.608c-14.048 0-25.504-11.456-25.504-25.504v-99.168c0-14.048 11.424-25.504 25.504-25.504h332.608c14.048 0 25.504 11.456 25.504 25.504v99.168c0 14.048-11.456 25.504-25.504 25.504zM396.96 386.080l10.528 32.384c0.128 0.352 0.608 0.352 0.736 0l4.576-14.016 5.952-18.368h34.080c0.384 0 0.544-0.48 0.224-0.704l-27.552-20.032 8.16-25.056 2.368-7.328c0.096-0.352-0.288-0.672-0.608-0.448l-27.584 20.032-27.552-20.032c-0.288-0.224-0.736 0.096-0.608 0.448l2.368 7.328 8.16 25.056-27.328 19.872v0.864h34.048zM466.72 372.672c0 3.392 1.376 6.496 3.616 8.736s5.312 3.616 8.704 3.616h162.752c6.784 0 12.32-5.504 12.32-12.32 0-3.392-1.376-6.496-3.616-8.736s-5.312-3.616-8.704-3.616h-162.752c-6.816 0-12.32 5.504-12.32 12.32zM153.504 690.496h56.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.608c-37.696 0-68.352-30.656-68.352-68.352v-465.152c0-37.696 30.656-68.352 68.352-68.352h56.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-56.608c-13.984 0-25.344 11.36-25.344 25.344v465.152c0 13.984 11.36 25.344 25.344 25.344zM870.496 733.504h-56.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.608c13.984 0 25.344-11.36 25.344-25.344v-465.152c0-13.984-11.36-25.344-25.344-25.344h-56.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h56.608c37.696 0 68.352 30.656 68.352 68.352v465.152c0 37.696-30.656 68.352-68.352 68.352z" /> +<glyph unicode="" glyph-name="text-area-form" d="M788.192 617.856h-636.864c-12.96 0-23.488-10.56-23.488-23.488v-294.688c0-12.96 10.528-23.488 23.488-23.488h636.864c12.96 0 23.488 10.528 23.488 23.488v294.688c0 12.928-10.528 23.488-23.488 23.488zM194.624 447.168h429.824c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-429.824c-11.872 0-21.504 9.632-21.504 21.504s9.632 21.504 21.504 21.504zM173.952 511.008c0 11.872 9.632 21.504 21.504 21.504h257.504c11.872 0 21.504-9.632 21.504-21.504s-9.632-21.504-21.504-21.504h-257.504c-11.872 0-21.504 9.632-21.504 21.504zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM932.544 424.288c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM426.656 190.848c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-192c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h192z" /> +<glyph unicode="" glyph-name="text-form" d="M775.904 617.824h-523.2c-21.792 0-39.52-17.184-39.52-38.304 0-11.872 9.632-21.504 21.504-21.504 10.272 0 18.848 7.2 20.992 16.832h516.768v-225.44l-32.416-30.24h-484.544c-2.4 9.248-10.816 16.064-20.8 16.064-11.872 0-21.504-9.632-21.504-21.504 0-20.704 17.728-37.536 39.52-37.536h523.2c21.792 0 39.52 16.832 39.52 37.536v266.56c0 20.704-17.728 37.536-39.52 37.536zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488zM426.656 190.848c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-192c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h192zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM932.544 404.864c-8.384 8.384-22.016 8.384-30.4 0l-22.784-22.784-9.76 9.76c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.192-40.192 53.184 53.184c8.384 8.384 8.384 22.016 0 30.4z" /> +<glyph unicode="" glyph-name="text-marquee" d="M505.408 350.976l13.728 44.864h92.928l13.792-44.864h53.856l-77.664 227.808h-72.832l-78.016-227.808h54.176zM567.872 539.424l33.664-109.408h-71.968l33.472 109.408h4.832zM790.336 459.872c-4.704-1.024-10.656-2.144-17.76-3.264-14.272-2.080-26.688-4.48-37.28-7.232s-19.616-6.208-27.104-10.368c-7.488-4.128-13.12-9.6-16.928-16.384s-5.696-15.136-5.696-25.024c0-11.040 2.176-20.352 6.56-27.968s10.464-13.408 18.304-17.44c7.808-4.032 16.928-6.048 27.264-6.048 10.816 0 20.544 2.144 29.152 6.4s15.936 10.016 21.92 17.248c5.984 7.264 10.688 15.136 14.144 23.648h5.856c0.448-7.36 1.088-14.848 1.888-22.432s1.568-14.272 2.24-20.032h44.512c-0.928 8.288-1.728 16.608-2.432 25.024s-1.216 16.8-1.568 25.184c-0.352 8.384-0.512 16.608-0.512 24.672v30.72c0 18.624-2.752 33.888-8.288 45.728s-13.856 20.576-25.024 26.24c-11.168 5.632-25.504 8.448-42.976 8.448-10.816 0-21.056-1.152-30.72-3.456s-18.176-5.824-25.536-10.528c-7.36-4.704-13.568-10.528-18.624-17.44s-8.96-15.072-11.744-24.512l43.84-13.472c1.856 7.136 4.768 13.056 8.8 17.792s8.864 8.16 14.496 10.368c5.632 2.176 11.68 3.264 18.112 3.264 10.112 0 17.472-2.304 22.080-6.912s6.912-10.112 6.912-16.576c0-4.608-1.152-8.128-3.456-10.528s-5.824-4.128-10.528-5.184zM804.992 439.68v-22.784c-1.856-5.536-4.608-10.464-8.288-14.848s-7.584-8-11.744-10.88c-4.128-2.88-8.512-5.12-13.12-6.72s-8.96-2.432-13.12-2.432c-7.584 0-13.696 2.080-18.304 6.208s-6.912 9.792-6.912 16.928c0 5.536 1.248 9.888 3.808 13.12s6.080 5.696 10.688 7.424c4.608 1.728 9.792 3.168 15.52 4.32s11.552 2.176 17.44 3.104c5.856 0.928 11.616 2.24 17.248 3.968 2.4 0.736 4.64 1.632 6.72 2.592zM938.848 615.072c0 1.12-0.096 2.24-0.256 3.296 0.16 1.248 0.192 2.496 0.128 3.808-0.128 2.656-0.416 5.312-0.8 7.936-0.192 1.344-0.512 2.656-0.928 3.904-0.064 1.312-0.256 2.656-0.576 3.968-0.64 2.592-1.408 5.184-2.272 7.68-0.448 1.28-0.992 2.528-1.664 3.648-0.32 1.28-0.736 2.528-1.312 3.776-1.088 2.432-2.336 4.8-3.648 7.136-0.672 1.184-1.44 2.272-2.304 3.264-0.544 1.184-1.216 2.368-2.016 3.488-1.536 2.176-3.168 4.288-4.896 6.272-0.896 1.024-1.856 1.952-2.88 2.784-0.768 1.088-1.632 2.080-2.592 3.040-1.92 1.856-3.936 3.616-5.984 5.28-1.056 0.864-2.176 1.6-3.328 2.208-0.928 0.896-1.984 1.76-3.104 2.496-2.208 1.472-4.544 2.848-6.88 4.096-1.216 0.64-2.432 1.152-3.712 1.568-1.088 0.736-2.272 1.344-3.552 1.888-2.464 1.024-4.992 1.952-7.52 2.72-1.312 0.416-2.624 0.672-3.936 0.832-1.216 0.512-2.496 0.896-3.84 1.184-2.624 0.544-5.28 0.96-7.904 1.28-1.344 0.16-2.688 0.16-4 0.096-1.28 0.256-2.592 0.416-3.936 0.448-0.608 0-1.216 0.032-1.792 0.032h-4.64c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.064-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-5.984c-1.024 0-2.016-0.096-3.008-0.224-0.992 0.128-1.984 0.224-3.008 0.224h-3.008c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h3.008c1.024 0 2.016 0.096 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.984c1.024 0 2.016 0.064 3.008 0.224 0.992-0.128 1.984-0.224 3.008-0.224h5.504c0.672-0.032 1.376 0 2.048 0.064 0.64-0.128 1.312-0.256 1.984-0.32 1.312-0.16 2.624-0.352 3.936-0.64 0.64-0.128 1.312-0.256 1.952-0.32 0.608-0.256 1.216-0.48 1.856-0.672 1.248-0.384 2.496-0.832 3.712-1.344 0.608-0.256 1.248-0.48 1.888-0.672 0.544-0.352 1.12-0.704 1.696-1.024 1.152-0.608 2.304-1.312 3.424-2.016 0.576-0.384 1.152-0.704 1.728-1.024 0.48-0.448 0.992-0.896 1.504-1.312 1.024-0.832 2.048-1.696 2.976-2.624 0.48-0.48 0.992-0.896 1.504-1.312 0.384-0.544 0.8-1.056 1.216-1.568 0.864-1.024 1.696-2.080 2.464-3.168 0.384-0.544 0.8-1.056 1.216-1.568 0.288-0.608 0.576-1.184 0.928-1.792 0.672-1.152 1.28-2.336 1.824-3.52 0.288-0.608 0.576-1.216 0.896-1.76 0.16-0.64 0.352-1.28 0.576-1.888 0.416-1.248 0.8-2.528 1.12-3.808 0.16-0.64 0.352-1.28 0.544-1.92 0.032-0.672 0.096-1.312 0.192-1.984 0.192-1.312 0.32-2.656 0.384-3.968 0.032-0.736 0.128-1.472 0.224-2.208-0.096-0.864-0.16-1.76-0.16-2.688v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-1.024 0.064-2.016 0.192-3.008-0.128-0.992-0.192-1.984-0.192-3.008v-5.984c0-0.896 0.064-1.792 0.16-2.656-0.096-0.704-0.192-1.44-0.224-2.176-0.064-1.312-0.192-2.656-0.384-3.968-0.096-0.672-0.16-1.312-0.192-1.984-0.224-0.608-0.416-1.248-0.576-1.92-0.32-1.28-0.704-2.56-1.12-3.808-0.224-0.64-0.416-1.248-0.576-1.888-0.32-0.576-0.64-1.152-0.928-1.76-0.544-1.184-1.152-2.4-1.824-3.552-0.32-0.576-0.64-1.152-0.896-1.76-0.416-0.512-0.832-1.024-1.216-1.568-0.768-1.088-1.6-2.144-2.464-3.136-0.448-0.512-0.864-1.056-1.248-1.6-0.512-0.416-1.024-0.864-1.504-1.312-0.96-0.928-1.952-1.792-2.976-2.624-0.512-0.416-1.024-0.864-1.504-1.312-0.576-0.32-1.152-0.64-1.728-1.024-1.12-0.736-2.272-1.408-3.424-2.048-0.576-0.32-1.152-0.64-1.696-1.024-0.64-0.192-1.248-0.416-1.888-0.672-1.216-0.512-2.464-0.96-3.744-1.344-0.64-0.192-1.248-0.416-1.856-0.672-0.672-0.064-1.312-0.192-1.984-0.32-1.28-0.256-2.592-0.48-3.936-0.64-0.672-0.064-1.344-0.192-1.984-0.32-0.64 0.032-1.312 0.064-1.984 0.064h-5.6c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.024 0-2.016-0.064-3.008-0.192-0.992 0.128-1.984 0.192-3.008 0.192h-5.984c-1.056 0-2.048-0.096-3.072-0.256-0.992 0.128-2.016 0.256-3.072 0.256h-3.008c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h3.008c1.056 0 2.048 0.096 3.072 0.256 0.992-0.128 2.016-0.256 3.072-0.256h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h5.984c1.024 0 2.016 0.064 3.008 0.192 0.992-0.128 1.984-0.192 3.008-0.192h4.736c0.544 0 1.12 0 1.664 0 1.376 0.032 2.688 0.192 3.968 0.448 1.312-0.096 2.624-0.064 4 0.096 2.656 0.288 5.312 0.736 7.904 1.28 1.344 0.288 2.592 0.672 3.808 1.184 1.312 0.16 2.624 0.416 3.968 0.832 2.56 0.8 5.088 1.696 7.52 2.72 1.248 0.512 2.432 1.152 3.552 1.888 1.248 0.384 2.496 0.896 3.712 1.536 2.336 1.248 4.64 2.624 6.88 4.064 1.152 0.736 2.176 1.6 3.136 2.496 1.152 0.608 2.272 1.344 3.328 2.208 2.080 1.664 4.096 3.424 6.016 5.28 0.992 0.96 1.856 1.952 2.624 3.040 1.024 0.832 1.984 1.76 2.88 2.784 1.728 2.016 3.392 4.128 4.928 6.304 0.8 1.12 1.44 2.272 2.016 3.456 0.864 0.992 1.632 2.112 2.304 3.296 1.344 2.304 2.56 4.704 3.648 7.104 0.576 1.248 0.992 2.496 1.312 3.776 0.64 1.152 1.216 2.368 1.664 3.648 0.864 2.528 1.632 5.088 2.272 7.68 0.32 1.312 0.512 2.656 0.576 3.968 0.416 1.248 0.736 2.56 0.96 3.904 0.384 2.624 0.64 5.28 0.8 7.936 0.064 1.28 0.032 2.56-0.128 3.808 0.16 1.088 0.256 2.208 0.256 3.328v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984c0 1.024-0.064 2.016-0.192 3.008 0.128 0.992 0.192 1.984 0.192 3.008v5.984zM228.416 532.16h216.576c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-216.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM397.952 383.008c0 11.872-9.632 21.504-21.504 21.504h-216.576c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h216.576c11.872 0 21.504 9.632 21.504 21.504zM424.992 468.32c0 11.872-9.632 21.504-21.504 21.504h-296.832c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h296.832c11.872 0 21.504 9.632 21.504 21.504z" /> +<glyph unicode="" glyph-name="textual-showcase" d="M212.992 489.248c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008h-84.096c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h84.096zM895.392 575.264h-340.384c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h340.384c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008zM597.344 361.28c0 23.744-19.264 43.008-43.008 43.008h-383.328c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h383.328c23.744 0 43.008 19.264 43.008 43.008zM297.856 233.312h-82.944c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h82.944c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008zM810.048 233.312h-212.096c-23.744 0-43.008-19.264-43.008-43.008s19.264-43.008 43.008-43.008h212.096c23.744 0 43.008 19.264 43.008 43.008s-19.264 43.008-43.008 43.008zM851.744 448.64h-167.488c-23.744 0-43.008-19.232-43.008-43.008v-85.952c0-23.744 19.264-43.008 43.008-43.008h167.488c23.744 0 43.008 19.264 43.008 43.008v85.952c0 23.744-19.264 43.008-43.008 43.008zM682.944 362.656v25.056c0 7.968 6.496 14.464 14.464 14.464h27.616l-42.080-39.52zM768.352 748.32h127.2c23.744 0 43.008-19.264 43.008-43.008v-1.664c0-23.744-19.264-43.008-43.008-43.008h-127.2c-23.744 0-43.008 19.264-43.008 43.008v1.664c0 23.744 19.264 43.008 43.008 43.008zM128.448 748.32h340.544c23.744 0 43.008-19.264 43.008-43.008v-1.664c0-23.744-19.264-43.008-43.008-43.008h-340.544c-23.744 0-43.008 19.264-43.008 43.008v1.664c0 23.744 19.264 43.008 43.008 43.008zM597.856 832h41.632c23.744 0 43.008-19.264 43.008-43.008v-83.648c0-23.744-19.264-43.008-43.008-43.008h-41.632c-23.744 0-43.008 19.264-43.008 43.008v83.648c0 23.744 19.264 43.008 43.008 43.008zM384 618.528c-47.040 0-85.184-38.144-85.184-85.184s38.144-85.184 85.184-85.184 85.184 38.144 85.184 85.184-38.144 85.184-85.184 85.184zM384 491.136c-23.264 0-42.176 18.912-42.176 42.176s18.912 42.176 42.176 42.176 42.176-18.912 42.176-42.176-18.912-42.176-42.176-42.176zM427.168 234.176h41.632c23.744 0 43.008-19.264 43.008-43.008v-83.648c0-23.744-19.264-43.008-43.008-43.008h-41.632c-23.744 0-43.008 19.264-43.008 43.008v83.648c0 23.744 19.264 43.008 43.008 43.008z" /> +<glyph unicode="" glyph-name="threads" d="M716.096 471.168c-3.68 1.76-7.424 3.456-11.168 5.088-6.592 121.376-72.896 190.848-184.256 191.552-0.48 0-1.024 0-1.504 0-66.624 0-122.016-28.448-156.096-80.16l61.248-42.016c25.472 38.624 65.44 46.88 94.88 46.88 0.352 0 0.672 0 1.024 0 36.672-0.256 64.352-10.912 82.24-31.68 13.024-15.136 21.76-36.064 26.048-62.432-32.512 5.504-67.648 7.232-105.248 5.088-105.888-6.112-173.92-67.84-169.376-153.632 2.304-43.52 24-80.96 61.056-105.408 31.328-20.672 71.648-30.784 113.6-28.48 55.36 3.040 98.784 24.16 129.12 62.784 23.008 29.312 37.568 67.36 44 115.264 26.4-15.904 45.952-36.864 56.736-62.048 18.368-42.816 19.456-113.184-37.984-170.56-50.304-50.24-110.784-72-202.144-72.672-101.376 0.736-178.048 33.28-227.904 96.64-46.656 59.36-70.816 145.024-71.68 254.72 0.896 109.696 25.024 195.424 71.68 254.72 49.856 63.36 126.528 95.872 227.904 96.608 102.112-0.768 180.096-33.44 231.872-97.12 25.376-31.232 44.512-70.496 57.12-116.256l71.744 19.136c-15.264 56.352-39.36 104.928-72.096 145.184-66.336 81.632-163.392 123.456-288.416 124.32h-0.48c-124.768-0.864-220.736-42.848-285.184-124.8-57.376-72.928-86.944-174.4-87.936-301.568v-0.288s0-0.288 0-0.288c0.992-127.168 30.56-228.64 87.936-301.568 64.448-81.952 160.416-123.936 285.184-124.8h0.48c110.912 0.768 189.12 29.792 253.568 94.176 84.288 84.192 81.76 189.76 53.952 254.528-19.936 46.464-57.92 84.192-109.888 109.12zM524.544 291.072c-46.4-2.592-94.624 18.208-96.96 62.816-1.76 33.088 23.552 69.984 99.808 74.4 8.736 0.512 17.312 0.736 25.728 0.736 27.712 0 53.632-2.688 77.216-7.84-8.768-109.792-60.352-127.616-105.76-130.112z" /> +<glyph unicode="" glyph-name="tiktok" d="M657.184 839.136h-114.24l-1.216-556.928c0-68.352-60.352-122.144-128.672-122.144s-123.712 55.36-123.712 123.712 55.36 123.712 123.712 123.712c5.12 0 10.016-0.928 14.976-1.504v119.424c-2.496 0.16-4.96 0.352-7.456 0.48s-4.992 0.256-7.52 0.256c-133.856 0-242.368-108.512-242.368-242.368s108.512-242.368 242.368-242.368 242.368 108.512 242.368 242.368v327.936c39.36-60.096 106.336-96.32 178.208-96.32 6.528 0.032 13.088 0.352 19.616 0.992h0.096v132.736c-102.752 7.52-185.376 87.552-196.16 190.016z" /> +<glyph unicode="" glyph-name="time" d="M752.704 330.816v166.464c0 19.424-17.216 35.232-38.336 35.232h-614.912c-18.528 0-33.6-15.808-33.6-35.232v-185.888c0-19.456 15.072-35.232 33.6-35.232h599.328l53.92 54.656zM621.44 362.752h-15.008v83.168h24.192l24.704-65.408h0.64l24.192 65.408h23.2v-83.168h-15.136l1.024 67.072h-1.248l-26.336-67.072h-13.888l-26.080 67.072h-1.152l0.864-67.072zM539.488 445.92h23.2l28.864-83.168h-17.376l-5.408 17.152h-35.264l-5.376-17.152h-17.408l28.736 83.168zM108.832 489.504h361.248v-170.336h-361.248v170.336zM248.736 425.824h-70.4c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h70.4c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM399.68 425.824h-70.4c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h70.4c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM295.52 432.16c0-3.584-2.912-6.496-6.496-6.496s-6.496 2.912-6.496 6.496c0 3.584 2.912 6.496 6.496 6.496s6.496-2.912 6.496-6.496zM295.52 376.48c0-3.584-2.912-6.496-6.496-6.496s-6.496 2.912-6.496 6.496c0 3.584 2.912 6.496 6.496 6.496s6.496-2.912 6.496-6.496zM770.752 617.824h-601.312c-22.944 0-41.6-18.912-41.6-42.144 0-11.872 9.632-21.504 21.504-21.504 11.584 0 21.024 9.152 21.472 20.64h598.528v-277.056l-63.968-63.968h-534.56c-0.448 11.488-9.888 20.64-21.472 20.64-11.872 0-21.504-9.632-21.504-21.504 0-23.232 18.656-42.144 41.6-42.144h601.312c22.944 0 41.6 18.912 41.6 42.144v342.72c0 23.232-18.656 42.144-41.6 42.144zM551.968 433.216h-1.76l-13.184-42.112h28.192l-13.248 42.112zM932.544 424.288c-8.384 8.384-22.016 8.384-30.4 0l-23.392-23.392-10.176 10.176c-8.384 8.384-22.016 8.384-30.4 0s-8.384-22.016 0-30.4l40.576-40.576 53.792 53.792c8.384 8.384 8.384 22.016 0 30.4zM236.672 660.16h345.76c12.96 0 23.488 10.528 23.488 23.488v124c0 12.96-10.528 23.488-23.488 23.488h-345.76c-12.96 0-23.488-10.528-23.488-23.488v-124c0-12.96 10.528-23.488 23.488-23.488zM256.16 788.16h306.752v-84.992h-306.752v84.992zM512 767.168h-213.504c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h213.504c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM236.672 148.512h295.84c12.992 0 23.488-10.528 23.488-23.488v-38.656c0-12.992-10.528-23.488-23.488-23.488h-295.84c-12.992 0-23.488 10.528-23.488 23.488v38.656c0 12.992 10.528 23.488 23.488 23.488z" /> +<glyph unicode="" glyph-name="timeline" d="M586.432 758.784c0-39.904-32.352-72.224-72.224-72.224s-72.224 32.352-72.224 72.224c0 39.904 32.352 72.224 72.224 72.224s72.224-32.352 72.224-72.224zM514.208 520.224c-39.904 0-72.224-32.352-72.224-72.224s32.352-72.224 72.224-72.224 72.224 32.352 72.224 72.224-32.352 72.224-72.224 72.224zM514.208 418.784c-16.128 0-29.216 13.12-29.216 29.216s13.12 29.216 29.216 29.216 29.216-13.12 29.216-29.216-13.12-29.216-29.216-29.216zM586.432 135.232c0-39.904-32.352-72.224-72.224-72.224s-72.224 32.352-72.224 72.224c0 39.904 32.352 72.224 72.224 72.224s72.224-32.352 72.224-72.224zM492.704 639.008v-64c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504v64c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504zM535.712 255.008v64c0 11.872-9.632 21.504-21.504 21.504s-21.504-9.632-21.504-21.504v-64c0-11.872 9.632-21.504 21.504-21.504s21.504 9.632 21.504 21.504zM658.048 700.128h216.64c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-216.64c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM658.048 165.952h128.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-128.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504zM874.656 147.616h-216.64c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h216.64c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM366.624 500.16h-128.608c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h128.608c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504zM366.624 438.816h-217.312c-11.872 0-21.504-9.632-21.504-21.504s9.632-21.504 21.504-21.504h217.312c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504z" /> +<glyph unicode="" glyph-name="timer" d="M268.384 588.64l224.704-168.8c5.664-4.256 12.288-6.304 18.88-6.304 9.568 0 19.008 4.352 25.184 12.576 10.432 13.888 7.616 33.632-6.24 44.064l-224.704 168.8c-13.92 10.464-33.664 7.616-44.064-6.24-10.464-13.888-7.648-33.632 6.24-44.064zM512 928c-17.376 0-31.456-14.112-31.456-31.488v-282.72c0-17.376 14.112-31.456 31.456-31.456s31.456 14.112 31.456 31.456v250.048c215.264-16.16 385.568-196.64 385.568-415.872 0-229.952-187.072-417.056-417.056-417.056s-417.056 187.072-417.056 417.056c0 85.696 25.792 168 74.592 238.080 9.952 14.272 6.432 33.888-7.84 43.84s-33.888 6.432-43.808-7.84c-56.192-80.672-85.856-175.456-85.856-274.080 0-264.672 215.328-480 480-480s480 215.328 480 480-214.912 479.552-479.968 480z" /> +<glyph unicode="" glyph-name="toggle-off" d="M275.648 626.72c-88.064 0-159.648-71.648-159.648-159.68s71.648-159.68 159.648-159.68 159.68 71.648 159.68 159.648-71.648 159.68-159.68 159.68zM275.648 371.36c-52.768 0-95.648 42.912-95.648 95.648s42.912 95.68 95.648 95.68 95.68-42.912 95.68-95.68-42.912-95.648-95.68-95.648zM722.72 736.32h-421.44c-148.48 0-269.28-120.8-269.28-269.28s120.8-269.28 269.28-269.28h421.44c148.48 0 269.28 120.8 269.28 269.28s-120.8 269.28-269.28 269.28zM722.72 261.76h-421.44c-113.184 0-205.28 92.096-205.28 205.28s92.096 205.28 205.28 205.28h421.44c113.184 0 205.28-92.064 205.28-205.28s-92.096-205.28-205.28-205.28z" /> +<glyph unicode="" glyph-name="toggle-on" d="M756.352 626.72c-88.064 0-159.68-71.648-159.68-159.68s71.648-159.68 159.68-159.68 159.648 71.648 159.648 159.648-71.648 159.68-159.648 159.68zM756.352 371.36c-52.768 0-95.68 42.912-95.68 95.648s42.912 95.68 95.68 95.68 95.648-42.912 95.648-95.68-42.912-95.648-95.648-95.648zM730.72 736.32h-421.44c-148.48 0-269.28-120.8-269.28-269.28s120.8-269.28 269.28-269.28h421.44c148.48 0 269.28 120.8 269.28 269.28s-120.8 269.28-269.28 269.28zM730.72 261.76h-421.44c-113.184 0-205.28 92.096-205.28 205.28s92.096 205.28 205.28 205.28h421.44c113.184 0 205.28-92.064 205.28-205.28s-92.096-205.28-205.28-205.28z" /> +<glyph unicode="" glyph-name="tooltip" d="M775.488 689.6h-526.976c-42.656 0-77.344-34.688-77.344-77.344v-271.072c0-42.656 34.688-77.344 77.344-77.344h151.456c10.528 0 20.32-4.704 26.88-12.928l45.024-56.256c9.824-12.256 24.448-19.296 40.128-19.296s30.336 7.040 40.128 19.296l44.992 56.256c6.56 8.224 16.384 12.928 26.88 12.928h151.456c42.656 0 77.344 34.688 77.344 77.344v271.072c0 42.656-34.688 77.344-77.344 77.344zM809.92 341.184c0-18.976-15.456-34.432-34.432-34.432h-151.456c-23.616 0-45.632-10.592-60.416-29.024l-44.992-56.256c-2.208-2.784-5.088-3.168-6.624-3.168s-4.416 0.416-6.624 3.168l-45.024 56.256c-14.752 18.432-36.768 29.024-60.384 29.024h-151.456c-18.976 0-34.432 15.456-34.432 34.432v161.92l142.976 143.584h418.432c18.976 0 34.432-15.456 34.432-34.432v-271.072zM524.96 601.312h-25.952c-13.28 0-23.84-11.2-23.072-24.448l9.28-159.872c0.704-12.224 10.848-21.792 23.072-21.792h7.392c12.256 0 22.368 9.568 23.072 21.792l9.28 159.872c0.768 13.28-9.792 24.448-23.072 24.448zM512 376.448c-15.52 0-28.096-12.576-28.096-28.096s12.576-28.096 28.096-28.096 28.096 12.576 28.096 28.096-12.576 28.096-28.096 28.096z" /> +<glyph unicode="" glyph-name="trash" d="M512 480c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32s32 14.336 32 32v192c0 17.664-14.336 32-32 32zM384 448c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM640 448c-17.664 0-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32zM768 768c0 17.664-14.336 32-32 32h-7.040l-10.432 41.6c-6.208 24.736-20.096 46.24-40.512 62.432-20.096 15.456-44.96 23.968-70.016 23.968h-192c-25.056 0-49.888-8.48-70.336-24.224-20.064-15.84-34.336-38.016-40.16-62.144l-10.432-41.6h-7.040c-17.664 0-32-14.336-32-32-52.96 0-96-43.072-96-96v-64c0-24.256 13.696-45.152 33.632-55.968l28.704-401.824c-18.144-11.328-30.336-31.264-30.336-54.208v-32c0-52.928 43.040-96 96-96h448c52.928 0 96 43.072 96 96v32c0 22.912-12.192 42.88-30.336 54.208l28.704 401.824c19.904 10.848 33.632 31.744 33.632 55.968v64c0 52.96-43.072 96-96 96zM285.792 160l-27.424 384h507.264l-27.424-384h-452.384zM384.992 853.312c9.088 7.008 19.84 10.688 31.008 10.688h192c11.168 0 21.888-3.68 30.624-10.4 8.928-7.072 15.072-16.608 17.824-27.552l6.624-26.432c-15.872-1.888-28.256-15.232-28.256-31.616h-256c0 12.864-7.648 23.904-18.592 28.96l7.36 29.344c2.592 10.72 8.736 20.16 17.376 27.008zM224 672c0 17.92 14.048 32 32 32h512c17.952 0 32-14.080 32-32v-64h-576v64zM768 64c0-17.952-14.048-32-32-32h-448c-17.92 0-32 14.048-32 32v32h512v-32z" /> +<glyph unicode="" glyph-name="trophy" d="M893.92 706.944c1.216 22.304-6.528 44.064-21.312 59.68-13.376 14.112-31.008 21.888-49.664 21.888h-49.568c0.832 24.832 0.992 43.232 0.992 52.192 0 48.128-34.048 87.296-75.872 87.296h-372.96c-41.856 0-75.872-39.168-75.872-87.296 0-8.96 0.16-27.392 0.928-52.192h-49.536c-18.656 0-36.32-7.776-49.696-21.888-14.784-15.616-22.56-37.376-21.312-59.648 15.84-286.016 163.776-505.344 349.92-528.064v-146.88h-138.080c-17.664 0-32-14.336-32-32s14.336-32 32-32h340.128c17.664 0 32 14.336 32 32s-14.336 32-32 32h-138.048v146.88c186.144 22.72 334.048 242.048 349.92 528.064zM822.912 724.512c1.312 0 2.784-1.44 3.2-1.888 2.688-2.88 4.16-7.392 3.904-12.16-8.864-160-63.936-298.816-142.464-383.232 55.072 119.104 75.296 285.088 82.624 397.248h52.736zM325.504 864h372.96c4.096 0 11.872-9.088 11.872-23.296-0.064-154.56-37.312-595.68-202.336-595.68h-2.848c-156.16 0-191.456 441.152-191.488 595.648 0 14.24 7.776 23.296 11.872 23.296zM194.016 710.464c-0.256 4.768 1.184 9.28 3.904 12.16 0.416 0.416 1.888 1.888 3.2 1.888h52.576c6.88-109.888 25.664-271.456 76.16-389.984-74.976 85.024-127.168 220.512-135.808 375.936z" /> +<glyph unicode="" glyph-name="tumblr" d="M762.336 90.336l-36.672 107.168c-2.688 7.52-6.496 11.648-12.352 13.184-6.144 1.664-13.184-0.48-21.184-3.648-73.856-29.664-113.312 2.688-113.312 59.648v222.016h139.008c9.184 0 16.672 7.52 16.672 16.672v136.16c0 9.184-7.52 16.48-16.672 16.48h-138.336v192c0 9.184-7.52 16.672-16.672 16.672h-118.144c-16 0-25.504-8.832-26.816-27.168-4.672-68.512-37.184-158.816-140.48-195.168-11.328-4-18.816-14.688-18.816-26.688v-113.312c0-9.184 7.52-16.672 16.672-16.672h79.168v-240c0-86.336 43.648-234.336 244.992-234.336 79.008 0 139.648 28.672 162.336 52.832v0c6.144 6.496 3.648 15.84 0.672 24.16z" /> +<glyph unicode="" glyph-name="upload" d="M965.056 466.816c-17.664 0-32-14.336-32-32v-349.312c0-26.816-21.824-48.64-48.64-48.64h-734.72c-26.816 0-48.64 21.824-48.64 48.64v349.312c0 17.664-14.336 32-32 32s-32-14.336-32-32v-349.312c0-62.112 50.528-112.64 112.64-112.64h734.72c62.112 0 112.64 50.528 112.64 112.64v349.312c0 17.664-14.336 32-32 32zM291.424 618.080l195.84 195.84v-540.672c0-17.664 14.336-32 32-32s32 14.336 32 32v540.672l195.84-195.84c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-250.464 250.464c-1.504 1.472-3.136 2.848-4.896 4-0.8 0.544-1.664 0.896-2.528 1.376-0.992 0.544-1.952 1.152-2.976 1.568-1.088 0.448-2.208 0.704-3.296 1.024-0.896 0.256-1.76 0.608-2.688 0.8-4.16 0.832-8.384 0.832-12.544 0-0.928-0.192-1.792-0.512-2.688-0.8-1.088-0.32-2.208-0.576-3.264-1.024s-2.016-1.024-3.008-1.6c-0.832-0.448-1.696-0.832-2.528-1.344-1.76-1.184-3.424-2.528-4.896-4l-250.464-250.464c-12.512-12.48-12.512-32.768 0-45.248s32.768-12.48 45.248 0z" /> +<glyph unicode="" glyph-name="user" d="M512 305.024c158.464 0 391.552-86.848 400.032-273.024h-800.032c8.48 186.176 241.568 273.024 400 273.024zM512 369.024c-207.104 0-464.256-117.472-464.256-347.52 0-28.928 20.928-53.504 49.856-53.504h828.8c28.928 0 49.856 24.544 49.856 53.504 0 227.904-257.184 347.552-464.256 347.552v0zM512 864c84.48 0 153.216-68.736 153.216-153.216s-68.736-153.216-153.216-153.216-153.216 68.736-153.216 153.216 68.736 153.216 153.216 153.216zM512 928c-119.968 0-217.216-97.248-217.216-217.216s97.248-217.216 217.216-217.216 217.216 97.248 217.216 217.216-97.248 217.216-217.216 217.216v0z" /> +<glyph unicode="" glyph-name="users" d="M512 360.928c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM512 557.088c40.832 0 74.080-33.248 74.080-74.080s-33.216-74.080-74.080-74.080-74.080 33.216-74.080 74.080 33.248 74.080 74.080 74.080zM292.928 586.304c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM292.928 766.464c32.032 0 58.080-26.048 58.080-58.080s-26.048-58.080-58.080-58.080-58.080 26.048-58.080 58.080 26.048 58.080 58.080 58.080zM731.072 586.304c67.424 0 122.080 54.656 122.080 122.080s-54.656 122.080-122.080 122.080-122.080-54.656-122.080-122.080 54.656-122.080 122.080-122.080zM731.072 766.464c32.032 0 58.080-26.048 58.080-58.080s-26.048-58.080-58.080-58.080-58.080 26.048-58.080 58.080 26.048 58.080 58.080 58.080zM251.072 95.584c0-16.288 11.744-30.048 28.032-30.048h465.824c16.288 0 28 13.792 28 30.048 0 128.096-144.544 195.328-260.928 195.328s-260.928-66.048-260.928-195.328zM512 242.912c80.576 0 197.472-41.248 211.552-129.408h-423.040c14.080 88.16 130.944 129.408 211.552 129.408zM731.072 516.288c-11.712 0-23.712-0.768-35.808-2.112 1.728-10.176 2.816-20.576 2.816-31.2 0-11.392-1.184-22.528-3.168-33.344 12.512 1.76 24.736 2.624 36.16 2.624 70.88 0 165.216-33.664 190.496-97.376h-274.912c-33.92-35.616-81.664-58.016-134.624-58.016s-100.736 22.336-134.624 58.016h-275.232c25.152 66.24 122.208 97.376 190.816 97.376 11.552 0 23.744-0.96 36.16-2.72-1.984 10.848-3.168 22.016-3.168 33.408 0 10.592 1.088 20.896 2.816 31.040-12.064 1.376-24.096 2.272-35.776 2.272-116.416 0-260.928-66.016-260.928-195.328 0-16.288 11.744-30.048 28-30.048h903.936c16.288 0 28 13.792 28 30.048 0 128.096-144.544 195.328-260.928 195.328z" /> +<glyph unicode="" glyph-name="veritcal-menu" d="M536.224 830.112h-51.36c-44.576 0-80.832-36.256-80.832-80.832l0.352-602.656c0-44.576 36.256-80.832 80.832-80.832h51.36c44.544 0 80.832 36.256 80.832 80.832l-0.352 602.656c0 44.544-36.256 80.832-80.832 80.832zM536.576 108.704h-51.36c-20.928 0-37.92 16.992-37.92 37.92l-0.352 602.656c0 20.896 16.992 37.92 37.92 37.92h51.36c20.896 0 37.92-16.992 37.92-37.92l0.352-602.656c0-20.928-16.992-37.92-37.92-37.92zM509.664 749.376v0c-11.84 0-21.44-9.632-21.44-21.472l0.352-555.488c0-11.84 9.6-21.44 21.472-21.44v0c11.84 0 21.44 9.632 21.44 21.472l-0.352 555.488c0 11.84-9.6 21.44-21.472 21.44zM893.728 749.28c0 44.544-36.256 80.832-80.832 80.832h-51.36c-44.544 0-80.832-36.256-80.832-80.832l0.352-602.656c0-44.576 36.256-80.832 80.832-80.832h51.36c44.576 0 80.832 36.256 80.832 80.832l-0.352 602.656zM786.72 150.976h-0.032c-11.84 0-21.472 9.6-21.472 21.472l-0.352 555.488c0 11.84 9.6 21.472 21.472 21.472 5.92 0 11.296-2.4 15.168-6.304s6.304-9.248 6.304-15.136l0.352-555.488c0-11.872-9.6-21.472-21.44-21.472zM259.552 830.112h-51.36c-44.576 0-80.832-36.256-80.832-80.832l0.352-602.656c0-44.576 36.256-80.832 80.832-80.832h51.36c44.576 0 80.832 36.256 80.832 80.832l-0.352 602.656c0 44.544-36.256 80.832-80.832 80.832zM259.904 108.704h-51.36c-20.896 0-37.92 16.992-37.92 37.92l-0.352 602.656c0 20.896 16.992 37.92 37.92 37.92h51.36c20.896 0 37.92-16.992 37.92-37.92l0.352-602.656c0-20.928-16.992-37.92-37.92-37.92zM232.992 749.376v0c-11.84 0-21.44-9.632-21.44-21.472l0.352-555.488c0-11.84 9.6-21.44 21.472-21.44v0c11.84 0 21.44 9.632 21.44 21.472l-0.352 555.488c0 11.84-9.6 21.44-21.472 21.44z" /> +<glyph unicode="" glyph-name="video-box" d="M835.36 831.264h-646.752c-33.056 0-59.872-26.816-59.872-59.872v-646.752c0-33.056 26.816-59.872 59.872-59.872h646.752c33.056 0 59.872 26.816 59.872 59.872v646.752c0 33.088-26.816 59.872-59.872 59.872zM852.32 124.64c0-9.344-7.616-16.96-16.96-16.96h-497.76l-165.92 165.92v497.76c0 9.344 7.616 16.96 16.96 16.96h646.752c9.344 0 16.96-7.616 16.96-16.96v-646.752zM825.92 746.56c0-8.256-6.688-14.976-14.976-14.976s-14.976 6.72-14.976 14.976c0 8.256 6.688 14.976 14.976 14.976s14.976-6.72 14.976-14.976zM750.176 761.536c-8.256 0-14.976-6.688-14.976-14.976s6.688-14.976 14.976-14.976 14.976 6.72 14.976 14.976-6.688 14.976-14.976 14.976zM704.384 746.56c0-8.256-6.688-14.976-14.976-14.976s-14.976 6.72-14.976 14.976c0 8.256 6.688 14.976 14.976 14.976s14.976-6.72 14.976-14.976zM633.888 472.384l-171.456 104.768c-8.8 5.408-19.872 5.6-28.864 0.544s-14.592-14.592-14.592-24.96v-209.568c0-10.368 5.6-19.872 14.592-24.96s20.064-4.832 28.864 0.544l171.456 104.768c8.512 5.184 13.696 14.4 13.696 24.416s-5.184 19.168-13.696 24.416z" /> +<glyph unicode="" glyph-name="video-button" d="M633.888 472.384l-171.456 104.768c-8.8 5.408-19.872 5.6-28.864 0.544s-14.592-14.592-14.592-24.96v-209.568c0-10.368 5.6-19.872 14.592-24.96s20.064-4.832 28.864 0.544l171.456 104.768c8.512 5.184 13.696 14.4 13.696 24.416s-5.184 19.168-13.696 24.416zM873.632 707.872h-724.416c-35.488 0-64.384-28.864-64.384-64.384v-391.456c0-35.488 28.864-64.384 64.384-64.384h724.416c35.488 0 64.384 28.864 64.384 64.384v391.456c0 35.488-28.864 64.384-64.384 64.384zM895.072 252.032c0-11.84-9.632-21.472-21.472-21.472h-724.416c-11.84 0-21.472 9.632-21.472 21.472v318.4l86.88 94.528h658.976c11.84 0 21.472-9.632 21.472-21.472v-391.456z" /> +<glyph unicode="" glyph-name="video-camera" d="M992 464.128l-155.424-73.888v55.936c0 48.992-39.712 88.704-88.704 88.704h-110.816c44.736 31.456 74.016 83.36 74.016 142.208 0 96-77.824 173.824-173.856 173.824-85.536 0-156.48-61.856-170.976-143.232-21.888 22.464-52.416 36.48-86.272 36.48-66.528 0-120.448-53.952-120.448-120.48 0-35.232 15.2-66.784 39.296-88.832h-78.144c-48.992 0-88.704-39.712-88.704-88.704v-312.384c0-48.992 39.712-88.704 88.704-88.704h627.168c48.992 0 88.704 39.712 88.704 88.704v55.264l155.424-73.856v348.96zM537.248 786.912c60.544 0 109.856-49.28 109.856-109.824s-49.28-109.824-109.856-109.824-109.824 49.28-109.824 109.824 49.28 109.824 109.824 109.824zM280 680.16c31.136 0 56.448-25.312 56.448-56.448s-25.312-56.448-56.448-56.448-56.448 25.312-56.448 56.448 25.344 56.448 56.448 56.448zM392.48 580.896c11.968-18.016 27.264-33.568 44.96-46.016h-76.256c13.76 12.576 24.544 28.256 31.328 46.016zM772.576 133.792c0-13.6-11.072-24.704-24.704-24.704h-627.168c-13.6 0-24.704 11.072-24.704 24.704v312.384c0 13.6 11.072 24.704 24.704 24.704h627.168c13.6 0 24.704-11.104 24.704-24.704v-312.384zM928 216.448l-58.592 27.84v90.688l58.592 27.84v-146.4zM512.448 331.936l-122.4 78.816c-5.376 3.456-11.2 5.024-16.864 5.024-16.288 0-31.36-12.96-31.36-31.36v-157.632c0-18.368 15.104-31.36 31.36-31.36 5.664 0 11.488 1.568 16.864 5.024l122.4 78.816c19.136 12.32 19.136 40.288 0 52.64z" /> +<glyph unicode="" glyph-name="vimeo" d="M784.384 772.896c-106.432 3.424-178.624-56.576-216.352-180.16 47.136 20.224 116.736 25.536 108.512-53.152-2.4-26.592-19.712-65.152-51.776-115.872-89.472-140.928-111.264-93.952-160.448 217.184-13.888 87.424-50.592 128.416-110.4 122.56-52.96-4.8-137.472-91.2-225.952-168.832l36-46.624c34.464 24 54.528 36.16 60.32 36.16 49.888 0 75.616-129.792 135.936-351.232 31.040-82.624 68.928-123.936 113.664-123.936 72.352 0 160.64 67.904 265.024 203.648 101.12 129.952 153.248 232.288 156.672 307.040v0c4.48 99.936-32.736 151.2-111.264 153.248z" /> +<glyph unicode="" glyph-name="volume-down" d="M762.592 600.128c-12.448-12.544-12.352-32.8 0.192-45.28 24.096-23.904 37.376-55.968 37.376-90.336s-13.28-66.4-37.376-90.336c-12.544-12.448-12.608-32.704-0.16-45.248 6.24-6.304 14.464-9.472 22.688-9.472 8.16 0 16.32 3.072 22.528 9.312 36.288 36.032 56.288 84.256 56.288 135.744s-20 99.744-56.288 135.744c-12.544 12.448-32.8 12.352-45.28-0.16zM985.504 529.024c-3.52 17.312-20.544 28.576-37.76 24.96-17.312-3.552-28.48-20.448-24.928-37.728 3.456-16.864 5.184-34.24 5.184-51.712s-1.76-34.816-5.184-51.68c-3.552-17.312 7.616-34.24 24.928-37.76 2.144-0.448 4.32-0.64 6.432-0.64 14.88 0 28.224 10.432 31.328 25.6 4.32 21.056 6.496 42.784 6.496 64.48s-2.208 43.456-6.496 64.512zM672 538.4v229.632c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.048l-107.424-41.344c-0.48-0.192-0.992-0.352-1.472-0.576l-251.52-96.736c-7.36-2.816-14.080-6.752-20.256-11.328h-108.704c-23.136 0-44.896-8.992-61.216-25.376-16.128-16.128-25.376-38.432-25.376-61.28v-146.752c0-22.816 9.248-45.152 25.376-61.248 16.352-16.352 38.112-25.376 61.248-25.376h108.704c6.144-4.576 12.864-8.512 20.224-11.328l251.52-96.736c0.512-0.224 1.056-0.384 1.568-0.576l107.392-41.312v-10.048c0-17.664 14.336-32 32-32s32 14.336 32 32v229.6c37.216 13.216 64 48.672 64 90.4s-26.784 77.184-64 90.4zM102.624 358.624c-4.192 4.192-6.624 10.016-6.624 16v146.752c0 5.984 2.4 11.776 6.624 16 4.288 4.256 9.952 6.624 16 6.624h73.824c-0.128-1.824-0.416-3.648-0.416-5.504v-180.96c0-1.856 0.32-3.648 0.416-5.504h-73.824c-6.048 0-11.712 2.336-16.032 6.624zM256 357.504v180.96c0 9.28 5.824 17.792 14.528 21.12l209.504 80.576v-384.384l-209.504 80.576c-8.672 3.328-14.496 11.808-14.496 21.12zM640 416c-17.664 0-32-14.336-32-32v-177.408l-64 24.64v433.6l64 24.64v-177.408c0-17.664 14.336-32 32-32s32-14.336 32-32-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="volume-mute" d="M925.312 448l57.312 57.28c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-57.312-57.28-57.312 57.28c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l57.312-57.28-57.312-57.312c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l57.312 57.312 57.312-57.312c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-57.312 57.312zM672.192 538.4v229.696c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.048l-107.648-41.408c-0.416-0.16-0.832-0.32-1.248-0.48l-251.712-96.832c-7.328-2.816-14.048-6.752-20.192-11.328h-108.736c-23.168 0-44.896-8.992-61.28-25.376-16.384-16.352-25.376-38.112-25.376-61.28v-146.784c0-23.136 8.992-44.928 25.376-61.28s38.144-25.408 61.28-25.408h108.736c6.144-4.576 12.864-8.48 20.192-11.328l251.616-96.768c0.48-0.224 0.992-0.384 1.472-0.576l107.488-41.344v-10.048c0-17.664 14.336-32 32-32s32 14.336 32 32v229.696c37.216 13.216 64 48.704 64 90.4s-26.784 77.184-64 90.4zM102.656 358.592c-4.288 4.288-6.656 9.952-6.656 16v146.784c0 6.048 2.368 11.744 6.656 16.032s9.984 6.624 16 6.624h73.856c-0.128-1.824-0.416-3.648-0.416-5.536v-181.024c0-1.856 0.32-3.68 0.416-5.536h-73.856c-6.048 0-11.712 2.336-16 6.624zM256.064 357.504v181.024c0 9.28 5.824 17.792 14.528 21.152l209.568 80.576v-384.48l-209.568 80.576c-8.672 3.36-14.528 11.84-14.528 21.12zM640.192 416c-17.664 0-32-14.336-32-32v-177.472l-64.064 24.64v433.728l64.064 24.64v-177.472c0-17.664 14.336-32 32-32s32-14.336 32-32-14.336-32-32-32z" /> +<glyph unicode="" glyph-name="volume-up" d="M672 538.4v229.6c0 17.664-14.336 32-32 32s-32-14.336-32-32v-10.048l-107.552-41.376c-0.448-0.16-0.896-0.32-1.344-0.512l-251.584-96.768c-7.36-2.816-14.048-6.752-20.224-11.328h-108.672c-23.168 0-44.928-8.992-61.28-25.376s-25.344-38.112-25.344-61.248v-146.752c0-23.136 9.024-44.864 25.344-61.248s38.112-25.376 61.28-25.376h108.704c6.144-4.576 12.864-8.48 20.192-11.328l251.552-96.736c0.48-0.192 0.96-0.384 1.472-0.544l107.488-41.312v-10.048c0-17.664 14.336-32 32-32s32 14.336 32 32v229.6c37.216 13.216 64 48.672 64 90.4s-26.784 77.184-64 90.4zM102.656 358.624c-4.288 4.288-6.656 9.952-6.656 16v146.752c0 6.048 2.368 11.712 6.656 16s9.952 6.624 16 6.624h73.824c-0.128-1.824-0.416-3.648-0.416-5.504v-180.96c0-1.856 0.32-3.648 0.416-5.504h-73.824c-6.048 0-11.712 2.336-16 6.624zM256 357.504v180.96c0 9.28 5.824 17.792 14.496 21.088l209.504 80.576v-384.352l-209.504 80.576c-8.672 3.328-14.496 11.808-14.496 21.12zM640 416c-17.664 0-32-14.336-32-32v-177.408l-64 24.64v433.6l64 24.64v-177.408c0-17.664 14.336-32 32-32s32-14.336 32-32-14.336-32-32-32zM762.432 312.288c6.24-6.304 14.496-9.472 22.688-9.472 8.16 0 16.288 3.072 22.528 9.28 36.32 36.064 56.32 84.288 56.32 135.872s-20 99.84-56.32 135.872c-12.544 12.448-32.8 12.352-45.248-0.16s-12.384-32.832 0.192-45.28c24.096-23.936 37.408-56.064 37.408-90.432s-13.28-66.496-37.408-90.432c-12.544-12.448-12.64-32.736-0.192-45.28zM898.464 674.4c-29.12 29.184-63.328 52.256-101.6 68.544-16.288 6.976-35.072-0.64-41.984-16.928s0.64-35.040 16.928-41.952c30.688-13.056 58.048-31.552 81.376-54.912 48.256-48.192 74.784-112.544 74.784-181.184s-26.56-132.992-74.816-181.184c-23.328-23.36-50.688-41.792-81.376-54.88-16.288-6.912-23.84-25.696-16.928-41.952 5.184-12.192 17.024-19.488 29.472-19.488 4.192 0 8.448 0.832 12.512 2.592 38.304 16.288 72.448 39.36 101.568 68.48 60.352 60.288 93.568 140.736 93.568 226.432s-33.216 166.144-93.536 226.4z" /> +<glyph unicode="" glyph-name="wallet" d="M992 358.624c0 65.408-34.816 122.72-86.816 154.784 0.064 0.672 0.192 1.344 0.192 2.048v66.944c0 42.848-34.88 77.728-77.728 77.728h-52.096l-132.544 192.64c-8.864 12.928-25.792 17.504-40 10.816l-432.576-203.456h-60.768c-42.88 0-77.728-34.88-77.728-77.728v-475.328c0-42.88 34.88-77.728 77.728-77.728h717.92c42.88 0 77.728 34.88 77.728 77.728v96.896c51.84 32.096 86.624 89.312 86.624 154.624zM605.696 794.112l92.192-133.984h-377.056l284.864 133.984zM841.408 107.072c0-7.584-6.144-13.728-13.728-13.728h-717.952c-7.552 0-13.728 6.144-13.728 13.728v475.328c0 7.584 6.144 13.728 13.728 13.728h717.952c7.552 0 13.728-6.176 13.728-13.728v-44.768c-10.208 1.792-20.608 2.912-31.328 2.912h-339.936c-100.288 0-181.888-81.6-181.888-181.888s81.6-181.888 181.888-181.888h339.936c10.688 0 21.12 1.12 31.328 2.88v-72.544zM810.112 240.736h-339.936c-64.992 0-117.888 52.896-117.888 117.888s52.896 117.888 117.888 117.888h339.936c65.024 0 117.888-52.896 117.888-117.888s-52.896-117.888-117.888-117.888zM474.816 441.12c-45.472 0-82.528-37.024-82.528-82.496s36.992-82.496 82.528-82.496 82.528 37.024 82.528 82.496-37.024 82.496-82.528 82.496zM474.816 340.128c-10.208 0-18.528 8.288-18.528 18.496s8.288 18.496 18.528 18.496 18.528-8.32 18.528-18.496-8.288-18.496-18.528-18.496z" /> +<glyph unicode="" glyph-name="wallet-money" d="M992 311.616c0 84.832-13.568 135.84-42.624 160.48-6.464 5.472-13.728 9.216-21.376 11.936v67.584c0 30.144-17.472 59.232-42.272 77.344l28.64 107.424c5.6 20.768 2.784 42.432-7.936 61.056-10.688 18.624-28.032 31.936-48.832 37.536l-308.544 82.656c-20.736 5.536-42.4 2.592-61.024-8.224-18.592-10.784-31.84-28.16-37.28-48.736l-12.352-46.016-76.768 20.576c-20.672 5.664-42.336 2.912-60.992-7.84s-32.032-28.16-37.504-48.832l-0.8-2.976h-102.304c-49.344 0-96-46.656-96-96v-59.2c-19.2-18.048-32-43.040-32-68.8v-480c0-49.344 46.656-96 96-96h704c49.344 0 96 46.656 96 96v67.232c7.712 2.72 14.88 6.784 21.408 12.288 29.056 24.64 42.592 75.648 42.592 160.48zM512.608 844.256c1.504 5.632 5.408 8.608 7.584 9.888 2.24 1.28 6.784 3.136 12.384 1.728l308.416-82.656c4.288-1.152 7.808-3.904 10.016-7.68 1.28-2.208 3.168-6.72 1.568-12.512l-28.096-105.408h-99.52l1.824 6.816c11.328 42.816-14.208 86.912-56.832 98.272l-169.76 45.472 12.384 46.112zM332.544 771.936c2.176 1.248 6.656 3.104 12.352 1.568l308.576-82.656c8.64-2.304 13.792-11.328 11.52-19.968l-6.24-23.264h-364.512l30.752 114.496c1.472 5.632 5.376 8.608 7.584 9.856zM128 679.616c0 14.336 17.632 32 32 32h85.12l-17.184-64h-99.936v32zM832 39.616h-704c-14.368 0-32 17.664-32 32v32h224c17.664 0 32 14.336 32 32s-14.336 32-32 32h-224v384c0 9.728 8.16 20.832 17.824 27.072 0.032 0.032 0.064 0.032 0.096 0.064 4.576 2.912 9.472 4.864 14.080 4.864h704c14.336 0 32-17.664 32-32v-67.52l-67.616-7.68c-0.544-0.064-1.088-0.16-1.6-0.224-52.096-8.576-89.952-53.216-89.952-106.080v-116.992c0-54.912 39.424-100.64 91.552-106.336l67.616-7.648v-67.52c0-14.336-17.664-32-32-32zM908 199.936c-0.832-0.672-1.76-1.472-5.92-0.768-0.544 0.096-1.088 0.192-1.632 0.256l-96.96 10.976c-19.424 2.144-34.624 20.896-34.624 42.72v116.992c0 21.184 14.976 39.072 35.648 42.816l95.936 10.88c0.544 0.064 1.088 0.16 1.664 0.256 4.192 0.672 5.088-0.096 5.888-0.768 3.36-2.816 20-21.504 20-111.648s-16.64-108.832-20-111.648z" /> +<glyph unicode="" glyph-name="watch" d="M528 461.248v82.752c0 17.664-14.336 32-32 32s-32-14.336-32-32v-96c0-8.48 3.36-16.64 9.376-22.624l32-32c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-22.624 22.624zM784 480h-1.888c-3.264 29.344-10.976 57.312-22.4 83.328l1.632 0.96c15.328 8.864 20.544 28.384 11.712 43.712-8.832 15.264-28.416 20.544-43.712 11.68l-1.856-1.088c-5.408 7.264-11.072 14.304-17.12 21.056l-41.856 200.256c-10.72 51.040-56.384 88.096-108.48 88.096h-128c-52.128 0-97.76-37.024-108.512-88.096l-42.080-200.48c-45.504-50.944-73.44-117.888-73.44-191.424s27.936-140.544 73.472-191.488l42.016-200.416c10.72-51.040 56.352-88.096 108.48-88.096h128c52.128 0 97.76 37.024 108.512 88.128l41.792 200.16c6.048 6.752 11.744 13.76 17.184 21.088l1.856-1.088c5.024-2.912 10.528-4.288 16-4.288 11.072 0 21.792 5.728 27.712 16 8.832 15.328 3.616 34.88-11.712 43.712l-1.632 0.928c11.424 26.048 19.136 54.016 22.4 83.328h1.888c17.664 0 32 14.336 32 32s-14.336 32-32 32zM675.168 314.112l-20.672 20.672c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.736 0-45.248l20.672-20.672c-29.312-21.952-64.064-36.832-101.888-42.304v29.44c0 17.664-14.336 32-32 32s-32-14.336-32-32v-29.44c-37.856 5.472-72.608 20.352-101.888 42.304l20.672 20.672c12.48 12.48 12.48 32.736 0 45.248s-32.768 12.48-45.248 0l-20.672-20.672c-21.952 29.312-36.832 64.064-42.304 101.888h29.44c17.664 0 32 14.336 32 32s-14.336 32-32 32h-29.44c5.472 37.856 20.352 72.608 42.304 101.888l20.672-20.672c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.768 0 45.248l-20.672 20.672c29.28 21.952 64.064 36.864 101.888 42.304v-29.44c0-17.664 14.336-32 32-32s32 14.336 32 32v29.44c37.856-5.472 72.608-20.352 101.888-42.304l-20.672-20.672c-12.48-12.48-12.48-32.768 0-45.248 6.24-6.272 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l20.672 20.672c21.952-29.28 36.832-64.064 42.304-101.888h-29.44c-17.664 0-32-14.336-32-32s14.336-32 32-32h29.44c-5.472-37.856-20.352-72.608-42.304-101.888zM605.856 826.784l26.144-125.024c-31.616 17.024-66.752 28.224-104 32.352v129.888h32c22.048 0 41.312-15.68 45.856-37.216zM432 864h32v-129.888c-37.28-4.16-72.448-15.392-104.096-32.416l26.208 125.056c4.544 21.6 23.84 37.28 45.888 37.28zM386.112 69.216l-26.208 125.056c31.648-17.024 66.816-28.256 104.064-32.384v-129.888h-32c-22.016 0-41.344 15.648-45.888 37.216zM560 32h-32v129.888c37.248 4.16 72.352 15.36 104 32.352l-26.112-124.992c-4.544-21.568-23.84-37.248-45.856-37.248z" /> +<glyph unicode="" glyph-name="whatsapp" d="M810.080 744.864c-80.128 80.32-186.816 124.48-300.256 124.48-234.080 0-424.544-190.464-424.544-424.544 0-74.784 19.52-147.808 56.608-212.288l-60.256-219.904 225.088 59.072c61.984-33.856 131.744-51.616 202.88-51.616h0.192c233.888 0 428.576 190.496 428.576 424.544 0 113.408-48.192 219.904-128.32 300.256zM751.424 205.792c-31.712-31.264-68.448-55.84-109.312-73.024-42.112-17.696-86.592-26.688-132.288-26.688h-0.192c-56.544 0-112.448 14.208-161.696 41.12l-30.016 16.384-114.016-29.952 30.336 110.72-17.888 31.072c-29.536 51.296-45.12 109.856-45.12 169.376 0 186.688 151.872 338.528 338.528 338.528 90.528 0 175.52-35.232 239.36-99.232 66.56-66.72 103.2-151.776 103.2-239.52 0-89.76-35.84-174.592-100.96-238.816zM703.36 355.904c-10.496 5.376-62.72 30.976-72.48 34.4-9.76 3.616-16.832 5.376-23.904-5.376s-27.36-34.432-33.664-41.696c-6.112-7.072-12.448-8.032-22.944-2.688-62.336 31.168-103.264 55.648-144.384 126.208-10.912 18.72 10.912 17.408 31.168 57.952 3.424 7.072 1.728 13.184-0.96 18.528s-23.904 57.568-32.704 78.784c-8.608 20.672-17.408 17.792-23.904 18.176-6.112 0.384-13.184 0.384-20.256 0.384s-18.528-2.688-28.288-13.184c-9.76-10.72-37.088-36.352-37.088-88.544s38.080-102.688 43.232-109.792c5.376-7.072 74.784-114.176 181.28-160.256 67.328-29.088 93.696-31.552 127.36-26.592 20.48 3.072 62.72 25.632 71.52 50.496s8.8 46.112 6.112 50.496c-2.496 4.768-9.568 7.456-20.096 12.64z" /> +<glyph unicode="" glyph-name="woo-product" d="M806.528 629.664c-4.064 5.408-10.432 8.608-17.216 8.608h-494.336l-12.992 39.616c-2.784 8.512-10.56 14.4-19.488 14.784l-65.472 2.816c-11.904 0.544-21.888-8.704-22.4-20.544s8.704-21.888 20.544-22.4l50.592-2.176 12.992-39.616c0.096-0.32 0.224-0.672 0.32-0.992l58.144-177.152c2.976-9.056 11.392-14.784 20.416-14.784 2.208 0 4.48 0.352 6.72 1.088 11.296 3.712 17.408 15.84 13.728 27.136l-48.992 149.28h451.52l-49.408-168.608-345.952-24.768c-0.864-0.064-1.728-0.192-2.592-0.352-19.712-3.84-35.424-18.24-40.96-37.536s0.096-39.84 14.752-53.568c9.92-9.312 22.848-14.432 36.448-14.432h313.856c11.872 0 21.504 9.632 21.504 21.504s-9.632 21.504-21.504 21.504h-313.856c-2.624 0-5.12 0.992-7.008 2.784-4.128 3.872-3.36 8.512-2.848 10.336 0.48 1.696 2.112 5.632 6.944 7.008l359.232 25.696c8.96 0.64 16.576 6.784 19.104 15.392l61.696 210.464c1.92 6.496 0.64 13.504-3.424 18.944zM612.512 263.136c-22.528 0-40.8-18.272-40.8-40.8s18.272-40.8 40.8-40.8 40.8 18.272 40.8 40.8-18.272 40.8-40.8 40.8zM422.112 263.136c-22.528 0-40.8-18.272-40.8-40.8s18.272-40.8 40.8-40.8 40.8 18.272 40.8 40.8-18.272 40.8-40.8 40.8zM401.44 493.92l46.624 56.384c8.512 10.272 1.248 25.824-12.096 25.888l-90.624 0.48 29.088-78.176c4.256-11.424 19.232-13.952 27.008-4.576z" /> +<glyph unicode="" glyph-name="wordpress" d="M512 813.632c-205.376 0-372.608-167.072-372.608-372.608s167.232-372.608 372.608-372.608 372.608 167.232 372.608 372.608-167.232 372.608-372.608 372.608zM176.928 440.992c0 48.544 10.368 94.656 28.992 136.256l159.84-437.824c-111.808 54.4-188.864 169.024-188.864 301.568zM512 105.952c-32.896 0-64.608 4.8-94.656 13.664l100.512 292.096 102.912-282.176c0.736-1.664 1.504-3.168 2.4-4.64-34.688-12.192-72.096-18.912-111.168-18.912zM558.144 598.016c20.128 1.056 38.336 3.136 38.336 3.136 18.048 2.112 15.904 28.704-2.112 27.648 0 0-54.24-4.224-89.248-4.224-32.896 0-88.192 4.224-88.192 4.224-18.016 1.056-20.128-26.592-2.112-27.648 0 0 17.152-2.112 35.136-3.136l52.128-143.040-73.344-219.808-122.016 362.848c20.128 1.056 38.304 3.136 38.304 3.136 18.016 2.112 15.936 28.704-2.112 27.648 0 0-54.24-4.224-89.248-4.224-6.304 0-13.696 0.16-21.632 0.448 59.936 90.912 162.848 150.976 279.904 150.976 87.136 0 166.624-33.344 226.272-87.904-1.504 0.16-2.848 0.288-4.352 0.288-32.928 0-56.192-28.704-56.192-59.52 0-27.648 15.904-50.912 32.928-78.592 12.768-22.24 27.648-50.912 27.648-92.384 0-28.704-10.976-61.888-25.536-108.352l-33.376-111.648-121.248 360zM680.448 151.456l102.304 295.84c19.072 47.776 25.536 85.952 25.536 120.064 0 12.32-0.736 23.744-2.24 34.4 26.144-47.776 41.024-102.464 41.024-160.768 0-123.648-67.008-231.52-166.624-289.504z" /> +<glyph unicode="" glyph-name="working-hours" d="M966.368 340.544c-23.072 27.744-58.464 44.32-94.624 44.32h-7.84c19.84 26.496 31.712 59.264 31.712 94.88v31.712c0 87.616-71.264 158.88-158.88 158.88s-158.88-71.264-158.88-158.88v-31.712c0-35.584 11.904-68.352 31.712-94.88h-7.968c-36.992 0-72.96-17.12-96.192-45.792-19.328-23.84-27.232-52.416-22.976-81.024h-53.504v32.928c0 17.664-14.336 32-32 32s-32-14.336-32-32v-31.168c-59.040 6.272-112.992 29.76-156.864 65.216l21.952 22.016c12.448 12.512 12.416 32.768-0.096 45.248s-32.768 12.448-45.28-0.096l-21.824-21.888c-35.424 43.84-58.88 97.76-65.12 156.768h31.168c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.168c6.272 59.008 29.728 112.928 65.12 156.768l21.824-21.888c6.272-6.304 14.464-9.44 22.656-9.44s16.32 3.104 22.592 9.344c12.512 12.448 12.576 32.736 0.096 45.248l-21.952 22.016c43.872 35.488 97.824 58.944 156.864 65.216v-31.168c0-17.664 14.336-32 32-32s32 14.336 32 32v31.136c10.208-1.088 20.384-2.624 30.368-4.704 2.24-0.448 4.448-0.704 6.656-0.704 14.816 0 28.096 10.336 31.264 25.376 3.648 17.312-7.392 34.272-24.672 37.92-22.72 4.8-46.144 7.424-69.6 7.808-1.056 0-2.048-0.192-3.104-0.256-0.992 0.096-1.92 0.32-2.944 0.32-99.392 0-189.568-39.968-255.456-104.64-0.896-0.704-1.856-1.344-2.656-2.144-0.864-0.864-1.536-1.856-2.304-2.784-64.64-65.888-104.608-156.064-104.608-255.424s40-189.6 104.64-255.488c0.736-0.928 1.376-1.856 2.24-2.72 0.832-0.832 1.76-1.44 2.624-2.144 57.6-56.512 133.728-94.208 218.368-102.784l22.848-159.904h-280.256c-17.664 0-32-14.336-32-32s14.336-32 32-32h824.576c17.664 0 32 14.336 32 32 0 9.312-4.064 17.664-10.432 23.52l41.632 225.088c5.76 31.296-2.688 62.528-23.904 87.968zM641.92 479.712v31.712c0 52.32 42.56 94.88 94.88 94.88s94.88-42.528 94.88-94.88v-31.712c0-52.32-42.56-94.88-94.88-94.88s-94.88 42.528-94.88 94.88zM546.080 265.024c-3.136 14.688 3.264 26.464 9.12 33.728 11.040 13.632 28.832 22.112 46.464 22.112h64.096l56.544-28.352c4.512-2.272 9.408-3.392 14.336-3.392s9.792 1.12 14.304 3.36l56.768 28.352h64.032c17.12 0 34.528-8.16 45.408-21.248 6.24-7.488 13.024-19.68 10.144-35.392l-42.24-228.256h-111.424l26.496 185.504c1.312 9.184-1.408 18.496-7.52 25.504s-14.88 11.040-24.192 11.040h-220.928l-1.472 7.040zM447.36 36l-22.592 158.016h306.784l-22.592-158.016h-261.664zM134.208 67.136h126.88c17.664 0 32 14.336 32 32s-14.336 32-32 32h-126.88c-17.664 0-32-14.336-32-32s14.336-32 32-32zM134.208 162.304h31.712c17.664 0 32 14.336 32 32s-14.336 32-32 32h-31.712c-17.664 0-32-14.336-32-32s14.336-32 32-32zM565.216 808.608c15.968-10.784 30.976-23.136 44.64-36.736 6.24-6.208 14.432-9.344 22.592-9.344s16.416 3.136 22.688 9.408c12.48 12.512 12.448 32.768-0.096 45.28-16.544 16.448-34.688 31.424-54.048 44.448-14.656 9.856-34.528 6.016-44.416-8.64s-6.016-34.528 8.64-44.416zM253.856 415.744c6.272-6.24 14.432-9.344 22.592-9.344s16.384 3.136 22.656 9.408l61.888 62.016c11.040-4.896 23.2-7.68 36.032-7.68 48.992 0 88.832 39.84 88.832 88.832 0 37.696-23.648 69.888-56.832 82.784v24.16c8.096 0.064 16.16 3.168 22.336 9.344 12.48 12.48 12.48 32.768 0 45.28l-31.712 31.68c-0.384 0.384-0.8 0.64-1.216 0.992-1.184 1.056-2.336 2.112-3.648 2.976-0.832 0.576-1.728 0.928-2.592 1.408-0.96 0.512-1.888 1.12-2.912 1.536s-2.080 0.672-3.104 0.96c-0.96 0.288-1.888 0.672-2.912 0.864-1.792 0.352-3.648 0.512-5.472 0.576-0.256 0-0.48 0.096-0.768 0.096s-0.48-0.064-0.768-0.096c-1.824-0.064-3.68-0.192-5.472-0.576-1.024-0.192-1.984-0.576-2.944-0.864s-2.016-0.512-3.008-0.928c-1.152-0.448-2.176-1.12-3.232-1.696-0.768-0.416-1.568-0.768-2.304-1.248-1.76-1.184-3.424-2.528-4.896-4l-31.712-31.68c-12.48-12.48-12.48-32.768 0-45.248 6.176-6.176 14.24-9.28 22.336-9.344v-24.16c-33.28-12.864-56.96-45.088-56.96-82.816 0-12.768 2.752-24.928 7.648-35.936l-61.92-62.080c-12.48-12.48-12.448-32.768 0.064-45.248zM396.992 534.176c-6.848 0-13.088 2.752-17.6 7.232-0.032 0.032-0.064 0.064-0.064 0.128 0 0-0.032 0.032-0.032 0.032-4.448 4.48-7.232 10.624-7.232 17.44 0 13.696 11.2 24.864 24.96 24.864 13.696 0 24.832-11.136 24.832-24.864s-11.136-24.832-24.832-24.832z" /> +<glyph unicode="" glyph-name="wrapper-link" d="M918.784 788.832h-44.672v44.672c0 11.84-9.6 21.472-21.472 21.472s-21.472-9.6-21.472-21.472v-44.672h-44.672c-11.84 0-21.472-9.6-21.472-21.472s9.6-21.472 21.472-21.472h44.672v-44.672c0-11.84 9.6-21.472 21.472-21.472s21.472 9.6 21.472 21.472v44.672h44.672c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472zM852.096 639.808c-11.84 0-21.472-9.6-21.472-21.472v-320.096l-148.128-148.128h-454.72c-18.976 0-34.432 15.456-34.432 34.432v526.976c0 18.976 15.456 34.432 34.432 34.432h475.84c11.84 0 21.472 9.6 21.472 21.472s-9.6 21.472-21.472 21.472h-475.84c-42.656 0-77.344-34.688-77.344-77.344v-526.976c0-42.656 34.688-77.344 77.344-77.344h568.416c42.656 0 77.344 34.688 77.344 77.344v433.824c0 11.84-9.6 21.472-21.472 21.472zM618.624 431.68c-8.384-8.384-8.384-21.952 0-30.336 4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l43.808 43.808c24.512 24.512 38.048 57.12 38.048 91.808s-13.504 67.296-38.048 91.808c-24.512 24.512-57.12 38.048-91.808 38.048s-67.296-13.504-91.808-38.016l-43.808-43.808c-8.384-8.384-8.384-21.952 0-30.336s21.952-8.384 30.336 0l43.808 43.808c16.416 16.416 38.24 25.472 61.472 25.472s45.056-9.056 61.472-25.472 25.472-38.24 25.472-61.472-9.056-45.056-25.472-61.472l-43.808-43.808zM405.376 464.32c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-43.808-43.808c-50.624-50.624-50.624-133.024 0-183.648 24.512-24.512 57.152-38.048 91.808-38.048s67.296 13.504 91.808 38.048l43.808 43.808c8.384 8.384 8.384 21.952 0 30.336s-21.952 8.384-30.336 0l-43.808-43.808c-16.416-16.416-38.24-25.472-61.472-25.472s-45.056 9.056-61.472 25.472c-33.888 33.888-33.888 89.056 0 122.944l43.808 43.808zM602.464 538.464c-8.384 8.384-21.952 8.384-30.336 0l-150.56-150.56c-8.384-8.384-8.384-21.952 0-30.336 4.192-4.192 9.696-6.272 15.168-6.272s10.976 2.112 15.168 6.272l150.56 150.56c8.384 8.384 8.384 21.952 0 30.336z" /> +<glyph unicode="" glyph-name="xmark" d="M557.248 448l129.376 129.376c12.48 12.48 12.48 32.768 0 45.248s-32.768 12.48-45.248 0l-129.376-129.376-129.376 129.376c-12.48 12.48-32.768 12.48-45.248 0s-12.48-32.768 0-45.248l129.376-129.376-129.376-129.376c-12.48-12.48-12.48-32.736 0-45.248 6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376l129.376 129.376 129.376-129.376c6.24-6.24 14.432-9.376 22.624-9.376s16.384 3.136 22.624 9.376c12.48 12.48 12.48 32.736 0 45.248l-129.376 129.376z" /> +<glyph unicode="" glyph-name="x-twitter" d="M593.28 493.088l257.312 294.048h-117.824l-194.080-221.792-167.712 221.792h-242.976l290.208-379.648-275.2-314.592h117.984l212.256 242.656 185.76-242.656h236.96l-302.72 400.192zM265.344 720.352h70.112l421.216-557.056h-65.248l-426.080 557.056z" /> +<glyph unicode="" glyph-name="youtube" d="M920.576 647.008c-9.856 37.024-38.72 66.080-75.424 75.904-66.528 17.984-333.28 17.984-333.28 17.984s-266.752 0-333.28-17.984c-36.704-9.824-65.6-38.88-75.424-75.904-17.792-67.008-17.792-206.624-17.792-206.624s0-139.648 17.792-206.624c9.856-36.992 38.72-64.832 75.424-74.624 66.528-17.984 333.28-17.984 333.28-17.984s266.752 0 333.28 17.984c36.704 9.824 65.6 37.76 75.456 74.624 17.792 67.008 17.792 206.624 17.792 206.624s0 139.616-17.792 206.624zM837.504 255.904c-1.76-6.624-7.232-11.744-14.592-13.696l-0.192-0.064c-5.312-1.44-38.496-8.768-171.328-12.768-72.928-2.208-138.88-2.24-139.52-2.24s-66.624 0.032-139.52 2.24c-132.832 4-166.016 11.36-171.328 12.768l-0.224 0.064c-3.552 0.928-12.032 4.192-14.56 13.664-10.816 40.736-14.912 134.848-14.912 184.544s4.096 143.808 14.912 184.544c1.92 7.2 7.648 13.056 14.56 14.912l0.224 0.064c5.28 1.44 38.464 8.768 171.328 12.768 72.832 2.208 138.72 2.208 139.52 2.208s66.688-0.032 139.52-2.208c132.832-4 166.048-11.328 171.36-12.768l0.192-0.064c6.912-1.856 12.64-7.712 14.56-14.912 10.816-40.768 14.88-134.816 14.912-184.512 0-49.696-4.096-143.744-14.88-184.512zM424.736 313.568l222.88 126.816-222.88 126.816v-253.632z" /> </font></defs></svg> \ No newline at end of file Binary files /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts/rtmicons/rtmicon-regular.ttf and /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/fonts/rtmicons/rtmicon-regular.ttf differ Binary files /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/fonts/rtmicons/rtmicon-regular.woff and /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/fonts/rtmicons/rtmicon-regular.woff differ Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/fonts: rtm-icon-woo Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets: images Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: bootstrap Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: extensions.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: extensions-pro.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: form_widgets.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: new-selections.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: panel_system.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: post_widget_pro.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: rkit.js @@ -7,7 +7,7 @@ "add-card", "add-circle", "add", - "advance-button", + "advanced-button", "advanced-google-map", "advanced-heading", "advanced-hero-slider", @@ -23,6 +23,8 @@ "animated-heading", "apple", "apps", + "archive-post", + "archive-product", "arrow-down-left", "arrow-down-right", "arrow-down-to-line", @@ -82,7 +84,7 @@ "briefcase", "browser", "bug-report", - "business-hours", + "business-hour", "calculate", "calendar-check-2", "calendar-check", @@ -93,9 +95,8 @@ "calendar-star", "calendar-xmark", "calendar", - "call-to-action-2", "call-to-action", - "call", + "call-to-action1", "camera", "campaign", "camping", @@ -199,11 +200,11 @@ "credit-card-back", "credit-card-front", "currency-bitcoin", - "custom-css", + "custom-cs", "custom-cursor", "custom-font", "custom-js", - "date-form", + "date-for", "delete-forever", "delete", "dentistry", @@ -229,6 +230,7 @@ "envelope-open", "envelope", "equalizer", + "error-404", "error", "event-2", "event-list", @@ -290,6 +292,7 @@ "grid-rounds", "group-add", "handyman", + "header-footer", "header-info", "header-offcanvas", "headset-mic", @@ -302,6 +305,7 @@ "hourglass-top", "hourglass", "house", + "icon-packs", "id-card", "image-accordion", "image-box", @@ -340,7 +344,6 @@ "link", "linkedin", "list", - "list.txt", "live-tv", "loader", "lock-2", @@ -368,12 +371,12 @@ "money", "more-horiz", "more-vert", - "mouse-127", + "mouse-12", "mouse", "music-note", "nav-menu", "network-wifi", - "news-ticker", + "news-ticket", "night-light-moon", "note-hashtag", "notes", @@ -393,6 +396,7 @@ "phone-volume-down", "phone-volume-mute", "phone-volume-up", + "phone", "pie-chart-2", "pie-chart-analyst", "pie-chart", @@ -405,9 +409,8 @@ "play", "plus", "podcast", - "popup-modal", + "popup-moda", "portfolio-gallery", - "portofolio-gallery", "post-author", "post-carousel", "post-category-list", @@ -450,7 +453,7 @@ "scale-unbalanced", "search", "select", - "share-123", + "share", "shield-check", "shield-minus", "shield-plus", @@ -458,14 +461,16 @@ "shield", "shopping-cart", "sidebar", + "single-post", + "single-product", "site-logo", "sliders-up", "sliders", "social-icons", "social-share-2", "social-share", - "Spark", - "Sparkles", + "spark", + "sparkles", "speedometer", "square-arrow-down-2", "square-arrow-down-left-2", @@ -511,10 +516,8 @@ "team", "telegram", "telephone", - "testimonial-carousel-2", "testimonial-carousel", "testimonial", - "text-marquee", "text-area-form", "text-form", "text-marquee", @@ -553,4 +556,4 @@ "xmark", "youtube" ] -} \ No newline at end of file +} @@ -1,202 +1,188 @@ -{ - "postcarousel": { - "name": "Post Carousel", - "icon": "rtmicon rtmicon-post-carousel", - "class_name": "Rkit_Post_Carousel", - "category": "rkit_pro", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-post-carousel-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/post-carousel/", - "scripts": { - "css": "post_carousel.css", - "js": "post_carousel.js" - } - }, - "pricingbox": { - "name": "Pricing Image Box", - "icon": "rtmicon rtmicon-pricing-image-box", - "class_name": "Rkit_Pricebox", - "category": "rkit_pro", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-pricing-image-box-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/pricing-image-box/", - "scripts": { - "css": "pricingbox.css", - "js": "pricing-image-box.js" - } - }, - "pricelist": { - "name": "Pricing List", - "icon": "rtmicon rtmicon-price-list", - "class_name": "Rkit_Price_List", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-pricing-list-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/price-list/", - "scripts": { - "css": "price_list.css", - "js": "" - } - }, - "imagemarquee": { - "name": "Image Marquee", - "icon": "rtmicon rtmicon-image-marquee", - "class_name": "Rkit_Imagemarquee", - "category": "rkit_pro", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-image-marquee-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-marquee/", - "scripts": { - "css": "image_marquee.css", - "js": "image_marquee.js" - } - }, - "textual_showcase": { - "name": "Textual Showcase", - "icon": "eicon-animation-text", - "class_name": "Rkit_Textual_Showcase", - "category": "rkit_pro", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-textual-showcase-widget/", - "previewURL": "https://rometheme.net/widget-textual-showcase", - "scripts": { - "css": "textual_showcase.css", - "js": "textual_showcase.js" - } - }, - "advancedtoggle": { - "name": "Advanced Toggle", - "icon": "rtmicon rtmicon-advanced-toggle", - "class_name": "Rkit_Advanced_Toggle", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-advanced-toogle-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/advanced-toggle/", - "scripts": { - "css": "advanced_toggle.css", - "js": "advanced_toggle.js" - } - }, - "interactivelinks": { - "name": "Interactive Links", - "icon": "rtmicon rtmicon-interactive-link", - "class_name": "Rkit_Interactive_Links", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-interactive-link-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/interactive-link/", - "scripts": { - "css": "interactive_links.css", - "js": "interactive_links.js" - } - }, - "animated_circle_button": { - "name": "Animated Circle Button", - "icon": "rtmicon rtmicon-animated-circle-button", - "class_name": "Rkit_Animated_Circle_Button", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/animated-circle-button/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/animated-circle-button/", - "scripts": { - "css": "animated_circle_button.css", - "js": "" - } - }, - "image_stack": { - "name": "Image Stack Info", - "icon": "rtmicon rtmicon-image-stack-info", - "class_name": "Rkit_Image_Stack", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/image-stack-info-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-stack-info/", - "scripts": { - "css": "image_stack.css", - "js": "" - } - }, - "rkit_breadcrumb": { - "name": "Breadcrumb", - "icon": "rtmicon rtmicon-breadcumb", - "class_name": "Rkit_Breadcrumb", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/breadcrumb-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/plugin/widget-test/breadcrumbs/", - "scripts": { - "css": "breadcrumbs.css", - "js": "" - } - }, - "imagehotspot": { - "name": "Image Hotspot", - "icon": "rtmicon rtmicon-image-hotspot", - "class_name": "Rkit_Image_Hotspot", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/image-hotspot-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-hotspot", - "scripts": { - "css": "image_hotspot.css", - "js": "image_hotspot.js", - "lib": [ - "popper.min.js", - "tippy-bundle.umd.min.js" - ] - } - }, - "client_carousel": { - "name": "Client Carousel", - "icon": "rtmicon rtmicon-client-carousel", - "class_name": "Rkit_Logocaraosel", - "category": "rkit_pro", - "status": true, - "type": "pro", - "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-logo-carousel-widget/", - "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/cliend-carousel/", - "scripts": { - "css": "client_carousel.css", - "js": "client_carousel.js" - } - }, - "background_switcher": { - "name": "Background Switcher", - "icon": "rtmicon rtmicon-background-switcher", - "class_name": "Rkit_Background_Switcher", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "comming soon", - "previewURL": "comming soon", - "scripts": { - "css": "background_switcher.css", - "js": "background_switcher.js" - } - }, - "image_accordion_carousel": { - "name": "Image Accordion Carousel", - "icon": "rtmicon ", - "class_name": "Rkit_Image_Accordion_Carousel", - "category": "rkit", - "status": true, - "type": "pro", - "docsURL": "comming soon", - "previewURL": "comming soon", - "scripts": { - "css": "image_accordion_carousel.css", - "js": "image_accordion_carousel.js" - } - } +{ + "postcarousel": { + "name": "Post Carousel", + "icon": "rtmicon rtmicon-post-carousel", + "class_name": "Rkit_Post_Carousel", + "category": "post", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-post-carousel-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/post-carousel/", + "scripts": { + "css": "post_carousel.css", + "js": "post_carousel.js" + } + }, + "pricingbox": { + "name": "Pricing Image Box", + "icon": "rtmicon rtmicon-pricing-image-box", + "class_name": "Rkit_Pricebox", + "category": "marketing", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-pricing-image-box-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/pricing-image-box/", + "scripts": { + "css": "pricingbox.css", + "js": "pricing-image-box.js" + } + }, + "pricelist": { + "name": "Pricing List", + "icon": "rtmicon rtmicon-price-list", + "class_name": "Rkit_Price_List", + "category": "marketing", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-pricing-list-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/price-list/", + "scripts": { + "css": "price_list.css", + "js": "" + } + }, + "imagemarquee": { + "name": "Image Marquee", + "icon": "rtmicon rtmicon-image-marquee", + "class_name": "Rkit_Imagemarquee", + "category": "showcase", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-image-marquee-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-marquee/", + "scripts": { + "css": "image_marquee.css", + "js": "image_marquee.js" + } + }, + "textual_showcase": { + "name": "Textual Showcase", + "icon": "eicon-animation-text", + "class_name": "Rkit_Textual_Showcase", + "category": "creative", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-textual-showcase-widget/", + "previewURL": "https://rometheme.net/widget-textual-showcase", + "scripts": { + "css": "textual_showcase.css", + "js": "textual_showcase.js" + } + }, + "advancedtoggle": { + "name": "Advanced Toggle", + "icon": "rtmicon rtmicon-advanced-toggle", + "class_name": "Rkit_Advanced_Toggle", + "category": "bussiness", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-advanced-toogle-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/advanced-toggle/", + "scripts": { + "css": "advanced_toggle.css", + "js": "advanced_toggle.js" + } + }, + "interactivelinks": { + "name": "Interactive Links", + "icon": "rtmicon rtmicon-interactive-link", + "class_name": "Rkit_Interactive_Links", + "category": "creative", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-interactive-link-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/interactive-link/", + "scripts": { + "css": "interactive_links.css", + "js": "interactive_links.js" + } + }, + "animated_circle_button": { + "name": "Animated Circle Button", + "icon": "rtmicon rtmicon-animated-circle-button", + "class_name": "Rkit_Animated_Circle_Button", + "category": "creative", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/animated-circle-button/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/animated-circle-button/", + "scripts": { + "css": "animated_circle_button.css", + "js": "" + } + }, + "image_stack": { + "name": "Image Stack Info", + "icon": "rtmicon rtmicon-image-stack-info", + "class_name": "Rkit_Image_Stack", + "category": "showcase", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/image-stack-info-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-stack-info/", + "scripts": { + "css": "image_stack.css", + "js": "" + } + }, + "rkit_breadcrumb": { + "name": "Breadcrumb", + "icon": "rtmicon rtmicon-breadcumb", + "class_name": "Rkit_Breadcrumb", + "category": "header", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/breadcrumb-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/plugin/widget-test/breadcrumbs/", + "scripts": { + "css": "breadcrumbs.css", + "js": "" + } + }, + "imagehotspot": { + "name": "Image Hotspot", + "icon": "rtmicon rtmicon-image-hotspot", + "class_name": "Rkit_Image_Hotspot", + "category": "showcase", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/image-hotspot-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/image-hotspot", + "scripts": { + "css": "image_hotspot.css", + "js": "image_hotspot.js", + "lib": [ + "popper.min.js", + "tippy-bundle.umd.min.js" + ] + } + }, + "client_carousel": { + "name": "Client Carousel", + "icon": "rtmicon rtmicon-client-carousel", + "class_name": "Rkit_Logocaraosel", + "category": "bussiness", + "status": true, + "type": "pro", + "docsURL": "https://support.rometheme.net/docs/romethemekit-pro-for-elementor/widget-pro-guidelines/how-to-use-ezd_ampersand-customize-logo-carousel-widget/", + "previewURL": "https://rometheme.net/plugins/rtmkit/widgets/cliend-carousel/", + "scripts": { + "css": "client_carousel.css", + "js": "client_carousel.js" + } + }, + "background_switcher": { + "name": "Background Switcher", + "icon": "rtmicon rtmicon-background-switcher", + "class_name": "Rkit_Background_Switcher", + "category": "creative", + "status": true, + "type": "pro", + "docsURL": "https://rometheme.net/plugins/rtmkit/elements/", + "previewURL": "https://rometheme.net/plugins/rtmkit/elements/", + "scripts": { + "css": "background_switcher.css", + "js": "background_switcher.js" + } + } } \ No newline at end of file Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: saved-template-editor.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: script.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: scripts.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: Scrollspy.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: select2.min.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0/assets/js: setup-wizard.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: sticky_content.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: sticky.min.js Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8/assets/js: widgets.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: autoloader.php Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: bootstrap Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: build Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: composer.json Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: Inc Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: libs Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: metadata Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: modules Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: plugin.php @@ -1,10 +1,10 @@ === RTMKit === Contributors: dickoandrean Tags: elementor, elementor addons, elementor widgets, elementor templates, elementor woocommerce -Requires at least: 6.7 -Tested up to: 6.8.1 +Requires at least: 6.8 +Tested up to: 6.9.1 Requires PHP: 8.2 -Stable tag: 1.6.8 +Stable tag: 2.0.0 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -199,7 +199,17 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/wordpress/plugin/rometheme-for-elementor/vdp) == Changelog == -Version 1.6.8 - November 2024, 2025 +Version 2.0.0 - February 10, 2026 +New: Improve the user experience by updating the visual interface. +Improved widget controls and UI consistency +Enhanced responsive and editor preview behavior +Fixed various widget, style, and control issues +Resolved minor rendering and PHP warnings +Performance and asset loading improvements +Internal refactor for better stability and compatibility +Security Update + +Version 1.6.8 - November 24, 2025 Security Update Version 1.6.7 - October 24, 2025 @@ -455,7 +465,4 @@ * Search Bug Fixed Version : 1.0.0 - January 5, 2023 -* this is first version of Rometheme for Elementor Plugin - -== Wordfence Verification == -Vendor Key: eev51sugjaq1fchrfpnfqvtkaqbvbeds \ No newline at end of file +* this is first version of Rometheme for Elementor Plugin \ No newline at end of file @@ -1,425 +1,54 @@ <?php /** - * Plugin Name: RTMKit + * Plugin Name: RTMKit Addons for Elementor * Description: The best toolkit solution for Elementor. Enjoy advanced addons, theme builders, forms, icons, and ready-made templates to create stunning websites quickly and effortlessly. - * Version: 1.6.8 + * Version: 2.0.0 * Author: Rometheme * Author URI: https://rometheme.net/ * License : GPLv3 or later * Requires Plugins : elementor - * Plugin URI : https://rometheme.net/ - * + * Elementor tested up to: 3.30.2 + * Elementor Pro tested up to: 3.30.0 + * Text Domain: rometheme-for-elementor * The best toolkit solution for Elementor. Enjoy advanced addons, theme builders, forms, icons, and ready-made templates to create stunning websites quickly and effortlessly. */ +if (!defined('ABSPATH')) { + exit; // Exit if accessed directly +} +defined('RTM_KIT_VERSION') || define('RTM_KIT_VERSION', '2.0.0'); +defined('RTM_KIT_DIR') || define('RTM_KIT_DIR', plugin_dir_path(__FILE__)); +defined('RTM_KIT_URL') || define('RTM_KIT_URL', plugin_dir_url(__FILE__)); +defined('RTM_KIT_FILE') || define('RTM_KIT_FILE', __FILE__); -define("ROMETHEME_PLUGIN_DIR_PATH", plugin_dir_path(__FILE__)); - -class RomeTheme -{ - - function __construct() - { - require_once self::plugin_dir() . 'libs/notice/notice.php'; - add_action('admin_menu', [$this, 'rometheme_add_menu']); - add_action('rometheme/plugins_loaded', array($this, 'init'), 100); - do_action('rometheme/plugins_loaded'); - add_filter('plugin_row_meta', [$this, 'row_meta_link'] , 10, 4); - add_filter('plugin_action_links', [$this, 'action_links'] , 10, 2); - } - - public function isCompatible() - { - if (!did_action('elementor/loaded')) { - add_action('admin_head', array($this, 'missing_elementor')); - return false; - } - - return true; - } - - function init() - { - if ($this->isCompatible()) { - require_once self::plugin_dir() . '/plugin.php'; - require_once self::module_dir() . 'Form/form.php'; - require_once self::module_dir() . 'layout-libs/init.php'; - require_once self::module_dir() . 'widgets/widgets.php'; - require_once self::module_dir() . 'settings/settings.php'; - require_once self::module_dir() . 'template/template.php'; - require_once self::module_dir() . 'extensions/ext.php'; - require_once self::module_dir() . 'controls/controls.php'; - require_once self::module_dir() . 'updates/updates.php'; - require_once self::module_dir() . 'banner/banner.php'; - - new RomethemeKit\RkitWidgets(); - \Rkit_Rform::instance(); - \RomethemePlugin\Plugin::register_autoloader(); - \RomethemePlugin\Plugin::load_header_footer(); - \Rkit\Modules\Libs\Init::instance(); - new \RomeTheme\RtmSettings(); - new \RomethemeKit\Template(); - new \RomethemeKit\RTMExtension(); - new \RomethemeKit\Controls(); - new \RomethemeKit\Update(); - new \RomethemeKit\Banner(); - // \RomethemeKit\Rkit_GetPro::instance(); - add_action('admin_enqueue_scripts', [$this, 'register_style']); - add_action('wp_ajax_rkitRemoveNotice', [$this, 'rkitRemoveNotice']); - add_action('elementor/elements/categories_registered', [\RomethemePlugin\Plugin::class, 'add_elementor_widget_categories']); - add_action('wp_enqueue_scripts', [\RomethemePlugin\Plugin::class, 'register_widget_styles']); - add_action('elementor/frontend/after_register_scripts', [\RomethemePlugin\Plugin::class, 'register_widget_scripts'], 1); - add_action('elementor/editor/before_enqueue_styles', [\RomethemePlugin\Plugin::class, 'register_widget_styles']); - add_action('elementor/editor/before_register_scripts', [\RomethemePlugin\Plugin::class, 'register_widget_scripts']); - add_action('elementor/editor/before_enqueue_scripts', [\RomethemePlugin\Plugin::class, 'register_widget_scripts'], 1); - add_filter('admin_footer_text', [$this, 'change_admin_footer']); - add_filter('elementor/icons_manager/additional_tabs', array(\RomethemePlugin\Plugin::class, 'register_icon_pack_to_elementor')); - add_action('wp_enqueue_scripts', array(\RomethemePlugin\Plugin::class, 'enqueue_frontend')); - add_action('admin_enqueue_scripts', array(\RomethemePlugin\Plugin::class, 'enqueue_frontend')); - add_action('elementor/editor/before_enqueue_styles', [\RomethemePlugin\Plugin::class, 'enqueue_frontend']); - add_action('rkit_notices', [$this, 'rkit_notice']); - do_action('rkit_notices'); - } - } - - function row_meta_link($links, $plugin_file_name, $plugin_data, $status) - { - if (strpos($plugin_file_name, basename(__FILE__))) { - // you can still use array_unshift() to add links at the beginning - $links[] = '<a target="_blank" href="https://support.rometheme.net/docs/romethemekit/">Docs</a>'; - $links[] = '<a target="_blank" href="https://www.youtube.com/@Rometheme_Studio">Video Tutorials</a>'; - } - - return $links; - } - - function action_links($plugin_actions, $plugin_file) { - if (strpos($plugin_file, basename(__FILE__))) { - $plugin_actions['go_premium'] = sprintf('<a target="_blank" style="font-weight:700; color : #00cea6" href="%s">Upgrade To Pro</a>' , 'https://rometheme.net/plugins/rtmkit/pricing/'); - } - - return $plugin_actions; - } - - static function pluginbasename() - { - return plugin_basename(__FILE__); - } - - /** - * Minimum Elementor Version - * - * @since 1.0.0 - * @var string Minimum Elementor version required to run the plugin. - */ - static function min_el_version() - { - return '3.0.0'; - } - - - /** - * Minimum Elementor Version - * - * @since 1.0.0 - * @var string RomethemeKit Plugin Version. - */ - static function rt_version() - { - return '1.6.8'; - } - - /** - * Plugin file - * - * @since 1.0.0 - * @var string plugins's root file. - */ - static function plugin_file() - { - return __FILE__; - } - - /** - * Plugin url - * - * @since 1.0.0 - * @var string plugins's root url. - */ - static function plugin_url() - { - return trailingslashit(plugin_dir_url(__FILE__)); - } - /** - * Plugin dir - * - * @since 1.0.0 - * @var string plugins's root directory. - */ - static function plugin_dir() - { - return trailingslashit(plugin_dir_path(__FILE__)); - } - - /** - * Plugin's module directory. - * - * @since 1.0.0 - * @var string module's root directory. - */ - static function module_dir() - { - return self::plugin_dir() . 'modules/'; - } - - /** - * Plugin's module url. - * - * @since 1.0.0 - * @var string module's root url. - */ - static function module_url() - { - return self::plugin_url() . 'modules/'; - } - - /** - * Plugin's Widget directory. - * - * @since 1.0.0 - * @var string widget's root directory. - */ - static function widget_dir() - { - return self::plugin_dir() . 'widgets/'; - } - - /** - * Plugin's widget url. - * - * @since 1.0.0 - * @var string widget's root url. - */ - static function widget_url() - { - return self::plugin_url() . 'widgets/'; - } - - static function api_url() - { - return 'https://api.rometheme.pro/'; - } - - function rometheme_add_menu() - { - add_menu_page( - 'RomethemeKit Dashboard', - 'RTMKit', - 'manage_options', - 'romethemekit', - array($this, 'romethemekit_cal'), - $this->plugin_url() . 'view/romethemekit.svg', - 20 - ); - - add_submenu_page( - 'romethemekit', - esc_html('RomethemeKit Dashboard'), - esc_html('Dashboard'), - 'manage_options', - 'romethemekit', - array($this, 'romethemekit_cal'), - 0 - ); - - - add_submenu_page( - 'romethemekit', - esc_html('Widgets'), - esc_html('Widgets'), - 'manage_options', - 'rkit-widgets', - [$this, 'widgets_call'], - 1 - ); - - add_submenu_page( - 'romethemekit', - esc_html('Theme Builder'), - esc_html('Theme Builder'), - 'manage_options', - 'themebuilder', - [$this, 'themebuilder_call'], - 2 - ); - - add_submenu_page( - 'romethemekit', - esc_html('Template Kits'), - esc_html('Template Kits'), - 'manage_options', - 'rtmkit-templates', - [$this, 'templates_call'], - 3 - ); - - add_submenu_page( - 'romethemekit', - esc_html('System Status'), - esc_html('System Status'), - 'manage_options', - 'rkit-system-status', - [$this, 'submenu_system_info'], - 4 - ); - - add_submenu_page( - 'romethemekit', - esc_html('Settings'), - esc_html('Settings'), - 'manage_options', - 'rtm-settings', - [$this, 'settings_call'], - 5 - ); - - add_submenu_page( - 'romethemekit', - esc_html('Update'), - esc_html('Update'), - 'manage_options', - 'rtm-update', - [$this, 'update_call'], - 5 - ); - } - - function romethemekit_cal() - { - require self::plugin_dir() . 'view/welcome.php'; - } - - function themebuilder_call() - { - require RomeTheme::module_dir() . 'themebuilder/views/themebuilder.php'; - } - - function templates_call() - { - require RomeTheme::module_dir() . 'template/views/templates.php'; - } - - function settings_call() - { - require RomeTheme::module_dir() . 'settings/views/settings-view.php'; - } - - - function widgets_call() - { - require RomeTheme::module_dir() . 'widgets/views/widgets_view.php'; - } - - function update_call() { - require RomeTheme::module_dir() . 'updates/views/update_view.php'; - } - - - function submenu_system_info() - { - require self::plugin_dir() . 'view/system.php'; - } - - function register_style() - { - - wp_enqueue_script('rkit-js', self::plugin_url() . 'assets/js/rkit.js', [], self::rt_version(), true); - wp_enqueue_style('admin-style', self::plugin_url() . 'assets/css/admin_style.css', [], self::rt_version()); - wp_localize_script('rkit-js', 'ajax_url', array( - 'ajax_url' => admin_url('admin-ajax.php') - )); - $screen = get_current_screen(); - if (str_contains($screen->id, "romethemekit") || str_contains($screen->id, "rtmkit") || $screen->id == 'romethemekit_page_romethemeform-form') { - wp_enqueue_style('style.css', self::plugin_url() . 'bootstrap/css/bootstrap.css', [], self::rt_version()); - wp_enqueue_script('bootstrap.js', self::plugin_url() . 'bootstrap/js/bootstrap.min.js', [], self::rt_version(), true); - wp_enqueue_style('fontawesome-icons', self::plugin_url() . 'assets/css/fontawesome/fontawesome.css', [], self::rt_version()); - } - - if (class_exists('RomethemeForm')) { - $form_nonce = wp_create_nonce('rform_form_ajax_nonce'); - - if ($screen->id == 'romethemekit_page_romethemeform-form' || $screen->id == 'rtmkit_page_romethemeform-form') { - wp_enqueue_script('rform-form-js', RomeThemeForm::module_url() . 'form/assets/js/form.js'); - wp_localize_script('rform-form-js', 'romethemeform_ajax_url', array( - 'ajax_url' => admin_url('admin-ajax.php'), - 'rest_url' => rest_url('wp/v2/romethemeform_form/'), - 'nonce' => $form_nonce - )); - wp_localize_script('rform-form-js', 'romethemeform_url', ['form_url' => admin_url() . 'admin.php?page=romethemeform-form']); - } - } - - if (class_exists('RomethemePro')) { - if ($screen->id == 'romethemekit_page_rkitpro-license' || $screen->id == 'rtmkit_page_rkitpro-license') { - wp_enqueue_style('style.css', self::plugin_url() . 'bootstrap/css/bootstrap.css', [], self::rt_version()); - wp_enqueue_script('bootstrap.js', self::plugin_url() . 'bootstrap/js/bootstrap.min.js', [], self::rt_version(), true); - } - } - } - - function change_admin_footer($footer_text) - { - $screen = get_current_screen(); - if ($screen->id == 'toplevel_page_romethemekit' || str_contains($screen->id,'rtmkit')) { - $footer_text = 'Thank you for creating with <a href="https://wordpress.org">Wordpress</a>. | Love Using RTMKit For Elementor? <a href="https://wordpress.org/plugins/rometheme-for-elementor/#reviews">Rate Us</a> '; - return $footer_text; - } - } - - public function missing_elementor() - { - $btn = array( - 'default_class' => 'button', - 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link - ); - - if (file_exists(WP_PLUGIN_DIR . '/elementor/elementor.php')) { - $btn['text'] = esc_html__('Activate Elementor', 'rometheme-for-elementor'); - $btn['url'] = wp_nonce_url('plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php'); - } else { - $btn['text'] = esc_html__('Install Elementor', 'rometheme-for-elementor'); - $btn['url'] = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=elementor'), 'install-plugin_elementor'); - } - - $message = sprintf( - /* translators: 1: Plugin name 2: Elementor */ - esc_html__('%1$s requires %2$s to work properly. Please install and activate it first.', 'rometheme-for-elementor'), - '<strong>' . esc_html__('RomethemeKit for Elementor', 'rometheme-for-elementor') . '</strong>', - '<strong>' . esc_html__('Elementor', 'rometheme-for-elementor') . '</strong>' - ); - \Rkit\Libs\Notice::instance('rometheme-for-elementor', 'unsupported-elementor-version') - ->set_type('error') - ->set_message($message) - ->set_button($btn) - ->call(); - } +// Load Composer autoloader +if (!file_exists(RTM_KIT_DIR . 'vendor/autoload.php')) { + wp_die('Please run <code>composer install</code> in the plugin directory to install dependencies.'); +} +require_once RTM_KIT_DIR . 'vendor/autoload.php'; - public static function rkit_notice() - { - $userid = get_current_user_id(); - $rkit_hasbeen_rated = get_user_meta($userid, 'rkit-hasbeen-rated'); - if (empty($rkit_hasbeen_rated)) { - // add_action('admin_notices', [\RomethemePlugin\Plugin::class, 'rkit_notice_raw']); - // echo json_encode($userid); - } - } +/** + * Initialize the plugin. + */ - public static function rkitRemoveNotice() - { - $userid = get_current_user_id(); - add_user_meta($userid, 'rkit-hasbeen-rated', 'true'); - } +if (class_exists('RTMKit\Core\Plugin')) { + register_activation_hook(RTM_KIT_FILE, function () { + \RTMKit\Core\Plugin::instance()->rtm_handle_install_upgrade(); + }); + \RTMKit\Core\Plugin::instance()->before_plugin_load(); } - -new RomeTheme(); +add_action('plugins_loaded', function () { + \RTMKit\Core\Plugin::instance()->pro_version_compatible_check(); +}, 1); + +add_action('init', function () { + if (class_exists('RTMKit\Core\Plugin')) { + (new RTMKit\Core\Plugin())->init(); + do_action('rtmkit_loaded'); + } else { + add_action('admin_notices', function () { + echo '<div class="notice notice-error"><p>RTMKit failed to load. Please reinstall the plugin.</p></div>'; + }); + } +}); Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: vendor Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: view Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/2.0.0: views Only in /home/deploy/wp-safety.org/data/plugin-versions/rometheme-for-elementor/1.6.8: widgets
Exploit Outline
An attacker targets a logged-in site administrator by crafting a malicious URL that includes a Cross-Site Scripting (XSS) payload in the 'themebuilder' GET parameter. The vulnerable endpoint is the plugin's Theme Builder management page, typically located at `/wp-admin/admin.php?page=rkit-themebuilder`. A sample payload like `themebuilder="><img src=x onerror=alert(document.domain)>` breaks out of an HTML attribute or tag context when the page is rendered. When the administrator visits the link, the payload is echoed back into the administrative dashboard without escaping, triggering the JavaScript execution. This attack does not require a nonce as it occurs during the rendering of a GET-based dashboard page.
Check if your site is affected.
Run a free security audit to detect vulnerable plugins, outdated versions, and misconfigurations.