summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--404.md11
-rw-r--r--README.md2
-rw-r--r--_config.yml.dist15
-rw-r--r--_layouts/default.html102
-rw-r--r--_sass/style.scss280
-rw-r--r--assets/css/style.scss4
-rw-r--r--assets/fonts/Noto-Sans-700/Noto-Sans-700.eotbin0 -> 16716 bytes
-rw-r--r--assets/fonts/Noto-Sans-700/Noto-Sans-700.svg336
-rw-r--r--assets/fonts/Noto-Sans-700/Noto-Sans-700.ttfbin0 -> 29704 bytes
-rw-r--r--assets/fonts/Noto-Sans-700/Noto-Sans-700.woffbin0 -> 12632 bytes
-rw-r--r--assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2bin0 -> 9724 bytes
-rw-r--r--assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eotbin0 -> 16849 bytes
-rw-r--r--assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg334
-rw-r--r--assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttfbin0 -> 28932 bytes
-rw-r--r--assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woffbin0 -> 12612 bytes
-rw-r--r--assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2bin0 -> 9612 bytes
-rw-r--r--assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eotbin0 -> 15864 bytes
-rw-r--r--assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg337
-rw-r--r--assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttfbin0 -> 26644 bytes
-rw-r--r--assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woffbin0 -> 12536 bytes
-rw-r--r--assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2bin0 -> 9572 bytes
-rw-r--r--assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eotbin0 -> 16639 bytes
-rw-r--r--assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg335
-rw-r--r--assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttfbin0 -> 29288 bytes
-rw-r--r--assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woffbin0 -> 12840 bytes
-rw-r--r--assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2bin0 -> 9932 bytes
-rw-r--r--assets/images/.gitkeep1
-rw-r--r--assets/js/scale.fix.js27
-rw-r--r--sync-wiki.sh12
29 files changed, 1794 insertions, 2 deletions
diff --git a/404.md b/404.md
new file mode 100644
index 0000000..53d6d18
--- /dev/null
+++ b/404.md
@@ -0,0 +1,11 @@
+---
+layout: default
+permalink: /404.html
+---
+
+<!-- redirect to page creator if not exists -->
+<script type="text/javascript">
+ var filename = window.location.pathname.split('/').pop();
+ var url = '{{ site.github.repository_url }}/new/master/wiki?filename='+filename;
+ window.location=url;
+</script> \ No newline at end of file
diff --git a/README.md b/README.md
deleted file mode 100644
index 2bbb482..0000000
--- a/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# git-wiki
-A github pages powered wiki, using pull request to collaborating
diff --git a/_config.yml.dist b/_config.yml.dist
new file mode 100644
index 0000000..ba3b9ec
--- /dev/null
+++ b/_config.yml.dist
@@ -0,0 +1,15 @@
+title: git-wiki
+description: git-wiki is a jekyll theme originally based on jekyll-theme-minimal
+show_downloads: true
+logo_url:
+google_analytics:
+theme:
+use_github_wiki: false
+use_prose_io: true
+google_cse_token:
+gems:
+ - jekyll-sitemap
+ - jekyll-mentions
+ - jemoji
+ - jekyll-redirect-from
+ - jekyll-feed
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..1bb957e
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,102 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="chrome=1">
+ <title>{{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }}</title>
+
+ <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
+ <meta name="viewport" content="width=device-width">
+ <!--[if lt IE 9]>
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
+ <![endif]-->
+ </head>
+ <body>
+ <div class="wrapper">
+ <header>
+ <a href="{{ '/' | relative_url }}"><img src="{{ site.logo_url }}">
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
+ </a>
+ <p>{{ site.description | default: site.github.project_tagline }}</p>
+
+ {% if site.github.is_user_page %}
+ <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
+ {% endif %}
+
+ {% if site.show_downloads %}
+ <ul>
+ <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
+ <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
+ <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
+ </ul>
+ {% endif %}
+ </header>
+ <section>
+ <div id="tools-buttons" style="width: 100%; text-align: right">
+ {{page.relative_path}}
+ {% if page.url contains "/wiki/" and site.use_github_wiki %}
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/{{{page.folder}}{{page.url | remove: '.html' | append: ''}}/_edit">Edit</a></span>
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/{{{page.folder}}{{page.url | remove: '.html' | append: ''}}/_history">History</a></span>
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/{{{page.folder}}{{page.url | remove: '.html' | append: '.md'}}/">Source</a></span>
+ {% else %}
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/edit/master/{{{page.folder}}{{page.url | remove: '.html' | append: '.md'}}">Edit</a></span>
+ {% if site.use_prose_io %}
+ <span class="tools-element"><a target="_blank" href="http://prose.io/#{{site.github.repository_nwo}}/edit/master{{{page.folder}}{{page.url | remove: '.html' | append: '.md'}}">Edit with Prose.io</a></span>
+ {% endif %}
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/commits/master/{{{page.folder}}{{page.url | remove: '.html' | append: '.md'}}">History</a></span>
+ <span class="tools-element"><a target="_blank" href="{{ site.github.repository_url }}/blob/master/{{{page.folder}}{{page.url | remove: '.html' | append: '.md'}}">Source</a></span>
+ {% endif %}
+
+ {% if site.google_cse_token %}
+ <script>
+ (function() {
+ var cx = "{{site.google_cse_token}}";
+ var gcse = document.createElement('script');
+ gcse.type = 'text/javascript';
+ gcse.async = true;
+ gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
+ var s = document.getElementsByTagName('script')[0];
+ s.parentNode.insertBefore(gcse, s);
+ })();
+ </script>
+ <gcse:search></gcse:search>
+ {% else %}
+ <form method="GET" action="{{ site.github.repository_url }}/search">
+ {% if site.use_github_wiki %}
+ <input type="hidden" name="type" value="Wikis">
+ {% endif %}
+ <input type="text" name="q" placeholder="Text to search"><input type="submit" value="Search">
+ </form>
+ {% endif %}
+ </div>
+
+
+ {{ content }}
+
+ </section>
+ <footer>
+ {% if site.github.is_project_page %}
+ <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
+ {% endif %}
+ <p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
+ {% if site.github.is_project_page %}
+ <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ github_name }}</small></a></p>
+ {% endif %}
+ </footer>
+ </div>
+ <script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
+
+
+ {% if site.google_analytics %}
+ <script>
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+ ga('create', '{{ site.google_analytics }}', 'auto');
+ ga('send', 'pageview');
+ </script>
+ {% endif %}
+ </body>
+</html>
diff --git a/_sass/style.scss b/_sass/style.scss
new file mode 100644
index 0000000..b6c3284
--- /dev/null
+++ b/_sass/style.scss
@@ -0,0 +1,280 @@
+@import "fonts";
+@import "rouge-github";
+
+body {
+ background-color: #fff;
+ padding:50px;
+ font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
+ color:#727272;
+ font-weight:400;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color:#222;
+ margin:0 0 20px;
+}
+
+p, ul, ol, table, pre, dl {
+ margin:0 0 20px;
+}
+
+h1, h2, h3 {
+ line-height:1.1;
+}
+
+h1 {
+ font-size:28px;
+}
+
+h2 {
+ color:#393939;
+}
+
+h3, h4, h5, h6 {
+ color:#494949;
+}
+
+a {
+ color:#39c;
+ text-decoration:none;
+}
+
+a:hover {
+ color:#069;
+}
+
+a small {
+ font-size:11px;
+ color:#777;
+ margin-top:-0.3em;
+ display:block;
+}
+
+a:hover small {
+ color:#777;
+}
+
+.wrapper {
+ /*width:860px;*/
+ margin:0 auto;
+}
+
+blockquote {
+ border-left:1px solid #e5e5e5;
+ margin:0;
+ padding:0 0 0 20px;
+ font-style:italic;
+}
+
+code, pre {
+ font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
+ color:#333;
+ font-size:12px;
+}
+
+pre {
+ padding:8px 15px;
+ background: #f8f8f8;
+ border-radius:5px;
+ border:1px solid #e5e5e5;
+ overflow-x: auto;
+}
+
+table {
+ width:100%;
+ border-collapse:collapse;
+}
+
+th, td {
+ text-align:left;
+ padding:5px 10px;
+ border-bottom:1px solid #e5e5e5;
+}
+
+dt {
+ color:#444;
+ font-weight:700;
+}
+
+th {
+ color:#444;
+}
+
+img {
+ max-width:100%;
+}
+
+header {
+ width:270px;
+ float:left;
+ position:fixed;
+ -webkit-font-smoothing:subpixel-antialiased;
+}
+
+header ul {
+ list-style:none;
+ height:40px;
+ padding:0;
+ background: #f4f4f4;
+ border-radius:5px;
+ border:1px solid #e0e0e0;
+ width:270px;
+}
+
+header li {
+ width:89px;
+ float:left;
+ border-right:1px solid #e0e0e0;
+ height:40px;
+}
+
+header li:first-child a {
+ border-radius:5px 0 0 5px;
+}
+
+header li:last-child a {
+ border-radius:0 5px 5px 0;
+}
+
+header ul a {
+ line-height:1;
+ font-size:11px;
+ color:#999;
+ display:block;
+ text-align:center;
+ padding-top:6px;
+ height:34px;
+}
+
+header ul a:hover {
+ color:#999;
+}
+
+header ul a:active {
+ background-color:#f0f0f0;
+}
+
+strong {
+ color:#222;
+ font-weight:700;
+}
+
+header ul li + li + li {
+ border-right:none;
+ width:89px;
+}
+
+header ul a strong {
+ font-size:14px;
+ display:block;
+ color:#222;
+}
+
+section {
+ /*width:500px;
+ float:right;*/
+ padding-left: 320px;
+ padding-bottom:50px;
+}
+
+small {
+ font-size:11px;
+}
+
+hr {
+ border:0;
+ background:#e5e5e5;
+ height:1px;
+ margin:0 0 20px;
+}
+
+footer {
+ width:270px;
+ float:left;
+ position:fixed;
+ bottom:50px;
+ -webkit-font-smoothing:subpixel-antialiased;
+}
+
+.tools-element {
+ border-left: aqua;
+ border-left-style: solid;
+ padding-left: 10px;
+ padding-right: 10px;
+}
+
+@media print, screen and (max-width: 960px) {
+
+ div.wrapper {
+ width:auto;
+ margin:0;
+ }
+
+ header, section, footer {
+ float:none;
+ position:static;
+ width:auto;
+ }
+
+ header {
+ padding-right:320px;
+ }
+
+ section {
+ border:1px solid #e5e5e5;
+ border-width:1px 0;
+ padding:20px 0;
+ margin:0 0 20px;
+ }
+
+ header a small {
+ display:inline;
+ }
+
+ header ul {
+ position:absolute;
+ right:50px;
+ top:52px;
+ }
+}
+
+
+@media print, screen and (max-width: 720px) {
+ body {
+ word-wrap:break-word;
+ }
+
+ header {
+ padding:0;
+ }
+
+ header ul, header p.view {
+ position:static;
+ }
+
+ pre, code {
+ word-wrap:normal;
+ }
+}
+
+@media print, screen and (max-width: 480px) {
+ body {
+ padding:15px;
+ }
+
+ header ul {
+ width:99%;
+ }
+
+ header li, header ul li + li + li {
+ width:33%;
+ }
+}
+
+@media print {
+ body {
+ padding:0.4in;
+ font-size:12pt;
+ color:#444;
+ }
+}
diff --git a/assets/css/style.scss b/assets/css/style.scss
new file mode 100644
index 0000000..0a14227
--- /dev/null
+++ b/assets/css/style.scss
@@ -0,0 +1,4 @@
+---
+---
+
+@import "jekyll-theme-minimal";
diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot b/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot
new file mode 100644
index 0000000..03bf93f
--- /dev/null
+++ b/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot
Binary files differ
diff --git a/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg b/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg
new file mode 100644
index 0000000..925fe47
--- /dev/null
+++ b/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg
@@ -0,0 +1,336 @@
+<?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">
+<defs >
+<font id="NotoSans" horiz-adv-x="1254" ><font-face
+ font-family="Noto Sans"
+ units-per-em="2048"
+ panose-1="2 11 8 2 4 5 4 2 2 4"
+ ascent="2189"
+ descent="-600"
+ alphabetic="0" />
+<glyph unicode=" " horiz-adv-x="532" />
+<glyph unicode="!" horiz-adv-x="825" d="M570 485H326L275 1462H621L570 485ZM271 143Q271 190 284 222T322 275T378 304T447 313Q482 313 513 304T569 275T607 223T621 143Q621 98 607 66T569 13T514 -17T447 -27Q410 -27 378 -18T322 13T285 66T271 143Z" />
+<glyph unicode="&quot;" horiz-adv-x="1118" d="M502 1494L461 966H264L223 1494H502ZM924 1494L883 966H686L645 1494H924Z" />
+<glyph unicode="#" horiz-adv-x="1363" d="M1019 767L972 535H1217V329H933L871 0H651L714 329H520L459 0H244L303 329H79V535H342L389 767H151V976H426L486 1295H705L645 976H843L904 1295H1119L1058 976H1285V767H1019ZM559 535H755L802 767H606L559 535Z" />
+<glyph unicode="$" horiz-adv-x="1171" d="M1092 457Q1092 298 977 202T655 86V-119H518V82Q274 87 90 168V432Q177 389 299 356T518 317V627L451 653Q253 731 171 822T88 1049Q88 1194 201 1287T518 1401V1554H655V1405Q884 1395 1069 1313L975 1079Q819 1143
+655 1157V862Q850 787 932 732T1053 611T1092 457ZM791 442Q791 484 757 513T655 573V324Q791 347 791 442ZM389 1049Q389 1005 419 977T518 918V1153Q389 1134 389 1049Z" />
+<glyph unicode="%" horiz-adv-x="1842" d="M324 924Q324 842 349 802T429 761Q483 761 509 801T535 924Q535 1086 429 1086Q374 1086 349 1046T324 924ZM777 926Q777 839 757 770T693 653T584 580T427 554Q342 554 278 579T170 652T104 769T82 926Q82 1013 102
+1082T164 1198T272 1270T427 1295Q513 1295 578 1270T688 1198T754 1082T777 926ZM1434 1274L633 0H404L1205 1274H1434ZM1307 351Q1307 269 1332 229T1412 188Q1466 188 1492 228T1518 351Q1518 513 1412 513Q1357 513 1332 473T1307 351ZM1760 353Q1760 266 1740
+197T1676 81T1567 8T1410 -18Q1325 -18 1261 7T1154 80T1088 197T1066 353Q1066 440 1086 509T1148 625T1255 697T1410 722Q1496 722 1561 697T1671 625T1737 509T1760 353Z" />
+<glyph unicode="&amp;" horiz-adv-x="1536" d="M1536 0H1159L1044 113Q853 -20 612 -20Q368 -20 225 92T82 395Q82 532 142 628T350 809Q275 895 241 973T207 1145Q207 1297 323 1390T635 1483Q821 1483 932 1397T1044 1165Q1044 1046 975 948T752 760L1036 483Q1107
+600 1159 784H1477Q1441 649 1378 521T1235 293L1536 0ZM403 424Q403 338 467 287T633 236Q759 236 860 297L528 627Q470 583 437 535T403 424ZM762 1133Q762 1186 726 1216T633 1247Q566 1247 528 1215T489 1124Q489 1036 584 930Q670 978 716 1024T762 1133Z"
+/>
+<glyph unicode="&apos;" horiz-adv-x="696" d="M502 1493L461 965H264L223 1493H502Z" />
+<glyph unicode="(" horiz-adv-x="791" d="M135 673Q135 816 153 955T208 1225T301 1476T436 1703H686Q545 1482 473 1218T401 676Q401 540 419 405T473 141T562 -109T684 -338H436Q358 -235 302 -118T208 128T153 394T135 673Z" />
+<glyph unicode=")" horiz-adv-x="791" d="M656 692Q656 549 638 410T583 140T490 -111T355 -338H105Q246 -117 318 147T390 689Q390 825 372 960T318 1224T229 1474T107 1703H355Q433 1600 489 1483T583 1237T638 971T656 692Z" />
+<glyph unicode="*" horiz-adv-x="1243" d="M761 1525L720 1157L1093 1261L1126 1009L786 985L1009 688L782 567L626 880L489 569L253 688L474 985L136 1011L175 1261L540 1157L499 1525H761Z" />
+<glyph unicode="+" horiz-adv-x="1168" d="M475 552H108V771H475V1140H694V771H1060V552H694V188H475V552Z" />
+<glyph unicode="," horiz-adv-x="594" d="M444 288L459 264Q445 206 426 142T383 12T334 -119T283 -244H63Q78 -179 92 -109T120 30T145 165T163 288H444Z" />
+<glyph unicode="-" horiz-adv-x="749" d="M106 484V734H643V484H106Z" />
+<glyph unicode="." horiz-adv-x="584" d="M117 143Q117 190 130 222T168 275T224 304T293 313Q328 313 359 304T415 275T453 223T467 143Q467 98 453 66T415 13T360 -17T293 -27Q256 -27 224 -18T168 13T131 66T117 143Z" />
+<glyph unicode="/" horiz-adv-x="966" d="M894 1705L334 -339H72L632 1705H894Z" />
+<glyph unicode="0" horiz-adv-x="1128" d="M1065 731Q1065 554 1038 415T950 179T794 31T563 -20Q436 -20 342 31T186 179T94 415T63 731Q63 908 90 1048T178 1285T333 1433T563 1485Q689 1485 783 1434T940 1286T1034 1049T1065 731ZM371 731Q371 481 414 355T563
+229Q667 229 712 354T758 731Q758 982 713 1108T563 1235Q510 1235 474 1203T414 1108T381 951T371 731Z" />
+<glyph unicode="1" horiz-adv-x="1128" d="M817 0H508V846Q508 872 508 908T510 984T513 1064T516 1137Q511 1131 499 1119T472 1093T441 1063T410 1036L242 901L92 1087L563 1462H817V0Z" />
+<glyph unicode="2" horiz-adv-x="1128" d="M1063 0H82V215L426 586Q491 656 544 715T635 830T694 944T715 1069Q715 1143 671 1184T551 1225Q472 1225 399 1186T246 1075L78 1274Q123 1315 172 1352T280 1419T410 1465T569 1483Q674 1483 757 1454T900 1372T990
+1242T1022 1071Q1022 985 992 907T910 753T790 603T643 451L467 274V260H1063V0Z" />
+<glyph unicode="3" horiz-adv-x="1128" d="M1006 1135Q1006 1059 982 999T915 893T815 817T690 770V764Q867 742 958 657T1049 426Q1049 330 1015 249T909 107T729 14T473 -20Q355 -20 251 -1T57 59V322Q102 298 152 280T252 250T350 231T442 225Q528 225 585
+241T676 286T724 355T739 444Q739 489 721 525T661 587T552 627T387 641H283V858H385Q477 858 538 874T635 919T687 986T702 1067Q702 1145 654 1189T500 1233Q452 1233 411 1224T334 1200T269 1168T215 1133L59 1339Q101 1370 150 1396T258 1441T383 1472T526
+1483Q634 1483 722 1460T874 1392T971 1283T1006 1135Z" />
+<glyph unicode="4" horiz-adv-x="1128" d="M1085 303H909V0H608V303H4V518L625 1462H909V543H1085V303ZM608 543V791Q608 804 608 828T610 884T612 948T615 1011T618 1063T621 1096H612Q594 1054 572 1007T520 913L276 543H608Z" />
+<glyph unicode="5" horiz-adv-x="1128" d="M598 934Q692 934 773 905T914 820T1008 681T1042 489Q1042 370 1005 276T896 116T718 15T473 -20Q418 -20 364 -15T261 -1T167 24T86 59V326Q121 306 167 289T262 259T362 239T457 231Q591 231 661 286T731 463Q731
+571 663 627T451 684Q425 684 396 681T338 673T283 663T238 651L115 717L170 1462H942V1200H438L414 913Q446 920 488 927T598 934Z" />
+<glyph unicode="6" horiz-adv-x="1128" d="M76 621Q76 726 87 830T128 1029T208 1207T336 1349T522 1444T776 1479Q797 1479 822 1478T872 1476T922 1471T965 1464V1217Q927 1226 885 1231T799 1237Q664 1237 577 1204T439 1110T367 966T340 780H352Q372 816 400
+847T467 901T552 937T659 950Q754 950 830 919T958 829T1039 684T1067 487Q1067 368 1034 274T938 115T788 15T590 -20Q482 -20 388 18T225 136T116 335T76 621ZM584 227Q625 227 658 242T716 289T754 369T768 483Q768 590 724 651T588 713Q542 713 504 695T439
+648T398 583T383 510Q383 459 395 409T433 318T496 252T584 227Z" />
+<glyph unicode="7" horiz-adv-x="1128" d="M207 0L727 1200H55V1460H1063V1266L530 0H207Z" />
+<glyph unicode="8" horiz-adv-x="1128" d="M565 1481Q656 1481 737 1459T879 1393T976 1283T1012 1128Q1012 1062 992 1009T937 912T854 834T750 772Q808 741 863 703T962 618T1031 511T1057 379Q1057 288 1021 214T920 88T765 8T565 -20Q447 -20 355 7T200 84T105
+207T72 371Q72 446 94 506T154 614T243 699T352 764Q303 795 260 831T186 912T136 1011T117 1130Q117 1217 153 1282T252 1392T395 1459T565 1481ZM358 389Q358 349 371 316T409 258T473 221T561 207Q666 207 718 256T770 387Q770 429 753 462T708 524T645 577T575
+623L553 637Q509 615 473 590T412 534T372 467T358 389ZM563 1255Q530 1255 502 1245T453 1216T420 1169T408 1106Q408 1064 420 1034T454 980T504 938T565 901Q596 917 624 936T673 979T708 1035T721 1106Q721 1141 709 1169T676 1216T626 1245T563 1255Z" />
+<glyph unicode="9" horiz-adv-x="1128" d="M1055 838Q1055 733 1044 629T1003 429T923 252T795 109T609 15T354 -20Q333 -20 308 -19T258 -17T208 -13T166 -6V242Q203 232 245 227T332 221Q467 221 554 254T692 348T764 493T791 678H778Q758 642 730 611T664 557T578
+521T471 508Q376 508 300 539T172 629T91 774T63 971Q63 1090 96 1184T192 1343T342 1444T541 1479Q649 1479 743 1441T906 1323T1015 1123T1055 838ZM547 1231Q506 1231 472 1216T414 1170T376 1090T362 975Q362 869 407 807T543 745Q589 745 627 763T692 810T733
+875T748 948Q748 999 736 1049T698 1140T635 1206T547 1231Z" />
+<glyph unicode=":" horiz-adv-x="663" d="M156 143Q156 190 169 222T207 275T263 304T332 313Q367 313 398 304T454 275T492 223T506 143Q506 98 492 66T454 13T399 -17T332 -27Q295 -27 263 -18T207 13T170 66T156 143ZM156 969Q156 1016 169 1048T207 1101T263
+1130T332 1139Q367 1139 398 1130T454 1101T492 1049T506 969Q506 924 492 892T454 839T399 809T332 799Q295 799 263 808T207 838T170 891T156 969Z" />
+<glyph unicode=";" horiz-adv-x="663" d="M483 288L498 264Q484 206 465 142T422 12T373 -119T322 -244H102Q117 -179 131 -109T159 30T184 165T203 288H483ZM156 969Q156 1016 169 1048T207 1101T263 1130T332 1139Q367 1139 398 1130T454 1101T492 1049T506
+969Q506 924 492 892T454 839T399 809T332 799Q295 799 263 808T207 838T170 891T156 969Z" />
+<glyph unicode="&lt;" horiz-adv-x="1168" d="M1060 143L108 581V724L1060 1220V980L417 663L1060 382V143Z" />
+<glyph unicode="=" horiz-adv-x="1168" d="M108 747V964H1060V747H108ZM108 358V577H1060V358H108Z" />
+<glyph unicode="&gt;" horiz-adv-x="1168" d="M108 382L751 663L108 980V1220L1060 724V581L108 143V382Z" />
+<glyph unicode="?" horiz-adv-x="1114" d="M366 485V559Q366 610 376 651T408 730T464 803T546 877Q588 910 617 936T664 987T690 1041T698 1106Q698 1163 660 1200T542 1237Q473 1237 394 1208T229 1137L127 1358Q170 1383 220 1405T325 1445T436 1473T546 1483Q648
+1483 730 1459T869 1387T956 1273T987 1120Q987 1057 973 1008T932 916T863 834T766 750Q724 717 698 693T656 646T636 601T630 545V485H366ZM333 143Q333 190 346 222T384 275T440 304T510 313Q545 313 576 304T632 275T670 223T684 143Q684 98 670 66T632 13T577
+-17T510 -27Q473 -27 441 -18T384 13T347 66T333 143Z" />
+<glyph unicode="@" horiz-adv-x="1837" d="M1735 733Q1735 589 1689 469T1559 282T1364 215Q1290 215 1233 250T1151 344H1135Q1086 284 1016 250T860 215Q683 215 581 321T479 612Q479 821 611 951T963 1081Q1044 1081 1150 1066T1323 1026L1300 537Q1300 397
+1376 397Q1440 397 1478 490T1516 735Q1516 896 1450 1019T1262 1208T983 1274Q782 1274 632 1190T403 950T324 590Q324 313 471 166T899 18Q1011 18 1139 43T1382 111V-82Q1170 -172 907 -172Q527 -172 315 28T102 584Q102 831 211 1033T522 1348T981 1462Q1201
+1462 1374 1372T1641 1116T1735 733ZM711 608Q711 397 883 397Q972 397 1019 460T1077 668L1090 889Q1044 899 975 899Q850 899 781 821T711 608Z" />
+<glyph unicode="A" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899Z" />
+<glyph unicode="B" horiz-adv-x="1376" d="M184 1462H639Q950 1462 1090 1374T1231 1092Q1231 961 1170 877T1006 776V766Q1145 735 1206 650T1268 424Q1268 224 1124 112T731 0H184V1462ZM494 883H674Q800 883 856 922T913 1051Q913 1135 852 1171T657 1208H494V883ZM494
+637V256H696Q824 256 885 305T946 455Q946 637 686 637H494Z" />
+<glyph unicode="C" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051 1167 968 1196T805 1225Z" />
+<glyph unicode="D" horiz-adv-x="1516" d="M1397 745Q1397 384 1192 192T598 0H184V1462H643Q1001 1462 1199 1273T1397 745ZM1075 737Q1075 1208 659 1208H494V256H627Q1075 256 1075 737Z" />
+<glyph unicode="E" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0Z" />
+<glyph unicode="F" horiz-adv-x="1124" d="M489 0H184V1462H1022V1208H489V831H985V578H489V0Z" />
+<glyph unicode="G" horiz-adv-x="1483" d="M739 821H1319V63Q1178 17 1054 -1T799 -20Q468 -20 294 174T119 733Q119 1087 321 1285T883 1483Q1108 1483 1317 1393L1214 1145Q1054 1225 881 1225Q680 1225 559 1090T438 727Q438 489 535 364T819 238Q916 238 1016
+258V563H739V821Z" />
+<glyph unicode="H" horiz-adv-x="1567" d="M1382 0H1073V631H494V0H184V1462H494V889H1073V1462H1382V0Z" />
+<glyph unicode="I" horiz-adv-x="797" d="M731 0H66V176L244 258V1204L66 1286V1462H731V1286L553 1204V258L731 176V0Z" />
+<glyph unicode="J" horiz-adv-x="678" d="M31 -430Q-74 -430 -152 -408V-150Q-72 -170 -6 -170Q96 -170 140 -107T184 92V1462H494V94Q494 -162 377 -296T31 -430Z" />
+<glyph unicode="K" horiz-adv-x="1360" d="M1360 0H1008L625 616L494 522V0H184V1462H494V793L616 965L1012 1462H1356L846 815L1360 0Z" />
+<glyph unicode="L" horiz-adv-x="1157" d="M184 0V1462H494V256H1087V0H184Z" />
+<glyph unicode="M" horiz-adv-x="1931" d="M803 0L451 1147H442Q461 797 461 680V0H184V1462H606L952 344H958L1325 1462H1747V0H1458V692Q1458 741 1459 805T1473 1145H1464L1087 0H803Z" />
+<glyph unicode="N" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0Z" />
+<glyph unicode="O" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227 817 1227Q632 1227 538 1103T444
+733Z" />
+<glyph unicode="P" horiz-adv-x="1286" d="M494 774H596Q739 774 810 830T881 995Q881 1104 822 1156T635 1208H494V774ZM1194 1006Q1194 770 1047 645T627 520H494V0H184V1462H651Q917 1462 1055 1348T1194 1006Z" />
+<glyph unicode="Q" horiz-adv-x="1630" d="M1511 733Q1511 475 1420 301T1151 45L1503 -348H1106L838 -20H815Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733Z" />
+<glyph unicode="R" horiz-adv-x="1352" d="M494 813H594Q741 813 811 862T881 1016Q881 1120 810 1164T588 1208H494V813ZM494 561V0H184V1462H610Q908 1462 1051 1354T1194 1024Q1194 895 1123 795T922 637L1352 0H1008L659 561H494Z" />
+<glyph unicode="S" horiz-adv-x="1128" d="M1047 406Q1047 208 905 94T508 -20Q274 -20 94 68V356Q242 290 344 263T532 236Q634 236 688 275T743 391Q743 434 719 467T649 532T459 631Q325 694 258 752T151 887T111 1067Q111 1261 242 1372T606 1483Q720 1483
+823 1456T1040 1380L940 1139Q823 1187 747 1206T596 1225Q508 1225 461 1184T414 1077Q414 1036 433 1006T493 947T690 844Q895 746 971 648T1047 406Z" />
+<glyph unicode="T" horiz-adv-x="1186" d="M748 0H438V1204H41V1462H1145V1204H748V0Z" />
+<glyph unicode="U" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374Z" />
+<glyph unicode="V" horiz-adv-x="1331" d="M1018 1462H1331L834 0H496L0 1462H313L588 592Q611 515 635 413T666 270Q677 362 741 592L1018 1462Z" />
+<glyph unicode="W" horiz-adv-x="1980" d="M1608 0H1255L1057 768Q1046 809 1020 937T989 1110Q983 1056 959 937T922 766L725 0H373L0 1462H305L492 664Q541 443 563 281Q569 338 590 457T631 643L844 1462H1137L1350 643Q1364 588 1385 475T1417 281Q1427 359
+1449 475T1489 664L1675 1462H1980L1608 0Z" />
+<glyph unicode="X" horiz-adv-x="1366" d="M1366 0H1012L672 553L332 0H0L485 754L31 1462H373L688 936L997 1462H1331L872 737L1366 0Z" />
+<glyph unicode="Y" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860Z" />
+<glyph unicode="Z" horiz-adv-x="1186" d="M1137 0H49V201L750 1206H68V1462H1118V1262L418 256H1137V0Z" />
+<glyph unicode="[" horiz-adv-x="798" d="M698 -339H214V1704H698V1493H474V-128H698V-339Z" />
+<glyph unicode="\" horiz-adv-x="966" d="M334 1705L894 -339H632L72 1705H334Z" />
+<glyph unicode="]" horiz-adv-x="798" d="M100 1704H584V-339H100V-128H324V1493H100V1704Z" />
+<glyph unicode="^" horiz-adv-x="1168" d="M45 520L483 1470H627L1122 520H883L561 1163Q492 1002 421 839T281 520H45Z" />
+<glyph unicode="_" horiz-adv-x="842" d="M846 -324H-4V-184H846V-324Z" />
+<glyph unicode="`" horiz-adv-x="1243" d="M707 1241Q644 1285 522 1383T332 1548V1569H674Q737 1468 909 1268V1241H707Z" />
+<glyph unicode="a" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083 745V0H870ZM780 518L662
+514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518Z" />
+<glyph unicode="b" horiz-adv-x="1296" d="M782 1139Q980 1139 1092 985T1204 561Q1204 284 1089 132T774 -20Q577 -20 465 123H444L393 0H160V1556H465V1194Q465 1125 453 973H465Q572 1139 782 1139ZM684 895Q571 895 519 826T465 596V563Q465 383 518 305T688
+227Q782 227 837 313T893 565Q893 730 837 812T684 895Z" />
+<glyph unicode="c" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614 -20Z" />
+<glyph unicode="d" horiz-adv-x="1296" d="M514 -20Q317 -20 205 133T92 557Q92 832 206 985T522 1139Q733 1139 844 975H854Q831 1100 831 1198V1556H1137V0H903L844 145H831Q727 -20 514 -20ZM621 223Q738 223 792 291T852 522V555Q852 735 797 813T616 891Q514
+891 458 805T401 553Q401 388 458 306T621 223Z" />
+<glyph unicode="e" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781 207 871 228T1059 295V59Q979
+19 888 0T666 -20Z" />
+<glyph unicode="f" horiz-adv-x="793" d="M778 889H514V0H209V889H41V1036L209 1118V1200Q209 1391 303 1479T604 1567Q762 1567 885 1520L807 1296Q715 1325 637 1325Q572 1325 543 1287T514 1188V1118H778V889Z" />
+<glyph unicode="g" horiz-adv-x="1296" d="M623 219Q746 219 799 289T852 518V555Q852 734 797 812T618 891Q403 891 403 553Q403 385 456 302T623 219ZM1137 -2Q1137 -243 997 -367T578 -492Q333 -492 160 -426V-182Q363 -268 596 -268Q831 -268 831 -14V8L840
+145H831Q724 -20 514 -20Q313 -20 203 135T92 557Q92 832 206 985T522 1139Q728 1139 846 975H854L879 1118H1137V-2Z" />
+<glyph unicode="h" horiz-adv-x="1346" d="M1192 0H887V653Q887 895 707 895Q579 895 522 808T465 526V0H160V1556H465V1239Q465 1202 458 1065L451 975H467Q569 1139 791 1139Q988 1139 1090 1033T1192 729V0Z" />
+<glyph unicode="i" horiz-adv-x="625" d="M147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407ZM465 0H160V1118H465V0Z" />
+<glyph unicode="j" horiz-adv-x="625" d="M70 -492Q-47 -492 -131 -467V-227Q-61 -246 12 -246Q89 -246 124 -203T160 -76V1118H465V-121Q465 -299 362 -395T70 -492ZM147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407Z" />
+<glyph unicode="k" horiz-adv-x="1270" d="M453 608L586 778L899 1118H1243L799 633L1270 0H918L596 453L465 348V0H160V1556H465V862L449 608H453Z" />
+<glyph unicode="l" horiz-adv-x="625" d="M465 0H160V1556H465V0Z" />
+<glyph unicode="m" horiz-adv-x="2011" d="M1161 0H856V653Q856 774 816 834T688 895Q571 895 518 809T465 526V0H160V1118H393L434 975H451Q496 1052 581 1095T776 1139Q1027 1139 1116 975H1143Q1188 1053 1275 1096T1473 1139Q1663 1139 1760 1042T1858 729V0H1552V653Q1552
+774 1512 834T1384 895Q1272 895 1217 815T1161 561V0Z" />
+<glyph unicode="n" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0Z" />
+<glyph unicode="o" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835 235 987T637 1139Q798 1139
+921 1069T1110 868T1176 561Z" />
+<glyph unicode="p" horiz-adv-x="1296" d="M774 -20Q577 -20 465 123H449Q465 -17 465 -39V-492H160V1118H408L451 973H465Q572 1139 782 1139Q980 1139 1092 986T1204 561Q1204 382 1152 250T1002 49T774 -20ZM684 895Q571 895 519 826T465 596V563Q465 383 518
+305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="q" horiz-adv-x="1296" d="M623 219Q739 219 793 285T852 518V555Q852 735 797 813T618 891Q403 891 403 553Q403 385 456 302T623 219ZM514 -20Q316 -20 204 132T92 557Q92 831 206 985T520 1139Q626 1139 705 1099T844 975H852L879 1118H1137V-492H831V-23Q831
+38 844 145H831Q782 64 701 22T514 -20Z" />
+<glyph unicode="r" horiz-adv-x="930" d="M784 1139Q846 1139 887 1130L864 844Q827 854 774 854Q628 854 547 779T465 569V0H160V1118H391L436 930H451Q503 1024 591 1081T784 1139Z" />
+<glyph unicode="s" horiz-adv-x="1018" d="M940 332Q940 160 821 70T463 -20Q341 -20 255 -4T94 45V297Q179 257 285 230T473 203Q639 203 639 299Q639 335 617 357T541 408T397 475Q268 529 208 575T120 680T92 827Q92 976 207 1057T535 1139Q737 1139 928 1051L836
+831Q752 867 679 890T530 913Q395 913 395 840Q395 799 438 769T629 680Q760 627 821 581T911 475T940 332Z" />
+<glyph unicode="t" horiz-adv-x="889" d="M631 223Q711 223 823 258V31Q709 -20 543 -20Q360 -20 277 72T193 350V889H47V1018L215 1120L303 1356H498V1118H811V889H498V350Q498 285 534 254T631 223Z" />
+<glyph unicode="u" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952Z" />
+<glyph unicode="v" horiz-adv-x="1165" d="M426 0L0 1118H319L535 481Q568 377 578 252H586Q592 365 631 481L846 1118H1165L739 0H426Z" />
+<glyph unicode="w" horiz-adv-x="1753" d="M1079 0L993 391L879 885H870L666 0H338L20 1118H324L453 623Q475 535 514 256H522Q526 332 557 497L573 582L711 1118H1047L1178 582Q1190 527 1207 421T1227 256H1235Q1246 345 1266 458T1300 623L1434 1118H1733L1411
+0H1079Z" />
+<glyph unicode="x" horiz-adv-x="1184" d="M389 571L29 1118H375L592 762L811 1118H1157L793 571L1174 0H827L592 383L356 0H10L389 571Z" />
+<glyph unicode="y" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444 8L0 1118Z" />
+<glyph unicode="z" horiz-adv-x="999" d="M938 0H55V180L573 885H86V1118H920V920L416 233H938V0Z" />
+<glyph unicode="{" horiz-adv-x="872" d="M78 562V801Q140 801 188 812T270 848T319 912T334 1008V1379Q334 1465 353 1526T421 1627T556 1684T772 1703V1478Q732 1477 700 1470T645 1444T610 1393T598 1310V953Q592 730 364 688V676Q479 656 540 590T598 412V55Q598
+4 610 -28T644 -78T699 -104T772 -113V-339Q641 -339 556 -321T422 -263T353 -162T334 -14V353Q334 466 269 514T78 562Z" />
+<glyph unicode="|" horiz-adv-x="1105" d="M443 1703H662V-339H443V1703Z" />
+<glyph unicode="}" horiz-adv-x="872" d="M794 563Q732 563 684 552T602 516T553 452T538 356V-15Q538 -101 519 -162T451 -263T316 -320T100 -339V-114Q140 -113 172 -106T227 -80T262 -29T274 54V411Q280 634 508 676V688Q393 708 332 774T274 952V1309Q274
+1360 262 1392T228 1442T173 1468T100 1477V1703Q231 1703 316 1685T450 1627T519 1526T538 1378V1011Q538 898 603 850T794 802V563Z" />
+<glyph unicode="~" horiz-adv-x="1168" d="M548 556Q511 572 483 583T431 600T386 609T342 612Q313 612 282 603T221 577T163 538T108 491V722Q159 776 222 803T364 831Q394 831 419 829T473 819T537 800T620 767Q658 751 686 741T739 724T784 715T827 712Q856
+712 887 721T948 747T1006 785T1060 833V602Q959 493 804 493Q774 493 749 495T695 504T631 523T548 556Z" />
+<glyph unicode="&#xa0;" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" horiz-adv-x="586" d="M168 606H412L463 -369H117L168 606ZM467 948Q467 864 422 821T291 778Q208 778 163 822T117 948Q117 1029 163 1073T291 1118Q375 1118 421 1074T467 948Z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1171" d="M563 176Q143 235 143 741Q143 1002 247 1144T563 1317V1483H741V1325Q907 1316 1040 1251L950 1016Q878 1045 816 1063T692 1081Q571 1081 513 998T455 743Q455 416 692 416Q774 416 840 431T1006 492V238Q879
+177 741 168V-20H563V176Z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1171" d="M700 1483Q895 1483 1090 1401L997 1171Q840 1235 725 1235Q647 1235 605 1191T563 1063V870H938V651H563V508Q563 338 412 260H1130V0H82V248Q185 292 223 349T262 506V651H84V870H262V1065Q262 1266 376 1374T700 1483Z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1171" d="M188 723Q188 825 242 920L113 1047L260 1194L387 1067Q478 1120 584 1120Q689 1120 780 1065L907 1194L1057 1051L928 922Q981 833 981 723Q981 616 928 524L1053 399L907 254L780 379Q685 328 584 328Q469 328
+385 379L260 256L115 401L242 526Q188 619 188 723ZM395 723Q395 646 449 591T584 535Q665 535 720 590T776 723Q776 803 720 858T584 913Q506 913 451 857T395 723Z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1171" d="M584 860L848 1462H1161L778 715H973V537H727V399H973V221H727V0H440V221H193V399H440V537H193V715H383L6 1462H322L584 860Z" />
+<glyph unicode="&#xa6;" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" horiz-adv-x="995" d="M121 801Q121 955 254 1049Q121 1133 121 1280Q121 1409 232 1488T526 1567Q696 1567 889 1483L807 1292Q701 1342 640 1359T520 1376Q439 1376 402 1354T365 1284Q365 1238 411 1202T578 1118Q746 1049 820 967T895
+780Q895 602 770 522Q832 482 863 430T895 303Q895 155 776 68T455 -20Q252 -20 106 59V266Q187 225 286 197T455 168Q649 168 649 285Q649 324 631 348T567 397T442 457Q256 532 189 609T121 801ZM344 823Q344 759 406 709T590 610Q668 667 668 754Q668 823 614
+869T434 961Q396 946 370 909T344 823Z" />
+<glyph unicode="&#xa8;" horiz-adv-x="1243"