Release v4.1.0

This commit is contained in:
benweet 2014-08-28 00:13:20 +01:00
parent 280c9448df
commit 13df84e87c
22 changed files with 1142 additions and 1663 deletions

View File

@ -1,6 +1,6 @@
{
"name": "stackedit",
"version": "4.0.2",
"version": "4.1.0",
"description": "StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.",
"dependencies": {
"bootstrap": "3.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "stackedit",
"version": "4.0.2",
"version": "4.1.0",
"private": true,
"description": "StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.",
"main": "res/main.js",
@ -11,10 +11,12 @@
"doc": "doc"
},
"dependencies": {
"express": "~3.16.6",
"express": "^4.8.5",
"ejs": "~0.8.4",
"request": "~2.40.0",
"ssh2": "^0.3.5"
"ssh2": "^0.3.5",
"compression": "^1.0.11",
"serve-static": "^1.5.3"
},
"devDependencies": {
"grunt-contrib-requirejs": "~0.4.3",

View File

@ -1,7 +1,10 @@
CACHE MANIFEST
#Date Sun Aug 24 2014 00:57:37
#Date Thu Aug 28 2014 00:13:19
CACHE:
.
editor
viewer
libs/MathJax/MathJax.js?config=TeX-AMS_HTML
libs/MathJax/config/Safe.js
libs/MathJax/config/TeX-AMS_HTML.js
@ -31,12 +34,22 @@ res-min/font/fontello.svg
res-min/font/fontello.ttf
res-min/font/fontello.woff
res-min/img/button.svg
res-min/img/code-block.png
res-min/img/comments.png
res-min/img/conflict.png
res-min/img/diagram.png
res-min/img/gittip.png
res-min/img/icons.png
res-min/img/icons2x.png
res-min/img/live-preview.png
res-min/img/logo.svg
res-min/img/math.png
res-min/img/menu-icon.png
res-min/img/menu.png
res-min/img/publish.png
res-min/img/stackedit-32.ico
res-min/img/syntax-highlighting.gif
res-min/img/toc.gif
res-min/main.js
res-min/require.js
res-min/themes/base.css

View File

@ -1,31 +0,0 @@
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<title>StackEdit In-browser markdown editor</title>
<link rel="canonical" href="https://stackedit.io/editor">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" sizes="196x196" href="res-min/img/nice-highres.png">
<meta name="description" content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
<meta name="author" content="Benoit Schweblin">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612">
<script>
// Use ?debug to serve original JavaScript files instead of minified
window.baseDir = 'res';
if (!/(\?|&)debug($|&)/.test(location.search)) {
window.baseDir += '-min';
}
window.require = {
baseUrl: window.baseDir,
deps: ['main']
};
</script>
<script src="res-min/require.js"></script>
</head>
<body></body>
</html>

View File

@ -1,22 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>StackEdit - 404</title>
<link rel="canonical" href="https://stackedit.io/">
<link rel="icon" href="https://stackedit.io/res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="https://stackedit.io/res-min/img/stackedit-32.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://stackedit.io/res-min/themes/default.css">
</head>
<body class="text-center">
<br/>
<p>
<a href="https://stackedit.io"><img src="https://stackedit.io/res-min/img/logo.svg" width="320" /></a>
</p>
<p>404 &mdash; Page not found</p>
<p><a href="/recovery.html">Looking for StackEdit recovery?</a></p>
</body>
</html>

View File

@ -1,476 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>StackEdit In-browser markdown editor</title>
<link rel="canonical" href="https://stackedit.io/">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<meta name="description"
content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
<meta name="author" content="Benoit Schweblin">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612">
<link rel="stylesheet" href="res-min/themes/default.css">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<style>
body {
font-size: 18px;
font-weight: 300;
}
.navbar-fixed {
position: fixed;
}
.content {
position: absolute;
width: 100%;
height: 100%;
}
.slide {
position: relative;
width: 100%;
height: 100%;
}
.footer {
position: absolute;
top: inherit;
bottom: 0;
height: 50px;
width: 100%;
padding: 5px
}
.slide, .footer, h1 {
text-align: center;
}
.footer .btn {
font-size: 28px;
padding: 0 11px;
line-height: 1;
}
.btn-info {
color: #777;
}
.centered {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.logo {
height: 160px;
width: 600px;
}
.logo .subtitle {
position: absolute;
text-align: right;
color: #888;
top: 105px;
right: 10px;
font-size: 22px;
}
.transition {
-webkit-transition: all ease-in-out 1.5s;
transition: all ease-out 1.5s;
}
.transparent {
opacity: 0;
}
.scale {
-webkit-transform: scale(1.03);
-ms-transform: scale(1.03);
transform: scale(1.03);
}
.navbar .nav {
float: none;
}
.navbar .btn {
font-size: 18px;
line-height: 1.25;
}
.img {
margin: 20px auto;
display: block;
}
.social {
font-size: 26px;
margin: 0 16px 5px;
}
.social i::before {
margin-right: 10px;
margin-left: -5px;
}
.social a {
color: #555;
}
.container {
margin-bottom: 40px;
}
.dark {
background-color: #aeaeae;
}
.inset-shadow {
-webkit-box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2);
}
.menu-img {
background-image: url(res/img/menu.png);
background-size: auto 240px;
background-repeat: no-repeat;
background-position: 30%;
height: 240px;
}
.markdown-img {
height: 150px;
}
hr {
margin: 1em 0;
}
</style>
<script>
$(function() {
function scrollTo(elt) {
return function() {
$('html,body').animate({scrollTop: elt.offset().top}, 500);
};
}
$('#scrollToSlide2').click(scrollTo($('#slide2')));
setTimeout(function() {
$('.logo').removeClass('transparent scale');
}, 500);
setTimeout(function() {
$('.logo .transparent, .footer .transparent').removeClass('transparent scale');
}, 1500);
})
</script>
</head>
<body>
<div class="content">
<div class="slide modal-body" id="slide1">
<div class="navbar navbar-default navbar-fixed">
<div class="navbar-inner">
<div class="nav">
<a class="btn btn-success" href="editor" title="Editor"><i class="icon-pencil"></i> Start writing
now!</a>
</div>
</div>
</div>
<div class="centered logo transition transparent scale">
<img src="res/img/logo.svg"/>
<div class="subtitle transition transparent scale">
In-browser markdown editor<br>
<div class="social">
<a href="https://twitter.com/stackedit" target="_blank"><i class="icon-twitter"></i></a>
<a href="https://github.com/benweet/stackedit" target="_blank"><i
class="icon-github-circled"></i></a>
<a href="https://monetizejs.com/authorize?client_id=ESTHdCYOi18iLhhO&summary=true"
target="_blank"><img height="25" src="https://cdn.monetizejs.com/resources/button.svg"></a>
</div>
</div>
</div>
<div class="footer preview-panel modal-footer">
<div class="transition transparent">
<a class="btn btn-info" id="scrollToSlide2"><i class="icon-angle-down"></i></a>
</div>
</div>
</div>
<div id="slide2" class="modal-header">
<div class="container">
<h1 id="unrivalled-writing-experience">Unrivalled writing experience.</h1>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-7">
<br>
<br>
<img class="img modal-content" width="600" src="res/img/syntax-highlighting.gif">
</div>
<div class="col-md-4 col-md-offset-1">
<h2 id="rich-markdown-editor">Rich markdown editor</h2>
<p>StackEdits markdown syntax highlighting is unique. The refined text formatting of the editor
helps you
visualize the final rendering of your documents.</p>
<br>
<h2 id="wysiwyg-control-buttons">WYSIWYG controls</h2>
<p>StackEdit provides very handy formatting buttons and shortcuts, thanks to PageDown, the
WYSIWYG-style markdown editor used by Stack Overflow.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<br>
<br>
<hr>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h2 id="live-preview-with-scroll-sync" class="text-center">Live preview with Scroll Sync</h2>
<p>StackEdits Scroll Sync extension binds accurately the scrollbars of the editor panel and the
preview panel to ensure that you always keep an eye on the output while writing.</p>
</div>
</div>
<br>
<br>
<img class="img modal-content" width="600" src="res/img/live-preview.png">
<br>
<br>
<div class="row">
<div class="col-md-4 col-md-offset-1">
<h2 id="built-in-spell-checker">Built-in spell-checker</h2>
<p>StackEdit uses browsers built-in spell-checker to perform efficient, multi-language
spell-checking and correction suggestions.</p>
</div>
<div class="col-md-4 col-md-offset-2">
<h2 id="fully-customizable">Fully customizable</h2>
<p>StackEdit has an infinite combinations of settings. Theme, layout, shortcuts can be
personalized. For the rest, StackEdit gives you the freedom to make your own extension…</p>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
<div class="dark inset-shadow menu-img">
</div>
<div id="slide3" class="modal-footer modal-header">
<div class="container">
<h1 id="designed-for-web-writing">Designed for web writers.</h1>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<br>
<br>
<br>
<div class="row">
<div class="col-md-7">
<img class="img modal-content" width="600" src="res/img/publish.png">
</div>
<div class="col-md-4 col-md-offset-1">
<br>
<h2 id="publish-straight-to-your-blog">Straight to your blog</h2>
<p>StackEdit can upload your documents directly to Blogger, GitHub, Tumblr, WordPress… You can
choose
whether to upload in markdown format, HTML, or to format the output using Underscore template
engine.</p>
</div>
</div>
<br>
<br>
<br>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<br>
<br>
<br>
<div class="row">
<div class="col-md-4">
<h2 id="simultaneous-collaboration">Simultaneous collaboration</h2>
<p>Documents in StackEdit can be synchronized and shared through Google Drive and Dropbox. When two
collaborators are working on the same document at the same time, StackEdit takes care of merging
the
modifications.</p>
</div>
<div class="col-md-7 col-md-offset-1">
<img class="img" width="600" src="res/img/comments.png">
</div>
</div>
<div class="row">
<div class="col-md-7">
<img class="img" width="600" src="res/img/conflict.png">
</div>
<div class="col-md-4 col-md-offset-1">
<br>
<h2 id="review-comments">Review comments</h2>
<p>StackEdit allows you to insert inline comments and embed collaborator discussions in your
documents, much
like Microsoft Word or Google Docs.</p>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h2 id="write-offline" class="text-center">Write offline!</h2>
<p>Even when you travel, StackEdit is still accessible and lets you write offline just like any
desktop application. Now you have no excuse!</p>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
<div class="dark inset-shadow markdown-img">
</div>
<div class="modal-body">
<img class="background-img img" width="500" src="res/img/toc.gif">
</div>
<div class="modal-footer modal-header">
<div class="container">
<h1 id="extended-markdown-support">Extended markdown support.</h1>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<br>
<div class="row">
<div class="col-md-5">
<h2 id="github-flavored-markdown">GitHub Flavored Markdown</h2>
<p>StackEdit supports different markdown flavors such as Markdown Extra and GFM. Each
markdown feature can be enabled or disabled at your convenience.</p>
</div>
<div class="col-md-6 col-md-offset-1">
<br>
<br>
<br>
<br>
<br>
<img class="img" width="410" src="res/img/code-block.png">
</div>
</div>
<br>
<div class="row">
<div class="col-md-5">
<h2 id="latex-mathematical-expressions">LaTeX mathematical expressions</h2>
<p>StackEdit integrates MathJax to render mathematics from LaTeX expressions inside your markdown
document,
as you would do on Stack Exchange.</p>
</div>
<div class="col-md-6 col-md-offset-1">
<br>
<br>
<br>
<br>
<img class="img" width="330" src="res/img/math.png">
</div>
</div>
<br>
<div class="row">
<div class="col-md-5">
<h2 id="uml-diagrams">UML diagrams</h2>
<p>StackEdit enables you to write sequence diagrams and flow charts using a simple syntax.</p>
</div>
<div class="col-md-6 col-md-offset-1">
<br>
<img class="img" width="220" src="res/img/diagram.png">
</div>
</div>
<br>
<br>
<br>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
<div class="text-center">
<div class="social">
<a href="https://twitter.com/stackedit" target="_blank"><i class="icon-twitter"></i></a>
<a href="https://github.com/benweet/stackedit" target="_blank"><i
class="icon-github-circled"></i></a>
<a href="https://monetizejs.com/authorize?client_id=ESTHdCYOi18iLhhO&summary=true"
target="_blank"><img height="25" src="https://cdn.monetizejs.com/resources/button.svg"></a>
</div>
Copyright 2013-2014 <a href="https://twitter.com/benweet" target="_blank">Benoit Schweblin</a><br>
Licensed under an <a target="_blank" href="http://www.apache.org/licenses/LICENSE-2.0">Apache
License</a><br>
<a href="privacy_policy.html" target="_blank">Privacy Policy</a><br>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

View File

@ -6,324 +6,326 @@
<font id="fontello" horiz-adv-x="1000" >
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
<missing-glyph horiz-adv-x="1000" />
<glyph glyph-name="glass" unicode="&#xe801;" d="m948 746q0-19-24-43l-353-353v-429h179q15 0 25-10t11-25t-11-25t-25-11h-500q-14 0-25 11t-11 25t11 25t25 10h179v429l-353 353q-24 24-24 43q0 13 10 21t21 9t24 3h786q13 0 24-3t21-9t10-21z" horiz-adv-x="1000" />
<glyph glyph-name="archive" unicode="&#xe859;" d="m1217 806v-131q0-18-12-30t-31-13h-1131q-17 0-30 13t-13 30v131q0 17 13 30t30 13h1131q18 0 31-13t12-30z m-43-305v-609q0-17-13-30t-31-13h-1043q-18 0-31 13t-13 30v609q0 18 13 31t31 13h1043q18 0 31-13t13-31z m-304-152q0 27-19 46t-47 19h-391q-27 0-46-19t-19-46t19-46t46-19h391q27 0 47 19t19 46z" horiz-adv-x="1217" />
<glyph glyph-name="search" unicode="&#xe803;" d="m643 386q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="mail" unicode="&#xe804;" d="m929 11v428q-18-20-39-37q-149-114-238-188q-28-24-46-38t-48-27t-57-13h-2q-26 0-57 13t-48 27t-46 38q-88 74-238 188q-21 17-39 37v-428q0-8 6-13t12-5h822q7 0 12 5t6 13z m0 586v14t-1 7t-1 7t-3 5t-5 4t-8 2h-822q-7 0-12-6t-6-12q0-94 82-159q108-85 224-177q4-2 20-16t25-21t25-18t28-15t24-5h2q11 0 24 5t28 15t25 18t25 21t20 16q116 92 224 177q30 24 56 65t26 73z m71 21v-607q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v607q0 37 26 63t63 26h822q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="mail-alt" unicode="&#xe805;" d="m1000 454v-443q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v443q25-28 56-49q202-137 278-192q32-24 51-37t53-27t61-13h2q28 0 61 13t53 27t51 37q95 68 278 192q32 22 56 49z m0 164q0-44-27-84t-68-69q-210-146-262-181q-5-4-23-17t-30-22t-29-18t-33-15t-27-5h-2q-12 0-27 5t-33 15t-29 18t-30 22t-23 17q-51 35-147 101t-114 80q-35 23-65 64t-31 77q0 43 23 72t66 29h822q36 0 62-26t27-63z" horiz-adv-x="1000" />
<glyph glyph-name="heart" unicode="&#xe806;" d="m500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 36t-38 55t-30 67t-13 77q0 123 71 192t196 70q34 0 70-12t67-33t54-38t42-38q20 20 42 38t54 38t67 33t70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
<glyph glyph-name="heart-empty" unicode="&#xe807;" d="m929 517q0 46-12 80t-31 55t-46 33t-52 18t-55 4t-62-14t-62-36t-48-40t-34-34q-10-13-27-13t-27 13q-14 15-34 34t-48 40t-62 36t-62 14t-55-4t-52-18t-46-33t-31-55t-12-80q0-93 105-198l324-312l324 312q105 105 105 198z m71 0q0-123-128-251l-347-335q-10-10-25-10t-25 10l-348 336q-5 5-15 15t-31 36t-38 55t-30 67t-13 77q0 123 71 192t196 70q34 0 70-12t67-33t54-38t42-38q20 20 42 38t54 38t67 33t70 12q125 0 196-70t71-192z" horiz-adv-x="1000" />
<glyph glyph-name="star" unicode="&#xe808;" d="m929 489q0-12-15-27l-203-197l48-279q1-4 1-12q0-11-6-19t-17-9q-10 0-22 7l-251 132l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23t28-23l125-254l280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="star-empty" unicode="&#xe809;" d="m634 290l171 165l-235 35l-106 213l-105-213l-236-35l171-165l-41-235l211 111l211-111z m295 199q0-12-15-27l-203-197l48-279q1-4 1-12q0-28-23-28q-10 0-22 7l-251 132l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23t28-23l125-254l280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="star-half" unicode="&#xe80a;" d="m464 832v-747l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23z" horiz-adv-x="500" />
<glyph glyph-name="star-half-alt" unicode="&#xe80b;" d="m662 316l143 139l-198 29l-37 6l-17 34l-89 179v-537l33-17l178-94l-34 198l-7 37z m252 146l-202-197l47-279q3-19-3-29t-19-11q-9 0-22 7l-251 132l-250-132q-13-7-23-7q-12 0-19 11t-3 29l48 279l-203 197q-18 18-13 33t30 20l280 40l126 254q11 23 27 23q16 0 28-23l125-254l280-40q25-4 30-20t-13-33z" horiz-adv-x="928.6" />
<glyph glyph-name="user" unicode="&#xe80c;" d="m786 66q0-67-41-106t-108-39h-488q-67 0-108 39t-41 106q0 30 2 58t8 61t15 60t24 55t34 45t48 30t62 11q5 0 24-12t41-27t60-27t75-12t74 12t61 27t41 27t24 12q34 0 62-11t48-30t34-45t24-55t15-60t8-61t2-58z m-179 498q0-88-63-151t-151-63t-152 63t-62 151t62 152t152 63t151-63t63-152z" horiz-adv-x="785.7" />
<glyph glyph-name="users" unicode="&#xe80d;" d="m331 350q-90-3-148-71h-75q-45 0-77 22t-31 66q0 197 69 197q4 0 25-11t54-24t66-12q38 0 75 13q-3-21-3-37q0-78 45-143z m598-356q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105q0 30 2 58t8 61t14 61t24 54t35 45t48 30t62 11q6 0 24-12t41-26t59-27t76-12t75 12t60 27t41 26t23 12q35 0 63-11t47-30t35-45t24-54t15-61t8-61t2-58z m-572 713q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z m393-214q0-89-63-152t-151-62t-152 62t-63 152t63 151t152 63t151-63t63-151z m321-126q0-43-31-66t-77-22h-75q-57 68-147 71q45 65 45 143q0 16-3 37q37-13 74-13q33 0 67 12t54 24t24 11q69 0 69-197z m-71 340q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z" horiz-adv-x="1071.4" />
<glyph glyph-name="male" unicode="&#xe80e;" d="m571 457v-232q0-22-15-38t-38-16t-38 16t-16 38v196h-35v-509q0-25-19-44t-44-18t-44 18t-18 44v259h-36v-259q0-25-19-44t-44-18t-44 18t-18 44v509h-36v-196q0-22-15-38t-38-16t-38 16t-16 38v232q0 45 31 76t76 31h357q45 0 76-31t31-76z m-160 250q0-52-37-88t-88-37t-89 37t-36 88t36 89t89 36t88-36t37-89z" horiz-adv-x="571.4" />
<glyph glyph-name="female" unicode="&#xe80f;" d="m714 261q0-23-15-38t-38-16q-29 0-45 24l-127 190h-25v-73l138-230q5-8 5-18q0-14-10-25t-26-11h-107v-152q0-25-18-44t-44-18h-89q-26 0-45 18t-18 44v152h-107q-15 0-25 11t-11 25q0 10 5 18l138 230v73h-25l-127-190q-16-24-44-24q-23 0-38 16t-16 38q0 16 9 29l143 215q41 59 98 59h214q58 0 99-59l142-215q9-13 9-29z m-232 446q0-52-36-88t-89-37t-88 37t-37 88t37 89t88 36t89-36t36-89z" horiz-adv-x="714.3" />
<glyph glyph-name="video" unicode="&#xe810;" d="m214-43v72q0 14-10 25t-25 10h-72q-14 0-25-10t-11-25v-72q0-14 11-25t25-11h72q14 0 25 11t10 25z m0 214v72q0 14-10 25t-25 11h-72q-14 0-25-11t-11-25v-72q0-14 11-25t25-10h72q14 0 25 10t10 25z m0 215v71q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m572-429v286q0 14-11 25t-25 11h-429q-14 0-25-11t-10-25v-286q0-14 10-25t25-11h429q15 0 25 11t11 25z m-572 643v71q0 15-10 26t-25 10h-72q-14 0-25-10t-11-26v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m786-643v72q0 14-11 25t-25 10h-71q-15 0-25-10t-11-25v-72q0-14 11-25t25-11h71q15 0 25 11t11 25z m-214 429v285q0 15-11 26t-25 10h-429q-14 0-25-10t-10-26v-285q0-15 10-25t25-11h429q15 0 25 11t11 25z m214-215v72q0 14-11 25t-25 11h-71q-15 0-25-11t-11-25v-72q0-14 11-25t25-10h71q15 0 25 10t11 25z m0 215v71q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m0 214v71q0 15-11 26t-25 10h-71q-15 0-25-10t-11-26v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m71 89v-750q0-37-26-63t-63-26h-893q-36 0-63 26t-26 63v750q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="videocam" unicode="&#xe811;" d="m1000 654v-608q0-23-22-32q-7-3-14-3q-15 0-25 10l-225 225v-92q0-67-47-114t-113-47h-393q-67 0-114 47t-47 114v392q0 67 47 114t114 47h393q66 0 113-47t47-114v-92l225 225q10 10 25 10q7 0 14-3q22-9 22-32z" horiz-adv-x="1000" />
<glyph glyph-name="picture" unicode="&#xe812;" d="m357 529q0-45-31-76t-76-32t-76 32t-31 76t31 75t76 32t76-32t31-75z m572-215v-250h-786v107l178 179l90-89l285 285z m53 393h-893q-7 0-12-5t-6-13v-678q0-8 6-13t12-5h893q7 0 13 5t5 13v678q0 7-5 13t-13 5z m89-18v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera" unicode="&#xe813;" d="m536 475q66 0 113-47t47-114t-47-113t-113-47t-114 47t-47 113t47 114t114 47z m393 232q59 0 101-42t41-101v-500q0-59-41-101t-101-42h-786q-59 0-101 42t-42 101v500q0 59 42 101t101 42h125l28 76q11 27 39 47t58 20h286q29 0 57-20t39-47l29-76h125z m-393-643q103 0 176 74t74 176t-74 177t-176 73t-177-73t-73-177t73-176t177-74z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera-alt" unicode="&#xe814;" d="m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5t12 5t5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62t-151-62t-63-152t63-151t151-63t152 63t62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z" horiz-adv-x="1000" />
<glyph glyph-name="th-large" unicode="&#xe815;" d="m429 279v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v215q0 29 21 50t50 21h286q29 0 50-21t22-50z m0 428v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50v214q0 29 21 50t50 22h286q29 0 50-22t22-50z m500-428v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v215q0 29 21 50t50 21h286q29 0 50-21t22-50z m0 428v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50v214q0 29 21 50t50 22h286q29 0 50-22t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="th" unicode="&#xe816;" d="m286 154v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q22 0 38-15t16-38z m0 285v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q22 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q22 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-22 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-22 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m0 286v-107q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="th-list" unicode="&#xe817;" d="m286 154v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q22 0 38-15t16-38z m0 285v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q22 0 38-16t16-38z m714-285v-108q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v108q0 22 16 38t38 15h535q23 0 38-15t16-38z m-714 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q22 0 38-16t16-38z m714-286v-107q0-22-16-38t-38-15h-535q-23 0-38 15t-16 38v107q0 23 16 38t38 16h535q23 0 38-16t16-38z m0 286v-107q0-22-16-38t-38-16h-535q-23 0-38 16t-16 38v107q0 22 16 38t38 16h535q23 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="ok" unicode="&#xe818;" d="m932 534q0-22-15-38l-404-404l-76-76q-16-15-38-15t-38 15l-76 76l-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165l366 367q16 16 38 16t38-16l76-76q15-16 15-38z" horiz-adv-x="1000" />
<glyph glyph-name="ok-circled" unicode="&#xe819;" d="m717 440q0 16-11 26l-50 50q-11 11-25 11t-26-11l-227-227l-126 126q-11 11-25 11t-26-11l-50-50q-10-10-10-26q0-15 10-25l202-202q10-10 25-10q15 0 25 10l303 303q11 10 11 25z m140-90q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-circled2" unicode="&#xe81a;" d="m653 396l-235-235q-11-11-25-11t-25 11l-164 164q-11 11-11 25t11 25l57 57q10 11 25 11t25-11l82-82l153 153q11 11 25 11t26-11l56-56q11-11 11-26t-11-25z m79-46q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-squared" unicode="&#xe81b;" d="m382 125l343 343q10 10 10 25t-10 25l-57 57q-11 10-25 10t-25-10l-261-261l-118 118q-10 11-25 11t-25-11l-57-57q-10-11-10-25t10-25l200-200q11-11 25-11t25 11z m475 493v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel" unicode="&#xe81c;" d="m724 112q0-22-15-38l-76-76q-16-15-38-15t-38 15l-164 165l-164-165q-16-15-38-15t-38 15l-76 76q-16 16-16 38t16 38l164 164l-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164l164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164l164-164q15-15 15-38z" horiz-adv-x="785.7" />
<glyph glyph-name="cancel-circled" unicode="&#xe81d;" d="m641 224q0 14-10 25l-101 101l101 101q10 11 10 25q0 15-10 26l-51 50q-10 11-25 11q-15 0-25-11l-101-101l-101 101q-11 11-26 11q-15 0-25-11l-50-50q-11-11-11-26q0-14 11-25l101-101l-101-101q-11-11-11-25q0-15 11-26l50-50q10-11 25-11q15 0 26 11l101 101l101-101q10-11 25-11q15 0 25 11l51 50q10 11 10 26z m216 126q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel-circled2" unicode="&#xe86f;" d="m612 248l-81-82q-6-5-13-5t-13 5l-76 77l-77-77q-5-5-13-5t-13 5l-81 82q-6 5-6 13t6 13l76 76l-76 76q-6 6-6 13t6 13l81 82q6 5 13 5t13-5l77-77l76 77q6 5 13 5t13-5l81-82q6-5 6-13t-6-13l-76-76l76-76q6-6 6-13t-6-13z m120 102q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="plus" unicode="&#xe81f;" d="m786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="plus-circled" unicode="&#xe820;" d="m679 314v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72q0-14 10-25t25-11h143v-142q0-15 11-25t25-11h71q15 0 25 11t11 25v142h143q14 0 25 11t11 25z m178 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="plus-squared" unicode="&#xe821;" d="m714 314v72q0 14-10 25t-25 10h-179v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-179h-178q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h178v-179q0-14 11-25t25-11h71q15 0 25 11t11 25v179h179q14 0 25 10t10 25z m143 304v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="minus" unicode="&#xe823;" d="m786 439v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38v107q0 23 16 38t38 16h678q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="minus-circled" unicode="&#xe824;" d="m679 314v72q0 14-11 25t-25 10h-429q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h429q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared" unicode="&#xe825;" d="m714 314v72q0 14-10 25t-25 10h-500q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h500q14 0 25 10t10 25z m143 304v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared-alt" unicode="&#xe826;" d="m643 404v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 7 5 12t13 5h464q8 0 13-5t5-12z m71-250v464q0 37-26 63t-63 26h-464q-37 0-63-26t-27-63v-464q0-37 27-64t63-26h464q37 0 63 26t26 64z m72 464v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="help" unicode="&#xe828;" d="m393 149v-134q0-9-7-16t-15-6h-134q-9 0-16 6t-7 16v134q0 9 7 16t16 6h134q8 0 15-6t7-16z m176 335q0-30-8-56t-20-43t-31-33t-32-25t-34-19q-23-13-38-37t-15-37q0-10-7-18t-16-9h-134q-8 0-14 10t-6 21v26q0 46 37 87t79 60q33 15 47 32t14 42q0 23-26 41t-60 18q-36 0-60-16q-20-14-60-64q-7-9-17-9q-7 0-14 4l-91 70q-8 6-9 14t3 16q89 148 259 148q45 0 90-17t81-46t59-72t23-88z" horiz-adv-x="571.4" />
<glyph glyph-name="help-circled" unicode="&#xe939;" d="m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65t-95 23q-136 0-207-119q-9-14 4-24l74-55q4-4 10-4q9 0 14 7q30 38 48 51q19 14 48 14q27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19t25 27t16 34t7 45z m214-107q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="info-circled" unicode="&#xe93a;" d="m571 82v89q0 8-5 13t-12 5h-54v286q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h53v-179h-53q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h250q7 0 12 5t5 13z m-71 500v89q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h107q8 0 13 5t5 13z m357-232q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="info" unicode="&#xe93b;" d="m357 100v-71q0-15-10-25t-26-11h-285q-15 0-25 11t-11 25v71q0 15 11 25t25 11h35v214h-35q-15 0-25 11t-11 25v71q0 15 11 25t25 11h214q15 0 25-11t11-25v-321h35q15 0 26-11t10-25z m-71 643v-107q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v107q0 14 11 25t25 11h143q15 0 25-11t11-25z" horiz-adv-x="357.1" />
<glyph glyph-name="home" unicode="&#xe93c;" d="m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264l321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322l-386-322q-7-4-13-4q-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z" horiz-adv-x="928.6" />
<glyph glyph-name="unlink" unicode="&#xe82a;" d="m245 141l-143-143q-5-5-13-5q-6 0-13 5q-5 5-5 13t5 13l143 142q6 5 13 5t13-5q5-5 5-12t-5-13z m94-23v-179q0-8-5-13t-13-5t-12 5t-5 13v179q0 8 5 13t12 5t13-5t5-13z m-125 125q0-8-5-13t-13-5h-178q-8 0-13 5t-5 13t5 13t13 5h178q8 0 13-5t5-13z m706-72q0-67-48-113l-82-81q-46-47-113-47q-68 0-114 48l-186 187q-12 11-24 31l134 10l152-153q15-15 38-15t38 15l82 81q15 16 15 37q0 23-15 38l-153 154l10 133q20-12 31-23l188-188q47-48 47-114z m-345 404l-133-10l-152 153q-16 16-38 16q-22 0-38-15l-82-82q-16-15-16-37q0-22 16-38l153-153l-10-134q-20 12-32 24l-187 187q-47 48-47 114q0 67 47 113l82 82q47 46 114 46q67 0 114-47l186-187q12-12 23-32z m354-46q0-8-5-13t-13-5h-179q-8 0-13 5t-5 13t5 12t13 5h179q8 0 13-5t5-12z m-304 303v-178q0-8-5-13t-13-5t-13 5t-5 13v178q0 8 5 13t13 5t13-5t5-13z m227-84l-143-143q-6-5-13-5t-12 5q-5 6-5 13t5 13l142 142q6 5 13 5t13-5q5-5 5-12t-5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="link-ext" unicode="&#xe82b;" d="m786 332v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13z m214 482v-285q0-15-11-26t-25-10t-25 10l-98 99l-364-364q-5-6-13-6t-13 6l-63 63q-6 6-6 13t6 13l364 364l-99 98q-10 11-10 25t10 25t26 11h285q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="link-ext-alt" unicode="&#xe82c;" d="m714 332v268q0 15-10 25t-25 11h-268q-24 0-33-22q-10-23 8-39l80-80l-298-298q-11-11-11-26t11-25l57-57q11-10 25-10t25 10l298 298l80-80q11-11 26-11q6 0 14 3q21 10 21 33z m143 286v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="attach" unicode="&#xe82d;" d="m783 77q0-65-44-109t-109-44q-75 0-131 55l-434 434q-63 64-63 151q0 88 62 150t150 62q88 0 152-63l338-338q5-5 5-12q0-9-17-26t-26-17q-7 0-13 5l-338 339q-44 43-101 43q-59 0-100-42t-40-101q0-58 42-101l433-433q35-35 81-35q36 0 59 23t24 59q0 46-36 81l-324 324q-14 14-33 14q-16 0-27-11t-11-27q0-18 14-33l229-228q6-6 6-13q0-9-18-26t-26-17q-7 0-12 5l-229 229q-35 34-35 83q0 46 32 78t77 32q49 0 83-36l325-324q55-54 55-131z" horiz-adv-x="785.7" />
<glyph glyph-name="lock" unicode="&#xe82e;" d="m179 421h285v108q0 59-42 101t-101 41t-101-41t-41-101v-108z m464-53v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v108q0 102 74 176t176 74t177-74t73-176v-108h18q23 0 38-15t16-38z" horiz-adv-x="642.9" />
<glyph glyph-name="lock-open" unicode="&#xe82f;" d="m929 529v-143q0-15-11-25t-25-11h-36q-14 0-25 11t-11 25v143q0 59-41 101t-101 41t-101-41t-42-101v-108h53q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h375v108q0 103 73 176t177 74t176-74t74-176z" horiz-adv-x="928.6" />
<glyph glyph-name="lock-open-alt" unicode="&#xe830;" d="m589 421q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v179q0 103 74 177t176 73t177-73t73-177q0-15-10-25t-25-11h-36q-14 0-25 11t-11 25q0 59-42 101t-101 42t-101-42t-41-101v-179h410z" horiz-adv-x="642.9" />
<glyph glyph-name="pin" unicode="&#xe831;" d="m268 368v250q0 8-5 13t-13 5t-13-5t-5-13v-250q0-8 5-13t13-5t13 5t5 13z m375-197q0-14-11-25t-25-10h-239l-29-270q-1-7-6-11t-11-5h-1q-15 0-17 15l-43 271h-225q-15 0-25 10t-11 25q0 69 44 124t99 55v286q-29 0-50 21t-22 50t22 50t50 22h357q29 0 50-22t21-50t-21-50t-50-21v-286q55 0 99-55t44-124z" horiz-adv-x="642.9" />
<glyph glyph-name="eye" unicode="&#xe832;" d="m929 314q-85 132-213 197q34-58 34-125q0-104-73-177t-177-73t-177 73t-73 177q0 67 34 125q-128-65-213-197q75-114 187-182t242-68t242 68t187 182z m-402 215q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8t19 8t8 19q0 48 34 82t82 34q11 0 19 8t8 19z m473-215q0-19-11-38q-78-129-210-206t-279-77t-279 77t-210 206q-11 19-11 38t11 39q78 128 210 205t279 78t279-78t210-205q11-20 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="eye-off" unicode="&#xe833;" d="m310 105l43 79q-48 35-76 88t-27 114q0 67 34 125q-128-65-213-197q94-144 239-209z m217 424q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8t19 8t8 19q0 48 34 82t82 34q11 0 19 8t8 19z m202 106q0-4 0-5q-59-105-176-316t-176-316l-28-50q-5-9-15-9q-7 0-75 39q-9 6-9 16q0 7 25 49q-80 36-147 96t-117 137q-11 17-11 38t11 39q86 131 212 207t277 76q50 0 100-10l31 54q5 9 15 9q3 0 10-3t18-9t18-10t18-10t10-7q9-5 9-15z m21-249q0-78-44-142t-117-92l157 281q4-26 4-47z m250-72q0-19-11-38q-22-36-61-81q-84-96-194-149t-234-53l41 74q119 10 219 76t169 171q-65 100-158 164l35 63q53-36 102-86t81-102q11-19 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="tag" unicode="&#xe834;" d="m250 600q0 30-21 51t-50 20t-51-20t-21-51t21-50t51-21t50 21t21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21q-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z" horiz-adv-x="857.1" />
<glyph glyph-name="tags" unicode="&#xe835;" d="m250 600q0 30-21 51t-50 20t-51-20t-21-51t21-50t51-21t50 21t21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21q-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z m215 0q0-30-21-51l-274-274q-22-21-51-21q-20 0-33 8t-29 25l262 262q21 21 21 51q0 29-21 50l-399 399q-21 21-57 36t-65 15h125q29 0 65-15t57-36l399-399q21-21 21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="bookmark" unicode="&#xe836;" d="m650 779q12 0 24-5q19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4q-27 0-47 18l-246 236l-246-236q-20-19-46-19q-13 0-25 5q-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="bookmark-empty" unicode="&#xe837;" d="m643 707h-572v-693l237 227l49 47l50-47l236-227v693z m7 72q12 0 24-5q19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4q-27 0-47 18l-246 236l-246-236q-20-19-46-19q-13 0-25 5q-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="flag" unicode="&#xe838;" d="m179 707q0-40-36-61v-707q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v707q-35 21-35 61q0 30 21 51t50 21t51-21t21-51z m821-36v-425q0-14-7-22t-22-15q-120-65-206-65q-34 0-69 12t-60 27t-65 27t-79 12q-107 0-259-81q-10-5-19-5q-14 0-25 10t-10 25v414q0 18 17 31q12 8 44 24q132 67 235 67q60 0 112-16t122-49q21-11 49-11q30 0 65 12t62 26t49 26t30 12q15 0 25-10t11-26z" horiz-adv-x="1000" />
<glyph glyph-name="flag-empty" unicode="&#xe93d;" d="m929 267v344q-95-51-171-51q-46 0-81 18q-56 27-103 42t-99 16q-97 0-225-71v-334q137 63 242 63q30 0 57-5t55-14t43-17t46-22l16-8q24-13 56-13q67 0 164 52z m-750 440q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36q0 30 21 51t50 20t51-20t21-51z m821-36v-425q0-22-20-32q-5-3-9-5q-122-65-206-65q-49 0-88 20l-16 7q-35 19-55 27t-51 16t-63 8q-57 0-132-24t-127-57q-9-5-19-5q-9 0-18 4q-17 11-17 31v414q0 20 17 31q19 12 44 24t63 29t85 28t87 10q62 0 117-17t116-48q21-11 50-11q68 0 173 63q12 6 17 9q17 9 35-1q17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="flag-checkered" unicode="&#xe93e;" d="m464 292v107q-101-9-214-65v-103q114 53 214 61z m0 233v110q-96-4-214-70v-106q120 62 214 66z m465-258v103q-132-65-215-40v125q-11 3-21 8q-3 2-19 10t-19 9t-18 9t-19 8t-18 8t-20 7t-20 4t-22 4t-22 3t-24 1q-13 0-28-2v-124h11q57 0 107-16t111-46q10-5 21-8v-105q24-9 51-9q67 0 164 51z m0 238v106q-95-51-171-51q-25 0-44 4v-109q83-24 215 50z m-750 202q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36q0 30 21 51t50 20t51-20t21-51z m821-36v-425q0-22-20-32q-5-3-9-5q-122-65-206-65q-49 0-88 20l-16 7q-35 19-55 27t-51 16t-63 8q-57 0-132-24t-127-57q-9-5-19-5q-9 0-18 4q-17 11-17 31v414q0 20 17 31q19 12 44 24t63 29t85 28t87 10q62 0 117-17t116-48q21-11 50-11q68 0 173 63q12 6 17 9q17 9 35-1q17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="thumbs-up" unicode="&#xe93f;" d="m143 100q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m643 321q0 29-22 50t-50 22h-196q0 32 27 89t26 89q0 55-17 81t-72 27q-14-15-21-48t-17-70t-33-61q-13-13-43-51q-2-3-13-17t-18-22t-19-24t-22-25t-22-19t-22-16t-20-5h-18v-357h18q7 0 18-1t18-4t21-6t20-7t20-7t16-5q118-41 191-41h67q107 0 107 93q0 15-2 31q16 9 26 30t10 41t-10 38q29 28 29 67q0 13-5 31t-14 26q18 1 30 26t12 45z m71 1q0-50-27-91q5-18 5-38q0-43-21-81q1-12 1-24q0-56-33-99q0-78-48-123t-126-45h-72q-54 0-106 13t-121 36q-65 23-77 23h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h153q20 13 77 86q32 42 60 72q13 14 19 47t17 71t35 60q22 21 50 21q47 0 84-18t57-57t20-104q0-51-27-107h98q58 0 101-42t42-100z" horiz-adv-x="857.1" />
<glyph glyph-name="thumbs-down" unicode="&#xe940;" d="m143 600q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m643-321q0 19-12 45t-30 26q8 10 14 27t5 30q0 39-29 67q10 18 10 38t-10 41t-26 30q2 16 2 31q0 47-27 70t-76 23h-71q-73 0-191-41q-3-1-16-6t-20-7t-20-6t-21-6t-18-4t-18-1h-18v-358h18q9 0 20-5t22-15t22-19t22-25t19-24t18-23t13-16q30-38 43-51q23-24 33-61t17-70t21-48q54 0 72 27t17 81q0 32-26 89t-27 89h196q28 0 50 22t22 49z m71-1q0-57-42-100t-101-42h-98q27-55 27-107q0-66-20-104q-19-39-57-57t-84-18q-28 0-50 21q-19 18-30 45t-14 51t-10 47t-17 36q-27 28-60 71q-57 73-77 86h-153q-29 0-50 21t-21 51v357q0 29 21 50t50 21h161q12 0 77 22q72 25 125 37t111 13h63q78 0 126-45t48-120v-3q33-43 33-99q0-13-1-24q21-38 21-81q0-20-5-38q27-41 27-91z" horiz-adv-x="857.1" />
<glyph glyph-name="thumbs-up-alt" unicode="&#xe839;" d="m143 100q0 15-11 25t-25 11q-15 0-25-11t-11-25q0-15 11-25t25-11q15 0 25 11t11 25z m89 286v-357q0-15-10-25t-26-11h-160q-15 0-25 11t-11 25v357q0 14 11 25t25 10h160q15 0 26-10t10-25z m661 0q0-48-31-83q9-25 9-43q1-42-24-76q9-32 0-66q-9-31-31-52q5-63-27-101q-36-43-110-44h-72q-37 0-80 9t-68 16t-67 22q-69 24-88 25q-15 0-26 11t-10 25v357q0 14 10 25t24 11q13 1 42 33t57 67q38 49 56 67q10 10 17 27t10 27t8 34q4 22 7 34t11 29t18 28q11 11 26 11q25 0 46-6t33-15t22-22t14-26t7-27t2-26t1-21q0-21-6-43t-10-33t-16-31q-1-4-5-10t-6-13t-5-13h155q43 0 75-32t32-75z" horiz-adv-x="928.6" />
<glyph glyph-name="thumbs-down-alt" unicode="&#xe83a;" d="m143 529q0-15-11-26t-25-10q-15 0-25 10t-11 26q0 15 11 25t25 10q15 0 25-10t11-25z m89-286v357q0 15-10 25t-26 11h-160q-15 0-25-11t-11-25v-357q0-15 11-25t25-11h160q15 0 26 11t10 25z m630 83q31-34 31-83q-1-44-32-75t-75-32h-155q2-8 5-14t6-12t5-10q10-21 15-32t11-32t6-43q0-14-1-22t-2-25t-7-28t-14-25t-22-23t-33-14t-46-6q-15 0-26 11q-11 11-18 27t-11 29t-7 35q-5 23-8 33t-10 27t-17 27q-18 19-56 67q-28 36-57 68t-42 33q-14 1-24 11t-10 24v358q0 15 10 25t26 11q19 0 88 24q43 15 67 22t68 16t80 9h72q74-1 110-43q32-39 27-101q22-21 31-53q9-34 0-65q25-34 24-77q0-18-9-42z" horiz-adv-x="928.6" />
<glyph glyph-name="reply" unicode="&#xe845;" d="m1000 225q0-93-71-252q-2-4-6-13t-7-17t-8-12q-6-10-15-10q-9 0-13 6t-5 14q0 5 1 15t2 13q3 38 3 69q0 56-10 101t-27 77t-45 56t-59 39t-74 24t-86 12t-98 3h-125v-143q0-14-10-25t-26-11t-25 11l-285 286q-11 10-11 25t11 25l285 286q11 10 25 10t26-10t10-25v-143h125q398 0 488-225q30-75 30-186z" horiz-adv-x="1000" />
<glyph glyph-name="reply-all" unicode="&#xe840;" d="m357 246v-39q0-23-22-33q-7-3-14-3q-15 0-25 11l-285 286q-11 10-11 25t11 25l285 286q17 17 39 7q22-9 22-32v-39l-221-222q-11-11-11-25t11-25z m643-21q0-32-9-74t-22-77t-27-70t-22-51l-12-22q-4-10-15-10q-3 0-5 1q-14 4-13 19q24 223-59 315q-36 40-95 62t-150 29v-140q0-23-21-33q-8-3-14-3q-15 0-25 11l-286 286q-11 10-11 25t11 25l286 286q16 17 39 7q21-9 21-32v-147q230-15 335-123q94-97 94-284z" horiz-adv-x="1000" />
<glyph glyph-name="forward" unicode="&#xe856;" d="m1000 493q0-15-11-25l-285-286q-11-11-25-11t-26 11t-10 25v143h-125q-55 0-98-3t-86-12t-74-24t-59-39t-45-56t-27-77t-10-101q0-31 3-69q0-4 2-13t1-15q0-8-5-14t-13-6q-9 0-15 10q-4 5-8 12t-7 17t-6 13q-71 159-71 252q0 111 30 186q90 225 488 225h125v143q0 14 10 25t26 10t25-10l285-286q11-11 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="quote-left" unicode="&#xe842;" d="m429 314v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76v393q0 58 23 111t61 91t91 61t111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 16-38t37-16h125q45 0 76-31t32-76z m500 0v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76v393q0 58 23 111t61 91t91 61t111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 15-38t38-16h125q45 0 76-31t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="quote-right" unicode="&#xe843;" d="m429 671v-392q0-58-23-111t-61-91t-91-62t-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76v214q0 45 31 76t76 32h214q45 0 76-32t32-76z m500 0v-392q0-58-23-111t-61-91t-91-62t-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76v214q0 45 31 76t76 32h214q45 0 76-32t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="export-alt" unicode="&#xe846;" d="m561 236l196 196q11 11 11 25t-11 25l-196 197q-17 17-39 7q-22-9-22-32v-90q-66 0-121-11t-90-28t-64-44t-42-53t-25-61t-12-62t-3-62q0-101 93-226q6-6 14-6q4 0 7 1q13 5 11 19q-25 197 34 264q26 29 73 42t125 13v-89q0-24 22-33q7-3 14-3q14 0 25 11z m296 382v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil" unicode="&#xe847;" d="m203-7l50 51l-131 131l-51-51v-60h72v-71h60z m291 518q0 12-12 12q-5 0-9-4l-303-302q-4-4-4-10q0-12 13-12q5 0 9 4l303 302q3 4 3 10z m-30 107l232-232l-464-465h-232v233z m381-54q0-29-20-50l-93-93l-232 233l93 92q20 21 50 21q29 0 51-21l131-131q20-22 20-51z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil-squared" unicode="&#xe848;" d="m225 232l85-85l-29-29h-31v53h-54v32z m231 217q8-7-1-16l-163-163q-9-9-16-1q-8 7 1 16l163 163q9 9 16 1z m-152-385l303 304l-161 161l-303-304v-161h161z m339 340l51 51q16 16 16 38t-16 38l-85 85q-15 15-38 15t-38-15l-51-52z m214 214v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="edit" unicode="&#xe941;" d="m496 189l64 65l-85 85l-64-65v-31h53v-54h32z m245 402q-9 9-18 0l-196-196q-9-9 0-18t18 0l196 196q9 9 0 18z m45-331v-106q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14q9-4 10-13q2-10-5-16l-27-28q-8-8-18-4q-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v70q0 7 5 12l36 36q8 8 20 4t11-16z m-54 411l161-160l-375-375h-161v160z m248-73l-51-52l-161 161l51 51q16 16 38 16t38-16l85-84q16-16 16-38t-16-38z" horiz-adv-x="1000" />
<glyph glyph-name="print" unicode="&#xe942;" d="m214-7h500v143h-500v-143z m0 357h500v214h-89q-22 0-38 16t-16 38v89h-357v-357z m643-36q0 15-10 25t-26 11t-25-11t-10-25t10-25t25-10t26 10t10 25z m72 0v-232q0-7-6-12t-12-6h-125v-89q0-22-16-38t-38-16h-536q-22 0-37 16t-16 38v89h-125q-7 0-13 6t-5 12v232q0 44 32 76t75 31h36v304q0 22 16 38t37 16h375q23 0 50-12t42-26l85-85q15-16 27-43t11-49v-143h35q45 0 76-31t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="retweet" unicode="&#xe943;" d="m714 11q0-8-5-13t-13-5h-535q-5 0-8 1t-5 4t-3 4t-2 7t0 6v335h-107q-15 0-25 11t-11 25q0 13 8 23l179 214q11 12 27 12t28-12l178-214q9-10 9-23q0-15-11-25t-25-11h-107v-214h321q9 0 14-6l89-108q4-6 4-11z m357 232q0-14-8-23l-179-214q-11-13-27-13t-27 13l-179 214q-8 9-8 23q0 14 10 25t26 11h107v214h-322q-9 0-14 7l-89 107q-4 5-4 11q0 7 5 12t13 6h536q4 0 7-1t5-4t3-5t2-6t1-7v-334h107q14 0 25-11t10-25z" horiz-adv-x="1071.4" />
<glyph glyph-name="keyboard" unicode="&#xe944;" d="m214 198v-53q0-9-9-9h-53q-9 0-9 9v53q0 9 9 9h53q9 0 9-9z m72 143v-53q0-9-9-9h-125q-9 0-9 9v53q0 9 9 9h125q9 0 9-9z m-72 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m572-286v-53q0-9-9-9h-482q-9 0-9 9v53q0 9 9 9h482q9 0 9-9z m-357 143v-53q0-9-9-9h-54q-9 0-9 9v53q0 9 9 9h54q9 0 9-9z m-72 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m214-143v-53q0-9-8-9h-54q-9 0-9 9v53q0 9 9 9h54q8 0 8-9z m-71 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m214-143v-53q0-9-9-9h-53q-9 0-9 9v53q0 9 9 9h53q9 0 9-9z m215-143v-53q0-9-9-9h-54q-9 0-9 9v53q0 9 9 9h54q9 0 9-9z m-286 286v-54q0-9-9-9h-54q-9 0-9 9v54q0 9 9 9h54q9 0 9-9z m143 0v-54q0-9-9-9h-54q-9 0-9 9v54q0 9 9 9h54q9 0 9-9z m143 0v-196q0-9-9-9h-125q-9 0-9 9v53q0 9 9 9h62v134q0 9 9 9h54q9 0 9-9z m71-420v500h-929v-500h929z m71 500v-500q0-29-21-50t-50-21h-929q-29 0-50 21t-21 50v500q0 30 21 51t50 21h929q30 0 50-21t21-51z" horiz-adv-x="1071.4" />
<glyph glyph-name="gamepad" unicode="&#xe849;" d="m464 243v71q0 8-5 13t-13 5h-107v107q0 8-5 13t-13 5h-71q-8 0-13-5t-5-13v-107h-107q-8 0-13-5t-5-13v-71q0-8 5-13t13-5h107v-107q0-8 5-13t13-5h71q8 0 13 5t5 13v107h107q8 0 13 5t5 13z m322-36q0 30-21 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t21 50z m143 143q0 30-21 51t-51 20t-50-20t-21-51t21-50t50-21t51 21t21 50z m142-71q0-119-83-202t-202-84q-107 0-189 71h-123q-81-71-188-71q-119 0-202 84t-84 202t84 202t202 83h500q118 0 202-83t83-202z" horiz-adv-x="1071.4" />
<glyph glyph-name="comment-empty" unicode="&#xe84c;" d="m500 636q-114 0-213-39t-157-105t-59-142q0-62 40-119t113-98l48-28l-15-54q-13-50-39-95q85 35 154 95l24 21l31-3q39-5 73-5q114 0 213 39t157 105t59 142t-59 142t-157 105t-213 39z m500-286q0-97-67-179t-182-130t-251-48q-39 0-81 4q-110-97-257-135q-27-7-63-12h-3q-8 0-15 6t-9 15v1q-2 2 0 7t1 5t2 5l4 5t4 5t4 5q4 5 17 19t20 22t17 22t18 28t15 33t15 42q-88 50-138 123t-51 157q0 97 67 179t182 130t251 48t251-48t182-130t67-179z" horiz-adv-x="1000" />
<glyph glyph-name="chat-empty" unicode="&#xe84d;" d="m393 636q-85 0-160-29t-118-79t-44-107q0-45 30-88t83-73l54-32l-19-46q19 11 34 21l25 18l30-6q43-8 85-8q85 0 159 29t118 79t44 106t-44 107t-118 79t-159 29z m0 71q106 0 197-38t143-104t53-144t-53-143t-143-104t-197-38q-48 0-98 9q-70-49-155-72q-21-5-48-9h-2q-6 0-12 5t-6 12q-1 1-1 3t1 4t1 3l1 3t2 3t2 3t3 3t2 2q3 3 13 14t15 16t12 17t14 21t11 25q-69 40-108 98t-40 125q0 78 53 144t143 104t197 38z m459-652q5-14 11-25t14-21t13-16t14-17t13-14q0 0 2-2t3-3t2-3t2-3l1-3t1-3t1-4t-1-3q-2-8-7-13t-13-4q-27 4-48 9q-85 23-155 72q-50-9-98-9q-151 0-263 74q32-3 49-3q90 0 172 25t148 72q69 52 107 119t37 141q0 43-13 85q72-39 114-99t42-128q0-67-40-126t-108-98z" horiz-adv-x="1000" />
<glyph glyph-name="bell" unicode="&#xe84e;" d="m473-96q0 8-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m-371 160h724q-91 101-137 230t-46 270q0 143-179 143t-178-143q0-141-46-270t-138-230z m827 0q0-29-22-50t-50-21h-250q0-59-42-101t-101-42t-101 42t-42 101h-250q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20q0 23 15 38t38 16t38-16t16-38q0-10-5-20q94-11 148-66t53-146q0-146 54-278t161-222z" horiz-adv-x="928.6" />
<glyph glyph-name="bell-alt" unicode="&#xe84f;" d="m473-96q0 8-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m456 160q0-29-22-50t-50-21h-250q0-59-42-101t-101-42t-101 42t-42 101h-250q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20q0 23 15 38t38 16t38-16t16-38q0-10-5-20q94-11 148-66t53-146q0-146 54-278t161-222z" horiz-adv-x="928.6" />
<glyph glyph-name="attention-alt" unicode="&#xe850;" d="m286 154v-125q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v125q0 14 11 25t25 10h143q15 0 25-10t11-25z m16 589l-15-429q-1-14-12-25t-25-10h-143q-14 0-25 10t-12 25l-15 429q-1 14 9 25t25 11h179q14 0 25-11t9-25z" horiz-adv-x="357.1" />
<glyph glyph-name="attention" unicode="&#xe851;" d="m571 83v106q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-106q0-8 5-13t12-6h108q7 0 12 6t5 13z m-1 208l10 257q0 6-5 10q-7 6-14 6h-122q-7 0-14-6q-5-4-5-12l9-255q0-5 6-9t13-3h103q8 0 13 3t6 9z m-7 522l428-786q20-35-1-70q-10-17-26-26t-35-10h-858q-18 0-35 10t-26 26q-21 35-1 70l429 786q9 17 26 27t36 10t36-10t27-27z" horiz-adv-x="1000" />
<glyph glyph-name="attention-circled" unicode="&#xe852;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m71-696v106q0 8-5 13t-12 5h-107q-8 0-13-5t-6-13v-106q0-8 6-13t13-6h107q7 0 12 6t5 13z m-1 192l10 346q0 7-6 10q-5 5-13 5h-123q-8 0-13-5q-6-3-6-10l10-346q0-6 5-10t14-4h103q8 0 13 4t6 10z" horiz-adv-x="857.1" />
<glyph glyph-name="location" unicode="&#xe853;" d="m429 493q0 59-42 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t42 101z m142 0q0-61-18-100l-203-432q-9-18-27-29t-37-11t-38 11t-26 29l-204 432q-18 39-18 100q0 118 84 202t202 84t202-84t83-202z" horiz-adv-x="571.4" />
<glyph glyph-name="direction" unicode="&#xe854;" d="m782 655l-357-714q-10-20-32-20q-3 0-8 1q-13 3-20 13t-8 22v322h-321q-13 0-22 7t-13 20t2 23t17 17l714 357q7 4 16 4q15 0 25-10q8-8 10-20t-3-22z" horiz-adv-x="785.7" />
<glyph glyph-name="compass" unicode="&#xe855;" d="m357 243l143 71l-143 72v-143z m214 330v-303l-285-143v303z m161-223q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="doc" unicode="&#xe857;" d="m71-7h572v428h-232q-23 0-38 16t-16 38v232h-286v-714z m358 500h209q-5 16-12 23l-175 174q-6 7-22 13v-210z m285-18v-500q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h357q22 0 49-12t42-26l174-175q16-15 27-42t11-49z" horiz-adv-x="714.3" />
<glyph glyph-name="docs" unicode="&#xe858;" d="m946 636q23 0 38-16t16-38v-678q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v160h-303q-23 0-38 16t-16 38v375q0 22 11 49t27 42l228 228q15 16 42 27t49 11h232q23 0 38-16t16-38v-183q38 23 71 23h232z m-303-119l-167-167h167v167z m-357 214l-167-167h167v167z m109-361l176 176v233h-214v-233q0-22-15-38t-38-15h-233v-357h286v143q0 22 11 49t27 42z m534-449v643h-215v-232q0-22-15-38t-38-15h-232v-358h500z" horiz-adv-x="1000" />
<glyph glyph-name="doc-text" unicode="&#xe945;" d="m571 189v-35q0-8-5-13t-12-5h-393q-8 0-13 5t-5 13v35q0 8 5 13t13 5h393q7 0 12-5t5-13z m0 143v-36q0-7-5-12t-12-5h-393q-8 0-13 5t-5 12v36q0 8 5 13t13 5h393q7 0 12-5t5-13z m-500-339h572v428h-232q-23 0-38 16t-16 38v232h-286v-714z m358 500h209q-5 16-12 23l-175 174q-6 7-22 13v-210z m285-18v-500q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h357q22 0 49-12t42-26l174-175q16-15 27-42t11-49z" horiz-adv-x="714.3" />
<glyph glyph-name="file" unicode="&#xe946;" d="m714 421v-446q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h303v-304q0-22 16-38t38-16h303z m-1 72h-284v284q45-8 73-36l174-175q28-27 37-73z" horiz-adv-x="714.3" />
<glyph glyph-name="doc-text-inv" unicode="&#xe947;" d="m571 82v36q0 8-5 13t-12 5h-393q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h393q7 0 12 5t5 13z m0 143v36q0 8-5 13t-12 5h-393q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h393q7 0 12 5t5 13z m143 196v-446q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h303v-304q0-22 16-38t38-16h303z m-1 72h-284v284q45-8 73-36l174-175q28-27 37-73z" horiz-adv-x="714.3" />
<glyph glyph-name="folder-empty" unicode="&#xe85a;" d="m857 118v393q0 22-15 38t-38 15h-393q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-536q0-22 16-38t38-16h679q22 0 38 16t15 38z m72 393v-393q0-51-37-88t-88-37h-679q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h375q51 0 88-37t37-88z" horiz-adv-x="928.6" />
<glyph glyph-name="folder-open-empty" unicode="&#xe85b;" d="m994 330q0 20-30 20h-607q-22 0-48-12t-39-29l-164-203q-11-13-11-22q0-20 30-20h607q22 0 48 13t40 29l164 203q10 12 10 21z m-637 91h429v90q0 22-16 38t-38 15h-321q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-476l143 175q25 30 65 49t78 19z m708-91q0-34-25-66l-165-203q-24-30-65-49t-78-19h-607q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q51 0 88-37t37-88v-90h107q30 0 56-13t37-40q8-17 8-38z" horiz-adv-x="1071.4" />
<glyph glyph-name="box" unicode="&#xe85c;" d="m607 386q0 14-10 25t-26 10h-142q-15 0-26-10t-10-25t10-25t26-11h142q15 0 26 11t10 25z m322 107v-536q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v536q0 14 11 25t25 11h786q14 0 25-11t11-25z m35 250v-143q0-15-10-25t-25-11h-858q-14 0-25 11t-10 25v143q0 14 10 25t25 11h858q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="rss" unicode="&#xe85d;" d="m214 100q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m286-69q1-15-9-26q-11-12-27-12h-75q-14 0-24 9t-11 23q-12 128-103 219t-219 103q-14 1-23 11t-9 24v75q0 16 12 26q9 10 24 10h3q89-7 170-45t145-101q63-63 101-145t45-171z m286-1q1-15-10-26q-10-11-26-11h-80q-14 0-25 10t-11 23q-6 120-56 228t-129 188t-188 129t-227 57q-14 0-24 11t-10 24v80q0 15 11 26q10 10 25 10h1q147-8 280-67t238-164q104-104 164-238t67-280z" horiz-adv-x="785.7" />
<glyph glyph-name="rss-squared" unicode="&#xe85e;" d="m286 136q0 29-21 50t-51 21t-50-21t-21-50t21-51t50-21t51 21t21 51z m196-53q-8 130-99 221t-221 99q-8 1-14-5t-5-13v-71q0-8 5-13t12-5q86-6 147-68t67-147q1-7 6-12t12-5h72q7 0 13 6t5 13z m214 0q-3 86-31 166t-78 145t-115 114t-145 78t-166 31q-8 1-13-5q-5-5-5-13v-71q0-7 5-12t12-6q114-4 211-62t156-155t62-211q0-8 5-13t13-5h71q7 0 13 6q6 5 5 13z m161 535v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="phone" unicode="&#xe85f;" d="m786 158q0-15-6-39t-12-38q-11-28-68-60q-52-28-103-28q-16 0-30 2t-32 7t-26 8t-31 11t-28 10q-54 20-97 47q-72 44-148 120t-120 148q-27 43-46 97q-2 5-10 28t-12 31t-8 26t-7 32t-2 29q0 52 29 104q31 56 59 68q14 6 38 12t39 6q8 0 12-2q10-3 30-43q6-10 16-30t20-35t17-30q2-2 10-14t12-20t4-16q0-11-16-28t-35-30t-34-30t-16-25q0-5 3-13t4-11t8-14t7-10q42-77 97-132t131-97q1 0 10-6t14-8t11-5t13-2q10 0 25 15t30 35t31 35t28 16q7 0 15-4t20-12t14-10q14-8 30-17t35-20t31-17q39-19 42-29q2-4 2-12z" horiz-adv-x="785.7" />
<glyph glyph-name="phone-squared" unicode="&#xe860;" d="m714 184q0 6-1 9q-1 5-21 17t-50 27l-29 16q-3 2-11 8t-14 8t-12 3q-10 0-26-18t-32-37t-24-18q-4 0-9 2t-9 3t-9 6t-8 4q-56 31-95 71t-71 95q-1 2-5 8t-5 9t-4 9t-2 9q0 8 12 19t25 21t25 23t11 20q0 5-2 12t-9 14t-7 10q-2 4-8 16t-14 25t-15 27t-14 23t-9 10t-9 1q-27 0-56-13q-26-11-45-52t-19-73q0-9 1-19t3-17t5-19t6-16t7-18t6-17q33-92 121-179t178-121q4-1 17-6t19-7t16-5t18-5t17-3t19-2q32 0 73 19t53 45q12 30 12 56z m143 434v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="menu" unicode="&#xe861;" d="m857 100v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 25t25 11h785q15 0 26-11t10-25z m0 286v-72q0-14-10-25t-26-10h-785q-15 0-25 10t-11 25v72q0 14 11 25t25 10h785q15 0 26-10t10-25z m0 285v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 26t25 10h785q15 0 26-10t10-26z" horiz-adv-x="857.1" />
<glyph glyph-name="cog" unicode="&#xe862;" d="m571 350q0 59-41 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t41 101z m286 61v-124q0-7-4-13t-11-7l-104-16q-10-30-21-51q19-27 59-77q6-6 6-13t-5-13q-15-21-55-61t-53-39q-7 0-14 5l-77 60q-25-13-51-21q-9-76-16-104q-4-16-20-16h-124q-8 0-14 5t-6 12l-16 103q-27 9-50 21l-79-60q-6-5-14-5q-8 0-14 6q-70 64-92 94q-4 5-4 13q0 6 5 12q8 12 28 37t30 40q-15 28-23 55l-102 15q-7 1-11 7t-5 13v124q0 7 5 13t10 7l104 16q8 25 22 51q-23 32-60 77q-6 7-6 14q0 5 5 12q15 20 55 60t53 40q7 0 15-5l77-60q24 13 50 21q9 76 17 104q3 15 20 15h124q7 0 13-4t7-12l15-103q28-9 50-21l80 60q5 5 13 5q7 0 14-5q72-67 92-95q4-5 4-13q0-6-4-12q-9-12-29-38t-30-39q14-28 23-55l102-15q7-1 12-7t4-13z" horiz-adv-x="857.1" />
<glyph glyph-name="cog-alt" unicode="&#xe863;" d="m500 350q0 59-42 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t42 101z m429-286q0 29-22 51t-50 21t-50-21t-21-51q0-29 21-50t50-21t51 21t21 50z m0 572q0 29-22 50t-50 21t-50-21t-21-50q0-30 21-51t50-21t51 21t21 51z m-215-235v-103q0-6-4-11t-9-6l-86-14q-6-19-18-42q19-27 50-64q4-6 4-11q0-7-4-11q-13-17-46-50t-44-33q-6 0-11 4l-64 50q-21-11-43-17q-6-60-13-87q-4-13-17-13h-104q-6 0-11 4t-5 10l-13 85q-19 6-42 18l-66-50q-4-4-11-4q-6 0-12 4q-80 75-80 90q0 5 4 10q5 8 23 30t26 34q-13 24-20 46l-85 13q-5 1-9 5t-4 11v103q0 6 4 11t9 6l86 14q7 19 18 42q-19 27-50 64q-4 6-4 11q0 7 4 11q12 17 46 50t44 33q6 0 12-4l64-50q19 10 43 18q6 60 13 86q3 13 16 13h104q6 0 11-4t6-10l13-85q19-6 41-17l66 49q5 4 11 4q7 0 12-4q81-75 81-90q0-5-4-10q-7-9-24-30t-25-34q13-27 19-46l85-12q5-2 9-6t4-11z m357-298v-78q0-9-83-17q-6-15-16-29q28-63 28-77q0-2-2-4q-68-40-69-40q-5 0-26 27t-29 37q-11-1-17-1t-17 1q-7-11-29-37t-25-27q-1 0-69 40q-3 2-3 4q0 14 29 77q-10 14-17 29q-83 8-83 17v78q0 9 83 18q7 16 17 29q-29 63-29 77q0 2 3 4q2 1 19 11t33 19t17 9q4 0 25-26t29-38q12 1 17 1t17-1q28 40 51 63l4 1q2 0 69-39q2-2 2-4q0-14-28-77q9-13 16-29q83-9 83-18z m0 572v-78q0-9-83-18q-6-15-16-29q28-63 28-77q0-2-2-4q-68-39-69-39q-5 0-26 26t-29 38q-11-1-17-1t-17 1q-7-12-29-38t-25-26q-1 0-69 39q-3 2-3 4q0 14 29 77q-10 14-17 29q-83 9-83 18v78q0 9 83 17q7 16 17 29q-29 63-29 77q0 2 3 4q2 1 19 11t33 19t17 9q4 0 25-26t29-38q12 2 17 2t17-2q28 40 51 63l4 1q2 0 69-39q2-2 2-4q0-14-28-77q9-13 16-29q83-8 83-17z" horiz-adv-x="1071.4" />
<glyph glyph-name="wrench" unicode="&#xe864;" d="m214 29q0 14-10 25t-25 10t-26-10t-10-25t10-26t26-10t25 10t10 26z m360 234l-381-381q-21-20-50-20q-29 0-51 20l-59 61q-21 20-21 50q0 29 21 51l380 380q22-55 64-97t97-64z m353 243q0-22-12-59q-27-75-92-122t-144-46q-104 0-177 73t-73 177t73 176t177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45t40 20q8 0 13-5t4-14z" horiz-adv-x="928.6" />
<glyph glyph-name="basket" unicode="&#xe865;" d="m357-7q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m500 0q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m72 607v-286q0-13-9-23t-23-12l-583-68q1-4 3-12t3-15t1-13q0-8-13-35h513q15 0 26-11t10-25t-10-25t-26-11h-571q-14 0-25 11t-11 25q0 8 6 22t17 33t11 21l-98 460h-114q-15 0-25 10t-11 25t11 26t25 10h143q9 0 16-3t11-9t7-14t4-15t3-16t3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar" unicode="&#xe866;" d="m71-79h161v161h-161v-161z m197 0h178v161h-178v-161z m-197 197h161v178h-161v-178z m197 0h178v178h-178v-178z m-197 214h161v161h-161v-161z m411-411h179v161h-179v-161z m-214 411h178v161h-178v-161z m428-411h161v161h-161v-161z m-214 197h179v178h-179v-178z m-196 482v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161q0-7 6-13t12-5h36q7 0 12 5t6 13z m410-482h161v178h-161v-178z m-214 214h179v161h-179v-161z m214 0h161v161h-161v-161z m18 268v161q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-161q0-7 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar-empty" unicode="&#xe867;" d="m71-79h786v572h-786v-572z m215 679v161q0 8-5 13t-13 5h-36q-8 0-13-5t-5-13v-161q0-8 5-13t13-5h36q8 0 13 5t5 13z m428 0v161q0 8-5 13t-13 5h-35q-8 0-13-5t-5-13v-161q0-8 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="login" unicode="&#xe868;" d="m661 350q0-14-11-25l-303-304q-11-10-26-10t-25 10t-10 25v161h-250q-15 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 10 25t25 10t26-10l303-304q11-10 11-25z m196 196v-392q0-67-47-114t-114-47h-178q-7 0-13 5t-5 13q0 2-1 11t0 15t2 13t5 11t12 3h178q37 0 63 27t27 63v392q0 37-27 63t-63 27h-174t-6 0t-6 2t-5 3t-4 5t-1 8q0 2-1 11t0 15t2 13t5 11t12 3h178q67 0 114-47t47-114z" horiz-adv-x="857.1" />
<glyph glyph-name="logout" unicode="&#xe949;" d="m357 46q0-2 1-11t0-14t-2-14t-5-11t-12-3h-178q-67 0-114 47t-47 114v392q0 67 47 114t114 47h178q8 0 13-5t5-13q0-2 1-11t0-15t-2-13t-5-11t-12-3h-178q-37 0-63-27t-27-63v-392q0-37 27-63t63-27h174t6 0t7-2t4-3t4-5t1-8z m518 304q0-14-11-25l-303-304q-11-10-25-10t-25 10t-11 25v161h-250q-14 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 11 25t25 10t25-10l303-304q11-10 11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="mic" unicode="&#xe94a;" d="m643 457v-71q0-124-82-215t-204-104v-74h143q15 0 25-11t11-25t-11-25t-25-11h-357q-15 0-25 11t-11 25t11 25t25 11h143v74q-121 13-204 104t-82 215v71q0 15 11 25t25 11t25-11t10-25v-71q0-104 74-177t176-73t177 73t73 177v71q0 15 11 25t25 11t25-11t11-25z m-143 214v-285q0-74-52-126t-127-53t-126 53t-52 126v285q0 74 52 127t126 52t127-52t52-127z" horiz-adv-x="642.9" />
<glyph glyph-name="mute" unicode="&#xe94b;" d="m151 323l-56-57q-24 58-24 120v71q0 15 11 25t25 11t25-11t11-25v-71q0-30 8-63z m622 336l-202-202v-71q0-74-52-126t-126-53q-31 0-61 11l-54-54q55-28 115-28q103 0 176 73t74 177v71q0 15 10 25t26 11t25-11t10-25v-71q0-124-82-215t-203-104v-74h142q15 0 26-11t10-25t-10-25t-26-11h-357q-14 0-25 11t-10 25t10 25t25 11h143v74q-70 7-131 45l-142-142q-5-6-13-6t-12 6l-46 46q-6 5-6 13t6 12l688 689q6 6 13 6t13-6l46-46q5-5 5-13t-5-12z m-212 73l-347-346v285q0 74 53 127t126 52q57 0 103-33t65-85z" horiz-adv-x="785.7" />
<glyph glyph-name="volume-off" unicode="&#xe94c;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z" horiz-adv-x="428.6" />
<glyph glyph-name="volume-down" unicode="&#xe869;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z m214-304q0-42-24-79t-63-52q-5-3-14-3q-14 0-25 10t-10 26q0 12 6 20t17 14t19 12t16 20t6 32t-6 32t-16 20t-19 12t-17 14t-6 20q0 15 10 26t25 10q9 0 14-3q39-15 63-52t24-79z" horiz-adv-x="642.9" />
<glyph glyph-name="volume-up" unicode="&#xe86a;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z m214-304q0-42-24-79t-63-52q-5-3-14-3q-14 0-25 10t-10 26q0 12 6 20t17 14t19 12t16 20t6 32t-6 32t-16 20t-19 12t-17 14t-6 20q0 15 10 26t25 10q9 0 14-3q39-15 63-52t24-79z m143 0q0-85-48-158t-125-105q-8-3-14-3q-15 0-26 11t-10 25q0 22 21 33q32 16 43 25q41 30 64 75t23 97t-23 97t-64 75q-11 9-43 25q-21 11-21 33q0 14 10 25t25 11q7 0 15-3q78-33 125-105t48-158z m143 0q0-128-71-236t-189-158q-7-3-14-3q-15 0-26 11t-10 25q0 20 22 33q4 2 12 6t13 6q25 14 45 28q69 51 108 127t38 161t-38 161t-108 127q-20 14-45 28q-4 3-13 6t-12 6q-22 13-22 33q0 14 10 25t26 11q7 0 14-3q118-51 189-158t71-236z" horiz-adv-x="928.6" />
<glyph glyph-name="headphones" unicode="&#xe86b;" d="m929 356q0-93-34-176l-11-27l-103-18q-13-47-51-77t-87-29v-18q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13v-18q39 0 72-20t52-53l38 7q16 53 16 108q0 82-49 155t-132 117t-176 43t-176-43t-132-117t-49-156q0-54 16-107l38-7q19 34 52 53t73 20v18q0 8 5 13t13 5h35q8 0 13-5t5-13v-321q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v18q-49 0-88 29t-50 77l-103 18l-11 27q-34 83-34 175q0 85 37 163t100 135t149 91t178 34t179-34t148-91t100-135t38-163z" horiz-adv-x="928.6" />
<glyph glyph-name="clock" unicode="&#xe86c;" d="m500 546v-250q0-7-5-12t-13-5h-178q-8 0-13 5t-5 12v36q0 8 5 13t13 5h125v196q0 8 5 13t12 5h36q8 0 13-5t5-13z m232-196q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="lightbulb" unicode="&#xe86d;" d="m411 529q0-8-6-13t-12-5t-13 5t-5 13q0 25-30 39t-59 14q-8 0-13 5t-5 13t5 13t13 5q28 0 55-9t49-30t21-50z m89 0q0 40-19 74t-50 57t-69 35t-76 12t-76-12t-69-35t-50-57t-20-74q0-57 38-101q6-6 17-18t17-19q72-85 79-166h127q8 81 79 166q6 6 17 19t17 18q38 44 38 101z m71 0q0-87-57-150q-25-27-42-49t-33-53t-19-60q26-15 26-46q0-20-14-35q14-15 14-36q0-29-25-45q8-13 8-26q0-26-18-40t-43-14q-11-25-34-39t-48-15t-49 15t-33 39q-26 0-44 14t-17 40q0 13 7 26q-25 16-25 45q0 21 14 36q-14 15-14 35q0 31 26 46q-2 28-19 60t-33 53t-41 49q-58 63-58 150q0 55 25 103t65 79t92 49t104 19t104-19t91-49t66-79t24-103z" horiz-adv-x="571.4" />
<glyph glyph-name="block" unicode="&#xe86e;" d="m732 352q0 90-48 164l-421-420q76-50 166-50q62 0 118 25t96 65t65 97t24 119z m-557-167l421 421q-75 50-167 50q-83 0-153-40t-110-112t-41-152q0-91 50-167z m682 167q0-88-34-168t-91-137t-137-92t-166-34t-167 34t-137 92t-91 137t-34 168t34 167t91 137t137 91t167 34t166-34t137-91t91-137t34-167z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full-alt" unicode="&#xe870;" d="m716 548l-198-198l198-198l80 80q16 18 39 8q22-9 22-33v-250q0-14-10-25t-26-11h-250q-23 0-32 23q-10 21 7 38l81 81l-198 198l-198-198l80-81q17-17 8-38q-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33q22 10 39-8l80-80l198 198l-198 198l-80-80q-11-11-25-11q-7 0-14 3q-22 9-22 33v250q0 14 11 25t25 11h250q23 0 33-23q9-22-8-38l-80-81l198-198l198 198l-81 81q-17 16-7 38q9 23 32 23h250q15 0 26-11t10-25v-250q0-24-22-33q-7-3-14-3q-14 0-25 11z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-small" unicode="&#xe871;" d="m429 314v-250q0-14-11-25t-25-10t-25 10l-81 81l-185-186q-5-5-13-5t-13 5l-63 64q-6 5-6 13t6 13l185 185l-80 80q-11 11-11 25t11 25t25 11h250q14 0 25-11t11-25z m421 375q0-7-6-13l-185-185l80-80q11-11 11-25t-11-25t-25-11h-250q-14 0-25 11t-10 25v250q0 14 10 25t25 10t25-10l81-81l185 186q6 5 13 5t13-5l63-64q6-5 6-13z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-vertical" unicode="&#xe872;" d="m393 671q0-14-11-25t-25-10h-71v-572h71q15 0 25-10t11-25t-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-10 11-10 26t10 25t25 10h72v572h-72q-14 0-25 10t-10 25t10 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26z" horiz-adv-x="428.6" />
<glyph glyph-name="resize-horizontal" unicode="&#xe873;" d="m1000 350q0-14-11-25l-142-143q-11-11-26-11t-25 11t-10 25v72h-572v-72q0-14-10-25t-25-11t-25 11l-143 143q-11 11-11 25t11 25l143 143q10 11 25 11t25-11t10-25v-72h572v72q0 14 10 25t25 11t26-11l142-143q11-10 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="move" unicode="&#xe874;" d="m1000 350q0-14-11-25l-142-143q-11-11-26-11t-25 11t-10 25v72h-215v-215h72q14 0 25-10t11-25t-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-11 11-11 26t11 25t25 10h72v215h-215v-72q0-14-10-25t-25-11t-26 11l-142 143q-11 11-11 25t11 25l142 143q11 11 26 11t25-11t10-25v-72h215v215h-72q-14 0-25 10t-11 25t11 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26t-11-25t-25-10h-72v-215h215v72q0 14 10 25t25 11t26-11l142-143q11-10 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="zoom-in" unicode="&#xe875;" d="m571 404v-36q0-7-5-13t-12-5h-125v-125q0-7-6-13t-12-5h-36q-7 0-13 5t-5 13v125h-125q-7 0-12 5t-6 13v36q0 7 6 12t12 5h125v125q0 8 5 13t13 5h36q7 0 12-5t6-13v-125h125q7 0 12-5t5-12z m72-18q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="zoom-out" unicode="&#xe876;" d="m571 404v-36q0-7-5-13t-12-5h-322q-7 0-12 5t-6 13v36q0 7 6 12t12 5h322q7 0 12-5t5-12z m72-18q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="down-circled2" unicode="&#xe877;" d="m625 332q0-7-6-13l-178-178q-6-5-12-5t-13 5l-179 178q-8 9-4 20q5 11 17 11h107v196q0 8 5 13t13 5h107q8 0 13-5t5-13v-196h107q8 0 13-5t5-13z m-196 322q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="up-circled2" unicode="&#xe878;" d="m624 361q-5-11-17-11h-107v-196q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v196h-107q-8 0-13 5t-5 13q0 7 6 13l178 178q6 5 13 5t12-5l179-178q8-9 4-20z m-195 293q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="down-dir" unicode="&#xe94d;" d="m571 457q0-14-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25t25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="up-dir" unicode="&#xe94e;" d="m571 171q0-14-10-25t-25-10h-500q-15 0-25 10t-11 25t11 26l250 250q10 10 25 10t25-10l250-250q10-11 10-26z" horiz-adv-x="571.4" />
<glyph glyph-name="left-dir" unicode="&#xe94f;" d="m357 600v-500q0-14-10-25t-26-11t-25 11l-250 250q-10 11-10 25t10 25l250 250q11 11 25 11t26-11t10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="right-dir" unicode="&#xe950;" d="m321 350q0-14-10-25l-250-250q-11-11-25-11t-25 11t-11 25v500q0 15 11 25t25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="down-open" unicode="&#xe879;" d="m899 457q0-29-21-50l-363-363q-21-22-51-22q-30 0-50 22l-363 363q-21 20-21 50q0 30 21 51l41 42q22 20 51 20q29 0 50-20l271-271l271 271q21 20 51 20q29 0 50-20l42-42q21-22 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="left-open" unicode="&#xe87a;" d="m414-28l-364 364q-20 20-20 50t20 51l364 363q21 20 51 20t50-20l42-42q21-21 21-51t-21-50l-271-271l271-271q21-21 21-51t-21-50l-42-42q-21-20-50-20t-51 20z" horiz-adv-x="642.9" />
<glyph glyph-name="right-open" unicode="&#xe87b;" d="m613 386q0-29-20-51l-364-363q-21-21-50-21t-51 21l-42 42q-21 21-21 50q0 30 21 51l271 271l-271 270q-21 22-21 51q0 30 21 50l42 42q20 21 51 21t50-21l364-363q20-21 20-50z" horiz-adv-x="642.9" />
<glyph glyph-name="up-open" unicode="&#xe87c;" d="m899 171q0-29-21-50l-42-42q-21-21-50-21q-30 0-51 21l-271 271l-271-271q-20-21-50-21t-50 21l-42 42q-21 20-21 50q0 30 21 51l363 363q21 21 50 21q29 0 51-21l363-363q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="angle-left" unicode="&#xe87d;" d="m350 546q0-7-6-12l-219-220l219-219q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-right" unicode="&#xe87e;" d="m332 314q0-7-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-up" unicode="&#xe87f;" d="m600 189q0-7-6-13l-28-27q-5-6-12-6t-13 6l-220 219l-219-219q-5-6-13-6t-13 6l-27 27q-6 6-6 13t6 13l260 260q5 6 12 6t13-6l260-260q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-down" unicode="&#xe880;" d="m600 439q0-7-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13t6 13l27 28q6 6 13 6t13-6l219-219l220 219q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-circled-left" unicode="&#xe881;" d="m507 72l57 56q11 11 11 26t-11 25l-171 171l171 171q11 11 11 25t-11 25l-57 57q-10 11-25 11t-25-11l-253-253q-11-11-11-25t11-25l253-254q11-10 25-10t25 10z m350 278q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-right" unicode="&#xe882;" d="m400 72l253 253q11 11 11 25t-11 25l-253 253q-10 11-25 11t-25-11l-57-56q-11-11-11-26t11-25l171-171l-171-171q-11-11-11-25t11-26l57-57q11-10 25-10t25 10z m457 278q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-up" unicode="&#xe883;" d="m650 214l57 57q11 11 11 25t-11 26l-253 253q-11 10-25 10t-26-10l-253-254q-10-10-10-25t10-25l57-57q11-10 25-10t25 10l172 172l171-172q11-10 25-10t25 10z m207 136q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-down" unicode="&#xe884;" d="m454 125l253 253q11 11 11 26t-11 25l-57 57q-10 10-25 10t-25-10l-171-172l-172 172q-10 10-25 10t-25-10l-57-57q-10-11-10-25t10-26l253-253q11-10 26-10t25 10z m403 225q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-double-left" unicode="&#xe885;" d="m350 82q0-7-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220l219-219q6-6 6-13z m214 0q0-7-5-13l-28-28q-6-5-13-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l28-28q5-5 5-13t-5-12l-220-220l220-219q5-6 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-right" unicode="&#xe886;" d="m332 314q0-7-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13z m214 0q0-7-5-13l-260-260q-6-5-13-5t-13 5l-28 28q-5 6-5 13t5 13l219 219l-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-up" unicode="&#xe887;" d="m600 118q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 219l-219-219q-5-5-13-5t-13 5l-27 28q-6 6-6 13t6 13l260 260q5 5 12 5t13-5l260-260q6-6 6-13z m0 214q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 220l-219-220q-5-5-13-5t-13 5l-27 28q-6 6-6 13t6 13l260 260q5 6 12 6t13-6l260-260q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-double-down" unicode="&#xe888;" d="m600 368q0-7-6-13l-260-260q-5-6-13-6t-12 6l-260 260q-6 6-6 13t6 13l27 28q6 5 13 5t13-5l219-220l220 220q5 5 13 5t12-5l28-28q6-6 6-13z m0 214q0-7-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13t6 13l27 28q6 5 13 5t13-5l219-220l220 220q5 5 13 5t12-5l28-28q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="down" unicode="&#xe951;" d="m427 125q4-10-3-19l-195-215q-6-5-13-5q-8 0-13 5l-198 215q-8 9-3 19q5 11 16 11h125v696q0 8 5 13t13 5h107q8 0 13-5t5-13v-696h125q11 0 16-11z" horiz-adv-x="428.6" />
<glyph glyph-name="right" unicode="&#xe953;" d="m1000 404v-108q0-7-5-12t-13-5h-696v-125q0-12-11-17t-19 3l-215 196q-5 5-5 12q0 8 5 14l215 197q9 8 19 4q11-5 11-17v-125h696q8 0 13-5t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="left" unicode="&#xe952;" d="m964 352q0-8-5-14l-215-197q-9-8-19-4q-11 5-11 17v125h-696q-8 0-13 5t-5 12v108q0 7 5 12t13 5h696v125q0 12 11 17t19-3l215-196q5-5 5-12z" horiz-adv-x="1000" />
<glyph glyph-name="up" unicode="&#xe954;" d="m427 575q-5-11-16-11h-125v-696q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v696h-125q-12 0-16 11t3 19l195 215q5 5 13 5q7 0 13-5l198-215q7-9 3-19z" horiz-adv-x="428.6" />
<glyph glyph-name="down-big" unicode="&#xe889;" d="m899 386q0-30-21-50l-363-364q-22-21-51-21q-29 0-50 21l-363 364q-21 20-21 50q0 29 21 51l41 41q22 21 51 21q29 0 50-21l164-164v393q0 29 21 50t51 22h71q29 0 50-22t21-50v-393l164 164q21 21 51 21q29 0 50-21l42-42q21-21 21-50z" horiz-adv-x="928.6" />
<glyph glyph-name="left-big" unicode="&#xe88a;" d="m857 350v-71q0-30-18-51t-47-21h-393l164-164q21-20 21-50t-21-50l-42-43q-21-20-51-20q-29 0-50 20l-364 364q-20 21-20 50q0 29 20 51l364 363q21 21 50 21q29 0 51-21l42-42q21-21 21-50t-21-51l-164-164h393q29 0 47-20t18-51z" horiz-adv-x="857.1" />
<glyph glyph-name="right-big" unicode="&#xe88b;" d="m821 314q0-30-20-50l-363-364q-22-20-51-20q-29 0-50 20l-42 42q-22 21-22 51t22 51l163 163h-393q-29 0-47 21t-18 51v71q0 30 18 51t47 20h393l-163 164q-22 21-22 51t22 50l42 42q21 21 50 21q29 0 51-21l363-363q20-20 20-51z" horiz-adv-x="857.1" />
<glyph glyph-name="up-big" unicode="&#xe88c;" d="m899 308q0-28-21-50l-42-42q-21-21-50-21q-30 0-51 21l-164 164v-393q0-29-20-47t-51-19h-71q-30 0-51 19t-21 47v393l-164-164q-20-21-50-21t-50 21l-42 42q-21 21-21 50q0 30 21 51l363 363q20 21 50 21q30 0 51-21l363-363q21-22 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="right-hand" unicode="&#xe88d;" d="m143 100q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m786 321q0 29-22 50t-50 22h-321q0 11 8 27t19 31t18 38t8 47q0 37-25 54t-64 17q-13 0-50-77q-14-25-21-37q-22-35-62-81q-40-45-57-59q-38-32-78-32h-18v-357h18q40 0 93-18t108-35t100-18q106 0 106 93q0 14-3 31q17 9 27 30t9 41t-10 38q30 28 30 66q0 14-6 31t-14 27h185q29 0 50 21t22 50z m71 1q0-59-42-101t-101-42h-94q-2-35-21-67q2-12 2-24q0-56-34-99q1-78-47-123t-127-45q-74 0-179 39q-92 33-125 33h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h161q6 0 12 2t13 8t13 10t13 13t12 12t10 12t8 9q36 42 56 72q7 12 18 35t21 40t23 35t30 28t39 10q70 0 115-38t46-105q0-38-13-72h209q58 0 101-42t42-100z" horiz-adv-x="1000" />
<glyph glyph-name="left-hand" unicode="&#xe88e;" d="m768 64h18v357h-18q-20 0-38 7t-35 21t-28 25t-27 31q-1 1-2 2t-2 3t-3 2q-40 46-62 81q-8 13-21 38q-1 2-6 13t-11 20t-11 20t-12 17t-10 6q-40 0-64-17t-25-54q0-24 8-47t19-38t18-31t8-27h-321q-28 0-50-22t-22-50q0-29 22-50t50-21h185q-9-9-14-26t-6-31q0-39 30-67q-10-18-10-38t9-41t27-30q-2-13-2-31q0-47 27-70t75-23q47 0 102 18t109 35t93 18z m161 36q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m71 321v-357q0-29-21-50t-50-21h-161q-33 0-125-33q-106-39-176-39q-80 0-129 44t-48 121l0 3q-34 42-34 99q0 12 2 24q-19 32-21 67h-94q-59 0-101 42t-42 101q0 57 42 100t101 42h209q-13 34-13 72q0 68 46 105t115 37q21 0 39-9t30-28t23-35t21-40t18-35q20-30 56-72q1-1 8-9t10-12t12-12t13-13t13-10t13-8t12-2h161q29 0 50-21t21-51z" horiz-adv-x="1000" />
<glyph glyph-name="up-hand" unicode="&#xe88f;" d="m714-43q0 15-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m72 426q0 106-93 106q-15 0-32-3q-9 17-29 27t-41 9t-39-10q-27 30-66 30q-14 0-31-6t-26-14v185q0 29-22 50t-50 22q-28 0-50-22t-21-50v-321q-11 0-27 8t-31 19t-38 18t-47 8q-37 0-55-25t-17-64q0-13 78-50q25-14 36-21q36-22 81-62q45-40 59-57q32-38 32-78v-18h357v18q0 40 18 93t36 108t18 100z m71 3q0-74-38-179q-33-92-33-125v-161q0-29-21-50t-51-21h-357q-29 0-50 21t-21 50v161q0 6-3 12t-8 13t-10 13t-12 13t-12 12t-12 10t-10 8q-41 36-72 56q-11 7-34 18t-40 21t-36 23t-27 30t-10 39q0 70 37 115t106 46q38 0 71-13v209q0 58 43 101t100 42q58 0 101-42t42-101v-94q35-2 66-21q12 2 24 2q57 0 100-34q77 1 122-47t45-127z" horiz-adv-x="857.1" />
<glyph glyph-name="down-hand" unicode="&#xe890;" d="m786 314q0 47-18 102t-36 109t-18 93v18h-357v-18q0-20-7-38t-20-35t-26-28t-30-27q-5-4-8-7q-45-40-81-62q-12-8-38-21q-1-1-12-6t-20-11t-20-11t-17-12t-7-10q0-40 17-65t55-24q24 0 47 8t38 18t31 19t27 8v-321q0-28 21-50t50-22q29 0 50 22t22 50v184q25-19 57-19q39 0 66 30q18-11 39-11t41 10t29 27q14-2 32-2q47 0 70 27t23 75z m-72 429q0 14-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m143-427q0-79-43-128t-121-48l-3 0q-43-34-100-34q-12 0-24 2q-30-17-66-21v-94q0-59-42-101t-101-42q-58 0-100 42t-43 101v208q-30-12-71-12q-68 0-105 46t-38 115q0 21 10 39t27 30t36 23t40 21t34 18q31 20 72 56q2 1 10 8t12 10t12 12t12 13t10 13t8 13t3 12v160q0 30 21 51t50 21h357q30 0 51-21t21-51v-160q0-33 33-125q38-106 38-177z" horiz-adv-x="857.1" />
<glyph glyph-name="left-circled" unicode="&#xe891;" d="m714 314v72q0 14-10 25t-25 10h-281l106 106q11 11 11 25t-11 25l-51 51q-10 10-25 10t-25-10l-202-202l-51-51q-10-10-10-25t10-25l51-51l202-202q10-10 25-10t25 10l51 51q10 10 10 25t-10 25l-106 106h281q14 0 25 10t10 25z m143 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="right-circled" unicode="&#xe892;" d="m717 350q0 15-10 25l-51 51l-202 202q-10 10-25 10t-25-10l-51-51q-10-10-10-25t10-25l106-106h-280q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h280l-106-106q-10-10-10-25t10-25l51-51q10-10 25-10t25 10l202 202l51 51q10 10 10 25z m140 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="music" unicode="&#xe802;" d="m857 725v-625q0-28-19-50t-48-33t-58-18t-53-6t-54 6t-58 18t-48 33t-19 50t19 50t48 33t58 18t54 6q58 0 107-22v300l-429-132v-396q0-28-19-50t-48-33t-58-18t-53-6t-54 6t-58 18t-48 33t-19 50t19 50t48 34t58 17t54 6q58 0 107-21v539q0 17 10 32t28 19l464 143q7 3 16 3q22 0 38-16t15-38z" horiz-adv-x="857.1" />
<glyph glyph-name="down-circled" unicode="&#xe894;" d="m717 349q0 16-11 26l-50 50q-10 10-25 10t-26-10l-105-105v280q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-280l-105 105q-11 11-25 11t-26-11l-50-50q-10-10-10-26t10-25l202-202l50-50q11-10 26-10t25 10l50 50l202 202q11 10 11 25z m140 1q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="cw" unicode="&#xe895;" d="m857 707v-250q0-14-10-25t-26-11h-250q-23 0-32 23q-10 22 7 38l77 77q-82 77-194 77q-58 0-111-23t-91-61t-62-91t-22-111t22-111t62-91t91-61t111-23q66 0 125 29t100 82q4 6 13 7q8 0 14-5l76-77q5-4 6-11t-5-13q-60-74-147-114t-182-41q-87 0-167 34t-136 92t-92 137t-34 166t34 166t92 137t136 92t167 34q82 0 158-31t137-88l72 72q16 18 39 8q22-9 22-33z" horiz-adv-x="857.1" />
<glyph glyph-name="ccw" unicode="&#xe896;" d="m857 350q0-87-34-166t-91-137t-137-92t-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5q9-1 13-7q41-53 100-82t126-29q58 0 110 23t92 61t61 91t22 111t-22 111t-61 91t-92 61t-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38q-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33q22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92t91-137t34-166z" horiz-adv-x="857.1" />
<glyph glyph-name="refresh" unicode="&#xe897;" d="m843 261q0-3 0-4q-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11t-11 25v250q0 14 11 25t25 11h250q14 0 25-11t10-25t-10-25l-77-77q40-37 90-57t105-20q74 0 139 37t104 99q6 10 29 66q5 13 17 13h107q8 0 13-6t5-12z m14 446v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25t10 25l77 77q-82 77-194 77q-75 0-140-37t-104-99q-6-10-29-66q-5-13-17-13h-111q-7 0-13 6t-5 12v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="level-up" unicode="&#xe898;" d="m568 514q-10-21-32-21h-107v-482q0-8-5-13t-13-5h-393q-12 0-16 10q-5 11 2 19l89 108q5 6 14 6h179v357h-107q-23 0-33 21q-9 20 5 37l179 215q10 12 27 12t28-12l178-215q15-17 5-37z" horiz-adv-x="571.4" />
<glyph glyph-name="level-down" unicode="&#xe955;" d="m18 707h393q7 0 12-5t6-13v-482h107q22 0 32-20t-5-39l-178-214q-11-13-28-13t-27 13l-179 214q-14 17-5 39q10 20 33 20h107v357h-179q-8 0-14 6l-89 108q-7 7-2 19q5 10 16 10z" horiz-adv-x="571.4" />
<glyph glyph-name="shuffle" unicode="&#xe956;" d="m372 582q-34-52-77-153q-12 25-20 41t-23 35t-28 32t-36 19t-45 8h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q139 0 229-125z m628-446q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107q-18 0-48 0t-45-1t-41 1t-39 3t-36 6t-35 10t-32 16t-33 22t-31 30t-31 39q33 52 76 152q12-25 20-40t23-36t28-31t35-20t46-8h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z m0 500q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107h-143q-27 0-49-8t-38-25t-29-35t-25-43q-18-34-43-95q-16-37-28-62t-30-59t-36-55t-41-47t-50-38t-60-23t-71-10h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q27 0 48 9t39 25t28 34t26 43q17 35 43 96q16 36 28 62t30 58t36 56t41 46t50 38t59 24t72 9h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="exchange" unicode="&#xe957;" d="m1000 189v-107q0-7-5-12t-13-6h-768v-107q0-7-5-12t-13-6q-6 0-13 6l-178 178q-5 5-5 13q0 8 5 13l179 178q5 5 12 5q8 0 13-5t5-13v-107h768q7 0 13-5t5-13z m0 304q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107h-768q-7 0-13 6t-5 12v107q0 8 5 13t13 5h768v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="collapse" unicode="&#xe958;" d="m639 473q10-19-3-36l-178-250q-11-16-29-16t-29 16l-179 250q-13 17-3 36q10 20 32 20h357q22 0 32-20z m75-391v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536q0-7 5-12t13-6h535q8 0 13 6t5 12z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="collapse-top" unicode="&#xe899;" d="m639 227q-10-20-32-20h-357q-22 0-32 20q-10 19 3 37l179 250q10 15 29 15t29-15l178-250q13-18 3-37z m75-145v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536q0-7 5-12t13-6h535q8 0 13 6t5 12z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="expand" unicode="&#xe89a;" d="m607 350q0-18-15-29l-250-179q-17-12-37-2q-19 9-19 31v358q0 22 19 31q20 10 37-2l250-179q15-11 15-29z m107-268v536q0 8-5 13t-13 5h-535q-8 0-13-5t-5-13v-536q0-8 5-13t13-5h535q8 0 13 5t5 13z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="play" unicode="&#xe89b;" d="m772 333l-741-412q-13-7-22-2t-9 20v822q0 14 9 20t22-2l741-412q13-7 13-17t-13-17z" horiz-adv-x="785.7" />
<glyph glyph-name="play-circled" unicode="&#xe89c;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m214-460q18 10 18 31t-18 31l-304 178q-17 11-35 1q-18-11-18-31v-358q0-20 18-31q9-4 17-4q10 0 18 5z" horiz-adv-x="857.1" />
<glyph glyph-name="play-circled2" unicode="&#xe89d;" d="m661 350q0-21-18-31l-304-178q-8-5-18-5q-8 0-17 4q-18 11-18 31v358q0 20 18 31q18 10 35-1l304-178q18-10 18-31z m71 0q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="stop" unicode="&#xe89e;" d="m857 743v-786q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25v786q0 14 11 25t25 11h785q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="pause" unicode="&#xe800;" d="m857 743v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z m-500 0v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="to-end" unicode="&#xe8a0;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v379q0 14 10 25t25 11h72q14 0 25-11t10-25v-786q0-14-10-25t-25-11h-72q-14 0-25 11t-10 25v379q-3-6-8-11z" horiz-adv-x="571.4" />
<glyph glyph-name="to-end-alt" unicode="&#xe8a1;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q4-4 7-11v379q0 14 11 25t25 11h71q15 0 25-11t11-25v-786q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v379q-3-6-7-11l-396-396q-11-11-18-8t-7 18v397q-3-6-8-11z" horiz-adv-x="1000" />
<glyph glyph-name="to-start" unicode="&#xe8a2;" d="m546 771q11 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11z" horiz-adv-x="571.4" />
<glyph glyph-name="to-start-alt" unicode="&#xe8a3;" d="m975 771q10 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-8 11v-397q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11l396 396q11 11 18 8t7-18v-396q3 6 8 10z" horiz-adv-x="1000" />
<glyph glyph-name="fast-fw" unicode="&#xe8a4;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q10-11 10-25t-10-25l-396-396q-11-11-18-8t-7 18v396q-3-5-8-10z" horiz-adv-x="928.6" />
<glyph glyph-name="fast-bw" unicode="&#xe8a5;" d="m903 771q11 11 18 8t8-18v-822q0-14-8-18t-18 8l-396 396q-4 5-7 11v-397q0-14-7-18t-18 8l-396 396q-11 11-11 25t11 25l396 396q11 11 18 8t7-18v-396q3 6 7 10z" horiz-adv-x="928.6" />
<glyph glyph-name="eject" unicode="&#xe8a6;" d="m8 304l396 396q11 10 25 10t25-10l396-396q11-11 8-18t-18-8h-822q-14 0-17 8t7 18z m814-311h-786q-14 0-25 10t-10 26v142q0 15 10 26t25 10h786q14 0 25-10t11-26v-142q0-15-11-26t-25-10z" horiz-adv-x="858.3" />
<glyph glyph-name="signal" unicode="&#xe8a8;" d="m143 46v-107q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v107q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 72v-179q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v179q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 143v-322q0-8-5-13t-12-5h-108q-7 0-12 5t-5 13v322q0 8 5 13t12 5h108q7 0 12-5t5-13z m215 214v-536q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v536q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 286v-822q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v822q0 8 5 13t13 5h107q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="award" unicode="&#xe959;" d="m256 357q-42 91-42 207h-143v-53q0-44 53-91t132-63z m601 154v53h-143q0-116-41-207q79 16 131 63t53 91z m72 71v-71q0-40-24-80t-62-73t-97-54t-120-25q-23-30-53-53q-21-19-29-40t-8-50q0-30 17-51t54-21q42 0 75-25t32-64v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 39 33 64t74 25q38 0 55 21t17 51q0 28-8 50t-30 40q-29 23-53 53q-63 3-120 25t-96 54t-63 73t-23 80v71q0 22 16 38t38 16h160v53q0 37 27 63t63 27h321q37 0 63-27t26-63v-53h161q22 0 38-16t16-38z" horiz-adv-x="928.6" />
<glyph glyph-name="desktop" unicode="&#xe95a;" d="m1000 296v465q0 7-5 12t-13 6h-893q-7 0-12-6t-6-12v-465q0-7 6-12t12-5h893q7 0 13 5t5 12z m71 465v-607q0-37-26-63t-63-27h-303q0-20 9-43t17-40t9-24q0-14-10-25t-25-11h-286q-15 0-25 11t-11 25q0 8 9 25t18 39t9 43h-304q-36 0-63 27t-26 63v607q0 37 26 63t63 26h893q37 0 63-26t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="laptop" unicode="&#xe90e;" d="m232 136q-37 0-63 26t-26 63v393q0 37 26 63t63 26h607q37 0 63-26t27-63v-393q0-37-27-63t-63-26h-607z m-18 482v-393q0-7 6-13t12-5h607q8 0 13 5t5 13v393q0 7-5 12t-13 6h-607q-7 0-12-6t-6-12z m768-518h89v-54q0-22-26-37t-63-16h-893q-36 0-63 16t-26 37v54h982z m-402-54q9 0 9 9t-9 9h-89q-9 0-9-9t9-9h89z" horiz-adv-x="1071.4" />
<glyph glyph-name="tablet" unicode="&#xe95c;" d="m357 64q0 15-10 25t-26 11t-25-11t-10-25t10-25t25-10t26 10t10 25z m214 90v535q0 8-5 13t-12 5h-465q-7 0-12-5t-6-13v-535q0-8 6-13t12-5h465q7 0 12 5t5 13z m72 535v-607q0-37-26-63t-63-26h-465q-36 0-63 26t-26 63v607q0 37 26 63t63 27h465q36 0 63-27t26-63z" horiz-adv-x="642.9" />
<glyph glyph-name="mobile" unicode="&#xe8a9;" d="m259 64q0 19-13 32t-32 13t-31-13t-13-32t13-31t31-13t32 13t13 31z m116 90v392q0 8-5 13t-13 5h-286q-7 0-12-5t-5-13v-392q0-8 5-13t12-5h286q7 0 13 5t5 13z m-107 473q0 9-9 9h-89q-9 0-9-9t9-9h89q9 0 9 9z m161 9v-572q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v572q0 29 21 50t50 21h286q29 0 50-21t22-50z" horiz-adv-x="428.6" />
<glyph glyph-name="inbox" unicode="&#xe8aa;" d="m571 314h176q0 2-1 5t-2 4l-118 277h-395l-118-277q-1-1-2-4t-1-5h176l53-107h179z m286-16v-269q0-15-10-26t-26-10h-785q-15 0-25 10t-11 26v269q0 34 14 68l133 308q5 14 20 24t29 9h465q14 0 29-9t20-24l133-308q14-34 14-68z" horiz-adv-x="857.1" />
<glyph glyph-name="globe" unicode="&#xe8ab;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m152-291q-1-1-5-5t-7-6q1 0 2 3t3 6t2 4q3 4 12 8q8 4 29 7q19 5 29-6q-1 1 5 7t8 7q2 1 8 2t9 5l1 12q-7-1-10 4t-3 12q0-2-4-5q0 4-2 5t-7-1t-5-1q-5 2-8 5t-5 9t-2 8q-1 3-5 6t-5 6q-1 1-2 3t-2 4t-2 3t-3 1t-4-3t-4-5t-2-3q-2 1-4 1t-2-1t-3-2t-3-2q-1-1-4-1t-5-1q8 3-1 6q-5 2-9 1q5 3 5 7t-5 8h3q-1 2-5 5t-10 4t-7 4q-5 3-19 5t-18 0q-3-3-3-5t2-8t2-7q1-4-3-7t-3-7q0-4 7-9t6-12q-2-4-9-9t-9-6q-3-5-1-11t6-9q1-1 1-2t-2-3t-3-2t-4-2l-1-1q-7-3-12 3t-7 15q-4 14-9 17q-13 4-17-1q-2 7-22 15q-14 5-33 2q4 0 0 8q-4 9-10 7q1 3 2 10t0 7q2 7 7 13q1 1 4 5t5 7t1 4q19-3 28 6q2 2 6 9t6 10q5 3 8 3t8-3t8-3q8-1 8 6t-4 11q7 0 2 10q-3 4-5 5q-6 2-15-3q-4-2 2-4q-1 0-6-6t-9-10t-9 3q0 0-3 7t-5 8q-5 0-9-9q1 5-6 9t-14 4q11 7-4 15q-4 3-12 3t-11-2q-2-4-3-7t3-4t6-3t6-2t5-2q8-6 5-8q-1 0-5-2t-6-2t-4-3q-2-2 0-7t-1-8q-3 3-5 10t-4 9q4-5-14-4l-5 1q-3 0-9-1t-12-1t-7 5q-3 4 0 11q0 2 2 1q-2 2-6 5t-6 5q-25-8-52-23q3 0 6 1q3 1 8 3t5 4q19 7 24 3l3 3q7-9 11-14q-4 3-17 1q-11-4-12-7q4-7 2-10q-2 2-6 6t-8 6t-8 3q-9 0-13-1q-81-45-131-124q4-4 7-4q2-1 3-5t1-6t6 1q5-4 2-10q1 0 25-15q10-10 11-12q2-6-5-10q-1 1-5 5t-5 2q-2-3 0-10t6-7q-4 0-5-9t-2-20t0-13l1-1q-2-6 3-19t12-11q-7-1 11-24q3-4 4-5q2-1 7-4t9-6t5-5q2-3 6-13t8-13q-2-3 5-11t6-13q-1 0-2-1t-1 0q2-4 9-8t8-7q1-2 1-6t2-6t4-1q2 11-13 34q-8 14-9 17q-2 2-4 8t-2 8q1 0 3 0t5-2t4-3t1-1q-1-4 1-10t7-10t10-11t6-7q4-4 8-11t0-8q5 0 11-5t10-11q3-5 4-15t3-13q1-4 5-8t7-5l9-5t7-3q3-2 10-6t12-7q6-2 9-2t8 1t8 2q8 1 16-8t12-12q20-10 30-6q-1 0 1-4t4-9t5-8t3-5q3-3 10-8t10-8q4 2 4 5q-1-5 4-11t10-6q8 2 8 18q-17-9-27 10q0 0-2 3t-2 5t-1 4t0 5t2 1q5 0 6 2t-1 7t-2 8q-1 4-6 11t-7 8q-3-5-9-4t-9 5q0-1-1-3t-1-4q-7 0-8 0q1 2 1 10t2 13q1 2 3 6t5 9t2 7t-3 5t-9 1q-11 0-15-11q-1-2-2-6t-2-6t-5-4q-4-2-14-1t-13 3q-8 4-13 16t-5 20q0 6 1 15t2 14t-3 14q2 1 5 5t5 6q2 1 3 1t2 0t3 1t1 3q0 1-2 2q-2 1-2 1q4-1 16 1t15-1q9-6 12 1q0 1-1 6t0 7q3-15 16-5q2-1 9-3t9-2q2-1 4-3t3-3t3 0t5 4q5-8 7-13q6-23 10-25q4-2 6-1t3 5t0 8t-1 7l-1 4v11l0 4q-8 2-10 7t0 10t9 10q0 1 4 2t9 4t7 4q12 11 8 20q4 0 6 5q0 0-2 2t-5 2t-2 2q5 2 1 8q3 2 4 7t4 5q5-7 12-1q4 5 1 9q2 4 11 6t10 5q4-1 5 1t0 7t2 7q2 2 8 5t8 2l9 7q2 2 0 2q10-1 18 6q5 6-4 11q2 3-2 5t-8 3q2 1 7 1t5 1q9 5-4 9q-9 2-24-7z m-90-490q114 21 195 106q-1 2-7 2t-7 2q-10 4-13 5q1 4-1 7t-5 5t-7 5t-6 4q-1 1-4 3t-4 3t-4 2t-5 2t-5-1l-2-1q-2 0-3-1t-3-2t-2-1t0-2q-12 10-20 13q-3 0-7 3t-5 4t-6 0t-6-4q-3-2-4-8t-1-7q-4 3 0 10t1 10q-1 3-6 2t-6-2t-7-5t-5-3t-4-3t-5-5q-2-2-4-6t-2-7q-1 3-7 4t-5 3q1-5 2-19t3-22q4-17-7-26q-15-14-16-23q-2-12 7-14q0-4-5-12t-4-12q0-3 2-9z" horiz-adv-x="857.1" />
<glyph glyph-name="sun" unicode="&#xe8ac;" d="m821 350q0 65-25 125t-69 102t-102 69t-125 25t-125-25t-102-69t-69-102t-25-125t25-125t69-102t102-69t125-25t125 25t102 69t69 102t25 125z m154-155q-2-8-11-11l-163-53v-171q0-9-7-15q-8-5-16-2l-163 53l-100-139q-6-7-15-7t-14 7l-101 139l-163-53q-8-3-16 2q-7 6-7 15v171l-163 53q-9 3-11 11q-3 10 2 17l100 138l-100 138q-5 8-2 17q2 8 11 11l163 53v171q0 9 7 15q8 5 16 2l163-53l101 139q5 6 14 6t15-6l100-139l163 53q8 3 16-2q7-6 7-15v-171l163-53q9-3 11-12q3-8-2-16l-100-138l100-138q5-7 2-17z" horiz-adv-x="1000" />
<glyph glyph-name="cloud" unicode="&#xe8ad;" d="m1071 207q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 74 40 135t104 91q-1 15-1 24q0 118 84 202t202 84q88 0 159-50t105-128q39 35 93 35q59 0 101-42t42-101q0-42-23-77q72-17 119-75t46-134z" horiz-adv-x="1071.4" />
<glyph glyph-name="flash" unicode="&#xe8ae;" d="m494 534q10-11 4-24l-302-646q-7-14-23-14q-2 0-8 1q-9 3-14 11t-3 16l110 451l-226-56q-2-1-7-1q-10 0-17 7q-10 8-7 21l112 461q2 8 9 13t15 5h183q11 0 18-7t7-17q0-4-2-10l-96-258l221 54q5 2 7 2q11 0 19-9z" horiz-adv-x="500" />
<glyph glyph-name="moon" unicode="&#xe8af;" d="m704 123q-30-5-61-5q-102 0-188 50t-137 137t-50 188q0 107 58 199q-112-33-183-128t-72-214q0-73 29-139t76-113t114-77t139-28q80 0 152 34t123 96z m114 47q-53-113-159-181t-230-68q-87 0-167 34t-136 92t-92 137t-34 166q0 85 32 163t87 135t132 92t161 38q25 1 34-22q10-23-8-40q-48-43-73-101t-26-122q0-83 41-152t111-111t152-41q66 0 127 29q23 10 40-7q8-8 10-19t-2-22z" horiz-adv-x="857.1" />
<glyph glyph-name="umbrella" unicode="&#xe8b0;" d="m500 388v-324q0-58-42-100t-101-43t-100 43t-43 100q0 15 11 25t25 11t25-11t11-25q0-28 22-49t49-22t50 22t22 49v324q18 6 35 6t36-6z m429-15q0-7-6-13t-12-5q-6 0-13 6q-27 25-52 38t-57 13q-38 0-71-21t-58-54q-4-5-10-15t-8-14q-6-9-15-9q-10 0-16 9q-3 4-9 14t-9 15q-24 34-58 54t-71 21t-71-21t-57-54q-4-5-10-15t-8-14q-6-9-16-9q-10 0-16 9q-2 4-8 14t-10 15q-24 34-57 54t-71 21q-33 0-57-13t-52-38q-7-6-13-6q-7 0-13 5t-5 13q0 3 1 4q25 102 96 178t166 114t201 38q78 0 153-22t138-64t109-104t64-140q1-1 1-4z m-429 406v-55q-23 1-36 1t-35-1v55q0 14 10 25t25 10t25-10t11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="flight" unicode="&#xe8b1;" d="m768 761q24-29 7-83t-61-96l-90-90l90-388q3-11-7-18l-71-54q-4-3-11-3q-2 0-4 0q-8 2-12 9l-155 284l-145-145l30-108q3-10-5-18l-53-53q-5-5-13-5h-1q-9 1-14 7l-105 141l-141 105q-6 4-7 13q-1 7 5 14l54 54q5 5 12 5q4 0 5 0l108-30l145 145l-284 155q-8 5-9 14q-1 9 5 15l71 71q8 7 17 5l371-89l89 89q43 42 96 60t83-6z" horiz-adv-x="785.7" />
<glyph glyph-name="fighter-jet" unicode="&#xe8b2;" d="m1071 314q0-18-160-53l-197-18l-125-36h-35l-164-196h39q14 0 25-3t10-6t-10-7t-25-2h-179v18h36v232h-90l-107-125h-53l-18 18v107h18v18h71v4l-107 14v71l107 13v5h-71v18h-18v107l18 18h53l107-125h90v232h-36v18h179q14 0 25-3t10-6t-10-7t-25-2h-39l164-197h35l125-35l197-18q145-33 160-52z" horiz-adv-x="1071.4" />
<glyph glyph-name="leaf" unicode="&#xe8b3;" d="m714 457q0 15-10 25t-25 11q-96 0-178-28t-145-75t-131-122q-11-12-11-25q0-15 11-25t25-11q13 0 25 11q15 13 41 39t38 37q76 69 150 98t175 29q14 0 25 11t10 25z m286 111q0-53-11-108q-26-125-103-214t-200-149q-119-61-244-61q-83 0-160 27q-8 2-49 23t-53 21q-9 0-22-18t-25-39t-30-39t-33-18q-17 0-29 6t-17 13t-15 24q-1 2-3 6t-3 6t-2 5t-1 7q0 20 17 41t38 37t38 31t18 27q0 2-8 21t-9 25q-5 28-5 58q0 64 24 123t66 103t96 77t113 53q31 10 81 15t100 5t100 3t91 13t64 32l16 16t17 16t15 11t20 9t24 3q22 0 40-26t26-63t14-69t4-53z" horiz-adv-x="1000" />
<glyph glyph-name="font" unicode="&#xe8b6;" d="m405 538l-95-251q40-1 85-1t67-1t29 0l16 1q-18 53-51 134q-30 74-51 118z m-393-617h-12l1 44q12 4 45 10q49 9 61 18q11 9 27 38l132 344l156 404h72l6-12l114-268q58-135 70-166q21-57 53-131q15-32 36-91q14-38 37-84q12-27 19-31q13-11 39-13q26-4 57-15q4-22 4-32q0-8-1-15q-45 0-107 5q-52 4-106 4q-44 0-75-1l-112-6l-32-1q0 25 2 43l73 16q32 7 38 13q7 7 7 15t-3 18l-26 63l-52 128l-251 1q-16-36-58-153q-13-36-13-47q0-17 10-24q14-12 57-18q2 0 8-1t16-3t23-3q1-16 1-32q0-10-2-16q-36 0-194 12l-27-5q-45-8-93-8z" horiz-adv-x="928.6" />
<glyph glyph-name="bold" unicode="&#xe8b5;" d="m310 1q42-18 78-18q73 0 120 23t68 63q22 39 22 101q0 64-23 101q-33 52-79 70q-45 18-138 18q-41 0-56-6v-80l-1-97l2-150q0-9 7-25z m-8 417q24-4 61-4q97 0 147 36t50 125q0 62-48 104q-47 42-142 42q-29 0-73-7q0-25 2-43q3-68 3-156l-1-55q0-24 1-43z m-302-497l1 53q25 5 38 7q43 6 69 17q9 15 11 28q5 37 5 109l-1 277q-2 143-5 225q0 49-6 61q0 2-6 7q-11 7-39 8q-17 1-64 8l-2 46l145 3l212 7l25 1q3 0 8 0t8 0q1 0 12 0t23 0h41q49 0 106-15q24-7 54-22q32-16 57-42q25-26 36-58t12-68q0-40-18-72t-53-58q-14-12-84-43q99-23 149-82q52-59 52-132q0-42-16-89q-12-35-40-66q-37-40-78-60q-41-20-113-33q-46-9-111-7l-110 3q-47 1-166-6q-19-2-152-7z" horiz-adv-x="785.7" />
<glyph glyph-name="italic" unicode="&#xe8b4;" d="m0-78l10 48q2 0 43 11q42 11 64 22q16 21 23 56l15 78l31 149l7 36q5 25 10 47t9 38t7 26t5 17t1 6l17 88l9 35l12 75l4 28v21q-23 13-80 16q-16 1-21 2l10 58l177-8q22-1 41-1q37 0 119 5q19 1 38 2t20 2q-1-11-3-22q-4-16-7-28q-31-11-61-17q-36-9-56-18q-7-17-14-49q-5-24-7-46q-25-111-37-170l-34-174l-21-88l-24-131l-7-25q-1-4 1-15q36-9 66-12q20-3 37-6q-1-16-4-32q-4-17-5-23q-10 0-13-1q-13-1-23-1q-5 0-16 2q-10 2-81 10l-110 1q-23 0-97-6q-42-4-55-6z" horiz-adv-x="571.4" />
<glyph glyph-name="text-height" unicode="&#xe8b7;" d="m45 778l30-15q12-3 118-3h73l10 2l64 0l120 0h164l19-1q8-1 15 4t12 8l4 5l24 0q8 0 15 0v-58t1-74l0-55l0-33q0-18-2-28q-22-9-38-10q-14 24-31 71q-4 13-8 35t-7 36t-3 17q-7 8-15 10q-4 1-24 1t-58 0t-61-1q-19 0-38-3q-5-54-4-75l0-85v-186l2-200l-1-82q0-26 6-47q28-14 50-18q1 0 10-3t25-7t24-7q16-4 28-10q2-25 2-28q0-5-1-16q-8-1-19-1q-62 0-105 6q-40 4-132 4q-49 0-130-7q-27-3-39-3q-2 13-2 15l0 14v5q12 19 44 28q78 21 89 28q5 11 6 31q5 107 4 242l-3 238q-1 35 0 66t0 58t-1 31t-4 9q-3 3-7 3q-22 4-83 4q-24 0-56-8t-40-14q-8-5-13-18t-12-42t-13-47q-4-10-11-18t-12-7q-24 15-31 25v213z m928-714q19 0 24-10t-7-25l-70-90q-11-15-27-15t-27 15l-71 90q-11 15-6 25t23 10h45v572h-45q-18 0-23 10t6 25l71 90q11 15 27 15t27-15l70-90q12-15 7-25t-24-10h-44v-572h44z" horiz-adv-x="1000" />
<glyph glyph-name="text-width" unicode="&#xe8b8;" d="m45 778l30-15q12-3 118-3h73l10 2l64 0l249 0h178l19-1q8-1 15 4t12 8l4 5l23 0q9 0 16 0v-58t1-74l0-55l0-33q0-18-3-28q-21-9-38-10q-14 24-30 71q-4 13-8 35t-7 36t-3 17q-7 8-15 10q-4 1-33 1t-77 0t-72-1q-52 0-70-3q-6-54-5-75l1-85v29l1-201l0-82q-1-25 6-47q27-14 50-18q1 0 10-3t24-7t24-7q17-4 28-10q3-25 3-28q0-5-2-16q-8 0-19 0q-61 0-104 5q-40 5-133 5q-46 0-130-8q-25-2-39-2q-1 12-1 14l-1 15v5q12 18 44 27q78 21 89 28q5 12 7 31q3 77 3 242l-3 24q0 148-1 155q-1 7-3 9q-3 3-8 3q-21 4-82 4q-28 0-95-8t-73-14q-8-5-13-18t-12-42t-13-47q-4-10-11-18t-12-7q-24 15-31 25v213z m795-722q14-11 14-27t-14-28l-91-70q-14-11-24-6t-11 23v45h-571v-45q0-18-10-23t-25 6l-91 70q-14 11-14 28t14 27l91 70q14 11 25 6t10-23v-45h571v45q0 18 11 23t24-6z" horiz-adv-x="857.1" />
<glyph glyph-name="align-left" unicode="&#xe95d;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-857q-15 0-25 11t-11 25v72q0 14 11 25t25 10h857q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-643q-15 0-25 10t-11 25v72q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-center" unicode="&#xe95e;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-500q-14 0-25 11t-11 25v71q0 15 11 25t25 11h500q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v72q0 14 11 25t25 10h786q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-358q-14 0-25 10t-10 25v72q0 14 10 25t25 11h358q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-right" unicode="&#xe95f;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-714q-14 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-857q-14 0-25 11t-11 25v72q0 14 11 25t25 10h857q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-643q-14 0-25 10t-10 25v72q0 14 10 25t25 11h643q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-justify" unicode="&#xe960;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-928q-15 0-25 11t-11 25v72q0 14 11 25t25 10h928q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25v72q0 14 11 25t25 11h928q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="list" unicode="&#xe8b9;" d="m143 118v-107q0-7-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 12t13 6h107q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 13t13 5h107q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-107q-7 0-13 6t-5 12v107q0 8 5 13t13 5h107q7 0 13-5t5-13z m857-428v-107q0-7-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 12t12 6h750q7 0 13-6t5-12z m-857 643v-107q0-8-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 12t13 6h107q7 0 13-6t5-12z m857-429v-107q0-7-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 13t12 5h750q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-750q-7 0-12 6t-6 12v107q0 8 6 13t12 5h750q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 12t12 6h750q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-left" unicode="&#xe8ba;" d="m214 546v-321q0-7-5-13t-13-5q-7 0-12 5l-161 161q-5 5-5 13t5 13l161 160q5 5 12 5q8 0 13-5t5-13z m786-428v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-right" unicode="&#xe8bb;" d="m196 386q0-8-5-13l-160-161q-5-5-13-5q-7 0-13 5t-5 13v321q0 8 5 13t13 5q8 0 13-5l160-160q5-5 5-13z m804-268v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="list-bullet" unicode="&#xe8bc;" d="m214 64q0-44-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m0 286q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m786-232v-107q0-7-5-13t-13-5h-678q-8 0-13 5t-5 13v107q0 7 5 12t13 6h678q7 0 13-6t5-12z m-786 518q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m786-232v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12v108q0 7 5 12t13 5h678q7 0 13-5t5-12z m0 285v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12v107q0 8 5 13t13 5h678q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="list-numbered" unicode="&#xe8bd;" d="m213-54q0-45-31-70t-75-26q-60 0-96 37l31 49q28-25 60-25q16 0 28 8t12 24q0 35-59 31l-14 31q4 6 18 24t24 31t20 21v1q-9 0-27-1t-27 0v-30h-59v85h186v-49l-53-65q28-6 45-27t17-49z m1 350v-89h-202q-4 20-4 30q0 29 14 52t31 38t37 27t31 24t14 25q0 14-9 22t-22 7q-25 0-45-32l-47 33q13 28 40 44t59 16q40 0 68-23t28-63q0-28-19-51t-42-36t-42-28t-20-30h71v34h59z m786-178v-107q0-8-5-13t-13-5h-678q-8 0-13 5t-5 13v107q0 8 5 13t13 5h678q7 0 13-6t5-12z m-786 502v-56h-187v56h60q0 22 0 68t1 67v7h-1q-5-10-28-30l-40 42l76 71h59v-225h60z m786-216v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12v108q0 7 5 12t13 5h678q7 0 13-5t5-12z m0 285v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12v107q0 8 5 13t13 5h678q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="strike" unicode="&#xe8be;" d="m982 350q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-964q-8 0-13 5t-5 12v36q0 8 5 13t13 5h964z m-712 36q-16 19-29 44q-27 54-27 105q0 101 75 173q74 71 219 71q28 0 94-11q36-7 98-27q6-21 12-66q8-68 8-102q0-10-3-25l-7-2l-46 4l-8 1q-28 83-58 114q-49 51-117 51q-64 0-102-33q-37-32-37-81q0-41 37-79t156-72q38-11 96-36q33-16 53-29h-414z m282-143h230q4-22 4-51q0-62-23-119q-13-30-40-58q-20-19-61-45q-44-27-85-37q-45-12-113-12q-64 0-109 13l-78 23q-32 8-40 15q-5 5-5 12v8q0 60-1 87q0 17 0 38l1 20v25l57 1q8-19 17-40t12-31t7-15q20-32 45-52q24-20 59-32q33-12 73-12q36 0 78 15q43 14 68 48q26 34 26 72q0 47-45 87q-19 16-77 40z" horiz-adv-x="1000" />
<glyph glyph-name="underline" unicode="&#xe8bf;" d="m27 726q-21 1-25 2l-2 49q7 0 22 0q34 0 63-2q74-4 92-4q48 0 94 2q65 2 82 3q31 0 48 1l-1-8l1-36v-5q-33-5-69-5q-33 0-44-14q-7-7-7-73q0-8 0-18t0-15l1-128l8-156q3-69 28-112q20-33 54-52q49-26 98-26q58 0 107 16q31 10 55 28q27 20 37 36q20 31 29 63q12 41 12 128q0 44-2 72t-6 68t-8 89l-2 33q-3 37-13 49q-19 20-43 19l-56-1l-8 2l1 48h47l114-6q43-2 110 6l10-2q3-21 3-28q0-4-2-17q-25-7-47-8q-41-6-44-9q-8-9-8-23q0-4 0-15t1-17q5-11 13-221q3-109-9-170q-8-42-23-68q-21-36-62-69q-42-32-102-49q-61-19-142-19q-93 0-159 26q-66 26-99 68q-34 42-47 109q-9 44-9 132v186q0 105-9 119q-14 20-82 21z m830-787v36q0 8-5 13t-13 5h-821q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h821q8 0 13 5t5 13z" horiz-adv-x="857.1" />
<glyph glyph-name="superscript" unicode="&#xe8c0;" d="m501 86v-93h-139l-89 141l-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144v93h71l110 162l-103 152h-76v94h154l77-127q1-2 13-24q4-5 6-11h2q1 5 6 11l14 24l78 127h143v-94h-69l-103-149l114-165h61z m355 379v-115h-287l-1 15q-3 16-3 26q0 35 15 65t36 48t47 37t47 30t36 30t15 36q0 21-17 35t-39 13q-29 0-54-21q-8-7-20-22l-59 52q15 20 35 37q46 36 105 36q61 0 99-33t38-89q0-31-13-57t-35-43t-45-33t-46-28t-37-29t-17-35h130v45h70z" horiz-adv-x="857.1" />
<glyph glyph-name="subscript" unicode="&#xe8c1;" d="m501 86v-93h-139l-89 141l-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144v93h71l110 162l-103 152h-76v94h154l77-127q1-2 13-24q4-5 6-11h2q1 5 6 11l14 24l78 127h143v-94h-69l-103-149l114-165h61z m356-121v-115h-287l-2 15q-2 25-2 26q0 35 15 65t36 48t47 37t47 30t36 30t15 36q0 21-17 35t-39 13q-29 0-54-21q-8-6-20-22l-59 52q15 20 35 37q45 36 105 36q62 0 99-33t38-89q0-37-19-66t-47-48t-55-35t-49-35t-23-41h130v45h70z" horiz-adv-x="857.1" />
<glyph glyph-name="table" unicode="&#xe8c2;" d="m286 82v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107q0-8 5-13t13-5h179q8 0 13 5t5 13z m0 214v108q0 7-5 12t-13 5h-179q-7 0-13-5t-5-12v-108q0-7 5-12t13-5h179q8 0 13 5t5 12z m285-214v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h179q7 0 12 5t5 13z m-285 429v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107q0-8 5-13t13-5h179q8 0 13 5t5 13z m285-215v108q0 7-5 12t-12 5h-179q-8 0-13-5t-5-12v-108q0-7 5-12t13-5h179q7 0 12 5t5 12z m286-214v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h178q8 0 13 5t5 13z m-286 429v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h179q7 0 12 5t5 13z m286-215v108q0 7-5 12t-13 5h-178q-8 0-13-5t-5-12v-108q0-7 5-12t13-5h178q8 0 13 5t5 12z m0 215v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h178q8 0 13 5t5 13z m72 178v-607q0-37-27-63t-63-26h-750q-36 0-63 26t-26 63v607q0 37 26 63t63 27h750q37 0 63-27t27-63z" horiz-adv-x="928.6" />
<glyph glyph-name="columns" unicode="&#xe8c3;" d="m89-7h340v643h-358v-625q0-8 6-13t12-5z m768 18v625h-357v-643h339q8 0 13 5t5 13z m72 678v-678q0-37-27-63t-63-27h-750q-36 0-63 27t-26 63v678q0 37 26 63t63 27h750q37 0 63-27t27-63z" horiz-adv-x="928.6" />
<glyph glyph-name="crop" unicode="&#xe8c4;" d="m311 136h332v332z m-25 25l332 332h-332v-332z m643-43v-107q0-8-5-13t-13-5h-125v-125q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v125h-482q-8 0-13 5t-5 13v482h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125v125q0 7 5 12t13 5h107q8 0 13-5t5-12v-125h475l137 138q5 5 13 5t13-5q5-6 5-13t-5-13l-138-137v-475h125q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="scissors" unicode="&#xe8c5;" d="m536 350q14 0 25-11t10-25t-10-25t-25-10t-25 10t-11 25t11 25t25 11z m167-36l283-222q16-11 14-31q-3-20-20-28l-71-36q-7-4-16-4q-10 0-17 4l-385 216l-62-37q-4-2-7-2q8-28 6-54q-4-43-31-83t-74-69q-74-47-154-47q-76 0-124 44q-51 47-44 116q4 42 31 82t73 69q74 47 155 47q46 0 84-18q5 8 13 13l68 40l-68 41q-8 5-13 12q-38-17-84-17q-81 0-155 47q-46 29-73 69t-31 82q-3 33 8 63t36 52q47 44 124 44q80 0 154-47q46-29 74-68t31-83q2-27-6-54q3-1 7-3l62-37l385 216q7 5 17 5q9 0 16-4l71-36q17-9 20-28q2-20-14-32z m-380 145q26 24 12 61t-59 65q-52 33-107 33q-42 0-63-20q-26-24-12-60t59-66q51-33 107-33q41 0 63 20z m-47-415q45 28 59 65t-12 60q-22 20-63 20q-56 0-107-33q-45-28-59-65t12-60q21-20 63-20q55 0 107 33z m99 342l54-33v7q0 20 18 31l8 4l-44 26l-15-14q-1-2-5-6t-7-7q-1-1-2-2t-2-1z m125-125l54-18l410 321l-71 36l-429-240v-64l-89-53l5-5q1-1 4-3q2-2 6-7t6-6l15-15z m393-232l71 35l-290 228l-99-77q-1-2-7-4z" horiz-adv-x="1000" />
<glyph glyph-name="paste" unicode="&#xe8c6;" d="m429-79h500v358h-233q-22 0-38 15t-15 38v232h-214v-643z m142 804v36q0 7-5 12t-12 6h-393q-7 0-13-6t-5-12v-36q0-7 5-13t13-5h393q7 0 12 5t5 13z m143-375h167l-167 167v-167z m286-71v-375q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v89h-303q-23 0-38 16t-16 37v750q0 23 16 38t38 16h607q22 0 38-16t15-38v-183q12-7 20-15l228-228q16-16 27-42t11-50z" horiz-adv-x="1000" />
<glyph glyph-name="briefcase" unicode="&#xe8c7;" d="m357 707h286v72h-286v-72z m643-357v-268q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v268h375v-89q0-15 11-25t25-11h178q15 0 25 11t11 25v89h375z m-429 0v-71h-142v71h142z m429 268v-215h-1000v215q0 37 26 63t63 26h197v89q0 23 15 38t38 16h322q22 0 38-16t15-38v-89h197q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="suitcase" unicode="&#xe8c8;" d="m357 636h286v71h-286v-71z m-196 0v-715h-36q-51 0-88 37t-37 88v465q0 51 37 88t88 37h36z m625 0v-715h-572v715h72v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h72z m214-125v-465q0-51-37-88t-88-37h-36v715h36q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="ellipsis" unicode="&#xe961;" d="m214 439v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-15 38v107q0 23 15 38t38 16h107q23 0 38-16t16-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="ellipsis-vert" unicode="&#xe962;" d="m214 154v-108q0-22-15-37t-38-16h-107q-23 0-38 16t-16 37v108q0 22 16 38t38 15h107q22 0 38-15t15-38z m0 285v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m0 286v-107q0-22-15-38t-38-16h-107q-23 0-38 16t-16 38v107q0 22 16 38t38 16h107q22 0 38-16t15-38z" horiz-adv-x="214.3" />
<glyph glyph-name="off" unicode="&#xe963;" d="m857 350q0-87-34-166t-91-137t-137-92t-166-34t-167 34t-136 92t-92 137t-34 166q0 102 45 191t126 151q24 18 54 14t46-28q18-23 14-53t-28-47q-54-41-84-101t-30-127q0-58 22-111t62-91t91-61t111-23t110 23t92 61t61 91t22 111q0 68-30 127t-84 101q-24 18-28 47t14 53q17 24 47 28t53-14q81-61 126-151t45-191z m-357 429v-358q0-29-21-50t-50-21t-51 21t-21 50v358q0 29 21 50t51 21t50-21t21-50z" horiz-adv-x="857.1" />
<glyph glyph-name="road" unicode="&#xe964;" d="m620 294v2l-13 179q-1 7-7 13t-12 5h-104q-7 0-13-5t-6-13l-14-179v-2q0-6 5-11t12-4h136q7 0 12 4t4 11z m424-260q0-41-26-41h-393q7 0 12 5t5 13l-11 143q-1 7-7 12t-12 5h-152q-7 0-13-5t-6-12l-11-143q-1-8 4-13t12-5h-392q-26 0-26 41q0 30 14 64l233 583q5 11 15 18t21 8h189q-7 0-13-5t-6-13l-8-107q-1-8 4-13t12-5h93q7 0 12 5t5 13l-9 107q0 7-6 13t-13 5h190q11 0 21-8t14-18l233-583q15-34 15-64z" horiz-adv-x="1071.4" />
<glyph glyph-name="list-alt" unicode="&#xe8c9;" d="m214 189v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-35q-7 0-13 5t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m643-286v-35q0-8-5-13t-13-5h-535q-8 0-13 5t-5 13v35q0 8 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-535q-8 0-13 5t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-535q-8 0-13 6t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m72-393v464q0 8-6 13t-12 5h-822q-7 0-12-5t-6-13v-464q0-7 6-12t12-6h822q7 0 12 6t6 12z m71 607v-607q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v607q0 37 26 63t63 27h822q37 0 63-27t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="qrcode" unicode="&#xe8ca;" d="m214 207v-71h-71v71h71z m0 429v-72h-71v72h71z m429 0v-72h-72v72h72z m-572-571h215v214h-215v-214z m0 428h215v214h-215v-214z m429 0h214v214h-214v-214z m-143-143v-357h-357v357h357z m286-286v-71h-72v71h72z m143 0v-71h-72v71h72z m0 286v-214h-215v71h-71v-214h-71v357h214v-71h71v71h72z m-429 429v-358h-357v358h357z m429 0v-358h-357v358h357z" horiz-adv-x="785.7" />
<glyph glyph-name="barcode" unicode="&#xe8cb;" d="m35-7h-35v786h35v-786z m35 0h-17v786h17v-786z m53 0h-17v786h17v-786z m87 0h-17v786h17v-786z m88 0h-35v786h35v-786z m70 0h-17v786h17v-786z m35 0h-17v786h17v-786z m36 0h-18v786h18v-786z m87 0h-35v786h35v-786z m88 0h-35v786h35v-786z m70 0h-35v786h35v-786z m70 0h-35v786h35v-786z m53 0h-35v786h35v-786z m105 0h-52v786h52v-786z m36 0h-18v786h18v-786z m52 0h-35v786h35v-786z" horiz-adv-x="1000" />
<glyph glyph-name="book" unicode="&#xe8cc;" d="m915 583q22-32 10-72l-154-505q-10-36-42-60t-69-25h-515q-43 0-83 30t-55 74q-14 37-1 71q0 2 1 15t3 20q0 5-2 12t-2 11q1 6 5 12t9 13t9 13q13 21 25 51t17 51q2 6 0 17t0 16q2 6 9 15t10 13q12 20 23 51t14 51q1 5-1 17t0 16q2 7 12 17t13 13q10 14 23 47t16 54q0 4-2 14t-1 15q1 4 5 10t10 13t10 11q4 7 9 17t8 20t9 20t11 18t15 13t20 6t26-3l0-1q21 5 28 5h425q41 0 63-32t10-72l-152-506q-20-66-40-85t-72-20h-485q-15 0-21-8q-6-9-1-24q14-39 81-39h515q16 0 31 9t19 23l168 550q4 13 3 32q21-8 33-24z m-594-1q-2-7 1-12t11-6h339q8 0 15 6t9 12l12 36q2 7-2 12t-11 6h-339q-7 0-14-6t-9-12z m-46-143q-3-7 1-12t11-6h339q7 0 14 6t10 12l11 36q3 7-1 13t-11 5h-339q-8 0-14-5t-10-13z" horiz-adv-x="928.6" />
<glyph glyph-name="ajust" unicode="&#xe8cd;" d="m429 46v608q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41z m428 304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="tint" unicode="&#xe8ce;" d="m286 207q0 20-11 39q-1 0-9 12t-14 21t-14 25t-12 28q-2 9-12 9t-11-9q-4-13-12-28t-14-25t-14-21t-9-12q-11-19-11-39q0-29 21-50t50-21t51 21t21 50z m285 72q0-119-83-202t-202-84t-202 84t-84 202q0 81 45 153q4 5 35 51t56 84t56 99t46 112q5 17 19 27t29 9t28-9t19-27q16-51 46-112t56-99t56-85t35-50q45-71 45-154z" horiz-adv-x="571.4" />
<glyph glyph-name="check" unicode="&#xe8cf;" d="m786 331v-177q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14q9-4 10-13q2-10-5-16l-27-28q-6-5-13-5q-2 0-5 1q-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v141q0 8 5 13l36 35q6 6 13 6q3 0 7-2q11-4 11-16z m129 273l-455-454q-13-14-31-14t-32 14l-240 240q-14 13-14 31t14 32l61 62q14 13 32 13t32-13l147-147l361 361q13 13 31 13t32-13l62-61q13-14 13-32t-13-32z" horiz-adv-x="928.6" />
<glyph glyph-name="check-empty" unicode="&#xe8d0;" d="m625 707h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26z m161-89v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="circle" unicode="&#xe8d1;" d="m857 350q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="circle-empty" unicode="&#xe8d2;" d="m429 654q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="asterisk" unicode="&#xe8d3;" d="m827 264q26-14 33-43t-7-55l-35-61q-15-26-44-33t-54 7l-149 85v-171q0-29-21-50t-50-22h-71q-29 0-51 22t-21 50v171l-148-85q-26-15-55-7t-43 33l-36 61q-14 26-7 55t34 43l148 86l-148 86q-26 14-34 43t7 55l36 61q15 26 43 33t55-7l148-85v171q0 29 21 50t51 22h71q29 0 50-22t21-50v-171l149 85q26 15 54 7t44-33l35-62q15-25 7-54t-33-43l-148-86z" horiz-adv-x="928.6" />
<glyph glyph-name="gift" unicode="&#xe8d4;" d="m518 93v400h-179v-400q0-14 10-21t26-8h107q16 0 26 8t10 21z m-255 471h109l-70 90q-15 17-39 17q-22 0-38-15t-15-38t15-38t38-16z m384 54q0 22-15 38t-38 15q-24 0-39-17l-69-90h108q22 0 38 16t15 38z m210-143v-179q0-7-5-12t-13-5h-53v-233q0-22-16-37t-38-16h-607q-22 0-38 16t-16 37v233h-53q-8 0-13 5t-5 12v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89t37 88t88 37q60 0 94-43l72-92l71 92q34 43 94 43q52 0 88-37t37-88t-37-89t-88-36h245q8 0 13-5t5-13z" horiz-adv-x="857.1" />
<glyph glyph-name="fire" unicode="&#xe8d5;" d="m786-96v-36q0-7-6-13t-12-5h-750q-7 0-13 5t-5 13v36q0 7 5 12t13 5h750q7 0 12-5t6-12z m-143 589q0-44-14-80t-36-63t-48-49t-54-44t-49-40t-35-45t-14-54q0-54 37-125l-2 0l1 0q-51 23-90 46t-77 56t-63 68t-41 84t-15 103q0 44 14 80t35 63t49 49t54 43t48 41t36 45t14 54q0 52-37 125l2-1l-1 1q50-23 89-46t78-56t63-68t41-84t15-103z" horiz-adv-x="785.7" />
<glyph glyph-name="magnet" unicode="&#xe8d6;" d="m857 386v-72q0-112-55-202t-153-140t-220-51t-221 51t-153 140t-55 202v72q0 14 11 25t25 10h214q15 0 25-10t11-25v-72q0-29 13-50t30-32t39-16t36-8t25-1t24 1t36 8t39 16t30 32t13 50v72q0 14 11 25t25 10h214q15 0 26-10t10-25z m-571 357v-214q0-15-11-26t-25-10h-214q-15 0-25 10t-11 26v214q0 14 11 25t25 11h214q15 0 25-11t11-25z m571 0v-214q0-15-10-26t-26-10h-214q-14 0-25 10t-11 26v214q0 14 11 25t25 11h214q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="ticket" unicode="&#xe8d8;" d="m571 598l177-177l-319-319l-177 177z m-117-547l345 345q10 11 10 25t-10 26l-202 202q-10 10-26 10t-25-10l-345-345q-10-11-10-25t10-26l202-202q11-10 26-10t25 10z m496 356l-506-507q-21-20-51-20t-50 20l-71 70q32 32 32 76t-32 76t-76 32t-75-32l-70 71q-21 20-21 50t21 51l506 505q21 21 50 21t51-21l70-70q-32-31-32-75t32-76t76-32t75 32l71-70q20-21 20-51t-20-50z" horiz-adv-x="1000" />
<glyph glyph-name="credit-card" unicode="&#xe965;" d="m982 779q37 0 63-27t26-63v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 26h893z m-893-72q-7 0-12-5t-6-13v-125h929v125q0 8-5 13t-13 5h-893z m893-714q7 0 13 5t5 13v339h-929v-339q0-8 6-13t12-5h893z m-839 71v72h143v-72h-143z m214 0v72h214v-72h-214z" horiz-adv-x="1071.4" />
<glyph glyph-name="floppy" unicode="&#xe966;" d="m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z" horiz-adv-x="857.1" />
<glyph glyph-name="megaphone" unicode="&#xe967;" d="m929 493q29 0 50-21t21-51t-21-50t-50-21v-214q0-29-22-50t-50-22q-233 194-453 212q-32-10-51-36t-17-57t22-51q-11-19-13-37t4-32t18-31t27-28t35-28q-17-32-63-46t-94-7t-73 31q-4 13-17 49t-18 53t-12 50t-9 56t2 55t12 62h-68q-36 0-63 26t-26 63v107q0 37 26 63t63 26h268q243 0 500 215q29 0 50-22t22-50v-214z m-72-337v532q-220-168-428-191v-151q210-23 428-190z" horiz-adv-x="1000" />
<glyph glyph-name="key" unicode="&#xe8d9;" d="m464 564q0 45-31 76t-76 31t-76-31t-31-76q0-23 11-46q-23 11-47 11q-44 0-76-32t-31-76t31-75t76-32t76 32t31 75q0 24-10 47q23-11 46-11q45 0 76 31t31 76z m475-393q0-9-27-36t-37-28q-5 0-16 9t-20 19t-22 22t-13 14l-54-53l123-123q15-15 15-38q0-23-21-45t-46-22q-22 0-38 16l-374 374q-98-73-204-73q-91 0-148 57t-57 149q0 89 53 174t138 139t175 53q91 0 148-58t57-148q0-105-73-203l198-199l54 54q-2 2-15 14t-22 21t-18 21t-9 15q0 10 27 37t37 28q7 0 13-6q3-3 26-25t45-44t49-48t40-44t16-23z" horiz-adv-x="1000" />
<glyph glyph-name="fork" unicode="&#xe8da;" d="m161 29q0 22-16 38t-38 15t-38-15t-15-38t15-38t38-16t38 16t16 38z m0 642q0 23-16 38t-38 16t-38-16t-15-38t15-38t38-15t38 15t16 38z m357-71q0 22-16 38t-38 16t-38-16t-15-38t15-38t38-16t38 16t16 38z m53 0q0-29-14-54t-39-39q-1-160-126-231q-38-21-114-45q-71-22-94-39t-23-56v-15q24-14 39-39t14-53q0-45-31-76t-76-32t-76 32t-31 76q0 29 15 53t39 39v458q-25 14-39 39t-15 53q0 45 31 76t76 32t76-32t31-76q0-29-14-53t-39-39v-278q30 15 86 32q30 10 49 17t39 17t33 22t22 29t16 38t5 51q-25 14-39 39t-15 54q0 45 31 76t76 31t76-31t31-76z" horiz-adv-x="571.4" />
<glyph glyph-name="rocket" unicode="&#xe8db;" d="m804 600q0 22-16 38t-38 16t-38-16t-16-38t16-38t38-16t38 16t16 38z m125 161q0-139-43-241t-141-201q-45-44-109-98l-11-211q-1-9-9-15l-214-125q-4-2-9-2q-7 0-13 5l-36 36q-7 7-4 17l47 155l-156 156l-155-47q-1-1-5-1q-7 0-12 5l-36 36q-10 11-3 22l125 214q6 8 15 9l211 11q54 64 98 109q105 104 200 144t241 40q7 0 13-6t6-12z" horiz-adv-x="928.6" />
<glyph glyph-name="bug" unicode="&#xe8dc;" d="m911 314q0-14-11-25t-25-10h-125q0-96-37-162l116-117q10-11 10-25t-10-25q-10-11-25-11t-26 11l-110 110q-3-3-8-7t-24-16t-36-21t-46-16t-54-7v500h-71v-500q-29 0-57 7t-49 19t-36 22t-25 18l-8 8l-102-116q-11-12-27-12q-13 0-24 9q-11 10-11 25t8 26l113 127q-32 63-32 153h-125q-15 0-25 10t-11 25t11 25t25 11h125v164l-97 97q-11 10-11 25t11 25t25 10t25-10l97-97h471l96 97q11 10 25 10t26-10t10-25t-10-25l-97-97v-164h125q15 0 25-11t11-25z m-268 322h-357q0 74 52 126t126 52t127-52t52-126z" horiz-adv-x="928.6" />
<glyph glyph-name="certificate" unicode="&#xe8dd;" d="m768 350l77-75q17-16 11-39q-7-23-29-29l-105-27l30-103q6-23-11-39q-16-18-39-11l-104 30l-27-105q-5-23-28-30q-7-1-11-1q-17 0-28 13l-75 77l-76-77q-15-17-39-12q-23 7-28 30l-27 105l-104-30q-23-7-39 11q-17 16-10 39l29 103l-105 27q-22 6-29 29q-6 23 11 39l77 75l-77 75q-17 16-11 39q7 23 29 29l105 27l-29 103q-7 23 10 39q16 18 39 11l104-29l27 104q5 23 28 29q23 7 39-11l76-77l75 77q16 17 39 11q23-6 28-29l27-104l104 29q23 7 39-11q17-16 11-39l-30-103l105-27q22-6 29-29q6-23-11-39z" horiz-adv-x="857.1" />
<glyph glyph-name="tasks" unicode="&#xe8de;" d="m571 64h358v72h-358v-72z m-214 286h572v71h-572v-71z m357 286h215v71h-215v-71z m286-465v-142q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v142q0 15 11 26t25 10h928q15 0 25-10t11-26z m0 286v-143q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25v143q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 286v-143q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v143q0 14 11 25t25 11h928q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="filter" unicode="&#xe8df;" d="m783 685q9-23-8-39l-275-275v-414q0-23-22-33q-7-3-14-3q-15 0-25 11l-143 143q-10 10-10 25v271l-275 275q-18 16-8 39q9 22 33 22h714q23 0 33-22z" horiz-adv-x="785.7" />
<glyph glyph-name="beaker" unicode="&#xe8e0;" d="m852 42q31-50 12-85t-78-36h-643q-59 0-79 36t12 85l281 442v223h-36q-14 0-25 11t-10 25t10 25t25 11h286q15 0 25-11t11-25t-11-25t-25-11h-36v-223z m-435 405l-151-240h397l-152 240l-11 17v243h-71v-243z" horiz-adv-x="928.6" />
<glyph glyph-name="magic" unicode="&#xe8e1;" d="m664 526l164 163l-60 60l-164-164z m249 163q0-15-10-25l-717-718q-10-10-25-10t-25 10l-111 111q-10 10-10 25t10 25l718 718q10 10 25 10t25-10l110-111q10-10 10-25z m-753 106l54-16l-54-17l-17-55l-17 55l-55 17l55 16l17 55z m195-90l109-34l-109-33l-34-109l-33 109l-109 33l109 34l33 109z m519-267l55-17l-55-16l-17-55l-17 55l-54 16l54 17l17 55z m-357 357l54-16l-54-17l-17-55l-17 55l-54 17l54 16l17 55z" horiz-adv-x="928.6" />
<glyph glyph-name="truck" unicode="&#xe8e2;" d="m357 64q0 29-21 51t-50 21t-50-21t-22-51t22-50t50-21t50 21t21 50z m-214 286h214v143h-88q-7 0-12-5l-109-109q-5-5-5-12v-17z m714-286q0 29-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m143 607v-571q0-8-2-15t-8-10t-9-6t-13-4t-13-1t-14 0t-12 0q0-59-42-101t-101-42t-101 42t-42 101h-214q0-59-42-101t-101-42t-101 42t-42 101h-36q-1 0-12 0t-15 0t-12 1t-13 4t-9 6t-8 10t-2 15q0 15 10 25t25 11v178q0 5 0 20t0 21t2 19t3 21t8 17t13 17l110 110q11 11 28 18t33 7h89v107q0 15 11 26t25 10h571q15 0 25-10t11-26z" horiz-adv-x="1000" />
<glyph glyph-name="money" unicode="&#xe8e3;" d="m429 207h214v54h-72v250h-63l-83-77l43-44q24 20 31 31h1v-160h-71v-54z m285 143q0-39-11-79t-34-75t-56-56t-77-22t-77 22t-57 56t-33 75t-12 79t12 79t33 75t57 56t77 22t77-22t56-56t34-75t11-79z m286-143v286q-59 0-101 42t-42 101h-643q0-59-42-101t-101-42v-286q60 0 101-42t42-101h643q0 59 42 101t101 42z m71 464v-642q0-15-10-26t-25-10h-1000q-15 0-25 10t-11 26v642q0 15 11 26t25 10h1000q14 0 25-10t10-26z" horiz-adv-x="1071.4" />
<glyph glyph-name="euro" unicode="&#xe8e4;" d="m545 121l19-89q2-7-1-13t-10-8l-3 0q-2-1-6-2t-9-3t-12-3t-14-3t-17-2t-18-3t-21-2t-21 0q-131 0-228 73t-133 196h-53q-7 0-13 5t-5 13v63q0 7 5 12t13 6h37q-1 31 0 58h-37q-8 0-13 5t-5 13v64q0 7 5 13t13 5h55q37 117 135 188t224 72q57 0 108-13q6-2 11-9q4-6 2-13l-24-89q-2-7-8-11t-13-1l-2 1q-3 0-7 1l-10 2t-12 2t-15 2t-16 1t-16 0q-71 0-126-35t-84-98h261q9 0 14-7q6-7 4-15l-13-63q-3-15-18-15h-273q-1-20 0-58h256q9 0 14-7q5-7 4-15l-14-63q-1-6-6-10t-11-4h-216q27-65 84-104t127-38q10 0 20 1t19 2t16 2t14 3t10 3l7 1l3 2q7 2 14-2q7-4 9-11z" horiz-adv-x="571.4" />
<glyph glyph-name="pound" unicode="&#xe8e5;" d="m569 216v-205q0-8-5-13t-13-5h-533q-8 0-13 5t-5 13v83q0 8 5 13t13 5h54v214h-53q-8 0-13 5t-5 13v73q0 8 5 13t13 5h53v124q0 96 69 158t175 62q104 0 187-70q5-5 6-12t-4-12l-57-71q-5-6-13-7q-7-1-13 4q-2 3-14 11t-39 18t-51 10q-48 0-77-27t-29-68v-120h170q8 0 13-5t5-13v-73q0-7-5-13t-13-5h-170v-212h231v101q0 8 5 13t13 5h90q8 0 13-5t5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="dollar" unicode="&#xe8e6;" d="m546 189q0-86-56-147t-144-77v-97q0-8-5-13t-13-5h-75q-7 0-13 5t-5 13v97q-37 5-71 18t-57 25t-41 26t-26 21t-10 10q-9 12-1 23l58 76q3 5 12 6q9 1 14-5l1-1q63-55 135-70q21-4 42-4q45 0 79 24t35 68q0 16-9 30t-18 23t-33 21t-37 18t-45 18q-21 9-34 14t-34 15t-35 17t-32 20t-29 24t-25 27t-20 32t-11 37t-5 44q0 77 55 135t142 75v100q0 7 5 13t13 5h75q8 0 13-5t5-13v-98q32-4 62-13t48-19t36-21t21-16t9-8q9-10 3-21l-46-81q-4-9-12-9q-8-2-16 4q-1 1-8 6t-21 15t-33 18t-42 15t-47 6q-53 0-87-24t-33-62q0-14 4-27t17-23t22-18t31-18t34-15t39-15q30-11 45-18t43-19t42-24t34-28t30-35t18-43t7-52z" horiz-adv-x="571.4" />
<glyph glyph-name="rupee" unicode="&#xe8e7;" d="m501 588v-57q0-8-5-13t-13-5h-93q-13-80-72-131t-154-61q93-99 256-299q7-9 2-19q-5-10-16-10h-109q-9 0-14 7q-171 204-278 318q-5 5-5 12v71q0 8 5 13t13 5h62q74 0 119 24t57 70h-238q-8 0-13 5t-5 13v57q0 8 5 13t13 5h230q-31 63-149 63h-81q-7 0-13 5t-5 12v75q0 8 5 13t13 5h464q8 0 13-5t5-13v-57q0-8-5-13t-13-5h-130q26-34 36-80h95q8 0 13-5t5-13z" horiz-adv-x="501.1" />
<glyph glyph-name="yen" unicode="&#xe8e8;" d="m337-7h-96q-8 0-13 5t-5 13v184h-161q-7 0-13 5t-5 13v57q0 7 5 13t13 5h161v48h-161q-7 0-13 5t-5 12v58q0 8 5 13t13 5h119l-179 323q-4 9 0 18q6 9 16 9h108q11 0 16-10l120-238q11-21 32-69q5 13 17 37t15 35l107 234q4 11 16 11h106q10 0 15-9q5-8 1-18l-175-323h120q7 0 13-5t5-13v-58q0-7-5-12t-13-5h-162v-48h162q7 0 13-5t5-13v-57q0-8-5-13t-13-5h-162v-184q0-8-5-13t-12-5z" horiz-adv-x="573.1" />
<glyph glyph-name="renminbi" unicode="&#xe8e9;" d="m582 535q0 56-36 90t-96 35h-178v-250h178q60 0 96 34t36 91z m132 0q0-108-70-176t-182-68h-190v-66h282q7 0 12-5t5-13v-71q0-8-5-13t-12-5h-282v-107q0-8-6-13t-12-5h-93q-8 0-13 5t-5 13v107h-125q-8 0-13 5t-5 13v71q0 8 5 13t13 5h125v66h-125q-8 0-13 5t-5 13v83q0 7 5 12t13 6h125v351q0 8 5 13t13 5h301q111 0 182-69t70-175z" horiz-adv-x="714.3" />
<glyph glyph-name="won" unicode="&#xe8ea;" d="m287 183l45 167h-89l42-167q1-1 1-2t0-2q0 1 1 2t0 2z m65 238l19 72h-163l18-72h126z m107 0h77l-19 72h-39z m250-238l44 167h-91l46-167q0 0 0-2t1-2q0 1 0 2t0 2z m62 238l19 72h-166l19-72h128z m229-17v-36q0-8-5-13t-13-5h-119l-91-344q-4-13-18-13h-88q-14 0-18 13l-92 344h-117l-93-344q-4-13-17-13h-89q-6 0-11 4t-6 9l-89 344h-116q-8 0-13 5t-5 13v36q0 7 5 12t13 5h98l-19 72h-79q-8 0-13 5t-5 13v35q0 8 5 13t13 5h61l-50 192q-3 9 3 16q5 7 14 7h77q14 0 17-14l50-201h201l54 201q4 14 17 14h70q14 0 18-14l54-201h204l52 201q3 14 17 14h77q9 0 14-7q6-7 3-16l-51-192h62q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-81l-19-72h100q8 0 13-5t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="bitcoin" unicode="&#xe8eb;" d="m651 493q10-102-73-144q65-16 98-58t25-119q-4-40-18-70t-36-49t-54-33t-68-19t-81-9v-142h-86v140q-45 0-68 1v-141h-86v142q-10 0-30 1t-31 0h-112l18 102h62q27 0 32 28v225h9q-4 0-9 0v160q-7 38-50 38h-62v92l119-1q35 0 54 1v141h86v-138q45 1 68 1v137h86v-141q44-4 78-13t63-25t46-43t20-64z m-120-304q0 20-8 35t-21 26t-32 17t-36 10t-42 5t-38 2t-36 0t-27-1v-189q5 0 21 0t27 0t29 1t33 2t32 5t31 8t26 11t22 17t14 22t5 29z m-39 265q0 19-7 33t-17 23t-27 16t-31 9t-34 5t-33 1t-30 0t-22-1v-171q3 0 20 0t26 0t27 1t31 3t29 6t27 10t21 15t15 22t5 28z" horiz-adv-x="714.3" />
<glyph glyph-name="sort" unicode="&#xe8ec;" d="m571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25t25 11h500q14 0 25-11t10-25z m0 214q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25t11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-down" unicode="&#xe8ed;" d="m571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25t25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-up" unicode="&#xe8ee;" d="m571 457q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25t11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-alt-up" unicode="&#xe8ef;" d="m411 46q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m589-71v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m-107 285v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-alt-down" unicode="&#xe8f0;" d="m679-25v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z m-268 71q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m375 215v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m107 285v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m107 286v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-name-up" unicode="&#xe8f1;" d="m665 622h98l-40 122l-6 26q-2 9-2 11h-2l-2-11q0 0-1-10t-5-16z m-254-576q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m466-66v-130h-326v50l206 295q7 10 12 16l6 5v1q-1 0-4 0t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-296q-4-4-12-14l-6-7v-1l8 1q5 2 16 2h139v66h67z m50 501v-60h-161v60h42l-26 80h-136l-26-80h42v-60h-160v60h39l128 369h90l129-369h39z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-name-down" unicode="&#xe8f2;" d="m665 51h98l-40 122l-6 26q-2 9-2 11h-2l-2-11q0-1-1-10t-5-16z m-254-5q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m516-137v-59h-161v59h42l-26 80h-136l-26-80h42v-59h-160v59h39l128 370h90l129-370h39z m-50 642v-130h-326v51l206 295q7 10 12 15l6 5v2q-1 0-4-1t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-295q-4-5-12-15l-6-6v-1l8 1q5 1 16 1h139v66h67z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-number-up" unicode="&#xe8f3;" d="m751 117q0 35-24 65t-58 30q-29 0-46-21t-18-52t21-53t58-22q28 0 48 15t19 38z m-340-71q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m418 39q0-35-7-68t-23-64t-38-53t-55-36t-71-14q-35 0-60 9q-14 4-24 8l22 63q8-4 17-6q21-7 42-7q47 0 75 33t37 81h-1q-11-13-34-21t-47-8q-59 0-97 40t-37 97q0 58 40 99t101 41q69 0 114-53t46-141z m-17 400v-64h-261v64h93v241q0 4 0 11t1 9v9h-2l-3-7q-5-7-15-17l-35-32l-45 48l107 103h68v-365h92z" horiz-adv-x="857.1" />
<glyph glyph-name="sort-number-down" unicode="&#xe8f4;" d="m751 689q0 35-24 64t-58 30q-29 0-46-21t-18-52t21-53t58-21q28 0 48 15t19 38z m-340-643q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m401-132v-64h-261v64h93v241q0 4 0 10t1 10v9h-2l-3-7q-5-7-15-17l-35-33l-45 48l107 104h68v-365h92z m17 742q0-34-7-67t-23-64t-38-53t-55-37t-71-14q-35 0-60 9q-14 5-24 9l22 63q8-4 17-6q21-8 42-8q47 0 75 33t37 81h-1q-11-13-34-20t-47-8q-59 0-97 40t-37 96q0 59 40 99t101 41q69 0 114-53t46-141z" horiz-adv-x="857.1" />
<glyph glyph-name="hammer" unicode="&#xe8f5;" d="m988-7q0-30-20-50l-60-61q-22-20-51-20q-29 0-50 20l-203 204q-21 20-21 50q0 29 24 53l-143 143l-70-70q-8-8-19-8t-19 8q1-1 7-7t7-7t6-7t5-7t4-8t3-9t0-10q0-21-15-38q-2-1-9-10t-11-11t-10-9t-13-9t-12-5t-14-3q-23 0-38 16l-228 228q-16 15-16 38q0 7 3 14t5 12t9 13t9 10t11 11t10 9q17 15 38 15q6 0 10 0t9-4t8-3t8-5t6-6t7-7t7-7q-8 8-8 19t8 19l194 194q8 8 19 8t19-8q-1 1-7 7t-7 7t-6 7t-5 7t-3 8t-4 9t0 10q0 21 15 38q2 1 9 10t11 11t10 9t13 9t12 5t14 3q23 0 38-16l228-228q16-15 16-38q0-7-3-14t-5-12t-8-13t-10-10t-11-11t-10-9q-17-15-38-15q-6 0-10 0t-9 4t-8 3t-7 5t-7 6t-7 7t-7 7q8-8 8-19t-8-19l-70-70l143-143q24 24 53 24q29 0 51-21l203-202q20-22 20-51z" horiz-adv-x="1000" />
<glyph glyph-name="gauge" unicode="&#xe8f6;" d="m214 207q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m107 250q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m239-268l57 213q3 14-5 27t-21 16t-27-3t-17-22l-56-213q-33-3-60-25t-35-55q-11-43 11-81t66-50t81 11t50 66q9 33-4 65t-40 51z m369 18q0 30-21 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t21 50z m-358 357q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m250-107q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m179-250q0-145-79-269q-10-17-30-17h-782q-20 0-30 17q-79 123-79 269q0 102 40 194t106 160t160 107t194 39t194-39t160-107t106-160t40-194z" horiz-adv-x="1000" />
<glyph glyph-name="sitemap" unicode="&#xe8f7;" d="m1000 154v-179q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q23 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q22 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v179q0 22 16 38t38 15h53v107q0 29 21 51t51 21h285v107h-53q-23 0-38 15t-16 38v179q0 22 16 38t38 16h178q23 0 38-16t16-38v-179q0-22-16-38t-38-15h-53v-107h285q29 0 51-21t21-51v-107h53q23 0 38-15t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="spinner" unicode="&#xe8f8;" d="m277 100q0-33-24-57t-57-23q-33 0-56 23t-24 57t24 57t56 23q33 0 57-23t24-57z m241-107q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m-339 357q0-37-27-63t-63-26t-63 26t-26 63t26 63t63 26t63-26t27-63z m580-250q0-26-18-44t-45-18t-44 18t-18 44t18 44t44 19t45-19t18-44z m-464 500q0-41-29-69t-70-29t-69 29t-29 69t29 69t69 29t70-29t29-69z m259 107q0-45-32-76t-76-31t-75 31t-32 76t32 76t75 31t76-31t32-76z m303-357q0-22-15-38t-38-16t-38 16t-16 38t16 38t38 16t38-16t15-38z m-116 250q0-18-13-32t-32-13t-31 13t-13 32t13 31t31 14t32-14t13-31z" horiz-adv-x="875" />
<glyph glyph-name="coffee" unicode="&#xe8f9;" d="m929 493q0 45-32 76t-76 31h-35v-214h35q45 0 76 31t32 76z m-929-429h1000q0-59-42-101t-101-42h-714q-59 0-101 42t-42 101z m1036 429q0-89-63-152t-152-62h-35v-18q0-52-37-88t-88-37h-393q-51 0-88 37t-37 88v410q0 15 11 26t25 10h642q89 0 152-63t63-151z" horiz-adv-x="1071.4" />
<glyph glyph-name="food" unicode="&#xe8fa;" d="m357 814v-357q0-34-20-62t-51-39v-435q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v435q-31 11-51 39t-20 62v357q0 15 11 25t25 11t25-11t10-25v-232q0-14 11-25t25-11t25 11t11 25v232q0 15 10 25t26 11t25-11t10-25v-232q0-14 11-25t25-11t25 11t11 25v232q0 15 10 25t25 11t26-11t10-25z m429 0v-893q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v286h-125q-7 0-12 5t-5 13v446q0 74 52 127t126 52h143q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="beer" unicode="&#xe8fb;" d="m357 350v214h-143v-143q0-29 21-50t51-21h71z m572-250v-107h-643v107l71 107h-71q-89 0-152 63t-63 151v179l-35 36l18 71h267l18 72h536l18-108l-36-17v-447z" horiz-adv-x="928.6" />
<glyph glyph-name="user-md" unicode="&#xe8fc;" d="m214 100q0-14-10-25t-25-11t-26 11t-10 25t10 25t26 11t25-11t10-25z m572-34q0-68-41-106t-108-39h-488q-67 0-108 39t-41 106q0 38 3 73t14 77t26 74t45 58t67 33q-12-29-12-67v-113q-32-11-52-39t-20-62q0-45 32-76t76-31t75 31t32 76q0 34-20 62t-52 39v113q0 35 14 52q74-58 165-58t164 58q14-17 14-52v-35q-59 0-101-42t-41-101v-50q-18-16-18-40q0-22 15-37t38-16t38 16t16 37q0 24-18 40v50q0 29 21 50t50 21t51-21t21-50v-50q-18-16-18-40q0-22 16-37t38-16t38 16t15 37q0 24-18 40v50q0 38-19 71t-52 52q0 6 0 24t0 27t-1 23t-4 26t-7 22q38-8 67-33t45-58t26-74t14-77t3-73z m-179 498q0-88-63-151t-151-63t-152 63t-62 151t62 152t152 63t151-63t63-152z" horiz-adv-x="785.7" />
<glyph glyph-name="stethoscope" unicode="&#xe8fd;" d="m714 457q0 15-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m72 0q0-34-20-62t-52-39v-220q0-89-73-152t-177-63t-176 63t-74 152v73q-91 12-153 72t-61 140v286q0 15 11 25t25 11q3 0 9-1q9 16 26 27t36 10q30 0 51-21t21-51t-21-50t-51-21q-18 0-36 10v-225q0-59 53-101t126-41t126 41t53 101v225q-18-10-36-10q-30 0-51 21t-21 50t21 51t51 21q19 0 36-10t26-27q6 1 9 1q15 0 25-11t11-25v-286q0-80-61-140t-153-72v-73q0-59 52-101t126-42t126 42t53 101v220q-32 12-52 39t-20 62q0 45 32 76t76 31t75-31t32-76z" horiz-adv-x="785.7" />
<glyph glyph-name="ambulance" unicode="&#xe8fe;" d="m357 64q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m-214 286h214v143h-88q-8-1-12-5l-109-109q-4-7-5-12v-17z m714-286q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m72 375v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h125v-125q0-7 5-12t13-5h107q8 0 13 5t5 12v125h125q8 0 13 5t5 13z m142 304v-643q0-14-10-25t-25-11h-107q0-59-42-101t-101-42t-101 42t-42 101h-214q0-59-42-101t-101-42t-101 42t-42 101h-72q-14 0-25 11t-10 25t10 25t25 11v232q0 14 8 32t18 29l110 110q11 11 29 18t32 7h89v179q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="1071.4" />
<glyph glyph-name="medkit" unicode="&#xe8ff;" d="m714 225v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h125v-125q0-8 5-13t12-5h108q7 0 12 5t5 13v125h125q8 0 13 5t5 13z m-357 411h286v71h-286v-71z m-214 0v-715h-18q-51 0-88 37t-37 88v465q0 51 37 88t88 37h18z m661 0v-715h-608v715h90v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h90z m196-125v-465q0-51-37-88t-88-37h-18v715h18q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="h-sigh" unicode="&#xe900;" d="m714 100v500q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-179h-285v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-500q0-14 11-25t25-11h71q15 0 25 11t11 25v179h285v-179q0-14 11-25t25-11h72q14 0 25 11t10 25z m143 518v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="hospital" unicode="&#xe901;" d="m214 118v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m0 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m143 0v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m429-286v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m286-143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 5h36q7 0 13-5t5-12z m143 0v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 5h36q7 0 13-5t5-12z m-143-483h214v643h-143v-18q0-22-15-38t-38-15h-250q-22 0-38 15t-16 38v18h-143v-643h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125z m0 661v179q0 7-5 12t-13 6h-36q-7 0-12-6t-5-12v-54h-72v54q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-179q0-7 5-12t13-6h35q8 0 13 6t5 12v54h72v-54q0-7 5-12t12-6h36q7 0 13 6t5 12z m286 18v-714q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v714q0 15 11 25t25 11h178v160q0 23 16 38t38 16h250q22 0 38-16t15-38v-160h179q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="building" unicode="&#xe902;" d="m214 118v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m0 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m143 0v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m429-286v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m429-285v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 5h36q7 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m429-285v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 5h36q7 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13v35q0 8 5 13t12 5h36q7 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m286-143v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13v35q0 8 6 13t12 5h36q7 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13v35q0 8 5 13t12 5h36q7 0 13-5t5-13z m143 0v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13v35q0 8 6 13t12 5h36q7 0 13-5t5-13z m-143-768h214v858h-643v-858h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125z m286 893v-928q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v928q0 15 11 25t25 11h714q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="smile" unicode="&#xe903;" d="m633 250q-21-67-77-109t-127-41t-128 41t-77 109q-4 14 3 27t21 18q14 4 27-2t17-22q14-44 52-72t85-28t84 28t52 72q4 15 18 22t27 2t21-18t2-27z m-276 243q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="frown" unicode="&#xe904;" d="m633 164q4-14-2-27t-21-17t-27 2t-18 21q-14 45-52 72t-84 28t-85-28t-52-72q-4-15-17-21t-27-2q-15 4-21 17t-3 27q21 68 77 109t128 41t127-41t77-109z m-276 329q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="meh" unicode="&#xe905;" d="m643 243q0-15-11-25t-25-11h-357q-14 0-25 11t-11 25t11 25t25 11h357q15 0 25-11t11-25z m-286 250q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="anchor" unicode="&#xe906;" d="m536 707q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m464-518v-196q0-12-11-17q-5-1-7-1q-7 0-13 5l-52 52q-66-80-177-127t-240-46t-240 46t-177 127l-52-52q-5-5-13-5q-2 0-7 1q-11 5-11 17v196q0 8 5 13t13 5h196q13 0 17-11q5-11-4-20l-56-55q38-51 106-86t152-46v361h-108q-14 0-25 11t-10 25v71q0 15 10 25t25 11h108v91q-33 19-52 51t-20 72q0 59 42 101t101 42t101-42t42-101q0-39-20-72t-52-51v-91h108q14 0 25-11t10-25v-71q0-15-10-25t-25-11h-108v-361q84 11 152 46t106 86l-56 55q-8 9-4 20q4 11 17 11h196q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="terminal" unicode="&#xe907;" d="m326 301l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13t-6-13z m603-255v-35q0-8-5-13t-13-5h-536q-8 0-13 5t-5 13v35q0 8 5 13t13 5h536q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="eraser" unicode="&#xe908;" d="m500 64l188 215h-429l-188-215h429z m565 601q9-19 6-40t-17-36l-500-572q-22-24-54-24h-429q-21 0-38 11t-27 31q-8 19-5 40t17 36l500 572q21 24 53 24h429q21 0 39-11t26-31z" horiz-adv-x="1071.4" />
<glyph glyph-name="puzzle" unicode="&#xe909;" d="m929 237q0-45-25-75t-69-30q-23 0-43 10t-33 21t-32 21t-39 10q-62 0-62-69q0-22 9-65t8-64v-3q-12 0-18 0q-19-2-54-7t-65-7t-55-3q-34 0-57 15t-23 47q0 20 9 39t22 32t21 33t9 43q0 44-30 69t-75 25q-47 0-80-26t-33-71q0-24 9-46t18-36t19-30t8-28q0-25-25-50q-21-19-66-19q-53 0-136 13q-5 1-16 2t-15 3l-7 1q-1 0-2 0q-1 0-1 1v571q1 0 10-2t19-2t12-2q83-14 136-14q45 0 66 20q25 24 25 49q0 13-8 29t-19 29t-18 36t-9 46q0 46 33 72t81 25q44 0 74-25t30-69q0-23-9-43t-21-33t-22-31t-9-40q0-32 23-47t57-14q36 0 101 8t91 9v-1q-1-1-2-9t-3-19t-2-12q-13-84-13-137q0-45 19-65q25-26 50-26q12 0 28 8t30 19t36 19t46 8q46 0 71-33t26-80z" horiz-adv-x="928.6" />
<glyph glyph-name="shield" unicode="&#xe90a;" d="m607 314v357h-250v-634q67 35 119 76q131 103 131 201z m107 429v-429q0-48-18-95t-47-84t-66-71t-70-57t-68-43t-50-28t-23-11q-7-4-15-4t-14 4q-9 4-24 11t-50 28t-68 43t-70 57t-66 71t-46 84t-19 95v429q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="714.3" />
<glyph glyph-name="extinguisher" unicode="&#xe90b;" d="m286 743q0 14-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m500 18v-179q0-9-7-14q-4-4-11-4q-2 0-4 1l-250 53q-6 1-10 6t-4 12h-143v-57q62-13 103-62t40-114v-446q0-14-11-25t-25-11h-285q-15 0-26 11t-10 25v446q0 60 35 107t90 64v62h-18q-33 0-64-13t-51-30t-37-37t-23-30t-7-14q-10-19-32-19q-9 0-16 4q-13 6-18 20t2 28q3 5 8 14t21 30t34 39t47 37t61 30q-14 23-14 48q0 37 26 63t63 26t63-26t26-63q0-19-7-36h168q0 6 4 11t10 6l250 54q2 0 4 0q7 0 11-3q7-5 7-14z" horiz-adv-x="785.7" />
<glyph glyph-name="bullseye" unicode="&#xe90c;" d="m571 350q0-59-41-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t41-101z m72 0q0 89-63 152t-151 62t-152-62t-63-152t63-151t152-63t151 63t63 151z m71 0q0-118-83-202t-202-84t-202 84t-84 202t84 202t202 84t202-84t83-202z m72 0q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full" unicode="&#xe90d;" d="m784 111l127 128l0-336l-335 0l128 130l-128 127l79 79z m-431 686l-129-127l128-127l-80-80l-126 128l-128-129l0 335l335 0z m0-637l-129-127l129-130l-335 0l0 336l128-128l128 128z m558 637l0-335l-127 129l-128-128l-79 80l127 127l-128 127l335 0z" horiz-adv-x="928" />
<glyph glyph-name="split" unicode="&#xe83d;" d="m576 797l112 0l0-108q0-115-82-197l-316-314q-44-45-48-106l111 0l-167-169l-168 169l113 0q6 111 80 185l316 314q49 50 49 118l0 108z m110-725l113 0l-167-169l-168 169l111 0q-4 61-48 106l-63 62l80 79l62-62q74-74 80-185z" horiz-adv-x="817" />
<glyph glyph-name="target" unicode="&#xe8a7;" d="m521 407l0 162q60-16 103-60t59-102l-162 0z m0-113l162 0q-16-59-59-103t-103-59l0 162z m-113 113l-162 0q16 59 59 102t103 60l0-162z m0-113l0-162q-60 16-103 59t-59 103l162 0z m113 390l0 113q152-19 261-128t129-262l-113 0q-18 107-95 183t-182 94z m-390-277l-113 0q19 152 128 261t262 129l0-113q-106-18-182-94t-95-183z m277-390l0-114q-154 19-262 129t-128 262l113 0q18-107 95-183t182-94z m390 277l113 0q-21-153-129-262t-261-129l0 114q105 18 182 94t95 183z" horiz-adv-x="928" />
<glyph glyph-name="layers" unicode="&#xe829;" d="m18 183l446-112l447 112l0-112l-447-112l-446 112l0 112z m0 223l446-112l447 112l0-112l-447-111l-446 111l0 112z m0 223l446 112l447-112l0-111l-447-112l-446 112l0 111z" horiz-adv-x="928" />
<glyph glyph-name="chart-bar" unicode="&#xe90f;" d="m688-97l0 894l223 0l0-894l-223 0z m-335 0l0 671l223 0l0-671l-223 0z m-335 0l0 448l223 0l0-448l-223 0z" horiz-adv-x="928" />
<glyph glyph-name="link" unicode="&#xe913;" d="m8 96q-17 66 0 132t67 115l131 131q49 49 115 67t131 0t116-67q20-20 20-49t-20-50t-50-20t-49 20q-35 34-82 34t-81-34l-132-131q-33-34-33-82t33-82q34-33 82-33t81 33l27 28q78-38 164-36l-91-91q-49-49-115-66t-132 0t-115 66t-67 115z m291 180q0 29 21 49q20 21 49 21t50-21q33-34 81-34t82 34l131 132q34 34 34 81t-34 81q-33 34-81 34t-82-34l-27-26q-77 36-164 35l91 91q50 49 116 66t131 0t115-66q49-49 67-115t0-132t-67-115l-131-131q-49-49-115-67t-132 0t-114 67q-21 21-21 50z" horiz-adv-x="887.2" />
<glyph glyph-name="download" unicode="&#xe822;" d="m0 84v73q0 33 24 56t57 24t56-24t24-56v-73q0-17 12-29t30-13h531q18 0 30 13t12 29v73q0 33 24 56t56 24t57-24t24-56v-73q0-84-59-143t-144-60h-531q-84 0-144 60t-59 143z m155 359q0 33 24 57q23 23 56 23t57-23l105-106v344q0 33 24 57t56 23t57-23t24-57v-344l110 110q24 24 57 24t56-24q24-23 24-56t-24-57l-247-247q-24-25-57-25q-32 0-56 25l-242 242q-24 24-24 57z" horiz-adv-x="937.5" />
<glyph glyph-name="upload" unicode="&#xe827;" d="m0 84v73q0 33 24 56t57 24t56-24t24-56v-73q0-17 12-29t30-13h531q18 0 30 13t12 29v73q0 33 24 56t56 24t57-24t24-56v-73q0-84-59-143t-144-60h-531q-84 0-143 59t-60 144z m155 407q0 33 24 57l247 247q23 23 57 23q33 0 56-23l243-242q23-24 23-57t-23-57q-24-23-57-23t-57 23l-105 105v-344q0-33-24-57t-56-24q-33 0-57 24t-24 57v344l-110-110q-24-23-57-23t-56 23t-24 57z" horiz-adv-x="937.5" />
<glyph glyph-name="download-cloud" unicode="&#xe910;" d="m0 274q2 54 23 103t63 87t95 61q64 28 154 15q39 79 113 127t164 49q83 0 152-41t109-111t40-148v-29h7q80 32 159-4t112-113q31-81-4-159t-113-113l-17-4t-16-4t-13-3t-15-2t-13-1h-724q-84 0-154 49t-102 134q-23 52-20 107z m448 103q-6-9 4-20l131-219q8-8 15-8q3 0 7 2t6 4l1 2l140 219q6 12 0 21t-22 9h-52v102h-153v-102h-59q-12 0-18-10z" horiz-adv-x="1205.6" />
<glyph glyph-name="upload-cloud" unicode="&#xe911;" d="m0 251q-2 45 10 86t34 78t58 65t77 44q77 30 156 13q36 81 111 130t166 49q62 0 118-24t97-65t65-97t25-119q0-9-2-27q1 0 3 1t3 2q80 31 159-4t110-116q20-55 12-108t-43-96t-88-65q-35-13-73-14h-298v168h68q19 0 25 11t-4 26l-171 275q-6 10-16 10q-4 0-8-3t-6-5l-2-2l-171-275q-10-15-3-26t25-11h67v-168h-224v1q-86 0-158 48t-103 131q-17 42-19 87z" horiz-adv-x="1205.1" />
<glyph glyph-name="share" unicode="&#xe912;" d="m0 90v490q0 70 50 119t119 50h129q29 0 48-20t20-46q0-29-20-48t-48-20h-129q-15 0-25-10t-10-25v-490q0-14 10-25t25-10h588q15 0 25 10t10 25v60q0 27 20 47t46 20q28 0 48-20t19-47v-60q0-70-49-119t-119-50h-588q-70 0-119 50t-50 119z m244 90q45 81 121 132t167 59q42 3 74-2v-103q0-22 11-30t27 4l283 207q10 8 10 19q0 6-2 11t-6 7l-2 2l-283 207q-15 12-27 4t-11-30v-84q-7 0-20-1q-73-7-137-41t-109-89t-72-124t-24-148z" horiz-adv-x="937.5" />
<glyph glyph-name="hdd" unicode="&#xe841;" d="m0 171v200q0 26 17 45h0l93 123q21 29 57 29h66q112 31 269 31q157 0 269-31h65q37 0 58-29l93-123h0q17-19 17-45v-200q0-29-21-49t-49-21h-864q-29 0-49 21t-21 49z m99 60q0-15 11-26t27-11h88q15 0 26 11t11 26t-11 27t-26 11h-88q-16 0-27-11t-11-27z m73 236q0-23 44-41t120-30t166-11t166 11t120 30t44 41t-44 41t-120 30t-166 11t-166-11t-120-30t-44-41z m146-236q0-15 11-26t26-11h11q15 0 26 11t11 26t-11 27t-26 11h-11q-15 0-26-11t-11-27z m85 236q0 10 29 17t70 8q40 0 69-8t29-17t-29-17t-69-8q-41 0-70 8t-29 17z" horiz-adv-x="1004.4" />
<glyph glyph-name="trash" unicode="&#xe89f;" d="m0 633l0 141l289 0l0 76l246 0l0-76l289 0l0-141l-824 0z m43-783l0 676l738 0l0-676l-738 0z" horiz-adv-x="824" />
<glyph glyph-name="folder" unicode="&#xe8d7;" d="m0-52l0 715l139 0l68 90l217 0l68-90l508 0l0-715l-1000 0z" horiz-adv-x="1000" />
<glyph glyph-name="code" unicode="&#xe844;" d="m1000 849l500-500l-500-500l-154 154l346 346l-346 346z m-692-500l346-346l-154-154l-500 500l500 500l154-154z" horiz-adv-x="1500" />
<glyph glyph-name="pause" unicode="&#xe800;" d="m0-43v786q0 14 11 25t25 11h285q15 0 26-11t10-25v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25z m500 0v786q0 14 11 25t25 11h285q15 0 26-11t10-25v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="glass" unicode="&#xe801;" d="m52 746q0 13 10 21t21 9 24 3h786q13 0 24-3t21-9 10-21q0-19-24-43l-353-353v-429h179q15 0 25-10t11-25-11-25-25-11h-500q-14 0-25 11t-11 25 11 25 25 10h179v429l-353 353q-24 24-24 43z" horiz-adv-x="1000" />
<glyph glyph-name="music" unicode="&#xe802;" d="m0-43q0 28 19 50t48 34 58 17 54 6q58 0 107-21v539q0 17 10 32t28 19l464 143q7 3 16 3 22 0 38-16t15-38v-625q0-28-19-50t-48-33-58-18-53-6-54 6-58 18-48 33-19 50 19 50 48 33 58 18 54 6q58 0 107-22v300l-429-132v-396q0-28-19-49t-48-34-58-18-53-6-54 6-58 18-48 34-19 49z" horiz-adv-x="857.1" />
<glyph glyph-name="search" unicode="&#xe803;" d="m0 386q0 80 31 152t84 126 125 84 153 31 152-31 126-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51 0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 83-84 126-31 153z m143 0q0-103 73-177t177-73 176 73 74 177-74 176-176 74-177-74-73-176z" horiz-adv-x="928.6" />
<glyph glyph-name="mail" unicode="&#xe804;" d="m0 11v607q0 37 26 63t63 26h822q37 0 63-26t26-63v-607q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63z m71 0q0-8 6-13t12-5h822q7 0 12 5t6 13v428q-18-20-39-37-149-114-238-188-28-24-46-38t-48-27-57-13h-2q-26 0-57 13t-48 27-46 38q-88 74-238 188-21 17-39 37v-428z m0 607q0-94 82-159 108-84 224-176 4-3 20-17t25-21 25-17 28-16 24-5h2q11 0 24 5t28 16 25 17 25 21 20 17q116 92 224 176 30 24 56 65t26 73v14t-1 7-1 7-3 5-5 4-8 2h-822q-7 0-12-6t-6-12z" horiz-adv-x="1000" />
<glyph glyph-name="mail-alt" unicode="&#xe805;" d="m0 11v443q25-28 56-49 202-137 278-192 32-24 51-37t53-27 61-13h2q28 0 61 13t53 27 51 37q95 68 278 192 32 22 56 49v-443q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63z m0 595q0 43 23 72t66 29h822q36 0 62-26t27-63q0-44-27-84t-68-69q-210-146-262-181-5-4-23-17t-30-22-29-18-33-15-27-5h-2q-12 0-27 5t-33 15-29 18-30 22-23 17q-51 35-147 101t-114 80q-35 23-65 64t-31 77z" horiz-adv-x="1000" />
<glyph glyph-name="heart" unicode="&#xe806;" d="m0 517q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10t-25 10l-348 336q-5 5-15 15t-31 36-38 55-30 67-13 77z" horiz-adv-x="1000" />
<glyph glyph-name="heart-empty" unicode="&#xe807;" d="m0 517q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10t-25 10l-348 336q-5 5-15 15t-31 36-38 55-30 67-13 77z m71 0q0-93 105-198l324-312 324 312q105 105 105 198 0 46-12 80t-31 55-46 33-52 18-55 4-62-14-62-36-48-40-34-34q-10-13-27-13t-27 13q-14 15-34 34t-48 40-62 36-62 14-55-4-52-18-46-33-31-55-12-80z" horiz-adv-x="1000" />
<glyph glyph-name="star" unicode="&#xe808;" d="m0 489q0 21 31 26l280 40 126 254q11 23 27 23t28-23l125-254 280-40q32-5 32-26 0-12-15-27l-203-197 48-279q1-4 1-12 0-11-6-19t-17-9q-10 0-22 7l-251 132-250-132q-13-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27z" horiz-adv-x="928.6" />
<glyph glyph-name="star-empty" unicode="&#xe809;" d="m0 489q0 21 31 26l280 40 126 254q11 23 27 23t28-23l125-254 280-40q32-5 32-26 0-12-15-27l-203-197 48-279q1-4 1-12 0-28-23-28-10 0-22 7l-251 132-250-132q-13-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27z m123-34l171-165-41-235 211 111 211-111-41 235 171 165-235 35-106 213-105-213z" horiz-adv-x="928.6" />
<glyph glyph-name="star-half" unicode="&#xe80a;" d="m0 489q0 21 31 26l280 40 126 254q11 23 27 23v-747l-250-132q-13-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27z" horiz-adv-x="500" />
<glyph glyph-name="star-half-alt" unicode="&#xe80b;" d="m1 495q5 16 30 20l280 40 126 254q11 23 27 23 16 0 28-23l125-254 280-40q25-4 30-20t-13-33l-203-197 48-279q3-19-3-29t-19-11q-9 0-22 7l-251 132-250-132q-13-7-23-7-12 0-19 11t-3 29l48 279-203 197q-18 18-13 33z m463-329l33-17 178-94-34 198-7 37 28 26 143 139-198 29-37 6-17 34-89 179v-537z" horiz-adv-x="928.6" />
<glyph glyph-name="user" unicode="&#xe80c;" d="m0 66q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q5 0 24-12t41-27 60-27 75-12 74 12 61 27 41 27 24 12q34 0 62-11t48-30 34-45 24-55 15-60 8-61 2-58q0-67-41-106t-108-39h-488q-67 0-108 39t-41 106z m179 498q0 89 62 152t152 63 151-63 63-152-63-151-151-63-152 63-62 151z" horiz-adv-x="785.7" />
<glyph glyph-name="users" unicode="&#xe80d;" d="m0 367q0 197 69 197 4 0 25-11t54-24 66-12q38 0 75 13-3-21-3-37 0-78 45-143-90-3-148-72h-75q-45 0-77 23t-31 66z m71 340q0 59 42 101t101 42 101-42 42-101-42-101-101-42-101 42-42 101z m72-713q0 30 2 58t8 61 14 61 24 54 35 45 48 30 62 11q6 0 24-12t41-26 59-27 76-12 75 12 60 27 41 26 23 12q35 0 63-11t47-30 35-45 24-54 15-61 8-61 2-58q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105z m178 499q0 89 63 151t152 63 151-63 63-151-63-152-151-63-152 63-63 152z m393 214q0 59 42 101t101 42 101-42 42-101-42-101-101-42-101 42-42 101z m27-357q45 65 45 143 0 16-3 37 37-13 74-13 33 0 67 12t54 24 24 11q69 0 69-197 0-43-31-66t-77-22h-75q-57 68-147 71z" horiz-adv-x="1071.4" />
<glyph glyph-name="male" unicode="&#xe80e;" d="m0 225v232q0 45 31 76t76 31h357q45 0 76-31t31-76v-232q0-22-15-38t-38-16-38 16-16 38v196h-35v-509q0-25-19-44t-44-18-44 18-18 44v259h-36v-259q0-25-19-44t-44-18-44 18-18 44v509h-36v-196q0-22-15-38t-38-16-38 16-16 38z m161 482q0 52 36 89t89 36 88-36 37-89-37-88-88-37-89 37-36 88z" horiz-adv-x="571.4" />
<glyph glyph-name="female" unicode="&#xe80f;" d="m0 261q0 16 9 29l143 215q41 59 98 59h214q58 0 99-59l142-215q9-13 9-29 0-23-15-38t-38-16q-29 0-45 24l-127 190h-25v-73l138-230q5-8 5-18 0-14-10-25t-26-11h-107v-151q0-26-18-45t-44-18h-89q-26 0-45 18t-18 45v151h-107q-15 0-25 11t-11 25q0 10 5 18l138 230v73h-25l-127-190q-16-24-44-24-23 0-38 16t-16 38z m232 446q0 52 37 89t88 36 89-36 36-89-36-88-89-37-88 37-37 88z" horiz-adv-x="714.3" />
<glyph glyph-name="video" unicode="&#xe810;" d="m0-61v750q0 37 26 63t63 27h893q37 0 63-27t26-63v-750q0-37-26-63t-63-26h-893q-36 0-63 26t-26 63z m71 90v-72q0-14 11-25t25-11h72q14 0 25 11t10 25v72q0 14-10 25t-25 10h-72q-14 0-25-10t-11-25z m0 142q0-14 11-25t25-10h72q14 0 25 10t10 25v72q0 14-10 25t-25 11h-72q-14 0-25-11t-11-25v-72z m0 215q0-15 11-25t25-11h72q14 0 25 11t10 25v71q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-71z m0 214q0-15 11-25t25-11h72q14 0 25 11t10 25v71q0 15-10 26t-25 10h-72q-14 0-25-10t-11-26v-71z m215-643q0-14 10-25t25-11h429q15 0 25 11t11 25v286q0 14-11 25t-25 11h-429q-14 0-25-11t-10-25v-286z m0 429q0-15 10-25t25-11h429q15 0 25 11t11 25v285q0 15-11 26t-25 10h-429q-14 0-25-10t-10-26v-285z m571-357v-72q0-14 11-25t25-11h71q15 0 25 11t11 25v72q0 14-11 25t-25 10h-71q-15 0-25-10t-11-25z m0 142q0-14 11-25t25-10h71q15 0 25 10t11 25v72q0 14-11 25t-25 11h-71q-15 0-25-11t-11-25v-72z m0 215q0-15 11-25t25-11h71q15 0 25 11t11 25v71q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-71z m0 214q0-15 11-25t25-11h71q15 0 25 11t11 25v71q0 15-11 26t-25 10h-71q-15 0-25-10t-11-26v-71z" horiz-adv-x="1071.4" />
<glyph glyph-name="videocam" unicode="&#xe811;" d="m0 154v392q0 67 47 114t114 47h393q66 0 113-47t47-114v-92l225 225q10 10 25 10 7 0 14-3 22-9 22-32v-608q0-23-22-32-7-3-14-3-15 0-25 10l-225 225v-92q0-67-47-114t-113-47h-393q-67 0-114 47t-47 114z" horiz-adv-x="1000" />
<glyph glyph-name="picture" unicode="&#xe812;" d="m0 11v678q0 37 26 63t63 27h893q37 0 63-27t26-63v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63z m71 0q0-8 6-13t12-5h893q7 0 13 5t5 13v678q0 8-5 13t-13 5h-893q-7 0-12-5t-6-13v-678z m72 53v107l178 179 90-89 285 285 233-232v-250h-786z m0 465q0 44 31 75t76 32 76-32 31-75-31-76-76-32-76 32-31 76z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera" unicode="&#xe813;" d="m0 64v500q0 59 42 101t101 42h125l28 76q11 27 39 47t58 20h286q29 0 57-20t39-47l29-76h125q59 0 101-42t41-101v-500q0-59-41-101t-101-42h-786q-59 0-101 42t-42 101z m286 250q0-103 73-176t177-74 176 74 74 176-74 177-176 73-177-73-73-177z m89 0q0 67 47 114t114 47 113-47 47-114-47-113-113-47-114 47-47 113z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera-alt" unicode="&#xe814;" d="m0-7v714q0 30 21 51t50 21h858q29 0 50-21t21-51v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51z m71 0h858v71h-858v-71z m0 571h858v143h-462l-36-71h-360v-72z m72 107h214v72h-214v-72z m143-358q0-89 63-151t151-63 152 63 62 151-62 152-152 62-151-62-63-152z m71 0q0 59 42 101t101 42 101-42 42-101-42-101-101-42-101 42-42 101z m54 1q0-8 5-13t13-5 12 5 5 13q0 23 16 38t38 16q8 0 13 5t5 13-5 13-13 5q-37 0-63-27t-26-63z" horiz-adv-x="1000" />
<glyph glyph-name="th-large" unicode="&#xe815;" d="m0 64v215q0 29 21 50t50 21h286q29 0 50-21t22-50v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50z m0 429v214q0 29 21 50t50 22h286q29 0 50-22t22-50v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50z m500-429v215q0 29 21 50t50 21h286q29 0 50-21t22-50v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50z m0 429v214q0 29 21 50t50 22h286q29 0 50-22t22-50v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50z" horiz-adv-x="928.6" />
<glyph glyph-name="th" unicode="&#xe816;" d="m0 46v108q0 22 16 38t38 15h178q22 0 38-15t16-38v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h178q22 0 38-16t16-38v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h178q22 0 38-16t16-38v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38z m357-572v108q0 22 16 38t38 15h178q23 0 38-15t16-38v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h178q23 0 38-16t16-38v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h178q23 0 38-16t16-38v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38z m357-572v108q0 22 16 38t38 15h178q23 0 38-15t16-38v-108q0-22-16-37t-38-16h-178q-22 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h178q23 0 38-16t16-38v-107q0-22-16-38t-38-15h-178q-22 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h178q23 0 38-16t16-38v-107q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38z" horiz-adv-x="1000" />
<glyph glyph-name="th-list" unicode="&#xe817;" d="m0 46v108q0 22 16 38t38 15h178q22 0 38-15t16-38v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h178q22 0 38-16t16-38v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h178q22 0 38-16t16-38v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38z m357-572v108q0 22 16 38t38 15h535q23 0 38-15t16-38v-108q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h535q23 0 38-16t16-38v-107q0-22-16-38t-38-15h-535q-23 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h535q23 0 38-16t16-38v-107q0-22-16-38t-38-16h-535q-23 0-38 16t-16 38z" horiz-adv-x="1000" />
<glyph glyph-name="ok" unicode="&#xe818;" d="m68 332q0 22 15 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q15-16 15-38t-15-38l-404-404-76-76q-16-15-38-15t-38 15l-76 76-202 202q-15 16-15 38z" horiz-adv-x="1000" />
<glyph glyph-name="ok-circled" unicode="&#xe819;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m141-11q0-15 10-25l202-202q10-10 25-10 15 0 25 10l303 303q11 10 11 25 0 16-11 26l-50 50q-11 11-25 11t-26-11l-227-227-126 126q-11 11-25 11t-26-11l-50-50q-10-10-10-26z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-circled2" unicode="&#xe81a;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m68 0q0 15 11 25l57 57q10 11 25 11t25-11l82-82 153 153q11 11 25 11t26-11l56-56q11-11 11-26t-11-25l-235-235q-11-11-25-11t-25 11l-164 164q-11 11-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-squared" unicode="&#xe81b;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m122 268q0-14 10-25l200-200q11-10 25-10t25 10l343 343q10 10 10 25t-10 25l-57 57q-11 10-25 10t-25-10l-261-261-118 118q-10 11-25 11t-25-11l-57-57q-10-11-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel" unicode="&#xe81c;" d="m61 112q0 23 16 38l164 164-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164 164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164 164-164q15-15 15-38t-15-38l-76-76q-16-15-38-15t-38 15l-164 164-164-164q-16-15-38-15t-38 15l-76 76q-16 16-16 38z" horiz-adv-x="785.7" />
<glyph glyph-name="cancel-circled" unicode="&#xe81d;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m216-126q0-15 11-26l50-50q10-11 25-11 15 0 26 11l101 101 101-101q10-11 25-11 15 0 25 11l51 50q10 11 10 26 0 14-10 25l-101 101 101 101q10 11 10 25 0 15-10 26l-51 50q-10 11-25 11-15 0-25-11l-101-101-101 101q-11 11-26 11-15 0-25-11l-50-50q-11-11-11-26 0-14 11-25l101-101-101-101q-11-11-11-25z" horiz-adv-x="857.1" />
<glyph glyph-name="folder-open" unicode="&#xe81e;" d="m1313 632h-1235q9 48 27 67 16 17 31 17h4q4-1 8-1 12 0 26 4 18 6 25 29l24 72q77 29 208 29 89 0 164-29l25-72q24-23 33-26t43-3h485q84 0 110-22 12-11 22-65z m78-164v-10l-68-523q-5-35-33-61t-65-25h-1058q-36 0-65 25t-34 61l-67 523q-1 3-1 10 0 33 23 55t55 21h1235q33 0 56-21t22-55z" horiz-adv-x="1391" />
<glyph glyph-name="plus" unicode="&#xe81f;" d="m0 332v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q22 0 38-16t16-38v-107q0-22-16-38t-38-16h-232v-232q0-22-16-38t-38-15h-107q-22 0-38 15t-15 38v232h-232q-23 0-38 16t-16 38z" horiz-adv-x="785.7" />
<glyph glyph-name="plus-circled" unicode="&#xe820;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m179-36q0-14 10-25t25-10h143v-143q0-15 11-25t25-11h71q15 0 25 11t11 25v143h143q14 0 25 10t11 25v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72z" horiz-adv-x="857.1" />
<glyph glyph-name="plus-squared" unicode="&#xe821;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 232q0-14 11-25t25-10h178v-179q0-14 11-25t25-11h71q15 0 25 11t11 25v179h179q14 0 25 10t10 25v72q0 14-10 25t-25 10h-179v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-179h-178q-15 0-26-10t-10-25v-72z" horiz-adv-x="857.1" />
<glyph glyph-name="download" unicode="&#xe822;" d="m0 84v73q0 33 24 56t57 24 56-24 24-56v-73q0-17 12-29t30-13h531q18 0 30 13t12 29v73q0 33 24 56t56 24 57-24 24-56v-73q0-84-59-143t-144-60h-531q-84 0-144 60t-59 143z m155 359q0 33 24 57 23 23 56 23t57-23l105-106v344q0 33 24 57t56 23 57-23 24-57v-344l110 110q24 24 57 24t56-24q24-23 24-56t-24-57l-247-247q-24-25-57-25-32 0-56 25l-242 242q-24 24-24 57z" horiz-adv-x="937.5" />
<glyph glyph-name="minus" unicode="&#xe823;" d="m0 332v107q0 23 16 38t38 16h678q22 0 38-16t16-38v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38z" horiz-adv-x="785.7" />
<glyph glyph-name="minus-circled" unicode="&#xe824;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m179-36q0-14 10-25t25-10h429q14 0 25 10t11 25v72q0 14-11 25t-25 10h-429q-14 0-25-10t-10-25v-72z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared" unicode="&#xe825;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 232q0-14 11-25t25-10h500q14 0 25 10t10 25v72q0 14-10 25t-25 10h-500q-15 0-26-10t-10-25v-72z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared-alt" unicode="&#xe826;" d="m0 154v464q0 66 47 113t114 48h464q66 0 114-48t47-113v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114z m71 0q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26h-464q-37 0-63-26t-27-63v-464z m72 214v36q0 7 5 12t13 5h464q8 0 13-5t5-12v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13z" horiz-adv-x="785.7" />
<glyph glyph-name="upload" unicode="&#xe827;" d="m0 84v73q0 33 24 56t57 24 56-24 24-56v-73q0-17 12-29t30-13h531q18 0 30 13t12 29v73q0 33 24 56t56 24 57-24 24-56v-73q0-84-59-143t-144-60h-531q-84 0-143 59t-60 144z m155 407q0 33 24 57l247 247q23 23 57 23 33 0 56-23l243-242q23-24 23-57t-23-57q-24-23-57-23t-57 23l-105 105v-344q0-33-24-57t-56-24q-33 0-57 24t-24 57v344l-110-110q-24-23-57-23t-56 23-24 57z" horiz-adv-x="937.5" />
<glyph glyph-name="help" unicode="&#xe828;" d="m54 543q-1 8 3 16 89 148 259 148 45 0 90-17t81-46 59-72 23-88q0-30-8-57t-20-42-31-33-32-25-34-19q-23-13-38-37t-15-37q0-10-7-18t-16-9h-134q-8 0-14 10t-6 21v25q0 47 37 88t79 60q33 15 47 32t14 42q0 23-26 41t-60 18q-36 0-60-16-20-14-60-64-7-9-17-9-7 0-14 4l-91 70q-8 6-9 14z m160-528v134q0 9 7 16t16 6h134q8 0 15-6t7-16v-134q0-9-7-16t-15-6h-134q-9 0-16 6t-7 16z" horiz-adv-x="571.4" />
<glyph glyph-name="layers" unicode="&#xe829;" d="m18 183l446-112 447 112 0-112-447-112-446 112 0 112z m0 223l446-112 447 112 0-112-447-111-446 111 0 112z m0 223l446 112 447-112 0-111-447-112-446 112 0 111z" horiz-adv-x="928" />
<glyph glyph-name="unlink" unicode="&#xe82a;" d="m0 243q0 8 5 13t13 5h178q8 0 13-5t5-13-5-13-13-5h-178q-8 0-13 5t-5 13z m9 357q0 67 47 113l82 82q47 46 114 46 67 0 114-47l186-187q12-12 23-32l-133-10-152 153q-16 16-38 16-22 0-38-15l-82-82q-16-15-16-37 0-22 16-38l153-153-10-134q-20 12-32 24l-187 187q-47 48-47 114z m62-589q0 7 5 13l143 142q6 5 13 5t13-5q5-5 5-12t-5-13l-143-143q-5-5-13-5-6 0-13 5-5 6-5 13z m233-72v179q0 8 5 13t12 5 13-5 5-13v-179q0-8-5-13t-13-5-12 5-5 13z m49 257l134 10 152-153q15-15 38-15t38 15l82 81q15 16 15 37 0 23-15 38l-153 154 10 133q20-12 31-23l188-188q47-48 47-114 0-67-48-113l-82-81q-46-47-113-47-68 0-114 48l-186 187q-12 11-24 31z m236 458v178q0 8 5 13t13 5 13-5 5-13v-178q0-8-5-13t-13-5-13 5-5 13z m90-36q0 7 5 13l142 142q6 5 13 5t13-5q5-5 5-12t-5-13l-143-143q-6-5-13-5t-12 5q-5 6-5 13z m35-89q0 7 5 12t13 5h179q8 0 13-5t5-12-5-13-13-5h-179q-8 0-13 5t-5 13z" horiz-adv-x="928.6" />
<glyph glyph-name="link-ext" unicode="&#xe82b;" d="m0 154v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114z m382 160q0 8 6 13l364 364-99 98q-10 11-10 25t10 25 26 11h285q15 0 25-11t11-25v-285q0-15-11-26t-25-10-25 10l-98 99-364-364q-5-6-13-6t-13 6l-63 63q-6 6-6 13z" horiz-adv-x="1000" />
<glyph glyph-name="link-ext-alt" unicode="&#xe82c;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m157 89q0-14 11-25l57-57q11-10 25-10t25 10l298 298 80-80q11-11 26-11 6 0 14 3 21 10 21 33v268q0 15-10 25t-25 11h-268q-24 0-33-22-10-23 8-39l80-80-298-298q-11-11-11-26z" horiz-adv-x="857.1" />
<glyph glyph-name="attach" unicode="&#xe82d;" d="m2 564q0 88 62 150t150 62q88 0 152-63l338-338q5-5 5-12 0-9-17-26t-26-17q-7 0-13 5l-338 339q-44 43-101 43-59 0-100-42t-40-101q0-58 42-101l433-433q35-35 81-35 36 0 59 23t24 59q0 46-36 81l-324 324q-14 14-33 14-16 0-27-11t-11-27q0-18 14-33l229-228q6-6 6-13 0-9-18-26t-26-17q-7 0-12 5l-229 229q-35 34-35 83 0 46 32 78t77 32q49 0 83-36l325-324q55-54 55-131 0-65-44-109t-109-44q-75 0-131 56l-434 433q-63 64-63 151z" horiz-adv-x="785.7" />
<glyph glyph-name="lock" unicode="&#xe82e;" d="m0 46v322q0 22 16 38t38 15h17v108q0 102 74 176t176 74 177-74 73-176v-108h18q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37z m179 375h285v108q0 59-42 101t-101 41-101-41-41-101v-108z" horiz-adv-x="642.9" />
<glyph glyph-name="lock-open" unicode="&#xe82f;" d="m0 46v322q0 22 16 38t38 15h375v108q0 103 73 176t177 74 176-74 74-176v-143q0-15-11-25t-25-11h-36q-14 0-25 11t-11 25v143q0 59-41 101t-101 41-101-41-42-101v-108h53q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37z" horiz-adv-x="928.6" />
<glyph glyph-name="lock-open-alt" unicode="&#xe830;" d="m0 46v322q0 22 16 38t38 15h17v179q0 103 74 177t176 73 177-73 73-177q0-15-10-25t-25-11h-36q-14 0-25 11t-11 25q0 59-42 101t-101 42-101-42-41-101v-179h410q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37z" horiz-adv-x="642.9" />
<glyph glyph-name="pin" unicode="&#xe831;" d="m0 171q0 69 44 124t99 55v286q-29 0-50 21t-22 50 22 50 50 22h357q29 0 50-22t21-50-21-50-50-21v-286q55 0 99-55t44-124q0-14-11-25t-25-10h-239l-29-270q-1-6-6-11t-11-5h-1q-15 0-17 15l-43 271h-225q-15 0-25 10t-11 25z m232 197q0-8 5-13t13-5 13 5 5 13v250q0 8-5 13t-13 5-13-5-5-13v-250z" horiz-adv-x="642.9" />
<glyph glyph-name="eye" unicode="&#xe832;" d="m0 314q0 19 11 39 78 128 210 205t279 78 279-78 210-205q11-20 11-39t-11-38q-78-129-210-206t-279-77-279 77-210 206q-11 19-11 38z m71 0q75-114 187-182t242-68 242 68 187 182q-85 132-213 197 34-58 34-125 0-104-73-177t-177-73-177 73-73 177q0 67 34 125-128-65-213-197z m259 72q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19-8 19-19 7q-70 0-120-50t-50-119z" horiz-adv-x="1000" />
<glyph glyph-name="eye-off" unicode="&#xe833;" d="m0 314q0 22 11 39 86 131 212 207t277 76q50 0 100-10l31 54q5 9 15 9 3 0 10-3t18-9 18-10 18-10 10-7q9-5 9-15 0-4 0-5-59-105-176-316t-176-316l-28-50q-5-9-15-9-7 0-75 39-9 6-9 16 0 7 25 48-80 37-147 97t-117 137q-11 17-11 38z m71 0q94-144 239-209l43 79q-48 35-76 88t-27 114q0 67 34 125-128-65-213-197z m259 72q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19-8 19-19 7q-70 0-120-50t-50-119z m170-393l41 74q119 10 219 76t169 171q-65 100-158 164l35 63q53-36 102-86t81-102q11-19 11-39t-11-38q-22-36-61-81-84-96-194-149t-234-53z m89 159l157 281q4-26 4-47 0-78-44-142t-117-92z" horiz-adv-x="1000" />
<glyph glyph-name="tag" unicode="&#xe834;" d="m0 475v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50 0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65z m107 125q0-30 21-50t51-21 50 21 21 50-21 51-50 20-51-20-21-51z" horiz-adv-x="857.1" />
<glyph glyph-name="tags" unicode="&#xe835;" d="m0 475v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50 0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65z m107 125q0-30 21-50t51-21 50 21 21 50-21 51-50 20-51-20-21-51z m286 179h125q29 0 65-15t57-36l399-399q21-21 21-50 0-30-21-51l-274-274q-22-21-51-21-20 0-33 8t-29 25l262 262q21 21 21 51 0 29-21 50l-399 399q-21 21-57 36t-65 15z" horiz-adv-x="1071.4" />
<glyph glyph-name="bookmark" unicode="&#xe836;" d="m0-3v719q0 19 11 35t29 23q12 5 25 5h585q12 0 24-5 19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4-27 0-47 18l-246 236-246-236q-20-19-46-19-13 0-25 5-18 7-29 23t-11 35z" horiz-adv-x="714.3" />
<glyph glyph-name="bookmark-empty" unicode="&#xe837;" d="m0-3v719q0 19 11 35t29 23q12 5 25 5h585q12 0 24-5 19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4-27 0-47 18l-246 236-246-236q-20-19-46-19-13 0-25 5-18 7-29 23t-11 35z m71 17l237 227 49 47 50-47 236-227v693h-572v-693z" horiz-adv-x="714.3" />
<glyph glyph-name="flag" unicode="&#xe838;" d="m36 707q0 30 21 51t50 21 51-21 21-51q0-40-36-61v-707q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v707q-35 21-35 61z m143-536v414q0 18 17 31 12 8 44 24 132 67 235 67 60 0 112-16t122-49q21-11 49-11 30 0 65 12t62 26 49 26 30 12q15 0 25-10t11-26v-425q0-14-7-22t-22-15q-120-65-206-65-34 0-69 12t-60 27-65 27-79 12q-107 0-259-81-10-5-19-5-14 0-25 10t-10 25z" horiz-adv-x="1000" />
<glyph glyph-name="thumbs-up-alt" unicode="&#xe839;" d="m0 29v357q0 14 11 25t25 10h160q15 0 26-10t10-25v-357q0-15-10-26t-26-10h-160q-15 0-25 10t-11 26z m71 71q0-15 11-25t25-11q15 0 25 11t11 25q0 15-11 25t-25 11q-15 0-25-11t-11-25z m197-71v357q0 14 10 25t24 11q13 1 42 33t57 67q38 49 56 67 10 10 17 27t10 27 8 34q4 22 7 34t11 29 18 28q11 11 26 11 25 0 46-6t33-15 22-22 14-26 7-27 2-26 1-21q0-21-6-43t-10-33-16-31q-1-4-5-10t-6-13-5-13h155q43 0 75-32t32-75q0-48-31-83 9-25 9-43 1-42-24-76 9-32 0-66-9-31-31-52 5-63-27-101-36-43-110-44h-72q-37 0-80 9t-68 16-67 22q-69 24-88 25-15 0-26 11t-10 25z" horiz-adv-x="928.6" />
<glyph glyph-name="thumbs-down-alt" unicode="&#xe83a;" d="m0 243q0-15 11-25t25-11h160q15 0 26 11t10 25v357q0 15-10 25t-26 11h-160q-15 0-25-11t-11-25v-357z m71 286q0 15 11 25t25 10q15 0 25-10t11-25q0-15-11-26t-25-10q-15 0-25 10t-11 26z m197-287v358q0 15 10 25t26 11q19 0 88 24 43 15 67 22t68 16 80 9h72q74-1 110-43 32-39 27-101 22-21 31-53 9-34 0-65 25-34 24-77 0-18-9-42 31-34 31-83-1-44-32-76t-75-31h-155q2-8 5-14t6-12 5-10q10-21 15-32t11-33 6-42q0-14-1-22t-2-25-7-28-14-25-22-23-33-14-46-6q-15 0-26 11-11 11-18 27t-11 29-7 35q-5 23-8 33t-10 27-17 27q-18 19-56 67-28 36-57 68t-42 33q-14 1-24 11t-10 24z" horiz-adv-x="928.6" />
<glyph glyph-name="comment" unicode="&#xe83b;" d="m1137 749v-532q0-41-29-70t-71-30h-168v-268l-267 268h-502q-41 0-70 30t-30 70v532q0 41 30 71t70 29h937q41 0 71-29t29-71z" horiz-adv-x="1137" />
<glyph glyph-name="comment-alt" unicode="&#xe83c;" d="m1179 385q0-126-79-233t-215-170t-296-62q-122 0-234 39l2-3l-357-107q44 59 71 126t31 106l4 38q-106 120-106 266q0 126 79 233t215 169t295 62t296-62t215-169t79-233z" horiz-adv-x="1179" />
<glyph glyph-name="chat" unicode="&#xe83e;" d="m1179 385q0-126-79-233t-215-170t-296-62q-122 0-234 39l2-3l-357-107q44 59 71 126t31 106l4 38q-106 120-106 266q0 126 79 233t215 169t295 62t296-62t215-169t79-233z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z" horiz-adv-x="1179" />
<glyph glyph-name="folder-open" unicode="&#xe81e;" d="m1313 632h-1235q9 48 27 67q16 17 31 17h4q4-1 8-1q12 0 26 4q18 6 25 29l24 72q77 29 208 29q89 0 164-29l25-72q24-23 33-26t43-3h485q84 0 110-22q12-11 22-65z m78-164v-10l-68-523q-5-35-33-61t-65-25h-1058q-36 0-65 25t-34 61l-67 523q-1 3-1 10q0 33 23 55t55 21h1235q33 0 56-21t22-55z" horiz-adv-x="1391" />
<glyph glyph-name="up-circled" unicode="&#xe893;" d="m717 351q0 15-11 25l-202 202l-50 50q-10 11-25 11t-26-11l-50-50l-202-202q-10-10-10-25t10-26l50-50q11-10 26-10t25 10l105 105v-280q0-14 11-25t25-11h71q15 0 25 11t11 25v280l105-105q11-11 26-11t25 11l50 50q11 11 11 26z m140-1q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="comment-alt" unicode="&#xe83c;" d="m1179 385q0-126-79-233t-215-170-296-62q-122 0-234 39l2-3-357-107q44 59 71 126t31 106l4 38q-106 120-106 266 0 126 79 233t215 169 295 62 296-62 215-169 79-233z" horiz-adv-x="1179" />
<glyph glyph-name="split" unicode="&#xe83d;" d="m576 797l112 0 0-108q0-115-82-197l-316-314q-44-45-48-106l111 0-167-169-168 169 113 0q6 111 80 185l316 314q49 50 49 118l0 108z m110-725l113 0-167-169-168 169 111 0q-4 61-48 106l-63 62 80 79 62-62q74-74 80-185z" horiz-adv-x="817" />
<glyph glyph-name="chat" unicode="&#xe83e;" d="m1179 385q0-126-79-233t-215-170-296-62q-122 0-234 39l2-3-357-107q44 59 71 126t31 106l4 38q-106 120-106 266 0 126 79 233t215 169 295 62 296-62 215-169 79-233z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z m-250 0q0 29-21 50t-51 21q-29 0-50-21t-21-50q0-30 21-51t50-21q30 0 51 21t21 51z" horiz-adv-x="1179" />
<glyph glyph-name="github-circled" unicode="&#xe83f;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215q0-140-82-252t-211-155q-15-3-22 4t-7 17v118q0 54-29 79 32 3 57 10t53 22 45 37 30 58 11 84q0 68-44 115 21 51-5 114-15 5-45-6t-51-25l-21-13q-52 15-107 15t-108-15q-8 6-23 15t-47 22-48 7q-24-63-4-114-44-47-44-115 0-47 12-83t29-59 45-37 52-22 57-10q-22-20-27-58-12-5-25-8t-32-3-36 12-31 35q-11 18-27 29t-28 14l-11 1q-12 0-16-2t-3-7 5-8 7-6l4-3q12-6 24-21t18-29l5-13q8-21 25-34t37-17 39-4 31 2l13 3q0-22 0-50t1-30q0-10-8-17t-22-4q-129 43-211 155t-82 252z" horiz-adv-x="857.1" />
<glyph glyph-name="reply-all" unicode="&#xe840;" d="m0 493q0 14 11 25l285 286q17 17 39 7 22-9 22-32v-39l-221-222q-11-11-11-25t11-25l221-222v-39q0-23-22-33-7-3-14-3-15 0-25 11l-285 286q-11 10-11 25z m214 0q0 14 11 25l286 286q16 17 39 7 21-9 21-32v-147q230-15 335-123 94-97 94-284 0-32-9-75t-22-77-27-69-22-51l-12-22q-4-10-15-10-3 0-5 1-14 4-13 19 24 223-59 315-36 40-95 62t-150 29v-140q0-23-21-33-8-3-14-3-15 0-25 11l-286 286q-11 10-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="hdd" unicode="&#xe841;" d="m0 171v200q0 26 17 45h0l93 123q21 29 57 29h66q112 31 269 31 157 0 269-31h65q37 0 58-29l93-123h0q17-19 17-45v-200q0-29-21-49t-49-21h-864q-29 0-49 21t-21 49z m99 60q0-15 11-26t27-11h88q15 0 26 11t11 26-11 27-26 11h-88q-16 0-27-11t-11-27z m73 236q0-23 44-41t120-30 166-11 166 11 120 30 44 41-44 41-120 30-166 11-166-11-120-30-44-41z m146-236q0-15 11-26t26-11h11q15 0 26 11t11 26-11 27-26 11h-11q-15 0-26-11t-11-27z m85 236q0 10 29 17t70 8q40 0 69-8t29-17-29-17-69-8q-41 0-70 8t-29 17z" horiz-adv-x="1004.4" />
<glyph glyph-name="quote-left" unicode="&#xe842;" d="m0 100v393q0 58 23 111t61 91 91 61 111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 16-38t37-16h125q45 0 76-31t32-76v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76z m500 0v393q0 58 23 111t61 91 91 61 111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 15-38t38-16h125q45 0 76-31t32-76v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76z" horiz-adv-x="928.6" />
<glyph glyph-name="quote-right" unicode="&#xe843;" d="m0 457v214q0 45 31 76t76 32h214q45 0 76-32t32-76v-392q0-58-23-111t-61-91-91-62-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76z m500 0v214q0 45 31 76t76 32h214q45 0 76-32t32-76v-392q0-58-23-111t-61-91-91-62-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76z" horiz-adv-x="928.6" />
<glyph glyph-name="code" unicode="&#xe844;" d="m1000 849l500-500-500-500-154 154 346 346-346 346z m-692-500l346-346-154-154-500 500 500 500 154-154z" horiz-adv-x="1500" />
<glyph glyph-name="reply" unicode="&#xe845;" d="m0 493q0 14 11 25l285 286q11 10 25 10t26-10 10-25v-143h125q398 0 488-225 30-75 30-186 0-93-71-252-2-4-6-13t-7-17-8-12q-6-10-15-10-9 0-13 6t-5 14q0 5 1 15t2 13q3 38 3 69 0 56-10 101t-27 77-45 56-59 39-74 24-86 12-98 3h-125v-143q0-14-10-25t-26-11-25 11l-285 286q-11 10-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="export-alt" unicode="&#xe846;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 161q0-101 93-226 6-6 14-6 4 0 7 1 13 5 11 19-25 197 34 264 26 29 73 42t125 13v-89q0-24 22-33 7-3 14-3 14 0 25 11l196 196q11 11 11 25t-11 25l-196 197q-17 17-39 7-22-9-22-32v-90q-66 0-121-11t-90-28-64-44-42-53-25-61-12-62-3-62z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil" unicode="&#xe847;" d="m0-79v233l464 464 232-232-464-465h-232z m71 143h72v-71h60l50 51-131 131-51-51v-60z m95 143q0-12 13-12 5 0 9 4l303 302q3 4 3 10 0 12-12 12-5 0-9-4l-303-302q-4-4-4-10z m334 447l93 92q20 21 50 21 29 0 51-21l131-131q20-22 20-51 0-29-20-50l-93-93z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil-squared" unicode="&#xe848;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143-18h161l303 304-161 161-303-304v-161z m53 107v32l29 29 85-85-29-29h-31v53h-54z m80 98q-8 7 1 16l163 163q9 9 16 1 8-7-1-16l-163-163q-9-9-16-1z m206 295l161-160 51 51q16 16 16 38t-16 38l-85 85q-15 15-38 15t-38-15z" horiz-adv-x="857.1" />
<glyph glyph-name="gamepad" unicode="&#xe849;" d="m0 279q0 118 84 202t202 83h500q118 0 202-83t83-202-83-202-202-84q-107 0-189 71h-123q-81-71-188-71-119 0-202 84t-84 202z m107-36q0-8 5-13t13-5h107v-107q0-8 5-13t13-5h71q8 0 13 5t5 13v107h107q8 0 13 5t5 13v71q0 8-5 13t-13 5h-107v107q0 8-5 13t-13 5h-71q-8 0-13-5t-5-13v-107h-107q-8 0-13-5t-5-13v-71z m536-36q0-29 21-50t50-21 51 21 21 50-21 51-51 21-50-21-21-51z m143 143q0-30 21-50t50-21 51 21 21 50-21 51-51 20-50-20-21-51z" horiz-adv-x="1071.4" />
<glyph glyph-name="twitter" unicode="&#xe84a;" d="m25 74q19-2 43-2 126 0 224 77-59 1-105 36t-64 89q19-3 34-3 24 0 48 6-63 13-104 62t-41 115v2q38-21 82-23-37 25-59 64t-22 86q0 49 25 91 67-83 164-133t208-55q-5 21-5 41 0 75 53 127t127 53q78 0 132-57 61 12 114 44-20-64-79-100 52 6 104 28-37-54-90-93 0-8 0-23 0-73-21-145t-64-139-103-117-144-82-181-30q-151 0-276 81z" horiz-adv-x="928.6" />
<glyph glyph-name="comment-empty" unicode="&#xe84c;" d="m0 350q0 97 67 179t182 130 251 48 251-48 182-130 67-179-67-179-182-130-251-48q-39 0-81 4-110-97-257-135-27-8-63-12h-3q-8 0-15 6t-9 15v1q-2 2 0 6t1 6 2 5l4 5t4 5 4 5q4 5 17 19t20 22 17 22 18 28 15 33 15 42q-88 50-138 123t-51 157z m71 0q0-62 40-119t113-98l48-28-15-54q-13-50-39-96 85 36 154 96l24 21 31-3q39-5 73-5 114 0 213 39t157 105 59 142-59 142-157 105-213 39-213-39-157-105-59-142z" horiz-adv-x="1000" />
<glyph glyph-name="chat-empty" unicode="&#xe84d;" d="m0 421q0 78 53 144t143 104 197 38 197-38 143-104 53-144-53-143-143-104-197-38q-48 0-98 9-70-50-155-72-21-5-48-9h-2q-6 0-12 5t-6 11q-1 2-1 4t1 4 1 3l1 3t2 3 2 3 3 2 2 3q3 3 13 14t15 16 12 17 14 21 11 25q-69 40-108 98t-40 125z m71 0q0-45 30-88t83-73l54-32-19-46q19 11 34 21l25 18 30-6q43-8 85-8 85 0 159 29t118 79 44 106-44 107-118 79-159 29-160-29-118-79-44-107z m273-354q32-3 49-3 90 0 172 25t148 72q69 52 107 119t37 141q0 43-13 85 72-39 114-99t42-128q0-67-40-126t-108-98q5-14 11-25t14-21 13-16 14-17 13-14q0 0 2-2t3-3 2-3 2-3l1-3t1-3 1-4-1-3q-2-8-7-13t-13-4q-27 4-48 9-85 23-155 72-50-9-98-9-151 0-263 74z" horiz-adv-x="1000" />
<glyph glyph-name="bell" unicode="&#xe84e;" d="m0 64q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20 0 23 15 38t38 16 38-16 16-38q0-10-5-20 94-11 148-66t53-146q0-146 54-278t161-222q0-29-22-50t-50-21h-250q0-59-42-101t-101-42-101 42-42 101h-250q-29 0-50 21t-21 50z m102 0h724q-91 101-137 230t-46 270q0 143-179 143t-178-143q0-141-46-270t-138-230z m264-71q0-41 29-70t69-28q9 0 9 9t-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9z" horiz-adv-x="928.6" />
<glyph glyph-name="bell-alt" unicode="&#xe84f;" d="m0 64q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20 0 23 15 38t38 16 38-16 16-38q0-10-5-20 94-11 148-66t53-146q0-146 54-278t161-222q0-29-22-50t-50-21h-250q0-59-42-101t-101-42-101 42-42 101h-250q-29 0-50 21t-21 50z m366-71q0-41 29-70t69-28q9 0 9 9t-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9z" horiz-adv-x="928.6" />
<glyph glyph-name="attention-alt" unicode="&#xe850;" d="m55 743q-1 14 9 25t25 11h179q14 0 25-11t9-25l-15-429q-1-14-12-25t-25-11h-143q-14 0-25 11t-12 25z m16-714v125q0 14 11 25t25 10h143q15 0 25-10t11-25v-125q0-15-11-26t-25-10h-143q-14 0-25 10t-11 26z" horiz-adv-x="357.1" />
<glyph glyph-name="attention" unicode="&#xe851;" d="m9 27l429 786q9 17 26 27t36 10 36-10 27-27l428-786q20-35-1-70-10-17-26-26t-35-10h-858q-18 0-35 10t-26 26q-21 35-1 70z m411 519l9-255q0-5 6-9t13-3h103q8 0 13 3t6 9l10 257q0 6-5 10-7 6-14 6h-122q-7 0-14-6-5-4-5-12z m9-463q0-8 5-13t12-6h108q7 0 12 6t5 13v106q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-106z" horiz-adv-x="1000" />
<glyph glyph-name="attention-circled" unicode="&#xe852;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m348 271l10-346q0-6 5-10t14-4h103q8 0 13 4t6 10l10 346q0 7-6 10-5 5-13 5h-123q-8 0-13-5-6-3-6-10z m9-538q0-8 6-13t13-6h107q7 0 12 6t5 13v106q0 8-5 13t-12 5h-107q-8 0-13-5t-6-13v-106z" horiz-adv-x="857.1" />
<glyph glyph-name="location" unicode="&#xe853;" d="m0 493q0 118 84 202t202 84 202-84 83-202q0-61-18-100l-203-432q-9-18-27-29t-37-11-38 11-26 29l-204 432q-18 39-18 100z m143 0q0-59 42-101t101-42 101 42 42 101-42 101-101 42-101-42-42-101z" horiz-adv-x="571.4" />
<glyph glyph-name="direction" unicode="&#xe854;" d="m1 306q-3 12 2 23t17 17l714 357q7 4 16 4 15 0 25-10 8-8 10-20t-3-22l-357-714q-10-20-32-20-3 0-8 1-13 3-20 13t-8 22v322h-321q-13 0-22 7t-13 20z" horiz-adv-x="785.7" />
<glyph glyph-name="compass" unicode="&#xe855;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m161-223v303l285 143v-303z m71 116l143 71-143 72v-143z" horiz-adv-x="857.1" />
<glyph glyph-name="forward" unicode="&#xe856;" d="m0 225q0 111 30 186 90 225 488 225h125v143q0 14 10 25t26 10 25-10l285-286q11-11 11-25t-11-25l-285-286q-11-11-25-11t-26 11-10 25v143h-125q-55 0-98-3t-86-12-74-24-59-39-45-56-27-77-10-101q0-31 3-69 0-4 2-13t1-15q0-8-5-14t-13-6q-9 0-15 10-4 5-8 12t-7 17-6 13q-71 159-71 252z" horiz-adv-x="1000" />
<glyph glyph-name="doc" unicode="&#xe857;" d="m0-96v892q0 23 16 38t38 16h500q22 0 49-11t42-27l174-174q16-16 27-42t11-50v-642q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38z m71 17h715v572h-232q-23 0-38 15t-16 38v233h-429v-858z m500 643h210q-5 16-12 23l-175 175q-6 7-23 12v-210z" horiz-adv-x="857.1" />
<glyph glyph-name="docs" unicode="&#xe858;" d="m0 118v375q0 22 11 49t27 42l228 228q15 16 42 27t49 11h232q23 0 38-16t16-38v-183q38 23 71 23h232q23 0 38-16t16-38v-678q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v160h-303q-23 0-38 16t-16 38z m71 18h286v143q0 22 11 49t27 42l176 176v233h-214v-233q0-22-15-38t-38-15h-233v-357z m48 428h167v167z m310-643h500v643h-215v-232q0-22-15-38t-38-15h-232v-358z m47 429h167v167z" horiz-adv-x="1000" />
<glyph glyph-name="archive" unicode="&#xe859;" d="m1217 806v-131q0-18-12-30t-31-13h-1131q-17 0-30 13t-13 30v131q0 17 13 30t30 13h1131q18 0 31-13t12-30z m-43-305v-609q0-17-13-30t-31-13h-1043q-18 0-31 13t-13 30v609q0 18 13 31t31 13h1043q18 0 31-13t13-31z m-304-152q0 27-19 46t-47 19h-391q-27 0-46-19t-19-46 19-46 46-19h391q27 0 47 19t19 46z" horiz-adv-x="1217" />
<glyph glyph-name="folder-empty" unicode="&#xe85a;" d="m0 118v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h375q51 0 88-37t37-88v-393q0-51-37-88t-88-37h-679q-51 0-88 37t-37 88z m71 0q0-22 16-38t38-16h679q22 0 38 16t15 38v393q0 22-15 38t-38 15h-393q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-536z" horiz-adv-x="928.6" />
<glyph glyph-name="folder-open-empty" unicode="&#xe85b;" d="m0 118v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q51 0 88-37t37-88v-90h107q30 0 56-13t37-40q8-17 8-38 0-34-25-66l-165-203q-24-30-65-49t-78-19h-607q-51 0-88 37t-37 88z m71 60l143 175q25 30 65 49t78 19h429v90q0 22-16 38t-38 15h-321q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-476z m24-94q0-20 30-20h607q22 0 48 13t40 29l164 203q10 12 10 21 0 20-30 20h-607q-22 0-48-12t-39-29l-164-203q-11-13-11-22z" horiz-adv-x="1071.4" />
<glyph glyph-name="box" unicode="&#xe85c;" d="m36 600v143q0 14 10 25t25 11h858q14 0 25-11t10-25v-143q0-15-10-25t-25-11h-858q-14 0-25 11t-10 25z m35-643v536q0 14 11 25t25 11h786q14 0 25-11t11-25v-536q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25z m322 429q0-15 10-25t26-11h142q15 0 26 11t10 25-10 25-26 10h-142q-15 0-26-10t-10-25z" horiz-adv-x="1000" />
<glyph glyph-name="rss" unicode="&#xe85d;" d="m0 100q0 45 31 76t76 31 76-31 31-76-31-76-76-31-76 31-31 76z m0 282v75q0 16 12 26 9 10 24 10h3q89-7 170-45t145-101q63-63 101-145t45-171q1-15-9-26-11-12-27-12h-75q-14 0-24 9t-11 23q-12 128-103 219t-219 103q-14 1-23 11t-9 24z m0 281v80q0 15 11 26 10 10 25 10h1q147-8 280-67t238-164q104-104 164-238t67-280q1-15-10-26-10-11-26-11h-80q-14 0-25 10t-11 23q-6 120-56 228t-129 188-188 129-227 57q-14 0-24 11t-10 24z" horiz-adv-x="785.7" />
<glyph glyph-name="rss-squared" unicode="&#xe85e;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 54q0-30 21-51t50-21 51 21 21 51-21 50-51 21-50-21-21-50z m0 178q0-8 5-13t12-5q86-6 147-68t67-147q1-7 6-12t12-5h72q7 0 13 6t5 13q-8 130-99 221t-221 99q-8 1-14-5t-5-13v-71z m0 214q0-7 5-12t12-6q114-4 211-62t156-155 62-211q0-8 5-13t13-5h71q7 0 13 6 6 5 5 13-3 86-31 166t-78 145-115 114-145 78-166 31q-8 1-13-5-5-5-5-13v-71z" horiz-adv-x="857.1" />
<glyph glyph-name="phone" unicode="&#xe85f;" d="m0 589q0 52 29 104 31 57 59 68 14 6 38 12t39 6q8 0 12-2 10-3 30-43 6-10 16-30t20-35 17-30q2-2 10-14t12-20 4-16q0-11-16-27t-35-31-34-30-16-25q0-5 3-13t4-11 8-14 7-10q42-77 97-132t131-97q1 0 10-6t14-8 11-5 13-2q10 0 25 15t30 35 31 35 28 16q7 0 15-4t20-12 14-10q14-8 30-17t36-20 30-17q39-19 42-29 2-4 2-12 0-15-6-39t-12-38q-11-28-68-60-52-28-103-28-16 0-30 2t-32 7-26 8-31 11-28 10q-54 20-97 47-72 44-148 120t-120 148q-27 43-46 97-2 5-10 28t-12 31-8 26-7 32-2 29z" horiz-adv-x="785.7" />
<glyph glyph-name="phone-squared" unicode="&#xe860;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 416q0-9 1-19t3-17 5-19 6-16 7-18 6-17q33-92 121-179t178-121q4-1 17-6t19-7 16-5 18-5 17-3 19-2q32 0 73 19t53 45q12 30 12 56 0 6-1 9-2 5-21 17t-50 27l-29 16q-3 2-11 8t-14 8-12 3q-10 0-26-18t-32-37-24-18q-4 0-9 2t-9 3-9 6-8 4q-56 31-95 71t-71 95q-1 2-5 8t-5 9-4 9-2 9q0 8 12 19t25 21 25 23 11 20q0 5-2 12t-9 14-7 10q-2 4-8 16t-14 25-15 27-14 23-9 10-9 1q-27 0-56-13-26-11-45-52t-19-73z" horiz-adv-x="857.1" />
<glyph glyph-name="menu" unicode="&#xe861;" d="m0 29v71q0 15 11 25t25 11h785q15 0 26-11t10-25v-71q0-15-10-26t-26-10h-785q-15 0-25 10t-11 26z m0 285v72q0 14 11 25t25 10h785q15 0 26-10t10-25v-72q0-14-10-25t-26-10h-785q-15 0-25 10t-11 25z m0 286v71q0 15 11 26t25 10h785q15 0 26-10t10-26v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="cog" unicode="&#xe862;" d="m0 289v124q0 7 5 13t10 7l104 16q8 25 22 51-23 32-60 77-6 7-6 14 0 5 5 12 15 20 55 60t53 40q7 0 15-5l77-60q24 13 50 21 9 76 17 104 3 15 20 15h124q7 0 13-4t7-12l15-103q28-9 50-21l80 60q5 5 13 5 7 0 14-5 72-67 92-95 4-5 4-13 0-6-4-12-9-12-29-38t-30-39q14-28 23-55l102-15q7-1 12-7t4-13v-124q0-7-4-13t-11-7l-104-16q-10-30-21-51 19-28 59-77 6-6 6-14t-5-12q-15-21-55-61t-53-39q-7 0-14 5l-77 60q-25-13-51-21-9-76-16-104-4-16-20-16h-124q-8 0-14 5t-6 12l-16 103q-27 9-50 20l-79-59q-6-5-14-5-8 0-14 6-70 63-92 94-4 5-4 12 0 7 5 13 8 12 28 37t30 40q-15 28-23 55l-102 15q-7 1-11 7t-5 13z m286 61q0-59 42-101t101-42 101 42 41 101-41 101-101 42-101-42-42-101z" horiz-adv-x="857.1" />
<glyph glyph-name="cog-alt" unicode="&#xe863;" d="m0 299v103q0 6 4 11t9 6l86 14q7 19 18 42-19 27-50 64-4 6-4 11 0 7 4 12 12 16 46 49t44 33q6 0 12-4l64-50q19 10 43 18 6 60 13 86 3 13 16 13h104q6 0 11-4t6-10l13-85q19-6 41-17l66 49q5 4 11 4 7 0 12-4 81-75 81-90 0-5-4-10-7-9-24-30t-25-34q13-27 19-46l85-12q5-2 9-6t4-11v-103q0-6-4-11t-9-6l-86-14q-6-19-18-42 19-27 50-64 4-6 4-11 0-7-4-11-13-17-46-50t-44-33q-6 0-11 4l-64 50q-21-11-43-17-6-60-13-87-4-13-17-13h-104q-6 0-11 4t-5 10l-13 85q-19 6-42 18l-66-50q-4-4-11-4-6 0-12 4-80 75-80 90 0 5 4 10 5 8 23 30t26 34q-13 24-20 46l-85 13q-5 1-9 5t-4 11z m214 51q0-59 42-101t101-42 101 42 42 101-42 101-101 42-101-42-42-101z m429-325v78q0 9 83 18 7 16 17 29-29 63-29 77 0 2 3 4 2 1 19 11t33 19 17 9q4 0 25-26t29-38q12 1 17 1t17-1q28 40 51 63l4 1q2 0 69-39 2-2 2-4 0-14-28-77 9-13 16-29 83-9 83-18v-78q0-9-83-17-6-15-16-29 28-63 28-77 0-2-2-4-68-40-69-40-5 0-26 27t-29 37q-11-1-17-1t-17 1q-7-11-29-37t-25-27q-1 0-69 40-3 2-3 4 0 14 29 77-10 14-17 29-83 8-83 17z m0 572v78q0 9 83 17 7 16 17 29-29 63-29 77 0 2 3 4 2 1 19 11t33 19 17 9q4 0 25-26t29-38q12 2 17 2t17-2q28 40 51 63l4 1q2 0 69-39 2-2 2-4 0-14-28-77 9-13 16-29 83-8 83-17v-78q0-9-83-18-6-15-16-29 28-63 28-77 0-2-2-4-68-39-69-39-5 0-26 26t-29 38q-11-1-17-1t-17 1q-7-12-29-38t-25-26q-1 0-69 39-3 2-3 4 0 14 29 77-10 14-17 29-83 9-83 18z m143-533q0-29 21-50t50-21 51 21 21 50q0 29-22 51t-50 21-50-21-21-51z m0 572q0-30 21-51t50-21 51 21 21 51q0 29-22 50t-50 21-50-21-21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="wrench" unicode="&#xe864;" d="m12-7q0 29 21 51l380 380q22-55 64-97t97-64l-381-381q-21-20-50-20-29 0-51 20l-59 61q-21 20-21 50z m131 36q0-15 10-26t26-10 25 10 10 26-10 25-25 10-26-10-10-25z m286 500q0 103 73 176t177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45 40 20q8 0 13-5t4-14q0-22-12-60-27-74-92-121t-144-47q-104 0-177 74t-73 176z" horiz-adv-x="928.6" />
<glyph glyph-name="basket" unicode="&#xe865;" d="m0 671q0 15 11 26t25 10h143q9 0 16-3t11-9 7-14 4-15 3-16 3-14h670q14 0 25-11t11-25v-286q0-13-9-24t-23-12l-583-68q1-3 3-12t3-14 1-13q0-9-13-35h513q15 0 26-11t10-25-10-25-26-11h-571q-14 0-25 11t-11 25q0 8 6 22t17 33 11 21l-98 460h-114q-15 0-25 10t-11 25z m214-678q0 29 21 50t51 21 50-21 21-50-21-51-50-21-51 21-21 51z m500 0q0 29 21 50t51 21 50-21 21-50-21-51-50-21-51 21-21 51z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar" unicode="&#xe866;" d="m0-79v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50z m71 0h161v161h-161v-161z m0 197h161v178h-161v-178z m0 214h161v161h-161v-161z m143 268q0-7 6-13t12-5h36q7 0 12 5t6 13v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161z m54-679h178v161h-178v-161z m0 197h178v178h-178v-178z m0 214h178v161h-178v-161z m214-411h179v161h-179v-161z m0 197h179v178h-179v-178z m0 214h179v161h-179v-161z m161 268q0-7 5-13t13-5h35q8 0 13 5t5 13v161q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-161z m53-679h161v161h-161v-161z m0 197h161v178h-161v-178z m0 214h161v161h-161v-161z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar-empty" unicode="&#xe867;" d="m0-79v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50z m71 0h786v572h-786v-572z m143 679q0-8 5-13t13-5h36q8 0 13 5t5 13v161q0 8-5 13t-13 5h-36q-8 0-13-5t-5-13v-161z m429 0q0-8 5-13t13-5h35q8 0 13 5t5 13v161q0 8-5 13t-13 5h-35q-8 0-13-5t-5-13v-161z" horiz-adv-x="928.6" />
<glyph glyph-name="login" unicode="&#xe868;" d="m0 243v214q0 15 11 25t25 11h250v161q0 14 10 25t25 10 26-10l303-304q11-10 11-25t-11-25l-303-304q-11-10-26-10t-25 10-10 25v161h-250q-15 0-25 11t-11 25z m499-206q0 6 2 13t5 11 12 3h178q37 0 63 27t27 63v392q0 37-27 63t-63 27h-174t-6 0-6 2-5 3-4 5-1 8q0 2-1 11t0 15 2 13 5 11 12 3h178q67 0 114-47t47-114v-392q0-67-47-114t-114-47h-178q-7 0-13 5t-5 13q0 2-1 11t0 15z" horiz-adv-x="857.1" />
<glyph glyph-name="volume-down" unicode="&#xe869;" d="m0 243v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10 11-25v-608q0-14-11-25t-25-10-25 10l-186 186h-146q-15 0-25 11t-11 25z m507 9q0 12 6 20t17 14 19 12 16 20 6 32-6 32-16 20-19 12-17 14-6 20q0 15 10 26t25 10q9 0 14-3 39-15 63-52t24-79-24-79-63-52q-5-3-14-3-14 0-25 10t-10 26z" horiz-adv-x="642.9" />
<glyph glyph-name="volume-up" unicode="&#xe86a;" d="m0 243v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10 11-25v-608q0-14-11-25t-25-10-25 10l-186 186h-146q-15 0-25 11t-11 25z m507 9q0 12 6 20t17 14 19 12 16 20 6 32-6 32-16 20-19 12-17 14-6 20q0 15 10 26t25 10q9 0 14-3 39-15 63-52t24-79-24-79-63-52q-5-3-14-3-14 0-25 10t-10 26z m56-132q0 22 21 33 32 16 43 25 41 30 64 75t23 97-23 97-64 75q-11 9-43 25-21 11-21 33 0 14 10 25t25 11q7 0 15-3 78-33 125-105t48-158-48-158-125-105q-8-3-14-3-15 0-26 11t-10 25z m56-131q0 20 22 33 4 2 12 6t13 6q25 14 45 28 69 51 108 127t38 161-38 161-108 127q-20 14-45 28-4 3-13 6t-12 6q-22 13-22 33 0 14 10 25t26 11q7 0 14-3 118-51 189-158t71-236-71-236-189-158q-7-3-14-3-15 0-26 11t-10 25z" horiz-adv-x="928.6" />
<glyph glyph-name="headphones" unicode="&#xe86b;" d="m0 356q0 84 37 162t100 135 149 92 178 34 179-34 148-92 100-135 38-162q0-93-34-176l-11-27-103-18q-13-47-51-77t-87-29v-18q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13v-18q39 0 72-20t52-53l38 7q16 53 16 108 0 82-49 155t-132 117-176 43-176-43-132-117-49-155q0-55 16-108l38-7q19 34 52 53t73 20v18q0 8 5 13t13 5h35q8 0 13-5t5-13v-321q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v18q-49 0-88 29t-50 77l-103 18-11 27q-34 83-34 176z" horiz-adv-x="928.6" />
<glyph glyph-name="clock" unicode="&#xe86c;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m161-54v36q0 8 5 13t13 5h125v196q0 8 5 13t12 5h36q8 0 13-5t5-13v-250q0-7-5-12t-13-5h-178q-8 0-13 5t-5 12z" horiz-adv-x="857.1" />
<glyph glyph-name="lightbulb" unicode="&#xe86d;" d="m0 529q0 55 25 103t65 79 92 49 104 19 104-19 91-49 66-79 24-103q0-87-57-150-25-27-42-49t-33-53-19-60q26-15 26-46 0-20-14-35 14-15 14-36 0-29-25-45 8-13 8-26 0-26-18-40t-43-14q-11-25-34-39t-48-15-49 15-33 39q-26 0-44 14t-17 40q0 13 7 26-25 16-25 45 0 21 14 36-14 15-14 35 0 31 26 46-2 28-19 60t-33 53-41 49q-58 63-58 150z m71 0q0-57 38-101 6-6 17-18t17-19q72-85 79-166h127q8 81 79 166 6 6 17 19t17 18q38 44 38 101 0 40-19 74t-50 57-69 35-76 12-76-12-69-35-50-57-20-74z m197 71q0 7 5 13t13 5q28 0 55-9t49-30 21-50q0-8-6-13t-12-5-13 5-5 13q0 25-30 39t-59 14q-8 0-13 5t-5 13z" horiz-adv-x="571.4" />
<glyph glyph-name="block" unicode="&#xe86e;" d="m0 352q0 87 34 167t91 137 137 91 167 34 166-34 137-91 91-137 34-167-34-168-91-137-137-92-166-34-167 34-137 92-91 137-34 168z m125 0q0-91 50-167l421 421q-75 50-167 50-83 0-153-40t-110-112-41-152z m138-256q76-50 166-50 62 0 118 25t96 65 65 97 24 119q0 90-48 164z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel-circled2" unicode="&#xe86f;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m114-89q0 7 6 13l76 76-76 76q-6 6-6 13t6 13l81 82q6 5 13 5t13-5l77-77 76 77q6 5 13 5t13-5l81-82q6-5 6-13t-6-13l-76-76 76-76q6-6 6-13t-6-13l-81-82q-6-5-13-5t-13 5l-76 77-77-77q-5-5-13-5t-13 5l-81 82q-6 5-6 13z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full-alt" unicode="&#xe870;" d="m0-43v250q0 24 22 33 22 10 39-8l80-80 198 198-198 198-80-80q-11-11-25-11-7 0-14 3-22 9-22 33v250q0 14 11 25t25 11h250q23 0 33-23 9-22-8-38l-80-81 198-198 198 198-81 81q-17 16-7 38 9 23 32 23h250q15 0 26-11t10-25v-250q0-24-22-33-7-3-14-3-14 0-25 11l-80 80-198-198 198-198 80 80q16 17 39 8 22-9 22-33v-250q0-14-10-25t-26-11h-250q-23 0-32 23-10 21 7 38l81 81-198 198-198-198 80-81q17-17 8-38-10-23-33-23h-250q-15 0-25 11t-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-small" unicode="&#xe871;" d="m7 11q0 7 6 13l185 185-80 80q-11 11-11 25t11 25 25 11h250q14 0 25-11t11-25v-250q0-14-11-25t-25-10-25 10l-81 81-185-186q-5-5-13-5t-13 5l-63 64q-6 5-6 13z m422 375v250q0 14 10 25t25 10 25-10l81-81 185 186q6 5 13 5t13-5l63-64q6-5 6-13t-6-13l-185-185 80-80q11-11 11-25t-11-25-25-11h-250q-14 0-25 11t-10 25z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-vertical" unicode="&#xe872;" d="m36 29q0 14 10 25t25 10h72v572h-72q-14 0-25 10t-10 25 10 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26t-11-25-25-10h-71v-572h71q15 0 25-10t11-25-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-10 11-10 26z" horiz-adv-x="428.6" />
<glyph glyph-name="resize-horizontal" unicode="&#xe873;" d="m0 350q0 15 11 25l143 143q10 11 25 11t25-11 10-25v-72h572v72q0 14 10 25t25 11 26-11l142-143q11-10 11-25t-11-25l-142-143q-11-11-26-11t-25 11-10 25v72h-572v-72q0-14-10-25t-25-11-25 11l-143 143q-11 11-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="move" unicode="&#xe874;" d="m0 350q0 15 11 25l143 143q10 11 25 11t25-11 10-25v-72h215v215h-72q-14 0-25 10t-11 25 11 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26t-11-25-25-10h-72v-215h215v72q0 14 10 25t25 11 26-11l142-143q11-10 11-25t-11-25l-142-143q-11-11-26-11t-25 11-10 25v72h-215v-215h72q14 0 25-10t11-25-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-11 11-11 26t11 25 25 10h72v215h-215v-72q0-14-10-25t-25-11-26 11l-142 143q-11 11-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="zoom-in" unicode="&#xe875;" d="m0 386q0 80 31 152t84 126 125 84 153 31 152-31 126-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51t-21-50-51-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 83-84 126-31 153z m143 0q0-103 73-177t177-73 176 73 74 177-74 176-176 74-177-74-73-176z m71-18v36q0 7 6 12t12 5h125v125q0 8 5 13t13 5h36q7 0 12-5t6-13v-125h125q7 0 12-5t5-12v-36q0-7-5-13t-12-5h-125v-125q0-7-6-13t-12-5h-36q-7 0-13 5t-5 13v125h-125q-7 0-12 5t-6 13z" horiz-adv-x="928.6" />
<glyph glyph-name="zoom-out" unicode="&#xe876;" d="m0 386q0 80 31 152t84 126 125 84 153 31 152-31 126-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51t-21-50-51-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 83-84 126-31 153z m143 0q0-103 73-177t177-73 176 73 74 177-74 176-176 74-177-74-73-176z m71-18v36q0 7 6 12t12 5h322q7 0 12-5t5-12v-36q0-7-5-13t-12-5h-322q-7 0-12 5t-6 13z" horiz-adv-x="928.6" />
<glyph glyph-name="down-circled2" unicode="&#xe877;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m108-11q5 11 17 11h107v196q0 8 5 13t13 5h107q8 0 13-5t5-13v-196h107q8 0 13-5t5-13q0-7-6-13l-178-178q-6-5-12-5t-13 5l-179 178q-8 9-4 20z" horiz-adv-x="857.1" />
<glyph glyph-name="up-circled2" unicode="&#xe878;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m107 18q0 7 6 13l178 178q6 5 13 5t12-5l179-178q8-9 4-20-5-11-17-11h-107v-196q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v196h-107q-8 0-13 5t-5 13z" horiz-adv-x="857.1" />
<glyph glyph-name="down-open" unicode="&#xe879;" d="m50 425q0 14 11 25l92 92q11 11 26 11t25-11l296-296 296 296q11 11 25 11t26-11l92-92q11-11 11-25t-11-26l-414-413q-10-11-25-11t-25 11l-414 413q-11 11-11 26z" horiz-adv-x="1000" />
<glyph glyph-name="left-open" unicode="&#xe87a;" d="m86 386q0 14 11 25l414 414q10 10 25 10t25-10l92-93q11-10 11-25t-11-25l-296-296 296-297q11-10 11-25t-11-25l-92-93q-11-10-25-10t-25 10l-414 415q-11 10-11 25z" horiz-adv-x="714.3" />
<glyph glyph-name="right-open" unicode="&#xe87b;" d="m50 64q0 15 11 25l296 297-296 296q-11 11-11 25t11 25l92 93q11 10 26 10t25-10l414-414q10-11 10-25t-10-25l-414-414q-11-11-25-11t-26 11l-92 92q-11 11-11 25z" horiz-adv-x="714.3" />
<glyph glyph-name="up-open" unicode="&#xe87c;" d="m50 133q0 14 11 25l414 414q11 10 25 10t25-10l414-414q11-11 11-25t-11-26l-92-92q-11-10-26-10t-25 10l-296 297-296-297q-11-10-25-10t-26 10l-92 92q-11 11-11 26z" horiz-adv-x="1000" />
<glyph glyph-name="angle-left" unicode="&#xe87d;" d="m25 314q0 8 6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220 219-219q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-right" unicode="&#xe87e;" d="m7 82q0 7 6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13t-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-up" unicode="&#xe87f;" d="m43 189q0 8 6 13l260 260q5 6 12 6t13-6l260-260q6-5 6-13t-6-13l-28-27q-5-6-12-6t-13 6l-220 219-219-219q-5-6-13-6t-13 6l-27 27q-6 6-6 13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-down" unicode="&#xe880;" d="m43 439q0 8 6 13l27 28q6 6 13 6t13-6l219-219 220 219q5 6 13 6t12-6l28-28q6-5 6-13t-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-circled-left" unicode="&#xe881;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m193 0q0-14 11-25l253-253q11-11 25-11t25 11l57 56q11 11 11 26t-11 25l-171 171 171 171q11 11 11 25t-11 25l-57 57q-10 11-25 11t-25-11l-253-253q-11-11-11-25z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-right" unicode="&#xe882;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m282-196q0-15 11-26l57-56q11-11 25-11t25 11l253 253q11 11 11 25t-11 25l-253 253q-10 11-25 11t-25-11l-57-56q-11-11-11-26t11-25l171-171-171-171q-11-11-11-25z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-up" unicode="&#xe883;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m140-54q0-14 10-25l57-57q11-10 25-10t25 10l172 172 171-172q11-10 25-10t25 10l57 57q11 11 11 25t-11 26l-253 253q-11 10-25 10t-26-10l-253-254q-10-10-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-down" unicode="&#xe884;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m140 54q0-15 10-26l253-253q11-10 26-10t25 10l253 253q11 11 11 26t-11 25l-57 57q-10 10-25 10t-25-10l-171-172-172 172q-10 10-25 10t-25-10l-57-57q-10-11-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-double-left" unicode="&#xe885;" d="m25 314q0 8 6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220 219-219q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13z m214 0q0 8 6 13l260 260q6 6 13 6t13-6l28-28q5-5 5-13t-5-12l-220-220 220-219q5-6 5-13t-5-13l-28-28q-6-5-13-5t-13 5l-260 260q-6 6-6 13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-right" unicode="&#xe886;" d="m7 82q0 7 6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13t-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13z m215 0q0 7 5 13l219 219-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13t-5-13l-260-260q-6-5-13-5t-13 5l-28 28q-5 6-5 13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-up" unicode="&#xe887;" d="m43 118q0 7 6 13l260 260q5 5 12 5t13-5l260-260q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-220 219-219-219q-5-5-13-5t-13 5l-27 28q-6 6-6 13z m0 214q0 7 6 13l260 260q5 6 12 6t13-6l260-260q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-220 220-219-220q-5-5-13-5t-13 5l-27 28q-6 6-6 13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-double-down" unicode="&#xe888;" d="m43 368q0 7 6 13l27 28q6 5 13 5t13-5l219-220 220 220q5 5 13 5t12-5l28-28q6-6 6-13t-6-13l-260-260q-5-6-13-6t-12 6l-260 260q-6 6-6 13z m0 214q0 7 6 13l27 28q6 5 13 5t13-5l219-220 220 220q5 5 13 5t12-5l28-28q6-6 6-13t-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13z" horiz-adv-x="642.9" />
<glyph glyph-name="down-big" unicode="&#xe889;" d="m30 386q0 29 21 51l41 41q22 21 51 21 29 0 50-21l164-164v393q0 29 21 50t51 22h71q29 0 50-22t21-50v-393l164 164q21 21 51 21 29 0 50-21l42-42q21-21 21-50 0-30-21-51l-363-363q-22-21-51-21-29 0-50 21l-363 363q-21 20-21 51z" horiz-adv-x="928.6" />
<glyph glyph-name="left-big" unicode="&#xe88a;" d="m36 314q0 29 20 51l364 363q21 21 50 21 29 0 51-21l42-42q21-21 21-50t-21-51l-164-164h393q29 0 47-20t18-51v-71q0-30-18-51t-47-21h-393l164-164q21-20 21-50t-21-50l-42-43q-21-20-51-20-29 0-50 20l-364 364q-20 21-20 50z" horiz-adv-x="857.1" />
<glyph glyph-name="right-big" unicode="&#xe88b;" d="m0 279v71q0 30 18 51t47 20h393l-163 164q-22 21-22 51t22 50l42 42q21 21 50 21 29 0 51-21l363-363q20-20 20-51 0-30-20-50l-363-364q-22-20-51-20-29 0-50 20l-42 42q-22 21-22 51t22 51l163 163h-393q-29 0-47 21t-18 51z" horiz-adv-x="857.1" />
<glyph glyph-name="up-big" unicode="&#xe88c;" d="m30 308q0 30 21 51l363 363q20 21 50 21 30 0 51-21l363-363q21-22 21-51 0-28-21-50l-42-42q-21-21-50-21-30 0-51 21l-164 164v-393q0-29-20-47t-51-19h-71q-30 0-51 19t-21 47v393l-164-164q-20-21-50-21t-50 21l-42 42q-21 21-21 50z" horiz-adv-x="928.6" />
<glyph glyph-name="right-hand" unicode="&#xe88d;" d="m0 64v357q0 30 21 51t50 21h161q6 0 12 2t13 8 13 10 13 13 12 12 10 12 8 9q36 42 56 72 7 12 18 35t21 40 23 35 30 28 39 10q70 0 115-38t46-105q0-38-13-72h209q58 0 101-42t42-100q0-59-42-101t-101-42h-94q-2-35-21-67 2-12 2-24 0-56-34-99 1-78-47-123t-127-45q-74 0-179 39-92 33-125 33h-161q-29 0-50 21t-21 50z m71 36q0-14 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z m143-36h18q40 0 93-18t108-35 100-18q106 0 106 93 0 15-3 31 17 9 27 30t9 41-10 38q30 28 30 67 0 13-6 31t-14 26h185q29 0 50 21t22 50q0 29-22 50t-50 22h-321q0 11 8 27t19 31 18 38 8 47q0 37-25 54t-64 17q-13 0-50-77-14-25-21-37-22-35-62-81-40-45-57-59-38-32-78-32h-18v-357z" horiz-adv-x="1000" />
<glyph glyph-name="left-hand" unicode="&#xe88e;" d="m0 422q0 57 42 100t101 42h209q-13 34-13 72 0 68 46 105t115 37q21 0 39-9t30-28 23-35 21-40 18-35q20-30 56-72 1-1 8-9t10-12 12-12 13-13 13-10 13-8 12-2h161q29 0 50-21t21-51v-357q0-29-21-50t-50-21h-161q-33 0-125-33-106-39-176-39-80 0-129 44t-48 121l0 3q-34 42-34 99 0 12 2 24-19 32-21 66h-94q-59 0-101 43t-42 101z m71-1q0-29 22-50t50-21h185q-9-9-14-26t-6-31q0-39 30-67-10-18-10-38t9-41 27-30q-2-13-2-31 0-47 27-70t75-23q47 0 102 18t109 35 93 18h18v357h-18q-20 0-38 7t-35 21-28 25-27 31q-1 1-2 2t-2 3-3 2q-40 46-62 81-8 13-21 38-1 2-6 13t-11 20-11 20-12 17-10 6q-40 0-64-17t-25-54q0-24 8-47t19-38 18-31 8-27h-321q-28 0-50-22t-22-50z m786-321q0-14 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z" horiz-adv-x="1000" />
<glyph glyph-name="up-hand" unicode="&#xe88f;" d="m0 350q0 70 37 115t106 46q38 0 71-13v209q0 58 43 101t100 42q58 0 101-42t42-101v-94q35-2 66-21 12 2 24 2 57 0 100-34 77 1 122-47t45-127q0-74-38-179-33-92-33-125v-161q0-29-21-50t-51-21h-357q-29 0-50 21t-21 50v161q0 6-3 12t-8 13-10 13-12 13-12 12-12 10-10 8q-41 36-72 56-11 7-34 18t-40 21-36 22-27 31-10 39z m71 0q0-13 78-50 25-14 36-21 36-22 81-62 45-40 59-57 32-38 32-78v-18h357v18q0 40 18 93t36 108 18 100q0 106-93 106-15 0-32-3-9 17-29 27t-41 9-39-10q-27 30-66 30-14 0-31-6t-26-14v185q0 29-22 50t-50 22q-28 0-50-22t-21-50v-321q-11 0-27 8t-31 18-38 19-47 8q-37 0-55-25t-17-64z m572-393q0-14 10-25t26-11 25 11 10 25-10 25-25 11-26-11-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="down-hand" unicode="&#xe890;" d="m0 350q0 21 10 39t27 30 36 23 40 21 34 18q31 20 72 56 2 1 10 8t12 10 12 12 12 13 10 13 8 13 3 12v161q0 29 21 50t50 21h357q30 0 51-21t21-50v-161q0-33 33-125 38-106 38-177 0-79-43-128t-121-48l-3 0q-43-34-100-34-12 0-24 2-30-17-66-21v-94q0-59-42-101t-101-42q-58 0-100 42t-43 101v208q-30-12-71-12-68 0-105 46t-38 115z m71 0q0-40 17-64t55-25q24 0 47 8t38 19 31 18 27 8v-321q0-28 21-50t50-22q29 0 50 22t22 50v185q25-20 57-20 39 0 66 30 18-10 39-10t41 9 29 27q14-2 32-2 47 0 70 27t23 75q0 47-18 102t-36 109-18 93v18h-357v-18q0-20-7-38t-20-35-26-28-30-27q-5-4-8-7-45-40-81-62-12-8-38-21-1-1-12-6t-20-11-20-11-17-12-7-10z m572 393q0-15 10-25t26-11 25 11 10 25-10 25-25 11-26-11-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="left-circled" unicode="&#xe891;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m140 0q0-15 10-25l51-51 202-202q10-10 25-10t25 10l51 51q10 10 10 25t-10 25l-106 106h281q14 0 25 10t10 25v72q0 14-10 25t-25 10h-281l106 106q11 11 11 25t-11 25l-51 51q-10 10-25 10t-25-10l-202-202-51-51q-10-10-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="right-circled" unicode="&#xe892;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m143-36q0-14 11-25t25-10h280l-106-106q-10-10-10-25t10-25l51-51q10-10 25-10t25 10l202 202 51 51q10 10 10 25t-10 25l-51 51-202 202q-10 10-25 10t-25-10l-51-51q-10-10-10-25t10-25l106-106h-280q-15 0-25-10t-11-25v-72z" horiz-adv-x="857.1" />
<glyph glyph-name="up-circled" unicode="&#xe893;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m141 1q0-15 10-26l50-50q11-10 26-10t25 10l105 105v-280q0-14 11-25t25-11h71q15 0 25 11t11 25v280l105-105q11-11 26-11t25 11l50 50q11 11 11 26t-11 25l-202 202-50 50q-10 11-25 11t-26-11l-50-50-202-202q-10-10-10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="down-circled" unicode="&#xe894;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m141-1q0-15 10-25l202-202 50-50q11-10 26-10t25 10l50 50 202 202q11 10 11 25t-11 26l-50 50q-10 10-25 10t-26-10l-105-105v280q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-280l-105 105q-11 11-25 11t-26-11l-50-50q-10-10-10-26z" horiz-adv-x="857.1" />
<glyph glyph-name="cw" unicode="&#xe895;" d="m0 350q0 87 34 166t92 137 136 92 167 34q82 0 158-31t137-88l72 72q16 18 39 8 22-9 22-33v-250q0-14-10-25t-26-11h-250q-23 0-32 23-10 22 7 38l77 77q-82 77-194 77-58 0-111-23t-91-61-62-91-22-111 22-111 62-91 91-61 111-23q66 0 125 29t100 82q4 6 13 7 8 0 14-5l76-77q5-4 6-11t-5-13q-60-74-147-114t-182-41q-87 0-167 34t-136 92-92 137-34 166z" horiz-adv-x="857.1" />
<glyph glyph-name="ccw" unicode="&#xe896;" d="m0 457v250q0 24 22 33 22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92 91-137 34-166-34-166-91-137-137-92-166-34q-96 0-183 41t-147 114q-4 6-4 12t5 12l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 110 23t92 61 61 91 22 111-22 111-61 91-92 61-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38-10-23-33-23h-250q-15 0-25 11t-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="refresh" unicode="&#xe897;" d="m0-7v250q0 14 11 25t25 11h250q14 0 25-11t10-25-10-25l-77-77q40-37 90-57t105-20q74 0 139 37t104 99q6 10 29 66 5 13 17 13h107q8 0 13-6t5-12q0-3 0-4-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11-11 25z m10 446v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11 10-25v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25 10 25l77 77q-82 77-194 77-75 0-140-37t-104-99q-6-10-29-66-5-13-17-13h-111q-7 0-13 6t-5 12z" horiz-adv-x="857.1" />
<glyph glyph-name="level-up" unicode="&#xe898;" d="m2 3q-5 11 2 19l89 108q5 6 14 6h179v357h-107q-23 0-33 21-9 20 5 37l179 215q10 12 27 12t28-12l178-215q15-17 5-37-10-21-32-21h-107v-482q0-8-5-13t-13-5h-393q-12 0-16 10z" horiz-adv-x="571.4" />
<glyph glyph-name="collapse-top" unicode="&#xe899;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 0q0-7 5-12t13-6h535q8 0 13 6t5 12v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536z m75 145q-10 19 3 37l179 250q10 15 29 15t29-15l178-250q13-18 3-37-10-20-32-20h-357q-22 0-32 20z" horiz-adv-x="857.1" />
<glyph glyph-name="expand" unicode="&#xe89a;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 0q0-8 5-13t13-5h535q8 0 13 5t5 13v536q0 8-5 13t-13 5h-535q-8 0-13-5t-5-13v-536z m143 89v358q0 22 19 31 20 10 37-2l250-179q15-11 15-29t-15-29l-250-179q-17-12-37-2-19 9-19 31z" horiz-adv-x="857.1" />
<glyph glyph-name="play" unicode="&#xe89b;" d="m0-61v822q0 14 9 20t22-2l741-412q13-7 13-17t-13-17l-741-412q-13-7-22-2t-9 20z" horiz-adv-x="785.7" />
<glyph glyph-name="play-circled" unicode="&#xe89c;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m286-179q0-20 18-31 9-4 17-4 10 0 18 5l304 178q18 10 18 31t-18 31l-304 178q-17 11-35 1-18-11-18-31v-358z" horiz-adv-x="857.1" />
<glyph glyph-name="play-circled2" unicode="&#xe89d;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z m161-179v358q0 20 18 31 18 10 35-1l304-178q18-10 18-31t-18-31l-304-178q-8-5-18-5-8 0-17 4-18 11-18 31z" horiz-adv-x="857.1" />
<glyph glyph-name="stop" unicode="&#xe89e;" d="m0-43v786q0 14 11 25t25 11h785q15 0 26-11t10-25v-786q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25z" horiz-adv-x="857.1" />
<glyph glyph-name="trash" unicode="&#xe89f;" d="m0 633l0 141 289 0 0 76 246 0 0-76 289 0 0-141-824 0z m43-783l0 676 738 0 0-676-738 0z" horiz-adv-x="824" />
<glyph glyph-name="to-end" unicode="&#xe8a0;" d="m0-61v822q0 14 7 18t18-8l396-396q5-4 8-11v379q0 14 10 25t25 11h72q14 0 25-11t10-25v-786q0-14-10-25t-25-11h-72q-14 0-25 11t-10 25v379q-3-6-8-11l-396-396q-10-11-18-8t-7 18z" horiz-adv-x="571.4" />
<glyph glyph-name="to-end-alt" unicode="&#xe8a1;" d="m0-61v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q4-4 7-11v379q0 14 11 25t25 11h71q15 0 25-11t11-25v-786q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v379q-3-6-7-11l-396-396q-11-11-18-8t-7 18v397q-3-6-8-11l-396-396q-10-11-18-8t-7 18z" horiz-adv-x="1000" />
<glyph glyph-name="to-start" unicode="&#xe8a2;" d="m0-43v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11l396 396q11 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="to-start-alt" unicode="&#xe8a3;" d="m0-43v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11l396 396q11 11 18 8t7-18v-396q3 6 8 10l396 396q10 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-8 11v-397q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="fast-fw" unicode="&#xe8a4;" d="m0-61v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q10-11 10-25t-10-25l-396-396q-11-11-18-8t-7 18v396q-3-5-8-10l-396-396q-10-11-18-8t-7 18z" horiz-adv-x="928.6" />
<glyph glyph-name="fast-bw" unicode="&#xe8a5;" d="m68 350q0 15 11 25l396 396q11 11 18 8t7-18v-396q3 6 7 10l396 396q11 11 18 8t8-18v-822q0-14-8-18t-18 8l-396 396q-4 5-7 11v-397q0-14-7-18t-18 8l-396 396q-11 11-11 25z" horiz-adv-x="928.6" />
<glyph glyph-name="eject" unicode="&#xe8a6;" d="m1 29v142q0 15 10 26t25 10h786q14 0 25-10t11-26v-142q0-15-11-26t-25-10h-786q-14 0-25 10t-10 26z m0 257q-4 7 7 18l396 396q11 10 25 10t25-10l396-396q11-11 8-18t-18-8h-822q-14 0-17 8z" horiz-adv-x="858.3" />
<glyph glyph-name="target" unicode="&#xe8a7;" d="m521 407l0 162q60-16 103-60t59-102l-162 0z m0-113l162 0q-16-59-59-103t-103-59l0 162z m-113 113l-162 0q16 59 59 102t103 60l0-162z m0-113l0-162q-60 16-103 59t-59 103l162 0z m113 390l0 113q152-19 261-128t129-262l-113 0q-18 107-95 183t-182 94z m-390-277l-113 0q19 152 128 261t262 129l0-113q-106-18-182-94t-95-183z m277-390l0-114q-154 19-262 129t-128 262l113 0q18-107 95-183t182-94z m390 277l113 0q-21-153-129-262t-261-129l0 114q105 18 182 94t95 183z" horiz-adv-x="928" />
<glyph glyph-name="signal" unicode="&#xe8a8;" d="m0-61v107q0 8 5 13t13 5h107q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13z m214 0v179q0 8 5 13t13 5h107q8 0 13-5t5-13v-179q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13z m215 0v322q0 8 5 13t12 5h108q7 0 12-5t5-13v-322q0-8-5-13t-12-5h-108q-7 0-12 5t-5 13z m214 0v536q0 8 5 13t13 5h107q8 0 13-5t5-13v-536q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13z m214 0v822q0 8 5 13t13 5h107q8 0 13-5t5-13v-822q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13z" horiz-adv-x="1000" />
<glyph glyph-name="mobile" unicode="&#xe8a9;" d="m0 64v572q0 29 21 50t50 21h286q29 0 50-21t22-50v-572q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50z m54 90q0-8 5-13t12-5h286q7 0 13 5t5 13v392q0 8-5 13t-13 5h-286q-7 0-12-5t-5-13v-392z m107 473q0-9 9-9h89q9 0 9 9t-9 9h-89q-9 0-9-9z m9-563q0-18 13-31t31-13 32 13 13 31-13 32-32 13-31-13-13-32z" horiz-adv-x="428.6" />
<glyph glyph-name="inbox" unicode="&#xe8aa;" d="m0 29v269q0 34 14 68l133 308q5 14 20 24t29 9h465q14 0 29-9t20-24l133-308q14-34 14-68v-269q0-15-10-26t-26-10h-785q-15 0-25 10t-11 26z m110 285h176l53-107h179l53 107h176q0 2-1 5t-2 4l-118 277h-395l-118-277q-1-1-2-4t-1-5z" horiz-adv-x="857.1" />
<glyph glyph-name="globe" unicode="&#xe8ab;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m126 189q4-4 7-4 2-1 3-5t1-6 6 1q5-4 2-10 1 0 25-15 10-10 11-12 2-6-5-10-1 1-5 5t-5 2q-2-3 0-10t6-7q-4 0-5-9t-2-20 0-13l1-1q-2-6 3-19t12-11q-7-1 11-24 3-4 4-5 2-1 7-4t9-6 5-5q2-3 6-13t8-13q-2-3 5-11t6-13q-1 0-2-1t-1 0q2-4 9-8t8-7q1-2 1-6t2-6 4-1q2 11-13 34-8 14-9 17-2 2-4 8t-2 8q1 0 3 0t5-2 4-3 1-1q-1-4 1-10t7-10 10-11 6-7q4-4 8-11t0-8q5 0 11-5t10-11q3-5 4-15t3-13q1-4 5-8t7-5l9-5t7-3q3-2 10-6t12-7q6-2 9-2t8 1 8 2q8 1 16-8t12-12q20-10 30-6-1 0 1-4t4-9 5-8 3-5q3-3 10-8t10-8q4 2 4 5-1-5 4-11t10-6q8 2 8 18-17-9-27 10 0 0-2 3t-2 5-1 4 0 5 2 1q5 0 6 2t-1 7-2 8q-1 4-6 11t-7 8q-3-5-9-4t-9 5q0-1-1-3t-1-4q-7 0-8 0 1 2 1 10t2 13q1 2 3 6t5 9 2 7-3 5-9 1q-11 0-15-11-1-2-2-6t-2-6-5-4q-4-2-14-1t-13 3q-8 4-13 16t-5 20q0 6 1 15t2 14-3 14q2 1 5 5t5 6q2 1 3 1t2 0 3 1 1 3q0 1-2 2-2 1-2 1 4-1 16 1t15-1q9-6 12 1 0 1-1 6t0 7q3-15 16-5 2-1 9-3t9-2q2-1 4-3t3-3 3 0 5 4q5-8 7-13 6-23 10-25 4-2 6-1t3 5 0 8-1 7l-1 4v11l0 4q-8 2-10 7t0 10 9 10q0 1 4 2t9 4 7 4q12 11 8 20 4 0 6 5 0 0-2 2t-5 2-2 2q5 2 1 8 3 2 4 7t4 5q5-7 12-1 4 5 1 9 2 4 11 6t10 5q4-1 5 1t0 7 2 7q2 2 8 5t8 2l9 7q2 2 0 2 10-1 18 6 5 6-4 11 2 3-2 5t-8 3q2 1 7 1t5 1q9 5-4 9-9 2-24-7-1-1-5-5t-7-6q1 0 2 3t3 6 2 4q3 4 12 8 8 4 29 7 19 5 29-6-1 1 5 7t8 7q2 1 8 2t9 5l1 12q-7-1-10 4t-3 12q0-2-4-5 0 4-2 5t-7-1-5-1q-5 2-8 5t-5 9-2 8q-1 3-5 6t-5 6q-1 1-2 3t-2 4-2 3-3 1-4-3-4-5-2-3q-2 1-4 1t-2-1-3-1-3-2q-1-2-4-2t-5-1q8 3-1 6-5 2-9 2 5 2 5 6t-5 8h3q-1 2-5 5t-10 5-7 3q-5 3-19 5t-18 1q-3-4-3-6t2-8 2-7q1-3-3-7t-3-7q0-4 7-9t6-12q-2-4-9-9t-9-6q-3-5-1-11t6-9q1-1 1-2t-2-3-3-2-4-2l-1-1q-7-3-12 3t-7 15q-4 14-9 17-13 4-17-1-2 7-22 15-14 5-33 2 4 0 0 8-4 9-10 7 1 3 2 10t0 7q2 7 7 13 1 1 4 5t5 7 1 4q19-3 28 6 2 3 6 9t6 10q5 3 8 3t8-3 8-3q8-1 8 6t-4 11q7 0 2 10-3 4-5 5-6 2-15-3-4-2 2-4-1 0-6-6t-9-10-9 3q0 0-3 7t-5 8q-5 0-9-9 1 5-6 9t-14 4q11 7-4 15-4 3-12 3t-11-2q-2-4-3-7t3-4 6-3 6-2 5-2q8-6 5-8-1 0-5-2t-6-2-4-3q-2-2 0-7t-1-8q-3 3-5 10t-4 9q4-5-14-4l-5 1q-3 0-9-1t-12-1-7 5q-3 4 0 11 0 2 2 1-2 2-6 5t-6 5q-25-8-52-23 3 0 6 1 3 1 8 3t5 4q19 7 24 3l3 3q7-9 11-14-4 3-17 1-11-4-12-7 4-7 2-10-2 2-6 6t-8 6-8 3q-9 0-13-1-81-45-131-124z m363-532q0-3 2-9 114 21 195 106-1 2-7 2t-7 2q-10 4-13 5 1 4-1 7t-5 5-7 5-6 4q-1 1-4 3t-4 3-4 2-5 2-5-1l-2-1q-2 0-3-1t-3-2-2-1 0-2q-12 10-20 13-3 0-7 3t-5 4-6 0-6-4q-3-2-4-8t-1-7q-4 3 0 10t1 10q-1 3-6 2t-6-2-7-5-5-3-4-3-5-5q-2-2-4-6t-2-7q-1 3-7 4t-5 3q1-5 2-19t3-22q4-17-7-26-15-14-16-23-2-12 7-14 0-4-5-12t-4-12z" horiz-adv-x="857.1" />
<glyph glyph-name="sun" unicode="&#xe8ac;" d="m25 195q-3 10 2 17l100 138-100 138q-5 8-2 17 2 8 11 11l163 53v171q0 9 7 15 8 5 16 2l163-53 101 139q5 6 14 6t15-6l100-139 163 53q8 3 16-2 7-6 7-15v-171l163-53q9-3 11-12 3-8-2-16l-100-138 100-138q5-7 2-17-2-8-11-11l-163-53v-171q0-9-7-15-8-5-16-2l-163 53-100-139q-6-7-15-7t-14 7l-101 139-163-53q-8-3-16 2-7 6-7 15v171l-163 53q-9 3-11 11z m154 155q0-65 25-125t69-102 102-69 125-25 125 25 102 69 69 102 25 125-25 125-69 102-102 69-125 25-125-25-102-69-69-102-25-125z" horiz-adv-x="1000" />
<glyph glyph-name="cloud" unicode="&#xe8ad;" d="m0 243q0 74 40 135t104 91q-1 15-1 24 0 118 84 202t202 84q88 0 159-50t105-128q39 35 93 35 59 0 101-42t42-101q0-42-23-77 72-17 119-75t46-134q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177z" horiz-adv-x="1071.4" />
<glyph glyph-name="flash" unicode="&#xe8ae;" d="m1 300l112 461q2 8 9 13t15 5h183q11 0 18-7t7-17q0-4-2-10l-96-258 221 54q5 2 7 2 11 0 19-9 10-11 4-24l-302-646q-7-14-23-14-2 0-8 1-9 3-14 11t-3 16l110 451-226-56q-2-1-7-1-10 0-17 7-10 8-7 21z" horiz-adv-x="500" />
<glyph glyph-name="moon" unicode="&#xe8af;" d="m0 350q0 85 32 163t87 135 132 92 161 38q25 1 34-22 10-23-8-40-48-43-73-101t-26-122q0-83 41-152t111-111 152-41q66 0 127 29 23 10 40-7 8-8 10-19t-2-22q-53-113-159-181t-230-68q-87 0-167 35t-136 91-92 137-34 166z m71 0q0-73 29-139t76-113 114-77 139-28q80 0 152 34t123 96q-30-5-61-5-102 0-188 50t-137 137-50 188q0 107 58 199-112-33-183-128t-72-214z" horiz-adv-x="857.1" />
<glyph glyph-name="umbrella" unicode="&#xe8b0;" d="m0 373q0 3 1 4 25 102 96 178t166 114 201 38q78 0 153-22t138-64 109-104 64-140q1-1 1-4 0-7-6-13t-12-5q-6 0-13 6-27 25-52 38t-57 13q-38 0-71-21t-58-54q-4-5-10-15t-8-14q-6-9-15-9-10 0-16 9-3 4-9 14t-9 15q-24 34-58 54t-71 21-71-21-57-54q-4-5-10-15t-8-14q-6-9-16-9-10 0-16 9-2 4-8 14t-10 15q-24 34-57 54t-71 21q-33 0-57-13t-52-38q-7-6-13-6-7 0-13 5t-5 13z m214-309q0 15 11 25t25 11 25-11 11-25q0-28 22-49t49-22 50 22 22 49v324q18 6 35 6t36-6v-324q0-58-42-100t-101-43-100 43-43 100z m215 660v55q0 14 10 25t25 10 25-10 11-25v-55q-23 1-36 1t-35-1z" horiz-adv-x="928.6" />
<glyph glyph-name="flight" unicode="&#xe8b1;" d="m0 259q-1 7 5 14l54 54q5 5 12 5 4 0 5 0l108-30 145 145-284 155q-8 5-9 14-1 9 5 15l71 71q8 7 17 5l371-89 89 89q43 42 96 60t83-6q24-29 7-83t-61-96l-90-90 90-388q3-11-7-19l-71-53q-4-3-11-3-2 0-4 0-8 2-12 9l-155 283-145-144 30-108q3-10-5-18l-53-53q-5-5-13-5h-1q-9 1-14 7l-105 141-141 105q-6 4-7 13z" horiz-adv-x="785.7" />
<glyph glyph-name="fighter-jet" unicode="&#xe8b2;" d="m0 279v71l107 13v5h-71v18h-18v107l18 18h53l107-125h90v232h-36v18h179q14 0 25-3t10-6-10-7-25-2h-39l164-197h35l125-35 197-18q145-33 160-52l0-2q0-18-160-53l-197-18-125-36h-35l-164-196h39q14 0 25-3t10-6-10-7-25-2h-179v18h36v232h-90l-107-125h-53l-18 18v107h18v18h71v4z" horiz-adv-x="1071.4" />
<glyph glyph-name="leaf" unicode="&#xe8b3;" d="m0 60q0 20 17 41t38 37 38 31 18 27q0 2-8 21t-9 25q-5 28-5 58 0 64 24 123t66 103 96 77 113 53q31 10 81 15t100 5 100 3 91 13 64 32l16 16t17 16 15 11 20 9 24 3q22 0 40-26t26-63 14-69 4-53q0-53-11-108-26-125-103-214t-200-149q-119-61-244-61-83 0-160 27-8 2-49 23t-53 21q-9 0-22-18t-25-39-30-39-33-18q-17 0-29 6t-17 13-15 24q-1 2-3 6t-3 6-2 5-1 7z m214 183q0-15 11-25t25-11q13 0 25 11 15 13 41 39t38 37q76 69 150 98t175 29q14 0 25 11t10 25-10 25-25 11q-96 0-178-28t-145-75-131-122q-11-12-11-25z" horiz-adv-x="1000" />
<glyph glyph-name="italic" unicode="&#xe8b4;" d="m0-78l10 48q3 1 45 12t62 21q16 19 23 56 1 4 35 162t63 303 29 165v14q-13 7-30 11t-39 4-32 3l10 58q19-2 67-4t84-4 67-1q27 0 55 1t67 4 55 4q-2-22-10-50-17-6-57-16t-60-19q-5-10-8-23t-5-23-4-25-4-24q-15-82-49-234t-43-198q-1-5-7-32t-11-51-9-46-4-32l1-10q9-3 103-18-2-24-9-55-6 0-18-1t-18-1q-16 0-49 6t-48 6q-77 1-115 1-28 0-79-5t-68-6z" horiz-adv-x="571.4" />
<glyph glyph-name="bold" unicode="&#xe8b5;" d="m0-79l1 53q9 2 48 9t59 15q4 7 7 15t4 19 4 18 1 21 0 19v36q0 548-12 572-2 5-12 8t-25 6-28 4-27 3-17 2l-2 46q55 1 190 6t208 5q13 0 38 0t38 0q39 0 76-7t72-24 60-39 41-59 16-76q0-29-9-54t-22-40-36-32-41-25-47-22q86-20 144-75t57-139q0-55-20-100t-52-73-77-47-91-27-98-8q-25 0-74 2t-74 1q-59 0-171-6t-129-7z m297 793q0-28 3-84t2-85q0-15 0-45t-1-44q0-26 1-38 23-4 61-4 46 0 80 7t61 25 41 50 15 79q0 39-16 68t-45 46-60 24-69 8q-28 0-73-7z m4-629q0-21 2-47t7-37q41-18 78-18 210 0 210 187 0 64-23 101-15 24-35 41t-37 26-45 14-47 6-53 1q-40 0-56-6 0-29 0-88t-1-89q0-4 0-37t0-54z" horiz-adv-x="785.7" />
<glyph glyph-name="font" unicode="&#xe8b6;" d="m0-79l1 44q13 4 31 7t32 6 28 8 25 17 17 28l132 344 156 404h72q4-8 6-12l114-268q19-44 60-144t63-153q9-19 33-81t40-94q11-25 19-31 11-9 49-17t47-11q4-22 4-32 0-2-1-7t0-8q-35 0-106 5t-107 4q-42 0-120-4t-99-4q0 24 2 43l73 16q1 0 7 1t9 2 8 3 9 4 6 4 5 6 1 8q0 9-17 54t-40 99-24 56l-251 1q-14-33-43-109t-28-91q0-12 8-21t24-14 27-7 32-5 23-2q1-11 1-32 0-5-2-16-32 0-97 6t-97 6q-5 0-15-3t-12-2q-45-8-105-8z m310 366q18 0 76-1t89-1q11 0 32 1-48 141-102 252z" horiz-adv-x="928.6" />
<glyph glyph-name="text-height" unicode="&#xe8b7;" d="m0 564v213l45 1 30-15q7-3 118-3 25 0 74 1t73 1q21 0 60 0t60 0h164q3 0 12 0t11 0 9 1 10 5 8 10l24 1q2 0 7-1t8 0q1-62 1-187 0-45-2-61-22-8-38-10-14 24-31 71-1 5-6 27t-8 41-4 20q-3 4-7 7t-8 3-8 1-10 1-9-1q-9 0-37 1t-42 0-35-1-40-4q-5-45-4-75 0-53 1-217t1-254q0-9-1-40t0-51 7-38q22-12 69-24t67-21q2-22 2-28 0-8-1-16l-19-1q-43-1-122 5t-115 6q-28 0-85-6t-84-5q-2 29-2 29v6q9 15 34 24t55 16 44 15q10 23 10 213 0 57-1 170t-2 169v65q0 1 0 9t1 14-1 14-2 13-3 8q-6 7-90 7-18 0-52-7t-44-15q-11-7-19-40t-18-62-24-30q-23 15-31 25z m789-510q5 10 23 10h45v572h-45q-18 0-23 10t6 25l71 90q11 15 27 15t27-15l70-90q12-15 7-25t-24-10h-44v-572h44q19 0 24-10t-7-25l-70-90q-11-15-27-15t-27 15l-71 90q-11 15-6 25z" horiz-adv-x="1000" />
<glyph glyph-name="text-width" unicode="&#xe8b8;" d="m0 564v213l45 1 30-15q7-3 118-3 25 0 74 1t73 1q39 0 138 1t170 0 138-2q18-1 31 17l23 1q3 0 8-1t8 0q1-62 1-187 0-45-3-61-21-8-38-10-14 24-30 71-1 5-6 27t-8 41-4 20q-6 7-15 10-3 1-37 1-17 0-52 1t-57 1-53-2-53-4q-5-45-5-75l1-85v29q0-31 0-86t1-101 0-85q0-9-1-40t0-51 7-38q22-12 69-24t67-21q3-22 3-28 0-8-2-16l-19-1q-42-1-121 5t-116 5q-28 0-84-5t-85-5q-2 29-2 29v5q10 15 35 24t55 17 43 15q4 9 7 41t3 81 1 87-1 85 0 50q0 4-1 12t-2 12q0 4 1 25t0 41 0 42-1 38-4 18q-6 7-90 7-23 0-91-8t-77-14q-11-6-19-39t-18-63-24-30q-23 15-31 25z m3-607q0 16 14 27 3 2 20 17t34 28 32 23 23 11q7 0 12-6t5-16 2-19-1-18-1-11h571q0 1-1 11t0 18 1 19 6 16 11 6q7 0 23-11t33-23 33-28 20-17q14-11 14-27t-14-27q-2-2-20-17t-33-27-33-23-23-11q-7 0-11 5t-6 16-1 19 0 18 1 11h-571q0-1 1-11t1-18-2-19-5-16-12-5q-7 0-23 11t-32 23-34 27-20 17q-14 11-14 27z" horiz-adv-x="857.1" />
<glyph glyph-name="list" unicode="&#xe8b9;" d="m0 11v107q0 7 5 12t13 6h107q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-107q-7 0-13 5t-5 13z m0 214v107q0 7 5 13t13 5h107q7 0 13-5t5-13v-107q0-7-5-13t-13-5h-107q-7 0-13 5t-5 13z m0 214v107q0 8 5 13t13 5h107q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-107q-7 0-13 6t-5 12z m0 215v107q0 7 5 12t13 6h107q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-107q-7 0-13 5t-5 13z m214-643v107q0 7 6 12t12 6h750q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-750q-7 0-12 5t-6 13z m0 214v107q0 7 6 13t12 5h750q7 0 13-5t5-13v-107q0-7-5-13t-13-5h-750q-7 0-12 5t-6 13z m0 214v107q0 8 6 13t12 5h750q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-750q-7 0-12 6t-6 12z m0 215v107q0 7 6 12t12 6h750q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-750q-7 0-12 5t-6 13z" horiz-adv-x="1000" />
<glyph glyph-name="indent-left" unicode="&#xe8ba;" d="m0 11v107q0 7 5 12t13 6h964q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13z m0 643v107q0 7 5 12t13 6h964q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13z m18-268q0 8 5 13l161 160q5 5 12 5 8 0 13-5t5-13v-321q0-7-5-13t-13-5q-7 0-12 5l-161 161q-5 5-5 13z m339-161v107q0 7 5 13t13 5h607q7 0 13-5t5-13v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13z m0 214v107q0 8 5 13t13 5h607q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-right" unicode="&#xe8bb;" d="m0 11v107q0 7 5 12t13 6h964q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13z m0 214v321q0 8 5 13t13 5q8 0 13-5l160-160q5-5 5-13t-5-13l-160-161q-5-5-13-5-7 0-13 5t-5 13z m0 429v107q0 7 5 12t13 6h964q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13z m357-429v107q0 7 5 13t13 5h607q7 0 13-5t5-13v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13z m0 214v107q0 8 5 13t13 5h607q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="list-bullet" unicode="&#xe8bc;" d="m0 64q0 45 31 76t76 31 76-31 31-76-31-76-76-31-76 31-31 76z m0 286q0 45 31 76t76 31 76-31 31-76-31-76-76-31-76 31-31 76z m0 286q0 44 31 76t76 31 76-31 31-76-31-76-76-31-76 31-31 76z m286-625v107q0 7 5 12t13 6h678q7 0 13-6t5-12v-107q0-7-5-13t-13-5h-678q-8 0-13 5t-5 13z m0 285v108q0 7 5 12t13 5h678q7 0 13-5t5-12v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12z m0 286v107q0 8 5 13t13 5h678q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="list-numbered" unicode="&#xe8bd;" d="m8 237q0 29 14 52t31 38 37 27 31 24 14 25q0 14-9 22t-22 7q-25 0-45-32l-47 33q13 28 40 44t59 16q40 0 68-23t28-63q0-28-19-51t-42-36-42-28-20-30h71v34h59v-89h-202q-4 20-4 30z m3-350l31 49q28-25 60-25 16 0 28 8t12 24q0 35-59 31l-14 31q4 6 18 24t24 31 20 21v1q-9 0-27-1t-27 0v-30h-59v85h186v-49l-53-65q28-6 45-27t17-49q0-45-31-70t-75-26q-60 0-96 37z m8 887l76 71h59v-225h60v-56h-187v56h60q0 22 0 68t1 67v7h-1q-5-10-28-30z m267-763v107q0 8 5 13t13 5h678q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-678q-8 0-13 5t-5 13z m0 285v108q0 7 5 12t13 5h678q7 0 13-5t5-12v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12z m0 286v107q0 8 5 13t13 5h678q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="strike" unicode="&#xe8be;" d="m0 296v36q0 8 5 13t13 5h964q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-964q-8 0-13 5t-5 12z m214 239q0 101 75 173 74 71 219 71 28 0 94-11 36-7 98-27 6-21 12-66 8-68 8-102 0-10-3-25l-7-2-46 4-8 1q-28 83-58 114-49 51-117 51-64 0-102-33-37-32-37-81 0-41 37-79t156-72q38-11 96-36 33-16 53-29h-414q-16 19-29 44-27 54-27 105z m17-456q0 17 0 38l1 20v25l57 1q8-19 17-40t12-31 7-15q20-32 45-52 24-20 59-32 33-12 73-12 36 0 78 15 43 14 68 48 26 34 26 72 0 47-45 87-19 16-77 40h230q4-22 4-51 0-62-23-119-13-30-40-58-20-19-61-45-44-27-85-37-45-12-113-12-64 0-109 13l-78 23q-32 9-40 15-5 5-5 13v7q0 60-1 87z" horiz-adv-x="1000" />
<glyph glyph-name="underline" unicode="&#xe8bf;" d="m0-25v-36q0-8 5-13t13-5h821q8 0 13 5t5 13v36q0 8-5 13t-13 5h-821q-8 0-13-5t-5-13z m0 802q7 0 22 0 34 0 63-2 74-4 92-4 48 0 94 2 65 2 82 3 31 0 48 1l-1-8 1-36v-5q-33-5-69-5-33 0-44-14-7-7-7-73 0-8 0-18t0-15l1-128 8-156q3-69 28-112 20-33 54-52 49-26 98-26 58 0 107 16 31 10 55 28 27 20 37 36 20 31 29 63 12 41 12 128 0 44-2 72t-6 68-8 89l-2 33q-3 37-13 49-19 20-43 19l-56-1-8 2 1 48h47l114-6q43-2 110 6l10-2q3-21 3-28 0-4-2-17-25-7-47-8-41-6-44-9-8-9-8-23 0-4 0-15t1-17q5-11 13-221 3-109-9-170-8-42-23-68-21-36-62-69-42-32-102-49-61-19-142-19-93 0-159 26-66 26-99 68-34 42-47 109-9 44-9 132v186q0 105-9 119-14 20-82 21-21 2-25 3z" horiz-adv-x="857.1" />
<glyph glyph-name="superscript" unicode="&#xe8c0;" d="m3-7v93h71l110 162-103 152h-76v94h154l77-127q1-2 13-24 4-5 6-11h2q1 5 6 11l14 24 78 127h143v-94h-69l-103-149 114-165h61v-93h-139l-89 141-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144z m562 398q0 35 15 65t36 48 47 37 47 30 36 30 15 36q0 21-17 35t-39 13q-29 0-54-21-8-7-20-22l-59 52q15 20 35 37 46 36 105 36 61 0 99-33t38-89q0-31-13-57t-35-43-45-33-46-28-37-29-17-35h130v45h70v-115h-287l-1 15q-3 16-3 26z" horiz-adv-x="857.1" />
<glyph glyph-name="subscript" unicode="&#xe8c1;" d="m3-7v93h71l110 162-103 152h-76v94h154l77-127q1-2 13-24 4-5 6-11h2q1 5 6 11l14 24 78 127h143v-94h-69l-103-149 114-165h61v-93h-139l-89 141-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144z m563-102q0 35 15 65t36 48 47 37 47 30 36 30 15 36q0 21-17 35t-39 13q-29 0-54-21-8-6-20-22l-59 52q15 20 35 37 45 36 105 36 62 0 99-33t38-89q0-37-19-66t-47-48-55-35-49-35-23-41h130v45h70v-115h-287l-2 15q-2 25-2 26z" horiz-adv-x="857.1" />
<glyph glyph-name="table" unicode="&#xe8c2;" d="m0 82v607q0 37 26 63t63 27h750q37 0 63-27t27-63v-607q0-37-27-63t-63-26h-750q-36 0-63 26t-26 63z m71 0q0-8 5-13t13-5h179q8 0 13 5t5 13v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107z m0 214q0-7 5-12t13-5h179q8 0 13 5t5 12v108q0 7-5 12t-13 5h-179q-7 0-13-5t-5-12v-108z m0 215q0-8 5-13t13-5h179q8 0 13 5t5 13v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107z m286-429q0-8 5-13t13-5h179q7 0 12 5t5 13v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107z m0 214q0-7 5-12t13-5h179q7 0 12 5t5 12v108q0 7-5 12t-12 5h-179q-8 0-13-5t-5-12v-108z m0 215q0-8 5-13t13-5h179q7 0 12 5t5 13v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107z m286-429q0-8 5-13t13-5h178q8 0 13 5t5 13v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107z m0 214q0-7 5-12t13-5h178q8 0 13 5t5 12v108q0 7-5 12t-13 5h-178q-8 0-13-5t-5-12v-108z m0 215q0-8 5-13t13-5h178q8 0 13 5t5 13v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107z" horiz-adv-x="928.6" />
<glyph glyph-name="columns" unicode="&#xe8c3;" d="m0 11v678q0 37 26 63t63 27h750q37 0 63-27t27-63v-678q0-37-27-63t-63-27h-750q-36 0-63 27t-26 63z m71 0q0-8 6-13t12-5h340v643h-358v-625z m429-18h339q8 0 13 5t5 13v625h-357v-643z" horiz-adv-x="928.6" />
<glyph glyph-name="crop" unicode="&#xe8c4;" d="m0 511v107q0 8 5 13t13 5h125v125q0 7 5 12t13 5h107q8 0 13-5t5-12v-125h475l137 138q5 5 13 5t13-5q5-6 5-13t-5-13l-138-137v-475h125q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-125v-125q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v125h-482q-8 0-13 5t-5 13v482h-125q-8 0-13 5t-5 13z m286-350l332 332h-332v-332z m25-25h332v332z" horiz-adv-x="928.6" />
<glyph glyph-name="scissors" unicode="&#xe8c5;" d="m1 81q4 42 31 82t73 69q74 47 155 47 46 0 84-18 5 8 13 13l68 40-68 41q-8 5-13 12-38-17-84-17-81 0-155 47-46 29-73 69t-31 82q-3 33 8 63t36 52q47 44 124 44 80 0 154-47 46-29 74-68t31-83q2-27-6-54 3-1 7-3l62-37 385 216q7 5 17 5 9 0 16-4l71-36q17-9 20-28 2-20-14-32l-283-222 283-222q16-11 14-31-3-20-20-29l-71-35q-7-4-16-4-10 0-17 4l-385 216-62-37q-4-2-7-2 8-28 6-55-4-43-31-82t-74-69q-74-47-154-47-76 0-124 44-51 47-44 115z m93 10q-14-37 12-60 21-20 63-20 55 0 107 33 45 28 59 65t-12 60q-22 20-63 20-56 0-107-33-45-28-59-65z m0 447q14-37 59-66 51-33 107-33 41 0 63 20 26 24 12 61t-59 65q-52 33-107 33-42 0-63-20-26-24-12-60z m281-295l5-5q1-1 4-3 2-2 6-7t6-6l15-15 89 54 54-18 410 321-71 36-429-240v-64z m0 143l54-33v7q0 20 18 31l8 4-44 26-15-14q-1-2-5-6t-7-7q-1-1-2-2t-2-1z m125-72q0 15 11 25t25 11 25-11 10-25-10-25-25-10-25 10-11 25z m68-103l325-182 71 35-290 228-99-77q-1-2-7-4z" horiz-adv-x="1000" />
<glyph glyph-name="paste" unicode="&#xe8c6;" d="m0 46v750q0 23 16 38t38 16h607q22 0 38-16t15-38v-183q12-7 20-15l228-228q16-16 27-42t11-50v-374q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v89h-303q-23 0-38 15t-16 38z m143 679q0-7 5-13t13-5h393q7 0 12 5t5 13v36q0 7-5 12t-12 5h-393q-7 0-13-5t-5-12v-36z m286-804h500v358h-233q-22 0-38 15t-15 38v232h-214v-643z m285 429h167l-167 167v-167z" horiz-adv-x="1000" />
<glyph glyph-name="briefcase" unicode="&#xe8c7;" d="m0 82v268h375v-89q0-15 11-25t25-11h178q15 0 25 11t11 25v89h375v-268q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63z m0 322v214q0 37 26 63t63 26h197v89q0 23 15 38t38 16h322q22 0 38-16t15-38v-89h197q37 0 63-26t26-63v-215h-1000z m357 303h286v72h-286v-72z m72-428v71h142v-71h-142z" horiz-adv-x="1000" />
<glyph glyph-name="suitcase" unicode="&#xe8c8;" d="m0 46v465q0 51 37 88t88 37h36v-715h-36q-51 0-88 37t-37 88z m214-125v715h72v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h72v-715h-572z m143 715h286v71h-286v-71z m482-715v715h36q51 0 88-37t37-88v-465q0-51-37-88t-88-37h-36z" horiz-adv-x="1000" />
<glyph glyph-name="list-alt" unicode="&#xe8c9;" d="m0 82v607q0 37 26 63t63 27h822q37 0 63-27t26-63v-607q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63z m71 0q0-7 6-12t12-6h822q7 0 12 6t6 12v464q0 8-6 13t-12 5h-822q-7 0-12-5t-6-13v-464z m72 72v35q0 8 5 13t13 5h35q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13z m0 142v36q0 7 5 13t13 5h35q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-35q-7 0-13 5t-5 12z m0 143v36q0 7 5 13t13 5h35q8 0 13-5t5-13v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12z m143-285v35q0 8 5 13t13 5h535q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-535q-8 0-13 5t-5 13z m0 142v36q0 7 5 13t13 5h535q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-535q-8 0-13 5t-5 12z m0 143v36q0 7 5 13t13 5h535q8 0 13-5t5-13v-36q0-7-5-12t-13-6h-535q-8 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="qrcode" unicode="&#xe8ca;" d="m0-7v357h357v-357h-357z m0 428v358h357v-358h-357z m71-356h215v214h-215v-214z m0 428h215v214h-215v-214z m72-357v71h71v-71h-71z m0 428v72h71v-72h-71z m286-571v357h214v-71h71v71h72v-214h-215v71h-71v-214h-71z m0 428v358h357v-358h-357z m71 72h214v214h-214v-214z m71-500v71h72v-71h-72z m0 571v72h72v-72h-72z m143-571v71h72v-71h-72z" horiz-adv-x="785.7" />
<glyph glyph-name="barcode" unicode="&#xe8cb;" d="m0-7v786h35v-786h-35z m53 0v786h17v-786h-17z m53 0v786h17v-786h-17z m87 0v786h17v-786h-17z m70 0v786h35v-786h-35z m88 0v786h17v-786h-17z m35 0v786h17v-786h-17z m35 0v786h18v-786h-18z m70 0v786h35v-786h-35z m88 0v786h35v-786h-35z m70 0v786h35v-786h-35z m70 0v786h35v-786h-35z m53 0v786h35v-786h-35z m88 0v786h52v-786h-52z m70 0v786h18v-786h-18z m35 0v786h35v-786h-35z" horiz-adv-x="1000" />
<glyph glyph-name="book" unicode="&#xe8cc;" d="m6 96q0 2 1 15t3 20q0 5-2 12t-2 11q1 6 5 12t9 13 9 13q13 21 25 51t17 51q2 6 0 17t0 16q2 6 9 15t10 13q12 20 23 51t14 51q1 5-1 17t0 16q2 7 12 17t13 13q10 14 23 47t16 54q0 4-2 14t-1 15q1 4 5 10t10 13 10 11q4 7 9 17t8 20 9 20 11 18 15 13 20 6 26-3l0-1q21 5 28 5h425q41 0 63-32t10-72l-152-506q-20-66-40-86t-72-19h-485q-15 0-21-8-6-9-1-24 14-39 81-39h515q16 0 31 8t19 24l168 550q4 13 3 32 21-8 33-24 22-32 10-72l-154-505q-10-36-42-60t-69-25h-515q-43 0-83 30t-55 74q-14 37-1 70z m269 343q-3-7 1-12t11-6h339q7 0 14 6t10 12l11 36q3 7-1 13t-11 5h-339q-8 0-14-5t-10-13z m46 143q-2-7 1-12t11-6h339q8 0 15 6t9 12l12 36q2 7-2 12t-11 6h-339q-7 0-14-6t-9-12z" horiz-adv-x="928.6" />
<glyph glyph-name="ajust" unicode="&#xe8cd;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41v608q-83 0-153-41t-110-111-41-152z" horiz-adv-x="857.1" />
<glyph glyph-name="tint" unicode="&#xe8ce;" d="m0 279q0 81 45 153 4 5 35 51t56 84 56 99 46 112q5 17 19 27t29 9 28-9 19-27q16-51 46-112t56-99 56-85 35-50q45-71 45-154 0-118-83-202t-202-83-202 83-84 202z m143-72q0-29 21-50t50-21 51 21 21 50q0 20-11 39-1 0-9 12t-14 21-14 25-12 28q-2 9-12 9t-11-9q-4-13-12-28t-14-25-14-21-9-12q-11-19-11-39z" horiz-adv-x="571.4" />
<glyph glyph-name="check" unicode="&#xe8cf;" d="m0 154v464q0 66 47 113t114 48h464q35 0 65-14 9-4 10-13 2-10-5-16l-27-28q-6-5-13-5-2 0-5 1-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v141q0 8 5 13l36 35q6 6 13 6 3 0 7-2 11-4 11-16v-177q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114z m143 267q0 19 14 32l61 62q14 13 32 13t32-13l147-147 361 361q13 13 31 13t32-13l62-61q13-14 13-32t-13-32l-455-454q-13-14-31-14t-32 14l-240 240q-14 13-14 31z" horiz-adv-x="928.6" />
<glyph glyph-name="check-empty" unicode="&#xe8d0;" d="m0 154v464q0 66 47 113t114 48h464q66 0 114-48t47-113v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114z m71 0q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26h-464q-37 0-63-26t-27-63v-464z" horiz-adv-x="785.7" />
<glyph glyph-name="circle" unicode="&#xe8d1;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z" horiz-adv-x="857.1" />
<glyph glyph-name="circle-empty" unicode="&#xe8d2;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m125 0q0-83 41-152t110-111 153-41 152 41 110 111 41 152-41 152-110 111-152 41-153-41-110-111-41-152z" horiz-adv-x="857.1" />
<glyph glyph-name="asterisk" unicode="&#xe8d3;" d="m68 221q8 29 34 43l148 86-148 86q-26 14-34 43t7 55l36 61q15 26 43 33t55-7l148-85v171q0 29 21 50t51 22h71q29 0 50-22t21-50v-171l149 85q26 15 54 7t44-33l35-61q15-26 7-55t-33-43l-148-86 148-86q26-15 33-43t-7-55l-35-61q-15-26-44-33t-54 7l-149 85v-171q0-29-21-50t-50-22h-71q-29 0-51 22t-21 50v171l-148-85q-26-15-55-7t-43 33l-36 61q-14 26-7 55z" horiz-adv-x="928.6" />
<glyph glyph-name="gift" unicode="&#xe8d4;" d="m0 296v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89 37 88 88 37q60 0 94-43l72-92 71 92q34 43 94 43 52 0 88-37t37-88-37-89-88-36h245q8 0 13-5t5-13v-179q0-7-5-12t-13-6h-53v-232q0-22-16-38t-38-15h-607q-22 0-38 15t-16 38v232h-53q-8 0-13 6t-5 12z m210 322q0-22 15-38t38-16h109l-70 90q-15 17-39 17-22 0-38-15t-15-38z m129-525q0-14 10-21t26-8h107q16 0 26 8t10 21v400h-179v-400z m147 471h108q22 0 38 16t15 38-15 38-38 15q-24 0-39-17z" horiz-adv-x="857.1" />
<glyph glyph-name="fire" unicode="&#xe8d5;" d="m0-96q0 7 5 12t13 5h750q7 0 12-5t6-12v-36q0-7-6-13t-12-5h-750q-7 0-13 5t-5 13v36z m143 446q0 44 14 80t35 63 49 49 54 43 48 41 36 45 14 54q0 52-37 125l2-1-1 1q50-23 89-46t78-56 63-68 41-84 15-103q0-44-14-80t-36-63-48-49-54-44-49-40-35-45-14-54q0-54 37-125l-2 0 1 0q-51 23-90 46t-77 56-63 68-41 84-15 103z" horiz-adv-x="785.7" />
<glyph glyph-name="magnet" unicode="&#xe8d6;" d="m0 314v72q0 14 11 25t25 10h214q15 0 25-10t11-25v-72q0-29 13-50t30-32 39-16 36-8 25-1 24 1 36 8 39 16 30 32 13 50v72q0 14 11 25t25 10h214q15 0 26-10t10-25v-72q0-112-55-202t-153-140-220-51-221 51-153 140-55 202z m0 215v214q0 14 11 25t25 11h214q15 0 25-11t11-25v-214q0-15-11-26t-25-10h-214q-15 0-25 10t-11 26z m571 0v214q0 14 11 25t25 11h214q15 0 26-11t10-25v-214q0-15-10-26t-26-10h-214q-14 0-25 10t-11 26z" horiz-adv-x="857.1" />
<glyph glyph-name="folder" unicode="&#xe8d7;" d="m0-52l0 715 139 0 68 90 217 0 68-90 508 0 0-715-1000 0z" horiz-adv-x="1000" />
<glyph glyph-name="ticket" unicode="&#xe8d8;" d="m30 243q0 30 21 51l506 505q21 21 50 21t51-21l70-70q-32-31-32-75t32-76 76-32 75 32l71-70q20-21 20-51t-20-50l-506-507q-21-20-51-20t-50 20l-71 71q32 31 32 75t-32 76-76 32-75-32l-70 71q-21 20-21 50z m161 36q0-15 10-26l202-202q11-10 26-10t25 10l345 345q10 11 10 25t-10 26l-202 202q-10 10-26 10t-25-10l-345-345q-10-11-10-25z m61 0l319 319 177-177-319-319z" horiz-adv-x="1000" />
<glyph glyph-name="key" unicode="&#xe8d9;" d="m0 413q0 89 53 174t138 139 175 53q91 0 148-58t57-148q0-105-73-204l198-198 54 54q-2 2-15 14t-22 21-18 20-9 16q0 10 27 37t37 28q7 0 13-6 3-3 26-25t45-44 49-48 40-44 16-23q0-9-27-36t-37-28q-5 0-16 9t-20 19-22 22-13 14l-54-53 123-123q15-16 15-38 0-23-21-45t-46-22q-22 0-38 16l-374 374q-98-73-204-73-91 0-148 57t-57 148z m107 8q0-44 31-75t76-32 76 32 31 75q0 24-10 47 23-11 46-11 45 0 76 31t31 76-31 76-76 31-76-31-31-76q0-23 11-46-23 11-47 11-44 0-76-32t-31-76z" horiz-adv-x="1000" />
<glyph glyph-name="fork" unicode="&#xe8da;" d="m0 29q0 29 15 53t39 39v458q-25 14-39 39t-15 53q0 45 31 76t76 32 76-32 31-76q0-29-14-53t-39-39v-278q30 15 86 32 30 10 49 17t39 17 33 22 22 29 16 38 5 51q-25 14-39 39t-15 54q0 45 31 76t76 31 76-31 31-76q0-29-14-54t-39-39q-1-160-126-231-38-21-114-45-71-22-94-39t-23-56v-15q24-14 39-39t14-53q0-45-31-76t-76-32-76 32-31 76z m54 0q0-23 15-38t38-16 38 16 16 38-16 38-38 15-38-15-15-38z m0 642q0-22 15-38t38-15 38 15 16 38-16 38-38 16-38-16-15-38z m357-71q0-22 15-38t38-16 38 16 16 38-16 38-38 16-38-16-15-38z" horiz-adv-x="571.4" />
<glyph glyph-name="rocket" unicode="&#xe8db;" d="m20 252l125 214q6 8 15 9l211 11q54 64 98 109 105 104 200 144t241 40q7 0 13-6t6-12q0-139-43-241t-141-201q-45-44-109-98l-11-211q-1-9-9-15l-214-125q-4-2-9-2-7 0-13 5l-36 36q-7 7-4 17l47 155-156 156-155-47q-1-1-5-1-7 0-12 5l-36 36q-10 11-3 22z m676 348q0-22 16-38t38-16 38 16 16 38-16 38-38 16-38-16-16-38z" horiz-adv-x="928.6" />
<glyph glyph-name="bug" unicode="&#xe8dc;" d="m18 314q0 15 11 25t25 11h125v164l-97 97q-11 10-11 25t11 25 25 10 25-10l97-97h471l96 97q11 10 25 10t26-10 10-25-10-25l-97-97v-164h125q15 0 25-11t11-25-11-25-25-10h-125q0-96-37-162l116-117q10-11 10-25t-10-25q-10-11-25-11t-26 11l-110 110q-3-3-8-7t-24-16-36-21-46-16-54-7v500h-71v-500q-29 0-57 7t-49 19-36 22-25 18l-8 8-102-116q-11-12-27-12-13 0-24 9-11 10-11 25t8 26l113 127q-32 63-32 153h-125q-15 0-25 10t-11 25z m268 322q0 74 52 126t126 52 127-52 52-126h-357z" horiz-adv-x="928.6" />
<glyph glyph-name="certificate" unicode="&#xe8dd;" d="m1 236q-6 23 11 39l77 75-77 75q-17 16-11 39 7 23 29 29l105 27-29 103q-7 23 10 39 16 18 39 11l104-29 27 104q5 23 28 29 23 7 39-11l76-77 75 77q16 17 39 11 23-6 28-29l27-104 104 29q23 7 39-11 17-16 11-39l-30-103 105-27q22-6 29-29 6-23-11-39l-77-75 77-75q17-16 11-39-7-23-29-29l-105-27 30-103q6-23-11-39-16-18-39-11l-104 30-27-105q-5-23-28-30-7-1-11-1-17 0-28 13l-75 77-76-77q-15-17-39-12-23 7-28 30l-27 105-104-30q-23-7-39 11-17 16-10 39l29 103-105 27q-22 6-29 29z" horiz-adv-x="857.1" />
<glyph glyph-name="tasks" unicode="&#xe8de;" d="m0 29v142q0 15 11 26t25 10h928q15 0 25-10t11-26v-142q0-15-11-26t-25-10h-928q-15 0-25 10t-11 26z m0 285v143q0 15 11 25t25 11h928q15 0 25-11t11-25v-143q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25z m0 286v143q0 14 11 25t25 11h928q15 0 25-11t11-25v-143q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25z m357-250h572v71h-572v-71z m214-286h358v72h-358v-72z m143 572h215v71h-215v-71z" horiz-adv-x="1000" />
<glyph glyph-name="filter" unicode="&#xe8df;" d="m3 685q9 22 33 22h714q23 0 33-22 9-23-8-39l-275-275v-414q0-23-22-33-7-3-14-3-15 0-25 11l-143 143q-10 10-10 25v271l-275 275q-18 16-8 39z" horiz-adv-x="785.7" />
<glyph glyph-name="beaker" unicode="&#xe8e0;" d="m64-43q-19 35 12 85l281 442v223h-36q-14 0-25 11t-10 25 10 25 25 11h286q15 0 25-11t11-25-11-25-25-11h-36v-223l281-442q31-50 12-85t-78-36h-643q-59 0-79 36z m202 250h397l-152 240-11 17v243h-71v-243l-12-17z" horiz-adv-x="928.6" />
<glyph glyph-name="magic" unicode="&#xe8e1;" d="m15 82q0 15 10 25l718 718q10 10 25 10t25-10l110-111q10-10 10-25t-10-25l-717-718q-10-10-25-10t-25 10l-111 111q-10 10-10 25z m56 697l55 16 17 55 17-55 54-16-54-17-17-55-17 55z m108-108l109 34 33 109 34-109 109-34-109-33-34-109-33 109z m250 108l54 16 17 55 17-55 54-16-54-17-17-55-17 55z m175-194l60-59 164 163-60 60z m182-164l54 17 17 55 17-55 55-17-55-16-17-55-17 55z" horiz-adv-x="928.6" />
<glyph glyph-name="truck" unicode="&#xe8e2;" d="m36 100q0 15 10 25t25 11v178q0 5 0 20t0 21 2 19 3 21 8 17 13 17l110 110q11 11 28 18t33 7h89v107q0 15 11 26t25 10h571q15 0 25-10t11-26v-571q0-8-2-15t-8-10-9-6-13-4-13-1-14 0-12 0q0-59-42-101t-101-42-101 42-42 101h-214q0-59-42-101t-101-42-101 42-42 101h-36q-1 0-12 0t-15 0-12 1-13 4-9 6-8 10-2 15z m107 250h214v143h-88q-7 0-12-5l-109-109q-5-5-5-12v-17z m71-286q0-29 22-50t50-21 50 21 21 50-21 51-50 21-50-21-22-51z m500 0q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z" horiz-adv-x="1000" />
<glyph glyph-name="money" unicode="&#xe8e3;" d="m0 29v642q0 15 11 26t25 10h1000q14 0 25-10t10-26v-642q0-15-10-26t-25-10h-1000q-15 0-25 10t-11 26z m71 178q60 0 101-42t42-101h643q0 59 42 101t101 42v286q-59 0-101 42t-42 101h-643q0-59-42-101t-101-42v-286z m286 143q0 39 12 79t33 75 57 56 77 22 77-22 56-56 34-75 11-79-11-79-34-75-56-56-77-22-77 22-57 56-33 75-12 79z m68 84l43-44q24 20 31 31h1v-160h-71v-54h214v54h-72v250h-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="euro" unicode="&#xe8e4;" d="m0 280v63q0 7 5 12t13 6h37q-1 31 0 58h-37q-8 0-13 5t-5 13v64q0 7 5 13t13 5h55q37 117 135 188t224 72q57 0 108-13 6-2 11-9 4-6 2-13l-24-89q-2-7-8-11t-13-1l-2 1q-3 0-7 1l-10 2t-12 2-15 2-16 1-16 0q-71 0-126-35t-84-98h261q9 0 14-7 6-7 4-15l-13-63q-3-15-18-15h-273q-1-20 0-58h256q9 0 14-7 5-7 4-15l-14-63q-1-6-6-10t-11-4h-216q27-65 84-104t127-38q10 0 20 1t19 2 16 2 14 3 10 3l7 1 3 2q7 2 14-2 7-4 9-11l19-89q2-7-1-13t-10-8l-3 0q-2-1-6-2t-9-3-12-3-14-3-17-2-18-3-21-2-21 0q-131 0-228 73t-133 196h-53q-7 0-13 5t-5 13z" horiz-adv-x="571.4" />
<glyph glyph-name="pound" unicode="&#xe8e5;" d="m0 11v83q0 8 5 13t13 5h54v214h-53q-8 0-13 5t-5 13v73q0 8 5 13t13 5h53v124q0 96 69 158t175 62q104 0 187-70 5-5 6-12t-4-12l-57-71q-5-6-13-7-7-1-13 4-2 3-14 11t-39 18-51 10q-48 0-77-27t-29-68v-120h170q8 0 13-5t5-13v-73q0-7-5-13t-13-5h-170v-212h231v101q0 8 5 13t13 5h90q8 0 13-5t5-13v-204q0-8-5-13t-13-5h-533q-8 0-13 5t-5 13z" horiz-adv-x="571.4" />
<glyph glyph-name="dollar" unicode="&#xe8e6;" d="m29 88l58 76q3 5 12 6 9 1 14-5l1-1q63-55 135-70 21-4 42-4 45 0 79 24t35 68q0 16-9 30t-18 23-33 21-37 18-45 18q-21 9-34 14t-34 15-35 17-32 20-29 24-25 27-20 32-11 37-5 44q0 77 55 135t142 75v100q0 7 5 13t13 5h75q8 0 13-5t5-13v-98q32-4 62-13t48-19 36-21 21-16 9-8q9-10 3-21l-46-81q-4-9-12-9-8-2-16 4-1 1-8 6t-21 15-33 18-42 15-47 6q-53 0-87-24t-33-62q0-14 4-27t17-23 22-18 31-18 34-15 39-15q30-11 45-18t43-19 42-24 34-28 30-35 18-43 7-52q0-86-56-147t-144-77v-97q0-8-5-13t-13-5h-75q-7 0-13 5t-5 13v97q-37 5-71 18t-57 25-41 26-26 21-10 10q-9 12-1 23z" horiz-adv-x="571.4" />
<glyph glyph-name="rupee" unicode="&#xe8e7;" d="m0 330v71q0 8 5 13t13 5h62q74 0 119 24t57 70h-238q-8 0-13 5t-5 13v57q0 8 5 13t13 5h230q-31 63-149 63h-81q-7 0-13 5t-5 12v75q0 8 5 13t13 5h464q8 0 13-5t5-13v-57q0-8-5-13t-13-5h-130q26-34 36-80h95q8 0 13-5t5-13v-57q0-8-5-13t-13-5h-93q-13-80-72-131t-154-61q93-99 256-299 7-9 2-19-5-10-16-10h-109q-9 0-14 7-171 204-278 318-5 5-5 12z" horiz-adv-x="501.1" />
<glyph glyph-name="yen" unicode="&#xe8e8;" d="m2 752q-4 9 0 18 6 9 16 9h108q11 0 16-10l120-238q11-21 32-69 5 13 17 37t15 35l107 234q4 10 16 10h106q10 0 15-8 5-8 1-18l-175-323h120q7 0 13-5t5-13v-58q0-8-5-13t-13-5h-162v-47h162q7 0 13-5t5-13v-57q0-8-5-13t-13-5h-162v-184q0-8-5-13t-12-5h-96q-8 0-13 5t-5 13v184h-161q-7 0-13 5t-5 13v57q0 7 5 13t13 5h161v47h-161q-7 0-13 5t-5 13v58q0 8 5 13t13 5h119z" horiz-adv-x="573.1" />
<glyph glyph-name="renminbi" unicode="&#xe8e9;" d="m0 136v71q0 8 5 13t13 5h125v66h-125q-8 0-13 5t-5 13v83q0 7 5 12t13 6h125v351q0 8 5 13t13 5h301q111 0 182-69t70-175-70-176-182-68h-190v-66h282q7 0 12-5t5-13v-71q0-8-5-13t-12-5h-282v-107q0-8-6-13t-12-5h-93q-8 0-13 5t-5 13v107h-125q-8 0-13 5t-5 13z m272 274h178q60 0 96 34t36 91-36 90-96 35h-178v-250z" horiz-adv-x="714.3" />
<glyph glyph-name="won" unicode="&#xe8ea;" d="m0 368v36q0 7 5 12t13 5h98l-19 72h-79q-8 0-13 5t-5 13v35q0 8 5 13t13 5h61l-50 192q-3 9 3 16 5 7 14 7h77q14 0 17-14l50-201h201l54 201q4 14 17 14h70q14 0 18-14l54-201h204l52 201q3 14 17 14h77q9 0 14-7 6-7 3-16l-51-192h62q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-81l-19-72h100q8 0 13-5t5-12v-36q0-8-5-13t-13-5h-119l-91-344q-4-13-18-13h-88q-14 0-18 13l-92 344h-117l-93-344q-4-13-17-13h-89q-6 0-11 4t-6 9l-89 344h-116q-8 0-13 5t-5 13z m208 125l18-72h126l19 72h-163z m35-143l42-167q1-1 1-2t0-2q0 1 1 2t0 2l45 167h-89z m216 71h77l-19 72h-39z m165 72l19-72h128l19 72h-166z m38-143l46-167q0 0 0-2t1-2q0 1 0 2t0 2l44 167h-91z" horiz-adv-x="1000" />
<glyph glyph-name="bitcoin" unicode="&#xe8eb;" d="m31-7l18 102h62q27 0 32 28v225h9q-4 0-9 0v160q-7 38-50 38h-62v92l119-1q35 0 54 1v141h86v-138q45 1 68 1v137h86v-141q44-4 78-13t63-25 46-43 20-64q10-102-73-144 65-16 98-58t25-119q-4-40-18-70t-36-49-54-33-68-19-81-9v-142h-86v140q-45 0-68 1v-141h-86v142q-10 0-30 1t-31 0h-112z m260 101q5 0 21 0t27 0 29 1 33 2 32 5 31 8 26 11 22 17 14 22 5 29q0 20-8 35t-21 26-32 17-36 10-42 6-38 1-36 0-27-1v-189z m0 275q3 0 20 0t26 0 27 1 31 3 29 6 27 10 21 15 15 22 5 28q0 19-7 33t-17 23-27 16-31 9-34 5-33 1-30 0-22-1v-171z" horiz-adv-x="714.3" />
<glyph glyph-name="sort" unicode="&#xe8ec;" d="m0 243q0 14 11 25t25 11h500q14 0 25-11t10-25-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25z m0 214q0 15 11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25t-10-25-25-11h-500q-15 0-25 11t-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-down" unicode="&#xe8ed;" d="m0 243q0 14 11 25t25 11h500q14 0 25-11t10-25-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-up" unicode="&#xe8ee;" d="m0 457q0 15 11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25t-10-25-25-11h-500q-15 0-25 11t-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-alt-up" unicode="&#xe8ef;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m481-78q0 8 5 13t13 5h464q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107z m0 179v107q0 8 5 13t13 5h357q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13z m0 285v107q0 8 5 13t13 5h250q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13z m0 286v107q0 8 5 13t13 5h143q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-alt-down" unicode="&#xe8f0;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m481-78q0 8 5 13t13 5h143q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107z m0 179v107q0 8 5 13t13 5h250q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13z m0 285v107q0 8 5 13t13 5h357q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13z m0 286v107q0 8 5 13t13 5h464q8 0 13-5t5-13v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-name-up" unicode="&#xe8f1;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m483 368v60h39l128 369h90l129-369h39v-60h-161v60h42l-26 80h-136l-26-80h42v-60h-160z m49-521l206 295q7 10 12 16l6 5v1q-1 0-4 0t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-296q-4-4-12-14l-6-7v-1l8 1q5 2 16 2h139v66h67v-130h-326v50z m114 722h98l-40 122-6 26q-2 9-2 11h-2l-2-11q0 0-1-10t-5-16z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-name-down" unicode="&#xe8f2;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m483-144h39l128 370h90l129-370h39v-59h-161v59h42l-26 80h-136l-26-80h42v-59h-160v59z m49 512v51l206 295q7 10 12 15l6 5v2q-1 0-4-1t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-295q-4-5-12-15l-6-6v-1l8 1q5 1 16 1h139v66h67v-130h-326z m114-370h98l-40 122-6 26q-2 9-2 11h-2l-2-11q0-1-1-10t-5-16z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-number-up" unicode="&#xe8f3;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m509 86q0 58 40 99t101 41q69 0 114-53t46-141q0-35-7-68t-23-64-38-53-55-36-71-14q-35 0-60 9-14 4-24 8l22 63q8-4 17-6 21-7 42-7 47 0 75 33t37 81h-1q-11-13-34-21t-47-8q-59 0-97 40t-37 97z m17 608l107 103h68v-365h92v-64h-261v64h93v241q0 4 0 11t1 9v9h-2l-3-7q-5-7-15-17l-35-32z m60-608q0-32 21-53t58-22q28 0 48 15t19 38q0 35-24 65t-58 30q-29 0-46-21t-18-52z" horiz-adv-x="857.1" />
<glyph glyph-name="sort-number-down" unicode="&#xe8f4;" d="m19 53q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13q0-6-6-13l-178-178q-5-5-13-5-6 0-13 5l-178 179q-8 9-4 19z m509 657q0 59 40 99t101 41q69 0 114-53t46-141q0-34-7-67t-23-64-38-53-55-37-71-14q-35 0-60 9-14 5-24 9l22 63q8-4 17-6 21-8 42-8 47 0 75 33t37 81h-1q-11-13-34-20t-47-8q-59 0-97 40t-37 96z m17-535l107 104h68v-365h92v-64h-261v64h93v241q0 4 0 10t1 10v9h-2l-3-7q-5-7-15-17l-35-33z m60 535q0-32 21-53t58-21q28 0 48 15t19 38q0 35-24 64t-58 30q-29 0-46-21t-18-52z" horiz-adv-x="857.1" />
<glyph glyph-name="hammer" unicode="&#xe8f5;" d="m22 404q0 7 3 14t5 12 9 13 9 10 11 11 10 9q17 15 38 15 6 0 10 0t9-4 8-3 8-5 6-6 7-7 7-7q-8 8-8 19t8 19l194 194q8 8 19 8t19-8q-1 1-7 7t-7 7-6 7-5 7-3 8-4 9 0 10q0 21 15 38 2 1 9 10t11 11 10 9 13 9 12 5 14 3q23 0 38-16l228-228q16-15 16-38 0-7-3-14t-5-12-9-13-9-10-11-11-10-9q-17-15-38-15-6 0-10 0t-9 4-8 3-7 5-7 6-7 7-7 7q8-8 8-19t-8-19l-70-70 143-143q24 24 53 24 29 0 51-21l203-202q20-22 20-51 0-30-20-50l-60-61q-22-20-51-20-29 0-50 20l-203 204q-21 20-21 50 0 29 24 53l-143 143-70-70q-8-8-19-8t-19 8q1-1 7-7t7-7 6-7 5-7 4-8 3-9 0-10q0-21-15-38-2-1-9-10t-11-11-10-9-13-9-12-5-14-3q-23 0-38 16l-228 228q-16 15-16 38z" horiz-adv-x="1000" />
<glyph glyph-name="gauge" unicode="&#xe8f6;" d="m0 207q0 102 40 194t106 160 160 107 194 39 194-39 160-107 106-160 40-194q0-145-79-269-10-17-30-17h-782q-20 0-30 17-79 123-79 269z m71 0q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z m108 250q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m217-330q-11-43 11-81t66-50 81 11 50 66q9 33-4 65t-40 51l57 213q3 14-5 27t-21 16-27-3-17-22l-56-213q-33-3-60-25t-35-55z m33 437q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m250-107q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m107-250q0-29 21-50t50-21 51 21 21 50-21 51-51 21-50-21-21-51z" horiz-adv-x="1000" />
<glyph glyph-name="sitemap" unicode="&#xe8f7;" d="m0-25v179q0 22 16 38t38 15h53v107q0 29 21 51t51 21h285v107h-53q-23 0-38 15t-16 38v179q0 22 16 38t38 16h178q23 0 38-16t16-38v-179q0-22-16-38t-38-15h-53v-107h285q29 0 51-21t21-51v-107h53q23 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q23 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q22 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38z" horiz-adv-x="1000" />
<glyph glyph-name="spinner" unicode="&#xe8f8;" d="m0 350q0 37 26 63t63 26 63-26 27-63-27-63-63-26-63 26-26 63z m98 250q0 41 29 69t69 29 70-29 29-69-29-69-70-29-69 29-29 69z m18-500q0 34 24 57t56 23q33 0 57-23t24-57-24-57-57-23q-33 0-56 23t-24 57z m223 607q0 45 32 76t75 31 76-31 32-76-32-76-76-31-75 31-32 76z m36-714q0 29 21 50t50 21 51-21 21-50-21-51-51-21-50 21-21 51z m259 107q0 26 18 44t44 19 45-19 18-44-18-44-45-18-44 18-18 44z m18 500q0 18 13 32t31 13 32-13 13-32-13-32-32-13-31 13-13 32z m98-250q0 22 16 38t38 16 38-16 15-38-15-38-38-16-38 16-16 38z" horiz-adv-x="875" />
<glyph glyph-name="coffee" unicode="&#xe8f9;" d="m0 64h1000q0-59-42-101t-101-42h-714q-59 0-101 42t-42 101z m143 197v410q0 15 11 26t25 10h642q89 0 152-63t63-151-63-152-152-62h-35v-18q0-52-37-88t-88-37h-393q-51 0-88 37t-37 88z m643 125h35q45 0 76 31t32 76-32 76-76 31h-35v-214z" horiz-adv-x="1071.4" />
<glyph glyph-name="food" unicode="&#xe8fa;" d="m0 457v357q0 15 11 25t25 11 25-11 10-25v-232q0-14 11-25t25-11 25 11 11 25v232q0 15 11 25t25 11 25-11 10-25v-232q0-14 11-25t25-11 25 11 11 25v232q0 15 10 25t25 11 26-11 10-25v-357q0-34-20-62t-51-39v-435q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v435q-31 11-51 39t-20 62z m429-232v446q0 74 52 127t126 52h143q15 0 25-11t11-25v-893q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v286h-125q-7 0-12 5t-5 13z" horiz-adv-x="785.7" />
<glyph glyph-name="beer" unicode="&#xe8fb;" d="m36 636l18 71h267l18 72h536l18-108-36-17v-447l72-107v-107h-643v107l71 107h-71q-89 0-152 63t-63 151v179z m178-215q0-29 21-50t51-21h71v214h-143v-143z" horiz-adv-x="928.6" />
<glyph glyph-name="user-md" unicode="&#xe8fc;" d="m0 66q0 38 3 73t14 77 26 74 45 58 67 33q-12-29-12-67v-113q-32-11-52-39t-20-62q0-45 32-76t76-31 75 31 32 76q0 34-20 62t-52 39v113q0 35 14 52 74-58 165-58t164 58q14-17 14-52v-35q-59 0-101-42t-41-101v-50q-18-16-18-40 0-22 15-37t38-16 38 16 16 37q0 24-18 40v50q0 29 21 50t50 21 51-21 21-50v-50q-18-16-18-40 0-22 16-37t38-16 38 16 15 37q0 24-18 40v50q0 38-19 71t-52 52q0 6 0 24t0 27-1 23-4 26-7 22q38-8 67-33t45-58 26-74 14-77 3-73q0-68-41-106t-108-39h-488q-67 0-108 39t-41 106z m143 34q0 15 11 25t25 11 25-11 10-25-10-25-25-11-26 11-10 25z m36 464q0 89 62 152t152 63 151-63 63-152-63-151-151-63-152 63-62 151z" horiz-adv-x="785.7" />
<glyph glyph-name="stethoscope" unicode="&#xe8fd;" d="m0 421v286q0 15 11 25t25 11q3 0 9-1 9 16 26 27t36 10q30 0 51-21t21-51-21-50-51-21q-18 0-36 10v-225q0-59 53-101t126-41 126 41 53 101v225q-18-10-36-10-30 0-51 21t-21 50 21 51 51 21q19 0 36-10t26-27q6 1 9 1 15 0 25-11t11-25v-286q0-80-61-140t-153-72v-73q0-59 52-101t126-42 126 42 53 101v220q-32 12-52 39t-20 62q0 45 32 76t76 31 75-31 32-76q0-34-20-62t-52-39v-220q0-89-73-152t-177-63-176 63-74 152v73q-91 12-153 72t-61 140z m643 36q0-14 10-25t26-11 25 11 10 25-10 25-25 11-26-11-10-25z" horiz-adv-x="785.7" />
<glyph glyph-name="ambulance" unicode="&#xe8fe;" d="m36 100q0 15 10 25t25 11v232q0 14 8 32t18 29l110 110q11 11 29 18t32 7h89v179q0 14 11 25t25 11h643q14 0 25-11t10-25v-643q0-14-10-25t-25-11h-107q0-59-42-101t-101-42-101 42-42 101h-214q0-59-42-101t-101-42-101 42-42 101h-72q-14 0-25 11t-10 25z m107 250h214v143h-88q-8-1-12-5l-109-109q-4-7-5-12v-17z m71-286q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z m286 375q0-8 5-13t13-5h125v-125q0-7 5-12t13-5h107q8 0 13 5t5 12v125h125q8 0 13 5t5 13v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107z m214-375q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z" horiz-adv-x="1071.4" />
<glyph glyph-name="medkit" unicode="&#xe8ff;" d="m0 46v465q0 51 37 88t88 37h18v-715h-18q-51 0-88 37t-37 88z m196-125v715h90v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h90v-715h-608z m90 304q0-8 5-13t13-5h125v-125q0-8 5-13t12-5h108q7 0 12 5t5 13v125h125q8 0 13 5t5 13v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107z m71 411h286v71h-286v-71z m500-715v715h18q51 0 88-37t37-88v-465q0-51-37-88t-88-37h-18z" horiz-adv-x="1000" />
<glyph glyph-name="h-sigh" unicode="&#xe900;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 18q0-14 11-25t25-11h71q15 0 25 11t11 25v179h285v-179q0-14 11-25t25-11h72q14 0 25 11t10 25v500q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-179h-285v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-500z" horiz-adv-x="857.1" />
<glyph glyph-name="hospital" unicode="&#xe901;" d="m0-114v714q0 15 11 25t25 11h178v160q0 23 16 38t38 16h250q22 0 38-16t15-38v-160h179q15 0 25-11t11-25v-714q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25z m71 35h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125h214v643h-143v-18q0-22-15-38t-38-15h-250q-22 0-38 15t-16 38v18h-143v-643z m72 161v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12z m0 143v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13z m0 143v36q0 7 5 12t13 5h35q8 0 13-5t5-12v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13z m143-143v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13z m0 143v36q0 7 5 12t13 5h35q8 0 13-5t5-12v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13z m0 214q0-7 5-12t13-6h35q8 0 13 6t5 12v54h72v-54q0-7 5-12t12-6h36q7 0 13 6t5 12v179q0 7-5 12t-13 6h-36q-7 0-12-6t-5-12v-54h-72v54q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-179z m143-357v36q0 7 5 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13z m0 143v36q0 7 5 12t12 5h36q7 0 13-5t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13z m142-286v36q0 7 6 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12z m0 143v36q0 7 6 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13z m0 143v36q0 7 6 12t12 5h36q7 0 13-5t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13z" horiz-adv-x="785.7" />
<glyph glyph-name="building" unicode="&#xe902;" d="m0-114v928q0 15 11 25t25 11h714q15 0 25-11t11-25v-928q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25z m71 35h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125h214v858h-643v-858z m72 161v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12z m0 143v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13z m0 143v36q0 7 5 12t13 5h35q8 0 13-5t5-12v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13z m0 143v35q0 8 5 13t13 5h35q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13z m0 143v35q0 8 5 13t13 5h35q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13z m143-429v36q0 7 5 12t13 6h35q8 0 13-6t5-12v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13z m0 143v36q0 7 5 12t13 5h35q8 0 13-5t5-12v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13z m0 143v35q0 8 5 13t13 5h35q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13z m0 143v35q0 8 5 13t13 5h35q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13z m143-429v36q0 7 5 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13z m0 143v36q0 7 5 12t12 5h36q7 0 13-5t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13z m0 143v35q0 8 5 13t12 5h36q7 0 13-5t5-13v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13z m0 143v35q0 8 5 13t12 5h36q7 0 13-5t5-13v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13z m142-572v36q0 7 6 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12z m0 143v36q0 7 6 12t12 6h36q7 0 13-6t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13z m0 143v36q0 7 6 12t12 5h36q7 0 13-5t5-12v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13z m0 143v35q0 8 6 13t12 5h36q7 0 13-5t5-13v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13z m0 143v35q0 8 6 13t12 5h36q7 0 13-5t5-13v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13z" horiz-adv-x="785.7" />
<glyph glyph-name="smile" unicode="&#xe903;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m71 0q0-73 29-139t76-113 114-77 139-28 138 28 114 77 76 113 29 139-29 139-76 114-114 76-138 28-139-28-114-76-76-114-29-139z m143 143q0 29 21 50t51 21 50-21 21-50-21-51-50-21-51 21-21 51z m10-243q-4 14 3 27t21 18q14 4 27-2t17-22q14-44 52-72t85-28 84 28 52 72q4 15 18 22t27 2 21-18 2-27q-21-67-77-109t-127-41-128 41-77 109z m276 243q0 29 21 50t50 21 51-21 21-50-21-51-51-21-50 21-21 51z" horiz-adv-x="857.1" />
<glyph glyph-name="frown" unicode="&#xe904;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m71 0q0-73 29-139t76-113 114-77 139-28 138 28 114 77 76 113 29 139-29 139-76 114-114 76-138 28-139-28-114-76-76-114-29-139z m143 143q0 29 21 50t51 21 50-21 21-50-21-51-50-21-51 21-21 51z m10-329q21 68 77 109t128 41 127-41 77-109q4-14-2-27t-21-17-27 2-18 21q-14 45-52 72t-84 28-85-28-52-72q-4-15-17-21t-27-2q-15 4-21 17t-3 27z m276 329q0 29 21 50t50 21 51-21 21-50-21-51-51-21-50 21-21 51z" horiz-adv-x="857.1" />
<glyph glyph-name="meh" unicode="&#xe905;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m71 0q0-73 29-139t76-113 114-77 139-28 138 28 114 77 76 113 29 139-29 139-76 114-114 76-138 28-139-28-114-76-76-114-29-139z m143-107q0 14 11 25t25 11h357q15 0 25-11t11-25-11-25-25-11h-357q-14 0-25 11t-11 25z m0 250q0 29 21 50t51 21 50-21 21-50-21-51-50-21-51 21-21 51z m286 0q0 29 21 50t50 21 51-21 21-50-21-51-51-21-50 21-21 51z" horiz-adv-x="857.1" />
<glyph glyph-name="anchor" unicode="&#xe906;" d="m0-7v196q0 8 5 13t13 5h196q13 0 17-11 5-11-4-20l-56-55q38-51 106-86t152-46v361h-108q-14 0-25 11t-10 25v71q0 15 10 25t25 11h108v91q-33 19-52 51t-20 72q0 59 42 101t101 42 101-42 42-101q0-39-20-72t-52-51v-91h108q14 0 25-11t10-25v-71q0-15-10-25t-25-11h-108v-361q84 11 152 46t106 86l-56 55q-8 9-4 20 4 11 17 11h196q8 0 13-5t5-13v-196q0-12-11-17-5-1-7-1-7 0-13 5l-52 52q-66-80-177-127t-240-46-240 46-177 127l-52-52q-5-5-13-5-2 0-7 1-11 5-11 17z m464 714q0-14 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z" horiz-adv-x="1000" />
<glyph glyph-name="terminal" unicode="&#xe907;" d="m7 82q0 7 6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13t-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13z m350-71v35q0 8 5 13t13 5h536q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-536q-8 0-13 5t-5 13z" horiz-adv-x="928.6" />
<glyph glyph-name="eraser" unicode="&#xe908;" d="m1 75q3 21 17 36l500 572q21 24 53 24h429q21 0 39-11t26-31q9-19 6-40t-17-36l-500-572q-22-24-54-24h-429q-21 0-38 11t-27 31q-8 19-5 40z m70-11h429l188 215h-429z" horiz-adv-x="1071.4" />
<glyph glyph-name="puzzle" unicode="&#xe909;" d="m0-7v571q1 0 10-2t19-2 12-2q83-14 136-14 45 0 66 20 25 24 25 49 0 13-8 29t-19 29-18 36-9 46q0 46 33 72t81 25q44 0 74-25t30-69q0-23-9-43t-21-33-22-31-9-40q0-32 23-47t57-14q36 0 101 8t91 9v-1q-1-1-2-9t-3-19-2-12q-13-84-13-137 0-45 19-65 25-26 50-26 12 0 28 8t30 19 36 19 46 8q46 0 71-33t26-80q0-45-25-75t-69-30q-23 0-43 10t-33 21-32 21-39 10q-62 0-62-69 0-22 9-65t8-64v-3q-12 0-18 0-19-2-54-7t-65-7-55-3q-34 0-57 15t-23 47q0 20 9 39t22 32 21 33 9 43q0 44-30 69t-75 25q-47 0-80-26t-33-71q0-24 9-46t18-36 19-30 8-28q0-25-25-50-21-19-66-19-53 0-136 13-5 1-16 2t-15 3l-7 1q-1 0-2 0-1 0-1 1z" horiz-adv-x="928.6" />
<glyph glyph-name="shield" unicode="&#xe90a;" d="m0 314v429q0 14 11 25t25 11h643q14 0 25-11t10-25v-429q0-48-18-95t-47-84-66-71-70-57-68-43-50-28-23-11q-7-4-15-4t-14 4q-9 4-24 11t-50 28-68 43-70 57-66 71-46 84-19 95z m357-277q67 35 119 76 131 103 131 201v357h-250v-634z" horiz-adv-x="714.3" />
<glyph glyph-name="extinguisher" unicode="&#xe90b;" d="m2 517q-5 14 2 28 3 5 8 14t21 30 34 39 47 38 61 29q-14 23-14 48 0 37 26 63t63 26 63-26 26-63q0-19-7-36h168q0 6 4 11t10 6l250 54q2 1 4 1 7 0 11-4 7-5 7-14v-179q0-9-7-14-4-4-11-4-2 0-4 1l-250 53q-6 2-10 7t-4 11h-143v-57q62-13 103-62t40-113v-447q0-14-11-25t-25-11h-285q-15 0-26 11t-10 25v447q0 59 35 106t90 64v62h-18q-33 0-64-13t-51-30-37-37-23-30-7-14q-10-19-32-19-9 0-16 4-13 6-18 20z m212 226q0-15 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="bullseye" unicode="&#xe90c;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m71 0q0-73 29-139t76-113 114-77 139-28 138 28 114 77 76 113 29 139-29 139-76 114-114 76-138 28-139-28-114-76-76-114-29-139z m72 0q0 118 84 202t202 84 202-84 83-202-83-202-202-84-202 84-84 202z m71 0q0-89 63-151t152-63 151 63 63 151-63 152-151 62-152-62-63-152z m72 0q0 59 42 101t101 42 101-42 41-101-41-101-101-42-101 42-42 101z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full" unicode="&#xe90d;" d="m784 111l127 128 0-336-335 0 128 130-128 127 79 79z m-431 686l-129-127 128-127-80-80-126 128-128-129 0 335 335 0z m0-637l-129-127 129-130-335 0 0 336 128-128 128 128z m558 637l0-335-127 129-128-128-79 80 127 127-128 127 335 0z" horiz-adv-x="928" />
<glyph glyph-name="laptop" unicode="&#xe90e;" d="m0 46v54h1071v-54q0-22-26-37t-63-16h-893q-36 0-63 16t-26 37z m143 179v393q0 37 26 63t63 26h607q37 0 63-26t27-63v-393q0-37-27-63t-63-26h-607q-37 0-63 26t-26 63z m71 0q0-7 6-13t12-5h607q8 0 13 5t5 13v393q0 7-5 12t-13 6h-607q-7 0-12-6t-6-12v-393z m268-170q0-9 9-9h89q9 0 9 9t-9 9h-89q-9 0-9-9z" horiz-adv-x="1071.4" />
<glyph glyph-name="chart-bar" unicode="&#xe90f;" d="m688-97l0 894 223 0 0-894-223 0z m-335 0l0 671 223 0 0-671-223 0z m-335 0l0 448 223 0 0-448-223 0z" horiz-adv-x="928" />
<glyph glyph-name="download-cloud" unicode="&#xe910;" d="m0 274q2 54 23 103t63 87 95 61q64 28 154 15 39 79 113 127t164 49q83 0 152-41t109-111 40-148v-29h7q80 32 159-4t112-113q31-81-4-159t-113-113l-17-4t-16-4-13-3-15-2-13-1h-724q-84 0-154 49t-102 134q-23 52-20 107z m448 103q-6-9 4-20l131-219q8-8 15-8 3 0 7 2t6 4l1 2 140 219q6 12 0 21t-22 9h-52v102h-153v-102h-59q-12 0-18-10z" horiz-adv-x="1205.6" />
<glyph glyph-name="upload-cloud" unicode="&#xe911;" d="m0 251q-2 45 10 86t34 78 58 65 77 44q77 30 156 13 36 81 111 130t166 49q62 0 118-24t97-65 65-97 25-119q0-9-2-27 1 0 3 1t3 2q80 31 159-4t110-116q20-55 12-108t-43-96-88-65q-35-13-73-14h-298v168h68q19 0 25 11t-4 26l-171 275q-6 10-16 10-4 0-8-3t-6-5l-2-2-171-275q-10-15-3-26t25-11h67v-168h-224v1q-86 0-158 48t-103 131q-17 42-19 87z" horiz-adv-x="1205.1" />
<glyph glyph-name="share" unicode="&#xe912;" d="m0 90v490q0 70 50 119t119 50h129q29 0 48-20t20-46q0-29-20-48t-48-20h-129q-15 0-25-10t-10-25v-490q0-14 10-25t25-10h588q15 0 25 10t10 25v60q0 27 20 47t46 20q28 0 48-20t19-47v-60q0-70-49-119t-119-50h-588q-70 0-119 50t-50 119z m244 90q45 81 121 132t167 59q42 3 74-2v-103q0-22 11-30t27 4l283 207q10 8 10 19 0 6-2 11t-6 7l-2 2-283 207q-15 12-27 4t-11-30v-84q-7 0-20-1-73-7-137-41t-109-89-72-124-24-148z" horiz-adv-x="937.5" />
<glyph glyph-name="link" unicode="&#xe913;" d="m8 96q-17 66 0 132t67 115l131 131q49 49 115 67t131 0 116-67q20-20 20-49t-20-50-50-20-49 20q-35 34-82 34t-81-34l-132-131q-33-34-33-82t33-82q34-33 82-33t81 33l27 28q78-38 164-36l-91-91q-49-49-115-66t-132 0-115 66-67 115z m291 180q0 29 21 49 20 21 49 21t50-21q33-34 81-34t82 34l131 132q34 34 34 81t-34 81q-33 34-81 34t-82-34l-27-26q-77 36-164 35l91 91q50 49 116 66t131 0 115-66q49-49 67-115t0-132-67-115l-131-131q-49-49-115-67t-132 0-114 67q-21 21-21 50z" horiz-adv-x="887.2" />
<glyph glyph-name="help-circled" unicode="&#xe939;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m233 167q-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45q0 49-31 91t-77 65-95 23q-136 0-207-119z m124-435q0-8 5-13t13-5h107q8 0 13 5t5 13v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107z" horiz-adv-x="857.1" />
<glyph glyph-name="info-circled" unicode="&#xe93a;" d="m0 350q0 117 58 215t155 156 216 58 215-58 156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215z m286-268q0-8 5-13t13-5h250q7 0 12 5t5 13v89q0 8-5 13t-12 5h-54v286q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h53v-179h-53q-8 0-13-5t-5-13v-89z m71 500q0-8 5-13t13-5h107q8 0 13 5t5 13v89q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-89z" horiz-adv-x="857.1" />
<glyph glyph-name="info" unicode="&#xe93b;" d="m0 29v71q0 15 11 25t25 11h35v214h-35q-15 0-25 11t-11 25v71q0 15 11 25t25 11h214q15 0 25-11t11-25v-321h35q15 0 26-11t10-25v-71q0-15-10-26t-26-10h-285q-15 0-25 10t-11 26z m71 607v107q0 14 11 25t25 11h143q15 0 25-11t11-25v-107q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25z" horiz-adv-x="357.1" />
<glyph glyph-name="home" unicode="&#xe93c;" d="m15 348q0 8 6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13l-34-41q-5-5-12-7h-2q-7 0-12 4l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13z m128-319v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26z" horiz-adv-x="928.6" />
<glyph glyph-name="flag-empty" unicode="&#xe93d;" d="m36 707q0 30 21 51t50 21 51-21 21-51q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36z m143-536v414q0 20 17 31 19 12 44 24t63 29 85 28 87 10q62 0 117-17t116-48q21-11 50-11 68 0 173 63 12 6 17 9 17 9 35-1 17-11 17-31v-425q0-22-20-32-5-3-9-5-122-65-206-65-49 0-88 20l-16 7q-35 19-55 27t-51 16-63 8q-57 0-132-24t-127-57q-9-5-19-5-9 0-18 4-17 11-17 31z m71 60q137 63 242 63 30 0 57-5t55-14 43-17 46-22l16-8q24-12 56-12 67 0 164 51v344q-95-51-171-51-46 0-81 18-56 27-103 42t-99 16q-97 0-225-71v-334z" horiz-adv-x="1000" />
<glyph glyph-name="flag-checkered" unicode="&#xe93e;" d="m36 707q0 30 21 51t50 21 51-21 21-51q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36z m143-536v414q0 20 17 31 19 12 44 24t63 29 85 28 87 10q62 0 117-17t116-48q21-11 50-11 68 0 173 63 12 6 17 9 17 9 35-1 17-11 17-31v-425q0-22-20-32-5-3-9-5-122-65-206-65-49 0-88 20l-16 7q-35 19-55 27t-51 16-63 8q-57 0-132-24t-127-57q-9-5-19-5-9 0-18 4-17 11-17 31z m71 60q114 53 214 61v107q-101-9-214-65v-103z m0 228q120 62 214 66v110q-96-4-214-70v-106z m214-59h11q57 0 107-16t111-46q10-5 21-8v-105q24-9 51-9 67 0 164 51v103q-132-65-215-40v125q-11 3-21 8-3 2-19 10t-19 9-18 9-19 8-18 8-20 7-20 4-22 4-22 3-24 1q-13 0-28-2v-124z m250 55q83-24 215 50v106q-95-51-171-51-25 0-44 4v-109z" horiz-adv-x="1000" />
<glyph glyph-name="thumbs-up" unicode="&#xe93f;" d="m0 64v357q0 30 21 51t50 21h153q20 13 77 86 32 42 60 72 13 14 19 47t17 71 35 60q22 21 50 21 47 0 84-18t57-57 20-104q0-51-27-107h98q58 0 101-42t42-100q0-50-27-91 5-18 5-39 0-43-21-80 1-12 1-24 0-56-33-99 0-78-48-123t-126-45h-72q-54 0-106 13t-121 36q-65 23-77 23h-161q-29 0-50 21t-21 50z m71 36q0-14 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z m143-36h18q7 0 18-1t18-4 21-6 20-7 20-7 16-5q118-41 191-41h67q107 0 107 93 0 15-2 31 16 9 26 30t10 41-10 38q29 28 29 67 0 13-5 31t-14 26q18 1 30 26t12 45q0 29-22 50t-50 22h-196q0 32 27 89t26 89q0 55-17 81t-72 27q-14-15-21-48t-17-70-33-61q-13-13-43-51-2-3-13-17t-18-22-19-24-22-25-22-19-22-16-20-5h-18v-357z" horiz-adv-x="857.1" />
<glyph glyph-name="thumbs-down" unicode="&#xe940;" d="m0 279v357q0 29 21 50t50 21h161q12 0 77 22 72 25 125 37t111 13h63q78 0 126-45t48-120v-3q33-43 33-99 0-13-1-24 21-38 21-81 0-20-5-38 27-41 27-91 0-58-42-100t-101-42h-98q27-56 27-107 0-66-20-104-19-39-57-57t-84-18q-28 0-50 21-19 18-30 45t-14 51-10 47-17 36q-27 28-60 71-57 73-77 86h-153q-29 0-50 21t-21 50z m71 321q0-15 11-25t25-11 25 11 11 25-11 25-25 11-25-11-11-25z m143-321h18q9 0 20-5t22-15 22-20 22-25 19-24 18-22 13-17q30-38 43-51 23-24 33-61t17-70 21-48q54 0 72 27t17 81q0 33-26 89t-27 89h196q28 0 50 22t22 50q0 19-12 45t-30 26q8 10 14 27t5 30q0 39-29 67 10 18 10 38t-10 41-26 30q2 16 2 31 0 47-27 70t-76 23h-71q-73 0-191-41-3-1-16-6t-20-7-20-6-21-6-18-4-18-1h-18v-358z" horiz-adv-x="857.1" />
<glyph glyph-name="edit" unicode="&#xe941;" d="m0 154v464q0 66 47 113t114 48h464q35 0 65-14 9-4 10-13 2-10-5-16l-27-28q-8-8-18-4-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v70q0 7 5 12l36 36q8 8 20 4t11-16v-106q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114z m357-18v160l375 375 161-160-375-375h-161z m54 107h53v-54h32l64 65-85 85-64-65v-31z m116 134q9-9 18 0l196 196q9 9 0 18t-18 0l-196-196q-9-9 0-18z m241 330l51 51q16 16 38 16t38-16l85-84q16-16 16-38t-16-38l-51-52z" horiz-adv-x="1000" />
<glyph glyph-name="print" unicode="&#xe942;" d="m0 82v232q0 44 32 76t75 31h36v304q0 22 16 38t37 16h375q23 0 50-12t42-26l85-85q15-16 27-43t11-49v-143h35q45 0 76-31t32-76v-232q0-7-6-12t-12-6h-125v-89q0-22-16-38t-38-16h-536q-22 0-37 16t-16 38v89h-125q-7 0-13 6t-5 12z m214-89h500v143h-500v-143z m0 357h500v214h-89q-22 0-38 16t-16 38v89h-357v-357z m572-36q0-14 10-25t25-10 26 10 10 25-10 25-26 11-25-11-10-25z" horiz-adv-x="928.6" />
<glyph glyph-name="retweet" unicode="&#xe943;" d="m0 386q0 13 8 23l179 214q11 12 27 12t28-12l178-214q9-10 9-23 0-15-11-25t-25-11h-107v-214h321q9 0 14-6l89-108q4-6 4-11 0-8-5-13t-13-5h-535q-5 0-8 1t-5 4-3 4-2 7 0 6v335h-107q-15 0-25 11t-11 25z m357 232q0 7 5 12t13 6h536q4 0 7-1t5-4 3-5 2-6 1-7v-334h107q14 0 25-11t10-25q0-14-8-23l-179-214q-11-13-27-13t-27 13l-179 214q-8 9-8 23 0 14 10 25t26 11h107v214h-322q-9 0-14 7l-89 107q-4 5-4 11z" horiz-adv-x="1071.4" />
<glyph glyph-name="keyboard" unicode="&#xe944;" d="m0 64v500q0 30 21 51t50 21h929q30 0 50-21t21-51v-500q0-29-21-50t-50-21h-929q-29 0-50 21t-21 50z m71 0h929v500h-929v-500z m72 81v53q0 9 9 9h53q9 0 9-9v-53q0-9-9-9h-53q-9 0-9 9z m0 143v53q0 9 9 9h125q9 0 9-9v-53q0-9-9-9h-125q-9 0-9 9z m0 142v54q0 9 9 9h53q9 0 9-9v-54q0-9-9-9h-53q-9 0-9 9z m143-285v53q0 9 9 9h482q9 0 9-9v-53q0-9-9-9h-482q-9 0-9 9z m0 285v54q0 9 9 9h53q9 0 9-9v-54q0-9-9-9h-53q-9 0-9 9z m71-142v53q0 9 9 9h54q9 0 9-9v-53q0-9-9-9h-54q-9 0-9 9z m72 142v54q0 9 9 9h53q9 0 9-9v-54q0-9-9-9h-53q-9 0-9 9z m71-142v53q0 9 9 9h54q8 0 8-9v-53q0-9-8-9h-54q-9 0-9 9z m71 142v54q0 9 9 9h54q9 0 9-9v-54q0-9-9-9h-54q-9 0-9 9z m72-142v53q0 9 9 9h53q9 0 9-9v-53q0-9-9-9h-53q-9 0-9 9z m71 142v54q0 9 9 9h54q9 0 9-9v-54q0-9-9-9h-54q-9 0-9 9z m72-142v53q0 9 9 9h62v134q0 9 9 9h54q9 0 9-9v-196q0-9-9-9h-125q-9 0-9 9z m71-143v53q0 9 9 9h54q9 0 9-9v-53q0-9-9-9h-54q-9 0-9 9z" horiz-adv-x="1071.4" />
<glyph glyph-name="doc-text" unicode="&#xe945;" d="m0-96v892q0 23 16 38t38 16h500q22 0 49-11t42-27l174-174q16-16 27-42t11-50v-642q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38z m71 17h715v572h-232q-23 0-38 15t-16 38v233h-429v-858z m143 161v36q0 8 5 13t13 5h393q8 0 13-5t5-13v-36q0-8-5-13t-13-5h-393q-8 0-13 5t-5 13z m0 143v36q0 8 5 13t13 5h393q8 0 13-5t5-13v-36q0-8-5-13t-13-5h-393q-8 0-13 5t-5 13z m0 143v36q0 7 5 12t13 5h393q8 0 13-5t5-12v-36q0-8-5-13t-13-5h-393q-8 0-13 5t-5 13z m357 196h210q-5 16-12 23l-175 175q-6 7-23 12v-210z" horiz-adv-x="857.1" />
<glyph glyph-name="file" unicode="&#xe946;" d="m0-96v892q0 23 16 38t38 16h446v-304q0-22 16-38t38-15h303v-589q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38z m571 660v264q13-8 21-16l227-228q8-7 16-20h-264z" horiz-adv-x="857.1" />
<glyph glyph-name="doc-text-inv" unicode="&#xe947;" d="m0-96v892q0 23 16 38t38 16h446v-304q0-22 16-38t38-15h303v-589q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38z m214 178q0-8 5-13t13-5h393q8 0 13 5t5 13v36q0 8-5 13t-13 5h-393q-8 0-13-5t-5-13v-36z m0 143q0-8 5-13t13-5h393q8 0 13 5t5 13v36q0 8-5 13t-13 5h-393q-8 0-13-5t-5-13v-36z m0 143q0-8 5-13t13-5h393q8 0 13 5t5 13v36q0 7-5 12t-13 5h-393q-8 0-13-5t-5-12v-36z m357 196v264q13-8 21-16l227-228q8-7 16-20h-264z" horiz-adv-x="857.1" />
<glyph glyph-name="logout" unicode="&#xe949;" d="m0 154v392q0 67 47 114t114 47h178q8 0 13-5t5-13q0-2 1-11t0-15-2-13-5-11-12-3h-178q-37 0-63-27t-27-63v-392q0-37 27-63t63-27h174t6 0 7-2 4-3 4-5 1-8q0-2 1-11t0-14-2-14-5-11-12-3h-178q-67 0-114 47t-47 114z m214 89v214q0 15 11 25t25 11h250v161q0 14 11 25t25 10 25-10l303-304q11-10 11-25t-11-25l-303-304q-11-10-25-10t-25 10-11 25v161h-250q-14 0-25 11t-11 25z" horiz-adv-x="928.6" />
<glyph glyph-name="mic" unicode="&#xe94a;" d="m0 386v71q0 15 11 25t25 11 25-11 10-25v-71q0-103 74-177t176-73 177 73 73 177v71q0 15 11 25t25 11 25-11 11-25v-71q0-124-82-215t-204-104v-74h143q15 0 25-11t11-25-11-25-25-11h-357q-15 0-25 11t-11 25 11 25 25 11h143v74q-121 13-204 104t-82 215z m143 0v285q0 74 52 127t126 52 127-52 52-127v-285q0-74-52-126t-127-53-126 53-52 126z" horiz-adv-x="642.9" />
<glyph glyph-name="mute" unicode="&#xe94b;" d="m7 29q0 7 6 12l688 689q6 6 13 6t13-6l46-46q5-5 5-13t-5-12l-202-202v-71q0-74-52-126t-126-53q-31 0-61 11l-54-54q55-28 115-28 103 0 176 73t74 177v71q0 15 10 25t26 11 25-11 10-25v-71q0-124-82-215t-203-104v-74h142q15 0 26-11t10-25-10-25-26-11h-357q-14 0-25 11t-10 25 10 25 25 11h143v74q-70 7-131 45l-142-142q-5-6-13-6t-12 6l-46 46q-6 5-6 13z m64 357v71q0 15 11 25t25 11 25-11 11-25v-71q0-30 8-63l-56-57q-24 58-24 120z m143 0v285q0 74 53 127t126 52q57 0 103-33t65-85z" horiz-adv-x="785.7" />
<glyph glyph-name="volume-off" unicode="&#xe94c;" d="m0 243v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10 11-25v-608q0-14-11-25t-25-10-25 10l-186 186h-146q-15 0-25 11t-11 25z" horiz-adv-x="428.6" />
<glyph glyph-name="down-dir" unicode="&#xe94d;" d="m0 457q0 15 11 25t25 11h500q14 0 25-11t10-25-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="up-dir" unicode="&#xe94e;" d="m0 171q0 15 11 26l250 250q10 10 25 10t25-10l250-250q10-11 10-26t-10-25-25-10h-500q-15 0-25 10t-11 25z" horiz-adv-x="571.4" />
<glyph glyph-name="left-dir" unicode="&#xe94f;" d="m36 350q0 15 10 25l250 250q11 11 25 11t26-11 10-25v-500q0-14-10-25t-26-11-25 11l-250 250q-10 11-10 25z" horiz-adv-x="357.1" />
<glyph glyph-name="right-dir" unicode="&#xe950;" d="m0 100v500q0 15 11 25t25 11 25-11l250-250q10-10 10-25t-10-25l-250-250q-11-11-25-11t-25 11-11 25z" horiz-adv-x="357.1" />
<glyph glyph-name="down" unicode="&#xe951;" d="m2 125q5 11 16 11h125v696q0 8 5 13t13 5h107q8 0 13-5t5-13v-696h125q11 0 16-11t-3-19l-195-215q-6-5-13-5-8 0-13 5l-198 215q-8 9-3 19z" horiz-adv-x="428.6" />
<glyph glyph-name="left" unicode="&#xe952;" d="m0 296v108q0 7 5 12t13 5h696v125q0 12 11 17t19-3l215-196q5-5 5-12 0-8-5-14l-215-197q-9-8-19-4-11 5-11 17v124h-696q-8 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="right" unicode="&#xe953;" d="m36 348q0 8 5 14l215 197q9 8 19 4 11-5 11-17v-125h696q8 0 13-5t5-12v-108q0-7-5-12t-13-5h-696v-125q0-12-11-17t-19 3l-215 196q-5 5-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="up" unicode="&#xe954;" d="m2 575q-5 10 3 19l195 215q5 5 13 5 7 0 13-5l198-215q7-9 3-19-5-11-16-11h-125v-696q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v696h-125q-12 0-16 11z" horiz-adv-x="428.6" />
<glyph glyph-name="level-down" unicode="&#xe955;" d="m2 697q5 10 16 10h393q7 0 12-5t6-13v-482h107q22 0 32-20t-5-39l-178-214q-11-13-28-13t-27 13l-179 214q-14 17-5 39 10 20 33 20h107v357h-179q-8 0-14 6l-89 108q-7 7-2 19z" horiz-adv-x="571.4" />
<glyph glyph-name="shuffle" unicode="&#xe956;" d="m0 82v107q0 8 5 13t13 5h125q27 0 48 9t39 25 28 34 26 43q17 35 43 96 16 36 28 62t30 58 36 56 41 46 50 38 59 24 72 9h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13t-5-13l-179-179q-5-5-12-5-8 0-13 6t-5 12v107h-143q-27 0-49-8t-38-25-29-35-25-43q-18-34-43-95-16-37-28-62t-30-59-36-55-41-47-50-38-60-23-71-10h-125q-8 0-13 5t-5 13z m0 500v107q0 8 5 13t13 5h125q139 0 229-125-34-52-77-153-12 25-20 41t-23 35-28 32-36 19-45 8h-125q-8 0-13 5t-5 13z m415-392q33 52 76 152 12-25 20-40t23-36 28-31 35-20 46-8h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13t-5-13l-179-179q-5-5-12-5-8 0-13 6t-5 12v107q-18 0-48 0t-45-1-41 1-39 3-36 6-35 10-32 16-33 22-31 30-31 39z" horiz-adv-x="1000" />
<glyph glyph-name="exchange" unicode="&#xe957;" d="m0 136q0 8 5 13l179 178q5 5 12 5 8 0 13-5t5-13v-107h768q7 0 13-5t5-13v-107q0-7-5-12t-13-6h-768v-107q0-7-5-12t-13-6q-6 0-13 6l-178 178q-5 5-5 13z m0 303v107q0 8 5 13t13 5h768v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13t-5-13l-179-179q-5-5-12-5-8 0-13 6t-5 12v107h-768q-7 0-13 6t-5 12z" horiz-adv-x="1000" />
<glyph glyph-name="collapse" unicode="&#xe958;" d="m0 82v536q0 66 47 113t114 48h535q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113z m143 0q0-7 5-12t13-6h535q8 0 13 6t5 12v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536z m75 391q10 20 32 20h357q22 0 32-20 10-19-3-36l-178-250q-11-16-29-16t-29 16l-179 250q-13 17-3 36z" horiz-adv-x="857.1" />
<glyph glyph-name="award" unicode="&#xe959;" d="m0 511v71q0 22 16 38t38 16h160v53q0 37 27 63t63 27h321q37 0 63-27t26-63v-53h161q22 0 38-16t16-38v-71q0-40-24-80t-62-73-97-54-120-25q-23-30-53-53-21-19-29-40t-8-50q0-30 17-51t54-21q42 0 75-25t32-64v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 39 33 64t74 25q38 0 55 21t17 51q0 28-8 50t-30 40q-29 23-53 53-63 3-120 25t-96 54-63 73-23 80z m71 0q0-44 53-91t132-63q-42 91-42 207h-143v-53z m602-154q79 16 131 63t53 91v53h-143q0-116-41-207z" horiz-adv-x="928.6" />
<glyph glyph-name="desktop" unicode="&#xe95a;" d="m0 154v607q0 37 26 63t63 26h893q37 0 63-26t26-63v-607q0-37-26-63t-63-27h-303q0-20 9-43t17-40 9-24q0-14-10-25t-25-11h-286q-15 0-25 11t-11 25q0 8 9 25t18 39 9 43h-304q-36 0-63 27t-26 63z m71 142q0-7 6-12t12-5h893q7 0 13 5t5 12v465q0 7-5 12t-13 6h-893q-7 0-12-6t-6-12v-465z" horiz-adv-x="1071.4" />
<glyph glyph-name="tablet" unicode="&#xe95c;" d="m0 82v607q0 37 26 63t63 27h465q36 0 63-27t26-63v-607q0-37-26-63t-63-26h-465q-36 0-63 26t-26 63z m71 72q0-8 6-13t12-5h465q7 0 12 5t5 13v535q0 8-5 13t-12 5h-465q-7 0-12-5t-6-13v-535z m215-90q0-14 10-25t25-10 26 10 10 25-10 25-26 11-25-11-10-25z" horiz-adv-x="642.9" />
<glyph glyph-name="align-left" unicode="&#xe95d;" d="m0 29v71q0 15 11 25t25 11h928q15 0 25-11t11-25v-71q0-15-11-26t-25-10h-928q-15 0-25 10t-11 26z m0 214v71q0 15 11 25t25 11h714q15 0 25-11t11-25v-71q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25z m0 214v72q0 14 11 25t25 10h857q14 0 25-10t11-25v-72q0-14-11-25t-25-11h-857q-15 0-25 11t-11 25z m0 214v72q0 14 11 25t25 11h643q14 0 25-11t10-25v-72q0-14-10-25t-25-10h-643q-15 0-25 10t-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="align-center" unicode="&#xe95e;" d="m0 29v71q0 15 11 25t25 11h928q15 0 25-11t11-25v-71q0-15-11-26t-25-10h-928q-15 0-25 10t-11 26z m71 428v72q0 14 11 25t25 10h786q14 0 25-10t11-25v-72q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25z m143-214v71q0 15 11 25t25 11h500q15 0 25-11t11-25v-71q0-15-11-25t-25-11h-500q-14 0-25 11t-11 25z m72 428v72q0 14 10 25t25 11h358q14 0 25-11t10-25v-72q0-14-10-25t-25-10h-358q-14 0-25 10t-10 25z" horiz-adv-x="1000" />
<glyph glyph-name="align-right" unicode="&#xe95f;" d="m0 29v71q0 15 11 25t25 11h928q15 0 25-11t11-25v-71q0-15-11-26t-25-10h-928q-15 0-25 10t-11 26z m71 428v72q0 14 11 25t25 10h857q15 0 25-10t11-25v-72q0-14-11-25t-25-11h-857q-14 0-25 11t-11 25z m143-214v71q0 15 11 25t25 11h714q15 0 25-11t11-25v-71q0-15-11-25t-25-11h-714q-14 0-25 11t-11 25z m72 428v72q0 14 10 25t25 11h643q15 0 25-11t11-25v-72q0-14-11-25t-25-10h-643q-14 0-25 10t-10 25z" horiz-adv-x="1000" />
<glyph glyph-name="align-justify" unicode="&#xe960;" d="m0 29v71q0 15 11 25t25 11h928q15 0 25-11t11-25v-71q0-15-11-26t-25-10h-928q-15 0-25 10t-11 26z m0 214v71q0 15 11 25t25 11h928q15 0 25-11t11-25v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25z m0 214v72q0 14 11 25t25 10h928q15 0 25-10t11-25v-72q0-14-11-25t-25-11h-928q-15 0-25 11t-11 25z m0 214v72q0 14 11 25t25 11h928q15 0 25-11t11-25v-72q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25z" horiz-adv-x="1000" />
<glyph glyph-name="ellipsis" unicode="&#xe961;" d="m0 332v107q0 23 16 38t38 16h107q22 0 38-16t15-38v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38z m286 0v107q0 23 15 38t38 16h107q23 0 38-16t16-38v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-15 38z m285 0v107q0 23 16 38t38 16h107q22 0 38-16t16-38v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-16 38z" horiz-adv-x="785.7" />
<glyph glyph-name="ellipsis-vert" unicode="&#xe962;" d="m0 46v108q0 22 16 38t38 15h107q22 0 38-15t15-38v-108q0-22-15-37t-38-16h-107q-23 0-38 16t-16 37z m0 286v107q0 23 16 38t38 16h107q22 0 38-16t15-38v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38z m0 286v107q0 22 16 38t38 16h107q22 0 38-16t15-38v-107q0-22-15-38t-38-16h-107q-23 0-38 16t-16 38z" horiz-adv-x="214.3" />
<glyph glyph-name="off" unicode="&#xe963;" d="m0 350q0 102 45 191t126 151q24 18 54 14t46-28q18-23 14-53t-28-47q-54-41-84-101t-30-127q0-58 22-111t62-91 91-61 111-23 110 23 92 61 61 91 22 111q0 68-30 127t-84 101q-24 18-28 47t14 53q17 24 47 28t53-14q81-61 126-151t45-191q0-87-34-166t-91-137-137-92-166-34-167 34-136 92-92 137-34 166z m357 71v358q0 29 21 50t51 21 50-21 21-50v-358q0-29-21-50t-50-21-51 21-21 50z" horiz-adv-x="857.1" />
<glyph glyph-name="road" unicode="&#xe964;" d="m28 34q0 30 14 64l233 583q5 11 15 18t21 8h189q-7 0-13-5t-6-13l-8-107q-1-8 4-13t12-5h93q7 0 12 5t5 13l-9 107q0 7-6 13t-13 5h190q11 0 21-8t14-18l233-583q15-34 15-64 0-41-26-41h-393q7 0 12 5t5 13l-11 143q-1 7-7 12t-12 5h-152q-7 0-13-5t-6-12l-11-143q-1-8 4-13t12-5h-392q-26 0-26 41z m423 260q0-6 5-11t12-4h136q7 0 12 4t4 11v2l-13 179q-1 7-7 13t-12 5h-104q-7 0-13-5t-6-13l-14-179v-2z" horiz-adv-x="1071.4" />
<glyph glyph-name="credit-card" unicode="&#xe965;" d="m0 11v678q0 37 26 63t63 27h893q37 0 63-27t26-63v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63z m71 0q0-8 6-13t12-5h893q7 0 13 5t5 13v339h-929v-339z m0 553h929v125q0 8-5 13t-13 5h-893q-7 0-12-5t-6-13v-125z m72-500v72h143v-72h-143z m214 0v72h214v-72h-214z" horiz-adv-x="1071.4" />
<glyph glyph-name="floppy" unicode="&#xe966;" d="m0-25v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38z m71 18h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714z m143 0h429v214h-429v-214z m143 518q0-8 5-13t13-5h107q7 0 13 5t5 13v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178z" horiz-adv-x="857.1" />
<glyph glyph-name="megaphone" unicode="&#xe967;" d="m0 368v107q0 37 26 63t63 26h268q243 0 500 215 29 0 50-22t22-50v-214q29 0 50-21t21-51-21-50-50-21v-214q0-29-22-51t-50-21q-233 194-453 212-32-10-51-37t-17-56 22-51q-11-19-13-37t4-32 18-31 27-28 35-28q-17-32-63-46t-94-7-73 31q-4 13-17 49t-18 53-12 50-9 56 2 55 12 61h-68q-36 0-63 27t-26 63z m429-22q210-23 428-190v532q-220-168-428-191v-151z" horiz-adv-x="1000" />
</font>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

View File

@ -824,9 +824,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -854,19 +855,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -882,25 +882,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -911,11 +910,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -931,16 +929,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -950,10 +945,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -970,10 +961,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -984,23 +971,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1008,11 +991,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1024,15 +1004,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1049,10 +1025,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1067,10 +1039,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1124,25 +1094,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1179,11 +1181,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#000}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid #eee;border-left:10px solid #eee;border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}

View File

@ -839,9 +839,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -869,19 +870,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -897,25 +897,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -926,11 +925,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -946,16 +944,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -965,10 +960,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -985,10 +976,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -999,23 +986,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1023,11 +1006,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1039,15 +1019,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1064,10 +1040,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1082,10 +1054,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1139,25 +1109,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1194,11 +1196,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#2c3f51}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid rgba(102,128,153,0.075);border-left:10px solid rgba(102,128,153,0.075);border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}
@ -1308,8 +1310,8 @@ a.list-group-item:hover,a.list-group-item:focus{color:#036;border-color:rgba(0,1
.navbar .nav.pull-right{float:right}.navbar .nav.pull-right>li>.dropdown-menu{right:0;left:auto}.navbar .nav.pull-right>li>.dropdown-menu .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0}
.navbar .btn{height:38px;padding:6px 8px}
.navbar .btn-group>.btn.disabled *,.navbar .btn-group>.btn.blocked *,.navbar .btn-group>.btn[disabled] *{color:rgba(54,77,99,0.3)}
.navbar .button-open-discussion.some{color:#e0b800}
.navbar .button-open-discussion.replied{color:#e74434}
.navbar .button-open-discussion.some{color:#e0b800 !important}
.navbar .button-open-discussion.replied{color:#e74434 !important}
.navbar .file-title-navbar{display:inline-block;vertical-align:middle;padding:1px 15px;font-size:1.5em;line-height:1.4em;font-weight:200;overflow:hidden;white-space:nowrap}
.navbar .input-file-title-container{display:inline-block;vertical-align:middle}.navbar .input-file-title-container .input-file-title{width:400px;font-size:16px;height:38px}
.navbar .working-indicator{display:inline-block;vertical-align:middle;overflow:hidden;height:38px;width:60px;padding-top:8px}.navbar .working-indicator .bar{display:inline-block;width:14px;height:6px;border-radius:1px;margin:0 2px;opacity:0.25;background-color:rgba(54,77,99,0.75)}
@ -1383,11 +1385,12 @@ a.list-group-item:hover,a.list-group-item:focus{color:#036;border-color:rgba(0,1
@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local('PT Sans'),local('PTSans'),url("../font/PTSans-Regular-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local('PT Sans Bold'),local('PTSans-Bold'),url("../font/PTSans-Bold-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local('PT Sans Italic'),local('PTSans-Italic'),url("../font/PTSans-Italic-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local('PT Sans Bold Italic'),local('PTSans-BoldItalic'),url("../font/PTSans-BoldItalic-webfont.woff") format('woff')}#wmd-input{position:absolute;top:0;left:0;font-family:"PT Sans",sans-serif;line-height:1.65;letter-spacing:normal;border-radius:0;color:#47596b;-webkit-box-shadow:none;box-shadow:none;resize:none;border:none;padding:0;background-color:#fff;overflow:auto;white-space:pre-wrap;word-wrap:break-word;word-break:normal}#wmd-input>.editor-content{padding-bottom:230px}
#wmd-input>.editor-margin{position:absolute;top:0;left:0}#wmd-input>.editor-margin .discussion{font-size:17px;position:absolute;cursor:pointer}#wmd-input>.editor-margin .discussion.new{display:none}#wmd-input>.editor-margin .discussion.new:hover,#wmd-input>.editor-margin .discussion.new.active,#wmd-input>.editor-margin .discussion.new.active:hover{display:inline-block;color:rgba(102,128,153,0.35) !important}
#wmd-input>.editor-margin .discussion.added{color:rgba(235,192,0,0.7)}#wmd-input>.editor-margin .discussion.added:hover,#wmd-input>.editor-margin .discussion.added.active,#wmd-input>.editor-margin .discussion.added.active:hover{color:#ebc000 !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:#e63b2b !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:rgba(230,59,43,0.8) !important}
#wmd-input>.editor-margin .discussion.icon-split{font-size:22px}#wmd-input>.editor-margin .discussion.icon-split:before{margin-right:0}
#wmd-input>.editor-margin .discussion:hover,#wmd-input>.editor-margin .discussion.active{text-decoration:none}
#wmd-input.has-selection>.editor-margin .discussion.new{display:inline-block;color:rgba(102,128,153,0.25)}
#wmd-input.font-monospaced *{font-family:"Source Code Pro",monospace !important;line-height:1.65 !important;font-size:1em !important}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.6)}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.5)}
#wmd-input .find-replace-select{background-color:#b5d5ff}
#wmd-input .conflict{font-weight:bold;color:#e63b2b}
#wmd-input .code,#wmd-input .pre{color:#29333d;font:normal .9em "Source Code Pro",monospace}

View File

@ -840,9 +840,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -870,19 +871,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -898,25 +898,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -927,11 +926,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -947,16 +945,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -966,10 +961,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -986,10 +977,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -1000,23 +987,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1024,11 +1007,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1040,15 +1020,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1065,10 +1041,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1083,10 +1055,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1140,25 +1110,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1195,11 +1197,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#3f3f3f}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid rgba(128,128,128,0.075);border-left:10px solid rgba(128,128,128,0.075);border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}
@ -1309,8 +1311,8 @@ a.list-group-item:hover,a.list-group-item:focus{color:#343434;border-color:rgba(
.navbar .nav.pull-right{float:right}.navbar .nav.pull-right>li>.dropdown-menu{right:0;left:auto}.navbar .nav.pull-right>li>.dropdown-menu .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0}
.navbar .btn{height:38px;padding:6px 8px}
.navbar .btn-group>.btn.disabled *,.navbar .btn-group>.btn.blocked *,.navbar .btn-group>.btn[disabled] *{color:rgba(221,221,221,0.3)}
.navbar .button-open-discussion.some{color:#e0b800}
.navbar .button-open-discussion.replied{color:#e74434}
.navbar .button-open-discussion.some{color:#e0b800 !important}
.navbar .button-open-discussion.replied{color:#e74434 !important}
.navbar .file-title-navbar{display:inline-block;vertical-align:middle;padding:1px 15px;font-size:1.5em;line-height:1.4em;font-weight:200;overflow:hidden;white-space:nowrap}
.navbar .input-file-title-container{display:inline-block;vertical-align:middle}.navbar .input-file-title-container .input-file-title{width:400px;font-size:16px;height:38px}
.navbar .working-indicator{display:inline-block;vertical-align:middle;overflow:hidden;height:38px;width:60px;padding-top:8px}.navbar .working-indicator .bar{display:inline-block;width:14px;height:6px;border-radius:1px;margin:0 2px;opacity:0.25;background-color:rgba(221,221,221,0.75)}
@ -1384,11 +1386,12 @@ a.list-group-item:hover,a.list-group-item:focus{color:#343434;border-color:rgba(
@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local('PT Sans'),local('PTSans'),url("../font/PTSans-Regular-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local('PT Sans Bold'),local('PTSans-Bold'),url("../font/PTSans-Bold-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local('PT Sans Italic'),local('PTSans-Italic'),url("../font/PTSans-Italic-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local('PT Sans Bold Italic'),local('PTSans-BoldItalic'),url("../font/PTSans-BoldItalic-webfont.woff") format('woff')}#wmd-input{position:absolute;top:0;left:0;font-family:"PT Sans",sans-serif;line-height:1.65;letter-spacing:normal;border-radius:0;color:#5a5a5a;-webkit-box-shadow:none;box-shadow:none;resize:none;border:none;padding:0;background-color:#fcfcfc;overflow:auto;white-space:pre-wrap;word-wrap:break-word;word-break:normal}#wmd-input>.editor-content{padding-bottom:230px}
#wmd-input>.editor-margin{position:absolute;top:0;left:0}#wmd-input>.editor-margin .discussion{font-size:17px;position:absolute;cursor:pointer}#wmd-input>.editor-margin .discussion.new{display:none}#wmd-input>.editor-margin .discussion.new:hover,#wmd-input>.editor-margin .discussion.new.active,#wmd-input>.editor-margin .discussion.new.active:hover{display:inline-block;color:rgba(128,128,128,0.35) !important}
#wmd-input>.editor-margin .discussion.added{color:rgba(235,192,0,0.7)}#wmd-input>.editor-margin .discussion.added:hover,#wmd-input>.editor-margin .discussion.added.active,#wmd-input>.editor-margin .discussion.added.active:hover{color:#ebc000 !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:#e63b2b !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:rgba(230,59,43,0.8) !important}
#wmd-input>.editor-margin .discussion.icon-split{font-size:22px}#wmd-input>.editor-margin .discussion.icon-split:before{margin-right:0}
#wmd-input>.editor-margin .discussion:hover,#wmd-input>.editor-margin .discussion.active{text-decoration:none}
#wmd-input.has-selection>.editor-margin .discussion.new{display:inline-block;color:rgba(128,128,128,0.25)}
#wmd-input.font-monospaced *{font-family:"Source Code Pro",monospace !important;line-height:1.65 !important;font-size:1em !important}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.6)}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.5)}
#wmd-input .find-replace-select{background-color:#b5d5ff}
#wmd-input .conflict{font-weight:bold;color:#e63b2b}
#wmd-input .code,#wmd-input .pre{color:#343434;font:normal .9em "Source Code Pro",monospace}

View File

@ -839,9 +839,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -869,19 +870,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -897,25 +897,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -926,11 +925,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -946,16 +944,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -965,10 +960,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -985,10 +976,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -999,23 +986,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1023,11 +1006,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1039,15 +1019,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1064,10 +1040,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1082,10 +1054,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1139,25 +1109,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1194,11 +1196,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#3f3f3f}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid rgba(128,128,128,0.075);border-left:10px solid rgba(128,128,128,0.075);border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}
@ -1308,8 +1310,8 @@ a.list-group-item:hover,a.list-group-item:focus{color:#343434;border-color:rgba(
.navbar .nav.pull-right{float:right}.navbar .nav.pull-right>li>.dropdown-menu{right:0;left:auto}.navbar .nav.pull-right>li>.dropdown-menu .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0}
.navbar .btn{height:38px;padding:6px 8px}
.navbar .btn-group>.btn.disabled *,.navbar .btn-group>.btn.blocked *,.navbar .btn-group>.btn[disabled] *{color:rgba(77,77,77,0.3)}
.navbar .button-open-discussion.some{color:#e0b800}
.navbar .button-open-discussion.replied{color:#e74434}
.navbar .button-open-discussion.some{color:#e0b800 !important}
.navbar .button-open-discussion.replied{color:#e74434 !important}
.navbar .file-title-navbar{display:inline-block;vertical-align:middle;padding:1px 15px;font-size:1.5em;line-height:1.4em;font-weight:200;overflow:hidden;white-space:nowrap}
.navbar .input-file-title-container{display:inline-block;vertical-align:middle}.navbar .input-file-title-container .input-file-title{width:400px;font-size:16px;height:38px}
.navbar .working-indicator{display:inline-block;vertical-align:middle;overflow:hidden;height:38px;width:60px;padding-top:8px}.navbar .working-indicator .bar{display:inline-block;width:14px;height:6px;border-radius:1px;margin:0 2px;opacity:0.25;background-color:rgba(77,77,77,0.75)}
@ -1383,11 +1385,12 @@ a.list-group-item:hover,a.list-group-item:focus{color:#343434;border-color:rgba(
@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local('PT Sans'),local('PTSans'),url("../font/PTSans-Regular-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local('PT Sans Bold'),local('PTSans-Bold'),url("../font/PTSans-Bold-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local('PT Sans Italic'),local('PTSans-Italic'),url("../font/PTSans-Italic-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local('PT Sans Bold Italic'),local('PTSans-BoldItalic'),url("../font/PTSans-BoldItalic-webfont.woff") format('woff')}#wmd-input{position:absolute;top:0;left:0;font-family:"PT Sans",sans-serif;line-height:1.65;letter-spacing:normal;border-radius:0;color:#5a5a5a;-webkit-box-shadow:none;box-shadow:none;resize:none;border:none;padding:0;background-color:#fff;overflow:auto;white-space:pre-wrap;word-wrap:break-word;word-break:normal}#wmd-input>.editor-content{padding-bottom:230px}
#wmd-input>.editor-margin{position:absolute;top:0;left:0}#wmd-input>.editor-margin .discussion{font-size:17px;position:absolute;cursor:pointer}#wmd-input>.editor-margin .discussion.new{display:none}#wmd-input>.editor-margin .discussion.new:hover,#wmd-input>.editor-margin .discussion.new.active,#wmd-input>.editor-margin .discussion.new.active:hover{display:inline-block;color:rgba(128,128,128,0.35) !important}
#wmd-input>.editor-margin .discussion.added{color:rgba(235,192,0,0.7)}#wmd-input>.editor-margin .discussion.added:hover,#wmd-input>.editor-margin .discussion.added.active,#wmd-input>.editor-margin .discussion.added.active:hover{color:#ebc000 !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:#e63b2b !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:rgba(230,59,43,0.8) !important}
#wmd-input>.editor-margin .discussion.icon-split{font-size:22px}#wmd-input>.editor-margin .discussion.icon-split:before{margin-right:0}
#wmd-input>.editor-margin .discussion:hover,#wmd-input>.editor-margin .discussion.active{text-decoration:none}
#wmd-input.has-selection>.editor-margin .discussion.new{display:inline-block;color:rgba(128,128,128,0.25)}
#wmd-input.font-monospaced *{font-family:"Source Code Pro",monospace !important;line-height:1.65 !important;font-size:1em !important}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.6)}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.5)}
#wmd-input .find-replace-select{background-color:#b5d5ff}
#wmd-input .conflict{font-weight:bold;color:#e63b2b}
#wmd-input .code,#wmd-input .pre{color:#343434;font:normal .9em "Source Code Pro",monospace}

View File

@ -839,9 +839,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -869,19 +870,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -897,25 +897,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -926,11 +925,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -946,16 +944,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -965,10 +960,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -985,10 +976,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -999,23 +986,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1023,11 +1006,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1039,15 +1019,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1064,10 +1040,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1082,10 +1054,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1139,25 +1109,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1194,11 +1196,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#9f9f9f}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid #6e6e6e;border-left:10px solid #6e6e6e;border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}
@ -1308,8 +1310,8 @@ a.list-group-item:hover,a.list-group-item:focus{color:#b3b3b3;border-color:rgba(
.navbar .nav.pull-right{float:right}.navbar .nav.pull-right>li>.dropdown-menu{right:0;left:auto}.navbar .nav.pull-right>li>.dropdown-menu .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0}
.navbar .btn{height:38px;padding:6px 8px}
.navbar .btn-group>.btn.disabled *,.navbar .btn-group>.btn.blocked *,.navbar .btn-group>.btn[disabled] *{color:rgba(204,204,204,0.3)}
.navbar .button-open-discussion.some{color:#e0b800}
.navbar .button-open-discussion.replied{color:#e74434}
.navbar .button-open-discussion.some{color:#e0b800 !important}
.navbar .button-open-discussion.replied{color:#e74434 !important}
.navbar .file-title-navbar{display:inline-block;vertical-align:middle;padding:1px 15px;font-size:1.5em;line-height:1.4em;font-weight:200;overflow:hidden;white-space:nowrap}
.navbar .input-file-title-container{display:inline-block;vertical-align:middle}.navbar .input-file-title-container .input-file-title{width:400px;font-size:16px;height:38px}
.navbar .working-indicator{display:inline-block;vertical-align:middle;overflow:hidden;height:38px;width:60px;padding-top:8px}.navbar .working-indicator .bar{display:inline-block;width:14px;height:6px;border-radius:1px;margin:0 2px;opacity:0.25;background-color:rgba(204,204,204,0.75)}
@ -1383,11 +1385,12 @@ a.list-group-item:hover,a.list-group-item:focus{color:#b3b3b3;border-color:rgba(
@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local('PT Sans'),local('PTSans'),url("../font/PTSans-Regular-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local('PT Sans Bold'),local('PTSans-Bold'),url("../font/PTSans-Bold-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local('PT Sans Italic'),local('PTSans-Italic'),url("../font/PTSans-Italic-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local('PT Sans Bold Italic'),local('PTSans-BoldItalic'),url("../font/PTSans-BoldItalic-webfont.woff") format('woff')}#wmd-input{position:absolute;top:0;left:0;font-family:"PT Sans",sans-serif;line-height:1.65;letter-spacing:normal;border-radius:0;color:#dfdfdf;-webkit-box-shadow:none;box-shadow:none;resize:none;border:none;padding:0;background-color:#1e1e1e;overflow:auto;white-space:pre-wrap;word-wrap:break-word;word-break:normal}#wmd-input>.editor-content{padding-bottom:230px}
#wmd-input>.editor-margin{position:absolute;top:0;left:0}#wmd-input>.editor-margin .discussion{font-size:17px;position:absolute;cursor:pointer}#wmd-input>.editor-margin .discussion.new{display:none}#wmd-input>.editor-margin .discussion.new:hover,#wmd-input>.editor-margin .discussion.new.active,#wmd-input>.editor-margin .discussion.new.active:hover{display:inline-block;color:rgba(159,159,159,0.35) !important}
#wmd-input>.editor-margin .discussion.added{color:rgba(235,192,0,0.7)}#wmd-input>.editor-margin .discussion.added:hover,#wmd-input>.editor-margin .discussion.added.active,#wmd-input>.editor-margin .discussion.added.active:hover{color:#ebc000 !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:#e63b2b !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:rgba(230,59,43,0.8) !important}
#wmd-input>.editor-margin .discussion.icon-split{font-size:22px}#wmd-input>.editor-margin .discussion.icon-split:before{margin-right:0}
#wmd-input>.editor-margin .discussion:hover,#wmd-input>.editor-margin .discussion.active{text-decoration:none}
#wmd-input.has-selection>.editor-margin .discussion.new{display:inline-block;color:rgba(159,159,159,0.25)}
#wmd-input.font-monospaced *{font-family:"Source Code Pro",monospace !important;line-height:1.65 !important;font-size:1em !important}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.6)}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.5)}
#wmd-input .find-replace-select{background-color:#b5d5ff}
#wmd-input .conflict{font-weight:bold;color:#e63b2b}
#wmd-input .code,#wmd-input .pre{color:#fff;font:normal .9em "Source Code Pro",monospace}

View File

@ -839,9 +839,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.asciidoc .hljs-emphasis,.markdown .hljs-emphasis{font-style:italic}
.nginx .hljs-built_in{font-weight:normal}
.coffeescript .javascript,.javascript .xml,.lasso .markup,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:0.5}
@font-face{font-family:'fontello';src:url('../font/fontello.eot?24620533');src:url('../font/fontello.eot?24620533#iefix') format('embedded-opentype'),url('../font/fontello.woff?24620533') format('woff'),url('../font/fontello.ttf?24620533') format('truetype'),url('../font/fontello.svg?24620533#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
@font-face{font-family:'fontello';src:url('../font/fontello.eot');src:url('../font/fontello.eot#iefix') format('embedded-opentype'),url('../font/fontello.woff') format('woff'),url('../font/fontello.ttf') format('truetype'),url('../font/fontello.svg#fontello') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;}
.icon-pause:before{content:'\e800'}
.icon-glass:before{content:'\e801'}
.icon-archive:before{content:'\e859'}
.icon-music:before{content:'\e802'}
.icon-search:before{content:'\e803'}
.icon-mail:before{content:'\e804'}
.icon-mail-alt:before{content:'\e805'}
@ -869,19 +870,18 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-ok-squared:before{content:'\e81b'}
.icon-cancel:before{content:'\e81c'}
.icon-cancel-circled:before{content:'\e81d'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-folder-open:before{content:'\e81e'}
.icon-plus:before{content:'\e81f'}
.icon-plus-circled:before{content:'\e820'}
.icon-plus-squared:before{content:'\e821'}
.icon-download:before{content:'\e822'}
.icon-minus:before{content:'\e823'}
.icon-minus-circled:before{content:'\e824'}
.icon-minus-squared:before{content:'\e825'}
.icon-minus-squared-alt:before{content:'\e826'}
.icon-upload:before{content:'\e827'}
.icon-help:before{content:'\e828'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-layers:before{content:'\e829'}
.icon-unlink:before{content:'\e82a'}
.icon-link-ext:before{content:'\e82b'}
.icon-link-ext-alt:before{content:'\e82c'}
@ -897,25 +897,24 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-bookmark:before{content:'\e836'}
.icon-bookmark-empty:before{content:'\e837'}
.icon-flag:before{content:'\e838'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-thumbs-up-alt:before{content:'\e839'}
.icon-thumbs-down-alt:before{content:'\e83a'}
.icon-reply:before{content:'\e845'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-split:before{content:'\e83d'}
.icon-chat:before{content:'\e83e'}
.icon-github-circled:before{content:'\e83f'}
.icon-reply-all:before{content:'\e840'}
.icon-forward:before{content:'\e856'}
.icon-hdd:before{content:'\e841'}
.icon-quote-left:before{content:'\e842'}
.icon-quote-right:before{content:'\e843'}
.icon-code:before{content:'\e844'}
.icon-reply:before{content:'\e845'}
.icon-export-alt:before{content:'\e846'}
.icon-pencil:before{content:'\e847'}
.icon-pencil-squared:before{content:'\e848'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-gamepad:before{content:'\e849'}
.icon-twitter:before{content:'\e84a'}
.icon-comment-empty:before{content:'\e84c'}
.icon-chat-empty:before{content:'\e84d'}
.icon-bell:before{content:'\e84e'}
@ -926,11 +925,10 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-location:before{content:'\e853'}
.icon-direction:before{content:'\e854'}
.icon-compass:before{content:'\e855'}
.icon-forward:before{content:'\e856'}
.icon-doc:before{content:'\e857'}
.icon-docs:before{content:'\e858'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-archive:before{content:'\e859'}
.icon-folder-empty:before{content:'\e85a'}
.icon-folder-open-empty:before{content:'\e85b'}
.icon-box:before{content:'\e85c'}
@ -946,16 +944,13 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-calendar:before{content:'\e866'}
.icon-calendar-empty:before{content:'\e867'}
.icon-login:before{content:'\e868'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-volume-down:before{content:'\e869'}
.icon-volume-up:before{content:'\e86a'}
.icon-headphones:before{content:'\e86b'}
.icon-clock:before{content:'\e86c'}
.icon-lightbulb:before{content:'\e86d'}
.icon-block:before{content:'\e86e'}
.icon-cancel-circled2:before{content:'\e86f'}
.icon-resize-full-alt:before{content:'\e870'}
.icon-resize-small:before{content:'\e871'}
.icon-resize-vertical:before{content:'\e872'}
@ -965,10 +960,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-zoom-out:before{content:'\e876'}
.icon-down-circled2:before{content:'\e877'}
.icon-up-circled2:before{content:'\e878'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down-open:before{content:'\e879'}
.icon-left-open:before{content:'\e87a'}
.icon-right-open:before{content:'\e87b'}
@ -985,10 +976,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-angle-double-right:before{content:'\e886'}
.icon-angle-double-up:before{content:'\e887'}
.icon-angle-double-down:before{content:'\e888'}
.icon-down:before{content:'\e951'}
.icon-right:before{content:'\e953'}
.icon-left:before{content:'\e952'}
.icon-up:before{content:'\e954'}
.icon-down-big:before{content:'\e889'}
.icon-left-big:before{content:'\e88a'}
.icon-right-big:before{content:'\e88b'}
@ -999,23 +986,19 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-down-hand:before{content:'\e890'}
.icon-left-circled:before{content:'\e891'}
.icon-right-circled:before{content:'\e892'}
.icon-music:before{content:'\e802'}
.icon-up-circled:before{content:'\e893'}
.icon-down-circled:before{content:'\e894'}
.icon-cw:before{content:'\e895'}
.icon-ccw:before{content:'\e896'}
.icon-refresh:before{content:'\e897'}
.icon-level-up:before{content:'\e898'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-collapse-top:before{content:'\e899'}
.icon-expand:before{content:'\e89a'}
.icon-play:before{content:'\e89b'}
.icon-play-circled:before{content:'\e89c'}
.icon-play-circled2:before{content:'\e89d'}
.icon-stop:before{content:'\e89e'}
.icon-pause:before{content:'\e800'}
.icon-trash:before{content:'\e89f'}
.icon-to-end:before{content:'\e8a0'}
.icon-to-end-alt:before{content:'\e8a1'}
.icon-to-start:before{content:'\e8a2'}
@ -1023,11 +1006,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-fast-fw:before{content:'\e8a4'}
.icon-fast-bw:before{content:'\e8a5'}
.icon-eject:before{content:'\e8a6'}
.icon-target:before{content:'\e8a7'}
.icon-signal:before{content:'\e8a8'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-laptop:before{content:'\e90e'}
.icon-tablet:before{content:'\e95c'}
.icon-mobile:before{content:'\e8a9'}
.icon-inbox:before{content:'\e8aa'}
.icon-globe:before{content:'\e8ab'}
@ -1039,15 +1019,11 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-flight:before{content:'\e8b1'}
.icon-fighter-jet:before{content:'\e8b2'}
.icon-leaf:before{content:'\e8b3'}
.icon-font:before{content:'\e8b6'}
.icon-bold:before{content:'\e8b5'}
.icon-italic:before{content:'\e8b4'}
.icon-bold:before{content:'\e8b5'}
.icon-font:before{content:'\e8b6'}
.icon-text-height:before{content:'\e8b7'}
.icon-text-width:before{content:'\e8b8'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-list:before{content:'\e8b9'}
.icon-indent-left:before{content:'\e8ba'}
.icon-indent-right:before{content:'\e8bb'}
@ -1064,10 +1040,6 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-paste:before{content:'\e8c6'}
.icon-briefcase:before{content:'\e8c7'}
.icon-suitcase:before{content:'\e8c8'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-list-alt:before{content:'\e8c9'}
.icon-qrcode:before{content:'\e8ca'}
.icon-barcode:before{content:'\e8cb'}
@ -1082,10 +1054,8 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-gift:before{content:'\e8d4'}
.icon-fire:before{content:'\e8d5'}
.icon-magnet:before{content:'\e8d6'}
.icon-folder:before{content:'\e8d7'}
.icon-ticket:before{content:'\e8d8'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.icon-key:before{content:'\e8d9'}
.icon-fork:before{content:'\e8da'}
.icon-rocket:before{content:'\e8db'}
@ -1139,25 +1109,57 @@ button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-ap
.icon-extinguisher:before{content:'\e90b'}
.icon-bullseye:before{content:'\e90c'}
.icon-resize-full:before{content:'\e90d'}
.icon-split:before{content:'\e83d'}
.icon-target:before{content:'\e8a7'}
.icon-layers:before{content:'\e829'}
.icon-laptop:before{content:'\e90e'}
.icon-chart-bar:before{content:'\e90f'}
.icon-link:before{content:'\e913'}
.icon-download:before{content:'\e822'}
.icon-upload:before{content:'\e827'}
.icon-download-cloud:before{content:'\e910'}
.icon-upload-cloud:before{content:'\e911'}
.icon-share:before{content:'\e912'}
.icon-hdd:before{content:'\e841'}
.icon-trash:before{content:'\e89f'}
.icon-folder:before{content:'\e8d7'}
.icon-code:before{content:'\e844'}
.icon-comment:before{content:'\e83b'}
.icon-comment-alt:before{content:'\e83c'}
.icon-chat:before{content:'\e83e'}
.icon-folder-open:before{content:'\e81e'}
.icon-up-circled:before{content:'\e893'}
.icon-link:before{content:'\e913'}
.icon-help-circled:before{content:'\e939'}
.icon-info-circled:before{content:'\e93a'}
.icon-info:before{content:'\e93b'}
.icon-home:before{content:'\e93c'}
.icon-flag-empty:before{content:'\e93d'}
.icon-flag-checkered:before{content:'\e93e'}
.icon-thumbs-up:before{content:'\e93f'}
.icon-thumbs-down:before{content:'\e940'}
.icon-edit:before{content:'\e941'}
.icon-print:before{content:'\e942'}
.icon-retweet:before{content:'\e943'}
.icon-keyboard:before{content:'\e944'}
.icon-doc-text:before{content:'\e945'}
.icon-file:before{content:'\e946'}
.icon-doc-text-inv:before{content:'\e947'}
.icon-logout:before{content:'\e949'}
.icon-mic:before{content:'\e94a'}
.icon-mute:before{content:'\e94b'}
.icon-volume-off:before{content:'\e94c'}
.icon-down-dir:before{content:'\e94d'}
.icon-up-dir:before{content:'\e94e'}
.icon-left-dir:before{content:'\e94f'}
.icon-right-dir:before{content:'\e950'}
.icon-down:before{content:'\e951'}
.icon-left:before{content:'\e952'}
.icon-right:before{content:'\e953'}
.icon-up:before{content:'\e954'}
.icon-level-down:before{content:'\e955'}
.icon-shuffle:before{content:'\e956'}
.icon-exchange:before{content:'\e957'}
.icon-collapse:before{content:'\e958'}
.icon-award:before{content:'\e959'}
.icon-desktop:before{content:'\e95a'}
.icon-tablet:before{content:'\e95c'}
.icon-align-left:before{content:'\e95d'}
.icon-align-center:before{content:'\e95e'}
.icon-align-right:before{content:'\e95f'}
.icon-align-justify:before{content:'\e960'}
.icon-ellipsis:before{content:'\e961'}
.icon-ellipsis-vert:before{content:'\e962'}
.icon-off:before{content:'\e963'}
.icon-road:before{content:'\e964'}
.icon-credit-card:before{content:'\e965'}
.icon-floppy:before{content:'\e966'}
.icon-megaphone:before{content:'\e967'}
.pln{color:#000}
.str{color:#080}
.kwd{color:#008}
@ -1194,11 +1196,11 @@ img{max-width:100%}
.sequence-diagram [fill="#000"],.flow-chart [fill="#000"],.sequence-diagram [fill="#000000"],.flow-chart [fill="#000000"],.sequence-diagram [fill="black"],.flow-chart [fill="black"]{fill:#112130}
code,pre{font-family:"Source Code Pro",monospace;font-size:0.9em}
code{white-space:normal}
pre,pre.prettyprint{border:0 solid rgba(143,134,104,0.075);border-left:10px solid rgba(143,134,104,0.075);border-radius:0;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:10px 15px}pre code,pre.prettyprint code{background-color:transparent !important}
pre,pre.prettyprint{border:0;padding:10px 20px;border-radius:5px}pre code,pre.prettyprint code{background-color:transparent !important}
dt,dd{margin-top:5px;margin-bottom:5px}
dd{margin-left:40px}
table{margin-bottom:20px}
table th,table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
table th,table td{padding:8px;line-height:20px;vertical-align:top;border-top:1px solid #dddddd}
table th{font-weight:bold}
table thead th{vertical-align:bottom}
table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}
@ -1308,8 +1310,8 @@ a.list-group-item:hover,a.list-group-item:focus{color:#2d2d2d;border-color:rgba(
.navbar .nav.pull-right{float:right}.navbar .nav.pull-right>li>.dropdown-menu{right:0;left:auto}.navbar .nav.pull-right>li>.dropdown-menu .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0}
.navbar .btn{height:38px;padding:6px 8px}
.navbar .btn-group>.btn.disabled *,.navbar .btn-group>.btn.blocked *,.navbar .btn-group>.btn[disabled] *{color:rgba(221,221,221,0.3)}
.navbar .button-open-discussion.some{color:#e0b800}
.navbar .button-open-discussion.replied{color:#e74434}
.navbar .button-open-discussion.some{color:#e0b800 !important}
.navbar .button-open-discussion.replied{color:#e74434 !important}
.navbar .file-title-navbar{display:inline-block;vertical-align:middle;padding:1px 15px;font-size:1.5em;line-height:1.4em;font-weight:200;overflow:hidden;white-space:nowrap}
.navbar .input-file-title-container{display:inline-block;vertical-align:middle}.navbar .input-file-title-container .input-file-title{width:400px;font-size:16px;height:38px}
.navbar .working-indicator{display:inline-block;vertical-align:middle;overflow:hidden;height:38px;width:60px;padding-top:8px}.navbar .working-indicator .bar{display:inline-block;width:14px;height:6px;border-radius:1px;margin:0 2px;opacity:0.25;background-color:rgba(221,221,221,0.75)}
@ -1383,11 +1385,12 @@ a.list-group-item:hover,a.list-group-item:focus{color:#2d2d2d;border-color:rgba(
@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local('PT Sans'),local('PTSans'),url("../font/PTSans-Regular-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local('PT Sans Bold'),local('PTSans-Bold'),url("../font/PTSans-Bold-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local('PT Sans Italic'),local('PTSans-Italic'),url("../font/PTSans-Italic-webfont.woff") format('woff')}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local('PT Sans Bold Italic'),local('PTSans-BoldItalic'),url("../font/PTSans-BoldItalic-webfont.woff") format('woff')}#wmd-input{position:absolute;top:0;left:0;font-family:"PT Sans",sans-serif;line-height:1.65;letter-spacing:normal;border-radius:0;color:#415b73;-webkit-box-shadow:none;box-shadow:none;resize:none;border:none;padding:0;background-color:#fff;overflow:auto;white-space:pre-wrap;word-wrap:break-word;word-break:normal}#wmd-input>.editor-content{padding-bottom:230px}
#wmd-input>.editor-margin{position:absolute;top:0;left:0}#wmd-input>.editor-margin .discussion{font-size:17px;position:absolute;cursor:pointer}#wmd-input>.editor-margin .discussion.new{display:none}#wmd-input>.editor-margin .discussion.new:hover,#wmd-input>.editor-margin .discussion.new.active,#wmd-input>.editor-margin .discussion.new.active:hover{display:inline-block;color:rgba(92,130,164,0.35) !important}
#wmd-input>.editor-margin .discussion.added{color:rgba(235,192,0,0.7)}#wmd-input>.editor-margin .discussion.added:hover,#wmd-input>.editor-margin .discussion.added.active,#wmd-input>.editor-margin .discussion.added.active:hover{color:#ebc000 !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:#e63b2b !important}
#wmd-input>.editor-margin .discussion.replied{color:rgba(230,59,43,0.7)}#wmd-input>.editor-margin .discussion.replied:hover,#wmd-input>.editor-margin .discussion.replied.active,#wmd-input>.editor-margin .discussion.replied.active:hover{color:rgba(230,59,43,0.8) !important}
#wmd-input>.editor-margin .discussion.icon-split{font-size:22px}#wmd-input>.editor-margin .discussion.icon-split:before{margin-right:0}
#wmd-input>.editor-margin .discussion:hover,#wmd-input>.editor-margin .discussion.active{text-decoration:none}
#wmd-input.has-selection>.editor-margin .discussion.new{display:inline-block;color:rgba(92,130,164,0.25)}
#wmd-input.font-monospaced *{font-family:"Source Code Pro",monospace !important;line-height:1.65 !important;font-size:1em !important}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.6)}
#wmd-input .comment-highlight,#wmd-input .find-replace-highlight{background-color:rgba(255,230,0,0.5)}
#wmd-input .find-replace-select{background-color:#b5d5ff}
#wmd-input .conflict{font-weight:bold;color:#e63b2b}
#wmd-input .code,#wmd-input .pre{color:#253442;font:normal .9em "Source Code Pro",monospace}

View File

@ -1,6 +1,6 @@
define([], function() {
var constants = {};
constants.VERSION = "4.0.2";
constants.VERSION = "4.1.0";
constants.MAIN_URL = "https://stackedit.io/";
constants.GOOGLE_ANALYTICS_ACCOUNT_ID = "UA-39556145-1";
constants.GOOGLE_API_KEY = "AIzaSyAeCU8CGcSkn0z9js6iocHuPBX4f_mMWkw";

View File

@ -1,29 +0,0 @@
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<title>StackEdit Viewer</title>
<link rel="canonical" href="https://stackedit.io/viewer">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<meta name="description" content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
<meta name="author" content="Benoit Schweblin">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612">
<script>
// Use ?debug to serve original JavaScript files instead of minified
window.baseDir = 'res';
if (!/(\?|&)debug($|&)/.test(location.search)) {
window.baseDir += '-min';
}
window.require = {
baseUrl: window.baseDir,
deps: ['main']
};
</script>
<script src="res-min/require.js"></script>
</head>
<body class="viewer"></body>
</html>