new bitcoin.org

implement multilanguage
new improved clients list page
update history and statistics in the "about" page
add "Some things you need to know" page
add "Support Bitcoin" page
add a contextual presentation for each category of users (individuals, organizations, developers and enthusiasts)
add a short and concise "how it works" page
add a "vocabulary" page for Bitcoin technical words definitions
give more visibility for the foundation
new website design and layout
This commit is contained in:
Saivann 2013-03-18 14:29:59 -04:00
parent 6d00273b38
commit 2718222c9b
191 changed files with 9435 additions and 2716 deletions

View file

@ -2,30 +2,42 @@
Installing dependencies
sudo apt-get install rubygems
sudo apt-get install rubygems ruby1.9.1-dev build-essential
sudo gem install jekyll aquarium json less therubyracer
# Usage
* update DOWNLOAD\_VERSION in index.html
* update DOWNLOAD\_VERSION in _config.yml
* run ./_contrib/updatesitemap if you changed a page
* run jekyll
* output will be in \_site/
# Translation
* Find the two letter ISO 639-1 code for your language (fr, en, jp)
* Run ./_contrib/translate (language code) (language name)
* Make sure that languages are listed in alphabetical order in _config.yml
* Rename html files in (lang)/ according to your language. And update links in _layouts/base-(lang).html and (lang)/*.html to reflect your changes.
* Translate all .html and images files in (lang)/ and _layouts/base-(lang).html
* A tips for translators, you can preview your work in a simple Google chrome browser with no HTTP server. Just go to the existing english page, open the javascript console with CTRL + SHIFT + J and use the following command to make the page editable : document.body.contentEditable=true
## Advanced Usage
### Alerts
You can easily put alerts on the homepage by changing the ALERT and ALERT\_CLASS variables in index.html.
You can easily put a global alert on the website by changing the ALERT and ALERT\_CLASS variables in _config.yml.
And you can also set an alert specific to a language by appending the language code to the ALERT.
Example:
```
ALERT_CLASS: error
ALERT: <strong>Security alert:</strong> Please upgrade to 0.3.25 as soon as possible!
ALERT_fr: <strong>Alerte de sécurité:</strong> Mettez Bitcoin à jour vers la version 0.3.25 sans délais!
```
will produce a red alert box. Possible classes are: error (red), info (blue), success (green) and warning (yellow)
will produce an english red alert box for all languages, and a translated red alert box for french language.
Possible classes are: error (red), info (blue), success (green) and warning (yellow)
### Release Notes

View file

@ -1,3 +1,13 @@
DOWNLOAD_VERSION: 0.8.1
ALERT_CLASS:
ALERT:
langs:
- langcode: fr
langtext: Français
- langcode: en
langtext: English
safe: false
auto: false
server: false
@ -39,20 +49,6 @@ kramdown:
coderay_bold_every: 10
coderay_css: style
navigation:
- text: Home
url: /
section: index
- text: News
url: /news.html
section: news
- text: About
url: /about.html
section: about
- text: Clients
url: /clients.html
section: clients
aliases:
s_nakamoto: Satoshi Nakamoto
--author=Satoshi Nakamoto: Satoshi Nakamoto

23
_contrib/translate Executable file
View file

@ -0,0 +1,23 @@
#!/bin/bash
if [[ -z ${1} || -z ${2} ]]; then
echo 'You must provide language code and language name. Ex : ./_contrib/translate fr "Français"'
exit
fi
cp -R en ${1}
cp _layouts/base-en.html _layouts/base-${1}.html
sed -i "s_layout: base-en_layout: base-${1}_g" ${1}/*.html
sed -i "s_href=\"/en/_href=\"/${1}/_g" ${1}/*.html
sed -i "s_src=\"/en/_src=\"/${1}/_g" ${1}/*.html
sed -i "s_href=\"/en/_href=\"/${1}/_g" _layouts/base-${1}.html
sed -i "s_src=\"/en/_src=\"/${1}/_g" _layouts/base-${1}.html
sed -i "s_langcode: en_langcode: ${1}_g" _layouts/base-${1}.html
sed -i "s_langtext: English_langtext: ${2}_g" _layouts/base-${1}.html
sed -i "s/ALERT_CLASS_en/ALERT_CLASS_${1}/g" _layouts/base-${1}.html
sed -i "s/ALERT_en/ALERT_${1}/g" _layouts/base-${1}.html
sed -i "/langcode: ${1}/d" _config.yml
sed -i "/langtext: ${2}/d" _config.yml
sed -i "/langs:/a - langtext: ${2}" _config.yml
sed -i "/langs:/a - langcode: ${1}" _config.yml
sed -i "s_- langtext: ${2}_ langtext: ${2}_g" _config.yml

0
_contrib/update_website.sh Normal file → Executable file
View file

26
_contrib/updatesitemap Executable file
View file

@ -0,0 +1,26 @@
#!/bin/bash
#Should be called each time a page is updated, added or removed to update sitemaps
echo '<?xml version="1.0" encoding="UTF-8"?>' > sitemap.xml
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' >> sitemap.xml
for l in *; do
if [[ ! -d $l || $l == "_site" || $l == "_layouts" ]]; then
continue
fi
files=`find ${l} -name "*.html" -type f`
for f in $files; do
c=(${f//"."/ })
c=${c[@]:0:1}
if [[ $c == "${l}/index" ]]; then
c=(${c//"/"/ })
c="${c[@]:0:1}/"
fi
t=$(stat -c "%y" ${f})
t=(${t//" "/ })
t=${t[@]:0:1}
echo "<url>" >> sitemap.xml
echo " <loc>http://bitcoin.org/${c}</loc>" >> sitemap.xml
echo " <lastmod>${t}</lastmod>" >> sitemap.xml
echo "</url>" >> sitemap.xml
done
done
echo '</urlset>' >> sitemap.xml

View file

@ -1,17 +0,0 @@
<div class="topbar" id="menu">
<div class="fill">
<div class="container">
<ul>
{% for link in site.navigation %}
{% assign active = nil %}
{% if page.section == link.section or page.url == link.url %}
{% assign active = 'active' %}
{% endif %}
<li{% if active %} class="{{ active }}"{% endif %}>
<a href="{{ link.url }}">{{ link.text }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>

95
_layouts/base-en.html Normal file
View file

@ -0,0 +1,95 @@
---
langcode: en
langtext: English
menufor:
- text: Individuals
url: /en/bitcoin-for-individuals
- text: Organizations
url: /en/bitcoin-for-organizations
- text: Developers
url: /en/bitcoin-for-developers
- text: Enthusiasts
url: /en/bitcoin-for-enthusiasts
menu:
- text: How it works
url: /en/how-it-works
- text: Vocabulary
url: /en/vocabulary
- text: Resources
url: /en/resources
- text: Community
url: /en/community
- text: Development
url: /en/development
- text: Foundation
url: /en/foundation
- text: About
url: /en/about
---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="{{ page.langcode }}">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>{{ page.title }}</title>
{% lesscss bootstrap.less %}
<script type="text/javascript" src="/js/main.js"></script>
<link rel="shortcut icon" href="/favicon.png">
{% for lang in site.langs %}{% if lang.langcode != page.langcode %}
<link rel="alternate" hreflang="{{ lang.langcode }}" href="/{{ lang.langcode }}" />
{% endif %}{% endfor %}
</head>
<body>
{% if site.ALERT or site.ALERT_en %}
{% if site.ALERT_CLASS %}{% assign class = site.ALERT_CLASS%}{% endif %}{% if site.ALERT_CLASS_en %}{% assign class = site.ALERT_CLASS_en%}{% endif %}
{% if site.ALERT %}{% assign alert = site.ALERT%}{% endif %}{% if site.ALERT_en %}{% assign alert = site.ALERT_en%}{% endif %}
<div class="alert-message {{ class }}">
<div><div>{{ alert }}</div></div>
</div>
{% endif %}
<div id="head">
<div class="wrap">
<ul id="lang">
<li><a href="javascript:void();">{{ page.langtext }}</a>
<ul>
{% for lang in site.langs %}{% if lang.langcode != page.langcode %}
<li><a href="/{{ lang.langcode }}/">{{ lang.langtext }}</a></li>
{% endif %}{% endfor %}
</ul>
</li>
</ul>
<div id="logo"><a href="/{{ page.langcode }}/"><span>Bitcoin</span></a></div>
<ul id="menufor">
{% for link in page.menufor %}{% assign active = nil %}{% capture fullurl %}{{ link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
<li{% if active %} class="{{ active }}"{% endif %}><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</div>
<ul id="menu" class="wrap">
{% for link in page.menu %}{% assign active = nil %}{% capture fullurl %}{{ link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
<li{% if active %} class="{{ active }}"{% endif %}><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</div>
<div id="body">
<div class="wrap">
<div id="content">
{{ content }}
</div>
<div id="rightbox">
<div id="choose">
<a href="/en/choose-your-wallet"><img src="/img/but_start.svg" alt="Choose your wallet">Choose your wallet</a>
</div>
<div id="before">
<a href="/en/you-need-to-know"><img src="/img/but_warn.svg" alt="You need to know">You need to know</a>
</div>
<div id="support">
<a href="/en/support-bitcoin"><img src="/img/but_involve.svg" alt="Support Bitcoin">Support Bitcoin</a>
</div>
</div>
<div id="footer"><div>© <a href="https://bitcoinfoundation.org/" target="_blank">The Bitcoin Foundation</a> 20092013 Released under the <a href="http://creativecommons.org/licenses/MIT/" target="_blank">MIT license</a></div></div>
</div>
</div>
<script type="text/javascript">svgfallback();</script>
</body>
</html>

97
_layouts/base-fr.html Normal file
View file

@ -0,0 +1,97 @@
---
ALERT_CLASS:
ALERT:
langcode: fr
langtext: Français
menufor:
- text: Particuliers
url: /fr/bitcoin-pour-particuliers
- text: Organisations
url: /fr/bitcoin-pour-organisations
- text: Développeurs
url: /fr/bitcoin-pour-developpeurs
- text: Passionnés
url: /fr/bitcoin-pour-passionnes
menu:
- text: Comment ça marche
url: /fr/comment-ca-marche
- text: Vocabulaire
url: /fr/vocabulaire
- text: Ressources
url: /fr/ressources
- text: Communauté
url: /fr/communaute
- text: Développement
url: /fr/developpement
- text: Fondation
url: /fr/fondation
- text: À propos
url: /fr/a-propos
---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="{{ page.langcode }}">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>{{ page.title }}</title>
{% lesscss bootstrap.less %}
<script type="text/javascript" src="/js/main.js"></script>
<link rel="shortcut icon" href="/favicon.png">
{% for lang in site.langs %}{% if lang.langcode != page.langcode %}
<link rel="alternate" hreflang="{{ lang.langcode }}" href="/{{ lang.langcode }}" />
{% endif %}{% endfor %}
</head>
<body>
{% if site.ALERT or site.ALERT_fr %}
{% if site.ALERT_CLASS %}{% assign class = site.ALERT_CLASS%}{% endif %}{% if site.ALERT_CLASS_fr %}{% assign class = site.ALERT_CLASS_fr%}{% endif %}
{% if site.ALERT %}{% assign alert = site.ALERT%}{% endif %}{% if site.ALERT_fr %}{% assign alert = site.ALERT_fr%}{% endif %}
<div class="alert-message {{ class }}">
<div><div>{{ alert }}</div></div>
</div>
{% endif %}
<div id="head">
<div class="wrap">
<ul id="lang">
<li><a href="javascript:void();">{{ page.langtext }}</a>
<ul>
{% for lang in site.langs %}{% if lang.langcode != page.langcode %}
<li><a href="/{{ lang.langcode }}/">{{ lang.langtext }}</a></li>
{% endif %}{% endfor %}
</ul>
</li>
</ul>
<div id="logo"><a href="/{{ page.langcode }}/"><span>Bitcoin</span></a></div>
<ul id="menufor">
{% for link in page.menufor %}{% assign active = nil %}{% capture fullurl %}{{ link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
<li{% if active %} class="{{ active }}"{% endif %}><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</div>
<ul id="menu" class="wrap">
{% for link in page.menu %}{% assign active = nil %}{% capture fullurl %}{{ link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
<li{% if active %} class="{{ active }}"{% endif %}><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</div>
<div id="body">
<div class="wrap">
<div id="content">
{{ content }}
</div>
<div id="rightbox">
<div id="choose">
<a href="/fr/choisir-votre-porte-monnaie"><img src="/img/but_start.svg" alt="Choisissez votre porte-monnaie">Choisissez votre porte-monnaie</a>
</div>
<div id="before">
<a href="/fr/vous-devez-savoir"><img src="/img/but_warn.svg" alt="Vous devez savoir">Vous devez savoir</a>
</div>
<div id="support">
<a href="/fr/supporter-bitcoin"><img src="/img/but_involve.svg" alt="Support Bitcoin">Supporter Bitcoin !</a>
</div>
</div>
<div id="footer"><div>© <a href="https://bitcoinfoundation.org/" target="_blank">The Bitcoin Foundation</a> 20092013 Released under the <a href="http://creativecommons.org/licenses/MIT/" target="_blank">MIT license</a></div></div>
</div>
</div>
<script type="text/javascript">svgfallback();</script>
</body>
</html>

View file

@ -1,49 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bitcoin - {{ page.title }}</title>
<meta name="description" content="The original site offering documentation and open-source Bitcoin software." />
<meta name="author" content="" />
<meta name="robots" content="noodp" />
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- scripting -->
<!--
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="/lib/app.js"></script>
-->
<!-- stylesheet -->
{% lesscss bootstrap.less %}
<!-- fav and touch icons -->
<link rel="shortcut icon" href="/favicon.ico">
<!--
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
{{ content }}
<div class="container">
<footer>
<div class="inner">
<p>
&copy; Bitcoin Project 2009&ndash;2012<br/>
Released under the <a href="http://creativecommons.org/licenses/MIT/">MIT license</a>
</p>
</div>
</footer>
</div>
</body>
</html>

View file

@ -1,4 +0,0 @@
---
layout: base
---
{{ content }}

View file

@ -1,28 +1,23 @@
---
layout: simple
section: news
layout: base-en
---
<div class="container">
<div class="row">
<div class="span5">
<h5>News archive</h5>
<ul class="unstyled">
{% for post in site.categories.releases %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.date | date:"%Y-%m-%d" }}
</li>
{% endfor %}
</ul>
</div>
<div class="span11">
<h1>{{ page.title }} <small>{{ page.date | date:"%e %B %Y" }}</small></h1>
{% if page.src %}
<p>
<a href="{{ page.src }}">Full announcement (including signatures)</a>
</p>
{% endif %}
{{ content }}
</div>
</div>
<div>
<h1>Version history</h1>
<ul class="unstyled">
{% for post in site.categories.releases %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.date | date:"%Y-%m-%d" }}
</li>
{% endfor %}
</ul>
</div>
<div class="versiontext">
<h1>{{ page.title }} <small>{{ page.date | date:"%e %B %Y" }}</small></h1>
{% if page.src %}
<p>
<a href="{{ page.src }}">Full announcement (including signatures)</a>
</p>
{% endif %}
{{ content }}
</div>

View file

@ -1,14 +0,0 @@
---
layout: base
---
<div id="masthead">
<div class="inner">
<div class="container primarybox">
<h1><img width=38 height=40 src="/img/logo_small.png" class="thelogo" /> Bitcoin <small>P2P Digital Currency</small></h1>
</div>
</div>
</div>
{% include nav.html %}
{{ content }}

View file

@ -1,107 +0,0 @@
/* bitcoin.less
* site specific styles
* ---------------------------------------------------------------------------------------- */
img.icon {
margin-right: 8px;
vertical-align: bottom;
}
#masthead .inner {
padding-top: 1.5em;
}
.overview + div {
padding-top: 2em;
}
.overview {
background: #f5f5f5;
border-bottom: 1px solid #eee;
}
#download {
background: #fff;
color: #333;
.well;
padding: 0;
h2 {
background: #f3f3f3;
border-bottom: 1px solid #eee;
padding: 0.25em 0.5em;
#gradient > .vertical(#ffffff, #e8e8e8);
}
div {
padding: 1em;
}
}
#masthead + .container, .topbar + .container, .topbar + .overview {
padding-top: 2em;
}
#masthead {
#gradient > .vertical(#004D9F, #049CD9);
.inner {
box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.1);
background-image: url(lib/innerbg.png);
padding-top: 2em;
padding-bottom: 1em;
}
color: #fff;
.primarybox {
p {
line-height: 2em;
}
p, h1, h2, h3, h4 {
color: #fff;
text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
small {
color: #eee;
}
}
a:not(.btn) {
font-weight: bold;
color: #fff;
&:hover {
color: #fff;
}
}
}
}
footer {
padding-bottom: 6em;
}
img.logo {
vertical-align: middle;
position: absolute;
left: -80px;
z-index: 100;
}
.right {
float: right;
}
table.unstyled td {
border: none;
}
.topbar {
position: static;
}
.thelogo {
vertical-align: top;
}

15
_less/bootstrap.less vendored
View file

@ -9,17 +9,4 @@
* Date: @DATE
*/
// CSS Reset
@import "reset.less";
// Core
@import "preboot.less";
@import "scaffolding.less";
// Styled patterns and elements
@import "type.less";
@import "forms.less";
@import "tables.less";
@import "patterns.less";
@import "bitcoin.less";
@import "main.less";

View file

@ -1,393 +0,0 @@
/* Forms.less
* Base styles for various input types, form layouts, and states
* ------------------------------------------------------------- */
// FORM STYLES
// -----------
form {
margin-bottom: @baseline;
}
// Groups of fields with labels on top (legends)
fieldset {
margin-bottom: @baseline;
padding-top: @baseline;
legend {
display: block;
margin-left: 150px;
font-size: 20px;
line-height: 1;
*margin: 0 0 5px 145px; /* IE6-7 */
*line-height: 1.5; /* IE6-7 */
color: @grayDark;
}
}
// Parent element that clears floats and wraps labels and fields together
form .clearfix {
margin-bottom: @baseline;
}
// Set font for forms
label,
input,
select,
textarea {
#font > .sans-serif(normal,13px,normal);
}
// Float labels left
label {
padding-top: 6px;
font-size: 13px;
line-height: 18px;
float: left;
width: 130px;
text-align: right;
color: @grayDark;
}
// Shift over the inside div to align all label's relevant content
div.input {
margin-left: 150px;
}
// Checkboxs and radio buttons
input[type=checkbox],
input[type=radio] {
cursor: pointer;
}
// Inputs, Textareas, Selects
input,
textarea,
select,
.uneditable-input {
display: inline-block;
width: 210px;
height: @baseline;
padding: 4px;
font-size: 13px;
line-height: @baseline;
color: @gray;
border: 1px solid #ccc;
.border-radius(3px);
}
/* mini reset for non-html5 file types */
input[type=checkbox],
input[type=radio] {
width: auto;
height: auto;
padding: 0;
margin: 3px 0;
*margin-top: 0; /* IE6-7 */
line-height: normal;
border: none;
}
input[type=file] {
background-color: #fff;
padding: initial;
border: initial;
line-height: initial;
.box-shadow(none);
}
input[type=button],
input[type=reset],
input[type=submit] {
width: auto;
height: auto;
}
select,
input[type=file] {
height: @baseline * 1.5;
line-height: @baseline * 1.5;
}
textarea {
height: auto;
}
.uneditable-input {
background-color: #eee;
display: block;
border-color: #ccc;
.box-shadow(inset 0 1px 2px rgba(0,0,0,.075));
}
// Placeholder text gets special styles; can't be bundled together though for some reason
:-moz-placeholder {
color: @grayLight;
}
::-webkit-input-placeholder {
color: @grayLight;
}
// Focus states
input,
select, textarea {
@transition: border linear .2s, box-shadow linear .2s;
.transition(@transition);
.box-shadow(inset 0 1px 3px rgba(0,0,0,.1));
}
input:focus,
textarea:focus {
outline: none;
border-color: rgba(82,168,236,.8);
@shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
.box-shadow(@shadow);
}
// Error styles
form div.error {
background: lighten(@red, 57%);
padding: 10px 0;
margin: -10px 0 10px;
.border-radius(4px);
@error-text: desaturate(lighten(@red, 25%), 25%);
> label,
span.help-inline,
span.help-block {
color: @red;
}
input,
textarea {
border-color: @error-text;
.box-shadow(0 0 3px rgba(171,41,32,.25));
&:focus {
border-color: darken(@error-text, 10%);
.box-shadow(0 0 6px rgba(171,41,32,.5));
}
}
.input-prepend,
.input-append {
span.add-on {
background: lighten(@red, 50%);
border-color: @error-text;
color: darken(@error-text, 10%);
}
}
}
// Form element sizes
.input-mini, input.mini, textarea.mini, select.mini {
width: 60px;
}
.input-small, input.small, textarea.small, select.small {
width: 90px;
}
.input-medium, input.medium, textarea.medium, select.medium {
width: 150px;
}
.input-large, input.large, textarea.large, select.large {
width: 210px;
}
.input-xlarge, input.xlarge, textarea.xlarge, select.xlarge {
width: 270px;
}
.input-xxlarge, input.xxlarge, textarea.xxlarge, select.xxlarge {
width: 530px;
}
textarea.xxlarge {
overflow-y: scroll;
}
// Turn off focus for disabled (read-only) form elements
input[readonly]:focus,
textarea[readonly]:focus,
input.disabled {
background: #f5f5f5;
border-color: #ddd;
.box-shadow(none);
}
// Actions (the buttons)
.actions {
background: #f5f5f5;
margin-top: @baseline;
margin-bottom: @baseline;
padding: (@baseline - 1) 20px @baseline 150px;
border-top: 1px solid #ddd;
.border-radius(0 0 3px 3px);
.secondary-action {
float: right;
a {
line-height: 30px;
&:hover {
text-decoration: underline;
}
}
}
}
// Help Text
.help-inline,
.help-block {
font-size: 12px;
line-height: @baseline;
color: @grayLight;
}
.help-inline {
padding-left: 5px;
*position: relative; /* IE6-7 */
*top: -5px; /* IE6-7 */
}
// Big blocks of help text
.help-block {
display: block;
max-width: 600px;
}
// Inline Fields (input fields that appear as inline objects
.inline-inputs {
color: @gray;
span, input {
display: inline-block;
}
input.mini {
width: 60px;
}
input.small {
width: 90px;
}
span {
padding: 0 2px 0 1px;
}
}
// Allow us to put symbols and text within the input field for a cleaner look
.input-prepend,
.input-append {
input {
.border-radius(0 3px 3px 0);
}
.add-on {
background: #f5f5f5;
float: left;
display: block;
width: auto;
min-width: 16px;
padding: 4px 4px 4px 5px;
color: @grayLight;
font-weight: normal;
line-height: 18px;
height: 18px;
text-align: center;
text-shadow: 0 1px 0 #fff;
border: 1px solid #ccc;
border-right-width: 0;
.border-radius(3px 0 0 3px);
}
.active {
background: lighten(@green, 30);
border-color: @green;
}
}
.input-prepend {
.add-on {
*margin-top: 1px; /* IE6-7 */
}
}
.input-append {
input {
float: left;
.border-radius(3px 0 0 3px);
}
.add-on {
.border-radius(0 3px 3px 0);
border-right-width: 1px;
border-left-width: 0;
}
}
// Stacked options for forms (radio buttons or checkboxes)
.inputs-list {
margin: 0 0 5px;
width: 100%;
li {
display: block;
padding: 0;
width: 100%;
label {
display: block;
float: none;
width: auto;
padding: 0;
line-height: @baseline;
text-align: left;
white-space: normal;
strong {
color: @gray;
}
small {
font-size: 12px;
font-weight: normal;
}
}
ul.inputs-list {
margin-left: 25px;
margin-bottom: 10px;
padding-top: 0;
}
&:first-child {
padding-top: 5px;
}
}
input[type=radio],
input[type=checkbox] {
margin-bottom: 0;
}
}
// Stacked forms
.form-stacked {
padding-left: 20px;
fieldset {
padding-top: @baseline / 2;
}
legend {
margin-left: 0;
}
label {
display: block;
float: none;
width: auto;
font-weight: bold;
text-align: left;
line-height: 20px;
padding-top: 0;
}
.clearfix {
margin-bottom: @baseline / 2;
div.input {
margin-left: 0;
}
}
.inputs-list {
margin-bottom: 0;
li {
padding-top: 0;
label {
font-weight: normal;
padding-top: 0;
}
}
}
div.error {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
margin-top: 0;
margin-left: -10px;
}
.actions {
margin-left: -20px;
padding-left: 20px;
}
}

532
_less/main.less Normal file
View file

@ -0,0 +1,532 @@
body{
background-color:#fafafa;
color:#646464;
font-family:"Helvetica Neue", "Liberation Sans", Arial, sans-serif;
margin:0;
padding:0;
background-repeat:repeat;
background-image:url(/img/innerbg.png);
}
h1,h2{
font-family:'UbuntuBold', sans-serif;
font-weight:normal;
}
h1{
color:#0d579b;
font-size:160%;
}
h2{
color:#383838;
font-size:130%;
}
h3{
color:#383838;
font-size:100%;
}
h1 img,h2 img,h3 img{
vertical-align:middle;
margin-right:5px;
}
a:link,a:visited,a:active{
color:#4892b2;
}
a:link:hover,a:visited:hover,a:active:hover{
color:#75bfdf;
}
a img{
border:0;
}
blockquote{
margin-left:0px;
margin-bottom:18px;
border-left:5px solid #eee;
padding-left:15px;
}
pre{
background-color:#f5f5f5;
display:block;
padding:17px;
margin:0 0 18px;
line-height:18px;
font-size:12px;
border:1px solid #ccc;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
white-space:pre-wrap;
word-wrap:break-word;
}
#head{
background-image:linear-gradient(bottom, rgba(255, 255, 255,0) 14%, #fff 70%);
background-image:-o-linear-gradient(bottom, rgba(255, 255, 255,0) 14%, #fff 70%);
background-image:-moz-linear-gradient(bottom, rgba(255, 255, 255,0) 14%, #fff 70%);
background-image:-webkit-linear-gradient(bottom, rgba(255, 255, 255,0) 14%, #fff 70%);
background-image:-ms-linear-gradient(bottom, rgba(255, 255, 255,0) 14%, #fff 70%);
height:90px;
}
#lang,#lang li,#lang ul{
display:block;
list-style:none;
padding:0px;
margin:0px;
text-align:right;
cursor:pointer;
}
#lang{
position:absolute;
right:0px;
height:28px;
border-left:1px solid transparent;
border-right:1px solid transparent;
border-top:1px solid transparent;
}
#lang>li>ul{
display:none;
right:-1px;
top:26px;
position:absolute;
background-color:#fff;
margin-left:-5px;
border-radius-bottom-right:5px;
-webkit-border-radius-bottom-right:5px;
border-radius-bottom-left:5px;
-webkit-border-radius-bottom-left:5px;
border-left:1px solid #ebebeb;
border-right:1px solid #ebebeb;
border-bottom:1px solid #ebebeb;
z-index:100;
}
#lang:hover{
border-left:1px solid #ebebeb;
border-right:1px solid #ebebeb;
border-top:1px solid #ebebeb;
background-color:#fff;
}
#lang>li:hover>ul{
display:block;
}
#lang a,#lang a:link,#lang a:visited,#lang a:active{
padding:4px 8px;
text-decoration:none;
color:#000;
font-size:18px;
width:100px;
display:inline-block;
}
#lang>li>ul>li>a,#lang>li>ul>li>a:link,#lang>li>ul>li>a:visited,#lang>li>ul>li>a:active{
color:#5c5c5c;
}
#lang>li>ul>li:hover>a{
color:#000;
}
#logo{
position:absolute;
left:0px;
top:10px;
}
#logo a{
display:block;
background-image:url(/img/logotop.svg);
width:191px;
height:40px;
}
#logo span{
display:none;
}
#rightbox{
width:210px;
height:200px;
position:absolute;
right:0px;
top:16px;
border-radius:5px;
-webkit-border-radius:5px;
padding:5px;
}
#choose>a:first-child,#before>a:first-child,#start>a:first-child,#support>a:first-child{
padding:10px 8px 10px 48px;
color:#fff;
display:block;
text-align:left;
margin-bottom:10px;
text-decoration:none;
font-weight:bold;
border-radius:5px;
-webkit-border-radius:5px;
}
#choose img,#before img,#start img,#support img{
vertical-align:middle;
margin-right:8px;
margin-left:-40px;
}
#before>a:first-child,#start>a:first-child,#support>a:first-child{
background-color:#2c6fad;
border:1px solid #20598f;
background-image:linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
background-image:-o-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
background-image:-moz-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
background-image:-webkit-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
background-image:-ms-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
}
#before>a:first-child:hover,#start>a:first-child:hover,#support>a:first-child:hover{
background-image:linear-gradient(bottom, #2c6fad 14%, #2c6fad 70%);
background-image:-o-linear-gradient(bottom, #2c6fad 14%, #2c6fad 70%);
background-image:-moz-linear-gradient(bottom, #2c6fad 14%, #2c6fad 70%);
background-image:-webkit-linear-gradient(bottom, #2c6fad 14%, #2c6fad 70%);
background-image:-ms-linear-gradient(bottom, #2c6fad 14%, #2c6fad 70%);
}
#choose>a:first-child{
padding:12px 8px 12px 48px;
background-color:#e7750c;
border:1px solid #cc6100;
background-image:linear-gradient(bottom, #cc6100 14%, #e7750c 70%);
background-image:-o-linear-gradient(bottom, #cc6100 14%, #e7750c 70%);
background-image:-moz-linear-gradient(bottom, #cc6100 14%, #e7750c 70%);
background-image:-webkit-linear-gradient(bottom, #cc6100 14%, #e7750c 70%);
background-image:-ms-linear-gradient(bottom, #cc6100 14%, #e7750c 70%);
}
#choose>a:first-child:hover{
background-image:linear-gradient(bottom, #e7750c 14%, #e7750c 70%);
background-image:-o-linear-gradient(bottom, #e7750c 14%, #e7750c 70%);
background-image:-moz-linear-gradient(bottom, #e7750c 14%, #e7750c 70%);
background-image:-webkit-linear-gradient(bottom, #e7750c 14%, #e7750c 70%);
background-image:-ms-linear-gradient(bottom, #e7750c 14%, #e7750c 70%);
}
#menufor{
width:660px;
position:relative;
bottom:-18px;
margin:2px 0px 0px 210px;
padding:0px;
height:35px;
overflow:hidden;
}
#menufor li{
list-style:none;
float:left;
margin:0px 10px;
border-radius:5px;
-webkit-left-radius:5px;
}
#menufor li a,#menufor li a:active,#menufor li a:visited,#menufor li a:link{
font-family:'UbuntuBold', sans-serif;
font-size:17px;
display:block;
text-decoration:none;
padding:6px 6px 0px 6px;
text-shadow:0px 1px 1px rgba(0,0,0,0.15);
color:#2c6fad;
border-bottom:3px solid #2c6fad;
}
#menufor>li:hover,#menufor>li.active{
background-color:#2c6fad;
background-image:linear-gradient(bottom, #265f94 15%, #2c6fad 50%);
background-image:-o-linear-gradient(bottom, #265f94 15%, #2c6fad 50%);
background-image:-moz-linear-gradient(bottom, #265f94 15%, #2c6fad 50%);
background-image:-webkit-linear-gradient(bottom, #265f94 15%, #2c6fad 50%);
background-image:-ms-linear-gradient(bottom, #265f94 15%, #2c6fad 50%);
margin:0px 8px;
}
#menufor>li:hover>a,#menufor>li.active>a{
padding:6px 8px 0px 8px;
text-shadow:0px 2px 2px rgba(0,0,0,0.4);
border-bottom:3px solid #2c6fad;
border-radius:5px;
-webkit-left-radius:5px;
color:#fff;
}
.wrap{
width:980px;
margin:auto;
position:relative;
}
#menu{
padding:0px;
margin:0px;
margin:auto;
position:relative;
left:-6px;
top:24px;
height:32px;
}
#menu li{
list-style:none;
float:left;
border:1px solid transparent;
border-radius:3px;
-webkit-border-radius:3px;
}
#menu li a,#menu li a:active,#menu li a:visited,#menu li a:link{
font-family:'Ubuntu', sans-serif;
height:24px;
font-size:16px;
display:block;
color:#3f3f3f;
text-decoration:none;
padding:6px 10px;
}
#menu li:hover a,#menu li.active a{
color:#000;
}
#menu li:hover,#menu li.active{
background-color:#fff;
border:1px solid #d8d8d8;
box-shadow:0px 0px 14px rgba(0,0,0,0.15);
-moz-box-shadow:0px 0px 14px rgba(0,0,0,0.15);
-webkit-box-shadow:0px 0px 14px rgba(0,0,0,0.15);
}
#content{
margin-top:5px;
position:relative;
left:-40px;
padding:15px 210px 20px 40px;
width:740px;
text-align:justify;
background-color:#fff;
min-height:400px;
border-right:2px solid #ebebeb;
border-left:2px solid #ebebeb;
border-top:2px solid #ebebeb;
box-shadow:0px 15px 70px rgba(0, 0, 0, 0.2);
-moz-box-shadow:0px 15px 70px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:0px 15px 70px rgba(0, 0, 0, 0.2);
}
.index,.index ul,.index li{
list-style:none;
padding:0px;
margin:0px;
}
.index{
padding:20px;
border:2px dashed #4892b2;
display:inline-block;
}
.index>li>a{
font-weight:bold;
}
.index>ul{
padding:20px 0px 20px 20px;
}
.index a,.index a:link,.index a:active,.index a:visited{
display:block;
text-decoration:none;
}
.box{
width:600px;
border:2px dashed #4892b2;
padding:0px 20px 0px 20px;
}
.contributors{
width:900px;
}
.contributors a{
font-size:13px;
}
.contributors td{
padding:6px 0px;
}
.ressources li{
font-size:18px;
padding-top:6px;
}
.ressources a,.ressources a:link,.ressources a:active,.ressources a:visited{
text-decoration:none;
}
.ressources>li{
font-weight:bold;
}
.ressources>li>ul>li{
font-weight:normal;
}
.list>li{
padding:5px 0px 5px 0px;
}
.preview{
width:900px;
}
.previewcol{
clear:both;
}
.previewcol .previewrow:first-child{
padding-left:0px;
}
.previewrow{
float:left;
width:270px;
text-align:justify;
padding-left:40px;
position:relative;
}
.previewrow>h2{
font-size:18px;
}
.previewrow>span>span{
opacity:0;
transition:opacity 400ms ease-out;
-moz-transition:opacity 400ms ease-out;
-webkit-transition:opacity 400ms ease-out;
width:0px;
height:0px;
display:inline-block;
position:absolute;
left:-110px;
right:-110px;
padding:0px 30px;
margin-top:-270px;
background:url(/img/bubble.svg) bottom center no-repeat;
z-index:1000;
overflow:hidden;
}
.previewrow>span>span>h2{
margin-top:20px;
}
.previewrow>span:hover>span{
opacity:1;
width:auto;
height:280px;
}
.previewrow>span{
display:inline-block;
position:relative;
}
.previewrow>span>span>div{
position:absolute;
top:28px;
right:30px;
}
.previewrow>span>span>div>img{
margin-left:4px;
}
.previewrow>span>span>h2:first-child+div+p{
font-size:15px;
}
.previewrow>span>span>h2:first-child+div+p+p{
text-align:center;
}
.previewrow a,.previewrow a:link,.previewrow a:visited,.previewrow a:active{
font-weight:bold;
text-decoration:none;
font-size:20px;
}
.alert-message{
background-color:#fff;
}
.alert-message>div{
background-color:#fff;
background-color:#c5251f;
}
.alert-message.error>div{
background-color:#c5251f;
}
.alert-message.success>div{
background-color:#489e48;
}
.alert-message.info>div{
background-color:#517ea7;
}
.alert-message>div>div{
margin:auto;
width:960px;
padding:10px;
}
.alert-message,.alert-message a,.alert-message a:link,.alert-message a:active,.alert-message a:visited{
color:#fff;
}
.versiontext{
text-align:left;
}
.download a{
font-size:20px;
}
.summary{
font-size:20px;
}
.foundation{
width:500px;
margin:40px auto;
border:2px dashed #dfdfdf;
padding:40px;
border-radius:9px;
-webkit-border-radius:9px;
}
#footer{
position:relative;
left:-40px;
padding-left:40px;
padding-bottom:40px;
text-align:left;
margin-right:30px;
font-size:14px;
background-color:#fff;
width:950px;
border-right:2px solid #ebebeb;
border-left:2px solid #ebebeb;
border-bottom:2px solid #ebebeb;
}
#footer>div{
float:left;
margin-right:200px;
padding-top:6px;
border-top:#cfcfcf 2px solid;
}
@font-face{
font-family:'UbuntuRegular';
src:url('/font/ubuntu-r-webfont.eot');
src:url('/font/ubuntu-r-webfont.eot?iefix') format('eot'),
url('/font/ubuntu-r-webfont.woff') format('woff'),
url('/font/ubuntu-r-webfont.ttf') format('truetype'),
url('/font/ubuntu-r-webfont.svg#webfontKT0zjHSC') format('svg');
font-weight:normal;
font-style:normal;
}
@font-face{
font-family:'UbuntuItalic';
src:url('/font/ubuntu-ri-webfont.eot');
src:url('/font/ubuntu-ri-webfont.eot?iefix') format('eot'),
url('/font/ubuntu-ri-webfont.woff') format('woff'),
url('/font/ubuntu-ri-webfont.ttf') format('truetype'),
url('/font/ubuntu-ri-webfont.svg#webfontGetaoUfe') format('svg');
font-weight:normal;
font-style:normal;
}
@font-face{
font-family:'UbuntuBold';
src:url('/font/ubuntu-b-webfont.eot');
src:url('/font/ubuntu-b-webfont.eot?iefix') format('eot'),
url('/font/ubuntu-b-webfont.woff') format('woff'),
url('/font/ubuntu-b-webfont.ttf') format('truetype'),
url('/font/ubuntu-b-webfont.svg#webfontEreyFiHC') format('svg');
font-weight:normal;
font-style:normal;
}
@font-face{
font-family:'UbuntuBoldItalic';
src:url('/font/ubuntu-bi-webfont.eot');
src:url('/font/ubuntu-bi-webfont.eot?iefix') format('eot'),
url('/font/ubuntu-bi-webfont.woff') format('woff'),
url('/font/ubuntu-bi-webfont.ttf') format('truetype'),
url('/font/ubuntu-bi-webfont.svg#webfontf1YowZka') format('svg');
font-weight:normal;
font-style:normal;
}

View file

@ -1,819 +0,0 @@
/* Patterns.less
* Repeatable UI elements outside the base styles provided from the scaffolding
* ---------------------------------------------------------------------------- */
// TOPBAR
// ------
// Topbar for Branding and Nav
.topbar {
height: 40px;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10000;
overflow: visible;
// Links get text shadow
a {
color: @grayLight;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}
// Hover and active states
a:hover,
ul .active a {
background-color: #333;
background-color: rgba(255,255,255,.05);
color: @white;
text-decoration: none;
}
// Website name
h3 {
position: relative;
a {
float: left;
display: block;
padding: 8px 20px 12px;
margin-left: -20px; // negative indent to left-align the text down the page
color: @white;
font-size: 20px;
font-weight: 200;
line-height: 1;
}
}
// Search Form
form {
float: left;
margin: 5px 0 0 0;
position: relative;
.opacity(100);
}
input {
background-color: #444;
background-color: rgba(255,255,255,.3);
#font > .sans-serif(13px, normal, 1);
padding: 4px 9px;
color: #fff;
color: rgba(255,255,255,.75);
border: 1px solid #111;
.border-radius(4px);
@shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.25);
.box-shadow(@shadow);
.transition(none);
// Placeholder text gets special styles; can't be bundled together though for some reason
&:-moz-placeholder {
color: @grayLighter;
}
&::-webkit-input-placeholder {
color: @grayLighter;
}
// Hover states
&:hover {
background-color: @grayLight;
background-color: rgba(255,255,255,.5);
color: #fff;
}
// Focus states (we use .focused since IE8 and down doesn't support :focus)
&:focus,
&.focused {
outline: none;
background-color: #fff;
color: @grayDark;
text-shadow: 0 1px 0 #fff;
border: 0;
padding: 5px 10px;
.box-shadow(0 0 3px rgba(0,0,0,.15));
}
}
}
// gradient is applied to it's own element because overflow visible is not honored by ie when filter is present
// For backwards compatability, include .topbar .fill
.topbar-inner,
.topbar .fill {
background-color: #222;
#gradient > .vertical(#333, #222);
@shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
.box-shadow(@shadow);
}
// NAVIGATION
// ----------
// Topbar Nav
// ul.nav for all topbar based navigation to avoid inheritance issues and over-specificity
// For backwards compatibility, leave in .topbar div > ul
.topbar div > ul,
.nav {
display: block;
float: left;
margin: 0 10px 0 0;
position: relative;
left: 0;
> li {
display: block;
float: left;
}
a {
display: block;
float: none;
padding: 10px 10px 11px;
line-height: 19px;
text-decoration: none;
&:hover {
color: #fff;
text-decoration: none;
}
}
.active a {
background-color: #222;
background-color: rgba(0,0,0,.5);
}
// Secondary (floated right) nav in topbar
&.secondary-nav {
float: right;
margin-left: 10px;
margin-right: 0;
// backwards compatibility
.menu-dropdown,
.dropdown-menu {
right: 0;
}
}
// Dropdowns within the .nav
// a.menu:hover and li.open .menu for backwards compatibility
a.menu:hover,
li.open .menu,
.dropdown-toggle:hover,
.dropdown.open .dropdown-toggle {
background: #444;
background: rgba(255,255,255,.05);
}
// .menu-dropdown for backwards compatibility
.menu-dropdown,
.dropdown-menu {
background-color: #333;
// a.menu for backwards compatibility
a.menu,
.dropdown-toggle {
color: #fff;
&.open {
background: #444;
background: rgba(255,255,255,.05);
}
}
li a {
color: #999;
text-shadow: 0 1px 0 rgba(0,0,0,.5);
&:hover {
#gradient > .vertical(#292929,#191919);
color: #fff;
}
}
.divider {
background-color: #222;
border-color: #444;
}
}
}
// For backwards compatability with new dropdowns, redeclare dropdown link padding
.topbar ul .menu-dropdown li a,
.topbar ul .dropdown-menu li a {
padding: 4px 15px;
}
// Dropdown Menus
// Use the .menu class on any <li> element within the topbar or ul.tabs and you'll get some superfancy dropdowns
// li.menu for backwards compatibility
li.menu,
.dropdown {
position: relative;
}
// The link that is clicked to toggle the dropdown
// a.menu for backwards compatibility
a.menu:after,
.dropdown-toggle:after {
width: 0;
height: 0;
display: inline-block;
content: "&darr;";
text-indent: -99999px;
vertical-align: top;
margin-top: 8px;
margin-left: 4px;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #fff;
.opacity(50);
}
// The dropdown menu (ul)
// .menu-dropdown for backwards compatibility
.menu-dropdown,
.dropdown-menu {
background-color: #fff;
float: left;
display: none; // None by default, but block on "open" of the menu
position: absolute;
top: 40px;
min-width: 160px;
max-width: 220px;
_width: 160px;
margin-left: 0; // override default ul styles
margin-right: 0;
padding: 6px 0;
zoom: 1; // do we need this?
border-color: #999;
border-color: rgba(0,0,0,.2);
border-style: solid;
border-width: 0 1px 1px;
.border-radius(0 0 6px 6px);
.box-shadow(0 2px 4px rgba(0,0,0,.2));
.background-clip(padding-box);
// Unfloat any li's to make them stack
li {
float: none;
display: block;
background-color: none;
}
// Dividers (basically an hr) within the dropdown
.divider {
height: 1px;
margin: 5px 0;
overflow: hidden;
background-color: #eee;
border-bottom: 1px solid #fff;
}
}
.topbar .dropdown-menu, .dropdown-menu {
// Links within the dropdown menu
a {
display: block;
padding: 4px 15px;
clear: both;
font-weight: normal;
line-height: 18px;
color: @gray;
text-shadow: 0 1px 0 #fff;
// Hover state
&:hover {
#gradient > .vertical(#eeeeee, #dddddd);
color: @grayDark;
text-decoration: none;
@shadow: inset 0 1px 0 rgba(0,0,0,.025), inset 0 -1px rgba(0,0,0,.025);
.box-shadow(@shadow);
}
}
}
// Open state for the dropdown
// .open for backwards compatibility
.open,
.dropdown.open {
// .menu for backwards compatibility
.menu,
.dropdown-toggle {
color: #fff;
background: #ccc;
background: rgba(0,0,0,.3);
}
// .menu-dropdown for backwards compatibility
.menu-dropdown,
.dropdown-menu {
display: block;
}
}
// Tabs and Pills
.tabs,
.pills {
margin: 0 0 20px;
padding: 0;
list-style: none;
.clearfix();
> li {
float: left;
> a {
display: block;
}
}
}
// Basic Tabs
.tabs {
width: 100%;
border-bottom: 1px solid #ddd;
> li {
position: relative; // For the dropdowns mostly
top: 1px;
> a {
margin-right: 2px;
padding: 0 15px;
line-height: (@baseline * 2) - 1;
.border-radius(4px 4px 0 0);
&:hover {
background-color: #eee;
border-bottom: 1px solid #ddd;
text-decoration: none;
}
}
&.active > a {
background-color: #fff;
padding: 0 14px;
border: 1px solid #ddd;
border-bottom: 0;
color: @gray;
}
}
// first one for backwards compatibility
.menu-dropdown,
.dropdown-menu {
top: 35px;
border-width: 1px;
.border-radius(0 6px 6px 6px);
}
// first one for backwards compatibility
a.menu:after,
.dropdown-toggle:after {
border-top-color: #999;
margin-top: 15px;
margin-left: 5px;
}
// first one for backwards compatibility
li.open a.menu:after,
.dropdown.open .dropdown-toggle:after {
border-top-color: #555;
}
}
// Basic pill nav
.pills {
a {
margin: 5px 3px 5px 0;
padding: 0 15px;
text-shadow: 0 1px 1px #fff;
line-height: 30px;
.border-radius(15px);
&:hover {
background: @linkColorHover;
color: #fff;
text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,.25);
}
}
.active a {
background: @linkColor;
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,.25);
}
}
// PAGE HEADERS
// ------------
.hero-unit {
background-color: #f5f5f5;
margin-top: 60px;
margin-bottom: 30px;
padding: 60px;
.border-radius(6px);
h1 {
margin-bottom: 0;
font-size: 60px;
line-height: 1;
letter-spacing: -1px;
}
p {
font-size: 18px;
font-weight: 200;
line-height: @baseline * 1.5;
}
}
footer {
margin-top: @baseline - 1;
padding-top: @baseline - 1;
border-top: 1px solid #eee;
}
// PAGE HEADERS
// ------------
.page-header {
margin-bottom: @baseline - 1;
border-bottom: 1px solid #ddd;
.box-shadow(0 1px 0 rgba(255,255,255,.5));
h1 {
margin-bottom: (@baseline / 2) - 1px;
}
}
// BUTTON STYLES
// -------------
// Base .btn styles
.btn {
// Button Base
cursor: pointer;
display: inline-block;
#gradient > .vertical-three-colors(#ffffff, #ffffff, 25%, darken(#ffffff, 10%)); // Don't use .gradientbar() here since it does a three-color gradient
padding: 5px 14px 6px;
text-shadow: 0 1px 1px rgba(255,255,255,.75);
color: #333;
font-size: 13px;
line-height: normal;
border: 1px solid #ccc;
border-bottom-color: #bbb;
.border-radius(4px);
@shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
.box-shadow(@shadow);
&:hover {
background-position: 0 -15px;
color: #333;
text-decoration: none;
}
// Primary Button Type
&.primary {
color:#fff;
.gradientBar(@blue, @blueDark)
}
// Transitions
.transition(.1s linear all);
// Active and Disabled states
&:active {
@shadow: inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05);
.box-shadow(@shadow);
}
&.disabled {
cursor: default;
background-image: none;
.reset-filter();
.opacity(65);
.box-shadow(none);
}
&[disabled] {
// disabled pseudo can't be included with .disabled
// def because IE8 and below will drop it ;_;
cursor: default;
background-image: none;
.reset-filter();
.opacity(65);
.box-shadow(none);
}
// Button Sizes
&.large {
font-size: 16px;
line-height: normal;
padding: 9px 14px 9px;
.border-radius(6px);
}
&.small {
padding: 7px 9px 7px;
font-size: 11px;
}
}
// Super jank hack for removing border-radius from IE9 so we can keep filter gradients on alerts and buttons
:root .alert-message,
:root .btn {
border-radius: 0 \0;
}
// Help Firefox not be a jerk about adding extra padding to buttons
button.btn,
input[type=submit].btn {
&::-moz-focus-inner {
padding: 0;
border: 0;
}
}
// ERROR STYLES
// ------------
// Base alert styles
.alert-message {
.gradientBar(#fceec1, #eedc94); // warning by default
margin-bottom: @baseline;
padding: 7px 14px;
color: @grayDark;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
border-width: 1px;
border-style: solid;
.border-radius(4px);
.box-shadow(inset 0 1px 0 rgba(255,255,255,.25));
// Remove extra margin from content
h5 {
line-height: @baseline;
}
p {
margin-bottom: 0;
}
div {
margin-top: 5px;
margin-bottom: 2px;
line-height: 28px;
}
.btn {
// Provide actions with buttons
.box-shadow(0 1px 0 rgba(255,255,255,.25));
}
.close {
float: right;
margin-top: -2px;
color: @black;
font-size: 20px;
font-weight: bold;
text-shadow: 0 1px 0 rgba(255,255,255,1);
.opacity(20);
&:hover {
color: @black;
text-decoration: none;
.opacity(40);
}
}
&.block-message {
background-image: none;
background-color: lighten(#fceec1, 5%);
.reset-filter();
padding: 14px;
border-color: #fceec1;
.box-shadow(none);
p {
margin-right: 30px;
}
.alert-actions {
margin-top: 5px;
}
&.error,
&.success,
&.info {
color: @grayDark;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
&.error {
background-color: lighten(#f56a66, 25%);
border-color: lighten(#f56a66, 20%);
}
&.success {
background-color: lighten(#62c462, 30%);
border-color: lighten(#62c462, 25%);
}
&.info {
background-color: lighten(#6bd0ee, 25%);
border-color: lighten(#6bd0ee, 20%);
}
}
}
// PAGINATION
// ----------
.pagination {
height: @baseline * 2;
margin: @baseline 0;
ul {
float: left;
margin: 0;
border: 1px solid #ddd;
border: 1px solid rgba(0,0,0,.15);
.border-radius(3px);
.box-shadow(0 1px 2px rgba(0,0,0,.05));
}
li {
display: inline;
}
a {
float: left;
padding: 0 14px;
line-height: (@baseline * 2) - 2;
border-right: 1px solid;
border-right-color: #ddd;
border-right-color: rgba(0,0,0,.15);
*border-right-color: #ddd; /* IE6-7 */
text-decoration: none;
}
a:hover,
.active a {
background-color: lighten(@blue, 45%);
}
.disabled a,
.disabled a:hover {
background-color: transparent;
color: @grayLight;
}
.next a {
border: 0;
}
}
// WELLS
// -----
.well {
background-color: #f5f5f5;
margin-bottom: 20px;
padding: 19px;
min-height: 20px;
border: 1px solid #eee;
border: 1px solid rgba(0,0,0,.05);
.border-radius(4px);
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
}
// MODALS
// ------
.modal-backdrop {
background-color: rgba(0,0,0,.5);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
z-index: 2000;
width: 560px;
margin: -280px 0 0 -250px;
background-color: @white;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.3);
*border: 1px solid #999; /* IE6-7 */
.border-radius(6px);
.box-shadow(0 3px 7px rgba(0,0,0,0.3));
.background-clip(padding-box);
}
.modal-header {
border-bottom: 1px solid #eee;
padding: 5px 20px;
.close {
position: absolute;
right: 10px;
top: 10px;
color: #999;
line-height:10px;
font-size: 18px;
}
}
.modal-body {
padding: 20px;
}
.modal-footer {
background-color: #f5f5f5;
padding: 14px 20px 15px;
border-top: 1px solid #ddd;
.border-radius(0 0 6px 6px);
.box-shadow(inset 0 1px 0 #fff);
.clearfix();
margin-bottom: 0;
.btn {
float: right;
margin-left: 10px;
}
}
// POPOVER ARROWS
// --------------
#popoverArrow {
.above(@arrowWidth: 5px) {
bottom: 0;
left: 50%;
margin-left: -@arrowWidth;
border-left: @arrowWidth solid transparent;
border-right: @arrowWidth solid transparent;
border-top: @arrowWidth solid #000;
}
.left(@arrowWidth: 5px) {
top: 50%;
right: 0;
margin-top: -@arrowWidth;
border-top: @arrowWidth solid transparent;
border-bottom: @arrowWidth solid transparent;
border-left: @arrowWidth solid #000;
}
.below(@arrowWidth: 5px) {
top: 0;
left: 50%;
margin-left: -@arrowWidth;
border-left: @arrowWidth solid transparent;
border-right: @arrowWidth solid transparent;
border-bottom: @arrowWidth solid #000;
}
.right(@arrowWidth: 5px) {
top: 50%;
left: 0;
margin-top: -@arrowWidth;
border-top: @arrowWidth solid transparent;
border-bottom: @arrowWidth solid transparent;
border-right: @arrowWidth solid #000;
}
}
// TWIPSY
// ------
.twipsy {
display: block;
position: absolute;
visibility: visible;
padding: 5px;
font-size: 11px;
z-index: 1000;
.opacity(80);
&.above .twipsy-arrow { #popoverArrow > .above(); }
&.left .twipsy-arrow { #popoverArrow > .left(); }
&.below .twipsy-arrow { #popoverArrow > .below(); }
&.right .twipsy-arrow { #popoverArrow > .right(); }
}
.twipsy-inner {
padding: 3px 8px;
background-color: #000;
color: white;
text-align: center;
max-width: 200px;
text-decoration: none;
.border-radius(4px);
}
.twipsy-arrow {
position: absolute;
width: 0;
height: 0;
}
// POPOVERS
// --------
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1000;
padding: 5px;
display: none;
&.above .arrow { #popoverArrow > .above(); }
&.right .arrow { #popoverArrow > .right(); }
&.below .arrow { #popoverArrow > .below(); }
&.left .arrow { #popoverArrow > .left(); }
.arrow {
position: absolute;
width: 0;
height: 0;
}
.inner {
background: #333;
background: rgba(0,0,0,.8);
padding: 3px;
overflow: hidden;
width: 280px;
.border-radius(6px);
.box-shadow(0 3px 7px rgba(0,0,0,0.3));
}
.title {
background-color: #f5f5f5;
padding: 9px 15px;
line-height: 1;
.border-radius(3px 3px 0 0);
border-bottom:1px solid #eee;
}
.content {
background-color: @white;
padding: 14px;
.border-radius(0 0 3px 3px);
.background-clip(padding-box);
p, ul, ol {
margin-bottom: 0;
}
}
}

View file

@ -1,279 +0,0 @@
/* Preboot.less
* Variables and mixins to pre-ignite any new web development project
* ------------------------------------------------------------------ */
// VARIABLES
// ---------
// Links
@linkColor: #0069d6;
@linkColorHover: darken(@linkColor, 10);
// Grays
@black: #000;
@grayDark: lighten(@black, 25%);
@gray: lighten(@black, 50%);
@grayLight: lighten(@black, 75%);
@grayLighter: lighten(@black, 90%);
@white: #fff;
// Accent Colors
@blue: #049CDB;
@blueDark: #0064CD;
@green: #46a546;
@red: #9d261d;
@yellow: #ffc40d;
@orange: #f89406;
@pink: #c3325f;
@purple: #7a43b6;
// Baseline grid
@basefont: 13px;
@baseline: 18px;
// Griditude
@gridColumns: 16;
@gridColumnWidth: 40px;
@gridGutterWidth: 20px;
@extraSpace: (@gridGutterWidth * 2); // For our grid calculations
@siteWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
// Color Scheme
@baseColor: @blue; // Set a base color
@complement: spin(@baseColor, 180); // Determine a complementary color
@split1: spin(@baseColor, 158); // Split complements
@split2: spin(@baseColor, -158);
@triad1: spin(@baseColor, 135); // Triads colors
@triad2: spin(@baseColor, -135);
@tetra1: spin(@baseColor, 90); // Tetra colors
@tetra2: spin(@baseColor, -90);
@analog1: spin(@baseColor, 22); // Analogs colors
@analog2: spin(@baseColor, -22);
// MIXINS
// ------
// Clearfix for clearing floats like a boss h5bp.com/q
.clearfix {
zoom: 1;
&:before, &:after {
display: table;
content: "";
}
&:after {
clear: both;
}
}
// Center-align a block level element
.center-block {
display: block;
margin: 0 auto;
}
// Sizing shortcuts
.size(@height: 5px, @width: 5px) {
height: @height;
width: @width;
}
.square(@size: 5px) {
.size(@size, @size);
}
// Input placeholder text
.placeholder(@color: @grayLight) {
:-moz-placeholder {
color: @color;
}
::-webkit-input-placeholder {
color: @color;
}
}
// Font Stacks
#font {
.shorthand(@weight: normal, @size: 14px, @lineHeight: 20px) {
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
.sans-serif(@weight: normal, @size: 14px, @lineHeight: 20px) {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
.serif(@weight: normal, @size: 14px, @lineHeight: 20px) {
font-family: "Georgia", Times New Roman, Times, serif;
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
.monospace(@weight: normal, @size: 12px, @lineHeight: 20px) {
font-family: "Monaco", Courier New, monospace;
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
}
// Grid System
.container {
width: @siteWidth;
margin: 0 auto;
.clearfix();
}
.columns(@columnSpan: 1) {
width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1));
}
.offset(@columnOffset: 1) {
margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) + @extraSpace;
}
// Border Radius
.border-radius(@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
// Drop shadows
.box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
-webkit-box-shadow: @shadow;
-moz-box-shadow: @shadow;
box-shadow: @shadow;
}
// Transitions
.transition(@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
transition: @transition;
}
// Background clipping
.background-clip(@clip) {
-webkit-background-clip: @clip;
-moz-background-clip: @clip;
background-clip: @clip;
}
// CSS3 Content Columns
.content-columns(@columnCount, @columnGap: 20px) {
-webkit-column-count: @columnCount;
-moz-column-count: @columnCount;
column-count: @columnCount;
-webkit-column-gap: @columnGap;
-moz-column-gap: @columnGap;
column-gap: @columnGap;
}
// Add an alphatransparency value to any background or border color (via Elyse Holladay)
#translucent {
.background(@color: @white, @alpha: 1) {
background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
}
.border(@color: @white, @alpha: 1) {
border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
background-clip: padding-box;
}
}
// Gradient Bar Colors for buttons and allerts
.gradientBar(@primaryColor, @secondaryColor) {
#gradient > .vertical(@primaryColor, @secondaryColor);
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
}
// Shared colors for buttons and alerts
.btn,
.alert-message {
// Set text color
&.danger,
&.danger:hover,
&.error,
&.error:hover,
&.success,
&.success:hover,
&.info,
&.info:hover {
color: @white
}
// Danger and error appear as red
&.danger,
&.error {
.gradientBar(#ee5f5b, #c43c35);
}
// Success appears as green
&.success {
.gradientBar(#62c462, #57a957);
}
// Info appears as a neutral blue
&.info {
.gradientBar(#5bc0de, #339bb9);
}
}
// Gradients
#gradient {
.horizontal (@startColor: #555, @endColor: #333) {
background-color: @endColor;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, right top, from(@startColor), to(@endColor)); // Konqueror
background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(left, @startColor, @endColor); // IE10
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(left, @startColor, @endColor); // Le standard
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE9 and down
}
.vertical (@startColor: #555, @endColor: #333) {
background-color: @endColor;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); // Konqueror
background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(top, @startColor, @endColor); // The standard
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down
}
.directional (@startColor: #555, @endColor: #333, @deg: 45deg) {
background-color: @endColor;
background-repeat: repeat-x;
background-image: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(@deg, @startColor, @endColor); // IE10
background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(@deg, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(@deg, @startColor, @endColor); // The standard
}
.vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
background-color: @endColor;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
background-image: -ms-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down, gets no color-stop at all for proper fallback
}
}
// Reset filters for IE
.reset-filter() {
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
// Opacity
.opacity(@opacity: 100) {
filter: e(%("alpha(opacity=%d)", @opacity));
-khtml-opacity: @opacity / 100;
-moz-opacity: @opacity / 100;
opacity: @opacity / 100;
}

View file

@ -1,136 +0,0 @@
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
// ERIC MEYER RESET
// --------------------------------------------------
html, body { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
ol, ul { list-style: none; }
q:before, q:after, blockquote:before, blockquote:after { content: ""; }
// Normalize.css
// Pulling in select resets form the normalize.css project
// --------------------------------------------------
// Display in IE6-9 and FF3
// -------------------------
// Source: http://github.com/necolas/normalize.css
html {
overflow-y: scroll;
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
// Focus states
a:focus {
outline: thin dotted;
}
// Display in IE6-9 and FF3
// -------------------------
// Source: http://github.com/necolas/normalize.css
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
display: block;
}
// Display block in IE6-9 and FF3
// -------------------------
// Source: http://github.com/necolas/normalize.css
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
// Prevents modern browsers from displaying 'audio' without controls
// -------------------------
// Source: http://github.com/necolas/normalize.css
audio:not([controls]) {
display: none;
}
// Prevents sub and sup affecting line-height in all browsers
// -------------------------
// Source: http://github.com/necolas/normalize.css
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
// Img border in a's and image quality
// -------------------------
// Source: http://github.com/necolas/normalize.css
img {
border: 0;
-ms-interpolation-mode: bicubic;
}
// Forms
// -------------------------
// Source: http://github.com/necolas/normalize.css
// Font size in all browsers, margin changes, misc consistency
button,
input,
select,
textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
*vertical-align: middle;
}
button,
input {
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
*overflow: visible; // Inner spacing ie IE6/7
}
button::-moz-focus-inner,
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
border: 0;
padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer; // Cursors on all buttons applied consistently
-webkit-appearance: button; // Style clicable inputs in iOS
}
input[type="search"] { // Appearance in Safari/Chrome
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
}
textarea {
overflow: auto; // Remove vertical scrollbar in IE6-9
vertical-align: top; // Readability and alignment cross-browser
}

View file

@ -1,110 +0,0 @@
/*
* Scaffolding
* Basic and global styles for generating a grid system, structural layout, and page templates
* ------------------------------------------------------------------------------------------- */
// GRID SYSTEM
// -----------
.row {
.clearfix();
margin-left: -1 * @gridGutterWidth;
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
// Credit to @dhg for the idea
[class*="span"] {
display: inline;
float: left;
margin-left: @gridGutterWidth;
}
// Default columns
.span1 { .columns(1); }
.span2 { .columns(2); }
.span3 { .columns(3); }
.span4 { .columns(4); }
.span5 { .columns(5); }
.span6 { .columns(6); }
.span7 { .columns(7); }
.span8 { .columns(8); }
.span9 { .columns(9); }
.span10 { .columns(10); }
.span11 { .columns(11); }
.span12 { .columns(12); }
.span13 { .columns(13); }
.span14 { .columns(14); }
.span15 { .columns(15); }
.span16 { .columns(16); }
// Offset column options
.offset1 { .offset(1); }
.offset2 { .offset(2); }
.offset3 { .offset(3); }
.offset4 { .offset(4); }
.offset5 { .offset(5); }
.offset6 { .offset(6); }
.offset7 { .offset(7); }
.offset8 { .offset(8); }
.offset9 { .offset(9); }
.offset10 { .offset(10); }
.offset11 { .offset(11); }
.offset12 { .offset(12); }
// Unique column sizes for 16-column grid
.span-one-third { width: 300px; }
.span-two-thirds { width: 620px; }
.offset-one-third { margin-left: 340px; }
.offset-two-thirds { margin-left: 660px; }
}
// STRUCTURAL LAYOUT
// -----------------
html, body {
background-color: #fff;
}
body {
margin: 0;
#font > .sans-serif(normal,@basefont,@baseline);
color: @gray;
}
// Container (centered, fixed-width layouts)
.container {
width: 940px;
margin: 0 auto;
}
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
.container-fluid {
padding: 0 20px;
.clearfix();
> .sidebar {
float: left;
width: 220px;
}
// TODO in v2: rename this and .popover .content to be more specific
> .content {
min-width: 700px;
max-width: 1180px;
margin-left: 240px;
}
}
// BASE STYLES
// -----------
// Links
a {
color: @linkColor;
text-decoration: none;
line-height: inherit;
font-weight: inherit;
&:hover {
color: @linkColorHover;
text-decoration: underline;
}
}

View file

@ -1,148 +0,0 @@
/*
* Tables.less
* Tables for, you guessed it, tabular data
* ---------------------------------------- */
// BASELINE STYLES
// ---------------
table {
width: 100%;
margin-bottom: @baseline;
padding: 0;
border-collapse: separate;
font-size: 13px;
th, td {
padding: 10px 10px 9px;
line-height: @baseline * .75;
text-align: left;
vertical-align: middle;
border-bottom: 1px solid #ddd;
}
th {
padding-top: 9px;
font-weight: bold;
border-bottom-width: 2px;
}
}
// ZEBRA-STRIPING
// --------------
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
.zebra-striped {
tbody {
tr:nth-child(odd) td {
background-color: #f9f9f9;
}
tr:hover td {
background-color: #f5f5f5;
}
}
// Tablesorting styles w/ jQuery plugin
.header {
cursor: pointer;
&:after {
content: "";
float: right;
margin-top: 7px;
border-width: 0 4px 4px;
border-style: solid;
border-color: #000 transparent;
visibility: hidden;
}
}
// Style the sorted column headers (THs)
.headerSortUp,
.headerSortDown {
background-color: rgba(141,192,219,.25);
text-shadow: 0 1px 1px rgba(255,255,255,.75);
.border-radius(3px 3px 0 0);
}
// Style the ascending (reverse alphabetical) column header
.header:hover {
&:after {
visibility:visible;
}
}
// Style the descending (alphabetical) column header
.headerSortDown,
.headerSortDown:hover {
&:after {
visibility:visible;
.opacity(60);
}
}
// Style the ascending (reverse alphabetical) column header
.headerSortUp {
&:after {
border-bottom: none;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #000;
visibility:visible;
.box-shadow(none); //can't add boxshadow to downward facing arrow :(
.opacity(60);
}
}
}
table {
// Blue Table Headings
.blue {
color: @blue;
border-bottom-color: @blue;
}
.headerSortUp.blue,
.headerSortDown.blue {
background-color: lighten(@blue, 40%);
}
// Green Table Headings
.green {
color: @green;
border-bottom-color: @green;
}
.headerSortUp.green,
.headerSortDown.green {
background-color: lighten(@green, 40%);
}
// Red Table Headings
.red {
color: @red;
border-bottom-color: @red;
}
.headerSortUp.red,
.headerSortDown.red {
background-color: lighten(@red, 50%);
}
// Yellow Table Headings
.yellow {
color: @yellow;
border-bottom-color: @yellow;
}
.headerSortUp.yellow,
.headerSortDown.yellow {
background-color: lighten(@yellow, 40%);
}
// Orange Table Headings
.orange {
color: @orange;
border-bottom-color: @orange;
}
.headerSortUp.orange,
.headerSortDown.orange {
background-color: lighten(@orange, 40%);
}
// Purple Table Headings
.purple {
color: @purple;
border-bottom-color: @purple;
}
.headerSortUp.purple,
.headerSortDown.purple {
background-color: lighten(@purple, 40%);
}
}

View file

@ -1,188 +0,0 @@
/* Typography.less
* Headings, body text, lists, code, and more for a versatile and durable typography system
* ---------------------------------------------------------------------------------------- */
// BODY TEXT
// ---------
p {
#font > .shorthand(normal,@basefont,@baseline);
margin-bottom: @baseline / 2;
small {
font-size: @basefont - 2;
color: @grayLight;
}
}
// HEADINGS
// --------
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
color: @grayDark;
small {
color: @grayLight;
}
}
h1 {
margin-bottom: @baseline;
font-size: 30px;
line-height: @baseline * 2;
small {
font-size: 18px;
}
}
h2 {
font-size: 24px;
line-height: @baseline * 2;
small {
font-size: 14px;
}
}
h3, h4, h5, h6 {
line-height: @baseline * 2;
}
h3 {
font-size: 18px;
small {
font-size: 14px;
}
}
h4 {
font-size: 16px;
small {
font-size: 12px;
}
}
h5 {
font-size: 14px;
}
h6 {
font-size: 13px;
color: @grayLight;
text-transform: uppercase;
}
// COLORS
// ------
// Unordered and Ordered lists
ul, ol {
margin: 0 0 @baseline 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
margin-bottom: 0;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li {
line-height: @baseline;
color: @gray;
}
ul.unstyled {
list-style: none;
margin-left: 0;
}
// Description Lists
dl {
margin-bottom: @baseline;
dt, dd {
line-height: @baseline;
}
dt {
font-weight: bold;
}
dd {
margin-left: @baseline / 2;
}
}
// MISC
// ----
// Horizontal rules
hr {
margin: 0 0 19px;
border: 0;
border-bottom: 1px solid #eee;
}
// Emphasis
strong {
font-style: inherit;
font-weight: bold;
line-height: inherit;
}
em {
font-style: italic;
font-weight: inherit;
line-height: inherit;
}
.muted {
color: @grayLight;
}
// Blockquotes
blockquote {
margin-bottom: @baseline;
border-left: 5px solid #eee;
padding-left: 15px;
p {
#font > .shorthand(300,14px,@baseline);
margin-bottom: 0;
}
small {
display: block;
#font > .shorthand(300,12px,@baseline);
color: @grayLight;
&:before {
content: '\2014 \00A0';
}
}
}
// Addresses
address {
display: block;
line-height: @baseline;
margin-bottom: @baseline;
}
// Inline and block code styles
code, pre {
padding: 0 3px 2px;
font-family: Monaco, Andale Mono, Courier New, monospace;
font-size: 12px;
.border-radius(3px);
}
code {
background-color: lighten(@orange, 40%);
color: rgba(0,0,0,.75);
padding: 1px 3px;
}
pre {
background-color: #f5f5f5;
display: block;
padding: @baseline - 1;
margin: 0 0 @baseline;
line-height: @baseline;
font-size: 12px;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.15);
.border-radius(3px);
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}

View file

@ -42,6 +42,9 @@ module Jekyll
css_file = digest + ".css"
css_path = File.join(site.dest, css_file)
if !Dir.exist?(site.dest)
Dir.mkdir(site.dest)
end
File.open(css_path, "w") do |f|
f.write(css)
end

View file

@ -1,94 +1,8 @@
---
layout: simple
title: About Bitcoin
---
<div class="container">
<section id="about">
<h1>About Bitcoin</h1>
<div class="row">
<div class="span10">
<h2>Introduction</h2>
<p>Bitcoin is one of the first implementations of a concept called crypto-currency, which was first described in 1998 by Wei Dai on the cypherpunks mailing list. Building upon the notion that money is any object, or any sort of record, accepted as payment for goods and services and repayment of debts in a given country or socio-economic context, Bitcoin is designed around the idea of using cryptography to control the creation and transfer of money, rather than relying on central authorities.</p>
</div>
<div class="span6">
<h2>Technology</h2>
<p>If you are interested in learning more about the technical details of Bitcoin it is recommended you start with these documents:</p>
<ul>
<li><a href="bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules">Protocol rules</a></li>
<li><a href="https://en.bitcoin.it/wiki/Category:Technical">Bitcoin Wiki</a></li>
</ul>
</div>
</div>
</section>
<section id="features">
<h1>Features</h1>
<div class="row">
<div class="span12">
<p>These are the basic features of any Bitcoin-like network.</p>
<ul>
<li>Bitcoins can be transferred between arbitrary nodes on the network.</li>
<li>Transactions are irreversible.</li>
<li>Double spending is prevented by using a <a href="https://en.bitcoin.it/wiki/Block_chain">block chain</a>.</li>
<li>Transactions are broadcasted within seconds and <a href="https://en.bitcoin.it/wiki/FAQ#Why_do_I_have_to_wait_10_minutes_before_I_can_spend_money_I_received.3F">verified within 10 to 60 minutes</a>.</li>
<li>Transactions can be received at any time regardless of whether your computer is turned on or off.</li>
</ul>
<h2>Economic rules</h2>
<p>These rules are enforced collectively by the network. While they will not change for Bitcoin, other digital currencies using Bitcoin's technology may change them to suit their needs.</p>
<ul>
<li>Hard limit of <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">about 21 million Bitcoins</a>.</li>
<li>Bitcoins are divisible to 8 decimal places yielding a total of approx. 21×10<sup>14</sup> currency units.</li>
<li>Transactions are cheap, and mostly free (<a href="https://en.bitcoin.it/wiki/Transaction_fees">Transaction fees</a>).</li>
</ul>
<h2>Features of the Bitcoin network</h2>
<p>The network has been running for more than 45 months yielding to some impressive security features.</p>
<ul>
<li>Long block chain (more than 204.000 blocks) with lots of processing power securing transactions.</li>
<li>Only one major <a href="https://en.bitcoin.it/wiki/Incidents#Value_overflow">incident</a> (fixed in August 2010).</li>
</ul>
</div>
</div>
</section>
<section id="contributors">
<h1>Contributors <small>ordered by number of commits</small></h1>
<table class="unstyled">
<tr>
{% for c in site.project.contributors %}
<td>
{% if c.gravatar_id %}
<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" />
{% else %}
<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" />
{% endif %}
{% if c.login %}
<a href="http://github.com/{{c.login}}">
{{ c.name }} ({{ c.contributions }})
</a>
{% else %}
{{ c.name }} ({{ c.contributions }})
{% endif %}
</td>
{% cycle nil, nil, nil, nil, '</tr><tr>' %}
{% endfor %}
</tr>
</table>
</section>
</div>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--Javascript redirect to the new url-->
<html>
<head>
<meta name="robots" content="noindex">
<script>window.location.href='/en/about';</script>
</head>
</html>

View file

@ -1,5 +1,5 @@
---
layout: simple
layout: base-en
---
<div class="container">
<section id="dos">

View file

@ -1,132 +1,8 @@
---
layout: simple
title: Clients
clients:
- name: Bitcoin-Qt
url: bitcoin.org
image: bitcoin-qt.png
description: |
The original software written by Satoshi Nakamoto, the
project's founder. If you aren't sure which program to
pick, this is a good bet. This application is a
peer-to-peer client that builds the backbone of the Bitcoin
network. It is suited for enthusiasts, merchants, miners,
developers and people who want to help support the project.
People who run Bitcoin-Qt are first class network citizens
and have the highest levels of security, privacy and
stability. However, it can be very resource intensive and
you should be willing to leave it running in the background
so other computers can connect to yours. If your computer
is low powered or you aren't willing to tolerate a 8-hour+
initial start time, you should consider other clients.
Cutting edge features tend to be implemented in other
clients first.
platforms:
- name: linux
- name: win
- name: osx-uni
- name: MultiBit
url: multibit.org
image: multibit.png
description: |
MultiBit's primary focus is being fast and easy to use,
even for people with no technical knowledge. It has a
YouTube channel to help you learn the software, and
includes helpful features such as an exchange rate ticker.
MultiBit supports many languages such as German, Spanish
and Greek. MultiBit synchronizes with the network much
faster than Bitcoin-Qt and should be ready for you to use
within a few minutes. This is a good choice for non
technical users who want an easy to use experience,
especially if you use a Mac.
platforms:
- name: linux
- name: win
- name: osx-uni
- name: Armory
url: bitcoinarmory.com
image: armory.png
description: |
Armory is a Bitcoin client that works on top of
Bitcoin-Qt, expanding it with functionality for Bitcoin
power users. It focuses on advanced features and security
options, including "cold-storage" for maintaining Bitcoins
on an offline computer to protect your funds from online
threats. Armory supports multiple encrypted wallets, each
of which only needs to be backed up once using a printer or
removable media. Armory is a good choice for experienced
Bitcoin users, seeking additional flexibility and security
for managing their funds.
platforms:
- name: linux
- name: win
- name: Electrum
url: electrum.org
image: electrum.png
description: |
Electrum's focus is speed, with low resource usage and
simplifying Bitcoin. You do not need to perform regular
backups, because your wallet can be recovered from a secret
phrase that you can memorize or write on paper. Startup
times are instant because it operates in conjuction with
high-performance servers that handle the most complicated
parts of the Bitcoin system.
platforms:
- name: linux
- name: osx-uni
- name: win
- name: android
- name: Bitcoin Wallet
url: play.google.com/store/apps/details?id=de.schildbach.wallet
image: bitcoin-wallet.png
description: |
Bitcoin Wallet is a standalone wallet for Android devices.
Its primary focus is security, ease of use and being independant
of centralized network components (servers). Thus, it uses the
SPV (simple payment verification) model. It supports
initiating transactions via QR code, Bitcoin URIs or near-field
communication (NFC). It has a useful currency conversion
calculator and is localized to a dozen languages.
platforms:
- name: android
---
<div class="container">
<section id="graphical-interfaces">
<h1>Bitcoin Client Software</h1>
<p>Bitcoin is a system of merchants, individuals, a network of participants and software. Together they maintain a mutually co-operating infrastructure without the need for authorities - a decentralised peer-to-peer system. A core layer of the Bitcoin system is the Bitcoin network through which people interact with it using Bitcoin client software. Below we list such software.</p>
<p>Bitcoin clients are the base level of technology for conducting Bitcoin transactions. Clients usually store a collection of keys on that computer (often termed a wallet). These keys allow you to send and receive payments through the Bitcoin network. Nobody has access to these keys except yourself, and they must be kept secure. This is where clients differ, with ingenious strategies and ongoing research into making a user-friendly and secure client - not an easy task when both goals often conflict!</p>
<div class="row">
{% for client in page.clients %}
{% cycle '', '', '', '</div><br><div class="row">' %}
<div class="span-one-third">
<h2><a href="http://{{ client.url }}">{{ client.name }}</a></h2>
<img src="img/clients/{{ client.image }}" />
<p>{{ client.description }}</p>
<p>Website: <a href="http://{{ client.url }}">{{ client.url }}</a></p>
<p>Platforms:
{% for platform in client.platforms %}
<img src="img/ico-{{ platform.name }}.png" />
{% endfor %}
</p>
</div>
{% endfor %}
</div>
</section>
<!--
<section id="website-frontends">
<h1>Website Frontends</h1>
<div class="row">
<div class="span5">
<h2><a href="http://bitcoin.org">Bitcoin-Qt</a></h2>
<img src="img/bitcoin.png" />
<p>Website: <a href="http://bitcoin.org">bitcoin.org</a></p>
<p>Bitcoin is one of the first implementations of a concept called crypto-currency, which was first described in 1998 by Wei Dai on the cypherpunks mailing list. Building upon the notion that money is any object, or any sort of record, accepted as payment for goods and services and repayment of debts in a given country or socio-economic context, Bitcoin is designed around the idea of using cryptography to control the creation and transfer of money, rather than relying on central authorities.</p>
</div>
...
</div>
</section>
-->
</div>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--Javascript redirect to the new url-->
<html>
<head>
<meta name="robots" content="noindex">
<script>window.location.href='/en/choose-your-wallet';</script>
</head>
</html>

View file

@ -1,5 +1,5 @@
---
layout: simple
layout: base-en
---
<div class="container">
<section id="critfix">

View file

@ -1,5 +1,5 @@
---
layout: simple
layout: base-en
---
<div class="container">
<section id="dos">

40
en/about.html Normal file
View file

@ -0,0 +1,40 @@
---
layout: base-en
title: About - Bitcoin
---
<h1>About Bitcoin</h1>
<h2>A bit of history</h2>
<p>Bitcoin is one of the first implementations of a concept called crypto-currency, which was first described in 1998 by Wei Dai on the cypherpunks mailing list. Building upon the notion that money is any object, or any sort of record, accepted as payment for goods and services and repayment of debts in a given country or socio-economic context, Bitcoin is designed around the idea of a new form of money that uses cryptography to control its creation and transactions, rather than relying on central authorities.</p>
<p>In 2009, the first Bitcoin specification and proof of concept was published in a Cryptography mailing list by a member under the pseudonym of Satoshi Nakamoto. Towards the end of 2010 Satoshi left the project saying he had moved on to other things. The creator of Bitcoin never revealed his identity and simply left his invention to the world. The origin and the motivation behind Bitcoin is still today a great source of mystery.</p>
<p>Since 2010, the Bitcoin community has grown with many developers working on the project. During June and July 2011, Bitcoin suddenly gained media attention leading to a massive buy rally. The resulting bubble slowly deflated through the latter part of 2011 and the value of Bitcoin has since slowly climbed once again back to its 2011 heights.</p>
<p>On September 27th 2012, the Bitcoin Foundation was created in an effort to standardize, protect, and promote Bitcoin. Today, the Bitcoin economy is developing quickly with new users joining every day.</p>
<h2>Technical features</h2>
<p>These are the basic features of any Bitcoin-like network.</p>
<ul class="list">
<li>Bitcoins can be transferred between arbitrary nodes on the network.</li>
<li>Transactions are irreversible.</li>
<li>Double spending is prevented by using a <a href="https://en.bitcoin.it/wiki/Block_chain">block chain</a>.</li>
<li>Transactions are broadcast within seconds and <a href="https://en.bitcoin.it/wiki/FAQ#Why_do_I_have_to_wait_10_minutes_before_I_can_spend_money_I_received.3F">verified within 10 to 60 minutes</a>.</li>
<li>Transaction processing and money issuance are carried out collectively through <a href="https://en.bitcoin.it/wiki/Mining">mining</a>.</li>
<li>Transactions can be received at any time regardless of whether your computer is turned on or off.</li>
</ul>
<h2>Economic rules</h2>
<p>These rules are enforced collectively by the network. While they will not change for Bitcoin, other digital currencies using the same technology may change them to suit their needs.</p>
<ul class="list">
<li>Hard limit of <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">about 21 million Bitcoins</a>.</li>
<li>Bitcoins are divisible to 8 decimal places yielding a total of approx. 21×10<sup>14</sup> currency units.</li>
<li>Transactions are cheap, and <a href="https://en.bitcoin.it/wiki/Transaction_fees">mostly free</a>.</li>
</ul>
<h2>Statistics</h2>
<p>The network has been running for more than 45 months, yielding some impressive security features. There has been especially significant growth over the last year. As of February 2013, here are some statistics.</p>
<ul class="list">
<li>Long block chain (more than 220,000 blocks).</li>
<li>A lot of processing power securing transactions - estimated at over 25 terahashes/s.</li>
<li>Over $1 million USD of daily trade volume distributed across 40,000 transactions.</li>
<li>Total value of all Bitcoins in circulation is over $300 million.</li>
<li>Only one major <a href="https://en.bitcoin.it/wiki/Incidents#Value_overflow">security incident</a> (fixed in August 2010).</li>
</ul>

View file

@ -0,0 +1,27 @@
---
layout: base-en
title: Bitcoin for Developers - Bitcoin
---
<h1>Bitcoin for Developers</h1>
<p class="summary">Bitcoin can be used to build amazing things, or just answer common needs.</p>
<h2><img src="/img/ico_simple.svg" alt="Simple" />The simplest of all payment systems</h2>
<p>Unless payment needs to be associated with automatic invoices, accepting money is as simple as adding a Bitcoin address to a website as a bitcoin: link or QR code. This very simple setup is within reach of any user and can fulfill the needs of a good range of clients. It's especially suitable for donations.</p>
<h2><img src="/img/ico_conf.svg" alt="APIs" />Many third party APIs</h2>
<p>There are many third party payment processing services that provide APIs; you don't need to store bitcoins on your server and handle the security that this implies. At the same time, most of these APIs allow you to exchange your Bitcoins into your local currency at competitive costs.</p>
<h2><img src="/img/ico_own.svg" alt="Own" />You can be your own financial system</h2>
<p>If you don't use any third party APIs, you can integrate a Bitcoin server directly in your applications, allowing you to become your own bank and payment processor. With all responsibilities that this implies, you can build amazing systems that process Bitcoin transactions with almost no fees.</p>
<h2><img src="/img/ico_invoice.svg" alt="Invoice" />Bitcoin addresses to track invoices</h2>
<p>Bitcoin can create as many Bitcoin addresses as you want. So if you were to build a payment system associated with an invoice, you simply need to generate and monitor a Bitcoin address for each payment. You can also use the same addresses once the payment is done.</p>
<h2><img src="/img/ico_lock.svg" alt="Security" />Most of the security is on client side</h2>
<p>Most of all parts of the security is handled by the the protocol on client and Bitcoin network side. Authenticity is verified through private keys and double-spend through the Bitcoin network. That means, no PCI compliance or fraud detection. We love things that just work, don't we?</p>
<h2><img src="/img/ico_fast.svg" alt="Instant" />Instant transactions and confirmations</h2>
<p>A Bitcoin transaction is usually received within a few seconds and confirmed within 10 minutes. Before that, the transaction can be considered authentic but reversible. If you really require instant transaction, it is recommended to ask for a small transaction fee and use a double-spend detection system.</p>
<h2><img src="/img/ico_micro.svg" alt="Micro" />Cheap micro payments</h2>
<p>Bitcoin offers the lowest payment processing fees for any type of transaction, including micro-payments. Which means that it can also be used to design and implement new creative online services that could not exist before only because of financial limitations.</p>

View file

@ -0,0 +1,27 @@
---
layout: base-en
title: Bitcoin for Enthusiasts
---
<h1>Bitcoin for Enthusiasts</h1>
<p class="summary">Bitcoin is changing the world of finance, making it more open and democratic.</p>
<h2><img src="/img/ico_democracy.svg" alt="Democracy" />Bitcoin is a worldwide democratic consensus</h2>
<p>By its decentralized open-source nature, Bitcoin is the first payment network that is powered by its users with no central authority. Even Bitcoin developers have no power to force updates in the protocol if enough users, developers, or miners disagree. <i>You</i> have exclusive control over your Bitcoin wallet.</p>
<h2><img src="/img/ico_network.svg" alt="Network" />Digital money made for the Internet</h2>
<p>Bitcoin is born from the Internet, bringing the freedom of physical money to the virtual world while making payments easier and more secure in both worlds. Bitcoin can offer an alternative to previous cumbersome and costly systems, and it can increase online business access to developing countries.</p>
<h2><img src="/img/ico_own.svg" alt="Individual" />Protecting individual rights and freedom</h2>
<p>Bitcoin allows people to securely store and exchange value on a network that cannot be seized, manipulated or stopped by any organization or individual. It gives many powerful tools to the people so that it is easier to protect individual rights against various levels of corruption.</p>
<h2><img src="/img/ico_international.svg" alt="Global" />The first global neutral currency</h2>
<p>Not often in our history has money been disconnected from any political influence or national economy. Could Bitcoin be the first global currency to cross all barriers between nations, politics and cultures for the benefit of the common good? It certainly looks like it might happen. One for all and all for one!</p>
<h2><img src="/img/ico_transparency.svg" alt="Transparency" />Promoting transparency</h2>
<p>All Bitcoin transactions are public, but the owner or recipients of these transactions are not. Organizations can choose to reveal their ownership of some Bitcoin addresses to their members, allowing them to implement high levels of transparency.</p>
<h2><img src="/img/ico_lock.svg" alt="Secure" />Making money more secure</h2>
<p>Thanks to a clever use of strict cryptographic rules, Bitcoin provides an amazing list of security features. Not only are bitcoins impossible to counterfeit or spoof, but the protocol is also built to be very resistant against an impressive list of attacks, including distributed denial of service.</p>
<h2><img src="/img/ico_solve.svg" alt="Solve" />Solving issues with trust in banks</h2>
<p>Bitcoin offer solutions to many of the trust problems that plague banks thanks to selective accounting transparency, signature proofs, and irreversible transactions. It also increases the risks for crooked bankers: no bitcoins can be created to save them from their own mistakes at the expense of the people.</p>

View file

@ -0,0 +1,24 @@
---
layout: base-en
title: Bitcoin for Individuals - Bitcoin
---
<h1>Bitcoin for Individuals</h1>
<p class="summary">Bitcoin is the simplest way to exchange money at very low cost.</p>
<h2><img src="/img/ico_mobile.svg" alt="Mobile"/>Mobile payments made easy</h2>
<p>Bitcoin on mobiles allows you to pay with a simple two step scan-and-pay. No need to swipe your card, type a PIN or sign anything. And all you need to receive Bitcoin payments is to display the QR code in your Bitcoin wallet app and let your friend scan your mobile, or touch the two phones together (using NFC radio technology).</p>
<h2><img src="/img/ico_international.svg" alt="International" />Fast international payments</h2>
<p>Bitcoins can be transferred from Africa to Canada in 10 minutes. There is no bank to slow down the process, level outrageous fees or freeze the transfer. You can pay your neighbors the same way as you can pay a member of your family in another country.</p>
<h2><img src="/img/ico_simple.svg" alt="Anytime" />Works everywhere, anytime</h2>
<p>Just like with email, you don't need to force your family to use the same software or the same service providers. Just let them stick to their own favorites. No problem there, they are all compatible as they use the same open technology. The Bitcoin network never sleeps, even on holidays!</p>
<h2><img src="/img/ico_lock.svg" alt="Secure" />Secure transactions</h2>
<p>Bitcoin transactions are secured by military grade cryptography. Nobody can make a payment on your behalf or charge you money without having a copy of your wallet. So as long as you take required steps to <a href="/en/you-need-to-know">protect your wallet</a>, Bitcoin provides a nice level of protection against many types of fraud.</p>
<h2><img src="/img/ico_lowfee.svg" alt="Free" />Almost 100% free to use</h2>
<p>You can already send and receive payments for free! Except for special cases like very tiny micro-payments, there is no enforced fee. You can however choose to pay a small voluntary fee to increase your transaction priority and to remunerate people who operate the Bitcoin network.</p>
<h2><img src="/img/ico_anon.svg" alt="Anonymous" />Anonymous online payments</h2>
<p>Anonymous payments are a part of our everyday lives as most of real life purchases are done without the requirement to provide a proper identification. Bitcoin now introduces the same freedom to the online world. It allows you to buy services or make donations without the hassle of being passed under x-ray. However, you should note that <a href="/en/you-need-to-know"><b>full anonymity requires special efforts</b></a>.</p>

View file

@ -0,0 +1,30 @@
---
layout: base-en
title: Bitcoin for Organizations - Bitcoin
---
<h1>Bitcoin for Organizations</h1>
<p class="summary">Bitcoin is a very secure and inexpensive way to handle payments.</p>
<h2><img src="/img/ico_lowfee.svg" alt="Low Fee" />The lowest fees out there</h2>
<p>Bitcoin's high cryptographic security allows it to process transactions in a very efficient and inexpensive way. You can make and receive payments using the Bitcoin network with zero fees in most cases. You can pay a very small voluntary fee if you want to increase a transaction's priority.</p>
<h2><img src="/img/ico_shield.svg" alt="Protection" />Protection against payment and chargeback fraud</h2>
<p>Any business that accepts credit card or PayPal payments knows the problem of payments that are later reversed because the sender's account was hacked or they fraudulently claim non-delivery. The only way businesses can defend themselves against this kind of fraud is with complex risk analysis and increased prices to cover the losses. Bitcoin payments are irreversible and wallets can be kept highly secure, meaning that the cost of theft is no longer pushed onto the shoulders of merchants.</p>
<h2><img src="/img/ico_international.svg" alt="International" />Fast international payments</h2>
<p>Bitcoins can be transferred from Africa to Canada in 10 minutes. In fact, Bitcoins never have any real physical location. So you can transfer as many of them as you want anywhere with no limits, delays or excessive fees. There are no intermediate banks to make you wait three business days.</p>
<h2><img src="/img/ico_pci.svg" alt="PCI" />No PCI compliance required</h2>
<p>Accepting credit cards online typically requires extensive security checks in order to comply with the PCI standard. While it is a good thing to protect credit cards, Bitcoin security is built in such a way that makes this approach obsolete. Your payments are secured by the network, not at your expense.</p>
<h2><img src="/img/ico_fast.svg" alt="Instant" />Instant transactions for points-of-sale</h2>
<p>A Bitcoin transaction is usually deployed within a few seconds and confirmed within 10 minutes. Before that, the transaction can be considered authentic but reversible. If you really require instant transactions, it is recommended to ask for a small transaction fee and use a double-spend detection system.</p>
<h2><img src="/img/ico_visib.svg" alt="Visibility" />Get some free visibility</h2>
<p>Bitcoin is an emerging market of new customers who are searching ways to spend their coins. Accepting them is a good way to get new customers and give your business some new visibility. Accepting a new payment method has always shown to be a clever practice for online businesses.</p>
<h2><img src="/img/ico_multi.svg" alt="Multi-signature" />Multi-signature</h2>
<p>Bitcoin also includes a feature that is not yet well known, allowing coins to be spent only if a subset of a group of people sign the transaction (so-called "n of m" transactions). This is the equivalent of the good old multi-signature cheque system that you might still use with banks today.</p>
<h2><img src="/img/ico_transparency.svg" alt="Transparency" />Accounting transparency</h2>
<p>Many organizations are required to produce accounting documents about their activity and to adopt good transparency practices. Using Bitcoin offers the highest level of transparency since your balance and your transactions are public for your members if you keep them aware of your Bitcoin addresses.</p>

105
en/choose-your-wallet.html Normal file
View file

@ -0,0 +1,105 @@
---
layout: base-en
title: Choose your wallet - Bitcoin
---
<!--CSS to prevent bubbles to be partially hidden in low-res devices-->
<style xmlns="http://www.w3.org/1999/html">body{min-width:1200px;}</style>
<h1>Choose your wallet</h1>
<p>Your Bitcoin wallet is what allows you to transact with the world. It gives you ownership of Bitcoin <i>addresses</i> that you can use to receive coins from other users, and then lets you send those coins onwards. Just like email, you can receive Bitcoins when you are offline and all wallets are compatible with each other.</p>
<h2>Get started fast and easy</h2>
<p>If you are new to Bitcoin, those wallets are a good place to begin.</p>
<ul class="list">
<li><a href="https://multibit.org" target="_blank"><b>MultiBit</b></a> is an app you can download for Windows, Mac and Linux. It provides maximum privacy.</li>
<li><a href="http://blockchain.info/wallet/chrome-extension" target="_blank"><b>My Wallet</b></a> is a web wallet. Your wallet is stored in your browser but accessed via the website.</li>
<li><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank"><b>Bitcoin Wallet</b></a> for Android or <a href="https://blockchain.info/wallet/iphone-app" target="_blank"><b>Blockchain</b></a> for iPhone runs on your phone or tablet.</li>
</ul>
<h2>Be the Bitcoin network</h2>
<p><img src="/img/icon-be-the-network.svg" alt="Network" style="float:left;margin-right:10px;"/>Do you have a computer that you keep switched on all the time, that's connected to the internet? You can help the community by simply running the <a href="download"><b>original Bitcoin client</b></a> on it. The original client is more resource intensive and will take a complete day to synchronize. After that your computer will contribute to the network by checking and relaying transactions.</p>
<div class="preview">
<div class="previewcol">
<div class="previewrow">
<h2><img src="/img/ico_software.svg" alt="Software wallets" />Software wallets</h2>
<p>Software wallets are installed on your computer. They give you complete control of your wallet. You are responsible for doing backups and protecting your money. Just like cash.</p>
<span>
<span>
<h2>Bitcoin-Qt</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /></div>
<p>Bitcoin-Qt is the original Bitcoin client and it builds the backbone of the network. It offers the highest levels of security, privacy and stability. However it has fewer features and it takes a lot of space and memory.</p>
<p><a href="download">Download</a></p>
</span>
<a href="download"><img src="/img/clients/lo-bitcoin.png" alt="bitcoin-qt" /></a>
</span>
<span>
<span>
<h2>Multibit</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /></div>
<p>Multibit is a lightweight client that focuses on being fast and easy to use. It synchronizes with the network and is ready to use in minutes. Multibit also supports many languages. It is a good choice for non-technical users.</p>
<p><a href="https://multibit.org/" target="_blank">Visit website</a></p>
</span>
<a href="https://multibit.org/" target="_blank"><img src="/img/clients/lo-multibit.png" alt="multibit" /></a>
</span>
<span>
<span>
<h2>Armory</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /></div>
<p>Armory is an advanced Bitcoin client that runs on top of Bitcoin-Qt. Expanding its features for Bitcoin power users. It offers many backup and encryption features, and it allows secure cold-storage on offline computers.</p>
<p><a href="http://bitcoinarmory.com/" target="_blank">Visit website</a></p>
</span>
<a href="http://bitcoinarmory.com/" target="_blank"><img src="/img/clients/lo-armory.png" alt="armory" /></a>
</span>
<span>
<span>
<h2>Electrum</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /><img src="/img/dow-android.png" alt="android" /></div>
<p>Electrum's focus is speed and simplicity, with low resource usage. It uses remote servers that handle the most complicated parts of the Bitcoin system, and it allows you to recover your wallet from an encrypted online backup.</p>
<p><a href="http://electrum.org/" target="_blank">Visit website</a></p>
</span>
<a href="http://electrum.org/" target="_blank"><img src="/img/clients/lo-electrum.png" alt="electrum" /></a>
</span>
</div>
<div class="previewrow">
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Mobile wallets</h2>
<p>Mobile wallets allow you to bring Bitcoin with you in your pocket. You can exchange coins easily and pay in physical stores by scanning a QR code or using NFC "tap to pay".</p>
<span>
<span>
<h2>Bitcoin Wallet</h2>
<div><img src="/img/dow-android.png" alt="android" /></div>
<p>Bitcoin wallet is a lightweight mobile client that is available for Android phones and tablets. This client does not need to be associated with any online service to work. It is compatible with QR Code scanning and NFC.</p>
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank">Visit website</a></p>
</span>
<a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank"><img src="/img/clients/lo-bitcoinwallet.png" alt="bitcoin wallet" /></a>
</span>
<span>
<span>
<h2>Blockchain</h2>
<div><img src="/img/dow-android.png" alt="android" /><img src="/img/dow-ios.png" alt="ios" /></div>
<p>Blockchain is a mobile online wallet powered by blockchain.info. It is also available for iPhones in a restricted mode to fits Apple policies. It includes many blockchain.info features like online wallet backup.</p>
<p><a href="https://blockchain.info/wallet/" target="_blank">Visit website</a></p>
</span>
<a href="https://blockchain.info/wallet/" target="_blank"><img src="/img/clients/lo-blockchain.png" alt="blockchain" /></a>
</span>
</div>
<div class="previewrow">
<h2><img src="/img/ico_international.svg" alt="online wallets" />Online wallets</h2>
<p>Online wallets allow you to use your Bitcoin anywhere with less do to protect them. However, <b>you must choose your online wallet with care as they host your Bitcoins</b>.</p>
<span>
<span>
<h2>Blockchain</h2>
<div></div>
<p>Blockchain is a user-friendly web wallet. It stores an encrypted version of your wallet online but decryption only happens in your browser. For security reasons, you should always use the browser extension and email backups.</p>
<p><a href="http://blockchain.info/wallet/chrome-extension" target="_blank">Visit website</a></p>
</span>
<a href="https://blockchain.info/wallet/" target="_blank"><img src="/img/clients/lo-blockchain.png" alt="blockchain" /></a>
</span>
</div>
</div>
<div class="previewcol">.</div>
</div>

21
en/community.html Normal file
View file

@ -0,0 +1,21 @@
---
layout: base-en
title: Community - Bitcoin
---
<h1>Bitcoin communities</h1>
<ul class="ressources">
<li><a href="http://bitcoin.stackexchange.com/" target="_blank">Bitcoin StackExchange (Q&amp;A)</a></li>
<li><a href="https://bitcointalk.org/">BitcoinTalk Forum</a></li>
<li>Join the project's lively IRC channels on the <a href="http://freenode.net/" target="_blank">FreeNode</a> network<br>or use the <a href="http://webchat.freenode.net/?channels=bitcoin&amp;uio=d4" target="_blank">FreeNode Web IRC</a>.
<ul>
<li><strong>#bitcoin</strong> (General Bitcoin-related)</li>
<li><strong>#bitcoin-dev</strong> (Development and technical)</li>
<li><strong>#bitcoin-otc</strong> (Over The Counter exchange)</li>
<li><strong>#bitcoin-market</strong> (Live quotes from markets)</li>
<li><strong>#bitcoin-mining</strong> (Bitcoin mining related)</li>
</ul>
</li>
<li><a href="http://twitter.com/#!/search/bitcoin" target="_blank">Twitter Search</a></li>
<li><a href="https://www.facebook.com/pages/Bitcoin-P2P-Cryptocurrency/134466763256650" target="_blank">Facebook Page</a></li>
<li><a href="http://www.reddit.com/r/Bitcoin/" target="_blank">Reddit's Bitcoin community</a></li>
</ul>

53
en/development.html Normal file
View file

@ -0,0 +1,53 @@
---
layout: base-en
title: Development - Bitcoin
---
<h1>Bitcoin development</h1>
<h2>Specification</h2>
<p>If you are interested in learning more about the technical details of Bitcoin it is recommended you start with these documents.</p>
<ul class="list">
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules" target="_blank">Protocol rules</a></li>
<li><a href="https://en.bitcoin.it/wiki/Category:Technical" target="_blank">Bitcoin Wiki</a></li>
</ul>
<h2>Developers</h2>
<ul class="list">
<li>Satoshi Nakamoto</li>
<li>Gavin Andresen - <a href="mailto:gavinandresen@gmail.com">gavinandresen@gmail.com</a> (<a href="/gavinandresen.asc">PGP</a>)</li>
<li>Pieter Wuille - <a href="mailto:pieter.wuille@gmail.com">pieter.wuille@gmail.com</a> (<a href="/pieterwuille.asc">PGP</a>)</li>
<li>Nils Schneider - <a href="mailto:nils.schneider@gmail.com">nils.schneider@gmail.com</a> (<a href="/schneider.asc">PGP</a>)</li>
<li>Jeff Garzik - <a href="mailto:jgarzik@exmulti.com">jgarzik@exmulti.com</a> (<a href="/jgarzik-exmulti.asc">PGP</a>)</li>
<li>Wladimir J. van der Laan - <a href="mailto:laanwj@gmail.com">laanwj@gmail.com</a> (<a href="/laanwj.asc">PGP</a>)</li>
<li>Gregory Maxwell - <a href="mailto:gmaxwell@gmail.com">gmaxwell@gmail.com</a> (<a href="/gmaxwell.asc">PGP</a>)</li>
</ul>
<h2>Get involved</h2>
<p>Bitcoin development is open source and any developer can contribute to the project. Everything you need is in the <a href="https://github.com/bitcoin/bitcoin" target="_blank">Github repository</a>. Please make sure to read and follow the development process described in the README as well as to provide good quality code and respect all guidelines.</p>
<section id="contributors">
<h2>Contributors</h2>
<p>(Ordered by number of commits)</p>
<table class="contributors">
<tr>
{% for c in site.project.contributors %}
<td>
{% if c.gravatar_id %}
<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" />
{% else %}
<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" />
{% endif %}
{% if c.login %}
<a href="http://github.com/{{c.login}}">
{{ c.name }} ({{ c.contributions }})
</a>
{% else %}
{{ c.name }} ({{ c.contributions }})
{% endif %}
</td>
{% cycle nil, nil, nil, nil, '</tr><tr>' %}
{% endfor %}
</tr>
</table>
</section>

19
en/download.html Normal file
View file

@ -0,0 +1,19 @@
---
layout: base-en
title: Download - Bitcoin
---
<h1>Download Bitcoin-Qt</h1>
<h2>Latest version : {{ site.DOWNLOAD_VERSION }}</h2>
<p class="download">
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-win32.zip/download">Download for Windows (zip)</a> <small>~13MB</small><br>
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-win32-setup.exe/download">Download for Windows (exe)</a> <small>~9MB</small><br>
<img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">Download for Ubuntu (PPA)</a><br>
<img src="/img/dow-linux.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-linux.tar.gz/download">Download for Linux (tgz, 32/64-bit)</a> <small>~12MB</small><br>
<img src="/img/dow-osx-uni.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-osx.dmg/download">Download for Mac OS X</a> <small>~13MB</small><br>
<img style="width: 16px"> <a href="https://github.com/bitcoin/bitcoin">Source code</a> (GitHub)<br><br>
<img style="width: 16px"> <a href="/en/version-history" style="font-weight:bold;">Show version history</a>
</p>
<br>
<p>Bitcoin-Qt is a community-driven <a target="_blank" href="http://www.fsf.org/about/what-is-free-software">free open source</a> project, released under the <a href="http://creativecommons.org/licenses/MIT/" target="_blank">MIT license</a>.</p>
<p><b>Note</b> : Bitcoin-Qt initial sync can take a day to complete. You should make sure that you have enough bandwidth and storage for the full <a target="_blank" href="http://blockchain.info/charts/blocks-size">blockchain size</a>.</p>

340
en/faq.html Normal file
View file

@ -0,0 +1,340 @@
---
layout: base-en
title: Frequently Asked Questions
---
<h1>Frequently Asked Questions</h1>
<h2>Table of contents</h2>
<ul class="index">
<li><a href="#general">General</a></li>
<ul>
<li><a href="#what-are-bitcoins">What are Bitcoins?</a></li>
<li><a href="#how-to-get-bitcoins">How can I get Bitcoins?</a></li>
<li><a href="#does-bitcoin-guarantee-an-influx-of-free-money">Does Bitcoin guarantee an influx of free money?</a></li>
<li><a href="#can-i-buy-bitcoins-with-paypal">Can I buy bitcoins with Paypal?</a></li>
<li><a href="#how-are-new-bitcoins-created">How are new bitcoins created?</a></li>
<li><a href="#what-is-the-current-total-number-of-bitcoins-in-existence">What is the current total number of bitcoins in existence?</a></li>
<li><a href="#how-divisible-are-bitcoins">How divisible are bitcoins?</a></li>
<li><a href="#what-do-i-call-the-various-denominations-of-bitcoins">What do I call the various denominations of bitcoins?</a></li>
<li><a href="#how-does-the-halving-work-when-the-number-gets-really-small">How does the halving work when the number gets really small?</a></li>
<li><a href="#how-long-will-it-take-to-generate-all-the-coins">How long will it take to generate all the coins?</a></li>
<li><a href="#if-no-more-coins-are-going-to-be-generated-will-more-blocks-be-created">If no more coins are going to be generated, will more blocks be created?</a></li>
<li><a href="#but-if-no-more-coins-are-generated-what-happens-when-bitcoins-are-lost">But if no more coins are generated, what happens when Bitcoins are lost?</a></li>
<li><a href="#if-every-transaction-is-broadcast-via-the-network-does-bitcoin-scale">If every transaction is broadcast via the network, does Bitcoin scale?</a></li>
</ul>
<li><a href="#economy">Economy</a></li>
<ul>
<li><a href="#where-does-the-value-of-bitcoin-stem-from-what-backs-up-bitcoin">Where does the value of Bitcoin stem from? What backs up Bitcoin?</a></li>
<li><a href="#is-bitcoin-a-bubble">Is Bitcoin a bubble?</a></li>
<li><a href="#is-bitcoin-a-ponzi-scheme">Is Bitcoin a Ponzi scheme?</a></li>
<li><a href="#doesnt-bitcoin-unfairly-benefit-early-adopters">Doesn't Bitcoin unfairly benefit early adopters?</a></li>
<li><a href="#wont-the-finite-amount-of-bitcoins-create-excessive-deflation-destroying-bitcoin">Won't the finite amount of Bitcoins create excessive deflation, destroying Bitcoin?</a></li>
<li><a href="#what-if-someone-bought-up-all-the-existing-bitcoins">What if someone bought up all the existing Bitcoins?</a></li>
<li><a href="#what-if-someone-creates-a-new-digital-currency-that-renders-bitcoin-obsolete">What if someone creates a new digital currency that renders Bitcoin obsolete?</a></li>
</ul>
<li><a href="#transaction">Transaction</a></li>
<ul>
<li><a href="#why-do-i-have-to-wait-10-minutes-before-i-can-spend-money-i-received">Why do I have to wait 10 minutes before I can spend money I received?</a></li>
<li><a href="#do-you-have-to-wait-until-my-transactions-are-confirmed-in-order-to-buy-or-sell-things">Do you have to wait until my transactions are confirmed in order to buy or sell things?</a></li>
<li><a href="#i-was-sent-some-bitcoins-and-they-havent-arrived-yet-where-are-they">I was sent some bitcoins and they haven't arrived yet! Where are they?</a></li>
<li><a href="#why-does-my-bitcoin-address-keep-changing">Why does my Bitcoin address keep changing?</a></li>
<li><a href="#how-much-will-the-transaction-fee-be">How much will the transaction fee be?</a></li>
<li><a href="#what-happens-when-someone-sends-me-a-bitcoin-but-my-computer-is-powered-off">What happens when someone sends me a bitcoin but my computer is powered off?</a></li>
<li><a href="#how-long-does-synchronizing-take-when-the-bitcoin-client-is-first-installed-whats-it-doing">How long does "synchronizing" take when the Bitcoin client is first installed? What's it doing?</a></li>
</ul>
<li><a href="#networking">Networking</a></li>
<ul>
<li><a href="#do-i-need-to-configure-my-firewall-to-run-bitcoin">Do I need to configure my firewall to run Bitcoin?</a></li>
<li><a href="#how-does-the-peer-finding-mechanism-work">How does the peer finding mechanism work?</a></li>
</ul>
<li><a href="#mining">Mining</a></li>
<ul>
<li><a href="#what-is-mining">What is mining?</a></li>
<li><a href="#is-mining-used-for-some-useful-computation">Is mining used for some useful computation?</a></li>
<li><a href="#is-it-not-a-waste-of-energy">Is it not a waste of energy?</a></li>
<li><a href="#why-dont-we-use-calculations-that-are-also-useful-for-some-other-purpose">Why don't we use calculations that are also useful for some other purpose?</a></li>
<li><a href="#how-can-we-stop-miners-from-creating-zero-transaction-blocks">How can we stop miners from creating zero transaction blocks?</a></li>
<li><a href="#how-does-the-proof-of-work-system-help-secure-bitcoin">How does the proof-of-work system help secure Bitcoin?</a></li>
<li><a href="#what-do-i-need-to-start-mining">What do I need to start mining?</a></li>
</ul>
<li><a href="#security">Security</a></li>
<ul>
<li><a href="#could-miners-collude-to-give-themselves-money-or-to-change-the-nature-of-bitcoin">Could miners collude to give themselves money or to change the nature of Bitcoin?</a></li>
</ul>
<li><a href="#help">Help</a></li>
</ul>
<h2><a name="general">General</a></h2>
<h3><a name="what-are-bitcoins">What are bitcoins?</a></h3>
<p>Bitcoins are the unit of currency of the Bitcoin system. A commonly used shorthand for this is “BTC” to refer to a price or amount (eg: “100 BTC”).</p>
<p>There are such things as <a href="https://en.bitcoin.it/wiki/Physical_bitcoins">physical bitcoins</a>, but ultimately, a bitcoin is just a number associated with a Bitcoin address. A physical bitcoin is simply an object, such as a coin, with the number carefully embedded inside. See also an <a href="https://en.bitcoin.it/wiki/Introduction">Introduction to bitcoin</a>.</p>
<h3 name="how-to-get-bitcoins">How can I get bitcoins?</a></h3>
<p>There are a variety of ways to acquire bitcoins:</p>
<ul>
<li>Accept bitcoins as payment for goods or services.</li>
<li>There are several services where you can <a href="https://en.bitcoin.it/wiki/Buying_Bitcoins_(the_noob_version)">trade them</a> for traditional currency.</li>
<li>Find someone to trade cash for bitcoins in-person through a <a href="https://en.bitcoin.it/wiki/Category:Directories">local directory</a>.</li>
<li>Participate in a <a href="https://en.bitcoin.it/wiki/Pooled_mining">mining pool</a>.</li>
<li>If you have a lot of mining hardware, you can solo mine and attempt to create a new <a href="https://en.bitcoin.it/wiki/block">block</a> (currently yields 25 bitcoins plus transaction fees).</li>
</ul>
<h3><a name="does-bitcoin-guarantee-an-influx-of-free-money">Does Bitcoin guarantee an influx of free money?</a></h3>
<p>
Since Bitcoin is a new technology, what it is and how it works may be initially unclear. Bitcoin is sometimes presented as being one of three things:
</p>
<ol style="list-style-type: upper-alpha;">
<li>Some sort of online 'get-rich-quick' scam.</li>
<li>A loophole in the market economy, the installation of which guarantees a steady influx of cash.</li>
<li>A sure investment that will almost certainly yield a profit.</li>
</ol>
<p>
In fact, none of the above are true. Let's look at them independently.
</p>
<h4>Is Bitcoin a 'get-rich-quick' scheme?</h4>
<p>If you've spent much time on the Internet, you've probably seen ads for many 'get-rich-quick' schemes. These ads usually promise huge profits for a small amounts of easy work. Such schemes are usually pyramid/matrix-style schemes that make money from their own employees and offer nothing of any real value. Most convince one to buy packages that will make them earn hundreds a day, which in fact have the buyer distribute more such ads, and make minute profits.</p>
<p>Bitcoin is in no way similar to these schemes. Bitcoin doesn't promise windfall profits. There is no way for the developers to make money from your involvement or to take money from you. That bitcoins are nearly impossible to acquire without the owner's consent represents one of its greatest strengths. Bitcoin is an experimental, virtual currency that may succeed or may fail. None of its developers expect to get rich off of it.</p>
<p>A more detailed answer to this question can be found <a href="http://bitcointalk.org/?topic=7815.0">here</a>.</p>
<h4>Will I make money by installing the client?</h4>
<p>Most people who use Bitcoin don't earn anything by doing so, and the default client has no built-in way to earn Bitcoins. A small minority of people with dedicated, high-performance hardware do earn some Bitcoins by "<i>mining</i>" (generating new bitcoins, see [[#What is mining?|What is mining?]]) with special software, but joining Bitcoin shouldn't be construed as being the road to riches. Most Bitcoin users get involved because they find the project conceptually interesting and don't earn anything by doing so. This is also why you won't find much speculation about the political or economic repercussions of Bitcoin anywhere on this site: Bitcoin developers owe their dedication to the project's intellectual yieldings more than to those of a monetary nature. Bitcoin is still taking its first baby steps; it may go on to do great things but right now it only has something to offer those chasing conceptually interesting projects or bleeding edge technology.
</p>
<h4>As an investment, is Bitcoin a sure thing?</h4>
<p>Bitcoin is a new and interesting electronic currency, the value of which is not backed by any single government or organization. Like other currencies, it is worth something partly because people are willing to trade it for goods and services. Its exchange rate fluctuates continuously, and sometimes wildly. It lacks wide acceptance and is vulnerable to manipulation by parties with modest funding. Security incidents such as website and account compromise may trigger major sell-offs. Other fluctuations can build into positive feedback loops cause much larger exchange rate fluctuations. Anyone who puts money into Bitcoin should take measures to reduce their risk and consider it as a high-risk currency. Later, as Bitcoin becomes better known and more widely accepted, it should stabilize, but for the time being it is unpredictable. Any investment in Bitcoin should be done carefully and with a clear plan to manage risk.<p>
<h3><a name="can-i-buy-bitcoins-with-paypal">Can I buy bitcoins with Paypal?</a></h3>
<p>It is possible to buy <a href="https://en.bitcoin.it/wiki/Physical_bitcoins">physical bitcoins</a> with PayPal but it is otherwise difficult and/or expensive to do so, because of significant risk to the seller.</p>
<p>While it is possible to find an individual who wishes to sell Bitcoin to you via Paypal, (perhaps via <a href="http://www.bitcoin-otc.com/">#bitcoin-otc</a> ) most exchanges do not allow funding through PayPal. This is due to repeated cases where someone pays for bitcoins with Paypal receives their bitcoins, and then fraudulently complains to Paypal that they never received their purchase. PayPal often sides with the fraudulent buyer in this case which means any seller would need to cover that risk with higher fees or refuse to accept PayPal altogether.</p>
<p>Buying Bitcoins from individuals with this method is still possible, but requires the seller to have some trust that the buyer will not file a claim with PayPal to reverse the payment.</p>
<h3><a name="how-are-new-bitcoins-created">How are new bitcoins created?</a></h3>
<div style="float: right">
<img src="https://en.bitcoin.it/w/images/en/thumb/e/e3/Total_bitcoins_over_time_graph.png/180px-Total_bitcoins_over_time_graph.png" alt="Total bitcoins over time">
<p><i>Total Bitcoins over time</i></p>
</div>
<p>New bitcoins are generated by the network through the process of <i>mining</i>. In a process that is similar to a continuous raffle draw, mining nodes on the network are awarded bitcoins each time they find the solution to a certain mathematical problem (and thereby create a new <a href="https://en.bitcoin.it/wiki/Block">block</a>). Creating a block is a <a href="https://en.bitcoin.it/wiki/Proof_of_work">proof of work</a> with a difficulty that varies with the overall strength of the network. The reward for solving a block is <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">automatically adjusted</a> so that in roughly the first four years of operation of the Bitcoin network, {{formatnum:10500000}} BTC will be created. This amount is halved each four years, so it will be {{formatnum:5250000}} over years 4-8, {{formatnum:2625000}} over years 8-12, and so on. Thus the total number of bitcoins in existence will not exceed {{formatnum:21000000}}. See <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">Controlled Currency Supply</a>.</p>
<p>Blocks are <a href="https://en.bitcoin.it/wiki/Mining">mined</a> every 10 minutes, on average and for the first four years ({{formatnum:210000}} blocks) each block includes 50 new bitcoins. As the amount of processing power directed at mining changes, the difficulty of creating new bitcoins changes. This difficulty factor is calculated every 2016 blocks and is based upon the time taken to generate the previous 2016 blocks. See <a href="https://en.bitcoin.it/wiki/Mining">Mining</a>.</p>
<h3><a name="what-is-the-current-total-number-of-bitcoins-in-existence">What's the current total number of bitcoins in existence?</a></h3>
<p><a href="http://blockexplorer.com/q/totalbc">Current count</a>. Also see <a href="https://blockchain.info/charts/total-bitcoins">Total bitcoins in circulation chart</a></p>
<p>The number of blocks times the coin value of a block is the number of coins in existence. The coin value of a block is 50 BTC for each of the first {{formatnum:210000}} blocks, 25 BTC for the next {{formatnum:210000}} blocks, then 12.5 BTC, 6.25 BTC and so on.</p>
<h3><a name="how-divisible-are-bitcoins">How divisible are bitcoins?</a></h3>
<p>A bitcoin can be divided down to 8 decimal places. Therefore, 0.00000001 BTC is the smallest amount that can be handled in a transaction. If necessary, the protocol and related software can be modified to handle even smaller amounts.</p>
<h3><a name="what-do-i-call-the-various-denominations-of-bitcoins">What do I call the various denominations of bitcoins?</a></h3>
<p>There is a lot of discussion about the naming of these fractions of bitcoins. The leading candidates are:</p>
<ul>
<li>1 BTC = 1 bitcoin</li>
<li>0.01 BTC = 1 cBTC = 1 centibitcoin (also referred to as bitcent)</li>
<li>0.001 BTC = 1 mBTC = 1 millibitcoin (also referred to as mbit (pronounced em-bit) or millibit or even bitmill)</li>
<li>0.000 001 BTC = 1 μBTC = 1 microbitcoin (also referred to as ubit (pronounced yu-bit) or microbit)</li>
</ul>
<p>The above follows the accepted international SI prefixes for hundredths, thousandths, and millionths. There are many arguments against the special case of 0.01 BTC since it is unlikely to represent anything meaningful as the Bitcoin economy grows (it certainly won't be the equivalent of 0.01 USD, GBP or EUR). Equally, the inclusion of existing national currency denominations such as "cent", "nickel", "dime", "pence", "pound", "kopek" and so on are to be discouraged; this is a worldwide currency.</p>
<p>One exception is the "satoshi" which is smallest denomination currently possible</p>
<ul>
<li>0.000 000 01 BTC = 1 satoshi (pronounced sa-toh-shee)</li>
</ul>
<p>which is so named in honour of Satoshi Nakamoto, the pseudonym of the inventor of Bitcoin.</p>
<p>For an overview of all defined units of Bitcoin (including less common and niche units), see <a href="https://en.bitcoin.it/wiki/Units">Units</a>.</p>
<p>Further discussion on this topic can be found on the forums here:</p>
<ul>
<li><a href="https://bitcointalk.org/index.php?topic=14438.msg195287#msg195287">We need names</a></li>
<li><a href="https://bitcointalk.org/index.php?topic=8282.0">What to call 0.001 BTC</a></li>
</ul>
<h3><a name="how-does-the-halving-work-when-the-number-gets-really-small">How does the halving work when the number gets really small?</a></h3>
<p>Eventually the reward will go from 0.00000001 BTC to zero and no more bitcoins will be created.</p>
<p>The block reward calculation is done as a right bitwise shift of a 64-bit signed integer, which means it is divided by two and rounded down. The integer is equal to the value in BTC * 100,000,000 since internally in the reference client software, all Bitcoin balances and values are stored as unsigned integers.</p>
<p>With an initial block reward of 50 BTC, it will take many 4-year periods for the block reward to reach zero.</p>
<h3><a name="how-long-will-it-take-to-generate-all-the-coins">How long will it take to generate all the coins?</a></h3>
<p>The last block that will generate coins will be block #6,929,999 which should be generated at or near the year 2140. The total number of coins in circulation will then remain static at 20,999,999.9769 BTC.</p>
<p>Even if the allowed precision is expanded from the current 8 decimals, the total BTC in circulation will always be slightly below 21 million (assuming everything else stays the same). For example, with 16 decimals of precision, the end total would be 20,999,999.999999999496 BTC.</p>
<h3><a name="if-no-more-coins-are-going-to-be-generated-will-more-blocks-be-created">If no more coins are going to be generated, will more blocks be created?</a></h3>
<p>Absolutely! Even before the creation of coins ends, the use of <a href="https://en.bitcoin.it/wiki/Transaction_fee">transaction fees</a> will likely make creating new blocks more valuable from the fees than the new coins being created. When coin generation ends, these fees will sustain the ability to use bitcoins and the Bitcoin network. There is no practical limit on the number of blocks that will be mined in the future.</p>
<h3><a name="but-if-no-more-coins-are-generated-what-happens-when-bitcoins-are-lost">But if no more coins are generated, what happens when Bitcoins are lost? Won't that be a problem?</a></h3>
<p>Because of the law of supply and demand, when fewer bitcoins are available the ones that are left will be in higher demand, and therefore will have a higher value. So, as Bitcoins are lost, the remaining bitcoins will eventually increase in value to compensate. As the value of a bitcoin increases, the number of bitcoins required to purchase an item '''de'''creases. This is a <a href="https://en.bitcoin.it/wiki/Deflationary_spiral">deflationary economic model</a>. As the average transaction size reduces, transactions will probably be denominated in sub-units of a bitcoin such as millibitcoins ("Millies") or microbitcoins ("Mikes").</p>
<p>The Bitcoin protocol uses a base unit of one hundred-millionth of a Bitcoin ("a Satoshi"), but unused bits are available in the protocol fields that could be used to denote even smaller subdivisions.</p>
<h3><a name="if-every-transaction-is-broadcast-via-the-network-does-bitcoin-scale">If every transaction is broadcast via the network, does Bitcoin scale?</a></h3>
<p>The Bitcoin protocol allows lightweight clients that can use Bitcoin without downloading the entire transaction history. As traffic grows and this becomes more critical, implementations of the concept will be developed. Full network nodes will at some point become a more specialized service.</p>
<p>With some modifications to the software, full Bitcoin nodes could easily keep up with both VISA and MasterCard combined, using only fairly modest hardware (a single high end server by todays standards). It is worth noting that the MasterCard network is structured somewhat like Bitcoin itself - as a peer to peer broadcast network.</p>
<p>Learn more about <a href="https://en.bitcoin.it/wiki/Scalability">Scalability</a>.</p>
<h2><a name="#economy">Economy</a></h2>
<h3><a name="where-does-the-value-of-bitcoin-stem-from-what-backs-up-bitcoin">Where does the value of Bitcoin stem from? What backs up Bitcoin?</a></h3>
<p>Bitcoins have value because they are useful and because they are <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">scarce</a>. As they are accepted by more merchants, their value will <a href="http://en.wikipedia.org/wiki/Sticky_%28economics%29">stabilize</a>. See the <a href="https://en.bitcoin.it/wiki/Trade">list of Bitcoin-accepting sites</a>.</p>
<p>When we say that a currency is backed up by gold, we mean that there's a promise in place that you can exchange the currency for gold. Bitcoins, like dollars and euros, are not backed up by anything except the variety of merchants that accept them.</p>
<p>It's a common misconception that Bitcoins gain their value from the cost of electricity required to generate them. Cost doesn't equal value hiring 1,000 men to shovel a big hole in the ground may be costly, but not valuable. Also, even though scarcity is a critical requirement for a useful currency, it alone doesn't make anything valuable. For example, your fingerprints are scarce, but that doesn't mean they have any exchange value.</p>
<p>Alternatively it needs to be added that while the law of supply and demand applies it does not guarantee value of Bitcoins in the future. If confidence in Bitcoins is lost then it will not matter that the supply can no longer be increased, the demand will fall off with all holders trying to get rid of their coins. An example of this can be seen in cases of state currencies, in cases when the state in question dissolves and so no new supply of the currency is available (the central authority managing the supply is gone), however the demand for the currency falls sharply because confidence in its purchasing power disappears. Of-course Bitcoins do not have such central authority managing the supply of the coins, but it does not prevent confidence from eroding due to other situations that are not necessarily predictable.</p>
<h3><a name="is-bitcoin-a-bubble">Is Bitcoin a bubble?</a></h3>
<p>Yes, in the same way as the euro and dollar are. They only have value in exchange and have no inherent value. If everyone suddenly stopped accepting your dollars, euros or bitcoins, the "bubble" would burst and their value would drop to zero. But that is unlikely to happen: even in Somalia, where the government collapsed 20 years ago, <a href="http://en.wikipedia.org/wiki/Somali_shilling">Somali shillings</a> are still accepted as payment.</p>
<h3><a name="is-bitcoin-a-ponzi-scheme">Is Bitcoin a Ponzi scheme?</a></h3>
<p>In a Ponzi Scheme, the founders persuade investors that theyll profit. Bitcoin does not make such a guarantee. There is no central entity, just individuals building an economy.</p>
<p>A ponzi scheme is a zero sum game. Early adopters can only profit at the expense of late adopters. Bitcoin has possible win-win outcomes. Early adopters profit from the rise in value. Late adopters, and indeed, society as a whole, benefit from the usefulness of a stable, fast, inexpensive, and widely accepted p2p currency.</p>
<p>The fact that early adopters benefit more doesn't alone make anything a Ponzi scheme. All good investments in successful companies have this quality.</p>
<h3><a name="doesnt-bitcoin-unfairly-benefit-early-adopters">Doesn't Bitcoin unfairly benefit early adopters?</a></h3>
<p>Early adopters have a large number of bitcoins now because they took a risk and invested resources in an unproven technology. By so doing, they have helped Bitcoin become what it is now and what it will be in the future (hopefully, a ubiquitous decentralized digital currency). It is only fair they will reap the benefits of their successful investment.</p>
<p>In any case, any bitcoin generated will probably change hands dozens of time as a medium of exchange, so the profit made from the initial distribution will be insignificant compared to the total commerce enabled by Bitcoin.</p>
<p>Since the pricing of Bitcoins has fallen greatly from its June 2011 peak, prices today are much more similar to those enjoyed by many early adopters. Those who are buying Bitcoins today likely believe that Bitcoin will grow significantly in the future. Setting aside the brief opportunity to have sold Bitcoins at the June 2011 peak enjoyed by few, the early-adopter window is arguably still open.</p>
<h3><a name="wont-the-finite-amount-of-bitcoins-create-excessive-deflation-destroying-bitcoin">Won't loss of wallets and the finite amount of Bitcoins create excessive deflation, destroying Bitcoin?</a></h3>
<p>Worries about Bitcoin being destroyed by deflation are not entirely unfounded. Unlike most currencies, which experience inflation as their founding institutions create more and more units, Bitcoin will likely experience gradual deflation with the passage of time. Bitcoin is unique in that only a small amount of units will ever be produced (twenty-one million to be exact), this number has been known since the project's inception, and the units are created at a predicable rate.</p>
<p>Also, Bitcoin users are faced with a danger that doesn't threaten users of any other currency: if a Bitcoin user loses his wallet, his money is gone forever, unless he finds it again. And not just to him; it's gone completely out of circulation, rendered utterly inaccessible to anyone. As people will lose their wallets, the total number of Bitcoins will slowly decrease.</p>
<p>Therefore, Bitcoin seems to be faced with a unique problem. Whereas most currencies inflate over time, Bitcoin will mostly likely do the just the opposite. Time will see the irretrievable loss of an ever-increasing number of Bitcoins. An already small number will be permanently whittled down further and further. And as there become fewer and fewer Bitcoins, the laws of supply and demand suggest that their value will probably continually rise.</p>
<p>Thus Bitcoin is bound to once again stray into mysterious territory, because no one exactly knows what happens to a currency that grows continually more valuable. Economists generally agree that a low level of inflation is a good thing for a currency, but nobody is quite sure about what might happens to one that continually deflates. Although deflation could hardly be called a rare phenomenon, steady, constant deflation is unheard of. There may be a lot of speculation, no one has any hard data to back up their claims.</p>
<p>That being said, there is a mechanism in place to combat the obvious consequences. Extreme deflation would render most currencies highly impractical: if a single Canadian dollar could suddenly buy the holder a car, how would one go about buying bread or candy? Even pennies would fetch more than a person could carry. Bitcoin, however, offers a simple and stylish solution: infinite divisibility. Bitcoins can be divided up and trade into as small of pieces as one wants, so no matter how valuable Bitcoins become, one can trade them in practical quantities. </p>
<p>In fact, infinite divisibility should allow Bitcoins to function in cases of extreme wallet loss. Even if, in the far future, so many people have lost their wallets that only a single Bitcoin, or a fraction of one, remains, Bitcoin should continue to function just fine. No one can claim to be sure what is going to happen, but deflation may prove to present a smaller threat than many expect.</p>
<p>For more information, see the <a href="https://en.bitcoin.it/wiki/Deflationary_spiral">Deflationary spiral</a> page.</p>
<h3><a name="what-if-someone-bought-up-all-the-existing-bitcoins">What if someone bought up all the existing Bitcoins?</a></h3>
<p>Bitcoin markets are competitive -- meaning the price of a bitcoin will rise or fall depending on supply and demand at certain price levels. Only a fraction of bitcoins issued to date are found on the exchange markets for sale. So even though technically a buyer with lots of money could buy all the bitcoins offered for sale, unless those holding the rest of the bitcoins offer them for sale as well, even the wealthiest, most determined buyer can't get at them.</p>
<p>Additionally, new currency continues to be issued daily and will continue to do so for decades though over time the rate at which they are issued declines to insignificant levels. Those who are mining aren't obligated to sell their bitcoins so not all bitcoins will make it to the markets even.</p>
<p>This situation doesn't suggest, however, that the markets aren't vulnerable to price manipulation. It doesn't take significant amounts of money to move the market price up or down and thus Bitcoin remains a volatile asset.</p>
<h3><a name="what-if-someone-creates-a-new-digital-currency-that-renders-bitcoin-obsolete">What if someone creates a new block chain, or a new digital currency that renders Bitcoin obsolete?</a></h3>
<p>That the block chain cannot be easily forked represents one of the central security mechanisms of Bitcoin. Given the choice between two block chains, a Bitcoin miner always chooses the longer one - that is to say, the one with the more complex hash. Thusly, it ensures that each user can only spend their bitcoins once, and that no user gets ripped off.</p>
<p>As a consequence of the block chain structure, there may at any time be many different sub-branches, and the possibility always exists of a transaction being over-written by the longest branch, if it has been recorded in a shorter one. The older a transaction is though, the lower its chances of being over-written, and the higher of becoming permanent. Although the block chain prevents one from spending more Bitcoins than one has, it means that transactions can be accidentally nullified. </p>
<p>A new block chain would leave the network vulnerable to <a href="https://en.bitcoin.it/wiki/double-spending">double-spend</a> attacks. However, the creation of a viable new chain presents considerable difficulty, and the possibility does not present much of a risk.</p>
<p>Bitcoin will always choose the longer Block Chain and determines the relative length of two branches by the complexities of their hashes. Since the hash of each new block is made from that of the block preceding it, to create a block with a more complex hash, one must be prepared to do more computation than has been done by the entire Bitcoin network from the fork point up to the newest of the blocks one is trying to supersede. Needless to say, such an undertaking would require a very large amount of processing power and since Bitcoin is continually growing and expanding, it will likely only require more with the passage of time.</p>
<p>A much more distinct and real threat to the Bitcoin use is the development of other, superior virtual currencies, which could supplant Bitcoin and render it obsolete and valueless.</p>
<p>A great deal of careful thought and ingenuity has gone into the development of Bitcoin, but it is the first of its breed, a prototype, and vulnerable to more highly-evolved competitors. At present, any threatening rivals have yet to rear its head; Bitcoin remains the first and foremost private virtual currency, but we can offer no guarantees that it will retain that position. It would certainly be in keeping with internet history for similar system built from the same principles to supersede and cast Bitcoin into obsolescence, after time had revealed its major shortcomings. Friendster and Myspace suffered similar fates at the hand of Facebook, Napster was ousted by Limeware, Bearshare and torrent applications, and Skype has all but crushed the last few disciples of the Microsoft Messenger army. </p>
<p>This may sound rather foreboding, so bear in mind that introduction of new and possibly better virtual currencies will not necessarily herald Bitcoin's demise. If Bitcoin establishes itself sufficiently firmly before the inception of the next generation of private, online currencies as to gain widespread acceptance and general stability, future currencies may pose little threat even if they can claim superior design.</p>
<h2><a name="transaction">Transaction</a></h2>
<h3><a name="why-do-i-have-to-wait-10-minutes-before-i-can-spend-money-i-received">Why do I have to wait 10 minutes before I can spend money I received?</a></h3>
<p>10 minutes is the average time taken to find a block. It can be significantly more or less time than that depending on luck; 10 minutes is simply the average case. </p>
<p>You can see how long all other recent transactions have taken here: <a href="http://bitcoinstats.org/">BitcoinStats.org</a>. </p>
<p><a href="https://en.bitcoin.it/wiki/Blocks">Blocks</a> (shown as "confirmations" in the GUI) are how the Bitcoin achieves consensus on who owns what. Once a block is found everyone agrees that you now own those coins, so you can spend them again. Until then it's possible that some network nodes believe otherwise, if somebody is attempting to defraud the system by reversing a transaction. The more confirmations a transaction has, the less risk there is of a reversal. Only 6 blocks or 1 hour is enough to make reversal computationally impractical. This is dramatically better than credit cards which can see chargebacks occur up to three months after the original transaction!</p>
<p>Ten minutes was specifically chosen by <a href="https://en.bitcoin.it/wiki/Satoshi">Satoshi</a> as a tradeoff between propagation time of new blocks in large networks and the amount of work wasted due to chain splits. For a more technical explanation, see Satoshi's <a href="/bitcoin.pdf">original technical paper</a>.</p>
<img src="https://en.bitcoin.it/w/images/en/3/30/TransactionConfirmationTimesExample.PNG">
<h3><a name="do-you-have-to-wait-until-my-transactions-are-confirmed-in-order-to-buy-or-sell-things">Do you have to wait until my transactions are confirmed in order to buy or sell things with Bitcoin?</a></h3>
<p>YES, you do, IF the transaction is non-recourse. The Bitcoin reference software does not display transactions as confirmed until six blocks have passed (confirmations). As transactions are burred in the chain they become increasingly non-reversible but are very reversible before the first confirmation. Two to six confirmations are recommended for non-recourse situations depending on the value of the transactions involved.</p>
<p>When people ask this question they are usually thinking about applications like supermarkets. This generally is a recourse situation: if somebody tries to double-spend on a face-to-face transaction it might work a few times, but probabalistically speaking eventually one of the double-spends will get noticed, and the penalty for shoplifting charges in most localities is calibrated to be several times worse than the proceeds of a single shoplifting event.</p>
<p>Double-spends might be a concern for something like a snack machine in a low-traffic area with no nearby security cameras. Such a machine shouldn't honor 0-confirmation payments, and should instead use some other mechanism of clearing Bitcoin or validating transactions against reversal, see the wiki article <a href="https://en.bitcoin.it/wiki/Myths#Point_of_sale_with_bitcoins_isn.27t_possible_because_of_the_10_minute_wait_for_confirmation">here</a> for alternatives.</p>
<p>Applications that require immediate payment processing, like supermarkets or snack machines, need to manage the risks. Here is one way to reverse an unconfirmed payment:</p>
<p>A <a href="https://en.bitcoin.it/wiki/Double-spending#Finney_attack">Finney attack</a>, in which an attacker mines a block containing a movement of some coins back to themselves. Once they find a block solution, they quickly go to a merchant and make a purchase, then broadcast the block, thus taking back the coins. This attack is a risk primarily for goods that are dispatched immediately, like song downloads or currency trades. Because the attacker can't choose the time of the attack, it isn't a risk for merchants such as supermarkets where you can't choose exactly when to pay (due to queues, etc). The attack can fail if somebody else finds a block containing the purchasing transaction before you release your own block, therefore, merchants can reduce but not eliminate the risk by making purchasers wait some length of time that's less than a confirm.</p>
<p>Because pulling off this attack is not trivial, merchants who need to sell things automatically and instantly are most likely to just price the cost of reversal fraud in, or use insurance.</p>
<h3><a name="i-was-sent-some-bitcoins-and-they-havent-arrived-yet-where-are-they">I was sent some bitcoins and they haven't arrived yet! Where are they?</a></h3>
<p>Don't panic! There are a number of reasons why your bitcoins might not show up yet, and a number of ways to diagnose them. </p>
<p>The latest version of the Bitcoin-Qt client tells you how far it has yet to go in downloading the blockchain. Hover over the icon in the bottom right corner of the client to learn your client's status.</p>
<p>If it has not caught up then it's possible that your transaction hasn't been included in a block yet. </p>
<p>You can check pending transactions in the network by going <a href="http://blockchain.info">here</a> and then searching for your address. If the transaction is listed here then it's a matter of waiting until it gets included in a block before it will show in your client. </p>
<p>If the transaction is based on a coin that was in a recent transaction then it could be considered a low priority transaction. Transfers can take longer if the transaction fee paid was not high enough. If there is no fee at all the transfer can get a very low priority and take hours or even days to be included in a block.</p>
<h3><a name="why-does-my-bitcoin-address-keep-changing">Why does my Bitcoin address keep changing?</a></h3>
<p>Whenever the address listed in "Your address" receives a transaction, Bitcoin replaces it with a new address. This is meant to encourage you to use a new address for every transaction, which enhances <a href="https://en.bitcoin.it/wiki/Anonymity">anonymity</a>. All of your old addresses are still usable: you can see them in ''Settings -> Your Receiving Addresses''.</p>
<h3><a name="how-much-will-the-transaction-fee-be">How much will the transaction fee be?</a></h3>
<p>Some transactions might require a <a href="https://en.bitcoin.it/wiki/Transaction_fee">transaction fee</a> for them to get confirmed in a timely manner. The transaction fee is processed by and received by the bitcoin miner. The most recent version of the Bitcoin client will estimate an appropriate fee when a fee might be required.</p>
<p>The fee is added to the payment amount. For example, if you are sending a 1.234 BTC payment and the client requires a 0.0005 BTC fee, then 1.2345 BTC will be subtracted from the wallet balance for the entire transaction and the address for where the payment was sent will receive a payment of 1.234 BTC.</p>
<p>A fee might be imposed because your transaction looks like a denial of service attack to the Bitcoin system. For example, it might be burdensome to transmit or it might recycle Bitcoins you recently received. The wallet software attempts to avoid generating burdensome transactions, but it isn't always able to do so: The funds in your wallet might be new or composed of many tiny payments.</p>
<p>Because the fee is related to the amount of data that makes up the transaction and not to the amount of Bitcoins being sent, the fee may seem extremely low (0.0005 BTC for a 1,000 BTC transfer) or unfairly high (0.004 BTC for a 0.02 BTC payment, or about 20%). If you are receiving tiny amounts (''e.g.'' as small payments from a mining pool) then fees when sending will be higher than if your activity follows the pattern of conventional consumer or business transactions. </p>
<p>As of Bitcoin 0.5.3 the required fee will not be higher than 0.05 BTC. For most users there is usually no required fee at all. If a fee is required it will most commonly be 0.0005 BTC.</p>
<h3><a name="what-happens-when-someone-sends-me-a-bitcoin-but-my-computer-is-powered-off">What happens when someone sends me a bitcoin but my computer is powered off?</a></h3>
<p>Bitcoins are not actually "sent" to your wallet; the software only uses that term so that we can use the currency without having to learn new concepts. Your wallet is only needed when you wish to spend coins that you've received.</p>
<p>If you are sent coins when your wallet client program is not running, and you later launch the wallet client program, the coins will eventually appear as if they were just received in the wallet. That is to say, when the client program is started it must download blocks and catch up with any transactions it did not already know about.</p>
<h3><a name="how-long-does-synchronizing-take-when-the-bitcoin-client-is-first-installed-whats-it-doing">How long does "synchronizing" take when the Bitcoin client is first installed? What's it doing?</a></h3>
<p>The popular Bitcoin client software from bitcoin.org implements a "full" Bitcoin node: It can carry out all the duties of the Bitcoin P2P system, it isn't simply a "client". One of the principles behind the operation of full Bitcoin nodes is that they don't assume that the other participants have followed the rules of the Bitcoin system. During synchronization, the software is processing historical Bitcoin transactions and making sure for itself that all of the rules of the system have been correctly followed.</p>
<p>In normal operation, after synchronizing, the software should use a hardly noticeable amount of your computer's resources.</p>
<p>When the wallet client program is first installed, its initial validation requires a lot of work from your computer's hard disk, so the amount of time to synchronize depends on your disk speed and, to a lesser extent, your CPU speed. It can take anywhere from a few hours to a day or so. On a slow computer it could take more than 40 hours of continuous synchronization, so check your computer's power-saving settings to ensure that it does not turn its hard disk off when unattended for a few hours. You can use the Bitcoin software during synchronization, but you may not see recent payments to you until the client program has caught up to the point where those transactions happened.</p>
<p>If you feel that this process takes too long, you can download a pre-synchronized blockchain from <a href="http://eu2.bitcoincharts.com/blockchain/">http://eu2.bitcoincharts.com/blockchain/</a>. Alternatively, you can try an alternative "lite" client such as Multibit or a super-light client like electrum, though these clients have somewhat weaker security, are less mature, and don't contribute to the health of the P2P network.</p>
<h2><a name="networking">Networking</a></h2>
<h3><a name="do-i-need-to-configure-my-firewall-to-run-bitcoin">Do I need to configure my firewall to run Bitcoin?</a></h3>
<p>Bitcoin will connect to other nodes, usually on TCP port 8333. You will need to allow outgoing TCP connections to port 8333 if you want to allow your Bitcoin client to connect to many nodes. <a href="https://en.bitcoin.it/wiki/Testnet">Testnet</a> uses TCP port 18333 instead of 8333.</p>
<p>If you want to restrict your firewall rules to a few IPs, you can find stable nodes in the <a href="https://en.bitcoin.it/wiki/Fallback_Nodes">fallback nodes list</a>.</p>
<h3><a name="how-does-the-peer-finding-mechanism-work">How does the peer finding mechanism work?</a></h3>
<p>Bitcoin finds peers primarily by forwarding peer announcements within its own network and each node saves a database of peers that it's aware of, for future use. In order to bootstrap this process Bitcoin needs a list of initial peers, these can be provided manually but normally it obtains them by querying a set of DNS domain names which have automatically updated lists, if that doesn't work it falls back to a build-in list which is updated from time to time in new versions of the software. There is also an IRC based mechanism but it is disabled by default.</p>
<h2><a name="mining">Mining</a></h2>
<h3><a name="what-is-mining">What is mining?</a></h3>
<a href="https://en.bitcoin.it/wiki/Mining">Mining</a> is the process of spending computation power to secure Bitcoin transactions against reversal and introducing new Bitcoins to the system.
<p>Technically speaking, mining is the calculation of a <a href="https://en.bitcoin.it/wiki/Hash">hash</a> of the a block header, which includes among other things a reference to the previous block, a hash of a set of transactions and a <a href="https://en.bitcoin.it/wiki/Nonce">nonce</a>. If the hash value is found to be less than the current <a href="https://en.bitcoin.it/wiki/Target">target</a> (which is inversely proportional to the <a href="https://en.bitcoin.it/wiki/Difficulty">difficulty</a>), a new block is formed and the miner gets the newly generated Bitcoins (25 per block at current levels). If the hash is not less than the current target, a new nonce is tried, and a new hash is calculated. This is done millions of times per second by each miner.</p>
<h3><a name="is-mining-used-for-some-useful-computation">Is mining used for some useful computation?</a></h3>
<p>The computations done when mining are internal to Bitcoin and not related to any other distributed computing projects. They serve the purpose of securing the Bitcoin network, which is useful.</p>
<h3><a name="is-it-not-a-waste-of-energy">Is it not a waste of energy?</a></h3>
<p>Spending energy on creating and securing a free monetary system is hardly a waste. Also, services necessary for the operation of currently widespread monetary systems, such as banks and credit card companies, also spend energy, arguably more than Bitcoin would.</p>
<h3><a name="why-dont-we-use-calculations-that-are-also-useful-for-some-other-purpose">Why don't we use calculations that are also useful for some other purpose?</a></h3>
<p>To provide security for the Bitcoin network, the calculations involved need to have some <a href="http://bitcoin.stackexchange.com/questions/5617/why-are-bitcoin-calculation-useless/5618#5618">very specific features</a>. These features are incompatible with leveraging the computation for other purposes.</p>
<h3><a name="how-can-we-stop-miners-from-creating-zero-transaction-blocks">How can we stop miners from creating zero transaction blocks?</a></h3>
<p>The incentive for miners to include transactions is in the fees that come along with them. If we were to implement some minimum number of transactions per block it would be trivial for a miner to create and include transactions merely to surpass that threshold. As the network matures, the block reward drops, and miners become more dependent on transactions fees to pay their costs, the problem of zero transaction blocks should diminish over time.</p>
<h3><a name="how-does-the-proof-of-work-system-help-secure-bitcoin">How does the proof-of-work system help secure Bitcoin?</a></h3>
<p>To give a general idea of the mining process, imagine this setup:</p>
<p>
payload = [some data related to things happening on the Bitcoin network]<br>
nonce = 1<br>
hash = <a href="http://en.wikipedia.org/wiki/SHA2">SHA2</a>( <a href="http://en.wikipedia.org/wiki/SHA2">SHA2</a>( payload + nonce ) )<br>
</p>
<p>The cost function use in bitcoin is the <a href="http://en.wikipedia.org/wiki/Hashcash">Hashcash</a> cost-function. Bit coin mining intensively computes a high value Hashcash stamp on the underlying block chain data. The hashcash stamp that Bitcoin miners produce is computed by repeatedly increasing "nonce" until the hash function yields a value, that has the rare property of being below a certain target threshold. (In other words: The hash "starts with a certain number of zeroes", if you display it in the fixed-length representation, that is typically used.)</p>
<p>As can be seen, the mining process doesn't compute anything special. It merely tries to find a number (also referred to as nonce) which - in combination with the payload - results in a hash with special properties.</p>
<p>The advantage of using the hashcash mechanism consists of the fact, that it is very easy to check a result: Given the payload and a specific nonce, only a single call of the hashing function is needed to verify that the hash has the required properties. Since there is no known way to find these hashes other than brute force, this can be used as a "proof of work" that someone invested a lot of computing power to find the correct nonce for this payload.</p>
<p>This feature is then used in the Bitcoin network to secure various aspects. An attacker that wants to introduce malicious payload data into the network, will need to do the required hashcash proof of work before it will be accepted. And as long as honest miners have more computing power, they can always outpace an attacker.</p>
<p>Also see <a href="http://en.wikipedia.org/wiki/Hashcash">Hashcash</a> and <a href="http://en.wikipedia.org/wiki/Proof-of-work_system">Proof-of-work system</a> and <a href="http://en.wikipedia.org/wiki/SHA2">SHA2</a> and on Wikipedia.</p>
<h3><a name="what-do-i-need-to-start-mining">What do I need to start mining?</a></h3>
<p>In the early days of Bitcoin, it was easy for anyone to find new blocks using standard CPUs. As more and more people started mining, the <a href="https://en.bitcoin.it/wiki/Difficulty">difficulty</a> of finding new blocks has greatly increased to the point where the average time for a CPU to find a single block can be many years. The only cost-effective method of <a href="https://en.bitcoin.it/wiki/Mining">mining</a> is using a high-end graphics card with special software (see also <a href="https://en.bitcoin.it/wiki/Why_a_GPU_mines_faster_than_a_CPU">Why a GPU mines faster than a CPU</a>) and/or joining a <a href="https://en.bitcoin.it/wiki/Bitcoin_Pool">mining pool</a>. Since solo CPU mining is essentially useless, it was removed from the GUI of the Bitcoin software.</p>
<h2><a name="security">Security</a></h2>
<h3><a name="could-miners-collude-to-give-themselves-money-or-to-change-the-nature-of-bitcoin">Could miners collude to give themselves money or to fundamentally change the nature of Bitcoin?</a></h3>
<p>There are two questions in here. Let's look at them separately.</p>
<h4>Could miners gang up and give themselves money?</h4>
<p>Mining itself is the process of creating new blocks in the block chain. Each block contains a list of all the transactions that have taken place across the entire Bitcoin network since the last block was created, as well as a hash of the previous block. New blocks are 'mined', or rather, generated, by Bitcoin clients correctly guessing sequences of characters in codes called 'hashes,' which are created using information from previous blocks. Bitcoin users may download specialized 'mining' software, which allows them to dedicate some amount of their processing power however large or small to guessing at strings within the hash of the previous block. Whoever makes the right guess first, thus creating a new block, receives a reward in Bitcoins.</p>
<p>The block chain is one of the two structures that makes Bitcoin secure, the other being the public-key encryption system on which Bitcoin trade is based. The block chain assures that not only is every single transaction that ever takes place recorded, but that every single transaction is recorded on the computer of anyone who chooses to store the relevant information. Many, many users have complete records of every transaction in Bitcoins history readily available to them at any point, and anyone who wants in the information can obtain it with ease. These things make Bitcoin very hard to fool.</p>
<p>The Bitcoin network takes considerable processing power to run, and since those with the most processing power can make the most guesses, those who put the most power toward to sustaining the network earn the most currency. Each correct guess yields, at present, fifty Bitcoins, and as Bitcoins are presently worth something (although the value still fluctuates) every miner who earns any number of Bitcoins makes money. Some miners pull in Bitcoins on their own; and some also join or form pools wherein all who contribute earn a share of the profits. </p>
<p>Therefore, first answer is a vehement “yes” no only can miners collude to get more money, Bitcoin is designed to encourage them to do so. Bitcoin pools are communal affairs, and there is nothing dishonest or underhanded about them.</p>
<p>Of course, the real question is:</p>
<h4>Can they do so in ways not sanction by Bitcoin developers? Is there any way to rip off the network and make loads of money dishonestly?</h4>
<p>Bitcoin isn't infallible. It can be cheated, but doing so is extremely difficult. Bitcoin was designed to evade some of the central problems with modern currencies namely, that their trustworthiness hinges upon that of people who might not have users' best interests in mind. Every currency in the world (other than Bitcoin) is controlled by large institutions who keep track of what's done with it, and who can manipulate its value. And every other currency has value because people trust the institutions that control them.</p>
<p>Bitcoin doesn't ask that its users trust any institution. Its security is based on the cryptography that is an integral part of its structure, and that is readily available for any and all to see. Instead of one entity keeping track of transactions, the entire network does, so Bitcoins are astoundingly difficult to steal, or double-spend. Bitcoins are created in a regular and predictable fashion, and by many different users, so no one can decide to make a whole lot more and lessen their value. In short, Bitcoin is designed to be inflation-proof, double-spend-proof and completely distributed.</p>
<p>Nonetheless, there are a few ways that one can acquire Bitcoins dishonestly. Firstly, one can steal private keys. Key theft isn't something that Bitcoin security has been designed to prevent: it's up to users to keep theirs safe. But the cryptography is designed so that it is completely impossible to deduce someone's private key from their public one. As long as you keep your private key to yourself, you don't have much to worry about. Furthermore, one could theoretically create a new block chain, but due to the way in which the block chain is constructed, this would be extremely difficult and require massive amounts of processing power. A full explanation of the difficulties involved can be found in the <a href="https://en.bitcoin.it/wiki/Block_chain">block chain</a> article.</p>
<p>Bitcoin can be ripped off but doing so would be extremely hard and require considerable expertise and a staggering amount of processing power. And it's only going to get harder with time. Bitcoin isn't impenetrable, but it's close enough to put any real worries in the peripherals.</p>
<h4>Could miners fundamentally change the nature of Bitcoin?</h4>
<p>Once again, almost certainly not.</p>
<p>Bitcoin is a distributed network, so any changes implemented to the system must be accepted by all users. Someone trying to change the way Bitcoins are generated would have to convince every user to download and use their software so the only changes that would go through are those that would be equally benefit all users. </p>
<p>And thus, it is more or less impossible for anyone to change the function of Bitcoin to their advantage. If users don't like the changes, they won't adopt them, whereas if users do like them, then these will help everyone equally. Of course, one can conceive of a situation where someone manages to get a change pushed through that provides them with an advantage that no one notices, but given that Bitcoin is structurally relatively simple, it is unlikely that any major changes will go through without someone noticing first.</p>
<p>The fact that such changes are so difficult to make testifies to the fully distributed nature of Bitcoin. Any centrally controlled currency can be modified by its central agency without the consent of its adherents. Bitcoin has no central authority, so it changes only at the behest of the whole community. Bitcoins development represents a kind of collective evolution; the first of its kind among currencies.</p>
<h2><a name="help">Help</a></h2>
<h3>I'd like to learn more. Where can I get help?</h3>
<ul>
<li>Read the <a href="https://en.bitcoin.it/wiki/Introduction">introduction to bitcoin</a></li>
<li>See the videos, podcasts, and blog posts from the <a href="https://en.bitcoin.it/wiki/Press">Press</a></li>
<li>Read and post on the <a href="https://en.bitcoin.it/wiki/Bitcoin:Community_portal#Bitcoin_Community_Forums">forums</a></li>
<li>Chat on one of the <a href="https://en.bitcoin.it/wiki/Bitcoin:Community_portal#IRC_Chat">Bitcoin IRC</a> channels</li>
<li>Listen to <a href="http://omegataupodcast.net/2011/03/59-bitcoin-a-digital-decentralized-currency/">this podcast</a>, which goes into the details of how bitcoin works</li>
<li>Ask questions on the <a href="http://bitcoin.stackexchange.com">Bitcoin Stack Exchange</a></li>
</ul>

11
en/foundation.html Normal file
View file

@ -0,0 +1,11 @@
---
layout: base-en
title: Bitcoin Foundation
---
<div class="foundation">
<img src="/img/logo_bitcoin_foundation.png" alt="The Bitcoin Foundation" style="float:left;margin-right:10px;">
<h1 style="margin-bottom:30px;">Bitcoin Foundation</h1>
<p>Bitcoin Foundation standardizes, protects and promotes the use of Bitcoin cryptographic money for the benefit of users worldwide.</p>
<h2><a href="https://bitcoinfoundation.org/" target="_blank">Visit Bitcoin Foundation Website</a></h2>
</div>

26
en/how-it-works.html Normal file
View file

@ -0,0 +1,26 @@
---
layout: base-en
title: How does Bitcoin work? - Bitcoin
---
<h1>How does Bitcoin work?</h1>
<p>OK, this is a question that often causes confusion. Here's a quick explanation!
<h2>The basics for a new user</h2>
<p>As a new user, you only need to <a href="/en/choose-your-wallet">choose a wallet</a> that you will install on your computer or on your mobile phone. Once you have your wallet installed, it will generate your first Bitcoin address and you can create more whenever you need one. You can disclose one of your Bitcoin addresses to your friends so that they can pay you or vice versa, you can pay your friends if they give you their addresses. In fact, this is pretty similar to how email works. So all that is left to do at this point is to get some bitcoins and to <a href="/en/you-need-to-know">keep them safe</a>. In order to start using Bitcoin, you are not required to understand the technical details.</p>
<p>However, if you want to know more, keep reading!</p>
<p><br><img src="/en/img/bitcoin_at_a_glance.svg" alt="Bitcoin overview" /></p>
<h2>Blockchain</h2>
<p>The blockchain is a <b>shared public transaction log</b> on which the entire Bitcoin network relies. All confirmed transactions are included in the blockchain with no exception. This way, new transactions can be verified to be spending bitcoins that are actually owned by the spender. The integrity and the chronological order of the blockchain are enforced with <a href="/en/vocabulary#cryptography">cryptography</a>.</p>
<h2>Transaction</h2>
<p>A transaction is <b>a transfer of value between Bitcoin addresses</b> that gets included in the blockchain. Bitcoin wallets keep a secret piece of data called a <a href="/en/vocabulary#private-key"><i>private key</i></a> for each Bitcoin address. Private keys are used to sign transactions, providing a mathematical proof that they come from the owner of the addresses. The <a href="/en/vocabulary#signature"><i>signature</i></a> also prevents the transaction from being altered by anybody once it has been issued. All transactions are broadcast between users and confirmed by the network in the following minutes, through a process called <a href="/en/vocabulary#mining"><i>mining</i></a>.</p>
<h2>Mining</h2>
<p>Mining is a <b>distributed consensus system</b> that is used to <a href="/en/vocabulary#confirmation"><i>confirm</i></a> waiting transactions by including them in the blockchain. It enforces a chronological order in the blockchain, protects the neutrality of the network, and allows different computers to agree on the state of the system. To be confirmed, transactions must be packed in a <a href="/en/vocabulary#block"><i>block</i></a> that fits very strict cryptographic rules that will be verified by the network. These rules prevent any previous block from being modified because doing so would invalidate all following blocks. Mining also creates the equivalent of a competitive lottery that prevents any individual from easily adding new blocks consecutively in the blockchain. This way, no individuals can control what is included in the blockchain or replace parts of the blockchain to roll back their own spends.</p>
<h2>Going down the rabbit hole</h2>
<p>This is only a very short and concise summary of the system. If you want to get into the details, you can <a href="/bitcoin.pdf">read the original paper</a> that describes the system's design, and explore the <a href="https://en.bitcoin.it/wiki/Main_Page" target="_blank">Bitcoin wiki</a>.</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,702 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="600"
height="600"
id="svg2985">
<defs
id="defs2987" />
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,568)"
id="layer1">
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(13.382582,0,0,11.866899,114.61286,-599.99155)"
id="path3765"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 255.45551,-376.39244 91.99394,0.21031 c 0,0 0.22208,-14.14113 0.0201,-40.73312 -0.10037,-13.47647 -28.11908,-25.73828 -44.79565,-25.52656 -17.22086,0.21864 -46.95198,10.97155 -47.22032,24.04785 -0.72408,35.28228 0,42.00148 -9e-5,42.00152 z"
id="path3767"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5.50831413;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text3777"
style="font-size:18.44081879px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 281.75452,-335.86192 c 0.71304,-0.28275 1.42609,-0.64542 2.13914,-1.08801 0.72533,-0.44257 1.36461,-0.96506 1.91784,-1.56747 l 1.56747,0 0,12.77948 -2.23134,0 0,-9.79207 c -0.33194,0.25818 -0.74993,0.51021 -1.25397,0.75607 -0.50406,0.24589 -0.98966,0.44874 -1.45683,0.60855 l -0.68231,-1.69655"
id="path3351"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 298.39477,-330.51409 c -10e-6,-0.9958 -0.22745,-1.77031 -0.68231,-2.32354 -0.44259,-0.55322 -1.16178,-0.82983 -2.15758,-0.82984 -0.209,10e-6 -0.43029,0.0123 -0.66387,0.0369 -0.22129,0.0123 -0.44258,0.0492 -0.66387,0.11065 l 0,5.5138 c 0.1967,0.13524 0.45487,0.26432 0.77452,0.38726 0.33193,0.11065 0.6823,0.16597 1.05112,0.16597 0.81139,0 1.4015,-0.27661 1.77032,-0.82984 0.38111,-0.55322 0.57166,-1.297 0.57167,-2.23134 m 2.28666,-0.0369 c -10e-6,0.73764 -0.0984,1.4138 -0.29505,2.02849 -0.18442,0.6147 -0.45489,1.14333 -0.8114,1.58591 -0.35653,0.44258 -0.80526,0.78681 -1.34618,1.03269 -0.52864,0.24588 -1.13104,0.36881 -1.8072,0.36881 -0.45488,0 -0.87287,-0.0553 -1.25398,-0.16596 -0.38111,-0.11065 -0.6946,-0.23359 -0.94048,-0.36882 l 0,3.74349 -2.23134,0 0,-12.74261 c 0.45488,-0.12293 1.01425,-0.23972 1.67812,-0.35037 0.66386,-0.11064 1.36461,-0.16596 2.10225,-0.16597 0.76222,10e-6 1.44453,0.1168 2.04693,0.35037 0.60239,0.2336 1.11259,0.57168 1.53059,1.01425 0.43028,0.43029 0.75606,0.95893 0.97736,1.58591 0.23358,0.6147 0.35037,1.3093 0.35038,2.08381"
id="path3353"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 307.38841,-332.85607 c 0.55322,-0.92203 1.09415,-1.85637 1.6228,-2.80301 0.52862,-0.94661 1.00809,-1.89939 1.43838,-2.85832 l 2.58171,0 c -0.68846,1.30316 -1.40765,2.60016 -2.15757,3.89101 -0.73764,1.27857 -1.5306,2.56943 -2.37887,3.87257 l 0,5.0159 -2.32354,0 0,-4.97902 c -0.84828,-1.31543 -1.64738,-2.61858 -2.39731,-3.90945 -0.74992,-1.29085 -1.46912,-2.58785 -2.15757,-3.89101 l 2.72924,0 c 0.43028,0.95893 0.9036,1.91171 1.41994,2.85832 0.51634,0.94664 1.05727,1.88098 1.62279,2.80301"
id="path3355"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 317.43866,-325.4613 c -0.33194,0 -0.67617,-0.0246 -1.03269,-0.0738 -0.34423,-0.0369 -0.67616,-0.0922 -0.9958,-0.16596 -0.30735,-0.0615 -0.59011,-0.12909 -0.84828,-0.20285 -0.25817,-0.0861 -0.45487,-0.16597 -0.59011,-0.23973 l 0.44258,-1.89941 c 0.25817,0.12294 0.63314,0.26432 1.12489,0.42414 0.49176,0.14753 1.1003,0.22129 1.82564,0.22129 0.97122,0 1.67197,-0.18441 2.10226,-0.55322 0.43028,-0.38111 0.64542,-0.88516 0.64543,-1.51215 -10e-6,-0.40569 -0.0861,-0.74378 -0.25818,-1.01425 -0.15982,-0.27046 -0.38726,-0.4856 -0.68231,-0.64542 -0.28276,-0.17211 -0.6147,-0.2889 -0.9958,-0.35038 -0.36882,-0.0738 -0.76222,-0.11064 -1.18021,-0.11064 l -0.75608,0 0,-1.8072 0.92205,0 c 0.28275,0 0.56551,-0.0246 0.84827,-0.0738 0.29505,-0.0615 0.55937,-0.15981 0.79296,-0.29505 0.23358,-0.14752 0.42413,-0.33807 0.57166,-0.57167 0.14752,-0.23357 0.22129,-0.53477 0.22129,-0.9036 0,-0.29504 -0.0553,-0.54706 -0.16596,-0.75607 -0.11066,-0.20899 -0.25818,-0.3811 -0.44258,-0.51634 -0.17212,-0.13522 -0.37497,-0.23358 -0.60855,-0.29506 -0.23359,-0.0614 -0.47947,-0.0922 -0.73763,-0.0922 -0.55323,1e-5 -1.04499,0.0861 -1.47527,0.25817 -0.43029,0.15983 -0.8114,0.34424 -1.14333,0.55323 l -0.8114,-1.65968 c 0.17212,-0.11063 0.38111,-0.22742 0.62699,-0.35037 0.24588,-0.12293 0.51634,-0.23972 0.8114,-0.35038 0.30734,-0.11063 0.63313,-0.19669 0.97736,-0.25817 0.34423,-0.0737 0.7069,-0.11063 1.08801,-0.11065 0.71304,2e-5 1.32773,0.0861 1.84408,0.25818 0.51634,0.17212 0.94048,0.418 1.27242,0.73763 0.34422,0.30736 0.59624,0.67617 0.75607,1.10645 0.17211,0.418 0.25816,0.87902 0.25817,1.38306 -10e-6,0.59011 -0.16597,1.11875 -0.4979,1.58591 -0.31965,0.46717 -0.73764,0.8237 -1.25397,1.06957 0.66386,0.23359 1.21093,0.62084 1.64123,1.16177 0.44257,0.54093 0.66386,1.23554 0.66387,2.08381 -1e-5,0.56552 -0.0984,1.09416 -0.29506,1.58591 -0.19671,0.47946 -0.49791,0.89746 -0.9036,1.25398 -0.4057,0.34423 -0.92204,0.62084 -1.54902,0.82983 -0.6147,0.19671 -1.35234,0.29506 -2.2129,0.29506"
id="path3357"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 327.49553,-326.95501 c 0,0.43029 -0.14753,0.78066 -0.44258,1.05113 -0.28276,0.27046 -0.62699,0.4057 -1.03268,0.4057 -0.418,0 -0.76837,-0.13524 -1.05113,-0.4057 -0.28276,-0.27047 -0.42414,-0.62084 -0.42414,-1.05113 0,-0.43028 0.14138,-0.78066 0.42414,-1.05113 0.28276,-0.28275 0.63313,-0.42413 1.05113,-0.42413 0.40569,0 0.74992,0.14138 1.03268,0.42413 0.29505,0.27047 0.44258,0.62085 0.44258,1.05113"
id="path3359"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 332.39387,-326.95501 c 0,0.43029 -0.14753,0.78066 -0.44257,1.05113 -0.28277,0.27046 -0.627,0.4057 -1.03269,0.4057 -0.41799,0 -0.76837,-0.13524 -1.05113,-0.4057 -0.28276,-0.27047 -0.42414,-0.62084 -0.42414,-1.05113 0,-0.43028 0.14138,-0.78066 0.42414,-1.05113 0.28276,-0.28275 0.63314,-0.42413 1.05113,-0.42413 0.40569,0 0.74992,0.14138 1.03269,0.42413 0.29504,0.27047 0.44257,0.62085 0.44257,1.05113"
id="path3361"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3777-7"
style="font-size:18.44081879px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 281.16294,-358.93947 c 0.71304,-0.28275 1.42609,-0.64542 2.13913,-1.08801 0.72534,-0.44257 1.36462,-0.96506 1.91785,-1.56747 l 1.56747,0 0,12.77949 -2.23134,0 0,-9.79207 c -0.33194,0.25818 -0.74993,0.5102 -1.25398,0.75607 -0.50405,0.24588 -0.98966,0.44873 -1.45682,0.60855 l -0.68231,-1.69656"
id="path3338"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 293.81997,-350.41981 c 0.5901,0 1.02039,-0.0676 1.29086,-0.20285 0.27046,-0.14753 0.40569,-0.3934 0.40569,-0.73763 0,-0.31964 -0.14753,-0.58396 -0.44258,-0.79296 -0.28276,-0.20899 -0.75607,-0.43643 -1.41994,-0.68231 -0.4057,-0.14752 -0.78066,-0.30119 -1.12489,-0.46102 -0.33194,-0.17211 -0.62084,-0.36881 -0.86672,-0.59011 -0.24588,-0.22128 -0.44258,-0.4856 -0.5901,-0.79295 -0.13524,-0.31964 -0.20285,-0.70689 -0.20285,-1.16177 0,-0.88515 0.32578,-1.57976 0.97736,-2.08381 0.65157,-0.51634 1.53673,-0.77451 2.65548,-0.77452 0.56551,1e-5 1.10644,0.0553 1.62279,0.16597 0.51634,0.0984 0.90359,0.19671 1.16177,0.29505 l -0.4057,1.8072 c -0.24588,-0.11064 -0.55937,-0.20899 -0.94048,-0.29505 -0.38111,-0.0983 -0.82369,-0.14752 -1.32774,-0.14753 -0.45487,10e-6 -0.82369,0.0799 -1.10645,0.23973 -0.28276,0.14754 -0.42414,0.38112 -0.42413,0.70075 -10e-6,0.15983 0.0246,0.30121 0.0738,0.42414 0.0615,0.12295 0.15982,0.23974 0.29505,0.35038 0.13523,0.0984 0.31349,0.20285 0.53479,0.31349 0.22128,0.0984 0.49175,0.20286 0.81139,0.3135 0.52863,0.1967 0.97736,0.39341 1.34618,0.5901 0.36881,0.18442 0.67001,0.39956 0.9036,0.64543 0.24587,0.23359 0.42413,0.50405 0.53479,0.8114 0.11063,0.30735 0.16595,0.67616 0.16596,1.10645 -1e-5,0.92204 -0.34423,1.62279 -1.03268,2.10225 -0.67617,0.46717 -1.64739,0.70075 -2.91365,0.70075 -0.84828,0 -1.53059,-0.0738 -2.04693,-0.22129 -0.51635,-0.13523 -0.87902,-0.24588 -1.08801,-0.33193 l 0.38726,-1.86253 c 0.33193,0.13524 0.72533,0.26432 1.18021,0.38726 0.46716,0.12294 0.9958,0.18441 1.58591,0.18441"
id="path3340"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 301.58413,-353.6654 c 0,0.98352 0.23358,1.75803 0.70075,2.32355 0.46716,0.55322 1.11259,0.82984 1.93629,0.82983 0.35651,1e-5 0.65771,-0.0123 0.9036,-0.0369 0.25816,-0.0369 0.46716,-0.0738 0.62698,-0.11064 l 0,-5.53225 c -0.19671,-0.13522 -0.46102,-0.25816 -0.79295,-0.36881 -0.31965,-0.12294 -0.66388,-0.1844 -1.03269,-0.18441 -0.8114,10e-6 -1.40765,0.27662 -1.78876,0.82983 -0.36882,0.55324 -0.55322,1.30316 -0.55322,2.24978 m 6.39896,4.55489 c -0.44259,0.13523 -1.00196,0.25817 -1.67811,0.36881 -0.66388,0.11065 -1.36463,0.16597 -2.10226,0.16597 -0.76222,0 -1.44453,-0.11679 -2.04693,-0.35038 -0.6024,-0.23358 -1.11874,-0.56551 -1.54902,-0.9958 -0.418,-0.44258 -0.74379,-0.97121 -0.97737,-1.58591 -0.22129,-0.62698 -0.33193,-1.32773 -0.33193,-2.10225 0,-0.76222 0.0922,-1.45067 0.27661,-2.06537 0.1967,-0.62699 0.47946,-1.16177 0.84828,-1.60436 0.36881,-0.44257 0.81754,-0.78065 1.34618,-1.01424 0.52863,-0.24587 1.13718,-0.36881 1.82564,-0.36882 0.46716,10e-6 0.879,0.0553 1.23553,0.16597 0.35652,0.11065 0.66387,0.23359 0.92204,0.36882 l 0,-4.62865 2.23134,-0.36882 0,14.01503"
id="path3342"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 314.69008,-355.43571 c 0.35651,0 0.70689,-0.0307 1.05112,-0.0922 0.34422,-0.0738 0.63928,-0.17825 0.88516,-0.31349 0.0123,-0.13523 0.0184,-0.25202 0.0184,-0.35038 -1e-5,-0.0983 -1e-5,-0.1844 0,-0.25817 -1e-5,-0.49175 -0.0369,-0.95277 -0.11064,-1.38306 -0.0615,-0.44257 -0.17827,-0.82368 -0.35038,-1.14333 -0.15983,-0.33193 -0.38726,-0.5901 -0.68231,-0.77452 -0.28276,-0.19669 -0.63929,-0.29504 -1.06957,-0.29505 -0.35652,10e-6 -0.66387,0.0738 -0.92204,0.22129 -0.24588,0.14754 -0.44873,0.33809 -0.60854,0.57167 -0.15983,0.23359 -0.27662,0.48561 -0.35038,0.75607 -0.0738,0.27047 -0.11065,0.53479 -0.11064,0.79296 -1e-5,0.74993 0.17825,1.31545 0.53478,1.69655 0.36881,0.38112 0.94048,0.57167 1.715,0.57167 m 1.75187,1.34618 c -0.29506,0.13523 -0.62084,0.23973 -0.97736,0.31349 -0.35653,0.0738 -0.70076,0.11065 -1.03269,0.11064 -0.76222,10e-6 -1.4138,-0.0983 -1.95472,-0.29505 -0.52864,-0.20899 -0.96507,-0.49175 -1.3093,-0.84828 -0.33194,-0.36881 -0.57781,-0.79294 -0.73763,-1.27241 -0.15983,-0.47946 -0.23974,-0.9958 -0.23973,-1.54903 -10e-6,-0.47945 0.0799,-0.96506 0.23973,-1.45683 0.15982,-0.50403 0.41184,-0.96505 0.75607,-1.38306 0.34423,-0.41798 0.78066,-0.75606 1.3093,-1.01424 0.52863,-0.27046 1.15562,-0.40569 1.88096,-0.4057 1.49985,1e-5 2.63088,0.48562 3.39311,1.45682 0.77451,0.95894 1.16176,2.31741 1.16177,4.07542 -10e-6,2.48337 -0.63929,4.36434 -1.91784,5.6429 -1.27857,1.27856 -3.23944,1.92399 -5.88262,1.93628 l -0.0922,-1.86252 c 0.73763,0 1.4015,-0.0615 1.99161,-0.18441 0.6024,-0.12294 1.12489,-0.31964 1.56747,-0.59011 0.45487,-0.27046 0.83598,-0.62083 1.14333,-1.05112 0.30734,-0.44258 0.54093,-0.98351 0.70075,-1.62279"
id="path3344"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 323.80647,-350.03255 c -10e-6,0.43028 -0.14753,0.78066 -0.44258,1.05112 -0.28276,0.27047 -0.62699,0.4057 -1.03269,0.4057 -0.41799,0 -0.76837,-0.13523 -1.05112,-0.4057 -0.28276,-0.27046 -0.42414,-0.62084 -0.42414,-1.05112 0,-0.43029 0.14138,-0.78066 0.42414,-1.05113 0.28275,-0.28276 0.63313,-0.42414 1.05112,-0.42414 0.4057,0 0.74993,0.14138 1.03269,0.42414 0.29505,0.27047 0.44257,0.62084 0.44258,1.05113"
id="path3346"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 328.70481,-350.03255 c 0,0.43028 -0.14753,0.78066 -0.44258,1.05112 -0.28276,0.27047 -0.62699,0.4057 -1.03268,0.4057 -0.418,0 -0.76837,-0.13523 -1.05113,-0.4057 -0.28276,-0.27046 -0.42414,-0.62084 -0.42414,-1.05112 0,-0.43029 0.14138,-0.78066 0.42414,-1.05113 0.28276,-0.28276 0.63313,-0.42414 1.05113,-0.42414 0.40569,0 0.74992,0.14138 1.03268,0.42414 0.29505,0.27047 0.44258,0.62084 0.44258,1.05113"
id="path3348"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3833"
style="font-size:33.05439758px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 283.14691,-399.73962 c 0.99162,-1.6527 1.96122,-3.32746 2.90879,-5.02427 0.94754,-1.69677 1.80696,-3.40458 2.57824,-5.12343 l 4.62762,0 c -1.23405,2.33587 -2.52317,4.66069 -3.86737,6.97448 -1.32219,2.29178 -2.74353,4.60559 -4.26402,6.94142 l 0,8.9908 -4.16485,0 0,-8.92469 c -1.52051,-2.35787 -2.95286,-4.69371 -4.29707,-7.00753 -1.34422,-2.31379 -2.63334,-4.63861 -3.86737,-6.97448 l 4.89206,0 c 0.77126,1.71885 1.61965,3.42666 2.54518,5.12343 0.92552,1.69681 1.89511,3.37157 2.90879,5.02427"
id="path3331" />
<path
d="m 309.8621,-395.64087 c -2e-5,1.36625 -0.19835,2.6113 -0.59498,3.73514 -0.39667,1.12386 -0.9586,2.08243 -1.68578,2.87574 -0.72721,0.7933 -1.60866,1.41032 -2.64435,1.85104 -1.01368,0.44073 -2.13753,0.66109 -3.37155,0.66109 -1.23404,0 -2.35789,-0.22036 -3.37155,-0.66109 -1.01367,-0.44072 -1.8841,-1.05774 -2.61129,-1.85104 -0.7272,-0.79331 -1.30015,-1.75188 -1.71883,-2.87574 -0.39666,-1.12384 -0.59498,-2.36889 -0.59498,-3.73514 0,-1.36624 0.19832,-2.60027 0.59498,-3.7021 0.41868,-1.12383 0.99163,-2.08241 1.71883,-2.87573 0.74922,-0.79329 1.63067,-1.39928 2.64435,-1.81799 1.01366,-0.44071 2.12649,-0.66107 3.33849,-0.66109 1.21198,2e-5 2.32482,0.22038 3.3385,0.66109 1.03569,0.41871 1.91714,1.0247 2.64435,1.81799 0.72718,0.79332 1.2891,1.7519 1.68577,2.87573 0.41867,1.10183 0.62802,2.33586 0.62804,3.7021 m -4.09875,0 c -10e-6,-1.71882 -0.37463,-3.07405 -1.12385,-4.06569 -0.72721,-1.01366 -1.75189,-1.52049 -3.07406,-1.52051 -1.32218,2e-5 -2.35789,0.50685 -3.10711,1.52051 -0.7272,0.99164 -1.0908,2.34687 -1.0908,4.06569 0,1.74087 0.3636,3.11813 1.0908,4.1318 0.74922,1.01367 1.78493,1.5205 3.10711,1.5205 1.32217,0 2.34685,-0.50683 3.07406,-1.5205 0.74922,-1.01367 1.12384,-2.39093 1.12385,-4.1318"
id="path3333" />
<path
d="m 328.16287,-387.50949 c -0.77129,0.19833 -1.77394,0.39665 -3.00795,0.59498 -1.23404,0.22036 -2.58927,0.33054 -4.06569,0.33054 -1.3883,0 -2.55622,-0.19833 -3.50377,-0.59498 -0.92553,-0.39665 -1.67476,-0.94756 -2.2477,-1.65272 -0.55091,-0.70516 -0.94756,-1.54253 -1.18996,-2.51213 -0.2424,-0.99163 -0.3636,-2.0714 -0.36359,-3.23933 l 0,-9.68494 3.99958,0 0,9.0569 c -1e-5,1.85106 0.26443,3.17323 0.7933,3.96653 0.5509,0.79331 1.49846,1.18996 2.84268,1.18996 0.48479,0 0.99162,-0.022 1.5205,-0.0661 0.5509,-0.0441 0.95857,-0.0992 1.22302,-0.16527 l 0,-13.98201 3.99958,0 0,16.75858"
id="path3335" />
</g>
<path
d="m 124.55979,-350.01218 15.25114,0 c 1.58287,0 2.85716,1.2743 2.85716,2.85716 l 0,13.69815 c 0,1.58287 -1.27429,2.85716 -2.85716,2.85716 l -15.25114,0 c -1.58286,0 -2.85715,-1.27429 -2.85715,-2.85716 l 0,-13.69815 c 0,-1.58286 1.27429,-2.85716 2.85715,-2.85716 z"
id="rect3775-6-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text3777-0-0"
style="font-size:16.60424614px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
<path
d="m 149.00721,-343.89567 c 0.64203,-0.25459 1.28406,-0.58114 1.9261,-0.97965 0.65309,-0.39849 1.22871,-0.86894 1.72684,-1.41136 l 1.41136,0 0,11.50674 -2.00911,0 0,-8.81685 c -0.29888,0.23247 -0.67525,0.45939 -1.12909,0.68077 -0.45386,0.2214 -0.8911,0.40405 -1.31174,0.54794 l -0.61436,-1.52759"
id="path3317"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 159.80594,-339.08044 c 0,0.84129 0.16604,1.51099 0.49813,2.00912 0.34315,0.49813 0.88002,0.74719 1.61061,0.74719 0.33208,0 0.64203,-0.0498 0.92984,-0.14944 0.29887,-0.11069 0.53686,-0.22692 0.71398,-0.34869 l 0,-4.96467 c -0.14391,-0.0332 -0.32656,-0.0609 -0.54794,-0.083 -0.21033,-0.0332 -0.48706,-0.0498 -0.83021,-0.0498 -0.74166,0 -1.32281,0.2546 -1.74345,0.76379 -0.42064,0.49814 -0.63096,1.18998 -0.63096,2.07553 m -2.05892,-0.0332 c -1e-5,-0.6863 0.0996,-1.30619 0.29887,-1.85967 0.21032,-0.56454 0.50366,-1.04053 0.88003,-1.42797 0.38743,-0.39849 0.85235,-0.7029 1.39475,-0.91323 0.5424,-0.22138 1.15676,-0.33208 1.84307,-0.33209 0.68631,10e-6 1.32834,0.0498 1.9261,0.14944 0.59774,0.0996 1.09033,0.2048 1.47777,0.31548 l 0,11.47354 -2.00911,0 0,-3.37066 c -0.23246,0.12176 -0.52027,0.23246 -0.86342,0.33208 -0.33209,0.0996 -0.70292,0.14944 -1.11248,0.14944 -0.6199,0 -1.16784,-0.10516 -1.64382,-0.31548 -0.476,-0.22139 -0.8745,-0.53134 -1.19551,-0.92984 -0.32102,-0.3985 -0.57008,-0.87449 -0.74719,-1.42796 -0.16604,-0.55348 -0.24907,-1.16783 -0.24906,-1.84308"
id="path3319"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 176.23922,-346.28668 0,1.80986 -3.53671,0 0,9.69688 -2.10874,0 0,-9.69688 -3.5367,0 0,-1.80986 9.18215,0"
id="path3321"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 184.29098,-335.04561 c -0.38744,0.0996 -0.8911,0.19926 -1.51099,0.29888 -0.6199,0.1107 -1.30067,0.16604 -2.04232,0.16604 -0.69738,0 -1.28407,-0.0996 -1.76005,-0.29887 -0.46492,-0.19925 -0.84129,-0.47599 -1.12909,-0.83022 -0.27674,-0.35422 -0.47599,-0.77486 -0.59775,-1.26192 -0.12177,-0.49812 -0.18265,-1.04053 -0.18265,-1.62721 l 0,-4.86505 2.00911,0 0,4.54956 c 0,0.92985 0.13283,1.59402 0.39851,1.99251 0.27673,0.39851 0.75272,0.59776 1.42796,0.59776 0.24352,0 0.49812,-0.0111 0.7638,-0.0332 0.27673,-0.0221 0.48151,-0.0498 0.61435,-0.083 l 0,-7.0236 2.00912,0 0,8.41835"
id="path3323"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 189.12255,-335.87582 c 0,0.38744 -0.13283,0.70292 -0.3985,0.94644 -0.2546,0.24353 -0.56454,0.3653 -0.92984,0.3653 -0.37636,0 -0.69184,-0.12177 -0.94644,-0.3653 -0.2546,-0.24352 -0.3819,-0.559 -0.3819,-0.94644 0,-0.38743 0.1273,-0.70291 0.3819,-0.94644 0.2546,-0.2546 0.57008,-0.3819 0.94644,-0.3819 0.3653,0 0.67524,0.1273 0.92984,0.3819 0.26567,0.24353 0.3985,0.55901 0.3985,0.94644"
id="path3325"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 193.53306,-335.87582 c -1e-5,0.38744 -0.13284,0.70292 -0.3985,0.94644 -0.25461,0.24353 -0.56455,0.3653 -0.92984,0.3653 -0.37637,0 -0.69185,-0.12177 -0.94644,-0.3653 -0.2546,-0.24352 -0.3819,-0.559 -0.3819,-0.94644 0,-0.38743 0.1273,-0.70291 0.3819,-0.94644 0.25459,-0.2546 0.57007,-0.3819 0.94644,-0.3819 0.36529,0 0.67523,0.1273 0.92984,0.3819 0.26566,0.24353 0.39849,0.55901 0.3985,0.94644"
id="path3327"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3864-0"
style="font-size:17.46800804px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 131.86147,-344.52339 c -0.40759,1e-5 -0.79771,0.0524 -1.17036,0.15721 -0.37265,0.0932 -0.76277,0.25039 -1.17036,0.47164 l -0.59391,-1.62452 c 0.43088,-0.24454 0.91998,-0.43669 1.46731,-0.57645 0.55898,-0.15138 1.1296,-0.22707 1.71187,-0.22708 0.69872,10e-6 1.27516,0.099 1.72933,0.29695 0.45417,0.18634 0.81517,0.42507 1.08302,0.71619 0.26784,0.29115 0.45416,0.61139 0.55898,0.96074 0.1048,0.34937 0.1572,0.68709 0.15721,1.01315 -1e-5,0.39595 -0.0757,0.75113 -0.22709,1.06555 -0.13975,0.31443 -0.32025,0.60556 -0.54151,0.8734 -0.22126,0.26785 -0.45999,0.52404 -0.71618,0.76859 -0.25621,0.23291 -0.49494,0.47746 -0.71619,0.73365 -0.22127,0.24456 -0.40759,0.50658 -0.55898,0.78606 -0.13975,0.2795 -0.20962,0.59392 -0.20961,0.94328 -1e-5,0.0582 -1e-5,0.1281 0,0.20961 -1e-5,0.0699 0.006,0.13975 0.0175,0.20962 l -1.81667,0 c -0.0233,-0.11645 -0.0408,-0.23873 -0.0524,-0.36683 -0.0117,-0.13974 -0.0175,-0.26784 -0.0175,-0.38429 0,-0.3843 0.0641,-0.72783 0.19215,-1.03062 0.12809,-0.30277 0.29113,-0.58226 0.4891,-0.83846 0.19797,-0.25619 0.40759,-0.49492 0.62885,-0.71619 0.2329,-0.22125 0.44834,-0.44252 0.64632,-0.66378 0.19796,-0.22126 0.361,-0.44834 0.4891,-0.68126 0.12809,-0.23289 0.19214,-0.48909 0.19215,-0.76859 -1e-5,-0.38429 -0.13393,-0.69871 -0.40177,-0.94327 -0.2562,-0.25619 -0.64632,-0.38429 -1.17035,-0.3843 m 1.3625,9.43273 c 0,0.40758 -0.13392,0.73948 -0.40176,0.99567 -0.26785,0.2562 -0.59974,0.3843 -0.99568,0.3843 -0.3843,0 -0.71619,-0.1281 -0.99567,-0.3843 -0.26785,-0.25619 -0.40177,-0.58809 -0.40177,-0.99567 0,-0.40759 0.13392,-0.73948 0.40177,-0.99568 0.27948,-0.26784 0.61137,-0.40176 0.99567,-0.40176 0.39594,0 0.72783,0.13392 0.99568,0.40176 0.26784,0.2562 0.40176,0.58809 0.40176,0.99568"
id="path3314" />
</g>
<path
d="m 110.84156,-249.56139 126.69685,0 0,96.68187 -126.69685,0 z"
id="rect3910"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.89048529;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 95.143631,-269.66183 32.858609,0 0,22.74826 -32.858609,0 z"
id="rect3968"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3.77378631;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 121.68326,-267.27457 c 0,0 1.21074,-9.89367 -1.54451,-13.48044 -1.86912,-2.43328 -5.5021,-3.53942 -8.5657,-3.37011 -3.08528,0.17153 -6.86475,0.58667 -8.98697,4.63389 -1.86269,3.55226 -1.5447,11.65496 -1.5447,11.65496 z"
id="path3970"
style="fill:none;stroke:#000000;stroke-width:6.91860723;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 225.26515,-263.95233 24.67782,0 0,17.08465 -24.67782,0 z"
id="rect3968-6"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.83422971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 245.19723,-262.15944 c 0,0 0.90948,-7.43045 -1.16022,-10.12427 -1.40401,-1.82756 -4.13224,-2.65823 -6.43308,-2.53102 -2.31718,0.12773 -5.15565,0.44069 -6.74951,3.4802 -1.39909,2.66787 -1.16022,8.75323 -1.16022,8.75323 z"
id="path3970-8"
style="fill:none;stroke:#000000;stroke-width:5.19608688;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 355.64349,-258.81003 17.85517,0 0,12.36127 -17.85517,0 z"
id="rect3968-3"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.05065179;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 370.06504,-257.51278 c 0,0 0.65767,-5.37614 -0.83922,-7.32518 -1.01588,-1.32244 -2.98981,-1.92326 -4.65452,-1.83127 -1.67646,0.0912 -3.73031,0.31897 -4.8835,2.51803 -1.01222,1.93034 -0.83923,6.33326 -0.83923,6.33326 z"
id="path3970-1"
style="fill:none;stroke:#000000;stroke-width:3.75952888;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<text
x="6.6307654"
y="18.827772"
id="text4015"
xml:space="preserve"
style="font-size:4px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="6.6307654"
y="18.827772"
id="tspan4017" /></text>
<g
id="text4023"
style="font-size:14.59846592px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 248.84139,-217.19685 c 0.56447,-0.22384 1.12894,-0.51094 1.69342,-0.86131 0.5742,-0.35036 1.08028,-0.76398 1.51824,-1.24087 l 1.24087,0 0,10.11673 -1.76641,0 0,-7.75178 c -0.26278,0.20438 -0.59368,0.4039 -0.9927,0.59853 -0.39903,0.19466 -0.78345,0.35524 -1.15328,0.48175 l -0.54014,-1.34305"
id="path3281" />
<path
d="m 259.6933,-214.32096 1.62043,-2.49633 1.854,0 -2.51094,3.60582 c 0.52554,0.68126 1.02676,1.37226 1.50365,2.07298 0.48661,0.69099 0.88563,1.34306 1.19707,1.95619 l -1.9124,0 c -0.0876,-0.18491 -0.20438,-0.39415 -0.35036,-0.62773 -0.13626,-0.24331 -0.28711,-0.49148 -0.45255,-0.74452 -0.15573,-0.26277 -0.32117,-0.52068 -0.49635,-0.77372 -0.17519,-0.25304 -0.3455,-0.49148 -0.51095,-0.71533 -0.34063,0.43796 -0.6764,0.92458 -1.00729,1.45985 -0.32117,0.52555 -0.58881,0.9927 -0.80292,1.40145 l -1.81021,0 c 0.14599,-0.29197 0.32117,-0.6034 0.52555,-0.9343 0.20437,-0.3309 0.42335,-0.66666 0.65693,-1.00729 0.23357,-0.35036 0.47201,-0.69586 0.71532,-1.03649 0.25304,-0.35036 0.50121,-0.68126 0.74452,-0.9927 l -2.52553,-3.66421 1.9416,0 1.62043,2.49633"
id="path3283" />
<path
d="m 268.47131,-217.12386 c -0.23358,0.28224 -0.47689,0.58394 -0.72993,0.9051 -0.24331,0.32118 -0.48175,0.65694 -0.71532,1.0073 -0.23358,0.35037 -0.45742,0.71046 -0.67153,1.08028 -0.21411,0.3601 -0.40876,0.7202 -0.58394,1.08029 l 2.70072,0 0,-4.07297 m 1.72262,-2.17517 0,6.24814 1.13868,0 0,1.44525 -1.13868,0 0,2.42334 -1.72262,0 0,-2.42334 -4.43794,0 0,-1.25547 c 0.19465,-0.42822 0.45256,-0.9197 0.77372,-1.47445 0.3309,-0.55473 0.69586,-1.12407 1.09489,-1.70802 0.39902,-0.58393 0.82237,-1.15813 1.27006,-1.72261 0.44769,-0.56447 0.89537,-1.07542 1.34306,-1.53284 l 1.67883,0"
id="path3285" />
<path
d="m 273.06047,-209.1823 0,-10.11673 6.39413,0 0,1.56203 -4.55472,0 0,2.58393 4.04378,0 0,1.56204 -4.04378,0 0,4.40873 -1.83941,0"
id="path3287" />
<path
d="m 282.05792,-210.1458 c -1e-5,0.34064 -0.11679,0.61801 -0.35037,0.83212 -0.22384,0.21411 -0.49635,0.32116 -0.81751,0.32116 -0.3309,0 -0.60827,-0.10705 -0.83211,-0.32116 -0.22385,-0.21411 -0.33577,-0.49148 -0.33577,-0.83212 0,-0.34063 0.11192,-0.618 0.33577,-0.83211 0.22384,-0.22384 0.50121,-0.33576 0.83211,-0.33576 0.32116,0 0.59367,0.11192 0.81751,0.33576 0.23358,0.21411 0.35036,0.49148 0.35037,0.83211"
id="path3289" />
<path
d="m 285.93564,-210.1458 c -10e-6,0.34064 -0.11679,0.61801 -0.35037,0.83212 -0.22384,0.21411 -0.49635,0.32116 -0.81751,0.32116 -0.3309,0 -0.60827,-0.10705 -0.83211,-0.32116 -0.22385,-0.21411 -0.33577,-0.49148 -0.33577,-0.83212 0,-0.34063 0.11192,-0.618 0.33577,-0.83211 0.22384,-0.22384 0.50121,-0.33576 0.83211,-0.33576 0.32116,0 0.59367,0.11192 0.81751,0.33576 0.23358,0.21411 0.35036,0.49148 0.35037,0.83211"
id="path3291" />
<path
d="m 287.03965,-214.16037 3.92698,0 0,1.62043 -3.92698,0 0,-1.62043"
id="path3293" />
<path
d="m 298.82722,-212.59834 -6.29194,2.65692 -0.48175,-1.44525 4.89049,-1.95619 -4.89049,-1.95619 0.48175,-1.44525 6.29194,2.65692 0,1.48904"
id="path3295" />
<path
d="m 300.90545,-217.19685 c 0.56447,-0.22384 1.12894,-0.51094 1.69342,-0.86131 0.5742,-0.35036 1.08028,-0.76398 1.51824,-1.24087 l 1.24087,0 0,10.11673 -1.76641,0 0,-7.75178 c -0.26278,0.20438 -0.59368,0.4039 -0.9927,0.59853 -0.39903,0.19466 -0.78345,0.35524 -1.15328,0.48175 l -0.54014,-1.34305"
id="path3297" />
<path
d="m 314.07851,-212.9633 c 0,-0.78831 -0.18005,-1.40145 -0.54014,-1.83941 -0.35037,-0.43794 -0.91971,-0.65692 -1.70802,-0.65693 -0.16545,1e-5 -0.34064,0.01 -0.52555,0.0292 -0.17518,0.01 -0.35036,0.0389 -0.52554,0.0876 l 0,4.36494 c 0.15571,0.10706 0.36009,0.20925 0.61314,0.30657 0.26276,0.0876 0.54013,0.13139 0.83211,0.13139 0.64233,0 1.10948,-0.21898 1.40145,-0.65694 0.3017,-0.43795 0.45255,-1.02675 0.45255,-1.76641 m 1.81021,-0.0292 c -10e-6,0.58395 -0.0779,1.11922 -0.23357,1.60583 -0.14599,0.48662 -0.36011,0.90511 -0.64234,1.25547 -0.28224,0.35037 -0.63747,0.62287 -1.06568,0.81752 -0.4185,0.19464 -0.89538,0.29197 -1.43065,0.29197 -0.3601,0 -0.691,-0.0438 -0.9927,-0.13139 -0.3017,-0.0876 -0.54988,-0.18491 -0.74452,-0.29197 l 0,2.96349 -1.76641,0 0,-10.08754 c 0.36009,-0.0973 0.80291,-0.18977 1.32846,-0.27737 0.52554,-0.0876 1.08028,-0.13138 1.66422,-0.13139 0.6034,1e-5 1.14354,0.0925 1.62043,0.27737 0.47688,0.18492 0.88077,0.45256 1.21167,0.80292 0.34063,0.34064 0.59853,0.75913 0.77372,1.25547 0.18491,0.48662 0.27736,1.03649 0.27737,1.64962"
id="path3299" />
<path
d="m 321.19823,-214.8173 c 0.43795,-0.72992 0.86617,-1.46958 1.28466,-2.21897 0.41849,-0.74938 0.79805,-1.50363 1.13868,-2.26276 l 2.04379,0 c -0.54502,1.03163 -1.11436,2.05839 -1.70802,3.08027 -0.58395,1.01217 -1.21168,2.03406 -1.8832,3.06568 l 0,3.97078 -1.83941,0 0,-3.94158 c -0.67153,-1.04135 -1.30413,-2.07298 -1.8978,-3.09488 -0.59367,-1.02188 -1.16301,-2.04864 -1.70802,-3.08027 l 2.16057,0 c 0.34063,0.75913 0.71532,1.51338 1.12408,2.26276 0.40876,0.74939 0.83698,1.48905 1.28467,2.21897"
id="path3301" />
<path
d="m 329.1544,-208.96332 c -0.26278,0 -0.53528,-0.0195 -0.81752,-0.0584 -0.2725,-0.0292 -0.53528,-0.073 -0.78831,-0.13139 -0.24331,-0.0487 -0.46716,-0.10219 -0.67153,-0.16058 -0.20438,-0.0681 -0.3601,-0.13139 -0.46715,-0.18978 l 0.35036,-1.50364 c 0.20438,0.0973 0.50121,0.20924 0.89051,0.33576 0.38929,0.11679 0.87103,0.17518 1.44524,0.17518 0.76885,0 1.32359,-0.14598 1.66423,-0.43795 0.34062,-0.3017 0.51094,-0.70073 0.51095,-1.19708 -1e-5,-0.32116 -0.0681,-0.5888 -0.20438,-0.80291 -0.12653,-0.21411 -0.30658,-0.38442 -0.54015,-0.51095 -0.22384,-0.13625 -0.48662,-0.2287 -0.78831,-0.27737 -0.29198,-0.0584 -0.60341,-0.0876 -0.93431,-0.0876 l -0.59853,0 0,-1.43065 0.72992,0 c 0.22384,1e-5 0.44768,-0.0195 0.67153,-0.0584 0.23357,-0.0487 0.44282,-0.12652 0.62773,-0.23358 0.18491,-0.11678 0.33576,-0.26763 0.45256,-0.45255 0.11678,-0.18491 0.17517,-0.42335 0.17518,-0.71533 -10e-6,-0.23356 -0.0438,-0.43308 -0.13139,-0.59853 -0.0876,-0.16544 -0.20438,-0.3017 -0.35036,-0.40876 -0.13626,-0.10705 -0.29684,-0.18491 -0.48175,-0.23358 -0.18492,-0.0486 -0.37956,-0.073 -0.58394,-0.073 -0.43796,1e-5 -0.82725,0.0681 -1.16788,0.20438 -0.34063,0.12653 -0.64233,0.27251 -0.9051,0.43795 l -0.64233,-1.31386 c 0.13625,-0.0876 0.3017,-0.18004 0.49634,-0.27737 0.19465,-0.0973 0.40876,-0.18977 0.64234,-0.27737 0.2433,-0.0876 0.50121,-0.15571 0.77372,-0.20438 0.2725,-0.0584 0.5596,-0.0876 0.8613,-0.0876 0.56447,1e-5 1.05109,0.0681 1.45985,0.20438 0.40875,0.13626 0.74452,0.33091 1.0073,0.58394 0.27249,0.24332 0.47201,0.53528 0.59853,0.87591 0.13625,0.3309 0.20437,0.69586 0.20438,1.09488 -1e-5,0.46716 -0.13139,0.88565 -0.39416,1.25547 -0.25304,0.36983 -0.58394,0.65207 -0.99269,0.84671 0.52554,0.18492 0.95862,0.49149 1.29926,0.9197 0.35036,0.42823 0.52554,0.9781 0.52555,1.64963 -10e-6,0.44769 -0.0779,0.86618 -0.23358,1.25547 -0.15572,0.37956 -0.39417,0.71046 -0.71533,0.99269 -0.32117,0.27251 -0.72992,0.49149 -1.22627,0.65693 -0.48662,0.15572 -1.07055,0.23358 -1.75181,0.23358"
id="path3303" />
<path
d="m 337.11581,-210.1458 c -1e-5,0.34064 -0.1168,0.61801 -0.35037,0.83212 -0.22384,0.21411 -0.49635,0.32116 -0.81751,0.32116 -0.3309,0 -0.60827,-0.10705 -0.83211,-0.32116 -0.22385,-0.21411 -0.33577,-0.49148 -0.33577,-0.83212 0,-0.34063 0.11192,-0.618 0.33577,-0.83211 0.22384,-0.22384 0.50121,-0.33576 0.83211,-0.33576 0.32116,0 0.59367,0.11192 0.81751,0.33576 0.23357,0.21411 0.35036,0.49148 0.35037,0.83211"
id="path3305" />
<path
d="m 340.99352,-210.1458 c 0,0.34064 -0.11679,0.61801 -0.35036,0.83212 -0.22385,0.21411 -0.49635,0.32116 -0.81752,0.32116 -0.3309,0 -0.60827,-0.10705 -0.83211,-0.32116 -0.22384,-0.21411 -0.33576,-0.49148 -0.33576,-0.83212 0,-0.34063 0.11192,-0.618 0.33576,-0.83211 0.22384,-0.22384 0.50121,-0.33576 0.83211,-0.33576 0.32117,0 0.59367,0.11192 0.81752,0.33576 0.23357,0.21411 0.35036,0.49148 0.35036,0.83211"
id="path3307" />
</g>
<g
id="text4048"
style="font-size:14.59846497px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 255.30283,-233.20496 c 0,0.35037 -0.073,0.691 -0.21897,1.02189 -0.13626,0.32118 -0.32117,0.64234 -0.55474,0.9635 -0.23359,0.31144 -0.49636,0.62288 -0.78832,0.93431 -0.29198,0.3017 -0.58394,0.59854 -0.87591,0.8905 -0.16545,0.16545 -0.3601,0.3601 -0.58394,0.58394 -0.21411,0.22385 -0.41849,0.45742 -0.61313,0.70073 -0.19465,0.24331 -0.3601,0.47688 -0.49635,0.70072 -0.12652,0.22385 -0.18978,0.41849 -0.18978,0.58394 l 4.65691,0 0,1.15328 -6.13136,0 c -0.01,-0.0584 -0.0146,-0.11679 -0.0146,-0.17518 -1e-5,-0.0584 -1e-5,-0.11192 0,-0.16058 -1e-5,-0.45742 0.073,-0.88078 0.21897,-1.27007 0.15572,-0.39902 0.35523,-0.77372 0.59854,-1.12408 0.24331,-0.35036 0.51581,-0.68126 0.81751,-0.9927 0.3017,-0.31143 0.59854,-0.61313 0.89051,-0.9051 0.2433,-0.23357 0.47201,-0.46228 0.68613,-0.68613 0.22384,-0.23357 0.41848,-0.46228 0.58394,-0.68613 0.17517,-0.23357 0.31143,-0.47201 0.40875,-0.71532 0.10705,-0.2433 0.16058,-0.50121 0.16059,-0.77372 -1e-5,-0.29196 -0.0487,-0.54014 -0.14599,-0.74452 -0.0876,-0.20437 -0.20925,-0.37469 -0.36496,-0.51095 -0.15572,-0.13624 -0.34063,-0.23357 -0.55474,-0.29197 -0.20438,-0.0681 -0.42336,-0.10218 -0.65693,-0.10219 -0.28224,1e-5 -0.54015,0.0389 -0.77372,0.11679 -0.23358,0.0779 -0.44282,0.17032 -0.62773,0.27737 -0.18492,0.0973 -0.34064,0.20439 -0.46716,0.32117 -0.12652,0.10706 -0.22384,0.18978 -0.29197,0.24817 l -0.67152,-0.9635 c 0.0876,-0.0973 0.21897,-0.2141 0.39415,-0.35036 0.17518,-0.14598 0.38443,-0.28223 0.62774,-0.40876 0.2433,-0.12651 0.51581,-0.23356 0.81751,-0.32117 0.3017,-0.0876 0.62773,-0.13137 0.9781,-0.13138 1.06082,1e-5 1.854,0.24818 2.37955,0.74452 0.53527,0.48663 0.80291,1.17762 0.80291,2.07298"
id="path3266" />
<path
d="m 259.49921,-226.46047 c 0,0.26278 -0.0876,0.49149 -0.26277,0.68613 -0.17519,0.19465 -0.41363,0.29197 -0.71533,0.29197 -0.3017,0 -0.54014,-0.0973 -0.71532,-0.29197 -0.17519,-0.19464 -0.26278,-0.42335 -0.26277,-0.68613 -1e-5,-0.26277 0.0876,-0.49148 0.26277,-0.68612 0.17518,-0.19465 0.41362,-0.29197 0.71532,-0.29197 0.3017,0 0.54014,0.0973 0.71533,0.29197 0.17518,0.19464 0.26277,0.42335 0.26277,0.68612"
id="path3268" />
<path
d="m 261.04802,-230.73782 c -1e-5,-1.69341 0.29683,-2.99754 0.8905,-3.91239 0.6034,-0.91482 1.43551,-1.37224 2.49634,-1.37225 1.06082,1e-5 1.88806,0.45743 2.48174,1.37225 0.60339,0.91485 0.9051,2.21898 0.9051,3.91239 0,1.69343 -0.30171,2.99756 -0.9051,3.91239 -0.59368,0.91484 -1.42092,1.37226 -2.48174,1.37226 -1.06083,0 -1.89294,-0.45742 -2.49634,-1.37226 -0.59367,-0.91483 -0.89051,-2.21896 -0.8905,-3.91239 m 5.34303,0 c 0,-0.55473 -0.0341,-1.08028 -0.10219,-1.57663 -0.0584,-0.49634 -0.16545,-0.92943 -0.32116,-1.29926 -0.14599,-0.36982 -0.3455,-0.66179 -0.59854,-0.87591 -0.25304,-0.22384 -0.56448,-0.33576 -0.9343,-0.33577 -0.36983,1e-5 -0.68127,0.11193 -0.9343,0.33577 -0.25305,0.21412 -0.45742,0.50609 -0.61314,0.87591 -0.14598,0.36983 -0.25304,0.80292 -0.32116,1.29926 -0.0584,0.49635 -0.0876,1.0219 -0.0876,1.57663 -10e-6,0.55475 0.0292,1.08029 0.0876,1.57664 0.0681,0.49635 0.17518,0.92944 0.32116,1.29926 0.15572,0.36983 0.36009,0.66667 0.61314,0.89051 0.25303,0.21411 0.56447,0.32116 0.9343,0.32116 0.36982,0 0.68126,-0.10705 0.9343,-0.32116 0.25304,-0.22384 0.45255,-0.52068 0.59854,-0.89051 0.15571,-0.36982 0.26276,-0.80291 0.32116,-1.29926 0.0681,-0.49635 0.10219,-1.02189 0.10219,-1.57664"
id="path3270" />
<path
d="m 269.28816,-230.73782 c 0,-1.69341 0.29684,-2.99754 0.89051,-3.91239 0.6034,-0.91482 1.43551,-1.37224 2.49634,-1.37225 1.06081,1e-5 1.88806,0.45743 2.48174,1.37225 0.60339,0.91485 0.90509,2.21898 0.9051,3.91239 -10e-6,1.69343 -0.30171,2.99756 -0.9051,3.91239 -0.59368,0.91484 -1.42093,1.37226 -2.48174,1.37226 -1.06083,0 -1.89294,-0.45742 -2.49634,-1.37226 -0.59367,-0.91483 -0.89051,-2.21896 -0.89051,-3.91239 m 5.34304,0 c 0,-0.55473 -0.0341,-1.08028 -0.10219,-1.57663 -0.0584,-0.49634 -0.16545,-0.92943 -0.32116,-1.29926 -0.14599,-0.36982 -0.34551,-0.66179 -0.59854,-0.87591 -0.25305,-0.22384 -0.56448,-0.33576 -0.9343,-0.33577 -0.36983,1e-5 -0.68127,0.11193 -0.9343,0.33577 -0.25305,0.21412 -0.45743,0.50609 -0.61314,0.87591 -0.14599,0.36983 -0.25304,0.80292 -0.32117,1.29926 -0.0584,0.49635 -0.0876,1.0219 -0.0876,1.57663 0,0.55475 0.0292,1.08029 0.0876,1.57664 0.0681,0.49635 0.17518,0.92944 0.32117,1.29926 0.15571,0.36983 0.36009,0.66667 0.61314,0.89051 0.25303,0.21411 0.56447,0.32116 0.9343,0.32116 0.36982,0 0.68125,-0.10705 0.9343,-0.32116 0.25303,-0.22384 0.45255,-0.52068 0.59854,-0.89051 0.15571,-0.36982 0.26276,-0.80291 0.32116,-1.29926 0.0681,-0.49635 0.10219,-1.02189 0.10219,-1.57664"
id="path3272" />
<path
d="m 284.14826,-225.58456 c -0.20438,0 -0.42822,-0.005 -0.67153,-0.0146 -0.23358,-0.01 -0.47202,-0.0243 -0.71532,-0.0438 -0.23358,-0.0195 -0.46715,-0.0438 -0.70073,-0.073 -0.23357,-0.0292 -0.44769,-0.0681 -0.64233,-0.11678 l 0,-9.81017 c 0.19464,-0.0487 0.40876,-0.0876 0.64233,-0.11679 0.23358,-0.0292 0.46715,-0.0535 0.70073,-0.073 0.2433,-0.0195 0.48174,-0.034 0.71532,-0.0438 0.23358,-0.01 0.45255,-0.0146 0.65693,-0.0146 0.58394,2e-5 1.12895,0.0438 1.63503,0.13139 0.51581,0.0876 0.95863,0.23845 1.32846,0.45255 0.37956,0.20439 0.67639,0.4769 0.89051,0.81752 0.2141,0.34064 0.32116,0.75913 0.32117,1.25547 -10e-6,0.55474 -0.1314,1.01216 -0.39416,1.37225 -0.26278,0.35037 -0.61315,0.61314 -1.05109,0.78832 0.59366,0.17519 1.06568,0.45256 1.41605,0.83211 0.35035,0.37957 0.52553,0.91484 0.52554,1.60583 -10e-6,1.01216 -0.3747,1.77615 -1.12408,2.29196 -0.73966,0.50608 -1.91727,0.75912 -3.53283,0.75912 m -1.32846,-4.80289 0,3.56202 c 0.10706,0.01 0.23358,0.0195 0.37956,0.0292 0.12652,0.01 0.2725,0.0195 0.43796,0.0292 0.17517,0 0.37469,0 0.59853,0 0.41849,0 0.81265,-0.0243 1.18248,-0.073 0.37955,-0.0584 0.71045,-0.15571 0.99269,-0.29197 0.28224,-0.13625 0.50608,-0.32603 0.67153,-0.56934 0.17518,-0.2433 0.26277,-0.54987 0.26278,-0.9197 -10e-6,-0.33089 -0.0633,-0.60827 -0.18978,-0.83211 -0.12653,-0.23357 -0.31144,-0.41849 -0.55475,-0.55474 -0.23358,-0.13625 -0.51581,-0.23357 -0.84671,-0.29197 -0.3309,-0.0584 -0.70073,-0.0876 -1.10948,-0.0876 l -1.82481,0 m 0,-1.13868 1.48905,0 c 0.35035,0 0.68125,-0.0243 0.99269,-0.073 0.31143,-0.0487 0.57907,-0.13624 0.80292,-0.26277 0.23357,-0.12651 0.41361,-0.29196 0.54014,-0.49635 0.13625,-0.20437 0.20437,-0.46227 0.20438,-0.77372 -10e-6,-0.29196 -0.0681,-0.53526 -0.20438,-0.72992 -0.13626,-0.20437 -0.32604,-0.36495 -0.56934,-0.48175 -0.23358,-0.12651 -0.51095,-0.21897 -0.83211,-0.27737 -0.32117,-0.0584 -0.6618,-0.0876 -1.02189,-0.0876 -0.3601,1e-5 -0.64234,0.005 -0.84672,0.0146 -0.20438,0.01 -0.38929,0.0243 -0.55474,0.0438 l 0,3.12408"
id="path3274" />
<path
d="m 297.55809,-235.78889 0,1.22628 -3.18246,0 0,8.89046 -1.41605,0 0,-8.89046 -3.18247,0 0,-1.22628 7.78098,0"
id="path3276" />
<path
d="m 302.99032,-225.45317 c -0.71047,0 -1.35766,-0.11679 -1.9416,-0.35037 -0.58394,-0.23357 -1.08515,-0.5742 -1.50364,-1.02189 -0.41849,-0.44768 -0.74452,-0.99756 -0.9781,-1.64962 -0.22384,-0.6618 -0.33576,-1.41605 -0.33576,-2.26277 0,-0.8467 0.12652,-1.59609 0.37956,-2.24816 0.26277,-0.66179 0.61313,-1.21653 1.05109,-1.66423 0.43795,-0.44767 0.94889,-0.7883 1.53284,-1.02189 0.58393,-0.23356 1.2068,-0.35035 1.8686,-0.35036 0.41848,1e-5 0.79318,0.0292 1.12408,0.0876 0.34062,0.0584 0.63259,0.12653 0.87591,0.20438 0.25303,0.0779 0.45741,0.15572 0.61313,0.23357 0.15571,0.0779 0.26277,0.13627 0.32117,0.17518 l -0.40876,1.16788 c -0.0876,-0.0584 -0.21412,-0.12164 -0.37956,-0.18978 -0.16545,-0.0681 -0.35523,-0.13624 -0.56934,-0.20438 -0.20438,-0.0681 -0.43309,-0.12164 -0.68612,-0.16058 -0.24332,-0.0487 -0.49149,-0.073 -0.74453,-0.073 -0.53528,1e-5 -1.01703,0.0925 -1.44524,0.27737 -0.42823,0.18492 -0.79319,0.45256 -1.09489,0.80291 -0.3017,0.35038 -0.53528,0.7786 -0.70073,1.28467 -0.15571,0.49635 -0.23357,1.05596 -0.23357,1.67882 0,0.60341 0.0681,1.15329 0.20438,1.64963 0.14598,0.49635 0.36009,0.92457 0.64233,1.28466 0.28223,0.35037 0.6326,0.62287 1.05109,0.81752 0.42822,0.19465 0.92456,0.29197 1.48904,0.29197 0.65206,0 1.1922,-0.0681 1.62043,-0.20438 0.42822,-0.13625 0.74938,-0.25791 0.9635,-0.36496 l 0.36496,1.16787 c -0.0681,0.0487 -0.18979,0.11193 -0.36496,0.18978 -0.17519,0.0681 -0.39417,0.13626 -0.65693,0.20438 -0.26278,0.0681 -0.56935,0.12652 -0.9197,0.17518 -0.35037,0.0487 -0.72993,0.073 -1.13868,0.073"
id="path3278" />
</g>
<g
id="text4083-7"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 156.24959,-200.21822 c -1e-5,2.77996 0.40178,5.35358 1.20537,7.72087 0.80357,2.3673 1.98722,4.56086 3.55095,6.58066 l -2.15012,1.46599 c -1.69404,-2.06324 -3.06229,-4.43054 -4.10477,-7.1019 -1.02076,-2.69307 -1.53114,-5.58161 -1.53114,-8.66562 0,-3.08399 0.51038,-5.96167 1.53114,-8.63304 1.04248,-2.69306 2.41073,-5.07121 4.10477,-7.13448 l 2.15012,1.46599 c -1.56373,2.01983 -2.74738,4.21338 -3.55095,6.58066 -0.80359,2.36731 -1.20538,4.94094 -1.20537,7.72087"
id="path3255"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 167.43081,-192.23673 c -1e-5,0.5864 -0.19548,1.09678 -0.5864,1.53115 -0.39094,0.43437 -0.92303,0.65155 -1.5963,0.65155 -0.67327,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43437 -0.58639,-0.94475 -0.58639,-1.53115 0,-0.58639 0.19546,-1.09677 0.58639,-1.53114 0.39093,-0.43436 0.92303,-0.65155 1.5963,-0.65155 0.67327,0 1.20536,0.21719 1.5963,0.65155 0.39092,0.43437 0.58639,0.94475 0.5864,1.53114"
id="path3257"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 175.44793,-192.23673 c -1e-5,0.5864 -0.19547,1.09678 -0.58639,1.53115 -0.39094,0.43437 -0.92304,0.65155 -1.5963,0.65155 -0.67328,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43437 -0.5864,-0.94475 -0.5864,-1.53115 0,-0.58639 0.19547,-1.09677 0.5864,-1.53114 0.39093,-0.43436 0.92302,-0.65155 1.5963,-0.65155 0.67326,0 1.20536,0.21719 1.5963,0.65155 0.39092,0.43437 0.58638,0.94475 0.58639,1.53114"
id="path3259"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 183.46506,-192.23673 c -1e-5,0.5864 -0.19548,1.09678 -0.5864,1.53115 -0.39094,0.43437 -0.92303,0.65155 -1.5963,0.65155 -0.67327,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43437 -0.58639,-0.94475 -0.58639,-1.53115 0,-0.58639 0.19546,-1.09677 0.58639,-1.53114 0.39093,-0.43436 0.92303,-0.65155 1.5963,-0.65155 0.67327,0 1.20536,0.21719 1.5963,0.65155 0.39092,0.43437 0.58639,0.94475 0.5864,1.53114"
id="path3261"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 190.27681,-200.21822 c 0,-2.77993 -0.40179,-5.35356 -1.20537,-7.72087 -0.80358,-2.36728 -1.98723,-4.56083 -3.55095,-6.58066 l 2.15012,-1.46599 c 1.69403,2.06327 3.05142,4.44142 4.07219,7.13448 1.04247,2.67137 1.56371,5.54905 1.56372,8.63304 -1e-5,3.08401 -0.52125,5.97255 -1.56372,8.66562 -1.02077,2.67136 -2.37816,5.03866 -4.07219,7.1019 l -2.15012,-1.46599 c 1.56372,-2.0198 2.74737,-4.21336 3.55095,-6.58066 0.80358,-2.36729 1.20537,-4.94091 1.20537,-7.72087"
id="path3263"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<g
id="text4083-7-9"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 412.19722,-199.83966 c 0,2.77995 0.40178,5.35357 1.20537,7.72087 0.80357,2.3673 1.98722,4.56085 3.55095,6.58066 l -2.15012,1.46599 c -1.69403,-2.06325 -3.06229,-4.43055 -4.10476,-7.1019 -1.02077,-2.69307 -1.53115,-5.58161 -1.53115,-8.66562 0,-3.084 0.51038,-5.96167 1.53115,-8.63305 1.04247,-2.69305 2.41073,-5.07121 4.10476,-7.13447 l 2.15012,1.46598 c -1.56373,2.01983 -2.74738,4.21338 -3.55095,6.58066 -0.80359,2.36732 -1.20537,4.94094 -1.20537,7.72088"
id="path3244"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 423.37844,-191.85817 c -1e-5,0.5864 -0.19547,1.09678 -0.5864,1.53114 -0.39093,0.43437 -0.92303,0.65155 -1.5963,0.65155 -0.67327,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43436 -0.58639,-0.94474 -0.58639,-1.53114 0,-0.58639 0.19546,-1.09677 0.58639,-1.53114 0.39093,-0.43437 0.92303,-0.65155 1.5963,-0.65155 0.67327,0 1.20537,0.21718 1.5963,0.65155 0.39093,0.43437 0.58639,0.94475 0.5864,1.53114"
id="path3246"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 431.39556,-191.85817 c 0,0.5864 -0.19547,1.09678 -0.58639,1.53114 -0.39094,0.43437 -0.92304,0.65155 -1.5963,0.65155 -0.67327,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43436 -0.5864,-0.94474 -0.5864,-1.53114 0,-0.58639 0.19547,-1.09677 0.5864,-1.53114 0.39093,-0.43437 0.92303,-0.65155 1.5963,-0.65155 0.67326,0 1.20536,0.21718 1.5963,0.65155 0.39092,0.43437 0.58639,0.94475 0.58639,1.53114"
id="path3248"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 439.41269,-191.85817 c -10e-6,0.5864 -0.19547,1.09678 -0.5864,1.53114 -0.39093,0.43437 -0.92303,0.65155 -1.5963,0.65155 -0.67327,0 -1.20537,-0.21718 -1.5963,-0.65155 -0.39093,-0.43436 -0.58639,-0.94474 -0.58639,-1.53114 0,-0.58639 0.19546,-1.09677 0.58639,-1.53114 0.39093,-0.43437 0.92303,-0.65155 1.5963,-0.65155 0.67327,0 1.20537,0.21718 1.5963,0.65155 0.39093,0.43437 0.58639,0.94475 0.5864,1.53114"
id="path3250"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 446.22444,-199.83966 c 0,-2.77994 -0.40179,-5.35356 -1.20537,-7.72088 -0.80358,-2.36728 -1.98723,-4.56083 -3.55095,-6.58066 l 2.15012,-1.46598 c 1.69403,2.06326 3.05142,4.44142 4.07219,7.13447 1.04247,2.67138 1.56371,5.54905 1.56372,8.63305 -10e-6,3.08401 -0.52125,5.97255 -1.56372,8.66562 -1.02077,2.67135 -2.37816,5.03865 -4.07219,7.1019 l -2.15012,-1.46599 c 1.56372,-2.01981 2.74737,-4.21336 3.55095,-6.58066 0.80358,-2.3673 1.20537,-4.94092 1.20537,-7.72087"
id="path3252"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<path
d="m 30.58636,12.911432 c 0,7.23783 -6.377196,13.105251 -14.243867,13.105251 -7.8666704,0 -14.2438669,-5.867421 -14.2438669,-13.105251 0,-7.2378296 6.3771965,-13.10525009 14.2438669,-13.10525009 7.866671,0 14.243867,5.86742049 14.243867,13.10525009 z"
transform="matrix(19.990924,0,0,21.00392,-25.509877,-538.40922)"
id="path4129"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:0.34463671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text4131"
style="font-size:40.70894241px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 231.24463,-104.66653 c -0.56994,0 -1.19414,-0.0136 -1.87261,-0.0407 -0.65135,-0.0271 -1.31627,-0.0679 -1.99474,-0.12212 -0.65135,-0.0543 -1.30269,-0.12213 -1.95403,-0.20355 -0.65135,-0.0814 -1.24841,-0.18997 -1.79119,-0.32567 l 0,-27.35641 c 0.54278,-0.13567 1.13984,-0.24423 1.79119,-0.32567 0.65134,-0.0814 1.30268,-0.14924 1.95403,-0.20355 0.67847,-0.0542 1.34339,-0.0949 1.99474,-0.12212 0.65133,-0.0271 1.26196,-0.0407 1.8319,-0.0407 1.62835,3e-5 3.14814,0.12215 4.5594,0.36638 1.43837,0.24428 2.6732,0.66494 3.70452,1.26198 1.05841,0.56995 1.88616,1.32985 2.48324,2.2797 0.59704,0.9499 0.89558,2.11688 0.8956,3.50097 -2e-5,1.54696 -0.3664,2.8225 -1.09914,3.82664 -0.73279,0.97703 -1.7098,1.70979 -2.93105,2.19828 1.65548,0.48852 2.97173,1.26199 3.94877,2.32041 0.97699,1.05844 1.4655,2.5511 1.46552,4.47798 -2e-5,2.82249 -1.04488,4.95293 -3.13459,6.39131 -2.0626,1.41124 -5.34645,2.11686 -9.85156,2.11686 m -3.70451,-13.39324 0,9.93298 c 0.29852,0.0271 0.65133,0.0543 1.05843,0.0814 0.3528,0.0271 0.75989,0.0543 1.22127,0.0814 0.48849,0 1.04485,0 1.66906,0 1.16698,0 2.26612,-0.0679 3.29743,-0.20355 1.05841,-0.16283 1.98115,-0.43422 2.76821,-0.81418 0.78702,-0.37994 1.41122,-0.90916 1.87261,-1.58764 0.48848,-0.67848 0.73274,-1.53337 0.73276,-2.56467 -2e-5,-0.92273 -0.17643,-1.69619 -0.52922,-2.32041 -0.35283,-0.65133 -0.86847,-1.16698 -1.54694,-1.54694 -0.65136,-0.37994 -1.4384,-0.65133 -2.36112,-0.81418 -0.92275,-0.16282 -1.95404,-0.24424 -3.09388,-0.24425 l -5.08861,0 m 0,-3.1753 4.15231,0 c 0.977,2e-5 1.89974,-0.0678 2.76821,-0.20354 0.86844,-0.13568 1.61477,-0.37994 2.23899,-0.73276 0.65132,-0.3528 1.1534,-0.81416 1.50623,-1.38411 0.37993,-0.5699 0.56991,-1.28909 0.56992,-2.15757 -1e-5,-0.81416 -0.18999,-1.49264 -0.56992,-2.03545 -0.37997,-0.5699 -0.90918,-1.0177 -1.58765,-1.34339 -0.65136,-0.35279 -1.42483,-0.61061 -2.32041,-0.77347 -0.89561,-0.16281 -1.84548,-0.24423 -2.84963,-0.24426 -1.00416,3e-5 -1.7912,0.0136 -2.36111,0.0407 -0.56994,0.0272 -1.08558,0.0679 -1.54694,0.12213 l 0,8.71171"
id="path3222" />
<path
d="m 255.89707,-104.50369 c -2.33398,-0.0543 -3.98948,-0.55636 -4.96649,-1.50623 -0.97701,-0.94988 -1.46552,-2.42897 -1.46552,-4.43728 l 0,-25.40238 3.78593,-0.65134 0,25.44309 c 0,0.62421 0.0543,1.13985 0.16284,1.54694 0.10855,0.40709 0.28495,0.73276 0.52922,0.97701 0.24424,0.24426 0.56991,0.43423 0.97701,0.56993 0.40708,0.10856 0.90916,0.20355 1.50623,0.28496 l -0.52922,3.1753"
id="path3224" />
<path
d="m 279.36324,-115.49511 c -3e-5,1.68265 -0.24428,3.20245 -0.73277,4.5594 -0.48852,1.35697 -1.18057,2.52396 -2.07615,3.50097 -0.86848,0.97702 -1.91334,1.73692 -3.13459,2.2797 -1.22128,0.51565 -2.55111,0.77347 -3.98948,0.77347 -1.43839,0 -2.76821,-0.25782 -3.98947,-0.77347 -1.22128,-0.54278 -2.27971,-1.30268 -3.1753,-2.2797 -0.86846,-0.97701 -1.54694,-2.144 -2.03545,-3.50097 -0.48851,-1.35695 -0.73276,-2.87675 -0.73276,-4.5594 0,-1.65548 0.24425,-3.16171 0.73276,-4.51869 0.48851,-1.38409 1.16699,-2.56465 2.03545,-3.54168 0.89559,-0.97699 1.95402,-1.72332 3.1753,-2.23899 1.22126,-0.54276 2.55108,-0.81416 3.98947,-0.81418 1.43837,2e-5 2.7682,0.27142 3.98948,0.81418 1.22125,0.51567 2.26611,1.262 3.13459,2.23899 0.89558,0.97703 1.58763,2.15759 2.07615,3.54168 0.48849,1.35698 0.73274,2.86321 0.73277,4.51869 m -3.94877,0 c -2e-5,-2.38824 -0.5428,-4.27442 -1.62836,-5.65854 -1.05845,-1.41123 -2.5104,-2.11685 -4.35586,-2.11686 -1.84548,1e-5 -3.311,0.70563 -4.39656,2.11686 -1.05844,1.38412 -1.58766,3.2703 -1.58765,5.65854 -10e-6,2.38827 0.52921,4.28802 1.58765,5.69926 1.08556,1.3841 2.55108,2.07615 4.39656,2.07615 1.84546,0 3.29741,-0.69205 4.35586,-2.07615 1.08556,-1.41124 1.62834,-3.31099 1.62836,-5.69926"
id="path3226" />
<path
d="m 293.88997,-104.42227 c -1.70979,-1e-5 -3.21602,-0.2714 -4.5187,-0.81418 -1.27555,-0.54279 -2.36112,-1.30269 -3.25671,-2.2797 -0.86846,-0.97702 -1.51981,-2.13043 -1.95403,-3.46026 -0.43423,-1.35696 -0.65135,-2.84962 -0.65134,-4.47799 -10e-6,-1.62834 0.23068,-3.121 0.69205,-4.47798 0.4885,-1.35695 1.16698,-2.52394 2.03544,-3.50097 0.86846,-1.00414 1.92689,-1.7776 3.1753,-2.32041 1.27554,-0.5699 2.68678,-0.85487 4.23373,-0.85489 0.94986,2e-5 1.89974,0.0814 2.84963,0.24426 0.94986,0.16285 1.85902,0.42068 2.7275,0.77347 l -0.85489,3.216 c -0.56994,-0.27137 -1.23485,-0.48849 -1.99474,-0.65134 -0.73277,-0.16282 -1.51981,-0.24424 -2.36112,-0.24425 -2.11687,1e-5 -3.74523,0.66493 -4.88507,1.99473 -1.11272,1.32984 -1.66907,3.2703 -1.66907,5.82138 0,1.13986 0.12212,2.18472 0.36638,3.13459 0.27139,0.94988 0.67848,1.76406 1.22127,2.44254 0.56992,0.67848 1.28911,1.2077 2.15758,1.58765 0.86844,0.35281 1.92687,0.52922 3.17529,0.52921 1.00414,10e-6 1.91331,-0.095 2.7275,-0.28496 0.81416,-0.18997 1.45194,-0.39352 1.91332,-0.61063 l 0.52922,3.17529 c -0.21713,0.1357 -0.52924,0.2714 -0.93631,0.40709 -0.4071,0.10856 -0.86847,0.20355 -1.3841,0.28496 -0.51566,0.10856 -1.07202,0.18998 -1.66907,0.24426 -0.56994,0.0814 -1.12629,0.12212 -1.66906,0.12213"
id="path3228" />
<path
d="m 311.26633,-116.55354 c 0.81416,0.62422 1.66905,1.39768 2.56466,2.32041 0.92272,0.92274 1.81832,1.9269 2.68679,3.01246 0.89558,1.05844 1.7369,2.14401 2.52396,3.25672 0.78702,1.08557 1.45193,2.10329 1.99473,3.05317 l -4.43727,0 c -0.56994,-0.94988 -1.23485,-1.91332 -1.99474,-2.89034 -0.73277,-1.00415 -1.50624,-1.95402 -2.32041,-2.84962 -0.81419,-0.92273 -1.64194,-1.76405 -2.48324,-2.52396 -0.84133,-0.75989 -1.64194,-1.39766 -2.40183,-1.91332 l 0,10.17724 -3.78593,0 0,-30.9388 3.78593,-0.65134 0,19.29604 c 0.65133,-0.65133 1.37052,-1.37052 2.15757,-2.15758 0.78703,-0.78702 1.5605,-1.58763 2.32041,-2.40182 0.75989,-0.81417 1.47908,-1.58763 2.15758,-2.32041 0.67846,-0.75988 1.26196,-1.4248 1.75048,-1.99474 l 4.43727,0 c -0.62422,0.6785 -1.3027,1.42483 -2.03544,2.23899 -0.73278,0.8142 -1.49268,1.64194 -2.2797,2.48325 -0.78706,0.81419 -1.58767,1.64194 -2.40183,2.48324 -0.78705,0.81419 -1.53338,1.58766 -2.23899,2.32041"
id="path3230" />
<path
d="m 333.00872,-104.42227 c -1.70979,-1e-5 -3.21602,-0.2714 -4.5187,-0.81418 -1.27555,-0.54279 -2.36112,-1.30269 -3.25671,-2.2797 -0.86846,-0.97702 -1.5198,-2.13043 -1.95403,-3.46026 -0.43423,-1.35696 -0.65135,-2.84962 -0.65134,-4.47799 -1e-5,-1.62834 0.23068,-3.121 0.69205,-4.47798 0.4885,-1.35695 1.16698,-2.52394 2.03545,-3.50097 0.86845,-1.00414 1.92688,-1.7776 3.17529,-2.32041 1.27554,-0.5699 2.68678,-0.85487 4.23373,-0.85489 0.94987,2e-5 1.89974,0.0814 2.84963,0.24426 0.94986,0.16285 1.85902,0.42068 2.7275,0.77347 l -0.85489,3.216 c -0.56994,-0.27137 -1.23485,-0.48849 -1.99474,-0.65134 -0.73277,-0.16282 -1.51981,-0.24424 -2.36112,-0.24425 -2.11687,1e-5 -3.74523,0.66493 -4.88507,1.99473 -1.11272,1.32984 -1.66907,3.2703 -1.66907,5.82138 0,1.13986 0.12212,2.18472 0.36638,3.13459 0.27139,0.94988 0.67848,1.76406 1.22127,2.44254 0.56992,0.67848 1.28911,1.2077 2.15758,1.58765 0.86844,0.35281 1.92688,0.52922 3.17529,0.52921 1.00414,10e-6 1.91331,-0.095 2.7275,-0.28496 0.81417,-0.18997 1.45194,-0.39352 1.91332,-0.61063 l 0.52922,3.17529 c -0.21713,0.1357 -0.52923,0.2714 -0.93631,0.40709 -0.4071,0.10856 -0.86847,0.20355 -1.3841,0.28496 -0.51566,0.10856 -1.07202,0.18998 -1.66907,0.24426 -0.56994,0.0814 -1.12629,0.12212 -1.66906,0.12213"
id="path3232" />
<path
d="m 342.7318,-104.91078 0,-30.9388 3.78593,-0.65134 0,10.82858 c 0.70561,-0.27137 1.45194,-0.47492 2.23899,-0.61064 0.81417,-0.16281 1.61478,-0.24423 2.40183,-0.24425 1.68262,2e-5 3.08029,0.24427 4.19302,0.73276 1.11269,0.46139 1.99472,1.1263 2.64608,1.99474 0.67846,0.84134 1.1534,1.85906 1.42481,3.05317 0.27138,1.19414 0.40707,2.5104 0.40709,3.94877 l 0,11.88701 -3.78593,0 0,-11.07283 c -10e-6,-1.30268 -0.095,-2.41539 -0.28496,-3.33814 -0.16285,-0.92272 -0.44781,-1.66905 -0.85489,-2.23899 -0.4071,-0.56991 -0.94989,-0.977 -1.62836,-1.22127 -0.67849,-0.27137 -1.51981,-0.40707 -2.52395,-0.40709 -0.4071,2e-5 -0.82776,0.0272 -1.26198,0.0814 -0.43424,0.0543 -0.85489,0.12215 -1.26197,0.20355 -0.37996,0.0543 -0.73277,0.12214 -1.05844,0.20354 -0.29854,0.0814 -0.51565,0.14928 -0.65134,0.20355 l 0,17.58626 -3.78593,0"
id="path3234" />
<path
d="m 373.11338,-107.63828 c 0.89559,0 1.68263,-0.0136 2.36112,-0.0407 0.70561,-0.0543 1.2891,-0.13569 1.75049,-0.24425 l 0,-6.30989 c -0.27141,-0.13569 -0.71921,-0.24424 -1.3434,-0.32567 -0.59708,-0.10855 -1.32984,-0.16283 -2.19828,-0.16284 -0.56994,1e-5 -1.18057,0.0407 -1.8319,0.12213 -0.62422,0.0814 -1.20771,0.25783 -1.75049,0.52922 -0.51565,0.24426 -0.94988,0.59707 -1.30268,1.05843 -0.35282,0.43423 -0.52923,1.01773 -0.52922,1.75048 -1e-5,1.35697 0.43422,2.30685 1.30269,2.84963 0.86845,0.51565 2.049,0.77347 3.54167,0.77347 m -0.32567,-18.97037 c 1.51979,2e-5 2.79534,0.20357 3.82664,0.61064 1.05842,0.37997 1.89974,0.93632 2.52396,1.66906 0.65132,0.70564 1.11269,1.56053 1.3841,2.56467 0.27138,0.97703 0.40707,2.0626 0.40709,3.25671 l 0,13.23041 c -0.32569,0.0543 -0.78706,0.13569 -1.3841,0.24425 -0.56994,0.0814 -1.22129,0.16284 -1.95403,0.24425 -0.73278,0.0814 -1.53339,0.14927 -2.40183,0.20355 -0.84133,0.0814 -1.68265,0.12213 -2.52395,0.12213 -1.19414,0 -2.29328,-0.12213 -3.29743,-0.36638 -1.00416,-0.24426 -1.87262,-0.62421 -2.60537,-1.13985 -0.73277,-0.54279 -1.30269,-1.24841 -1.70978,-2.11687 -0.40709,-0.86845 -0.61063,-1.91331 -0.61063,-3.13459 0,-1.16698 0.23068,-2.17113 0.69205,-3.01246 0.48851,-0.84131 1.13985,-1.51979 1.95403,-2.03545 0.81417,-0.51563 1.76405,-0.89558 2.84963,-1.13985 1.08556,-0.24424 2.22541,-0.36636 3.41955,-0.36638 0.37994,2e-5 0.77346,0.0272 1.18056,0.0814 0.40707,0.0271 0.78702,0.0814 1.13985,0.16284 0.37993,0.0543 0.70561,0.10857 0.97701,0.16283 0.27138,0.0543 0.46136,0.095 0.56993,0.12213 l 0,-1.05843 c -2e-5,-0.62419 -0.0679,-1.23483 -0.20355,-1.83191 -0.13571,-0.62418 -0.37996,-1.16697 -0.73276,-1.62835 -0.35282,-0.48849 -0.84133,-0.86844 -1.46552,-1.13985 -0.59708,-0.29852 -1.38412,-0.44778 -2.36112,-0.4478 -1.24842,2e-5 -2.34756,0.095 -3.29742,0.28496 -0.92275,0.16285 -1.6148,0.33926 -2.07616,0.52922 l -0.4478,-3.13459 c 0.4885,-0.2171 1.30268,-0.42064 2.44254,-0.61064 1.13984,-0.21709 2.37468,-0.32565 3.70451,-0.32567"
id="path3236" />
<path
d="m 390.96362,-104.91078 -3.78593,0 0,-21.16865 3.78593,0 0,21.16865 m -1.91332,-24.99529 c -0.67849,2e-5 -1.26198,-0.21709 -1.75048,-0.65135 -0.46137,-0.46134 -0.69206,-1.07197 -0.69206,-1.8319 0,-0.75987 0.23069,-1.35693 0.69206,-1.79119 0.4885,-0.46134 1.07199,-0.69202 1.75048,-0.69205 0.67848,3e-5 1.2484,0.23071 1.70978,0.69205 0.4885,0.43426 0.73275,1.03132 0.73276,1.79119 -10e-6,0.75993 -0.24426,1.37056 -0.73276,1.8319 -0.46138,0.43426 -1.0313,0.65137 -1.70978,0.65135"
id="path3238" />
<path
d="m 397.51395,-125.4688 c 0.86845,-0.21709 2.02187,-0.44778 3.46026,-0.69205 1.43837,-0.24423 3.09387,-0.36636 4.96649,-0.36638 1.68262,2e-5 3.08029,0.24427 4.19302,0.73276 1.11269,0.46139 1.99472,1.1263 2.64608,1.99474 0.67846,0.84134 1.1534,1.85906 1.42481,3.05317 0.27138,1.19414 0.40707,2.5104 0.40709,3.94877 l 0,11.88701 -3.78593,0 0,-11.07283 c -10e-6,-1.30268 -0.095,-2.41539 -0.28496,-3.33814 -0.16285,-0.92272 -0.44781,-1.66905 -0.85489,-2.23899 -0.4071,-0.56991 -0.94989,-0.977 -1.62836,-1.22127 -0.67849,-0.27137 -1.51981,-0.40707 -2.52395,-0.40709 -0.4071,2e-5 -0.82776,0.0136 -1.26198,0.0407 -0.43424,0.0272 -0.85489,0.0679 -1.26197,0.12213 -0.37996,0.0272 -0.73277,0.0679 -1.05844,0.12213 -0.29854,0.0543 -0.51565,0.095 -0.65134,0.12212 l 0,17.87123 -3.78593,0 0,-20.55802"
id="path3240" />
</g>
<g
id="text4135"
style="font-size:20.35447121px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 186.99669,-130.03693 4.00983,0 0,1.58765 -4.00983,0 0,4.88507 c -1e-5,0.52922 0.0407,0.97023 0.12212,1.32304 0.0814,0.33924 0.20354,0.61064 0.36638,0.81418 0.16283,0.18998 0.36638,0.32567 0.61064,0.40709 0.24425,0.0814 0.52921,0.12213 0.85488,0.12213 0.56992,0 1.02451,-0.0611 1.36375,-0.18319 0.35281,-0.1357 0.59706,-0.23069 0.73276,-0.28497 l 0.36639,1.5673 c -0.18999,0.095 -0.52244,0.21033 -0.99737,0.34602 -0.47495,0.14927 -1.01773,0.2239 -1.62836,0.2239 -0.7192,0 -1.31626,-0.0882 -1.79119,-0.26461 -0.46138,-0.18997 -0.83454,-0.46815 -1.1195,-0.83453 -0.28497,-0.36638 -0.48851,-0.81418 -0.61063,-1.34339 -0.10856,-0.54279 -0.16284,-1.16699 -0.16284,-1.87261 l 0,-9.44448 1.89297,-0.32567 0,3.27707"
id="path3215" />
<path
d="m 193.41534,-119.45261 0,-15.46939 1.89297,-0.32568 0,5.41429 c 0.3528,-0.13568 0.72597,-0.23745 1.11949,-0.30531 0.40709,-0.0814 0.80739,-0.12212 1.20092,-0.12213 0.84131,1e-5 1.54014,0.12214 2.09651,0.36638 0.55634,0.23069 0.99736,0.56315 1.32304,0.99737 0.33923,0.42067 0.5767,0.92953 0.7124,1.52658 0.13569,0.59708 0.20354,1.2552 0.20355,1.97439 l 0,5.9435 -1.89297,0 0,-5.53641 c -1e-5,-0.65134 -0.0475,-1.20769 -0.14248,-1.66907 -0.0814,-0.46136 -0.22391,-0.83452 -0.42744,-1.11949 -0.20356,-0.28496 -0.47495,-0.4885 -0.81418,-0.61064 -0.33925,-0.13569 -0.75991,-0.20353 -1.26198,-0.20354 -0.20355,1e-5 -0.41388,0.0136 -0.63099,0.0407 -0.21712,0.0271 -0.42745,0.0611 -0.63099,0.10177 -0.18998,0.0271 -0.36638,0.0611 -0.52921,0.10177 -0.14927,0.0407 -0.25783,0.0746 -0.32567,0.10177 l 0,8.79313 -1.89297,0"
id="path3217" />
<path
d="m 204.43347,-124.72441 c 0,-0.9363 0.13569,-1.75048 0.40709,-2.44254 0.27139,-0.70561 0.63099,-1.28911 1.07879,-1.75049 0.44779,-0.46135 0.96344,-0.80738 1.54694,-1.03807 0.58349,-0.23068 1.18055,-0.34602 1.79119,-0.34603 1.4248,10e-6 2.51716,0.44781 3.27707,1.3434 0.75989,0.88203 1.13984,2.23221 1.13985,4.05054 -1e-5,0.0814 -1e-5,0.18998 0,0.32567 -1e-5,0.12213 -0.007,0.23747 -0.0204,0.34602 l -7.24619,0 c 0.0814,1.09915 0.4003,1.93368 0.95666,2.5036 0.55635,0.56993 1.42481,0.85489 2.60538,0.85489 0.6649,0 1.22126,-0.0543 1.66906,-0.16283 0.46136,-0.12213 0.80739,-0.23747 1.03808,-0.34603 l 0.26461,1.58765 c -0.23069,0.12212 -0.63778,0.25104 -1.22127,0.38673 -0.56993,0.1357 -1.22128,0.20355 -1.95403,0.20355 -0.92274,0 -1.72335,-0.1357 -2.40183,-0.40709 -0.66491,-0.28496 -1.21448,-0.6717 -1.64871,-1.16021 -0.43423,-0.4885 -0.7599,-1.06521 -0.97701,-1.73013 -0.20355,-0.67848 -0.30532,-1.41802 -0.30532,-2.21863 m 7.26655,-1.03808 c 0.0136,-0.85488 -0.20356,-1.55372 -0.65135,-2.09651 -0.43423,-0.55635 -1.03808,-0.83453 -1.81155,-0.83454 -0.43423,1e-5 -0.82096,0.0882 -1.1602,0.26461 -0.32568,0.16285 -0.60385,0.37996 -0.83453,0.65135 -0.23069,0.2714 -0.41388,0.5835 -0.54957,0.9363 -0.12213,0.35282 -0.20355,0.71241 -0.24426,1.07879 l 5.25146,0"
id="path3219" />
</g>
<g
id="text4139"
style="font-size:18.24808121px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 175.89546,-85.891517 c 0,1.557173 0.22506,2.99877 0.67518,4.324795 0.45012,1.326027 1.11313,2.55473 1.98904,3.686112 l -1.20437,0.821164 c -0.94891,-1.155714 -1.71532,-2.48174 -2.29926,-3.978082 -0.57178,-1.508505 -0.85766,-3.1265 -0.85766,-4.853989 0,-1.727478 0.28588,-3.33939 0.85766,-4.835742 0.58394,-1.508496 1.35035,-2.840605 2.29926,-3.996329 l 1.20437,0.821163 c -0.87591,1.131394 -1.53892,2.360096 -1.98904,3.686113 -0.45012,1.326035 -0.67518,2.767632 -0.67518,4.324795"
id="path3156" />
<path
d="m 183.36292,-81.657962 c 0.40145,10e-7 0.75425,-0.0061 1.05839,-0.01825 0.31629,-0.02433 0.57785,-0.06083 0.78466,-0.109489 l 0,-2.828452 c -0.12166,-0.06082 -0.32238,-0.109485 -0.60218,-0.145985 -0.26765,-0.04866 -0.59611,-0.07299 -0.9854,-0.07299 -0.25548,4e-6 -0.5292,0.01825 -0.82116,0.05474 -0.27981,0.0365 -0.54137,0.115575 -0.78467,0.237225 -0.23115,0.109492 -0.42579,0.267642 -0.58394,0.47445 -0.15815,0.19465 -0.23723,0.456205 -0.23722,0.784667 -10e-6,0.608272 0.19464,1.03406 0.58394,1.277366 0.38928,0.231144 0.91848,0.346715 1.58758,0.346714 m -0.14599,-8.503606 c 0.68126,1e-5 1.25303,0.09125 1.71532,0.273721 0.47445,0.170325 0.85157,0.419715 1.13138,0.748171 0.29197,0.316309 0.49878,0.699518 0.62044,1.149629 0.12164,0.437962 0.18247,0.924577 0.18248,1.459847 l 0,5.930626 c -0.14599,0.02433 -0.3528,0.06083 -0.62043,0.109489 -0.25549,0.0365 -0.54745,0.07299 -0.87591,0.109488 -0.32847,0.0365 -0.68735,0.06691 -1.07664,0.09124 -0.37713,0.0365 -0.75426,0.05474 -1.13138,0.05474 -0.53528,0 -1.02798,-0.05474 -1.4781,-0.164233 -0.45012,-0.109488 -0.83941,-0.279803 -1.16787,-0.510946 -0.32847,-0.243307 -0.58394,-0.559607 -0.76642,-0.9489 -0.18248,-0.389291 -0.27372,-0.857658 -0.27372,-1.405102 0,-0.523109 0.1034,-0.973228 0.31021,-1.350358 0.21898,-0.377123 0.51095,-0.681257 0.87591,-0.912405 0.36496,-0.231137 0.79075,-0.401452 1.27737,-0.510946 0.48661,-0.109483 0.99756,-0.164227 1.53284,-0.164233 0.17031,6e-6 0.34671,0.01217 0.52919,0.0365 0.18248,0.01217 0.35279,0.0365 0.51095,0.07299 0.17031,0.02434 0.31629,0.04867 0.43795,0.07299 0.12165,0.02434 0.20681,0.04259 0.25547,0.05474 l 0,-0.474451 c 0,-0.279797 -0.0304,-0.553518 -0.0912,-0.821163 -0.0608,-0.279797 -0.17032,-0.523105 -0.32846,-0.729924 -0.15816,-0.218969 -0.37713,-0.389284 -0.65693,-0.510946 -0.26765,-0.133811 -0.62044,-0.20072 -1.05839,-0.200729 -0.55961,9e-6 -1.05231,0.04259 -1.4781,0.127737 -0.41362,0.073 -0.72384,0.152075 -0.93065,0.237225 l -0.20073,-1.405102 c 0.21898,-0.09731 0.58394,-0.188554 1.09489,-0.273722 0.51094,-0.09731 1.06447,-0.145974 1.66057,-0.145984"
id="path3158" />
<path
d="m 196.08098,-81.657962 c 0.69342,10e-7 1.20437,-0.09124 1.53284,-0.273722 0.34062,-0.182479 0.51094,-0.474448 0.51094,-0.875907 0,-0.413621 -0.16424,-0.742086 -0.4927,-0.985397 -0.32847,-0.243304 -0.86983,-0.517025 -1.62408,-0.821163 -0.36496,-0.145981 -0.71776,-0.291965 -1.05838,-0.437954 -0.32847,-0.158146 -0.61436,-0.340626 -0.85766,-0.547443 -0.24331,-0.206806 -0.43796,-0.456196 -0.58394,-0.748171 -0.14599,-0.291963 -0.21898,-0.650842 -0.21898,-1.076637 0,-0.839404 0.31022,-1.502417 0.93065,-1.989041 0.62044,-0.498771 1.46593,-0.748161 2.53649,-0.748171 0.26763,1e-5 0.53527,0.01826 0.80291,0.05474 0.26763,0.02434 0.51702,0.06084 0.74817,0.109489 0.23114,0.03651 0.43187,0.07908 0.60219,0.127736 0.18247,0.04867 0.32238,0.09125 0.41971,0.127737 l -0.31022,1.459846 c -0.18249,-0.09731 -0.46838,-0.194638 -0.85766,-0.291969 -0.3893,-0.10948 -0.85767,-0.164225 -1.4051,-0.164233 -0.47446,8e-6 -0.88808,0.09733 -1.24087,0.291969 -0.3528,0.182489 -0.5292,0.474458 -0.5292,0.875908 0,0.206819 0.0365,0.3893 0.10949,0.547443 0.0852,0.158156 0.20681,0.304141 0.36496,0.437954 0.17031,0.12166 0.37713,0.237231 0.62044,0.346713 0.2433,0.109494 0.53527,0.225066 0.8759,0.346714 0.45012,0.170321 0.85158,0.340636 1.20438,0.510946 0.35279,0.158155 0.65084,0.346718 0.89415,0.565691 0.25547,0.218981 0.45012,0.486619 0.58394,0.802915 0.13381,0.304138 0.20072,0.681265 0.20073,1.131381 -1e-5,0.87591 -0.32847,1.538923 -0.98539,1.989041 -0.64478,0.450119 -1.56934,0.675179 -2.77371,0.675179 -0.83942,0 -1.49635,-0.07299 -1.9708,-0.218977 -0.47445,-0.133819 -0.79683,-0.237225 -0.96714,-0.310217 l 0.31021,-1.459847 c 0.19465,0.07299 0.50487,0.182483 0.93066,0.328466 0.42578,0.145986 0.99147,0.218978 1.69707,0.218977"
id="path3160" />
<path
d="m 201.99906,-80.435341 0,-13.868542 1.69707,-0.291969 0,4.85399 c 0.3163,-0.121645 0.65084,-0.212885 1.00364,-0.273722 0.36496,-0.07298 0.72384,-0.109478 1.07664,-0.109488 0.75425,1e-5 1.38077,0.109498 1.87955,0.328465 0.49878,0.206821 0.89415,0.504873 1.18613,0.894156 0.30412,0.377136 0.51702,0.833337 0.63868,1.368607 0.12165,0.535283 0.18247,1.125304 0.18248,1.770063 l 0,5.32844 -1.69707,0 0,-4.963478 c -1e-5,-0.583933 -0.0426,-1.082713 -0.12774,-1.496343 -0.073,-0.413616 -0.20073,-0.748164 -0.38321,-1.003644 -0.18248,-0.255466 -0.42579,-0.437946 -0.72992,-0.547443 -0.30414,-0.121645 -0.68127,-0.182472 -1.13138,-0.18248 -0.18249,8e-6 -0.37105,0.01217 -0.56569,0.0365 -0.19465,0.02434 -0.38321,0.05475 -0.56569,0.09124 -0.17032,0.02434 -0.32847,0.05475 -0.47445,0.09124 -0.13382,0.0365 -0.23115,0.06692 -0.29197,0.09124 l 0,7.883171 -1.69707,0"
id="path3162" />
<path
d="m 215.61783,-81.657962 c 0.40145,10e-7 0.75425,-0.0061 1.05839,-0.01825 0.31629,-0.02433 0.57785,-0.06083 0.78466,-0.109489 l 0,-2.828452 c -0.12166,-0.06082 -0.32238,-0.109485 -0.60218,-0.145985 -0.26765,-0.04866 -0.59611,-0.07299 -0.9854,-0.07299 -0.25548,4e-6 -0.5292,0.01825 -0.82116,0.05474 -0.27981,0.0365 -0.54137,0.115575 -0.78467,0.237225 -0.23115,0.109492 -0.42579,0.267642 -0.58394,0.47445 -0.15815,0.19465 -0.23723,0.456205 -0.23722,0.784667 -1e-5,0.608272 0.19464,1.03406 0.58394,1.277366 0.38928,0.231144 0.91848,0.346715 1.58758,0.346714 m -0.14599,-8.503606 c 0.68126,1e-5 1.25303,0.09125 1.71532,0.273721 0.47445,0.170325 0.85157,0.419715 1.13138,0.748171 0.29197,0.316309 0.49878,0.699518 0.62044,1.149629 0.12164,0.437962 0.18247,0.924577 0.18248,1.459847 l 0,5.930626 c -0.14599,0.02433 -0.3528,0.06083 -0.62043,0.109489 -0.25549,0.0365 -0.54745,0.07299 -0.87591,0.109488 -0.32847,0.0365 -0.68735,0.06691 -1.07664,0.09124 -0.37713,0.0365 -0.75426,0.05474 -1.13138,0.05474 -0.53528,0 -1.02798,-0.05474 -1.4781,-0.164233 -0.45012,-0.109488 -0.83941,-0.279803 -1.16787,-0.510946 -0.32847,-0.243307 -0.58394,-0.559607 -0.76642,-0.9489 -0.18248,-0.389291 -0.27372,-0.857658 -0.27372,-1.405102 0,-0.523109 0.1034,-0.973228 0.31021,-1.350358 0.21898,-0.377123 0.51095,-0.681257 0.87591,-0.912405 0.36496,-0.231137 0.79075,-0.401452 1.27737,-0.510946 0.48661,-0.109483 0.99756,-0.164227 1.53284,-0.164233 0.17031,6e-6 0.34671,0.01217 0.52919,0.0365 0.18248,0.01217 0.35279,0.0365 0.51095,0.07299 0.17031,0.02434 0.31629,0.04867 0.43795,0.07299 0.12165,0.02434 0.20681,0.04259 0.25547,0.05474 l 0,-0.474451 c 0,-0.279797 -0.0304,-0.553518 -0.0912,-0.821163 -0.0608,-0.279797 -0.17032,-0.523105 -0.32846,-0.729924 -0.15816,-0.218969 -0.37713,-0.389284 -0.65693,-0.510946 -0.26765,-0.133811 -0.62044,-0.20072 -1.05839,-0.200729 -0.55961,9e-6 -1.05231,0.04259 -1.4781,0.127737 -0.41362,0.073 -0.72384,0.152075 -0.93065,0.237225 l -0.20073,-1.405102 c 0.21898,-0.09731 0.58394,-0.188554 1.09489,-0.273722 0.51094,-0.09731 1.06447,-0.145974 1.66057,-0.145984"
id="path3164" />
<path
d="m 225.42589,-90.125072 c 0.14598,1e-5 0.31021,0.01217 0.4927,0.0365 0.19464,0.01217 0.3832,0.03651 0.56569,0.07299 0.18247,0.02434 0.3467,0.05475 0.49269,0.09124 0.15815,0.02434 0.27372,0.04867 0.34672,0.07299 l -0.29197,1.478095 c -0.13383,-0.04865 -0.35889,-0.103398 -0.67518,-0.164233 -0.30414,-0.07298 -0.69951,-0.10948 -1.18613,-0.109488 -0.3163,8e-6 -0.6326,0.0365 -0.9489,0.109488 -0.30413,0.06083 -0.50486,0.103414 -0.60218,0.127737 l 0,7.974411 -1.69707,0 0,-9.087544 c 0.40145,-0.145976 0.90023,-0.279795 1.49634,-0.401458 0.5961,-0.13381 1.2652,-0.200719 2.00729,-0.200729"
id="path3166" />
<path
d="m 228.44994,-85.161594 c -1e-5,-0.839406 0.12165,-1.569329 0.36496,-2.18977 0.2433,-0.632592 0.56569,-1.155703 0.96715,-1.569335 0.40145,-0.413614 0.86373,-0.723831 1.38685,-0.930652 0.52311,-0.206802 1.05838,-0.310207 1.60583,-0.310217 1.27736,1e-5 2.25667,0.401467 2.93794,1.204373 0.68125,0.790758 1.02189,2.001213 1.02189,3.631368 0,0.073 0,0.17032 0,0.29197 0,0.109493 -0.006,0.212898 -0.0182,0.310217 l -6.49632,0 c 0.073,0.9854 0.35888,1.73357 0.85766,2.244514 0.49878,0.510948 1.27736,0.766421 2.33575,0.766419 0.5961,2e-6 1.09488,-0.04866 1.49635,-0.145984 0.41361,-0.109487 0.72383,-0.212893 0.93065,-0.310218 l 0.23722,1.423351 c -0.20682,0.109488 -0.57178,0.225059 -1.09488,0.346713 -0.51095,0.121654 -1.09489,0.182481 -1.75182,0.182481 -0.82725,0 -1.54501,-0.121654 -2.15327,-0.364962 -0.59611,-0.255472 -1.08881,-0.602185 -1.4781,-1.04014 -0.38929,-0.437952 -0.68126,-0.954981 -0.8759,-1.551087 -0.18249,-0.608266 -0.27373,-1.271279 -0.27372,-1.989041 m 6.51456,-0.930652 c 0.0122,-0.766413 -0.18249,-1.39293 -0.58394,-1.879552 -0.3893,-0.498773 -0.93066,-0.748163 -1.62408,-0.748172 -0.38929,9e-6 -0.73601,0.07908 -1.04014,0.237225 -0.29197,0.145993 -0.54136,0.340639 -0.74817,0.583939 -0.20681,0.243315 -0.37105,0.523119 -0.4927,0.839412 -0.10949,0.316306 -0.18248,0.638688 -0.21897,0.967148 l 4.708,0"
id="path3168" />
<path
d="m 245.30375,-87.917054 c -0.20682,-0.170308 -0.50487,-0.334541 -0.89416,-0.492698 -0.3893,-0.158142 -0.81508,-0.237217 -1.27736,-0.237225 -0.48662,8e-6 -0.90633,0.09125 -1.25912,0.273721 -0.34063,0.170323 -0.62044,0.41363 -0.83941,0.729923 -0.21898,0.304142 -0.37713,0.669103 -0.47445,1.094885 -0.0973,0.425794 -0.14599,0.881996 -0.14599,1.368606 0,1.107054 0.27372,1.964713 0.82117,2.572979 0.54744,0.596106 1.27736,0.894158 2.18977,0.894156 0.46228,2e-6 0.84548,-0.01825 1.14963,-0.05474 0.31629,-0.04866 0.5596,-0.09732 0.72992,-0.145984 l 0,-6.003619 m 0,-6.386829 1.69707,-0.291969 0,13.88679 c -0.3893,0.109489 -0.88808,0.218977 -1.49634,0.328465 -0.60828,0.109489 -1.30779,0.164233 -2.09853,0.164233 -0.72993,0 -1.38686,-0.115571 -1.97079,-0.346713 -0.58395,-0.231142 -1.08273,-0.559608 -1.49635,-0.985397 -0.41362,-0.425787 -0.736,-0.942815 -0.96715,-1.551087 -0.21897,-0.620431 -0.32846,-1.313858 -0.32846,-2.080281 0,-0.729918 0.0912,-1.399013 0.27372,-2.007289 0.19465,-0.608262 0.47445,-1.131373 0.83941,-1.569335 0.36496,-0.437945 0.809,-0.778576 1.33211,-1.021892 0.53528,-0.243299 1.14354,-0.364952 1.82481,-0.364962 0.54744,1e-5 1.02797,0.073 1.4416,0.218977 0.42578,0.145994 0.74208,0.285896 0.9489,0.419706 l 0,-4.799246"
id="path3170" />
<path
d="m 260.72908,-85.161594 c -1e-5,-1.107044 -0.27373,-1.958621 -0.82116,-2.554731 -0.54745,-0.596096 -1.27737,-0.894148 -2.18977,-0.894156 -0.51095,8e-6 -0.91241,0.01826 -1.20437,0.05474 -0.27981,0.0365 -0.50487,0.07908 -0.67518,0.127737 l 0,5.98537 c 0.20681,0.170317 0.50486,0.33455 0.89415,0.492698 0.38929,0.158152 0.81508,0.237227 1.27737,0.237225 0.48661,2e-6 0.90023,-0.08516 1.24087,-0.255473 0.35279,-0.182479 0.63867,-0.425786 0.85766,-0.729923 0.21897,-0.316297 0.37712,-0.681259 0.47445,-1.094885 0.0973,-0.425785 0.14597,-0.881986 0.14598,-1.368606 m 1.77007,0 c -10e-6,0.717762 -0.0973,1.380775 -0.29197,1.989041 -0.18249,0.608271 -0.45621,1.131383 -0.82117,1.569335 -0.36497,0.437955 -0.81509,0.778585 -1.35035,1.021892 -0.52312,0.243308 -1.12531,0.364962 -1.80656,0.364962 -0.54745,0 -1.03407,-0.07299 -1.45985,-0.218977 -0.41363,-0.145984 -0.72384,-0.285886 -0.93065,-0.419706 l 0,3.795601 -1.69707,0 0,-12.572928 c 0.40145,-0.09731 0.90023,-0.200719 1.49634,-0.310217 0.60826,-0.121644 1.30777,-0.182471 2.09853,-0.182481 0.72991,1e-5 1.38684,0.115581 1.97079,0.346714 0.58393,0.231151 1.08271,0.559616 1.49634,0.985396 0.41362,0.425796 0.72992,0.948908 0.9489,1.569335 0.23114,0.608275 0.34671,1.295619 0.34672,2.062033"
id="path3172" />
<path
d="m 272.45974,-80.709062 c -0.3893,0.09732 -0.90633,0.200729 -1.55108,0.310217 -0.63261,0.109489 -1.36862,0.164233 -2.20802,0.164233 -0.72993,0 -1.34428,-0.103406 -1.84306,-0.310217 -0.49878,-0.218977 -0.90024,-0.523111 -1.20437,-0.912404 -0.30414,-0.389291 -0.52312,-0.845493 -0.65693,-1.368607 -0.13382,-0.535274 -0.20073,-1.125294 -0.20073,-1.770063 l 0,-5.32844 1.69707,0 0,4.963478 c 0,1.155715 0.18248,1.982961 0.54744,2.481739 0.36496,0.498782 0.97931,0.748173 1.84306,0.748171 0.18247,2e-6 0.37104,-0.0061 0.56569,-0.01825 0.19464,-0.01216 0.37712,-0.02433 0.54744,-0.0365 0.17031,-0.02433 0.32238,-0.04258 0.4562,-0.05474 0.14598,-0.02433 0.24939,-0.04866 0.31022,-0.07299 l 0,-8.010908 1.69707,0 0,9.215281"
id="path3174" />
<path
d="m 277.0805,-89.504637 c 0.20681,-0.13381 0.51703,-0.273712 0.93065,-0.419706 0.42579,-0.145975 0.9124,-0.218967 1.45985,-0.218977 0.68126,1e-5 1.28344,0.121663 1.80656,0.364962 0.53527,0.243316 0.98539,0.583947 1.35036,1.021892 0.36495,0.437962 0.63867,0.961073 0.82116,1.569335 0.19464,0.608276 0.29196,1.277371 0.29197,2.007289 -10e-6,0.766423 -0.11558,1.45985 -0.34671,2.080281 -0.21899,0.608272 -0.53529,1.1253 -0.9489,1.551087 -0.41363,0.425789 -0.91241,0.754255 -1.49634,0.985397 -0.58395,0.231142 -1.24088,0.346713 -1.9708,0.346713 -0.79075,0 -1.49026,-0.05474 -2.09853,-0.164233 -0.60827,-0.109488 -1.10705,-0.218976 -1.49634,-0.328465 l 0,-13.594821 1.69707,-0.291969 0,5.091215 m 0,7.591202 c 0.17031,0.04866 0.40754,0.09732 0.71168,0.145984 0.31629,0.0365 0.70559,0.05475 1.16787,0.05474 0.9124,2e-6 1.64233,-0.29805 2.18977,-0.894156 0.54744,-0.608266 0.82116,-1.465925 0.82117,-2.572979 -10e-6,-0.48661 -0.0487,-0.942812 -0.14599,-1.368606 -0.0973,-0.425782 -0.25548,-0.790743 -0.47445,-1.094885 -0.21898,-0.316293 -0.50487,-0.5596 -0.85766,-0.729923 -0.34063,-0.182473 -0.75426,-0.273713 -1.24087,-0.273721 -0.46229,8e-6 -0.88807,0.07908 -1.27736,0.237225 -0.3893,0.158157 -0.68735,0.32239 -0.89416,0.492698 l 0,6.003619"
id="path3176" />
<path
d="m 288.99365,-80.25286 c -1.04623,-0.02433 -1.78831,-0.24939 -2.22627,-0.675179 -0.43795,-0.425788 -0.65693,-1.088801 -0.65693,-1.989041 l 0,-11.386803 1.69708,-0.291969 0,11.405051 c -10e-6,0.279806 0.0243,0.510948 0.073,0.693427 0.0487,0.182483 0.12773,0.328467 0.23722,0.437954 0.10949,0.10949 0.25547,0.194648 0.43796,0.255473 0.18247,0.04866 0.40753,0.09124 0.67518,0.127737 l -0.23723,1.42335"
id="path3178" />
<path
d="m 292.83373,-80.435341 -1.69707,0 0,-9.489002 1.69707,0 0,9.489002 m -0.85766,-11.204322 c -0.30414,1.1e-5 -0.56569,-0.09731 -0.78467,-0.291969 -0.20681,-0.2068 -0.31022,-0.480521 -0.31022,-0.821164 0,-0.340618 0.10341,-0.608256 0.31022,-0.802915 0.21898,-0.206799 0.48053,-0.310204 0.78467,-0.310218 0.30413,1.4e-5 0.5596,0.103419 0.76642,0.310218 0.21897,0.194659 0.32846,0.462297 0.32846,0.802915 0,0.340643 -0.10949,0.614364 -0.32846,0.821164 -0.20682,0.194657 -0.46229,0.29198 -0.76642,0.291969"
id="path3180" />
<path
d="m 299.89402,-80.216364 c -0.76642,0 -1.4416,-0.121654 -2.02553,-0.364962 -0.57178,-0.243307 -1.05839,-0.583937 -1.45985,-1.021892 -0.38929,-0.437952 -0.68126,-0.954981 -0.87591,-1.551087 -0.19464,-0.608266 -0.29197,-1.277362 -0.29197,-2.007289 0,-0.729918 0.10341,-1.399013 0.31022,-2.007289 0.21898,-0.608262 0.52311,-1.131373 0.91241,-1.569335 0.38929,-0.45011 0.86374,-0.796824 1.42335,-1.04014 0.57176,-0.255464 1.20436,-0.3832 1.8978,-0.38321 0.42578,1e-5 0.85157,0.03651 1.27736,0.109488 0.42578,0.073 0.83332,0.188573 1.22262,0.346714 l -0.38321,1.441598 c -0.25548,-0.121646 -0.55353,-0.218969 -0.89415,-0.291969 -0.32847,-0.07298 -0.68127,-0.10948 -1.05839,-0.109489 -0.94891,9e-6 -1.67883,0.29806 -2.18977,0.894156 -0.49878,0.596111 -0.74817,1.465936 -0.74817,2.609476 0,0.510951 0.0547,0.979318 0.16423,1.405102 0.12165,0.425792 0.30413,0.790753 0.54744,1.094885 0.25547,0.304137 0.57786,0.541362 0.96715,0.711675 0.38929,0.158152 0.86374,0.237227 1.42335,0.237225 0.45011,2e-6 0.85765,-0.04258 1.22262,-0.127736 0.36496,-0.08516 0.65084,-0.176397 0.85766,-0.273721 l 0.23723,1.42335 c -0.0973,0.06083 -0.23723,0.121654 -0.41971,0.182481 -0.18249,0.04866 -0.3893,0.09124 -0.62043,0.127736 -0.23115,0.04866 -0.48054,0.08516 -0.74817,0.109489 -0.25548,0.0365 -0.50487,0.05474 -0.74818,0.05474"
id="path3182" />
<path
d="m 310.04566,-89.924343 3.59487,0 0,1.42335 -3.59487,0 0,4.37954 c 0,0.474453 0.0365,0.869828 0.10949,1.186125 0.073,0.304137 0.18248,0.547444 0.32846,0.729923 0.14598,0.170317 0.32847,0.291971 0.54745,0.364962 0.21897,0.07299 0.47444,0.10949 0.76642,0.109488 0.51094,2e-6 0.91848,-0.05474 1.22262,-0.164232 0.31629,-0.121653 0.53527,-0.20681 0.65693,-0.255474 l 0.32846,1.405103 c -0.17032,0.08516 -0.46837,0.188563 -0.89415,0.310217 -0.4258,0.133819 -0.91241,0.200729 -1.45985,0.200729 -0.64477,0 -1.18005,-0.07908 -1.60583,-0.237225 -0.41363,-0.170315 -0.74817,-0.419705 -1.00364,-0.748171 -0.25548,-0.328465 -0.43796,-0.729922 -0.54745,-1.204374 -0.0973,-0.486613 -0.14598,-1.04622 -0.14598,-1.678823 l 0,-8.46711 1.69707,-0.291969 0,2.937941"
id="path3184" />
<path
d="m 319.30372,-90.125072 c 0.14598,1e-5 0.31021,0.01217 0.4927,0.0365 0.19464,0.01217 0.3832,0.03651 0.56569,0.07299 0.18247,0.02434 0.3467,0.05475 0.4927,0.09124 0.15814,0.02434 0.27371,0.04867 0.34671,0.07299 l -0.29197,1.478095 c -0.13383,-0.04865 -0.35889,-0.103398 -0.67518,-0.164233 -0.30414,-0.07298 -0.69951,-0.10948 -1.18612,-0.109488 -0.31631,8e-6 -0.63261,0.0365 -0.9489,0.109488 -0.30414,0.06083 -0.50487,0.103414 -0.60219,0.127737 l 0,7.974411 -1.69707,0 0,-9.087544 c 0.40145,-0.145976 0.90023,-0.279795 1.49634,-0.401458 0.5961,-0.13381 1.2652,-0.200719 2.00729,-0.200729"
id="path3186" />
<path
d="m 326.06862,-81.657962 c 0.40145,10e-7 0.75425,-0.0061 1.05839,-0.01825 0.31629,-0.02433 0.57785,-0.06083 0.78466,-0.109489 l 0,-2.828452 c -0.12166,-0.06082 -0.32238,-0.109485 -0.60218,-0.145985 -0.26765,-0.04866 -0.59611,-0.07299 -0.9854,-0.07299 -0.25548,4e-6 -0.5292,0.01825 -0.82116,0.05474 -0.27981,0.0365 -0.54137,0.115575 -0.78467,0.237225 -0.23114,0.109492 -0.42579,0.267642 -0.58394,0.47445 -0.15815,0.19465 -0.23723,0.456205 -0.23722,0.784667 -1e-5,0.608272 0.19464,1.03406 0.58394,1.277366 0.38928,0.231144 0.91848,0.346715 1.58758,0.346714 m -0.14599,-8.503606 c 0.68126,1e-5 1.25303,0.09125 1.71532,0.273721 0.47445,0.170325 0.85157,0.419715 1.13138,0.748171 0.29197,0.316309 0.49878,0.699518 0.62044,1.149629 0.12165,0.437962 0.18247,0.924577 0.18248,1.459847 l 0,5.930626 c -0.14599,0.02433 -0.3528,0.06083 -0.62043,0.109489 -0.25548,0.0365 -0.54745,0.07299 -0.87591,0.109488 -0.32847,0.0365 -0.68735,0.06691 -1.07664,0.09124 -0.37713,0.0365 -0.75426,0.05474 -1.13138,0.05474 -0.53528,0 -1.02798,-0.05474 -1.47809,-0.164233 -0.45013,-0.109488 -0.83942,-0.279803 -1.16788,-0.510946 -0.32847,-0.243307 -0.58394,-0.559607 -0.76642,-0.9489 -0.18248,-0.389291 -0.27372,-0.857658 -0.27372,-1.405102 0,-0.523109 0.1034,-0.973228 0.31021,-1.350358 0.21898,-0.377123 0.51095,-0.681257 0.87591,-0.912405 0.36496,-0.231137 0.79075,-0.401452 1.27737,-0.510946 0.48661,-0.109483 0.99756,-0.164227 1.53284,-0.164233 0.17031,6e-6 0.34671,0.01217 0.52919,0.0365 0.18248,0.01217 0.35279,0.0365 0.51095,0.07299 0.17031,0.02434 0.31629,0.04867 0.43795,0.07299 0.12165,0.02434 0.20681,0.04259 0.25547,0.05474 l 0,-0.474451 c 0,-0.279797 -0.0304,-0.553518 -0.0912,-0.821163 -0.0608,-0.279797 -0.17032,-0.523105 -0.32846,-0.729924 -0.15816,-0.218969 -0.37713,-0.389284 -0.65693,-0.510946 -0.26765,-0.133811 -0.62044,-0.20072 -1.05839,-0.200729 -0.55961,9e-6 -1.05231,0.04259 -1.4781,0.127737 -0.41362,0.073 -0.72384,0.152075 -0.93065,0.237225 l -0.20073,-1.405102 c 0.21898,-0.09731 0.58394,-0.188554 1.09489,-0.273722 0.51094,-0.09731 1.06447,-0.145974 1.66057,-0.145984"
id="path3188" />
<path
d="m 332.37304,-89.650622 c 0.38929,-0.09731 0.90632,-0.200719 1.55109,-0.310217 0.64476,-0.109479 1.38685,-0.164223 2.22626,-0.164233 0.75425,1e-5 1.38077,0.109498 1.87955,0.328465 0.49878,0.206821 0.89415,0.504873 1.18613,0.894156 0.30413,0.377136 0.51702,0.833337 0.63868,1.368607 0.12165,0.535283 0.18247,1.125304 0.18248,1.770063 l 0,5.32844 -1.69707,0 0,-4.963478 c -1e-5,-0.583933 -0.0426,-1.082713 -0.12773,-1.496343 -0.073,-0.413616 -0.20074,-0.748164 -0.38321,-1.003644 -0.18249,-0.255466 -0.4258,-0.437946 -0.72993,-0.547443 -0.30414,-0.121645 -0.68126,-0.182472 -1.13138,-0.18248 -0.18248,8e-6 -0.37105,0.0061 -0.56569,0.01825 -0.19465,0.01217 -0.38321,0.03042 -0.56569,0.05474 -0.17032,0.01217 -0.32847,0.03042 -0.47445,0.05474 -0.13382,0.02434 -0.23115,0.04259 -0.29197,0.05474 l 0,8.010908 -1.69707,0 0,-9.215281"
id="path3190" />
<path
d="m 345.05945,-81.657962 c 0.69342,10e-7 1.20437,-0.09124 1.53284,-0.273722 0.34062,-0.182479 0.51094,-0.474448 0.51095,-0.875907 -1e-5,-0.413621 -0.16424,-0.742086 -0.4927,-0.985397 -0.32847,-0.243304 -0.86983,-0.517025 -1.62408,-0.821163 -0.36497,-0.145981 -0.71776,-0.291965 -1.05839,-0.437954 -0.32847,-0.158146 -0.61435,-0.340626 -0.85766,-0.547443 -0.24331,-0.206806 -0.43796,-0.456196 -0.58394,-0.748171 -0.14598,-0.291963 -0.21898,-0.650842 -0.21898,-1.076637 0,-0.839404 0.31022,-1.502417 0.93066,-1.989041 0.62043,-0.498771 1.46592,-0.748161 2.53648,-0.748171 0.26763,1e-5 0.53527,0.01826 0.80292,0.05474 0.26763,0.02434 0.51702,0.06084 0.74817,0.109489 0.23113,0.03651 0.43186,0.07908 0.60218,0.127736 0.18248,0.04867 0.32238,0.09125 0.41971,0.127737 l -0.31022,1.459846 c -0.18249,-0.09731 -0.46837,-0.194638 -0.85766,-0.291969 -0.3893,-0.10948 -0.85766,-0.164225 -1.4051,-0.164233 -0.47445,8e-6 -0.88808,0.09733 -1.24087,0.291969 -0.3528,0.182489 -0.5292,0.474458 -0.52919,0.875908 -10e-6,0.206819 0.0365,0.3893 0.10948,0.547443 0.0852,0.158156 0.20681,0.304141 0.36497,0.437954 0.17031,0.12166 0.37712,0.237231 0.62043,0.346713 0.2433,0.109494 0.53527,0.225066 0.87591,0.346714 0.45011,0.170321 0.85157,0.340636 1.20437,0.510946 0.35279,0.158155 0.65084,0.346718 0.89416,0.565691 0.25546,0.218981 0.45011,0.486619 0.58394,0.802915 0.13381,0.304138 0.20072,0.681265 0.20073,1.131381 -10e-6,0.87591 -0.32848,1.538923 -0.9854,1.989041 -0.64477,0.450119 -1.56934,0.675179 -2.77371,0.675179 -0.83941,0 -1.49634,-0.07299 -1.97079,-0.218977 -0.47445,-0.133819 -0.79684,-0.237225 -0.96715,-0.310217 l 0.31022,-1.459847 c 0.19464,0.07299 0.50486,0.182483 0.93065,0.328466 0.42579,0.145986 0.99148,0.218978 1.69707,0.218977"
id="path3192" />
<path
d="m 354.18919,-81.657962 c 0.40146,10e-7 0.75425,-0.0061 1.05839,-0.01825 0.3163,-0.02433 0.57785,-0.06083 0.78467,-0.109489 l 0,-2.828452 c -0.12166,-0.06082 -0.32239,-0.109485 -0.60219,-0.145985 -0.26764,-0.04866 -0.59611,-0.07299 -0.98539,-0.07299 -0.25548,4e-6 -0.5292,0.01825 -0.82117,0.05474 -0.2798,0.0365 -0.54136,0.115575 -0.78466,0.237225 -0.23115,0.109492 -0.4258,0.267642 -0.58394,0.47445 -0.15816,0.19465 -0.23723,0.456205 -0.23723,0.784667 0,0.608272 0.19465,1.03406 0.58394,1.277366 0.38929,0.231144 0.91848,0.346715 1.58758,0.346714 m -0.14598,-8.503606 c 0.68126,1e-5 1.25303,0.09125 1.71532,0.273721 0.47444,0.170325 0.85157,0.419715 1.13138,0.748171 0.29196,0.316309 0.49877,0.699518 0.62043,1.149629 0.12165,0.437962 0.18248,0.924577 0.18249,1.459847 l 0,5.930626 c -0.146,0.02433 -0.35281,0.06083 -0.62044,0.109489 -0.25548,0.0365 -0.54745,0.07299 -0.87591,0.109488 -0.32847,0.0365 -0.68735,0.06691 -1.07663,0.09124 -0.37714,0.0365 -0.75426,0.05474 -1.13139,0.05474 -0.53528,0 -1.02797,-0.05474 -1.47809,-0.164233 -0.45012,-0.109488 -0.83941,-0.279803 -1.16788,-0.510946 -0.32846,-0.243307 -0.58394,-0.559607 -0.76642,-0.9489 -0.18248,-0.389291 -0.27372,-0.857658 -0.27372,-1.405102 0,-0.523109 0.10341,-0.973228 0.31022,-1.350358 0.21898,-0.377123 0.51094,-0.681257 0.87591,-0.912405 0.36496,-0.231137 0.79075,-0.401452 1.27736,-0.510946 0.48662,-0.109483 0.99756,-0.164227 1.53284,-0.164233 0.17031,6e-6 0.34671,0.01217 0.5292,0.0365 0.18247,0.01217 0.35279,0.0365 0.51094,0.07299 0.17031,0.02434 0.3163,0.04867 0.43796,0.07299 0.12164,0.02434 0.2068,0.04259 0.25547,0.05474 l 0,-0.474451 c -10e-6,-0.279797 -0.0304,-0.553518 -0.0912,-0.821163 -0.0608,-0.279797 -0.17032,-0.523105 -0.32847,-0.729924 -0.15815,-0.218969 -0.37713,-0.389284 -0.65693,-0.510946 -0.26764,-0.133811 -0.62044,-0.20072 -1.05839,-0.200729 -0.55961,9e-6 -1.0523,0.04259 -1.47809,0.127737 -0.41363,0.073 -0.72384,0.152075 -0.93065,0.237225 l -0.20073,-1.405102 c 0.21897,-0.09731 0.58394,-0.188554 1.09488,-0.273722 0.51095,-0.09731 1.06447,-0.145974 1.66058,-0.145984"
id="path3194" />
<path
d="m 364.6177,-80.216364 c -0.76643,0 -1.44161,-0.121654 -2.02554,-0.364962 -0.57178,-0.243307 -1.05839,-0.583937 -1.45985,-1.021892 -0.38929,-0.437952 -0.68126,-0.954981 -0.87591,-1.551087 -0.19464,-0.608266 -0.29197,-1.277362 -0.29196,-2.007289 -1e-5,-0.729918 0.1034,-1.399013 0.31021,-2.007289 0.21898,-0.608262 0.52311,-1.131373 0.91241,-1.569335 0.38929,-0.45011 0.86374,-0.796824 1.42335,-1.04014 0.57177,-0.255464 1.20437,-0.3832 1.8978,-0.38321 0.42578,1e-5 0.85157,0.03651 1.27736,0.109488 0.42578,0.073 0.83332,0.188573 1.22262,0.346714 l -0.38321,1.441598 c -0.25548,-0.121646 -0.55353,-0.218969 -0.89415,-0.291969 -0.32847,-0.07298 -0.68127,-0.10948 -1.05839,-0.109489 -0.9489,9e-6 -1.67883,0.29806 -2.18977,0.894156 -0.49878,0.596111 -0.74817,1.465936 -0.74817,2.609476 0,0.510951 0.0547,0.979318 0.16423,1.405102 0.12165,0.425792 0.30413,0.790753 0.54744,1.094885 0.25547,0.304137 0.57786,0.541362 0.96715,0.711675 0.38929,0.158152 0.86374,0.237227 1.42335,0.237225 0.45012,2e-6 0.85766,-0.04258 1.22262,-0.127736 0.36496,-0.08516 0.65084,-0.176397 0.85766,-0.273721 l 0.23723,1.42335 c -0.0973,0.06083 -0.23723,0.121654 -0.41971,0.182481 -0.18249,0.04866 -0.3893,0.09124 -0.62043,0.127736 -0.23115,0.04866 -0.48054,0.08516 -0.74817,0.109489 -0.25548,0.0365 -0.50487,0.05474 -0.74817,0.05474"
id="path3196" />
<path
d="m 370.56371,-89.924343 3.59487,0 0,1.42335 -3.59487,0 0,4.37954 c 0,0.474453 0.0365,0.869828 0.10949,1.186125 0.073,0.304137 0.18248,0.547444 0.32846,0.729923 0.14599,0.170317 0.32847,0.291971 0.54745,0.364962 0.21897,0.07299 0.47444,0.10949 0.76642,0.109488 0.51094,2e-6 0.91848,-0.05474 1.22262,-0.164232 0.31629,-0.121653 0.53527,-0.20681 0.65693,-0.255474 l 0.32846,1.405103 c -0.17032,0.08516 -0.46837,0.188563 -0.89415,0.310217 -0.4258,0.133819 -0.91241,0.200729 -1.45985,0.200729 -0.64477,0 -1.18004,-0.07908 -1.60583,-0.237225 -0.41363,-0.170315 -0.74817,-0.419705 -1.00364,-0.748171 -0.25548,-0.328465 -0.43796,-0.729922 -0.54745,-1.204374 -0.0973,-0.486613 -0.14598,-1.04622 -0.14598,-1.678823 l 0,-8.46711 1.69707,-0.291969 0,2.937941"
id="path3198" />
<path
d="m 378.01521,-80.435341 -1.69707,0 0,-9.489002 1.69707,0 0,9.489002 m -0.85766,-11.204322 c -0.30414,1.1e-5 -0.56569,-0.09731 -0.78467,-0.291969 -0.20681,-0.2068 -0.31022,-0.480521 -0.31022,-0.821164 0,-0.340618 0.10341,-0.608256 0.31022,-0.802915 0.21898,-0.206799 0.48053,-0.310204 0.78467,-0.310218 0.30413,1.4e-5 0.5596,0.103419 0.76642,0.310218 0.21897,0.194659 0.32846,0.462297 0.32846,0.802915 0,0.340643 -0.10949,0.614364 -0.32846,0.821164 -0.20682,0.194657 -0.46229,0.29198 -0.76642,0.291969"
id="path3200" />
<path
d="m 389.32731,-85.179842 c -1e-5,0.754258 -0.1095,1.435519 -0.32847,2.043785 -0.21898,0.608272 -0.5292,1.131383 -0.93065,1.569335 -0.3893,0.437955 -0.85767,0.778585 -1.4051,1.021893 -0.54745,0.231142 -1.14355,0.346713 -1.78831,0.346713 -0.64477,0 -1.24088,-0.115571 -1.78832,-0.346713 -0.54744,-0.243308 -1.02189,-0.583938 -1.42335,-1.021893 -0.38929,-0.437952 -0.69342,-0.961063 -0.9124,-1.569335 -0.21898,-0.608266 -0.32847,-1.289527 -0.32847,-2.043785 0,-0.742083 0.10949,-1.417261 0.32847,-2.025537 0.21898,-0.620427 0.52311,-1.149621 0.9124,-1.587583 0.40146,-0.437945 0.87591,-0.772493 1.42335,-1.003645 0.54744,-0.243298 1.14355,-0.364951 1.78832,-0.364961 0.64476,1e-5 1.24086,0.121663 1.78831,0.364961 0.54743,0.231152 1.0158,0.5657 1.4051,1.003645 0.40145,0.437962 0.71167,0.967156 0.93065,1.587583 0.21897,0.608276 0.32846,1.283454 0.32847,2.025537 m -1.77007,0 c 0,-1.070548 -0.24331,-1.916042 -0.72992,-2.536483 -0.47446,-0.632593 -1.1253,-0.948892 -1.95254,-0.948901 -0.82725,9e-6 -1.48418,0.316308 -1.9708,0.948901 -0.47445,0.620441 -0.71167,1.465935 -0.71167,2.536483 0,1.070558 0.23722,1.922134 0.71167,2.554731 0.48662,0.620437 1.14355,0.930654 1.9708,0.930653 0.82724,10e-7 1.47808,-0.310216 1.95254,-0.930653 0.48661,-0.632597 0.72992,-1.484173 0.72992,-2.554731"
id="path3202" />
<path
d="m 391.71494,-89.650622 c 0.38929,-0.09731 0.90632,-0.200719 1.55109,-0.310217 0.64476,-0.109479 1.38685,-0.164223 2.22627,-0.164233 0.75424,1e-5 1.38076,0.109498 1.87955,0.328465 0.49877,0.206821 0.89415,0.504873 1.18612,0.894156 0.30413,0.377136 0.51702,0.833337 0.63869,1.368607 0.12164,0.535283 0.18247,1.125304 0.18248,1.770063 l 0,5.32844 -1.69707,0 0,-4.963478 c -1e-5,-0.583933 -0.0426,-1.082713 -0.12774,-1.496343 -0.073,-0.413616 -0.20074,-0.748164 -0.38321,-1.003644 -0.18249,-0.255466 -0.4258,-0.437946 -0.72992,-0.547443 -0.30414,-0.121645 -0.68127,-0.182472 -1.13139,-0.18248 -0.18248,8e-6 -0.37104,0.0061 -0.56569,0.01825 -0.19465,0.01217 -0.38321,0.03042 -0.56569,0.05474 -0.17032,0.01217 -0.32847,0.03042 -0.47445,0.05474 -0.13382,0.02434 -0.23114,0.04259 -0.29197,0.05474 l 0,8.010908 -1.69707,0 0,-9.215281"
id="path3204" />
<path
d="m 409.24565,-80.25286 c -1.04623,-0.02433 -1.78832,-0.24939 -2.22627,-0.675179 -0.43795,-0.425788 -0.65693,-1.088801 -0.65693,-1.989041 l 0,-11.386803 1.69707,-0.291969 0,11.405051 c 0,0.279806 0.0243,0.510948 0.073,0.693427 0.0487,0.182483 0.12773,0.328467 0.23722,0.437954 0.10949,0.10949 0.25547,0.194648 0.43796,0.255473 0.18247,0.04866 0.40753,0.09124 0.67517,0.127737 l -0.23722,1.42335"
id="path3206" />
<path
d="m 419.76453,-85.179842 c -10e-6,0.754258 -0.10949,1.435519 -0.32846,2.043785 -0.21899,0.608272 -0.52921,1.131383 -0.93065,1.569335 -0.3893,0.437955 -0.85767,0.778585 -1.40511,1.021893 -0.54745,0.231142 -1.14355,0.346713 -1.78831,0.346713 -0.64477,0 -1.24087,-0.115571 -1.78831,-0.346713 -0.54745,-0.243308 -1.0219,-0.583938 -1.42335,-1.021893 -0.38929,-0.437952 -0.69343,-0.961063 -0.9124,-1.569335 -0.21898,-0.608266 -0.32847,-1.289527 -0.32847,-2.043785 0,-0.742083 0.10949,-1.417261 0.32847,-2.025537 0.21897,-0.620427 0.52311,-1.149621 0.9124,-1.587583 0.40145,-0.437945 0.8759,-0.772493 1.42335,-1.003645 0.54744,-0.243298 1.14354,-0.364951 1.78831,-0.364961 0.64476,1e-5 1.24086,0.121663 1.78831,0.364961 0.54744,0.231152 1.01581,0.5657 1.40511,1.003645 0.40144,0.437962 0.71166,0.967156 0.93065,1.587583 0.21897,0.608276 0.32845,1.283454 0.32846,2.025537 m -1.77006,0 c -10e-6,-1.070548 -0.24332,-1.916042 -0.72992,-2.536483 -0.47446,-0.632593 -1.12531,-0.948892 -1.95255,-0.948901 -0.82725,9e-6 -1.48418,0.316308 -1.97079,0.948901 -0.47445,0.620441 -0.71168,1.465935 -0.71168,2.536483 0,1.070558 0.23723,1.922134 0.71168,2.554731 0.48661,0.620437 1.14354,0.930654 1.97079,0.930653 0.82724,10e-7 1.47809,-0.310216 1.95255,-0.930653 0.4866,-0.632597 0.72991,-1.484173 0.72992,-2.554731"
id="path3208" />
<path
d="m 428.10106,-81.384241 c -0.14599,0.09732 -0.43188,0.22506 -0.85766,0.38321 -0.41363,0.145985 -0.90025,0.218977 -1.45985,0.218977 -0.57178,0 -1.11314,-0.09124 -1.62408,-0.273722 -0.49878,-0.18248 -0.93673,-0.462283 -1.31386,-0.839411 -0.37713,-0.389291 -0.67518,-0.869823 -0.89416,-1.441599 -0.21897,-0.57177 -0.32846,-1.253031 -0.32846,-2.043785 0,-0.693421 0.1034,-1.326021 0.31022,-1.8978 0.20681,-0.583932 0.50486,-1.082712 0.89415,-1.496343 0.40146,-0.42578 0.88807,-0.754245 1.45985,-0.985396 0.57177,-0.243299 1.21653,-0.364952 1.9343,-0.364962 0.79074,1e-5 1.47808,0.06084 2.06203,0.182481 0.59609,0.109498 1.09488,0.212903 1.49634,0.310217 l 0,8.46711 c -10e-6,1.459846 -0.37713,2.518233 -1.13138,3.175166 -0.75426,0.656928 -1.89781,0.985393 -3.43064,0.985396 -0.59611,-3e-6 -1.1618,-0.04866 -1.69707,-0.145984 -0.52311,-0.09733 -0.97932,-0.212898 -1.36861,-0.346714 l 0.31022,-1.478094 c 0.34063,0.133817 0.75425,0.249388 1.24087,0.346713 0.49878,0.109487 1.01581,0.164231 1.55109,0.164233 1.00972,-2e-6 1.73356,-0.200731 2.17152,-0.602187 0.45011,-0.401459 0.67517,-1.040141 0.67518,-1.916048 l 0,-0.401458 m -0.0183,-7.043759 c -0.17032,-0.04865 -0.40146,-0.09123 -0.69343,-0.127737 -0.27981,-0.04865 -0.66302,-0.07298 -1.14963,-0.07299 -0.9124,8e-6 -1.618,0.29806 -2.11677,0.894156 -0.48662,0.59611 -0.72993,1.38686 -0.72993,2.37225 0,0.547447 0.0669,1.015814 0.20073,1.405102 0.14598,0.389296 0.33455,0.711678 0.56569,0.967149 0.24331,0.255475 0.51703,0.444039 0.82117,0.56569 0.31629,0.121656 0.63867,0.182483 0.96714,0.182481 0.45012,2e-6 0.86374,-0.06083 1.24087,-0.182481 0.37712,-0.133817 0.67518,-0.285884 0.89416,-0.456202 l 0,-5.547416"
id="path3210" />
<path
d="m 434.03398,-85.891517 c -10e-6,-1.557163 -0.22507,-2.99876 -0.67518,-4.324795 -0.45012,-1.326017 -1.11314,-2.554719 -1.98904,-3.686113 l 1.20437,-0.821163 c 0.9489,1.155724 1.70923,2.487833 2.28101,3.996329 0.58393,1.496352 0.8759,3.108264 0.87591,4.835742 -10e-6,1.727489 -0.29198,3.345484 -0.87591,4.853989 -0.57178,1.496342 -1.33211,2.822368 -2.28101,3.978082 l -1.20437,-0.821164 c 0.8759,-1.131382 1.53892,-2.360085 1.98904,-3.686112 0.45011,-1.326025 0.67517,-2.767622 0.67518,-4.324795"
id="path3212" />
</g>
<path
d="m 237.82028,-249.54121 126.69686,0 0,96.68187 -126.69686,0 z"
id="rect3910-0"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.8866291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 364.52725,-249.56285 126.69686,0 0,96.68187 -126.69686,0 z"
id="rect3910-00"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.8866291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<text
x="8.087534"
y="27.403807"
id="text4168"
xml:space="preserve"
style="font-size:1.5px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="8.087534"
y="27.403807"
id="tspan4170" /></text>
<path
d="m 312.43851,-231.70477 8.75337,0 0,6.06003 -8.75337,0 z"
id="rect3968-3-4"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.00531864;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 319.50855,-231.06881 c 0,0 0.32245,-2.63563 -0.41148,-3.59114 -0.498,-0.64835 -1.4657,-0.94287 -2.28185,-0.8978 -0.8219,0.0456 -1.82876,0.15693 -2.3941,1.23449 -0.49617,0.94633 -0.41149,3.10483 -0.41149,3.10483 z"
id="path3970-1-8"
style="fill:none;stroke:#000000;stroke-width:1.84308445;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 244.85536,-242.51218 112.90999,0 0,39.0623 -112.90999,0 z"
id="rect4234"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.82480812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text4083-7-9-0"
style="font-size:23.72250366px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 289.21185,-178.41044 c 0,2.02432 0.29258,3.8984 0.87773,5.62223 0.58515,1.72384 1.44707,3.32115 2.58576,4.79195 l -1.56569,1.06751 c -1.23357,-1.50243 -2.22992,-3.22626 -2.98903,-5.17151 -0.74331,-1.96105 -1.11496,-4.06445 -1.11496,-6.31018 0,-2.24572 0.37165,-4.34121 1.11496,-6.28647 0.75911,-1.96104 1.75546,-3.69278 2.98903,-5.19522 l 1.56569,1.06751 c -1.13869,1.47081 -2.00061,3.06812 -2.58576,4.79194 -0.58515,1.72385 -0.87773,3.59793 -0.87773,5.62224"
id="path3141"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 297.35386,-172.59843 c 0,0.42701 -0.14234,0.79866 -0.42701,1.11496 -0.28467,0.3163 -0.67214,0.47445 -1.1624,0.47445 -0.49027,0 -0.87773,-0.15815 -1.1624,-0.47445 -0.28467,-0.3163 -0.42701,-0.68795 -0.42701,-1.11496 0,-0.427 0.14234,-0.79865 0.42701,-1.11496 0.28467,-0.31629 0.67213,-0.47444 1.1624,-0.47445 0.49026,1e-5 0.87773,0.15816 1.1624,0.47445 0.28467,0.31631 0.42701,0.68796 0.42701,1.11496"
id="path3143"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 303.19182,-172.59843 c -1e-5,0.42701 -0.14234,0.79866 -0.42701,1.11496 -0.28467,0.3163 -0.67214,0.47445 -1.1624,0.47445 -0.49027,0 -0.87773,-0.15815 -1.1624,-0.47445 -0.28467,-0.3163 -0.42701,-0.68795 -0.42701,-1.11496 0,-0.427 0.14234,-0.79865 0.42701,-1.11496 0.28467,-0.31629 0.67213,-0.47444 1.1624,-0.47445 0.49026,1e-5 0.87773,0.15816 1.1624,0.47445 0.28467,0.31631 0.427,0.68796 0.42701,1.11496"
id="path3145"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 309.02978,-172.59843 c -1e-5,0.42701 -0.14234,0.79866 -0.42701,1.11496 -0.28467,0.3163 -0.67214,0.47445 -1.1624,0.47445 -0.49027,0 -0.87773,-0.15815 -1.1624,-0.47445 -0.28467,-0.3163 -0.42701,-0.68795 -0.42701,-1.11496 0,-0.427 0.14234,-0.79865 0.42701,-1.11496 0.28467,-0.31629 0.67213,-0.47444 1.1624,-0.47445 0.49026,1e-5 0.87773,0.15816 1.1624,0.47445 0.28467,0.31631 0.427,0.68796 0.42701,1.11496"
id="path3147"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 313.99001,-178.41044 c -10e-6,-2.02431 -0.29258,-3.89839 -0.87774,-5.62224 -0.58515,-1.72382 -1.44707,-3.32113 -2.58575,-4.79194 l 1.56569,-1.06751 c 1.23356,1.50244 2.222,3.23418 2.96531,5.19522 0.75911,1.94526 1.13867,4.04075 1.13868,6.28647 -10e-6,2.24573 -0.37957,4.34913 -1.13868,6.31018 -0.74331,1.94525 -1.73175,3.66908 -2.96531,5.17151 l -1.56569,-1.06751 c 1.13868,-1.4708 2.0006,-3.06811 2.58575,-4.79195 0.58516,-1.72383 0.87773,-3.59791 0.87774,-5.62223"
id="path3149"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<path
d="m 244.85536,-198.25854 112.90999,0 0,39.06229 -112.90999,0 z"
id="rect4234-2"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.82480812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 13.078126,10.052734 c 0,0.115419 -0.09444,0.208985 -0.210938,0.208985 -0.116497,0 -0.210937,-0.09357 -0.210937,-0.208985 0,-0.1154185 0.09444,-0.208984 0.210937,-0.208984 0.116498,0 0.210938,0.093566 0.210938,0.208984 z"
transform="matrix(22.897483,0,0,22.897483,-28.509058,-588.11129)"
id="path4293-3"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 261.83921,-356.97445 -8.13933,9.92819 0,2.41497 3.0323,-0.85948 1.06533,-1.71897 0.78539,-1.4396 1.74124,0.003 0.33941,-1.58394 2.12041,-0.64562 4.38472,-4.20891 z"
id="path4297-3"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 13.078126,10.052734 c 0,0.115419 -0.09444,0.208985 -0.210938,0.208985 -0.116497,0 -0.210937,-0.09357 -0.210937,-0.208985 0,-0.1154185 0.09444,-0.208984 0.210937,-0.208984 0.116498,0 0.210938,0.093566 0.210938,0.208984 z"
transform="matrix(22.897483,0,0,22.897483,-27.948507,-564.33395)"
id="path4293-3-2"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 262.39976,-333.19708 -8.13932,9.9282 0,2.41497 3.03231,-0.85948 1.06532,-1.71897 0.7854,-1.4396 1.74105,0.003 0.33941,-1.58393 2.12041,-0.64562 4.38472,-4.20892 z"
id="path4297-3-0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text3777-0-0-0"
style="font-size:16.51408768px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 435.23355,-343.15806 c 0.63854,-0.25321 1.27709,-0.57798 1.91564,-0.97433 0.64955,-0.39633 1.22203,-0.86423 1.71746,-1.4037 l 1.4037,0 0,11.44426 -1.99821,0 0,-8.76898 c -0.29725,0.23121 -0.67157,0.4569 -1.12295,0.67708 -0.45139,0.2202 -0.88626,0.40185 -1.30462,0.54496 l -0.61102,-1.51929"
id="path3125"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 447.50945,-339.90479 1.83307,-2.82391 2.09729,0 -2.84043,4.07898 c 0.5945,0.77067 1.16149,1.55233 1.70095,2.345 0.55047,0.78167 1.00185,1.5193 1.35416,2.21289 l -2.16335,0 c -0.0991,-0.20918 -0.2312,-0.44588 -0.39633,-0.7101 -0.15414,-0.27524 -0.32479,-0.55598 -0.51194,-0.84222 -0.17616,-0.29725 -0.36332,-0.589 -0.56148,-0.87525 -0.19817,-0.28624 -0.39084,-0.55597 -0.57799,-0.80919 -0.38534,0.49543 -0.76516,1.0459 -1.13947,1.65141 -0.36332,0.59451 -0.66608,1.12296 -0.90828,1.58535 l -2.04775,0 c 0.16514,-0.33028 0.36331,-0.68258 0.59451,-1.0569 0.2312,-0.37432 0.47891,-0.75414 0.74313,-1.13947 0.26423,-0.39634 0.53396,-0.78717 0.8092,-1.1725 0.28624,-0.39634 0.56698,-0.77065 0.84221,-1.12296 l -2.85693,-4.14504 2.19637,0 1.83306,2.82391"
id="path3127"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 457.43932,-343.07549 c -0.26423,0.31928 -0.53946,0.66057 -0.8257,1.02387 -0.27524,0.36332 -0.54497,0.74314 -0.80919,1.13947 -0.26423,0.39635 -0.51745,0.8037 -0.75965,1.22205 -0.24221,0.40735 -0.4624,0.8147 -0.66056,1.22204 l 3.0551,0 0,-4.60743 m 1.94867,-2.4606 0,7.06803 1.2881,0 0,1.63489 -1.2881,0 0,2.74134 -1.94867,0 0,-2.74134 -5.02028,0 0,-1.42021 c 0.22019,-0.48441 0.51194,-1.04038 0.87525,-1.66792 0.37432,-0.62753 0.78717,-1.27158 1.23855,-1.93215 0.45139,-0.66055 0.93029,-1.31011 1.43673,-1.94866 0.50643,-0.63854 1.01286,-1.21653 1.5193,-1.73398 l 1.89912,0"
id="path3129"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 462.63068,-334.09183 0,-11.44426 7.23317,0 0,1.76701 -5.15239,0 0,2.92299 4.5744,0 0,1.76701 -4.5744,0 0,4.98725 -2.08078,0"
id="path3131"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 472.80878,-335.18176 c 0,0.38533 -0.13212,0.6991 -0.39634,0.94131 -0.25322,0.2422 -0.56148,0.36331 -0.92479,0.36331 -0.37432,0 -0.68809,-0.12111 -0.9413,-0.36331 -0.25322,-0.24221 -0.37983,-0.55598 -0.37982,-0.94131 -1e-5,-0.38532 0.1266,-0.69909 0.37982,-0.9413 0.25321,-0.25321 0.56698,-0.37982 0.9413,-0.37982 0.36331,0 0.67157,0.12661 0.92479,0.37982 0.26422,0.24221 0.39634,0.55598 0.39634,0.9413"
id="path3133"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 477.19533,-335.18176 c 0,0.38533 -0.13211,0.6991 -0.39633,0.94131 -0.25322,0.2422 -0.56149,0.36331 -0.92479,0.36331 -0.37432,0 -0.68809,-0.12111 -0.94131,-0.36331 -0.25321,-0.24221 -0.37982,-0.55598 -0.37982,-0.94131 0,-0.38532 0.12661,-0.69909 0.37982,-0.9413 0.25322,-0.25321 0.56699,-0.37982 0.94131,-0.37982 0.3633,0 0.67157,0.12661 0.92479,0.37982 0.26422,0.24221 0.39633,0.55598 0.39633,0.9413"
id="path3135"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text4484"
style="font-size:27.3721199px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic">
<path
d="m 455.70629,-521.5201 c -0.93066,0 -1.91606,-0.0456 -2.95619,-0.13686 -1.0219,-0.073 -1.9343,-0.20073 -2.73721,-0.38321 l 4.40691,-18.36669 c 0.82116,-0.18246 1.68794,-0.3102 2.60035,-0.38321 0.91239,-0.073 1.83392,-0.10947 2.76458,-0.10949 0.76641,2e-5 1.54195,0.0548 2.32663,0.16423 0.8029,0.10951 1.5237,0.32849 2.1624,0.65693 0.63867,0.31024 1.15874,0.74819 1.56021,1.31387 0.41969,0.54746 0.62954,1.25913 0.62956,2.13502 -2e-5,0.96716 -0.27374,1.87957 -0.82116,2.73721 -0.52921,0.85768 -1.43249,1.5511 -2.70984,2.08029 0.8029,0.32847 1.42333,0.80292 1.8613,1.42335 0.43794,0.62044 0.65692,1.34124 0.65693,2.16239 -10e-6,2.13503 -0.83943,3.78648 -2.51823,4.95436 -1.66059,1.16787 -4.06933,1.75181 -7.22624,1.75181 m -0.30109,-8.78645 -1.39598,5.83026 c 0.25546,0.0365 0.59305,0.073 1.01277,0.10949 0.41969,0.0182 0.88502,0.0274 1.39597,0.0274 0.60218,10e-6 1.23174,-0.0456 1.88868,-0.13686 0.65692,-0.0912 1.24998,-0.26459 1.77919,-0.52007 0.52918,-0.25547 0.96713,-0.62043 1.31386,-1.09488 0.36495,-0.47445 0.54743,-1.08576 0.54744,-1.83393 -1e-5,-0.69342 -0.26461,-1.25911 -0.79379,-1.69708 -0.52921,-0.45619 -1.40511,-0.68429 -2.62772,-0.6843 l -3.12042,0 m 0.65693,-2.65509 2.62772,0 c 0.56568,10e-6 1.11312,-0.0547 1.64233,-0.16424 0.52918,-0.10947 0.98538,-0.28283 1.3686,-0.52007 0.40145,-0.25546 0.72079,-0.56567 0.95803,-0.93065 0.23721,-0.36495 0.35582,-0.81202 0.35583,-1.34123 -10e-6,-0.8394 -0.31935,-1.41421 -0.95802,-1.72445 -0.62045,-0.3102 -1.45986,-0.46531 -2.51823,-0.46532 -0.41972,10e-6 -0.83943,0.0183 -1.25912,0.0547 -0.41972,0.0183 -0.75731,0.0456 -1.01277,0.0821 l -1.20437,5.0091"
id="path3110" />
<path
d="m 470.45345,-521.73907 -3.28466,0 3.42152,-14.31562 3.31202,0 -3.44888,14.31562 m 2.46349,-16.47802 c -0.49271,2e-5 -0.92154,-0.14597 -1.28649,-0.43795 -0.36497,-0.29196 -0.54745,-0.72991 -0.54744,-1.31387 -10e-6,-0.67516 0.22809,-1.23172 0.6843,-1.6697 0.47444,-0.43793 1.01276,-0.65691 1.61495,-0.65693 0.49269,2e-5 0.92152,0.15513 1.28649,0.46533 0.3832,0.29199 0.57481,0.72994 0.57482,1.31386 -10e-6,0.6752 -0.23724,1.23176 -0.71168,1.6697 -0.47446,0.41972 -1.01277,0.62958 -1.61495,0.62956"
id="path3112" />
<path
d="m 478.56885,-539.83205 3.44889,-0.54744 -1.04014,4.3248 4.68063,0 -0.65693,2.73721 -4.68063,0 -1.36861,5.66603 c -0.0912,0.40146 -0.15511,0.73905 -0.1916,1.01277 -0.0365,0.25547 -0.0548,0.4927 -0.0548,0.71167 0,0.21898 0.0182,0.43796 0.0548,0.65693 0.0547,0.20073 0.14598,0.38321 0.27372,0.54744 0.14598,0.14599 0.34671,0.27373 0.60219,0.38321 0.27371,0.0912 0.63867,0.13687 1.09488,0.13686 0.49269,1e-5 0.96714,-0.0639 1.42335,-0.1916 0.45619,-0.12773 0.85765,-0.26459 1.20437,-0.41058 l 0.24635,2.65509 c -0.41971,0.18248 -0.94891,0.35584 -1.58758,0.52007 -0.63869,0.16424 -1.38686,0.24635 -2.24451,0.24635 -1.56934,0 -2.6916,-0.33759 -3.36677,-1.01277 -0.67519,-0.69342 -1.01278,-1.6332 -1.01277,-2.81932 -10e-6,-0.43795 0.0274,-0.88503 0.0821,-1.34124 0.073,-0.47444 0.17336,-0.97626 0.3011,-1.50546 l 2.79195,-11.77002"
id="path3114" />
<path
d="m 486.21637,-527.15875 c -10e-6,-1.24087 0.1916,-2.41787 0.57481,-3.53101 0.40146,-1.13137 0.96715,-2.11676 1.69707,-2.95619 0.72992,-0.85764 1.62408,-1.53282 2.68247,-2.02553 1.05838,-0.49269 2.26275,-0.73904 3.61312,-0.73905 0.71166,10e-6 1.35947,0.0639 1.94342,0.1916 0.60217,0.10951 1.16786,0.28286 1.69707,0.52007 l -1.177,2.6551 c -0.32848,-0.14597 -0.69344,-0.27371 -1.09488,-0.38321 -0.40147,-0.10948 -0.89417,-0.16422 -1.4781,-0.16423 -0.78468,10e-6 -1.49635,0.16424 -2.13502,0.4927 -0.62045,0.31022 -1.14964,0.73905 -1.58759,1.28649 -0.43796,0.54745 -0.77555,1.19525 -1.01276,1.94342 -0.23724,0.74817 -0.35585,1.54197 -0.35584,2.38137 -1e-5,0.47446 0.0456,0.91241 0.13686,1.31386 0.10948,0.38322 0.27371,0.72993 0.4927,1.04014 0.23721,0.29197 0.55656,0.52008 0.95802,0.68431 0.40145,0.16423 0.90327,0.24635 1.50547,0.24634 0.62042,1e-5 1.21348,-0.0821 1.77919,-0.24634 0.58392,-0.16423 1.031,-0.32847 1.34123,-0.4927 l 0.27372,2.70984 c -0.41972,0.20073 -0.97628,0.39233 -1.6697,0.57481 -0.69344,0.20073 -1.4781,0.30109 -2.354,0.30109 -1.00365,0 -1.87044,-0.14598 -2.60035,-0.43795 -0.72993,-0.31022 -1.34124,-0.7208 -1.83393,-1.23174 -0.47446,-0.5292 -0.8303,-1.14051 -1.06752,-1.83394 -0.21898,-0.71167 -0.32847,-1.47809 -0.32846,-2.29925"
id="path3116" />
<path
d="m 503.68705,-521.35587 c -1.69708,0 -2.99269,-0.50182 -3.88684,-1.50546 -0.89416,-1.00364 -1.34124,-2.32663 -1.34124,-3.96896 0,-1.05838 0.16423,-2.15327 0.4927,-3.28465 0.32846,-1.13137 0.83029,-2.16239 1.50547,-3.09305 0.67517,-0.93064 1.52371,-1.69706 2.54561,-2.29926 1.02188,-0.60217 2.22625,-0.90327 3.61312,-0.90328 1.69706,10e-6 2.99267,0.50184 3.88684,1.50547 0.89414,0.9854 1.34122,2.29926 1.34123,3.94158 -10e-6,1.07665 -0.16425,2.18065 -0.4927,3.31203 -0.31023,1.13138 -0.80293,2.1624 -1.47809,3.09305 -0.65695,0.93065 -1.50548,1.69707 -2.54561,2.29926 -1.0219,0.60218 -2.2354,0.90327 -3.64049,0.90327 m 2.51823,-12.2627 c -0.71168,10e-6 -1.35036,0.20986 -1.91604,0.62955 -0.54745,0.40147 -1.01278,0.92154 -1.39598,1.56021 -0.36497,0.6387 -0.64782,1.34125 -0.84854,2.10766 -0.20073,0.74818 -0.3011,1.4781 -0.30109,2.18977 -10e-6,0.91241 0.17335,1.6332 0.52007,2.1624 0.34671,0.52919 0.95802,0.79379 1.83393,0.79379 0.71167,0 1.34123,-0.20073 1.88868,-0.60219 0.56568,-0.4197 1.031,-0.93977 1.39598,-1.56021 0.38319,-0.63868 0.67516,-1.34123 0.8759,-2.10765 0.20072,-0.76642 0.30108,-1.49634 0.3011,-2.18977 -2e-5,-0.9124 -0.17337,-1.6332 -0.52007,-2.1624 -0.34673,-0.54743 -0.95804,-0.82115 -1.83394,-0.82116"
id="path3118" />
<path
d="m 516.48351,-521.73907 -3.28465,0 3.42151,-14.31562 3.31203,0 -3.44889,14.31562 m 2.46349,-16.47802 c -0.4927,2e-5 -0.92153,-0.14597 -1.28648,-0.43795 -0.36497,-0.29196 -0.54745,-0.72991 -0.54745,-1.31387 0,-0.67516 0.2281,-1.23172 0.68431,-1.6697 0.47444,-0.43793 1.01276,-0.65691 1.61495,-0.65693 0.49269,2e-5 0.92152,0.15513 1.28649,0.46533 0.3832,0.29199 0.57481,0.72994 0.57482,1.31386 -10e-6,0.6752 -0.23724,1.23176 -0.71168,1.6697 -0.47446,0.41972 -1.01278,0.62958 -1.61496,0.62956"
id="path3120" />
<path
d="m 523.91462,-535.45251 c 0.72991,-0.21896 1.5602,-0.41969 2.49086,-0.60218 0.94889,-0.20072 1.97991,-0.30108 3.09305,-0.3011 1.67881,2e-5 2.91055,0.4106 3.69524,1.23175 0.78465,0.82117 1.17698,1.92518 1.177,3.31203 -2e-5,0.38321 -0.0365,0.7938 -0.10949,1.23174 -0.0548,0.41971 -0.12775,0.85767 -0.21898,1.31386 l -1.80656,7.52734 -3.31203,0 1.69708,-7.1715 c 0.0912,-0.40145 0.18246,-0.81203 0.27372,-1.23175 0.0912,-0.41969 0.14597,-0.82115 0.16423,-1.20437 0.0182,-0.63867 -0.13687,-1.16787 -0.46533,-1.58758 -0.31022,-0.4197 -0.93066,-0.62955 -1.8613,-0.62956 -0.78468,1e-5 -1.45986,0.0821 -2.02554,0.24635 l -2.76458,11.57841 -3.31203,0 3.28466,-13.71344"
id="path3122" />
</g>
<g
id="text4492"
style="font-size:12.77365685px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic">
<path
d="m 478.08616,-505.21854 c -0.1618,-0.49391 -0.34915,-1.02615 -0.56204,-1.5967 -0.20438,-0.57056 -0.42579,-1.14111 -0.66423,-1.71167 -0.22993,-0.57056 -0.47263,-1.12408 -0.72809,-1.66058 -0.24697,-0.545 -0.49818,-1.04317 -0.75365,-1.49452 l -1.54561,6.46347 -1.58394,0 2.12043,-8.85214 1.29014,0 c 0.23844,0.38322 0.48539,0.82178 0.74087,1.31569 0.26399,0.49392 0.51946,1.01338 0.76642,1.55838 0.24695,0.5365 0.48539,1.07725 0.71533,1.62226 0.22992,0.54501 0.43004,1.06021 0.60036,1.54561 l 1.41787,-6.04194 1.59671,0 -2.12043,8.85214 -1.29014,0"
id="path3077" />
<path
d="m 481.67237,-507.63276 c 0,-0.57055 0.0894,-1.11982 0.26825,-1.6478 0.18734,-0.53649 0.45133,-1.00911 0.79196,-1.41788 0.34915,-0.41726 0.76642,-0.74938 1.25182,-0.99634 0.4854,-0.24695 1.0304,-0.37043 1.63503,-0.37044 0.64719,10e-6 1.14962,0.16607 1.50729,0.49818 0.35766,0.33212 0.53649,0.75791 0.53649,1.27736 0,0.5365 -0.132,0.9708 -0.39598,1.30291 -0.264,0.33212 -0.60888,0.59185 -1.03467,0.7792 -0.41727,0.18735 -0.89416,0.31508 -1.43065,0.38321 -0.52798,0.0681 -1.06447,0.11071 -1.60948,0.12773 -0.009,0.017 -0.0128,0.0341 -0.0128,0.0511 l 0,0.12774 c 0,0.77493 0.48965,1.1624 1.46897,1.1624 0.57907,0 1.15814,-0.11922 1.73722,-0.35766 l 0.12773,1.25181 c -0.20438,0.0937 -0.49392,0.18735 -0.8686,0.28102 -0.3747,0.0937 -0.80049,0.14051 -1.27737,0.14051 -0.47689,0 -0.88564,-0.0681 -1.22627,-0.20437 -0.34063,-0.13626 -0.62165,-0.3236 -0.84306,-0.56204 -0.2129,-0.23845 -0.37044,-0.51095 -0.47263,-0.81752 -0.10219,-0.31508 -0.15328,-0.65145 -0.15328,-1.00912 m 3.71713,-3.16786 c -0.25548,0 -0.49817,0.0511 -0.7281,0.15328 -0.22993,0.10219 -0.4343,0.2427 -0.61313,0.42153 -0.17884,0.17884 -0.33638,0.39173 -0.47263,0.63868 -0.12774,0.23845 -0.22141,0.49818 -0.28102,0.7792 1.02189,-0.0341 1.76276,-0.15754 2.22262,-0.37044 0.46836,-0.21289 0.70254,-0.53223 0.70255,-0.95802 -1e-5,-0.17031 -0.0639,-0.3236 -0.1916,-0.45986 -0.11923,-0.13624 -0.33212,-0.20437 -0.63869,-0.20437"
id="path3079" />
<path
d="m 489.90419,-513.66192 1.60948,-0.25548 -0.4854,2.01824 2.1843,0 -0.30657,1.27737 -2.18429,0 -0.63869,2.64414 c -0.0426,0.18735 -0.0724,0.34489 -0.0894,0.47263 -0.017,0.11922 -0.0256,0.22993 -0.0256,0.33211 0,0.1022 0.009,0.20438 0.0256,0.30657 0.0255,0.0937 0.0681,0.17883 0.12773,0.25548 0.0681,0.0681 0.1618,0.12773 0.28103,0.17883 0.12773,0.0426 0.29804,0.0639 0.51094,0.0639 0.22992,1e-5 0.45133,-0.0298 0.66423,-0.0894 0.21289,-0.0596 0.40024,-0.12348 0.56204,-0.19161 l 0.11497,1.23905 c -0.19587,0.0852 -0.44283,0.16606 -0.74088,0.2427 -0.29805,0.0766 -0.6472,0.11496 -1.04744,0.11496 -0.73236,0 -1.25607,-0.15754 -1.57116,-0.47262 -0.31508,-0.3236 -0.47262,-0.76216 -0.47262,-1.31569 0,-0.20438 0.0128,-0.41301 0.0383,-0.62591 0.0341,-0.22141 0.0809,-0.45559 0.14051,-0.70255 l 1.30291,-5.49267"
id="path3081" />
<path
d="m 498.46753,-509.44662 c -0.1618,0.36619 -0.34489,0.74514 -0.54926,1.13686 -0.20439,0.38321 -0.41728,0.76216 -0.63869,1.13685 -0.22141,0.36618 -0.44282,0.71959 -0.66423,1.06022 -0.22141,0.33211 -0.42579,0.63016 -0.61313,0.89415 l -1.27737,0 c -0.0766,-0.39172 -0.15329,-0.8388 -0.22992,-1.34123 -0.0681,-0.50243 -0.132,-1.03892 -0.19161,-1.60948 -0.0596,-0.57055 -0.11496,-1.17092 -0.16606,-1.80109 -0.0426,-0.63016 -0.0724,-1.2731 -0.0894,-1.92882 l 1.53284,0 c -10e-6,0.35767 0.004,0.74514 0.0128,1.1624 0.009,0.40877 0.0213,0.8303 0.0383,1.2646 0.0255,0.42579 0.0511,0.84732 0.0766,1.26459 0.0341,0.41727 0.0766,0.809 0.12774,1.17517 0.23844,-0.36617 0.47262,-0.75364 0.70255,-1.1624 0.23844,-0.41727 0.4641,-0.83454 0.677,-1.25182 0.21289,-0.42578 0.40876,-0.84731 0.58759,-1.26459 0.18734,-0.41727 0.34914,-0.81325 0.4854,-1.18795 l 1.32846,0 c -1e-5,0.34915 0.004,0.71959 0.0128,1.11131 0.009,0.39173 0.0213,0.79623 0.0383,1.2135 0.0255,0.41727 0.0511,0.84306 0.0766,1.27736 0.0341,0.42579 0.0766,0.84732 0.12773,1.26459 0.22141,-0.32359 0.44707,-0.69403 0.67701,-1.1113 0.22992,-0.41727 0.45133,-0.84306 0.66423,-1.27737 0.21288,-0.44281 0.40449,-0.87712 0.57481,-1.30291 0.17882,-0.4343 0.32359,-0.82603 0.43431,-1.17518 l 1.60948,0 c -0.17884,0.51095 -0.40025,1.05596 -0.66423,1.63503 -0.25549,0.57056 -0.54502,1.14963 -0.86861,1.73722 -0.32361,0.58759 -0.67276,1.16666 -1.04744,1.73721 -0.36619,0.56205 -0.7494,1.08577 -1.14963,1.57116 l -1.27737,0 c -0.0937,-0.71532 -0.17457,-1.41787 -0.24269,-2.10765 -0.0596,-0.69829 -0.0979,-1.4051 -0.11497,-2.12043"
id="path3083" />
<path
d="m 506.26645,-505.03971 c -0.79197,0 -1.39659,-0.23418 -1.81386,-0.70255 -0.41728,-0.46836 -0.62591,-1.08576 -0.62591,-1.85218 0,-0.49391 0.0766,-1.00485 0.22993,-1.53284 0.15328,-0.52797 0.38746,-1.00911 0.70255,-1.44342 0.31508,-0.4343 0.71106,-0.79196 1.18795,-1.07299 0.47688,-0.28101 1.03892,-0.42152 1.68612,-0.42153 0.79196,10e-6 1.39658,0.23419 1.81386,0.70255 0.41726,0.45986 0.6259,1.073 0.62591,1.83941 -10e-6,0.50244 -0.0766,1.01764 -0.22993,1.54561 -0.14477,0.52798 -0.3747,1.00912 -0.68978,1.44343 -0.30657,0.4343 -0.70255,0.79196 -1.18795,1.07298 -0.47688,0.28102 -1.04318,0.42153 -1.69889,0.42153 m 1.17517,-5.72259 c -0.33211,0 -0.63017,0.0979 -0.89415,0.29379 -0.25548,0.18735 -0.47263,0.43005 -0.65146,0.7281 -0.17032,0.29806 -0.30231,0.62591 -0.39598,0.98357 -0.0937,0.34915 -0.14051,0.68978 -0.14051,1.02189 0,0.42579 0.0809,0.76217 0.2427,1.00912 0.16179,0.24696 0.44707,0.37044 0.85583,0.37044 0.33211,0 0.62591,-0.0937 0.88139,-0.28102 0.26398,-0.19586 0.48113,-0.43856 0.65145,-0.7281 0.17883,-0.29805 0.31508,-0.62591 0.40876,-0.98357 0.0937,-0.35766 0.1405,-0.69829 0.14051,-1.02189 -1e-5,-0.42579 -0.0809,-0.76216 -0.2427,-1.00912 -0.16181,-0.25547 -0.44708,-0.38321 -0.85584,-0.38321"
id="path3085" />
<path
d="m 515.6487,-510.53238 c -0.17032,-0.0596 -0.35341,-0.10644 -0.54927,-0.14051 -0.19587,-0.0341 -0.42579,-0.0511 -0.68978,-0.0511 -0.14477,0 -0.29805,0.0128 -0.45985,0.0383 -0.1618,0.017 -0.29805,0.0426 -0.40876,0.0766 l -1.29013,5.39048 -1.54562,0 1.53284,-6.37405 c 0.35766,-0.11922 0.74513,-0.2214 1.1624,-0.30657 0.41727,-0.0937 0.86861,-0.1405 1.35401,-0.14051 0.10219,1e-5 0.21715,0.009 0.34489,0.0255 0.12773,0.009 0.25121,0.0213 0.37044,0.0383 0.12773,0.017 0.24269,0.0383 0.34489,0.0639 0.11069,0.0256 0.20437,0.0554 0.28102,0.0894 l -0.44708,1.29014"
id="path3087" />
<path
d="m 518.32398,-509.3572 c 0.26399,-0.20438 0.53223,-0.41727 0.80474,-0.63868 0.2725,-0.22992 0.52797,-0.45559 0.76642,-0.67701 0.24695,-0.22992 0.47688,-0.44707 0.68978,-0.65145 0.21289,-0.21289 0.39598,-0.4045 0.54927,-0.57482 l 1.77553,0 c -0.20438,0.23845 -0.43857,0.48966 -0.70255,0.75365 -0.26399,0.26399 -0.54076,0.52798 -0.83029,0.79196 -0.28954,0.264 -0.58759,0.52373 -0.89415,0.7792 -0.30657,0.25547 -0.60463,0.49817 -0.89416,0.7281 0.21289,0.22141 0.42579,0.48114 0.63869,0.77919 0.21288,0.29805 0.41726,0.60888 0.61313,0.93248 0.19586,0.3236 0.37469,0.65145 0.53649,0.98357 0.1618,0.33211 0.29379,0.64294 0.39599,0.93247 l -1.71167,0 c -0.11923,-0.28102 -0.25122,-0.56629 -0.39599,-0.85583 -0.14477,-0.28954 -0.30231,-0.57056 -0.47262,-0.84306 -0.17032,-0.28102 -0.34915,-0.54075 -0.53649,-0.7792 -0.18735,-0.24695 -0.3747,-0.4641 -0.56204,-0.65145 l -0.76642,3.12954 -1.53284,0 2.31203,-9.65688 1.60948,-0.25547 -1.39233,5.77369"
id="path3089" />
<path
d="m 531.78642,-507.81159 c -0.0256,0.0937 -0.0511,0.24696 -0.0766,0.45985 -0.0256,0.2129 -0.0383,0.41302 -0.0383,0.60036 -10e-6,0.24696 0.0213,0.48966 0.0639,0.7281 0.0426,0.22993 0.1107,0.46411 0.20438,0.70255 l -1.37955,0.20438 c -0.1022,-0.20438 -0.1831,-0.42153 -0.2427,-0.65145 -0.2129,0.18734 -0.47689,0.35766 -0.79197,0.51094 -0.30657,0.14477 -0.65572,0.21715 -1.04744,0.21715 -0.40024,0 -0.74513,-0.0639 -1.03466,-0.1916 -0.28103,-0.13625 -0.51095,-0.31934 -0.68978,-0.54927 -0.17884,-0.23844 -0.31083,-0.5152 -0.39599,-0.83028 -0.0851,-0.31509 -0.12773,-0.65572 -0.12773,-1.0219 0,-0.62165 0.1107,-1.20072 0.33211,-1.73721 0.22141,-0.53649 0.52798,-1.0006 0.91971,-1.39233 0.40023,-0.39172 0.87286,-0.69829 1.41787,-0.91971 0.54501,-0.22992 1.14111,-0.34488 1.78831,-0.34489 0.33211,10e-6 0.66423,0.0298 0.99635,0.0894 0.34062,0.0511 0.68125,0.15329 1.02189,0.30657 l -0.9197,3.81932 m -0.84306,-2.88685 c -0.16181,-0.034 -0.3449,-0.0511 -0.54927,-0.0511 -0.38321,10e-6 -0.73662,0.0852 -1.06021,0.25547 -0.32361,0.16181 -0.60463,0.38322 -0.84307,0.66423 -0.22992,0.27251 -0.40876,0.5876 -0.53649,0.94525 -0.12774,0.35767 -0.19161,0.73236 -0.1916,1.12409 -1e-5,0.19586 0.017,0.37895 0.0511,0.54926 0.0341,0.17032 0.0894,0.31935 0.16606,0.44708 0.0851,0.12774 0.19586,0.22993 0.33211,0.30657 0.13625,0.0766 0.31083,0.11496 0.52372,0.11496 0.2725,0 0.51095,-0.0553 0.71533,-0.16606 0.21289,-0.11922 0.40875,-0.27676 0.58759,-0.47262 0.009,-0.22141 0.0255,-0.43005 0.0511,-0.62591 0.0341,-0.19586 0.0766,-0.39172 0.12774,-0.58759 l 0.62591,-2.50364"
id="path3091" />
<path
d="m 534.93632,-513.66192 1.60948,-0.25548 -0.4854,2.01824 2.1843,0 -0.30657,1.27737 -2.18429,0 -0.63869,2.64414 c -0.0426,0.18735 -0.0724,0.34489 -0.0894,0.47263 -0.017,0.11922 -0.0256,0.22993 -0.0256,0.33211 0,0.1022 0.009,0.20438 0.0256,0.30657 0.0255,0.0937 0.0681,0.17883 0.12773,0.25548 0.0681,0.0681 0.1618,0.12773 0.28102,0.17883 0.12774,0.0426 0.29805,0.0639 0.51095,0.0639 0.22992,1e-5 0.45133,-0.0298 0.66423,-0.0894 0.21289,-0.0596 0.40024,-0.12348 0.56204,-0.19161 l 0.11496,1.23905 c -0.19586,0.0852 -0.44282,0.16606 -0.74087,0.2427 -0.29805,0.0766 -0.6472,0.11496 -1.04744,0.11496 -0.73236,0 -1.25608,-0.15754 -1.57116,-0.47262 -0.31508,-0.3236 -0.47262,-0.76216 -0.47262,-1.31569 0,-0.20438 0.0128,-0.41301 0.0383,-0.62591 0.0341,-0.22141 0.0809,-0.45559 0.14051,-0.70255 l 1.30291,-5.49267"
id="path3093" />
<path
d="m 547.05493,-507.81159 c -0.0256,0.0937 -0.0511,0.24696 -0.0766,0.45985 -0.0256,0.2129 -0.0383,0.41302 -0.0383,0.60036 0,0.24696 0.0213,0.48966 0.0639,0.7281 0.0426,0.22993 0.1107,0.46411 0.20438,0.70255 l -1.37955,0.20438 c -0.1022,-0.20438 -0.1831,-0.42153 -0.2427,-0.65145 -0.2129,0.18734 -0.47689,0.35766 -0.79197,0.51094 -0.30657,0.14477 -0.65572,0.21715 -1.04744,0.21715 -0.40024,0 -0.74513,-0.0639 -1.03467,-0.1916 -0.28102,-0.13625 -0.51094,-0.31934 -0.68977,-0.54927 -0.17884,-0.23844 -0.31083,-0.5152 -0.39599,-0.83028 -0.0852,-0.31509 -0.12773,-0.65572 -0.12773,-1.0219 0,-0.62165 0.1107,-1.20072 0.33211,-1.73721 0.22141,-0.53649 0.52798,-1.0006 0.9197,-1.39233 0.40024,-0.39172 0.87287,-0.69829 1.41788,-0.91971 0.54501,-0.22992 1.14111,-0.34488 1.78831,-0.34489 0.33211,10e-6 0.66423,0.0298 0.99635,0.0894 0.34062,0.0511 0.68125,0.15329 1.02189,0.30657 l -0.9197,3.81932 m -0.84306,-2.88685 c -0.16181,-0.034 -0.3449,-0.0511 -0.54927,-0.0511 -0.38322,10e-6 -0.73662,0.0852 -1.06021,0.25547 -0.32361,0.16181 -0.60463,0.38322 -0.84307,0.66423 -0.22993,0.27251 -0.40876,0.5876 -0.53649,0.94525 -0.12774,0.35767 -0.19161,0.73236 -0.1916,1.12409 -10e-6,0.19586 0.017,0.37895 0.0511,0.54926 0.0341,0.17032 0.0894,0.31935 0.16606,0.44708 0.0851,0.12774 0.19586,0.22993 0.33211,0.30657 0.13625,0.0766 0.31082,0.11496 0.52372,0.11496 0.2725,0 0.51094,-0.0553 0.71533,-0.16606 0.21289,-0.11922 0.40875,-0.27676 0.58759,-0.47262 0.009,-0.22141 0.0255,-0.43005 0.0511,-0.62591 0.0341,-0.19586 0.0766,-0.39172 0.12774,-0.58759 l 0.62591,-2.50364"
id="path3095" />
<path
d="m 553.24915,-504.12 c 0.63017,0 1.10279,-0.14477 1.41788,-0.43431 0.32359,-0.28953 0.54075,-0.68552 0.65146,-1.18795 l 0.0383,-0.17883 c -0.17032,0.0852 -0.3747,0.16606 -0.61314,0.2427 -0.23844,0.0681 -0.48966,0.10219 -0.75364,0.10219 -0.74939,0 -1.30718,-0.20012 -1.67335,-0.60036 -0.35767,-0.40876 -0.5365,-0.94951 -0.5365,-1.62226 0,-0.61313 0.10645,-1.17943 0.31934,-1.69889 0.2129,-0.51946 0.51095,-0.96654 0.89416,-1.34124 0.39172,-0.3832 0.86009,-0.68125 1.4051,-0.89415 0.54501,-0.21289 1.14963,-0.31934 1.81386,-0.31934 0.3236,0 0.66848,0.0383 1.03467,0.11496 0.37469,0.0681 0.71106,0.1831 1.00912,0.34489 l -1.35401,5.6715 c -0.11923,0.50243 -0.27251,0.94525 -0.45985,1.32846 -0.17884,0.39173 -0.41728,0.71533 -0.71533,0.9708 -0.29805,0.26399 -0.66849,0.46411 -1.1113,0.60036 -0.43431,0.13625 -0.96229,0.20438 -1.58394,0.20438 -0.45134,0 -0.86009,-0.0511 -1.22627,-0.15328 -0.35766,-0.0937 -0.67275,-0.2129 -0.94525,-0.35767 l 0.54927,-1.25181 c 0.22992,0.13625 0.49391,0.24695 0.79196,0.33211 0.30657,0.0852 0.65572,0.12774 1.04744,0.12774 m 1.12409,-2.70802 c 0.22992,0 0.4641,-0.0426 0.70255,-0.12773 0.24695,-0.0852 0.45133,-0.19161 0.61313,-0.31935 l 0.81752,-3.41056 c -0.19587,-0.0426 -0.38748,-0.0639 -0.57482,-0.0639 -0.39173,10e-6 -0.74939,0.0724 -1.07299,0.21715 -0.31508,0.14478 -0.58759,0.34064 -0.81751,0.58759 -0.22993,0.24696 -0.40876,0.5365 -0.53649,0.86861 -0.12774,0.3236 -0.19161,0.67275 -0.19161,1.04744 0,0.3747 0.0809,0.66849 0.2427,0.88138 0.1618,0.2129 0.4343,0.31934 0.81752,0.31934"
id="path3097" />
<path
d="m 561.18618,-505.0908 c -0.40024,-0.009 -0.74087,-0.0596 -1.02189,-0.15328 -0.27251,-0.0937 -0.49392,-0.22141 -0.66423,-0.38321 -0.1618,-0.1618 -0.28102,-0.35341 -0.35766,-0.57482 -0.0681,-0.22141 -0.10219,-0.46411 -0.10219,-0.7281 0,-0.2725 0.0298,-0.55778 0.0894,-0.85583 0.0681,-0.30657 0.14051,-0.60888 0.21716,-0.90693 l 1.48174,-6.18245 1.60948,-0.25547 c -0.26399,1.11557 -0.52798,2.22688 -0.79197,3.33392 -0.26399,1.09854 -0.53223,2.20559 -0.80474,3.32115 -0.0426,0.17884 -0.0894,0.35767 -0.14051,0.53649 -0.0511,0.17032 -0.0766,0.34064 -0.0766,0.51095 0,0.14477 0,0.28102 0,0.40876 0.009,0.11922 0.0426,0.22567 0.10219,0.31934 0.0681,0.0852 0.16606,0.15754 0.2938,0.21715 0.12773,0.0596 0.29379,0.0979 0.49817,0.11496 l -0.33212,1.27737"
id="path3099" />
<path
d="m 568.11151,-507.81159 c -0.0256,0.0937 -0.0511,0.24696 -0.0766,0.45985 -0.0255,0.2129 -0.0383,0.41302 -0.0383,0.60036 0,0.24696 0.0213,0.48966 0.0639,0.7281 0.0426,0.22993 0.1107,0.46411 0.20438,0.70255 l -1.37955,0.20438 c -0.1022,-0.20438 -0.1831,-0.42153 -0.2427,-0.65145 -0.2129,0.18734 -0.47689,0.35766 -0.79197,0.51094 -0.30657,0.14477 -0.65572,0.21715 -1.04744,0.21715 -0.40024,0 -0.74513,-0.0639 -1.03467,-0.1916 -0.28102,-0.13625 -0.51094,-0.31934 -0.68977,-0.54927 -0.17884,-0.23844 -0.31083,-0.5152 -0.39599,-0.83028 -0.0852,-0.31509 -0.12774,-0.65572 -0.12773,-1.0219 -10e-6,-0.62165 0.1107,-1.20072 0.33211,-1.73721 0.22141,-0.53649 0.52798,-1.0006 0.9197,-1.39233 0.40024,-0.39172 0.87287,-0.69829 1.41788,-0.91971 0.54501,-0.22992 1.14111,-0.34488 1.78831,-0.34489 0.33211,10e-6 0.66423,0.0298 0.99635,0.0894 0.34062,0.0511 0.68125,0.15329 1.02189,0.30657 l -0.9197,3.81932 m -0.84306,-2.88685 c -0.16181,-0.034 -0.3449,-0.0511 -0.54927,-0.0511 -0.38322,10e-6 -0.73662,0.0852 -1.06022,0.25547 -0.3236,0.16181 -0.60462,0.38322 -0.84306,0.66423 -0.22993,0.27251 -0.40876,0.5876 -0.53649,0.94525 -0.12774,0.35767 -0.19161,0.73236 -0.1916,1.12409 -10e-6,0.19586 0.017,0.37895 0.0511,0.54926 0.0341,0.17032 0.0894,0.31935 0.16606,0.44708 0.0851,0.12774 0.19586,0.22993 0.33211,0.30657 0.13625,0.0766 0.31082,0.11496 0.52372,0.11496 0.2725,0 0.51094,-0.0553 0.71533,-0.16606 0.21289,-0.11922 0.40875,-0.27676 0.58759,-0.47262 0.009,-0.22141 0.0255,-0.43005 0.0511,-0.62591 0.0341,-0.19586 0.0766,-0.39172 0.12774,-0.58759 l 0.62591,-2.50364"
id="path3101" />
<path
d="m 570.94207,-511.61814 c 0.34063,-0.10218 0.72809,-0.19585 1.1624,-0.28102 0.44282,-0.0937 0.92396,-0.1405 1.44343,-0.14051 0.78344,10e-6 1.35825,0.19161 1.72444,0.57482 0.36617,0.38321 0.54926,0.89841 0.54927,1.54561 -10e-6,0.17883 -0.017,0.37044 -0.0511,0.57481 -0.0255,0.19587 -0.0596,0.40025 -0.10219,0.61314 l -0.84306,3.51275 -1.54561,0 0.79196,-3.34669 c 0.0426,-0.18735 0.0852,-0.37895 0.12774,-0.57482 0.0426,-0.19586 0.0681,-0.3832 0.0766,-0.56204 0.009,-0.29805 -0.0639,-0.545 -0.21715,-0.74087 -0.14477,-0.19586 -0.43431,-0.29379 -0.86861,-0.2938 -0.36618,1e-5 -0.68126,0.0383 -0.94525,0.11497 l -1.29014,5.40325 -1.54561,0 1.53284,-6.3996"
id="path3103" />
<path
d="m 576.90098,-507.74772 c 0,-0.57907 0.0894,-1.12834 0.26825,-1.6478 0.18734,-0.52798 0.45133,-0.98783 0.79196,-1.37956 0.34063,-0.40023 0.7579,-0.71532 1.25182,-0.94525 0.49391,-0.22992 1.05595,-0.34488 1.68612,-0.34489 0.33211,10e-6 0.63442,0.0298 0.90693,0.0894 0.28102,0.0511 0.54501,0.132 0.79197,0.2427 l -0.54927,1.23904 c -0.15329,-0.0681 -0.3236,-0.12773 -0.51094,-0.17883 -0.18736,-0.0511 -0.41728,-0.0766 -0.68978,-0.0766 -0.36618,10e-6 -0.6983,0.0766 -0.99635,0.22993 -0.28954,0.14477 -0.53649,0.34489 -0.74087,0.60036 -0.20438,0.25548 -0.36192,0.55779 -0.47262,0.90693 -0.11071,0.34915 -0.16606,0.71958 -0.16606,1.11131 0,0.22141 0.0213,0.42579 0.0639,0.61313 0.0511,0.17883 0.12773,0.34063 0.22992,0.4854 0.1107,0.13625 0.25973,0.2427 0.44708,0.31934 0.18734,0.0766 0.42153,0.11497 0.70255,0.11496 0.28953,1e-5 0.5663,-0.0383 0.83029,-0.11496 0.2725,-0.0766 0.48113,-0.15328 0.62591,-0.22992 l 0.12774,1.26459 c -0.19587,0.0937 -0.4556,0.18309 -0.7792,0.26824 -0.3236,0.0937 -0.68978,0.14051 -1.09853,0.14051 -0.46837,0 -0.87287,-0.0681 -1.2135,-0.20437 -0.34063,-0.14477 -0.62591,-0.33638 -0.85583,-0.57482 -0.22142,-0.24695 -0.38747,-0.53223 -0.49818,-0.85583 -0.10219,-0.33212 -0.15328,-0.68978 -0.15328,-1.07299"
id="path3105" />
<path
d="m 582.6142,-507.63276 c 0,-0.57055 0.0894,-1.11982 0.26824,-1.6478 0.18735,-0.53649 0.45134,-1.00911 0.79197,-1.41788 0.34914,-0.41726 0.76642,-0.74938 1.25182,-0.99634 0.48539,-0.24695 1.0304,-0.37043 1.63503,-0.37044 0.64719,10e-6 1.14962,0.16607 1.50729,0.49818 0.35765,0.33212 0.53649,0.75791 0.53649,1.27736 0,0.5365 -0.132,0.9708 -0.39598,1.30291 -0.264,0.33212 -0.60888,0.59185 -1.03467,0.7792 -0.41728,0.18735 -0.89416,0.31508 -1.43065,0.38321 -0.52798,0.0681 -1.06447,0.11071 -1.60948,0.12773 -0.009,0.017 -0.0128,0.0341 -0.0128,0.0511 l 0,0.12774 c 0,0.77493 0.48965,1.1624 1.46897,1.1624 0.57907,0 1.15814,-0.11922 1.73722,-0.35766 l 0.12773,1.25181 c -0.20438,0.0937 -0.49392,0.18735 -0.86861,0.28102 -0.37469,0.0937 -0.80048,0.14051 -1.27736,0.14051 -0.47689,0 -0.88564,-0.0681 -1.22627,-0.20437 -0.34064,-0.13626 -0.62166,-0.3236 -0.84306,-0.56204 -0.2129,-0.23845 -0.37044,-0.51095 -0.47263,-0.81752 -0.10219,-0.31508 -0.15328,-0.65145 -0.15328,-1.00912 m 3.71713,-3.16786 c -0.25548,0 -0.49818,0.0511 -0.7281,0.15328 -0.22993,0.10219 -0.43431,0.2427 -0.61313,0.42153 -0.17884,0.17884 -0.33638,0.39173 -0.47263,0.63868 -0.12774,0.23845 -0.22141,0.49818 -0.28102,0.7792 1.02189,-0.0341 1.76276,-0.15754 2.22262,-0.37044 0.46836,-0.21289 0.70254,-0.53223 0.70255,-0.95802 -1e-5,-0.17031 -0.0639,-0.3236 -0.19161,-0.45986 -0.11922,-0.13624 -0.33212,-0.20437 -0.63868,-0.20437"
id="path3107" />
</g>
<path
d="m 436.94223,-322.42334 -130.95125,65.70132"
id="path4532"
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 305.99395,-256.89499 -9.47587,-49.64655"
id="path4536"
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 296.23713,-307.94901 16.75117,16.82244"
id="path4538"
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 296.2532,-307.97557 -9.68243,20.86314"
id="path4540"
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(10.031118,0,0,8.8950136,304.20139,-519.58185)"
id="path3765-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 409.77214,-358.0842 68.95544,0.15694 c 0,0 0.16606,-10.59969 0.0155,-30.53212 -0.0748,-10.10148 -21.07705,-19.29251 -33.57726,-19.13381 -12.90816,0.16387 -35.19356,8.2239 -35.39472,18.02541 -0.54271,26.44638 0,31.48285 -4e-5,31.48287 z"
id="path3767-5"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.12884045;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(10.031118,0,0,8.8950136,17.858471,-519.77531)"
id="path3765-5-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 123.42923,-358.27764 68.95542,0.15693 c 0,0 0.16606,-10.5997 0.0155,-30.53215 -0.0744,-10.1007 -21.07709,-19.29174 -33.57727,-19.13303 -12.90814,0.16388 -35.19358,8.2239 -35.39472,18.02542 -0.54272,26.44636 0,31.48285 -5e-5,31.48287 z"
id="path3767-5-7"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.12884045;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text4542"
style="font-size:18.42536354px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 418.3733,-367.67123 0,-12.76878 8.07031,0 0,1.97151 -5.74871,0 0,3.26129 5.10382,0 0,1.97152 -5.10382,0 0,5.56446 -2.3216,0"
id="path3062" />
<path
d="m 433.43402,-375.29933 c -0.18426,-0.0614 -0.44222,-0.12283 -0.77387,-0.18426 -0.31938,-0.0737 -0.69402,-0.11054 -1.12394,-0.11055 -0.24568,10e-6 -0.50978,0.0246 -0.79229,0.0737 -0.27025,0.0491 -0.46064,0.0921 -0.57119,0.12898 l 0,7.72023 -2.22947,0 0,-9.17584 c 0.42992,-0.15967 0.96426,-0.30708 1.60301,-0.4422 0.65102,-0.1474 1.36961,-0.2211 2.15576,-0.22111 0.1474,10e-6 0.31937,0.0123 0.51591,0.0369 0.19654,0.0123 0.39307,0.0369 0.58962,0.0737 0.19653,0.0246 0.38692,0.0614 0.57118,0.11056 0.18425,0.0369 0.33165,0.0737 0.44221,0.11055 l -0.38693,1.87939"
id="path3064" />
<path
d="m 437.60448,-367.67123 -2.22946,0 0,-9.63647 2.22946,0 0,9.63647 m 0.23953,-12.45555 c 0,0.41765 -0.13512,0.74931 -0.40535,0.99497 -0.27025,0.24568 -0.58962,0.36852 -0.95812,0.36851 -0.3808,1e-5 -0.70631,-0.12283 -0.97655,-0.36851 -0.27024,-0.24566 -0.40536,-0.57732 -0.40535,-0.99497 -10e-6,-0.42991 0.13511,-0.76771 0.40535,-1.01339 0.27024,-0.24566 0.59575,-0.3685 0.97655,-0.36851 0.3685,1e-5 0.68787,0.12285 0.95812,0.36851 0.27023,0.24568 0.40535,0.58348 0.40535,1.01339"
id="path3066" />
<path
d="m 439.89643,-372.4434 c 0,-0.84756 0.12283,-1.59072 0.36851,-2.22947 0.25795,-0.63874 0.59575,-1.16693 1.01339,-1.58458 0.41764,-0.42992 0.8967,-0.74929 1.43718,-0.95812 0.54047,-0.2211 1.09323,-0.33165 1.65828,-0.33166 1.32662,1e-5 2.35844,0.41151 3.09546,1.2345 0.74929,0.82301 1.12394,2.05136 1.12395,3.68507 -1e-5,0.12284 -0.006,0.2641 -0.0184,0.42379 -10e-6,0.1474 -0.006,0.28252 -0.0184,0.40535 l -6.35675,0 c 0.0614,0.77387 0.33165,1.37577 0.81071,1.80569 0.49134,0.41764 1.19765,0.62646 2.11892,0.62646 0.54047,0 1.03181,-0.0491 1.47403,-0.1474 0.45448,-0.0983 0.81071,-0.20268 1.06867,-0.31323 l 0.29481,1.82411 c -0.12285,0.0614 -0.29482,0.12898 -0.51591,0.20268 -0.20883,0.0614 -0.4545,0.11669 -0.73702,0.16583 -0.27024,0.0614 -0.56505,0.11055 -0.88441,0.1474 -0.31938,0.0369 -0.6449,0.0553 -0.97655,0.0553 -0.84757,0 -1.58458,-0.12284 -2.21104,-0.36851 -0.62647,-0.25796 -1.14238,-0.60804 -1.54773,-1.05025 -0.40536,-0.45449 -0.70631,-0.98268 -0.90285,-1.58458 -0.19653,-0.61417 -0.2948,-1.28363 -0.2948,-2.00836 m 6.4673,-0.99497 c -1e-5,-0.30709 -0.043,-0.59575 -0.12898,-0.866 -0.086,-0.28251 -0.21497,-0.52204 -0.38693,-0.71858 -0.15969,-0.20882 -0.36237,-0.3685 -0.60804,-0.47906 -0.23339,-0.12283 -0.51591,-0.18425 -0.84756,-0.18426 -0.34395,10e-6 -0.6449,0.0676 -0.90285,0.20268 -0.25796,0.12285 -0.47906,0.28867 -0.66331,0.49749 -0.17197,0.20882 -0.30709,0.44835 -0.40536,0.71859 -0.0983,0.27024 -0.16583,0.54662 -0.20268,0.82914 l 4.14571,0"
id="path3068" />
<path
d="m 450.93898,-376.99447 c 0.42992,-0.12282 0.98882,-0.23952 1.67671,-0.35008 0.68787,-0.11054 1.44945,-0.16582 2.28474,-0.16583 0.78614,10e-6 1.44331,0.11056 1.97152,0.33166 0.52818,0.20883 0.94582,0.50978 1.25292,0.90284 0.31936,0.3808 0.54047,0.84758 0.66331,1.40033 0.13511,0.54048 0.20267,1.13624 0.20268,1.78726 l 0,5.41706 -2.22947,0 0,-5.06698 c 0,-0.5159 -0.0369,-0.95197 -0.11055,-1.3082 -0.0614,-0.3685 -0.17198,-0.66331 -0.33166,-0.88442 -0.1474,-0.23338 -0.35623,-0.39921 -0.62646,-0.49748 -0.25796,-0.11055 -0.57733,-0.16582 -0.95812,-0.16583 -0.28252,10e-6 -0.57733,0.0184 -0.88441,0.0553 -0.3071,0.0369 -0.53434,0.0676 -0.68174,0.0921 l 0,7.77551 -2.22947,0 0,-9.32324"
id="path3070" />
<path
d="m 463.4855,-372.5171 c 0,0.98269 0.23338,1.75655 0.70016,2.32159 0.46678,0.55276 1.11166,0.82914 1.93467,0.82914 0.35621,0 0.65716,-0.0123 0.90284,-0.0368 0.25795,-0.0369 0.46677,-0.0737 0.62646,-0.11055 l 0,-5.52761 c -0.19654,-0.13511 -0.46064,-0.25795 -0.79229,-0.36851 -0.31938,-0.12282 -0.66332,-0.18424 -1.03182,-0.18425 -0.81072,10e-6 -1.40647,0.27639 -1.78726,0.82914 -0.36851,0.55277 -0.55276,1.30207 -0.55276,2.2479 m 6.3936,4.55106 c -0.44222,0.13512 -1.00112,0.25796 -1.67671,0.36851 -0.66332,0.11055 -1.36348,0.16583 -2.10049,0.16583 -0.76158,0 -1.44332,-0.1167 -2.04521,-0.35009 -0.6019,-0.23338 -1.11781,-0.56504 -1.54773,-0.99497 -0.41765,-0.4422 -0.74316,-0.9704 -0.97655,-1.58458 -0.2211,-0.62646 -0.33166,-1.32662 -0.33165,-2.10049 -10e-6,-0.76157 0.0921,-1.44945 0.27638,-2.06364 0.19653,-0.62645 0.47905,-1.16079 0.84756,-1.60301 0.36851,-0.4422 0.81686,-0.77999 1.34505,-1.01339 0.52819,-0.24566 1.13623,-0.3685 1.82411,-0.36851 0.46677,1e-5 0.87827,0.0553 1.2345,0.16583 0.35622,0.11056 0.66331,0.2334 0.92127,0.36851 l 0,-4.62477 2.22947,-0.36851 0,14.00328"
id="path3072" />
</g>
<g
id="text4392"
style="font-size:35.04254913px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 157.56593,-387.3729 c -0.81766,2e-5 -1.60028,0.10515 -2.34785,0.31538 -0.74758,0.18692 -1.53019,0.5023 -2.34785,0.94615 l -1.19145,-3.25896 c 0.86439,-0.49057 1.84558,-0.87604 2.94358,-1.1564 1.12135,-0.30368 2.26608,-0.45553 3.43417,-0.45555 1.40169,2e-5 2.55809,0.1986 3.46921,0.59572 0.9111,0.37381 1.63531,0.85273 2.17264,1.43675 0.5373,0.58406 0.91109,1.22651 1.12136,1.92734 0.21024,0.70087 0.31537,1.37836 0.31538,2.03246 -1e-5,0.79432 -0.15186,1.50685 -0.45555,2.1376 -0.28035,0.63078 -0.64246,1.21482 -1.08632,1.75213 -0.44388,0.53733 -0.9228,1.05129 -1.43674,1.54187 -0.51397,0.46725 -0.99289,0.95784 -1.43675,1.47179 -0.44388,0.4906 -0.81767,1.01624 -1.12136,1.57691 -0.28035,0.56069 -0.42052,1.19146 -0.42051,1.8923 -1e-5,0.11681 -1e-5,0.25698 0,0.42051 -1e-5,0.14018 0.0117,0.28035 0.035,0.42051 l -3.64442,0 c -0.0467,-0.23361 -0.0818,-0.47891 -0.10513,-0.73589 -0.0234,-0.28034 -0.0351,-0.53731 -0.035,-0.77094 -1e-5,-0.77093 0.12848,-1.4601 0.38546,-2.06751 0.25698,-0.60739 0.58404,-1.16807 0.9812,-1.68204 0.39714,-0.51395 0.81765,-0.99286 1.26153,-1.43675 0.46722,-0.44386 0.89942,-0.88773 1.29657,-1.33161 0.39714,-0.44386 0.72421,-0.89941 0.98119,-1.36666 0.25697,-0.46722 0.38546,-0.98118 0.38547,-1.54188 -1e-5,-0.77091 -0.26867,-1.40168 -0.80598,-1.89229 -0.51396,-0.51394 -1.29658,-0.77092 -2.34785,-0.77094 m 2.73332,18.92298 c -1e-5,0.81766 -0.26867,1.48347 -0.80598,1.99742 -0.53732,0.51396 -1.20313,0.77094 -1.99742,0.77094 -0.77094,0 -1.43675,-0.25698 -1.99743,-0.77094 -0.53732,-0.51395 -0.80598,-1.17976 -0.80598,-1.99742 0,-0.81766 0.26866,-1.48347 0.80598,-1.99743 0.56068,-0.53731 1.22649,-0.80597 1.99743,-0.80598 0.79429,1e-5 1.4601,0.26867 1.99742,0.80598 0.53731,0.51396 0.80597,1.17977 0.80598,1.99743"
id="path3059" />
</g>
<path
d="m 410.78932,-350.29245 15.25114,0 c 1.58286,0 2.85716,1.27429 2.85716,2.85716 l 0,13.69815 c 0,1.58286 -1.2743,2.85715 -2.85716,2.85715 l -15.25114,0 c -1.58287,0 -2.85716,-1.27429 -2.85716,-2.85715 l 0,-13.69815 c 0,-1.58287 1.27429,-2.85716 2.85716,-2.85716 z"
id="rect3775-6-5-2"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text3864-0-8"
style="font-size:17.46800804px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 418.09101,-344.80366 c -0.40759,10e-6 -0.79771,0.0524 -1.17036,0.15721 -0.37265,0.0932 -0.76277,0.25039 -1.17036,0.47164 l -0.59391,-1.62453 c 0.43088,-0.24454 0.91998,-0.43669 1.46731,-0.57644 0.55898,-0.15138 1.1296,-0.22707 1.71187,-0.22709 0.69871,2e-5 1.27516,0.099 1.72933,0.29696 0.45416,0.18634 0.81517,0.42507 1.08302,0.71619 0.26783,0.29114 0.45416,0.61139 0.55897,0.96074 0.1048,0.34937 0.15721,0.68708 0.15722,1.01314 -1e-5,0.39595 -0.0757,0.75114 -0.22709,1.06555 -0.13975,0.31443 -0.32025,0.60557 -0.54151,0.8734 -0.22126,0.26785 -0.45999,0.52405 -0.71619,0.76859 -0.2562,0.23292 -0.49493,0.47747 -0.71618,0.73366 -0.22127,0.24456 -0.40759,0.50658 -0.55898,0.78606 -0.13975,0.27949 -0.20962,0.59392 -0.20962,0.94327 0,0.0582 0,0.12811 0,0.20962 0,0.0699 0.006,0.13975 0.0175,0.20962 l -1.81667,0 c -0.0233,-0.11645 -0.0408,-0.23873 -0.0524,-0.36683 -0.0117,-0.13974 -0.0175,-0.26784 -0.0175,-0.3843 -1e-5,-0.38429 0.064,-0.72783 0.19215,-1.03061 0.12809,-0.30277 0.29113,-0.58226 0.4891,-0.83847 0.19797,-0.25619 0.40758,-0.49492 0.62885,-0.71618 0.2329,-0.22126 0.44834,-0.44252 0.64631,-0.66379 0.19797,-0.22125 0.36101,-0.44833 0.48911,-0.68125 0.12809,-0.2329 0.19214,-0.4891 0.19215,-0.76859 -1e-5,-0.38429 -0.13393,-0.69871 -0.40177,-0.94327 -0.2562,-0.25619 -0.64632,-0.38429 -1.17035,-0.3843 m 1.3625,9.43272 c 0,0.40759 -0.13393,0.73948 -0.40176,0.99568 -0.26785,0.2562 -0.59974,0.3843 -0.99568,0.3843 -0.3843,0 -0.71619,-0.1281 -0.99568,-0.3843 -0.26784,-0.2562 -0.40176,-0.58809 -0.40176,-0.99568 0,-0.40758 0.13392,-0.73947 0.40176,-0.99567 0.27949,-0.26784 0.61138,-0.40176 0.99568,-0.40177 0.39594,10e-6 0.72783,0.13393 0.99568,0.40177 0.26783,0.2562 0.40176,0.58809 0.40176,0.99567"
id="path3055" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 145 KiB

View file

@ -0,0 +1,521 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
height="600"
id="svg2985"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="bitcoin_at_a_glance.svg"
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org/en/img/blockchain.png"
inkscape:export-xdpi="1687.5"
inkscape:export-ydpi="1687.5">
<defs
id="defs2987" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="-50.111526"
inkscape:cy="449.68459"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(0,568)">
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(13.382582,0,0,11.866899,114.61286,-599.99155)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5.50831413;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 255.45551,-376.39244 91.99394,0.21031 c 0,0 0.22208,-14.14113 0.0201,-40.73312 -0.10037,-13.47647 -28.11908,-25.73828 -44.79565,-25.52656 -17.22086,0.21864 -46.95198,10.97155 -47.22032,24.04785 -0.72408,35.28228 0,42.00148 -9e-5,42.00152 z"
id="path3767"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<text
xml:space="preserve"
style="font-size:18.44081879px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="280.09485"
y="-325.73792"
id="text3777"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779"
x="280.09485"
y="-325.73792"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1pY3..</tspan></text>
<text
xml:space="preserve"
style="font-size:18.44081879px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="279.50327"
y="-348.81546"
id="text3777-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-8"
x="279.50327"
y="-348.81546"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1sd9..</tspan></text>
<text
xml:space="preserve"
style="font-size:33.05439758px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="272.70172"
y="-386.98062"
id="text3833"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3835"
x="272.70172"
y="-386.98062">You</tspan></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3775-6-5"
width="20.965456"
height="19.412464"
x="121.70264"
y="-350.01218"
ry="2.8571582" />
<text
xml:space="preserve"
style="font-size:16.60424614px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="147.51283"
y="-334.77994"
id="text3777-0-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-2-8"
x="147.51283"
y="-334.77994"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1qTu..</tspan></text>
<text
xml:space="preserve"
style="font-size:17.46800804px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="128.64735"
y="-333.93777"
id="text3864-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3866-7"
x="128.64735"
y="-333.93777">?</tspan></text>
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.89048529;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910"
width="126.69685"
height="96.68187"
x="110.84156"
y="-249.56139"
ry="0"
rx="0" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3.77378631;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968"
width="32.858604"
height="22.748264"
x="95.143631"
y="-269.66183" />
<path
style="fill:none;stroke:#000000;stroke-width:6.91860723;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 121.68326,-267.27457 c 0,0 1.21074,-9.89367 -1.54451,-13.48044 -1.86912,-2.43328 -5.5021,-3.53942 -8.5657,-3.37011 -3.08528,0.17153 -6.86475,0.58667 -8.98697,4.63389 -1.86269,3.55226 -1.5447,11.65496 -1.5447,11.65496 z"
id="path3970"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.83422971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-6"
width="24.677822"
height="17.084648"
x="225.26515"
y="-263.95233" />
<path
style="fill:none;stroke:#000000;stroke-width:5.19608688;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 245.19723,-262.15944 c 0,0 0.90948,-7.43045 -1.16022,-10.12427 -1.40401,-1.82756 -4.13224,-2.65823 -6.43308,-2.53102 -2.31718,0.12773 -5.15565,0.44069 -6.74951,3.4802 -1.39909,2.66787 -1.16022,8.75323 -1.16022,8.75323 z"
id="path3970-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.05065179;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-3"
width="17.855162"
height="12.361265"
x="355.64349"
y="-258.81003" />
<path
style="fill:none;stroke:#000000;stroke-width:3.75952888;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 370.06504,-257.51278 c 0,0 0.65767,-5.37614 -0.83922,-7.32518 -1.01588,-1.32244 -2.98981,-1.92326 -4.65452,-1.83127 -1.67646,0.0912 -3.73031,0.31897 -4.8835,2.51803 -1.01222,1.93034 -0.83923,6.33326 -0.83923,6.33326 z"
id="path3970-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<text
xml:space="preserve"
style="font-size:4px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="6.6307654"
y="18.827772"
id="text4015"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4017"
x="6.6307654"
y="18.827772" /></text>
<text
xml:space="preserve"
style="font-size:14.59846592px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="247.52753"
y="-209.1823"
id="text4023"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4025"
x="247.52753"
y="-209.1823">1x4F..-&gt;1pY3..</tspan></text>
<text
xml:space="preserve"
style="font-size:14.59846497px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="248.48535"
y="-225.67215"
id="text4048"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4050"
x="248.48535"
y="-225.67215">2.00 BTC</tspan></text>
<text
xml:space="preserve"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="150.67883"
y="-190.47754"
id="text4083-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6"
x="150.67883"
y="-190.47754"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<text
xml:space="preserve"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="406.62646"
y="-190.09898"
id="text4083-7-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6-5"
x="406.62646"
y="-190.09898"
style="font-size:32.57752228px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:0.34463671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4129"
sodipodi:cx="16.342493"
sodipodi:cy="12.911432"
sodipodi:rx="14.243867"
sodipodi:ry="13.10525"
d="m 30.58636,12.911432 a 14.243867,13.10525 0 1 1 -28.4877339,0 14.243867,13.10525 0 1 1 28.4877339,0 z"
transform="matrix(19.990924,0,0,21.00392,-25.509877,-538.40922)" />
<text
xml:space="preserve"
style="font-size:40.70894241px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="220.13109"
y="-104.91078"
id="text4131"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4133"
x="220.13109"
y="-104.91078">Blockchain</tspan></text>
<text
xml:space="preserve"
style="font-size:20.35447121px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="183.59749"
y="-119.45261"
id="text4135"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4137"
x="183.59749"
y="-119.45261">the</tspan></text>
<text
xml:space="preserve"
style="font-size:18.24808121px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="172.77504"
y="-80.435341"
id="text4139"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4141"
x="172.77504"
y="-80.435341">(a shared public transaction log)</tspan></text>
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.8866291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910-0"
width="126.69685"
height="96.68187"
x="237.82028"
y="-249.54121"
ry="0"
rx="0" />
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.8866291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910-00"
width="126.69685"
height="96.68187"
x="364.52725"
y="-249.56285"
ry="0"
rx="0" />
<text
xml:space="preserve"
style="font-size:1.5px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="8.087534"
y="27.403807"
id="text4168"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4170"
x="8.087534"
y="27.403807" /></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.00531864;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-3-4"
width="8.7533751"
height="6.060029"
x="312.43851"
y="-231.70477" />
<path
style="fill:none;stroke:#000000;stroke-width:1.84308445;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 319.50855,-231.06881 c 0,0 0.32245,-2.63563 -0.41148,-3.59114 -0.498,-0.64835 -1.4657,-0.94287 -2.28185,-0.8978 -0.8219,0.0456 -1.82876,0.15693 -2.3941,1.23449 -0.49617,0.94633 -0.41149,3.10483 -0.41149,3.10483 z"
id="path3970-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.82480812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4234"
width="112.90999"
height="39.062298"
x="244.85536"
y="-242.51218" />
<text
xml:space="preserve"
style="font-size:23.72250366px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="285.1553"
y="-171.31741"
id="text4083-7-9-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6-5-7"
x="285.1553"
y="-171.31741"
style="font-size:23.72250366px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<rect
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.82480812;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4234-2"
width="112.90999"
height="39.062298"
x="244.85536"
y="-198.25854" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4293-3"
sodipodi:cx="12.867188"
sodipodi:cy="10.052734"
sodipodi:rx="0.2109375"
sodipodi:ry="0.20898438"
d="m 13.078126,10.052734 a 0.2109375,0.20898438 0 1 1 -0.421875,0 0.2109375,0.20898438 0 1 1 0.421875,0 z"
transform="matrix(22.897483,0,0,22.897483,-28.509058,-588.11129)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 261.83921,-356.97445 -8.13933,9.92819 0,2.41497 3.0323,-0.85948 1.06533,-1.71897 0.78539,-1.4396 1.74124,0.003 0.33941,-1.58394 2.12041,-0.64562 4.38472,-4.20891 z"
id="path4297-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4293-3-2"
sodipodi:cx="12.867188"
sodipodi:cy="10.052734"
sodipodi:rx="0.2109375"
sodipodi:ry="0.20898438"
d="m 13.078126,10.052734 a 0.2109375,0.20898438 0 1 1 -0.421875,0 0.2109375,0.20898438 0 1 1 0.421875,0 z"
transform="matrix(22.897483,0,0,22.897483,-27.948507,-564.33395)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 262.39976,-333.19708 -8.13932,9.9282 0,2.41497 3.03231,-0.85948 1.06532,-1.71897 0.7854,-1.4396 1.74105,0.003 0.33941,-1.58393 2.12041,-0.64562 4.38472,-4.20892 z"
id="path4297-3-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<text
xml:space="preserve"
style="font-size:16.51408768px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="433.74728"
y="-334.09183"
id="text3777-0-0-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-2-8-0"
x="433.74728"
y="-334.09183"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1x4F..</tspan></text>
<text
xml:space="preserve"
style="font-size:27.3721199px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic"
x="447.79575"
y="-521.73907"
id="text4484"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4486"
x="447.79575"
y="-521.73907">Bitcoin</tspan></text>
<text
xml:space="preserve"
style="font-size:12.77365685px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic"
x="471.25226"
y="-505.21854"
id="text4492"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="471.25226"
y="-505.21854"
id="tspan4528">Network at a glance</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 436.94223,-322.42334 -130.95125,65.70132"
id="path4532"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305.99395,-256.89499 -9.47587,-49.64655"
id="path4536"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 296.23713,-307.94901 16.75117,16.82244"
id="path4538"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.38682795;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 296.2532,-307.97557 -9.68243,20.86314"
id="path4540"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765-5"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(10.031118,0,0,8.8950136,304.20139,-519.58185)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.12884045;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 409.77214,-358.0842 68.95544,0.15694 c 0,0 0.16606,-10.59969 0.0155,-30.53212 -0.0748,-10.10148 -21.07705,-19.29251 -33.57726,-19.13381 -12.90816,0.16387 -35.19356,8.2239 -35.39472,18.02541 -0.54271,26.44638 0,31.48285 -4e-5,31.48287 z"
id="path3767-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765-5-5"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(10.031118,0,0,8.8950136,17.858471,-519.77531)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.12884045;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 123.42923,-358.27764 68.95542,0.15693 c 0,0 0.16606,-10.5997 0.0155,-30.53215 -0.0744,-10.1007 -21.07709,-19.29174 -33.57727,-19.13303 -12.90814,0.16388 -35.19358,8.2239 -35.39472,18.02542 -0.54272,26.44636 0,31.48285 -5e-5,31.48287 z"
id="path3767-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<text
xml:space="preserve"
style="font-size:18.42536354px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="416.84399"
y="-367.67123"
id="text4542"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4544"
x="416.84399"
y="-367.67123">Friend</tspan></text>
<text
xml:space="preserve"
style="font-size:35.04254913px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="151.1181"
y="-366.13712"
id="text4392"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4394"
x="151.1181"
y="-366.13712">?</tspan></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3775-6-5-2"
width="20.965456"
height="19.412464"
x="407.93216"
y="-350.29245"
ry="2.8571582" />
<text
xml:space="preserve"
style="font-size:17.46800804px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="414.87689"
y="-334.21805"
id="text3864-0-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3866-7-0"
x="414.87689"
y="-334.21805">?</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

14
en/index.html Normal file
View file

@ -0,0 +1,14 @@
---
layout: base-en
title: Bitcoin
---
<h1>An open source P2P digital currency</h1>
<p style="font-size:20px;">Bitcoin is a currency, a protocol, and a software that enables
<ul style="font-size:20px;">
<li style="padding:4px 0px;">Instant peer to peer transactions</li>
<li style="padding:4px 0px;">Worldwide payments</li>
<li style="padding:4px 0px;">Low or zero processing fees</li>
<li style="padding:4px 0px;">And much more!</li>
</ul>
<p>Bitcoin uses peer-to-peer technology to operate with no central authority: managing transactions and issuing Bitcoins are carried out <b>collectively by the network</b>. Through many of its unique properties, Bitcoin allows exciting uses that could not be covered by any previous payment systems.</p>
<p>The software is a community-driven <a target="_blank" href="http://www.fsf.org/about/what-is-free-software">free open source</a> project, released under the <a href="http://creativecommons.org/licenses/MIT/" target="_blank">MIT license</a>.</p>

35
en/resources.html Normal file
View file

@ -0,0 +1,35 @@
---
layout: base-en
title: Resources - Bitcoin
---
<h1>Bitcoin resources</h1>
<ul class="ressources">
<li><a href="http://www.weusecoins.com" target="_blank">We Use Coins. Start here!</a></li>
<li><a href="/en/choose-your-wallet">Bitcoin wallets</a></li>
<li><a href="https://en.bitcoin.it/wiki/Main_Page" target="_blank">Bitcoin Wiki</a>
<ul>
<li><a href="https://bitcoin.it/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://bitcoin.it/wiki/Trade" target="_blank">Sites That Accept Bitcoin</a></li>
<li><a href="https://en.bitcoin.it/wiki/Merchant_Howto" target="_blank">Merchant How-to</a></li>
</ul>
</li>
<li><a>Bitcoin Charts</a>
<ul>
<li><a href="http://bitcoincharts.com/" target="_blank">Bitcoin Charts - Markets</a></li>
<li><a href="http://blockchain.info/charts" target="_blank">Blockchain.info - Stats and graphics</a></li>
</ul>
</li>
<li><a>Bitcoin News</a>
<ul>
<li><a href="http://bitcoinmagazine.com/" target="_blank">Bitcoin Magazine</a></li>
<li><a href="http://www.bitcoinnews.com/" target="_blank">Bitcoin News</a></li>
<li><a href="https://bitcointalk.org/index.php?board=77.0" target="_blank">Bitcoin Forum / Press</a></li>
</ul>
</li>
<li><a>Bitcoin Specification</a>
<ul>
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules" target="_blank">Protocol rules</a></li>
</ul>
</li>
</ul>

30
en/support-bitcoin.html Normal file
View file

@ -0,0 +1,30 @@
---
layout: base-en
title: Support Bitcoin - Bitcoin
---
<h1>Support Bitcoin</h1>
<p>Bitcoin is a protocol that was born from a small community and has grown fast since. There are a lot of things you can do to help Bitcoin to spread and improve over time.</p>
<h2><img src="/img/ico_multi.svg" alt="Bitcoin" />Using Bitcoin</h2>
<p>Obviously, using Bitcoin is the first thing you can do to help its development. There are most probably many cases where it can make your life easier. And you can accept payment in Bitcoin yourself.</p>
<h2><img src="/img/ico_network.svg" alt="Network" />Be the network</h2>
<p>You can join the Bitcoin network by keeping the <a href="/en/download">original software</a> running on your computer. You can also do some Bitcoin mining to make the network more secure by helping to process transactions.</p>
<h2><img src="/img/ico_conf.svg" alt="Development" />Development</h2>
<p>Bitcoin is open source. So if you are a developer, you can use your super-powers to do good and <a href="/en/development">improve Bitcoin</a>. Or you can also build amazing new services or software that use Bitcoin.</p>
<h2><img src="/img/ico_donate.svg" alt="Donation" />Donation</h2>
<p>The easiest way to help is to <a href="https://bitcoinfoundation.org/donate" target="_blank">donate</a> a few bitcoins or join the Bitcoin Foundation. The Foundation funds a salary for the maintainer of the core Bitcoin software, organizes conferences, and provides other important resources.</p>
<h2><img src="/img/ico_spread.svg" alt="Spread" />Spread</h2>
<p>Speak about Bitcoin to interested people. Write about it on your blog. Tell your favorite shops you would like to pay with Bitcoins. Or be creative and make yourself a nice Bitcoin T-shirt.</p>
<h2><img src="/img/ico_wiki.svg" alt="Wiki" />Wiki</h2>
<p>The <a href="http://en.bitcoin.it/" target="_blank">Bitcoin wiki</a> is full of useful and detailed information and we are constantly improving the information it contains - just like Wikipedia. You can help keep the wiki accurate and up-to-date.</a>
<h2><img src="/img/ico_translate.svg" alt="Translate" />Translate</h2>
<p>Bitcoin is already translated in many languages. However you can <a href="https://www.transifex.com/projects/p/bitcoin/" target="_blank">translate</a> it in new languages as well as improving existing translations. Translations in the <a href="http://en.bitcoin.it/" target="_blank">Bitcoin wiki</a> would be very welcome!</p>
<h2><img src="/img/ico_help.svg" alt="Help" />Help</h2>
<p>You can join Bitcoin <a href="/en/community">communities</a> to give help to new users. And you can talk about Bitcoin with other people and learn more about it every day.</p>

4
en/version-history.html Normal file
View file

@ -0,0 +1,4 @@
---
layout: post
title: Version history
---

62
en/vocabulary.html Normal file
View file

@ -0,0 +1,62 @@
---
layout: base-en
title: Vocabulary - Bitcoin
---
<h1>Some Bitcoin words you might hear</h1>
<p>Bitcoin provides a new approach to payments and as such, there are some new words that might become a part of your vocabulary. Don't worry, even the humble television created new words!</p>
<h2>Table of contents</h2>
<div class="index">
<a href="#address">Address</a>
<a href="#blockchain">Blockchain</a>
<a href="#block">Block</a>
<a href="#btc">BTC</a>
<a href="#confirmation">Confirmation</a>
<a href="#cryptography">Cryptography</a>
<a href="#double-spend">Double Spend</a>
<a href="#hash-rate">Hash Rate</a>
<a href="#mining">Mining</a>
<a href="#p2p">P2P - Peer To Peer</a>
<a href="#private-key">Private Key</a>
<a href="#signature">Signature</a>
<a href="#wallet">Wallet</a>
</div>
<h2><a name="address">Address</a></h2>
<p>A Bitcoin address is <b>like a physical address or an email</b>. It is the only information you need to provide for someone to pay you with Bitcoin.</p>
<h2><a name="blockchain">Blockchain</a></h2>
<p>The blockchain is a <b>public record of all Bitcoin transactions</b>, in chronological order. The blockchain is shared between all Bitcoin users. It is used to verify the balance of Bitcoin addresses and to prevent <a href="#double-spend">double spending</a>.</p>
<h2><a name="block">Block</a></h2>
<p>A block is a <b>record in the blockchain that contains and confirms many waiting transactions</b>. Roughly every 10 minutes on average, a new block including transactions is appended to the <a href="#blockchain">blockchain</a> through <a href="#mining">mining</a>.</p>
<h2><a name="btc">BTC</a></h2>
<p>BTC is the unofficial three letter code for Bitcoin. It can be used as an abbreviation, like USD for US dollar.</p>
<h2><a name="confirmation">Confirmation</a></h2>
<p>Confirmation means that a transaction has been <b>verified by the network and is highly unlikely to be reversed</b>. One confirmation is pretty secure. Though for larger amounts ( ex. 1000 $USD and above ), one can wait for a transaction to have more confirmations - 6 is an frequently chosen number. Each new confirmation decrease the risk of a reversal exponentially.</p>
<h2><a name="cryptography">Cryptography</a></h2>
<p>Cryptography is the branch of mathematics that lets us create <b>mathematical proofs that provide high levels of security</b>. Online commerce and banking already uses cryptography. In the case of Bitcoin, cryptography is used to make it impossible for anybody to spend funds from another user's wallet or to corrupt the <a href="#blockchain">blockchain</a>. It can also be used to encrypt a wallet, so that it cannot be used without a password.</p>
<h2><a name="double-spend">Double Spend</a></h2>
<p>If a malicious user tries to <b>spend their bitcoins to two different recipients at the same time</b>, this is double spending. Bitcoin <a href="#mining">mining</a> and the <a href="#blockchain">blockchain</a> are there to create a consensus on the network about which of the two transactions will win.</p>
</p>
<h2><a name="hash-rate">Hash Rate</a></h2>
<p>The hash rate is the <b>measuring unit of the processing power of the Bitcoin network</b>. The Bitcoin network must make intensive mathematical operations for security purposes. When the network reaches a hash rate of 10 TH/s, it means it can make ten trillion calculations per second.</p>
<h2><a name="mining">Mining</a></h2>
<p>Bitcoin mining is the process of <b>making computer hardware do mathematical calculations for the Bitcoin network to confirm transactions</b> and increase security. As a reward for their services, Bitcoin miners can collect transaction fees for the transactions they confirm along with newly created bitcoins. Mining is a specialized and competitive market where the rewards are divided up according to how much calculation is done. Only a few Bitcoin users do Bitcoin mining and it is not an easy way to make money.</p>
<h2><a name="p2p">P2P</a></h2>
<p>Peer to peer refers to <b>systems that work like an organized collective</b> by allowing each individual to interact directly with the others. In the case of Bitcoin, the network is built in such a way that each user is broadcasting transactions of other users. And crucially, no bank is required as a third party.</p>
<h2><a name="private-key">Private Key</a></h2>
<p>A private key is a <b>secret piece of data that proves your right to spends Bitcoin from a specific Bitcoin address</b> through a cryptographic <a href="#signature">signature</a>. Each <a href="#address">Bitcoin address</a> has its own unique private key. Your private keys are stored in your computer if you use a software wallet while they are stored on some remote servers if you use a web wallet. Private keys must never be revealed as they allow you to spend bitcoins for their respective Bitcoin addresses.</p>
<h2><a name="signature">Signature</a></h2>
<p>A <a href="#cryptography">cryptographic</a> signature is <b>a mathematical mechanism that allows someone to prove ownership</b>. In the case of Bitcoin, a <a href="#address">Bitcoin address</a> and its <a href="#private-key">private key</a> are linked by some mathematical magic. When your Bitcoin software signs a transaction with the appropriate private key, the whole network can see that the signature matches the Bitcoin address. However, there is no way for the world to guess your private key to steal your hard-earned bitcoins.</p>
<h2><a name="wallet">Wallet</a></h2>
<p>A Bitcoin wallet refers to <b>the equivalent of a physical wallet on the Bitcoin network</b>. Each Bitcoin wallet can show you the total balance of all <a href="#address">Bitcoin addresses</a> it contains. Just like you can count the money in your real wallet. And in the same way, a Bitcoin wallet allows you to pay a specific amount to a specific person. This is different to credit cards where you are charged by the merchant.</p>

38
en/you-need-to-know.html Normal file
View file

@ -0,0 +1,38 @@
---
layout: base-en
title: Some things you need to know - Bitcoin
---
<h1>Some things you need to know</h1>
<p>If you are about to explore Bitcoin, there are a few things you should know. Bitcoin does not let you send emails or take pictures; it lets you exchange money and value. As such, Bitcoin must be treated with the same care as your regular wallet, or even more in some cases!</p>
<h2><img src="/img/ico_key.svg" alt="Security" />Securing your wallet</h2>
<p>Like in real life, your wallet must be secured. Always remember that it is your responsibility to adopt good practices in order to protect your money. Here are some options you should consider.</p>
<div class="box">
<h3>Backup your wallet</h3>
<p>Bitcoin services and software allow you to backup your wallet, which can be printed on paper or saved to a USB drive. Stored in a safe place, a backup can protect you against computer failure and many human mistakes.</p>
<h3>Encrypt your wallet</h3>
<p>Encrypting your wallet allows you to set a password for anyone trying to withdraw any funds. This helps protect against thieves and hackers, though it cannot protect against keylogging hardware or software. However, you should make sure you never forget the password or your funds will be permanently lost. Unlike your bank, there are no password recovery options with Bitcoin!</p>
<h3>Be careful with online wallets</h3>
<p>Using a online wallet is pretty much like using a online bank. You are trusting someone else to protect your money while you have to remember and protect your password. Your should always choose such services carefully. As of today, no online wallet provides enough insurance and security to be used to store value like a bank.</p>
<h3>Use an offline backup for savings</h3>
<p>An offline backup of a wallet provides the highest level of security for savings. It involves storing a wallet only on paper and on usb keys in different secured locations that are not connected to the network. This is a good protection against computer failures, computer vulnerabilities, theft and human mistakes. As of today, this approach still requires some technical knowledge to be done correctly.</p>
</div>
<h2><img src="/img/ico_market.svg" alt="Volatile" />Bitcoin value is volatile</h2>
<p>The value of Bitcoin can unpredictably increase or decrease over a short period of time due to its young economy, novel nature, and sometimes-illiquid markets. Consequently, keeping your savings in Bitcoin is not recommended. Bitcoin should be considered as a high risk asset and you should never store money that you cannot afford to lose with Bitcoin. If you receive payments with Bitcoin, many service providers allow you to convert them instantly to your local currency.</p>
<h2><img src="/img/ico_irreversible.svg" alt="Irreversible" />Bitcoin payments are irreversible</h2>
<p>Any transaction you issue with Bitcoin cannot be reversed. It can only be refunded by the person receiving the funds. That means you should take care to do business with people or organizations you know and trust. But don't worry, Bitcoin can detect typos and usually won't let you send money to an invalid address.</p>
<h2><img src="/img/ico_anon.svg" alt="Anonymous" />Bitcoin is not anonymous without efforts</h2>
<p>All Bitcoin transactions are stored publicly and permanently on the network, which means anybody can see the balance and the transactions of any Bitcoin address. However, it is not possible to associate a Bitcoin address with its physical owner unless the owner demonstrated that they own it. This is why it is recommended to use many different Bitcoin addresses; in fact, you should create a new one each time you receive money. This is especially important for public uses such as websites. You might also want to consider hiding your computer's IP address with a tool like <a href="https://www.torproject.org/" target="_blank">Tor</a> so that it cannot be logged by others.</p>
<h2><img src="/img/ico_lab.svg" alt="Experimental" />Bitcoin is still experimental</h2>
<p>Bitcoin is an experimental new currency that is in active development. Although it becomes less and less experimental as usage grows, you should keep in mind that Bitcoin is a new invention that is exploring ideas that have never been attempted before. As such, its future cannot be predicted by anyone.</p>
<h2><img src="/img/ico_invoice.svg" alt="Taxes" />Don't forget to pay your taxes</h2>
<p>Bitcoin is not a official currency. That said, most jurisdictions still require you to pay income, sales, and payroll taxes on anything that has value, including Bitcoin. It is your responsibility to inform yourself about and comply with any applicable laws.</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 B

View file

@ -1,5 +1,5 @@
---
layout: simple
layout: base-en
---
<div class="container">
<section id="feb20">

BIN
font/ubuntu-b-webfont.eot Normal file

Binary file not shown.

245
font/ubuntu-b-webfont.svg Normal file
View file

@ -0,0 +1,245 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="ubuntubold" horiz-adv-x="1163" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="491" />
<glyph unicode="&#xfb01;" horiz-adv-x="1449" d="M143 0v1135q0 209 118 331.5t349 122.5q86 0 142.5 -14t95.5 -31l-53 -239q-33 14 -73 20t-81 6q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM971 1389q0 84 54 132t128 48t128 -48t54 -132t-54 -132.5t-128 -48.5t-128 48.5t-54 132.5z M1001 0v1077h306v-1077h-306z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1507" d="M143 0v1135q0 209 118 331.5t349 122.5q86 0 142.5 -14t95.5 -31l-53 -239q-33 14 -73 20t-81 6q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM1004 354v1186l305 49v-1173q0 -41 6 -74t23.5 -55.5t50 -36.5t88.5 -19l-43 -251 q-133 2 -216 28.5t-131.5 74.5t-65.5 116.5t-17 154.5z" />
<glyph unicode="&#xfb03;" horiz-adv-x="2308" d="M143 0v1135q0 209 118 331.5t349 122.5q86 0 158 -17.5t111 -33.5l-60 -244q-41 18 -89 27.5t-89 9.5q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM1001 0v1135q0 209 118 331.5t349 122.5q86 0 142.5 -14t95.5 -31l-53 -239 q-33 14 -73 20t-81 6q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM1829 1389q0 84 54 132t128 48t128 -48t54 -132t-54 -132.5t-128 -48.5t-128 48.5t-54 132.5zM1860 0v1077h305v-1077h-305z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2365" d="M143 0v1135q0 209 118 331.5t349 122.5q86 0 158 -17.5t111 -33.5l-60 -244q-41 18 -89 27.5t-89 9.5q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM1001 0v1135q0 209 118 331.5t349 122.5q86 0 142.5 -14t95.5 -31l-53 -239 q-33 14 -73 20t-81 6q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306zM1862 354v1186l305 49v-1173q0 -41 6 -74t23.5 -55.5t50 -36.5t88.5 -19l-43 -251q-133 2 -216 28.5t-131.5 74.5t-65.5 116.5t-17 154.5z" />
<glyph unicode="&#xd;" horiz-adv-x="491" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="491" />
<glyph unicode="&#x09;" horiz-adv-x="491" />
<glyph unicode="&#xa0;" horiz-adv-x="491" />
<glyph unicode="!" horiz-adv-x="585" d="M102 162q0 90 58.5 139t132.5 49t132 -49t58 -139t-58 -139.5t-132 -49.5t-132.5 49.5t-58.5 139.5zM131 1053v366h326v-366q0 -166 -12.5 -309.5t-32.5 -290.5h-234q-20 147 -33.5 290.5t-13.5 309.5z" />
<glyph unicode="&#x22;" horiz-adv-x="952" d="M102 1407v149h301v-151q0 -98 -15 -215t-34 -236h-202q-23 119 -36.5 236t-13.5 217zM548 1407v149h301v-151q0 -98 -15 -215t-34 -236h-202q-23 119 -36.5 236t-13.5 217z" />
<glyph unicode="#" horiz-adv-x="1431" d="M113 348v236h192l49 252h-241v235h286l68 348h266l-67 -348h237l68 348h266l-68 -348h150v-235h-195l-49 -252h244v-236h-289l-65 -348h-267l66 348h-238l-65 -348h-266l65 348h-147zM571 584h238l49 252h-237z" />
<glyph unicode="$" d="M72 123l88 235q72 -35 171 -63.5t210 -28.5q125 0 171 34t46 95q0 39 -18.5 66.5t-53.5 50.5t-88 44.5t-123 45.5q-68 25 -132 54.5t-116.5 72.5t-84 105.5t-31.5 150.5q0 68 19.5 130.5t60 113.5t106 87t156.5 52v221h258v-213q106 -10 183 -30.5t122 -40.5l-64 -246 q-68 29 -156.5 49t-187.5 20q-98 0 -141 -32.5t-43 -85.5q0 -33 13.5 -56.5t42 -42t70.5 -36t101 -37.5q90 -33 167 -72t133.5 -89t88 -117.5t31.5 -158.5q0 -61 -18.5 -121.5t-61.5 -111.5t-111.5 -88t-168.5 -53v-250h-258v243q-150 12 -243 46t-138 57z" />
<glyph unicode="%" horiz-adv-x="1880" d="M72 1055q0 193 98 295t264 102t264.5 -102t98.5 -295t-98.5 -295.5t-264.5 -102.5t-264 102.5t-98 295.5zM303 1055q0 -104 36 -152.5t95 -48.5q57 0 94 48.5t37 152.5t-36.5 151t-94.5 47q-59 0 -95 -47t-36 -151zM395 0l801 1419h285l-801 -1419h-285zM1083 365 q0 193 98.5 295t264.5 102t264 -102t98 -295t-98 -295.5t-264 -102.5t-264.5 102.5t-98.5 295.5zM1315 365q0 -104 35.5 -152.5t95.5 -48.5q57 0 94 48.5t37 152.5t-37 151t-94 47q-59 0 -95 -47t-36 -151z" />
<glyph unicode="&#x26;" horiz-adv-x="1443" d="M72 377q0 78 22.5 142.5t60.5 116.5t88 92t105 71q-49 59 -88 127.5t-39 150.5q0 180 108.5 277.5t299.5 97.5q96 0 167.5 -25.5t120 -69.5t73 -102.5t24.5 -126.5q0 -125 -71 -222t-179 -163l229 -229q18 41 36 103.5t22 109.5l254 -33q-4 -39 -14.5 -85t-26 -93 t-35 -94t-41.5 -86q66 -74 128 -161t107 -175h-313q-16 27 -45 66.5t-57 68.5q-82 -66 -190.5 -109.5t-244.5 -43.5q-143 0 -239 35.5t-154.5 92t-83 127t-24.5 140.5zM356 408q0 -31 12.5 -64t40 -60.5t70.5 -45t105 -17.5q86 0 150.5 22.5t107.5 59.5l-328 330 q-29 -14 -56.5 -34.5t-50 -48.5t-37 -62.5t-14.5 -79.5zM483 1092q0 -53 31 -103.5t80 -95.5q66 37 113 88t47 133q0 47 -31 84t-102 37q-66 0 -102 -40t-36 -103z" />
<glyph unicode="'" horiz-adv-x="505" d="M102 1407v149h301v-151q0 -98 -15 -215t-34 -236h-202q-23 119 -36.5 236t-13.5 217z" />
<glyph unicode="(" horiz-adv-x="729" d="M143 612q0 285 94.5 537t268.5 455l213 -138q-123 -174 -199 -393t-76 -461t76 -461t199 -393l-213 -137q-174 203 -268.5 455t-94.5 536z" />
<glyph unicode=")" horiz-adv-x="729" d="M10 -242q123 174 199 393t76 461t-76 461t-199 393l213 138q174 -203 268.5 -455t94.5 -537t-94.5 -536.5t-268.5 -454.5z" />
<glyph unicode="*" horiz-adv-x="1028" d="M82 1008l82 254l49 -17q25 -8 57.5 -25.5t64.5 -39t61.5 -43t52.5 -39.5q-10 27 -21.5 62.5t-22 72.5t-17.5 72.5t-7 62.5v51h266v-51q0 -27 -7 -62.5t-17.5 -72.5t-21.5 -72.5t-21 -62.5q20 18 51 39.5t62.5 43t64.5 39t57 25.5l49 17l82 -254l-49 -17q-27 -8 -61.5 -12 t-73.5 -5t-76 -1h-65q25 -16 54.5 -38t59 -45.5t56 -48t43.5 -46.5l32 -43l-217 -154l-31 41q-16 20 -31.5 53t-29.5 69t-24.5 70.5t-18.5 63.5q-8 -29 -18.5 -63.5t-24.5 -70.5t-29.5 -69t-31.5 -53l-31 -41l-217 154l33 43q16 23 42.5 47t56.5 47.5t59.5 45t54.5 38.5h-66 t-76 1t-73.5 5t-61.5 12z" />
<glyph unicode="+" d="M100 483v256h342v379h279v-379h342v-256h-342v-379h-279v379h-342z" />
<glyph unicode="," horiz-adv-x="503" d="M35 -274q47 135 65.5 253.5t18.5 196.5q0 12 -1 31.5t-2 40t-2 39t-1 24.5h319q4 -49 5 -69.5t1 -34.5q0 -61 -11 -130t-31.5 -138.5t-51.5 -139t-70 -133.5z" />
<glyph unicode="-" horiz-adv-x="696" d="M51 473v277h594v-277h-594z" />
<glyph unicode="." horiz-adv-x="503" d="M61 162q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5z" />
<glyph unicode="/" horiz-adv-x="894" d="M-51 -379l688 1983h309l-684 -1983h-313z" />
<glyph unicode="0" d="M70 713q0 178 35.5 315t103 231.5t162 143.5t211.5 49q240 0 376 -191.5t136 -547.5q0 -358 -136.5 -550t-375.5 -192q-240 0 -376 191.5t-136 550.5zM381 713q0 -106 10 -194.5t34 -152t61.5 -98.5t95.5 -35q57 0 96 35t61.5 98.5t32.5 152t10 194.5t-10 193 t-32.5 150.5t-61.5 98.5t-96 35t-95 -35t-62 -98.5t-34 -150.5t-10 -193z" />
<glyph unicode="1" d="M143 1124q59 25 124 56.5t126.5 69.5t117.5 80t101 89h213v-1419h-305v1022q-61 -41 -137 -75t-147 -58z" />
<glyph unicode="2" d="M72 1260q90 84 209.5 138t257.5 54q125 0 215 -28.5t148.5 -81t86 -127t27.5 -168.5q0 -78 -31 -150t-80 -138.5t-110.5 -128t-120.5 -116.5q-31 -29 -67 -64.5t-68.5 -72.5t-58 -69t-31.5 -52h610v-256h-946q-4 23 -4 57.5v48.5q0 98 31.5 180.5t82.5 153t115.5 132 t128.5 122.5q49 47 92 89t76 82t51.5 80t18.5 81q0 90 -51.5 127t-127.5 37q-55 0 -103 -17.5t-88 -41t-68.5 -47t-43.5 -37.5z" />
<glyph unicode="3" d="M53 49l60 254q53 -23 136 -48.5t206 -25.5q141 0 206.5 53.5t65.5 143.5q0 55 -23.5 93t-64.5 61.5t-97.5 33t-119.5 9.5h-119v245h135q45 0 87 8.5t75 28t52.5 53t19.5 84.5q0 39 -16.5 68t-42 47.5t-59.5 27.5t-69 9q-88 0 -162.5 -26.5t-136.5 -65.5l-108 223 q33 20 77 43t97 41t113.5 30.5t128.5 12.5q125 0 216 -29.5t150.5 -84t88 -127t28.5 -158.5q0 -84 -47 -163t-127 -120q111 -45 171 -134t60 -214q0 -98 -32.5 -181t-102.5 -143.5t-177.5 -94.5t-254.5 -34q-55 0 -116.5 7.5t-119 19.5t-104.5 26.5t-74 26.5z" />
<glyph unicode="4" d="M41 317v224q45 90 112.5 203.5t150.5 233.5t175 234.5t185 206.5h288v-852h152v-250h-152v-317h-299v317h-612zM332 567h321v480q-80 -104 -170 -227.5t-151 -252.5z" />
<glyph unicode="5" d="M78 43l55 252q51 -23 135 -44.5t201 -21.5q141 0 204.5 56.5t63.5 132.5q0 59 -26.5 105t-92 77t-176 47.5t-278.5 16.5q23 190 37 386.5t22 368.5h768v-256h-512q-4 -74 -9 -142.5t-11 -119.5q299 -20 441 -140t142 -333q0 -98 -34.5 -182t-104 -145.5t-175 -96.5 t-247.5 -35q-55 0 -115.5 7.5t-116.5 18.5t-101.5 23.5t-69.5 24.5z" />
<glyph unicode="6" d="M76 580q0 205 63.5 362.5t181 265t284.5 163.5t376 59q4 -63 8 -124t8 -126q-104 -2 -195 -19.5t-166 -54.5t-130 -95.5t-86 -142.5q45 20 92 28.5t88 8.5q133 0 226.5 -35.5t152.5 -97t86 -143.5t27 -174q0 -82 -30 -168t-90.5 -156t-153.5 -115t-220 -45 q-256 0 -389 162t-133 447zM383 584q0 -74 10 -139.5t35 -114.5t66 -77t102 -28q51 0 87 21.5t59.5 54.5t34.5 73t11 77q0 104 -52 160.5t-175 56.5q-45 0 -96 -8.5t-80 -22.5q0 -8 -1 -24.5t-1 -28.5z" />
<glyph unicode="7" d="M88 1161v260h993v-221q-66 -72 -144.5 -199t-149 -287.5t-123 -345t-64.5 -368.5h-309q12 150 51 311.5t95.5 317t126 294t141.5 238.5h-617z" />
<glyph unicode="8" d="M80 371q0 61 16.5 112.5t45 93t64.5 76.5t77 66q-88 72 -130 141.5t-42 177.5q0 82 33.5 158t95 132t148.5 90t194 34q125 0 214 -36t146 -91t83 -123.5t26 -136.5q0 -98 -52.5 -183t-130.5 -134q117 -76 167 -159t50 -194q0 -92 -31.5 -168.5t-95 -134t-158.5 -89.5 t-220 -32q-143 0 -238.5 40t-154 99.5t-83 130t-24.5 130.5zM377 383q0 -25 11 -54.5t36 -54t63.5 -41t94.5 -16.5q106 0 155 51t49 115q0 47 -21.5 84t-58 64.5t-87 49t-107.5 40.5q-57 -43 -96 -100.5t-39 -137.5zM408 1053q0 -66 48 -123.5t165 -98.5q66 41 100.5 94.5 t34.5 131.5q0 23 -9.5 48t-31 48t-54 38t-79.5 15q-45 0 -78 -14t-54.5 -38t-31.5 -50.5t-10 -50.5z" />
<glyph unicode="9" d="M57 967q0 82 28 168t87 156.5t150.5 116.5t220.5 46q264 0 398 -163t134 -468q0 -201 -52 -354.5t-161.5 -258t-279.5 -158.5t-404 -56q-2 66 -6 127t-8 127q117 2 211 17.5t165.5 51t121.5 95t79 149.5q-43 -20 -95 -29.5t-89 -9.5q-133 0 -227 32t-154.5 90.5 t-89.5 140t-29 180.5zM360 979q0 -111 54.5 -164t177.5 -53q47 0 98 9t76 26v18q0 8 1 16.5t1 14.5q-2 74 -12.5 138.5t-35 112.5t-66.5 75.5t-103 27.5q-49 0 -86 -20.5t-59.5 -53t-34 -71.5t-11.5 -76z" />
<glyph unicode=":" horiz-adv-x="503" d="M61 162q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5zM61 889q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5z" />
<glyph unicode=";" horiz-adv-x="503" d="M35 -274q47 135 65.5 253.5t18.5 196.5q0 12 -1 31.5t-2 40t-2 39t-1 24.5h319q4 -49 5 -69.5t1 -34.5q0 -61 -11 -130t-31.5 -138.5t-51.5 -139t-70 -133.5zM61 889q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5z" />
<glyph unicode="&#x3c;" d="M102 485v254l881 371l80 -248l-643 -250l643 -250l-80 -247z" />
<glyph unicode="=" d="M100 258v256h963v-256h-963zM100 707v256h963v-256h-963z" />
<glyph unicode="&#x3e;" d="M100 362l643 250l-643 250l80 248l881 -371v-254l-881 -370z" />
<glyph unicode="?" horiz-adv-x="931" d="M41 1346q80 51 188.5 78.5t212.5 27.5q131 0 216 -35t134.5 -88t69 -116.5t19.5 -120.5t-17.5 -105.5t-44 -89.5t-61.5 -78t-68 -69q-25 -25 -51.5 -52.5t-48 -58.5t-35.5 -64.5t-14 -68.5v-24.5t2 -28.5h-271q-4 20 -5 45.5t-1 44.5q0 57 14.5 103t38 86t54 75t63.5 67 q47 47 86 93.5t39 105.5q0 49 -37.5 84t-111.5 35t-139.5 -18.5t-145.5 -59.5zM221 162q0 90 58.5 139t132.5 49t132 -49t58 -139t-58.5 -139.5t-131.5 -49.5q-74 0 -132.5 49.5t-58.5 139.5z" />
<glyph unicode="@" horiz-adv-x="1994" d="M102 557q0 227 78 398t205 286t290 172t335 57q188 0 350 -52t279.5 -152.5t185 -249t67.5 -340.5q0 -150 -31.5 -265.5t-92 -193.5t-144.5 -119t-188 -41q-59 0 -119 14.5t-98 51.5q-90 -63 -228 -64q-102 0 -187 32t-145.5 95.5t-94.5 156.5t-34 216q0 104 34 194.5 t99.5 157t161 105.5t215.5 39q121 0 214.5 -21.5t154.5 -44.5v-643q0 -47 19.5 -63.5t56.5 -16.5q33 0 64.5 18.5t54 66.5t37 131t14.5 210t-44 232.5t-127 180.5t-203 117t-271 42q-145 0 -267 -49.5t-211.5 -140.5t-139.5 -222t-50 -295q0 -170 49 -298t140.5 -214 t221.5 -130t294 -44q102 0 193 13.5t153 25.5l30 -193q-51 -16 -155.5 -34.5t-220.5 -18.5q-197 0 -369 51.5t-300 160t-202 277.5t-74 404zM807 559q0 -59 10 -109.5t36 -87t69 -58t106 -21.5q37 0 70 5t49 13q-4 16 -6 48t-2 61v417q-41 8 -86 9q-68 0 -115 -21.5 t-75.5 -58.5t-42 -87.5t-13.5 -109.5z" />
<glyph unicode="A" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM530 561h404q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84 q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176z" />
<glyph unicode="B" horiz-adv-x="1376" d="M164 23v1376q98 18 215 27.5t217 9.5q135 0 248.5 -19.5t195.5 -66.5t128 -124t46 -190q0 -170 -163 -268q135 -51 184 -139t49 -199q0 -223 -162.5 -335.5t-484.5 -112.5q-117 0 -232.5 7t-240.5 34zM475 252q35 -4 76 -6t90 -2q143 0 231.5 41t88.5 151q0 98 -74 140 t-211 42h-201v-366zM475 862h156q147 0 210.5 38t63.5 122q0 86 -65.5 121t-192.5 35q-41 0 -88 -1t-84 -6v-309z" />
<glyph unicode="C" horiz-adv-x="1327" d="M102 711q0 176 55.5 314t152 233.5t229.5 144.5t288 49q90 0 164 -13.5t129.5 -30.5t92 -35.5t53.5 -29.5l-92 -258q-66 35 -153 59.5t-198 24.5q-74 0 -144.5 -24.5t-124.5 -78.5t-87 -140t-33 -209q0 -98 21.5 -183t69.5 -146.5t126 -97.5t189 -36q70 0 125 8t98 19.5 t75.5 26t59.5 26.5l88 -256q-68 -41 -190.5 -74t-284.5 -33q-346 0 -527.5 192.5t-181.5 547.5z" />
<glyph unicode="D" horiz-adv-x="1509" d="M164 18v1383q111 20 230.5 27.5t205.5 7.5q182 0 330.5 -41t255 -129t164 -225t57.5 -330q0 -184 -57.5 -321.5t-163 -227.5t-257 -135t-339.5 -45q-86 0 -201 7t-225 29zM483 260q23 -2 52.5 -3t70.5 -1q240 0 355.5 121t115.5 334q0 223 -110.5 337.5t-350.5 114.5 q-33 0 -67.5 -1t-65.5 -5v-897z" />
<glyph unicode="E" horiz-adv-x="1241" d="M164 0v1419h958v-268h-639v-279h568v-262h-568v-342h686v-268h-1005z" />
<glyph unicode="F" horiz-adv-x="1175" d="M164 0v1419h950v-268h-631v-297h561v-268h-561v-586h-319z" />
<glyph unicode="G" horiz-adv-x="1437" d="M102 711q0 178 55.5 315t152 232.5t226.5 144.5t277 49q100 0 181 -13.5t139.5 -30.5t96.5 -35.5t54 -29.5l-92 -256q-66 35 -151 61t-185 26q-223 0 -322.5 -124t-99.5 -339q0 -104 24.5 -189.5t74 -147t123 -95t171.5 -33.5q53 0 91 2t67 8v494h320v-703 q-57 -23 -184.5 -48.5t-313.5 -25.5q-160 0 -290 49.5t-222 143.5t-142.5 231.5t-50.5 313.5z" />
<glyph unicode="H" horiz-adv-x="1503" d="M164 0v1419h319v-542h537v542h319v-1419h-319v602h-537v-602h-319z" />
<glyph unicode="I" horiz-adv-x="647" d="M164 0v1419h319v-1419h-319z" />
<glyph unicode="J" horiz-adv-x="1083" d="M20 84l107 248q59 -35 127 -61.5t147 -26.5q117 0 168.5 57t51.5 193v925h319v-942q0 -104 -23.5 -196.5t-82 -161t-157.5 -108.5t-251 -40q-139 0 -239.5 34t-166.5 79z" />
<glyph unicode="K" horiz-adv-x="1400" d="M164 0v1419h319v-536q125 131 251 273t235 263h379q-145 -172 -292 -331.5t-308 -321.5q170 -141 328.5 -335.5t303.5 -430.5h-379q-43 70 -101 150.5t-126.5 161.5t-142.5 156t-148 132v-600h-319z" />
<glyph unicode="L" horiz-adv-x="1153" d="M164 0v1419h319v-1145h629v-274h-948z" />
<glyph unicode="M" horiz-adv-x="1837" d="M123 0q8 168 19.5 358.5t24.5 380t30.5 364.5t38.5 316h305q37 -68 85 -167t100 -214.5t103.5 -236.5t96.5 -228q45 106 96 227.5t103.5 237t100.5 215t85 166.5h291q20 -141 37.5 -316t30.5 -364.5t24.5 -380t19.5 -358.5h-311q-6 207 -16.5 450.5t-30.5 491.5 q-37 -86 -82 -190.5t-89 -209t-85 -199.5t-70 -163h-223q-29 68 -70 163t-85 199.5t-89 209t-82 190.5q-20 -248 -30.5 -491.5t-16.5 -450.5h-311z" />
<glyph unicode="N" horiz-adv-x="1548" d="M164 0v1419h260q68 -68 149.5 -166t166.5 -209.5t169 -231.5t158 -230v837h317v-1419h-268q-137 244 -297 481.5t-340 448.5v-930h-315z" />
<glyph unicode="O" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM432 711q0 -104 25.5 -188.5t74 -145t118 -93 t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187z" />
<glyph unicode="P" horiz-adv-x="1318" d="M164 0v1399q104 20 221 28.5t205 8.5q317 0 487 -112t170 -366q0 -256 -172 -369.5t-491 -113.5h-101v-475h-319zM483 748h101q166 0 250 45t84 168q0 59 -22 98t-61.5 62.5t-97 32.5t-127.5 9q-35 0 -68.5 -2t-58.5 -4v-409z" />
<glyph unicode="Q" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320q0 -150 -37 -269.5t-103.5 -210t-159 -149.5t-202.5 -86q10 -41 45 -66.5t88 -42t123.5 -24.5t152.5 -15l-65 -233q-160 6 -273.5 31.5t-192.5 70.5t-125 111 t-71 152q-127 16 -235.5 70t-188 146.5t-125 221.5t-45.5 293zM432 711q0 -104 25.5 -188.5t74 -145t118 -93t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187z " />
<glyph unicode="R" horiz-adv-x="1366" d="M164 0v1399q104 20 216 28.5t200 8.5q319 0 489 -114t170 -353q0 -150 -68.5 -243t-197.5 -146q43 -53 90 -122t93 -143.5t89 -155.5t80 -159h-358q-39 70 -79 141.5t-82 139t-83 128t-82 109.5h-158v-518h-319zM483 772h90q180 0 258 45t78 154q0 104 -78.5 148 t-232.5 44q-35 0 -62.5 -2t-52.5 -4v-385z" />
<glyph unicode="S" horiz-adv-x="1191" d="M76 80l90 254q63 -35 156.5 -62.5t228.5 -27.5q68 0 112 11t70.5 30.5t36.5 46t10 59.5q0 70 -65.5 116t-225.5 99q-70 25 -139 56.5t-124.5 80t-90.5 117t-35 166.5t37 177t104.5 134.5t164 85t217.5 29.5q143 0 247.5 -30.5t171.5 -67.5l-92 -252q-59 31 -132 54.5 t-175 23.5q-115 0 -165 -32t-50 -97q0 -39 18.5 -66t52 -48.5t78 -38.5t97.5 -36q111 -41 192.5 -81t136 -93t81 -124.5t26.5 -174.5q0 -199 -139.5 -308.5t-419.5 -109.5q-94 0 -170 11.5t-134.5 28t-100.5 34.5t-70 35z" />
<glyph unicode="T" horiz-adv-x="1257" d="M41 1147v272h1176v-272h-429v-1147h-319v1147h-428z" />
<glyph unicode="U" horiz-adv-x="1447" d="M143 537v882h320v-856q0 -86 19.5 -146.5t53 -98t82 -54t105.5 -16.5q117 0 189.5 71.5t72.5 243.5v856h320v-882q0 -125 -35 -229.5t-106.5 -179.5t-182 -116t-262.5 -41q-150 0 -258.5 42t-179 117t-104.5 178.5t-34 228.5z" />
<glyph unicode="V" horiz-adv-x="1478" d="M20 1419h353q41 -123 89 -265t98 -283.5t97.5 -270.5t87.5 -223q39 94 87.5 223t98.5 270.5t98 283.5t89 265h340q-47 -135 -108.5 -307t-135 -360.5t-155.5 -381t-166 -370.5h-307q-84 178 -166 370.5t-156 381t-136 360.5t-108 307z" />
<glyph unicode="W" horiz-adv-x="1941" d="M41 1419h346q20 -121 45 -251t51.5 -261t54 -254t56.5 -227q37 100 71.5 213t67.5 225.5t60.5 217t50.5 186.5h272q25 -84 54.5 -189.5t63.5 -218t68.5 -225.5t67.5 -209q27 104 54.5 227t52 254t48 261t44.5 251h332q-72 -356 -165.5 -722.5t-201.5 -696.5h-293 q-72 197 -139.5 413t-132.5 433q-66 -217 -131.5 -433t-137.5 -413h-292q-109 330 -202 696.5t-165 722.5z" />
<glyph unicode="X" horiz-adv-x="1382" d="M20 0q90 166 210 348t268 387l-457 684h387l277 -442l270 442h364l-450 -688q172 -223 288.5 -412.5t184.5 -318.5h-383q-59 119 -130 240.5t-163 248.5q-29 -37 -73 -102t-88 -139t-83 -141.5t-57 -106.5h-365z" />
<glyph unicode="Y" horiz-adv-x="1353" d="M10 1419h371q66 -147 141.5 -292.5t161.5 -290.5q86 145 164 290.5t143 292.5h352q-117 -229 -241.5 -444t-263.5 -432v-543h-320v539q-139 217 -265 434t-243 446z" />
<glyph unicode="Z" horiz-adv-x="1249" d="M72 0v190q57 104 140 232.5t173 258.5t183.5 252t172.5 218h-637v268h1061v-221q-66 -68 -155.5 -175.5t-186 -234t-190.5 -262t-168 -258.5h723v-268h-1116z" />
<glyph unicode="[" horiz-adv-x="759" d="M184 -379v1983h555v-244h-264v-1495h264v-244h-555z" />
<glyph unicode="\" horiz-adv-x="894" d="M-51 1604h309l688 -1983h-313z" />
<glyph unicode="]" horiz-adv-x="759" d="M20 -135h265v1495h-265v244h555v-1983h-555v244z" />
<glyph unicode="^" d="M37 717l424 710h241l424 -710l-256 -125l-288 502l-289 -502z" />
<glyph unicode="_" horiz-adv-x="1024" d="M0 -125h1024v-254h-1024v254z" />
<glyph unicode="`" horiz-adv-x="585" d="M41 1464l186 172l291 -331l-139 -125z" />
<glyph unicode="a" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5z" />
<glyph unicode="b" horiz-adv-x="1236" d="M143 35v1505l306 49v-536q51 23 106 35t119 12q115 0 203 -40t147 -114t90 -177t31 -230q0 -129 -38 -233.5t-109.5 -178.5t-176 -114t-237.5 -40q-55 0 -115.5 5.5t-119 13.5t-112 19.5t-94.5 23.5zM449 244q23 -4 57.5 -7.5t75.5 -3.5q125 0 188.5 86.5t63.5 227.5 q0 295 -218 295q-47 0 -93 -12.5t-74 -30.5v-555z" />
<glyph unicode="c" horiz-adv-x="1024" d="M92 539q0 117 38 220t109.5 180t174 122t233.5 45q86 0 158 -15.5t139 -43.5l-63 -244q-43 16 -94.5 28.5t-114.5 12.5q-135 0 -202 -84t-67 -221q0 -145 62.5 -225.5t218.5 -80.5q55 0 118.5 10.5t117.5 32.5l43 -249q-53 -23 -133 -39.5t-177 -16.5q-147 0 -253.5 44 t-175 120t-100.5 179.5t-32 224.5z" />
<glyph unicode="d" horiz-adv-x="1236" d="M92 532q0 131 33 236.5t94.5 179.5t150.5 113t203 39q63 0 113.5 -12.5t101.5 -34.5v487l306 49v-1554q-41 -12 -94.5 -23.5t-112 -19.5t-118.5 -13.5t-116 -5.5q-133 0 -237.5 39t-176 112t-109.5 176t-38 232zM403 547q0 -141 63.5 -227.5t188.5 -86.5q41 0 76 3.5 t57 7.5v555q-29 18 -74.5 30.5t-92.5 12.5q-218 0 -218 -295z" />
<glyph unicode="e" horiz-adv-x="1196" d="M92 530q0 143 44 251t116 179.5t165 108.5t191 37q229 0 362.5 -140.5t133.5 -412.5q0 -27 -2 -58.5t-4 -56.5h-692q10 -94 87.5 -149.5t208.5 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-90.5 -21.5t-107.5 -15.5t-114.5 -6.5q-145 0 -253 43 t-178.5 118t-104.5 177t-34 221zM406 647h403q-2 39 -13.5 76t-35 65.5t-59 47t-89.5 18.5q-51 0 -88 -17.5t-61.5 -46t-37.5 -66.5t-19 -77z" />
<glyph unicode="f" horiz-adv-x="864" d="M143 0v1135q0 209 118 331.5t349 122.5q86 0 158 -17.5t111 -33.5l-60 -244q-41 18 -89 27.5t-89 9.5q-55 0 -93 -15.5t-59.5 -42t-30.5 -63t-9 -80.5v-53h376v-254h-376v-823h-306z" />
<glyph unicode="g" horiz-adv-x="1216" d="M92 573q0 119 37 216.5t107.5 167t173 107.5t231.5 38q55 0 113.5 -5t116 -13.5t109.5 -19.5t93 -24v-905q0 -264 -134 -392t-415 -128q-98 0 -196.5 17.5t-182.5 45.5l54 256q72 -29 150.5 -45t178.5 -16q131 0 185.5 57.5t54.5 147.5v39q-49 -23 -101.5 -34t-113.5 -11 q-223 0 -342 132t-119 369zM403 573q0 -256 207 -256q47 0 88 12.5t70 28.5v488q-23 4 -53.5 7t-71.5 3q-121 0 -180.5 -80t-59.5 -203z" />
<glyph unicode="h" horiz-adv-x="1206" d="M143 0v1540l306 49v-516q31 10 78.5 19.5t93.5 9.5q131 0 218 -36t139 -101.5t73.5 -155.5t21.5 -201v-608h-305v571q0 147 -38 209t-140 62q-41 0 -77 -7.5t-64 -15.5v-819h-306z" />
<glyph unicode="i" horiz-adv-x="591" d="M113 1389q0 84 54 132t128 48t128 -48t54 -132t-54 -132.5t-128 -48.5t-128 48.5t-54 132.5zM143 0v1077h306v-1077h-306z" />
<glyph unicode="j" horiz-adv-x="591" d="M-147 -350l41 248q31 -10 56 -14.5t64 -4.5q72 0 100.5 43t28.5 125v1030h306v-1038q0 -213 -104.5 -315.5t-301.5 -102.5q-29 0 -85 6t-105 23zM113 1389q0 84 54 132t128 48t128 -48t54 -132t-54 -132.5t-128 -48.5t-128 48.5t-54 132.5z" />
<glyph unicode="k" horiz-adv-x="1185" d="M143 0v1540l306 49v-901q45 49 93 102.5t93 105.5t85 99t68 82h363q-109 -125 -212 -238.5t-226 -234.5q61 -55 126.5 -132t127 -159t112.5 -163.5t86 -149.5h-350q-33 53 -75 117.5t-89 129t-99 124t-103 100.5v-471h-306z" />
<glyph unicode="l" horiz-adv-x="647" d="M143 354v1186l306 49v-1173q0 -41 6 -74t23.5 -55.5t50 -36.5t87.5 -19l-43 -251q-133 2 -216 28.5t-131 74.5t-65.5 116.5t-17.5 154.5z" />
<glyph unicode="m" horiz-adv-x="1765" d="M143 0v1040q39 10 91.5 21.5t110.5 21t119.5 14.5t121.5 5q117 0 189.5 -30t119.5 -71q66 47 150.5 74t156.5 27q129 0 212 -36t132 -101.5t67.5 -155.5t18.5 -201v-608h-305v571q0 147 -38 209t-130 62q-25 0 -68.5 -12.5t-72.5 -30.5q14 -47 18 -99.5t4 -111.5v-588 h-305v571q0 147 -38 209t-130 62q-29 0 -59.5 -3t-58.5 -8v-831h-306z" />
<glyph unicode="n" horiz-adv-x="1206" d="M143 0v1040q78 23 201 42.5t258 19.5q137 0 228.5 -36t144.5 -101.5t75.5 -155.5t22.5 -201v-608h-305v571q0 147 -39 209t-145 62q-33 0 -70 -3t-65 -8v-831h-306z" />
<glyph unicode="o" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM403 541q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5 t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222z" />
<glyph unicode="p" horiz-adv-x="1236" d="M143 -379v1419q41 12 94.5 23.5t112 20t118.5 13.5t116 5q133 0 237.5 -40t176 -112.5t109.5 -177t38 -233.5q0 -125 -31 -227.5t-90 -176.5t-147.5 -114.5t-202.5 -40.5q-63 0 -118.5 12t-106.5 35v-406h-306zM449 281q29 -18 74.5 -30.5t92.5 -12.5h1q217 0 217 292 q0 141 -63.5 226.5t-188.5 85.5q-41 0 -76 -3t-57 -8v-550z" />
<glyph unicode="q" horiz-adv-x="1236" d="M92 539q0 125 38 228t109.5 178t176 116t237.5 41q55 0 115.5 -5t119 -13.5t112 -19.5t94.5 -24v-1419h-306v406q-51 -23 -106 -35t-119 -12q-229 0 -350 150.5t-121 408.5zM403 530q0 -292 217 -292h1q47 0 93 12t74 31v550q-23 4 -57.5 7.5t-75.5 3.5 q-125 0 -188.5 -85.5t-63.5 -226.5z" />
<glyph unicode="r" horiz-adv-x="864" d="M143 0v1020q82 29 194 54.5t249 25.5q25 0 59.5 -3t69.5 -8.5t69.5 -12.5t59.5 -17l-51 -252q-41 10 -96.5 21.5t-118.5 11.5q-29 0 -69 -5.5t-60 -11.5v-823h-306z" />
<glyph unicode="s" horiz-adv-x="993" d="M80 37l51 248q78 -31 160 -48.5t162 -17.5q84 0 118.5 16.5t34.5 63.5q0 37 -45 64.5t-137 62.5q-72 27 -130 55.5t-99 68.5t-63.5 95t-22.5 133q0 152 112.5 240t308.5 88q98 0 188.5 -17.5t143.5 -37.5l-53 -238q-53 18 -115.5 32.5t-140.5 14.5q-143 0 -143 -80 q0 -18 6 -32.5t24.5 -27.5t50 -28.5t80.5 -34.5q100 -37 166 -72.5t104 -77.5t53 -93.5t15 -118.5q0 -160 -119.5 -242t-338.5 -82q-143 0 -238.5 24.5t-132.5 41.5z" />
<glyph unicode="t" horiz-adv-x="909" d="M133 440v906l305 49v-318h367v-254h-367v-379q0 -96 34 -153.5t136 -57.5q49 0 101.5 9.5t95.5 25.5l43 -237q-55 -23 -123 -39.5t-166 -16.5q-125 0 -207 34t-131 94.5t-68.5 146.5t-19.5 190z" />
<glyph unicode="u" horiz-adv-x="1206" d="M133 477v600h305v-563q0 -147 39 -212.5t146 -65.5q33 0 69.5 3t65.5 7v831h305v-1040q-78 -23 -201 -42.5t-258 -19.5q-137 0 -228 37t-144.5 103.5t-76 159t-22.5 202.5z" />
<glyph unicode="v" horiz-adv-x="1126" d="M20 1077h324q20 -80 48 -173t57.5 -188t59.5 -185.5t58 -163.5q27 74 57.5 164t60.5 185t57.5 188t48.5 173h315q-96 -324 -203.5 -598t-212.5 -479h-254q-104 205 -211.5 479.5t-204.5 597.5z" />
<glyph unicode="w" horiz-adv-x="1605" d="M20 1077h322q16 -74 35.5 -161t41 -179t45 -185t48.5 -179q27 90 52.5 184t49 185.5t45 176.5t37.5 158h222q16 -74 36.5 -158.5t43 -176t47 -185.5t51.5 -184q25 86 49 179t45.5 185t41 179.5t36.5 160.5h317q-45 -160 -93 -316.5t-94 -296.5t-90 -259t-81 -205h-238 q-51 156 -100 309t-90 309q-41 -156 -87 -309t-98 -309h-237q-37 86 -80 205t-89 259t-94 297t-94 316z" />
<glyph unicode="x" horiz-adv-x="1134" d="M20 0q25 51 68 120.5t93 144.5t105.5 149.5t108.5 140.5q-92 129 -184 261t-182 261h329l213 -327l213 327h316l-369 -518q123 -154 223.5 -299t159.5 -260h-328q-16 31 -40.5 77t-55.5 96t-64.5 100.5t-66.5 91.5q-31 -39 -62.5 -86.5t-60 -95.5t-56.5 -95t-48 -88h-312 z" />
<glyph unicode="y" horiz-adv-x="1120" d="M10 -336l53 244q47 -16 84 -22.5t78 -6.5q82 0 126 44t75 122q-104 205 -208.5 460t-197.5 572h324q20 -80 48 -173t58.5 -188t62.5 -185.5t60 -163.5q27 74 55.5 164t56.5 185t53.5 188t45.5 173h316q-92 -311 -192.5 -583.5t-219.5 -528.5q-43 -92 -86 -156.5 t-94 -106.5t-115.5 -61.5t-150.5 -19.5q-72 0 -132.5 13.5t-99.5 29.5z" />
<glyph unicode="z" horiz-adv-x="1024" d="M72 0v180q43 74 103.5 159t127 171t132 167t120.5 146h-459v254h856v-205q-37 -41 -99 -110.5t-134 -153.5t-144.5 -176t-132.5 -178h521v-254h-891z" />
<glyph unicode="{" horiz-adv-x="759" d="M72 492v241q92 0 133 53.5t41 139.5v309q0 88 22.5 156.5t74.5 115.5t139 72t216 25h41v-244h-51q-92 0 -124 -41t-32 -127v-272q0 -106 -28.5 -180t-114.5 -128q86 -53 114.5 -126.5t28.5 -180.5v-272q0 -86 32 -127t124 -41h51v-244h-41q-129 0 -216 24.5t-139 71.5 t-74.5 116t-22.5 157v309q0 86 -41 139.5t-133 53.5z" />
<glyph unicode="|" horiz-adv-x="659" d="M184 -379v1983h291v-1983h-291z" />
<glyph unicode="}" horiz-adv-x="759" d="M20 -135h52q92 0 123.5 41t31.5 127v272q0 106 29 180t115 127q-86 53 -115 127t-29 181v272q0 86 -31.5 127t-123.5 41h-52v244h41q129 0 216.5 -25t139.5 -72t74.5 -115.5t22.5 -156.5v-309q0 -86 41 -139.5t133 -53.5v-241q-92 0 -133 -53.5t-41 -139.5v-309 q0 -88 -22.5 -157t-74.5 -116t-139.5 -71.5t-216.5 -24.5h-41v244z" />
<glyph unicode="~" d="M47 465q10 57 32.5 120.5t60.5 117t95.5 88t137.5 34.5q61 0 115.5 -24.5t104.5 -53t96 -53t91 -24.5q16 0 33.5 4t34 19.5t32 45t27.5 80.5l209 -57q-10 -57 -32.5 -120.5t-61.5 -117t-95 -88.5t-136 -35q-61 0 -115.5 25t-105 53.5t-96.5 53t-91 24.5q-16 0 -33.5 -4 t-34 -19.5t-32 -45t-27.5 -80.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="585" d="M102 889q0 90 58.5 139t132.5 49t132 -49t58 -139t-58 -139.5t-132 -49.5t-132.5 49.5t-58.5 139.5zM131 8q0 166 13.5 309.5t33.5 290.5h234q20 -147 32.5 -290.5t12.5 -309.5v-377h-326v377z" />
<glyph unicode="&#xa2;" d="M92 600q0 90 24.5 173t73 150.5t116 118t153.5 76.5v299h291v-276q53 -8 101 -20.5t95 -33.5l-67 -243q-43 16 -93.5 28.5t-113.5 12.5q-129 0 -199 -77t-70 -208q0 -139 66 -212t215 -73q55 0 118.5 10.5t117.5 32.5l43 -249q-41 -16 -94.5 -29.5t-118.5 -22.5v-280 h-291v299q-188 51 -277.5 192.5t-89.5 331.5z" />
<glyph unicode="&#xa3;" d="M47 559v248h178v108q0 154 37 255.5t101.5 163t154.5 87t197 25.5q82 0 153.5 -16.5t139.5 -45.5l-76 -239q-47 23 -89 33t-102 12q-49 0 -89 -10.5t-68.5 -39t-45 -77.5t-16.5 -123v-133h340v-248h-340q-2 -72 -9 -153.5t-17 -149.5h534v-256h-870q37 164 49 303t16 256 h-178z" />
<glyph unicode="&#xa4;" d="M51 385l148 141q-43 80 -43 185q0 104 43 184l-148 141l193 189l151 -148q43 20 88.5 28.5t98.5 8.5q51 0 97 -8t91 -29l152 146l190 -187l-147 -141q43 -80 43 -184t-43 -185l147 -141l-192 -188l-152 147q-43 -20 -88 -28.5t-98 -8.5q-51 0 -97.5 8.5t-91.5 28.5 l-151 -145zM414 711q0 -88 49 -133.5t119 -45.5t119 45.5t49 133.5t-49.5 133t-118.5 45q-70 0 -119 -45t-49 -133z" />
<glyph unicode="&#xa5;" d="M-10 1419h348q63 -141 121.5 -283.5t128.5 -277.5q68 135 123 279.5t116 281.5h347q-78 -158 -161 -322.5t-177 -330.5h204v-203h-303v-133h303v-203h-303v-227h-309v227h-303v203h303v133h-303v203h205q-43 78 -90 164t-92.5 172t-86.5 168t-71 149z" />
<glyph unicode="&#xa6;" horiz-adv-x="618" d="M164 -379v813h291v-813h-291zM164 791v813h291v-813h-291z" />
<glyph unicode="&#xa7;" horiz-adv-x="1054" d="M57 -133l76 244q47 -18 89 -33t84 -24t87 -14t101 -5q76 0 114.5 17.5t38.5 60.5q0 20 -8 35.5t-29.5 30t-57.5 28.5t-91 33q-80 27 -150.5 56.5t-123 73.5t-82 106.5t-29.5 154.5q0 96 46 161.5t111 129.5q-98 82 -98 196q0 158 116 246t333 88q94 0 193.5 -20.5 t178.5 -53.5l-75 -245q-66 29 -136.5 45t-162.5 16q-78 0 -110 -17.5t-32 -52.5q0 -43 35 -68.5t127 -56.5q90 -31 162 -63.5t121 -75.5t75.5 -102.5t26.5 -143.5q0 -45 -10 -80.5t-29.5 -66.5t-48.5 -60.5t-63 -60.5q63 -47 89.5 -103.5t26.5 -131.5q0 -334 -442 -334 q-158 0 -269.5 26.5t-183.5 63.5zM350 653q0 -78 68.5 -118.5t210.5 -88.5q33 29 54.5 64t21.5 70q0 39 -17.5 66.5t-51.5 51t-87 43.5t-123 45q-33 -29 -54.5 -63.5t-21.5 -69.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="1097" d="M162 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM618 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xa9;" horiz-adv-x="1630" d="M102 711q0 174 58.5 312t157 233.5t227.5 145.5t270 50t270 -50t227.5 -145.5t157 -233.5t58.5 -312t-58.5 -312.5t-157 -233.5t-227.5 -145.5t-270 -50.5t-270 50.5t-227.5 145.5t-157 233.5t-58.5 312.5zM311 711q0 -123 37 -223.5t103.5 -172t160 -110.5t203.5 -39 q111 0 204 39t159.5 110.5t103.5 172t37 223.5t-37 223t-103.5 172t-159.5 110.5t-204 38.5t-204 -38.5t-159.5 -110.5t-103.5 -172t-37 -223zM473 715q0 184 101.5 284.5t267.5 100.5q98 0 158.5 -26.5t82.5 -39.5l-65 -180q-29 16 -64.5 27.5t-93.5 11.5q-68 0 -108.5 -43 t-40.5 -125q0 -37 6 -70.5t22.5 -59.5t45 -42t75.5 -16q61 0 102.5 14t73.5 27l58 -187q-27 -14 -90.5 -38.5t-155.5 -24.5q-182 0 -278.5 100t-96.5 287z" />
<glyph unicode="&#xaa;" horiz-adv-x="817" d="M49 889q0 70 27.5 116t74 74.5t109 41t129.5 12.5q41 0 75 -4.5t56 -8.5v21q0 57 -34.5 89t-118.5 32q-57 0 -114.5 -8.5t-98.5 -22.5l-31 182q39 12 115.5 24.5t152.5 12.5q98 0 165 -21.5t108 -62.5t58 -98.5t17 -130.5v-465q-47 -10 -136 -25.5t-208 -15.5 q-162 0 -254 57t-92 201zM279 895q0 -53 36 -71.5t95 -18.5q33 0 62.5 2t47.5 4v160q-14 4 -40.5 7t-49.5 3q-61 0 -106 -16.5t-45 -69.5z" />
<glyph unicode="&#xab;" horiz-adv-x="1222" d="M41 582l336 491l231 -108l-207 -383l207 -383l-231 -109zM594 582l336 491l231 -108l-207 -383l207 -383l-231 -109z" />
<glyph unicode="&#xac;" d="M102 575v256h963v-735h-279v479h-684z" />
<glyph unicode="&#xad;" horiz-adv-x="696" d="M51 473v277h594v-277h-594z" />
<glyph unicode="&#xae;" horiz-adv-x="1630" d="M102 711q0 174 58.5 312t157 233.5t227.5 145.5t270 50t270 -50t227.5 -145.5t157 -233.5t58.5 -312q0 -176 -58.5 -313.5t-157 -232.5t-227.5 -145.5t-270 -50.5t-270 50.5t-227.5 145.5t-157 232.5t-58.5 313.5zM311 711q0 -123 37 -223.5t103.5 -172t160 -110.5 t203.5 -39q111 0 204 39t159.5 110.5t103.5 172t37 223.5t-37 223t-103.5 172t-159.5 110.5t-204 38.5t-204 -38.5t-159.5 -110.5t-103.5 -172t-37 -223zM545 362v701q70 16 130 23.5t105 7.5q330 0 330 -248q0 -127 -111 -187q23 -35 40.5 -66.5t35 -65t34.5 -73.5t40 -92 h-209q-35 78 -59.5 136.5t-55.5 105.5h-82v-242h-198zM743 764h37q66 0 98.5 17.5t32.5 66.5q0 41 -28.5 57.5t-83.5 16.5q-14 0 -29.5 -1t-26.5 -3v-154z" />
<glyph unicode="&#xaf;" horiz-adv-x="770" d="M55 1276v209h660v-209h-660z" />
<glyph unicode="&#xb0;" horiz-adv-x="743" d="M41 1282q0 74 26.5 132.5t71.5 100t105.5 63t126.5 21.5t126 -21.5t105 -63t71.5 -100t26.5 -132.5t-26.5 -132t-71.5 -100t-105.5 -63.5t-125.5 -21.5q-66 0 -126.5 21.5t-105.5 63.5t-71.5 100t-26.5 132zM258 1282q0 -53 35 -85t78 -32t77.5 32t34.5 85t-34.5 85 t-77.5 32t-78 -32t-35 -85z" />
<glyph unicode="&#xb1;" d="M100 0v256h963v-256h-963zM100 676v256h342v348h279v-348h342v-256h-342v-348h-279v348h-342z" />
<glyph unicode="&#xb2;" horiz-adv-x="743" d="M33 1331q53 45 136 83t175 38q80 0 136.5 -18.5t91 -52t51 -80t16.5 -101.5q0 -45 -14.5 -82t-38 -68.5t-54 -59t-61.5 -54.5q-35 -29 -72 -64.5t-59 -66.5h319v-187h-587q-2 16 -2 30v28q0 100 54 181t159 169q55 47 89 82t34 72q0 31 -18.5 49t-53.5 18 q-59 0 -109.5 -23.5t-85.5 -52.5z" />
<glyph unicode="&#xb3;" horiz-adv-x="743" d="M35 657l47 183q70 -29 118 -37t105 -8q72 0 100.5 21.5t28.5 53.5q0 84 -143 84h-84v168h84q47 0 77.5 18.5t30.5 55.5q0 66 -90 66q-47 0 -94 -15.5t-90 -36.5l-78 162q51 33 128 56.5t151 23.5q82 0 138 -18.5t90 -50t48 -73.5t14 -87q0 -43 -19 -82t-67 -76 q66 -31 95.5 -82t29.5 -115q0 -55 -18.5 -104t-59 -85t-107.5 -56.5t-163 -20.5q-35 0 -72.5 4t-74.5 12.5t-69 17.5t-56 21z" />
<glyph unicode="&#xb4;" horiz-adv-x="585" d="M53 1305l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xb5;" horiz-adv-x="1216" d="M143 -340v1417h306v-577q0 -78 11 -129.5t34.5 -81t58.5 -41.5t82 -12q33 0 68.5 3t64.5 7v831h305v-1040q-80 -23 -191.5 -40t-240.5 -17q-53 0 -108.5 10t-94.5 28q4 -41 7.5 -82.5t3.5 -117.5v-158h-306z" />
<glyph unicode="&#xb6;" horiz-adv-x="1454" d="M82 975q0 223 175 342t505 119q63 0 134 -4.5t140.5 -10.5t135 -16t118.5 -23v-1763h-289v1557q-29 4 -82 6t-98 2v-1565h-291v909q-229 31 -338.5 136.5t-109.5 310.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="503" d="M61 604q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5z" />
<glyph unicode="&#xb8;" horiz-adv-x="667" d="M92 -426l37 178q14 -4 52 -13t75 -9q29 0 50.5 11t23.5 40q2 25 -19.5 45t-68.5 31l-25 6q6 20 17.5 47t23.5 52.5t22.5 47t16.5 31.5h203q-12 -23 -31 -60.5t-29 -62.5q66 -33 90.5 -78t24.5 -92q0 -98 -77 -149.5t-206 -51.5q-45 0 -90 7.5t-90 19.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="743" d="M78 1266q86 35 167 79t140 91h178v-818h-233v553q-41 -23 -84 -42t-105 -42z" />
<glyph unicode="&#xba;" horiz-adv-x="935" d="M68 1036q0 98 29.5 175t82.5 130.5t127 82t162 28.5t162 -28.5t126 -82t81.5 -130.5t29.5 -175q0 -96 -29.5 -172t-81.5 -128t-126 -80.5t-162 -28.5t-162 28.5t-127 80.5t-82.5 128t-29.5 172zM301 1036q0 -92 44 -148.5t124 -56.5t123 56.5t43 148.5q0 98 -43 154.5 t-123 56.5q-78 0 -123 -56t-45 -155z" />
<glyph unicode="&#xbb;" horiz-adv-x="1222" d="M61 199l207 383l-207 383l232 108l336 -491l-336 -492zM614 199l207 383l-207 383l232 108l336 -491l-336 -492z" />
<glyph unicode="&#xbc;" horiz-adv-x="1798" d="M41 1266q86 35 167 79t140 91h178v-818h-233v553q-41 -23 -84 -42t-105 -42zM379 0l731 1419h279l-728 -1419h-282zM1096 179v147q86 145 175 263t198 233h202v-473h95v-170h-95v-177h-192v177h-383zM1311 349h168v245q-47 -53 -89 -113.5t-79 -131.5z" />
<glyph unicode="&#xbd;" horiz-adv-x="1798" d="M41 1266q86 35 167 79t140 91h178v-818h-233v553q-41 -23 -84 -42t-105 -42zM322 0l731 1419h279l-728 -1419h-282zM1088 717q53 45 136 83t175 38q80 0 136.5 -18.5t91 -52t51 -80t16.5 -101.5q0 -45 -14.5 -82t-38 -68.5t-54 -59t-61.5 -54.5q-35 -29 -72 -64.5 t-59 -66.5h319v-187h-587q-2 16 -2 30v28q0 100 54 181t159 169q55 47 89 82t34 72q0 31 -18.5 49t-53.5 18q-59 0 -109.5 -23.5t-85.5 -52.5z" />
<glyph unicode="&#xbe;" horiz-adv-x="1798" d="M47 657l47 183q70 -29 118 -37t105 -8q72 0 100.5 21.5t28.5 53.5q0 84 -143 84h-84v168h84q47 0 77.5 18.5t30.5 55.5q0 66 -90 66q-47 0 -94 -15.5t-90 -36.5l-78 162q51 33 128 56.5t151 23.5q82 0 138 -18.5t90 -50t48 -73.5t14 -87q0 -43 -19 -82t-67 -76 q66 -31 95.5 -82t29.5 -115q0 -55 -18.5 -104t-59 -85t-107.5 -56.5t-163 -20.5q-35 0 -72.5 4t-74.5 12.5t-69 17.5t-56 21zM422 0l731 1419h279l-728 -1419h-282zM1096 179v147q86 145 175 263t198 233h202v-473h95v-170h-95v-177h-192v177h-383zM1311 349h168v245 q-47 -53 -89 -113.5t-79 -131.5z" />
<glyph unicode="&#xbf;" horiz-adv-x="931" d="M51 -43q0 57 17.5 105.5t44 89.5t60.5 77.5t69 69.5q25 25 51 52.5t47.5 58t36 64.5t14.5 69v24.5t-2 28.5h270q4 -20 5.5 -46t1.5 -44q0 -57 -14.5 -104.5t-38 -87.5t-54.5 -73.5t-63 -66.5q-47 -47 -86 -93t-39 -106q0 -49 37.5 -83.5t111.5 -34.5t139.5 18.5 t145.5 58.5l86 -231q-80 -51 -188.5 -78.5t-213.5 -27.5q-131 0 -216 34.5t-134 88t-68.5 117t-19.5 120.5zM330 887q0 90 58 139t132 49t132.5 -49t58.5 -139t-58.5 -139.5t-132.5 -49.5t-132 49.5t-58 139.5z" />
<glyph unicode="&#xc0;" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM485 1792l186 172l291 -331l-139 -125zM530 561h404 q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176z" />
<glyph unicode="&#xc1;" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM497 1633l291 331l186 -172l-337 -284zM530 561h404 q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176z" />
<glyph unicode="&#xc2;" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM416 1661l322 281l317 -281l-113 -135l-204 157l-205 -157z M530 561h404q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176z" />
<glyph unicode="&#xc3;" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM364 1659q12 31 33.5 68t52.5 68.5t70 52t86 20.5 q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5zM530 561h404q-33 92 -63.5 176t-58.5 154 t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176z" />
<glyph unicode="&#xc4;" horiz-adv-x="1476" d="M20 0q80 229 152 423.5t140.5 367t135 327t138.5 301.5h305q70 -147 137.5 -301.5t136 -327t140 -367t151.5 -423.5h-342q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM338 1717q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113 q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM530 561h404q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176zM794 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42 t-47.5 114z" />
<glyph unicode="&#xc5;" horiz-adv-x="1476" d="M20 0q78 223 148 414.5t137.5 360.5t133 320.5t134.5 297.5q-35 31 -55 74.5t-20 103.5q0 57 19.5 101t53 74t76.5 45t90 15q49 0 93 -15t78 -45t53.5 -74t19.5 -101q0 -59 -21.5 -104.5t-56.5 -73.5q68 -145 134.5 -297t133 -321t137 -360.5t148.5 -414.5h-342 q-23 74 -50.5 151.5t-53.5 155.5h-553q-27 -78 -54.5 -155.5t-50.5 -151.5h-332zM530 561h404q-33 92 -63.5 176t-58.5 154t-48.5 123t-32.5 84q-10 -31 -30.5 -84t-47 -123t-58.5 -154t-65 -176zM645 1571q0 -47 28.5 -71.5t63.5 -24.5q37 0 65.5 24.5t28.5 71.5 t-28.5 71.5t-65.5 24.5q-35 0 -63.5 -24.5t-28.5 -71.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="2035" d="M20 0q250 449 465 800t408 619h1024v-268h-604v-279h532v-262h-532v-342h651v-268h-960v336h-451q-43 -78 -94 -168t-88 -168h-351zM682 590h322v520q-33 -47 -74 -112.5t-85 -136t-86 -142.5t-77 -129z" />
<glyph unicode="&#xc7;" horiz-adv-x="1327" d="M102 711q0 176 55.5 314t152 233.5t229.5 144.5t288 49q90 0 164 -13.5t129.5 -30.5t92 -35.5t53.5 -29.5l-92 -258q-66 35 -153 59.5t-198 24.5q-74 0 -144.5 -24.5t-124.5 -78.5t-87 -140t-33 -209q0 -98 21.5 -183t69.5 -146.5t126 -97.5t189 -36q70 0 125 8t98 19.5 t75.5 26t59.5 26.5l88 -256q-59 -37 -162.5 -67t-238.5 -38q-8 -16 -14.5 -30.5t-10.5 -24.5q66 -33 90.5 -78t24.5 -92q0 -98 -78 -149.5t-205 -51.5q-45 0 -90 7.5t-90 19.5l37 178q14 -4 52 -13t75 -9q29 0 50.5 11t23.5 40q2 25 -19.5 45t-68.5 31l-25 6q8 25 21.5 56.5 t25.5 60.5q-287 35 -434.5 222t-147.5 509z" />
<glyph unicode="&#xc8;" horiz-adv-x="1241" d="M164 0v1419h958v-268h-639v-279h568v-262h-568v-342h686v-268h-1005zM391 1792l186 172l291 -331l-139 -125z" />
<glyph unicode="&#xc9;" horiz-adv-x="1241" d="M164 0v1419h958v-268h-639v-279h568v-262h-568v-342h686v-268h-1005zM424 1633l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xca;" horiz-adv-x="1241" d="M164 0v1419h958v-268h-639v-279h568v-262h-568v-342h686v-268h-1005zM326 1661l322 281l317 -281l-113 -135l-204 157l-205 -157z" />
<glyph unicode="&#xcb;" horiz-adv-x="1241" d="M164 0v1419h958v-268h-639v-279h568v-262h-568v-342h686v-268h-1005zM252 1717q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM708 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42 t-110.5 42t-47.5 114z" />
<glyph unicode="&#xcc;" horiz-adv-x="647" d="M72 1792l186 172l291 -331l-139 -125zM164 0v1419h319v-1419h-319z" />
<glyph unicode="&#xcd;" horiz-adv-x="647" d="M102 1633l291 331l186 -172l-337 -284zM164 0v1419h319v-1419h-319z" />
<glyph unicode="&#xce;" horiz-adv-x="647" d="M8 1661l322 281l317 -281l-113 -135l-204 157l-205 -157zM164 0v1419h319v-1419h-319z" />
<glyph unicode="&#xcf;" horiz-adv-x="647" d="M-57 1717q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM164 0v1419h319v-1419h-319zM399 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xd0;" horiz-adv-x="1531" d="M20 618v236h166v547q111 20 231 27.5t206 7.5q182 0 330.5 -41t255 -129t164 -225t57.5 -330q0 -184 -57.5 -321.5t-163 -227.5t-257 -135t-340.5 -45q-86 0 -200.5 7t-225.5 29v600h-166zM506 260q23 -2 52.5 -3t70.5 -1q240 0 355.5 121t115.5 334q0 223 -110.5 337.5 t-350.5 114.5q-33 0 -67.5 -1t-65.5 -5v-303h258v-236h-258v-358z" />
<glyph unicode="&#xd1;" horiz-adv-x="1548" d="M164 0v1419h260q68 -68 149.5 -166t166.5 -209.5t169 -231.5t158 -230v837h317v-1419h-268q-137 244 -297 481.5t-340 448.5v-930h-315zM399 1659q12 31 33.5 68t52.5 68.5t70 52t86 20.5q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5q41 0 67.5 27t42.5 61 l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM432 711q0 -104 25.5 -188.5t74 -145t118 -93 t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187zM557 1792l186 172l291 -331l-139 -125z" />
<glyph unicode="&#xd3;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM432 711q0 -104 25.5 -188.5t74 -145t118 -93 t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187zM573 1633l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xd4;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM432 711q0 -104 25.5 -188.5t74 -145t118 -93 t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187zM489 1661l322 281l317 -281l-113 -135l-204 157l-205 -157z" />
<glyph unicode="&#xd5;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM432 711q0 -104 25.5 -188.5t74 -145t118 -93 t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187zM434 1659q12 31 33.5 68t52.5 68.5t70 52t86 20.5q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5 q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q145 0 274 -47t225.5 -141.5t152 -232.5t55.5 -320t-54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-145 0 -274 47.5t-225.5 140.5t-152 231t-55.5 321zM410 1717q0 72 47 113.5t110 41.5t110.5 -42 t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM432 711q0 -104 25.5 -188.5t74 -145t118 -93t159.5 -32.5q88 0 158.5 32.5t119 93t74 144.5t25.5 189q0 104 -25.5 189t-74 145.5t-119 93t-158.5 32.5q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187z M866 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xd7;" d="M127 336l279 276l-279 279l178 178l277 -278l278 278l178 -178l-278 -279l278 -276l-178 -178l-278 278l-277 -278z" />
<glyph unicode="&#xd8;" horiz-adv-x="1617" d="M102 711q0 182 57.5 320t155 232.5t225.5 141.5t269 47q203 0 365 -90l114 149l174 -129l-121 -155q82 -92 128.5 -221t46.5 -295q0 -182 -54.5 -320.5t-148.5 -231.5t-224.5 -140.5t-279.5 -47.5q-102 0 -195.5 21.5t-173.5 68.5l-118 -153l-175 129l125 160 q-80 92 -125 220t-45 294zM432 711q0 -141 47 -246l512 661q-80 45 -182 45q-90 0 -159.5 -33.5t-118 -94t-74 -145.5t-25.5 -187zM623 297q84 -45 186 -45q88 0 158.5 32.5t119 93t74 145t25.5 188.5q0 147 -49 252z" />
<glyph unicode="&#xd9;" horiz-adv-x="1447" d="M143 537v882h320v-856q0 -86 19.5 -146.5t53 -98t82 -54t105.5 -16.5q117 0 189.5 71.5t72.5 243.5v856h320v-882q0 -125 -35 -229.5t-106.5 -179.5t-182 -116t-262.5 -41q-150 0 -258.5 42t-179 117t-104.5 178.5t-34 228.5zM430 1792l186 172l291 -331l-139 -125z" />
<glyph unicode="&#xda;" horiz-adv-x="1447" d="M143 537v882h320v-856q0 -86 19.5 -146.5t53 -98t82 -54t105.5 -16.5q117 0 189.5 71.5t72.5 243.5v856h320v-882q0 -125 -35 -229.5t-106.5 -179.5t-182 -116t-262.5 -41q-150 0 -258.5 42t-179 117t-104.5 178.5t-34 228.5zM524 1633l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xdb;" horiz-adv-x="1447" d="M143 537v882h320v-856q0 -86 19.5 -146.5t53 -98t82 -54t105.5 -16.5q117 0 189.5 71.5t72.5 243.5v856h320v-882q0 -125 -35 -229.5t-106.5 -179.5t-182 -116t-262.5 -41q-150 0 -258.5 42t-179 117t-104.5 178.5t-34 228.5zM401 1661l322 281l317 -281l-113 -135 l-204 157l-205 -157z" />
<glyph unicode="&#xdc;" horiz-adv-x="1447" d="M143 537v882h320v-856q0 -86 19.5 -146.5t53 -98t82 -54t105.5 -16.5q117 0 189.5 71.5t72.5 243.5v856h320v-882q0 -125 -35 -229.5t-106.5 -179.5t-182 -116t-262.5 -41q-150 0 -258.5 42t-179 117t-104.5 178.5t-34 228.5zM338 1717q0 72 47 113.5t110 41.5t110.5 -42 t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM794 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xdd;" horiz-adv-x="1353" d="M10 1419h371q66 -147 141.5 -292.5t161.5 -290.5q86 145 164 290.5t143 292.5h352q-117 -229 -241.5 -444t-263.5 -432v-543h-320v539q-139 217 -265 434t-243 446zM487 1633l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xde;" horiz-adv-x="1318" d="M164 0v1419h319v-205q14 2 35 3.5t41.5 2.5t40 1h31.5q135 0 248.5 -26t195.5 -83t127 -147.5t45 -219.5q0 -256 -172 -369.5t-491 -113.5h-101v-262h-319zM483 535h101q166 0 250 45t84 168q0 59 -22 98t-61.5 62.5t-97 32.5t-127.5 9q-35 0 -68.5 -2t-58.5 -4v-409z " />
<glyph unicode="&#xdf;" horiz-adv-x="1349" d="M143 0v1092q0 109 29 199.5t89.5 157.5t151.5 103.5t216 36.5q119 0 205 -27.5t141 -73.5t80.5 -108.5t25.5 -130.5q0 -86 -17 -137t-58 -98q-45 -53 -81 -98.5t-36 -102.5q0 -31 16.5 -53.5t43 -43t62.5 -41t76 -42.5q74 -43 129.5 -112.5t55.5 -180.5 q0 -176 -100.5 -270.5t-331.5 -94.5q-113 0 -180.5 20.5t-108.5 37.5l51 246q20 -8 49 -17.5t59.5 -17.5t62.5 -13.5t61 -5.5q137 0 137 111q0 53 -55.5 95t-141.5 81q-59 27 -95 57.5t-54.5 64.5t-24.5 68.5t-6 71.5q0 86 39 144.5t92 119.5q35 41 53.5 76t18.5 88 q0 68 -43 100.5t-117 32.5q-98 0 -146.5 -61.5t-48.5 -175.5v-1098h-299z" />
<glyph unicode="&#xe0;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM293 1464l186 172l291 -331l-139 -125zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM336 1305l291 331l186 -172l-337 -284zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5z" />
<glyph unicode="&#xe2;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM213 1321l322 281l317 -281l-113 -135l-204 157l-205 -157zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM174 1325q12 31 33.5 68t52.5 68.5t70 52t86 20.5q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5 q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM158 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM375 340q0 -72 48 -99.5t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5 t-66.5 -19.5t-45 -39t-16.5 -61.5zM614 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xe5;" horiz-adv-x="1132" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v29q0 78 -47.5 125t-163.5 47q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q135 0 225.5 -31t144.5 -88t76.5 -139t22.5 -182v-635q-66 -14 -182.5 -34 t-281.5 -20q-104 0 -189.5 18.5t-147 60.5t-94 109.5t-32.5 166.5zM326 1432q0 57 19.5 101t53.5 73.5t77 45t90 15.5q49 0 93 -15.5t78 -45t53 -73.5t19 -101t-19 -101.5t-53 -74t-78 -45t-93 -15.5q-47 0 -90 15.5t-77 45t-53.5 73.5t-19.5 102zM375 340q0 -72 48 -99.5 t132 -27.5q45 0 86 2t66 6v232q-18 4 -55.5 8t-67.5 4q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5zM474 1432q0 -47 28.5 -72t63.5 -25q37 0 65.5 25t28.5 72t-28.5 71.5t-65.5 24.5q-35 0 -63.5 -24.5t-28.5 -71.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1789" d="M72 332q0 94 37.5 159.5t101 104.5t145.5 56.5t170 17.5q59 0 105.5 -5.5t75.5 -13.5v35q0 78 -47.5 122t-163.5 44q-78 0 -154 -11.5t-131 -31.5l-39 246q27 8 67 17t87 16.5t99 12.5t105 5q63 0 114.5 -8t91.5 -25.5t73 -45.5t61 -66q70 78 158 111.5t189 33.5 q111 0 198.5 -36t151 -105.5t97.5 -173t34 -238.5q0 -27 -2 -58.5t-4 -56.5h-693q10 -94 88 -149.5t209 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-91 -21.5t-107.5 -15.5t-115 -6.5q-121 0 -211 27t-153 70q-154 -90 -356 -91q-104 0 -189.5 18.5 t-147 60.5t-94 109.5t-32.5 166.5zM375 340q0 -72 48 -99.5t132 -27.5q63 0 115.5 7t91.5 24q-29 74 -39 120t-12 93q-29 4 -68 6t-59 2q-43 0 -81 -5t-66.5 -19.5t-45 -39t-16.5 -61.5zM997 647h404q-2 39 -13.5 76t-35 65.5t-59.5 47t-89 18.5q-51 0 -88 -17.5t-61.5 -46 t-37.5 -66.5t-20 -77z" />
<glyph unicode="&#xe7;" horiz-adv-x="1024" d="M92 539q0 117 38 220t109.5 180t174 122t233.5 45q86 0 158 -15.5t139 -43.5l-63 -244q-43 16 -94.5 28.5t-114.5 12.5q-135 0 -202 -84t-67 -221q0 -145 62.5 -225.5t218.5 -80.5q55 0 118.5 10.5t117.5 32.5l43 -249q-47 -20 -116 -35t-151 -19q-8 -16 -14 -30.5 t-10 -24.5q66 -33 90 -78t24 -92q0 -98 -77.5 -149.5t-204.5 -51.5q-45 0 -90 7.5t-90 19.5l36 178q14 -4 52.5 -13t74.5 -9q29 0 50.5 11t23.5 40q2 25 -19.5 45t-68.5 31l-24 6q8 27 22 60.5t29 62.5q-106 20 -183 70t-127.5 123t-74 165t-23.5 195z" />
<glyph unicode="&#xe8;" horiz-adv-x="1196" d="M92 530q0 143 44 251t116 179.5t165 108.5t191 37q229 0 362.5 -140.5t133.5 -412.5q0 -27 -2 -58.5t-4 -56.5h-692q10 -94 87.5 -149.5t208.5 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-90.5 -21.5t-107.5 -15.5t-114.5 -6.5q-145 0 -253 43 t-178.5 118t-104.5 177t-34 221zM346 1464l186 172l291 -331l-139 -125zM406 647h403q-2 39 -13.5 76t-35 65.5t-59 47t-89.5 18.5q-51 0 -88 -17.5t-61.5 -46t-37.5 -66.5t-19 -77z" />
<glyph unicode="&#xe9;" horiz-adv-x="1196" d="M92 530q0 143 44 251t116 179.5t165 108.5t191 37q229 0 362.5 -140.5t133.5 -412.5q0 -27 -2 -58.5t-4 -56.5h-692q10 -94 87.5 -149.5t208.5 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-90.5 -21.5t-107.5 -15.5t-114.5 -6.5q-145 0 -253 43 t-178.5 118t-104.5 177t-34 221zM379 1305l291 331l186 -172l-337 -284zM406 647h403q-2 39 -13.5 76t-35 65.5t-59 47t-89.5 18.5q-51 0 -88 -17.5t-61.5 -46t-37.5 -66.5t-19 -77z" />
<glyph unicode="&#xea;" horiz-adv-x="1196" d="M92 530q0 143 44 251t116 179.5t165 108.5t191 37q229 0 362.5 -140.5t133.5 -412.5q0 -27 -2 -58.5t-4 -56.5h-692q10 -94 87.5 -149.5t208.5 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-90.5 -21.5t-107.5 -15.5t-114.5 -6.5q-145 0 -253 43 t-178.5 118t-104.5 177t-34 221zM276 1321l322 281l317 -281l-113 -135l-204 157l-205 -157zM406 647h403q-2 39 -13.5 76t-35 65.5t-59 47t-89.5 18.5q-51 0 -88 -17.5t-61.5 -46t-37.5 -66.5t-19 -77z" />
<glyph unicode="&#xeb;" horiz-adv-x="1196" d="M92 530q0 143 44 251t116 179.5t165 108.5t191 37q229 0 362.5 -140.5t133.5 -412.5q0 -27 -2 -58.5t-4 -56.5h-692q10 -94 87.5 -149.5t208.5 -55.5q84 0 165 15.5t132 38.5l41 -248q-25 -12 -65.5 -24.5t-90.5 -21.5t-107.5 -15.5t-114.5 -6.5q-145 0 -253 43 t-178.5 118t-104.5 177t-34 221zM223 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM406 647h403q-2 39 -13.5 76t-35 65.5t-59 47t-89.5 18.5q-51 0 -88 -17.5t-61.5 -46t-37.5 -66.5t-19 -77zM679 1389q0 72 47.5 113.5 t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xec;" horiz-adv-x="591" d="M45 1464l186 172l291 -331l-139 -125zM143 0v1077h306v-1077h-306z" />
<glyph unicode="&#xed;" horiz-adv-x="591" d="M84 1305l291 331l186 -172l-337 -284zM143 0v1077h306v-1077h-306z" />
<glyph unicode="&#xee;" horiz-adv-x="591" d="M-20 1321l322 281l317 -281l-113 -135l-204 157l-205 -157zM143 0v1077h306v-1077h-306z" />
<glyph unicode="&#xef;" horiz-adv-x="591" d="M-98 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM143 0v1077h306v-1077h-306zM358 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xf0;" horiz-adv-x="1230" d="M92 479q0 113 32 207t95.5 159.5t159.5 102.5t225 37q53 0 111.5 -15.5t99.5 -35.5q-25 109 -88 211l-227 -76l-60 172l164 55q-35 35 -73.5 66t-79.5 59l170 176q72 -41 136 -93t120 -115l235 79l59 -172l-182 -61q72 -123 113 -266.5t41 -304.5q0 -154 -32 -281 t-97.5 -218t-167 -142.5t-240.5 -51.5q-129 0 -225 41t-160.5 109.5t-96.5 161t-32 196.5zM399 483q0 -111 50.5 -179t156.5 -68q68 0 112 33.5t69.5 90t34.5 130t9 151.5v13.5t-2 19.5q-51 41 -103 54t-101 13q-66 0 -109 -20.5t-69.5 -55t-37 -81.5t-10.5 -101z" />
<glyph unicode="&#xf1;" horiz-adv-x="1206" d="M143 0v1040q78 23 201 42.5t258 19.5q137 0 228.5 -36t144.5 -101.5t75.5 -155.5t22.5 -201v-608h-305v571q0 147 -39 209t-145 62q-33 0 -70 -3t-65 -8v-831h-306zM229 1325q12 31 33.5 68t52.5 68.5t70 52t86 20.5q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5 q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5z" />
<glyph unicode="&#xf2;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM369 1464l186 172l291 -331l-139 -125zM403 541 q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222z" />
<glyph unicode="&#xf3;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM397 1305l291 331l186 -172l-337 -284zM403 541 q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222z" />
<glyph unicode="&#xf4;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM299 1321l322 281l317 -281l-113 -135l-204 157l-205 -157z M403 541q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222z" />
<glyph unicode="&#xf5;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM241 1325q12 31 33.5 68t52.5 68.5t70 52t86 20.5 q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5t-42.5 -61.5zM403 541q0 -141 57.5 -224.5t162.5 -83.5 q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222z" />
<glyph unicode="&#xf6;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q117 0 214 -41t166.5 -114.5t108.5 -178t39 -231.5t-37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-119 0 -216.5 41t-167 116t-108.5 180.5t-39 232.5zM236 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113 q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM403 541q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222zM692 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42 t-47.5 114z" />
<glyph unicode="&#xf7;" d="M100 483v256h963v-256h-963zM410 197q0 86 53 129t121 43t121 -43t53 -129t-53.5 -129t-120.5 -43q-68 0 -121 43t-53 129zM410 1026q0 86 53 129t121 43t121 -43t53 -129t-53.5 -129t-120.5 -43q-68 0 -121 43t-53 129z" />
<glyph unicode="&#xf8;" horiz-adv-x="1243" d="M92 541q0 127 40 231.5t110.5 178t168 114.5t212.5 41q76 0 143.5 -17.5t124.5 -50.5l94 121l143 -108l-100 -129q59 -72 91 -168t32 -213q0 -127 -37 -232.5t-106.5 -180.5t-167 -116t-217.5 -41q-154 0 -275 70l-92 -121l-143 109l100 129q-59 74 -90 170t-31 213z M387 541q0 -39 3 -73t13 -62l328 425q-47 29 -108 29q-111 0 -173.5 -84.5t-62.5 -234.5zM510 248q49 -31 113 -31q111 0 172 87t61 237q0 70 -16 135z" />
<glyph unicode="&#xf9;" horiz-adv-x="1206" d="M133 477v600h305v-563q0 -147 39 -212.5t146 -65.5q33 0 69.5 3t65.5 7v831h305v-1040q-78 -23 -201 -42.5t-258 -19.5q-137 0 -228 37t-144.5 103.5t-76 159t-22.5 202.5zM303 1464l186 172l291 -331l-139 -125z" />
<glyph unicode="&#xfa;" horiz-adv-x="1206" d="M133 477v600h305v-563q0 -147 39 -212.5t146 -65.5q33 0 69.5 3t65.5 7v831h305v-1040q-78 -23 -201 -42.5t-258 -19.5q-137 0 -228 37t-144.5 103.5t-76 159t-22.5 202.5zM383 1305l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xfb;" horiz-adv-x="1206" d="M133 477v600h305v-563q0 -147 39 -212.5t146 -65.5q33 0 69.5 3t65.5 7v831h305v-1040q-78 -23 -201 -42.5t-258 -19.5q-137 0 -228 37t-144.5 103.5t-76 159t-22.5 202.5zM281 1321l322 281l317 -281l-113 -135l-204 157l-205 -157z" />
<glyph unicode="&#xfc;" horiz-adv-x="1206" d="M133 477v600h305v-563q0 -147 39 -212.5t146 -65.5q33 0 69.5 3t65.5 7v831h305v-1040q-78 -23 -201 -42.5t-258 -19.5q-137 0 -228 37t-144.5 103.5t-76 159t-22.5 202.5zM213 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42 t-47 114zM669 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#xfd;" horiz-adv-x="1120" d="M10 -336l53 244q47 -16 84 -22.5t78 -6.5q82 0 126 44t75 122q-104 205 -208.5 460t-197.5 572h324q20 -80 48 -173t58.5 -188t62.5 -185.5t60 -163.5q27 74 55.5 164t56.5 185t53.5 188t45.5 173h316q-92 -311 -192.5 -583.5t-219.5 -528.5q-43 -92 -86 -156.5 t-94 -106.5t-115.5 -61.5t-150.5 -19.5q-72 0 -132.5 13.5t-99.5 29.5zM403 1305l291 331l186 -172l-337 -284z" />
<glyph unicode="&#xfe;" horiz-adv-x="1236" d="M143 -379v1919l306 49v-508q35 10 77.5 15.5t75.5 5.5q125 0 225.5 -40t171 -112.5t108.5 -177t38 -233.5q0 -125 -31 -227.5t-90 -176.5t-147.5 -114.5t-202.5 -40.5q-63 0 -118.5 12t-106.5 35v-406h-306zM449 281q29 -18 74.5 -30.5t92.5 -12.5q218 -1 218 292 q0 141 -62.5 226.5t-179.5 85.5q-41 0 -81 -5.5t-62 -13.5v-542z" />
<glyph unicode="&#xff;" horiz-adv-x="1120" d="M10 -336l53 244q47 -16 84 -22.5t78 -6.5q82 0 126 44t75 122q-104 205 -208.5 460t-197.5 572h324q20 -80 48 -173t58.5 -188t62.5 -185.5t60 -163.5q27 74 55.5 164t56.5 185t53.5 188t45.5 173h316q-92 -311 -192.5 -583.5t-219.5 -528.5q-43 -92 -86 -156.5 t-94 -106.5t-115.5 -61.5t-150.5 -19.5q-72 0 -132.5 13.5t-99.5 29.5zM180 1389q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114zM636 1389q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42 t-110.5 42t-47.5 114z" />
<glyph unicode="&#x152;" horiz-adv-x="2041" d="M102 711q0 186 58.5 321t164 224.5t254 132.5t328.5 43q47 0 105.5 -3.5t105.5 -9.5h805v-268h-604v-279h532v-262h-532v-342h651v-268h-852q-47 -6 -105.5 -9t-105.5 -3q-180 0 -328.5 43t-254 132t-164 225t-58.5 323zM430 711q0 -219 116.5 -336t356.5 -117h46.5 t60.5 2v899q-41 2 -59.5 2h-47.5q-240 0 -356.5 -115.5t-116.5 -334.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1918" d="M92 541q0 127 38 231.5t107.5 178t166 114.5t210.5 41q238 0 371 -176q74 98 164 137t182 39q229 0 362.5 -139.5t133.5 -413.5q0 -27 -2 -58.5t-4 -56.5h-693q10 -94 88 -149.5t209 -55.5q86 0 166 15.5t131 38.5l41 -248q-25 -12 -65.5 -24.5t-91 -21.5t-108 -15.5 t-114.5 -6.5q-131 0 -236.5 42t-176.5 128q-68 -82 -160 -126t-197 -44q-119 0 -215 41t-164.5 116t-105.5 180.5t-37 232.5zM403 541q0 -141 57.5 -224.5t162.5 -83.5q104 0 160.5 83.5t56.5 224.5t-56.5 222t-160.5 81t-162 -81t-58 -222zM1128 647h404q-2 39 -13.5 76 t-35 65.5t-60.5 47t-88 18.5q-53 0 -89 -17.5t-60.5 -46t-37.5 -66.5t-20 -77z" />
<glyph unicode="&#x178;" horiz-adv-x="1353" d="M10 1419h371q66 -147 141.5 -292.5t161.5 -290.5q86 145 164 290.5t143 292.5h352q-117 -229 -241.5 -444t-263.5 -432v-543h-320v539q-139 217 -265 434t-243 446zM291 1717q0 72 47 113.5t110 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110 42t-47 114z M747 1717q0 72 47.5 113.5t110.5 41.5t110.5 -42t47.5 -113q0 -72 -47.5 -114t-110.5 -42t-110.5 42t-47.5 114z" />
<glyph unicode="&#x2c6;" horiz-adv-x="815" d="M86 1321l322 281l317 -281l-113 -135l-204 157l-205 -157z" />
<glyph unicode="&#x2dc;" horiz-adv-x="763" d="M8 1325q12 31 33.5 68t52.5 68.5t70 52t86 20.5q37 0 68.5 -11.5t62.5 -24.5t60.5 -24.5t64.5 -11.5q41 0 67.5 27t42.5 61l150 -98q-12 -31 -33.5 -67.5t-52.5 -68.5t-70 -52.5t-86 -20.5q-37 0 -68.5 11.5t-62.5 24.5t-61.5 24.5t-63.5 11.5q-41 0 -67.5 -26.5 t-42.5 -61.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="982" />
<glyph unicode="&#x2001;" horiz-adv-x="1964" />
<glyph unicode="&#x2002;" horiz-adv-x="982" />
<glyph unicode="&#x2003;" horiz-adv-x="1964" />
<glyph unicode="&#x2004;" horiz-adv-x="654" />
<glyph unicode="&#x2005;" horiz-adv-x="491" />
<glyph unicode="&#x2006;" horiz-adv-x="327" />
<glyph unicode="&#x2007;" horiz-adv-x="327" />
<glyph unicode="&#x2008;" horiz-adv-x="245" />
<glyph unicode="&#x2009;" horiz-adv-x="392" />
<glyph unicode="&#x200a;" horiz-adv-x="109" />
<glyph unicode="&#x2010;" horiz-adv-x="696" d="M51 473v277h594v-277h-594z" />
<glyph unicode="&#x2011;" horiz-adv-x="696" d="M51 473v277h594v-277h-594z" />
<glyph unicode="&#x2012;" horiz-adv-x="696" d="M51 473v277h594v-277h-594z" />
<glyph unicode="&#x2013;" horiz-adv-x="1024" d="M0 485v254h1024v-254h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2048" d="M0 485v254h2048v-254h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="497" d="M82 1118q0 137 49 261t121 210l215 -49q-39 -88 -62.5 -198.5t-23.5 -211.5v-17t1 -30.5t2 -36t3 -32.5h-297q-4 29 -6 59.5t-2 44.5z" />
<glyph unicode="&#x2019;" horiz-adv-x="497" d="M31 1044q39 88 62.5 199t23.5 211v17.5t-1 31t-2 35.5t-3 33h297q4 -29 6 -59.5t2 -45.5q0 -137 -49.5 -261t-120.5 -210z" />
<glyph unicode="&#x201a;" horiz-adv-x="497" d="M31 -211q39 88 62.5 199t23.5 211v17.5t-1 31t-2 35.5t-3 33h297q4 -29 6 -59.5t2 -45.5q0 -137 -49.5 -261t-120.5 -210z" />
<glyph unicode="&#x201c;" horiz-adv-x="929" d="M82 1118q0 137 49 261t121 210l207 -47q-39 -88 -62.5 -199.5t-23.5 -212.5v-17t1 -30.5t2 -36t3 -32.5h-289q-4 29 -6 59.5t-2 44.5zM522 1118q0 137 49.5 261t120.5 210l207 -47q-39 -88 -62.5 -199.5t-23.5 -212.5v-17t1 -30.5t2 -36t3 -32.5h-289q-4 29 -6 59.5 t-2 44.5z" />
<glyph unicode="&#x201d;" horiz-adv-x="929" d="M31 1042q39 88 62.5 200t23.5 212v17.5t-1 31t-2 35.5t-3 33h288q4 -29 6.5 -59.5t2.5 -45.5q0 -137 -49.5 -261t-120.5 -210zM471 1042q39 88 62.5 200t23.5 212v17.5t-1 31t-2 35.5t-3 33h289q4 -29 6 -59.5t2 -45.5q0 -137 -49 -261t-121 -210z" />
<glyph unicode="&#x201e;" horiz-adv-x="929" d="M31 -213q39 88 62.5 200t23.5 212v17.5t-1 31t-2 35.5t-3 33h288q4 -29 6.5 -59.5t2.5 -45.5q0 -137 -49.5 -261t-120.5 -210zM471 -213q39 88 62.5 200t23.5 212v17.5t-1 31t-2 35.5t-3 33h289q4 -29 6 -59.5t2 -45.5q0 -137 -49 -261t-121 -210z" />
<glyph unicode="&#x2022;" horiz-adv-x="745" d="M78 723q0 57 20.5 110.5t59.5 93.5t93 63.5t122 23.5t122 -23.5t93 -63.5t59.5 -93.5t20.5 -110.5q0 -59 -20.5 -111.5t-59.5 -92.5t-93.5 -63.5t-121.5 -23.5q-68 0 -122 23.5t-93 63.5t-59.5 92.5t-20.5 111.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="2048" d="M122 162q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5zM833 162q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5t-132 -48.5t-132.5 48.5t-58.5 140.5zM1544 162q0 92 58.5 140t132.5 48t132 -48t58 -140t-58 -140.5 t-132 -48.5t-132.5 48.5t-58.5 140.5z" />
<glyph unicode="&#x202f;" horiz-adv-x="392" />
<glyph unicode="&#x2039;" horiz-adv-x="669" d="M41 582l336 491l231 -108l-207 -383l207 -383l-231 -109z" />
<glyph unicode="&#x203a;" horiz-adv-x="669" d="M61 199l207 383l-207 383l232 108l336 -491l-336 -492z" />
<glyph unicode="&#x205f;" horiz-adv-x="491" />
<glyph unicode="&#x20ac;" d="M94 446v203h129q-2 23 -2 35v29v34.5t2 34.5h-129v203h156q53 229 202.5 346t383.5 117q92 0 157.5 -14.5t130.5 -38.5l-63 -238q-49 16 -100.5 27.5t-126.5 11.5q-123 0 -192 -53t-99 -158h454l-39 -203h-442q-2 -23 -2 -38v-31v-28.5t2 -35.5h418l-39 -203h-352 q35 -123 104.5 -171t173.5 -48q68 0 137.5 12.5t139.5 41.5l59 -236q-55 -29 -142 -50.5t-204 -21.5q-256 0 -391 124t-178 349h-148z" />
<glyph unicode="&#x2122;" horiz-adv-x="1748" d="M61 1208v211h660v-211h-209v-510h-242v510h-209zM801 698q14 254 30.5 427t32.5 294h217q43 -92 82 -187t80 -188q41 92 83 194.5t75 180.5h219q20 -121 35.5 -294t32.5 -427h-236l-8 383l-121 -307h-162l-121 305q0 -66 -1 -130t-2 -117.5t-2 -90t-1 -43.5h-233z" />
<glyph unicode="&#xe000;" horiz-adv-x="1075" d="M0 0v1075h1075v-1075h-1075z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 68 KiB

BIN
font/ubuntu-b-webfont.ttf Normal file

Binary file not shown.

BIN
font/ubuntu-b-webfont.woff Normal file

Binary file not shown.

BIN
font/ubuntu-bi-webfont.eot Normal file

Binary file not shown.

245
font/ubuntu-bi-webfont.svg Normal file
View file

@ -0,0 +1,245 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="ubuntubold_italic" horiz-adv-x="1163" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="491" />
<glyph unicode="&#xfb01;" horiz-adv-x="1437" d="M-74 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 149.5 -14t92.5 -31l-109 -237q-37 10 -70.5 17t-74.5 7q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5zM1001 0 l256 1077h306l-258 -1077h-304zM1286 1362q0 43 17.5 81t46 65.5t66.5 44t81 16.5q63 0 114.5 -38t51.5 -116q0 -43 -17.5 -81t-46 -65.5t-66.5 -44t-81 -16.5q-63 0 -114.5 38t-51.5 116z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1462" d="M-74 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 149.5 -14t92.5 -31l-109 -237q-37 10 -70.5 17t-74.5 7q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5z M1025 271q1 85 24 182l260 1087l317 49l-285 -1179q-8 -37 -9 -68t11.5 -54.5t42 -37.5t82.5 -19l-61 -251q-145 0 -228 37.5t-119 103t-35 150.5z" />
<glyph unicode="&#xfb03;" horiz-adv-x="2293" d="M-78 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 160.5 -19.5t103.5 -35.5l-102 -240q-37 18 -85 27.5t-89 9.5q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5z M782 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 149.5 -14t92.5 -31l-109 -237q-37 10 -70.5 17t-74.5 7q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5zM1857 0 l256 1077h306l-258 -1077h-304zM2142 1362q0 43 17.5 81t46 65.5t66.5 44t81 16.5q63 0 114.5 -38t51.5 -116q0 -43 -17.5 -81t-46 -65.5t-66.5 -44t-81 -16.5q-63 0 -114.5 38t-51.5 116z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2361" d="M-78 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 160.5 -19.5t103.5 -35.5l-102 -240q-37 18 -85 27.5t-89 9.5q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5z M784 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 149.5 -14t92.5 -31l-109 -237q-37 10 -70.5 17t-74.5 7q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5zM1883 271 q1 85 24 182l260 1087l317 49l-285 -1179q-8 -37 -9 -68t11.5 -54.5t42 -37.5t82.5 -19l-61 -251q-145 0 -228 37.5t-119 103t-35 150.5z" />
<glyph unicode="&#xd;" horiz-adv-x="491" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="491" />
<glyph unicode="&#x09;" horiz-adv-x="491" />
<glyph unicode="&#xa0;" horiz-adv-x="491" />
<glyph unicode="!" horiz-adv-x="604" d="M164 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -41t48 -125q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 41t-48 125zM291 453q16 147 36.5 290.5t59.5 309.5l88 366h326l-88 -366q-41 -166 -87 -309.5t-102 -290.5h-233z" />
<glyph unicode="&#x22;" horiz-adv-x="1007" d="M369 954q8 119 22.5 236t36.5 217l37 149h301l-37 -151q-23 -98 -67 -215t-91 -236h-202zM815 954q8 119 22.5 236t36.5 217l37 149h301l-37 -151q-23 -98 -67 -215t-91 -236h-202z" />
<glyph unicode="#" horiz-adv-x="1351" d="M141 0l146 348h-142l58 236h182l104 252h-225l58 235h266l147 348h262l-147 -348h227l148 348h262l-148 -348h144l-58 -235h-184l-104 -252h227l-57 -236h-269l-145 -348h-262l145 348h-227l-146 -348h-262zM647 584h227l105 252h-227z" />
<glyph unicode="$" d="M139 139l125 226q23 -16 55.5 -34t73.5 -32t88.5 -24.5t96.5 -10.5q43 0 87 5t78.5 20.5t56 45.5t21.5 79q0 33 -14 57.5t-39 45t-56.5 37.5t-64.5 34l-53 26q-131 66 -189.5 164.5t-58.5 204.5q0 68 24.5 132.5t75 117.5t129 89t187.5 48l55 219h258l-57 -225 q78 -16 142.5 -44t105.5 -54l-123 -217q-53 41 -129 62.5t-148 21.5q-88 0 -151.5 -33t-63.5 -103q0 -29 8.5 -51t28 -42.5t52 -42t83.5 -46.5q59 -31 113.5 -64.5t96.5 -78.5t67.5 -102.5t25.5 -135.5q0 -96 -30.5 -167.5t-87 -123t-135 -81t-175.5 -39.5l-59 -246h-258 l61 250q-111 16 -188.5 51t-114.5 61z" />
<glyph unicode="%" horiz-adv-x="1781" d="M246 958q0 117 34.5 208t93 154.5t134.5 97.5t156 34q68 0 124 -18.5t97 -56.5t63.5 -94t22.5 -132q0 -117 -35 -208t-93.5 -154.5t-134 -97.5t-155.5 -34q-68 0 -124 18.5t-97 56.5t-63.5 94.5t-22.5 131.5zM315 0l1143 1419h295l-1143 -1419h-295zM471 967 q0 -55 30.5 -84t73.5 -29q33 0 64 19.5t54.5 57.5t37.5 91t14 121q0 55 -27.5 84.5t-70.5 29.5q-33 0 -64.5 -20t-56 -57t-40 -91.5t-15.5 -121.5zM1098 268q0 117 34.5 208t93 154.5t134.5 97.5t156 34q68 0 124 -18.5t97 -56.5t63.5 -94t22.5 -132q0 -117 -35 -208 t-93.5 -154.5t-134 -97.5t-155.5 -34q-68 0 -124 18.5t-97 56.5t-63.5 94.5t-22.5 131.5zM1323 276q0 -55 30.5 -83.5t73.5 -28.5q33 0 64 19.5t54.5 57.5t37.5 91t14 121q0 55 -27.5 84.5t-70.5 29.5q-33 0 -64.5 -20.5t-56 -57t-40 -91t-15.5 -122.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1357" d="M164 322q0 154 80 265t258 191l35 17q-41 68 -60.5 134t-19.5 130q0 82 31.5 154.5t92 125t145.5 83t192 30.5q88 0 155.5 -23.5t111.5 -62.5t66.5 -91t22.5 -110q0 -51 -18.5 -106t-54.5 -108.5t-91 -100.5t-129 -80l-76 -35l172 -229q51 84 94 207l269 -35 q-88 -223 -207 -377q53 -76 95 -151.5t77 -149.5h-309q-12 27 -27.5 55.5t-32.5 59.5q-195 -133 -444 -133q-109 0 -189.5 28.5t-134 76.5t-79 108.5t-25.5 126.5zM467 381q0 -66 42 -114t122 -48q53 0 122.5 17.5t147.5 70.5l-239 316l-31 -15q-86 -39 -125 -102.5 t-39 -124.5zM727 1051q0 -57 53 -146l25 10q98 45 152.5 97.5t54.5 124.5q0 39 -29 68.5t-90 29.5t-113.5 -46t-52.5 -138z" />
<glyph unicode="'" horiz-adv-x="561" d="M369 954q8 119 22.5 236t36.5 217l37 149h301l-37 -151q-23 -98 -67 -215t-91 -236h-202z" />
<glyph unicode="(" horiz-adv-x="729" d="M201 276q0 184 46 366.5t129 353.5t198.5 326t254.5 282l197 -138q-117 -127 -213 -267t-165.5 -291.5t-108.5 -312.5t-39 -327q0 -129 24.5 -255t77.5 -255l-225 -137q-92 154 -134 317.5t-42 337.5z" />
<glyph unicode=")" horiz-adv-x="729" d="M-49 -240q117 125 214 265.5t165.5 293t107.5 313.5t39 326q0 129 -24.5 255t-77.5 255l225 138q92 -154 134 -318t42 -338q0 -184 -46 -366.5t-129 -353.5t-198.5 -325.5t-255.5 -281.5z" />
<glyph unicode="*" horiz-adv-x="1028" d="M266 1008l82 254l49 -17q25 -8 57.5 -25.5t64.5 -39t61.5 -43t52.5 -39.5q-10 27 -21.5 62.5t-21.5 72.5t-17.5 72.5t-7.5 62.5v51h266v-51q0 -27 -7 -62.5t-17 -72.5t-21.5 -72.5t-21.5 -62.5q20 18 51 39.5t62.5 43t64.5 39t57 25.5l50 17l81 -254l-49 -17 q-27 -8 -61.5 -12t-73.5 -5t-75.5 -1h-65.5q25 -16 54.5 -38t59 -45.5t56 -48t43.5 -46.5l33 -43l-217 -154l-31 41q-16 20 -31.5 53t-30 69t-24.5 70.5t-19 63.5q-8 -29 -18 -63.5t-24.5 -70.5t-30 -69t-31.5 -53l-31 -41l-217 154l33 43q16 23 43 47t56.5 47.5t59 45 t54.5 38.5h-66t-75.5 1t-73.5 5t-62 12z" />
<glyph unicode="+" d="M195 483l63 256h342l90 379h279l-90 -379h342l-64 -256h-342l-90 -379h-279l91 379h-342z" />
<glyph unicode="," horiz-adv-x="514" d="M-20 -274q78 135 131 280.5t63 304.5h320q-6 -178 -89 -337.5t-202 -307.5z" />
<glyph unicode="-" horiz-adv-x="702" d="M150 473l67 277h594l-68 -277h-593z" />
<glyph unicode="." horiz-adv-x="516" d="M123 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode="/" horiz-adv-x="892" d="M-184 -379l1147 1983h309l-1145 -1983h-311z" />
<glyph unicode="0" d="M197 391q0 233 52 428t145 336t224.5 219t290.5 78q100 0 170 -36t114 -95t63.5 -134t19.5 -155q0 -233 -52.5 -427.5t-145.5 -336t-224 -219.5t-291 -78q-100 0 -169.5 36t-113.5 95.5t-63.5 134t-19.5 154.5zM477 434q0 -106 32.5 -153.5t100.5 -47.5q66 0 121 39 t97 102.5t74 144.5t52.5 165t30.5 164t10 141q0 104 -31.5 153.5t-97.5 49.5q-68 0 -123 -39t-98 -102.5t-74.5 -145.5t-52 -166t-31 -163.5t-10.5 -141.5z" />
<glyph unicode="1" d="M410 1124q66 25 137 56.5t142 69.5t138.5 80t122.5 89h213l-342 -1419h-305l246 1022q-72 -41 -156 -75t-160 -58z" />
<glyph unicode="2" d="M123 0q18 129 63 223t112 171t150.5 143.5t182.5 142.5q92 72 156.5 124t104.5 96t58.5 83t18.5 82q0 53 -38 89t-97 36q-84 0 -164 -36t-174 -107l-105 223q123 100 246 141t254 41q82 0 152.5 -26.5t123 -72.5t81 -107.5t28.5 -131.5q0 -78 -16.5 -139.5t-55.5 -118.5 t-103.5 -116.5t-158.5 -133.5q-55 -43 -111.5 -82t-110.5 -80t-105.5 -87t-96.5 -103h610l-61 -254h-944z" />
<glyph unicode="3" d="M113 68l110 241q59 -41 147.5 -66.5t180.5 -25.5q57 0 111.5 12.5t95.5 41t65.5 73.5t24.5 111q0 84 -68.5 127t-183.5 43h-131l59 241h148q43 0 90 8.5t86 30t64.5 57t25.5 93.5q0 72 -49 105.5t-129 33.5q-63 0 -140 -22.5t-159 -65.5l-78 229q100 57 206.5 87 t221.5 30q109 0 190.5 -29.5t136 -79t81 -112t26.5 -127.5q0 -53 -17.5 -105.5t-51 -98.5t-85.5 -83.5t-120 -62.5q86 -41 133 -126t47 -186q0 -84 -35 -168t-110.5 -151.5t-192.5 -109.5t-281 -42q-233 0 -419 97z" />
<glyph unicode="4" d="M137 317l51 226q66 90 160 203.5t205 232.5t229.5 233.5t233.5 206.5h291l-207 -856h149l-59 -246h-152l-77 -317h-291l75 317h-608zM481 563h332l119 496q-53 -51 -111.5 -110.5t-118 -124t-116 -131t-105.5 -130.5z" />
<glyph unicode="5" d="M129 68l113 247q72 -43 153.5 -65.5t157.5 -22.5q147 0 225 55.5t78 172.5q0 49 -26.5 89t-86 67.5t-159 43t-242.5 15.5q68 190 129 383.5t109 365.5h757l-61 -254h-506q-20 -74 -44 -148.5t-42 -125.5q123 -10 212 -46t147.5 -91.5t87 -126t28.5 -150.5 q0 -115 -38 -209t-113.5 -159.5t-188 -101.5t-260.5 -36q-43 0 -98 6.5t-113.5 17.5t-115 29.5t-103.5 43.5z" />
<glyph unicode="6" d="M215 471q0 180 61.5 353t188.5 308.5t321.5 218.5t460.5 83h38t44 -2l-37 -242q-127 -4 -236.5 -18.5t-200.5 -53.5t-159.5 -104.5t-113.5 -169.5q53 29 123.5 42t132.5 13q76 0 142.5 -23.5t116.5 -71.5t78.5 -120t28.5 -166q0 -133 -43 -234.5t-116.5 -171t-172 -105.5 t-206.5 -36q-96 0 -178 33t-142.5 95.5t-95.5 155.5t-35 216zM506 465q0 -98 45 -169t139 -71q98 0 160.5 72t62.5 201q0 98 -53 135t-127 37q-51 0 -103 -13.5t-98 -31.5q-27 -78 -26 -160z" />
<glyph unicode="7" d="M276 0q39 152 113 314.5t166 317t194.5 292t198.5 237.5h-616l63 258h994l-54 -221q-78 -66 -185.5 -190.5t-216 -285.5t-202.5 -346.5t-145 -375.5h-310z" />
<glyph unicode="8" d="M190 322q0 61 17.5 117.5t55.5 109.5t97.5 103t143.5 102q-49 47 -83 107.5t-34 146.5q0 80 29.5 159.5t92 143t157 102.5t223.5 39q86 0 159.5 -24.5t127 -68.5t84 -107.5t30.5 -139.5q0 -45 -10 -95t-41 -100.5t-87 -101.5t-148 -96q35 -25 65.5 -53.5t53 -65.5 t35.5 -82t13 -102q0 -92 -35.5 -173t-104 -141.5t-171 -95.5t-233.5 -35q-76 0 -154 17.5t-140.5 59.5t-102.5 109t-40 165zM483 358q0 -72 50.5 -107.5t121.5 -35.5q43 0 83 13.5t71 38t49.5 60.5t18.5 81q0 41 -14.5 72.5t-40 58t-59.5 48t-73 42.5q-63 -31 -103 -65 t-63.5 -68.5t-32 -69.5t-8.5 -68zM668 1026q0 -66 41 -111t98 -79q119 55 159 115.5t40 117.5q0 66 -41 102.5t-113 36.5q-84 0 -134 -53t-50 -129z" />
<glyph unicode="9" d="M158 -6l37 242q127 2 236.5 17t200.5 54t159.5 104.5t113.5 170.5q-53 -29 -123.5 -42.5t-132.5 -13.5q-76 0 -142.5 23.5t-116.5 72t-78.5 119t-28.5 166.5q0 131 43 233.5t116.5 172t172 105.5t206.5 36q94 0 177 -32.5t143.5 -95t95.5 -156t35 -216.5 q0 -180 -61.5 -353t-188.5 -308t-321.5 -218t-460.5 -83h-38t-44 2zM573 928q0 -98 53.5 -135t127.5 -37q51 0 103 13t97 32q27 78 27 160q0 98 -45 168.5t-139 70.5q-98 0 -161 -71.5t-63 -200.5z" />
<glyph unicode=":" horiz-adv-x="516" d="M123 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126zM277 866q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43 t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode=";" horiz-adv-x="516" d="M-12 -274q78 135 131 280.5t63 304.5h320q-6 -178 -89 -337.5t-202 -307.5zM277 866q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode="&#x3c;" d="M193 500l55 239l971 371l20 -254l-709 -246l582 -268l-129 -227z" />
<glyph unicode="=" d="M152 258l61 256h963l-62 -256h-962zM260 707l62 256h962l-61 -256h-963z" />
<glyph unicode="&#x3e;" d="M139 371l709 245l-582 269l129 225l791 -385l-56 -240l-970 -370z" />
<glyph unicode="?" horiz-adv-x="880" d="M252 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126zM350 453q0 63 19.5 116.5t53.5 98.5t79 86t96 80q61 47 104 81.5t71 64.5t41 56.5t13 55.5q0 53 -37.5 77.5t-95.5 24.5 q-37 0 -78 -7t-79.5 -19.5t-73.5 -27t-62 -28.5l-39 240q80 45 183.5 72.5t208.5 27.5q74 0 141.5 -18.5t118.5 -56.5t81.5 -94t30.5 -130q0 -88 -27.5 -153.5t-70.5 -117t-97 -93t-108 -82.5q-78 -59 -137 -119t-65 -135h-271z" />
<glyph unicode="@" horiz-adv-x="1927" d="M205 365q0 266 91 472.5t242.5 347t346 213t403.5 72.5q141 0 270.5 -39.5t228.5 -121.5t158.5 -207t59.5 -297q0 -137 -34 -271.5t-105.5 -240t-182 -171t-262.5 -65.5q-53 0 -100 20.5t-78 59.5q-72 -41 -140.5 -60.5t-146.5 -19.5q-162 0 -252 106.5t-90 280.5 q0 100 41 209t121 198t200 146.5t279 57.5q123 0 203 -21.5t135 -44.5l-145 -606q-4 -10 -4 -18.5v-16.5q0 -35 22.5 -50t57.5 -15q53 0 98 37.5t78 104.5t51 158t18 197q0 129 -39.5 222.5t-109.5 151.5t-162 86t-198 28q-147 0 -294 -56.5t-262.5 -168t-187.5 -280.5 t-72 -392q0 -145 46.5 -241.5t124 -154t181 -82t220.5 -24.5q72 0 160 10t161 25l-12 -203q-86 -16 -177 -26.5t-169 -10.5q-180 0 -323.5 49t-244 140.5t-153.5 221.5t-53 290zM885 469q0 -92 32.5 -140t110.5 -48q61 0 143 41q2 16 6.5 36.5t10.5 49.5l100 421 q-35 8 -84 9q-84 0 -143.5 -35t-99 -89.5t-58 -120t-18.5 -124.5z" />
<glyph unicode="A" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5z" />
<glyph unicode="B" horiz-adv-x="1347" d="M154 25l327 1372q117 23 245 31t235 8q123 0 212 -26t145 -69t84 -101t28 -124q0 -45 -9.5 -94t-37 -97t-75.5 -91t-126 -78q92 -41 135 -112t43 -157q0 -98 -39 -189t-125 -161.5t-223 -112.5t-334 -42q-123 0 -252 10t-233 33zM522 252q33 -6 83 -9t93 -3q61 0 122 9 t109 33.5t78.5 67.5t30.5 111q0 29 -11 57.5t-35.5 51t-64.5 37t-96 14.5h-221zM670 860h200q123 0 183.5 53.5t60.5 126.5q0 39 -17.5 67t-46 44t-65.5 23.5t-76 7.5q-43 0 -92 -3t-74 -8z" />
<glyph unicode="C" horiz-adv-x="1306" d="M252 573q0 160 56.5 318t166 281.5t268 201.5t365.5 78q98 0 193.5 -22.5t199.5 -79.5l-115 -248q-86 45 -153.5 61.5t-145.5 16.5q-117 0 -210 -47.5t-159.5 -128t-101 -187t-34.5 -225.5q0 -180 78.5 -262t226.5 -82q98 0 181 20.5t155 53.5l34 -261 q-84 -41 -186 -65.5t-250 -24.5q-127 0 -232.5 42t-180 120t-115.5 189.5t-41 250.5z" />
<glyph unicode="D" horiz-adv-x="1470" d="M154 25l329 1370q117 23 224.5 32t193.5 9q152 0 271.5 -41t202.5 -117t126 -180.5t43 -231.5q0 -207 -67.5 -370.5t-193.5 -277.5t-306 -175t-408 -61q-86 0 -198.5 10t-216.5 33zM526 256q23 -2 46.5 -3t64.5 -1q133 0 240.5 41t182.5 117.5t116 188.5t41 251 q0 72 -18.5 130t-60.5 100t-108.5 64.5t-161.5 22.5q-61 0 -125 -6z" />
<glyph unicode="E" horiz-adv-x="1216" d="M154 0l340 1419h927l-65 -262h-608l-66 -287h537l-64 -258h-537l-81 -348h655l-66 -264h-972z" />
<glyph unicode="F" horiz-adv-x="1177" d="M154 0l340 1419h919l-65 -264h-600l-72 -303h530l-63 -264h-531l-141 -588h-317z" />
<glyph unicode="G" horiz-adv-x="1409" d="M252 573q0 160 56.5 318t167 281.5t274 201.5t376.5 78q98 0 208 -28.5t198 -86.5l-115 -247q-72 45 -152.5 67.5t-158.5 22.5q-125 0 -222.5 -47.5t-165 -128t-102 -187t-34.5 -225.5q0 -180 75 -263t222 -83q41 0 73.5 3t59.5 7l118 494h320l-172 -711 q-57 -23 -165.5 -44.5t-276.5 -21.5q-143 0 -253 42t-183.5 120t-110.5 188.5t-37 249.5z" />
<glyph unicode="H" horiz-adv-x="1462" d="M154 0l340 1419h319l-131 -545h504l131 545h319l-342 -1419h-319l145 604h-504l-145 -604h-317z" />
<glyph unicode="I" horiz-adv-x="638" d="M154 0l340 1419h319l-342 -1419h-317z" />
<glyph unicode="J" horiz-adv-x="1056" d="M41 96l141 238q49 -35 107.5 -61.5t138.5 -26.5q57 0 99 13t73 43t52.5 77t37.5 115l221 925h320l-238 -989q-25 -104 -65.5 -189t-106 -145.5t-162 -92.5t-233.5 -32q-111 0 -210 34t-175 91z" />
<glyph unicode="K" horiz-adv-x="1355" d="M154 0l340 1419h319l-125 -512q160 137 301 263t264 249h379q-186 -174 -369.5 -345t-385.5 -333q129 -141 247.5 -323t212.5 -418h-348q-29 70 -68.5 149.5t-88 159.5t-103.5 154t-113 131l-145 -594h-317z" />
<glyph unicode="L" horiz-adv-x="1155" d="M154 0l340 1419h319l-276 -1149h628l-65 -270h-946z" />
<glyph unicode="M" horiz-adv-x="1798" d="M113 0q47 168 103 358.5t116.5 380t120 365.5t112.5 315h287q12 -55 31.5 -156.5t41 -223t44 -249.5t41.5 -235q70 106 151.5 229t161.5 242t151.5 222.5t122.5 170.5h283q-14 -141 -37.5 -317t-53.5 -364.5t-62.5 -379t-65.5 -358.5h-311q43 209 91 451.5t89 490.5 q-53 -84 -118.5 -187.5t-131.5 -209t-127 -201.5t-106 -164h-234q-10 61 -24.5 155.5t-32 200t-36 213t-34.5 193.5q-80 -248 -144.5 -490.5t-119.5 -451.5h-309z" />
<glyph unicode="N" horiz-adv-x="1519" d="M154 0l340 1419h243q47 -72 101.5 -169t112 -209.5t114.5 -234.5t109 -241l202 854h318l-342 -1419h-240q-86 242 -191.5 483.5t-228.5 456.5l-225 -940h-313z" />
<glyph unicode="O" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5z" />
<glyph unicode="P" horiz-adv-x="1308" d="M154 0l333 1399q111 20 210.5 28.5t187.5 8.5q129 0 232.5 -28t175 -80t110.5 -128t39 -170q0 -154 -59.5 -260t-164 -172t-246 -94.5t-306.5 -28.5h-80l-115 -475h-317zM651 743h80q86 0 156.5 13.5t121 44t78 79t27.5 117.5q0 92 -66.5 131t-189.5 39q-35 0 -59.5 -2 t-48.5 -4z" />
<glyph unicode="Q" horiz-adv-x="1548" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -141 -43 -283.5t-126 -262.5t-202.5 -206t-273.5 -116v-6q0 -45 29.5 -72t80 -41t116 -20.5t136.5 -10.5l-94 -221q-162 6 -270.5 32.5t-175 70.5t-95 107.5 t-28.5 143.5v15q-197 41 -312.5 190.5t-115.5 390.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5z" />
<glyph unicode="R" horiz-adv-x="1343" d="M154 0l333 1399q111 20 215.5 28.5t190.5 8.5q137 0 239.5 -33t170 -88t100.5 -130t33 -157q0 -68 -15.5 -133.5t-57.5 -124.5t-112.5 -109.5t-181.5 -85.5q57 -106 117.5 -257.5t113.5 -317.5h-342q-47 141 -95 279.5t-107 238.5h-160l-125 -518h-317zM657 770h109 q98 0 165.5 18.5t108.5 49t58.5 70.5t17.5 81q0 35 -10 66.5t-37 56.5t-71.5 39t-114.5 14q-35 0 -72 -2t-61 -4z" />
<glyph unicode="S" horiz-adv-x="1144" d="M82 102l135 244q25 -16 59.5 -34.5t78.5 -35t93.5 -27.5t102.5 -11q47 0 94 7t84 25.5t60.5 52t23.5 87.5q0 41 -22.5 70.5t-57.5 54t-78 45t-86 45.5q-55 33 -104 69.5t-84 82.5t-55.5 102.5t-20.5 130.5q0 94 36 175t106.5 140t177 93t249.5 34q66 0 127.5 -11 t114.5 -27.5t97 -38t75 -42.5l-133 -235q-51 39 -125 65.5t-160 26.5q-47 0 -90 -8t-75.5 -27.5t-52 -50.5t-19.5 -76q0 -41 15.5 -68.5t40 -48t57 -37t69.5 -34.5q63 -33 122.5 -70t104.5 -85t72 -109.5t27 -145.5q0 -117 -43 -203t-121 -143t-185.5 -85t-238.5 -28 q-86 0 -161 14.5t-135 34t-104 42t-71 40.5z" />
<glyph unicode="T" horiz-adv-x="1216" d="M297 1151l65 268h1151l-65 -268h-416l-276 -1151h-320l277 1151h-416z" />
<glyph unicode="U" horiz-adv-x="1398" d="M246 397q0 106 30 228l191 794h319l-200 -839q-20 -74 -21 -150q0 -41 9.5 -73.5t33 -57.5t63.5 -38t99 -13q123 0 186.5 76.5t98.5 218.5l209 876h319l-215 -903q-70 -289 -226.5 -417t-414.5 -128q-133 0 -224 32t-148.5 88t-83 135t-25.5 171z" />
<glyph unicode="V" horiz-adv-x="1409" d="M348 1419h342q6 -117 15.5 -251t21.5 -270t25.5 -270t27.5 -251q63 106 136 233t148 264.5t147.5 276.5t134.5 268h340q-78 -147 -170.5 -317t-198 -352.5t-223 -372t-246.5 -377.5h-299q-33 174 -62.5 360.5t-56.5 370.5t-47.5 359.5t-34.5 328.5z" />
<glyph unicode="W" horiz-adv-x="1916" d="M328 756q0 166 6 330.5t16 332.5h322q-10 -180 -19.5 -353t-9.5 -359v-141.5t4 -143.5q57 100 120.5 213t125 225.5t117 218t94.5 189.5h262q4 -84 11 -190.5t16.5 -220.5t19.5 -226.5t21 -208.5q53 104 108 225t110.5 250t110 262t103.5 260h338q-160 -389 -326 -740 t-356 -679h-299q-16 113 -29.5 216t-25 203.5t-20.5 203t-18 213.5q-117 -217 -230.5 -425t-242.5 -411h-299q-16 190 -23 376.5t-7 379.5z" />
<glyph unicode="X" horiz-adv-x="1370" d="M31 0l645 772l-289 647h352l170 -438q92 111 178.5 224.5t157.5 213.5h350q-59 -84 -125.5 -173t-137 -178t-142.5 -174t-139 -161q43 -96 80.5 -182t72.5 -173t68 -179.5t67 -198.5h-342q-29 88 -52 155.5t-44.5 126t-44 110.5t-49.5 110l-412 -502h-364z" />
<glyph unicode="Y" horiz-adv-x="1335" d="M348 1419h340q33 -147 72 -288t86 -295q59 76 113.5 146.5t105.5 141t101.5 143t103.5 152.5h352q-86 -121 -166 -229.5t-159.5 -212t-163.5 -205.5t-179 -211l-135 -561h-319l135 561q-86 217 -155.5 424t-131.5 434z" />
<glyph unicode="Z" horiz-adv-x="1306" d="M92 0l47 190q82 109 192.5 237t230.5 257t241 250t223 217h-627l66 268h1046l-53 -221q-82 -70 -196.5 -177.5t-239.5 -233t-250 -261t-227 -258.5h712l-65 -268h-1100z" />
<glyph unicode="[" horiz-adv-x="763" d="M61 -379l476 1983h555l-60 -244h-264l-358 -1495h264l-60 -244h-553z" />
<glyph unicode="\" horiz-adv-x="831" d="M307 1604h293l211 -1983h-293z" />
<glyph unicode="]" horiz-adv-x="763" d="M-78 -379l60 244h262l358 1495h-264l59 244h555l-477 -1983h-553z" />
<glyph unicode="^" d="M213 739l575 688h242l240 -716l-266 -113l-160 506l-414 -498z" />
<glyph unicode="_" horiz-adv-x="1030" d="M-61 -379l57 254h1024l-59 -254h-1022z" />
<glyph unicode="`" horiz-adv-x="505" d="M315 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="a" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-20 -82 -20 -164q-1 -35 3 -71q12 -118 48 -210l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5 t-20.5 173zM508 440q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154z" />
<glyph unicode="b" horiz-adv-x="1177" d="M143 51l355 1489l317 49l-127 -528q41 18 82 28.5t88 10.5q98 0 170 -35t119 -94.5t69.5 -139t22.5 -172.5q0 -141 -52 -267t-142.5 -219t-213 -147.5t-266.5 -54.5q-18 0 -64 1t-105.5 9.5t-126 25t-126.5 44.5zM489 231q12 -2 21.5 -4t20 -3t24.5 -1h37q72 0 135.5 35 t109.5 93.5t72.5 132t26.5 153.5q0 98 -33 153.5t-121 55.5q-29 0 -74.5 -10.5t-82.5 -42.5z" />
<glyph unicode="c" horiz-adv-x="983" d="M205 430q0 139 45 262t129 215t203.5 145.5t267.5 53.5q92 0 164.5 -17.5t132.5 -46.5l-105 -237q-41 16 -85 29.5t-107 13.5q-154 0 -242 -103.5t-88 -281.5q0 -104 45 -169t166 -65q59 0 114.5 12.5t98.5 30.5l23 -243q-57 -23 -126 -40.5t-167 -17.5q-127 0 -215 37 t-145.5 99.5t-83 146.5t-25.5 176z" />
<glyph unicode="d" horiz-adv-x="1208" d="M205 416q0 139 50 263t138 216t209 145.5t264 53.5q37 0 69 -4.5t64 -12.5l111 463l317 49l-270 -1124q-20 -82 -20 -164q-1 -35 3 -71q12 -118 48 -210l-273 -38q-12 25 -22 47t-21 51q-57 -47 -127.5 -78t-156.5 -31q-102 0 -175 35t-119 95.5t-67.5 141.5t-21.5 173z M508 438q0 -98 33.5 -154.5t122.5 -56.5q47 0 85.5 18.5t81.5 61.5q4 51 13.5 107.5t19.5 103.5l76 316q-12 2 -21.5 4t-18.5 3t-23.5 1h-36.5q-72 0 -133.5 -34t-105.5 -91.5t-68.5 -130t-24.5 -148.5z" />
<glyph unicode="e" horiz-adv-x="1085" d="M205 422q0 131 46 254t130 218t204 153.5t265 58.5q72 0 133 -20.5t107.5 -59.5t72 -95.5t25.5 -127.5q0 -115 -51.5 -195t-142.5 -130t-216 -72.5t-272 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5 q-127 0 -214.5 36t-141.5 97.5t-78.5 143.5t-24.5 174zM514 592q127 4 205 21.5t121 42t57 53t14 59.5q0 96 -110 96q-104 0 -183 -74.5t-104 -197.5z" />
<glyph unicode="f" horiz-adv-x="897" d="M-74 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l213 893q51 217 184 335.5t375 118.5q92 0 160.5 -19.5t103.5 -35.5l-102 -240q-37 18 -85 27.5t-89 9.5q-113 0 -167 -57t-75 -144l-12 -53h360l-61 -250h-359l-125 -522q-70 -293 -151.5 -455.5t-179.5 -236.5z " />
<glyph unicode="g" horiz-adv-x="1161" d="M68 -303l102 242q63 -29 132 -49.5t169 -20.5q131 0 197.5 58.5t87.5 150.5l8 39q-41 -20 -87 -32.5t-97 -12.5q-96 0 -166 29.5t-114 83t-65.5 126t-21.5 158.5q0 156 57.5 275.5t152.5 199.5t219 121t259 41q98 0 194.5 -20.5t188.5 -63.5l-211 -887 q-31 -133 -81 -230.5t-124.5 -162t-179 -96t-244.5 -31.5q-129 0 -217 23.5t-159 58.5zM516 492q0 -37 6 -69t22.5 -55.5t45 -38t72.5 -14.5q29 0 76.5 10.5t86.5 47.5l113 469q-35 8 -86 8q-78 0 -139.5 -27.5t-105.5 -75t-67.5 -114t-23.5 -141.5z" />
<glyph unicode="h" horiz-adv-x="1157" d="M143 0l369 1540l317 49l-124 -514q41 8 82.5 14.5t82.5 6.5q88 0 151.5 -26t104.5 -72t61.5 -109.5t20.5 -136.5q0 -86 -20 -170l-139 -582h-306l136 569q8 35 15 74t7 74q0 53 -27.5 91t-105.5 38q-33 0 -62.5 -4t-58.5 -11l-198 -831h-306z" />
<glyph unicode="i" horiz-adv-x="579" d="M143 0l256 1077h306l-259 -1077h-303zM428 1362q0 43 17.5 81t46 65.5t66.5 44t81 16.5q63 0 114.5 -38t51.5 -116q0 -43 -17.5 -81t-46 -65.5t-66.5 -44t-81 -16.5q-63 0 -114.5 38t-51.5 116z" />
<glyph unicode="j" horiz-adv-x="593" d="M-184 -340l78 242q29 -10 56 -16.5t62 -6.5q72 0 111 43t55 125l248 1030h305l-250 -1038q-49 -213 -153 -315.5t-297 -102.5q-57 0 -113.5 11.5t-101.5 27.5zM455 1362q0 43 17 81t46 65.5t67 44t81 16.5q63 0 114 -38t51 -116q0 -43 -17 -81t-46 -65.5t-66.5 -44 t-80.5 -16.5q-63 0 -114.5 38t-51.5 116z" />
<glyph unicode="k" horiz-adv-x="1148" d="M143 0l369 1540l317 49l-217 -901q123 98 231.5 200.5t186.5 188.5h344q-115 -127 -238.5 -248.5t-283.5 -259.5q43 -53 87 -122.5t84 -145.5t73.5 -153.5t56.5 -147.5h-340q-18 53 -46 116.5t-61.5 126t-70.5 122t-74 106.5l-115 -471h-303z" />
<glyph unicode="l" horiz-adv-x="645" d="M231 453l261 1087l317 49l-285 -1179q-8 -37 -9 -68t11.5 -54.5t42 -37.5t82.5 -19l-61 -251q-145 0 -228 38q-83 36 -119 102q-35 64 -35 146q0 85 23 187z" />
<glyph unicode="m" horiz-adv-x="1732" d="M143 0l248 1028q35 10 75 23.5t90 24.5t112.5 18.5t144.5 7.5q98 0 162.5 -24.5t118.5 -73.5q76 43 150.5 70.5t174.5 27.5q96 0 165 -25.5t114 -74t65.5 -115t20.5 -146.5q0 -37 -5 -77.5t-16 -81.5l-139 -582h-305l135 569q6 29 13.5 65t7.5 71q0 57 -27 99t-105 42 q-43 0 -81.5 -15.5t-69.5 -31.5q4 -16 4 -30.5v-27.5q0 -37 -5 -77.5t-15 -81.5l-140 -582h-305l135 569q6 29 13.5 65t7.5 71q0 57 -26.5 99t-104.5 42q-33 0 -55.5 -3t-53.5 -9l-198 -834h-306z" />
<glyph unicode="n" horiz-adv-x="1161" d="M143 0l248 1028q35 10 77 23.5t94 24.5t116.5 18.5t146.5 7.5q242 0 332 -140q54 -84 54 -205q0 -80 -23 -175l-139 -582h-306l136 569q12 53 19 103q3 24 3 45q0 24 -4 44q-8 38 -38 61.5t-91 23.5q-59 0 -121 -12l-198 -834h-306z" />
<glyph unicode="o" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39 t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5z" />
<glyph unicode="p" horiz-adv-x="1183" d="M51 -379l340 1417q82 25 187.5 44.5t228.5 19.5q115 0 197.5 -35t136 -95.5t79 -141.5t25.5 -173q0 -150 -49 -273.5t-136 -213.5t-209 -140t-265 -50q-70 0 -140 12l-92 -371h-303zM502 238q35 -8 86 -9q80 0 145.5 30t111.5 83t71.5 128t25.5 165q0 88 -39 149.5 t-135 61.5q-66 0 -123 -12z" />
<glyph unicode="q" horiz-adv-x="1173" d="M205 418q0 160 54 286.5t149.5 215t222.5 135.5t274 47q190 0 391 -80l-333 -1401h-306l95 397q-88 -38 -180 -38h-5q-78 0 -144.5 29.5t-114.5 86t-75.5 138.5t-27.5 184zM508 440q0 -117 39 -162t106 -45q39 0 77 11.5t85 40.5l135 557q-20 4 -42.5 6t-45.5 2 q-84 0 -149.5 -33t-111.5 -89t-69.5 -131t-23.5 -157z" />
<glyph unicode="r" horiz-adv-x="872" d="M143 0l246 1020q88 29 197.5 54.5t247.5 25.5q51 0 113.5 -9.5t109.5 -29.5l-90 -246q-41 10 -81 19.5t-118 9.5q-29 0 -63.5 -5t-57.5 -12l-198 -827h-306z" />
<glyph unicode="s" horiz-adv-x="989" d="M102 66l105 233q35 -20 109 -51t178 -31t143 29.5t39 64.5q0 23 -7 39.5t-23.5 30.5t-45.5 29.5t-74 35.5q-51 23 -96 48.5t-79 61.5t-53 82t-19 110q0 166 121.5 262t355.5 96q111 0 196.5 -24.5t139.5 -53.5l-105 -227q-43 23 -110.5 43t-133.5 20q-29 0 -56.5 -3 t-51 -13t-37.5 -28.5t-14 -49.5q0 -41 31.5 -61.5t89.5 -49.5q80 -39 133 -71.5t84.5 -69.5t46 -84t14.5 -110q0 -66 -27.5 -129.5t-87 -112.5t-151.5 -80t-221 -31q-80 0 -144.5 10.5t-114 26t-83 31.5t-52.5 27z" />
<glyph unicode="t" horiz-adv-x="851" d="M207 299q4 94 29 199l200 848l318 49l-78 -318h340l-62 -250h-338l-90 -376q-12 -47 -15 -88q-1 -7 0 -15q1 -32 11 -56q14 -30 46 -46.5t89 -16.5q49 0 95.5 9.5t93.5 25.5l22 -233q-61 -23 -132.5 -39.5t-170.5 -16.5q-141 0 -219 42t-110 115q-29 65 -29 147v20z" />
<glyph unicode="u" horiz-adv-x="1189" d="M206 303v21q0 84 21 172l140 581h305l-137 -577q-9 -44 -17 -92q-4 -26 -4 -51q0 -19 2 -37q6 -40 31.5 -65.5t81.5 -25.5q47 0 87 17.5t85 60.5q4 51 13 107.5t20 103.5l133 559h305l-146 -612q-20 -82 -20 -164q0 -35 4 -71q12 -118 47 -210l-272 -38q-23 45 -43 100 q-57 -45 -129 -76t-160 -31q-121 0 -195.5 44t-111.5 117t-40 167z" />
<glyph unicode="v" horiz-adv-x="1118" d="M256 1077h315q2 -80 6.5 -175t10.5 -191.5t14 -187.5t19 -165q45 61 101 151.5t109.5 189t98.5 197.5t69 181h324q-53 -145 -132 -298.5t-169 -297t-183.5 -268.5t-172.5 -213h-254q-53 205 -96.5 478.5t-59.5 598.5z" />
<glyph unicode="w" horiz-adv-x="1671" d="M266 1077h299q0 -74 1 -160t4 -178t9.5 -188t16.5 -191q51 86 101.5 179.5t96.5 186.5t86 183t70 168h254q0 -147 5 -329.5t26 -387.5q55 92 102 189.5t87 192t72 180.5t56 155h324q-41 -102 -97.5 -230t-130 -269.5t-165.5 -289t-205 -288.5h-238q-25 168 -37 321.5 t-16 309.5q-39 -84 -87 -171t-98 -170t-97.5 -158t-83.5 -132h-238q-16 86 -33.5 205t-34 259t-30 297t-19.5 316z" />
<glyph unicode="x" horiz-adv-x="1124" d="M41 0l489 549l-264 528h309l156 -336q70 86 132.5 168t119.5 168h305q-86 -123 -188.5 -255t-237.5 -275q82 -154 139.5 -284t102.5 -263h-301q-37 100 -74 184t-72 156l-297 -340h-319z" />
<glyph unicode="y" horiz-adv-x="1089" d="M-51 -330l92 240q41 -16 73.5 -25.5t80.5 -9.5q72 0 136 46t107 124q-53 205 -97 459t-60 573h313q2 -80 8 -176t14.5 -193.5t18.5 -189.5t22 -166q98 147 173 327.5t141 397.5h323q-57 -156 -115.5 -291t-122 -256.5t-131 -232.5t-143.5 -219q-55 -80 -114.5 -162 t-132 -147.5t-161.5 -106.5t-206 -41q-72 0 -123 13.5t-96 35.5z" />
<glyph unicode="z" horiz-adv-x="1077" d="M123 0l43 178q59 74 136 160t160 174t166 169t154 146h-438l62 250h835l-49 -203q-47 -41 -123 -111.5t-164 -155.5t-180 -178t-172 -179h500l-62 -250h-868z" />
<glyph unicode="{" horiz-adv-x="759" d="M164 492l59 241q63 0 108.5 14.5t76 40t48 60.5t27.5 78l74 309q23 92 61.5 161.5t102 116t157 69t222.5 22.5h41l-60 -244h-51q-49 0 -83 -11.5t-56.5 -33t-35.5 -52t-21 -71.5l-64 -272q-12 -53 -28.5 -98.5t-45 -84.5t-72.5 -69.5t-112 -55.5q72 -33 98.5 -79 t26.5 -105q0 -47 -16 -123l-64 -272q-12 -49 -12 -82q0 -47 28.5 -66.5t98.5 -19.5h51l-59 -244h-41q-180 0 -275.5 56.5t-95.5 205.5q0 61 22 162l60 254q20 98 -16.5 145.5t-153.5 47.5z" />
<glyph unicode="|" horiz-adv-x="622" d="M61 -379l476 1983h290l-477 -1983h-289z" />
<glyph unicode="}" horiz-adv-x="759" d="M-104 -379l59 244h51q51 0 84 10t54.5 31.5t35 53.5t23.5 73l63 272q12 53 28.5 98.5t45.5 84t73 69.5t111 55q-72 33 -98.5 79t-26.5 106q0 47 17 123l63 272q12 49 13 82q0 47 -29 66.5t-98 19.5h-52l60 244h41q180 0 275 -56.5t95 -206.5q0 -61 -22 -161l-60 -254 q-20 -98 17 -145.5t153 -47.5l-59 -241q-63 0 -108.5 -14.5t-76 -40t-48 -60.5t-27.5 -78l-74 -309q-23 -92 -61.5 -162t-102 -116t-156.5 -68.5t-222 -22.5h-41z" />
<glyph unicode="~" d="M168 465q23 70 56.5 135.5t81.5 115.5t110.5 79.5t142.5 29.5q68 0 118 -24.5t91 -53t79 -53t83 -24.5q18 0 33.5 4t32 19.5t35 45t42.5 80.5l195 -57q-29 -78 -64 -143.5t-81 -113.5t-106 -76t-140 -28q-68 0 -118 25t-91 53.5t-79 53t-83 24.5q-18 0 -33.5 -4 t-32 -19.5t-35 -45t-43.5 -80.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="604" d="M66 -358l88 366q41 166 87 309.5t101 290.5h233q-16 -147 -36.5 -290.5t-59.5 -309.5l-88 -366h-325zM330 877q0 47 17.5 85.5t46 66.5t65.5 43t76 15q72 0 119.5 -39.5t47.5 -125.5q0 -47 -17 -86t-46 -67t-65.5 -43t-75.5 -15q-72 0 -120 40t-48 126z" />
<glyph unicode="&#xa2;" d="M299 479q0 131 37 238.5t101.5 189.5t150.5 137.5t184 79.5l72 295h291l-70 -286q90 -18 170 -64l-102 -235q-49 29 -100.5 41t-98.5 12q-70 0 -128 -26.5t-101 -77t-67 -125t-24 -169.5q0 -102 52.5 -140t126.5 -38q59 0 124.5 16.5t118.5 37.5l23 -244 q-59 -25 -123 -40t-125 -22l-68 -282h-290l75 315q-104 43 -166.5 135t-62.5 252z" />
<glyph unicode="&#xa3;" d="M213 0q74 166 120 303t77 254h-179l60 250h178l51 197q33 123 89.5 207.5t128 137t154.5 75t173 22.5q92 0 171 -20.5t144 -55.5l-123 -225q-104 47 -194 47q-43 0 -83 -10.5t-74 -38t-61.5 -76.5t-45.5 -127l-33 -133h360l-59 -250h-360q-18 -72 -45 -152.5t-54 -148.5 h555l-61 -256h-889z" />
<glyph unicode="&#xa4;" d="M195 385l147 141q-43 80 -43 185q0 104 43 184l-147 141l192 189l152 -148q43 20 88 28.5t98 8.5q51 0 97 -8t91 -29l152 146l190 -187l-147 -141q43 -80 43 -184t-43 -185l147 -141l-192 -188l-152 147q-43 -20 -88 -28.5t-98 -8.5q-51 0 -97 8.5t-91 28.5l-152 -145z M557 711q0 -88 49 -133.5t119 -45.5t119 45.5t49 133.5t-49 133t-119 45t-119 -45t-49 -133z" />
<glyph unicode="&#xa5;" d="M172 227l47 195h297l33 141h-297l47 195h236q-33 84 -65 171t-60.5 173t-52 167t-40.5 150h320q14 -74 30.5 -138t35 -127.5t39.5 -130t46 -140.5q104 135 196.5 259t191.5 277h331q-115 -172 -237.5 -331.5t-261.5 -329.5h206l-47 -195h-299l-32 -141h299l-48 -195h-299 l-55 -227h-319l55 227h-297z" />
<glyph unicode="&#xa6;" horiz-adv-x="618" d="M49 -379l195 813h291l-197 -813h-289zM328 791l196 813h291l-197 -813h-290z" />
<glyph unicode="&#xa7;" horiz-adv-x="1054" d="M74 -135l104 217q125 -70 252 -70q117 0 167 39t50 86q0 33 -19.5 62.5t-54.5 46.5l-153 78q-104 51 -148.5 119.5t-44.5 144.5q0 98 66.5 195.5t177.5 162.5q-57 70 -57 166q0 63 30.5 124.5t90 109t149.5 77t209 29.5q92 0 179 -20.5t157 -61.5l-105 -217 q-63 33 -122.5 47t-112.5 14q-86 0 -136.5 -30.5t-50.5 -77.5q0 -23 16.5 -44.5t57.5 -41.5l154 -78q104 -53 148 -121.5t44 -144.5q0 -98 -61.5 -190.5t-159.5 -151.5l-27 -17q61 -84 62 -172q0 -68 -29.5 -134t-91 -118.5t-157 -85t-224.5 -32.5q-98 0 -196.5 22.5 t-163.5 67.5zM498 637q0 -41 29.5 -81t101.5 -75l88 -43q61 41 98 88t37 99q0 45 -35 88t-112 80l-72 32q-59 -39 -97 -88t-38 -100z" />
<glyph unicode="&#xa8;" horiz-adv-x="1097" d="M473 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM928 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12 q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xa9;" horiz-adv-x="1630" d="M246 711q0 174 58 312t156.5 233.5t227.5 145.5t270 50t270.5 -50t227.5 -145.5t156.5 -233.5t58.5 -312q0 -176 -58.5 -313.5t-156.5 -232.5t-227 -145.5t-271 -50.5q-141 0 -270 50.5t-227.5 145.5t-156.5 232.5t-58 313.5zM455 711q0 -123 36.5 -223.5t103.5 -172 t160 -110.5t203 -39q111 0 204 39t160 110.5t103.5 172t36.5 223.5t-36.5 223t-103.5 172t-160 110.5t-204 38.5t-203.5 -38.5t-159.5 -110.5t-103.5 -172t-36.5 -223zM616 715q0 186 101.5 285.5t267.5 99.5q98 0 158.5 -26.5t83.5 -39.5l-66 -180q-29 16 -64.5 27.5 t-92.5 11.5q-68 0 -109 -43t-41 -125q0 -37 6 -70.5t22.5 -59.5t45 -42t76.5 -16q61 0 102 14t74 27l57 -187q-27 -14 -90.5 -38.5t-155.5 -24.5q-184 0 -279.5 100t-95.5 287z" />
<glyph unicode="&#xaa;" horiz-adv-x="966" d="M307 956q0 86 33 174.5t99.5 159t168 115.5t240.5 45q59 0 124.5 -8t137.5 -29l-90 -381q-20 -70 -26.5 -163t38.5 -210l-192 -26l-27 63q-109 -72 -215 -71q-72 0 -126 26.5t-91 72.5t-55.5 106.5t-18.5 125.5zM524 979q0 -61 32 -105.5t97 -44.5q29 0 59.5 10.5 t63.5 34.5q-2 6 -2 29q0 31 6 63.5t15 63.5l55 213q-14 2 -27.5 3t-25.5 1q-55 0 -104.5 -18.5t-87.5 -54t-59.5 -85t-21.5 -110.5z" />
<glyph unicode="&#xab;" horiz-adv-x="1255" d="M205 594l448 479l193 -115l-322 -403l148 -371l-203 -94zM758 594l448 479l193 -115l-322 -403l148 -371l-203 -94z" />
<glyph unicode="&#xac;" d="M207 584l61 256h963l-178 -736h-279l117 480h-684z" />
<glyph unicode="&#xad;" horiz-adv-x="702" d="M150 473l67 277h594l-68 -277h-593z" />
<glyph unicode="&#xae;" horiz-adv-x="1630" d="M246 711q0 174 58 312t156.5 233.5t227.5 145.5t270 50t270.5 -50t227.5 -145.5t156.5 -233.5t58.5 -312q0 -176 -58.5 -313.5t-156.5 -232.5t-227 -145.5t-271 -50.5q-141 0 -270 50.5t-227.5 145.5t-156.5 232.5t-58 313.5zM455 711q0 -123 36.5 -223.5t103.5 -172 t160 -110.5t203 -39q111 0 204 39t160 110.5t103.5 172t36.5 223.5t-36.5 223t-103.5 172t-160 110.5t-204 38.5t-203.5 -38.5t-159.5 -110.5t-103.5 -172t-36.5 -223zM688 362v701q70 16 130.5 23.5t105.5 7.5q330 0 329 -248q0 -127 -110 -187q23 -35 40 -66.5t34.5 -65 t35 -73.5t39.5 -92h-209q-35 78 -59.5 136.5t-54.5 105.5h-82v-242h-199zM887 764h37q66 0 98.5 17.5t32.5 66.5q0 41 -29 57.5t-84 16.5q-14 0 -29.5 -1t-25.5 -3v-154z" />
<glyph unicode="&#xaf;" horiz-adv-x="770" d="M350 1276l51 209h660l-51 -209h-660z" />
<glyph unicode="&#xb0;" horiz-adv-x="782" d="M328 1282q0 74 26.5 132.5t71.5 100t105 63t126 21.5t126.5 -21.5t105.5 -63t71.5 -100t26.5 -132.5t-26.5 -132t-71.5 -100t-105.5 -63.5t-126.5 -21.5t-126 21.5t-105 63.5t-71.5 100t-26.5 132zM545 1282q0 -53 34.5 -85t77.5 -32t78 32t35 85t-35 85t-78 32 t-77.5 -32t-34.5 -85z" />
<glyph unicode="&#xb1;" d="M90 0l60 256h962l-61 -256h-961zM252 676l61 256h342l84 348h279l-84 -348h342l-62 -256h-342l-84 -348h-278l84 348h-342z" />
<glyph unicode="&#xb2;" horiz-adv-x="743" d="M213 618q0 63 12.5 118t43 104t85 95t140.5 93q59 33 94 56.5t53 43t23.5 37t5.5 37.5q0 27 -20.5 43.5t-55.5 16.5q-39 0 -91 -22.5t-118 -76.5l-76 162q139 127 326 127q51 0 97 -12.5t81 -38t55.5 -66.5t20.5 -96q0 -94 -49 -164.5t-160 -140.5q-29 -18 -57.5 -35.5 t-54 -35t-44 -32t-24.5 -26.5h342l-41 -187h-588z" />
<glyph unicode="&#xb3;" horiz-adv-x="743" d="M188 668l82 172q39 -25 98.5 -40.5t118.5 -15.5q66 0 115 22.5t49 76.5q0 35 -30.5 54t-98.5 19h-104l41 158h92q66 0 101.5 31t35.5 65q0 25 -22.5 43.5t-71.5 18.5q-51 0 -104.5 -16.5t-94.5 -36.5l-43 163q51 27 132 48.5t163 21.5q49 0 93 -9t78 -33t53.5 -61.5 t19.5 -93.5q0 -59 -35 -116.5t-100 -85.5q45 -23 71.5 -69t26.5 -101q0 -78 -33 -131.5t-86 -87t-121.5 -49t-138.5 -15.5q-82 0 -157.5 17.5t-129.5 50.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="585" d="M362 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xb5;" horiz-adv-x="1294" d="M72 -340l338 1417h305l-137 -577q-8 -35 -15.5 -73t-9.5 -73q0 -53 27.5 -89t111.5 -36q27 0 70 13.5t102 66.5q4 51 13.5 107.5t19.5 101.5l133 559h305l-145 -612q-10 -41 -17.5 -75t-7.5 -60q0 -47 27 -70.5t98 -28.5l-100 -254q-129 2 -194.5 32t-94.5 73 q-68 -49 -142.5 -78t-146.5 -29q-45 0 -88 13.5t-80 42.5q0 -47 -6 -92t-24 -121l-39 -158h-303z" />
<glyph unicode="&#xb6;" horiz-adv-x="1454" d="M317 895q0 131 61.5 232.5t173.5 169t270.5 102.5t355.5 35q94 0 192 -8.5t209 -26.5l-426 -1778h-291l377 1571q-29 4 -70 6t-86 2l-378 -1579h-291l219 907q-147 23 -231.5 115t-84.5 252z" />
<glyph unicode="&#xb7;" horiz-adv-x="495" d="M201 581q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode="&#xb8;" horiz-adv-x="667" d="M-2 -406l74 168q27 -12 60.5 -20t64.5 -8q82 0 82 49q0 23 -14.5 37t-47.5 28l-41 19q12 20 30.5 46t36 51.5t33 46t21.5 30.5h192q-8 -10 -20 -27.5t-25.5 -36t-26 -37t-20.5 -30.5q45 -23 67.5 -59.5t22.5 -77.5q0 -59 -23.5 -102.5t-63.5 -71t-91 -40t-104 -12.5 q-55 0 -109.5 12.5t-97.5 34.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="743" d="M319 1266q98 35 187.5 79t161.5 91h178l-195 -818h-233l131 553q-45 -23 -93 -42t-114 -42z" />
<glyph unicode="&#xba;" horiz-adv-x="899" d="M287 918q0 102 29.5 198t88 171t146.5 120t203 45q160 0 234.5 -78t74.5 -213q0 -102 -29.5 -198.5t-88 -171t-146.5 -119.5t-203 -45q-160 0 -234.5 78t-74.5 213zM500 934q0 -39 10 -62.5t26.5 -37t38 -18.5t43.5 -5q45 0 87.5 25.5t74 70.5t51 105.5t19.5 132.5 q0 37 -10.5 61.5t-26.5 37.5t-37.5 18.5t-44.5 5.5q-45 0 -87 -25.5t-73.5 -71t-51 -106.5t-19.5 -131z" />
<glyph unicode="&#xbb;" horiz-adv-x="1255" d="M125 205l321 403l-147 371l203 94l264 -504l-449 -479zM676 205l321 403l-147 371l203 94l264 -504l-449 -479z" />
<glyph unicode="&#xbc;" horiz-adv-x="1798" d="M280 1266q98 35 187.5 79t161.5 91h178l-195 -818h-233l131 553q-45 -23 -93 -42t-114 -42zM352 0l1071 1419h278l-1067 -1419h-282zM1054 185l31 141q113 145 236.5 267t277.5 229h191l-115 -473h94l-39 -164h-94l-45 -183h-193l45 183h-389zM1296 349h186l64 260 q-63 -55 -130 -122t-120 -138z" />
<glyph unicode="&#xbd;" horiz-adv-x="1798" d="M301 1266q98 35 187.5 79t161.5 91h178l-195 -818h-233l131 553q-45 -23 -93 -42t-114 -42zM316 0l1071 1419h278l-1067 -1419h-282zM1163 4q0 63 12.5 118t43 104t85 95t140.5 93q59 33 94 56.5t53 43t23.5 37t5.5 37.5q0 27 -20.5 43.5t-55.5 16.5q-39 0 -91 -22.5 t-118 -76.5l-76 162q139 127 326 127q51 0 97 -12.5t81 -38t55.5 -66.5t20.5 -96q0 -94 -49 -164.5t-160 -140.5q-29 -18 -57.5 -35.5t-54 -35t-44 -32t-24.5 -26.5h342l-41 -187h-588z" />
<glyph unicode="&#xbe;" horiz-adv-x="1798" d="M170 668l82 172q39 -25 98.5 -40.5t118.5 -15.5q66 0 115 22.5t49 76.5q0 35 -30.5 54t-98.5 19h-104l41 158h92q66 0 101.5 31t35.5 65q0 25 -22.5 43.5t-71.5 18.5q-51 0 -104.5 -16.5t-94.5 -36.5l-43 163q51 27 132 48.5t163 21.5q49 0 93 -9t78 -33t53.5 -61.5 t19.5 -93.5q0 -59 -35 -116.5t-100 -85.5q45 -23 71.5 -69t26.5 -101q0 -78 -33 -131.5t-86 -87t-121.5 -49t-138.5 -15.5q-82 0 -157.5 17.5t-129.5 50.5zM393 0l1071 1419h278l-1067 -1419h-282zM1095 185l31 141q113 145 236.5 267t277.5 229h191l-115 -473h94l-39 -164 h-94l-45 -183h-193l45 183h-389zM1337 349h186l64 260q-63 -55 -130 -122t-120 -138z" />
<glyph unicode="&#xbf;" horiz-adv-x="880" d="M82 -102q0 88 27.5 153.5t70.5 116.5t97.5 93t107.5 83q78 57 136.5 116.5t66.5 137.5h270q0 -66 -19.5 -118t-53 -98t-79 -86t-96.5 -79q-61 -47 -105 -82t-71.5 -64.5t-40 -55t-12.5 -56.5q0 -53 38 -77.5t95 -24.5q37 0 78 7t80 18.5t73.5 25.5t61.5 31l39 -240 q-80 -45 -183.5 -72.5t-207.5 -27.5q-74 0 -141.5 18t-119 56t-82 94.5t-30.5 130.5zM584 866q0 47 17 86t46 67t66 43t75 15q72 0 120 -40t48 -126q0 -47 -17 -86t-46 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode="&#xc0;" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5zM761 1803l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xc1;" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5zM851 1635l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xc2;" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5zM792 1649l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xc3;" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5zM746 1649q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5t49.5 -11.5q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#xc4;" horiz-adv-x="1462" d="M31 0q133 229 248.5 423.5t223 367t210 327t209.5 301.5h284q33 -147 62.5 -326.5t55.5 -366.5t47.5 -374.5t39.5 -351.5h-321q-4 80 -9.5 156.5t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5 t-160 -276.5zM747 1696q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM1202 1696q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36 t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xc5;" horiz-adv-x="1462" d="M31 0q131 225 245.5 417.5t220 363.5t207 323.5t205.5 298.5q-29 31 -46 73t-17 95q0 57 19.5 101t53 74t76.5 45t90 15q49 0 93.5 -15t78 -45t53 -74t19.5 -101q0 -72 -31.5 -123t-80.5 -80q31 -147 59.5 -320.5t53 -353.5t45 -358t36.5 -336h-321q-4 80 -9.5 156.5 t-11.5 152.5h-532q-41 -76 -86 -152.5t-86 -156.5h-334zM666 559h383q-10 125 -22 266.5t-32 282.5q-86 -137 -169 -272.5t-160 -276.5zM993 1571q0 -47 29 -71.5t63 -24.5q37 0 66 24.5t29 71.5t-29 71.5t-66 24.5q-35 0 -63.5 -24.5t-28.5 -71.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="2000" d="M0 0q172 221 319.5 409.5t289 357.5t283.5 328.5t300 323.5h1014l-66 -268h-606l-66 -279h535l-64 -262h-534l-82 -342h653l-65 -268h-953l82 336h-458q-63 -78 -131 -168t-123 -168h-328zM770 590h330l127 528q-43 -47 -101.5 -113.5t-121 -139t-124 -145.5t-110.5 -130 z" />
<glyph unicode="&#xc7;" horiz-adv-x="1306" d="M252 573q0 160 56.5 318t166 281.5t268 201.5t365.5 78q98 0 193.5 -22.5t199.5 -79.5l-115 -248q-86 45 -153.5 61.5t-145.5 16.5q-117 0 -210 -47.5t-159.5 -128t-101 -187t-34.5 -225.5q0 -180 78.5 -262t226.5 -82q98 0 181 20.5t155 53.5l34 -261 q-84 -41 -183 -64.5t-245 -25.5q-12 -16 -22 -32.5t-19 -28.5q45 -23 68 -59.5t23 -77.5q0 -59 -24 -102.5t-63.5 -71t-91 -40t-104.5 -12.5q-55 0 -109.5 12.5t-97.5 34.5l74 168q27 -12 60.5 -20t64.5 -8q82 0 82 49q0 23 -14.5 37t-47.5 28l-41 19l84 125 q-186 47 -292.5 199.5t-106.5 381.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1216" d="M154 0l340 1419h927l-65 -262h-608l-66 -287h537l-64 -258h-537l-81 -348h655l-66 -264h-972zM700 1803l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xc9;" horiz-adv-x="1216" d="M154 0l340 1419h927l-65 -262h-608l-66 -287h537l-64 -258h-537l-81 -348h655l-66 -264h-972zM835 1635l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xca;" horiz-adv-x="1216" d="M154 0l340 1419h927l-65 -262h-608l-66 -287h537l-64 -258h-537l-81 -348h655l-66 -264h-972zM720 1649l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xcb;" horiz-adv-x="1216" d="M154 0l340 1419h927l-65 -262h-608l-66 -287h537l-64 -258h-537l-81 -348h655l-66 -264h-972zM625 1696q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM1080 1696q0 39 14 72t38 55.5 t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xcc;" horiz-adv-x="638" d="M154 0l340 1419h319l-342 -1419h-317zM348 1803l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xcd;" horiz-adv-x="638" d="M154 0l340 1419h319l-342 -1419h-317zM514 1635l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xce;" horiz-adv-x="638" d="M154 0l340 1419h319l-342 -1419h-317zM405 1649l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xcf;" horiz-adv-x="638" d="M154 0l340 1419h319l-342 -1419h-317zM342 1696q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM797 1696q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101 q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xd0;" horiz-adv-x="1470" d="M133 618l53 236h166l131 541q117 23 224.5 32t193.5 9q152 0 271.5 -41t202.5 -117t126 -180.5t43 -231.5q0 -207 -67.5 -370.5t-193.5 -277.5t-306 -175t-408 -61q-86 0 -198.5 10t-216.5 33l143 593h-164zM526 256q23 -2 46.5 -3t64.5 -1q133 0 240.5 41t182.5 117.5 t116 188.5t41 251q0 72 -18.5 130t-60.5 100t-108.5 64.5t-161.5 22.5q-61 0 -125 -6l-73 -307h260l-56 -236h-262z" />
<glyph unicode="&#xd1;" horiz-adv-x="1519" d="M154 0l340 1419h243q47 -72 101.5 -169t112 -209.5t114.5 -234.5t109 -241l202 854h318l-342 -1419h-240q-86 242 -191.5 483.5t-228.5 456.5l-225 -940h-313zM776 1649q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5t49.5 -11.5q29 0 52 16.5t58 67.5 l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5zM897 1803l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xd3;" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5zM849 1635l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xd4;" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5zM790 1649l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xd5;" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5zM733 1649q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5t49.5 -11.5q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54 q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1550" d="M252 567q0 160 55 317.5t158.5 283.5t253 205t338.5 79q125 0 229.5 -41t180 -117.5t117.5 -187.5t42 -250q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-125 0 -229.5 41t-180 118t-117.5 187.5t-42 249.5zM580 590q0 -154 64.5 -249t209.5 -95q94 0 175 49 t141.5 131t94 187.5t33.5 220.5q0 154 -64.5 249t-209.5 95q-94 0 -175 -49.5t-141.5 -131.5t-94 -188.5t-33.5 -218.5zM735 1696q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98z M1190 1696q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xd7;" d="M182 340l350 283l-208 276l208 168l207 -276l353 284l143 -188l-350 -283l209 -276l-209 -168l-207 276l-352 -284z" />
<glyph unicode="&#xd8;" horiz-adv-x="1550" d="M207 37l145 166q-100 143 -100 364q0 160 55 317.5t158.5 283.5t253 205t338.5 79q184 0 319 -86l127 145l160 -129l-139 -159q49 -72 75.5 -164t26.5 -203q0 -160 -54 -318.5t-157.5 -284.5t-253.5 -204t-340 -78q-188 0 -323 86l-131 -149zM569 578q0 -33 2 -62t9 -55 l604 686q-60 41 -150 41q-96 0 -180 -53.5t-147.5 -139.5t-100.5 -195.5t-37 -221.5zM688 276q59 -41 154 -40q94 0 179 52t148.5 138t101.5 194.5t38 223.5q0 66 -13 121z" />
<glyph unicode="&#xd9;" horiz-adv-x="1398" d="M246 397q0 106 30 228l191 794h319l-200 -839q-20 -74 -21 -150q0 -41 9.5 -73.5t33 -57.5t63.5 -38t99 -13q123 0 186.5 76.5t98.5 218.5l209 876h319l-215 -903q-70 -289 -226.5 -417t-414.5 -128q-133 0 -224 32t-148.5 88t-83 135t-25.5 171zM718 1803l189 161 l276 -338l-131 -118z" />
<glyph unicode="&#xda;" horiz-adv-x="1398" d="M246 397q0 106 30 228l191 794h319l-200 -839q-20 -74 -21 -150q0 -41 9.5 -73.5t33 -57.5t63.5 -38t99 -13q123 0 186.5 76.5t98.5 218.5l209 876h319l-215 -903q-70 -289 -226.5 -417t-414.5 -128q-133 0 -224 32t-148.5 88t-83 135t-25.5 171zM827 1635l328 329 l158 -178l-363 -278z" />
<glyph unicode="&#xdb;" horiz-adv-x="1398" d="M246 397q0 106 30 228l191 794h319l-200 -839q-20 -74 -21 -150q0 -41 9.5 -73.5t33 -57.5t63.5 -38t99 -13q123 0 186.5 76.5t98.5 218.5l209 876h319l-215 -903q-70 -289 -226.5 -417t-414.5 -128q-133 0 -224 32t-148.5 88t-83 135t-25.5 171zM755 1649l367 297 l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xdc;" horiz-adv-x="1398" d="M246 397q0 106 30 228l191 794h319l-200 -839q-20 -74 -21 -150q0 -41 9.5 -73.5t33 -57.5t63.5 -38t99 -13q123 0 186.5 76.5t98.5 218.5l209 876h319l-215 -903q-70 -289 -226.5 -417t-414.5 -128q-133 0 -224 32t-148.5 88t-83 135t-25.5 171zM686 1696q0 39 14.5 72 t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM1141 1696q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xdd;" horiz-adv-x="1335" d="M348 1419h340q33 -147 72 -288t86 -295q59 76 113.5 146.5t105.5 141t101.5 143t103.5 152.5h352q-86 -121 -166 -229.5t-159.5 -212t-163.5 -205.5t-179 -211l-135 -561h-319l135 561q-86 217 -155.5 424t-131.5 434zM792 1635l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xde;" horiz-adv-x="1316" d="M152 0l340 1419h319l-49 -205q14 2 37.5 3.5t48 2.5t46.5 1h34q129 0 221 -33t152.5 -88.5t89 -127t28.5 -149.5q0 -94 -40 -193.5t-129 -181t-231 -134t-345 -52.5h-142l-63 -262h-317zM598 535h100q86 0 158 13t124 44t81 82t29 129q0 84 -72 115.5t-193 31.5 q-35 0 -69.5 -2t-59.5 -4z" />
<glyph unicode="&#xdf;" horiz-adv-x="1304" d="M-74 -348q53 49 98.5 120.5t81 151.5t61.5 163t42 155l219 921q27 117 81 198t126 132t157 73.5t173 22.5q82 0 158.5 -21.5t135 -60.5t93 -95t34.5 -126t-31.5 -139.5t-99.5 -132.5q-31 -29 -60.5 -55.5t-53 -53t-39 -55.5t-15.5 -59q0 -43 39 -75t88 -69l41 -31 q55 -41 84 -104t29 -135q0 -102 -41 -178t-108.5 -125t-154.5 -74t-179 -25q-82 0 -161 18.5t-146 55.5l108 240q59 -35 112.5 -49.5t98.5 -14.5q76 0 121 34t45 85q0 27 -16.5 54.5t-51.5 54.5l-92 67q-80 59 -104.5 114.5t-24.5 115.5q0 61 23.5 110t59.5 90t78 75 t78 67.5t59.5 68.5t23.5 78q0 47 -45 69.5t-105 22.5q-74 0 -137.5 -47t-91.5 -162l-195 -817q-70 -293 -151.5 -455.5t-180.5 -236.5z" />
<glyph unicode="&#xe0;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM723 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xe1;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM727 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xe2;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM596 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xe3;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM569 1315q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5t49.5 -11.5 q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM528 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5 t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM983 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xe5;" horiz-adv-x="1204" d="M205 418q0 141 50 266t139 218t210 146.5t262 53.5q18 0 64.5 -2t106 -9.5t125 -23.5t124.5 -45l-133 -557q-29 -117 -16.5 -234.5t47.5 -210.5l-273 -38q-12 25 -22 47t-21 51q-57 -47 -126.5 -78t-155.5 -31q-102 0 -175 36t-119 96.5t-66.5 141.5t-20.5 173zM508 440 q0 -98 32.5 -155.5t121.5 -57.5q47 0 84.5 18.5t80.5 61.5q4 51 13.5 107.5t19.5 103.5l80 324q-27 4 -48.5 6t-51.5 2q-70 0 -130.5 -35t-105.5 -91t-70.5 -130t-25.5 -154zM684 1432q0 57 19.5 101t53 73.5t76.5 45t90 15.5q49 0 93.5 -15.5t78 -45t53 -73.5t19.5 -101 t-19.5 -101.5t-53 -74t-77.5 -45t-94 -15.5q-47 0 -90 15.5t-76.5 45t-53 73.5t-19.5 102zM831 1432q0 -47 29 -72t63 -25q37 0 66 25t29 72t-29 71.5t-66 24.5q-35 0 -63.5 -24.5t-28.5 -71.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1714" d="M184 274q0 115 50.5 195t140.5 130t213 72.5t270 22.5q-14 86 -62 122t-153 36q-66 0 -133.5 -11.5t-126.5 -33.5l-23 240q72 25 158 42t172 17q117 0 217.5 -39t161.5 -139q39 43 88 76.5t102.5 56t109.5 34t110 11.5q68 0 129 -18.5t107 -56.5t74 -95t28 -133 q0 -115 -50.5 -195t-140.5 -130t-213 -72.5t-270 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l22 -239q-78 -27 -162.5 -43.5t-170.5 -16.5q-113 0 -211.5 38t-163.5 136q-35 -41 -83 -73.5t-102.5 -55t-111.5 -34t-113 -11.5q-68 0 -128 17.5t-107 54.5 t-75 94.5t-28 136.5zM461 311q-1 -98 110 -98q104 0 179 74.5t100 197.5q-127 -4 -204 -21.5t-118 -42t-54 -54t-13 -56.5zM1151 592q127 4 204 21.5t117.5 42t54 53t13.5 57.5q1 98 -110 98q-104 0 -179 -74.5t-100 -197.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="983" d="M205 430q0 139 45 262t129 215t203.5 145.5t267.5 53.5q92 0 164.5 -17.5t132.5 -46.5l-105 -237q-41 16 -85 29.5t-107 13.5q-154 0 -242 -103.5t-88 -281.5q0 -104 45 -169t166 -65q59 0 114.5 12.5t98.5 30.5l23 -243q-53 -20 -117 -37t-150 -21q-12 -16 -22 -32.5 t-19 -28.5q45 -23 68 -59.5t23 -77.5q0 -59 -24 -102.5t-63.5 -71t-91 -40t-104.5 -12.5q-55 0 -109.5 12.5t-97.5 34.5l74 168q27 -12 60.5 -20t64.5 -8q82 0 82 49q0 23 -14.5 37t-47.5 28l-41 19l82 123q-84 20 -143.5 62t-98 100.5t-56 129t-17.5 148.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1085" d="M205 422q0 131 46 254t130 218t204 153.5t265 58.5q72 0 133 -20.5t107.5 -59.5t72 -95.5t25.5 -127.5q0 -115 -51.5 -195t-142.5 -130t-216 -72.5t-272 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5 q-127 0 -214.5 36t-141.5 97.5t-78.5 143.5t-24.5 174zM514 592q127 4 205 21.5t121 42t57 53t14 57.5q1 98 -110 98q-104 0 -183 -74.5t-104 -197.5zM602 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xe9;" horiz-adv-x="1085" d="M205 422q0 131 46 254t130 218t204 153.5t265 58.5q72 0 133 -20.5t107.5 -59.5t72 -95.5t25.5 -127.5q0 -115 -51.5 -195t-142.5 -130t-216 -72.5t-272 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5 q-127 0 -214.5 36t-141.5 97.5t-78.5 143.5t-24.5 174zM514 592q127 4 205 21.5t121 42t57 53t14 57.5q1 98 -110 98q-104 0 -183 -74.5t-104 -197.5zM622 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xea;" horiz-adv-x="1085" d="M205 422q0 131 46 254t130 218t204 153.5t265 58.5q72 0 133 -20.5t107.5 -59.5t72 -95.5t25.5 -127.5q0 -115 -51.5 -195t-142.5 -130t-216 -72.5t-272 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5 q-127 0 -214.5 36t-141.5 97.5t-78.5 143.5t-24.5 174zM514 592q127 4 205 21.5t121 42t57 53t14 57.5q1 98 -110 98q-104 0 -183 -74.5t-104 -197.5zM561 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xeb;" horiz-adv-x="1085" d="M205 422q0 131 46 254t130 218t204 153.5t265 58.5q72 0 133 -20.5t107.5 -59.5t72 -95.5t25.5 -127.5q0 -115 -51.5 -195t-142.5 -130t-216 -72.5t-272 -22.5q14 -86 62 -122t153 -36q66 0 133.5 11.5t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5 q-127 0 -214.5 36t-141.5 97.5t-78.5 143.5t-24.5 174zM514 592q127 4 205 21.5t121 42t57 53t14 57.5q1 98 -110 98q-104 0 -183 -74.5t-104 -197.5zM545 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12 q-59 0 -98 37t-39 98zM1000 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xec;" horiz-adv-x="579" d="M143 0l256 1077h306l-259 -1077h-303zM258 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xed;" horiz-adv-x="579" d="M143 0l256 1077h306l-259 -1077h-303zM401 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xee;" horiz-adv-x="579" d="M143 0l256 1077h306l-259 -1077h-303zM292 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xef;" horiz-adv-x="579" d="M143 0l256 1077h306l-259 -1077h-303zM248 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM703 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101 q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xf0;" horiz-adv-x="1241" d="M205 412q0 166 51 278.5t132 181t180.5 99t197.5 30.5q66 0 125 -13t108 -36q-6 61 -17 115.5t-34 106.5l-241 -78l-23 170l172 55q-29 33 -64.5 65.5t-82.5 65.5l202 137q117 -78 201 -186l293 96l20 -174l-223 -72q47 -98 67.5 -207.5t20.5 -232.5q0 -174 -41 -327.5 t-124 -267.5t-207.5 -180.5t-292.5 -66.5q-100 0 -178 35t-132.5 94.5t-82 140.5t-27.5 171zM512 416q0 -74 36 -127t114 -53q74 0 129 41.5t93 109.5t59.5 153t27.5 169q-109 51 -197 51q-66 0 -115 -26.5t-81.5 -74t-49 -110t-16.5 -133.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="1161" d="M143 0l248 1028q35 10 77 23.5t94 24.5t116.5 18.5t146.5 7.5q242 0 332 -139.5t31 -380.5l-139 -582h-306l136 569q12 53 19 103.5t-1 88.5t-38 61.5t-91 23.5q-59 0 -121 -12l-198 -834h-306zM520 1315q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5 t49.5 -11.5q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#xf2;" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39 t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5zM559 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xf3;" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39 t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5zM661 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xf4;" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39 t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5zM561 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xf5;" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM500 1315q47 111 112.5 165t159.5 54q39 0 70 -11.5 t57.5 -24.5t51 -24.5t49.5 -11.5q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39t86 98.5t52.5 130t17.5 134.5 q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="1175" d="M205 416q0 123 40 245.5t117.5 221t190.5 161t258 62.5q106 0 187 -33t133.5 -92t79 -140t26.5 -179q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-109 0 -189 33t-132 92.5t-78.5 140t-26.5 179.5zM493 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13 q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5zM948 1368 q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xf7;" d="M184 483l64 256h962l-63 -256h-963zM416 174q0 92 58 144.5t132 52.5q66 0 110 -37t44 -115q0 -92 -58.5 -144t-132.5 -52q-66 0 -109.5 36.5t-43.5 114.5zM614 1001q0 92 58.5 144.5t132.5 52.5q66 0 109.5 -37t43.5 -114q0 -92 -58 -144.5t-132 -52.5q-66 0 -110 37 t-44 114z" />
<glyph unicode="&#xf8;" horiz-adv-x="1175" d="M147 29l117 133q-59 109 -59 254q0 123 40 245.5t117.5 221t190.5 161t258 62.5q70 0 128 -14.5t105 -40.5l95 108l133 -108l-105 -119q35 -53 52.5 -123t17.5 -147q0 -123 -39 -246t-114.5 -221.5t-189 -161t-263.5 -62.5q-78 0 -139.5 17.5t-110.5 46.5l-100 -115z M489 418l381 434q-41 14 -90 14q-80 0 -135 -40t-90 -104.5t-50.5 -144t-15.5 -159.5zM561 238q41 -14 90 -15q80 0 135.5 40t90 104.5t50 144.5t15.5 160z" />
<glyph unicode="&#xf9;" horiz-adv-x="1189" d="M206 303q-3 94 21 193l140 581h305l-137 -577q-10 -45 -17.5 -92.5t-1.5 -87t31.5 -65.5t81.5 -26q47 0 87 17.5t85 60.5q4 51 13 107.5t20 103.5l133 559h305l-146 -612q-29 -117 -16.5 -234.5t47.5 -210.5l-272 -38q-23 45 -43 100q-57 -45 -129 -76t-160 -31 q-121 0 -195.5 44t-111.5 117t-40 167zM520 1475l189 161l276 -338l-131 -118z" />
<glyph unicode="&#xfa;" horiz-adv-x="1189" d="M206 303q-3 94 21 193l140 581h305l-137 -577q-10 -45 -17.5 -92.5t-1.5 -87t31.5 -65.5t81.5 -26q47 0 87 17.5t85 60.5q4 51 13 107.5t20 103.5l133 559h305l-146 -612q-29 -117 -16.5 -234.5t47.5 -210.5l-272 -38q-23 45 -43 100q-57 -45 -129 -76t-160 -31 q-121 0 -195.5 44t-111.5 117t-40 167zM675 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xfb;" horiz-adv-x="1189" d="M206 303q-3 94 21 193l140 581h305l-137 -577q-10 -45 -17.5 -92.5t-1.5 -87t31.5 -65.5t81.5 -26q47 0 87 17.5t85 60.5q4 51 13 107.5t20 103.5l133 559h305l-146 -612q-29 -117 -16.5 -234.5t47.5 -210.5l-272 -38q-23 45 -43 100q-57 -45 -129 -76t-160 -31 q-121 0 -195.5 44t-111.5 117t-40 167zM573 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#xfc;" horiz-adv-x="1189" d="M206 303q-3 94 21 193l140 581h305l-137 -577q-10 -45 -17.5 -92.5t-1.5 -87t31.5 -65.5t81.5 -26q47 0 87 17.5t85 60.5q4 51 13 107.5t20 103.5l133 559h305l-146 -612q-29 -117 -16.5 -234.5t47.5 -210.5l-272 -38q-23 45 -43 100q-57 -45 -129 -76t-160 -31 q-121 0 -195.5 44t-111.5 117t-40 167zM500 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM955 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5 t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#xfd;" horiz-adv-x="1089" d="M-51 -330l92 240q41 -16 73.5 -25.5t80.5 -9.5q72 0 136 46t107 124q-53 205 -97 459t-60 573h313q2 -80 8 -176t14.5 -193.5t18.5 -189.5t22 -166q98 147 173 327.5t141 397.5h323q-57 -156 -115.5 -291t-122 -256.5t-131 -232.5t-143.5 -219q-55 -80 -114.5 -162 t-132 -147.5t-161.5 -106.5t-206 -41q-72 0 -123 13.5t-96 35.5zM622 1307l328 329l158 -178l-363 -278z" />
<glyph unicode="&#xfe;" horiz-adv-x="1183" d="M53 -379l459 1919l317 49l-118 -491q23 2 47 3t49 1q115 0 197.5 -35t136 -95.5t79 -141t25.5 -173.5q0 -150 -48 -274.5t-136 -213.5t-209 -139t-266 -50q-68 0 -142 12l-88 -371h-303zM504 236q23 -4 43 -5.5t41 -1.5q84 0 149.5 30t111.5 83t69.5 128t23.5 165 q0 88 -39 149.5t-135 61.5q-63 0 -121 -12z" />
<glyph unicode="&#xff;" horiz-adv-x="1089" d="M-51 -330l92 240q41 -16 73.5 -25.5t80.5 -9.5q72 0 136 46t107 124q-53 205 -97 459t-60 573h313q2 -80 8 -176t14.5 -193.5t18.5 -189.5t22 -166q98 147 173 327.5t141 397.5h323q-57 -156 -115.5 -291t-122 -256.5t-131 -232.5t-143.5 -219q-55 -80 -114.5 -162 t-132 -147.5t-161.5 -106.5t-206 -41q-72 0 -123 13.5t-96 35.5zM473 1368q0 39 14.5 72t38 55.5t53 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM928 1368q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38 t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#x152;" horiz-adv-x="2017" d="M252 561q0 209 70.5 372t197.5 274.5t300 169t380 57.5q53 0 117.5 -3.5t120.5 -11.5h784l-65 -268h-584l-66 -279h512l-63 -262h-512l-82 -342h631l-66 -268h-809q-53 -8 -109.5 -12t-113.5 -4q-121 0 -235.5 25.5t-206 90t-146.5 176t-55 285.5zM575 584 q0 -68 19.5 -129.5t60.5 -107.5t104.5 -72.5t151.5 -26.5q66 0 140 12l215 899q-33 4 -63.5 6t-59.5 2q-145 0 -252 -54t-177.5 -138t-104.5 -188.5t-34 -202.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1779" d="M205 410q0 123 40 246.5t117.5 224t191.5 163t261 62.5q104 0 192.5 -44t139.5 -132q82 86 180 131t217 45q72 0 133.5 -20.5t107.5 -59.5t71.5 -95.5t25.5 -127.5q0 -115 -51 -195t-142.5 -130t-216 -72.5t-272.5 -22.5q14 -86 62.5 -122t152.5 -36q66 0 133.5 11.5 t126.5 33.5l23 -239q-57 -23 -146.5 -41.5t-193.5 -18.5q-129 0 -217 48.5t-142 119.5q-61 -72 -156 -120t-212 -48q-106 0 -186 33t-133.5 91.5t-80 138t-26.5 176.5zM508 446q0 -104 32.5 -160.5t118.5 -56.5q68 0 119 39t86 98.5t52.5 130t17.5 134.5q0 104 -33 160.5 t-119 56.5q-68 0 -119 -39t-85.5 -98.5t-52 -130t-17.5 -134.5zM1208 592q127 4 205 21.5t121 42t57.5 53t14.5 57.5q0 98 -111 98q-104 0 -183 -74.5t-104 -197.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1335" d="M348 1419h340q33 -147 72 -288t86 -295q59 76 113.5 146.5t105.5 141t101.5 143t103.5 152.5h352q-86 -121 -166 -229.5t-159.5 -212t-163.5 -205.5t-179 -211l-135 -561h-319l135 561q-86 217 -155.5 424t-131.5 434zM623 1696q0 39 14.5 72t38 55.5t53 35.5t60.5 13 q57 0 98 -38t41 -101q0 -37 -15 -68.5t-40 -55.5t-54.5 -36t-58.5 -12q-59 0 -98 37t-39 98zM1078 1696q0 39 14 72t38 55.5t53.5 35.5t60.5 13q57 0 98 -38t41 -101q0 -37 -15.5 -68.5t-40 -55.5t-54 -36t-58.5 -12q-59 0 -98 37t-39 98z" />
<glyph unicode="&#x2c6;" horiz-adv-x="815" d="M403 1309l367 297l252 -318l-123 -108l-170 159l-231 -155z" />
<glyph unicode="&#x2dc;" horiz-adv-x="763" d="M336 1315q47 111 112.5 165t159.5 54q39 0 70 -11.5t57.5 -24.5t51 -24.5t49.5 -11.5q29 0 52 16.5t58 67.5l137 -84q-47 -111 -112.5 -165t-159.5 -54q-39 0 -69.5 11.5t-57.5 24.5t-51.5 24.5t-48.5 11.5q-29 0 -52.5 -16.5t-58.5 -67.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="982" />
<glyph unicode="&#x2001;" horiz-adv-x="1964" />
<glyph unicode="&#x2002;" horiz-adv-x="982" />
<glyph unicode="&#x2003;" horiz-adv-x="1964" />
<glyph unicode="&#x2004;" horiz-adv-x="654" />
<glyph unicode="&#x2005;" horiz-adv-x="491" />
<glyph unicode="&#x2006;" horiz-adv-x="327" />
<glyph unicode="&#x2007;" horiz-adv-x="327" />
<glyph unicode="&#x2008;" horiz-adv-x="245" />
<glyph unicode="&#x2009;" horiz-adv-x="392" />
<glyph unicode="&#x200a;" horiz-adv-x="109" />
<glyph unicode="&#x2010;" horiz-adv-x="702" d="M150 473l67 277h594l-68 -277h-593z" />
<glyph unicode="&#x2011;" horiz-adv-x="702" d="M150 473l67 277h594l-68 -277h-593z" />
<glyph unicode="&#x2012;" horiz-adv-x="702" d="M150 473l67 277h594l-68 -277h-593z" />
<glyph unicode="&#x2013;" horiz-adv-x="1040" d="M123 485l57 254h1024l-59 -254h-1022z" />
<glyph unicode="&#x2014;" horiz-adv-x="2064" d="M123 485l57 254h2048l-59 -254h-2046z" />
<glyph unicode="&#x2018;" horiz-adv-x="485" d="M266 1014q2 29 7.5 59.5t9.5 44.5q33 137 111.5 261t170.5 210l189 -71q-72 -111 -123 -237t-68 -267h-297z" />
<glyph unicode="&#x2019;" horiz-adv-x="485" d="M246 1071q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210z" />
<glyph unicode="&#x201a;" horiz-adv-x="485" d="M-6 -184q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210z" />
<glyph unicode="&#x201c;" horiz-adv-x="927" d="M266 1014q2 29 7.5 59.5t9.5 44.5q33 137 111.5 261t170.5 210l189 -71q-72 -111 -123 -237t-68 -267h-297zM710 1014q2 29 7.5 59.5t9.5 44.5q33 137 111.5 261t170.5 210l189 -71q-72 -111 -123 -237t-68 -267h-297z" />
<glyph unicode="&#x201d;" horiz-adv-x="927" d="M246 1071q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210zM688 1071q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210z" />
<glyph unicode="&#x201e;" horiz-adv-x="927" d="M-6 -184q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210zM434 -184q72 111 120 237t64 263h297q-2 -29 -7 -59.5t-9 -45.5q-33 -137 -112 -261t-171 -210z" />
<glyph unicode="&#x2022;" horiz-adv-x="794" d="M246 723q0 57 20.5 110.5t59.5 93.5t93 63.5t122 23.5t122 -23.5t93 -63.5t59.5 -93.5t20.5 -110.5q0 -59 -20.5 -111.5t-59.5 -92.5t-93.5 -63.5t-121.5 -23.5q-68 0 -122 23.5t-93 63.5t-59.5 92.5t-20.5 111.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1937" d="M123 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126zM834 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43 t-75.5 -15.5q-72 0 -120 40t-48 126zM1544 139q0 47 17.5 86t46 66.5t65.5 43t76 15.5q72 0 120 -40t48 -126q0 -47 -17.5 -86t-46.5 -66.5t-65.5 -43t-75.5 -15.5q-72 0 -120 40t-48 126z" />
<glyph unicode="&#x202f;" horiz-adv-x="392" />
<glyph unicode="&#x2039;" horiz-adv-x="702" d="M205 594l448 479l193 -115l-322 -403l148 -371l-203 -94z" />
<glyph unicode="&#x203a;" horiz-adv-x="704" d="M125 205l321 403l-147 371l203 94l264 -504l-449 -479z" />
<glyph unicode="&#x205f;" horiz-adv-x="491" />
<glyph unicode="&#x20ac;" d="M174 446l47 203h131q4 35 11.5 68t15.5 65h-129l49 203h139q45 104 107.5 189.5t148.5 145.5t200 93t261 33q135 0 277 -47l-121 -238q-102 35 -201 35q-143 0 -227 -56.5t-138 -154.5h482l-88 -203h-463q-14 -66 -25 -133h430l-86 -203h-352q10 -127 73.5 -174 t160.5 -47q61 0 131.5 14.5t142.5 36.5l12 -239q-86 -31 -170 -48.5t-170 -17.5q-96 0 -181 26t-150.5 82t-105.5 147t-44 220h-168z" />
<glyph unicode="&#x2122;" horiz-adv-x="1748" d="M246 1208v211h659v-211h-209v-510h-241v510h-209zM985 698q14 254 30.5 427t33.5 294h217q43 -92 81.5 -187t79.5 -188q41 92 83 194.5t75 180.5h219q20 -121 35.5 -294t32.5 -427h-236l-8 383l-121 -307h-161l-121 305q0 -66 -1 -130t-2 -117.5t-2 -90t-1 -43.5h-234z " />
<glyph unicode="&#xe000;" horiz-adv-x="1075" d="M0 0v1075h1075v-1075h-1075z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 73 KiB

BIN
font/ubuntu-bi-webfont.ttf Normal file

Binary file not shown.

BIN
font/ubuntu-bi-webfont.woff Normal file

Binary file not shown.

BIN
font/ubuntu-r-webfont.eot Normal file

Binary file not shown.

245
font/ubuntu-r-webfont.svg Normal file
View file

@ -0,0 +1,245 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="ubunturegular" horiz-adv-x="1155" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="473" />
<glyph unicode="&#xfb01;" horiz-adv-x="1316" d="M164 0v1161q0 205 100.5 316.5t315.5 111.5q72 0 123 -9t73 -17l-26 -164q-23 8 -62 17t-94 9q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM934 1382q0 57 36 91t87 34t87 -33.5t36 -91.5q0 -57 -36 -91t-87 -34t-87 34t-36 91zM963 0v1065h190 v-1065h-190z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1357" d="M164 0v1161q0 205 100.5 316.5t315.5 111.5q72 0 123 -9t73 -17l-26 -164q-23 8 -62 17t-94 9q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM958 279v1277l191 33v-1280q0 -47 8 -77.5t26.5 -49t49.5 -28t76 -15.5l-27 -159q-176 4 -250 75.5 t-74 223.5z" />
<glyph unicode="&#xfb03;" horiz-adv-x="2115" d="M164 0v1161q0 205 100.5 316.5t315.5 111.5q84 0 144 -12t85 -23l-35 -163q-25 12 -70 23t-110 11q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM963 0v1161q0 205 100.5 316.5t315.5 111.5q72 0 123 -9t73 -17l-26 -164q-23 8 -62 17t-94 9 q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM1733 1382q0 57 36 91t87 34t87 -33.5t36 -91.5q0 -57 -36 -91t-87 -34t-87 34t-36 91zM1762 0v1065h190v-1065h-190z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2156" d="M164 0v1161q0 205 100.5 316.5t315.5 111.5q84 0 144 -12t85 -23l-35 -163q-25 12 -70 23t-110 11q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM963 0v1161q0 205 100.5 316.5t315.5 111.5q72 0 123 -9t73 -17l-26 -164q-23 8 -62 17t-94 9 q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190zM1757 279v1277l191 33v-1280q0 -47 8 -77.5t26.5 -49t49.5 -28t76 -15.5l-27 -159q-176 4 -250 75.5t-74 223.5z" />
<glyph unicode="&#xd;" horiz-adv-x="473" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="473" />
<glyph unicode="&#x09;" horiz-adv-x="473" />
<glyph unicode="&#xa0;" horiz-adv-x="473" />
<glyph unicode="!" horiz-adv-x="565" d="M145 111q0 55 37 96t101 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100.5 41t-37.5 97zM180 1034v385h205v-385q0 -172 -12.5 -312t-30.5 -280h-119q-18 139 -30.5 279.5t-12.5 312.5z" />
<glyph unicode="&#x22;" horiz-adv-x="856" d="M147 1456v100h199v-102q0 -100 -12 -209.5t-31 -218.5h-113q-18 109 -30.5 218.5t-12.5 211.5zM509 1456v100h199v-102q0 -100 -12 -209.5t-31 -218.5h-113q-18 109 -30.5 218.5t-12.5 211.5z" />
<glyph unicode="#" horiz-adv-x="1366" d="M100 375v151h209l70 367h-279v151h310l71 375h172l-71 -375h331l72 375h172l-72 -375h181v-151h-211l-70 -367h281v-151h-310l-71 -375h-172l71 375h-331l-72 -375h-172l72 375h-181zM481 526h332l72 367h-332z" />
<glyph unicode="$" d="M125 119l51 153q61 -29 147.5 -53t213.5 -24q158 0 221 50t63 128q0 57 -27.5 98t-73.5 71.5t-106.5 55.5t-124.5 47q-61 23 -121.5 50.5t-107.5 67.5t-76.5 96t-29.5 138q0 145 87 238.5t253 118.5v235h170v-229q90 -4 167.5 -22.5t122.5 -34.5l-39 -160 q-49 18 -122.5 37.5t-184.5 19.5q-123 0 -189.5 -47t-66.5 -133q0 -47 19.5 -80t56.5 -58.5t87 -46t112 -42.5q80 -31 151.5 -64t125.5 -79t87 -109.5t33 -153.5q0 -145 -88 -234.5t-272 -111.5v-264h-170v258q-143 4 -233.5 31.5t-135.5 52.5z" />
<glyph unicode="%" horiz-adv-x="1757" d="M102 1073q0 92 25 162t69 118t103 72.5t129 24.5t129 -24.5t103.5 -72.5t69 -118t24.5 -162t-24.5 -161.5t-69 -118t-103.5 -73t-129 -24.5t-129 24.5t-103 73t-69 118t-25 161.5zM262 1073q0 -111 43 -173t123 -62t123 62t43 173t-43 173.5t-123 62.5t-123 -62.5 t-43 -173.5zM385 0l801 1419h186l-801 -1419h-186zM1004 346q0 92 24.5 162t68.5 118t103.5 72.5t128.5 24.5q70 0 129.5 -24.5t103.5 -72.5t68.5 -118t24.5 -162t-24.5 -161.5t-68.5 -118t-103.5 -73t-129.5 -24.5t-129 24.5t-103 73t-68.5 118t-24.5 161.5zM1163 346 q0 -111 43 -173t123 -62t123 62t43 173t-43 173.5t-123 62.5t-123 -62.5t-43 -173.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1363" d="M94 377q0 80 24.5 142.5t66.5 112.5t97.5 88t114.5 66q-152 152 -151 314q0 82 27.5 147.5t75.5 110.5t114.5 69.5t146.5 24.5q82 0 146.5 -24.5t108.5 -65.5t66.5 -98.5t22.5 -120.5q0 -72 -23.5 -129.5t-63.5 -104.5t-91 -86t-108 -69l331 -338q70 129 91 286l157 -20 q-8 -84 -42 -183.5t-95 -197.5q72 -78 132.5 -153.5t98.5 -147.5h-200q-25 41 -61 84t-74 86q-84 -84 -195 -136t-254 -52q-133 0 -221 37.5t-142.5 96t-77 128.5t-22.5 133zM285 381q0 -37 14 -80t47 -79t85 -59.5t130 -23.5q100 0 185 37t151 105l-399 403 q-37 -18 -75 -43t-68.5 -60.5t-50 -84.5t-19.5 -115zM424 1114q0 -133 139 -260q45 23 85 49.5t70 61t47 77t17 95.5q0 70 -46 118t-126 48q-90 0 -138 -54.5t-48 -134.5z" />
<glyph unicode="'" horiz-adv-x="493" d="M147 1456v100h199v-102q0 -100 -12 -209.5t-31 -218.5h-113q-18 109 -30.5 218.5t-12.5 211.5z" />
<glyph unicode="(" horiz-adv-x="663" d="M160 612q0 291 97 544t257 448l135 -93q-147 -190 -223 -413.5t-76 -485.5t76 -485t223 -414l-135 -92q-160 195 -257 448t-97 543z" />
<glyph unicode=")" horiz-adv-x="663" d="M14 -287q147 190 223 413.5t76 485.5t-75.5 485.5t-223.5 413.5l136 93q160 -195 257 -448t97 -544t-97.5 -543.5t-256.5 -447.5z" />
<glyph unicode="*" horiz-adv-x="983" d="M76 1055l57 172l12 -4q84 -29 156 -68t145 -80q-16 84 -31.5 163t-15.5 165v16h185v-16q0 -86 -15.5 -165t-31.5 -163q74 41 145.5 80t155.5 68l12 4l57 -172l-16 -6q-82 -31 -164 -40.5t-168 -15.5q68 -57 127 -111.5t111 -125.5l10 -15l-150 -104l-8 12 q-49 74 -85 146.5t-72 150.5q-37 -78 -73 -150.5t-85 -146.5l-8 -12l-150 104l10 15q51 72 110.5 126t127.5 111q-86 6 -168 15.5t-164 40.5z" />
<glyph unicode="+" d="M109 532v162h387v422h163v-422h388v-162h-388v-423h-163v423h-387z" />
<glyph unicode="," horiz-adv-x="503" d="M78 -279q51 104 67.5 212t16.5 202q0 27 -1 51.5t-3 46.5h207q2 -16 2 -31.5v-31.5q0 -129 -38 -255t-104 -241z" />
<glyph unicode="-" horiz-adv-x="612" d="M53 524v178h506v-178h-506z" />
<glyph unicode="." horiz-adv-x="503" d="M115 111q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97z" />
<glyph unicode="/" horiz-adv-x="786" d="M-49 -379l694 1983h191l-691 -1983h-194z" />
<glyph unicode="0" d="M102 711q0 356 126 548.5t350 192.5q223 0 349 -192.5t126 -548.5t-126 -549t-349 -193t-349.5 193t-126.5 549zM303 711q0 -117 13.5 -221.5t45 -182.5t85 -124t131.5 -46t131 46t84.5 124t45 182.5t13.5 221.5t-13.5 221t-45 182t-85 124t-130.5 46q-78 0 -131.5 -46 t-85 -124t-45 -182.5t-13.5 -220.5z" />
<glyph unicode="1" d="M190 1126q117 45 227.5 116t203.5 177h135v-1419h-191v1155q-25 -23 -60.5 -47.5t-77.5 -47t-88 -43t-89 -34.5z" />
<glyph unicode="2" d="M115 1282q18 20 55 50t88 56.5t114.5 45t137.5 18.5q223 0 334.5 -103.5t111.5 -291.5q0 -74 -29.5 -142.5t-78.5 -135t-110.5 -131t-123.5 -126.5q-35 -35 -81 -82t-86.5 -98t-68.5 -98t-28 -82h654v-162h-861q-2 12 -2 24.5v22.5q0 96 32 179t83 157t114.5 139.5 t125.5 126.5q51 49 97 97.5t82 96.5t57.5 99t21.5 109q0 61 -19.5 104t-52.5 71.5t-77 42t-93 13.5q-59 0 -108.5 -16.5t-88.5 -38t-65.5 -45t-40.5 -35.5z" />
<glyph unicode="3" d="M113 43l37 166q35 -16 115.5 -43t197.5 -27q182 0 261 72t79 192q0 78 -33 131.5t-86 85t-124 45t-144 13.5h-49v156h67q51 0 105.5 10t99.5 36.5t73.5 72.5t28.5 116q0 57 -20.5 98t-54 68t-77.5 38t-93 11q-98 0 -167 -28.5t-116 -59.5l-74 145q25 16 63 36t85 36.5 t101 27.5t114 11q113 0 194.5 -27.5t135 -78t80 -119t26.5 -148.5q0 -111 -63.5 -189.5t-153.5 -119.5q55 -16 106.5 -47t89 -78t61 -108.5t23.5 -137.5q0 -92 -31.5 -170.5t-98 -136t-167 -90.5t-237.5 -33q-53 0 -109.5 8.5t-105.5 20.5t-86 24.5t-53 20.5z" />
<glyph unicode="4" d="M82 362v130q39 90 106.5 209.5t152.5 246.5t182.5 250t195.5 221h182v-901h168v-156h-168v-362h-184v362h-635zM266 518h451v676q-61 -66 -124 -146.5t-122 -168.5t-111.5 -180.5t-93.5 -180.5z" />
<glyph unicode="5" d="M133 43l37 166q35 -16 113.5 -43t193.5 -27q92 0 154.5 20.5t101.5 55.5t56.5 81t17.5 97q0 78 -26.5 138.5t-94.5 101.5t-180.5 62.5t-284.5 21.5q12 100 19.5 188t13.5 172t10 167t8 175h684v-162h-518q-2 -31 -6 -83t-8 -108t-8 -109.5t-8 -84.5q309 -12 453.5 -135 t144.5 -334q0 -94 -32 -173.5t-96.5 -137t-163 -90.5t-233.5 -33q-53 0 -108.5 8.5t-102.5 20.5t-83.5 24.5t-53.5 20.5z" />
<glyph unicode="6" d="M129 569q0 207 57.5 366t163 267.5t256 164.5t338.5 58l14 -159q-121 -2 -220 -27t-177 -78t-131 -138t-80 -210q53 25 120 41t138 16q121 0 205 -36.5t137.5 -97t77 -139.5t23.5 -165q0 -78 -27 -160t-81 -149.5t-138 -110.5t-199 -43q-233 0 -355 159.5t-122 440.5z M328 569q0 -90 12 -170t44 -140t85 -96t135 -36q68 0 115 28.5t77.5 73.5t44 97.5t13.5 101.5q0 139 -66.5 213t-199.5 74q-72 0 -133.5 -13.5t-122.5 -39.5q-2 -23 -3 -46.5t-1 -46.5z" />
<glyph unicode="7" d="M123 1253v166h903v-157q-68 -78 -149.5 -214.5t-154.5 -305.5t-125 -360.5t-65 -381.5h-198q12 164 58 345t113.5 352t148.5 317.5t159 238.5h-690z" />
<glyph unicode="8" d="M113 358q0 59 19.5 113.5t51 102t73.5 85t89 66.5q-201 115 -201 338q0 78 31 148.5t87 124t136 85t179 31.5q115 0 196.5 -35t134 -89t76 -119.5t23.5 -127.5q0 -59 -17.5 -111t-47.5 -97.5t-67.5 -80t-78.5 -61.5q241 -114 245 -362q0 -86 -29.5 -159t-88 -127 t-146.5 -84t-203 -30q-133 0 -222 38t-142 95.5t-75.5 126t-22.5 129.5zM305 356q0 -37 13.5 -76.5t46 -73.5t84 -56.5t129.5 -22.5q70 0 122 20.5t84.5 52t49 72.5t16.5 84q0 66 -24.5 115t-70.5 86t-110.5 62.5t-146.5 44.5q-92 -51 -142.5 -127.5t-50.5 -180.5zM336 1077 q0 -45 16.5 -90t51 -84t91 -69.5t134.5 -49.5q86 51 137 119.5t51 179.5q0 31 -13 68t-42 68.5t-74 53t-110 21.5q-66 0 -112 -20.5t-75 -52t-42 -69.5t-13 -75z" />
<glyph unicode="9" d="M104 991q0 76 27 158t81 149.5t138 110.5t199 43q117 0 206 -41t149.5 -119t91 -189.5t30.5 -250.5q0 -422 -210 -638t-623 -218l-7 160q129 0 232.5 24.5t181.5 78.5t130 140t77 211q-53 -25 -121 -40t-139 -15q-121 0 -205 36t-137 96.5t-77 139t-24 164.5zM301 995 q0 -139 66.5 -211.5t199.5 -72.5q72 0 135.5 13t122.5 40q2 23 2 44v44q0 88 -12 169t-44 141.5t-85 96t-135 35.5q-68 0 -115 -28.5t-77.5 -72.5t-44 -96.5t-13.5 -101.5z" />
<glyph unicode=":" horiz-adv-x="503" d="M115 111q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97zM115 928q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97z" />
<glyph unicode=";" horiz-adv-x="503" d="M78 -279q51 104 67.5 212t16.5 202q0 27 -1 51.5t-3 46.5h207q2 -16 2 -31.5v-31.5q0 -129 -38 -255t-104 -241zM115 928q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97z" />
<glyph unicode="&#x3c;" d="M109 530v164l884 375l54 -158l-728 -299l728 -299l-54 -157z" />
<glyph unicode="=" d="M109 313v162h938v-162h-938zM109 750v161h938v-161h-938z" />
<glyph unicode="&#x3e;" d="M109 313l727 299l-727 299l53 158l885 -375v-164l-885 -374z" />
<glyph unicode="?" horiz-adv-x="827" d="M39 1370q70 37 157 59.5t185 22.5q117 0 191.5 -31.5t119.5 -81t62.5 -110t17.5 -115.5q0 -70 -26.5 -124t-65.5 -101t-86 -90t-86 -89t-65.5 -100.5t-26.5 -122.5v-22t2 -23h-160q-8 41 -8 86q0 66 23.5 119t60.5 99.5t78 86t77.5 80.5t60 86t23.5 99q0 86 -55.5 140 t-161.5 54q-135 0 -264 -69zM211 111q0 55 37 96t100 41t100 -41t37 -96t-36.5 -96.5t-100.5 -41.5q-63 0 -100 41t-37 97z" />
<glyph unicode="@" horiz-adv-x="1945" d="M133 569q0 221 69.5 387t187.5 275.5t272.5 165t326.5 55.5q168 0 317.5 -54.5t262 -157.5t178 -249.5t65.5 -331.5q0 -139 -31.5 -245.5t-85 -179t-127 -109.5t-155.5 -37q-66 0 -108.5 18.5t-71.5 49.5q-45 -25 -108.5 -42.5t-127.5 -17.5q-98 0 -179 31t-140.5 91.5 t-92 148.5t-32.5 204q0 98 30.5 185.5t91 152t147.5 101.5t198 37q104 0 191 -16.5t135 -33.5v-626q0 -66 22.5 -92.5t58.5 -26.5q53 0 93.5 37t66 96t37.5 134t12 153q0 129 -45 242.5t-129 199.5t-203.5 135t-269.5 49t-274.5 -50t-214.5 -143t-140.5 -228.5t-50.5 -307.5 q0 -180 53.5 -316t148.5 -227.5t225 -137.5t286 -46q121 0 199.5 14.5t101.5 22.5l20 -151q-35 -12 -126 -26.5t-195 -14.5q-182 0 -344 52t-283 159.5t-191.5 274.5t-70.5 396zM745 571q0 -145 70 -231t189 -86q43 0 87 9t78 28q-6 27 -8 53.5t-2 50.5v482q-12 4 -47 8 t-78 4q-145 0 -217 -90t-72 -228z" />
<glyph unicode="A" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5z" />
<glyph unicode="B" horiz-adv-x="1316" d="M176 23v1376q41 10 90 16t99.5 10.5t99.5 6.5t92 2q123 0 230.5 -18.5t186.5 -62.5t124 -116t45 -176q0 -117 -55.5 -191.5t-147.5 -111.5q125 -37 198.5 -117t73.5 -225q0 -213 -156.5 -320.5t-496.5 -107.5q-43 0 -93 2t-100.5 6t-99.5 10t-90 17zM373 162q23 -2 53 -4 q27 -2 62.5 -3t82.5 -1q88 0 167 11t138.5 39.5t95.5 80t36 129.5q0 70 -27 118t-77 76.5t-119.5 41t-155.5 12.5h-256v-500zM373 821h209q74 0 139 10.5t113.5 37t76 69.5t27.5 109q0 61 -28.5 103t-79 67.5t-118 38t-143.5 12.5t-118.5 -2t-77.5 -6v-439z" />
<glyph unicode="C" horiz-adv-x="1269" d="M119 711q0 178 54 316t146.5 232.5t215 143.5t262.5 49q88 0 158.5 -12.5t122.5 -28.5t85 -32.5t45 -24.5l-57 -164q-18 12 -53 26.5t-79 29t-96.5 23.5t-105.5 9q-113 0 -203 -39t-153.5 -112.5t-97 -179t-33.5 -236.5q0 -127 29.5 -231.5t89 -179.5t148.5 -116t208 -41 q137 0 227 29t135 51l52 -164q-14 -10 -51.5 -25.5t-92.5 -29.5t-129 -24.5t-160 -10.5q-150 0 -272.5 49.5t-210.5 143.5t-136 232t-48 317z" />
<glyph unicode="D" horiz-adv-x="1460" d="M176 23v1376q84 20 187.5 27.5t189.5 7.5q174 0 319.5 -44t250 -133.5t161.5 -225.5t57 -320t-57 -320.5t-161.5 -225.5t-250 -133t-319.5 -44q-86 0 -189.5 7t-187.5 28zM375 168q18 -2 64 -4t130 -2q283 0 422 144.5t139 404.5t-139 404.5t-422 144.5q-84 0 -130 -2.5 t-64 -4.5v-1085z" />
<glyph unicode="E" horiz-adv-x="1169" d="M176 0v1419h866v-170h-667v-422h594v-165h-594v-492h719v-170h-918z" />
<glyph unicode="F" horiz-adv-x="1099" d="M176 0v1419h856v-170h-657v-428h583v-168h-583v-653h-199z" />
<glyph unicode="G" horiz-adv-x="1376" d="M119 711q0 178 54 316t146.5 232.5t216 143.5t265.5 49q96 0 171 -12.5t128 -28.5t87 -32.5t46 -24.5l-64 -166q-59 39 -157.5 64.5t-200.5 25.5q-109 0 -198 -39t-151.5 -112.5t-97 -179t-34.5 -236.5q0 -127 29.5 -231.5t90 -179.5t149.5 -116t210 -41q86 0 146.5 9.5 t86.5 17.5v528h199v-663q-25 -8 -71 -18.5t-106 -20.5t-132 -17.5t-146 -7.5q-150 0 -272.5 49.5t-210.5 143.5t-136 231t-48 316z" />
<glyph unicode="H" horiz-adv-x="1443" d="M176 0v1419h199v-592h694v592h199v-1419h-199v655h-694v-655h-199z" />
<glyph unicode="I" horiz-adv-x="550" d="M176 0v1419h199v-1419h-199z" />
<glyph unicode="J" horiz-adv-x="1024" d="M16 84l78 158q43 -31 111.5 -65t171.5 -34q147 0 214.5 75t67.5 257v944h199v-962q0 -102 -21.5 -190.5t-75.5 -155t-145.5 -104.5t-228.5 -38q-70 0 -128 11.5t-105.5 29t-82 37t-55.5 37.5z" />
<glyph unicode="K" horiz-adv-x="1288" d="M176 0v1419h199v-626q72 68 157.5 152.5t169.5 170.5t159 165t126 138h240q-63 -70 -143 -154.5t-167.5 -174t-173.5 -175.5t-161 -159q88 -61 186 -151.5t192.5 -193t177.5 -209t138 -202.5h-234q-61 96 -141 193.5t-169 186.5t-180 165t-177 129v-674h-199z" />
<glyph unicode="L" horiz-adv-x="1062" d="M176 0v1419h199v-1247h655v-172h-854z" />
<glyph unicode="M" horiz-adv-x="1783" d="M137 0q8 184 18.5 371.5t24 369t28.5 353.5t34 325h174q55 -90 118.5 -213t127 -257t123 -268t108.5 -245q49 111 108.5 245t123 268t127 257t118.5 213h174q70 -686 105 -1419h-195q-10 287 -24.5 568.5t-36.5 523.5q-20 -35 -54 -100.5t-73 -148.5t-83 -176.5 t-83 -181.5t-73 -163.5t-54 -124.5h-160q-20 49 -54 124.5t-73 163.5t-83 181.5t-83 176.5t-72.5 148.5t-54.5 100.5q-23 -242 -37 -523.5t-24 -568.5h-195z" />
<glyph unicode="N" horiz-adv-x="1490" d="M176 0v1419h158q96 -102 205.5 -238.5t217 -280.5t203 -283.5t160.5 -247.5v1050h195v-1419h-166q-45 76 -103.5 170t-126 195.5t-140 206t-144.5 201.5t-139.5 183t-124.5 152v-1108h-195z" />
<glyph unicode="O" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5z" />
<glyph unicode="P" horiz-adv-x="1245" d="M176 0v1399q84 20 187.5 27.5t189.5 7.5q299 0 460 -114t161 -339q0 -123 -44.5 -210t-127 -141.5t-201.5 -79t-269 -24.5h-157v-526h-199zM375 696h149q102 0 184.5 13.5t138.5 45t87 87t31 141.5q0 82 -32 135t-86 85t-126 44.5t-152 12.5q-127 0 -194 -7v-557z" />
<glyph unicode="Q" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321q0 -160 -41 -285t-114 -216t-170 -147.5t-208 -76.5q2 -47 42 -83t101.5 -60.5t137 -41t151.5 -24.5l-47 -156q-106 14 -203.5 38t-176.5 62.5t-132 99t-72 150.5 q-129 8 -243.5 60.5t-198.5 145.5t-133 226.5t-49 307.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5z" />
<glyph unicode="R" horiz-adv-x="1288" d="M176 0v1399q84 20 187.5 27.5t189.5 7.5q299 0 455.5 -113t156.5 -336q0 -141 -75 -241.5t-220 -149.5q33 -41 83.5 -107.5t103.5 -147.5t105 -169t89 -170h-217q-41 78 -89 158t-97 152.5t-97.5 136t-86.5 110.5q-27 -2 -54.5 -2h-56.5h-178v-555h-199zM375 719h141 q102 0 184 10t138.5 39t87 81t30.5 138q0 80 -30.5 133.5t-82.5 84t-123 43t-151 12.5q-127 0 -194 -7v-534z" />
<glyph unicode="S" horiz-adv-x="1089" d="M68 70l59 163q47 -27 143.5 -59.5t235.5 -32.5q311 0 311 213q0 66 -27.5 112t-74.5 80t-107.5 58.5t-128.5 48.5q-78 27 -147.5 61t-120.5 80t-81 109.5t-30 153.5q0 186 127 290.5t351 104.5q129 0 234.5 -27.5t154.5 -60.5l-64 -162q-43 27 -128 52.5t-197 25.5 q-57 0 -106.5 -12.5t-86.5 -37t-58.5 -62.5t-21.5 -89q0 -57 22.5 -96t63.5 -68.5t95.5 -54t119.5 -49.5q92 -37 169 -74t133.5 -88t87 -121.5t30.5 -171.5q0 -186 -136 -286.5t-384 -100.5q-84 0 -154.5 11.5t-126 27t-95.5 32.5t-62 30z" />
<glyph unicode="T" horiz-adv-x="1157" d="M33 1247v172h1091v-172h-446v-1247h-199v1247h-446z" />
<glyph unicode="U" horiz-adv-x="1409" d="M166 528v891h199v-868q0 -213 94 -309.5t246 -96.5q76 0 138 24t107 73t69.5 125.5t24.5 183.5v868h199v-891q0 -119 -31.5 -221t-98 -177t-168 -118t-240.5 -43t-242 43t-168.5 118t-97 177.5t-31.5 220.5z" />
<glyph unicode="V" horiz-adv-x="1343" d="M20 1419h220q111 -324 217 -622.5t219 -560.5q113 260 219 560t215 623h213q-78 -225 -148.5 -416.5t-138 -363.5t-134 -328.5t-136.5 -310.5h-186q-70 154 -136.5 310.5t-135 328.5t-140.5 363.5t-148 416.5z" />
<glyph unicode="W" horiz-adv-x="1902" d="M57 1419h209q29 -160 59.5 -319.5t63.5 -310t65.5 -287.5t67.5 -254q82 215 174 472t172 531h172q80 -274 174.5 -531t176.5 -472q33 115 65.5 252t64 287.5t62.5 311.5t59 320h203q-74 -410 -156.5 -758t-189.5 -661h-199q-90 221 -176 455t-172 508q-86 -274 -174 -508 t-176 -455h-199q-109 313 -191.5 661.5t-154.5 757.5z" />
<glyph unicode="X" horiz-adv-x="1292" d="M47 0q92 180 214 366.5t259 383.5l-454 669h229l350 -528l346 528h228l-447 -661q139 -199 262 -387.5t217 -370.5h-223q-31 61 -74 136t-94 156t-106.5 162t-106.5 152q-51 -72 -106.5 -152.5t-105.5 -161.5t-94 -156t-75 -136h-219z" />
<glyph unicode="Y" horiz-adv-x="1224" d="M12 1419h234q78 -168 174 -341t198 -333q100 160 196.5 333t176.5 341h221q-111 -205 -235.5 -416.5t-263.5 -429.5v-573h-199v569q-141 219 -266 432t-236 418z" />
<glyph unicode="Z" horiz-adv-x="1173" d="M68 0v133q43 82 101 180.5t124.5 200.5t138.5 206.5t142.5 201t137 180.5t122.5 147h-730v170h973v-157q-47 -53 -109.5 -128t-132 -166t-143.5 -192.5t-144.5 -205t-134 -206t-114.5 -194.5h799v-170h-1030z" />
<glyph unicode="[" horiz-adv-x="673" d="M197 -379v1983h460v-150h-282v-1683h282v-150h-460z" />
<glyph unicode="\" horiz-adv-x="786" d="M-49 1604h190l695 -1983h-195z" />
<glyph unicode="]" horiz-adv-x="673" d="M16 -229h283v1683h-283v150h461v-1983h-461v150z" />
<glyph unicode="^" d="M96 723l398 696h168l397 -696l-152 -78l-329 578l-330 -578z" />
<glyph unicode="_" horiz-adv-x="1007" d="M-8 -217h1024v-162h-1024v162z" />
<glyph unicode="`" horiz-adv-x="770" d="M125 1468l123 121l262 -315l-96 -86z" />
<glyph unicode="a" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5z" />
<glyph unicode="b" horiz-adv-x="1206" d="M164 31v1525l190 33v-571q35 23 105.5 47.5t163.5 24.5q115 0 203.5 -41t150 -115t93.5 -176.5t32 -225.5q0 -129 -38 -232t-107.5 -175t-168 -111t-221.5 -39q-133 0 -235.5 18.5t-167.5 37.5zM354 166q29 -8 81 -15.5t130 -7.5q154 0 246 101.5t92 287.5 q0 82 -16.5 154t-53 124t-95 82t-140.5 30q-78 0 -143.5 -27t-100.5 -55v-674z" />
<glyph unicode="c" horiz-adv-x="952" d="M104 530q0 123 36 225.5t101.5 177.5t161 117t211.5 42q72 0 143.5 -12.5t137.5 -39.5l-43 -161q-43 20 -99.5 32.5t-119.5 12.5q-160 0 -245 -100.5t-85 -293.5q0 -86 19.5 -157.5t61.5 -122.5t107.5 -79t159.5 -28q76 0 137.5 14.5t96.5 30.5l26 -159 q-16 -10 -46.5 -19.5t-69.5 -16.5t-83 -12.5t-85 -5.5q-129 0 -226.5 41t-164 115t-99.5 175.5t-33 223.5z" />
<glyph unicode="d" horiz-adv-x="1206" d="M104 532q0 123 32 225.5t93.5 176.5t150.5 115t204 41q92 0 162.5 -25t105.5 -47v538l190 33v-1558q-66 -18 -168 -37t-235 -19q-123 0 -221.5 39t-168 111t-107.5 175t-38 232zM303 532q0 -186 92 -287.5t246 -101.5q78 0 130 7.5t81 15.5v674q-35 29 -100.5 55.5 t-143.5 26.5q-82 0 -140 -30t-95 -82t-53.5 -124t-16.5 -154z" />
<glyph unicode="e" horiz-adv-x="1144" d="M104 530q0 141 41 247t109 175.5t156 104.5t180 35q215 0 329.5 -134.5t114.5 -408.5v-31.5t-2 -36.5h-729q12 -166 96 -252t263 -86q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-139 0 -240.5 42t-167 116t-97.5 175t-32 222zM307 635h529v7 q0 124 -64 205q-66 83 -184 83q-66 0 -116 -25.5t-85 -66.5t-54.5 -94.5t-25.5 -108.5z" />
<glyph unicode="f" horiz-adv-x="790" d="M164 0v1161q0 205 100.5 316.5t315.5 111.5q84 0 144 -12t85 -23l-35 -163q-25 12 -70 23t-110 11q-133 0 -186.5 -72.5t-53.5 -195.5v-92h410v-160h-410v-905h-190z" />
<glyph unicode="g" horiz-adv-x="1183" d="M104 555q0 117 35 214t101.5 168t163 110.5t217.5 39.5q133 0 232 -19t167 -36v-950q0 -246 -127 -356.5t-385 -110.5q-100 0 -189.5 16.5t-154.5 38.5l35 166q57 -23 140 -40t173 -17q170 0 244.5 67.5t74.5 214.5v45q-25 -16 -95 -41.5t-165 -25.5q-96 0 -181 30.5 t-148.5 95t-100.5 161t-37 229.5zM303 553q0 -92 23.5 -157.5t63.5 -108.5t92.5 -63.5t107.5 -20.5q76 0 139.5 21.5t99.5 49.5v623q-29 8 -76.5 15.5t-129.5 7.5q-154 0 -237 -100.5t-83 -266.5z" />
<glyph unicode="h" horiz-adv-x="1169" d="M164 0v1556l190 33v-545q53 20 113.5 31.5t120.5 11.5q127 0 211 -35.5t134 -100t70.5 -154.5t20.5 -199v-598h-190v557q0 98 -13.5 168t-44.5 113t-82 62.5t-127 19.5q-31 0 -63.5 -4.5t-62 -9.5t-53 -11t-34.5 -10v-885h-190z" />
<glyph unicode="i" horiz-adv-x="518" d="M135 1382q0 57 36 91t87 34t87 -33.5t36 -91.5q0 -57 -36 -91t-87 -34t-87 34t-36 91zM164 0v1065h190v-1065h-190z" />
<glyph unicode="j" horiz-adv-x="518" d="M-139 -360l24 155q20 -6 47 -10t50 -4q98 0 140 60.5t42 176.5v1047h190v-1045q0 -205 -93 -304t-271 -99q-25 0 -64 6t-65 17zM135 1382q0 57 36 91t87 34t87 -33.5t36 -91.5q0 -57 -36 -91t-87 -34t-87 34t-36 91z" />
<glyph unicode="k" horiz-adv-x="1069" d="M164 0v1556l190 33v-971l108.5 108.5t117 121t108.5 118t88 99.5h223q-47 -51 -102 -112.5t-114.5 -124t-120 -125t-113.5 -117.5q61 -47 130 -117t135.5 -150.5t125.5 -163.5t100 -155h-223q-43 72 -99 146.5t-117.5 143t-125 126t-121.5 96.5v-512h-190z" />
<glyph unicode="l" horiz-adv-x="559" d="M160 279v1277l190 33v-1280q0 -47 8.5 -77.5t26.5 -49t49 -28t76 -15.5l-27 -159q-176 4 -249.5 75.5t-73.5 223.5z" />
<glyph unicode="m" horiz-adv-x="1763" d="M164 0v1034q66 16 173 34.5t249 18.5q102 0 171.5 -27.5t116.5 -80.5q14 10 45 28.5t76 36t100.5 30.5t118.5 13q123 0 201 -35.5t122 -101t59.5 -155.5t15.5 -197v-598h-191v557q0 94 -9 161.5t-34.5 113t-69.5 67t-114 21.5q-96 0 -158.5 -26t-85.5 -46 q16 -53 24.5 -116.5t8.5 -133.5v-598h-190v557q0 94 -10.5 161.5t-36 113t-69.5 67t-112 21.5q-29 0 -61.5 -2.5t-62 -5.5t-54.5 -7t-33 -6v-899h-190z" />
<glyph unicode="n" horiz-adv-x="1175" d="M164 0v1034q66 16 174 34.5t250 18.5q127 0 211 -35.5t134 -100t70.5 -154.5t20.5 -199v-598h-190v557q0 98 -13.5 168t-44.5 113t-82 62.5t-127 19.5q-31 0 -63.5 -2.5t-62 -5.5t-53 -7t-34.5 -6v-899h-190z" />
<glyph unicode="o" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5 t-81 286t-220 106t-220 -105.5t-81 -286.5z" />
<glyph unicode="p" horiz-adv-x="1206" d="M164 -379v1411q68 16 169 35.5t234 19.5q123 0 221.5 -38.5t168 -110.5t107.5 -175.5t38 -232.5q0 -121 -32 -223t-93.5 -176t-150.5 -115t-203 -41q-92 0 -163 25t-106 47v-426h-190zM354 225q35 -29 100.5 -55.5t143.5 -26.5q82 0 140.5 30t95 82t53 122.5t16.5 152.5 q0 186 -92 287t-246 101q-86 0 -134 -6.5t-77 -14.5v-672z" />
<glyph unicode="q" horiz-adv-x="1206" d="M104 530q0 129 38 232.5t107.5 175.5t168 110.5t221.5 38.5q133 0 234.5 -19t168.5 -36v-1411h-190v426q-35 -23 -105.5 -47.5t-162.5 -24.5q-115 0 -204 41t-150.5 115t-93.5 176t-32 223zM303 530q0 -82 16.5 -152.5t53.5 -122.5t95 -82t140 -30q78 0 143.5 27 t100.5 55v672q-29 8 -77 14.5t-134 6.5q-154 0 -246 -101t-92 -287z" />
<glyph unicode="r" horiz-adv-x="790" d="M164 0v1020q68 25 168 46t225 21q25 0 56.5 -3t62.5 -8t56.5 -10t37.5 -9l-33 -166q-23 8 -75 19.5t-134 11.5q-53 0 -105 -11.5t-69 -15.5v-895h-190z" />
<glyph unicode="s" horiz-adv-x="913" d="M82 35l35 164q33 -12 104.5 -37t190.5 -25q117 0 173 31t56 98q0 70 -55.5 111t-182.5 92q-61 25 -117.5 50.5t-97.5 60t-65.5 84t-24.5 120.5q0 141 104.5 224.5t284.5 83.5q45 0 90.5 -5.5t84 -12.5t68.5 -15t46 -15l-35 -163q-31 16 -96 33.5t-158 17.5 q-80 0 -139 -32t-59 -99q0 -35 13 -61.5t41 -48t69 -40t98 -39.5q76 -29 135.5 -56.5t101 -64t64.5 -89t23 -128.5q0 -147 -110 -223t-312 -76q-141 0 -221 24t-109 36z" />
<glyph unicode="t" horiz-adv-x="823" d="M152 412v950l190 33v-330h403v-160h-403v-491q0 -80 12.5 -132.5t37 -82t61 -42t86.5 -12.5q86 0 138 19.5t73 28.5l36 -158q-29 -14 -100.5 -36t-163.5 -22q-109 0 -179.5 28t-113.5 83t-60 136t-17 188z" />
<glyph unicode="u" horiz-adv-x="1175" d="M152 467v598h190v-557q0 -195 61.5 -279t206.5 -84q31 0 64 2.5t61.5 5.5t52 6t33.5 7v899h191v-1034q-66 -16 -173.5 -35t-248.5 -19q-123 0 -207 36t-135 101.5t-73.5 154.5t-22.5 198z" />
<glyph unicode="v" horiz-adv-x="1028" d="M33 1065h205q25 -100 58.5 -214t71.5 -225.5t76.5 -216t73.5 -186.5q35 82 74 186.5t77 216t71.5 225.5t58.5 214h196q-80 -299 -187.5 -573.5t-207.5 -491.5h-172q-100 217 -207.5 491.5t-187.5 573.5z" />
<glyph unicode="w" horiz-adv-x="1591" d="M37 1065h205q20 -96 48.5 -209t60.5 -225.5t67 -217t65 -182.5q35 96 69 204t64.5 217.5t58 215t48.5 197.5h158q18 -92 44.5 -197.5t57.5 -215t64.5 -217t68.5 -204.5q31 78 64.5 182.5t66.5 217t61.5 225.5t49.5 209h196q-80 -313 -170 -583.5t-184 -481.5h-166 q-57 147 -121.5 336.5t-117.5 394.5q-53 -205 -117 -394.5t-121 -336.5h-166q-94 211 -184 481.5t-170 583.5z" />
<glyph unicode="x" horiz-adv-x="1046" d="M33 0q72 139 171 283.5t197 275.5l-352 506h215l254 -373l256 373h203l-344 -494q98 -133 201.5 -281.5t175.5 -289.5h-209q-23 45 -55.5 100.5t-71.5 113.5t-80 115.5t-80 108.5q-39 -51 -80 -109.5t-79 -116.5t-70.5 -113.5t-55.5 -98.5h-196z" />
<glyph unicode="y" horiz-adv-x="1017" d="M4 -352l35 153q23 -10 58.5 -19t70.5 -9q113 0 176.5 50t114.5 163q-129 246 -241 521t-185 558h205q23 -92 54.5 -198.5t70 -219t84 -225.5t94.5 -217q78 215 135 426t108 434h197q-74 -301 -164 -578.5t-194 -519.5q-41 -92 -85 -158.5t-97.5 -109.5t-120 -63.5 t-150.5 -20.5q-23 0 -47.5 3t-48 8t-43 11.5t-27.5 10.5z" />
<glyph unicode="z" horiz-adv-x="964" d="M74 0v127q49 90 120.5 198.5t150.5 216t153.5 203t130.5 160.5h-527v160h768v-143q-43 -47 -113.5 -133.5t-151.5 -190.5t-162 -219t-142 -219h586v-160h-813z" />
<glyph unicode="{" horiz-adv-x="681" d="M82 539v147q49 0 84 17.5t58.5 45t34.5 63.5t11 73v368q0 84 18.5 149.5t63.5 109.5t120 68t185 24h9v-150q-117 0 -167 -42t-50 -161v-315q0 -135 -36 -209t-102 -115q66 -41 102 -114.5t36 -208.5v-316q0 -119 50 -160.5t167 -41.5v-150h-9q-111 0 -185.5 22.5 t-119.5 67.5t-63.5 110.5t-18.5 149.5v369q0 37 -11 73t-34.5 63.5t-58.5 45t-84 17.5z" />
<glyph unicode="|" horiz-adv-x="571" d="M197 -379v1983h178v-1983h-178z" />
<glyph unicode="}" horiz-adv-x="681" d="M16 -229q117 0 167 42t50 160v316q0 135 36 208.5t102 114.5q-66 41 -102 115t-36 209v315q0 119 -50 161t-167 42v150h9q111 0 185.5 -24t119.5 -68t63.5 -109.5t18.5 -149.5v-368q0 -37 11 -73t34.5 -63.5t58.5 -45t84 -17.5v-147q-49 0 -84 -17.5t-58.5 -45 t-34.5 -63.5t-11 -73v-369q0 -84 -18.5 -149.5t-63.5 -110.5t-120 -67.5t-185 -22.5h-9v150z" />
<glyph unicode="~" d="M86 496q8 39 26.5 89t50.5 94t82 73.5t122 29.5q61 0 113 -24.5t100 -52.5q55 -33 106 -65t109 -32q33 0 55 15.5t38.5 39t27 51t18.5 54.5l131 -37q-8 -41 -25.5 -90t-50.5 -93t-83 -74t-122 -30q-61 0 -113.5 25t-99.5 53q-55 33 -106 64.5t-109 31.5q-33 0 -55 -15 t-38.5 -38.5t-27 -51.5t-18.5 -54z" />
<glyph unicode="&#xa1;" horiz-adv-x="565" d="M145 928q0 55 37 96t101 41q63 0 100 -41t37 -96t-37 -96t-100 -41t-100.5 41t-37.5 96zM180 4q0 172 12.5 312.5t30.5 279.5h119q18 -139 30.5 -279.5t12.5 -312.5v-383h-205v383z" />
<glyph unicode="&#xa2;" d="M176 596q0 100 27.5 188t78 158t124 117t165.5 65v295h170v-284q119 -6 226 -48l-43 -157q-43 18 -99.5 30.5t-119.5 12.5q-160 0 -245 -96.5t-85 -280.5q0 -82 19.5 -150.5t61.5 -117.5t107.5 -76t159.5 -27q76 0 137.5 14.5t95.5 28.5l27 -155q-29 -16 -98.5 -31.5 t-143.5 -20.5v-284h-170v295q-98 18 -171.5 64t-123 114.5t-75 157t-25.5 188.5z" />
<glyph unicode="&#xa3;" d="M123 610v154h190v170q0 152 32 251t90.5 157.5t140 81t180.5 22.5q90 0 151.5 -16.5t118.5 -38.5l-47 -164q-109 51 -231 51q-55 0 -100.5 -16.5t-77 -55.5t-49 -104.5t-17.5 -163.5v-174h387v-154h-387v-16q0 -102 -8.5 -215t-24.5 -215h592v-164h-807q23 145 40 289.5 t17 290.5v30h-190z" />
<glyph unicode="&#xa4;" d="M90 342l150 150q-58 92 -58 219q0 125 58 217l-150 151l119 119l151 -154q96 59 218 60q121 0 215 -60l153 154l119 -119l-152 -151q29 -45 44.5 -99.5t15.5 -117.5q0 -66 -15.5 -119t-44.5 -98l152 -152l-119 -119l-153 152q-98 -57 -215 -58q-59 0 -114.5 14.5 t-103.5 43.5l-151 -152zM336 711q0 -59 19.5 -105.5t52 -80t76.5 -51t94 -17.5q49 0 93 17.5t76.5 51t52 80t19.5 105.5q0 57 -19.5 104t-52 81t-76.5 51.5t-93 17.5t-93.5 -17.5t-77 -51.5t-52 -81t-19.5 -104z" />
<glyph unicode="&#xa5;" d="M35 1419h211q74 -160 160 -319.5t178 -306.5q90 147 173 307t158 319h207q-90 -170 -189 -347t-210 -355h281v-146h-332v-209h332v-145h-332v-217h-187v217h-331v145h331v209h-331v146h278q-111 180 -210 357t-187 345z" />
<glyph unicode="&#xa6;" horiz-adv-x="571" d="M197 -379v785h178v-785h-178zM197 819v785h178v-785h-178z" />
<glyph unicode="&#xa7;" horiz-adv-x="1007" d="M88 633q0 53 17.5 99t43 84t58.5 65.5t63 46.5q-51 41 -80.5 94t-29.5 123q0 141 99 224t280 83q104 0 194 -20.5t144 -36.5l-43 -158q-49 18 -120 38.5t-177 20.5q-80 0 -138.5 -33.5t-58.5 -101.5q0 -37 12.5 -62.5t39 -47t67.5 -40t98 -36.5q74 -25 140.5 -53.5 t116.5 -69.5t79 -98.5t29 -139.5q0 -51 -16.5 -96t-41 -82t-56.5 -66.5t-63 -47.5q59 -43 96.5 -100.5t37.5 -133.5q0 -154 -108.5 -232.5t-309.5 -78.5q-137 0 -226.5 21.5t-142.5 47.5l47 152q61 -27 135 -45.5t189 -18.5t173 34t58 108q0 72 -55 111.5t-186 84.5 q-74 25 -140.5 53.5t-117 69.5t-79 98.5t-28.5 139.5zM262 651q0 -53 23.5 -89t65.5 -63.5t99.5 -49t124.5 -43.5q10 -4 19.5 -7.5t19.5 -7.5q59 39 96.5 90t37.5 115q0 53 -24 89t-65 62.5t-94 47.5t-114 41q-14 4 -27.5 9t-28.5 11q-59 -39 -96 -91t-37 -114z" />
<glyph unicode="&#xa8;" horiz-adv-x="770" d="M72 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM461 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xa9;" horiz-adv-x="1667" d="M133 711q0 174 57.5 312t153.5 233.5t223 145.5t267 50q139 0 266 -50t223 -145.5t153.5 -233.5t57.5 -312t-57.5 -312.5t-153.5 -233.5t-223 -145.5t-266 -50.5t-266.5 50.5t-223.5 145.5t-153.5 233.5t-57.5 312.5zM283 711q0 -135 41 -247t113.5 -191.5t174 -123 t222.5 -43.5t222 43.5t174 123t113.5 191.5t40.5 247t-40.5 246.5t-113.5 191.5t-174.5 123t-221.5 43q-121 0 -222.5 -43t-174 -123t-113.5 -191.5t-41 -246.5zM465 711q0 100 31.5 178t85 132t125 83t151.5 29q53 0 97 -8.5t77 -19.5t54.5 -22.5t29.5 -17.5l-47 -123 q-25 14 -79 33.5t-126 19.5q-104 0 -173.5 -72.5t-69.5 -211.5q0 -127 63.5 -208t185.5 -81q80 0 132.5 17.5t80.5 31.5l39 -123q-10 -6 -33.5 -17.5t-58.5 -20.5t-79 -16t-93 -7q-88 0 -159.5 28.5t-124 82t-81 132t-28.5 181.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="796" d="M78 913q0 63 26.5 108.5t71.5 73t104.5 40t125.5 12.5q29 0 63.5 -2t77.5 -8v6q0 31 -6 61.5t-24.5 54t-51.5 39t-86 15.5q-47 0 -103.5 -6.5t-97.5 -20.5l-20 129q39 10 101 20.5t128 10.5q84 0 141.5 -20.5t93 -57.5t51 -89t15.5 -118v-459q-49 -10 -133 -19t-168 -9 q-68 0 -124 13t-97 42t-64.5 74t-23.5 110zM221 913q0 -61 48 -86.5t132 -25.5q45 0 90.5 2t55.5 6v205q-23 4 -57.5 6t-67.5 2q-35 0 -71 -4t-64.5 -16.5t-47 -34t-18.5 -54.5z" />
<glyph unicode="&#xab;" horiz-adv-x="1021" d="M61 582l320 452l133 -71l-227 -381l227 -381l-133 -72zM487 582l320 452l133 -71l-227 -381l227 -381l-133 -72z" />
<glyph unicode="&#xac;" d="M109 645v162h938v-698h-164v536h-774z" />
<glyph unicode="&#xad;" horiz-adv-x="612" d="M53 524v178h506v-178h-506z" />
<glyph unicode="&#xae;" horiz-adv-x="1667" d="M133 711q0 174 57.5 312t153.5 233.5t223 145.5t267 50q139 0 266 -50t223 -145.5t153.5 -233.5t57.5 -312t-57.5 -312.5t-153.5 -233.5t-223 -145.5t-266 -50.5t-266.5 50.5t-223.5 145.5t-153.5 233.5t-57.5 312.5zM283 711q0 -135 41 -247t113.5 -191.5t174 -123 t222.5 -43.5t222 43.5t174 123t113.5 191.5t40.5 247t-40.5 246.5t-113.5 191.5t-174.5 123t-221.5 43q-121 0 -222.5 -43t-174 -123t-113.5 -191.5t-41 -246.5zM547 303v795q55 12 116.5 18t112.5 6q176 0 268.5 -65.5t92.5 -198.5q0 -76 -40 -132t-114 -87 q20 -25 47 -61.5t55.5 -81.5t57 -94.5t51.5 -98.5h-158q-47 92 -105.5 175t-101.5 132h-137v-307h-145zM692 729h78q92 0 153.5 25.5t61.5 105.5q0 76 -58.5 105.5t-140.5 29.5q-23 0 -47 -1t-47 -3v-262z" />
<glyph unicode="&#xaf;" horiz-adv-x="770" d="M94 1309v147h582v-147h-582z" />
<glyph unicode="&#xb0;" horiz-adv-x="679" d="M53 1305q0 66 23.5 119t62.5 89.5t91.5 56t109.5 19.5t109.5 -19.5t91.5 -56t62.5 -89.5t23.5 -119t-23.5 -119t-62.5 -90t-91.5 -56.5t-109.5 -19.5t-109.5 19.5t-91.5 56.5t-62.5 90t-23.5 119zM190 1305q0 -72 44.5 -114t105.5 -42t105 42t44 114t-44 113.5t-105 41.5 t-105.5 -42t-44.5 -113z" />
<glyph unicode="&#xb1;" d="M109 0v162h938v-162h-938zM109 696v162h387v412h163v-412h388v-162h-388v-411h-163v411h-387z" />
<glyph unicode="&#xb2;" horiz-adv-x="735" d="M61 1343q35 37 106 73t163 36q141 0 208.5 -59t67.5 -168q0 -43 -19.5 -84t-52 -81t-75.5 -80t-92 -83q-35 -29 -69 -62.5t-40 -60.5h381v-129h-545q-6 68 9.5 120t45 95t68.5 79t82 73q70 59 114 109t44 100q0 53 -34 77.5t-93 24.5q-35 0 -66 -9t-55.5 -22.5t-44 -27 t-29.5 -21.5z" />
<glyph unicode="&#xb3;" horiz-adv-x="735" d="M66 676l30 123q45 -16 95.5 -29.5t103.5 -13.5q109 0 149.5 33.5t40.5 87.5q0 35 -18 59.5t-50 39.5t-73 22.5t-84 7.5h-39v116h51q29 0 61 5.5t57.5 17.5t42 33.5t16.5 52.5q0 51 -38 72.5t-98 21.5q-55 0 -102 -19.5t-82 -35.5l-51 112q33 23 101.5 46.5t137.5 23.5 q150 0 212.5 -60.5t62.5 -154.5q0 -100 -113 -164q72 -23 114 -75t42 -124q0 -53 -18.5 -97t-59.5 -77.5t-105.5 -52t-154.5 -18.5q-63 0 -129 14t-102 33z" />
<glyph unicode="&#xb4;" horiz-adv-x="770" d="M260 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xb5;" horiz-adv-x="1187" d="M164 -379v1444h190v-569q0 -195 63.5 -273t205.5 -78q31 0 63.5 2.5t61 5.5t52 6t34.5 7v899h190v-1034q-66 -16 -169 -35t-226 -19q-113 0 -179.5 24t-107.5 69q6 -57 8 -115.5t2 -122.5v-211h-188z" />
<glyph unicode="&#xb6;" horiz-adv-x="1323" d="M88 981q0 113 46 197t132 141t209 86t275 29q86 0 184 -7.5t182 -27.5v-1778h-160v1645q-29 4 -71.5 7t-93.5 3q-16 0 -33 -1t-29 -3v-1651h-160v916q-227 23 -354 129t-127 315z" />
<glyph unicode="&#xb7;" horiz-adv-x="503" d="M115 603q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97z" />
<glyph unicode="&#xb8;" horiz-adv-x="770" d="M141 -360l23 116q25 -8 52.5 -14t62.5 -6q74 0 73 47q0 23 -22.5 38t-63.5 32l-14 6q6 20 18.5 47.5t24.5 54.5t23.5 48.5t17.5 31.5h131q-12 -23 -30.5 -57.5t-28.5 -59.5q59 -29 85.5 -62.5t26.5 -99.5q0 -23 -10 -49t-34.5 -48.5t-65.5 -37t-101 -14.5q-53 0 -97 8 t-71 19z" />
<glyph unicode="&#xb9;" horiz-adv-x="735" d="M102 1272q78 27 154 68.5t131 95.5h100v-791h-143v602q-45 -29 -103.5 -51t-99.5 -35z" />
<glyph unicode="&#xba;" horiz-adv-x="913" d="M88 1061q0 88 27.5 160.5t77 123t117 78t147.5 27.5t147.5 -27.5t116.5 -78t76.5 -123t27.5 -160.5t-27.5 -160t-76.5 -123t-116.5 -78.5t-147.5 -27.5t-147.5 27.5t-117 78.5t-77 123t-27.5 160zM240 1061q0 -113 56 -182.5t161 -69.5q104 0 160.5 69.5t56.5 182.5 q0 115 -56.5 183.5t-160.5 68.5q-102 0 -159.5 -68.5t-57.5 -183.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="1021" d="M82 201l227 381l-227 381l133 71l320 -452l-320 -453zM508 201l227 381l-227 381l133 71l320 -452l-320 -453z" />
<glyph unicode="&#xbc;" horiz-adv-x="1789" d="M102 1272q78 27 154 68.5t131 95.5h100v-791h-143v602q-45 -29 -103.5 -51t-99.5 -35zM401 0l801 1419h178l-801 -1419h-178zM1104 197v94q29 51 74 116.5t98 135t112.5 136t119.5 118.5h131v-480h102v-120h-102v-191h-140v191h-395zM1258 317h241v310 q-63 -66 -128.5 -149t-112.5 -161z" />
<glyph unicode="&#xbd;" horiz-adv-x="1789" d="M102 1272q78 27 154 68.5t131 95.5h100v-791h-143v602q-45 -29 -103.5 -51t-99.5 -35zM358 0l801 1419h178l-801 -1419h-178zM1116 704q35 37 106 73t163 36q141 0 208.5 -59t67.5 -168q0 -43 -19.5 -84t-52 -81t-75.5 -80t-92 -83q-35 -29 -69 -62.5t-40 -60.5h381v-129 h-545q-6 68 9.5 120t45 95t68.5 79t82 73q70 59 114 109t44 100q0 53 -34 77.5t-93 24.5q-35 0 -66 -9t-55.5 -22.5t-44 -27t-29.5 -21.5z" />
<glyph unicode="&#xbe;" horiz-adv-x="1789" d="M66 676l30 123q45 -16 95.5 -29.5t103.5 -13.5q109 0 149.5 33.5t40.5 87.5q0 35 -18 59.5t-50 39.5t-73 22.5t-84 7.5h-39v116h51q29 0 61 5.5t57.5 17.5t42 33.5t16.5 52.5q0 51 -38 72.5t-98 21.5q-55 0 -102 -19.5t-82 -35.5l-51 112q33 23 101.5 46.5t137.5 23.5 q150 0 212.5 -60.5t62.5 -154.5q0 -100 -113 -164q72 -23 114 -75t42 -124q0 -53 -18.5 -97t-59.5 -77.5t-105.5 -52t-154.5 -18.5q-63 0 -129 14t-102 33zM432 0l801 1419h178l-801 -1419h-178zM1104 197v94q29 51 74 116.5t98 135t112.5 136t119.5 118.5h131v-480h102 v-120h-102v-191h-140v191h-395zM1258 317h241v310q-63 -66 -128.5 -149t-112.5 -161z" />
<glyph unicode="&#xbf;" horiz-adv-x="827" d="M57 -70q0 68 26 121t64.5 101.5t82.5 91.5t83 91t64.5 101t25.5 121v19.5t-2 19.5h160q8 -41 8 -80q0 -66 -23.5 -119t-57 -99t-74.5 -87t-75 -82t-57.5 -84t-23.5 -92q0 -78 56.5 -128t156.5 -50q135 0 264 69l53 -147q-70 -37 -156.5 -59.5t-185.5 -22.5 q-111 0 -184.5 28.5t-119.5 73.5t-65.5 101.5t-19.5 111.5zM334 928q0 55 37 96t100 41t100 -41t37 -96t-36.5 -96t-100.5 -41q-63 0 -100 41t-37 96z" />
<glyph unicode="&#xc0;" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5z M432 1787l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xc1;" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5z M551 1593l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xc2;" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM399 1601l279 293l279 -293l-80 -90l-199 180l-199 -180zM410 526h528q-66 178 -130.5 345 t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5z" />
<glyph unicode="&#xc3;" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM342 1628q8 25 26.5 57.5t45 60t62.5 47t79 19.5q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5 t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5z" />
<glyph unicode="&#xc4;" horiz-adv-x="1357" d="M16 0q82 225 154 416.5t140.5 363.5t136 329t141.5 310h182q74 -154 141.5 -310.5t136 -328.5t140.5 -363.5t153 -416.5h-217q-35 92 -65.5 181t-63.5 181h-643l-129 -362h-207zM365 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5 t-35.5 86.5zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -320.5t-127.5 -345.5zM754 1701q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xc5;" horiz-adv-x="1357" d="M16 0q76 209 143.5 390t132 344t127 310.5t130.5 292.5q-39 29 -61.5 72t-22.5 100q0 49 17.5 87t46 66t66.5 42t81 14t81 -14t66.5 -42t46 -65.5t17.5 -87.5q0 -55 -22.5 -97t-59.5 -71q68 -145 131 -293.5t127.5 -311.5t132.5 -344t145 -392h-217q-35 92 -65.5 182 t-63.5 183h-643l-129 -365h-207zM410 526h528q-66 178 -130.5 345t-133.5 321q-72 -154 -136.5 -319.5t-127.5 -346.5zM567 1509q0 -53 32 -82.5t77 -29.5t76.5 29.5t31.5 82.5t-31.5 83t-76.5 30t-77 -29.5t-32 -83.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1914" d="M12 0q117 221 228.5 416.5t218 370t210 331t205.5 301.5h914v-166h-617v-428h543v-161h-543v-498h668v-166h-864v365h-559q-49 -90 -97.5 -181.5t-93.5 -183.5h-213zM508 526h467v738q-109 -147 -225.5 -334t-241.5 -404z" />
<glyph unicode="&#xc7;" horiz-adv-x="1269" d="M119 711q0 178 54 316t146.5 232.5t215 143.5t262.5 49q88 0 158.5 -12.5t122.5 -28.5t85 -32.5t45 -24.5l-57 -164q-18 12 -53 26.5t-79 29t-96.5 23.5t-105.5 9q-113 0 -203 -39t-153.5 -112.5t-97 -179t-33.5 -236.5q0 -127 29.5 -231.5t89 -179.5t148.5 -116t208 -41 q137 0 227 29t135 51l52 -164q-29 -23 -138.5 -54.5t-277.5 -35.5q-6 -12 -11.5 -23.5t-9.5 -21.5q59 -29 86 -62.5t27 -99.5q0 -23 -10.5 -49t-35 -48.5t-65.5 -37t-100 -14.5q-53 0 -97 8t-71 19l23 116q25 -8 52 -14t62 -6q74 0 74 47q0 23 -22.5 38t-63.5 32l-14 6 q8 25 21.5 57t27.5 61q-127 16 -229.5 72.5t-175 150t-112.5 221.5t-40 290z" />
<glyph unicode="&#xc8;" horiz-adv-x="1169" d="M176 0v1419h866v-170h-667v-422h594v-165h-594v-492h719v-170h-918zM410 1787l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xc9;" horiz-adv-x="1169" d="M176 0v1419h866v-170h-667v-422h594v-165h-594v-492h719v-170h-918zM518 1593l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xca;" horiz-adv-x="1169" d="M176 0v1419h866v-170h-667v-422h594v-165h-594v-492h719v-170h-918zM329 1601l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xcb;" horiz-adv-x="1169" d="M176 0v1419h866v-170h-667v-422h594v-165h-594v-492h719v-170h-918zM295 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM684 1701q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5 t-83 33.5t-36 86.5z" />
<glyph unicode="&#xcc;" horiz-adv-x="550" d="M31 1787l123 121l262 -315l-96 -86zM176 0v1419h199v-1419h-199z" />
<glyph unicode="&#xcd;" horiz-adv-x="550" d="M139 1593l262 315l123 -121l-289 -280zM176 0v1419h199v-1419h-199z" />
<glyph unicode="&#xce;" horiz-adv-x="550" d="M-3 1601l279 293l279 -293l-80 -90l-199 180l-199 -180zM176 0v1419h199v-1419h-199z" />
<glyph unicode="&#xcf;" horiz-adv-x="550" d="M-37 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM176 0v1419h199v-1419h-199zM352 1701q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xd0;" horiz-adv-x="1486" d="M39 664v153h164v582q84 20 187.5 27.5t189.5 7.5q174 0 319 -44t249.5 -133.5t162 -225.5t57.5 -320t-57.5 -320.5t-162 -225.5t-249.5 -133t-319 -44q-86 0 -189.5 7t-187.5 28v641h-164zM401 168q18 -2 64.5 -4t130.5 -2q283 0 422 144.5t139 404.5t-139 404.5 t-422 144.5q-84 0 -130 -2.5t-65 -4.5v-436h267v-153h-267v-496z" />
<glyph unicode="&#xd1;" horiz-adv-x="1490" d="M176 0v1419h158q96 -102 205.5 -238.5t217 -280.5t203 -283.5t160.5 -247.5v1050h195v-1419h-166q-45 76 -103.5 170t-126 195.5t-140 206t-144.5 201.5t-139.5 183t-124.5 152v-1108h-195zM409 1628q8 25 26.5 57.5t45 60t62.5 47t79 19.5q41 0 77 -14.5t69 -30.5 q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61z" />
<glyph unicode="&#xd2;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM551 1787l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xd3;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM659 1593l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xd4;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM518 1601l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xd5;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM461 1628q8 25 26.5 57.5t45 60t62.5 47t79 19.5q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61 l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61z" />
<glyph unicode="&#xd6;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q137 0 259 -47t214 -140.5t146.5 -232.5t54.5 -321t-54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-139 0 -263 47t-217.5 140.5t-147.5 233t-54 321.5zM328 711q0 -129 32.5 -234.5t93 -179.5t147.5 -114 t196 -40t194.5 40t146 114t93.5 179.5t33 234.5t-33 234.5t-93.5 179t-146.5 113.5t-194 40q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM484 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM873 1701 q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xd7;" d="M164 313l299 299l-299 299l115 115l299 -299l299 299l114 -115l-299 -299l299 -299l-114 -114l-299 299l-299 -299z" />
<glyph unicode="&#xd8;" horiz-adv-x="1593" d="M119 711q0 182 54 321t147.5 232.5t217.5 140.5t263 47q217 0 385 -115l121 158l127 -94l-131 -170q80 -92 126 -222t46 -298q0 -182 -54.5 -321.5t-146.5 -233t-214 -140.5t-259 -47q-109 0 -206 28t-181 83l-119 -154l-127 94l127 164q-82 92 -129 223.5t-47 303.5z M328 711q0 -223 90 -367l653 846q-113 88 -274 88q-109 0 -196 -40t-147.5 -113.5t-93 -179t-32.5 -234.5zM526 227q109 -84 271 -84q109 0 194.5 40t146 114t93.5 179.5t33 234.5q0 109 -22.5 197.5t-63.5 160.5z" />
<glyph unicode="&#xd9;" horiz-adv-x="1409" d="M166 528v891h199v-868q0 -213 94 -309.5t246 -96.5q76 0 138 24t107 73t69.5 125.5t24.5 183.5v868h199v-891q0 -119 -31.5 -221t-98 -177t-168 -118t-240.5 -43t-242 43t-168.5 118t-97 177.5t-31.5 220.5zM459 1787l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xda;" horiz-adv-x="1409" d="M166 528v891h199v-868q0 -213 94 -309.5t246 -96.5q76 0 138 24t107 73t69.5 125.5t24.5 183.5v868h199v-891q0 -119 -31.5 -221t-98 -177t-168 -118t-240.5 -43t-242 43t-168.5 118t-97 177.5t-31.5 220.5zM567 1593l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xdb;" horiz-adv-x="1409" d="M166 528v891h199v-868q0 -213 94 -309.5t246 -96.5q76 0 138 24t107 73t69.5 125.5t24.5 183.5v868h199v-891q0 -119 -31.5 -221t-98 -177t-168 -118t-240.5 -43t-242 43t-168.5 118t-97 177.5t-31.5 220.5zM425 1601l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xdc;" horiz-adv-x="1409" d="M166 528v891h199v-868q0 -213 94 -309.5t246 -96.5q76 0 138 24t107 73t69.5 125.5t24.5 183.5v868h199v-891q0 -119 -31.5 -221t-98 -177t-168 -118t-240.5 -43t-242 43t-168.5 118t-97 177.5t-31.5 220.5zM391 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5 q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM780 1701q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xdd;" horiz-adv-x="1224" d="M12 1419h234q78 -168 174 -341t198 -333q100 160 196.5 333t176.5 341h221q-111 -205 -235.5 -416.5t-263.5 -429.5v-573h-199v569q-141 219 -266 432t-236 418zM477 1593l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xde;" horiz-adv-x="1247" d="M176 0v1419h199v-231q39 4 81 5t81 1q637 0 637 -453q0 -123 -44.5 -207.5t-127 -139t-201.5 -79t-269 -24.5h-157v-291h-199zM375 455h149q102 0 184.5 13t138.5 46t87 88t31 141q0 82 -32 136.5t-89.5 86t-137 44t-176.5 12.5h-76.5t-78.5 -4v-563z" />
<glyph unicode="&#xdf;" horiz-adv-x="1275" d="M164 0v1135q0 102 28.5 186t84 143.5t137.5 92t188 32.5q111 0 190.5 -24.5t130 -68.5t74 -104t23.5 -130q0 -51 -14.5 -91.5t-36 -74t-47 -62t-48.5 -53.5q-47 -51 -79.5 -85t-32.5 -85q0 -31 15.5 -53.5t40 -39t54 -30.5t60.5 -29q55 -27 103 -57.5t84 -70t55.5 -94 t19.5 -130.5q0 -160 -99.5 -246t-308.5 -86q-43 0 -86 6.5t-79.5 15.5t-64.5 19.5t-40 16.5l33 166q12 -6 37.5 -16.5t59.5 -20.5t74 -17.5t81 -7.5q102 0 151 45t49 121q0 80 -47 131t-163 105q-68 31 -112 58.5t-68.5 56t-35 59t-10.5 71.5q0 82 45 137.5t97 108.5 q20 20 41.5 45t40 50.5t29.5 52t11 55.5q0 90 -53 140t-160 50q-137 0 -199.5 -77.5t-62.5 -215.5v-1130h-190z" />
<glyph unicode="&#xe0;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5zM293 1468l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xe1;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5zM401 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xe2;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM260 1282l279 293l279 -293l-80 -90l-199 180l-199 -180zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53 t-26.5 -89.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM203 1309q8 25 26.5 57.5t45 60t62.5 47t79 19.5q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5 q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM226 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5 t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5zM615 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xe5;" horiz-adv-x="1069" d="M88 317q0 88 36 151.5t97.5 102.5t143 57.5t172.5 18.5q29 0 59.5 -3t58 -8t48 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 123 32t186 16q115 0 193.5 -30t127 -84t69 -129t20.5 -165v-666q-25 -4 -69 -11 t-99.5 -13t-120 -11.5t-127.5 -5.5q-90 0 -166 18.5t-131 58.5t-86 105.5t-31 157.5zM281 319q0 -102 65 -142t178 -40q68 0 120 3t87 12v317q-20 10 -66.5 17.5t-111.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5zM328 1386q0 49 17.5 87t46 66t66.5 42t81 14 t81 -14t66.5 -42t46 -66t17.5 -87t-17.5 -86.5t-46 -65.5t-66.5 -42t-81 -14t-81 14t-66.5 42t-46 65.5t-17.5 86.5zM430 1386q0 -53 32 -82.5t77 -29.5t77 29.5t32 82.5t-32 83t-77 30t-77 -29.5t-32 -83.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1759" d="M90 317q0 88 36 151.5t97.5 102.5t143.5 57.5t172 18.5q29 0 59.5 -3t57 -8t47 -9t28.5 -6v53q0 47 -10 93t-37 82t-73 57.5t-119 21.5q-94 0 -165 -13.5t-106 -27.5l-22 157q37 16 122 32t183 16q141 0 224 -48.5t124 -134.5q68 92 160 137.5t192 45.5q213 0 329 -135.5 t116 -407.5q0 -16 -1 -27.5t-1 -21.5v-19h-729q12 -164 97 -251t261 -87q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-117 0 -203.5 28t-152.5 81q-20 -14 -54 -32.5t-81 -36t-105.5 -29t-128.5 -11.5q-102 0 -183 18.5t-138 59.5t-88 106.5t-31 157.5 zM283 319q0 -104 66.5 -143t185.5 -39q106 0 167.5 23.5t94.5 46.5q-31 57 -48.5 122.5t-19.5 139.5q-23 10 -65.5 17.5t-108.5 7.5q-43 0 -91 -6.5t-88 -26t-66.5 -53t-26.5 -89.5zM922 635h528q2 129 -64.5 212t-183.5 83q-66 0 -116 -25.5t-83.5 -66.5t-54 -94.5 t-26.5 -108.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="952" d="M104 530q0 123 36 225.5t101.5 177.5t161 117t211.5 42q72 0 143.5 -12.5t137.5 -39.5l-43 -161q-43 20 -99.5 32.5t-119.5 12.5q-160 0 -245 -100.5t-85 -293.5q0 -86 19.5 -157.5t61.5 -122.5t107.5 -79t159.5 -28q76 0 137.5 14.5t96.5 30.5l26 -159 q-16 -8 -43.5 -17.5t-62.5 -16.5t-75 -12.5t-79 -7.5l-22 -51q59 -29 85.5 -62.5t26.5 -99.5q0 -23 -10 -49t-34.5 -48.5t-65.5 -37t-101 -14.5q-53 0 -97 8t-71 19l23 116q25 -8 52.5 -14t62.5 -6q74 0 73 47q0 23 -22.5 38t-63.5 32l-14 6q8 25 22.5 59.5t30.5 65.5 q-104 14 -183 60t-132 117.5t-80 165t-27 203.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1144" d="M104 530q0 141 41 247t109 175.5t156 104.5t180 35q215 0 329.5 -134.5t114.5 -408.5v-31.5t-2 -36.5h-729q12 -166 96 -252t263 -86q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-139 0 -240.5 42t-167 116t-97.5 175t-32 222zM307 635h529 q2 129 -64.5 212t-183.5 83q-66 0 -116 -25.5t-85 -66.5t-54.5 -94.5t-25.5 -108.5zM340 1468l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xe9;" horiz-adv-x="1144" d="M104 530q0 141 41 247t109 175.5t156 104.5t180 35q215 0 329.5 -134.5t114.5 -408.5v-31.5t-2 -36.5h-729q12 -166 96 -252t263 -86q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-139 0 -240.5 42t-167 116t-97.5 175t-32 222zM307 635h529 q2 129 -64.5 212t-183.5 83q-66 0 -116 -25.5t-85 -66.5t-54.5 -94.5t-25.5 -108.5zM448 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xea;" horiz-adv-x="1144" d="M104 530q0 141 41 247t109 175.5t156 104.5t180 35q215 0 329.5 -134.5t114.5 -408.5v-31.5t-2 -36.5h-729q12 -166 96 -252t263 -86q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-139 0 -240.5 42t-167 116t-97.5 175t-32 222zM307 635h529 q2 129 -64.5 212t-183.5 83q-66 0 -116 -25.5t-85 -66.5t-54.5 -94.5t-25.5 -108.5zM307 1282l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xeb;" horiz-adv-x="1144" d="M104 530q0 141 41 247t109 175.5t156 104.5t180 35q215 0 329.5 -134.5t114.5 -408.5v-31.5t-2 -36.5h-729q12 -166 96 -252t263 -86q100 0 168.5 17.5t103.5 34.5l27 -160q-35 -18 -122 -39t-198 -21q-139 0 -240.5 42t-167 116t-97.5 175t-32 222zM273 1382 q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM307 635h529q2 129 -64.5 212t-183.5 83q-66 0 -116 -25.5t-85 -66.5t-54.5 -94.5t-25.5 -108.5zM662 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5 t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xec;" horiz-adv-x="518" d="M14 1468l123 121l262 -315l-96 -86zM164 0v1065h190v-1065h-190z" />
<glyph unicode="&#xed;" horiz-adv-x="518" d="M123 1274l262 315l123 -121l-289 -280zM164 0v1065h190v-1065h-190z" />
<glyph unicode="&#xee;" horiz-adv-x="518" d="M-19 1282l279 293l279 -293l-80 -90l-199 180l-199 -180zM164 0v1065h190v-1065h-190z" />
<glyph unicode="&#xef;" horiz-adv-x="518" d="M-53 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM164 0v1065h190v-1065h-190zM336 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xf0;" horiz-adv-x="1206" d="M104 508q0 115 34 207t95.5 156.5t150.5 98.5t200 34q104 0 182 -33t115 -62q-25 164 -113 303l-246 -84l-47 129l209 72q-68 80 -172 156l121 104q45 -29 103.5 -79t117.5 -124l254 89l47 -129l-219 -76q66 -111 111 -258.5t45 -339.5q0 -135 -24 -261t-81 -223.5 t-154.5 -156t-244.5 -58.5q-121 0 -212 45t-151.5 119t-90.5 170t-30 201zM299 508q0 -74 18.5 -140.5t54.5 -116.5t90 -80t126 -30q94 0 154.5 45t94 119t47 168.5t13.5 192.5q0 16 -1 32.5t-1 32.5q-70 61 -145.5 84t-141.5 23q-84 0 -142 -26t-95 -71t-54.5 -104 t-17.5 -129z" />
<glyph unicode="&#xf1;" horiz-adv-x="1175" d="M164 0v1034q66 16 174 34.5t250 18.5q127 0 211 -35.5t134 -100t70.5 -154.5t20.5 -199v-598h-190v557q0 98 -13.5 168t-44.5 113t-82 62.5t-127 19.5q-31 0 -63.5 -2.5t-62 -5.5t-53 -7t-34.5 -6v-899h-190zM258 1309q8 25 26.5 57.5t45 60t62.5 47t79 19.5 q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61z" />
<glyph unicode="&#xf2;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5 t-81 286t-220 106t-220 -105.5t-81 -286.5zM358 1468l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xf3;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5 t-81 286t-220 106t-220 -105.5t-81 -286.5zM467 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xf4;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5 t-81 286t-220 106t-220 -105.5t-81 -286.5zM325 1282l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xf5;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM268 1309q8 25 26.5 57.5t45 60t62.5 47t79 19.5 q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5 t-81 286t-220 106t-220 -105.5t-81 -286.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q109 0 201 -40t158.5 -114t103.5 -177.5t37 -228.5q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40t-201 40t-158.5 114t-103.5 176.5t-37 228.5zM291 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5 q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5t-81 286t-220 106t-220 -105.5t-81 -286.5zM680 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z " />
<glyph unicode="&#xf7;" d="M109 532v162h938v-162h-938zM455 217q0 57 35.5 91t87.5 34q51 0 86.5 -34t35.5 -91t-35.5 -91t-86.5 -34t-87 34t-36 91zM455 1008q0 57 35.5 91t87.5 34q51 0 86.5 -34t35.5 -91t-35.5 -91t-86.5 -34t-87 33.5t-36 91.5z" />
<glyph unicode="&#xf8;" horiz-adv-x="1208" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q80 0 150.5 -22.5t130.5 -63.5l100 131l109 -82l-111 -144q57 -72 89 -167t32 -212q0 -127 -37 -229t-103.5 -176t-158.5 -114t-201 -40q-162 0 -280 84l-101 -131l-108 82l110 144q-57 72 -89 168t-32 212z M301 532q0 -133 43 -225l434 561q-74 57 -174 58q-141 0 -222 -106t-81 -288zM430 195q70 -55 174 -56q141 0 222 105.5t81 287.5q0 127 -45 224z" />
<glyph unicode="&#xf9;" horiz-adv-x="1175" d="M152 467v598h190v-557q0 -195 61.5 -279t206.5 -84q31 0 64 2.5t61.5 5.5t52 6t33.5 7v899h191v-1034q-66 -16 -173.5 -35t-248.5 -19q-123 0 -207 36t-135 101.5t-73.5 154.5t-22.5 198zM336 1468l123 121l262 -315l-96 -86z" />
<glyph unicode="&#xfa;" horiz-adv-x="1175" d="M152 467v598h190v-557q0 -195 61.5 -279t206.5 -84q31 0 64 2.5t61.5 5.5t52 6t33.5 7v899h191v-1034q-66 -16 -173.5 -35t-248.5 -19q-123 0 -207 36t-135 101.5t-73.5 154.5t-22.5 198zM444 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xfb;" horiz-adv-x="1175" d="M152 467v598h190v-557q0 -195 61.5 -279t206.5 -84q31 0 64 2.5t61.5 5.5t52 6t33.5 7v899h191v-1034q-66 -16 -173.5 -35t-248.5 -19q-123 0 -207 36t-135 101.5t-73.5 154.5t-22.5 198zM303 1282l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#xfc;" horiz-adv-x="1175" d="M152 467v598h190v-557q0 -195 61.5 -279t206.5 -84q31 0 64 2.5t61.5 5.5t52 6t33.5 7v899h191v-1034q-66 -16 -173.5 -35t-248.5 -19q-123 0 -207 36t-135 101.5t-73.5 154.5t-22.5 198zM269 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5 t-82.5 33.5t-35.5 86.5zM658 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#xfd;" horiz-adv-x="1017" d="M4 -352l35 153q23 -10 58.5 -19t70.5 -9q113 0 176.5 50t114.5 163q-129 246 -241 521t-185 558h205q23 -92 54.5 -198.5t70 -219t84 -225.5t94.5 -217q78 215 135 426t108 434h197q-74 -301 -164 -578.5t-194 -519.5q-41 -92 -85 -158.5t-97.5 -109.5t-120 -63.5 t-150.5 -20.5q-23 0 -47.5 3t-48 8t-43 11.5t-27.5 10.5zM397 1274l262 315l123 -121l-289 -280z" />
<glyph unicode="&#xfe;" horiz-adv-x="1206" d="M164 -379v1935l190 33v-542q53 18 111.5 29t112.5 11q117 0 214 -38.5t165.5 -110.5t106.5 -175.5t38 -232.5q0 -121 -32 -223t-93.5 -176t-150.5 -115t-203 -41q-92 0 -163 25t-106 47v-426h-190zM354 225q35 -29 100.5 -55.5t143.5 -26.5q82 0 140.5 30t95 82t53 122.5 t16.5 152.5q0 186 -92 288t-246 102q-31 0 -63.5 -4.5t-62 -9.5t-52 -11t-33.5 -10v-660z" />
<glyph unicode="&#xff;" horiz-adv-x="1017" d="M4 -352l35 153q23 -10 58.5 -19t70.5 -9q113 0 176.5 50t114.5 163q-129 246 -241 521t-185 558h205q23 -92 54.5 -198.5t70 -219t84 -225.5t94.5 -217q78 215 135 426t108 434h197q-74 -301 -164 -578.5t-194 -519.5q-41 -92 -85 -158.5t-97.5 -109.5t-120 -63.5 t-150.5 -20.5q-23 0 -47.5 3t-48 8t-43 11.5t-27.5 10.5zM222 1382q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5zM611 1382q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5 t-36 86.5z" />
<glyph unicode="&#x152;" horiz-adv-x="2033" d="M119 711q0 182 59.5 317t162.5 225t244.5 135.5t307.5 45.5q47 0 104.5 -4.5t108.5 -10.5h801v-166h-637v-428h563v-161h-563v-498h688v-166h-852q-51 -6 -109.5 -10t-105.5 -4q-166 0 -307.5 45t-244.5 135t-161.5 226t-58.5 319zM330 711q0 -131 39 -233.5 t111.5 -173.5t177 -108.5t233.5 -37.5q47 0 81 1t56 3q25 2 43 6v1083q-45 6 -90 8.5t-90 2.5q-129 0 -233.5 -38t-177 -109t-111.5 -173t-39 -231z" />
<glyph unicode="&#x153;" horiz-adv-x="1939" d="M104 532q0 125 37 228.5t103.5 177.5t159 114t200.5 40q129 0 230.5 -60.5t164.5 -165.5q68 115 171.5 170.5t213.5 55.5q213 0 329 -135.5t116 -407.5q0 -16 -1 -27.5t-1 -21.5v-19h-729q12 -164 97 -251t261 -87q100 0 169 17.5t104 34.5l26 -160q-35 -18 -121.5 -39 t-197.5 -21q-162 0 -269.5 59.5t-167.5 164.5q-66 -111 -166 -168.5t-229 -57.5q-109 0 -201 40t-158.5 114t-103.5 176.5t-37 228.5zM303 532q0 -180 81 -285.5t220 -105.5t220 105.5t81 285.5t-81 286t-220 106t-220 -105.5t-81 -286.5zM1102 635h528q2 129 -64.5 212 t-183.5 83q-66 0 -115.5 -25.5t-83.5 -66.5t-54.5 -94.5t-26.5 -108.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1224" d="M12 1419h234q78 -168 174 -341t198 -333q100 160 196.5 333t176.5 341h221q-111 -205 -235.5 -416.5t-263.5 -429.5v-573h-199v569q-141 219 -266 432t-236 418zM299 1701q0 53 35.5 87t82.5 34t83 -33.5t36 -87.5q0 -53 -36 -86.5t-83 -33.5t-82.5 33.5t-35.5 86.5z M688 1701q0 53 35.5 87t83.5 34q47 0 82.5 -33.5t35.5 -87.5q0 -53 -35.5 -86.5t-82.5 -33.5t-83 33.5t-36 86.5z" />
<glyph unicode="&#x2c6;" horiz-adv-x="770" d="M106 1282l279 293l279 -293l-80 -90l-199 180l-199 -180z" />
<glyph unicode="&#x2dc;" horiz-adv-x="770" d="M47 1309q8 25 26.5 57.5t45 60t62.5 47t79 19.5q41 0 77 -14.5t69 -30.5q35 -16 59 -24.5t47 -8.5q35 0 64.5 29t46.5 61l98 -49q-10 -25 -27.5 -57.5t-44 -60t-62.5 -47t-79 -19.5q-41 0 -77 14t-69 31q-35 16 -59 24.5t-47 8.5q-35 0 -64.5 -29t-46.5 -61z" />
<glyph unicode="&#x2000;" horiz-adv-x="954" />
<glyph unicode="&#x2001;" horiz-adv-x="1908" />
<glyph unicode="&#x2002;" horiz-adv-x="954" />
<glyph unicode="&#x2003;" horiz-adv-x="1908" />
<glyph unicode="&#x2004;" horiz-adv-x="636" />
<glyph unicode="&#x2005;" horiz-adv-x="477" />
<glyph unicode="&#x2006;" horiz-adv-x="318" />
<glyph unicode="&#x2007;" horiz-adv-x="318" />
<glyph unicode="&#x2008;" horiz-adv-x="238" />
<glyph unicode="&#x2009;" horiz-adv-x="381" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="612" d="M53 524v178h506v-178h-506z" />
<glyph unicode="&#x2011;" horiz-adv-x="612" d="M53 524v178h506v-178h-506z" />
<glyph unicode="&#x2012;" horiz-adv-x="612" d="M53 524v178h506v-178h-506z" />
<glyph unicode="&#x2013;" horiz-adv-x="1015" d="M-4 532v162h1024v-162h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2039" d="M-4 532v162h2048v-162h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="481" d="M123 1065v44t2 42q8 106 47 210.5t94 194.5l148 -47q-43 -90 -64.5 -182t-21.5 -172q0 -20 1 -44t3 -46h-209z" />
<glyph unicode="&#x2019;" horiz-adv-x="481" d="M68 1092q43 92 64.5 183t21.5 171q0 20 -1 43.5t-3 46.5h208v-44.5t-2 -41.5q-8 -106 -47 -209.5t-94 -196.5z" />
<glyph unicode="&#x201a;" horiz-adv-x="481" d="M68 -211q43 90 64.5 182t21.5 172q0 20 -1 44t-3 46h208v-44t-2 -42q-8 -106 -47 -210.5t-94 -194.5z" />
<glyph unicode="&#x201c;" horiz-adv-x="854" d="M123 1065v44t2 42q8 106 47 210.5t94 194.5l148 -47q-43 -90 -64.5 -182t-21.5 -172q0 -20 1 -44t3 -46h-209zM496 1065v44t2 42q8 106 47 210.5t94 194.5l148 -47q-43 -90 -64.5 -182t-21.5 -172q0 -20 1 -44t3 -46h-209z" />
<glyph unicode="&#x201d;" horiz-adv-x="854" d="M68 1092q43 92 64.5 183t21.5 171q0 20 -1 43.5t-3 46.5h208v-44.5t-2 -41.5q-8 -106 -47 -209.5t-94 -196.5zM441 1092q43 92 64.5 183t21.5 171q0 20 -1 43.5t-3 46.5h208v-44.5t-2 -41.5q-8 -106 -47 -209.5t-94 -196.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="854" d="M68 -211q43 90 64.5 182t21.5 172q0 20 -1 44t-3 46h208v-44t-2 -42q-8 -106 -47 -210.5t-94 -194.5zM441 -211q43 90 64.5 182t21.5 172q0 20 -1 44t-3 46h208v-44t-2 -42q-8 -106 -47 -210.5t-94 -194.5z" />
<glyph unicode="&#x2022;" horiz-adv-x="737" d="M106 723q0 51 18.5 99t52.5 83t82 56.5t110 21.5q61 0 109 -21.5t82 -56.5t52.5 -83t18.5 -99q0 -53 -18.5 -100.5t-52.5 -82t-82 -56t-109 -21.5t-109.5 21.5t-82.5 56t-52.5 82t-18.5 100.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="2039" d="M201 111q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97zM883 111q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5t-100 41t-37 97zM1565 111q0 55 36.5 96t100.5 41q63 0 100 -41t37 -96t-37 -96.5t-100 -41.5 t-100 41t-37 97z" />
<glyph unicode="&#x202f;" horiz-adv-x="381" />
<glyph unicode="&#x2039;" horiz-adv-x="595" d="M61 582l320 452l133 -71l-227 -381l227 -381l-133 -72z" />
<glyph unicode="&#x203a;" horiz-adv-x="595" d="M82 201l227 381l-227 381l133 71l320 -452l-320 -453z" />
<glyph unicode="&#x205f;" horiz-adv-x="477" />
<glyph unicode="&#x20ac;" d="M92 465v147h168q-2 23 -2 47.5v51.5v55.5t2 52.5h-168v148h189q47 240 186 359.5t356 119.5q90 0 149.5 -11.5t119.5 -29.5l-41 -164q-49 18 -107.5 29.5t-120.5 11.5q-78 0 -136 -22.5t-100 -63.5t-68.5 -99.5t-41.5 -129.5h477l-28 -148h-469q-2 -27 -2 -53.5v-54.5 v-51.5t2 -47.5h428l-29 -147h-383q35 -182 126 -254t228 -72q86 0 148.5 16.5t111.5 39.5l41 -162q-35 -18 -120.5 -39t-190.5 -21q-240 0 -371 130t-170 362h-184z" />
<glyph unicode="&#x2122;" horiz-adv-x="1554" d="M47 1294v125h571v-125h-215v-557h-141v557h-215zM647 737q16 252 28.5 415t29.5 267h135q16 -35 40.5 -84t53.5 -106.5t58.5 -116.5t58.5 -115q27 55 57.5 114.5t59 117t53 106.5t41.5 84h135q16 -104 28.5 -267t28.5 -415h-143q-2 51 -4 109.5t-5.5 117t-7.5 116 t-8 106.5q-23 -39 -49.5 -91.5t-52 -103.5t-49 -96t-35.5 -72h-101q-12 27 -35.5 72t-49 96t-53 103.5t-48.5 91.5q-4 -49 -8 -106.5t-7 -116t-5 -117t-5 -109.5h-141z" />
<glyph unicode="&#xe000;" horiz-adv-x="1064" d="M0 0v1065h1065v-1065h-1065z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 68 KiB

BIN
font/ubuntu-r-webfont.ttf Normal file

Binary file not shown.

BIN
font/ubuntu-r-webfont.woff Normal file

Binary file not shown.

BIN
font/ubuntu-ri-webfont.eot Normal file

Binary file not shown.

245
font/ubuntu-ri-webfont.svg Normal file
View file

@ -0,0 +1,245 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="ubuntuitalic" horiz-adv-x="1155" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="473" />
<glyph unicode="&#xfb01;" horiz-adv-x="1271" d="M-35 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q59 0 112 -11t86 -28l-76 -151q-16 8 -49.5 17t-89.5 9q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356l-36 -160h-357l-164 -676 q-25 -104 -43 -186t-43.5 -153.5t-67.5 -138t-114 -138.5zM918 0l256 1065h190l-256 -1065h-190zM1219 1366q0 66 40.5 103.5t92.5 37.5q47 0 79.5 -29.5t32.5 -82.5q0 -61 -43 -99.5t-92 -38.5q-47 0 -78.5 29t-31.5 80z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1335" d="M-35 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q59 0 112 -11t86 -28l-76 -151q-16 8 -49.5 17t-89.5 9q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356l-36 -160h-357l-164 -676 q-25 -104 -43 -186t-43.5 -153.5t-67.5 -138t-114 -138.5zM991 279q0 47 8.5 98t22.5 106l258 1073l199 33l-269 -1120q-10 -45 -20 -88t-10 -82q0 -70 33.5 -111t125.5 -51l-43 -155q-84 2 -142 25.5t-94 62.5t-52.5 92t-16.5 117z" />
<glyph unicode="&#xfb03;" horiz-adv-x="2033" d="M-35 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q72 0 136 -14t97 -31l-76 -151q-16 8 -56 20t-118 12q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356l-36 -160h-357l-164 -676q-25 -104 -43 -186 t-43.5 -153.5t-67.5 -138t-114 -138.5zM727 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q59 0 112 -11t86 -28l-76 -151q-16 8 -49.5 17t-89.5 9q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356 l-36 -160h-357l-164 -676q-25 -104 -43 -186t-43.5 -153.5t-67.5 -138t-114 -138.5zM1680 0l256 1065h190l-256 -1065h-190zM1981 1366q0 66 40.5 103.5t92.5 37.5q47 0 79.5 -29.5t32.5 -82.5q0 -61 -43 -99.5t-92 -38.5q-47 0 -78.5 29t-31.5 80z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2097" d="M-35 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q72 0 136 -14t97 -31l-76 -151q-16 8 -56 20t-118 12q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356l-36 -160h-357l-164 -676q-25 -104 -43 -186 t-43.5 -153.5t-67.5 -138t-114 -138.5zM727 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q59 0 112 -11t86 -28l-76 -151q-16 8 -49.5 17t-89.5 9q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356 l-36 -160h-357l-164 -676q-25 -104 -43 -186t-43.5 -153.5t-67.5 -138t-114 -138.5zM1753 279q0 47 8.5 98t22.5 106l258 1073l199 33l-269 -1120q-10 -45 -20 -88t-10 -82q0 -70 33.5 -111t125.5 -51l-43 -155q-84 2 -142 25.5t-94 62.5t-52.5 92t-16.5 117z" />
<glyph unicode="&#xd;" horiz-adv-x="473" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="473" />
<glyph unicode="&#x09;" horiz-adv-x="473" />
<glyph unicode="&#xa0;" horiz-adv-x="473" />
<glyph unicode="!" horiz-adv-x="512" d="M150 94q0 74 44 114t101 40t91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -89.5 31t-32.5 90zM299 442q16 139 37.5 279.5t62.5 312.5l93 385h200l-92 -387q-12 -49 -33.5 -128t-47 -163t-53.5 -164.5t-50 -134.5h-117z" />
<glyph unicode="&#x22;" horiz-adv-x="839" d="M432 1026q8 111 22.5 218.5t39.5 211.5l24 100h195l-25 -102q-25 -100 -62.5 -212t-82.5 -216h-111zM786 1026q8 111 22.5 218.5t39.5 211.5l24 100h195l-25 -102q-25 -100 -62.5 -212t-82.5 -216h-111z" />
<glyph unicode="#" horiz-adv-x="1339" d="M186 375l37 151h205l158 367h-275l37 151h301l162 375h172l-160 -375h322l160 375h172l-160 -375h172l-37 -151h-199l-159 -367h270l-37 -151h-297l-160 -375h-172l158 375h-319l-160 -375h-172l157 375h-176zM600 526h322l159 367h-321z" />
<glyph unicode="$" d="M172 137l88 146q37 -23 112.5 -54.5t194.5 -31.5q59 0 118.5 11t107 37.5t76 70.5t28.5 110q0 45 -17.5 78t-49 59.5t-75.5 48t-96 45.5q-45 20 -89 47t-78.5 65t-56 90t-21.5 126q0 147 99 246.5t296 124.5l55 233h166l-55 -229q88 -8 158.5 -36t107.5 -52l-86 -142 q-35 25 -101.5 47.5t-164.5 22.5q-59 0 -111.5 -11t-92.5 -36t-62.5 -62.5t-22.5 -89.5q0 -84 51 -129t156 -94q55 -25 106.5 -53.5t89 -67.5t60 -91t22.5 -124q0 -90 -30.5 -159.5t-88 -119.5t-136 -81t-173.5 -41l-61 -264h-166l64 266q-53 2 -102.5 12.5t-92.5 24.5 t-76 29.5t-51 27.5z" />
<glyph unicode="%" horiz-adv-x="1712" d="M324 975q0 86 27.5 171t77.5 152.5t124 109.5t166 42q123 0 191.5 -70.5t68.5 -208.5q0 -86 -27.5 -171t-78 -152.5t-124 -109.5t-165.5 -42q-123 0 -191.5 71t-68.5 208zM356 0l1125 1419h194l-1124 -1419h-195zM475 989q0 -70 23.5 -114t95.5 -44q59 0 103 33t73 81 t43 105.5t14 106.5q0 70 -23.5 114t-94.5 44q-59 0 -103.5 -33t-73 -81t-43 -105.5t-14.5 -106.5zM1053 248q0 86 27.5 171t77.5 152.5t124 109.5t166 42q123 0 191.5 -70.5t68.5 -208.5q0 -86 -27.5 -171t-78 -152.5t-124 -109.5t-165.5 -42q-123 0 -191.5 71t-68.5 208z M1204 262q0 -70 23.5 -114t95.5 -44q59 0 103 33t73 81t43 105.5t14 106.5q0 70 -23.5 114t-94.5 44q-59 0 -103.5 -33t-73 -81t-43 -105.5t-14.5 -106.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1310" d="M160 301q0 92 29.5 166t82 132t124 104.5t155.5 82.5q-35 57 -59.5 121t-24.5 146q0 92 30.5 165.5t87 126t137.5 80t179 27.5q57 0 110.5 -17.5t92.5 -52t62.5 -85t23.5 -117.5q0 -80 -28.5 -144.5t-81 -118t-124 -98.5t-157.5 -84l237 -329q98 125 158 288l166 -20 q-29 -86 -85 -191.5t-142 -206.5q51 -72 95 -141t68 -135h-196q-16 37 -40 75t-52 79q-92 -76 -206 -124t-261 -48q-102 0 -174 23.5t-118 66.5t-67.5 101t-21.5 128zM346 334q0 -86 46 -140.5t161 -54.5q98 0 192.5 36t169.5 106l-282 389q-53 -23 -104.5 -54.5 t-91.5 -72.5t-65.5 -93.5t-25.5 -115.5zM645 1065q0 -55 21.5 -108.5t54.5 -106.5q53 20 106.5 50t95.5 69t67.5 86t25.5 102q0 70 -38 106.5t-104 36.5q-92 0 -160.5 -58t-68.5 -177z" />
<glyph unicode="'" horiz-adv-x="483" d="M432 1026q8 111 22.5 218.5t39.5 211.5l24 100h195l-25 -102q-25 -100 -62.5 -212t-82.5 -216h-111z" />
<glyph unicode="(" horiz-adv-x="649" d="M258 254q0 389 156.5 725t464.5 625l127 -91q-129 -129 -233.5 -273t-177.5 -299t-113 -317.5t-40 -330.5q0 -174 25 -313.5t84 -268.5l-145 -82q-70 123 -109 285t-39 340z" />
<glyph unicode=")" horiz-adv-x="649" d="M-102 -289q129 129 233.5 273.5t177 299t112.5 317.5t40 331q0 174 -24.5 313t-84.5 268l146 82q70 -123 108.5 -284.5t38.5 -339.5q0 -389 -156.5 -725t-463.5 -625z" />
<glyph unicode="*" horiz-adv-x="962" d="M303 1055l57 172l13 -4q86 -29 156.5 -68t144.5 -80q-16 86 -31.5 164t-15.5 164v16h184v-16q0 -86 -15.5 -164t-31.5 -164q74 41 144.5 80t156.5 68l12 4l58 -172l-17 -6q-82 -31 -164 -40.5t-168 -15.5q68 -57 127.5 -111.5t110.5 -125.5l10 -15l-149 -104l-8 12 q-49 74 -85 146.5t-73 150.5q-37 -78 -73 -150.5t-85 -146.5l-8 -12l-150 104l11 15q51 72 110.5 126t126.5 111q-86 6 -168 15.5t-164 40.5z" />
<glyph unicode="+" d="M244 528l39 162h372l103 422h174l-103 -422h373l-39 -162h-372l-103 -424h-172l100 424h-372z" />
<glyph unicode="," horiz-adv-x="503" d="M6 -272q41 55 75 120.5t58.5 133t41 132t22.5 119.5h203q-10 -74 -35 -149.5t-61 -148t-81 -139t-94 -122.5z" />
<glyph unicode="-" horiz-adv-x="600" d="M178 524l41 178h496l-41 -178h-496z" />
<glyph unicode="." horiz-adv-x="503" d="M139 94q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90z" />
<glyph unicode="/" horiz-adv-x="770" d="M-135 -379l1145 1983h190l-1145 -1983h-190z" />
<glyph unicode="0" d="M238 395q0 100 18 218t54 236t91.5 226.5t130 192.5t168 134t207.5 50q174 0 257 -107.5t83 -318.5q0 -100 -18.5 -218t-54 -235.5t-91 -226t-130 -192.5t-169 -134.5t-206.5 -50.5q-174 0 -257 107.5t-83 318.5zM432 420q0 -154 37 -219.5t131 -65.5q66 0 124 39 t108.5 104.5t91.5 152.5t69.5 183.5t44 195.5t15.5 191q0 154 -37 219.5t-131 65.5q-63 0 -123 -39t-110 -104.5t-91 -152.5t-69.5 -183t-44 -196.5t-15.5 -190.5z" />
<glyph unicode="1" d="M461 1126q123 45 251 116t244 177h138l-340 -1419h-191l273 1137q-29 -23 -69 -46.5t-86 -46t-95 -42t-94 -33.5z" />
<glyph unicode="2" d="M162 0q16 109 58 197t100.5 161.5t129 135t146.5 118.5q80 59 154.5 115.5t132 115t92.5 122t35 139.5q0 86 -46 134t-151 48q-57 0 -108.5 -14.5t-92.5 -34.5t-72.5 -44t-50.5 -42l-65 147q29 27 72 53.5t97 49t116.5 37t128.5 14.5q98 0 168.5 -27.5t114.5 -72.5 t64.5 -103t20.5 -119q0 -109 -34.5 -190.5t-94 -150t-137.5 -129t-166 -125.5q-51 -39 -108.5 -84t-108.5 -93.5t-90 -98.5t-55 -99h616l-37 -160h-829z" />
<glyph unicode="3" d="M141 53l72 162q14 -8 40 -21.5t62.5 -25.5t85 -21.5t109.5 -9.5q82 0 152.5 19.5t123 58.5t81 97.5t28.5 136.5q0 123 -89 176t-237 53h-43l37 156h64q68 0 132 17t116.5 53t84 88t31.5 122q0 86 -52 130t-151 44q-88 0 -158.5 -27.5t-121.5 -60.5l-45 148 q27 18 65.5 36.5t86 34t99.5 24.5t105 9q96 0 165 -24.5t114 -67.5t65.5 -101.5t20.5 -123.5q0 -135 -79 -230.5t-214 -148.5q35 -14 70.5 -40t63.5 -64t45 -88t17 -111q0 -109 -37.5 -198t-111.5 -152.5t-182.5 -98.5t-251.5 -35q-72 0 -132.5 10.5t-107.5 23.5t-78.5 27.5 t-44.5 22.5z" />
<glyph unicode="4" d="M178 362l31 130q57 96 150.5 219t207 249.5t238.5 246.5t248 212h186l-217 -901h166l-37 -156h-166l-86 -362h-184l86 362h-623zM410 518h430l159 664q-74 -61 -153.5 -138t-157.5 -163t-149.5 -178.5t-128.5 -184.5z" />
<glyph unicode="5" d="M150 49l73 160q29 -16 99.5 -44t183.5 -28q84 0 156.5 21.5t126 61.5t84 99.5t30.5 133.5q0 94 -51 148t-127 82t-164 36t-162 12q33 94 64 180t58.5 169t52 166t47.5 173h663l-37 -159h-493q-12 -41 -29.5 -94.5t-36 -107.5t-35 -103.5t-26.5 -82.5q233 -31 351 -127 t118 -274q0 -104 -35 -196.5t-108.5 -160t-187.5 -106.5t-269 -39q-66 0 -124.5 10.5t-104.5 23.5t-76.5 26.5t-40.5 19.5z" />
<glyph unicode="6" d="M254 379q0 215 72.5 405.5t205 333t319.5 225t419 82.5h26l-22 -161h-10q-145 0 -263 -38t-210.5 -100.5t-157 -146.5t-101.5 -176q66 33 142 50t145 17q92 0 158.5 -27.5t109.5 -73.5t62.5 -107.5t19.5 -129.5q0 -102 -31.5 -203.5t-97 -181t-169 -129t-246.5 -49.5 q-180 0 -275.5 110t-95.5 300zM442 395q0 -129 46.5 -199.5t162.5 -70.5q80 0 141.5 34t103.5 89t63.5 123.5t21.5 140.5q0 98 -48 149.5t-159 51.5q-72 0 -144.5 -13.5t-146.5 -48.5q-20 -66 -30.5 -134t-10.5 -122z" />
<glyph unicode="7" d="M324 0q31 109 81 226.5t113.5 236.5t136 233.5t148.5 218t152.5 190.5t146.5 148h-674l39 166h891l-39 -164q-88 -76 -203 -211t-227.5 -304t-210.5 -359.5t-154 -380.5h-200z" />
<glyph unicode="8" d="M207 289q0 147 87 262t241 190q-125 98 -125 254q0 92 33.5 174t97 145.5t154.5 100.5t206 37q94 0 163 -26.5t112 -71.5t63.5 -101.5t20.5 -115.5q0 -141 -79 -246.5t-220 -175.5q70 -47 117.5 -116t47.5 -177q0 -90 -33.5 -172t-101 -144.5t-170 -99.5t-237.5 -37 q-102 0 -174 29t-117 74t-65.5 102t-20.5 115zM395 322q0 -41 10.5 -76t35 -62.5t65.5 -43t102 -15.5q68 0 128.5 20.5t105.5 57.5t70.5 88t25.5 112q0 100 -69.5 162t-192.5 105q-55 -25 -106.5 -62t-90.5 -82t-61.5 -97t-22.5 -107zM596 1014q0 -86 51 -141.5t164 -92.5 q51 25 98 57.5t83 74.5t57.5 92.5t21.5 111.5q0 31 -8 63.5t-29.5 58.5t-59.5 42t-95 16q-61 0 -112.5 -21.5t-89.5 -58t-59.5 -89t-21.5 -113.5z" />
<glyph unicode="9" d="M174 -2l35 162q6 -2 19.5 -2h17.5q143 0 256.5 35.5t201 99t148.5 147.5t102 183q-66 -33 -141 -49.5t-145 -16.5q-92 0 -159 26.5t-110 72.5t-63.5 107.5t-20.5 129.5q0 102 32 202.5t98.5 179.5t167 127t235.5 48q190 0 286.5 -109.5t96.5 -300.5q0 -219 -68.5 -409.5 t-197.5 -331.5t-315.5 -222t-422.5 -81h-21t-32 2zM504 913q0 -98 49 -148t160 -50q72 0 144.5 13t146.5 48q18 61 28 130t10 136q0 113 -49 182.5t-159 69.5q-80 0 -141.5 -33.5t-103.5 -87t-63.5 -122t-21.5 -138.5z" />
<glyph unicode=":" horiz-adv-x="503" d="M139 94q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90zM334 911q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90z" />
<glyph unicode=";" horiz-adv-x="503" d="M6 -272q41 55 75 120.5t58.5 133t41 132t22.5 119.5h203q-10 -74 -35 -149.5t-61 -148t-81 -139t-94 -122.5zM334 911q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90z" />
<glyph unicode="&#x3c;" d="M244 526l39 164l958 375l12 -168l-782 -299l637 -297l-86 -149z" />
<glyph unicode="=" d="M193 309l38 162h920l-39 -162h-919zM297 745l39 162h919l-38 -162h-920z" />
<glyph unicode="&#x3e;" d="M193 319l782 299l-637 297l86 150l778 -375l-39 -164l-958 -374z" />
<glyph unicode="?" horiz-adv-x="786" d="M238 94q0 74 44 114t101 40t91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -89.5 31t-32.5 90zM326 442q2 25 4 45.5t6 40.5q25 104 96.5 179t163.5 147q41 33 80 65.5t68.5 67.5t47 75t17.5 87q0 23 -6 49.5t-25.5 48t-54.5 35.5t-92 14 q-98 0 -164 -22.5t-102 -40.5l-21 147q49 29 134 50.5t177 21.5q96 0 162 -22.5t107 -61.5t58 -92.5t17 -114.5q0 -68 -24.5 -125t-64.5 -105t-89 -90t-100 -81q-76 -59 -138.5 -124t-84.5 -155q-4 -12 -5 -23.5t-1 -15.5h-166z" />
<glyph unicode="@" horiz-adv-x="1906" d="M227 344q0 205 69 404.5t202 355.5t325.5 252t442.5 96q334 0 514 -166t180 -489q0 -96 -21.5 -218t-81 -231.5t-165 -184.5t-271.5 -75q-129 0 -182 72q-47 -29 -110.5 -46.5t-135.5 -17.5q-154 0 -246 87t-92 261q0 117 40 226.5t116 192.5t184.5 133.5t247.5 50.5 q106 0 185 -18.5t120 -35.5l-149 -622q-10 -31 -10 -60q0 -25 13 -43t54 -18q86 0 147.5 50t102.5 129t60.5 173t19.5 182q0 113 -28.5 207t-93.5 162t-169 105.5t-256 37.5q-178 0 -331.5 -76.5t-266.5 -204.5t-176.5 -297t-63.5 -353q0 -137 40 -235.5t112 -162t172 -94.5 t221 -31q119 0 200 15.5t103 23.5l-14 -151q-18 -6 -53 -13.5t-79 -14.5t-94.5 -11t-99.5 -4q-147 0 -272 42t-216 125t-142.5 205.5t-51.5 284.5zM840 461q0 -111 46 -161t134 -50q111 0 188 41q0 35 4.5 58.5t10.5 45.5l116 482q-10 4 -44.5 8t-75.5 4q-88 0 -158 -35 t-119 -94.5t-75.5 -137t-26.5 -161.5z" />
<glyph unicode="A" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399z" />
<glyph unicode="B" horiz-adv-x="1265" d="M172 23l330 1376q86 20 191.5 27.5t189.5 7.5q104 0 191 -17.5t149.5 -55.5t98.5 -99.5t36 -147.5q0 -125 -75 -220t-206 -142q88 -33 142.5 -100.5t54.5 -166.5q0 -141 -57.5 -237t-156.5 -154.5t-233 -83t-288 -24.5q-41 0 -89.5 2t-97.5 6t-96 11t-84 18zM401 160 q23 -4 68 -7t115 -3q76 0 161.5 11t157.5 45t120 95t48 164q0 100 -71.5 149.5t-231.5 49.5h-248zM559 819h195q68 0 138.5 11.5t128.5 41t96 81t38 130.5q0 104 -78 145.5t-237 41.5q-53 0 -104.5 -4t-69.5 -9z" />
<glyph unicode="C" horiz-adv-x="1228" d="M254 520q0 184 58.5 352t166 297t259 206t337.5 77q160 0 255 -33t136 -61l-82 -164q-47 31 -127.5 58.5t-191.5 27.5q-141 0 -254 -66.5t-190.5 -172t-118.5 -237.5t-41 -261q0 -399 346 -400q74 0 132 10.5t103 23.5t80 29.5t62 29.5l24 -173q-25 -14 -64.5 -30.5 t-93 -30.5t-118.5 -23.5t-139 -9.5q-133 0 -234.5 39t-169 110.5t-101.5 173t-34 228.5z" />
<glyph unicode="D" horiz-adv-x="1415" d="M172 23l330 1378q86 20 182 26.5t182 6.5q315 0 471 -148.5t156 -400.5q0 -176 -55.5 -339t-172 -288t-298 -198.5t-432.5 -73.5q-86 0 -186.5 8t-176.5 29zM403 164q16 -4 55.5 -7t127.5 -3q162 0 292 54t220 151.5t139 231.5t49 294q0 180 -104.5 280.5t-331.5 100.5 q-154 0 -184 -9z" />
<glyph unicode="E" horiz-adv-x="1140" d="M166 0l340 1419h837l-38 -166h-641l-103 -428h569l-38 -161h-568l-121 -498h689l-39 -166h-887z" />
<glyph unicode="F" horiz-adv-x="1073" d="M166 0l340 1419h829l-39 -166h-632l-105 -434h561l-39 -162h-559l-157 -657h-199z" />
<glyph unicode="G" horiz-adv-x="1333" d="M254 520q0 184 58.5 352t167 297t261 206t342.5 77q94 0 163 -12.5t118 -28.5t80 -33.5t49 -29.5l-88 -162q-16 10 -45 26.5t-70 32t-94 25.5t-121 10q-145 0 -260 -66.5t-193.5 -172t-119.5 -237.5t-41 -261q0 -203 86 -302.5t272 -99.5q76 0 137.5 10.5t87.5 20.5 l123 520h195l-156 -647q-25 -14 -67.5 -27.5t-100 -23.5t-124 -16.5t-136.5 -6.5q-258 0 -391 148.5t-133 400.5z" />
<glyph unicode="H" horiz-adv-x="1394" d="M166 0l340 1419h199l-144 -594h658l143 594h199l-340 -1419h-199l158 659h-658l-157 -659h-199z" />
<glyph unicode="I" horiz-adv-x="538" d="M166 0l340 1419h199l-340 -1419h-199z" />
<glyph unicode="J" horiz-adv-x="987" d="M49 98l98 150q33 -33 98.5 -70t166.5 -37q74 0 125 18.5t88 58.5t62.5 103.5t47.5 153.5l228 944h198l-229 -962q-25 -98 -55.5 -187.5t-87 -156t-147.5 -105.5t-234 -39q-72 0 -130.5 13.5t-103.5 34t-76.5 42t-48.5 39.5z" />
<glyph unicode="K" horiz-adv-x="1257" d="M166 0l340 1419h199l-150 -620q90 68 194.5 153.5t205 171.5t187.5 164t144 131h250q-78 -70 -175 -156.5t-202.5 -177t-212 -180.5t-203.5 -166q63 -59 134 -147t139.5 -188.5t131 -205t109.5 -198.5h-221q-53 94 -114.5 192.5t-126 188.5t-132 169t-135.5 134 l-163 -684h-199z" />
<glyph unicode="L" horiz-adv-x="1038" d="M166 0l340 1419h199l-302 -1253h629l-39 -166h-827z" />
<glyph unicode="M" horiz-adv-x="1734" d="M131 0q49 184 103.5 371.5t110.5 369t112.5 353.5t109.5 325h195q25 -90 52.5 -213t55 -257t51 -267t40.5 -242q74 111 162.5 244t179 267t175.5 256t152 212h191q-35 -346 -93.5 -703.5t-128.5 -715.5h-198q61 295 112.5 572.5t90.5 541.5q-33 -45 -82 -116.5 t-106.5 -157.5t-119 -179.5t-119 -180.5t-106.5 -161.5t-80 -121.5h-160q-8 49 -21 123.5t-29.5 161.5t-34 180.5t-35 179.5t-31.5 156.5t-25 115.5q-86 -264 -167.5 -544.5t-159.5 -569.5h-197z" />
<glyph unicode="N" horiz-adv-x="1429" d="M166 0l340 1419h170q66 -111 134.5 -251t131 -287.5t115.5 -288.5t88 -254l254 1081h194l-338 -1419h-174q-37 119 -88 270.5t-111.5 307t-124 302t-124.5 255.5l-273 -1135h-194z" />
<glyph unicode="O" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266z" />
<glyph unicode="P" horiz-adv-x="1208" d="M166 0l336 1401q86 20 182 26.5t182 6.5q248 0 374 -94.5t126 -274.5q0 -139 -52 -240.5t-148.5 -167t-231.5 -97.5t-301 -32h-141l-127 -528h-199zM530 694h129q86 0 176.5 15.5t162 54.5t117.5 107.5t46 177.5q0 117 -86 167t-233 50q-145 0 -176 -9z" />
<glyph unicode="Q" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -158 -44 -313.5t-133 -285.5t-221 -220t-306 -115q-2 -6 -2 -14v-12q0 -41 31.5 -69.5t84 -49t121 -34t142.5 -21.5l-70 -156q-72 8 -160 24.5t-164.5 52.5 t-128 95.5t-51.5 153.5v10t2 16q-197 20 -317.5 155.5t-120.5 381.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266z" />
<glyph unicode="R" horiz-adv-x="1247" d="M166 0l336 1401q86 20 182 26.5t182 6.5q227 0 360.5 -92.5t133.5 -270.5q0 -180 -105.5 -302t-296.5 -175q25 -43 58 -109.5t67.5 -147.5t67.5 -168t57 -169h-202q-29 78 -60 158t-62.5 153.5t-63.5 138t-58 113.5q-27 -2 -53.5 -3t-53.5 -1h-157l-133 -559h-199z M537 721h120q84 0 172.5 12t161 48t118.5 100.5t46 171.5q0 115 -87 164t-226 49q-145 0 -176 -9z" />
<glyph unicode="S" horiz-adv-x="1058" d="M76 74l92 162q39 -27 123 -61t213 -34q63 0 125.5 13.5t112 44t80 81t30.5 123.5q0 51 -19.5 89t-53.5 68t-80 55.5t-101 54.5q-47 25 -95 53.5t-86 70.5t-61.5 99t-23.5 137q0 92 35.5 170t105.5 134.5t171 87t233 30.5q61 0 116.5 -9t101.5 -23t80.5 -30t51.5 -28 l-92 -156q-35 29 -112 52.5t-181 23.5q-66 0 -122 -13.5t-97 -42t-66 -72.5t-25 -105q0 -53 16.5 -89t45.5 -64t71 -50.5t91 -46.5q61 -31 115.5 -62.5t95.5 -75t64.5 -100.5t23.5 -139q0 -113 -44 -198t-121 -141t-182.5 -85t-228.5 -29q-82 0 -148.5 11.5t-116.5 28 t-85 33.5t-53 32z" />
<glyph unicode="T" horiz-adv-x="1136" d="M338 1253l39 166h1055l-39 -166h-428l-301 -1253h-199l301 1253h-428z" />
<glyph unicode="U" horiz-adv-x="1363" d="M270 377q0 45 8.5 100t18.5 103l201 839h198l-204 -852q-10 -39 -16.5 -86t-6.5 -88q0 -53 12.5 -98t42 -79t76.5 -53.5t115 -19.5q174 0 270 97.5t145 310.5l209 868h199l-213 -891q-29 -117 -66.5 -219t-107.5 -177t-181.5 -119t-285.5 -44q-106 0 -184 32t-129.5 86 t-76 129t-24.5 161z" />
<glyph unicode="V" horiz-adv-x="1275" d="M340 1419h205q33 -365 62.5 -653t70.5 -530q86 123 175 264t178 293.5t174 310.5t163 315h219q-113 -213 -220 -404.5t-212.5 -366.5t-211 -335.5t-216.5 -312.5h-195q-31 154 -57 310.5t-49 328.5t-44.5 363.5t-41.5 416.5z" />
<glyph unicode="W" horiz-adv-x="1875" d="M362 676q0 178 6.5 359.5t18.5 383.5h197q-14 -215 -22.5 -425t-8.5 -427q0 -158 6 -313q141 217 281.5 469t281.5 524h183q16 -274 45.5 -532t58.5 -461q61 115 128 252t133.5 287.5t133 309.5t127.5 316h211q-164 -406 -326.5 -756t-342.5 -663h-201q-35 217 -68 447.5 t-53 502.5q-139 -254 -273.5 -484t-285.5 -466h-201q-16 166 -22.5 332t-6.5 344z" />
<glyph unicode="X" horiz-adv-x="1239" d="M27 0l653 758l-289 661h219l215 -522q111 129 217.5 260t198.5 262h227q-123 -168 -270 -341t-291 -333q78 -184 155 -374.5t136 -370.5h-207q-47 143 -103.5 291.5t-125.5 302.5l-502 -594h-233z" />
<glyph unicode="Y" horiz-adv-x="1171" d="M336 1419h215q39 -166 87 -338t107 -331q135 158 273.5 331.5t245.5 337.5h227q-154 -209 -322 -418.5t-360 -431.5l-135 -569h-199l135 569q-80 215 -148.5 431.5t-125.5 418.5z" />
<glyph unicode="Z" horiz-adv-x="1148" d="M72 0l30 133q59 80 137 175t166.5 198.5t182.5 208t186 203t178 184.5t158 151h-702l38 166h955l-37 -157q-57 -51 -135 -127t-168 -167t-185.5 -192.5t-189.5 -207t-180 -208t-156 -194.5h766l-39 -166h-1005z" />
<glyph unicode="[" horiz-adv-x="659" d="M98 -379l477 1983h453l-35 -150h-274l-406 -1683h275l-37 -150h-453z" />
<glyph unicode="\" horiz-adv-x="770" d="M338 1604h174l217 -1983h-178z" />
<glyph unicode="]" horiz-adv-x="659" d="M-84 -379l35 150h274l406 1683h-275l37 150h453l-477 -1983h-453z" />
<glyph unicode="^" d="M266 741l549 684h162l223 -702l-156 -68l-182 574l-456 -572z" />
<glyph unicode="_" horiz-adv-x="1015" d="M-94 -379l39 162h1024l-39 -162h-1024z" />
<glyph unicode="`" horiz-adv-x="770" d="M471 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="a" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5z" />
<glyph unicode="b" horiz-adv-x="1136" d="M166 41l362 1515l199 33l-135 -567q47 29 108.5 49.5t130.5 20.5q88 0 155 -29t110 -79t64.5 -119.5t21.5 -149.5q0 -141 -45 -273.5t-137.5 -236t-230.5 -166t-325 -62.5q-31 0 -67.5 3.5t-74.5 11.5t-73.5 20.5t-62.5 28.5zM383 154q20 -4 47 -8.5t53 -4.5 q117 0 211 46t160 123t101.5 176.5t35.5 207.5q0 45 -9 88t-32.5 76t-64 52.5t-101.5 19.5t-121.5 -21.5t-113.5 -60.5z" />
<glyph unicode="c" horiz-adv-x="923" d="M205 381q0 139 42 268t124 227.5t200.5 157t272.5 58.5q68 0 129 -9.5t117 -35.5l-72 -160q-33 18 -77 28.5t-114 10.5q-100 0 -180 -44t-136 -117t-86 -168t-30 -198q0 -53 11.5 -100t40 -83t76.5 -56.5t122 -20.5q37 0 78 7.5t76 17.5t62.5 21.5t39.5 21.5l17 -162 q-39 -25 -121 -48.5t-187 -23.5q-98 0 -174 30t-127 84t-77.5 129t-26.5 165z" />
<glyph unicode="d" horiz-adv-x="1120" d="M201 356q0 137 46 268.5t137 234t228.5 164.5t319.5 62q23 0 45 -2t47 -6l115 479l198 33l-288 -1198q-10 -47 -18.5 -90t-8.5 -90t8 -95t29 -104l-168 -24q-23 45 -35 108q-45 -41 -121 -82t-186 -41q-90 0 -155.5 28t-108.5 79t-63.5 121.5t-20.5 154.5zM391 377 q0 -47 10.5 -90t33 -77t60.5 -54.5t93 -20.5q86 0 146.5 36t105.5 83q2 33 7 70.5t15 83.5l123 512q-18 4 -40.5 5t-43.5 1q-117 0 -211 -45t-160.5 -121t-102.5 -175.5t-36 -207.5z" />
<glyph unicode="e" horiz-adv-x="1060" d="M205 354q0 143 43 276.5t123 236t194.5 163t259.5 60.5q84 0 144.5 -21.5t98.5 -58.5t56.5 -85t18.5 -100q0 -96 -35 -162.5t-92.5 -111.5t-134 -69.5t-159.5 -39t-168 -19.5t-161 -9q-2 -16 -2 -26.5v-16.5q0 -47 11.5 -89t42 -74t85 -50.5t142.5 -18.5q39 0 81 7.5 t79.5 18.5t67.5 22.5t42 21.5l16 -162q-41 -23 -132 -48.5t-214 -25.5q-104 0 -180 30t-127 82t-75.5 121.5t-24.5 147.5zM418 559q119 4 217 15.5t170 39t111.5 74.5t39.5 123q0 18 -7 38.5t-24.5 38t-48 29t-75.5 11.5q-72 0 -134.5 -31t-111.5 -81t-84 -116.5t-53 -140.5 z" />
<glyph unicode="f" horiz-adv-x="753" d="M-35 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l227 950q25 102 63 182t96 134.5t138 83t191 28.5q72 0 136 -14t97 -31l-76 -151q-16 8 -56 20t-118 12q-68 0 -115 -19.5t-79.5 -54t-52 -83.5t-33.5 -111l-23 -92h356l-36 -160h-357l-164 -676q-25 -104 -43 -186 t-43.5 -153.5t-67.5 -138t-114 -138.5z" />
<glyph unicode="g" horiz-adv-x="1126" d="M53 -303l72 160q47 -35 125 -56.5t164 -21.5q84 0 147.5 20.5t109.5 59.5t74.5 92t45.5 121l8 39q-41 -23 -111 -45.5t-143 -22.5q-166 0 -255 83t-89 232q0 137 45 268.5t137 234t229.5 164.5t321.5 62q29 0 64.5 -4t73.5 -11t74 -19.5t62 -28.5l-223 -932 q-27 -111 -65.5 -199t-106.5 -149t-174.5 -95t-265.5 -34q-88 0 -174 23.5t-146 58.5zM391 412q0 -111 48.5 -160t146.5 -49q82 0 150.5 29.5t105.5 56.5l149 622q-20 4 -46.5 8.5t-51.5 4.5q-111 0 -203 -42t-158.5 -113t-103.5 -164t-37 -193z" />
<glyph unicode="h" horiz-adv-x="1130" d="M156 0l374 1556l199 33l-131 -538q47 16 99.5 26t105.5 10q92 0 158.5 -25.5t107.5 -69.5t60.5 -106.5t19.5 -135.5q0 -90 -29 -205l-131 -545h-190l121 504q14 57 27.5 116.5t13.5 112.5q0 82 -45.5 136.5t-167.5 54.5q-49 0 -101.5 -9.5t-87.5 -25.5l-213 -889h-190z " />
<glyph unicode="i" horiz-adv-x="509" d="M156 0l256 1065h190l-256 -1065h-190zM457 1366q0 66 41 103.5t92 37.5q47 0 79.5 -29.5t32.5 -82.5q0 -61 -43 -99.5t-92 -38.5q-47 0 -78.5 29t-31.5 80z" />
<glyph unicode="j" horiz-adv-x="509" d="M-227 -348l43 158q23 -14 57.5 -22.5t75.5 -8.5q92 0 140 71.5t77 188.5l246 1026h190l-246 -1024q-29 -115 -62.5 -196t-83.5 -132t-120 -74.5t-170 -23.5q-35 0 -79 10t-68 27zM459 1366q0 66 41 103.5t92 37.5q47 0 80 -29.5t33 -82.5q0 -61 -43.5 -99.5t-92.5 -38.5 q-47 0 -78.5 29t-31.5 80z" />
<glyph unicode="k" horiz-adv-x="1058" d="M156 0l374 1556l199 33l-229 -948q68 49 139.5 107.5t136 116t118.5 109.5t89 91h225q-43 -53 -109.5 -118.5t-140 -132t-148.5 -128t-134 -104.5q55 -51 111.5 -122t108.5 -150t95 -159.5t72 -150.5h-207q-72 166 -171 305t-210 227l-129 -532h-190z" />
<glyph unicode="l" horiz-adv-x="565" d="M221 279q0 47 8.5 98t22.5 106l258 1073l199 33l-269 -1120q-10 -45 -20 -88t-10 -82q0 -70 33.5 -111t125.5 -51l-43 -155q-84 2 -142 25.5t-94 62.5t-52.5 92t-16.5 117z" />
<glyph unicode="m" horiz-adv-x="1695" d="M156 0l245 1024q92 29 202 46t196 17t145.5 -29.5t93.5 -78.5q20 14 56 32.5t82.5 35t101 28.5t111.5 12q90 0 152.5 -27.5t100 -74.5t54 -109.5t16.5 -132.5q0 -45 -7 -97t-19 -101l-132 -545h-190l121 504q10 47 23.5 105.5t13.5 115.5q0 39 -9.5 76t-31 63.5t-60.5 43 t-96 16.5q-66 0 -127 -26t-102 -52q4 -29 7 -56.5t3 -54.5q0 -47 -7 -95t-18 -95l-131 -545h-190l121 504q10 47 22 106.5t12 118.5q0 39 -8 75t-27.5 62.5t-52 42t-84.5 15.5q-51 0 -99 -6.5t-81 -16.5l-217 -901h-190z" />
<glyph unicode="n" horiz-adv-x="1128" d="M156 0l245 1024q94 29 204 46t196 17q92 0 158.5 -25.5t107.5 -69.5t60.5 -106.5t19.5 -135.5q0 -47 -8.5 -99.5t-20.5 -105.5l-131 -545h-190l121 504q14 57 27 116.5t13 112.5q0 82 -45 136.5t-168 54.5q-51 0 -100 -6.5t-82 -16.5l-217 -901h-190z" />
<glyph unicode="o" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195z" />
<glyph unicode="p" horiz-adv-x="1118" d="M66 -379l335 1399q86 35 187.5 53.5t187.5 18.5q100 0 173 -29t120 -79t70.5 -118.5t23.5 -150.5q0 -141 -43 -273.5t-132 -235t-225 -163.5t-323 -61q-23 0 -49 2t-47 6l-88 -369h-190zM383 150q20 -4 44 -5.5t46 -1.5q117 0 209 45t156.5 122t99.5 176.5t35 207.5 q0 45 -10.5 88t-38 76t-74.5 52.5t-121 19.5q-51 0 -94 -9.5t-72 -17.5z" />
<glyph unicode="q" horiz-adv-x="1128" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q57 0 132 -13t136 -46l-338 -1407h-190l98 412q-47 -25 -106.5 -42.5t-124.5 -17.5q-90 0 -155.5 28t-108.5 79t-63.5 121.5t-20.5 154.5zM391 377q0 -47 9.5 -90t32 -77t62.5 -54.5t101 -20.5q59 0 118.5 19.5 t108.5 56.5l170 702q-57 10 -92 11q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5z" />
<glyph unicode="r" horiz-adv-x="761" d="M156 0l245 1024q82 29 176.5 46t188.5 17q25 0 55.5 -2t60 -7t54.5 -10t37 -11l-55 -166q-41 16 -94.5 24.5t-102.5 8.5q-43 0 -85 -6.5t-73 -16.5l-217 -901h-190z" />
<glyph unicode="s" horiz-adv-x="843" d="M78 51l74 156q14 -8 39.5 -20.5t61.5 -24.5t79 -20.5t90 -8.5q43 0 87 8.5t78 26.5t55.5 50t21.5 79q0 31 -10.5 54.5t-33 44t-56.5 40t-81 43.5q-47 23 -86 45.5t-68.5 53t-46 72.5t-16.5 102q0 154 110.5 247t321.5 93q98 0 173 -19.5t104 -36.5l-72 -155 q-29 16 -92 34.5t-141 18.5q-39 0 -78 -8t-71 -27.5t-51 -51.5t-19 -77q0 -55 43 -91t129 -75q53 -25 95 -50.5t71.5 -57t45 -74.5t15.5 -103q0 -86 -33 -151.5t-91 -108.5t-138 -64.5t-174 -21.5q-70 0 -126.5 9.5t-98.5 21.5t-69.5 25.5t-41.5 21.5z" />
<glyph unicode="t" horiz-adv-x="796" d="M223 236q0 84 29 215l219 911l199 33l-80 -330h362l-39 -160h-362l-113 -471q-24 -92 -24 -162v-6q0 -68 36.5 -97.5t122.5 -29.5q59 0 117 19.5t88 36.5l15 -162q-31 -18 -105 -40t-168 -22q-154 0 -225.5 67.5t-71.5 197.5z" />
<glyph unicode="u" horiz-adv-x="1126" d="M225 309q0 53 9.5 105.5t21.5 105.5l131 545h191l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7 -71t26.5 -59.5t52 -41t82.5 -15.5q88 0 154.5 38t111.5 89q2 33 6 68t14 76l158 657h191l-162 -674q-10 -47 -17.5 -91t-7.5 -91t8.5 -94t27.5 -103l-167 -24 q-10 23 -20.5 51.5t-16.5 60.5q-23 -20 -53.5 -42.5t-70.5 -41t-88 -31t-105 -12.5q-90 0 -150.5 27t-98.5 72t-54.5 106.5t-16.5 130.5z" />
<glyph unicode="v" horiz-adv-x="985" d="M260 1065h193q2 -100 9 -214t17 -227.5t24.5 -219t31.5 -191.5q61 78 127.5 183.5t128 221t112.5 232.5t82 215h193q-45 -135 -115 -280.5t-151 -286t-170 -269.5t-173 -229h-174q-25 104 -47 229t-40.5 261.5t-31 282t-16.5 292.5z" />
<glyph unicode="w" horiz-adv-x="1611" d="M276 1065h191q2 -96 6 -209t10 -226.5t14.5 -220t20.5 -188.5q63 88 126 194.5t119 217t104 221.5t83 211h172q0 -92 3 -197.5t10.5 -216t17 -220.5t21.5 -210q51 63 114.5 167t125 221.5t114.5 237.5t82 218h194q-45 -141 -114.5 -290.5t-150.5 -290t-168 -265.5 t-167 -219h-170q-23 178 -40 358.5t-21 366.5q-41 -92 -92.5 -190.5t-108.5 -193.5t-114.5 -183t-110.5 -158h-170q-43 211 -69.5 480.5t-31.5 584.5z" />
<glyph unicode="x" horiz-adv-x="968" d="M25 0l491 549l-264 516h211l184 -383q86 104 159 200.5t126 182.5h207q-88 -129 -193.5 -261t-216.5 -261q66 -129 131.5 -267.5t112.5 -275.5h-199q-31 92 -79 198.5t-95 204.5l-354 -403h-221z" />
<glyph unicode="y" horiz-adv-x="978" d="M-115 -340l66 156q20 -16 55 -27.5t78 -11.5q119 0 202 57t156 152q-76 248 -124 522t-58 557h195q2 -92 10 -201.5t23.5 -227.5t36.5 -236.5t50 -227.5q78 123 141.5 255t112 253t81 222.5t46.5 162.5h199q-23 -78 -63.5 -193.5t-99 -250t-131.5 -274.5t-159 -269 q-66 -96 -131 -181t-140 -147.5t-165 -98.5t-203 -36q-57 0 -106 14.5t-72 30.5z" />
<glyph unicode="z" horiz-adv-x="929" d="M68 0l28 123q61 90 155.5 199.5t196 218t199.5 205t172 159.5h-510l37 160h760l-33 -137q-59 -53 -160.5 -150.5t-212 -209t-212 -221t-160.5 -187.5h571l-37 -160h-794z" />
<glyph unicode="{" horiz-adv-x="667" d="M209 539l37 147q45 0 84 17.5t68.5 45t49 63.5t27.5 73l88 368q23 94 56.5 161t88 109t133.5 61.5t189 19.5h8l-37 -150q-55 0 -98 -7t-74.5 -29.5t-54 -62.5t-37.5 -104l-75 -315q-33 -135 -79 -211t-132 -113q43 -35 60 -83t17 -101q0 -35 -6 -69.5t-14 -69.5l-76 -316 q-6 -29 -10 -51t-4 -41q0 -66 43 -86t135 -24l-39 -150h-8q-147 0 -227 52.5t-80 174.5q0 47 16 123l88 369q8 31 8 59q0 57 -33.5 96.5t-111.5 43.5z" />
<glyph unicode="|" horiz-adv-x="563" d="M98 -379l477 1983h175l-478 -1983h-174z" />
<glyph unicode="}" horiz-adv-x="667" d="M-86 -379l37 150q57 0 99 7t74 29.5t53.5 61.5t37.5 104l76 316q33 135 79 210.5t132 112.5q-43 35 -60.5 83t-17.5 102q0 35 6 69.5t14 69.5l76 315q6 29 10.5 51.5t4.5 40.5q0 66 -43 86.5t-136 24.5l39 150h8q147 0 227.5 -52.5t80.5 -175.5q0 -47 -17 -123l-88 -368 q-8 -31 -8 -60q0 -57 34 -96t111 -43l-36 -147q-47 0 -86 -17.5t-68 -45t-48.5 -63.5t-27.5 -73l-88 -369q-23 -94 -56.5 -160.5t-88 -108.5t-133 -61.5t-189.5 -19.5h-8z" />
<glyph unicode="~" d="M217 492q16 45 44 95t69 93t95 70.5t124 27.5q72 0 118 -27.5t85 -56.5q47 -33 83.5 -60.5t92.5 -27.5q33 0 60.5 16.5t48 40t37 52t28.5 53.5l131 -41q-16 -45 -44 -95t-69 -93t-95 -71t-124 -28q-72 0 -118 28t-85 56q-47 33 -83.5 60.5t-92.5 27.5q-35 0 -61.5 -16 t-48 -40t-37 -52.5t-27.5 -52.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="512" d="M59 -379l93 385q12 49 33.5 128t47 163t53 165t50.5 134h117q-16 -139 -38 -279.5t-63 -312.5l-92 -383h-201zM332 911q0 74 44 114t101 40t91 -32t34 -93q0 -35 -13.5 -62.5t-33.5 -47t-46.5 -29.5t-53.5 -10q-57 0 -90 30.5t-33 89.5z" />
<glyph unicode="&#xa2;" d="M326 461q0 111 32.5 219t98 199.5t162 157t223.5 87.5l69 295h166l-67 -284q49 -4 96 -15.5t90 -34.5l-70 -151q-33 18 -76.5 28.5t-111.5 10.5q-96 0 -175 -44t-134.5 -116t-86 -162t-30.5 -184q0 -49 11.5 -93t39 -77t73.5 -52.5t118 -19.5q37 0 76.5 6.5t74.5 16.5 t61.5 21.5t39.5 21.5l14 -158q-33 -23 -105.5 -44t-164.5 -26l-68 -286h-166l70 297q-260 57 -260 387z" />
<glyph unicode="&#xa3;" d="M260 0q57 147 108.5 289.5t86.5 290.5l8 30h-191l37 154h191l41 170q37 154 86 253t115.5 156.5t150.5 80t188 22.5q106 0 166 -19.5t107 -46.5l-86 -153q-47 25 -97.5 39t-113.5 14q-59 0 -108.5 -16.5t-89.5 -56.5t-71.5 -105.5t-56.5 -163.5l-41 -174h387l-37 -154 h-387l-4 -16q-25 -104 -60.5 -215t-76.5 -215h594l-39 -164h-807z" />
<glyph unicode="&#xa4;" d="M248 342l149 150q-57 90 -57 219q0 127 57 217l-149 151l119 119l151 -154q96 59 217 60q119 0 215 -60l154 154l119 -119l-152 -151q59 -90 59 -217t-59 -217l152 -152l-119 -119l-154 152q-96 -57 -215 -58q-123 0 -217 58l-151 -152zM494 711q0 -59 19 -105.5t52 -80 t77 -51t93 -17.5t93 17.5t77 51t52.5 80t19.5 105.5q0 57 -19.5 104t-52.5 81t-77 51.5t-93 17.5t-93 -17.5t-77 -51.5t-52 -81t-19 -104z" />
<glyph unicode="&#xa5;" d="M203 217l35 145h331l49 209h-329l35 146h278q-145 360 -227 702h196q14 -72 35 -151.5t44.5 -161.5t51 -163t58.5 -152q57 68 120.5 146.5t126 160.5t121 163.5t105.5 157.5h215q-123 -178 -268.5 -361.5t-286.5 -340.5h278l-34 -146h-334l-49 -209h333l-34 -145h-334 l-51 -217h-185l52 217h-332z" />
<glyph unicode="&#xa6;" horiz-adv-x="563" d="M98 -379l189 785h174l-189 -785h-174zM387 819l188 785h175l-189 -785h-174z" />
<glyph unicode="&#xa7;" horiz-adv-x="995" d="M66 -152l73 150q39 -23 113 -45.5t172 -22.5q135 0 203.5 47.5t68.5 124.5q0 39 -13 66t-36.5 45t-58.5 32.5t-78 30.5q-57 20 -107.5 43t-88.5 57t-60.5 84t-22.5 124q0 111 73 202t177 148q-59 59 -59 166q0 84 32.5 149.5t92 110.5t142.5 68.5t181 23.5 q104 0 179 -21.5t122 -44.5l-71 -147q-35 16 -93.5 37.5t-150.5 21.5q-109 0 -178.5 -39.5t-69.5 -130.5q0 -59 39 -91.5t131 -65.5q57 -23 107.5 -45.5t87.5 -55t58.5 -82t21.5 -124.5q0 -117 -72 -204t-178 -147q29 -27 54.5 -70.5t25.5 -121.5q0 -74 -31 -137.5 t-91.5 -109.5t-148.5 -71.5t-202 -25.5q-111 0 -198 19.5t-146 51.5zM410 606q0 -41 19.5 -69.5t51 -51t74.5 -41t92 -36.5q12 -4 21.5 -8.5t17.5 -8.5q35 16 68.5 41t60.5 57.5t43 70.5t16 81q0 39 -18 68.5t-50 52t-76 41t-93 37.5q-27 10 -35 16q-35 -16 -68.5 -42 t-61.5 -57.5t-45 -69.5t-17 -81z" />
<glyph unicode="&#xa8;" horiz-adv-x="770" d="M403 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM793 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xa9;" horiz-adv-x="1667" d="M291 711q0 174 57.5 312t153.5 233.5t223 145.5t266 50t266 -50t223.5 -145.5t154 -233.5t57.5 -312q0 -176 -57.5 -313.5t-154 -232.5t-223.5 -145.5t-266 -50.5t-266 50.5t-223 145.5t-153.5 232.5t-57.5 313.5zM440 711q0 -135 41 -247t114 -191.5t174 -123t222 -43.5 t222.5 43.5t174 123t113.5 191.5t41 247t-41 246.5t-113.5 191.5t-174 123t-222.5 43t-222 -43t-174 -123t-114 -191.5t-41 -246.5zM623 711q0 100 31.5 178t85 132t125 83t151.5 29q53 0 97 -8.5t77 -19.5t54.5 -22.5t29.5 -17.5l-47 -123q-25 14 -79 33.5t-126 19.5 q-104 0 -174 -71.5t-70 -212.5q0 -129 63.5 -209t186.5 -80q80 0 132 17.5t81 31.5l39 -123q-23 -12 -93.5 -36.5t-170.5 -24.5q-88 0 -160 28.5t-124 82t-80.5 132t-28.5 181.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="849" d="M324 946q0 94 32.5 184.5t98 161t164 114.5t231.5 44q37 0 91 -9t99 -28l-112 -416q-18 -66 -19 -127q0 -51 10.5 -86.5t26.5 -78.5l-141 -25q-8 10 -17.5 30.5t-13.5 41.5q-29 -29 -79 -52.5t-120 -23.5q-133 0 -192 74.5t-59 195.5zM473 961q0 -31 5 -60t20.5 -51.5 t42 -35.5t67.5 -13q45 0 84 22.5t70 55.5q0 31 7 66.5t13 62.5l82 311q-4 2 -15 4t-28 2q-78 0 -142.5 -29.5t-110.5 -81t-70.5 -117t-24.5 -136.5z" />
<glyph unicode="&#xab;" horiz-adv-x="1021" d="M197 594l415 440l119 -71l-321 -390l155 -385l-127 -59zM623 594l415 440l119 -71l-321 -390l155 -385l-127 -59z" />
<glyph unicode="&#xac;" d="M270 641l39 162h920l-168 -699h-172l129 537h-748z" />
<glyph unicode="&#xad;" horiz-adv-x="600" d="M178 524l41 178h496l-41 -178h-496z" />
<glyph unicode="&#xae;" horiz-adv-x="1667" d="M291 711q0 174 57.5 312t153.5 233.5t223 145.5t266 50t266 -50t223.5 -145.5t154 -233.5t57.5 -312q0 -176 -57.5 -313.5t-154 -232.5t-223.5 -145.5t-266 -50.5t-266 50.5t-223 145.5t-153.5 232.5t-57.5 313.5zM440 711q0 -135 41 -247t114 -191.5t174 -123t222 -43.5 t222.5 43.5t174 123t113.5 191.5t41 247t-41 246.5t-113.5 191.5t-174 123t-222.5 43t-222 -43t-174 -123t-114 -191.5t-41 -246.5zM705 303v795q55 12 116.5 18t112.5 6q178 0 269 -64.5t91 -199.5q0 -76 -40 -132t-113 -87q20 -25 46.5 -61.5t56.5 -80.5t57.5 -94.5 t50.5 -99.5h-158q-47 92 -105.5 175t-101.5 132h-137v-307h-145zM850 729h78q92 0 153.5 25.5t61.5 105.5q0 76 -58.5 105.5t-140.5 29.5q-23 0 -47.5 -1t-46.5 -3v-262z" />
<glyph unicode="&#xaf;" horiz-adv-x="770" d="M412 1309l34 147h574l-35 -147h-573z" />
<glyph unicode="&#xb0;" horiz-adv-x="679" d="M311 1305q0 66 23.5 119t62.5 89.5t91.5 56t109.5 19.5t109.5 -19.5t91.5 -56t62.5 -89.5t23.5 -119t-23.5 -119t-62.5 -90t-91.5 -56.5t-109.5 -19.5t-109.5 19.5t-91.5 56.5t-62.5 90t-23.5 119zM449 1305q0 -72 44 -114t105 -42t105.5 42t44.5 114t-44.5 113.5 t-105.5 41.5t-105 -42t-44 -113z" />
<glyph unicode="&#xb1;" d="M113 0l39 162h919l-39 -162h-919zM279 686l38 162h373l103 422h174l-103 -422h373l-39 -162h-373l-96 -401h-172l94 401h-372z" />
<glyph unicode="&#xb2;" horiz-adv-x="735" d="M254 645q8 74 32.5 128t61.5 97t84 78t100 68t93.5 59.5t67 51t39.5 52t13 62.5q0 43 -29.5 63.5t-70.5 20.5q-86 0 -136 -29.5t-77 -52.5l-49 100q41 39 112.5 74t166.5 35q117 0 173 -54.5t56 -146.5q0 -59 -27.5 -108t-70.5 -90t-94.5 -75t-98.5 -63 q-43 -29 -94 -61.5t-70 -79.5h387l-30 -129h-539z" />
<glyph unicode="&#xb3;" horiz-adv-x="735" d="M231 684l56 115q35 -16 85 -30.5t103 -14.5q43 0 83 6t70.5 23.5t50 46t19.5 71.5q0 57 -53 82t-141 25h-43l28 114h52q29 0 64.5 6.5t66 20.5t52 36.5t21.5 57.5q0 47 -27.5 65.5t-86.5 18.5q-55 0 -107.5 -16.5t-85.5 -32.5l-28 106q18 12 47.5 23.5t65.5 22t73 16.5 t70 6q121 0 171 -49t50 -119q0 -82 -42 -131t-116 -84q49 -20 81 -59t32 -105q0 -135 -102.5 -205.5t-268.5 -70.5q-82 0 -140.5 16.5t-99.5 38.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="770" d="M537 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xb5;" horiz-adv-x="1171" d="M66 -379l346 1444h190l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7.5 -71t28 -59.5t53 -41t85.5 -15.5q78 0 142.5 26t119.5 73q0 53 5.5 104t19.5 109l148 616h190l-152 -633q-10 -47 -18 -88t-8 -76q0 -53 25.5 -88t91.5 -45l-43 -153q-86 2 -137.5 29.5 t-82.5 78.5q-74 -57 -164 -83.5t-190 -26.5q-63 0 -118.5 25.5t-84.5 72.5q-8 -53 -21 -117.5t-30 -128.5l-51 -211h-188z" />
<glyph unicode="&#xb6;" horiz-adv-x="1331" d="M313 868q0 154 70 261.5t181.5 175t250.5 98.5t279 31q86 0 182 -7.5t174 -27.5l-426 -1778h-160l396 1645q-52 10 -158 10h-35.5t-32.5 -2l-397 -1653h-160l219 916q-207 14 -295 100t-88 231z" />
<glyph unicode="&#xb7;" horiz-adv-x="503" d="M256 586q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90z" />
<glyph unicode="&#xb8;" horiz-adv-x="770" d="M66 -356l47 112q16 -8 42.5 -15t65.5 -7q35 0 57.5 11t22.5 40q0 25 -16.5 37t-55.5 31l-12 6q12 20 30.5 47.5t37 54.5t35 48.5t24.5 31.5h131q-16 -23 -44 -58.5t-44 -60.5q41 -23 61.5 -49.5t20.5 -73.5q0 -92 -63.5 -139t-174.5 -47q-59 0 -99 9t-66 22z" />
<glyph unicode="&#xb9;" horiz-adv-x="735" d="M408 1272q94 29 177 70.5t146 93.5h103l-191 -791h-145l143 594q-53 -29 -113.5 -50.5t-101.5 -33.5z" />
<glyph unicode="&#xba;" horiz-adv-x="913" d="M334 934q0 82 24.5 173t79 168t141.5 127t212 50q123 0 193.5 -68.5t70.5 -193.5q0 -82 -24.5 -173t-79 -168t-141.5 -127t-212 -50q-123 0 -193.5 68.5t-70.5 193.5zM487 946q0 -66 33 -106.5t105 -40.5q66 0 117 35.5t86.5 91t54 123t18.5 129.5q0 66 -32.5 106.5 t-104.5 40.5q-66 0 -117 -36t-87 -91t-54.5 -122.5t-18.5 -129.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="1021" d="M143 201l322 389l-156 385l127 59l242 -465l-416 -440zM569 201l322 389l-156 385l127 59l242 -465l-416 -440z" />
<glyph unicode="&#xbc;" horiz-adv-x="1789" d="M401 0l1124 1419h195l-1124 -1419h-195zM408 1272q94 29 177 70.5t146 93.5h103l-191 -791h-145l143 594q-53 -29 -113.5 -50.5t-101.5 -33.5zM1163 195l23 94q33 55 89 121.5t125.5 136t145.5 134t148 114.5h133l-117 -486h102l-28 -114h-103l-45 -191h-139l45 191h-379 zM1329 309h242l78 324q-39 -33 -83 -72t-87 -82t-82 -86t-68 -84z" />
<glyph unicode="&#xbd;" horiz-adv-x="1789" d="M358 0l1124 1419h195l-1124 -1419h-195zM408 1272q94 29 177 70.5t146 93.5h103l-191 -791h-145l143 594q-53 -29 -113.5 -50.5t-101.5 -33.5zM1153 4q8 74 32.5 128t61.5 97t84 78t100 68t93.5 59.5t67 51t39.5 52t13 62.5q0 43 -29.5 63.5t-70.5 20.5q-86 0 -136 -29.5 t-77 -52.5l-49 100q41 39 112.5 74t166.5 35q117 0 173 -54.5t56 -146.5q0 -59 -27.5 -108t-70.5 -90t-94.5 -75t-98.5 -63q-43 -29 -94 -61.5t-70 -79.5h387l-30 -129h-539z" />
<glyph unicode="&#xbe;" horiz-adv-x="1789" d="M231 684l56 115q35 -16 85 -30.5t103 -14.5q43 0 83 6t70.5 23.5t50 46t19.5 71.5q0 57 -53 82t-141 25h-43l28 114h52q29 0 64.5 6.5t66 20.5t52 36.5t21.5 57.5q0 47 -27.5 65.5t-86.5 18.5q-55 0 -107.5 -16.5t-85.5 -32.5l-28 106q18 12 47.5 23.5t65.5 22t73 16.5 t70 6q121 0 171 -49t50 -119q0 -82 -42 -131t-116 -84q49 -20 81 -59t32 -105q0 -135 -102.5 -205.5t-268.5 -70.5q-82 0 -140.5 16.5t-99.5 38.5zM424 0l1124 1419h195l-1124 -1419h-195zM1163 195l23 94q33 55 89 121.5t125.5 136t145.5 134t148 114.5h133l-117 -486h102 l-28 -114h-103l-45 -191h-139l45 191h-379zM1329 309h242l78 324q-39 -33 -83 -72t-87 -82t-82 -86t-68 -84z" />
<glyph unicode="&#xbf;" horiz-adv-x="786" d="M80 -106q0 68 19.5 122t54 100t82 88t102.5 85q68 53 129 116.5t84 153.5q4 12 5 22.5t1 14.5h166q-2 -25 -4 -44.5t-6 -39.5q-25 -104 -95.5 -179t-148.5 -134q-37 -29 -72 -58.5t-63.5 -63.5t-46 -73t-17.5 -86q0 -23 6.5 -49.5t26 -48t54 -35.5t92.5 -14 q98 0 163.5 22.5t102.5 40.5l20 -147q-49 -29 -134 -50.5t-177 -21.5q-96 0 -161.5 22.5t-106.5 60.5t-58.5 89t-17.5 107zM539 911q0 74 44 114t101 40t91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-46.5 -29.5t-53 -10q-57 0 -90 30.5t-33 89.5z" />
<glyph unicode="&#xc0;" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM799 1798l139 116l260 -327l-100 -88 z" />
<glyph unicode="&#xc1;" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM863 1607l323 309l105 -147 l-347 -262z" />
<glyph unicode="&#xc2;" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM758 1609l332 285l217 -303l-90 -84 l-162 178l-229 -168z" />
<glyph unicode="&#xc3;" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM707 1634q41 86 97 132t148 46 q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xc4;" horiz-adv-x="1302" d="M20 0q229 414 447.5 762t431.5 657h195q31 -154 56.5 -310.5t50 -328.5t47 -364.5t46.5 -415.5h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218zM530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM745 1685q0 61 41 99t88 38 q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM1135 1685q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xc5;" horiz-adv-x="1302" d="M20 0q217 391 424 725t410 631q-29 27 -46 65.5t-17 87.5t17 87t46 66t66.5 42t80.5 14t81 -14t67 -42t46 -65.5t17 -87.5q0 -63 -27.5 -109t-72.5 -73q27 -143 49.5 -289.5t44 -308.5t43 -341t45.5 -388h-200q-10 92 -18.5 185.5t-18.5 179.5h-619l-200 -365h-218z M530 524h508q-16 166 -37.5 330t-50.5 338q-72 -104 -178 -269t-242 -399zM893 1509q0 -53 31.5 -82.5t76.5 -29.5t77 29.5t32 82.5t-31.5 83t-77.5 30q-45 0 -76.5 -29.5t-31.5 -83.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1900" d="M6 0q162 221 314.5 416.5t299 370t289 331t283.5 301.5h911l-39 -166h-610l-102 -428h538l-39 -161h-536l-121 -498h657l-39 -166h-854l86 365h-542q-70 -92 -136.5 -182.5t-132.5 -182.5h-227zM627 524h456l177 731q-160 -168 -320 -351t-313 -380z" />
<glyph unicode="&#xc7;" horiz-adv-x="1228" d="M254 520q0 184 58.5 352t166 297t259 206t337.5 77q160 0 255 -33t136 -61l-82 -164q-47 31 -127.5 58.5t-191.5 27.5q-141 0 -254 -66.5t-190.5 -172t-118.5 -237.5t-41 -261q0 -399 346 -400q74 0 132 10.5t103 23.5t80 29.5t62 29.5l24 -173q-25 -14 -64.5 -30.5 t-93 -30.5t-119 -23.5t-138.5 -9.5h-11q-10 -10 -17 -22.5t-15 -24.5q41 -23 61 -49.5t20 -73.5q0 -92 -63 -139t-174 -47q-59 0 -99 9t-67 22l47 112q16 -8 43 -15t66 -7q35 0 57.5 11t22.5 40q0 25 -16.5 37t-55.5 31l-12 6q14 25 36.5 59.5t45.5 63.5q-205 35 -306.5 175 t-101.5 363z" />
<glyph unicode="&#xc8;" horiz-adv-x="1140" d="M166 0l340 1419h837l-38 -166h-641l-103 -428h569l-38 -161h-568l-121 -498h689l-39 -166h-887zM733 1798l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xc9;" horiz-adv-x="1140" d="M166 0l340 1419h837l-38 -166h-641l-103 -428h569l-38 -161h-568l-121 -498h689l-39 -166h-887zM797 1607l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xca;" horiz-adv-x="1140" d="M166 0l340 1419h837l-38 -166h-641l-103 -428h569l-38 -161h-568l-121 -498h689l-39 -166h-887zM694 1609l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xcb;" horiz-adv-x="1140" d="M166 0l340 1419h837l-38 -166h-641l-103 -428h569l-38 -161h-568l-121 -498h689l-39 -166h-887zM679 1685q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM1069 1685q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5 q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xcc;" horiz-adv-x="538" d="M166 0l340 1419h199l-340 -1419h-199zM418 1798l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xcd;" horiz-adv-x="538" d="M166 0l340 1419h199l-340 -1419h-199zM482 1607l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xce;" horiz-adv-x="538" d="M166 0l340 1419h199l-340 -1419h-199zM377 1609l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xcf;" horiz-adv-x="538" d="M166 0l340 1419h199l-340 -1419h-199zM364 1685q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM754 1685q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xd0;" horiz-adv-x="1454" d="M199 664l37 153h165l140 584q86 20 182 26.5t182 6.5q315 0 471 -148.5t156 -400.5q0 -176 -55.5 -339t-172 -288t-298 -198.5t-433.5 -73.5q-86 0 -186 8t-176 29l154 641h-166zM442 164q16 -4 55.5 -7t127.5 -3q162 0 292 54t220 151.5t139 231.5t49 294 q0 180 -104.5 280.5t-331.5 100.5q-154 0 -184 -9l-107 -440h266l-37 -153h-266z" />
<glyph unicode="&#xd1;" horiz-adv-x="1429" d="M166 0l340 1419h170q66 -111 134.5 -251t131 -287.5t115.5 -288.5t88 -254l254 1081h194l-338 -1419h-174q-37 119 -88 270.5t-111.5 307t-124 302t-124.5 255.5l-273 -1135h-194zM768 1634q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5 q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xd2;" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM901 1798l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xd3;" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM965 1607l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xd4;" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM860 1609l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xd5;" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM809 1634q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46 q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xd6;" horiz-adv-x="1513" d="M254 510q0 168 51 337t154.5 303t257 218t358.5 84q113 0 208 -34t164 -101.5t106.5 -168.5t37.5 -237q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-115 0 -209 34t-162.5 101.5t-106.5 169t-38 236.5zM461 535q0 -182 79 -288t251 -106q137 0 247.5 66.5 t187.5 173t117.5 240t40.5 266.5q0 182 -78.5 287.5t-250.5 105.5q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM847 1685q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM1237 1685q0 61 40.5 99t88.5 38 q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xd7;" d="M238 317l372 301l-223 295l129 105l223 -295l369 301l96 -123l-373 -301l224 -295l-129 -104l-224 295l-368 -301z" />
<glyph unicode="&#xd8;" horiz-adv-x="1513" d="M213 14l133 152q-92 131 -92 344q0 168 51 337t154.5 303t257 218t358.5 84q188 0 320 -94l121 137l114 -88l-133 -152q45 -66 69.5 -149.5t24.5 -194.5q0 -170 -52 -337.5t-154.5 -302t-256 -218.5t-358.5 -84q-193 0 -321 92l-119 -135zM461 535q0 -59 6 -112.5 t22 -94.5l779 886q-78 66 -213 66q-139 0 -249 -66.5t-186.5 -173t-117.5 -239.5t-41 -266zM575 207q39 -35 93.5 -50.5t122.5 -15.5q137 0 247.5 66.5t187.5 173t117.5 240t40.5 266.5q0 59 -6 110.5t-22 96.5z" />
<glyph unicode="&#xd9;" horiz-adv-x="1363" d="M270 377q0 45 8.5 100t18.5 103l201 839h198l-204 -852q-10 -39 -16.5 -86t-6.5 -88q0 -53 12.5 -98t42 -79t76.5 -53.5t115 -19.5q174 0 270 97.5t145 310.5l209 868h199l-213 -891q-29 -117 -66.5 -219t-107.5 -177t-181.5 -119t-285.5 -44q-106 0 -184 32t-129.5 86 t-76 129t-24.5 161zM817 1798l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xda;" horiz-adv-x="1363" d="M270 377q0 45 8.5 100t18.5 103l201 839h198l-204 -852q-10 -39 -16.5 -86t-6.5 -88q0 -53 12.5 -98t42 -79t76.5 -53.5t115 -19.5q174 0 270 97.5t145 310.5l209 868h199l-213 -891q-29 -117 -66.5 -219t-107.5 -177t-181.5 -119t-285.5 -44q-106 0 -184 32t-129.5 86 t-76 129t-24.5 161zM881 1607l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xdb;" horiz-adv-x="1363" d="M270 377q0 45 8.5 100t18.5 103l201 839h198l-204 -852q-10 -39 -16.5 -86t-6.5 -88q0 -53 12.5 -98t42 -79t76.5 -53.5t115 -19.5q174 0 270 97.5t145 310.5l209 868h199l-213 -891q-29 -117 -66.5 -219t-107.5 -177t-181.5 -119t-285.5 -44q-106 0 -184 32t-129.5 86 t-76 129t-24.5 161zM776 1609l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xdc;" horiz-adv-x="1363" d="M270 377q0 45 8.5 100t18.5 103l201 839h198l-204 -852q-10 -39 -16.5 -86t-6.5 -88q0 -53 12.5 -98t42 -79t76.5 -53.5t115 -19.5q174 0 270 97.5t145 310.5l209 868h199l-213 -891q-29 -117 -66.5 -219t-107.5 -177t-181.5 -119t-285.5 -44q-106 0 -184 32t-129.5 86 t-76 129t-24.5 161zM763 1685q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM1153 1685q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xdd;" horiz-adv-x="1171" d="M336 1419h215q39 -166 87 -338t107 -331q135 158 273.5 331.5t245.5 337.5h227q-154 -209 -322 -418.5t-360 -431.5l-135 -569h-199l135 569q-80 215 -148.5 431.5t-125.5 418.5zM781 1607l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xde;" horiz-adv-x="1216" d="M164 0l342 1419h199l-56 -233q39 4 81 5t81 1q248 0 372 -92t124 -273q0 -139 -52.5 -240.5t-148.5 -167t-231.5 -97t-301.5 -31.5h-141l-70 -291h-198zM473 457h127q86 0 176 15t162 54t118 107.5t46 177.5q0 117 -86.5 165t-233.5 48q-76 0 -118.5 -3t-57.5 -5z" />
<glyph unicode="&#xdf;" horiz-adv-x="1228" d="M-39 -362q61 80 96 135t58.5 112.5t41 132t46.5 193.5l221 924q57 242 190.5 348t350.5 106q82 0 143 -22.5t102 -60.5t61.5 -88t20.5 -105q0 -59 -13 -103.5t-41 -83.5t-68 -76.5t-93 -86.5q-35 -31 -60.5 -53.5t-42 -43t-24.5 -44t-8 -54.5q0 -43 34 -71.5t93 -69.5 q39 -27 72 -53.5t57.5 -59.5t38.5 -74t14 -96q0 -92 -33.5 -161.5t-92 -116t-140.5 -69t-176 -22.5q-117 0 -195.5 27t-99.5 43l72 154q23 -14 83 -39t154 -25q104 0 171 49t67 148q0 61 -34 103t-120 95q-53 33 -83.5 60.5t-47 54.5t-20.5 53.5t-4 57.5q0 88 56 155.5 t134 132.5q37 31 66.5 57.5t51 54.5t33 60.5t11.5 73.5q0 61 -41 98t-123 37q-256 0 -326 -295l-217 -901q-25 -104 -43 -186t-43.5 -153.5t-67.5 -138t-114 -138.5z" />
<glyph unicode="&#xe0;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM645 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xe1;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM707 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xe2;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM604 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xe3;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM553 1315q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32 t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xe4;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM589 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5 t-31 75.5zM979 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xe5;" horiz-adv-x="1114" d="M201 356q0 137 46 268.5t138 234t231.5 165.5t325.5 63q55 0 129 -12t127 -41l-158 -643q-10 -47 -17 -90t-7 -90t8 -95t29 -104l-168 -24q-10 23 -20.5 50.5t-16.5 57.5q-45 -41 -121 -82t-186 -41q-90 0 -154.5 29t-105.5 80t-60.5 120.5t-19.5 153.5zM391 377 q0 -43 8.5 -87t30 -78t57.5 -55.5t93 -21.5q86 0 147 37t107 86q2 35 7 73t13 77l123 507q-10 4 -33.5 6.5t-42.5 2.5q-117 0 -211 -45t-160.5 -120t-102.5 -174.5t-36 -207.5zM688 1386q0 49 17.5 87t46 66t66.5 42t81 14t81 -14t66.5 -42t46 -66t17.5 -87t-17.5 -86.5 t-46 -65.5t-66.5 -42t-81 -14t-81 14t-66.5 42t-46 65.5t-17.5 86.5zM790 1386q0 -53 32 -82.5t77 -29.5t76.5 29.5t31.5 82.5t-31.5 83t-76.5 30t-77 -29.5t-32 -83.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1712" d="M201 233q0 143 70.5 224.5t178 120t234.5 50t242 17.5q2 16 3 31.5t1 32.5q0 111 -61.5 161t-196.5 50q-41 0 -82 -8.5t-78 -18.5t-66.5 -22.5t-44.5 -20.5l-16 162q47 25 136 49t188 24q53 0 106 -10t101.5 -32.5t88 -62.5t66.5 -97q39 51 88 89t104.5 63.5t113 37.5 t112.5 12q61 0 117.5 -14t97.5 -46t65.5 -81t24.5 -119q0 -96 -32.5 -162.5t-88 -111.5t-128 -69.5t-153.5 -39t-164 -19.5t-159 -9q-2 -16 -3 -31.5t-1 -30.5q0 -117 61.5 -165t196.5 -48q39 0 81 7.5t80 18.5t67.5 22.5t41.5 21.5l17 -162q-53 -29 -142.5 -51.5 t-187.5 -22.5q-55 0 -109.5 10.5t-101.5 34t-85 61.5t-60 95q-72 -94 -182.5 -147.5t-239.5 -53.5q-59 0 -114.5 15.5t-96.5 47.5t-65.5 81t-24.5 116zM387 260q0 -66 43 -97.5t113 -31.5q135 0 230 95.5t130 273.5q-145 -4 -243.5 -20.5t-159 -47.5t-87 -74t-26.5 -98z M1092 559q143 2 242.5 19.5t159.5 48t87 73.5t27 99q0 66 -43 97.5t-113 31.5q-135 0 -230 -95.5t-130 -273.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="923" d="M205 381q0 139 42 268t124 227.5t200.5 157t272.5 58.5q68 0 129 -9.5t117 -35.5l-72 -160q-33 18 -77 28.5t-114 10.5q-100 0 -180 -44t-136 -117t-86 -168t-30 -198q0 -53 11.5 -100t40 -83t76.5 -56.5t122 -20.5q37 0 78 7.5t76 17.5t62.5 21.5t39.5 21.5l17 -162 q-39 -25 -121 -47.5t-183 -24.5q-10 -14 -18 -26.5t-16 -24.5q41 -23 61.5 -49.5t20.5 -73.5q0 -92 -63.5 -139t-174.5 -47q-59 0 -99 9t-67 22l47 112q16 -8 43 -15t66 -7q35 0 57.5 11t22.5 40q0 25 -16.5 37t-55.5 31l-12 6q14 27 38.5 62.5t45.5 64.5q-141 33 -215 137 t-74 258z" />
<glyph unicode="&#xe8;" horiz-adv-x="1060" d="M205 354q0 143 43 276.5t123 236t194.5 163t259.5 60.5q84 0 144.5 -21.5t98.5 -58.5t56.5 -85t18.5 -100q0 -96 -35 -162.5t-92.5 -111.5t-134 -69.5t-159.5 -39t-168 -19.5t-161 -9q-2 -16 -2 -26.5v-16.5q0 -47 11.5 -89t42 -74t85 -50.5t142.5 -18.5q39 0 81 7.5 t79.5 18.5t67.5 22.5t42 21.5l16 -162q-41 -23 -132 -48.5t-214 -25.5q-104 0 -180 30t-127 82t-75.5 121.5t-24.5 147.5zM418 559q119 4 217 15.5t170 39t111.5 74.5t39.5 123q0 18 -7 38.5t-24.5 38t-48 29t-75.5 11.5q-72 0 -134.5 -31t-111.5 -81t-84 -116.5t-53 -140.5 zM627 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xe9;" horiz-adv-x="1060" d="M205 354q0 143 43 276.5t123 236t194.5 163t259.5 60.5q84 0 144.5 -21.5t98.5 -58.5t56.5 -85t18.5 -100q0 -96 -35 -162.5t-92.5 -111.5t-134 -69.5t-159.5 -39t-168 -19.5t-161 -9q-2 -16 -2 -26.5v-16.5q0 -47 11.5 -89t42 -74t85 -50.5t142.5 -18.5q39 0 81 7.5 t79.5 18.5t67.5 22.5t42 21.5l16 -162q-41 -23 -132 -48.5t-214 -25.5q-104 0 -180 30t-127 82t-75.5 121.5t-24.5 147.5zM418 559q119 4 217 15.5t170 39t111.5 74.5t39.5 123q0 18 -7 38.5t-24.5 38t-48 29t-75.5 11.5q-72 0 -134.5 -31t-111.5 -81t-84 -116.5t-53 -140.5 zM689 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xea;" horiz-adv-x="1060" d="M205 354q0 143 43 276.5t123 236t194.5 163t259.5 60.5q84 0 144.5 -21.5t98.5 -58.5t56.5 -85t18.5 -100q0 -96 -35 -162.5t-92.5 -111.5t-134 -69.5t-159.5 -39t-168 -19.5t-161 -9q-2 -16 -2 -26.5v-16.5q0 -47 11.5 -89t42 -74t85 -50.5t142.5 -18.5q39 0 81 7.5 t79.5 18.5t67.5 22.5t42 21.5l16 -162q-41 -23 -132 -48.5t-214 -25.5q-104 0 -180 30t-127 82t-75.5 121.5t-24.5 147.5zM418 559q119 4 217 15.5t170 39t111.5 74.5t39.5 123q0 18 -7 38.5t-24.5 38t-48 29t-75.5 11.5q-72 0 -134.5 -31t-111.5 -81t-84 -116.5t-53 -140.5 zM584 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xeb;" horiz-adv-x="1060" d="M205 354q0 143 43 276.5t123 236t194.5 163t259.5 60.5q84 0 144.5 -21.5t98.5 -58.5t56.5 -85t18.5 -100q0 -96 -35 -162.5t-92.5 -111.5t-134 -69.5t-159.5 -39t-168 -19.5t-161 -9q-2 -16 -2 -26.5v-16.5q0 -47 11.5 -89t42 -74t85 -50.5t142.5 -18.5q39 0 81 7.5 t79.5 18.5t67.5 22.5t42 21.5l16 -162q-41 -23 -132 -48.5t-214 -25.5q-104 0 -180 30t-127 82t-75.5 121.5t-24.5 147.5zM418 559q119 4 217 15.5t170 39t111.5 74.5t39.5 123q0 18 -7 38.5t-24.5 38t-48 29t-75.5 11.5q-72 0 -134.5 -31t-111.5 -81t-84 -116.5t-53 -140.5 zM571 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM961 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xec;" horiz-adv-x="509" d="M156 0l256 1065h190l-256 -1065h-190zM330 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xed;" horiz-adv-x="509" d="M156 0l256 1065h190l-256 -1065h-190zM394 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xee;" horiz-adv-x="509" d="M156 0l256 1065h190l-256 -1065h-190zM289 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xef;" horiz-adv-x="509" d="M156 0l256 1065h190l-256 -1065h-190zM274 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM664 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xf0;" horiz-adv-x="1165" d="M205 344q0 141 38 262t111.5 209t183 138.5t253.5 50.5q74 0 131 -19.5t94 -42.5q-4 66 -18.5 134.5t-43.5 135.5l-266 -84l-16 129l225 72q-33 53 -68.5 89t-76.5 75l143 96q39 -29 86 -80t92 -125l268 86l17 -129l-225 -71q33 -80 53 -178.5t20 -217.5q0 -61 -8 -152 t-32.5 -190.5t-68.5 -200t-114 -179t-169 -129t-236 -50.5q-80 0 -149 26t-118 73t-77.5 116.5t-28.5 155.5zM395 362q0 -111 54.5 -168t154.5 -57q94 0 166 54.5t122 141.5t79.5 198.5t40.5 226.5q-53 45 -114.5 62.5t-121.5 17.5q-186 0 -283.5 -126t-97.5 -350z" />
<glyph unicode="&#xf1;" horiz-adv-x="1128" d="M156 0l245 1024q94 29 204 46t196 17q92 0 158.5 -25.5t107.5 -69.5t60.5 -106.5t19.5 -135.5q0 -47 -8.5 -99.5t-20.5 -105.5l-131 -545h-190l121 504q14 57 27 116.5t13 112.5q0 82 -45 136.5t-168 54.5q-51 0 -100 -6.5t-82 -16.5l-217 -901h-190zM551 1315 q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xf2;" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM637 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xf3;" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM701 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xf4;" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM594 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xf5;" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM545 1315q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5 t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#xf6;" horiz-adv-x="1136" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q168 0 263.5 -99.5t95.5 -273.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-168 0 -263 99.5t-95 273.5zM395 362q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194 q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM581 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM971 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37 q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xf7;" d="M238 528l38 162h920l-39 -162h-919zM500 184q0 31 11 58.5t31.5 50t48 36t62.5 13.5q45 0 73 -26.5t28 -69.5q0 -31 -11.5 -58.5t-32 -50t-49 -36t-61.5 -13.5q-45 0 -72.5 26.5t-27.5 69.5zM688 971q0 31 11.5 58.5t32 50t48 35.5t62.5 13q45 0 72.5 -26.5t27.5 -69.5 q0 -31 -11 -58.5t-31.5 -50t-49.5 -36t-62 -13.5q-45 0 -72.5 27t-27.5 70z" />
<glyph unicode="&#xf8;" horiz-adv-x="1136" d="M141 2l113 129q-49 86 -49 215q0 119 33.5 250t108.5 241.5t191.5 182.5t282.5 72q133 0 221 -64l95 107l104 -76l-113 -129q23 -43 36.5 -95.5t13.5 -115.5q0 -119 -34 -250t-107.5 -241.5t-190.5 -182.5t-283 -72q-135 0 -223 64l-96 -111zM391 325.5q0 -16.5 4 -32.5 l527 598q-53 41 -136 41q-92 0 -165.5 -54.5t-125 -137.5t-78 -184.5t-26.5 -195.5v-34.5zM461 172q45 -39 135 -39q92 0 166 54.5t125 137.5t77.5 184t26.5 196v32.5t-4 32.5z" />
<glyph unicode="&#xf9;" horiz-adv-x="1126" d="M225 309q0 53 9.5 105.5t21.5 105.5l131 545h191l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7 -71t26.5 -59.5t52 -41t82.5 -15.5q88 0 154.5 38t111.5 89q2 33 6 68t14 76l158 657h191l-162 -674q-10 -47 -17.5 -91t-7.5 -91t8.5 -94t28.5 -103l-168 -24 q-10 23 -20.5 51.5t-16.5 60.5q-23 -20 -53.5 -42.5t-70.5 -41t-88 -31t-105 -12.5q-90 0 -150.5 27t-98.5 72t-54.5 106.5t-16.5 130.5zM621 1479l139 116l260 -327l-100 -88z" />
<glyph unicode="&#xfa;" horiz-adv-x="1126" d="M225 309q0 53 9.5 105.5t21.5 105.5l131 545h191l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7 -71t26.5 -59.5t52 -41t82.5 -15.5q88 0 154.5 38t111.5 89q2 33 6 68t14 76l158 657h191l-162 -674q-10 -47 -17.5 -91t-7.5 -91t8.5 -94t28.5 -103l-168 -24 q-10 23 -20.5 51.5t-16.5 60.5q-23 -20 -53.5 -42.5t-70.5 -41t-88 -31t-105 -12.5q-90 0 -150.5 27t-98.5 72t-54.5 106.5t-16.5 130.5zM684 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xfb;" horiz-adv-x="1126" d="M225 309q0 53 9.5 105.5t21.5 105.5l131 545h191l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7 -71t26.5 -59.5t52 -41t82.5 -15.5q88 0 154.5 38t111.5 89q2 33 6 68t14 76l158 657h191l-162 -674q-10 -47 -17.5 -91t-7.5 -91t8.5 -94t28.5 -103l-168 -24 q-10 23 -20.5 51.5t-16.5 60.5q-23 -20 -53.5 -42.5t-70.5 -41t-88 -31t-105 -12.5q-90 0 -150.5 27t-98.5 72t-54.5 106.5t-16.5 130.5zM577 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#xfc;" horiz-adv-x="1126" d="M225 309q0 53 9.5 105.5t21.5 105.5l131 545h191l-121 -504q-10 -47 -26.5 -110.5t-16.5 -126.5q0 -37 7 -71t26.5 -59.5t52 -41t82.5 -15.5q88 0 154.5 38t111.5 89q2 33 6 68t14 76l158 657h191l-162 -674q-10 -47 -17.5 -91t-7.5 -91t8.5 -94t28.5 -103l-168 -24 q-10 23 -20.5 51.5t-16.5 60.5q-23 -20 -53.5 -42.5t-70.5 -41t-88 -31t-105 -12.5q-90 0 -150.5 27t-98.5 72t-54.5 106.5t-16.5 130.5zM565 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM955 1366q0 61 40.5 99t88.5 38 q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#xfd;" horiz-adv-x="978" d="M-115 -340l66 156q20 -16 55 -27.5t78 -11.5q119 0 202 57t156 152q-76 248 -124 522t-58 557h195q2 -92 10 -201.5t23.5 -227.5t36.5 -236.5t50 -227.5q78 123 141.5 255t112 253t81 222.5t46.5 162.5h199q-23 -78 -63.5 -193.5t-99 -250t-131.5 -274.5t-159 -269 q-66 -96 -131 -181t-140 -147.5t-165 -98.5t-203 -36q-57 0 -106 14.5t-72 30.5zM584 1288l323 309l105 -147l-347 -262z" />
<glyph unicode="&#xfe;" horiz-adv-x="1118" d="M66 -379l464 1935l199 33l-125 -522q100 25 172 25q100 0 173 -29t120 -79t70.5 -118.5t23.5 -150.5q0 -141 -43 -273.5t-132 -235t-225 -163.5t-323 -61q-23 0 -49 2t-47 6l-88 -369h-190zM383 150q20 -4 44 -5.5t46 -1.5q117 0 209 45t156.5 122t99.5 176.5t35 207.5 q0 45 -10.5 88t-38 76t-74.5 52.5t-121 19.5q-51 0 -94 -9.5t-72 -17.5z" />
<glyph unicode="&#xff;" horiz-adv-x="978" d="M-115 -340l66 156q20 -16 55 -27.5t78 -11.5q119 0 202 57t156 152q-76 248 -124 522t-58 557h195q2 -92 10 -201.5t23.5 -227.5t36.5 -236.5t50 -227.5q78 123 141.5 255t112 253t81 222.5t46.5 162.5h199q-23 -78 -63.5 -193.5t-99 -250t-131.5 -274.5t-159 -269 q-66 -96 -131 -181t-140 -147.5t-165 -98.5t-203 -36q-57 0 -106 14.5t-72 30.5zM464 1366q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37q-45 0 -76 28.5t-31 75.5zM854 1366q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37 q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#x152;" horiz-adv-x="1966" d="M254 537q0 176 55.5 338.5t172 286.5t298 198t432.5 74q53 0 103.5 -4.5t91.5 -10.5h762l-39 -166h-610l-103 -428h539l-39 -161h-537l-120 -498h657l-39 -166h-784q-57 -6 -114.5 -10t-98.5 -4q-158 0 -276 38.5t-195.5 110.5t-116.5 173.5t-39 228.5zM461 537 q0 -180 104.5 -281.5t331.5 -101.5q49 0 93 3t73 7l260 1091q-23 4 -59.5 7.5t-102.5 3.5q-162 0 -292 -54.5t-220 -150.5t-139 -230.5t-49 -293.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1804" d="M205 346q0 119 33.5 250t107.5 241.5t190.5 182.5t282.5 72q129 0 211 -61.5t103 -166.5q72 98 180 162t256 64q84 0 144.5 -21.5t98 -58.5t56 -85t18.5 -100q0 -96 -34.5 -162.5t-92 -111.5t-134.5 -69.5t-160 -39t-168 -19.5t-160 -9q0 -10 -1 -18.5t-1 -18.5 q0 -72 20.5 -117t58 -72.5t92 -38t121.5 -10.5q39 0 79 8.5t76 18.5t63.5 22.5t40.5 20.5l16 -162q-18 -12 -53 -24.5t-80 -23.5t-96.5 -18.5t-106.5 -7.5q-141 0 -238.5 59.5t-128.5 166.5q-66 -92 -174 -159t-262 -67q-168 0 -263 99.5t-95 273.5zM395 362 q0 -104 45 -165.5t156 -61.5q92 0 165 53.5t123 136.5t76.5 183t26.5 194q0 104 -45 166t-156 62q-92 0 -164.5 -53.5t-122.5 -136.5t-77 -183t-27 -195zM1161 559q119 4 217.5 15.5t170 39t111.5 74.5t40 123q0 18 -7 38.5t-24.5 38t-48.5 29t-76 11.5q-72 0 -134 -31 t-111.5 -81t-84.5 -116.5t-53 -140.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1171" d="M336 1419h215q39 -166 87 -338t107 -331q135 158 273.5 331.5t245.5 337.5h227q-154 -209 -322 -418.5t-360 -431.5l-135 -569h-199l135 569q-80 215 -148.5 431.5t-125.5 418.5zM663 1685q0 61 41 99t88 38q45 0 77 -29.5t32 -78.5q0 -59 -42 -96t-89 -37 q-45 0 -76 28.5t-31 75.5zM1053 1685q0 61 40.5 99t88.5 38q45 0 76.5 -29.5t31.5 -78.5q0 -59 -42 -96t-89 -37q-45 0 -75.5 28.5t-30.5 75.5z" />
<glyph unicode="&#x2c6;" horiz-adv-x="770" d="M430 1290l332 285l217 -303l-90 -84l-162 178l-229 -168z" />
<glyph unicode="&#x2dc;" horiz-adv-x="770" d="M369 1315q41 86 97 132t148 46q41 0 73 -14.5t61 -30.5q31 -16 55 -26.5t49 -10.5q43 0 71.5 32t51.5 66l96 -59q-41 -86 -97 -132t-149 -46q-41 0 -72.5 14t-60.5 31q-31 16 -55.5 26.5t-48.5 10.5q-43 0 -72 -32t-51 -67z" />
<glyph unicode="&#x2000;" horiz-adv-x="958" />
<glyph unicode="&#x2001;" horiz-adv-x="1916" />
<glyph unicode="&#x2002;" horiz-adv-x="958" />
<glyph unicode="&#x2003;" horiz-adv-x="1916" />
<glyph unicode="&#x2004;" horiz-adv-x="638" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="600" d="M178 524l41 178h496l-41 -178h-496z" />
<glyph unicode="&#x2011;" horiz-adv-x="600" d="M178 524l41 178h496l-41 -178h-496z" />
<glyph unicode="&#x2012;" horiz-adv-x="600" d="M178 524l41 178h496l-41 -178h-496z" />
<glyph unicode="&#x2013;" horiz-adv-x="1015" d="M125 532l39 162h1024l-39 -162h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2039" d="M125 532l39 162h2048l-39 -162h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="481" d="M373 1065q10 66 36.5 134.5t62.5 133t78 121.5t85 102l129 -53q-72 -111 -119 -215t-63 -223h-209z" />
<glyph unicode="&#x2019;" horiz-adv-x="481" d="M336 1098q72 111 119 215t63 223h209q-10 -66 -36.5 -134.5t-62.5 -133t-78 -121.5t-85 -103z" />
<glyph unicode="&#x201a;" horiz-adv-x="481" d="M23 -205q72 111 118.5 215.5t63.5 222.5h209q-10 -66 -37 -134t-62.5 -132.5t-77.5 -122t-85 -102.5z" />
<glyph unicode="&#x201c;" horiz-adv-x="854" d="M373 1065q10 66 36.5 134.5t62.5 133t78 121.5t85 102l129 -53q-72 -111 -119 -215t-63 -223h-209zM746 1065q10 66 36.5 134.5t62.5 133t78 121.5t85 102l129 -53q-72 -111 -119 -215t-63 -223h-209z" />
<glyph unicode="&#x201d;" horiz-adv-x="854" d="M336 1098q72 111 118.5 215.5t63.5 222.5h209q-10 -66 -37 -134t-62.5 -132.5t-77.5 -122t-85 -102.5zM709 1098q72 111 118.5 215.5t63.5 222.5h209q-10 -66 -37 -134t-62.5 -132.5t-77.5 -122t-85 -102.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="854" d="M23 -205q72 111 118.5 215.5t63.5 222.5h209q-10 -66 -37 -134t-62.5 -132.5t-77.5 -122t-85 -102.5zM396 -205q72 111 118.5 215.5t63.5 222.5h209q-10 -66 -37 -134t-62.5 -132.5t-77.5 -122t-85 -102.5z" />
<glyph unicode="&#x2022;" horiz-adv-x="737" d="M274 723q0 51 18.5 99t52.5 83t82 56.5t110 21.5q61 0 109 -21.5t82 -56.5t52.5 -83t18.5 -99q0 -53 -18.5 -100.5t-52.5 -82t-82 -56t-109 -21.5t-109.5 21.5t-82.5 56t-52.5 82t-18.5 100.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="2039" d="M225 94q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90zM907 94q0 74 44 114t102 40q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90zM1589 94q0 74 44 114t102 40 q57 0 91 -32t34 -93q0 -35 -13.5 -62.5t-34 -47t-47 -30t-53.5 -10.5q-57 0 -90 31t-33 90z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="595" d="M197 594l415 440l119 -71l-321 -390l155 -385l-127 -59z" />
<glyph unicode="&#x203a;" horiz-adv-x="595" d="M143 201l322 389l-156 385l127 59l242 -465l-416 -440z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" d="M213 465l35 147h164q6 51 16 102.5t25 104.5h-158l35 148h172q41 100 100.5 187t141 151.5t185 102.5t230.5 38q80 0 136.5 -12.5t109.5 -34.5l-76 -154q-33 16 -75 27.5t-119 11.5q-80 0 -145.5 -24.5t-120 -66.5t-96.5 -100.5t-73 -125.5h486l-62 -148h-479 q-16 -51 -26.5 -103t-16.5 -104h432l-61 -147h-383v-37q0 -86 21.5 -142.5t58.5 -89t87 -46t107 -13.5q92 0 157.5 17.5t115.5 40.5l6 -162q-14 -8 -45 -18.5t-73 -19.5t-89 -15.5t-94 -6.5q-215 0 -328 112t-113 333v47h-188z" />
<glyph unicode="&#x2122;" horiz-adv-x="1554" d="M270 1294v125h572v-125h-215v-557h-142v557h-215zM870 737q16 252 28.5 415t29.5 267h135q16 -35 40.5 -85t52.5 -106.5t58.5 -115.5t59.5 -115q27 55 57.5 114.5t59 117t53 106.5t41.5 84h135q16 -104 28.5 -267t28.5 -415h-143q-4 104 -10 226t-15 223 q-23 -39 -50 -90.5t-53 -103.5l-48.5 -97t-34.5 -72h-100q-12 27 -35 72t-49.5 96t-54 102.5t-48.5 92.5q-8 -100 -14 -222t-10 -227h-142z" />
<glyph unicode="&#xe000;" horiz-adv-x="1064" d="M0 0v1065h1065v-1065h-1065z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 74 KiB

BIN
font/ubuntu-ri-webfont.ttf Normal file

Binary file not shown.

BIN
font/ubuntu-ri-webfont.woff Normal file

Binary file not shown.

40
fr/a-propos.html Normal file
View file

@ -0,0 +1,40 @@
---
layout: base-fr
title: À propos - Bitcoin
---
<h1>À propos du Bitcoin</h1>
<h2>Un peu d'histoire</h2>
<p>Bitcoin est une des premières implémentation d'un concept appelé crypto-devise, initialement décrit en 1998 par Wei Dai sur la liste de diffusion the cypherpunks. En se basant sur la notion que la monnaie peut être n'importe quel objet, ou toute forme de registre, acceptée sous forme de paiement pour des biens et des services et le paiement d'une dette dans un contexte étatique ou socio-économique, le Bitcoin a été conçu avec l'idée de créer une nouvelle forme de monnaie qui utilise la cryptographie pour contrôler sa création monétaire et ses transactions, plutôt que de dépendre d'une autorité centrale.</p>
<p>En 2009, la première spécification et la première preuve de concept du Bitcoin est publiée dans la liste de diffusion Cryptography par un membre sour le pseudonyme de Satoshi Nakamoto. Vers la fin de l'année 2010, Satoshi délaisse le projet. De tout ce temps, le créateur du Bitcoin n'a jamais révélé son identité et a laissé son invention au public. L'origine et la motivation derrière la création du Bitcoin sont encore aujourd'hui une grande source de mystère.</p>
<p>Depuis 2010, la communauté Bitcoin gagne une forte croissance avec plusieurs développeurs bénévoles impliqués dans le projet. Au cours de juin et juillet 2011, le Bitcoin reçoit soudainement l'attention des médias, créant une bulle spéculative massive qui s'essoufle ensuite rapidement. La valeur du Bitcoin grimpe ensuite progressivement jusqu'à rejoindre sa montée spectaculaire de 2011.</p>
<p>Le 27 septembre 2012, la Bitcoin foundation est créée afin de standardiser, protéger et promouvoir le Bitcoin. Et à ce jour, l'économie du Bitcoin est en forte croissance.</p>
<h2>Fonctionnalités techniques</h2>
<p>Voici les propriétés de base de tout réseau reposant sur un protocole basé sur Bitcoin.</p>
<ul class="list">
<li>Les Bitcoins peuvent être transférés entre des postes arbitraires sur le réseau.</li>
<li>Les transactions sont irréversibles.</li>
<li>Les double dépenses sont bloquées par l'usage de la <a href="https://en.bitcoin.it/wiki/Block_chain">chaîne de bloc</a>.</li>
<li>Les transactions sont diffusées dans la seconde et <a href="https://en.bitcoin.it/wiki/FAQ#Why_do_I_have_to_wait_10_minutes_before_I_can_spend_money_I_received.3F">vérifiées dans les 10 à 60 minutes suivantes</a>.</li>
<li>Le traitement des transactions et la création monétaire sont effectués collective par le <a href="https://en.bitcoin.it/wiki/Mining">minage</a>.</li>
<li>Les transactions peuvent être reçues en tout temps même lorsque votre ordinateur est arrêté.</li>
</ul>
<h2>Règles de l'économie</h2>
<p>Ces règles sont imposées collectivement par le réseau. Bien qu'elles ne changeront pas pour le Bitcoin, d'autres monnaies virtuelles utilisant la technologie du Bitcoin peuvent les changer pour s'adapter à leurs besoins.</p>
<ul class="list">
<li>Le nombre final de Bitcoin est limité à <a href="https://en.bitcoin.it/wiki/Controlled_Currency_Supply">environ 21 million de Bitcoins</a>.</li>
<li>Les Bitcoins sont divisibles jusqu'à 8 chiffres sous la virgule, soit environ 21×10<sup>14</sup> unités.</li>
<li>Les transactions sont très peu couteuses, et <a href="https://en.bitcoin.it/wiki/Transaction_fees">gratuites la plupart du temps</a>.</li>
</ul>
<h2>Statistiques</h2>
<p>Le réseau fonctionne depuis plus de 45 mois, donnant lieu à des caractéristiques de sécurité impressionnantes. Et une croissance significative au cours de la dernière année. Au cours de février 2013, voici quelques statistiques.</p>
<ul class="list">
<li>Une longue chaîne de blocs (plus de 220.000 blocs).</li>
<li>Une puissance de calcul puissante sécurisant les transaction estimée à plus de 25 Terrahash/s.</li>
<li>Plus de 1M $USD de volume d'échange journalier distribué sur 40,000 transactions.</li>
<li>Une capitalisation boursière estimée au-dessus de 300M $USD.</li>
<li>Seulement un <a href="https://en.bitcoin.it/wiki/Incidents#Value_overflow">incident</a> majeur (corrigé en Août 2010).</li>
</ul>

View file

@ -0,0 +1,27 @@
---
layout: base-fr
title: Bitcoin pour les Développeurs - Bitcoin
---
<h1>Bitcoin pour les Développeurs</h1>
<p class="summary">Le Bitcoin peut propulser des systèmes innovants, ou les plus habituels.</p>
<h2><img src="/img/ico_simple.svg" alt="Simple" />La plus simple des configurations de paiement</h2>
<p>À moins que les paiements doivent être associés une facturation automatisée, accepter les Bitcoin est aussi simple que d'ajouter une adresse Bitcoin sur un site web sous forme de texte ou sous la forme d'une image représentant le code QR. Cette approche simple est à la portée de tous et peut répondre des besoins d'une bonne palette de clients. Spécialement pour les dons.</p>
<h2><img src="/img/ico_conf.svg" alt="APIs" />Plusieurs APIs de programmation</h2>
<p>Il existe de nombreux services de traitement de paiement qui offrent des APIs de programmation. De telle sorte que vous ne soyez pas obligés de conserver de Bitcoins sur votre serveur ni prendre en charge la sécurité que cela implique. Du même coup, la plupart de ces APIs vous permettent d'échanger vos Bitcoin contre votre propre devise locale à des prix compétitifs.</p>
<h2><img src="/img/ico_own.svg" alt="Autonome" />Devenez votre propre système financier</h2>
<p>Si vous n'utilisez pas d'API de programmation offert par un tiers, vous pouvez intégrer un serveur Bitcoin directement dans vos applications. Vous permettant ainsi de devenir votre propre banque et de traiter vous-même tous vos paiements. Avec toutes les responsabilités que cela implique, vous pouvez construire des systèmes autonomes utilisant le Bitcoin pratiquement sans le moindre frais.</p>
<h2><img src="/img/ico_invoice.svg" alt="Facture" />Les adresses Bitcoin pour associer une facture</h2>
<p>Bitcoin peut virtuellement créer autant d'adresse Bitcoin qu'un utilisateur le désire. Ce qui signifie que si vous souhaitez développer un système de paiement associé à un numéro de facture, vous avez simplement besoin de générer et surveiller une adresse Bitcoin pour chaque paiement. Vous pouvez aussi ré-utiliser les même adresses une fois les paiements complétés.</p>
<h2><img src="/img/ico_lock.svg" alt="Sécurité" />Presque toute la sécurité est du côté du client</h2>
<p>La plus grande partie de la sécurité s'effectue par le biais du protocole du côté du client et du côté du réseau Bitcoin. L'authenticité des payeurs est vérifiée grâce aux clés privées et la double-dépense est bloquée par le réseau Bitcoin. Ce qui signifie que vous n'avez pas à vous soucier d'être conforme avec la norme PCI ou d'implémenter des détections de fraudes. Bitcoin fonctionne, point à la ligne.</p>
<h2><img src="/img/ico_fast.svg" alt="Instantané" />Transactions instantanées et confirmations</h2>
<p>Une transaction Bitcoin est normalement déployée à l'intérieur de quelques secondes et confirmée dans les 10 minutes suivantes. Avant quoi, la transaction peut être considérée comme authentique mais réversible. Si vous avez réellement besoin d'utiliser les transactions instantanées, il est recommandé d'exiger un petit frais de transaction et d'utiliser un système de détection des doubles-dépenses.</p>
<h2><img src="/img/ico_micro.svg" alt="Micro" />Les micro paiements accessibles</h2>
<p>Bitcoin offre les frais de transaction les plus bas pour tout type de paiement, incluant les micro-paiements. Ce qui signifie qu'il peut aussi être utilisé pour concevoir et implémenter des nouveaux services en ligne créatifs qui ne pouvaient pas exister pour de simples restrictions financières.</p>

View file

@ -0,0 +1,30 @@
---
layout: base-fr
title: Bitcoin pour les Entreprises - Bitcoin
---
<h1>Bitcoin pour les Organisations</h1>
<p class="summary">Bitcoin est un moyen très sécuritaire et économique de traiter des paiements.</p>
<h2><img src="/img/ico_lowfee.svg" alt="Frais" />Les frais les plus compétitifs</h2>
<p>La haute sécurité cryptographique du Bitcoin lui permet de traiter des transactions de manière extrêmement efficace et économique. À ce jour, vous pouvez émettre et recevoir des paiements gratuitement en utilisant le réseau Bitcoin dans la plupart des cas. Et vous pouvez payer un petit frais de transaction volontaire si vous voulez augmenter la priorité d'une de vos transactions.</p>
<h2><img src="/img/ico_shield.svg" alt="Protection" />Protection contre les fraudes par renversement</h2>
<p>Toutes les entreprises qui acceptent les paiements par cartes de crédit ou Paypal connaissent le problème que représente les paiements qui sont plus tard renversés lorsque le compte du payeur a été piraté ou lorsque le payeur prétend frauduleusement ne pas avoir reçu son achat. Les entreprises ne peuvent pas se défendre contre ce type de fraude, hormis par des analyses de risque complexes et en augmentant leurs prix pour couvrir les pertes. Les paiements Bitcoin sont irréversibles. Ce qui signifie que les coûts de la fraude ne sont plus poussés sur les épaules des marchands.</p>
<h2><img src="/img/ico_international.svg" alt="International" />Transferts internationaux sans délais</h2>
<p>Les Bitcoins peuvent être transférés de l'Afrique vers le Canada en 10 minutes. En fait, les Bitcoins n'ont aucun emplacement géographique fixe. Ce qui signifie que vous pouvez transférer n'importe quelle somme vers n'importe quelle destination sans limite, sans délais et sans frais excessifs. Il n'y a pas de banque intermédiaire pour ralentir vos paiement pendant 3 jours ouvrables.</p>
<h2><img src="/img/ico_pci.svg" alt="PCI" />Aucune conformité PCI requise</h2>
<p>Accepter les cartes de crédit en ligne requiert une liste exhaustive de vérifications et de formalités toujours renouvellées afin de se conformer à la norme PCI. Bien que ce soit une bonne chose pour protéger les cartes de crédit, la sécurité du Bitcoin est pour sa part conçue de manière à rendre cette approche désuète. Vos paiements sont sécurisés par le réseau. Pas aux frais de votre entreprise.</p>
<h2><img src="/img/ico_fast.svg" alt="Instantané" />Transactions instantanées pour les points de vente</h2>
<p>Une transaction Bitcoin est normalement déployée en quelques secondes et confirmée en 10 minutes. Avant quoi, cette transaction peut être considérée comme authentique mais réversible. Si vous avez vraiment besoin d'utiliser les transactions instantanées, il est recommandé d'exiger un léger frais de transaction et d'utiliser un système de détection des doubles-dépenses.</p>
<h2><img src="/img/ico_visib.svg" alt="Visibilité" />Gagner de la visibilité avec peu d'effort</h2>
<p>Le Bitcoin est un marché émergeant où de nouveaux consommateurs sont à la recherche de biens et de services en échange de leurs Bitcoins. Les accepter est une bonne façon d'obtenir de nouveaux clients et de donner à votre entreprise un peu plus de visibilité. Accepter de nouvelles formes de paiements est une pratique futée depuis longtemps réputée pour les commerces en ligne.</p>
<h2><img src="/img/ico_multi.svg" alt="Multi-signature" />Multi-signature</h2>
<p>Bitcoin inclut également une fonctionnalité encore peu connue permettant d'empêcher la dépense de certains Bitcoins à moins qu'un nombre défini d'un groupe de personnes ne signe la transaction. C'est ce qu'on appelle souvent les transactions "n de m". Ce système représente l'équivalent du bon vieux chèque à signatures multiples que vous utilisez peut-être encore aujourd'hui.</p>
<h2><img src="/img/ico_transparency.svg" alt="Transparence" />Transparence dans votre comptabilité</h2>
<p>Plusieurs organisations sont tenues de produire des documents sur leurs activités et d'adopter de bonnes pratiques de transparence. Utiliser le Bitcoin offre le plus haut niveau de transparence puisque vos soldes et chacune de vos transactions peut être consultée en ligne par chacun de vos membres que vous tenez au courant de vos adresses Bitcoin.</p>

View file

@ -0,0 +1,24 @@
---
layout: base-fr
title: Bitcoin pour les Particuliers - Bitcoin
---
<h1>Bitcoin pour les Particuliers</h1>
<p class="summary">Bitcoin est la manière la plus simple et économique d'échanger de l'argent.</p>
<h2><img src="/img/ico_mobile.svg" alt="Mobile"/>Paiements mobiles simplifiés</h2>
<p>Bitcoin sur les mobiles vous permet de payer avec la meilleure simplicité avec un simple scan. Aucun besoin de passer votre carte, de taper un code NIP ou de signer. Tout ce que vous devez faire pour recevoir des paiements Bitcoin est d'afficher le code QR avec votre application Bitcoin et de laisser un ami scanner votre mobile, ou de mettre en contact les deux mobiles ( avec la technologie NFC ).</p>
<h2><img src="/img/ico_international.svg" alt="International" />Transferts internationaux sans délais</h2>
<p>Les Bitcoins peuvent être transférés de l'Afrique vers le Canada en 10 minutes. Il n'y a aucune banque pour ralentir le traitement de vos transations, engoutir des frais substantiels ou même geler votre tranfert. Vous pouvez payer votre voisin exactement de la même façon que vous pouvez payer un membre de votre famille dans un autre pays.</p>
<h2><img src="/img/ico_simple.svg" alt="Partout" />Fonctionne partout, en tout temps</h2>
<p>Tout comme les emails, vous n'avez pas besoin de forcer qui que ce soit à utiliser le même logiciel ou la même banque que vous. Laissez à vos amis et à votre famille le libre choix de leur service favoris. Aucun problème, tous les services Bitcoins sont compatibles entre eux puisqu'ils utilisent la même technologie ouverte. Le réseau Bitcoin ne dors jamais, même le dimanche!</p>
<h2><img src="/img/ico_lock.svg" alt="Sécurité" />Transactions sécurisées</h2>
<p>Les transactions Bitcoin sont sécurisées par une cryptographie de niveau militaire. Personne ne peut faire de paiement en votre nom ou vous charger une somme sans avoir une copie de votre porte-monnaie. Tant que vous faites le nécessaire pour <a href="/fr/vous-devez-savoir">protéger votre porte-monnaie</a>, Bitcoin offre un niveau de protection intéressante contre plusieurs formes de fraudes.</p>
<h2><img src="/img/ico_lowfee.svg" alt="Gratuit" />Presque 100% gratuit</h2>
<p>Vous pouvez déjà envoyer et recevoir des paiements gratuitement! À l'exception de cas spéciaux comme les très petits paiements, il n'y a aucun frais obligatoire. Vous pouvez toutefois décider volontairement de verser un frais de transaction pour augmenter la priorité de traitement de votre paiement. Et ainsi rémunérer du même coup les personnes qui font fonctionner le réseau Bitcoin.</p>
<h2><img src="/img/ico_anon.svg" alt="Anonyme" />Paiements en ligne anonymes</h2>
<p>Les paiements anonymes font partie de notre vie de tous les jours. La plupart des achats faits en boutique sont complétés sans obligation s'identifier. Bitcoin introduit la même liberté dans le monde du web. Vous permettant d'acheter des services ou de faire des dons sans le désagrément d'être passé au rayon X. Toutefois, vous devez savoir que <a href="/fr/vous-devez-savoir"><b>l'anonymat complet requiert des efforts spéciaux</b></a>.</p>

View file

@ -0,0 +1,29 @@
---
layout: base-fr
title: Bitcoin pour les Passionnés
---
<h1>Bitcoin pour les Passionnés</h1>
<p class="summary">Bitcoin change le monde des finances en le rendant plus ouvert et démocratique.</p>
<h2><img src="/img/ico_democracy.svg" alt="Démocratie" />Bitcoin est un consensus mondial et démocratique</h2>
<p>De par sa nature libre et décentralisée, Bitcoin est le premier réseau de paiement qui fonctionne uniquement grâce à ses utilisateurs et sans autorité centrale. Même les développeurs du Bitcoin n'ont aucun pouvoir de forcer une mise à jour dans le protocole si suffisamment d'utilisateurs, de développeurs ou de mineurs sont en désaccord. <i>Vous seul</i> avez le contrôle exclusif de votre porte-monnaie.</p>
<h2><img src="/img/ico_network.svg" alt="Réseau" />Une monnaie conçue pour Internet</h2>
<p>Bitcoin est né de l'Internet. Introduisant à son passage les libertés de la monnaie physique dans le monde du web tout en rendant les paiements plus faciles et sécuritaires dans les deux mondes. Bitcoin peut offrir des alternatives concrètes à plusieurs systèmes anciens, lourds et couteux. Et il peut augmenter l'accessibilité du commerce en ligne dans les pays en voie de développement.</p>
<h2><img src="/img/ico_own.svg" alt="Individus" />Protéger les droits et libertés individuelles</h2>
<p>Bitcoin permet à chaque personne de stocker et échanger de la valeur sécuritairement sur un réseau qui ne peut être saisi, manipulé ou stoppé par aucune organisation ou individu. Donnant ainsi un libre accès à des outils puissants qui peuvent jouer un rôle dans la protection des droits et libertés individuelles contre plusieurs niveaux de corruption.</p>
<h2><img src="/img/ico_international.svg" alt="Global" />La première devise globale et neutre</h2>
<p>On ne peut que difficilement trouver une monnaie dans notre histoire qui ait déjà été libre de toute influence politique ou de toute économie nationale. Le Bitcoin pourrait-il devenir la première devise globale à traverser toutes les barrières entre les nations, les politiques et les cultures pour le bénéfice du bien commun? Tout ça semble possible. Un pour tous, et tous pour un!</p>
<h2><img src="/img/ico_transparency.svg" alt="Transparence" />Promouvoir la transparence</h2>
<p>Toutes les transactions Bitcoin sont publiques. Mais les propriétaires et les destinataires de ces transactions restent inconnus. Les organisations peuvent choisir de révéler leur propriété sur certaines adresses Bitcoins envers des personnes définies. Ce qui permet à toute organisation de mettre en oeuvre d'excellentes pratiques de transparence adaptées à chaque besoin.
</p>
<h2><img src="/img/ico_lock.svg" alt="Sécurité" />Rendre l'argent plus sécuritaire</h2>
<p>Grâce à un usage ingénieux de règles cryptographiques, le Bitcoin offre une liste étonnante de fonctionnalités reliées à la sécurité. Non seulement les Bitcoins sont impossibles à contrefaire ou à usurper mais le protocole est aussi conçu pour être très résistant contre une liste impressionnante d'attaques informatiques, incluant les attaques par déni de service distribué.
</p>
<h2><img src="/img/ico_solve.svg" alt="Résoudre" />Résoudre les problèmes de confiance des banques</h2>
<p>Bitcoin offre des solutions contre plusieurs problèmes de confiance entre les banques avec la transparence comptable sélective, les preuves par signature cryptographiques et les transactions irréversibles. Bitcoin augmente aussi les risques des banques malhonnêtes. Aucun nouveau Bitcoin ne peut être créé pour les sauver de leurs propres erreurs aux frais des citoyens.</p>

View file

@ -0,0 +1,106 @@
---
layout: base-fr
title: Choisir votre porte-monnaie - Bitcoin
---
<!--CSS to prevent bubbles to be partially hidden in low-res devices-->
<style>body{min-width:1200px;}</style>
<h1>Choisir votre porte-monnaie</h1>
<p>Votre porte-monnaie Bitcoin est ce qui vous permet de faire des transactions avec le monde. Il vous rend propriétaire de quelques adresses Bitcoin que vous pouvez utiliser pour recevoir et envoyer des Bitcoins avec d'autres utilisateurs. Et comme les emails, vous pouvez recevoir des Bitcoins lorsque vous êtes hors-ligne et tous les porte-monnaies Bitcoin sont compatibles entre eux.</p>
<h2>Débuter rapidement et simplement</h2>
<p>Si vous êtes un nouvel utilisateur, ces porte-monnaie sont un bon point de départ.</p>
<ul class="list">
<li><a href="https://multibit.org" target="_blank"><b>MultiBit</b></a> est un logiciel sur ordinateur qui offre un bon niveau de confidentialité.</li>
<li><a href="http://blockchain.info/wallet/chrome-extension" target="_blank"><b>My Wallet</b></a> est un porte-monnaie sur le web qui se stocke et fonctionne dans votre navigateur.</li>
<li><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank"><b>Bitcoin wallet</b></a> pour Android ou <a href="https://blockchain.info/wallet/iphone-app" target="_blank"><b>Blockchain</b></a> pour iPhone fonctionne sur mobiles et tablettes.</li>
</ul>
<h2>Devenir le réseau Bitcoin</h2>
<p><img src="/img/icon-be-the-network.svg" alt="Réseau" style="float:left;margin-right:10px;"/>Possédez-vous un ordinateur que vous gardez ouvert en permanence? Vous pouvez aider la communauté simplement en laissant fonctionner le <a href="telecharger"><b>logiciel Bitcoin original</b></a> sur celui-ci. Le logiciel Bitcoin original est exigeant en ressource and prendra plus d'une journée entière pour se synchroniser. Après quoi, votre ordinateur contribuera au réseau en partageant les transactions et la chaîne de bloc.</p>
<div class="preview">
<div class="previewcol">
<div class="previewrow">
<h2><img src="/img/ico_software.svg" alt="Software wallets" />Porte-monnaie logiciel</h2>
<p>Les porte-monnaie logiciels sont installés dans votre ordinateur. Ceux-ci vous donnent un contrôle complet sur vos Bitcoins. Vous êtes responsables de faire des sauvegardes et de le protéger. De la même manière que l'argent liquide.</p>
<span>
<span>
<h2>Bitcoin-Qt</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /></div>
<p>Bitcoin-Qt est le logiciel Bitcoin original sur lequel s'appuie le réseau. Il offre le plus haut niveau de sécurité, de vie privée et de stabilité. Toutefois, il offre moins de fonctionnalités et prend beaucoup d'espace et de mémoire.</p>
<p><a href="telecharger">Télécharger</a></p>
</span>
<a href="telecharger"><img src="/img/clients/lo-bitcoin.png" alt="bitcoin-qt" /></a>
</span>
<span>
<span>
<h2>Multibit</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /></div>
<p>Multibit est un client léger qui se concentre à être rapide et facile d'usage. Il se synchronise avec le réseau et est prêt en quelques minutes. Multibit supporte aussi plusieurs languages. Il est un bon choix pour les novices.</p>
<p><a href="https://multibit.org/" target="_blank">Visiter le site</a></p>
</span>
<a href="https://multibit.org/" target="_blank"><img src="/img/clients/lo-multibit.png" alt="multibit" /></a>
</span>
<span>
<span>
<h2>Armory</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /></div>
<p>Armory est un client Bitcoin avancé qui élargit les fonctionnalités de Bitcoin-Qt pour les super-utilisateurs. Armory offre plusieurs formes de sauvegardes et d'encryption et il permet une utilisation hors-ligne sécurisée.</p>
<p><a href="http://bitcoinarmory.com/" target="_blank">Visiter le site</a></p>
</span>
<a href="http://bitcoinarmory.com/" target="_blank"><img src="/img/clients/lo-armory.png" alt="armory" /></a>
</span>
<span>
<span>
<h2>Electrum</h2>
<div><img src="/img/dow-win.png" alt="windows" /><img src="/img/dow-linux.png" alt="linux" /><img src="/img/dow-osx-uni.png" alt="mac os x" /><img src="/img/dow-android.png" alt="android" /></div>
<p>Electrum se spécialise dans la rapidité et la simplicité. Electrum est très léger et utilise des serveurs distants pour augmenter ses performances. Il conserve aussi une sauvegarde encryptée en ligne de votre porte-monnaie.</p>
<p><a href="http://electrum.org/" target="_blank">Visiter le site</a></p>
</span>
<a href="http://electrum.org/" target="_blank"><img src="/img/clients/lo-electrum.png" alt="electrum" /></a>
</span>
</div>
<div class="previewrow">
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Porte-monnaie mobile</h2>
<p>Les porte-monnaie mobiles vous permettent d'apporter le Bitcoin avec vous. Vous pouvez échanger des Bitcoins de personne à personne et payer dans des boutiques par un simple scan du code QR affiché sur un écran, ou avec NFC.</p>
<span>
<span>
<h2>Bitcoin Wallet</h2>
<div><img src="/img/dow-android.png" alt="android" /></div>
<p>Bitcoin Wallet est un client mobile léger qui est disponible pour les mobiles et tablettes Android. Cette application n'a pas besoin d'être associée à un service en ligne. Et il est compatible avec le scan de codes QR et la technologie NFC.</p>
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank">Visiter le site</a></p>
</span>
<a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet&hl=fr" target="_blank"><img src="/img/clients/lo-bitcoinwallet.png" alt="bitcoin wallet" /></a>
</span>
<span>
<span>
<h2>Blockchain</h2>
<div><img src="/img/dow-android.png" alt="android" /><img src="/img/dow-ios.png" alt="ios" /></div>
<p>Blockchain est un porte-monnaie mobile qui fonctionne avec le service en ligne blockchain.info. Il est disponible pour iPhones dans une version compatible avec les restrictions d'Apple et il inclut les options de blockchain.info .</p>
<p><a href="https://blockchain.info/wallet/" target="_blank">Visiter le site</a></p>
</span>
<a href="https://blockchain.info/wallet/" target="_blank"><img src="/img/clients/lo-blockchain.png" alt="blockchain" /></a>
</span>
</div>
<div class="previewrow">
<h2><img src="/img/ico_international.svg" alt="online wallets" />Porte-monnaie en ligne</h2>
<p>Les porte-monnaie en ligne vous permettent d'utiliser vos Bitcoins partout avec moins à faire pour les protéger. Toutefois, <b>vous devez choisir un porte-monnaie en ligne avec prudence puisque ces services hébergent vos Bitcoins</b>.</p>
<span>
<span>
<h2>Blockchain</h2>
<div></div>
<p>Est un porte-monnaie en ligne très simple. Le service conserve une version encryptée de votre porte-monnaie mais le décryptage se passe dans votre navigateur. Par sécurité, utilisez l'extension et les emails de sauvegarde.</p>
<p><a href="http://blockchain.info/wallet/chrome-extension" target="_blank">Visiter le site</a></p>
</span>
<a href="https://blockchain.info/wallet/" target="_blank"><img src="/img/clients/lo-blockchain.png" alt="blockchain" /></a>
</span>
</div>
</div>
<div class="previewcol">.</div>
</div>

25
fr/comment-ca-marche.html Normal file
View file

@ -0,0 +1,25 @@
---
layout: base-fr
title: Comment fonctionne Bitcoin? - Bitcoin
---
<h1>Comment fonctionne Bitcoin?</h1>
<p>Voici une question à problème. Essayons une explication rapide!
<h2>La base pour un nouvel utilisateur</h2>
<p>Comme nouvel utilisateur, vous avez seulement besoin de <a href="/fr/choisir-votre-porte-monnaie">choisir un porte-monnaie</a> que vous installerez sur votre ordinateur ou sur votre mobile. Une fois prêt, votre porte-monnaie créera votre première adresse Bitcoin et vous pouvez en créer de nouvelles chaque fois que vous en avez besoin. Vous pouvez communiquer l'une de vos adresses Bitcoin à un ami pour qu'il puisse vous payer. De la même façon, vous pouvez payer vos amis s'ils vous donnent leurs adresses. En fait, échanger des Bitcoins est assez similaire à échanger des emails. Ensuite, il ne reste qu'à obtenir quelques Bitcoins et à <a href="/fr/vous-devez-savoir">les garder en sûreté</a>. En tant qu'utilisateur, vous n'avez pas besoin de connaître le fonctionnement technique.</p>
<p>Toutefois, si vous voulez en savoir plus, continuez votre lecture!</p>
<p><br><img src="/fr/img/bitcoin_at_a_glance.svg" alt="Survol du Bitcoin" /></p>
<h2>Chaîne de blocs</h2>
<p>La chaîne de bloc est un <b>journal de transactions partagé et public</b> sur lequel repose le réseau Bitcoin. Toutes les transactions confirmées sont incluses dans la chaîne de blocs sans exception. De cette façon, il est possible de vérifier que chaque nouvelle transaction échange des bitcoins appartenant à l'émetteur du paiement. L'intégrité et l'ordre chronologique de la chaîne de bloc est protégée par la <a href="/fr/vocabulaire#cryptographie">cryptographie</a>.</p>
<h2>Transaction</h2>
<p>Une transaction est un <b>transfert de valeur entre des adresses Bitcoin</b> qui est incluse dans la chaîne de bloc. Les porte-monnaie Bitcoin conservent une information secrète pour chaque adresse Bitcoin qu'on appelle <a href="/fr/vocabulaire#cle-privee"><i>clé privée</i></a>. Les clés privées sont utilisées pour signer chaque transaction, fournissant une preuve mathématique qu'elles proviennent des bons propriétaires. La <a href="/fr/vocabulaire#signature"><i>signature</i></a> permet également d'empêcher la transaction d'être modifiée une fois émise. Toutes les transactions sont diffusées entre les utilisateurs et sont confirmées par le réseau dans les minutes suivantes via un procédé nommé <a href="/fr/vocabulaire#minage"><i>minage</i></a>.</p>
<h2>Minage</h2>
<p>Le minage est un <b>système de consensus distribué</b> qui est utilisé pour <a href="/fr/vocabulaire#confirmation"><i>confirmer</i></a> les transactions en attente en les incluant dans la chaîne de bloc. Le minage impose un ordre chronologique dans la chaîne de bloc, protège la neutralité du réseau et permet aux ordinateurs du réseau d'être en accord sur l'état du système. Pour être confirmées, les transactions doivent être incluses dans un <a href="/fr/vocabulaire#bloc"><i>bloc</i></a> qui doit correspondre à des règles cryptographiques très strictes qui sont ensuite vérifiées par le réseau. Ces règles empêchent la modification d'un bloc antérieur car la logique des blocs suivants serait brisée. Et elles créent l'équivalent d'une loterie compétitive qui empêche tout individu d'ajouter des blocs consécutivement dans la chaîne de bloc. De cette façon, aucun individu ne peut contrôler ce qui est inclut dans la chaîne de bloc ni en remplacer des parties pour annuler ses propres transactions.</p>
<h2>Aller plus loin..</h2>
<p>Tout cela n'est qu'un résumé très court et concis du système. Si vous voulez aller plus loin dans les détails, vous pouvez lire la <a href="/bitcoin.pdf">spécification originale</a> ou explorer le <a href="https://en.bitcoin.it/wiki/Main_Page" target="_blank">Wiki Bitcoin</a>.</p>

22
fr/communaute.html Normal file
View file

@ -0,0 +1,22 @@
---
layout: base-fr
title: Communauté - Bitcoin
---
<h1>Les communautés du Bitcoin</h1>
<ul class="ressources">
<li><a href="https://bitcointalk.org/index.php?board=13.0">Forum BitcoinTalk</a></li>
<li><a href="http://bitcoin.stackexchange.com/" target="_blank">Bitcoin StackExchange (Q&amp;A)</a> (anglais)</li>
<li>Visitez les <a href="http://www.google.com/?q=bitcoin+forums#sclient=psy&amp;hl=fr&amp;site=&amp;source=hp&amp;q=bitcoin+forums&amp;btnK=Google+Search&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=bitcoin+forums" target="_blank">Forums Bitcoin non officiels</a></li>
<li>Rejoignez les canaux IRC sur le réseau <a href="http://freenode.net/" target="_blank">FreeNode</a> (anglais)<br>ou utilisez <a href="http://webchat.freenode.net/?channels=bitcoin&amp;uio=d4" target="_blank">FreeNode Web IRC</a>.
<ul>
<li><strong>#bitcoin</strong> (Le Bitcoin en général)</li>
<li><strong>#bitcoin-dev</strong> (Développement et détails techniques)</li>
<li><strong>#bitcoin-otc</strong> (Échange de Bitcoins)</li>
<li><strong>#bitcoin-market</strong> (Évolution du marché)</li>
<li><strong>#bitcoin-mining</strong> (Minage de Bitcoins)</li>
</ul>
</li>
<li><a href="http://twitter.com/#!/search/bitcoin" target="_blank">Recherche Twitter</a></li>
<li><a href="https://www.facebook.com/pages/Bitcoin-P2P-Cryptocurrency/134466763256650" target="_blank">Page Facebook</a> (anglais)</li>
<li><a href="http://www.reddit.com/r/Bitcoin/" target="_blank">Page Reddit</a> (anglais)</li>
</ul>

53
fr/developpement.html Normal file
View file

@ -0,0 +1,53 @@
---
layout: base-fr
title: Développement - Bitcoin
---
<h1>Développement du Bitcoin</h1>
<h2>Spécification</h2>
<p>Si vous êtes intéressés à en apprendre davantage sur les détails techniques du Bitcoin, il est recommandé de commencer avec ces documents.</p>
<ul class="list">
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules" target="_blank">Protocol rules</a></li>
<li><a href="https://en.bitcoin.it/wiki/Category:Technical" target="_blank">Bitcoin Wiki</a></li>
</ul>
<h2>Développeurs</h2>
<ul class="list">
<li>Satoshi Nakamoto</li>
<li>Gavin Andresen - <a href="mailto:gavinandresen@gmail.com">gavinandresen@gmail.com</a> (<a href="/gavinandresen.asc">PGP</a>)</li>
<li>Pieter Wuille - <a href="mailto:pieter.wuille@gmail.com">pieter.wuille@gmail.com</a> (<a href="/pieterwuille.asc">PGP</a>)</li>
<li>Nils Schneider - <a href="mailto:nils.schneider@gmail.com">nils.schneider@gmail.com</a> (<a href="/schneider.asc">PGP</a>)</li>
<li>Jeff Garzik - <a href="mailto:jgarzik@exmulti.com">jgarzik@exmulti.com</a> (<a href="/jgarzik-exmulti.asc">PGP</a>)</li>
<li>Wladimir J. van der Laan - <a href="mailto:laanwj@gmail.com">laanwj@gmail.com</a> (<a href="/laanwj.asc">PGP</a>)</li>
<li>Gregory Maxwell - <a href="mailto:gmaxwell@gmail.com">gmaxwell@gmail.com</a> (<a href="/gmaxwell.asc">PGP</a>)</li>
</ul>
<h2>S'impliquer dans le développement</h2>
<p>Le développement du Bitcoin est ouvert et tout développeur peut contribuer au projet. Tout ce que vous devez savoir est dans le dépôt <a href="https://github.com/bitcoin/bitcoin" target="_blank">Github</a>. Veuillez vous assurer de lire et de suivre le processus de développement décrit dans le README ainsi que de produire du code de qualité.</p>
<section id="contributors">
<h2>Contributeurs</h2>
<p>Classé par le nombre d'ajouts dans le code</p>
<table class="contributors">
<tr>
{% for c in site.project.contributors %}
<td>
{% if c.gravatar_id %}
<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" />
{% else %}
<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" />
{% endif %}
{% if c.login %}
<a href="http://github.com/{{c.login}}">
{{ c.name }} ({{ c.contributions }})
</a>
{% else %}
{{ c.name }} ({{ c.contributions }})
{% endif %}
</td>
{% cycle nil, nil, nil, nil, '</tr><tr>' %}
{% endfor %}
</tr>
</table>
</section>

11
fr/fondation.html Normal file
View file

@ -0,0 +1,11 @@
---
layout: base-fr
title: Fondation Bitcoin
---
<div class="foundation">
<img src="/img/logo_bitcoin_foundation.png" alt="The Bitcoin Foundation" style="float:left;margin-right:10px;">
<h1 style="margin-bottom:30px;">La Fondation Bitcoin</h1>
<p>La Fondation Bitcoin standardise, protège et promouvoit l'utilisation de la monnaie cryptographique Bitcoin pour le bénéfice de ses utilisateurs mondiaux.</p>
<h2><a href="https://bitcoinfoundation.org/" target="_blank">Visitez le site web de la Fondation</a></h2>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -0,0 +1,726 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="600"
height="600"
id="svg2985">
<defs
id="defs2987" />
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,568)"
id="layer1">
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(13.752843,0,0,12.195225,108.69872,-605.69877)"
id="path3765"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 253.43812,-375.91326 94.53917,0.21612 c 0,0 0.22823,-14.53236 0.0206,-41.86008 -0.10313,-13.84933 -28.89704,-26.4504 -46.03501,-26.23281 -17.69731,0.22468 -48.25103,11.27509 -48.52679,24.71318 -0.74411,36.25845 0,43.16355 -8e-5,43.16359 z"
id="path3767"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5.6607151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text3777"
style="font-size:18.95102882px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 280.46472,-334.26138 c 0.73277,-0.29058 1.46554,-0.66328 2.19832,-1.11811 0.7454,-0.45482 1.40237,-0.99176 1.9709,-1.61084 l 1.61084,0 0,13.13306 -2.29307,0 0,-10.063 c -0.34113,0.26533 -0.77068,0.52433 -1.28867,0.777 -0.518,0.25269 -1.01704,0.46115 -1.49713,0.62538 l -0.70119,-1.74349"
id="path3367"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 297.56536,-328.76559 c -10e-6,-1.02335 -0.23374,-1.81929 -0.70119,-2.38783 -0.45483,-0.56852 -1.19392,-0.85278 -2.21727,-0.85279 -0.21479,1e-5 -0.4422,0.0126 -0.68224,0.0379 -0.22742,0.0126 -0.45483,0.0505 -0.68224,0.11371 l 0,5.66635 c 0.20214,0.13898 0.46746,0.27164 0.79595,0.39798 0.34111,0.1137 0.70118,0.17056 1.08021,0.17056 0.83383,0 1.44027,-0.28427 1.81929,-0.8528 0.39165,-0.56853 0.58748,-1.33289 0.58749,-2.29308 m 2.34992,-0.0379 c -10e-6,0.75805 -0.10108,1.45292 -0.30321,2.08462 -0.18952,0.6317 -0.46747,1.17496 -0.83385,1.62978 -0.36639,0.45483 -0.82753,0.80858 -1.38342,1.06126 -0.54327,0.25268 -1.16234,0.37902 -1.8572,0.37902 -0.46747,0 -0.89702,-0.0568 -1.28867,-0.17056 -0.39166,-0.1137 -0.71383,-0.24004 -0.96651,-0.37902 l 0,3.84706 -2.29307,0 0,-13.09516 c 0.46746,-0.12633 1.0423,-0.24635 1.72454,-0.36007 0.68224,-0.1137 1.40237,-0.17055 2.16042,-0.17056 0.7833,1e-5 1.48449,0.12003 2.10356,0.36007 0.61906,0.24006 1.14337,0.58749 1.57294,1.04231 0.44218,0.4422 0.77698,0.98546 1.0044,1.62979 0.24004,0.6317 0.36006,1.34552 0.36007,2.14146"
id="path3369"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 306.80783,-331.17237 c 0.56853,-0.94754 1.12442,-1.90772 1.66769,-2.88055 0.54326,-0.97281 1.03598,-1.95195 1.47818,-2.93741 l 2.65315,0 c -0.70752,1.33922 -1.44661,2.6721 -2.21727,3.99866 -0.75805,1.31395 -1.57295,2.64052 -2.44469,3.97972 l 0,5.15468 -2.38783,0 0,-5.11678 c -0.87175,-1.35183 -1.69296,-2.69104 -2.46363,-4.01762 -0.77068,-1.32656 -1.50977,-2.65944 -2.21727,-3.99866 l 2.80475,0 c 0.44219,0.98546 0.9286,1.9646 1.45923,2.93741 0.53063,0.97283 1.08652,1.93301 1.66769,2.88055"
id="path3371"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 317.13614,-323.573 c -0.34112,0 -0.69487,-0.0253 -1.06125,-0.0758 -0.35376,-0.0379 -0.69488,-0.0947 -1.02336,-0.17056 -0.31585,-0.0632 -0.60643,-0.13265 -0.87175,-0.20846 -0.26531,-0.0884 -0.46746,-0.17056 -0.60643,-0.24636 l 0.45482,-1.95196 c 0.26532,0.12634 0.65065,0.27164 1.15602,0.43588 0.50535,0.15161 1.13074,0.22741 1.87615,0.22741 0.99808,0 1.71822,-0.18951 2.16042,-0.56853 0.44218,-0.39165 0.66327,-0.90965 0.66328,-1.55399 -1e-5,-0.41692 -0.0884,-0.76435 -0.26531,-1.0423 -0.16425,-0.27795 -0.39798,-0.49904 -0.70119,-0.66329 -0.29059,-0.17687 -0.63171,-0.29689 -1.02336,-0.36007 -0.37902,-0.0758 -0.78331,-0.1137 -1.21286,-0.11371 l -0.77699,0 0,-1.8572 0.94755,0 c 0.29058,1e-5 0.58116,-0.0253 0.87174,-0.0758 0.30322,-0.0632 0.57485,-0.16423 0.8149,-0.30322 0.24004,-0.1516 0.43587,-0.34742 0.58748,-0.58748 0.1516,-0.24004 0.22741,-0.54957 0.22741,-0.9286 0,-0.30321 -0.0569,-0.5622 -0.17056,-0.77699 -0.11371,-0.21477 -0.26532,-0.39164 -0.45482,-0.53063 -0.17688,-0.13896 -0.38534,-0.24004 -0.62538,-0.30322 -0.24006,-0.0632 -0.49274,-0.0947 -0.75805,-0.0947 -0.56853,1e-5 -1.07389,0.0884 -1.51608,0.26531 -0.44219,0.16426 -0.83385,0.35377 -1.17496,0.56853 l -0.83385,-1.70559 c 0.17688,-0.11369 0.39166,-0.23372 0.64434,-0.36007 0.25268,-0.12633 0.53062,-0.24635 0.83384,-0.36007 0.31585,-0.11369 0.65065,-0.20213 1.00441,-0.26531 0.35375,-0.0758 0.72645,-0.1137 1.11811,-0.11371 0.73277,1e-5 1.36447,0.0884 1.8951,0.26532 0.53062,0.17688 0.9665,0.42957 1.30762,0.75804 0.35375,0.31586 0.61274,0.69488 0.77699,1.13706 0.17687,0.42957 0.26531,0.90334 0.26532,1.42133 -10e-6,0.60644 -0.17057,1.1497 -0.51168,1.62978 -0.32849,0.4801 -0.75805,0.84649 -1.28867,1.09916 0.68223,0.24006 1.24444,0.63803 1.68664,1.19392 0.45482,0.5559 0.68223,1.26972 0.68224,2.14146 -10e-6,0.58117 -0.10108,1.12444 -0.30322,1.62979 -0.20215,0.49273 -0.51168,0.92229 -0.9286,1.28867 -0.41693,0.35376 -0.94756,0.63802 -1.59188,0.8528 -0.63171,0.20214 -1.38975,0.30322 -2.27413,0.30322"
id="path3373"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 327.47127,-325.10804 c -1e-5,0.44219 -0.15162,0.80226 -0.45483,1.08021 -0.29059,0.27795 -0.64434,0.41692 -1.06126,0.41692 -0.42956,0 -0.78962,-0.13897 -1.08021,-0.41692 -0.29058,-0.27795 -0.43587,-0.63802 -0.43587,-1.08021 0,-0.44219 0.14529,-0.80226 0.43587,-1.08021 0.29059,-0.29058 0.65065,-0.43587 1.08021,-0.43587 0.41692,0 0.77067,0.14529 1.06126,0.43587 0.30321,0.27795 0.45482,0.63802 0.45483,1.08021"
id="path3375"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 332.50513,-325.10804 c 0,0.44219 -0.15161,0.80226 -0.45482,1.08021 -0.29059,0.27795 -0.64434,0.41692 -1.06126,0.41692 -0.42956,0 -0.78963,-0.13897 -1.08021,-0.41692 -0.29058,-0.27795 -0.43587,-0.63802 -0.43587,-1.08021 0,-0.44219 0.14529,-0.80226 0.43587,-1.08021 0.29058,-0.29058 0.65065,-0.43587 1.08021,-0.43587 0.41692,0 0.77067,0.14529 1.06126,0.43587 0.30321,0.27795 0.45482,0.63802 0.45482,1.08021"
id="path3377"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3777-7"
style="font-size:18.95102882px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 279.85678,-357.97739 c 0.73277,-0.29057 1.46554,-0.66327 2.19832,-1.11811 0.7454,-0.45481 1.40237,-0.99176 1.9709,-1.61084 l 1.61084,0 0,13.13307 -2.29307,0 0,-10.063 c -0.34113,0.26533 -0.77068,0.52432 -1.28867,0.77699 -0.518,0.25269 -1.01705,0.46115 -1.49714,0.62539 l -0.70118,-1.7435"
id="path3354"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 292.86399,-349.22201 c 0.60643,0 1.04862,-0.0695 1.32658,-0.20846 0.27794,-0.15161 0.41691,-0.40429 0.41692,-0.75804 -10e-6,-0.32849 -0.15162,-0.60012 -0.45483,-0.8149 -0.29058,-0.21477 -0.77699,-0.4485 -1.45923,-0.70119 -0.41692,-0.1516 -0.80226,-0.30953 -1.15601,-0.47377 -0.34112,-0.17687 -0.63802,-0.37902 -0.8907,-0.60644 -0.25268,-0.2274 -0.45482,-0.49903 -0.60643,-0.81489 -0.13898,-0.32848 -0.20846,-0.72645 -0.20846,-1.19391 0,-0.90965 0.3348,-1.62347 1.0044,-2.14147 0.6696,-0.53062 1.57925,-0.79593 2.72895,-0.79594 0.58116,10e-6 1.13706,0.0569 1.66769,0.17056 0.53062,0.10108 0.92859,0.20215 1.19392,0.30321 l -0.41693,1.8572 c -0.25268,-0.1137 -0.57485,-0.21477 -0.9665,-0.30321 -0.39166,-0.10107 -0.84648,-0.1516 -1.36447,-0.15161 -0.46747,1e-5 -0.84649,0.0821 -1.13706,0.24636 -0.29059,0.15162 -0.43588,0.39166 -0.43588,0.72014 0,0.16425 0.0253,0.30954 0.0758,0.43587 0.0632,0.12635 0.16424,0.24637 0.30321,0.36007 0.13897,0.10108 0.32217,0.20847 0.54958,0.32217 0.22741,0.10108 0.50536,0.20847 0.83385,0.32217 0.54326,0.20215 1.0044,0.40429 1.38342,0.60643 0.37902,0.18952 0.68855,0.41061 0.9286,0.66329 0.25268,0.24005 0.43587,0.518 0.54958,0.83384 0.1137,0.31586 0.17055,0.69488 0.17056,1.13706 -1e-5,0.94756 -0.35376,1.6677 -1.06126,2.16042 -0.69487,0.48009 -1.69296,0.72014 -2.99426,0.72014 -0.87175,0 -1.57294,-0.0758 -2.10356,-0.22741 -0.53063,-0.13898 -0.90334,-0.25268 -1.11811,-0.34112 l 0.39797,-1.91405 c 0.34112,0.13897 0.7454,0.27163 1.21286,0.39797 0.48009,0.12634 1.02336,0.18951 1.62979,0.18951"
id="path3356"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 300.84297,-352.55739 c -10e-6,1.01072 0.24004,1.80666 0.72014,2.38783 0.48009,0.56853 1.14337,0.85279 1.98986,0.85279 0.36638,0 0.67591,-0.0126 0.9286,-0.0379 0.2653,-0.0379 0.48008,-0.0758 0.64433,-0.11371 l 0,-5.6853 c -0.20215,-0.13897 -0.47378,-0.26531 -0.81489,-0.37902 -0.32849,-0.12634 -0.68225,-0.18951 -1.06126,-0.18952 -0.83385,10e-6 -1.4466,0.28428 -1.83825,0.8528 -0.37903,0.56854 -0.56854,1.33921 -0.56853,2.31203 m 6.57601,4.6809 c -0.45484,0.13898 -1.02969,0.26532 -1.72455,0.37902 -0.68224,0.11371 -1.40238,0.17056 -2.16042,0.17056 -0.78331,0 -1.4845,-0.12002 -2.10356,-0.36007 -0.61907,-0.24004 -1.1497,-0.58116 -1.59189,-1.02335 -0.42955,-0.45483 -0.76436,-0.99809 -1.0044,-1.62979 -0.22741,-0.64433 -0.34112,-1.36447 -0.34112,-2.16042 0,-0.7833 0.0947,-1.49081 0.28427,-2.12252 0.20214,-0.64432 0.49272,-1.1939 0.87174,-1.64873 0.37902,-0.45482 0.84016,-0.80226 1.38343,-1.04231 0.54326,-0.25267 1.16864,-0.37901 1.87615,-0.37902 0.48009,1e-5 0.90333,0.0569 1.26972,0.17056 0.36638,0.11371 0.68223,0.24005 0.94755,0.37902 l 0,-4.75671 2.29308,-0.37902 0,14.40278"
id="path3358"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 314.31152,-354.37669 c 0.36638,0 0.72645,-0.0316 1.08021,-0.0948 0.35375,-0.0758 0.65696,-0.18318 0.90965,-0.32216 0.0126,-0.13897 0.0189,-0.25899 0.019,-0.36007 -10e-6,-0.10107 -10e-6,-0.18951 0,-0.26532 -10e-6,-0.50535 -0.0379,-0.97913 -0.1137,-1.42133 -0.0632,-0.45481 -0.1832,-0.84646 -0.36007,-1.17496 -0.16425,-0.34111 -0.39798,-0.60642 -0.70119,-0.79594 -0.29059,-0.20214 -0.65698,-0.30321 -1.09916,-0.30322 -0.36639,10e-6 -0.68224,0.0758 -0.94755,0.22741 -0.25269,0.15162 -0.46115,0.34745 -0.62539,0.58748 -0.16424,0.24006 -0.28427,0.49906 -0.36007,0.777 -0.0758,0.27796 -0.11371,0.54959 -0.1137,0.81489 -10e-6,0.77068 0.18319,1.35185 0.54958,1.7435 0.37901,0.39166 0.9665,0.58748 1.76244,0.58748 m 1.80035,1.38342 c -0.30322,0.13898 -0.63802,0.24637 -1.0044,0.32217 -0.3664,0.0758 -0.72015,0.11371 -1.06126,0.11371 -0.78332,0 -1.45292,-0.10107 -2.00881,-0.30322 -0.54327,-0.21477 -0.99177,-0.50535 -1.34552,-0.87175 -0.34112,-0.37901 -0.5938,-0.81488 -0.75804,-1.30762 -0.16425,-0.49272 -0.24637,-1.02335 -0.24637,-1.59188 0,-0.49272 0.0821,-0.99176 0.24637,-1.49714 0.16424,-0.51798 0.42323,-0.99175 0.77699,-1.42132 0.35375,-0.42955 0.80226,-0.77698 1.34552,-1.04231 0.54326,-0.27793 1.18759,-0.41691 1.93301,-0.41692 1.54134,10e-6 2.70367,0.49905 3.48698,1.49713 0.79594,0.98546 1.19391,2.38152 1.19392,4.18818 -10e-6,2.55207 -0.65698,4.48508 -1.97091,5.79901 -1.31394,1.31394 -3.32907,1.97723 -6.04538,1.98986 l -0.0948,-1.91405 c 0.75804,0 1.44027,-0.0632 2.04671,-0.18951 0.61906,-0.12634 1.15601,-0.32849 1.61084,-0.60644 0.46745,-0.27794 0.8591,-0.63801 1.17496,-1.08021 0.31585,-0.45482 0.55589,-1.01071 0.72014,-1.66769"
id="path3360"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 323.68014,-348.82404 c 0,0.44219 -0.15161,0.80226 -0.45482,1.08021 -0.29059,0.27795 -0.64434,0.41692 -1.06126,0.41692 -0.42956,0 -0.78963,-0.13897 -1.08021,-0.41692 -0.29058,-0.27795 -0.43587,-0.63802 -0.43587,-1.08021 0,-0.44219 0.14529,-0.80226 0.43587,-1.08021 0.29058,-0.29058 0.65065,-0.43587 1.08021,-0.43587 0.41692,0 0.77067,0.14529 1.06126,0.43587 0.30321,0.27795 0.45482,0.63802 0.45482,1.08021"
id="path3362"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 328.71401,-348.82404 c 0,0.44219 -0.15161,0.80226 -0.45482,1.08021 -0.29059,0.27795 -0.64434,0.41692 -1.06126,0.41692 -0.42956,0 -0.78963,-0.13897 -1.08021,-0.41692 -0.29058,-0.27795 -0.43588,-0.63802 -0.43587,-1.08021 -10e-6,-0.44219 0.14529,-0.80226 0.43587,-1.08021 0.29058,-0.29058 0.65065,-0.43587 1.08021,-0.43587 0.41692,0 0.77067,0.14529 1.06126,0.43587 0.30321,0.27795 0.45482,0.63802 0.45482,1.08021"
id="path3364"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3833"
style="font-size:32.00692368px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 273.39678,-388.15405 c -1.60036,-3.45675 -3.14736,-7.07353 -4.64101,-10.85035 -1.47232,-3.7768 -2.84861,-7.55362 -4.12889,-11.33045 l 4.44896,0 c 0.51211,1.49368 1.03489,3.01934 1.56834,4.57699 0.53344,1.55769 1.06689,3.09402 1.60035,4.609 0.53344,1.49366 1.06689,2.94464 1.60034,4.35294 0.53344,1.40831 1.05622,2.69925 1.56834,3.87284 0.49077,-1.17359 1.00288,-2.45386 1.53634,-3.84084 0.53343,-1.40829 1.06688,-2.86994 1.60034,-4.38494 0.55477,-1.51498 1.09889,-3.05131 1.63236,-4.609 0.53343,-1.55765 1.04554,-3.08331 1.53633,-4.57699 l 4.32093,0 c -1.30163,3.77683 -2.6886,7.55365 -4.1609,11.33045 -1.47233,3.77682 -3.00866,7.3936 -4.60899,10.85035 l -3.87284,0"
id="path3345" />
<path
d="m 302.6361,-396.53987 c -10e-6,1.32296 -0.19206,2.52856 -0.57612,3.61679 -0.3841,1.08823 -0.92822,2.01643 -1.63235,2.7846 -0.70417,0.76817 -1.55769,1.36563 -2.56056,1.79239 -0.98156,0.42675 -2.06979,0.64013 -3.2647,0.64013 -1.19494,0 -2.28317,-0.21338 -3.26471,-0.64013 -0.98155,-0.42676 -1.8244,-1.02422 -2.52855,-1.79239 -0.70415,-0.76817 -1.25894,-1.69637 -1.66436,-2.7846 -0.38408,-1.08823 -0.57612,-2.29383 -0.57612,-3.61679 0,-1.32294 0.19204,-2.51786 0.57612,-3.58477 0.40542,-1.08822 0.96021,-2.01642 1.66436,-2.7846 0.72549,-0.76816 1.57901,-1.35495 2.56056,-1.76039 0.98153,-0.42674 2.0591,-0.64012 3.2327,-0.64013 1.17357,10e-6 2.25114,0.21339 3.23269,0.64013 1.00287,0.40544 1.85639,0.99223 2.56056,1.76039 0.70413,0.76818 1.24825,1.69638 1.63235,2.7846 0.40541,1.06691 0.60812,2.26183 0.60813,3.58477 m -3.96886,0 c -10e-6,-1.66435 -0.36275,-2.97663 -1.08823,-3.93685 -0.70416,-0.98153 -1.69638,-1.4723 -2.97664,-1.47232 -1.28029,2e-5 -2.28317,0.49079 -3.00866,1.47232 -0.70415,0.96022 -1.05623,2.2725 -1.05622,3.93685 -10e-6,1.68571 0.35207,3.01933 1.05622,4.00087 0.72549,0.98155 1.72837,1.47232 3.00866,1.47232 1.28026,0 2.27248,-0.49077 2.97664,-1.47232 0.72548,-0.98154 1.08822,-2.31516 1.08823,-4.00087"
id="path3347" />
<path
d="m 320.35693,-388.66616 c -0.74684,0.19204 -1.71772,0.38408 -2.91263,0.57612 -1.19493,0.21338 -2.50722,0.32007 -3.93685,0.32007 -1.3443,0 -2.47521,-0.19204 -3.39273,-0.57612 -0.8962,-0.38409 -1.62169,-0.91753 -2.17647,-1.60035 -0.53345,-0.68281 -0.91754,-1.49365 -1.15225,-2.43253 -0.23472,-0.9602 -0.35208,-2.00576 -0.35208,-3.13668 l 0,-9.37802 3.87284,0 0,8.76989 c -10e-6,1.7924 0.25605,3.07267 0.76817,3.84083 0.53344,0.76817 1.45097,1.15226 2.75259,1.15225 0.46943,10e-6 0.9602,-0.0213 1.47232,-0.064 0.53344,-0.0427 0.92819,-0.096 1.18426,-0.16004 l 0,-13.53892 3.87283,0 0,16.22751"
id="path3349" />
<path
d="m 329.51041,-390.93866 c 1.02422,1e-5 1.77105,-0.11735 2.24049,-0.35207 0.46942,-0.25605 0.70414,-0.68281 0.70415,-1.28028 -1e-5,-0.55478 -0.25606,-1.01355 -0.76817,-1.3763 -0.49078,-0.36273 -1.31229,-0.75749 -2.46453,-1.18425 -0.70416,-0.25605 -1.35496,-0.52277 -1.95242,-0.80018 -0.57613,-0.29872 -1.07757,-0.64013 -1.50433,-1.02422 -0.42676,-0.38407 -0.76816,-0.84284 -1.02422,-1.37629 -0.23472,-0.55478 -0.35208,-1.22693 -0.35207,-2.01644 -1e-5,-1.53632 0.56545,-2.74191 1.69636,-3.61678 1.13091,-0.89618 2.66724,-1.34428 4.609,-1.34429 0.98154,10e-6 1.92041,0.096 2.81661,0.28806 0.89618,0.17072 1.56833,0.34142 2.01644,0.51211 l -0.70416,3.13668 c -0.42677,-0.19203 -0.97088,-0.36273 -1.63235,-0.51211 -0.66149,-0.17069 -1.42965,-0.25604 -2.3045,-0.25606 -0.78951,2e-5 -1.42965,0.13871 -1.92041,0.41609 -0.49078,0.25607 -0.73617,0.66149 -0.73616,1.21626 -1e-5,0.27741 0.0427,0.5228 0.12802,0.73616 0.10669,0.21339 0.27739,0.41611 0.51212,0.60814 0.23471,0.17071 0.54411,0.35208 0.9282,0.54411 0.38407,0.17072 0.85351,0.35209 1.4083,0.54412 0.91752,0.34142 1.69636,0.68282 2.33651,1.02422 0.64012,0.32008 1.1629,0.69349 1.56834,1.12024 0.42674,0.40543 0.73614,0.87487 0.9282,1.40831 0.19202,0.53345 0.28805,1.17359 0.28806,1.92041 -1e-5,1.60035 -0.59748,2.81662 -1.79239,3.64879 -1.1736,0.81085 -2.85929,1.21627 -5.05709,1.21627 -1.47233,0 -2.65658,-0.12803 -3.55277,-0.38409 -0.8962,-0.23471 -1.52567,-0.42675 -1.88841,-0.57612 l 0.67215,-3.2327 c 0.57612,0.23472 1.25893,0.45877 2.04844,0.67215 0.81084,0.21338 1.72837,0.32007 2.75259,0.32006"
id="path3351" />
</g>
<path
d="m 118.92083,-348.8031 15.67311,0 c 1.62665,0 2.9362,1.30955 2.9362,2.93621 l 0,14.07714 c 0,1.62666 -1.30955,2.93621 -2.9362,2.93621 l -15.67311,0 c -1.62665,0 -2.9362,-1.30955 -2.9362,-2.93621 l 0,-14.07714 c 0,-1.62666 1.30955,-2.93621 2.9362,-2.93621 z"
id="rect3775-6-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text3777-0-0"
style="font-size:17.0636425px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
<path
d="m 144.04467,-342.51738 c 0.65979,-0.26164 1.31958,-0.59722 1.97938,-1.00676 0.67117,-0.40952 1.26271,-0.89299 1.77462,-1.45041 l 1.45041,0 0,11.82511 -2.0647,0 0,-9.0608 c -0.30715,0.2389 -0.69393,0.4721 -1.16033,0.69961 -0.46641,0.22752 -0.91575,0.41522 -1.34803,0.5631 l -0.63135,-1.56985"
id="path3331"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 155.14217,-337.56893 c 0,0.86456 0.17063,1.5528 0.51191,2.0647 0.35264,0.51191 0.90437,0.76787 1.65517,0.76787 0.34127,0 0.65979,-0.0512 0.95557,-0.15358 0.30714,-0.11375 0.55171,-0.2332 0.73373,-0.35833 l 0,-5.10203 c -0.14789,-0.0341 -0.33559,-0.0626 -0.5631,-0.0853 -0.21614,-0.0341 -0.50054,-0.0512 -0.85318,-0.0512 -0.76218,1e-5 -1.35941,0.26165 -1.79168,0.78493 -0.43228,0.51191 -0.64842,1.2229 -0.64842,2.13295 m -2.11589,-0.0341 c 0,-0.70529 0.10238,-1.34233 0.30714,-1.91112 0.21614,-0.58016 0.5176,-1.06932 0.90438,-1.46748 0.39815,-0.40952 0.87593,-0.72235 1.43334,-0.9385 0.55741,-0.2275 1.18876,-0.34126 1.89407,-0.34127 0.70529,1e-5 1.36508,0.0512 1.97938,0.15357 0.61428,0.10239 1.1205,0.21046 1.51866,0.32421 l 0,11.79098 -2.0647,0 0,-3.46392 c -0.23889,0.12513 -0.53466,0.23889 -0.88731,0.34127 -0.34128,0.10238 -0.72236,0.15358 -1.14326,0.15358 -0.63705,0 -1.20015,-0.10807 -1.6893,-0.32421 -0.48916,-0.22752 -0.89869,-0.54604 -1.22858,-0.95557 -0.3299,-0.40952 -0.58586,-0.89868 -0.76787,-1.46747 -0.17063,-0.56879 -0.25595,-1.20014 -0.25595,-1.89407"
id="path3333"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 172.03011,-344.97455 0,1.85994 -3.63455,0 0,9.96517 -2.16709,0 0,-9.96517 -3.63455,0 0,-1.85994 9.43619,0"
id="path3335"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 180.30464,-333.42246 c -0.39816,0.10238 -0.91575,0.20476 -1.55279,0.30714 -0.63705,0.11376 -1.33666,0.17064 -2.09883,0.17064 -0.71667,0 -1.31959,-0.10238 -1.80874,-0.30715 -0.47779,-0.20476 -0.86456,-0.48915 -1.16033,-0.85318 -0.2844,-0.36402 -0.48916,-0.7963 -0.61429,-1.29684 -0.12514,-0.5119 -0.1877,-1.06931 -0.1877,-1.67223 l 0,-4.99965 2.0647,0 0,4.67544 c 0,0.95557 0.13651,1.63811 0.40953,2.04764 0.28439,0.40952 0.77354,0.61429 1.46747,0.61429 0.25026,0 0.5119,-0.0114 0.78493,-0.0341 0.28439,-0.0228 0.49484,-0.0512 0.63135,-0.0853 l 0,-7.21792 2.0647,0 0,8.65127"
id="path3337"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 185.2699,-334.27564 c -1e-5,0.39815 -0.13652,0.72236 -0.40953,0.97262 -0.26165,0.25027 -0.58017,0.3754 -0.95556,0.3754 -0.38678,0 -0.71099,-0.12513 -0.97263,-0.3754 -0.26165,-0.25026 -0.39247,-0.57447 -0.39247,-0.97262 0,-0.39816 0.13082,-0.72236 0.39247,-0.97263 0.26164,-0.26164 0.58585,-0.39246 0.97263,-0.39247 0.37539,10e-6 0.69391,0.13083 0.95556,0.39247 0.27301,0.25027 0.40952,0.57447 0.40953,0.97263"
id="path3339"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 189.80243,-334.27564 c -10e-6,0.39815 -0.13652,0.72236 -0.40953,0.97262 -0.26165,0.25027 -0.58017,0.3754 -0.95557,0.3754 -0.38677,0 -0.71098,-0.12513 -0.97262,-0.3754 -0.26165,-0.25026 -0.39247,-0.57447 -0.39247,-0.97262 0,-0.39816 0.13082,-0.72236 0.39247,-0.97263 0.26164,-0.26164 0.58585,-0.39246 0.97262,-0.39247 0.3754,10e-6 0.69392,0.13083 0.95557,0.39247 0.27301,0.25027 0.40952,0.57447 0.40953,0.97263"
id="path3341"
style="font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text3864-0"
style="font-size:17.95130157px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 126.42454,-343.16242 c -0.41887,10e-6 -0.81978,0.0539 -1.20274,0.16156 -0.38296,0.0958 -0.78387,0.25731 -1.20274,0.48468 l -0.61034,-1.66947 c 0.4428,-0.2513 0.94543,-0.44877 1.50791,-0.59239 0.57444,-0.15557 1.16085,-0.23336 1.75923,-0.23337 0.71804,1e-5 1.31044,0.10174 1.77717,0.30517 0.46673,0.1915 0.83773,0.43683 1.11299,0.73601 0.27524,0.2992 0.46672,0.6283 0.57444,0.98732 0.1077,0.35904 0.16155,0.70609 0.16156,1.04117 -1e-5,0.40691 -0.0778,0.77192 -0.23337,1.09503 -0.14362,0.32314 -0.32911,0.62232 -0.55649,0.89757 -0.22739,0.27526 -0.47272,0.53854 -0.736,0.78986 -0.26329,0.23935 -0.50863,0.49067 -0.73601,0.75395 -0.22738,0.25132 -0.41886,0.52059 -0.57444,0.80781 -0.14361,0.28723 -0.21542,0.61035 -0.21541,0.96937 -10e-6,0.0598 -10e-6,0.13165 0,0.21542 -10e-6,0.0718 0.006,0.14361 0.0179,0.21541 l -1.86694,0 c -0.0239,-0.11967 -0.0419,-0.24533 -0.0538,-0.37698 -0.012,-0.1436 -0.0179,-0.27525 -0.0179,-0.39493 0,-0.39492 0.0658,-0.74796 0.19746,-1.05912 0.13164,-0.31115 0.29919,-0.59837 0.50264,-0.86166 0.20344,-0.26328 0.41886,-0.50862 0.64625,-0.73601 0.23934,-0.22737 0.46074,-0.45476 0.66419,-0.68215 0.20345,-0.22737 0.37099,-0.46074 0.50264,-0.7001 0.13164,-0.23934 0.19746,-0.50263 0.19746,-0.78986 0,-0.39491 -0.13763,-0.71804 -0.41288,-0.96937 -0.26329,-0.26327 -0.6642,-0.39491 -1.20273,-0.39492 m 1.4002,9.6937 c -10e-6,0.41886 -0.13763,0.75994 -0.41288,1.02322 -0.27526,0.26329 -0.61633,0.39493 -1.02323,0.39493 -0.39493,0 -0.736,-0.13164 -1.02322,-0.39493 -0.27525,-0.26328 -0.41288,-0.60436 -0.41288,-1.02322 0,-0.41886 0.13763,-0.75994 0.41288,-1.02323 0.28722,-0.27525 0.62829,-0.41287 1.02322,-0.41288 0.4069,1e-5 0.74797,0.13763 1.02323,0.41288 0.27525,0.26329 0.41287,0.60437 0.41288,1.02323"
id="path3328" />
</g>
<path
d="m 104.82307,-245.57314 130.20224,0 0,99.35681 -130.20224,0 z"
id="rect3910"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.0257926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 88.690819,-266.22968 33.767711,0 0,23.37765 -33.767711,0 z"
id="rect3968"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3.87819695;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 115.96473,-263.77639 c 0,0 1.24424,-10.1674 -1.58722,-13.85341 -1.92085,-2.5006 -5.65434,-3.63735 -8.8027,-3.46334 -3.17066,0.17627 -7.054686,0.6029 -9.235624,4.76209 -1.914218,3.65056 -1.587438,11.97743 -1.587438,11.97743 z"
id="path3970"
style="fill:none;stroke:#000000;stroke-width:7.11002731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 222.41246,-260.36218 25.36059,0 0,17.55733 -25.36059,0 z"
id="rect3968-6"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.91264534;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 242.89602,-258.51973 c 0,0 0.93464,-7.63604 -1.19232,-10.40438 -1.44285,-1.87813 -4.24657,-2.73178 -6.61107,-2.60105 -2.38129,0.13126 -5.29829,0.45288 -6.93625,3.57648 -1.43779,2.74169 -1.19231,8.99543 -1.19231,8.99543 z"
id="path3970-8"
style="fill:none;stroke:#000000;stroke-width:5.33984947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 356.39804,-255.07762 18.34917,0 0,12.70327 -18.34917,0 z"
id="rect3968-3"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.10738802;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 371.2186,-253.74451 c 0,0 0.67585,-5.52488 -0.86246,-7.52785 -1.04397,-1.35903 -3.07251,-1.97647 -4.78329,-1.88194 -1.72283,0.0937 -3.83352,0.32781 -5.01861,2.5877 -1.04022,1.98375 -0.86244,6.50848 -0.86244,6.50848 z"
id="path3970-1"
style="fill:none;stroke:#000000;stroke-width:3.86354518;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<text
x="6.6307654"
y="18.827772"
id="text4015"
xml:space="preserve"
style="font-size:4px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="6.6307654"
y="18.827772"
id="tspan4017" /></text>
<g
id="text4023"
style="font-size:15.00236607px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 246.641,-212.31317 c 0.58009,-0.23003 1.16018,-0.52508 1.74027,-0.88514 0.59009,-0.36005 1.11018,-0.78512 1.56025,-1.2752 l 1.2752,0 0,10.39664 -1.81528,0 0,-7.96626 c -0.27005,0.21004 -0.6101,0.41507 -1.02017,0.6151 -0.41006,0.20004 -0.80513,0.36506 -1.18518,0.49507 l -0.55509,-1.38021"
id="path3295" />
<path
d="m 257.79315,-209.35771 1.66526,-2.5654 1.9053,0 -2.5804,3.70558 c 0.54007,0.70012 1.05516,1.41023 1.54524,2.13034 0.50007,0.71011 0.91014,1.38022 1.23019,2.01032 l -1.96531,0 c -0.09,-0.19003 -0.21004,-0.40507 -0.36005,-0.64511 -0.14003,-0.25003 -0.29506,-0.50507 -0.46508,-0.76512 -0.16003,-0.27004 -0.33005,-0.53508 -0.51008,-0.79512 -0.18003,-0.26004 -0.35506,-0.50508 -0.52508,-0.73512 -0.35006,0.45008 -0.69511,0.95015 -1.03516,1.50024 -0.33006,0.54009 -0.6051,1.02016 -0.82513,1.44023 l -1.8603,0 c 0.15003,-0.30005 0.33005,-0.6201 0.54009,-0.96016 0.21003,-0.34005 0.43507,-0.6851 0.6751,-1.03516 0.24004,-0.36005 0.48508,-0.71511 0.73512,-1.06517 0.26004,-0.36005 0.51508,-0.7001 0.76512,-1.02016 l -2.59541,-3.76559 1.99532,0 1.66526,2.5654"
id="path3297" />
<path
d="m 266.81403,-212.23816 c -0.24005,0.29005 -0.49009,0.6001 -0.75012,0.93015 -0.25005,0.33005 -0.49508,0.67511 -0.73512,1.03516 -0.24004,0.36006 -0.47008,0.73012 -0.69011,1.11017 -0.22003,0.37007 -0.42007,0.74013 -0.60009,1.11018 l 2.77544,0 0,-4.18566 m 1.77027,-2.23535 0,6.42101 1.17019,0 0,1.48523 -1.17019,0 0,2.4904 -1.77027,0 0,-2.4904 -4.56072,0 0,-1.2902 c 0.20003,-0.44007 0.46507,-0.94514 0.79512,-1.51524 0.34005,-0.57008 0.71511,-1.15517 1.12518,-1.75528 0.41006,-0.60008 0.84513,-1.19018 1.30521,-1.77028 0.46006,-0.58008 0.92014,-1.10516 1.38021,-1.57524 l 1.72527,0"
id="path3299" />
<path
d="m 271.53016,-204.07687 0,-10.39664 6.57103,0 0,1.60525 -4.68073,0 0,2.65542 4.15565,0 0,1.60525 -4.15565,0 0,4.53072 -1.8903,0"
id="path3301" />
<path
d="m 280.77654,-205.06703 c 0,0.35006 -0.12002,0.6351 -0.36006,0.85513 -0.23004,0.22004 -0.51008,0.33006 -0.84013,0.33006 -0.34005,0 -0.6251,-0.11002 -0.85513,-0.33006 -0.23004,-0.22003 -0.34506,-0.50507 -0.34506,-0.85513 0,-0.35005 0.11502,-0.6351 0.34506,-0.85513 0.23003,-0.23004 0.51508,-0.34506 0.85513,-0.34506 0.33005,0 0.61009,0.11502 0.84013,0.34506 0.24004,0.22003 0.36006,0.50508 0.36006,0.85513"
id="path3303" />
<path
d="m 284.76154,-205.06703 c 0,0.35006 -0.12002,0.6351 -0.36005,0.85513 -0.23004,0.22004 -0.51009,0.33006 -0.84014,0.33006 -0.34005,0 -0.6251,-0.11002 -0.85513,-0.33006 -0.23004,-0.22003 -0.34506,-0.50507 -0.34505,-0.85513 -1e-5,-0.35005 0.11501,-0.6351 0.34505,-0.85513 0.23003,-0.23004 0.51508,-0.34506 0.85513,-0.34506 0.33005,0 0.6101,0.11502 0.84014,0.34506 0.24003,0.22003 0.36005,0.50508 0.36005,0.85513"
id="path3305" />
<path
d="m 285.8961,-209.19268 4.03563,0 0,1.66526 -4.03563,0 0,-1.66526"
id="path3307" />
<path
d="m 298.0098,-207.58743 -6.46602,2.73043 -0.49508,-1.48523 5.0258,-2.01032 -5.0258,-2.01032 0.49508,-1.48523 6.46602,2.73043 0,1.53024"
id="path3309" />
<path
d="m 300.14553,-212.31317 c 0.58009,-0.23003 1.16018,-0.52508 1.74028,-0.88514 0.59009,-0.36005 1.11017,-0.78512 1.56024,-1.2752 l 1.2752,0 0,10.39664 -1.81528,0 0,-7.96626 c -0.27005,0.21004 -0.6101,0.41507 -1.02016,0.6151 -0.41007,0.20004 -0.80513,0.36506 -1.18519,0.49507 l -0.55509,-1.38021"
id="path3311" />
<path
d="m 313.68306,-207.96249 c -1e-5,-0.81012 -0.18504,-1.44022 -0.55509,-1.89029 -0.36006,-0.45007 -0.94516,-0.6751 -1.75528,-0.67511 -0.17003,1e-5 -0.35006,0.01 -0.54008,0.03 -0.18004,0.01 -0.36006,0.04 -0.54009,0.09 l 0,4.48571 c 0.16002,0.11001 0.37006,0.21503 0.6301,0.31504 0.27004,0.09 0.55508,0.13503 0.85513,0.13503 0.6601,0 1.14018,-0.22504 1.44023,-0.67511 0.31004,-0.45007 0.46507,-1.05516 0.46508,-1.81529 m 1.86029,-0.03 c -10e-6,0.6001 -0.08,1.15018 -0.24004,1.65026 -0.15003,0.50008 -0.37007,0.93015 -0.6601,1.2902 -0.29006,0.36006 -0.65511,0.6401 -1.09518,0.84013 -0.43007,0.20004 -0.92015,0.30005 -1.47023,0.30005 -0.37006,0 -0.71011,-0.045 -1.02016,-0.13502 -0.31005,-0.09 -0.56509,-0.19003 -0.76512,-0.30005 l 0,3.04548 -1.81529,0 0,-10.36663 c 0.37006,-0.10001 0.82513,-0.19502 1.36522,-0.28505 0.54008,-0.09 1.11017,-0.13501 1.71027,-0.13502 0.62009,10e-6 1.17518,0.095 1.66526,0.28505 0.49007,0.19004 0.90514,0.46508 1.2452,0.82513 0.35005,0.35006 0.61509,0.78013 0.79512,1.2902 0.19003,0.50009 0.28504,1.06517 0.28505,1.69527"
id="path3313" />
<path
d="m 320.99976,-209.86779 c 0.45006,-0.75011 0.89013,-1.51023 1.32021,-2.28036 0.43006,-0.77011 0.82012,-1.54523 1.17018,-2.32536 l 2.10033,0 c -0.5601,1.06017 -1.14519,2.11534 -1.75527,3.1655 -0.60011,1.04017 -1.24521,2.09033 -1.93531,3.15049 l 0,4.08065 -1.8903,0 0,-4.05064 c -0.69011,-1.07017 -1.34021,-2.13033 -1.95031,-3.1805 -0.61009,-1.05016 -1.19518,-2.10533 -1.75527,-3.1655 l 2.22035,0 c 0.35005,0.78013 0.73511,1.55525 1.15518,2.32536 0.42006,0.77013 0.86013,1.53025 1.32021,2.28036"
id="path3315" />
<path
d="m 329.17605,-203.85184 c -0.27005,0 -0.55009,-0.02 -0.84013,-0.06 -0.28005,-0.03 -0.55009,-0.075 -0.81013,-0.13502 -0.25004,-0.05 -0.48008,-0.10502 -0.69011,-0.16503 -0.21003,-0.07 -0.37006,-0.13502 -0.48008,-0.19503 l 0.36006,-1.54524 c 0.21003,0.10002 0.51508,0.21504 0.91515,0.34505 0.40006,0.12003 0.89513,0.18003 1.48523,0.18003 0.79012,0 1.36021,-0.15002 1.71027,-0.45007 0.35005,-0.31004 0.52508,-0.72011 0.52508,-1.23019 0,-0.33005 -0.07,-0.60509 -0.21003,-0.82513 -0.13003,-0.22003 -0.31506,-0.39506 -0.55509,-0.52508 -0.23004,-0.14002 -0.50008,-0.23504 -0.81013,-0.28505 -0.30005,-0.06 -0.6201,-0.09 -0.96015,-0.09 l -0.61509,0 0,-1.47024 0.75011,0 c 0.23004,1e-5 0.46007,-0.02 0.69011,-0.06 0.24004,-0.05 0.45507,-0.13001 0.6451,-0.24003 0.19003,-0.12002 0.34505,-0.27504 0.46508,-0.46508 0.12001,-0.19002 0.18002,-0.43506 0.18003,-0.73511 -10e-6,-0.24003 -0.045,-0.44506 -0.13503,-0.6151 -0.09,-0.17002 -0.21003,-0.31004 -0.36005,-0.42007 -0.14003,-0.11 -0.30506,-0.19002 -0.49508,-0.24003 -0.19003,-0.05 -0.39007,-0.075 -0.6001,-0.075 -0.45007,10e-6 -0.85013,0.07 -1.20018,0.21004 -0.35006,0.13003 -0.66011,0.28005 -0.93015,0.45007 l -0.66011,-1.35021 c 0.14003,-0.09 0.31005,-0.18502 0.51009,-0.28505 0.20003,-0.1 0.42006,-0.19502 0.6601,-0.28504 0.25004,-0.09 0.51508,-0.16002 0.79512,-0.21004 0.28005,-0.06 0.57509,-0.09 0.88514,-0.09 0.58009,1e-5 1.08017,0.07 1.50024,0.21003 0.42006,0.14003 0.76512,0.34007 1.03516,0.6001 0.28004,0.25005 0.48507,0.55009 0.6151,0.90014 0.14002,0.34006 0.21003,0.71512 0.21003,1.12518 0,0.48008 -0.13502,0.91015 -0.40506,1.2902 -0.26005,0.38007 -0.6001,0.67011 -1.02016,0.87014 0.54008,0.19003 0.98515,0.50508 1.33521,0.94515 0.36005,0.44007 0.54008,1.00516 0.54009,1.69526 -10e-6,0.46008 -0.08,0.89015 -0.24004,1.29021 -0.16003,0.39006 -0.40507,0.73011 -0.73512,1.02016 -0.33006,0.28004 -0.75012,0.50508 -1.2602,0.6751 -0.50008,0.16003 -1.10018,0.24004 -1.80028,0.24004"
id="path3317" />
<path
d="m 337.35773,-205.06703 c -1e-5,0.35006 -0.12002,0.6351 -0.36006,0.85513 -0.23004,0.22004 -0.51008,0.33006 -0.84013,0.33006 -0.34006,0 -0.6251,-0.11002 -0.85514,-0.33006 -0.23003,-0.22003 -0.34505,-0.50507 -0.34505,-0.85513 0,-0.35005 0.11502,-0.6351 0.34505,-0.85513 0.23004,-0.23004 0.51508,-0.34506 0.85514,-0.34506 0.33005,0 0.61009,0.11502 0.84013,0.34506 0.24004,0.22003 0.36005,0.50508 0.36006,0.85513"
id="path3319" />
<path
d="m 341.34273,-205.06703 c 0,0.35006 -0.12002,0.6351 -0.36006,0.85513 -0.23004,0.22004 -0.51008,0.33006 -0.84013,0.33006 -0.34006,0 -0.6251,-0.11002 -0.85514,-0.33006 -0.23003,-0.22003 -0.34505,-0.50507 -0.34505,-0.85513 0,-0.35005 0.11502,-0.6351 0.34505,-0.85513 0.23004,-0.23004 0.51508,-0.34506 0.85514,-0.34506 0.33005,0 0.61009,0.11502 0.84013,0.34506 0.24004,0.22003 0.36006,0.50508 0.36006,0.85513"
id="path3321" />
</g>
<g
id="text4048"
style="font-size:15.00236511px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 253.28121,-228.76415 c -10e-6,0.36006 -0.075,0.71011 -0.22504,1.05016 -0.14003,0.33006 -0.33006,0.66011 -0.57009,0.99016 -0.24004,0.32005 -0.51009,0.6401 -0.81013,0.96015 -0.30005,0.31005 -0.6001,0.6151 -0.90014,0.91514 -0.17003,0.17003 -0.37006,0.37006 -0.60009,0.6001 -0.22004,0.23004 -0.43008,0.47007 -0.6301,0.72011 -0.20004,0.25004 -0.37006,0.49008 -0.51008,0.72011 -0.13003,0.23004 -0.19504,0.43007 -0.19503,0.6001 l 4.78575,0 0,1.18519 -6.30099,0 c -0.01,-0.06 -0.015,-0.12002 -0.015,-0.18003 0,-0.06 0,-0.11502 0,-0.16503 0,-0.47007 0.075,-0.90514 0.22504,-1.3052 0.16002,-0.41007 0.36506,-0.79513 0.6151,-1.15519 0.25003,-0.36005 0.53008,-0.7001 0.84013,-1.02016 0.31004,-0.32004 0.61509,-0.63009 0.91514,-0.93014 0.25004,-0.24004 0.48508,-0.47507 0.70511,-0.70511 0.23004,-0.24004 0.43007,-0.47507 0.6001,-0.70512 0.18002,-0.24003 0.32004,-0.48507 0.42007,-0.73511 0.11001,-0.25003 0.16502,-0.51508 0.16502,-0.79513 0,-0.30004 -0.05,-0.55508 -0.15002,-0.76512 -0.09,-0.21002 -0.21504,-0.38505 -0.37506,-0.52508 -0.16003,-0.14001 -0.35006,-0.24003 -0.57009,-0.30005 -0.21004,-0.07 -0.43507,-0.10501 -0.67511,-0.10501 -0.29005,0 -0.55509,0.04 -0.79512,0.12001 -0.24004,0.08 -0.45508,0.17504 -0.64511,0.28505 -0.19003,0.10002 -0.35005,0.21004 -0.48007,0.33005 -0.13002,0.11003 -0.23004,0.19504 -0.30005,0.25504 l -0.69011,-0.99015 c 0.09,-0.10001 0.22504,-0.22003 0.40507,-0.36006 0.18002,-0.15002 0.39506,-0.29004 0.6451,-0.42007 0.25004,-0.13001 0.53008,-0.24002 0.84013,-0.33005 0.31005,-0.09 0.6451,-0.13501 1.00516,-0.13502 1.09017,10e-6 1.90529,0.25505 2.44539,0.76512 0.55008,0.50009 0.82512,1.2102 0.82513,2.13034"
id="path3280" />
<path
d="m 257.59368,-221.83306 c 0,0.27004 -0.09,0.50508 -0.27004,0.70511 -0.18003,0.20003 -0.42507,0.30005 -0.73512,0.30005 -0.31005,0 -0.55509,-0.10002 -0.73511,-0.30005 -0.18003,-0.20003 -0.27005,-0.43507 -0.27004,-0.70511 -1e-5,-0.27004 0.09,-0.50508 0.27004,-0.70511 0.18002,-0.20003 0.42506,-0.30005 0.73511,-0.30005 0.31005,0 0.55509,0.10002 0.73512,0.30005 0.18003,0.20003 0.27004,0.43507 0.27004,0.70511"
id="path3282" />
<path
d="m 259.18534,-226.22875 c 0,-1.74027 0.30505,-3.08048 0.91514,-4.02064 0.6201,-0.94014 1.47523,-1.41021 2.56541,-1.41022 1.09016,10e-6 1.9403,0.47008 2.5504,1.41022 0.62009,0.94016 0.93014,2.28037 0.93015,4.02064 -10e-6,1.74027 -0.31006,3.08048 -0.93015,4.02063 -0.6101,0.94015 -1.46024,1.41022 -2.5504,1.41022 -1.09018,0 -1.94531,-0.47007 -2.56541,-1.41022 -0.61009,-0.94015 -0.91514,-2.28036 -0.91514,-4.02063 m 5.49086,0 c 0,-0.57009 -0.035,-1.11017 -0.10501,-1.62026 -0.06,-0.51007 -0.17003,-0.95514 -0.33005,-1.33521 -0.15003,-0.38005 -0.35507,-0.6801 -0.6151,-0.90014 -0.26005,-0.23003 -0.5801,-0.34505 -0.96015,-0.34506 -0.38007,1e-5 -0.70012,0.11503 -0.96015,0.34506 -0.26005,0.22004 -0.47008,0.52009 -0.6301,0.90014 -0.15003,0.38007 -0.26005,0.82514 -0.33006,1.33521 -0.06,0.51009 -0.09,1.05017 -0.09,1.62026 0,0.57009 0.03,1.11017 0.09,1.62025 0.07,0.51008 0.18003,0.95515 0.33006,1.33521 0.16002,0.38006 0.37005,0.68511 0.6301,0.91515 0.26003,0.22003 0.58008,0.33005 0.96015,0.33005 0.38005,0 0.7001,-0.11002 0.96015,-0.33005 0.26003,-0.23004 0.46507,-0.53509 0.6151,-0.91515 0.16002,-0.38006 0.27003,-0.82513 0.33005,-1.33521 0.07,-0.51008 0.10501,-1.05016 0.10501,-1.62025"
id="path3284" />
<path
d="m 267.65347,-226.22875 c 0,-1.74027 0.30505,-3.08048 0.91515,-4.02064 0.62009,-0.94014 1.47522,-1.41021 2.5654,-1.41022 1.09017,10e-6 1.9403,0.47008 2.5504,1.41022 0.62009,0.94016 0.93014,2.28037 0.93015,4.02064 -1e-5,1.74027 -0.31006,3.08048 -0.93015,4.02063 -0.6101,0.94015 -1.46023,1.41022 -2.5504,1.41022 -1.09018,0 -1.94531,-0.47007 -2.5654,-1.41022 -0.6101,-0.94015 -0.91515,-2.28036 -0.91515,-4.02063 m 5.49087,0 c -10e-6,-0.57009 -0.035,-1.11017 -0.10502,-1.62026 -0.06,-0.51007 -0.17003,-0.95514 -0.33005,-1.33521 -0.15003,-0.38005 -0.35506,-0.6801 -0.6151,-0.90014 -0.26004,-0.23003 -0.58009,-0.34505 -0.96015,-0.34506 -0.38006,1e-5 -0.70011,0.11503 -0.96015,0.34506 -0.26005,0.22004 -0.47008,0.52009 -0.6301,0.90014 -0.15003,0.38007 -0.26004,0.82514 -0.33005,1.33521 -0.06,0.51009 -0.09,1.05017 -0.09,1.62026 0,0.57009 0.03,1.11017 0.09,1.62025 0.07,0.51008 0.18002,0.95515 0.33005,1.33521 0.16002,0.38006 0.37005,0.68511 0.6301,0.91515 0.26004,0.22003 0.58009,0.33005 0.96015,0.33005 0.38006,0 0.70011,-0.11002 0.96015,-0.33005 0.26004,-0.23004 0.46507,-0.53509 0.6151,-0.91515 0.16002,-0.38006 0.27003,-0.82513 0.33005,-1.33521 0.07,-0.51008 0.10501,-1.05016 0.10502,-1.62025"
id="path3286" />
<path
d="m 282.92471,-220.93292 c -0.21004,0 -0.44008,-0.005 -0.69011,-0.015 -0.24004,-0.01 -0.48508,-0.025 -0.73512,-0.045 -0.24004,-0.02 -0.48008,-0.045 -0.72011,-0.075 -0.24004,-0.03 -0.46008,-0.07 -0.66011,-0.12002 l 0,-10.08159 c 0.20003,-0.05 0.42007,-0.09 0.66011,-0.12002 0.24003,-0.03 0.48007,-0.055 0.72011,-0.075 0.25004,-0.02 0.49508,-0.035 0.73512,-0.045 0.24003,-0.01 0.46507,-0.015 0.6751,-0.015 0.60009,1e-5 1.16018,0.045 1.68027,0.13502 0.53008,0.09 0.98515,0.24505 1.36521,0.46508 0.39006,0.21004 0.6951,0.49008 0.91515,0.84013 0.22002,0.35006 0.33004,0.78013 0.33005,1.2902 -10e-6,0.5701 -0.13503,1.04017 -0.40506,1.41022 -0.27005,0.36007 -0.63011,0.63011 -1.08017,0.81013 0.61008,0.18003 1.09516,0.46508 1.45522,0.85514 0.36005,0.39006 0.54008,0.94015 0.54009,1.65026 -1e-5,1.04016 -0.38507,1.82528 -1.15518,2.35537 -0.76013,0.52008 -1.97032,0.78012 -3.63057,0.78012 m -1.36522,-4.93578 0,3.66058 c 0.11001,0.01 0.24003,0.02 0.39006,0.03 0.13002,0.01 0.28004,0.02 0.45007,0.03 0.18003,0 0.38506,0 0.6151,0 0.43006,0 0.83513,-0.025 1.21519,-0.075 0.39006,-0.06 0.73011,-0.16003 1.02016,-0.30005 0.29004,-0.14002 0.52008,-0.33505 0.69011,-0.58509 0.18002,-0.25004 0.27004,-0.56509 0.27004,-0.94515 0,-0.34005 -0.065,-0.6251 -0.19503,-0.85514 -0.13003,-0.24003 -0.32005,-0.43006 -0.57009,-0.57009 -0.24004,-0.14001 -0.53009,-0.24003 -0.87013,-0.30004 -0.34006,-0.06 -0.72012,-0.09 -1.14018,-0.09 l -1.8753,0 m 0,-1.17018 1.53024,0 c 0.36005,0 0.70011,-0.025 1.02016,-0.075 0.32005,-0.05 0.59509,-0.14002 0.82513,-0.27005 0.24003,-0.13001 0.42506,-0.30004 0.55509,-0.51008 0.14001,-0.21002 0.21003,-0.47506 0.21003,-0.79512 0,-0.30004 -0.07,-0.55008 -0.21003,-0.75012 -0.14003,-0.21003 -0.33506,-0.37505 -0.58509,-0.49508 -0.24005,-0.13001 -0.52509,-0.22503 -0.85514,-0.28504 -0.33005,-0.06 -0.68011,-0.09 -1.05016,-0.09 -0.37007,1e-5 -0.66011,0.005 -0.87014,0.015 -0.21004,0.01 -0.40007,0.025 -0.57009,0.045 l 0,3.21051"
id="path3288" />
<path
d="m 296.70555,-231.41957 0,1.2602 -3.27051,0 0,9.13644 -1.45523,0 0,-9.13644 -3.27052,0 0,-1.2602 7.99626,0"
id="path3290" />
<path
d="m 302.28807,-220.7979 c -0.73012,0 -1.39522,-0.12002 -1.99531,-0.36006 -0.6001,-0.24003 -1.11518,-0.59009 -1.54525,-1.05016 -0.43007,-0.46007 -0.76512,-1.02516 -1.00515,-1.69527 -0.23004,-0.6801 -0.34506,-1.45522 -0.34506,-2.32536 0,-0.87014 0.13002,-1.64026 0.39006,-2.31037 0.27004,-0.6801 0.6301,-1.25019 1.08017,-1.71027 0.45007,-0.46006 0.97515,-0.81012 1.57525,-1.05016 0.60009,-0.24003 1.24019,-0.36005 1.9203,-0.36006 0.43007,10e-6 0.81513,0.03 1.15519,0.09 0.35004,0.06 0.65009,0.13003 0.90014,0.21004 0.26003,0.08 0.47006,0.16003 0.6301,0.24003 0.16001,0.08 0.27003,0.14004 0.33005,0.18003 l -0.42007,1.20019 c -0.09,-0.06 -0.22004,-0.12501 -0.39006,-0.19503 -0.17003,-0.07 -0.36506,-0.14001 -0.58509,-0.21003 -0.21004,-0.07 -0.44508,-0.12501 -0.70511,-0.16503 -0.25005,-0.05 -0.50509,-0.075 -0.76512,-0.075 -0.55009,1e-5 -1.04517,0.095 -1.48524,0.28505 -0.44007,0.19003 -0.81513,0.46508 -1.12517,0.82513 -0.31006,0.36006 -0.55009,0.80013 -0.72012,1.3202 -0.16002,0.51009 -0.24004,1.08518 -0.24003,1.72528 -10e-6,0.6201 0.07,1.18519 0.21003,1.69526 0.15002,0.51009 0.37005,0.95015 0.6601,1.32021 0.29004,0.36006 0.6501,0.6401 1.08017,0.84013 0.44007,0.20004 0.95015,0.30005 1.53024,0.30005 0.6701,0 1.22519,-0.07 1.66527,-0.21003 0.44006,-0.14002 0.77011,-0.26504 0.99015,-0.37506 l 0.37506,1.20019 c -0.07,0.05 -0.19504,0.11502 -0.37506,0.19503 -0.18003,0.07 -0.40507,0.14002 -0.6751,0.21003 -0.27005,0.07 -0.5851,0.13002 -0.94515,0.18003 -0.36007,0.05 -0.75013,0.075 -1.17019,0.075"
id="path3292" />
</g>
<g
id="text4083-7"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 151.48743,-194.86476 c -1e-5,2.85687 0.4129,5.50169 1.23872,7.93449 0.8258,2.43279 2.0422,4.68703 3.64919,6.76273 l -2.2096,1.50655 c -1.74091,-2.12034 -3.14702,-4.55313 -4.21834,-7.2984 -1.04901,-2.76758 -1.57351,-5.73603 -1.57351,-8.90537 0,-3.16932 0.5245,-6.12662 1.57351,-8.8719 1.07132,-2.76756 2.47743,-5.21152 4.21834,-7.33187 l 2.2096,1.50655 c -1.60699,2.07571 -2.82339,4.32995 -3.64919,6.76273 -0.82582,2.43281 -1.23873,5.07764 -1.23872,7.93449"
id="path3269"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 162.978,-186.66244 c -1e-5,0.60262 -0.20088,1.12712 -0.60262,1.5735 -0.40175,0.44639 -0.94857,0.66958 -1.64046,0.66958 -0.6919,0 -1.23872,-0.22319 -1.64047,-0.66958 -0.40175,-0.44638 -0.60262,-0.97088 -0.60262,-1.5735 0,-0.60262 0.20087,-1.12712 0.60262,-1.57351 0.40175,-0.44638 0.94857,-0.66957 1.64047,-0.66958 0.69189,1e-5 1.23871,0.2232 1.64046,0.66958 0.40174,0.44639 0.60261,0.97089 0.60262,1.57351"
id="path3271"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 171.21694,-186.66244 c -1e-5,0.60262 -0.20088,1.12712 -0.60262,1.5735 -0.40175,0.44639 -0.94857,0.66958 -1.64047,0.66958 -0.6919,0 -1.23872,-0.22319 -1.64046,-0.66958 -0.40175,-0.44638 -0.60262,-0.97088 -0.60262,-1.5735 0,-0.60262 0.20087,-1.12712 0.60262,-1.57351 0.40174,-0.44638 0.94856,-0.66957 1.64046,-0.66958 0.6919,1e-5 1.23872,0.2232 1.64047,0.66958 0.40174,0.44639 0.60261,0.97089 0.60262,1.57351"
id="path3273"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 179.45588,-186.66244 c -1e-5,0.60262 -0.20088,1.12712 -0.60262,1.5735 -0.40175,0.44639 -0.94857,0.66958 -1.64047,0.66958 -0.6919,0 -1.23872,-0.22319 -1.64046,-0.66958 -0.40175,-0.44638 -0.60262,-0.97088 -0.60262,-1.5735 0,-0.60262 0.20087,-1.12712 0.60262,-1.57351 0.40174,-0.44638 0.94856,-0.66957 1.64046,-0.66958 0.6919,1e-5 1.23872,0.2232 1.64047,0.66958 0.40174,0.44639 0.60261,0.97089 0.60262,1.57351"
id="path3275"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 186.4561,-194.86476 c -1e-5,-2.85685 -0.41291,-5.50168 -1.23872,-7.93449 -0.82582,-2.43278 -2.04221,-4.68702 -3.6492,-6.76273 l 2.20961,-1.50655 c 1.74089,2.12035 3.13585,4.56431 4.18486,7.33187 1.07131,2.74528 1.60697,5.70258 1.60698,8.8719 -1e-5,3.16934 -0.53567,6.13779 -1.60698,8.90537 -1.04901,2.74527 -2.44397,5.17806 -4.18486,7.2984 l -2.20961,-1.50655 c 1.60699,-2.0757 2.82338,-4.32994 3.6492,-6.76273 0.82581,-2.4328 1.23871,-5.07762 1.23872,-7.93449"
id="path3277"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<g
id="text4083-7-9"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 414.51648,-194.47574 c -10e-6,2.85687 0.4129,5.5017 1.23872,7.93449 0.8258,2.4328 2.0422,4.68704 3.64919,6.76273 l -2.2096,1.50655 c -1.74091,-2.12033 -3.14702,-4.55313 -4.21834,-7.29839 -1.049,-2.76759 -1.57351,-5.73604 -1.5735,-8.90538 -10e-6,-3.16932 0.5245,-6.12661 1.5735,-8.8719 1.07132,-2.76756 2.47743,-5.21152 4.21834,-7.33187 l 2.2096,1.50655 c -1.60699,2.07571 -2.82339,4.32995 -3.64919,6.76273 -0.82582,2.43281 -1.23873,5.07764 -1.23872,7.93449"
id="path3258"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 426.00705,-186.27342 c 0,0.60262 -0.20088,1.12712 -0.60262,1.57351 -0.40175,0.44638 -0.94857,0.66957 -1.64046,0.66957 -0.6919,0 -1.23872,-0.22319 -1.64046,-0.66957 -0.40175,-0.44639 -0.60263,-0.97089 -0.60262,-1.57351 -1e-5,-0.60262 0.20087,-1.12712 0.60262,-1.57351 0.40174,-0.44638 0.94856,-0.66957 1.64046,-0.66957 0.69189,0 1.23871,0.22319 1.64046,0.66957 0.40174,0.44639 0.60262,0.97089 0.60262,1.57351"
id="path3260"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 434.24599,-186.27342 c -1e-5,0.60262 -0.20088,1.12712 -0.60262,1.57351 -0.40175,0.44638 -0.94857,0.66957 -1.64046,0.66957 -0.6919,0 -1.23872,-0.22319 -1.64047,-0.66957 -0.40174,-0.44639 -0.60262,-0.97089 -0.60262,-1.57351 0,-0.60262 0.20088,-1.12712 0.60262,-1.57351 0.40175,-0.44638 0.94857,-0.66957 1.64047,-0.66957 0.69189,0 1.23871,0.22319 1.64046,0.66957 0.40174,0.44639 0.60261,0.97089 0.60262,1.57351"
id="path3262"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 442.48493,-186.27342 c -1e-5,0.60262 -0.20088,1.12712 -0.60262,1.57351 -0.40175,0.44638 -0.94857,0.66957 -1.64046,0.66957 -0.6919,0 -1.23872,-0.22319 -1.64047,-0.66957 -0.40175,-0.44639 -0.60262,-0.97089 -0.60262,-1.57351 0,-0.60262 0.20087,-1.12712 0.60262,-1.57351 0.40175,-0.44638 0.94857,-0.66957 1.64047,-0.66957 0.69189,0 1.23871,0.22319 1.64046,0.66957 0.40174,0.44639 0.60261,0.97089 0.60262,1.57351"
id="path3264"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 449.48515,-194.47574 c -10e-6,-2.85685 -0.41291,-5.50168 -1.23872,-7.93449 -0.82581,-2.43278 -2.04221,-4.68702 -3.64919,-6.76273 l 2.2096,-1.50655 c 1.7409,2.12035 3.13585,4.56431 4.18486,7.33187 1.07131,2.74529 1.60698,5.70258 1.60698,8.8719 0,3.16934 -0.53567,6.13779 -1.60698,8.90538 -1.04901,2.74526 -2.44396,5.17806 -4.18486,7.29839 l -2.2096,-1.50655 c 1.60698,-2.07569 2.82338,-4.32993 3.64919,-6.76273 0.82581,-2.43279 1.23871,-5.07762 1.23872,-7.93449"
id="path3266"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<path
d="m 30.58636,12.911432 c 0,7.23783 -6.377196,13.105251 -14.243867,13.105251 -7.8666704,0 -14.2438669,-5.867421 -14.2438669,-13.105251 0,-7.2378296 6.3771965,-13.10525009 14.2438669,-13.10525009 7.866671,0 14.243867,5.86742049 14.243867,13.10525009 z"
transform="matrix(20.544021,0,0,21.585044,-35.300849,-542.41263)"
id="path4129"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:0.34463671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text4131"
style="font-size:41.20232391px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 189.82967,-96.79351 c -2.00519,-10e-7 -3.83183,-0.329619 -5.47991,-0.988856 -1.6481,-0.659236 -3.06271,-1.620622 -4.24384,-2.884164 -1.18113,-1.26353 -2.10132,-2.81548 -2.76055,-4.65586 -0.63177,-1.86783 -0.94766,-3.99661 -0.94765,-6.38636 -1e-5,-2.38972 0.35708,-4.50477 1.07126,-6.34516 0.74163,-1.86782 1.73049,-3.4335 2.96656,-4.69706 1.23606,-1.26352 2.67814,-2.2249 4.32625,-2.88417 1.64808,-0.6592 3.40604,-0.98882 5.27389,-0.98885 1.18112,3e-5 2.23865,0.0824 3.17258,0.24721 0.96137,0.16484 1.78542,0.35712 2.47214,0.57683 0.71415,0.21978 1.29099,0.43952 1.7305,0.65924 0.43947,0.21977 0.74162,0.38458 0.90645,0.49443 l -1.15366,3.29619 c -0.24724,-0.16479 -0.60433,-0.34333 -1.07126,-0.53564 -0.46699,-0.19225 -1.00261,-0.38453 -1.60689,-0.57683 -0.57686,-0.19225 -1.22236,-0.34333 -1.93651,-0.45322 -0.68673,-0.13732 -1.38717,-0.20599 -2.10132,-0.20601 -1.51077,2e-5 -2.87044,0.26097 -4.07903,0.78284 -1.20862,0.52192 -2.23867,1.27729 -3.09018,2.26613 -0.85152,0.98887 -1.51076,2.19747 -1.97771,3.6258 -0.4395,1.4009 -0.65924,2.98032 -0.65924,4.73827 0,1.70304 0.19228,3.25499 0.57684,4.65586 0.41201,1.40089 1.01631,2.60949 1.8129,3.62581 0.79657,0.98886 1.78542,1.75797 2.96657,2.30733 1.20858,0.54936 2.60946,0.82405 4.20263,0.82404 1.84036,1e-5 3.36484,-0.19227 4.57346,-0.57683 1.20858,-0.38455 2.11503,-0.7279 2.71935,-1.03006 l 1.03006,3.296188 c -0.1923,0.137342 -0.53565,0.315885 -1.03006,0.53563 -0.49445,0.192278 -1.11248,0.384555 -1.8541,0.576833 -0.74166,0.192277 -1.60691,0.357086 -2.59575,0.494427 -0.98887,0.137341 -2.06013,0.206011 -3.21378,0.206012"
id="path3232" />
<path
d="m 202.8142,-97.411545 0,-31.313765 3.83182,-0.65924 0,10.95982 c 0.71416,-0.27466 1.46954,-0.48067 2.26612,-0.61803 0.82404,-0.16479 1.63435,-0.2472 2.43094,-0.24722 1.70302,2e-5 3.11763,0.24724 4.24384,0.74164 1.12618,0.46698 2.0189,1.13995 2.67815,2.01892 0.68669,0.85153 1.16738,1.88159 1.44208,3.09017 0.27466,1.20862 0.412,2.54082 0.41202,3.99663 l 0,12.031075 -3.83181,0 0,-11.207035 c -2e-5,-1.31846 -0.0962,-2.44465 -0.28842,-3.37859 -0.16482,-0.9339 -0.45324,-1.68928 -0.86525,-2.26613 -0.41203,-0.57681 -0.9614,-0.98883 -1.64809,-1.23606 -0.68672,-0.27467 -1.53823,-0.41201 -2.55454,-0.41203 -0.41204,2e-5 -0.83779,0.0275 -1.27728,0.0824 -0.4395,0.055 -0.86525,0.12362 -1.27727,0.20601 -0.38456,0.0549 -0.74165,0.12362 -1.07126,0.20601 -0.30216,0.0824 -0.5219,0.15109 -0.65923,0.20601 l 0,17.799405 -3.83182,0"
id="path3234" />
<path
d="m 233.56401,-100.1721 c 0.90644,0 1.70301,-0.0137 2.38973,-0.0412 0.71416,-0.0549 1.30473,-0.13734 1.7717,-0.24722 l 0,-6.38636 c -0.27469,-0.13733 -0.72792,-0.2472 -1.35967,-0.32962 -0.60432,-0.10986 -1.34596,-0.16479 -2.22493,-0.1648 -0.57684,1e-5 -1.19488,0.0412 -1.8541,0.1236 -0.63178,0.0824 -1.22235,0.26096 -1.7717,0.53563 -0.52191,0.24723 -0.9614,0.60431 -1.31848,1.07126 -0.35709,0.4395 -0.53563,1.03007 -0.53563,1.7717 0,1.37342 0.43949,2.33481 1.31848,2.88417 0.87897,0.52189 2.07384,0.78284 3.5846,0.78284 m -0.32962,-19.20028 c 1.53821,2e-5 2.82921,0.20603 3.87302,0.61803 1.07124,0.38458 1.92276,0.94768 2.55454,1.6893 0.65922,0.71419 1.12618,1.57944 1.40088,2.59574 0.27466,0.98887 0.41201,2.0876 0.41202,3.29619 l 0,13.390754 c -0.32963,0.05494 -0.79659,0.137342 -1.40088,0.247214 -0.57684,0.0824 -1.23608,0.164809 -1.97771,0.247214 -0.74165,0.0824 -1.55196,0.151075 -2.43093,0.206012 -0.85153,0.0824 -1.70304,0.123606 -2.55455,0.123607 -1.20861,-10e-7 -2.32107,-0.123608 -3.33739,-0.370821 -1.01633,-0.247214 -1.89531,-0.631769 -2.63695,-1.153665 -0.74164,-0.549363 -1.31847,-1.263536 -1.73049,-2.142525 -0.41203,-0.87897 -0.61804,-1.9365 -0.61804,-3.17258 0,-1.18112 0.23348,-2.19744 0.70044,-3.04897 0.49443,-0.8515 1.15366,-1.53821 1.97771,-2.06011 0.82404,-0.52189 1.78543,-0.90644 2.88417,-1.15367 1.09872,-0.2472 2.25238,-0.37081 3.46099,-0.37082 0.38455,10e-6 0.78283,0.0275 1.19487,0.0824 0.41201,0.0275 0.79656,0.0824 1.15366,0.1648 0.38455,0.0549 0.71416,0.10989 0.98886,0.16481 0.27467,0.0549 0.46694,0.0962 0.57683,0.12361 l 0,-1.07126 c -1e-5,-0.63175 -0.0687,-1.24979 -0.20601,-1.8541 -0.13735,-0.63176 -0.38457,-1.18112 -0.74164,-1.6481 -0.3571,-0.49441 -0.85153,-0.87896 -1.48329,-1.15366 -0.60431,-0.30213 -1.40088,-0.45321 -2.38973,-0.45323 -1.26355,2e-5 -2.37601,0.0962 -3.33739,0.28842 -0.93392,0.16483 -1.63436,0.34337 -2.10132,0.53563 l -0.45322,-3.17258 c 0.49442,-0.21972 1.31847,-0.42574 2.47214,-0.61803 1.15365,-0.21973 2.40346,-0.3296 3.74941,-0.32962"
id="path3236" />
<path
d="m 251.63058,-97.411545 -3.83182,0 0,-21.425205 3.83182,0 0,21.425205 m -1.89531,-31.684585 5.60352,5.89193 -1.60689,1.8129 -3.99663,-3.6258 -3.99662,3.6258 -1.60689,-1.8129 5.60351,-5.89193"
id="path3238" />
<path
d="m 258.2603,-118.21872 c 0.87898,-0.21972 2.04637,-0.4532 3.50219,-0.70044 1.45581,-0.24719 3.13137,-0.3708 5.02669,-0.37082 1.70301,2e-5 3.11763,0.24724 4.24384,0.74164 1.12618,0.46698 2.01889,1.13995 2.67815,2.01892 0.68668,0.85153 1.16738,1.88159 1.44208,3.09017 0.27466,1.20862 0.412,2.54082 0.41202,3.99663 l 0,12.031075 -3.83181,0 0,-11.207035 c -2e-5,-1.31846 -0.0962,-2.44465 -0.28842,-3.37859 -0.16482,-0.9339 -0.45324,-1.68928 -0.86525,-2.26613 -0.41204,-0.57681 -0.9614,-0.98883 -1.64809,-1.23606 -0.68672,-0.27467 -1.53823,-0.41201 -2.55454,-0.41203 -0.41204,2e-5 -0.8378,0.0138 -1.27728,0.0412 -0.4395,0.0275 -0.86526,0.0687 -1.27727,0.12361 -0.38456,0.0275 -0.74165,0.0687 -1.07126,0.12361 -0.30216,0.0549 -0.5219,0.0961 -0.65924,0.12361 l 0,18.087815 -3.83181,0 0,-20.807175"
id="path3240" />
<path
d="m 280.72457,-108.08295 c 0,-1.89529 0.27468,-3.54338 0.82405,-4.94428 0.54936,-1.42833 1.27727,-2.60946 2.18372,-3.5434 0.90645,-0.93389 1.95024,-1.63433 3.13138,-2.10131 1.18112,-0.46694 2.38972,-0.70042 3.6258,-0.70044 2.88415,2e-5 5.09534,0.90647 6.63358,2.71935 1.5382,1.78545 2.30731,4.51854 2.30733,8.19926 -2e-5,0.16482 -2e-5,0.38457 0,0.65924 -2e-5,0.24722 -0.0138,0.4807 -0.0412,0.70044 l -14.66802,0 c 0.1648,2.22493 0.8103,3.91423 1.93651,5.06788 1.12618,1.15367 2.88415,1.73051 5.27389,1.7305 1.34593,1e-5 2.47213,-0.10987 3.37859,-0.32962 0.93391,-0.24721 1.63434,-0.48069 2.10132,-0.70044 l 0.53563,3.213786 c -0.46698,0.247214 -1.29102,0.508162 -2.47214,0.782844 -1.15368,0.274682 -2.47215,0.412023 -3.95542,0.412023 -1.86785,0 -3.48847,-0.274682 -4.86187,-0.824046 -1.34595,-0.576832 -2.45841,-1.359675 -3.33739,-2.348537 -0.87899,-0.98885 -1.53823,-2.15625 -1.97771,-3.50219 -0.41203,-1.37341 -0.61804,-2.87042 -0.61804,-4.49106 m 14.70923,-2.10132 c 0.0274,-1.73048 -0.41204,-3.14509 -1.31847,-4.24383 -0.879,-1.12618 -2.10134,-1.68928 -3.66701,-1.6893 -0.87899,2e-5 -1.66184,0.17856 -2.34853,0.53563 -0.65925,0.32964 -1.22235,0.76913 -1.6893,1.31847 -0.46696,0.54939 -0.83779,1.18115 -1.11246,1.89531 -0.24722,0.71419 -0.41203,1.4421 -0.49443,2.18372 l 10.6302,0"
id="path3242" />
<path
d="m 328.27463,-114.3045 c -0.46698,-0.38454 -1.13995,-0.75536 -2.01892,-1.11246 -0.87899,-0.35707 -1.84038,-0.53561 -2.88416,-0.53563 -1.09874,2e-5 -2.04639,0.20603 -2.84296,0.61803 -0.76912,0.38458 -1.40089,0.93394 -1.89531,1.6481 -0.49443,0.68672 -0.85152,1.51076 -1.07126,2.47214 -0.21975,0.9614 -0.32962,1.99145 -0.32962,3.09017 0,2.49962 0.61803,4.43612 1.85411,5.80953 1.23606,1.34594 2.88415,2.01892 4.94428,2.01891 1.04378,1e-5 1.90902,-0.0412 2.59574,-0.1236 0.71416,-0.10987 1.26353,-0.21975 1.6481,-0.32962 l 0,-13.55557 m 0,-14.42081 3.83181,-0.65924 0,31.35497 c -0.879,0.247215 -2.0052,0.494428 -3.37859,0.741642 -1.37342,0.247214 -2.95285,0.370821 -4.73826,0.370821 -1.64811,0 -3.13139,-0.260948 -4.44986,-0.782844 -1.31848,-0.521895 -2.44467,-1.263536 -3.37859,-2.224926 -0.93392,-0.961383 -1.66183,-2.128783 -2.18372,-3.502193 -0.49443,-1.40088 -0.74164,-2.96656 -0.74164,-4.69707 0,-1.64808 0.20601,-3.15883 0.61803,-4.53225 0.43949,-1.3734 1.07126,-2.55453 1.89531,-3.5434 0.82404,-0.98884 1.82663,-1.75795 3.00777,-2.30733 1.20859,-0.54935 2.582,-0.82403 4.12023,-0.82405 1.23606,2e-5 2.32105,0.16483 3.25499,0.49443 0.96137,0.32964 1.67554,0.64552 2.14252,0.94765 l 0,-10.83621"
id="path3244" />
<path
d="m 337.53871,-108.08295 c 0,-1.89529 0.27468,-3.54338 0.82405,-4.94428 0.54936,-1.42833 1.27727,-2.60946 2.18372,-3.5434 0.90645,-0.93389 1.95024,-1.63433 3.13138,-2.10131 1.18112,-0.46694 2.38972,-0.70042 3.6258,-0.70044 2.88415,2e-5 5.09534,0.90647 6.63358,2.71935 1.5382,1.78545 2.30731,4.51854 2.30733,8.19926 -2e-5,0.16482 -2e-5,0.38457 0,0.65924 -2e-5,0.24722 -0.0138,0.4807 -0.0412,0.70044 l -14.66802,0 c 0.1648,2.22493 0.8103,3.91423 1.93651,5.06788 1.12618,1.15367 2.88415,1.73051 5.27389,1.7305 1.34593,1e-5 2.47213,-0.10987 3.37859,-0.32962 0.93391,-0.24721 1.63434,-0.48069 2.10132,-0.70044 l 0.53563,3.213786 c -0.46698,0.247214 -1.29102,0.508162 -2.47214,0.782844 -1.15368,0.274682 -2.47215,0.412023 -3.95542,0.412023 -1.86785,0 -3.48847,-0.274682 -4.86187,-0.824046 -1.34595,-0.576832 -2.45841,-1.359675 -3.33739,-2.348537 -0.87899,-0.98885 -1.53823,-2.15625 -1.97771,-3.50219 -0.41203,-1.37341 -0.61804,-2.87042 -0.61804,-4.49106 m 14.70923,-2.10132 c 0.0274,-1.73048 -0.41204,-3.14509 -1.31847,-4.24383 -0.879,-1.12618 -2.10133,-1.68928 -3.66701,-1.6893 -0.87899,2e-5 -1.66184,0.17856 -2.34853,0.53563 -0.65925,0.32964 -1.22235,0.76913 -1.6893,1.31847 -0.46696,0.54939 -0.83779,1.18115 -1.11246,1.89531 -0.24722,0.71419 -0.41203,1.4421 -0.49443,2.18372 l 10.6302,0"
id="path3246" />
<path
d="m 375.07661,-117.8891 c 0.46695,-0.30213 1.16739,-0.61801 2.10132,-0.94765 0.96138,-0.3296 2.0601,-0.49441 3.29618,-0.49443 1.53821,2e-5 2.89789,0.2747 4.07903,0.82405 1.20859,0.54938 2.22491,1.31849 3.04898,2.30733 0.82402,0.98887 1.44206,2.17 1.8541,3.5434 0.43947,1.37342 0.65922,2.88417 0.65924,4.53225 -2e-5,1.73051 -0.26097,3.29619 -0.78285,4.69707 -0.49444,1.37341 -1.20862,2.54081 -2.14252,3.502193 -0.93393,0.96139 -2.06013,1.703031 -3.37859,2.224926 -1.31849,0.521896 -2.80177,0.782844 -4.44985,0.782844 -1.78544,0 -3.36486,-0.123607 -4.73827,-0.370821 -1.37341,-0.247214 -2.49961,-0.494427 -3.37859,-0.741642 l 0,-30.69573 3.83182,-0.65924 0,11.49545 m 0,17.14017 c 0.38455,0.10987 0.92018,0.21975 1.60689,0.32962 0.71417,0.0824 1.59315,0.12361 2.63695,0.1236 2.0601,1e-5 3.70819,-0.67297 4.94428,-2.01891 1.23605,-1.37341 1.85409,-3.30991 1.8541,-5.80953 -10e-6,-1.09872 -0.10989,-2.12877 -0.32962,-3.09017 -0.21976,-0.96138 -0.57685,-1.78542 -1.07126,-2.47214 -0.49444,-0.71416 -1.13994,-1.26352 -1.9365,-1.6481 -0.76913,-0.412 -1.70305,-0.61801 -2.80176,-0.61803 -1.04381,2e-5 -2.00519,0.17856 -2.88417,0.53563 -0.87899,0.3571 -1.55196,0.72792 -2.01891,1.11246 l 0,13.55557"
id="path3248" />
<path
d="m 401.97529,-96.999522 c -2.36227,-0.05494 -4.03783,-0.563098 -5.02668,-1.524486 -0.98886,-0.961385 -1.48329,-2.458402 -1.48329,-4.491052 l 0,-25.71025 3.83182,-0.65924 0,25.75145 c -1e-5,0.63178 0.0549,1.15367 0.16481,1.56569 0.10986,0.41203 0.28841,0.74165 0.53563,0.98886 0.2472,0.24722 0.57682,0.43949 0.98885,0.57683 0.41202,0.10988 0.92018,0.20602 1.52449,0.28842 l -0.53563,3.213778"
id="path3250" />
<path
d="m 425.72584,-108.12415 c -2e-5,1.70304 -0.24723,3.24126 -0.74164,4.61466 -0.49445,1.37342 -1.19489,2.55455 -2.10132,3.543401 -0.879,0.988857 -1.93652,1.757967 -3.17257,2.30733 -1.23609,0.521896 -2.58203,0.782844 -4.03783,0.782844 -1.45583,0 -2.80177,-0.260948 -4.03783,-0.782844 -1.23608,-0.549363 -2.30734,-1.318473 -3.21378,-2.30733 -0.87899,-0.988851 -1.56569,-2.169981 -2.06012,-3.543401 -0.49443,-1.3734 -0.74164,-2.91162 -0.74164,-4.61466 0,-1.67555 0.24721,-3.20003 0.74164,-4.57346 0.49443,-1.40086 1.18113,-2.59573 2.06012,-3.5846 0.90644,-0.98884 1.9777,-1.74421 3.21378,-2.26613 1.23606,-0.54934 2.582,-0.82402 4.03783,-0.82404 1.4558,2e-5 2.80174,0.2747 4.03783,0.82404 1.23605,0.52192 2.29357,1.27729 3.17257,2.26613 0.90643,0.98887 1.60687,2.18374 2.10132,3.5846 0.49441,1.37343 0.74162,2.89791 0.74164,4.57346 m -3.99662,0 c -2e-5,-2.41719 -0.54938,-4.32623 -1.64809,-5.72712 -1.07128,-1.42833 -2.54083,-2.1425 -4.40865,-2.14252 -1.86785,2e-5 -3.35113,0.71419 -4.44985,2.14252 -1.07127,1.40089 -1.6069,3.30993 -1.60689,5.72712 -1e-5,2.41721 0.53562,4.33999 1.60689,5.76833 1.09872,1.40088 2.582,2.10132 4.44985,2.10131 1.86782,1e-5 3.33737,-0.70043 4.40865,-2.10131 1.09871,-1.42834 1.64807,-3.35112 1.64809,-5.76833"
id="path3252" />
<path
d="m 440.42864,-96.917117 c -1.73051,0 -3.255,-0.274682 -4.57346,-0.824046 -1.29102,-0.549364 -2.38974,-1.318473 -3.29619,-2.307327 -0.87899,-0.98886 -1.53822,-2.15625 -1.97771,-3.5022 -0.43949,-1.3734 -0.65924,-2.88415 -0.65924,-4.53226 0,-1.64808 0.23348,-3.15883 0.70044,-4.53225 0.49443,-1.3734 1.18113,-2.55453 2.06012,-3.5434 0.87898,-1.01631 1.95024,-1.79915 3.21378,-2.34853 1.291,-0.57682 2.71934,-0.86523 4.28504,-0.86525 0.96138,2e-5 1.92276,0.0824 2.88416,0.24721 0.96138,0.16483 1.88156,0.42578 2.76056,0.78284 l -0.86525,3.25499 c -0.57685,-0.27467 -1.24982,-0.49441 -2.01891,-0.65924 -0.74166,-0.16479 -1.53824,-0.24719 -2.38974,-0.24721 -2.14253,2e-5 -3.79062,0.67299 -4.94428,2.01891 -1.1262,1.34596 -1.6893,3.30993 -1.68929,5.89193 -1e-5,1.15368 0.1236,2.2112 0.37082,3.17258 0.27467,0.9614 0.6867,1.78544 1.23607,2.47214 0.57682,0.68671 1.30473,1.22234 2.18372,1.60689 0.87897,0.35709 1.95023,0.53564 3.21378,0.53563 1.01631,1e-5 1.9365,-0.0961 2.76056,-0.28841 0.82403,-0.19228 1.46953,-0.39829 1.93651,-0.61804 l 0.53563,3.213783 c -0.21977,0.137341 -0.53565,0.274682 -0.94765,0.412023 -0.41205,0.109873 -0.879,0.206011 -1.40088,0.288416 -0.52192,0.109873 -1.08501,0.192277 -1.6893,0.247214 -0.57685,0.0824 -1.13994,0.123607 -1.68929,0.123607"
id="path3254" />
</g>
<g
id="text4135"
style="font-size:20.91762543px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 156.60019,-111.65539 c -1.19928,-0.0279 -2.04993,-0.28587 -2.55195,-0.77395 -0.50202,-0.48808 -0.75303,-1.24808 -0.75303,-2.28002 l 0,-13.0526 1.94534,-0.33468 0,13.07352 c 0,0.32074 0.0279,0.58569 0.0837,0.79487 0.0558,0.20917 0.14642,0.37651 0.27193,0.50202 0.1255,0.12551 0.29284,0.22312 0.50202,0.29285 0.20917,0.0558 0.46716,0.10458 0.77395,0.14642 l -0.27193,1.63157"
id="path3227" />
<path
d="m 162.73821,-113.26604 c 0.46018,0 0.86459,-0.007 1.21322,-0.0209 0.36257,-0.0279 0.66239,-0.0697 0.89946,-0.12551 l 0,-3.24223 c -0.13946,-0.0697 -0.36955,-0.1255 -0.69028,-0.16734 -0.3068,-0.0558 -0.68332,-0.0837 -1.12955,-0.0837 -0.29285,0 -0.60662,0.0209 -0.9413,0.0627 -0.32074,0.0418 -0.62056,0.13249 -0.89945,0.27193 -0.26496,0.12551 -0.48809,0.3068 -0.66937,0.54386 -0.18129,0.22312 -0.27193,0.52294 -0.27193,0.89946 0,0.69725 0.22312,1.18533 0.66937,1.46423 0.44624,0.26496 1.05285,0.39744 1.81983,0.39744 m -0.16734,-9.74762 c 0.78092,1e-5 1.43634,0.1046 1.96626,0.31377 0.54385,0.19524 0.97614,0.48111 1.29689,0.85762 0.33467,0.36258 0.57174,0.80185 0.7112,1.31781 0.13944,0.50203 0.20917,1.05983 0.20917,1.67341 l 0,6.79823 c -0.16735,0.0279 -0.40441,0.0697 -0.71119,0.1255 -0.29286,0.0418 -0.62754,0.0837 -1.00405,0.12551 -0.37653,0.0418 -0.7879,0.0767 -1.23414,0.10459 -0.4323,0.0418 -0.8646,0.0628 -1.29689,0.0628 -0.61359,0 -1.17837,-0.0628 -1.69433,-0.18826 -0.51597,-0.1255 -0.96221,-0.32073 -1.33873,-0.58569 -0.37652,-0.2789 -0.66936,-0.64147 -0.87854,-1.08772 -0.20918,-0.44624 -0.31376,-0.98312 -0.31376,-1.61065 0,-0.59964 0.11853,-1.11561 0.3556,-1.54791 0.25101,-0.43229 0.58569,-0.78092 1.00404,-1.04588 0.41835,-0.26495 0.90643,-0.46018 1.46424,-0.58569 0.55779,-0.1255 1.14349,-0.18826 1.75708,-0.18826 0.19522,0 0.39743,0.014 0.60661,0.0418 0.20917,0.0139 0.4044,0.0418 0.58569,0.0837 0.19523,0.0279 0.36257,0.0558 0.50202,0.0837 0.13945,0.0279 0.23706,0.0488 0.29285,0.0628 l 0,-0.54386 c -1e-5,-0.32073 -0.0349,-0.6345 -0.10459,-0.94129 -0.0697,-0.32073 -0.19524,-0.59964 -0.37651,-0.83671 -0.1813,-0.251 -0.43231,-0.44623 -0.75304,-0.58569 -0.3068,-0.15339 -0.7112,-0.23009 -1.21322,-0.2301 -0.64148,1e-5 -1.20626,0.0488 -1.69433,0.14643 -0.47413,0.0837 -0.82973,0.17432 -1.0668,0.27193 l -0.23009,-1.61066 c 0.25101,-0.11155 0.66936,-0.21614 1.25506,-0.31377 0.58569,-0.11155 1.22019,-0.16733 1.9035,-0.16734"
id="path3229" />
</g>
<g
id="text4139"
style="font-size:17.91135216px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 132.37621,-77.78226 c 0,1.528439 0.2209,2.943435 0.66272,4.244991 0.44181,1.301558 1.09259,2.507588 1.95234,3.618093 l -1.18215,0.806011 c -0.93139,-1.134388 -1.68367,-2.435945 -2.25683,-3.904675 -0.56123,-1.48067 -0.84184,-3.068808 -0.84183,-4.76442 -1e-5,-1.695601 0.2806,-3.277769 0.84183,-4.746508 0.57316,-1.48066 1.32544,-2.788188 2.25683,-3.922586 l 1.18215,0.806011 c -0.85975,1.110516 -1.51053,2.316545 -1.95234,3.618093 -0.44182,1.301566 -0.66272,2.716562 -0.66272,4.24499"
id="path3150" />
<path
d="m 143.96877,-72.695436 c -0.38211,0.09553 -0.8896,0.197025 -1.52246,0.304493 -0.62093,0.107468 -1.34336,0.161202 -2.16727,0.161202 -0.71646,0 -1.31948,-0.101497 -1.80905,-0.304493 -0.48958,-0.214935 -0.88363,-0.513458 -1.18215,-0.895567 -0.29852,-0.382108 -0.51346,-0.829891 -0.64481,-1.343352 -0.13135,-0.525396 -0.19703,-1.10453 -0.19702,-1.737401 l 0,-5.230115 1.66575,0 0,4.871888 c 0,1.134389 0.17911,1.94637 0.53734,2.435944 0.35823,0.489579 0.96124,0.734367 1.80905,0.734366 0.17911,10e-7 0.36419,-0.006 0.55525,-0.01791 0.19105,-0.01194 0.37016,-0.02388 0.53734,-0.03582 0.16717,-0.02388 0.31643,-0.04179 0.44779,-0.05373 0.14328,-0.02388 0.24478,-0.04776 0.30449,-0.07164 l 0,-7.863084 1.66575,0 0,9.045233"
id="path3152" />
<path
d="m 146.83851,-81.471998 c 0.3821,-0.09552 0.88959,-0.197016 1.52246,-0.304493 0.63287,-0.107459 1.36126,-0.161193 2.18519,-0.161202 0.74033,9e-6 1.35528,0.107477 1.84487,0.322404 0.48957,0.203004 0.87765,0.495556 1.16423,0.877656 0.29852,0.370176 0.50748,0.817959 0.6269,1.343352 0.1194,0.525406 0.17911,1.104539 0.17912,1.737401 l 0,5.230115 -1.66576,0 0,-4.871888 c -10e-6,-0.573158 -0.0418,-1.062735 -0.12538,-1.468731 -0.0717,-0.405984 -0.19703,-0.734358 -0.37614,-0.985124 -0.17912,-0.250752 -0.41794,-0.429865 -0.71645,-0.537341 -0.29853,-0.119401 -0.6687,-0.179106 -1.11051,-0.179114 -0.17911,8e-6 -0.3642,0.006 -0.55525,0.01791 -0.19106,0.01195 -0.37614,0.02986 -0.55525,0.05373 -0.16718,0.01195 -0.32241,0.02986 -0.46569,0.05373 -0.13136,0.02389 -0.22689,0.0418 -0.28659,0.05373 l 0,7.863084 -1.66575,0 0,-9.045233"
id="path3154" />
<path
d="m 159.72908,-69.077343 c -0.14329,-3e-6 -0.32837,-0.01791 -0.55525,-0.05373 -0.22687,-0.03583 -0.41793,-0.08359 -0.57316,-0.14329 l 0.21494,-1.361263 c 0.11941,0.03582 0.25673,0.06567 0.41196,0.08956 0.15523,0.02388 0.29852,0.03582 0.42987,0.03582 0.57316,-2e-6 0.97915,-0.179115 1.21797,-0.53734 0.25076,-0.346288 0.37614,-0.859746 0.37614,-1.540377 l 0,-9.152701 1.66576,0 0,9.13479 c -10e-6,1.194089 -0.27465,2.077715 -0.82393,2.65088 -0.53734,0.585101 -1.32544,0.877653 -2.3643,0.877656 m 2.34639,-14.346993 c -0.29852,1.1e-5 -0.55525,-0.09552 -0.77019,-0.286581 -0.20299,-0.202984 -0.30449,-0.471654 -0.30449,-0.806011 0,-0.334333 0.1015,-0.597033 0.30449,-0.7881 0.21494,-0.202982 0.47167,-0.304479 0.77019,-0.304493 0.29852,1.4e-5 0.54928,0.101511 0.75228,0.304493 0.21493,0.191067 0.3224,0.453767 0.3224,0.7881 0,0.334357 -0.10747,0.603027 -0.3224,0.806011 -0.203,0.191065 -0.45376,0.286592 -0.75228,0.286581"
id="path3156" />
<path
d="m 174.02067,-77.083717 c -1e-5,0.74034 -0.10748,1.40903 -0.32241,2.006071 -0.21494,0.597048 -0.51944,1.110506 -0.91348,1.540377 -0.38211,0.429873 -0.84184,0.764218 -1.37917,1.003035 -0.53735,0.226877 -1.12245,0.340316 -1.75531,0.340316 -0.63288,0 -1.21798,-0.113439 -1.75532,-0.340316 -0.53734,-0.238817 -1.00303,-0.573162 -1.39708,-1.003035 -0.38211,-0.429871 -0.68063,-0.943329 -0.89557,-1.540377 -0.21494,-0.597041 -0.3224,-1.265731 -0.3224,-2.006071 0,-0.72839 0.10746,-1.391109 0.3224,-1.98816 0.21494,-0.608979 0.51346,-1.128408 0.89557,-1.558288 0.39405,-0.429864 0.85974,-0.758238 1.39708,-0.985124 0.53734,-0.238809 1.12244,-0.358218 1.75532,-0.358227 0.63286,9e-6 1.21796,0.119418 1.75531,0.358227 0.53733,0.226886 0.99706,0.55526 1.37917,0.985124 0.39404,0.42988 0.69854,0.949309 0.91348,1.558288 0.21493,0.597051 0.3224,1.25977 0.32241,1.98816 m -1.7374,0 c -10e-6,-1.050794 -0.23883,-1.880685 -0.71646,-2.489678 -0.4657,-0.620919 -1.10454,-0.931382 -1.91651,-0.93139 -0.81199,8e-6 -1.4568,0.310471 -1.93443,0.93139 -0.4657,0.608993 -0.69855,1.438884 -0.69854,2.489678 -10e-6,1.050803 0.23284,1.886665 0.69854,2.507589 0.47763,0.608988 1.12244,0.91348 1.93443,0.913479 0.81197,10e-7 1.45081,-0.304491 1.91651,-0.913479 0.47763,-0.620924 0.71645,-1.456786 0.71646,-2.507589"
id="path3158" />
<path
d="m 183.77955,-72.695436 c -0.38212,0.09553 -0.8896,0.197025 -1.52246,0.304493 -0.62094,0.107468 -1.34336,0.161202 -2.16728,0.161202 -0.71646,0 -1.31947,-0.101497 -1.80904,-0.304493 -0.48958,-0.214935 -0.88363,-0.513458 -1.18215,-0.895567 -0.29853,-0.382108 -0.51346,-0.829891 -0.64481,-1.343352 -0.13135,-0.525396 -0.19703,-1.10453 -0.19703,-1.737401 l 0,-5.230115 1.66576,0 0,4.871888 c 0,1.134389 0.17911,1.94637 0.53734,2.435944 0.35822,0.489579 0.96124,0.734367 1.80905,0.734366 0.1791,10e-7 0.36419,-0.006 0.55525,-0.01791 0.19105,-0.01194 0.37016,-0.02388 0.53734,-0.03582 0.16716,-0.02388 0.31643,-0.04179 0.44778,-0.05373 0.14329,-0.02388 0.24478,-0.04776 0.3045,-0.07164 l 0,-7.863084 1.66575,0 0,9.045233"
id="path3160" />
<path
d="m 190.08827,-81.937693 c 0.14328,9e-6 0.30448,0.01195 0.4836,0.03582 0.19105,0.01195 0.37613,0.03583 0.55525,0.07165 0.17911,0.02389 0.34031,0.05374 0.48361,0.08956 0.15523,0.02389 0.26866,0.04777 0.34032,0.07165 l -0.28659,1.450819 c -0.13135,-0.04775 -0.35226,-0.101489 -0.66272,-0.161202 -0.29852,-0.07164 -0.6866,-0.10746 -1.16423,-0.107468 -0.31047,8e-6 -0.62093,0.03583 -0.93139,0.107468 -0.29853,0.05971 -0.49555,0.101506 -0.59108,0.12538 l 0,7.827261 -1.66575,0 0,-8.919854 c 0.39404,-0.143282 0.88362,-0.274631 1.46873,-0.39405 0.5851,-0.13134 1.24185,-0.197015 1.97025,-0.197024"
id="path3162" />
<path
d="m 193.57594,-81.471998 c 0.38211,-0.09552 0.8896,-0.197016 1.52247,-0.304493 0.63286,-0.107459 1.36126,-0.161193 2.18518,-0.161202 0.74033,9e-6 1.35529,0.107477 1.84487,0.322404 0.48957,0.203004 0.87765,0.495556 1.16424,0.877656 0.29852,0.370176 0.50748,0.817959 0.6269,1.343352 0.1194,0.525406 0.1791,1.104539 0.17911,1.737401 l 0,5.230115 -1.66575,0 0,-4.871888 c -1e-5,-0.573158 -0.0418,-1.062735 -0.12538,-1.468731 -0.0717,-0.405984 -0.19704,-0.734358 -0.37614,-0.985124 -0.17912,-0.250752 -0.41794,-0.429865 -0.71646,-0.537341 -0.29852,-0.119401 -0.66869,-0.179106 -1.1105,-0.179114 -0.17912,8e-6 -0.3642,0.006 -0.55525,0.01791 -0.19106,0.01195 -0.37614,0.02986 -0.55525,0.05373 -0.16718,0.01195 -0.32241,0.02986 -0.4657,0.05373 -0.13135,0.02389 -0.22688,0.0418 -0.28658,0.05373 l 0,7.863084 -1.66576,0 0,-9.045233"
id="path3164" />
<path
d="m 207.01338,-73.626826 c 0.39404,10e-7 0.74033,-0.006 1.03885,-0.01791 0.31046,-0.02388 0.56719,-0.0597 0.77019,-0.107469 l 0,-2.776259 c -0.11941,-0.0597 -0.31644,-0.107464 -0.59107,-0.143291 -0.26271,-0.04776 -0.58511,-0.07164 -0.96721,-0.07165 -0.25077,4e-6 -0.51944,0.01792 -0.80602,0.05373 -0.27464,0.03583 -0.53137,0.113442 -0.77018,0.232847 -0.22688,0.107472 -0.41794,0.262704 -0.57317,0.465695 -0.15523,0.191058 -0.23285,0.447787 -0.23284,0.770189 -1e-5,0.597047 0.19105,1.014978 0.57316,1.253794 0.3821,0.226879 0.90153,0.340317 1.55829,0.340316 m -0.14329,-8.34669 c 0.66868,9e-6 1.2299,0.08957 1.68366,0.26867 0.46569,0.167182 0.83586,0.41197 1.11051,0.734366 0.28657,0.310471 0.48957,0.686609 0.60898,1.128415 0.1194,0.429879 0.17911,0.907515 0.17912,1.432908 l 0,5.821189 c -0.1433,0.02388 -0.3463,0.05971 -0.60899,0.107469 -0.25077,0.03582 -0.53735,0.07164 -0.85975,0.107468 -0.32241,0.03582 -0.67466,0.06567 -1.05676,0.08956 -0.37018,0.03582 -0.74035,0.05373 -1.11051,0.05373 -0.5254,0 -1.00901,-0.05373 -1.45082,-0.161202 -0.44181,-0.107468 -0.82392,-0.27464 -1.14632,-0.501518 -0.32241,-0.238817 -0.57317,-0.54928 -0.75228,-0.93139 -0.17912,-0.382107 -0.26867,-0.841831 -0.26867,-1.379174 0,-0.513455 0.1015,-0.955268 0.30449,-1.32544 0.21494,-0.370164 0.50152,-0.668686 0.85975,-0.895568 0.35822,-0.226872 0.77615,-0.394044 1.25379,-0.501518 0.47763,-0.107462 0.97915,-0.161196 1.50455,-0.161202 0.16717,6e-6 0.34031,0.01195 0.51943,0.03582 0.17911,0.01195 0.34628,0.03583 0.50152,0.07164 0.16717,0.02389 0.31046,0.04777 0.42987,0.07165 0.11941,0.02389 0.20299,0.0418 0.25076,0.05373 l 0,-0.465695 c 0,-0.274635 -0.0299,-0.543305 -0.0896,-0.806011 -0.0597,-0.274634 -0.16718,-0.513452 -0.32241,-0.716454 -0.15524,-0.214929 -0.37017,-0.382101 -0.64481,-0.501518 -0.2627,-0.131342 -0.60899,-0.197017 -1.03886,-0.197025 -0.54928,8e-6 -1.03289,0.0418 -1.45081,0.125379 -0.406,0.07165 -0.71049,0.14927 -0.91348,0.232848 l -0.19703,-1.379174 c 0.21494,-0.09552 0.57316,-0.185075 1.07468,-0.26867 0.50152,-0.09552 1.04483,-0.143282 1.62994,-0.143291"
id="path3166" />
<path
d="m 215.99564,-72.247652 c -1.02692,-0.02388 -1.75531,-0.244788 -2.18518,-0.66272 -0.42988,-0.417931 -0.64481,-1.068709 -0.64481,-1.952337 l 0,-11.176684 1.66575,-0.286582 0,11.194595 c 0,0.274644 0.0239,0.50152 0.0717,0.680632 0.0478,0.179115 0.12538,0.322406 0.23285,0.429872 0.10746,0.10747 0.25075,0.191056 0.42987,0.250759 0.17911,0.04776 0.40001,0.08956 0.66272,0.12538 l -0.23285,1.397085"
id="path3168" />
<path
d="m 228.24533,-79.77042 c -0.20301,-0.167165 -0.49556,-0.328367 -0.87766,-0.483606 -0.38211,-0.155224 -0.80005,-0.23284 -1.25379,-0.232848 -0.47764,8e-6 -0.88961,0.08956 -1.23589,0.26867 -0.33435,0.167181 -0.60899,0.405998 -0.82392,0.716454 -0.21494,0.29853 -0.37017,0.656756 -0.46569,1.074682 -0.0955,0.417937 -0.1433,0.86572 -0.1433,1.343351 0,1.086626 0.26867,1.928458 0.80602,2.525501 0.53733,0.585105 1.25379,0.877657 2.14936,0.877656 0.45375,10e-7 0.82988,-0.01791 1.12841,-0.05373 0.31046,-0.04776 0.54928,-0.09553 0.71646,-0.143291 l 0,-5.892835 m 0,-6.268973 1.66575,-0.286582 0,13.630539 c -0.38211,0.107469 -0.87169,0.214937 -1.46873,0.322405 -0.59705,0.107468 -1.28365,0.161202 -2.0598,0.161202 -0.71646,0 -1.36127,-0.113439 -1.93443,-0.340316 -0.57317,-0.226877 -1.06274,-0.549281 -1.46873,-0.967213 -0.40599,-0.41793 -0.72243,-0.925418 -0.9493,-1.522465 -0.21494,-0.608983 -0.32241,-1.289613 -0.32241,-2.041894 0,-0.716449 0.0896,-1.373198 0.26867,-1.970249 0.19106,-0.597038 0.4657,-1.110496 0.82393,-1.540376 0.35822,-0.429864 0.79406,-0.764209 1.30752,-1.003036 0.5254,-0.238808 1.12245,-0.358217 1.79114,-0.358227 0.53733,1e-5 1.009,0.07166 1.415,0.214936 0.41792,0.1433 0.72838,0.280621 0.93139,0.411962 l 0,-4.710686"
id="path3170" />
<path
d="m 232.27258,-77.065806 c 0,-0.823916 0.11941,-1.54037 0.35823,-2.149362 0.23881,-0.620919 0.55525,-1.134378 0.9493,-1.540376 0.39405,-0.405982 0.8478,-0.710475 1.36126,-0.913479 0.51346,-0.202986 1.03885,-0.304484 1.5762,-0.304493 1.25379,9e-6 2.21503,0.394059 2.88373,1.182149 0.66868,0.776166 1.00302,1.964285 1.00303,3.564359 -10e-6,0.07165 -10e-6,0.167177 0,0.286582 -10e-6,0.107472 -0.006,0.20897 -0.0179,0.304493 l -6.37644,0 c 0.0716,0.967216 0.35225,1.701581 0.84183,2.203096 0.48958,0.501519 1.25379,0.752278 2.29266,0.752277 0.58509,10e-7 1.07467,-0.04776 1.46873,-0.143291 0.40598,-0.107467 0.71047,-0.208964 0.91348,-0.304493 l 0.23284,1.397086 c -0.203,0.107468 -0.56123,0.220906 -1.07468,0.340315 -0.50152,0.119409 -1.07468,0.179114 -1.71949,0.179114 -0.81198,0 -1.5165,-0.119409 -2.11354,-0.358227 -0.5851,-0.250759 -1.06871,-0.591074 -1.45082,-1.020947 -0.38211,-0.429871 -0.66869,-0.937359 -0.85974,-1.522465 -0.17911,-0.597042 -0.26867,-1.247821 -0.26867,-1.952338 m 6.39435,-0.913479 c 0.0119,-0.75227 -0.17912,-1.367226 -0.57316,-1.844869 -0.38212,-0.489569 -0.91349,-0.734357 -1.59411,-0.734365 -0.38212,8e-6 -0.72243,0.07762 -1.02095,0.232847 -0.28658,0.143299 -0.53137,0.334353 -0.73436,0.573164 -0.203,0.238825 -0.3642,0.513465 -0.48361,0.823922 -0.10747,0.310469 -0.17912,0.626903 -0.21494,0.949301 l 4.62113,0"
id="path3172" />
<path
d="m 248.48347,-81.740669 3.52854,0 0,1.397086 -3.52854,0 0,4.298724 c 0,0.465699 0.0358,0.853778 0.10747,1.164238 0.0717,0.298525 0.17911,0.537343 0.32241,0.716454 0.14328,0.167175 0.3224,0.286583 0.53734,0.358227 0.21493,0.07165 0.46569,0.10747 0.75227,0.107469 0.50152,10e-7 0.90154,-0.05373 1.20007,-0.161203 0.31045,-0.119407 0.52539,-0.202993 0.6448,-0.250759 l 0.32241,1.379175 c -0.16718,0.08359 -0.45973,0.185084 -0.87766,0.304493 -0.41794,0.131349 -0.89557,0.197024 -1.43291,0.197024 -0.63287,0 -1.15827,-0.07762 -1.5762,-0.232847 -0.40599,-0.167173 -0.73436,-0.411961 -0.98512,-0.734366 -0.25076,-0.322403 -0.42987,-0.716452 -0.53734,-1.182149 -0.0955,-0.477633 -0.14329,-1.026914 -0.14329,-1.647844 l 0,-8.310868 1.66575,-0.286581 0,2.883727"
id="path3174" />
<path
d="m 257.57069,-81.937693 c 0.14328,9e-6 0.30448,0.01195 0.4836,0.03582 0.19105,0.01195 0.37614,0.03583 0.55526,0.07165 0.1791,0.02389 0.3403,0.05374 0.4836,0.08956 0.15523,0.02389 0.26867,0.04777 0.34032,0.07165 l -0.28658,1.450819 c -0.13136,-0.04775 -0.35227,-0.101489 -0.66272,-0.161202 -0.29853,-0.07164 -0.68661,-0.10746 -1.16424,-0.107468 -0.31047,8e-6 -0.62093,0.03583 -0.93139,0.107468 -0.29853,0.05971 -0.49555,0.101506 -0.59108,0.12538 l 0,7.827261 -1.66575,0 0,-8.919854 c 0.39405,-0.143282 0.88362,-0.274631 1.46873,-0.39405 0.5851,-0.13134 1.24185,-0.197015 1.97025,-0.197024"
id="path3176" />
<path
d="m 264.21076,-73.626826 c 0.39405,10e-7 0.74033,-0.006 1.03886,-0.01791 0.31046,-0.02388 0.56719,-0.0597 0.77019,-0.107469 l 0,-2.776259 c -0.11941,-0.0597 -0.31644,-0.107464 -0.59107,-0.143291 -0.26271,-0.04776 -0.58511,-0.07164 -0.96722,-0.07165 -0.25076,4e-6 -0.51943,0.01792 -0.80601,0.05373 -0.27464,0.03583 -0.53137,0.113442 -0.77019,0.232847 -0.22688,0.107472 -0.41793,0.262704 -0.57316,0.465695 -0.15523,0.191058 -0.23285,0.447787 -0.23285,0.770189 0,0.597047 0.19105,1.014978 0.57317,1.253794 0.3821,0.226879 0.90153,0.340317 1.55828,0.340316 m -0.14329,-8.34669 c 0.66869,9e-6 1.22991,0.08957 1.68367,0.26867 0.46569,0.167182 0.83586,0.41197 1.1105,0.734366 0.28658,0.310471 0.48957,0.686609 0.60899,1.128415 0.1194,0.429879 0.17911,0.907515 0.17911,1.432908 l 0,5.821189 c -0.1433,0.02388 -0.34629,0.05971 -0.60898,0.107469 -0.25077,0.03582 -0.53735,0.07164 -0.85975,0.107468 -0.32241,0.03582 -0.67466,0.06567 -1.05677,0.08956 -0.37017,0.03582 -0.74034,0.05373 -1.1105,0.05373 -0.5254,0 -1.00901,-0.05373 -1.45082,-0.161202 -0.44182,-0.107468 -0.82392,-0.27464 -1.14633,-0.501518 -0.3224,-0.238817 -0.57316,-0.54928 -0.75227,-0.93139 -0.17912,-0.382107 -0.26867,-0.841831 -0.26867,-1.379174 0,-0.513455 0.10149,-0.955268 0.30449,-1.32544 0.21493,-0.370164 0.50152,-0.668686 0.85974,-0.895568 0.35823,-0.226872 0.77616,-0.394044 1.2538,-0.501518 0.47763,-0.107462 0.97915,-0.161196 1.50455,-0.161202 0.16717,6e-6 0.34031,0.01195 0.51943,0.03582 0.17911,0.01195 0.34628,0.03583 0.50152,0.07164 0.16717,0.02389 0.31046,0.04777 0.42987,0.07165 0.1194,0.02389 0.20299,0.0418 0.25076,0.05373 l 0,-0.465695 c -1e-5,-0.274635 -0.0299,-0.543305 -0.0896,-0.806011 -0.0597,-0.274634 -0.16718,-0.513452 -0.3224,-0.716454 -0.15524,-0.214929 -0.37017,-0.382101 -0.64481,-0.501518 -0.2627,-0.131342 -0.60899,-0.197017 -1.03886,-0.197025 -0.54928,8e-6 -1.03289,0.0418 -1.45082,0.125379 -0.40599,0.07165 -0.71048,0.14927 -0.91348,0.232848 l -0.19702,-1.379174 c 0.21493,-0.09552 0.57316,-0.185075 1.07468,-0.26867 0.50151,-0.09552 1.04483,-0.143282 1.62993,-0.143291"
id="path3178" />
<path
d="m 270.39885,-81.471998 c 0.38211,-0.09552 0.8896,-0.197016 1.52247,-0.304493 0.63286,-0.107459 1.36125,-0.161193 2.18518,-0.161202 0.74033,9e-6 1.35529,0.107477 1.84487,0.322404 0.48957,0.203004 0.87765,0.495556 1.16424,0.877656 0.29851,0.370176 0.50748,0.817959 0.62689,1.343352 0.11941,0.525406 0.17911,1.104539 0.17912,1.737401 l 0,5.230115 -1.66576,0 0,-4.871888 c 0,-0.573158 -0.0418,-1.062735 -0.12538,-1.468731 -0.0716,-0.405984 -0.19703,-0.734358 -0.37614,-0.985124 -0.17912,-0.250752 -0.41793,-0.429865 -0.71645,-0.537341 -0.29853,-0.119401 -0.6687,-0.179106 -1.1105,-0.179114 -0.17912,8e-6 -0.36421,0.006 -0.55525,0.01791 -0.19106,0.01195 -0.37615,0.02986 -0.55526,0.05373 -0.16717,0.01195 -0.3224,0.02986 -0.46569,0.05373 -0.13136,0.02389 -0.22688,0.0418 -0.28658,0.05373 l 0,7.863084 -1.66576,0 0,-9.045233"
id="path3180" />
<path
d="m 282.85116,-73.626826 c 0.68063,10e-7 1.18214,-0.08956 1.50455,-0.26867 0.33434,-0.179112 0.50151,-0.465694 0.50152,-0.859745 -1e-5,-0.405988 -0.16121,-0.728392 -0.48361,-0.967213 -0.32241,-0.238815 -0.85378,-0.507485 -1.59411,-0.806011 -0.35823,-0.143287 -0.70451,-0.286577 -1.03886,-0.429873 -0.3224,-0.155227 -0.60301,-0.33434 -0.84183,-0.53734 -0.23882,-0.20299 -0.42987,-0.447778 -0.57316,-0.734366 -0.14329,-0.286575 -0.21494,-0.638831 -0.21494,-1.056769 0,-0.823915 0.30449,-1.474693 0.91348,-1.952338 0.60898,-0.489567 1.43888,-0.734356 2.48968,-0.734365 0.26269,9e-6 0.52539,0.01792 0.7881,0.05373 0.26269,0.02389 0.50748,0.05971 0.73436,0.107468 0.22687,0.03583 0.4239,0.07762 0.59108,0.125379 0.1791,0.04777 0.31643,0.08957 0.41196,0.12538 l -0.30449,1.432908 c -0.17912,-0.09552 -0.45973,-0.191046 -0.84184,-0.286582 -0.38211,-0.10746 -0.84184,-0.161194 -1.37917,-0.161202 -0.4657,8e-6 -0.87169,0.09554 -1.21797,0.286582 -0.34629,0.179121 -0.51944,0.465703 -0.51943,0.859745 -10e-6,0.203002 0.0358,0.382115 0.10747,0.53734 0.0836,0.155238 0.20299,0.298529 0.35822,0.429873 0.16717,0.119415 0.37017,0.232853 0.60899,0.340316 0.23881,0.107473 0.52539,0.220912 0.85974,0.340315 0.44181,0.167178 0.83586,0.334351 1.18215,0.501518 0.34628,0.155237 0.63883,0.34032 0.87766,0.555252 0.25075,0.21494 0.44181,0.47764 0.57316,0.7881 0.13134,0.298525 0.19702,0.668693 0.19703,1.110503 -1e-5,0.859747 -0.32241,1.510525 -0.96722,1.952338 -0.63287,0.441813 -1.54038,0.66272 -2.72252,0.66272 -0.82393,0 -1.46873,-0.07165 -1.93443,-0.214936 -0.46569,-0.13135 -0.78213,-0.232848 -0.9493,-0.304493 l 0.30449,-1.432909 c 0.19106,0.07165 0.49555,0.179115 0.91348,0.322405 0.41793,0.143292 0.97318,0.214937 1.66576,0.214936"
id="path3182" />
<path
d="m 291.81243,-73.626826 c 0.39405,10e-7 0.74033,-0.006 1.03886,-0.01791 0.31046,-0.02388 0.56719,-0.0597 0.77019,-0.107469 l 0,-2.776259 c -0.11942,-0.0597 -0.31644,-0.107464 -0.59107,-0.143291 -0.26271,-0.04776 -0.58511,-0.07164 -0.96722,-0.07165 -0.25076,4e-6 -0.51943,0.01792 -0.80601,0.05373 -0.27464,0.03583 -0.53137,0.113442 -0.77019,0.232847 -0.22688,0.107472 -0.41793,0.262704 -0.57316,0.465695 -0.15523,0.191058 -0.23285,0.447787 -0.23285,0.770189 0,0.597047 0.19105,1.014978 0.57317,1.253794 0.3821,0.226879 0.90153,0.340317 1.55828,0.340316 m -0.14329,-8.34669 c 0.66869,9e-6 1.22991,0.08957 1.68367,0.26867 0.46569,0.167182 0.83586,0.41197 1.1105,0.734366 0.28658,0.310471 0.48957,0.686609 0.60899,1.128415 0.1194,0.429879 0.1791,0.907515 0.17911,1.432908 l 0,5.821189 c -0.1433,0.02388 -0.34629,0.05971 -0.60898,0.107469 -0.25077,0.03582 -0.53735,0.07164 -0.85975,0.107468 -0.32241,0.03582 -0.67466,0.06567 -1.05677,0.08956 -0.37017,0.03582 -0.74034,0.05373 -1.1105,0.05373 -0.52541,0 -1.00901,-0.05373 -1.45082,-0.161202 -0.44182,-0.107468 -0.82393,-0.27464 -1.14633,-0.501518 -0.3224,-0.238817 -0.57316,-0.54928 -0.75227,-0.93139 -0.17912,-0.382107 -0.26868,-0.841831 -0.26867,-1.379174 -10e-6,-0.513455 0.10149,-0.955268 0.30449,-1.32544 0.21493,-0.370164 0.50151,-0.668686 0.85974,-0.895568 0.35823,-0.226872 0.77616,-0.394044 1.2538,-0.501518 0.47763,-0.107462 0.97915,-0.161196 1.50455,-0.161202 0.16717,6e-6 0.34031,0.01195 0.51943,0.03582 0.17911,0.01195 0.34628,0.03583 0.50152,0.07164 0.16717,0.02389 0.31046,0.04777 0.42987,0.07165 0.1194,0.02389 0.20299,0.0418 0.25076,0.05373 l 0,-0.465695 c -1e-5,-0.274635 -0.0299,-0.543305 -0.0896,-0.806011 -0.0597,-0.274634 -0.16718,-0.513452 -0.3224,-0.716454 -0.15524,-0.214929 -0.37017,-0.382101 -0.64481,-0.501518 -0.2627,-0.131342 -0.60899,-0.197017 -1.03886,-0.197025 -0.54928,8e-6 -1.03289,0.0418 -1.45082,0.125379 -0.40599,0.07165 -0.71048,0.14927 -0.91348,0.232848 l -0.19702,-1.379174 c 0.21493,-0.09552 0.57316,-0.185075 1.07468,-0.26867 0.50151,-0.09552 1.04482,-0.143282 1.62993,-0.143291"
id="path3184" />
<path
d="m 302.04849,-72.211829 c -0.75229,0 -1.41501,-0.119409 -1.98816,-0.358227 -0.56123,-0.238818 -1.03887,-0.573163 -1.43291,-1.003036 -0.38211,-0.429871 -0.66869,-0.937359 -0.85975,-1.522465 -0.19105,-0.597042 -0.28658,-1.253791 -0.28658,-1.970249 0,-0.716448 0.1015,-1.373197 0.30449,-1.970248 0.21494,-0.597038 0.51346,-1.110497 0.89557,-1.540377 0.38211,-0.441804 0.8478,-0.78212 1.39709,-1.020947 0.56122,-0.250749 1.18214,-0.376129 1.86278,-0.376138 0.41792,9e-6 0.83585,0.03583 1.25379,0.107468 0.41793,0.07166 0.81795,0.185093 1.20006,0.340316 l -0.37614,1.414996 c -0.25076,-0.119401 -0.54331,-0.214928 -0.87765,-0.286581 -0.32241,-0.07164 -0.6687,-0.10746 -1.03886,-0.107468 -0.9314,8e-6 -1.64785,0.29256 -2.14936,0.877656 -0.48958,0.585111 -0.73437,1.438884 -0.73437,2.561323 0,0.501522 0.0537,0.961247 0.1612,1.379174 0.11941,0.417935 0.29852,0.776162 0.53734,1.074682 0.25076,0.298524 0.56719,0.531371 0.94931,0.698542 0.3821,0.155233 0.8478,0.232849 1.39708,0.232848 0.44181,10e-7 0.84183,-0.04179 1.20006,-0.12538 0.35822,-0.08358 0.63883,-0.173141 0.84184,-0.26867 l 0.23284,1.397086 c -0.0955,0.0597 -0.23285,0.119409 -0.41196,0.179113 -0.17912,0.04776 -0.38211,0.08956 -0.60898,0.12538 -0.22689,0.04776 -0.47168,0.08359 -0.73437,0.107468 -0.25076,0.03582 -0.49555,0.05373 -0.73436,0.05373"
id="path3186" />
<path
d="m 307.8848,-81.740669 3.52853,0 0,1.397086 -3.52853,0 0,4.298724 c -10e-6,0.465699 0.0358,0.853778 0.10746,1.164238 0.0717,0.298525 0.17911,0.537343 0.32241,0.716454 0.14329,0.167175 0.3224,0.286583 0.53734,0.358227 0.21493,0.07165 0.46569,0.10747 0.75228,0.107469 0.50151,10e-7 0.90153,-0.05373 1.20006,-0.161203 0.31045,-0.119407 0.52539,-0.202993 0.64481,-0.250759 l 0.3224,1.379175 c -0.16718,0.08359 -0.45973,0.185084 -0.87766,0.304493 -0.41793,0.131349 -0.89557,0.197024 -1.4329,0.197024 -0.63288,0 -1.15828,-0.07762 -1.5762,-0.232847 -0.406,-0.167173 -0.73437,-0.411961 -0.98513,-0.734366 -0.25076,-0.322403 -0.42987,-0.716452 -0.53734,-1.182149 -0.0955,-0.477633 -0.14329,-1.026914 -0.14329,-1.647844 l 0,-8.310868 1.66576,-0.286581 0,2.883727"
id="path3188" />
<path
d="m 315.19878,-72.426765 -1.66576,0 0,-9.313904 1.66576,0 0,9.313904 m -0.84184,-10.997571 c -0.29852,1.1e-5 -0.55525,-0.09552 -0.77018,-0.286581 -0.203,-0.202984 -0.3045,-0.471654 -0.3045,-0.806011 0,-0.334333 0.1015,-0.597033 0.3045,-0.7881 0.21493,-0.202982 0.47166,-0.304479 0.77018,-0.304493 0.29852,1.4e-5 0.54928,0.101511 0.75228,0.304493 0.21493,0.191067 0.3224,0.453767 0.3224,0.7881 0,0.334357 -0.10747,0.603027 -0.3224,0.806011 -0.203,0.191065 -0.45376,0.286592 -0.75228,0.286581"
id="path3190" />
<path
d="m 326.30214,-77.083717 c -1e-5,0.74034 -0.10748,1.40903 -0.32241,2.006071 -0.21494,0.597048 -0.51943,1.110506 -0.91348,1.540377 -0.38211,0.429873 -0.84184,0.764218 -1.37917,1.003035 -0.53735,0.226877 -1.12245,0.340316 -1.75531,0.340316 -0.63287,0 -1.21798,-0.113439 -1.75531,-0.340316 -0.53735,-0.238817 -1.00304,-0.573162 -1.39709,-1.003035 -0.38211,-0.429871 -0.68063,-0.943329 -0.89557,-1.540377 -0.21494,-0.597041 -0.3224,-1.265731 -0.3224,-2.006071 0,-0.72839 0.10746,-1.391109 0.3224,-1.98816 0.21494,-0.608979 0.51346,-1.128408 0.89557,-1.558288 0.39405,-0.429864 0.85974,-0.758238 1.39709,-0.985124 0.53733,-0.238809 1.12244,-0.358218 1.75531,-0.358227 0.63286,9e-6 1.21796,0.119418 1.75531,0.358227 0.53733,0.226886 0.99706,0.55526 1.37917,0.985124 0.39405,0.42988 0.69854,0.949309 0.91348,1.558288 0.21493,0.597051 0.3224,1.25977 0.32241,1.98816 m -1.7374,0 c -10e-6,-1.050794 -0.23883,-1.880685 -0.71646,-2.489678 -0.4657,-0.620919 -1.10454,-0.931382 -1.91651,-0.93139 -0.81199,8e-6 -1.4568,0.310471 -1.93443,0.93139 -0.4657,0.608993 -0.69854,1.438884 -0.69854,2.489678 0,1.050803 0.23284,1.886665 0.69854,2.507589 0.47763,0.608988 1.12244,0.91348 1.93443,0.913479 0.81197,10e-7 1.45081,-0.304491 1.91651,-0.913479 0.47763,-0.620924 0.71645,-1.456786 0.71646,-2.507589"
id="path3192" />
<path
d="m 328.64572,-81.471998 c 0.38211,-0.09552 0.8896,-0.197016 1.52247,-0.304493 0.63286,-0.107459 1.36126,-0.161193 2.18518,-0.161202 0.74033,9e-6 1.35529,0.107477 1.84487,0.322404 0.48957,0.203004 0.87765,0.495556 1.16424,0.877656 0.29851,0.370176 0.50748,0.817959 0.6269,1.343352 0.1194,0.525406 0.1791,1.104539 0.17911,1.737401 l 0,5.230115 -1.66576,0 0,-4.871888 c 0,-0.573158 -0.0418,-1.062735 -0.12537,-1.468731 -0.0717,-0.405984 -0.19704,-0.734358 -0.37614,-0.985124 -0.17912,-0.250752 -0.41794,-0.429865 -0.71646,-0.537341 -0.29853,-0.119401 -0.66869,-0.179106 -1.1105,-0.179114 -0.17912,8e-6 -0.3642,0.006 -0.55525,0.01791 -0.19106,0.01195 -0.37615,0.02986 -0.55525,0.05373 -0.16718,0.01195 -0.32241,0.02986 -0.4657,0.05373 -0.13135,0.02389 -0.22688,0.0418 -0.28658,0.05373 l 0,7.863084 -1.66576,0 0,-9.045233"
id="path3194" />
<path
d="m 341.09803,-73.626826 c 0.68063,10e-7 1.18214,-0.08956 1.50455,-0.26867 0.33434,-0.179112 0.50152,-0.465694 0.50152,-0.859745 0,-0.405988 -0.16121,-0.728392 -0.4836,-0.967213 -0.32241,-0.238815 -0.85378,-0.507485 -1.59412,-0.806011 -0.35823,-0.143287 -0.70451,-0.286577 -1.03885,-0.429873 -0.32241,-0.155227 -0.60302,-0.33434 -0.84184,-0.53734 -0.23882,-0.20299 -0.42987,-0.447778 -0.57316,-0.734366 -0.14329,-0.286575 -0.21494,-0.638831 -0.21494,-1.056769 0,-0.823915 0.3045,-1.474693 0.91348,-1.952338 0.60899,-0.489567 1.43888,-0.734356 2.48968,-0.734365 0.2627,9e-6 0.5254,0.01792 0.7881,0.05373 0.26269,0.02389 0.50748,0.05971 0.73437,0.107468 0.22687,0.03583 0.42389,0.07762 0.59107,0.125379 0.17911,0.04777 0.31643,0.08957 0.41196,0.12538 l -0.30449,1.432908 c -0.17912,-0.09552 -0.45973,-0.191046 -0.84184,-0.286582 -0.38211,-0.10746 -0.84183,-0.161194 -1.37917,-0.161202 -0.4657,8e-6 -0.87169,0.09554 -1.21797,0.286582 -0.34629,0.179121 -0.51943,0.465703 -0.51943,0.859745 0,0.203002 0.0358,0.382115 0.10747,0.53734 0.0836,0.155238 0.20299,0.298529 0.35822,0.429873 0.16717,0.119415 0.37017,0.232853 0.60899,0.340316 0.23881,0.107473 0.5254,0.220912 0.85975,0.340315 0.4418,0.167178 0.83585,0.334351 1.18214,0.501518 0.34628,0.155237 0.63884,0.34032 0.87766,0.555252 0.25075,0.21494 0.44181,0.47764 0.57316,0.7881 0.13135,0.298525 0.19702,0.668693 0.19703,1.110503 -1e-5,0.859747 -0.32241,1.510525 -0.96721,1.952338 -0.63288,0.441813 -1.54039,0.66272 -2.72253,0.66272 -0.82392,0 -1.46873,-0.07165 -1.93443,-0.214936 -0.46569,-0.13135 -0.78213,-0.232848 -0.9493,-0.304493 l 0.3045,-1.432909 c 0.19105,0.07165 0.49554,0.179115 0.91347,0.322405 0.41793,0.143292 0.97319,0.214937 1.66576,0.214936"
id="path3196" />
<path
d="m 357.50091,-77.065806 c -10e-6,-1.086616 -0.26868,-1.922478 -0.80601,-2.507589 -0.53735,-0.585096 -1.2538,-0.877648 -2.14936,-0.877656 -0.50152,8e-6 -0.89557,0.01792 -1.18215,0.05373 -0.27465,0.03583 -0.49555,0.07762 -0.66272,0.125379 l 0,5.874924 c 0.20299,0.167174 0.49554,0.328376 0.87766,0.483606 0.3821,0.155233 0.80003,0.232849 1.25379,0.232848 0.47763,10e-7 0.88362,-0.08358 1.21797,-0.250759 0.34628,-0.179112 0.62689,-0.41793 0.84184,-0.716454 0.21492,-0.310461 0.37016,-0.668688 0.46569,-1.074681 0.0955,-0.417928 0.14328,-0.865711 0.14329,-1.343352 m 1.7374,0 c -1e-5,0.704517 -0.0955,1.355296 -0.28658,1.952338 -0.17912,0.597047 -0.44779,1.110505 -0.80601,1.540376 -0.35824,0.429873 -0.80005,0.764218 -1.32544,1.003036 -0.51347,0.238818 -1.10454,0.358227 -1.77322,0.358227 -0.53735,0 -1.01498,-0.07165 -1.43291,-0.214936 -0.406,-0.143291 -0.71049,-0.280611 -0.91348,-0.411962 l 0,3.725562 -1.66576,0 0,-12.340922 c 0.39405,-0.09552 0.88363,-0.197016 1.46873,-0.304493 0.59705,-0.119399 1.28365,-0.179104 2.05981,-0.179113 0.71645,9e-6 1.36126,0.113448 1.93443,0.340315 0.57315,0.226886 1.06273,0.54929 1.46873,0.967213 0.40598,0.41794 0.71644,0.931398 0.93139,1.540377 0.22686,0.597051 0.3403,1.271711 0.34031,2.023982"
id="path3198" />
<path
d="m 369.01512,-72.695436 c -0.38211,0.09553 -0.8896,0.197025 -1.52246,0.304493 -0.62093,0.107468 -1.34336,0.161202 -2.16727,0.161202 -0.71646,0 -1.31948,-0.101497 -1.80905,-0.304493 -0.48958,-0.214935 -0.88363,-0.513458 -1.18215,-0.895567 -0.29852,-0.382108 -0.51346,-0.829891 -0.64481,-1.343352 -0.13135,-0.525396 -0.19703,-1.10453 -0.19702,-1.737401 l 0,-5.230115 1.66575,0 0,4.871888 c 0,1.134389 0.17911,1.94637 0.53734,2.435944 0.35823,0.489579 0.96124,0.734367 1.80905,0.734366 0.17911,10e-7 0.36419,-0.006 0.55525,-0.01791 0.19105,-0.01194 0.37016,-0.02388 0.53734,-0.03582 0.16717,-0.02388 0.31643,-0.04179 0.44779,-0.05373 0.14328,-0.02388 0.24478,-0.04776 0.30449,-0.07164 l 0,-7.863084 1.66575,0 0,9.045233"
id="path3200" />
<path
d="m 373.55061,-81.328707 c 0.203,-0.131341 0.50749,-0.268662 0.91348,-0.411962 0.41793,-0.143281 0.89557,-0.214926 1.43291,-0.214936 0.66869,1e-5 1.25976,0.119419 1.77322,0.358227 0.5254,0.238827 0.96721,0.573172 1.32545,1.003036 0.35821,0.42988 0.62688,0.943338 0.80601,1.540376 0.19104,0.597051 0.28657,1.2538 0.28658,1.970249 -10e-6,0.752281 -0.11345,1.432911 -0.34032,2.041894 -0.21494,0.597047 -0.52541,1.104535 -0.93139,1.522465 -0.406,0.417932 -0.89557,0.740336 -1.46873,0.967213 -0.57317,0.226877 -1.21798,0.340316 -1.93443,0.340316 -0.77616,0 -1.46276,-0.05373 -2.0598,-0.161202 -0.59705,-0.107468 -1.08662,-0.214936 -1.46873,-0.322405 l 0,-13.343957 1.66575,-0.286582 0,4.997268 m 0,7.451122 c 0.16717,0.04776 0.40002,0.09553 0.69855,0.143291 0.31046,0.03582 0.69256,0.05374 1.14632,0.05373 0.89557,10e-7 1.61202,-0.292551 2.14937,-0.877656 0.53733,-0.597043 0.806,-1.438875 0.80601,-2.525501 -1e-5,-0.477631 -0.0478,-0.925414 -0.14329,-1.343351 -0.0955,-0.417926 -0.25077,-0.776152 -0.4657,-1.074682 -0.21494,-0.310456 -0.49555,-0.549273 -0.84183,-0.716454 -0.33435,-0.179105 -0.74034,-0.268662 -1.21798,-0.26867 -0.45375,8e-6 -0.87169,0.07762 -1.25379,0.232848 -0.38211,0.155239 -0.67466,0.316441 -0.87766,0.483606 l 0,5.892835"
id="path3202" />
<path
d="m 385.24392,-72.247652 c -1.02692,-0.02388 -1.75531,-0.244788 -2.18518,-0.66272 -0.42987,-0.417931 -0.64481,-1.068709 -0.64481,-1.952337 l 0,-11.176684 1.66576,-0.286582 0,11.194595 c -1e-5,0.274644 0.0239,0.50152 0.0716,0.680632 0.0478,0.179115 0.12538,0.322406 0.23285,0.429872 0.10746,0.10747 0.25076,0.191056 0.42987,0.250759 0.17911,0.04776 0.40002,0.08956 0.66272,0.12538 l -0.23285,1.397085"
id="path3204" />
<path
d="m 389.01314,-72.426765 -1.66576,0 0,-9.313904 1.66576,0 0,9.313904 m -0.84184,-10.997571 c -0.29852,1.1e-5 -0.55525,-0.09552 -0.77018,-0.286581 -0.203,-0.202984 -0.3045,-0.471654 -0.3045,-0.806011 0,-0.334333 0.1015,-0.597033 0.3045,-0.7881 0.21493,-0.202982 0.47166,-0.304479 0.77018,-0.304493 0.29852,1.4e-5 0.54928,0.101511 0.75228,0.304493 0.21493,0.191067 0.3224,0.453767 0.32241,0.7881 -1e-5,0.334357 -0.10748,0.603027 -0.32241,0.806011 -0.203,0.191065 -0.45376,0.286592 -0.75228,0.286581"
id="path3206" />
<path
d="m 395.94317,-72.211829 c -0.75228,0 -1.415,-0.119409 -1.98816,-0.358227 -0.56123,-0.238818 -1.03886,-0.573163 -1.43291,-1.003036 -0.38211,-0.429871 -0.66869,-0.937359 -0.85974,-1.522465 -0.19106,-0.597042 -0.28659,-1.253791 -0.28659,-1.970249 0,-0.716448 0.1015,-1.373197 0.3045,-1.970248 0.21493,-0.597038 0.51345,-1.110497 0.89557,-1.540377 0.3821,-0.441804 0.8478,-0.78212 1.39708,-1.020947 0.56122,-0.250749 1.18215,-0.376129 1.86278,-0.376138 0.41793,9e-6 0.83586,0.03583 1.2538,0.107468 0.41792,0.07166 0.81794,0.185093 1.20006,0.340316 l -0.37614,1.414996 c -0.25077,-0.119401 -0.54332,-0.214928 -0.87766,-0.286581 -0.32241,-0.07164 -0.66869,-0.10746 -1.03886,-0.107468 -0.93139,8e-6 -1.64784,0.29256 -2.14936,0.877656 -0.48958,0.585111 -0.73437,1.438884 -0.73436,2.561323 -10e-6,0.501522 0.0537,0.961247 0.1612,1.379174 0.1194,0.417935 0.29852,0.776162 0.53734,1.074682 0.25075,0.298524 0.56719,0.531371 0.9493,0.698542 0.3821,0.155233 0.8478,0.232849 1.39709,0.232848 0.4418,10e-7 0.84182,-0.04179 1.20006,-0.12538 0.35822,-0.08358 0.63883,-0.173141 0.84183,-0.26867 l 0.23285,1.397086 c -0.0955,0.0597 -0.23286,0.119409 -0.41196,0.179113 -0.17912,0.04776 -0.38212,0.08956 -0.60899,0.12538 -0.22688,0.04776 -0.47167,0.08359 -0.73437,0.107468 -0.25076,0.03582 -0.49555,0.05373 -0.73436,0.05373"
id="path3208" />
<path
d="m 410.81518,-77.065806 c -10e-6,-1.086616 -0.26868,-1.922478 -0.80601,-2.507589 -0.53735,-0.585096 -1.2538,-0.877648 -2.14936,-0.877656 -0.50152,8e-6 -0.89557,0.01792 -1.18215,0.05373 -0.27465,0.03583 -0.49555,0.07762 -0.66272,0.125379 l 0,5.874924 c 0.20299,0.167174 0.49554,0.328376 0.87766,0.483606 0.3821,0.155233 0.80003,0.232849 1.25379,0.232848 0.47763,10e-7 0.88362,-0.08358 1.21797,-0.250759 0.34628,-0.179112 0.62689,-0.41793 0.84184,-0.716454 0.21492,-0.310461 0.37016,-0.668688 0.46569,-1.074681 0.0955,-0.417928 0.14328,-0.865711 0.14329,-1.343352 m 1.7374,0 c -10e-6,0.704517 -0.0955,1.355296 -0.28658,1.952338 -0.17912,0.597047 -0.44779,1.110505 -0.80601,1.540376 -0.35824,0.429873 -0.80005,0.764218 -1.32544,1.003036 -0.51347,0.238818 -1.10454,0.358227 -1.77322,0.358227 -0.53735,0 -1.01498,-0.07165 -1.43291,-0.214936 -0.406,-0.143291 -0.71049,-0.280611 -0.91348,-0.411962 l 0,3.725562 -1.66576,0 0,-12.340922 c 0.39405,-0.09552 0.88363,-0.197016 1.46873,-0.304493 0.59705,-0.119399 1.28365,-0.179104 2.05981,-0.179113 0.71645,9e-6 1.36126,0.113448 1.93443,0.340315 0.57315,0.226886 1.06273,0.54929 1.46873,0.967213 0.40598,0.41794 0.71644,0.931398 0.93139,1.540377 0.22686,0.597051 0.3403,1.271711 0.34031,2.023982"
id="path3210" />
<path
d="m 418.06649,-73.626826 c 0.39405,10e-7 0.74033,-0.006 1.03886,-0.01791 0.31046,-0.02388 0.56719,-0.0597 0.77019,-0.107469 l 0,-2.776259 c -0.11942,-0.0597 -0.31644,-0.107464 -0.59108,-0.143291 -0.2627,-0.04776 -0.58511,-0.07164 -0.96721,-0.07165 -0.25076,4e-6 -0.51943,0.01792 -0.80601,0.05373 -0.27464,0.03583 -0.53137,0.113442 -0.77019,0.232847 -0.22688,0.107472 -0.41793,0.262704 -0.57316,0.465695 -0.15524,0.191058 -0.23285,0.447787 -0.23285,0.770189 0,0.597047 0.19105,1.014978 0.57316,1.253794 0.38211,0.226879 0.90154,0.340317 1.55829,0.340316 m -0.14329,-8.34669 c 0.66869,9e-6 1.22991,0.08957 1.68367,0.26867 0.46569,0.167182 0.83585,0.41197 1.1105,0.734366 0.28658,0.310471 0.48957,0.686609 0.60899,1.128415 0.1194,0.429879 0.1791,0.907515 0.17911,1.432908 l 0,5.821189 c -0.1433,0.02388 -0.34629,0.05971 -0.60898,0.107469 -0.25077,0.03582 -0.53735,0.07164 -0.85975,0.107468 -0.32241,0.03582 -0.67467,0.06567 -1.05677,0.08956 -0.37017,0.03582 -0.74034,0.05373 -1.1105,0.05373 -0.52541,0 -1.00901,-0.05373 -1.45082,-0.161202 -0.44182,-0.107468 -0.82393,-0.27464 -1.14633,-0.501518 -0.3224,-0.238817 -0.57316,-0.54928 -0.75228,-0.93139 -0.17911,-0.382107 -0.26867,-0.841831 -0.26867,-1.379174 0,-0.513455 0.1015,-0.955268 0.3045,-1.32544 0.21493,-0.370164 0.50151,-0.668686 0.85974,-0.895568 0.35823,-0.226872 0.77616,-0.394044 1.2538,-0.501518 0.47763,-0.107462 0.97915,-0.161196 1.50455,-0.161202 0.16717,6e-6 0.34031,0.01195 0.51943,0.03582 0.17911,0.01195 0.34628,0.03583 0.50152,0.07164 0.16716,0.02389 0.31045,0.04777 0.42987,0.07165 0.1194,0.02389 0.20299,0.0418 0.25076,0.05373 l 0,-0.465695 c -10e-6,-0.274635 -0.0299,-0.543305 -0.0896,-0.806011 -0.0597,-0.274634 -0.16718,-0.513452 -0.3224,-0.716454 -0.15524,-0.214929 -0.37018,-0.382101 -0.64481,-0.501518 -0.26271,-0.131342 -0.60899,-0.197017 -1.03886,-0.197025 -0.54928,8e-6 -1.03289,0.0418 -1.45082,0.125379 -0.40599,0.07165 -0.71048,0.14927 -0.91348,0.232848 l -0.19702,-1.379174 c 0.21493,-0.09552 0.57316,-0.185075 1.07468,-0.26867 0.50151,-0.09552 1.04482,-0.143282 1.62993,-0.143291"
id="path3212" />
<path
d="m 427.69356,-81.937693 c 0.14328,9e-6 0.30449,0.01195 0.4836,0.03582 0.19105,0.01195 0.37614,0.03583 0.55526,0.07165 0.1791,0.02389 0.34031,0.05374 0.4836,0.08956 0.15523,0.02389 0.26867,0.04777 0.34032,0.07165 l -0.28658,1.450819 c -0.13136,-0.04775 -0.35227,-0.101489 -0.66272,-0.161202 -0.29853,-0.07164 -0.68661,-0.10746 -1.16424,-0.107468 -0.31047,8e-6 -0.62093,0.03583 -0.93139,0.107468 -0.29853,0.05971 -0.49555,0.101506 -0.59108,0.12538 l 0,7.827261 -1.66575,0 0,-8.919854 c 0.39405,-0.143282 0.88362,-0.274631 1.46873,-0.39405 0.5851,-0.13134 1.24185,-0.197015 1.97025,-0.197024"
id="path3214" />
<path
d="m 432.7395,-81.740669 3.52854,0 0,1.397086 -3.52854,0 0,4.298724 c 0,0.465699 0.0358,0.853778 0.10747,1.164238 0.0716,0.298525 0.17911,0.537343 0.3224,0.716454 0.14329,0.167175 0.32241,0.286583 0.53735,0.358227 0.21493,0.07165 0.46569,0.10747 0.75227,0.107469 0.50151,10e-7 0.90153,-0.05373 1.20006,-0.161203 0.31046,-0.119407 0.5254,-0.202993 0.64481,-0.250759 l 0.32241,1.379175 c -0.16718,0.08359 -0.45974,0.185084 -0.87766,0.304493 -0.41794,0.131349 -0.89557,0.197024 -1.43291,0.197024 -0.63287,0 -1.15827,-0.07762 -1.5762,-0.232847 -0.40599,-0.167173 -0.73437,-0.411961 -0.98512,-0.734366 -0.25076,-0.322403 -0.42988,-0.716452 -0.53734,-1.182149 -0.0955,-0.477633 -0.14329,-1.026914 -0.14329,-1.647844 l 0,-8.310868 1.66575,-0.286581 0,2.883727"
id="path3216" />
<path
d="m 441.54016,-73.626826 c 0.39404,10e-7 0.74033,-0.006 1.03885,-0.01791 0.31046,-0.02388 0.56719,-0.0597 0.77019,-0.107469 l 0,-2.776259 c -0.11941,-0.0597 -0.31644,-0.107464 -0.59107,-0.143291 -0.26271,-0.04776 -0.58511,-0.07164 -0.96722,-0.07165 -0.25076,4e-6 -0.51943,0.01792 -0.80601,0.05373 -0.27464,0.03583 -0.53137,0.113442 -0.77018,0.232847 -0.22688,0.107472 -0.41794,0.262704 -0.57317,0.465695 -0.15523,0.191058 -0.23285,0.447787 -0.23285,0.770189 0,0.597047 0.19106,1.014978 0.57317,1.253794 0.3821,0.226879 0.90153,0.340317 1.55829,0.340316 m -0.1433,-8.34669 c 0.66869,9e-6 1.22991,0.08957 1.68367,0.26867 0.46569,0.167182 0.83586,0.41197 1.11051,0.734366 0.28657,0.310471 0.48956,0.686609 0.60898,1.128415 0.1194,0.429879 0.17911,0.907515 0.17912,1.432908 l 0,5.821189 c -0.1433,0.02388 -0.3463,0.05971 -0.60899,0.107469 -0.25077,0.03582 -0.53735,0.07164 -0.85975,0.107468 -0.32241,0.03582 -0.67466,0.06567 -1.05677,0.08956 -0.37017,0.03582 -0.74034,0.05373 -1.1105,0.05373 -0.5254,0 -1.00901,-0.05373 -1.45082,-0.161202 -0.44181,-0.107468 -0.82392,-0.27464 -1.14633,-0.501518 -0.3224,-0.238817 -0.57316,-0.54928 -0.75227,-0.93139 -0.17912,-0.382107 -0.26867,-0.841831 -0.26867,-1.379174 0,-0.513455 0.10149,-0.955268 0.30449,-1.32544 0.21494,-0.370164 0.50152,-0.668686 0.85975,-0.895568 0.35822,-0.226872 0.77615,-0.394044 1.25379,-0.501518 0.47763,-0.107462 0.97915,-0.161196 1.50455,-0.161202 0.16717,6e-6 0.34031,0.01195 0.51943,0.03582 0.17911,0.01195 0.34628,0.03583 0.50152,0.07164 0.16717,0.02389 0.31046,0.04777 0.42987,0.07165 0.11941,0.02389 0.20299,0.0418 0.25076,0.05373 l 0,-0.465695 c 0,-0.274635 -0.0299,-0.543305 -0.0895,-0.806011 -0.0597,-0.274634 -0.16718,-0.513452 -0.32241,-0.716454 -0.15524,-0.214929 -0.37017,-0.382101 -0.64481,-0.501518 -0.2627,-0.131342 -0.60899,-0.197017 -1.03886,-0.197025 -0.54928,8e-6 -1.03289,0.0418 -1.45082,0.125379 -0.40599,0.07165 -0.71048,0.14927 -0.91347,0.232848 l -0.19703,-1.379174 c 0.21493,-0.09552 0.57316,-0.185075 1.07468,-0.26867 0.50152,-0.09552 1.04483,-0.143282 1.62993,-0.143291"
id="path3218" />
<path
d="m 453.56734,-73.358156 c -0.1433,0.09553 -0.42391,0.220908 -0.84183,0.376139 -0.406,0.143291 -0.88363,0.214936 -1.43291,0.214936 -0.56123,0 -1.0926,-0.08956 -1.59411,-0.26867 -0.48958,-0.179113 -0.91945,-0.453754 -1.28962,-0.823923 -0.37017,-0.382107 -0.66272,-0.853772 -0.87765,-1.414996 -0.21494,-0.561219 -0.32241,-1.229909 -0.32241,-2.006072 0,-0.680626 0.1015,-1.301552 0.3045,-1.862781 0.20299,-0.573155 0.49554,-1.062732 0.87765,-1.46873 0.39405,-0.417923 0.87168,-0.740327 1.43291,-0.967213 0.56122,-0.238809 1.19409,-0.358218 1.8986,-0.358227 0.77616,9e-6 1.45082,0.05971 2.02399,0.179113 0.58509,0.107477 1.07467,0.208975 1.46873,0.304493 l 0,8.310867 c -1e-5,1.432908 -0.37018,2.471765 -1.11051,3.116576 -0.74034,0.644805 -1.86278,0.967209 -3.36733,0.967213 -0.58511,-4e-6 -1.14036,-0.04777 -1.66576,-0.143291 -0.51346,-0.09553 -0.96124,-0.208969 -1.34335,-0.340316 l 0.3045,-1.450819 c 0.33434,0.131348 0.74033,0.244787 1.21797,0.340315 0.48957,0.107467 0.99706,0.161201 1.52246,0.161203 0.99109,-2e-6 1.70157,-0.197027 2.13145,-0.591075 0.44181,-0.394051 0.66272,-1.020947 0.66272,-1.880692 l 0,-0.39405 m -0.0179,-6.913782 c -0.16718,-0.04775 -0.39406,-0.08955 -0.68063,-0.125379 -0.27465,-0.04776 -0.65078,-0.07164 -1.12842,-0.07165 -0.89557,8e-6 -1.58814,0.29256 -2.07771,0.877657 -0.47764,0.58511 -0.71646,1.361268 -0.71646,2.328475 0,0.537345 0.0657,0.99707 0.19703,1.379175 0.14329,0.382112 0.32837,0.698545 0.55525,0.949301 0.23882,0.250761 0.50749,0.435845 0.80601,0.555252 0.31046,0.119411 0.62689,0.179115 0.9493,0.179114 0.44181,1e-6 0.8478,-0.0597 1.21798,-0.179114 0.37016,-0.131348 0.66271,-0.280609 0.87765,-0.447784 l 0,-5.445051"
id="path3220" />
<path
d="m 457.56379,-77.065806 c 0,-0.823916 0.11941,-1.54037 0.35823,-2.149362 0.23882,-0.620919 0.55525,-1.134378 0.9493,-1.540376 0.39405,-0.405982 0.8478,-0.710475 1.36126,-0.913479 0.51346,-0.202986 1.03886,-0.304484 1.5762,-0.304493 1.25379,9e-6 2.21503,0.394059 2.88373,1.182149 0.66868,0.776166 1.00303,1.964285 1.00304,3.564359 -1e-5,0.07165 -1e-5,0.167177 0,0.286582 -1e-5,0.107472 -0.006,0.20897 -0.0179,0.304493 l -6.37645,0 c 0.0716,0.967216 0.35226,1.701581 0.84184,2.203096 0.48957,0.501519 1.25379,0.752278 2.29265,0.752277 0.5851,10e-7 1.07468,-0.04776 1.46873,-0.143291 0.40598,-0.107467 0.71048,-0.208964 0.91348,-0.304493 l 0.23285,1.397086 c -0.20301,0.107468 -0.56123,0.220906 -1.07468,0.340315 -0.50153,0.119409 -1.07469,0.179114 -1.71949,0.179114 -0.81199,0 -1.5165,-0.119409 -2.11354,-0.358227 -0.58511,-0.250759 -1.06872,-0.591074 -1.45082,-1.020947 -0.38211,-0.429871 -0.66869,-0.937359 -0.85975,-1.522465 -0.17911,-0.597042 -0.26867,-1.247821 -0.26867,-1.952338 m 6.39436,-0.913479 c 0.0119,-0.75227 -0.17912,-1.367226 -0.57317,-1.844869 -0.38211,-0.489569 -0.91348,-0.734357 -1.59411,-0.734365 -0.38211,8e-6 -0.72243,0.07762 -1.02094,0.232847 -0.28659,0.143299 -0.53138,0.334353 -0.73437,0.573164 -0.203,0.238825 -0.3642,0.513465 -0.48361,0.823922 -0.10747,0.310469 -0.17911,0.626903 -0.21493,0.949301 l 4.62113,0 m -0.0179,-7.28992 -2.5255,2.453855 -0.84183,-0.752276 2.29265,-2.758349 1.07468,1.05677"
id="path3222" />
<path
d="m 469.39594,-77.78226 c 0,-1.528428 -0.22091,-2.943424 -0.66272,-4.24499 -0.44182,-1.301548 -1.09259,-2.507577 -1.95234,-3.618093 l 1.18215,-0.806011 c 0.93139,1.134398 1.67769,2.441926 2.23892,3.922586 0.57316,1.468739 0.85974,3.050907 0.85974,4.746508 0,1.695612 -0.28658,3.28375 -0.85974,4.76442 -0.56123,1.46873 -1.30753,2.770287 -2.23892,3.904675 l -1.18215,-0.806011 c 0.85975,-1.110505 1.51052,-2.316535 1.95234,-3.618093 0.44181,-1.301556 0.66272,-2.716552 0.66272,-4.244991"
id="path3224" />
</g>
<path
d="m 235.31497,-245.55238 130.20224,0 0,99.3568 -130.20224,0 z"
id="rect3910-0"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.02182913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 365.52756,-245.57463 130.20224,0 0,99.3568 -130.20224,0 z"
id="rect3910-00"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.02182913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<text
x="8.087534"
y="27.403807"
id="text4168"
xml:space="preserve"
style="font-size:1.5px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="8.087534"
y="27.403807"
id="tspan4170" /></text>
<path
d="m 311.99765,-227.22247 8.99556,0 0,6.22769 -8.99556,0 z"
id="rect3968-3-4"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.03313315;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 319.26334,-226.56891 c 0,0 0.33137,-2.70855 -0.42287,-3.69048 -0.51177,-0.66631 -1.50625,-0.96897 -2.34499,-0.92265 -0.84463,0.0469 -1.87935,0.16127 -2.46033,1.26863 -0.5099,0.97253 -0.42288,3.19075 -0.42288,3.19075 z"
id="path3970-1-8"
style="fill:none;stroke:#000000;stroke-width:1.89407778;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 242.54469,-238.32887 116.03392,0 0,40.14305 -116.03392,0 z"
id="rect4234"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.87529564;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text4083-7-9-0"
style="font-size:24.37884331px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">
<path
d="m 288.12838,-172.45363 c -10e-6,2.08034 0.30066,4.00626 0.90201,5.77779 0.60134,1.77153 1.48711,3.41304 2.6573,4.92453 l -1.60901,1.09704 c -1.2677,-1.54399 -2.29161,-3.31552 -3.07173,-5.31458 -0.76387,-2.01532 -1.14581,-4.17691 -1.14581,-6.48478 0,-2.30785 0.38194,-4.46131 1.14581,-6.46039 0.78012,-2.0153 1.80403,-3.79496 3.07173,-5.33897 l 1.60901,1.09705 c -1.17019,1.51151 -2.05596,3.15301 -2.6573,4.92453 -0.60135,1.77154 -0.90202,3.69746 -0.90201,5.77778"
id="path3135"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 296.49565,-166.48081 c 0,0.43882 -0.14627,0.82075 -0.43882,1.14581 -0.29255,0.32505 -0.69073,0.48757 -1.19456,0.48757 -0.50383,0 -0.90202,-0.16252 -1.19456,-0.48757 -0.29255,-0.32506 -0.43882,-0.70699 -0.43882,-1.14581 0,-0.43882 0.14627,-0.82075 0.43882,-1.14581 0.29254,-0.32504 0.69073,-0.48757 1.19456,-0.48757 0.50383,0 0.90201,0.16253 1.19456,0.48757 0.29255,0.32506 0.43882,0.70699 0.43882,1.14581"
id="path3137"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 302.49513,-166.48081 c 0,0.43882 -0.14627,0.82075 -0.43882,1.14581 -0.29255,0.32505 -0.69073,0.48757 -1.19456,0.48757 -0.50383,0 -0.90202,-0.16252 -1.19456,-0.48757 -0.29255,-0.32506 -0.43882,-0.70699 -0.43882,-1.14581 0,-0.43882 0.14627,-0.82075 0.43882,-1.14581 0.29254,-0.32504 0.69073,-0.48757 1.19456,-0.48757 0.50383,0 0.90201,0.16253 1.19456,0.48757 0.29255,0.32506 0.43882,0.70699 0.43882,1.14581"
id="path3139"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 308.49461,-166.48081 c 0,0.43882 -0.14627,0.82075 -0.43881,1.14581 -0.29255,0.32505 -0.69074,0.48757 -1.19457,0.48757 -0.50383,0 -0.90202,-0.16252 -1.19456,-0.48757 -0.29255,-0.32506 -0.43882,-0.70699 -0.43882,-1.14581 0,-0.43882 0.14627,-0.82075 0.43882,-1.14581 0.29254,-0.32504 0.69073,-0.48757 1.19456,-0.48757 0.50383,0 0.90202,0.16253 1.19457,0.48757 0.29254,0.32506 0.43881,0.70699 0.43881,1.14581"
id="path3141"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
<path
d="m 313.59208,-172.45363 c 0,-2.08032 -0.30068,-4.00624 -0.90202,-5.77778 -0.60135,-1.77152 -1.48711,-3.41302 -2.65729,-4.92453 l 1.609,-1.09705 c 1.2677,1.54401 2.28348,3.32367 3.04736,5.33897 0.78011,1.99908 1.17018,4.15254 1.17018,6.46039 0,2.30787 -0.39007,4.46946 -1.17018,6.48478 -0.76388,1.99906 -1.77966,3.77059 -3.04736,5.31458 l -1.609,-1.09704 c 1.17018,-1.51149 2.05594,-3.153 2.65729,-4.92453 0.60134,-1.77153 0.90202,-3.69745 0.90202,-5.77779"
id="path3143"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
</g>
<path
d="m 242.54469,-192.85086 116.03392,0 0,40.14305 -116.03392,0 z"
id="rect4234-2"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.87529564;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 13.078126,10.052734 c 0,0.115419 -0.09444,0.208985 -0.210938,0.208985 -0.116497,0 -0.210937,-0.09357 -0.210937,-0.208985 0,-0.1154185 0.09444,-0.208984 0.210937,-0.208984 0.116498,0 0.210938,0.093566 0.210938,0.208984 z"
transform="matrix(23.530997,0,0,23.530997,-38.383009,-593.48982)"
id="path4293-3"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 259.99843,-355.95804 -8.36451,10.20289 0,2.4818 3.11619,-0.88327 1.0948,-1.76654 0.80713,-1.47942 1.7894,0.003 0.34881,-1.62775 2.17907,-0.66348 4.50605,-4.32537 z"
id="path4297-3"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 13.078126,10.052734 c 0,0.115419 -0.09444,0.208985 -0.210938,0.208985 -0.116497,0 -0.210937,-0.09357 -0.210937,-0.208985 0,-0.1154185 0.09444,-0.208984 0.210937,-0.208984 0.116498,0 0.210938,0.093566 0.210938,0.208984 z"
transform="matrix(23.530997,0,0,23.530997,-37.806948,-569.05462)"
id="path4293-3-2"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 260.5745,-331.52279 -8.3645,10.20288 0,2.48178 3.11618,-0.88326 1.0948,-1.76653 0.80714,-1.47942 1.78922,0.003 0.3488,-1.62776 2.17908,-0.66348 4.50603,-4.32537 z"
id="path4297-3-0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text3777-0-0-0"
style="font-size:16.97098732px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 438.19017,-341.75933 c 0.65621,-0.26022 1.31242,-0.59398 1.96863,-1.00129 0.66753,-0.40729 1.25585,-0.88814 1.76499,-1.44253 l 1.44253,0 0,11.76089 -2.05349,0 0,-9.0116 c -0.30548,0.23761 -0.69016,0.46954 -1.15403,0.69582 -0.46387,0.22628 -0.91077,0.41296 -1.3407,0.56004 l -0.62793,-1.56133"
id="path3119"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 450.80571,-338.41605 1.88378,-2.90204 2.15532,0 -2.91901,4.19184 c 0.61095,0.79198 1.19362,1.59527 1.74801,2.40988 0.56569,0.80329 1.02956,1.56133 1.39162,2.27411 l -2.2232,0 c -0.10183,-0.21497 -0.2376,-0.45822 -0.4073,-0.72975 -0.15841,-0.28285 -0.33377,-0.57136 -0.5261,-0.86552 -0.18103,-0.30548 -0.37337,-0.6053 -0.57702,-0.89947 -0.20365,-0.29416 -0.40165,-0.57135 -0.59398,-0.83157 -0.396,0.50913 -0.78633,1.07483 -1.171,1.69709 -0.37336,0.61096 -0.6845,1.15403 -0.9334,1.62922 l -2.10441,0 c 0.16971,-0.33942 0.37336,-0.70147 0.61096,-1.08614 0.23759,-0.38468 0.49216,-0.77501 0.76369,-1.171 0.27154,-0.4073 0.54873,-0.80895 0.83158,-1.20494 0.29416,-0.4073 0.58267,-0.79198 0.86552,-1.15403 l -2.93598,-4.25972 2.25714,0 1.88378,2.90204"
id="path3121"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 461.01031,-341.67448 c -0.27154,0.32812 -0.55439,0.67885 -0.84854,1.0522 -0.28286,0.37337 -0.56005,0.76371 -0.83158,1.171 -0.27154,0.40731 -0.53176,0.82593 -0.78067,1.25585 -0.24891,0.41863 -0.47519,0.83724 -0.67884,1.25586 l 3.13963,0 0,-4.73491 m 2.00258,-2.52867 0,7.26358 1.32374,0 0,1.68013 -1.32374,0 0,2.81718 -2.00258,0 0,-2.81718 -5.15918,0 0,-1.45951 c 0.22628,-0.49781 0.5261,-1.06917 0.89947,-1.71407 0.38467,-0.64489 0.80894,-1.30676 1.27282,-1.9856 0.46387,-0.67884 0.95603,-1.34636 1.47648,-2.00258 0.52044,-0.6562 1.04088,-1.25019 1.56133,-1.78195 l 1.95166,0"
id="path3123"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 466.3453,-332.44226 0,-11.76089 7.43329,0 0,1.81589 -5.29494,0 0,3.00387 4.70096,0 0,1.81589 -4.70096,0 0,5.12524 -2.13835,0"
id="path3125"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 476.805,-333.56235 c -1e-5,0.39599 -0.13577,0.71844 -0.40731,0.96735 -0.26022,0.24891 -0.57701,0.37336 -0.95037,0.37336 -0.38468,0 -0.70713,-0.12445 -0.96735,-0.37336 -0.26022,-0.24891 -0.39033,-0.57136 -0.39033,-0.96735 0,-0.39598 0.13011,-0.71843 0.39033,-0.96734 0.26022,-0.26022 0.58267,-0.39033 0.96735,-0.39033 0.37336,0 0.69015,0.13011 0.95037,0.39033 0.27154,0.24891 0.4073,0.57136 0.40731,0.96734"
id="path3127"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
<path
d="m 481.31292,-333.56235 c -1e-5,0.39599 -0.13577,0.71844 -0.40731,0.96735 -0.26022,0.24891 -0.57701,0.37336 -0.95037,0.37336 -0.38468,0 -0.70713,-0.12445 -0.96735,-0.37336 -0.26022,-0.24891 -0.39033,-0.57136 -0.39033,-0.96735 0,-0.39598 0.13011,-0.71843 0.39033,-0.96734 0.26022,-0.26022 0.58267,-0.39033 0.96735,-0.39033 0.37336,0 0.69015,0.13011 0.95037,0.39033 0.27154,0.24891 0.4073,0.57136 0.40731,0.96734"
id="path3129"
style="font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium" />
</g>
<g
id="text4484"
style="font-size:28.12943459px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic">
<path
d="m 459.22929,-525.05621 c -0.95641,0 -1.96907,-0.0469 -3.03798,-0.14065 -1.05017,-0.075 -1.98781,-0.20628 -2.81294,-0.39381 l 4.52884,-18.87485 c 0.84387,-0.18751 1.73464,-0.31879 2.67229,-0.39382 0.93764,-0.075 1.88466,-0.11249 2.84108,-0.11251 0.78761,2e-5 1.58461,0.0563 2.391,0.16877 0.82511,0.11254 1.56585,0.33757 2.22222,0.67511 0.65634,0.31882 1.1908,0.76889 1.60338,1.35021 0.4313,0.56261 0.64696,1.29397 0.64698,2.1941 -2e-5,0.99392 -0.28131,1.93157 -0.84388,2.81294 -0.54386,0.8814 -1.47213,1.59401 -2.78482,2.13784 0.82512,0.33756 1.46271,0.82514 1.9128,1.46273 0.45006,0.63761 0.67509,1.37835 0.67511,2.22222 -2e-5,2.1941 -0.86265,3.89125 -2.58791,5.09143 -1.70653,1.20019 -4.18192,1.80029 -7.42617,1.80029 m -0.30942,-9.02955 -1.4346,5.99157 c 0.26253,0.0375 0.60946,0.075 1.04078,0.11251 0.43131,0.0188 0.90951,0.0281 1.43461,0.0281 0.61883,10e-6 1.26581,-0.0469 1.94093,-0.14064 0.67509,-0.0938 1.28456,-0.27192 1.82841,-0.53446 0.54382,-0.26254 0.99389,-0.6376 1.35021,-1.12518 0.37505,-0.48757 0.56258,-1.1158 0.56259,-1.88467 -1e-5,-0.71261 -0.27193,-1.29395 -0.81575,-1.74403 -0.54385,-0.46881 -1.44399,-0.70322 -2.70043,-0.70323 l -3.20675,0 m 0.6751,-2.72856 2.70043,0 c 0.58133,10e-6 1.14392,-0.0563 1.68777,-0.16877 0.54382,-0.11251 1.01264,-0.29066 1.40647,-0.53446 0.41255,-0.26253 0.74072,-0.58133 0.98453,-0.9564 0.24377,-0.37505 0.36566,-0.8345 0.36568,-1.37835 -2e-5,-0.86262 -0.32819,-1.45334 -0.98453,-1.77215 -0.63762,-0.31879 -1.50025,-0.47819 -2.58791,-0.4782 -0.43133,10e-6 -0.86265,0.0188 -1.29395,0.0563 -0.43133,0.0188 -0.77826,0.0469 -1.04079,0.0844 l -1.2377,5.14768"
id="path3104" />
<path
d="m 474.38446,-525.28125 -3.37553,0 3.51618,-14.71169 3.40366,0 -3.54431,14.71169 m 2.53165,-16.93392 c -0.50633,2e-5 -0.94703,-0.15001 -1.32208,-0.45007 -0.37507,-0.30003 -0.5626,-0.7501 -0.56259,-1.35021 -10e-6,-0.69384 0.23441,-1.26581 0.70324,-1.7159 0.48757,-0.45005 1.04078,-0.67508 1.65963,-0.67511 0.50632,3e-5 0.94702,0.15943 1.32209,0.47821 0.3938,0.30006 0.5907,0.75013 0.59071,1.35021 -1e-5,0.69388 -0.24379,1.26584 -0.73136,1.71589 -0.48759,0.43134 -1.0408,0.647 -1.65964,0.64698"
id="path3106" />
<path
d="m 482.7244,-543.87481 3.54431,-0.56258 -1.06892,4.44445 4.81013,0 -0.6751,2.81294 -4.81014,0 -1.40647,5.82279 c -0.0938,0.41257 -0.1594,0.7595 -0.1969,1.04079 -0.0375,0.26255 -0.0563,0.50634 -0.0563,0.73137 -10e-6,0.22504 0.0187,0.45007 0.0563,0.6751 0.0562,0.20629 0.15001,0.39382 0.28129,0.56259 0.15002,0.15003 0.3563,0.2813 0.61885,0.39381 0.28129,0.0938 0.65634,0.14065 1.12518,0.14065 0.50632,0 0.99389,-0.0656 1.46273,-0.19691 0.46881,-0.13126 0.88137,-0.27191 1.23769,-0.42194 l 0.25317,2.72856 c -0.43133,0.18753 -0.97517,0.36568 -1.63151,0.53446 -0.65636,0.16877 -1.42523,0.25316 -2.30661,0.25316 -1.61276,0 -2.76607,-0.34693 -3.45992,-1.04079 -0.69387,-0.71261 -1.0408,-1.67838 -1.04079,-2.89733 -10e-6,-0.45007 0.0281,-0.90951 0.0844,-1.37834 0.075,-0.48757 0.17815,-1.00328 0.30943,-1.54712 l 2.8692,-12.09566"
id="path3108" />
<path
d="m 490.5835,-530.85088 c 0,-1.27519 0.1969,-2.48476 0.59072,-3.6287 0.41256,-1.16267 0.9939,-2.17533 1.74402,-3.03797 0.75012,-0.88138 1.66901,-1.57524 2.75669,-2.08158 1.08766,-0.50632 2.32536,-0.75948 3.71308,-0.7595 0.73136,2e-5 1.39709,0.0657 1.99719,0.19691 0.61884,0.11253 1.20018,0.29068 1.74403,0.53446 l -1.20957,2.72855 c -0.33756,-0.15001 -0.71262,-0.28128 -1.12517,-0.39381 -0.41258,-0.1125 -0.91891,-0.16876 -1.51899,-0.16878 -0.80639,2e-5 -1.53776,0.16879 -2.1941,0.50633 -0.63761,0.31882 -1.18144,0.75951 -1.63151,1.32209 -0.45007,0.5626 -0.797,1.22833 -1.04079,1.99719 -0.24379,0.76888 -0.36568,1.58463 -0.36568,2.44726 0,0.48758 0.0469,0.93765 0.14065,1.35021 0.11251,0.39382 0.28129,0.75012 0.50633,1.06892 0.24378,0.30005 0.57196,0.53446 0.98453,0.70324 0.41256,0.16878 0.92826,0.25316 1.54712,0.25316 0.63759,0 1.24706,-0.0844 1.82841,-0.25316 0.60008,-0.16878 1.05953,-0.33755 1.37834,-0.50633 l 0.2813,2.78481 c -0.43133,0.20628 -1.0033,0.40319 -1.7159,0.59072 -0.71262,0.20628 -1.519,0.30942 -2.41913,0.30942 -1.03142,0 -1.92218,-0.15002 -2.6723,-0.45007 -0.75012,-0.3188 -1.37834,-0.74074 -1.88467,-1.26582 -0.48758,-0.54384 -0.85326,-1.17206 -1.09705,-1.88468 -0.22503,-0.73136 -0.33755,-1.51898 -0.33755,-2.36287"
id="path3110" />
<path
d="m 508.53755,-524.88744 c -1.74403,0 -3.07549,-0.5157 -3.99438,-1.54712 -0.9189,-1.03141 -1.37834,-2.391 -1.37834,-4.07876 0,-1.08767 0.16877,-2.21285 0.50633,-3.37554 0.33755,-1.16267 0.85326,-2.22221 1.54712,-3.17862 0.69385,-0.95639 1.56586,-1.74401 2.61604,-2.36288 1.05015,-0.61883 2.28785,-0.92825 3.71308,-0.92827 1.74401,2e-5 3.07547,0.51572 3.99438,1.54712 0.91888,1.01267 1.37833,2.36289 1.37834,4.05064 -10e-6,1.10643 -0.16879,2.24099 -0.50633,3.40366 -0.31881,1.16269 -0.82514,2.22223 -1.51899,3.17863 -0.67512,0.9564 -1.54713,1.74402 -2.61603,2.36287 -1.05018,0.61885 -2.29725,0.92827 -3.74122,0.92827 m 2.58791,-12.60198 c -0.73137,10e-6 -1.38773,0.21567 -1.96906,0.64697 -0.5626,0.41258 -1.0408,0.94704 -1.4346,1.60338 -0.37507,0.65636 -0.66574,1.37835 -0.87201,2.16597 -0.20629,0.76887 -0.30943,1.51899 -0.30943,2.25035 0,0.93765 0.17815,1.67839 0.53446,2.22223 0.3563,0.54384 0.98452,0.81575 1.88467,0.81575 0.73136,0 1.37834,-0.20628 1.94094,-0.61885 0.58133,-0.43131 1.05953,-0.96577 1.4346,-1.60338 0.3938,-0.65634 0.69384,-1.37833 0.90014,-2.16596 0.20627,-0.78762 0.30941,-1.53774 0.30942,-2.25036 -10e-6,-0.93763 -0.17816,-1.67838 -0.53446,-2.22222 -0.35632,-0.56258 -0.98454,-0.84387 -1.88467,-0.84388"
id="path3112" />
<path
d="m 521.68807,-525.28125 -3.37553,0 3.51617,-14.71169 3.40367,0 -3.54431,14.71169 m 2.53165,-16.93392 c -0.50634,2e-5 -0.94703,-0.15001 -1.32209,-0.45007 -0.37506,-0.30003 -0.56259,-0.7501 -0.56259,-1.35021 0,-0.69384 0.23441,-1.26581 0.70324,-1.7159 0.48757,-0.45005 1.04078,-0.67508 1.65964,-0.67511 0.50632,3e-5 0.94701,0.15943 1.32208,0.47821 0.3938,0.30006 0.59071,0.75013 0.59072,1.35021 -10e-6,0.69388 -0.2438,1.26584 -0.73137,1.71589 -0.48758,0.43134 -1.04079,0.647 -1.65963,0.64698"
id="path3114" />
<path
d="m 529.32476,-539.3741 c 0.75012,-0.22502 1.60337,-0.4313 2.55978,-0.61884 0.97515,-0.20627 2.03469,-0.30941 3.17863,-0.30943 1.72526,2e-5 2.99108,0.42196 3.79747,1.26583 0.80636,0.84389 1.20955,1.97845 1.20957,3.40366 -2e-5,0.39382 -0.0375,0.81576 -0.11252,1.26582 -0.0563,0.43133 -0.13129,0.8814 -0.22504,1.35022 l -1.85654,7.73559 -3.40366,0 1.74402,-7.36991 c 0.0938,-0.41256 0.18752,-0.8345 0.2813,-1.26583 0.0937,-0.43131 0.15001,-0.84387 0.16878,-1.23769 0.0187,-0.65634 -0.14066,-1.20018 -0.4782,-1.63151 -0.31882,-0.4313 -0.95642,-0.64696 -1.91281,-0.64698 -0.80638,2e-5 -1.50024,0.0844 -2.08157,0.25317 l -2.84108,11.89875 -3.40366,0 3.37553,-14.09285"
id="path3116" />
</g>
<g
id="text4492"
style="font-size:13.12707043px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic">
<path
d="m 483.86925,-511.65102 c -0.13128,0.56009 -0.29756,1.05892 -0.49883,1.49648 -0.20129,0.43757 -0.46383,0.80951 -0.78762,1.1158 -0.31506,0.29755 -0.7045,0.52946 -1.16831,0.69574 -0.45508,0.15752 -1.00642,0.23629 -1.65401,0.23629 -0.50759,0 -0.94516,-0.0656 -1.31271,-0.19691 -0.35881,-0.14002 -0.65198,-0.32818 -0.87951,-0.56446 -0.22754,-0.23629 -0.39819,-0.51633 -0.51196,-0.84014 -0.10502,-0.33255 -0.15753,-0.69135 -0.15752,-1.07642 -10e-6,-0.20127 0.0131,-0.42443 0.0394,-0.66948 0.035,-0.24503 0.0831,-0.48132 0.14439,-0.70886 l 1.24708,-5.2377 1.66713,0 -1.29958,5.42148 c -0.0438,0.16628 -0.0788,0.34131 -0.10501,0.52508 -0.0263,0.17503 -0.0394,0.34569 -0.0394,0.51196 -1e-5,0.19253 0.0219,0.37631 0.0656,0.55134 0.0525,0.16627 0.13564,0.31067 0.24942,0.43319 0.11376,0.12252 0.26253,0.22316 0.44632,0.30192 0.18377,0.07 0.41131,0.10502 0.6826,0.10502 0.63885,0 1.12893,-0.18815 1.47024,-0.56447 0.34129,-0.3763 0.59946,-0.94077 0.77449,-1.69339 l 1.33896,-5.59213 1.66714,0 -1.37834,5.74966"
id="path3071" />
<path
d="m 486.63557,-514.88028 c 0.35006,-0.10501 0.74824,-0.20128 1.19457,-0.2888 0.45507,-0.0963 0.94952,-0.14439 1.48336,-0.14439 0.80512,0 1.39584,0.19691 1.77215,0.59071 0.3763,0.39382 0.56446,0.92328 0.56447,1.58838 -1e-5,0.18378 -0.0175,0.38069 -0.0525,0.59072 -0.0263,0.20128 -0.0613,0.41132 -0.10502,0.6301 l -0.86639,3.60994 -1.58837,0 0.81388,-3.43929 c 0.0437,-0.19253 0.0875,-0.38943 0.13127,-0.59072 0.0437,-0.20128 0.07,-0.39381 0.0788,-0.57759 0.009,-0.30629 -0.0656,-0.56008 -0.22316,-0.76137 -0.14878,-0.20128 -0.44633,-0.30192 -0.89264,-0.30192 -0.37632,0 -0.70012,0.0394 -0.9714,0.11814 l -1.32584,5.55275 -1.58837,0 1.57524,-6.57666"
id="path3073" />
<path
d="m 497.52879,-509.41942 c 0.42006,0 0.75261,-0.0656 0.99765,-0.19691 0.24504,-0.14002 0.36756,-0.35005 0.36756,-0.6301 0,-0.22753 -0.0788,-0.40693 -0.23629,-0.53821 -0.15753,-0.14002 -0.43319,-0.30192 -0.827,-0.4857 -0.21004,-0.0963 -0.40694,-0.1969 -0.59072,-0.30192 -0.17503,-0.10501 -0.32818,-0.22753 -0.45945,-0.36756 -0.13127,-0.14002 -0.23629,-0.30192 -0.31505,-0.4857 -0.0788,-0.19253 -0.11814,-0.42006 -0.11814,-0.68261 0,-0.6826 0.24941,-1.22518 0.74824,-1.62775 0.49883,-0.40256 1.22082,-0.60384 2.16597,-0.60385 0.43756,10e-6 0.827,0.0481 1.16831,0.1444 0.35005,0.0875 0.61259,0.17941 0.78762,0.27567 l -0.56446,1.23394 c -0.14878,-0.0875 -0.36319,-0.17064 -0.64323,-0.24941 -0.28005,-0.0875 -0.57322,-0.13127 -0.87951,-0.13127 -0.14878,0 -0.29755,0.0131 -0.44632,0.0394 -0.14003,0.0263 -0.26692,0.07 -0.38069,0.13127 -0.11377,0.0613 -0.21003,0.14878 -0.28879,0.26254 -0.07,0.10502 -0.10502,0.23629 -0.10502,0.39381 0,0.20129 0.0788,0.36756 0.23629,0.49883 0.16627,0.12252 0.40256,0.2538 0.70886,0.39381 0.28879,0.13128 0.53383,0.25817 0.73512,0.38069 0.20127,0.12252 0.36755,0.26254 0.49882,0.42006 0.13127,0.14878 0.22753,0.31943 0.2888,0.51196 0.0612,0.18378 0.0919,0.40694 0.0919,0.66948 -1e-5,0.3238 -0.0656,0.62573 -0.19691,0.90577 -0.13127,0.27129 -0.3238,0.50758 -0.57759,0.70886 -0.24504,0.19253 -0.55134,0.34568 -0.91889,0.45945 -0.36756,0.11377 -0.78763,0.17065 -1.2602,0.17065 -0.32381,0 -0.61698,-0.0219 -0.87952,-0.0656 -0.25379,-0.0437 -0.47695,-0.0919 -0.66948,-0.14439 -0.19253,-0.0613 -0.35443,-0.12252 -0.4857,-0.18378 -0.13127,-0.0613 -0.23191,-0.11377 -0.30192,-0.15753 l 0.56446,-1.24707 c 0.0613,0.035 0.14878,0.0831 0.26255,0.1444 0.12251,0.0525 0.25816,0.10502 0.40693,0.15752 0.15753,0.0525 0.32818,0.10065 0.51196,0.1444 0.19253,0.035 0.39381,0.0525 0.60385,0.0525"
id="path3075" />
<path
d="m 508.31268,-515.16908 -0.97141,4.08252 c -0.0438,0.20129 -0.0788,0.40257 -0.10501,0.60385 -0.0175,0.20128 -0.0263,0.40256 -0.0263,0.60384 0,0.25379 0.0175,0.50321 0.0525,0.74825 0.0437,0.24503 0.11376,0.4857 0.21003,0.72198 l -1.41772,0.21004 c -0.0525,-0.0963 -0.10065,-0.20128 -0.1444,-0.31505 -0.035,-0.12252 -0.07,-0.24504 -0.10501,-0.36756 -0.21879,0.17503 -0.49009,0.34568 -0.81388,0.51196 -0.32381,0.15752 -0.70012,0.23628 -1.12893,0.23628 -0.38506,0 -0.71324,-0.0569 -0.98453,-0.17065 -0.2713,-0.11377 -0.49446,-0.26692 -0.66948,-0.45945 -0.16628,-0.20128 -0.2888,-0.43319 -0.36756,-0.69573 -0.07,-0.27129 -0.10502,-0.55571 -0.10502,-0.85326 0,-0.38506 0.0525,-0.80075 0.15753,-1.24707 l 0.86639,-3.60995 1.58837,0 -0.85326,3.57057 c -0.11377,0.45507 -0.17065,0.827 -0.17065,1.1158 0,0.14002 0.0131,0.27129 0.0394,0.39381 0.0263,0.12252 0.07,0.23191 0.13127,0.32818 0.07,0.0875 0.1619,0.15752 0.27567,0.21003 0.12252,0.0525 0.27129,0.0788 0.44632,0.0788 0.28879,0 0.54696,-0.0569 0.7745,-0.17065 0.22753,-0.12252 0.43756,-0.28442 0.6301,-0.4857 0.0263,-0.37631 0.0875,-0.76137 0.18378,-1.15518 l 0.91889,-3.88562 1.58838,0"
id="path3077" />
<path
d="m 513.80512,-513.76448 c -0.17503,-0.0612 -0.36319,-0.10939 -0.56446,-0.1444 -0.20129,-0.035 -0.43758,-0.0525 -0.70886,-0.0525 -0.14878,10e-6 -0.30631,0.0131 -0.47258,0.0394 -0.16628,0.0175 -0.3063,0.0438 -0.42006,0.0788 l -1.32584,5.53962 -1.58837,0 1.57524,-6.55041 c 0.36756,-0.12251 0.76575,-0.22753 1.19457,-0.31505 0.42881,-0.0963 0.89263,-0.14439 1.39147,-0.14439 0.10501,0 0.22315,0.009 0.35443,0.0263 0.13126,0.009 0.25816,0.0219 0.38068,0.0394 0.13127,0.0175 0.24941,0.0394 0.35443,0.0656 0.11377,0.0263 0.21003,0.0569 0.2888,0.0919 l -0.45945,1.32583"
id="path3079" />
<path
d="m 515.65932,-508.30362 c -0.21878,-0.89264 -0.41569,-1.9253 -0.59071,-3.09799 -0.17503,-1.18143 -0.2888,-2.43725 -0.34131,-3.76747 l 1.62776,0 c 0.009,0.38507 0.0219,0.80076 0.0394,1.24707 0.0263,0.44633 0.0569,0.89703 0.0919,1.35209 0.035,0.44633 0.0744,0.87952 0.11814,1.29958 0.0525,0.42007 0.10939,0.80076 0.17065,1.14206 0.22754,-0.29755 0.47257,-0.65198 0.73512,-1.06329 0.26254,-0.42007 0.51633,-0.85764 0.76137,-1.31271 0.24503,-0.46382 0.46819,-0.92764 0.66948,-1.39147 0.20128,-0.46382 0.36318,-0.88826 0.4857,-1.27333 l 1.65401,0 c -0.21004,0.60385 -0.47258,1.2252 -0.78762,1.86405 -0.31506,0.63885 -0.65636,1.2602 -1.02391,1.86404 -0.36757,0.60385 -0.74825,1.17706 -1.14206,1.71965 -0.38506,0.54258 -0.75262,1.01516 -1.10267,1.41772 l -1.36522,0"
id="path3081" />
<path
d="m 523.59751,-508.11984 c -0.81389,0 -1.43523,-0.24066 -1.86405,-0.72199 -0.42882,-0.48132 -0.64323,-1.1158 -0.64322,-1.90342 -10e-6,-0.50758 0.0788,-1.03266 0.23628,-1.57525 0.15753,-0.54258 0.39819,-1.03704 0.72199,-1.48336 0.3238,-0.44632 0.73074,-0.81387 1.22082,-1.10268 0.49007,-0.28878 1.06766,-0.43318 1.73277,-0.43319 0.81387,10e-6 1.43522,0.24067 1.86405,0.72199 0.42881,0.47258 0.64322,1.10268 0.64322,1.8903 0,0.51633 -0.0788,1.04579 -0.23628,1.58837 -0.14878,0.54259 -0.38507,1.03704 -0.70887,1.48336 -0.31505,0.44632 -0.72199,0.81388 -1.22081,1.10268 -0.49009,0.28879 -1.07205,0.43319 -1.7459,0.43319 m 1.20769,-5.88093 c -0.34131,10e-6 -0.64761,0.10065 -0.9189,0.30192 -0.26254,0.19254 -0.4857,0.44195 -0.66948,0.74825 -0.17503,0.3063 -0.31068,0.64323 -0.40694,1.01078 -0.0963,0.35881 -0.1444,0.70887 -0.1444,1.05017 0,0.43757 0.0831,0.78325 0.24942,1.03704 0.16627,0.25379 0.45944,0.38068 0.87951,0.38068 0.3413,0 0.64322,-0.0963 0.90577,-0.28879 0.27129,-0.20128 0.49445,-0.4507 0.66948,-0.74825 0.18377,-0.30629 0.3238,-0.64322 0.42007,-1.01078 0.0963,-0.36756 0.14439,-0.71761 0.14439,-1.05017 0,-0.43756 -0.0831,-0.78324 -0.24941,-1.03704 -0.16628,-0.26253 -0.45945,-0.3938 -0.87951,-0.39381"
id="path3083" />
<path
d="m 530.78458,-508.17235 c -0.41132,-0.009 -0.76137,-0.0613 -1.05017,-0.15752 -0.28004,-0.0963 -0.50758,-0.22754 -0.6826,-0.39382 -0.16628,-0.16627 -0.2888,-0.36318 -0.36756,-0.59071 -0.07,-0.22754 -0.10502,-0.47695 -0.10502,-0.74825 0,-0.28004 0.0306,-0.57321 0.0919,-0.87951 0.07,-0.31505 0.1444,-0.62572 0.22316,-0.93202 l 1.52274,-6.3535 1.65401,-0.26255 c -0.27129,1.14644 -0.54259,2.2885 -0.81388,3.42617 -0.27129,1.12893 -0.54696,2.26661 -0.827,3.41304 -0.0438,0.18378 -0.0919,0.36756 -0.1444,0.55133 -0.0525,0.17503 -0.0788,0.35006 -0.0788,0.52509 0,0.14877 0,0.28879 0,0.42006 0.009,0.12252 0.0437,0.23192 0.10502,0.32818 0.07,0.0875 0.17064,0.1619 0.30192,0.22316 0.13127,0.0613 0.30192,0.10064 0.51195,0.11814 l -0.3413,1.31271"
id="path3085" />
<path
d="m 537.80961,-508.11984 c -0.41132,0 -0.76575,-0.0656 -1.06329,-0.19691 -0.29755,-0.14002 -0.54259,-0.32817 -0.73512,-0.56446 -0.18378,-0.23629 -0.31942,-0.51633 -0.40694,-0.84013 -0.0875,-0.3238 -0.13127,-0.67386 -0.13127,-1.05017 0,-0.58634 0.10064,-1.1508 0.30193,-1.69339 0.21003,-0.55133 0.5032,-1.03266 0.87951,-1.44398 0.38506,-0.42006 0.85326,-0.75261 1.4046,-0.99766 0.55133,-0.25378 1.17705,-0.38067 1.87717,-0.38068 0.0875,1e-5 0.19252,0.004 0.31505,0.0131 0.12251,0.009 0.25816,0.0306 0.40694,0.0656 l 0.72199,-3.01922 1.65401,-0.26255 -1.79841,7.44305 c -0.0438,0.20129 -0.0788,0.40694 -0.10502,0.61698 -0.0175,0.20128 -0.0263,0.39381 -0.0263,0.57759 -10e-6,0.23628 0.0219,0.47257 0.0656,0.70886 0.0438,0.23629 0.11376,0.48132 0.21004,0.73511 l -1.41773,0.21004 c -0.0963,-0.18378 -0.17941,-0.40694 -0.24941,-0.66948 -0.21879,0.19253 -0.48571,0.36755 -0.80075,0.52508 -0.31506,0.14877 -0.68262,0.22316 -1.10268,0.22316 m 2.53353,-5.80217 c -0.16629,-0.035 -0.36757,-0.0525 -0.60385,-0.0525 -0.40257,0 -0.77012,0.0875 -1.10267,0.26254 -0.33256,0.16628 -0.61698,0.39381 -0.85326,0.68261 -0.23629,0.28004 -0.42007,0.60384 -0.55134,0.9714 -0.12252,0.36756 -0.18378,0.74824 -0.18378,1.14205 0,0.20129 0.0175,0.38944 0.0525,0.56447 0.0438,0.17503 0.10939,0.32818 0.19691,0.45945 0.0875,0.13127 0.20127,0.23628 0.3413,0.31504 0.14877,0.0788 0.32817,0.11815 0.53821,0.11815 0.28004,0 0.52508,-0.0569 0.73512,-0.17065 0.21878,-0.11377 0.42443,-0.27129 0.61697,-0.47258 0.009,-0.18378 0.0263,-0.37631 0.0525,-0.57759 0.035,-0.20128 0.0744,-0.39818 0.11814,-0.59072 l 0.64323,-2.65167"
id="path3087" />
<path
d="m 549.71935,-515.16908 -0.9714,4.08252 c -0.0438,0.20129 -0.0788,0.40257 -0.10502,0.60385 -0.0175,0.20128 -0.0263,0.40256 -0.0263,0.60384 -10e-6,0.25379 0.0175,0.50321 0.0525,0.74825 0.0438,0.24503 0.11376,0.4857 0.21004,0.72198 l -1.41773,0.21004 c -0.0525,-0.0963 -0.10064,-0.20128 -0.14439,-0.31505 -0.035,-0.12252 -0.07,-0.24504 -0.10502,-0.36756 -0.21879,0.17503 -0.49008,0.34568 -0.81388,0.51196 -0.3238,0.15752 -0.70011,0.23628 -1.12893,0.23628 -0.38506,0 -0.71324,-0.0569 -0.98453,-0.17065 -0.27129,-0.11377 -0.49445,-0.26692 -0.66948,-0.45945 -0.16628,-0.20128 -0.2888,-0.43319 -0.36756,-0.69573 -0.07,-0.27129 -0.10501,-0.55571 -0.10501,-0.85326 0,-0.38506 0.0525,-0.80075 0.15752,-1.24707 l 0.86639,-3.60995 1.58837,0 -0.85326,3.57057 c -0.11377,0.45507 -0.17065,0.827 -0.17065,1.1158 0,0.14002 0.0131,0.27129 0.0394,0.39381 0.0263,0.12252 0.07,0.23191 0.13127,0.32818 0.07,0.0875 0.1619,0.15752 0.27567,0.21003 0.12252,0.0525 0.27129,0.0788 0.44632,0.0788 0.28879,0 0.54696,-0.0569 0.7745,-0.17065 0.22753,-0.12252 0.43756,-0.28442 0.6301,-0.4857 0.0263,-0.37631 0.0875,-0.76137 0.18378,-1.15518 l 0.91889,-3.88562 1.58838,0"
id="path3089" />
<path
d="m 558.31409,-513.76448 c -0.17503,-0.0612 -0.36318,-0.10939 -0.56446,-0.1444 -0.20129,-0.035 -0.43757,-0.0525 -0.70886,-0.0525 -0.14878,10e-6 -0.3063,0.0131 -0.47258,0.0394 -0.16628,0.0175 -0.3063,0.0438 -0.42006,0.0788 l -1.32584,5.53962 -1.58837,0 1.57525,-6.55041 c 0.36755,-0.12251 0.76574,-0.22753 1.19456,-0.31505 0.42881,-0.0963 0.89264,-0.14439 1.39147,-0.14439 0.10501,0 0.22315,0.009 0.35443,0.0263 0.13127,0.009 0.25816,0.0219 0.38069,0.0394 0.13126,0.0175 0.2494,0.0394 0.35443,0.0656 0.11376,0.0263 0.21002,0.0569 0.28879,0.0919 l -0.45945,1.32583"
id="path3091" />
<path
d="m 558.77928,-510.78464 c 0,-0.58634 0.0919,-1.1508 0.27567,-1.69339 0.19253,-0.55133 0.46382,-1.03703 0.81388,-1.4571 0.35881,-0.42881 0.78762,-0.77012 1.28645,-1.02391 0.49883,-0.25379 1.05892,-0.38068 1.68027,-0.38069 0.6651,10e-6 1.18143,0.17066 1.54899,0.51196 0.36755,0.34131 0.55133,0.77888 0.55134,1.3127 -10e-6,0.55135 -0.13565,0.99767 -0.40694,1.33896 -0.2713,0.34131 -0.62573,0.60823 -1.06329,0.80076 -0.42882,0.19253 -0.9189,0.3238 -1.47023,0.39381 -0.54259,0.07 -1.09393,0.11377 -1.65401,0.13127 -0.009,0.0175 -0.0131,0.035 -0.0131,0.0525 l 0,0.13127 c 0,0.79638 0.5032,1.19456 1.50961,1.19456 0.59509,0 1.19018,-0.12252 1.78528,-0.36756 l 0.13127,1.28646 c -0.21004,0.0963 -0.50758,0.19253 -0.89264,0.28879 -0.38506,0.0963 -0.82263,0.1444 -1.3127,0.1444 -0.49008,0 -0.91015,-0.07 -1.2602,-0.21003 -0.35006,-0.14003 -0.63886,-0.33256 -0.86639,-0.57759 -0.21879,-0.24504 -0.38069,-0.52509 -0.4857,-0.84014 -0.10502,-0.3238 -0.15753,-0.66948 -0.15753,-1.03704 m 3.81998,-3.25551 c -0.26254,10e-6 -0.51196,0.0525 -0.74824,0.15753 -0.23629,0.10502 -0.44633,0.24942 -0.6301,0.43319 -0.18378,0.18378 -0.34568,0.40257 -0.4857,0.65635 -0.13128,0.24505 -0.22754,0.51196 -0.2888,0.80075 1.05016,-0.035 1.81153,-0.16189 2.28411,-0.38068 0.48132,-0.21878 0.72199,-0.54696 0.72199,-0.98453 0,-0.17502 -0.0656,-0.33255 -0.1969,-0.47258 -0.12253,-0.14001 -0.34131,-0.21002 -0.65636,-0.21003 m 1.28645,-4.66011 0.85326,1.07642 -2.48101,1.66714 -0.64323,-0.78763 2.27098,-1.95593"
id="path3093" />
<path
d="m 567.31762,-509.41942 c 0.42007,0 0.75262,-0.0656 0.99766,-0.19691 0.24503,-0.14002 0.36755,-0.35005 0.36756,-0.6301 -1e-5,-0.22753 -0.0788,-0.40693 -0.23629,-0.53821 -0.15753,-0.14002 -0.4332,-0.30192 -0.827,-0.4857 -0.21004,-0.0963 -0.40695,-0.1969 -0.59072,-0.30192 -0.17503,-0.10501 -0.32818,-0.22753 -0.45945,-0.36756 -0.13127,-0.14002 -0.23629,-0.30192 -0.31505,-0.4857 -0.0788,-0.19253 -0.11815,-0.42006 -0.11814,-0.68261 -1e-5,-0.6826 0.24941,-1.22518 0.74824,-1.62775 0.49883,-0.40256 1.22081,-0.60384 2.16597,-0.60385 0.43756,10e-6 0.827,0.0481 1.16831,0.1444 0.35004,0.0875 0.61259,0.17941 0.78762,0.27567 l -0.56446,1.23394 c -0.14878,-0.0875 -0.36319,-0.17064 -0.64323,-0.24941 -0.28005,-0.0875 -0.57322,-0.13127 -0.87951,-0.13127 -0.14878,0 -0.29756,0.0131 -0.44632,0.0394 -0.14003,0.0263 -0.26693,0.07 -0.38069,0.13127 -0.11377,0.0613 -0.21004,0.14878 -0.2888,0.26254 -0.07,0.10502 -0.10502,0.23629 -0.10501,0.39381 -10e-6,0.20129 0.0788,0.36756 0.23629,0.49883 0.16627,0.12252 0.40255,0.2538 0.70886,0.39381 0.28879,0.13128 0.53383,0.25817 0.73511,0.38069 0.20128,0.12252 0.36756,0.26254 0.49883,0.42006 0.13127,0.14878 0.22753,0.31943 0.2888,0.51196 0.0612,0.18378 0.0919,0.40694 0.0919,0.66948 -10e-6,0.3238 -0.0656,0.62573 -0.19691,0.90577 -0.13128,0.27129 -0.32381,0.50758 -0.57759,0.70886 -0.24504,0.19253 -0.55134,0.34568 -0.9189,0.45945 -0.36756,0.11377 -0.78762,0.17065 -1.26019,0.17065 -0.32381,0 -0.61698,-0.0219 -0.87952,-0.0656 -0.25379,-0.0437 -0.47695,-0.0919 -0.66948,-0.14439 -0.19253,-0.0613 -0.35443,-0.12252 -0.4857,-0.18378 -0.13127,-0.0613 -0.23191,-0.11377 -0.30192,-0.15753 l 0.56446,-1.24707 c 0.0613,0.035 0.14877,0.0831 0.26254,0.1444 0.12252,0.0525 0.25817,0.10502 0.40694,0.15752 0.15752,0.0525 0.32818,0.10065 0.51196,0.1444 0.19253,0.035 0.39381,0.0525 0.60384,0.0525"
id="path3095" />
<path
d="m 571.39358,-510.78464 c 0,-0.58634 0.0919,-1.1508 0.27567,-1.69339 0.19253,-0.55133 0.46382,-1.03703 0.81388,-1.4571 0.3588,-0.42881 0.78762,-0.77012 1.28645,-1.02391 0.49882,-0.25379 1.05891,-0.38068 1.68027,-0.38069 0.66509,10e-6 1.18142,0.17066 1.54899,0.51196 0.36755,0.34131 0.55133,0.77888 0.55134,1.3127 -10e-6,0.55135 -0.13566,0.99767 -0.40694,1.33896 -0.2713,0.34131 -0.62573,0.60823 -1.0633,0.80076 -0.42882,0.19253 -0.9189,0.3238 -1.47023,0.39381 -0.54259,0.07 -1.09392,0.11377 -1.65401,0.13127 -0.009,0.0175 -0.0131,0.035 -0.0131,0.0525 l 0,0.13127 c 0,0.79638 0.50321,1.19456 1.50962,1.19456 0.59509,0 1.19018,-0.12252 1.78528,-0.36756 l 0.13127,1.28646 c -0.21004,0.0963 -0.50759,0.19253 -0.89264,0.28879 -0.38507,0.0963 -0.82264,0.1444 -1.31271,0.1444 -0.49008,0 -0.91014,-0.07 -1.2602,-0.21003 -0.35005,-0.14003 -0.63885,-0.33256 -0.86638,-0.57759 -0.21879,-0.24504 -0.38069,-0.52509 -0.4857,-0.84014 -0.10502,-0.3238 -0.15753,-0.66948 -0.15753,-1.03704 m 3.81998,-3.25551 c -0.26255,10e-6 -0.51196,0.0525 -0.74825,0.15753 -0.23629,0.10502 -0.44632,0.24942 -0.63009,0.43319 -0.18379,0.18378 -0.34569,0.40257 -0.48571,0.65635 -0.13127,0.24505 -0.22754,0.51196 -0.28879,0.80075 1.05016,-0.035 1.81153,-0.16189 2.28411,-0.38068 0.48132,-0.21878 0.72198,-0.54696 0.72199,-0.98453 -1e-5,-0.17502 -0.0656,-0.33255 -0.19691,-0.47258 -0.12252,-0.14001 -0.34131,-0.21002 -0.65635,-0.21003"
id="path3097" />
<path
d="m 583.9488,-510.96841 c -0.0263,0.0963 -0.0525,0.25379 -0.0788,0.47257 -0.0263,0.21879 -0.0394,0.42444 -0.0394,0.61697 -10e-6,0.25379 0.0219,0.50321 0.0656,0.74825 0.0437,0.23628 0.11377,0.47695 0.21004,0.72198 l -1.41773,0.21004 c -0.10502,-0.21004 -0.18816,-0.4332 -0.24941,-0.66948 -0.21879,0.19253 -0.49008,0.36755 -0.81388,0.52508 -0.31505,0.14877 -0.67386,0.22316 -1.07642,0.22316 -0.41132,0 -0.76575,-0.0656 -1.06329,-0.19691 -0.2888,-0.14002 -0.52509,-0.32817 -0.70886,-0.56446 -0.18378,-0.24504 -0.31943,-0.52946 -0.40694,-0.85326 -0.0875,-0.3238 -0.13127,-0.67385 -0.13127,-1.05017 0,-0.63884 0.11376,-1.23394 0.3413,-1.78528 0.22753,-0.55133 0.54258,-1.02828 0.94515,-1.43085 0.41131,-0.40256 0.89701,-0.7176 1.4571,-0.94515 0.56009,-0.23628 1.17268,-0.35442 1.83779,-0.35443 0.3413,10e-6 0.68261,0.0306 1.02392,0.0919 0.35004,0.0525 0.7001,0.15753 1.05016,0.31505 l -0.94515,3.925 m -0.86638,-2.96672 c -0.16629,-0.035 -0.35444,-0.0525 -0.56447,-0.0525 -0.39382,0 -0.757,0.0875 -1.08955,0.26254 -0.33255,0.16628 -0.62135,0.39382 -0.86638,0.68261 -0.23629,0.28005 -0.42007,0.60385 -0.55134,0.9714 -0.13127,0.36756 -0.19691,0.75262 -0.1969,1.15518 -10e-6,0.20129 0.0175,0.38944 0.0525,0.56447 0.035,0.17503 0.0919,0.32818 0.17066,0.45945 0.0875,0.13127 0.20127,0.23628 0.3413,0.31504 0.14002,0.0788 0.31942,0.11815 0.53821,0.11815 0.28004,0 0.52508,-0.0569 0.73512,-0.17065 0.21877,-0.12252 0.42006,-0.28442 0.60384,-0.48571 0.009,-0.22753 0.0263,-0.44194 0.0525,-0.64322 0.035,-0.20128 0.0788,-0.40256 0.13127,-0.60385 l 0.64323,-2.5729"
id="path3099" />
<path
d="m 592.30542,-515.16908 -0.97141,4.08252 c -0.0438,0.20129 -0.0788,0.40257 -0.10501,0.60385 -0.0175,0.20128 -0.0263,0.40256 -0.0263,0.60384 0,0.25379 0.0175,0.50321 0.0525,0.74825 0.0437,0.24503 0.11376,0.4857 0.21003,0.72198 l -1.41772,0.21004 c -0.0525,-0.0963 -0.10065,-0.20128 -0.1444,-0.31505 -0.035,-0.12252 -0.07,-0.24504 -0.10501,-0.36756 -0.21879,0.17503 -0.49009,0.34568 -0.81388,0.51196 -0.32381,0.15752 -0.70012,0.23628 -1.12893,0.23628 -0.38506,0 -0.71324,-0.0569 -0.98453,-0.17065 -0.2713,-0.11377 -0.49446,-0.26692 -0.66948,-0.45945 -0.16628,-0.20128 -0.2888,-0.43319 -0.36756,-0.69573 -0.07,-0.27129 -0.10502,-0.55571 -0.10502,-0.85326 0,-0.38506 0.0525,-0.80075 0.15753,-1.24707 l 0.86639,-3.60995 1.58837,0 -0.85326,3.57057 c -0.11377,0.45507 -0.17065,0.827 -0.17065,1.1158 0,0.14002 0.0131,0.27129 0.0394,0.39381 0.0263,0.12252 0.07,0.23191 0.13127,0.32818 0.07,0.0875 0.1619,0.15752 0.27567,0.21003 0.12252,0.0525 0.27129,0.0788 0.44632,0.0788 0.28879,0 0.54696,-0.0569 0.7745,-0.17065 0.22753,-0.12252 0.43756,-0.28442 0.6301,-0.4857 0.0263,-0.37631 0.0875,-0.76137 0.18378,-1.15518 l 0.91889,-3.88562 1.58838,0"
id="path3101" />
</g>
<path
d="m 439.94611,-320.45098 -134.57433,67.51911"
id="path4532"
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 305.37483,-253.10963 -9.73806,-51.02014"
id="path4536"
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 295.34805,-305.57618 17.21463,17.28788"
id="path4538"
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 295.36458,-305.60347 -9.95032,21.44036"
id="path4540"
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(10.308652,0,0,9.1411154,303.53267,-523.06436)"
id="path3765-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 412.02429,-357.09847 70.86326,0.16128 c 0,0 0.17065,-10.89295 0.016,-31.37687 -0.0769,-10.38095 -21.66019,-19.82628 -34.50625,-19.66319 -13.2653,0.1684 -36.16727,8.45144 -36.37402,18.52413 -0.5577,27.17808 0,32.3539 -10e-6,32.35391 z"
id="path3767-5"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.24307442;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 15.286788,11.170019 c 0,0.900105 -0.556892,1.629784 -1.243854,1.629784 -0.686961,0 -1.243853,-0.729679 -1.243853,-1.629784 0,-0.900105 0.556892,-1.629784 1.243853,-1.629784 0.686962,0 1.243854,0.729679 1.243854,1.629784 z"
transform="matrix(10.308652,0,0,9.1411154,9.2673885,-523.26315)"
id="path3765-5-5"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<path
d="m 117.75901,-357.29727 70.86325,0.16127 c 0,0 0.17064,-10.89296 0.016,-31.37688 -0.0765,-10.38017 -21.66024,-19.8255 -34.50627,-19.6624 -13.26527,0.16841 -36.16729,8.45144 -36.374,18.52412 -0.55772,27.17807 0,32.35391 -5e-5,32.35393 z"
id="path3767-5-7"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.24307442;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text4542"
style="font-size:21.68868828px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 440.38905,-366.93393 c -0.20244,-0.59282 -0.4121,-1.17842 -0.62897,-1.75678 -0.2169,-0.57837 -0.42656,-1.17119 -0.62898,-1.77848 l -6.33309,0 c -0.20243,0.60729 -0.41209,1.20734 -0.62897,1.80017 -0.20244,0.57836 -0.40486,1.15673 -0.60729,1.73509 l -2.84122,0 c 0.56391,-1.60496 1.0989,-3.08702 1.60497,-4.44618 0.50606,-1.35915 0.99767,-2.64601 1.47483,-3.86059 0.4916,-1.21455 0.97599,-2.37128 1.45314,-3.47019 0.47715,-1.09888 0.96876,-2.18331 1.47483,-3.2533 l 2.58096,0 c 0.50606,1.06999 0.99767,2.15442 1.47483,3.2533 0.47714,1.09891 0.95429,2.25564 1.43145,3.47019 0.4916,1.21458 0.99044,2.50144 1.49652,3.86059 0.52051,1.35916 1.06273,2.84122 1.62665,4.44618 l -2.94966,0 m -4.42449,-12.12398 c -0.33257,0.76635 -0.71574,1.69896 -1.1495,2.79784 -0.41932,1.09891 -0.86033,2.29178 -1.32301,3.57864 l 4.94502,0 c -0.4627,-1.28686 -0.91094,-2.48696 -1.3447,-3.60032 -0.43378,-1.11335 -0.80972,-2.03873 -1.12781,-2.77616"
id="path3062" />
<path
d="m 451.5716,-372.89832 c -10e-6,-1.18564 -0.15183,-2.03873 -0.45546,-2.55926 -0.28919,-0.53498 -0.83864,-0.80248 -1.64834,-0.80249 -0.28919,10e-6 -0.60729,0.0217 -0.9543,0.0651 -0.34703,0.0434 -0.60729,0.0795 -0.7808,0.10844 l 0,9.15263 -2.62433,0 0,-10.97448 c 0.50607,-0.14458 1.16396,-0.28194 1.97367,-0.41208 0.82417,-0.13012 1.69172,-0.19519 2.60265,-0.1952 0.78078,1e-5 1.41698,0.10123 1.9086,0.30364 0.50606,0.20244 0.92537,0.46994 1.25794,0.80248 0.15904,-0.11566 0.36147,-0.23856 0.60729,-0.3687 0.24579,-0.13012 0.52052,-0.2458 0.82417,-0.34702 0.30363,-0.11566 0.62173,-0.20965 0.9543,-0.28196 0.34701,-0.0723 0.69403,-0.10843 1.04106,-0.10844 0.88199,1e-5 1.60494,0.13014 2.16887,0.3904 0.57834,0.24581 1.02658,0.60006 1.34469,1.06274 0.33255,0.44825 0.55666,0.99769 0.67235,1.64834 0.13012,0.63621 0.19518,1.33748 0.1952,2.10381 l 0,6.37647 -2.62433,0 0,-5.96439 c -10e-6,-1.18564 -0.14461,-2.03873 -0.43377,-2.55926 -0.2892,-0.53498 -0.84588,-0.80248 -1.67003,-0.80249 -0.41933,1e-5 -0.81695,0.0723 -1.19288,0.21689 -0.37595,0.13014 -0.6579,0.26027 -0.84586,0.3904 0.11566,0.36148 0.19519,0.74465 0.23858,1.1495 0.0434,0.40486 0.065,0.83863 0.0651,1.30132 l 0,6.26803 -2.62433,0 0,-5.96439"
id="path3064" />
<path
d="m 466.52019,-366.93393 -2.62433,0 0,-11.34318 2.62433,0 0,11.34318 m 0.28195,-14.66155 c 0,0.49162 -0.15905,0.88202 -0.47715,1.17119 -0.3181,0.28919 -0.69404,0.43378 -1.12781,0.43377 -0.44824,1e-5 -0.8314,-0.14458 -1.1495,-0.43377 -0.3181,-0.28917 -0.47715,-0.67957 -0.47715,-1.17119 0,-0.50606 0.15905,-0.90368 0.47715,-1.19288 0.3181,-0.28917 0.70126,-0.43376 1.1495,-0.43377 0.43377,10e-6 0.80971,0.1446 1.12781,0.43377 0.3181,0.2892 0.47715,0.68682 0.47715,1.19288"
id="path3066" />
</g>
<g
id="text4392"
style="font-size:32.77469254px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 152.29631,-387.53096 c -0.76475,2e-5 -1.49672,0.0983 -2.19591,0.29497 -0.6992,0.17482 -1.43116,0.46979 -2.1959,0.88492 l -1.11434,-3.04805 c 0.80844,-0.45882 1.72613,-0.81934 2.75307,-1.08156 1.04879,-0.28402 2.11943,-0.42605 3.21192,-0.42607 1.31098,2e-5 2.39255,0.18574 3.2447,0.55717 0.85213,0.34962 1.52947,0.79754 2.03203,1.34376 0.50253,0.54627 0.85213,1.14713 1.04879,1.80261 0.19663,0.65551 0.29496,1.28915 0.29497,1.90093 -1e-5,0.74291 -0.14204,1.40933 -0.42607,1.99926 -0.26221,0.58996 -0.60088,1.1362 -1.01602,1.63873 -0.41515,0.50256 -0.86307,0.98326 -1.34376,1.44209 -0.4807,0.43701 -0.92863,0.89585 -1.34376,1.37654 -0.41516,0.45885 -0.76475,0.95047 -1.04879,1.47486 -0.26221,0.5244 -0.39331,1.11434 -0.3933,1.76983 -1e-5,0.10926 -1e-5,0.24036 0,0.3933 -1e-5,0.1311 0.0109,0.2622 0.0328,0.39329 l -3.40857,0 c -0.0437,-0.21849 -0.0765,-0.44791 -0.0983,-0.68827 -0.0219,-0.26219 -0.0328,-0.50253 -0.0328,-0.72104 0,-0.72103 0.12017,-1.3656 0.36052,-1.93371 0.24034,-0.56808 0.54624,-1.09247 0.91769,-1.57318 0.37144,-0.48068 0.76474,-0.9286 1.17989,-1.34376 0.43699,-0.41514 0.84121,-0.83028 1.21267,-1.24544 0.37143,-0.41513 0.67733,-0.8412 0.91769,-1.27822 0.24034,-0.43697 0.36051,-0.91767 0.36052,-1.44208 -1e-5,-0.72103 -0.25128,-1.31097 -0.75382,-1.76984 -0.4807,-0.48067 -1.21267,-0.72102 -2.1959,-0.72104 m 2.55642,17.69834 c -10e-6,0.76474 -0.25128,1.38746 -0.75382,1.86815 -0.50255,0.4807 -1.12527,0.72105 -1.86815,0.72105 -0.72105,0 -1.34377,-0.24035 -1.86816,-0.72105 -0.50255,-0.48069 -0.75382,-1.10341 -0.75382,-1.86815 0,-0.76474 0.25127,-1.38746 0.75382,-1.86816 0.52439,-0.50254 1.14711,-0.75381 1.86816,-0.75382 0.74288,1e-5 1.3656,0.25128 1.86815,0.75382 0.50254,0.4807 0.75381,1.10342 0.75382,1.86816"
id="path3059" />
</g>
<path
d="m 413.0696,-349.09113 15.6731,0 c 1.62666,0 2.93621,1.30955 2.93621,2.93621 l 0,14.07714 c 0,1.62666 -1.30955,2.93621 -2.93621,2.93621 l -15.6731,0 c -1.62666,0 -2.93621,-1.30955 -2.93621,-2.93621 l 0,-14.07714 c 0,-1.62666 1.30955,-2.93621 2.93621,-2.93621 z"
id="rect3775-6-5-2"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
<g
id="text3864-0-8"
style="font-size:17.95130157px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">
<path
d="m 420.57327,-343.45048 c -0.41886,1e-5 -0.81978,0.0539 -1.20273,0.16156 -0.38297,0.0958 -0.78388,0.25731 -1.20274,0.48469 l -0.61035,-1.66947 c 0.4428,-0.25131 0.94544,-0.44877 1.50791,-0.5924 0.57444,-0.15556 1.16085,-0.23335 1.75923,-0.23336 0.71805,1e-5 1.31044,0.10173 1.77718,0.30517 0.46673,0.19149 0.83772,0.43683 1.11298,0.736 0.27525,0.2992 0.46673,0.62831 0.57444,0.98732 0.1077,0.35904 0.16156,0.7061 0.16156,1.04118 0,0.4069 -0.0778,0.77191 -0.23336,1.09503 -0.14362,0.32313 -0.32912,0.62232 -0.55649,0.89756 -0.22739,0.27526 -0.47273,0.53855 -0.73601,0.78986 -0.26329,0.23936 -0.50862,0.49068 -0.736,0.75396 -0.22739,0.25132 -0.41887,0.52059 -0.57444,0.8078 -0.14362,0.28723 -0.21542,0.61035 -0.21542,0.96937 0,0.0598 0,0.13165 0,0.21542 0,0.0718 0.006,0.14361 0.018,0.21542 l -1.86693,0 c -0.0239,-0.11968 -0.0419,-0.24534 -0.0539,-0.37698 -0.012,-0.14361 -0.0179,-0.27525 -0.0179,-0.39493 0,-0.39492 0.0658,-0.74797 0.19747,-1.05913 0.13164,-0.31115 0.29918,-0.59837 0.50263,-0.86166 0.20345,-0.26328 0.41886,-0.50861 0.64625,-0.736 0.23935,-0.22738 0.46075,-0.45476 0.6642,-0.68215 0.20344,-0.22738 0.37099,-0.46074 0.50264,-0.7001 0.13163,-0.23935 0.19745,-0.50263 0.19746,-0.78986 -10e-6,-0.39492 -0.13763,-0.71804 -0.41288,-0.96937 -0.26329,-0.26328 -0.6642,-0.39492 -1.20274,-0.39493 m 1.4002,9.6937 c 0,0.41887 -0.13763,0.75994 -0.41288,1.02323 -0.27525,0.26328 -0.61633,0.39493 -1.02322,0.39493 -0.39493,0 -0.73601,-0.13165 -1.02322,-0.39493 -0.27526,-0.26329 -0.41289,-0.60436 -0.41288,-1.02323 -1e-5,-0.41886 0.13762,-0.75993 0.41288,-1.02322 0.28721,-0.27525 0.62829,-0.41288 1.02322,-0.41288 0.40689,0 0.74797,0.13763 1.02322,0.41288 0.27525,0.26329 0.41288,0.60436 0.41288,1.02322"
id="path3055" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 157 KiB

View file

@ -0,0 +1,521 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
height="600"
id="svg2985"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="bitcoin_at_a_glance.svg"
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org/fr/img/blockchain.png"
inkscape:export-xdpi="1687.5"
inkscape:export-ydpi="1687.5">
<defs
id="defs2987" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="-34.270997"
inkscape:cy="328.61538"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(0,568)">
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(13.752843,0,0,12.195225,108.69872,-605.69877)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5.6607151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 253.43812,-375.91326 94.53917,0.21612 c 0,0 0.22823,-14.53236 0.0206,-41.86008 -0.10313,-13.84933 -28.89704,-26.4504 -46.03501,-26.23281 -17.69731,0.22468 -48.25103,11.27509 -48.52679,24.71318 -0.74411,36.25845 0,43.16355 -8e-5,43.16359 z"
id="path3767"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<text
xml:space="preserve"
style="font-size:18.95102882px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="278.75912"
y="-323.85727"
id="text3777"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779"
x="278.75912"
y="-323.85727"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1pY3..</tspan></text>
<text
xml:space="preserve"
style="font-size:18.95102882px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="278.15118"
y="-347.57327"
id="text3777-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-8"
x="278.15118"
y="-347.57327"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1sd9..</tspan></text>
<text
xml:space="preserve"
style="font-size:32.00692368px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="264.40283"
y="-388.15405"
id="text3833"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3835"
x="264.40283"
y="-388.15405">Vous</tspan></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3775-6-5"
width="21.545517"
height="19.949556"
x="115.98463"
y="-348.8031"
ry="2.936208" />
<text
xml:space="preserve"
style="font-size:17.0636425px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="142.50894"
y="-333.14944"
id="text3777-0-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-2-8"
x="142.50894"
y="-333.14944"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1qTu..</tspan></text>
<text
xml:space="preserve"
style="font-size:17.95130157px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="123.1215"
y="-332.28394"
id="text3864-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3866-7"
x="123.1215"
y="-332.28394">?</tspan></text>
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.0257926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910"
width="130.20224"
height="99.356804"
x="104.82307"
y="-245.57314"
ry="0"
rx="0" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3.87819695;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968"
width="33.767715"
height="23.377649"
x="88.690819"
y="-266.22968" />
<path
style="fill:none;stroke:#000000;stroke-width:7.11002731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 115.96473,-263.77639 c 0,0 1.24424,-10.1674 -1.58722,-13.85341 -1.92085,-2.5006 -5.65434,-3.63735 -8.8027,-3.46334 -3.17066,0.17627 -7.054686,0.6029 -9.235624,4.76209 -1.914218,3.65056 -1.587438,11.97743 -1.587438,11.97743 z"
id="path3970"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.91264534;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-6"
width="25.360592"
height="17.557337"
x="222.41246"
y="-260.36218" />
<path
style="fill:none;stroke:#000000;stroke-width:5.33984947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 242.89602,-258.51973 c 0,0 0.93464,-7.63604 -1.19232,-10.40438 -1.44285,-1.87813 -4.24657,-2.73178 -6.61107,-2.60105 -2.38129,0.13126 -5.29829,0.45288 -6.93625,3.57648 -1.43779,2.74169 -1.19231,8.99543 -1.19231,8.99543 z"
id="path3970-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.10738802;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-3"
width="18.349165"
height="12.703269"
x="356.39804"
y="-255.07762" />
<path
style="fill:none;stroke:#000000;stroke-width:3.86354518;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 371.2186,-253.74451 c 0,0 0.67585,-5.52488 -0.86246,-7.52785 -1.04397,-1.35903 -3.07251,-1.97647 -4.78329,-1.88194 -1.72283,0.0937 -3.83352,0.32781 -5.01861,2.5877 -1.04022,1.98375 -0.86244,6.50848 -0.86244,6.50848 z"
id="path3970-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<text
xml:space="preserve"
style="font-size:4px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="6.6307654"
y="18.827772"
id="text4015"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4017"
x="6.6307654"
y="18.827772" /></text>
<text
xml:space="preserve"
style="font-size:15.00236607px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="245.29079"
y="-204.07687"
id="text4023"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4025"
x="245.29079"
y="-204.07687">1x4F..-&gt;1pY3..</tspan></text>
<text
xml:space="preserve"
style="font-size:15.00236511px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="246.2751"
y="-221.02293"
id="text4048"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4050"
x="246.2751"
y="-221.02293">2.00 BTC</tspan></text>
<text
xml:space="preserve"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="145.76254"
y="-184.85458"
id="text4083-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6"
x="145.76254"
y="-184.85458"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<text
xml:space="preserve"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="408.7916"
y="-184.46556"
id="text4083-7-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6-5"
x="408.7916"
y="-184.46556"
style="font-size:33.47885895px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:0.34463671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4129"
sodipodi:cx="16.342493"
sodipodi:cy="12.911432"
sodipodi:rx="14.243867"
sodipodi:ry="13.10525"
d="m 30.58636,12.911432 a 14.243867,13.10525 0 1 1 -28.4877339,0 14.243867,13.10525 0 1 1 28.4877339,0 z"
transform="matrix(20.544021,0,0,21.585044,-35.300849,-542.41263)" />
<text
xml:space="preserve"
style="font-size:41.20232391px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="174.00798"
y="-97.411545"
id="text4131"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4133"
x="174.00798"
y="-97.411545">Chaîne de bloc</tspan></text>
<text
xml:space="preserve"
style="font-size:20.91762543px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="151.66364"
y="-111.86456"
id="text4135"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4137"
x="151.66364"
y="-111.86456">la</tspan></text>
<text
xml:space="preserve"
style="font-size:17.91135216px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="129.31337"
y="-72.426765"
id="text4139"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4141"
x="129.31337"
y="-72.426765">(un journal de transactions public partagé)</tspan></text>
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.02182913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910-0"
width="130.20224"
height="99.356804"
x="235.31497"
y="-245.55238"
ry="0"
rx="0" />
<rect
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:5.02182913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3910-00"
width="130.20224"
height="99.356804"
x="365.52756"
y="-245.57463"
ry="0"
rx="0" />
<text
xml:space="preserve"
style="font-size:1.5px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="8.087534"
y="27.403807"
id="text4168"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4170"
x="8.087534"
y="27.403807" /></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.03313315;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3968-3-4"
width="8.9955578"
height="6.2276945"
x="311.99765"
y="-227.22247" />
<path
style="fill:none;stroke:#000000;stroke-width:1.89407778;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 319.26334,-226.56891 c 0,0 0.33137,-2.70855 -0.42287,-3.69048 -0.51177,-0.66631 -1.50625,-0.96897 -2.34499,-0.92265 -0.84463,0.0469 -1.87935,0.16127 -2.46033,1.26863 -0.5099,0.97253 -0.42288,3.19075 -0.42288,3.19075 z"
id="path3970-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casscc" />
<rect
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.87529564;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4234"
width="116.03392"
height="40.143051"
x="242.54469"
y="-238.32887" />
<text
xml:space="preserve"
style="font-size:24.37884331px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
x="283.95959"
y="-165.16435"
id="text4083-7-9-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4085-6-5-7"
x="283.95959"
y="-165.16435"
style="font-size:24.37884331px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu">(...)</tspan></text>
<rect
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:1.87529564;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4234-2"
width="116.03392"
height="40.143051"
x="242.54469"
y="-192.85086" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4293-3"
sodipodi:cx="12.867188"
sodipodi:cy="10.052734"
sodipodi:rx="0.2109375"
sodipodi:ry="0.20898438"
d="m 13.078126,10.052734 a 0.2109375,0.20898438 0 1 1 -0.421875,0 0.2109375,0.20898438 0 1 1 0.421875,0 z"
transform="matrix(23.530997,0,0,23.530997,-38.383009,-593.48982)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 259.99843,-355.95804 -8.36451,10.20289 0,2.4818 3.11619,-0.88327 1.0948,-1.76654 0.80713,-1.47942 1.7894,0.003 0.34881,-1.62775 2.17907,-0.66348 4.50605,-4.32537 z"
id="path4297-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4293-3-2"
sodipodi:cx="12.867188"
sodipodi:cy="10.052734"
sodipodi:rx="0.2109375"
sodipodi:ry="0.20898438"
d="m 13.078126,10.052734 a 0.2109375,0.20898438 0 1 1 -0.421875,0 0.2109375,0.20898438 0 1 1 0.421875,0 z"
transform="matrix(23.530997,0,0,23.530997,-37.806948,-569.05462)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 260.5745,-331.52279 -8.3645,10.20288 0,2.48178 3.11618,-0.88326 1.0948,-1.76653 0.80714,-1.47942 1.78922,0.003 0.3488,-1.62776 2.17908,-0.66348 4.50603,-4.32537 z"
id="path4297-3-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<text
xml:space="preserve"
style="font-size:16.97098732px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="436.66278"
y="-332.44226"
id="text3777-0-0-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3779-2-8-0"
x="436.66278"
y="-332.44226"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium">1x4F..</tspan></text>
<text
xml:space="preserve"
style="font-size:28.12943459px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic"
x="451.09988"
y="-525.28125"
id="text4484"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4486"
x="451.09988"
y="-525.28125">Bitcoin</tspan></text>
<text
xml:space="preserve"
style="font-size:13.12707043px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium Italic"
x="475.20538"
y="-508.30362"
id="text4492"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="475.20538"
y="-508.30362"
id="tspan4528">Un survol du réseau</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 439.94611,-320.45098 -134.57433,67.51911"
id="path4532"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305.37483,-253.10963 -9.73806,-51.02014"
id="path4536"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 295.34805,-305.57618 17.21463,17.28788"
id="path4538"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:6.56353474;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 295.36458,-305.60347 -9.95032,21.44036"
id="path4540"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765-5"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(10.308652,0,0,9.1411154,303.53267,-523.06436)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.24307442;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 412.02429,-357.09847 70.86326,0.16128 c 0,0 0.17065,-10.89295 0.016,-31.37687 -0.0769,-10.38095 -21.66019,-19.82628 -34.50625,-19.66319 -13.2653,0.1684 -36.16727,8.45144 -36.37402,18.52413 -0.5577,27.17808 0,32.3539 -10e-6,32.35391 z"
id="path3767-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<path
sodipodi:type="arc"
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.97099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3765-5-5"
sodipodi:cx="14.042934"
sodipodi:cy="11.170019"
sodipodi:rx="1.2438533"
sodipodi:ry="1.6297841"
d="m 15.286788,11.170019 a 1.2438533,1.6297841 0 1 1 -2.487707,0 1.2438533,1.6297841 0 1 1 2.487707,0 z"
transform="matrix(10.308652,0,0,9.1411154,9.2673885,-523.26315)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.24307442;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 117.75901,-357.29727 70.86325,0.16127 c 0,0 0.17064,-10.89296 0.016,-31.37688 -0.0765,-10.38017 -21.66024,-19.8255 -34.50627,-19.6624 -13.26527,0.16841 -36.16729,8.45144 -36.374,18.52412 -0.55772,27.17807 0,32.35391 -5e-5,32.35393 z"
id="path3767-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssscc" />
<text
xml:space="preserve"
style="font-size:21.68868828px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="428.61209"
y="-366.93393"
id="text4542"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4544"
x="428.61209"
y="-366.93393">Ami</tspan></text>
<text
xml:space="preserve"
style="font-size:32.77469254px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="146.26576"
y="-367.66949"
id="text4392"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4394"
x="146.26576"
y="-367.66949">?</tspan></text>
<rect
style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3775-6-5-2"
width="21.545517"
height="19.949556"
x="410.13339"
y="-349.09113"
ry="2.936208" />
<text
xml:space="preserve"
style="font-size:17.95130157px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu Medium"
x="417.27023"
y="-332.57199"
id="text3864-0-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3866-7-0"
x="417.27023"
y="-332.57199">?</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

14
fr/index.html Normal file
View file

@ -0,0 +1,14 @@
---
layout: base-fr
title: Bitcoin
---
<h1>Une devise virtuelle P2P libre et ouverte</h1>
<p style="font-size:20px;">Bitcoin est une devise, un protocole et un logiciel qui rend possible :
<ul style="font-size:20px;">
<li style="padding:4px 0px;">Transactions instantanées de pair à pair</li>
<li style="padding:4px 0px;">Paiements internationaux</li>
<li style="padding:4px 0px;">Aucun ou peu de frais de transaction</li>
<li style="padding:4px 0px;">Et bien plus!</li>
</ul>
<p>Bitcoin utilise une technologie pair à pair pour fonctionner sans autorité centrale. Le traitement des transactions et la création des Bitcoins est prise en charge <b>collectivement par le réseau</b>. Par le biais de ses propriétés uniques, le Bitcoin rend possible des usages prometteurs qui ne pouvaient pas être couverts par les systèmes de paiement précédents.</p>
<p>Le logiciel Bitcoin est un <a href="http://www.fsf.org/about/what-is-free-software" target="_blank">logiciel libre</a> développé par la communauté et publié sous la <a href="http://creativecommons.org/licenses/MIT/" target="_blank">licence MIT</a>.</p>

35
fr/ressources.html Normal file
View file

@ -0,0 +1,35 @@
---
layout: base-fr
title: Ressources - Bitcoin
---
<h1>Ressources sur le Bitcoin</h1>
<ul class="ressources">
<li><a href="http://www.weusecoins.com" target="_blank">We Use Coins. Commencez ici!</a></li>
<li><a href="/fr/choisir-votre-porte-monnaie">Choisir votre porte-monnaie</a></li>
<li><a href="https://fr.bitcoin.it/wiki/Main_Page" target="_blank">Wiki Bitcoin</a>
<ul>
<li><a href="https://fr.bitcoin.it/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://fr.bitcoin.it/wiki/Trade" target="_blank">Sites qui acceptent le Bitcoin</a></li>
<li><a href="https://en.bitcoin.it/wiki/Merchant_Howto" target="_blank">Introduction Pour Marchands (anglais)</a></li>
</ul>
</li>
<li><a>Bitcoin Graphiques</a>
<ul>
<li><a href="http://bitcoincharts.com/" target="_blank">Bitcoin Charts - Bourse et marchés</a></li>
<li><a href="http://blockchain.info/charts" target="_blank">Blockchain.info - Statistiques et graphiques</a></li>
</ul>
</li>
<li><a>Bitcoin Nouvelles</a>
<ul>
<li><a href="http://bitcoinmagazine.com/" target="_blank">Bitcoin Magazine (anglais)</a></li>
<li><a href="http://www.bitcoinnews.com/" target="_blank">Bitcoin News (anglais)</a></li>
<li><a href="https://bitcointalk.org/index.php?board=77.0" target="_blank">Bitcoin Forum / Press (anglais)</a></li>
</ul>
</li>
<li><a>Bitcoin Spécification</a>
<ul>
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules" target="_blank">Protocol rules</a></li>
</ul>
</li>
</ul>

30
fr/supporter-bitcoin.html Normal file
View file

@ -0,0 +1,30 @@
---
layout: base-fr
title: Supporter Bitcoin - Bitcoin
---
<h1>Supporter Bitcoin</h1>
<p>Le Bitcoin est un protocole né d'une petite communauté et qui a grandi rapidement. Il y a beaucoup de choses que vous pouvez faire pour aider le Bitcoin à se propager et à s'améliorer.</p>
<h2><img src="/img/ico_multi.svg" alt="Bitcoin" />Utiliser Bitcoin</h2>
<p>Bien entendu, utiliser Bitcoin est la première chose que vous pouvez faire pour aider son développement. Il y a probablement plusieurs cas où il peut déjà vous rendre la vie plus facile. Et vous pouvez vous-même accepter d'être payé avec les Bitcoin.</p>
<h2><img src="/img/ico_network.svg" alt="Réseau" />Devenir le réseau</h2>
<p>Vous pouvez faire partie du réseau Bitcoin en laissant le <a href="/fr/telecharger">logiciel Bitcoin original</a> fonctionner en permanence sur votre ordinateur. Et vous pouvez faire du minage de Bitcoin pour aider le réseau à devenir toujours plus sécuritaire en plus d'aider le traitement des transactions.</p>
<h2><img src="/img/ico_conf.svg" alt="Développement" />Développement</h2>
<p>Le code source du Bitcoin est ouvert. Donc si vous êtes un développeur, vous pouvez utiliser vos super pouvoirs pour faire le bien et <a href="/fr/developpement">améliorer Bitcoin</a>. Mais vous pouvez aussi construire des services ou des logiciels fantastiques qui fonctioneront avec le Bitcoin.</p>
<h2><img src="/img/ico_donate.svg" alt="Don" />Dons</h2>
<p>La manière la plus facile d'aider Bitcoin est de <a href="https://bitcoinfoundation.org/donate" target="_blank">faire un don</a> de quelques Bitcoins ou de rejoindre la fondation Bitcoin. La fondation offre un salaire aux développeurs qui font fonctionner le coeur du réseau Bitcoin, elle organise des conférences et elle fournit d'autres ressources importantes.</p>
<h2><img src="/img/ico_spread.svg" alt="Propager" />Propager</h2>
<p>Parler du Bitcoin à des personnes intéressées. Écrivez à propos du Bitcoin dans votre blog. Dîtes à votre boutique favorite que vous aimeriez pouvoir payer en Bitcoin. Ou soyez créatifs et faîtes-vous imprimer un superbe t-shirt sur le Bitcoin.</p>
<h2><img src="/img/ico_wiki.svg" alt="Wiki" />Wiki</h2>
<p>Le <a href="http://fr.bitcoin.it/" target="_blank">Wiki Bitcoin</a> contient un nombre impressionnant d'informations détaillées. Et le wiki est en constante recherche d'amélioration de la même manière que Wikipedia. Vous pouvez aider à maintenir le wiki à jour et veiller à protéger l'exactitude de chaque information présentée.</p>
<h2><img src="/img/ico_translate.svg" alt="Traduction" />Traduction</h2>
<p>Le logiciel Bitcoin original est déjà traduit dans plusieurs langues. Toutefois, vous pouvez le <a href="https://www.transifex.com/projects/p/bitcoin/" target="_blank">traduire</a> dans de nouvelles langues ainsi que vérifier si vous pouvez améliorer les traductions existantes. Plus de traductions dans le <a href="http://fr.bitcoin.it/" target="_blank">Wiki Bitcoin</a> serait aussi largement apprécié!</p>
<h2><img src="/img/ico_help.svg" alt="Aide" />Aide</h2>
<p>Vous pouvez rejoindre les <a href="/fr/communaute">communautés</a> Bitcoin pour aider et assister les nouveaux utilisateurs. Et vous pouvez discuter à propos du Bitcoin avec d'autres utilisateurs et en apprendre plus à chaque jour.</p>

15
fr/telecharger.html Normal file
View file

@ -0,0 +1,15 @@
---
layout: base-fr
title: Télécharger - Bitcoin
---
<h1>Télécharger Bitcoin-Qt</h1>
<h2>Dernière version : {{ site.DOWNLOAD_VERSION }}</h2>
<p class="download">
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-win32.zip/download">Télécharger pour Windows (zip)</a> <small>~13MB</small><br>
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-win32-setup.exe/download">Télécharger pour Windows (exe)</a> <small>~9MB</small><br>
<img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">Télécharger pour Ubuntu (PPA)</a><br>
<img src="/img/dow-linux.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-linux.tar.gz/download">Télécharger pour Linux (tgz, 32/64-bit)</a> <small>~12MB</small><br>
<img src="/img/dow-osx-uni.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{ site.DOWNLOAD_VERSION }}/bitcoin-{{ site.DOWNLOAD_VERSION }}-osx.dmg/download">Télécharger pour Mac OS X</a> <small>~13MB</small><br>
<img style="width: 16px"> <a href="https://github.com/bitcoin/bitcoin">Code source</a> (GitHub)<br><br>
<img style="width: 16px"> <a href="/en/version-history" style="font-weight:bold;">Voir l'historique des versions (anglais)</a>
</p>

61
fr/vocabulaire.html Normal file
View file

@ -0,0 +1,61 @@
---
layout: base-fr
title: Vocabulaire - Bitcoin
---
<h1>Quelques mots que vous pourriez entendre</h1>
<p>Bitcoin offre une nouvelle approche avec les paiements. De fait, certains mots nouveaux pourraient entrer dans votre dictionnaire. Ne vous en faites pas, même la radio a un jour créé de nouveaux mots.</p>
<h2>Table des matières</h2>
<div class="index">
<a href="#adresse">Adresse</a>
<a href="#chaine-de-bloc">Chaîne de bloc</a>
<a href="#bloc">Bloc</a>
<a href="#btc">BTC</a>
<a href="#confirmation">Confirmation</a>
<a href="#cryptographie">Cryptographie</a>
<a href="#double-depense">Double Dépense</a>
<a href="#taux-de-hash">Taux de Hash</a>
<a href="#minage">Minage</a>
<a href="#p2p">P2P - Pair À Pair</a>
<a href="#cle-privee">Clé Privée</a>
<a href="#signature">Signature</a>
<a href="#porte-monnaie">Porte-Monnaie</a>
</div>
<h2><a name="adresse">Adresse</a></h2>
<p>Une adresse Bitcoin est <b>comme une adresse physique ou une adresse email</b>. Il s'agit de la seule information que vous avez besoin de fournir pour qu'une personne vous paie avec des Bitcoins.</p>
<h2><a name="chaine-de-bloc">Chaîne de bloc</a></h2>
<p>La chaîne de bloc est un <b>journal public de toutes les transactions Bitcoin</b>, en ordre chronologique. Celle-ci est partagée entre tous les utilisateurs du réseau Bitcoin. Et elle est utilisée pour vérifier le solde des adresses Bitcoin et pour empêcher la <a href="#double-depense">double dépense</a>.</p>
<h2><a name="bloc">Bloc</a></h2>
<p>Un bloc est un <b>ajout dans la chaîne de bloc qui contient et confirme plusieurs transactions</b> en attente. Environ chaque 10 minutes, un bloc est ajouté à la <a href="#chaine-de-bloc">chaîne de bloc</a> via le <a href="#minage">minage</a>.</p>
<h2><a name="btc">BTC</a></h2>
<p>BTC est le code ISO non officiel pour le Bitcoin. Il peut être utilisé comme une abbréviation, de la même façon que USD pour le dollar américain.</p>
<h2><a name="confirmation">Confirmation</a></h2>
<p>Une confirmation signifie qu'une transaction a été <b>vérifiée par le réseau et que ses chances d'être renversée sont quasi inexistantes</b>. Une seule confirmation offre un bon niveau de sécurité. Quoi que pour les paiements importants ( ex. 1000 $USD et plus ), vous pouvez attendre qu'une transaction ait accumulé davantage de confirmations - 6 confirmations est la norme la plus courante. Chaque nouvelle confirmation diminue le risque d'un renversement de façon exponentielle.</p>
<h2><a name="cryptographie">Cryptographie</a></h2>
<p>La cryptographie est une branche de la mathématique permettant de créer des <b>preuves mathématiques qui offrent un haut niveau de sécurité</b>. De nos jours, tout commerce ou banque en ligne utilise déjà la cryptographie. Avec le Bitcoin, la cryptographie est utilisée pour empêcher quiconque de dépenser les fonds d'un autre utilisateur et pour empêcher la corruption de la <a href="#chaine-de-bloc">chaîne de bloc</a>. Elle peut aussi être utilisée pour encrypter un porte-monnaie, afin qu'il ne puisse être utilisé qu'avec un mot de passe.</p>
<h2><a name="double-depense">Double Dépense</a></h2>
<p>Si un utilisateur mal intentionné essaie de <b>dépenser ses Bitcoins envers deux destinataires au même moment</b>, il s'agit de double dépense. Le <a href="#minage">minage</a> et la <a href="#chaine-de-bloc">chaîne de bloc</a> existent pour créer un consensus afin de décider laquelle des deux transactions sera confirmée.</p>
<h2><a name="taux-de-hash">Taux De Hash</a></h2>
<p>Le taux de hash est l'<b>unité de mesure de la puissance de calcul du réseau Bitcoin</b>. Le réseau Bitcoin doit faire des calculs mathématiques intensifs pour des raisons de sécurité. Quand le réseau atteint un taux de hash de 10 TH/s, cela signifie qu'il peut faire dix billions de calculs par seconde.</p>
<h2><a name="minage">Minage</a></h2>
<p>Le minage de Bitcoin est le <b>procédé d'utiliser du matériel informatique pour effectuer des calculs mathématiques pour le réseau Bitcoin afin de confirmer des transactions</b> et augmenter la sécurité. Comme récompense pour leurs services, les mineurs de Bitcoin collectent les frais de transaction pour les transactions qu'ils confirment et les Bitcoins nouvellement créés. Le minage est un marché compétitif où les revenus sont divisés en fonction du nombre de calculs effectués. Seulement une petit fraction des utilisateurs du Bitcoin font du minage et il ne s'agit pas d'un moyen facile de gagner de l'argent.</p>
<h2><a name="p2p">P2P</a></h2>
<p>Pair à pair réfère à une forme de <b>système qui fonctionne comme une collectivité organisée</b>. Permettant à chaque individu d'interagir directement avec les autres. Dans le cas du Bitcoin, le réseau est construit de manière à ce que chaque utilisateur diffuse les transactions des autres utilisateurs. Et aucune banque n'est requise en tant que tiers entre les utilisateurs.</p>
<h2><a name="cle-privee">Clé Privée</a></h2>
<p>Une clé privée est une <b>information secrète qui permet de prouver votre droit de dépenser des bitcoins à partir d'une adresse Bitcoin</b> définie grâce à une <a href="#signature">signature</a> cryptographique. Chaque <a href="#adresse">adresse Bitcoin</a> a sa propre clé privée unique. Vos clés privées sont stockées dans votre ordinateur si vous utilisez un porte-monnaie logiciel tandis qu'elles sont stockés sur des serveurs en ligne si vous utilisez un porte-monnaie en ligne. Les clés privées ne doivent jamais être révélées car elles permettent de dépenser les bitcoins des adresses Bitcoin auxquelles elles sont associées.</p>
<h2><a name="signature">Signature</a></h2>
<p>Une signature <a href="#cryptographie">cryptographique</a> est un <b>mécanisme mathématique qui permet de prouver son authenticité</b>. Dans le cas du Bitcoin, une <a href="#adresse">adresse Bitcoin</a> et sa clé privée sont liés par la magie de la mathématique. Quand un logiciel Bitcoin signe une transaction avec la clé privée appropriée, le réseau Bitcoin peut vérifier que la signature correspond à l'adresse Bitcoin dans la transaction. Malgré tout, il n'existe aucun moyen de deviner quelle est la clé privée afin de voler des bitcoins durement gagnés.</p>
<h2><a name="porte-monnaie">Porte-Monnaie</a></h2>
<p>Un porte-monnaie Bitcoin réfère à l'<b>équivalent d'un porte-monnaie physique sur le réseau Bitcoin</b>. Chaque porte-monnaie peut afficher le solde des <a href="#adresse">adresses Bitcoin</a> qu'il contient. De la même façon que vous pouvez compter l'argent dans votre porte-monnaie. Un porte-monnaie Bitcoin partage aussi la similarité de vous permettre de payer un montant spécifique à une personne spécifique. À l'inverse des cartes de crédit où vous êtes chargés par le marchand.</p>

35
fr/vous-devez-savoir.html Normal file
View file

@ -0,0 +1,35 @@
---
layout: base-fr
title: Ce que vous devez savoir - Bitcoin
---
<h1>Ce que vous devez savoir</h1>
<p>Si vous êtes sur le point d'explorer le Bitcoin, il y a certaines choses que vous devez savoir. Bitcoin ne sert pas à échanger des emails ou des images. Il vous permet d'échanger de l'argent et de la valeur. De fait, Bitcoin doit recevoir la même prudence de votre part que votre porte-monnaie.. Voir parfois plus!</p>
<h2><img src="/img/ico_key.svg" alt="Sécurité" />Sécuriser votre porte-monnaie</h2>
<p>Comme votre argent liquide, votre porte-monnaie doit être protégé. Rappelez-vous que vous êtes responsables d'adopter des pratiques pour protéger votre argent. Voici quelques options à considérer.</p>
<div class="box">
<h3>Sauvegarder votre porte-monnaie</h3>
<p>Les services et logiciels Bitcoin vous permettent de sauvegarder votre porte-monnaie ou vos clés privées. Qui peuvent être imprimées sur du papier ou sauvegardées sur une clé USB. Stockés dans un endroit sécuritaire, une sauvegarde peut vous protéger contre des pannes informatiques ou diverses erreurs humaines.</p>
<h3>Encrypter votre porte-monnaie</h3>
<p>Encrypter votre porte-monnaie vous permet d'appliquer un mot de passe contre quiconque tenterait de retirer des fonds. Ce qui peut vous protéger contre le vol et le piratage. Mais pas contre les enregistreurs de frappe. Vous devez vous assurer de ne jamais oublier votre mot de passe sinon votre argent sera perdu. Contrairement à votre banque, vous ne pouvez pas récupérer votre mot de passe avec Bitcoin!</p>
<h3>Soyez prudents avec les porte-monnaie en ligne</h3>
<p>Utiliser un porte-monnaie en ligne est un peu comme utiliser une banque en ligne. Vous accordez votre confiance à une entreprise pour stocker votre argent tandis qu'il ne vous reste qu'à vous souvenir de votre mot de passe et à le protéger. Vous devez choisir ce genre de service avec prudence. À ce jour, aucun de ces services n'offre assez d'assurance et de sécurité pour stocker de la valeur comme une banque.</p>
<h3>Utiliser une sauvegarde hors-ligne pour l'épargne</h3>
<p>Utiliser un porte-monnaie hors-ligne offre le plus haut niveau de sécurité pour l'épargne. Il implique de stocker un porte-monnaie seulement sur papier et sur des clés usb dans différents lieux sécurisés qui ne sont connectés à aucun réseau. Il s'agit d'une bonne protection contre les pannes et les vulnérabilités informatiques, le vol et les erreurs humaines. À ce jour, cette approche requiert encore des connaissances techniques pour être réalisée correctement.</p>
</div>
<h2><img src="/img/ico_market.svg" alt="Volatile" />La valeur du Bitcoin est volatile</h2>
<p>La valeur du Bitcoin peut augmenter ou diminuer de façon imprévisible sur une courte période de temps en raison de sa jeune économie, sa nature inusitée et ses marchés parfois peu liquides. En conséquence, conserver vos économies avec Bitcoin n'est pas recommandé. Bitcoin doit être considéré comme un actif à haut risque et vous ne devriez jamais stocker d'argent avec le Bitcoin que vous n'avez pas les moyens de perdre. Si vous recevez des paiements en Bitcoin, beaucoup de fournisseurs de services vous permettent de transférer vos Bitcoins instantanément dans votre devise.</p>
<h2><img src="/img/ico_irreversible.svg" alt="Irréversible" />Les paiements Bitcoin sont irréversibles</h2>
<p>Toute transaction effectuée avec Bitcoin ne peut être renversée. Elle peut seulement être remboursée par la personne recevant les fonds. Ce qui signifie que vous devez vous assurer de faire commerce avec des entreprises et des personnes que vous connaissez et en qui vous pouvez avoir confiance. Mais ne vous en faites pas, Bitcoin peut détecter les erreurs de frappe et ne vous laissera généralement pas envoyer d'argent vers une adresse invalide.</p>
<h2><img src="/img/ico_anon.svg" alt="Anonyme" />Bitcoin n'est pas anonyme sans efforts</h2>
<p>Toutes les transactions Bitcoin sont stockées de façon publique et permanente sur le réseau. Ce qui signifie que quiconque peut consulter le solde et les transactions de chaque adresse Bitcoin. Toutefois, il n'est pas possible d'associer une adresse Bitcoin avec son propriétaire avant que celui-ci n'en ait fait la démonstration. Pour cette raison, il est recommandé d'utiliser différentes adresses Bitcoin. En fait, vous devriez en utiliser une nouvelle chaque fois que vous recevez un paiement. Cette pratique est spécialement importante pour les utilisations publiques comme les sites web. Vous pouvez aussi cacher l'adresse IP de votre ordinateur afin qu'elle ne puisse pas être enregistrée avec un outil tel que <a href="https://www.torproject.org/" target="_blank">Tor</a>.</p>
<h2><img src="/img/ico_lab.svg" alt="Expérimental" />Bitcoin est encore expérimental</h2>
<p>Bitcoin est une nouvelle devise expérimentale qui est en développement actif. Bien qu'elle devienne de moins en moins expérimentale à chaque jour tandis que son usage augmente, vous devez garder en tête que le Bitcoin est une invention nouvelle qui joue sur un terrain qui n'a jamais été exploré à ce jour. En conséquence, son futur ne peut être prédit par personne.</p>
<h2><img src="/img/ico_invoice.svg" alt="Taxes" />N'oubliez pas de payer vos taxes</h2>
<p>Bitcoin n'est pas une devise officielle. Ceci étant dit, la plupart des juridictions exigent tout de même que vous payiez des taxes sur le revenu, les ventes et les salaires sur tout ce qui a de la valeur, incluant le Bitcoin. Il est de votre responsabilité de vous informer et de vous conformer aux lois en application.</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 998 B

BIN
img/bubble.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

66
img/bubble.svg Normal file
View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="280"
height="280"
id="svg4147"
version="1.1"
inkscape:version="0.48.3.1 r9886"
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:docname="bubble.svg">
<defs
id="defs4149" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="72.237607"
inkscape:cy="129.86938"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata4152">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-772.36218)">
<path
style="fill:#f1f8fb;fill-opacity:1;stroke:#4892b2;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:7.5,2.5;stroke-dashoffset:0;fill-rule:nonzero"
d="M 0.97951451,33.011441 1.0101526,254.92638 141.42136,311.07914 278.92556,257.45176 279.05182,32.746212 z"
id="path4155"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc"
transform="translate(0,740.36218)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
img/but_bitcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

64
img/but_bitcoin.svg Normal file
View file

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32px"
height="32px"
id="svg5494"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="icon-bitcoin.svg"
inkscape:export-filename="/var/www/img/ico-bitcoin.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs5496" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.836083"
inkscape:cx="42.393869"
inkscape:cy="19.372589"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5499">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
d="M 27.081102,13.078581 C 27.552913,9.92374 25.150729,8.2284511 21.866495,7.0971606 L 22.931608,2.8241982 20.33089,2.1759115 19.293433,6.3362716 C 18.60893,6.165722 17.907306,6.0050494 17.208974,5.8460235 l 1.04404,-4.1880169 -2.599071,-0.6482861 -1.066431,4.272303 C 14.021537,5.1529591 13.466098,5.02587 12.926465,4.8915373 l 0.0025,-0.013169 L 9.3421705,3.982818 8.6500943,6.760671 c 0,0 1.9297147,0.4421785 1.8888887,0.4698352 1.053587,0.2630682 1.243564,0.9600825 1.211956,1.5125588 l -1.213195,4.867908 c 0.07244,0.01877 0.16627,0.04478 0.270313,0.08692 -0.08692,-0.02172 -0.179441,-0.04511 -0.274592,-0.06816 l -1.7008532,6.818702 c -0.1290645,0.320028 -0.4560063,0.800398 -1.1922015,0.617997 0.02601,0.03753 -1.8915215,-0.471811 -1.8915215,-0.471811 l -1.2906462,2.976718 3.3846546,0.843857 c 0.6291899,0.157711 1.2471857,0.322333 1.8543163,0.478396 l -1.0756484,4.32202 2.5980859,0.648286 1.06577,-4.275926 c 0.710514,0.192282 1.399298,0.370404 2.073594,0.537989 l -1.062149,4.255841 2.601048,0.648287 1.076635,-4.313788 c 4.43594,0.83892 7.771536,0.500454 9.174786,-3.510757 1.131621,-3.229908 -0.05597,-5.093114 -2.389673,-6.308362 1.699243,-0.391804 2.980011,-1.509927 3.32144,-3.818602 z m -5.942571,8.333559 c -0.804679,3.230239 -6.242513,1.483914 -8.006616,1.045687 l 1.42827,-5.725268 c 1.763114,0.439544 7.417925,1.310731 6.578346,4.679581 z m 0.803362,-8.379982 c -0.732902,2.938197 -5.259714,1.445063 -6.728155,1.078941 l 1.294599,-5.1928765 c 1.468111,0.3661225 6.197736,1.0493085 5.433556,4.1139355 z"
id="path167" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
img/but_involve.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 870 B

65
img/but_involve.svg Normal file
View file

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32px"
height="32px"
id="svg3789"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="icon-involve.svg"
inkscape:export-filename="/var/www/en/img/ico-involve.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3791" />
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="15.836083"
inkscape:cx="1.9774948"
inkscape:cy="25.422394"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata3794">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.77984195999999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 8.0013022,26.990098 c -0.2719595,0.470614 8.6754438,4.597789 9.0608198,3.8516 0.362759,-0.702393 1.000051,-3.3984 1.533258,-3.753955 0.58423,-0.324629 1.226346,-1.152208 1.640432,-1.552002 0.779689,-0.745977 0.873915,-1.046446 1.488615,-1.765113 1.125371,-1.315709 2.268153,-2.770676 3.195057,-4.266508 0.926903,-1.495831 2.842236,-4.177295 2.842236,-4.177295 0,0 1.324596,-1.744598 1.872534,-3.143416 0.127746,-0.326139 -0.315169,-1.183065 -0.639646,-1.346171 -0.347074,-0.174464 -0.749677,0.254424 -0.987896,0.544135 -1.03495,1.258656 -1.954753,2.3485 -2.945088,3.37773 -0.834802,0.867589 -2.814342,2.564608 -2.814342,2.564608 l -0.286928,-0.237514 1.282849,-2.660611 2.024459,-4.391685 c 0,0 1.26831,-2.5530372 1.620955,-3.8935334 0.0967,-0.3676098 -0.281553,-0.8017007 -0.624057,-0.9861231 -0.301222,-0.1621938 -0.82798,-0.247796 -1.02616,0.019202 -0.68608,0.9243169 -1.463796,2.3959858 -2.148553,3.6211318 -1.21127,2.1671647 -4.134382,6.4146087 -4.134382,6.4146087 L 18.36438,15.095519 21.095183,7.4722854 c 0,0 1.251381,-3.3432592 1.892146,-4.8898431 0.20843,-0.5028027 -0.522475,-1.1805606 -1.075613,-1.2894872 -0.494441,-0.097373 -1.0851,0.2710724 -1.301279,0.7070574 -0.528934,1.0667239 -1.316055,2.9720823 -1.316055,2.9720823 l -2.128873,5.1634202 -1.519076,3.320513 -0.591084,-0.113667 1.125459,-6.1661131 c 0,0 0.226153,-1.7790266 0.734754,-4.2767186 0.07127,-0.3500021 -0.445146,-0.8831337 -0.871379,-1.0078596 -0.433348,-0.1268078 -1.156672,-0.051707 -1.29856,0.3854502 -0.625167,1.9261222 -0.811869,2.946123 -1.275644,4.6741452 -0.614139,2.2882824 -1.418038,6.8976019 -1.418038,6.8976019 L 11.334606,14.643263 9.9252935,15.381191 8.6513321,12.390559 C 7.985699,11.200844 7.4549561,9.2705763 6.6907383,9.1258953 5.9265279,8.9811753 5.417049,9.8685073 5.417049,9.8685073 l 0.470345,1.8944887 0.9261503,3.386502 1.0997576,4.113103 0.6782101,1.635164 1.2959629,2.453891 c 0,0 -0.099381,0.921852 -0.8596059,1.910858 -0.4089499,0.532017 -0.7031924,1.168008 -1.0265668,1.727584 z"
id="path3797"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccszcssssccccsasscccsascccccsasscccczccccccss" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

BIN
img/but_start.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 664 B

62
img/but_start.svg Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32px"
height="32px"
id="svg2984"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Nouveau document 1">
<defs
id="defs2986" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.836083"
inkscape:cx="-12.001508"
inkscape:cy="15.129286"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata2989">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="fill:#ffffff;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1"
d="m 15.976173,29.410976 c 0,0 -2.737074,-1.369993 -3.978257,-2.904759 -1.241182,-1.534766 -2.1703189,-3.56142 -1.957555,-5.493783 0.242239,-2.200052 1.568807,-3.940562 3.662522,-5.051753 2.093715,-1.111191 5.74637,-0.189441 5.74637,-0.189441 l -0.06315,4.483432 11.11386,-7.261897 -10.734978,-7.5144842 -0.126294,3.9151095 c 0,0 -5.222792,-0.1961592 -7.703924,0.8840567 -1.421607,0.618929 -3.6214447,1.931689 -4.4834327,3.220493 -0.7808862,1.167545 -1.4701226,2.593413 -1.704967,3.978257 -0.2181954,1.286666 0.015856,3.681814 0.5051754,4.891643 0.4889738,1.208973 0.8221548,2.457446 3.4099341,4.609725 1.7370382,1.44471 6.3146932,2.433401 6.3146932,2.433401 z"
id="path2992"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czszcccccsssssc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
img/but_warn.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 B

52
img/but_warn.svg Normal file
View file

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="32"
height="32"
id="svg2985">
<defs
id="defs2987" />
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,0.28763666)"
id="layer1"
style="fill:#ffffff;stroke:#ffffff">
<path
d="m 10.155768,1.694991 c 4.743295,0.2015914 7.135402,0.2123107 11.920586,-0.043419 l -2.669277,16.75378 c -2.972906,-0.159402 -3.74554,-0.163432 -6.648143,-0.01889 z"
id="path2993"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.54658943;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<text
x="6.9461622"
y="14.824035"
id="text3752"
xml:space="preserve"
style="font-size:1.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"><tspan
x="6.9461622"
y="14.824035"
id="tspan3754"
style="fill:#ffffff;stroke:#ffffff" /></text>
<path
d="m 19.641342,26.837889 c 5.66e-4,1.53172 -1.392961,2.925762 -2.924681,2.925762 -1.53172,0 -2.925248,-1.394042 -2.924681,-2.925762 -5.67e-4,-1.53172 1.392961,-2.925762 2.924681,-2.925762 1.53172,0 2.925247,1.394042 2.924681,2.925762 z"
transform="matrix(1.1531059,0,0,1.1531059,-3.1636772,-4.3897855)"
id="path3756"
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Some files were not shown because too many files have changed in this diff Show more