Ghost version

This commit is contained in:
Simon 2020-08-05 17:16:58 +02:00
commit fbc3ca76bd
56 changed files with 7495 additions and 0 deletions

3
apps/README.md Normal file
View File

@ -0,0 +1,3 @@
# Content / Apps
Coming soon, Ghost apps will appear here.

149
config.js Normal file
View File

@ -0,0 +1,149 @@
// # Ghost Configuration
// Setup your Ghost install for various [environments](http://support.ghost.org/config/#about-environments).
// Ghost runs in `development` mode by default. Full documentation can be found at http://support.ghost.org/config/
var path = require('path'),
config;
config = {
// ### Production
// When running Ghost in the wild, use the production environment.
// Configure your URL and mail settings here
production: {
url: 'http://my-ghost-blog.com',
mail: {},
database: {
client: 'sqlite3',
connection: {
filename: path.join(process.env.GHOST_CONTENT, '/data/ghost.db')
},
debug: false
},
server: {
host: '0.0.0.0',
port: '2368'
}
},
// ### Development **(default)**
development: {
// The url to use when providing links to the site, E.g. in RSS and email.
// Change this to your Ghost blog's published URL.
url: 'http://zebra.life',
// Example mail config
// Visit http://support.ghost.org/mail for instructions
// ```
// mail: {
// transport: 'SMTP',
// options: {
// service: 'Mailgun',
// auth: {
// user: '', // mailgun username
// pass: '' // mailgun password
// }
// }
// },
// ```
mail: {
transport: 'SMTP',
options: {
service: 'Mailgun',
auth: {
user: 'postmaster@sandboxb1f4c0431d8c4cbb8101cec0eb7e3cfd.mailgun.org', // mailgun username
pass: 'b3705e30bec5370e831177a7fd54c84c' // mailgun password
}
}
},
// #### Database
// Ghost supports sqlite3 (default), MySQL & PostgreSQL
database: {
client: 'sqlite3',
connection: {
filename: path.join(process.env.GHOST_CONTENT, '/data/ghost-dev.db')
},
debug: false
},
// #### Server
// Can be host & port (default), or socket
server: {
// Host to be passed to node's `net.Server#listen()`
host: '0.0.0.0',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: '2368'
},
// #### Paths
// Specify where your content directory lives
paths: {
contentPath: path.join(process.env.GHOST_CONTENT, '/')
}
},
// **Developers only need to edit below here**
// ### Testing
// Used when developing Ghost to run tests and check the health of Ghost
// Uses a different port number
testing: {
url: 'http://0.0.0.0:2369',
database: {
client: 'sqlite3',
connection: {
filename: path.join(process.env.GHOST_CONTENT, '/data/ghost-test.db')
}
},
server: {
host: '0.0.0.0',
port: '2369'
},
logging: false
},
// ### Testing MySQL
// Used by Travis - Automated testing run through GitHub
'testing-mysql': {
url: 'http://0.0.0.0:2369',
database: {
client: 'mysql',
connection: {
host : '0.0.0.0',
user : 'root',
password : '',
database : 'ghost_testing',
charset : 'utf8'
}
},
server: {
host: '0.0.0.0',
port: '2369'
},
logging: false
},
// ### Testing pg
// Used by Travis - Automated testing run through GitHub
'testing-pg': {
url: 'http://0.0.0.0:2369',
database: {
client: 'pg',
connection: {
host : '0.0.0.0',
user : 'postgres',
password : '',
database : 'ghost_testing',
charset : 'utf8'
}
},
server: {
host: '0.0.0.0',
port: '2369'
},
logging: false
}
};
module.exports = config;

3
data/README.md Normal file
View File

@ -0,0 +1,3 @@
# Content / Data
This is the home of your Ghost database, do not overwrite this folder or any of the files inside of it.

BIN
data/ghost-dev.db Normal file

Binary file not shown.

105
data/ghost2hugo.py Normal file
View File

@ -0,0 +1,105 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sqlite3
import json
import os
from datetime import datetime
# optional usage to remove accents on tag names
# -------------
# import unicodedata
# def remove_accents(input_str):
# nkfd_form = unicodedata.normalize('NFKD', input_str)
# return u"".join([c for c in nkfd_form if not unicodedata.combining(c)])
# -------------
conn = sqlite3.connect('ghost-dev.db')
conn.row_factory = sqlite3.Row
c = conn.cursor()
c2 = conn.cursor()
l = []
for i in c.execute('''
SELECT id, title, meta_description as description, slug, markdown as text,
status as draft, page, meta_title, image,
DATE(published_at) as date,
DATE(created_at) as date2
FROM posts'''):
g = {i.keys()[e]: tuple(i)[e] for e in range(len(i.keys()))}
t = (i['id'],)
g['tags'] = [e['name'] for e in c2.execute('''
SELECT t.name FROM posts_tags pt JOIN tags t ON pt.tag_id = t.id
WHERE pt.post_id=?''', t)]
if g['date'] == None:
g['date'] = g['date2']
if g['draft'] == 'published':
g['draft'] = False
else:
g['draft'] = True
g.pop('date2')
# post description
if g['description'] == None:
g['description'] = ""
# post content
text = g.pop('text')
text = text.replace("# ", "#")
text = text.replace("#", "# ")
text = text.replace("# # # ", "### ")
text = text.replace("# # ", "## ")
text = text.replace("\# ", "\#")
# post type
if g['page'] == True:
page = 'page'
else:
page = 'post'
g['type'] = page
g.pop('page')
published = g['date'].split('-')
newpath = './content/{}/{}/{}'.format(published[0], published[1], published[2])
if not os.path.exists(newpath):
os.makedirs(newpath)
with open('./content/%s/%s/%s/%s.md' % (published[0], published[1], published[2], g['slug']), 'w') as post_file:
# with open('./content/%s.md' % (g['slug']), 'w') as post_file:
post_file.write('---\n')
post_file.write('type: %s\n' % g['type'])
post_file.write('date: %s\n' % g['date'])
post_file.write('title: "%s"\n' % g['title'])
post_file.write('image: "%s"\n' % g['image'])
if g['description']:
post_file.write('description: %s\n' % g['description'])
print(g['description'])
post_file.write('slug: %s\n' % g['slug'])
post_file.write('tags: [')
# encode each tag to accept accents or removed them
# and add a comma to separate each one
for i in range(0, len(g['tags'])):
if i < len(g['tags']) - 1 :
separator = ", "
else:
separator = ""
# encode string to keep accents etc. E.g. "Introdução e Avaliações"
tag = g['tags'][i]
# uncomment if you like to remove accents. E.g. "Introducao e Avaliacoes"
#tag = remove_accents(g['tags'][i])
post_file.write('"%s"' % tag+separator)
post_file.write(']\n')
post_file.write('---\n\n')
post_file.write(text)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

22
themes/casper/LICENSE Normal file
View File

@ -0,0 +1,22 @@
Copyright (c) 2013-2015 Ghost Foundation
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

16
themes/casper/README.md Normal file
View File

@ -0,0 +1,16 @@
# Casper
The default theme for [Ghost](http://github.com/tryghost/ghost/).
To download, visit the [releases](https://github.com/TryGhost/Casper/releases) page.
## Copyright & License
Copyright (c) 2013-2015 Ghost Foundation - Released under the MIT License.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,20 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xf600;" d="M0 480v-102.4h307.2v102.4h-307.2zM0 275.2v-102.4h512v102.4h-512zM0 70.4v-102.4h204.8v102.4h-204.8zM307.2 70.4v-102.4h204.8v102.4h-204.8zM409.6 480v-102.4h102.4v102.4h-102.4z" />
<glyph unicode="&#xf601;" d="M421.344-32c-0.4 229.616-200.752 417.264-421.344 417.696v94.304c270.656 0 512-230.304 512-512h-90.656zM343.6-31.968h-90.608c0.304 56.384-28.336 119.488-73.664 166.736-45.072 47.632-124.96 77.648-179.104 77.36v94.272c169.040-3.648 339.936-163.312 343.376-338.368zM64.256 96.048c35.312 0 63.936-28.656 63.936-64 0-35.328-28.624-63.984-63.936-63.984s-63.936 28.656-63.936 63.984c0 35.344 28.624 64 63.936 64z" />
<glyph unicode="&#xf602;" d="M512 382.791c-18.838-8.354-39.082-14.001-60.33-16.54 21.686 13 38.343 33.585 46.186 58.115-20.298-12.039-42.778-20.78-66.705-25.49-19.16 20.415-46.461 33.17-76.673 33.17-58.011 0-105.044-47.029-105.044-105.039 0-8.233 0.929-16.25 2.72-23.939-87.3 4.382-164.701 46.2-216.509 109.753-9.042-15.514-14.223-33.558-14.223-52.809 0-36.444 18.544-68.596 46.73-87.433-17.219 0.546-33.416 5.271-47.577 13.139-0.010-0.438-0.010-0.878-0.010-1.321 0-50.894 36.209-93.348 84.261-103-8.813-2.4-18.094-3.686-27.674-3.686-6.769 0-13.349 0.66-19.764 1.886 13.368-41.73 52.16-72.103 98.126-72.948-35.95-28.175-81.243-44.967-130.458-44.967-8.479 0-16.84 0.497-25.058 1.47 46.486-29.805 101.701-47.197 161.021-47.197 193.211 0 298.868 160.062 298.868 298.872 0 4.554-0.103 9.084-0.305 13.59 20.528 14.81 38.336 33.31 52.418 54.374z" />
<glyph unicode="&#xf603;" d="M0.403 45.168c-0.122 1.266-0.226 2.535-0.292 3.815 0.065-1.28 0.17-2.549 0.292-3.815zM117.954 197.426c46.005-1.369 76.867 46.349 68.931 106.599-7.947 60.24-51.698 108.584-97.704 109.961-46.013 1.365-76.87-44.741-68.926-105 7.941-60.234 51.676-110.187 97.699-111.56zM512 352v42.655c0 46.94-38.391 85.345-85.329 85.345h-341.328c-46.138 0-84.006-37.116-85.282-82.963 29.181 25.693 69.662 47.158 111.437 47.158 44.652 0 178.622 0 178.622 0l-39.974-33.809h-56.634c37.565-14.402 57.578-58.062 57.578-102.861 0-37.624-20.905-69.977-50.444-92.984-28.822-22.451-34.286-31.854-34.286-50.939 0-16.289 30.873-44 47.016-55.394 47.191-33.269 62.458-64.156 62.458-115.728 0-8.214-1.021-16.415-3.033-24.48h153.871c46.937 0 85.328 38.375 85.328 85.345v266.654h-96v-95.999h-32v96h-95.999v32h95.999v96h32v-96h96zM92.943 97.032c10.807 0 20.711 0.295 30.968 0.295-13.573 13.167-24.313 29.3-24.313 49.19 0 11.804 3.782 23.168 9.067 33.26-5.391-0.385-10.895-0.497-16.563-0.497-37.178 0-68.753 12.038-92.102 31.927v-33.621l0.003-100.865c26.72 12.687 58.444 20.311 92.94 20.311zM1.71 36.371c-0.556 2.729-0.983 5.503-1.271 8.317 0.287-2.814 0.715-5.588 1.271-8.317zM227.725 3.577c-7.529 29.403-34.227 43.982-71.444 69.784-13.536 4.366-28.447 6.937-44.447 7.104-44.809 0.482-86.554-17.471-110.108-44.186 7.96-38.853 42.517-68.279 83.617-68.279h143.222c0.908 5.564 1.348 11.316 1.348 17.216 0 6.267-0.767 12.396-2.188 18.361z" />
<glyph unicode="&#xf604;" d="M426.672 480h-341.33c-46.936 0-85.342-38.407-85.342-85.344v-341.313c0-46.969 38.406-85.343 85.342-85.343l341.33 0.001c46.938 0 85.328 38.373 85.328 85.344v341.311c0 46.937-38.391 85.344-85.328 85.344zM435.296 224h-83.296v-224h-96v224h-46.263v73.282h46.263v47.593c0 64.671 27.896 103.125 103.935 103.125h87.622v-79.285h-71.565c-21.241 0.035-23.876-11.076-23.876-31.756l-0.116-39.677h96l-12.704-73.282z" />
<glyph unicode="&#xf605;" d="M368.615 34.099c6.861-6.938 6.861-18.125 0-25.063s-17.945-6.938-24.807 0l-200.448 202.419c-6.861 6.938-6.861 18.15 0 25.063l200.448 202.445c6.861 6.938 17.945 6.938 24.807 0s6.861-18.125 0-25.063l-182.784-189.901 182.784-189.901z" />
<glyph unicode="&#xf606;" d="M435.2 454.4h-56.32c-14.131 0-20.48-11.469-20.48-25.6v-435.2h102.4v435.2c0 14.131-11.443 25.6-25.6 25.6zM281.6 300.8h-56.32c-14.131 0-20.48-11.469-20.48-25.6v-281.6h102.4v281.6c0 14.131-11.443 25.6-25.6 25.6zM128 147.2h-56.32c-14.131 0-20.48-11.443-20.48-25.6v-128h102.4v128c0 14.157-11.469 25.6-25.6 25.6z" />
<glyph unicode="&#xf607;" d="M256 428.8c-70.707 0-128-57.319-128-128 0-122.214 128-281.6 128-281.6s128 159.386 128 281.6c0 70.681-57.293 128-128 128zM256 230.144c-38.169 0-69.12 30.951-69.12 69.12s30.951 69.12 69.12 69.12 69.12-30.951 69.12-69.12-30.95-69.12-69.12-69.12z" />
<glyph unicode="&#xf608;" d="M201.19 103.834l-20.736-20.582c-17.971-17.792-47.181-17.817-65.126 0-8.627 8.576-13.363 19.917-13.363 32.026s4.761 23.475 13.363 32.051l76.288 75.699c15.795 15.693 45.542 38.759 67.226 17.255 9.959-9.881 26.035-9.805 35.891 0.128 9.882 9.933 9.83 26.010-0.128 35.891-36.839 36.557-91.315 29.798-138.752-17.255l-76.288-75.699c-18.279-18.176-28.365-42.343-28.365-68.070 0-25.702 10.087-49.869 28.391-68.045 18.841-18.714 43.571-28.032 68.301-28.032s49.511 9.318 68.352 28.032l20.736 20.608c9.958 9.882 10.010 25.959 0.128 35.865-9.881 9.933-25.958 9.984-35.917 0.128zM432.409 397.85c-39.577 39.27-94.899 41.395-131.558 5.043l-25.831-25.626c-9.959-9.882-10.035-25.933-0.154-35.891 9.907-9.958 25.959-10.010 35.891-0.128l25.83 25.625c18.969 18.841 43.827 11.034 60.058-5.043 8.627-8.55 13.363-19.942 13.363-32.026 0-12.109-4.762-23.475-13.363-32.026l-81.408-80.742c-37.197-36.915-54.682-19.61-62.131-12.211-9.958 9.882-26.010 9.805-35.865-0.128-9.881-9.959-9.831-26.035 0.128-35.891 17.075-16.947 36.608-25.344 57.037-25.344 25.037 0 51.481 12.595 76.621 37.555l81.382 80.743c18.304 18.151 28.39 42.317 28.39 68.019s-10.087 49.894-28.39 68.070z" />
<glyph unicode="&#xf609;" d="M64 362.667h384q8.834 0 15.084-6.25t6.25-15.083-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.083 15.084 6.25zM64 106.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25zM64 234.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,56 @@
/**
* Main JS file for Casper behaviours
*/
/* globals jQuery, document */
(function ($, undefined) {
"use strict";
var $document = $(document);
$document.ready(function () {
var $postContent = $(".post-content");
$postContent.fitVids();
$(".scroll-down").arctic_scroll();
$(".menu-button, .nav-cover, .nav-close").on("click", function(e){
e.preventDefault();
$("body").toggleClass("nav-opened nav-closed");
});
});
// Arctic Scroll by Paul Adam Davis
// https://github.com/PaulAdamDavis/Arctic-Scroll
$.fn.arctic_scroll = function (options) {
var defaults = {
elem: $(this),
speed: 500
},
allOptions = $.extend(defaults, options);
allOptions.elem.click(function (event) {
event.preventDefault();
var $this = $(this),
$htmlBody = $('html, body'),
offset = ($this.attr('data-offset')) ? $this.attr('data-offset') : false,
position = ($this.attr('data-position')) ? $this.attr('data-position') : false,
toMove;
if (offset) {
toMove = parseInt(offset);
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top + toMove) }, allOptions.speed);
} else if (position) {
toMove = parseInt(position);
$htmlBody.stop(true, false).animate({scrollTop: toMove }, allOptions.speed);
} else {
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top) }, allOptions.speed);
}
});
};
})(jQuery);

View File

@ -0,0 +1,67 @@
/*global jQuery */
/*jshint browser:true */
/*!
* FitVids 1.1
*
* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
*
*/
(function( $ ){
"use strict";
$.fn.fitVids = function( options ) {
var settings = {
customSelector: null
};
if(!document.getElementById('fit-vids-style')) {
// appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
var head = document.head || document.getElementsByTagName('head')[0];
var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
var div = document.createElement('div');
div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
head.appendChild(div.childNodes[1]);
}
if ( options ) {
$.extend( settings, options );
}
return this.each(function(){
var selectors = [
"iframe[src*='player.vimeo.com']",
"iframe[src*='youtube.com']",
"iframe[src*='youtube-nocookie.com']",
"iframe[src*='kickstarter.com'][src*='video.html']",
"object",
"embed"
];
if (settings.customSelector) {
selectors.push(settings.customSelector);
}
var $allVideos = $(this).find(selectors.join(','));
$allVideos = $allVideos.not("object object"); // SwfObj conflict patch
$allVideos.each(function(){
var $this = $(this);
if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
aspectRatio = height / width;
if(!$this.attr('id')){
var videoID = 'fitvid' + Math.floor(Math.random()*999999);
$this.attr('id', videoID);
}
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
$this.removeAttr('height').removeAttr('width');
});
});
};
// Works with either jQuery or Zepto
})( window.jQuery || window.Zepto );

41
themes/casper/author.hbs Normal file
View File

@ -0,0 +1,41 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
{{! Everything inside the #author tags pulls data from the author }}
{{#author}}
<header class="main-header author-head {{#if cover}}" style="background-image: url({{cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<section class="author-profile inner">
{{#if image}}
<figure class="author-image">
<div class="img" style="background-image: url({{image}})"><span class="hidden">{{name}}'s Picture</span></div>
</figure>
{{/if}}
<h1 class="author-title">{{name}}</h1>
{{#if bio}}
<h2 class="author-bio">{{bio}}</h2>
{{/if}}
<div class="author-meta">
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
<span class="author-stats"><i class="icon-stats"></i> {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}</span>
</div>
</section>
{{/author}}
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>

50
themes/casper/default.hbs Normal file
View File

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}} nav-closed">
{{navigation}}
<div class="site-wrapper">
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="site-footer clearfix">
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> &copy; {{date format="YYYY"}}</section>
<section class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a></section>
</footer>
</div>
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
{{! The main JavaScript file for Casper }}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</body>
</html>

27
themes/casper/index.hbs Normal file
View File

@ -0,0 +1,27 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{@blog.title}}</h1>
<h2 class="page-description">{{@blog.description}}</h2>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content" data-offset="-45"><span class="hidden">Scroll Down</span></a>
</header>
{{! The main content area on the homepage }}
<main id="content" class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>

View File

@ -0,0 +1,4 @@
{
"name": "Casper",
"version": "1.2.6"
}

31
themes/casper/page.hbs Normal file
View File

@ -0,0 +1,31 @@
{{!< default}}
{{! This is a page template. A page outputs content just like any other post, and has all the same
attributes by default, but you can also customise it to behave differently if you prefer. }}
{{! Everything inside the #post tags pulls data from the page }}
{{#post}}
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<main class="content" role="main">
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
<section class="post-content">
{{content}}
</section>
</article>
</main>
{{/post}}

View File

@ -0,0 +1,25 @@
{{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">&raquo;</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="{{author.name}}" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}

View File

@ -0,0 +1,13 @@
<div class="nav">
<h3 class="nav-title">Menu</h3>
<a href="#" class="nav-close">
<span class="hidden">Close</span>
</a>
<ul>
{{#foreach navigation}}
<li class="nav-{{slug}}{{#if current}} nav-current{{/if}}" role="presentation"><a href="{{url absolute="true"}}">{{label}}</a></li>
{{/foreach}}
</ul>
<a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a>
</div>
<span class="nav-cover"></span>

99
themes/casper/post.hbs Normal file
View File

@ -0,0 +1,99 @@
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<main class="content" role="main">
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
</section>
</header>
<section class="post-content">
{{content}}
</section>
<footer class="post-footer">
{{! Everything inside the #author tags pulls data from the author }}
{{#author}}
{{#if image}}
<figure class="author-image">
<a class="img" href="{{url}}" style="background-image: url({{image}})"><span class="hidden">{{name}}'s Picture</span></a>
</figure>
{{/if}}
<section class="author">
<h4><a href="{{url}}">{{name}}</a></h4>
{{#if bio}}
<p>{{bio}}</p>
{{else}}
<p>Read <a href="{{url}}">more posts</a> by this author.</p>
{{/if}}
<div class="author-meta">
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
</div>
</section>
{{/author}}
<section class="share">
<h4>Share this post</h4>
<a class="icon-twitter" href="https://twitter.com/intent/tweet?text={{encode title}}&amp;url={{url absolute="true"}}"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url={{url absolute="true"}}"
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a>
</section>
</footer>
</article>
</main>
<aside class="read-next">
{{#next_post}}
<a class="read-next-story {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}" href="{{url}}">
<section class="post">
<h2>{{title}}</h2>
<p>{{excerpt words="19"}}&hellip;</p>
</section>
</a>
{{/next_post}}
{{#prev_post}}
<a class="read-next-story prev {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}" href="{{url}}">
<section class="post">
<h2>{{title}}</h2>
<p>{{excerpt words="19"}}&hellip;</p>
</section>
</a>
{{/prev_post}}
</aside>
{{/post}}

32
themes/casper/tag.hbs Normal file
View File

@ -0,0 +1,32 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! If we have a tag cover, display that - else blog cover - else nothing }}
<header class="main-header tag-head {{#if tag.image}}" style="background-image: url({{tag.image}}){{else}}{{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{tag.name}}</h1>
<h2 class="page-description">
{{#if tag.description}}
{{tag.description}}
{{else}}
A {{pagination.total}}-post collection
{{/if}}
</h2>
</div>
</div>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>

22
themes/zebra/LICENSE Normal file
View File

@ -0,0 +1,22 @@
Copyright (c) 2013-2015 Ghost Foundation
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

16
themes/zebra/README.md Normal file
View File

@ -0,0 +1,16 @@
# Casper
The default theme for [Ghost](http://github.com/tryghost/ghost/).
To download, visit the [releases](https://github.com/TryGhost/Casper/releases) page.
## Copyright & License
Copyright (c) 2013-2015 Ghost Foundation - Released under the MIT License.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,60 @@
.author img {
position: relative;
width: 120px;
left: inherit;
transform: inherit;
margin-right: 40px;
}
/* Component styles */
a.read {
display: block;
max-width: 250px;
margin: 20px auto;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
border-radius: 4px;
box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.3), 0 1px 1.5px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.2);
font-family: 'Roboto',sans-serif;
font-weight: 400;
text-transform: uppercase;
color: #bcdffb;
width: inherit;
}
.button.read {
height: 100%;
padding: 1em;
position: relative;
width: 100%;
}
.button.styl-material {
-webkit-transition: 200ms background cubic-bezier(0.4, 0, 0.2, 1);
transition: 200ms background cubic-bezier(0.4, 0, 0.2, 1);
background: #2196F3;
}
.button.styl-material:hover,
.button.styl-material:focus {
outline: none;
background: #2b9bf4;
}
.ripple-obj {
height: 100%;
pointer-events: none;
position: absolute;
top: 0;
left: 0;
z-index: 0;
width: 100%;
fill: #0c7cd5;
}
.ripple-obj use {
opacity: 0;
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,20 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xf600;" d="M0 480v-102.4h307.2v102.4h-307.2zM0 275.2v-102.4h512v102.4h-512zM0 70.4v-102.4h204.8v102.4h-204.8zM307.2 70.4v-102.4h204.8v102.4h-204.8zM409.6 480v-102.4h102.4v102.4h-102.4z" />
<glyph unicode="&#xf601;" d="M421.344-32c-0.4 229.616-200.752 417.264-421.344 417.696v94.304c270.656 0 512-230.304 512-512h-90.656zM343.6-31.968h-90.608c0.304 56.384-28.336 119.488-73.664 166.736-45.072 47.632-124.96 77.648-179.104 77.36v94.272c169.040-3.648 339.936-163.312 343.376-338.368zM64.256 96.048c35.312 0 63.936-28.656 63.936-64 0-35.328-28.624-63.984-63.936-63.984s-63.936 28.656-63.936 63.984c0 35.344 28.624 64 63.936 64z" />
<glyph unicode="&#xf602;" d="M512 382.791c-18.838-8.354-39.082-14.001-60.33-16.54 21.686 13 38.343 33.585 46.186 58.115-20.298-12.039-42.778-20.78-66.705-25.49-19.16 20.415-46.461 33.17-76.673 33.17-58.011 0-105.044-47.029-105.044-105.039 0-8.233 0.929-16.25 2.72-23.939-87.3 4.382-164.701 46.2-216.509 109.753-9.042-15.514-14.223-33.558-14.223-52.809 0-36.444 18.544-68.596 46.73-87.433-17.219 0.546-33.416 5.271-47.577 13.139-0.010-0.438-0.010-0.878-0.010-1.321 0-50.894 36.209-93.348 84.261-103-8.813-2.4-18.094-3.686-27.674-3.686-6.769 0-13.349 0.66-19.764 1.886 13.368-41.73 52.16-72.103 98.126-72.948-35.95-28.175-81.243-44.967-130.458-44.967-8.479 0-16.84 0.497-25.058 1.47 46.486-29.805 101.701-47.197 161.021-47.197 193.211 0 298.868 160.062 298.868 298.872 0 4.554-0.103 9.084-0.305 13.59 20.528 14.81 38.336 33.31 52.418 54.374z" />
<glyph unicode="&#xf603;" d="M0.403 45.168c-0.122 1.266-0.226 2.535-0.292 3.815 0.065-1.28 0.17-2.549 0.292-3.815zM117.954 197.426c46.005-1.369 76.867 46.349 68.931 106.599-7.947 60.24-51.698 108.584-97.704 109.961-46.013 1.365-76.87-44.741-68.926-105 7.941-60.234 51.676-110.187 97.699-111.56zM512 352v42.655c0 46.94-38.391 85.345-85.329 85.345h-341.328c-46.138 0-84.006-37.116-85.282-82.963 29.181 25.693 69.662 47.158 111.437 47.158 44.652 0 178.622 0 178.622 0l-39.974-33.809h-56.634c37.565-14.402 57.578-58.062 57.578-102.861 0-37.624-20.905-69.977-50.444-92.984-28.822-22.451-34.286-31.854-34.286-50.939 0-16.289 30.873-44 47.016-55.394 47.191-33.269 62.458-64.156 62.458-115.728 0-8.214-1.021-16.415-3.033-24.48h153.871c46.937 0 85.328 38.375 85.328 85.345v266.654h-96v-95.999h-32v96h-95.999v32h95.999v96h32v-96h96zM92.943 97.032c10.807 0 20.711 0.295 30.968 0.295-13.573 13.167-24.313 29.3-24.313 49.19 0 11.804 3.782 23.168 9.067 33.26-5.391-0.385-10.895-0.497-16.563-0.497-37.178 0-68.753 12.038-92.102 31.927v-33.621l0.003-100.865c26.72 12.687 58.444 20.311 92.94 20.311zM1.71 36.371c-0.556 2.729-0.983 5.503-1.271 8.317 0.287-2.814 0.715-5.588 1.271-8.317zM227.725 3.577c-7.529 29.403-34.227 43.982-71.444 69.784-13.536 4.366-28.447 6.937-44.447 7.104-44.809 0.482-86.554-17.471-110.108-44.186 7.96-38.853 42.517-68.279 83.617-68.279h143.222c0.908 5.564 1.348 11.316 1.348 17.216 0 6.267-0.767 12.396-2.188 18.361z" />
<glyph unicode="&#xf604;" d="M426.672 480h-341.33c-46.936 0-85.342-38.407-85.342-85.344v-341.313c0-46.969 38.406-85.343 85.342-85.343l341.33 0.001c46.938 0 85.328 38.373 85.328 85.344v341.311c0 46.937-38.391 85.344-85.328 85.344zM435.296 224h-83.296v-224h-96v224h-46.263v73.282h46.263v47.593c0 64.671 27.896 103.125 103.935 103.125h87.622v-79.285h-71.565c-21.241 0.035-23.876-11.076-23.876-31.756l-0.116-39.677h96l-12.704-73.282z" />
<glyph unicode="&#xf605;" d="M368.615 34.099c6.861-6.938 6.861-18.125 0-25.063s-17.945-6.938-24.807 0l-200.448 202.419c-6.861 6.938-6.861 18.15 0 25.063l200.448 202.445c6.861 6.938 17.945 6.938 24.807 0s6.861-18.125 0-25.063l-182.784-189.901 182.784-189.901z" />
<glyph unicode="&#xf606;" d="M435.2 454.4h-56.32c-14.131 0-20.48-11.469-20.48-25.6v-435.2h102.4v435.2c0 14.131-11.443 25.6-25.6 25.6zM281.6 300.8h-56.32c-14.131 0-20.48-11.469-20.48-25.6v-281.6h102.4v281.6c0 14.131-11.443 25.6-25.6 25.6zM128 147.2h-56.32c-14.131 0-20.48-11.443-20.48-25.6v-128h102.4v128c0 14.157-11.469 25.6-25.6 25.6z" />
<glyph unicode="&#xf607;" d="M256 428.8c-70.707 0-128-57.319-128-128 0-122.214 128-281.6 128-281.6s128 159.386 128 281.6c0 70.681-57.293 128-128 128zM256 230.144c-38.169 0-69.12 30.951-69.12 69.12s30.951 69.12 69.12 69.12 69.12-30.951 69.12-69.12-30.95-69.12-69.12-69.12z" />
<glyph unicode="&#xf608;" d="M201.19 103.834l-20.736-20.582c-17.971-17.792-47.181-17.817-65.126 0-8.627 8.576-13.363 19.917-13.363 32.026s4.761 23.475 13.363 32.051l76.288 75.699c15.795 15.693 45.542 38.759 67.226 17.255 9.959-9.881 26.035-9.805 35.891 0.128 9.882 9.933 9.83 26.010-0.128 35.891-36.839 36.557-91.315 29.798-138.752-17.255l-76.288-75.699c-18.279-18.176-28.365-42.343-28.365-68.070 0-25.702 10.087-49.869 28.391-68.045 18.841-18.714 43.571-28.032 68.301-28.032s49.511 9.318 68.352 28.032l20.736 20.608c9.958 9.882 10.010 25.959 0.128 35.865-9.881 9.933-25.958 9.984-35.917 0.128zM432.409 397.85c-39.577 39.27-94.899 41.395-131.558 5.043l-25.831-25.626c-9.959-9.882-10.035-25.933-0.154-35.891 9.907-9.958 25.959-10.010 35.891-0.128l25.83 25.625c18.969 18.841 43.827 11.034 60.058-5.043 8.627-8.55 13.363-19.942 13.363-32.026 0-12.109-4.762-23.475-13.363-32.026l-81.408-80.742c-37.197-36.915-54.682-19.61-62.131-12.211-9.958 9.882-26.010 9.805-35.865-0.128-9.881-9.959-9.831-26.035 0.128-35.891 17.075-16.947 36.608-25.344 57.037-25.344 25.037 0 51.481 12.595 76.621 37.555l81.382 80.743c18.304 18.151 28.39 42.317 28.39 68.019s-10.087 49.894-28.39 68.070z" />
<glyph unicode="&#xf609;" d="M64 362.667h384q8.834 0 15.084-6.25t6.25-15.083-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.083 15.084 6.25zM64 106.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25zM64 234.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,241 @@
<?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="oxygenbold" horiz-adv-x="1298" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="444" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="0" />
<glyph unicode=" " horiz-adv-x="444" />
<glyph unicode="&#x09;" horiz-adv-x="444" />
<glyph unicode="&#xa0;" horiz-adv-x="444" />
<glyph unicode="!" horiz-adv-x="397" d="M39 139q0 66 48 114t114 48q65 0 112 -48t47 -114t-47 -112.5t-112 -46.5q-66 0 -114 46.5t-48 112.5zM80 1198v248h256v-248l-68 -743h-116z" />
<glyph unicode="&#x22;" horiz-adv-x="645" d="M61 1452h218v-514h-181zM369 1452h213v-514h-181z" />
<glyph unicode="#" horiz-adv-x="1064" d="M35 381l14 184h199l57 330h-188l14 184h205l78 375h194l-71 -375h155l72 375h197l-72 -375h143l-20 -182h-158l-66 -332h158l-18 -184h-168l-78 -404h-195l74 404h-149l-78 -404h-199l80 404h-180zM440 565h158l59 332h-155z" />
<glyph unicode="$" horiz-adv-x="1175" d="M63 104l78 218q77 -49 199 -81t242 -32q268 0 268 172q0 39 -12.5 70.5t-30.5 52t-51 40t-60.5 30t-72.5 26.5l-183 62q-61 20 -108.5 41t-97.5 55.5t-83 75.5t-54 101t-21 132q0 133 72 228t189 139.5t265 44.5q313 0 473 -115l-78 -201q-146 90 -395 90 q-229 0 -229 -157q0 -76 38 -114.5t113 -63.5l199 -66q54 -18 91.5 -32.5t85 -37t80.5 -45.5t67 -56t54 -70.5t33 -87t13 -107.5q0 -109 -43 -193t-120 -136.5t-178 -79.5t-222 -27q-328 0 -521 124zM561 -197v1835h103v-1835h-103z" />
<glyph unicode="%" horiz-adv-x="1732" d="M37 1055q0 171 97 284t263 113q175 0 274 -110.5t99 -282.5v-2q0 -169 -104 -283.5t-273 -114.5q-166 0 -261 112t-95 284zM233 1055q0 -102 39.5 -161.5t122.5 -59.5t124.5 61t41.5 162q0 102 -40.5 162.5t-123.5 60.5t-123.5 -61.5t-40.5 -163.5zM272 -41l922 1487l2 4 h231q-1 -1 -1.5 -3t-1 -3t-1.5 -2l-919 -1483h-232zM961 442q0 148 100 238t266 90q179 0 275 -109t96 -282q0 -168 -98.5 -281.5t-262.5 -113.5q-172 0 -271 110.5t-99 278.5v2q-6 35 -6 67zM1178 373q0 -100 40 -158.5t123 -58.5q82 0 121 60.5t39 162.5q0 101 -42.5 160 t-133.5 59q-38 0 -65 -11.5t-42.5 -30.5t-24.5 -49.5t-12 -61t-3 -72.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1398" d="M41 408q0 79 25 146t71.5 119.5t99 91t121.5 75.5q-71 80 -107 148t-36 157q0 86 32 152.5t86 106t119.5 59.5t139.5 20q72 0 139 -18.5t125 -55t93.5 -100.5t35.5 -146q0 -56 -18.5 -106.5t-46 -87.5t-71 -72.5t-81.5 -59t-88 -49.5l332 -356q70 80 141 213l182 -121 q-67 -132 -170 -250l207 -219l-229 -71l-139 145q-205 -152 -445 -152q-77 0 -149 14t-140 46.5t-118 80.5t-80.5 123t-30.5 167zM291 432q0 -65 22 -112.5t62 -74t87.5 -38.5t104.5 -12q143 0 283 96l-367 424q-90 -53 -141 -119.5t-51 -163.5zM442 1137q0 -62 28 -112 t79 -107q35 19 54.5 31t49 34.5t45 43.5t27.5 51.5t12 64.5q0 69 -38.5 104t-104.5 35q-70 0 -111 -36t-41 -109z" />
<glyph unicode="'" horiz-adv-x="344" d="M61 1452h218v-514h-181z" />
<glyph unicode="(" horiz-adv-x="622" d="M94 635q0 133 21 254.5t62.5 230.5t84 193t103.5 184h266q-10 -18 -27.5 -50.5t-61 -132t-77 -197.5t-61 -232t-27.5 -250t26 -248t63.5 -237t75 -193.5t63.5 -136.5l26 -49h-266q-61 100 -103.5 184.5t-84 193.5t-62.5 231t-21 255z" />
<glyph unicode=")" horiz-adv-x="622" d="M-6 -229q10 18 27.5 51t61 132.5t77 197.5t61 232.5t27.5 250.5t-26 248t-63.5 236.5t-75 192.5t-63.5 136l-26 49h264q61 -101 103.5 -184.5t84 -192.5t63 -230.5t21.5 -254.5t-21.5 -255t-63 -231t-84 -193.5t-103.5 -184.5h-264z" />
<glyph unicode="*" horiz-adv-x="1058" d="M49 1059l94 186l306 -147l-27 346h217l-27 -346l303 147l95 -186l-340 -123l252 -299l-199 -121l-193 309l-192 -309l-201 121l252 299z" />
<glyph unicode="+" horiz-adv-x="1198" d="M68 461v198h424v398h219v-398h422v-198h-424v-400h-220v400h-421z" />
<glyph unicode="," horiz-adv-x="423" d="M37 -305l115 528h239l-174 -528h-180z" />
<glyph unicode="-" horiz-adv-x="696" d="M70 432v195h559v-195h-559z" />
<glyph unicode="." horiz-adv-x="425" d="M57 139q0 66 48 114t114 48q65 0 112.5 -48t47.5 -114t-47.5 -112.5t-112.5 -46.5q-66 0 -114 46.5t-48 112.5z" />
<glyph unicode="/" horiz-adv-x="921" d="M51 -178l586 1675h231l-587 -1675h-230z" />
<glyph unicode="0" horiz-adv-x="1296" d="M94 725q0 120 17.5 226.5t58.5 205t103.5 168.5t158.5 112t217 42t217 -42t158 -112.5t103 -169t58 -204.5t17 -226t-17 -225t-57.5 -202t-102.5 -166.5t-158 -110.5t-218 -41t-218 41t-158.5 110.5t-103.5 166.5t-58 202t-17 225zM391 739h2v-6q0 -70 4 -127.5 t13.5 -120t28 -109.5t46 -85.5t69 -59t95.5 -20.5q53 0 95 20.5t69 59.5t46 86t28.5 109t13.5 120t4 127q0 68 -4 125t-13.5 117.5t-28.5 106.5t-46 83.5t-69 57.5t-95 20q-63 0 -110.5 -29.5t-74.5 -76t-44 -116t-22.5 -135t-6.5 -147.5z" />
<glyph unicode="1" horiz-adv-x="696" d="M43 1079v213l295 156h240v-1448h-279v1190z" />
<glyph unicode="2" horiz-adv-x="1013" d="M49 1335q82 73 178 108.5t224 35.5q212 0 349.5 -117t137.5 -322q0 -80 -25 -158.5t-71 -149t-85.5 -118.5t-94.5 -106l-285 -297h547l-21 -211h-850v233l441 488q72 77 111.5 152.5t39.5 166.5q0 85 -63 144t-152 59q-162 0 -301 -121z" />
<glyph unicode="3" horiz-adv-x="1048" d="M45 1366q83 62 184.5 87.5t239.5 25.5q214 0 345.5 -114t131.5 -288q0 -113 -58.5 -195.5t-172.5 -119.5q130 -33 200.5 -127.5t73.5 -228.5v-13q0 -133 -71.5 -228.5t-187 -140t-261.5 -44.5q-126 0 -239 32.5t-183 93.5l76 203q53 -45 149.5 -71.5t194.5 -26.5 q101 0 163 56.5t62 144.5q0 59 -17.5 100t-47 66t-79.5 39.5t-102 19.5t-129 6h-57v221h57q84 0 144 8.5t110 29t75.5 60t25.5 97.5q0 72 -60 128t-168 56q-185 0 -323 -82z" />
<glyph unicode="4" horiz-adv-x="1239" d="M84 309v187l553 950h379v-922h174l-12 -215h-162v-309h-297v309h-635zM391 524h328v594z" />
<glyph unicode="5" horiz-adv-x="1103" d="M96 121l82 203q6 -5 17.5 -13t46.5 -28t70.5 -35.5t85.5 -28t96 -12.5q127 0 189 72t62 190q0 116 -61 190t-168 74q-43 0 -93.5 -18.5t-90.5 -59.5l-180 33l36 758h787l-14 -221h-566l-12 -326q104 39 207 39q193 0 315.5 -130.5t122.5 -342.5q0 -221 -128 -353 t-365 -132q-64 0 -132.5 14.5t-121 35t-96 41.5t-66.5 35z" />
<glyph unicode="6" horiz-adv-x="1189" d="M49 461q0 65 14.5 126.5t44.5 119t53.5 94.5t63.5 92l414 553h352l-416 -539q61 11 84 11q221 0 359.5 -127t138.5 -332q0 -144 -73.5 -254t-198 -167.5t-279.5 -57.5q-244 0 -400.5 130.5t-156.5 350.5zM346 446q0 -118 64.5 -184.5t183.5 -66.5q123 0 191.5 69 t68.5 189q0 258 -256 258q-252 0 -252 -265z" />
<glyph unicode="7" horiz-adv-x="999" d="M51 1231v215h932v-164l-485 -1282h-287l453 1231h-613z" />
<glyph unicode="8" horiz-adv-x="1124" d="M49 389q0 247 242 371q-215 115 -215 338q0 124 67 211.5t175 128.5t245 41t245.5 -41t175.5 -128.5t67 -211.5q0 -220 -199 -338q223 -122 223 -371q0 -130 -70.5 -224.5t-184.5 -139.5t-257 -45t-258 45.5t-185.5 139.5t-70.5 224zM315 401q0 -104 64 -156t184 -52 q246 0 246 210q0 107 -67.5 172.5t-178.5 96.5q-248 -69 -248 -271zM324 1085q0 -200 239 -256q240 57 240 256q0 84 -67 132.5t-173 48.5q-105 0 -172 -48.5t-67 -132.5z" />
<glyph unicode="9" horiz-adv-x="1214" d="M63 999q0 144 73.5 254.5t198 168t279.5 57.5q244 0 400.5 -131t156.5 -351q0 -65 -14.5 -126.5t-44.5 -119t-53.5 -94.5t-63.5 -92l-411 -565h-355l416 551q-55 -10 -84 -10q-221 0 -359.5 126.5t-138.5 331.5zM367 1006q0 -125 63.5 -191.5t194.5 -66.5q249 0 249 264 q0 119 -63.5 185.5t-181.5 66.5q-123 0 -192.5 -69t-69.5 -189z" />
<glyph unicode=":" horiz-adv-x="446" d="M86 0v276h283v-276h-283zM86 788v277h283v-277h-283z" />
<glyph unicode=";" horiz-adv-x="423" d="M94 -326l56 570h239l-123 -570h-172zM104 788v277h285v-277h-285z" />
<glyph unicode="&#x3c;" horiz-adv-x="1081" d="M35 494v124l1007 478v-219l-700 -320l698 -309v-219z" />
<glyph unicode="=" horiz-adv-x="1183" d="M70 639v199h1042v-199h-1042zM72 283v196h1042v-196h-1042z" />
<glyph unicode="&#x3e;" horiz-adv-x="1083" d="M41 39v219l702 303l-698 330v219l1006 -492v-129z" />
<glyph unicode="?" horiz-adv-x="886" d="M43 1368q88 56 174 83.5t211 27.5q53 0 107 -12.5t105.5 -40.5t91.5 -68t64.5 -99t24.5 -129q0 -79 -39.5 -162.5t-92 -148.5t-128 -169t-125.5 -197h-119q13 84 47.5 164.5t73 140.5t75.5 115.5t61 111t24 105.5q0 85 -53 137.5t-146 52.5q-150 0 -280 -86zM207 139 q0 66 48 114t114 48q65 0 112 -48t47 -114t-47 -112.5t-112 -46.5q-66 0 -114 46.5t-48 112.5z" />
<glyph unicode="@" horiz-adv-x="1632" d="M55 571q0 171 65 314t171 252q103 103 249.5 167t315.5 64q151 0 278.5 -50t221.5 -136q101 -92 162 -220t61 -288q0 -175 -74.5 -308t-197.5 -200q-76 -43 -164 -43q-141 0 -199 123q-103 -107 -229 -107q-141 0 -221 97.5t-80 244.5q0 142 65 263.5t178 193.5t246 72 q117 0 291 -60l23 -8l-5 -27q-11 -52 -32.5 -145t-38.5 -170t-29 -143q-8 -49 -8 -82q0 -42 13.5 -58t49.5 -16q68 0 119 57.5t74.5 141.5t23.5 178q0 242 -142 377t-386 135h-2q-21 24 -66 24q-43 0 -102.5 -25t-114 -62.5t-89.5 -64t-56 -44.5h-4q-39 0 -103.5 -187.5 t-64.5 -259.5q0 -286 167.5 -454t455.5 -168q263 0 434 141l20 16l111 -126l-25 -21q-211 -188 -543 -188q-175 0 -328 60t-255 159q-236 233 -236 581zM625 471q0 -147 112 -147h11q42 2 77.5 24.5t60.5 63t44 85t34 105.5t24.5 109t20.5 111q1 5 1 7q-79 9 -107 9 q-80 0 -145 -52.5t-99 -136t-34 -178.5z" />
<glyph unicode="A" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM506 627h295l-144 489z" />
<glyph unicode="B" horiz-adv-x="1308" d="M121 0v1446h491q106 0 189.5 -9.5t160.5 -34t127.5 -65t80.5 -106t30 -152.5q0 -186 -184 -295q231 -99 231 -360q0 -112 -42 -195t-120.5 -132.5t-181.5 -73t-233 -23.5h-549zM420 203h211q164 0 242.5 50.5t78.5 180.5q0 133 -71.5 185.5t-231.5 52.5h-229v-469z M420 870h227q133 0 198.5 37t65.5 131q0 46 -10 79.5t-33 55.5t-50 36t-71 21t-85 9t-103 2h-139v-371z" />
<glyph unicode="C" horiz-adv-x="1275" d="M72 733q0 169 55.5 310t152 236t229 147.5t284.5 52.5q279 0 438 -142l-78 -211q-70 59 -147 88t-197 29q-193 0 -313.5 -139t-120.5 -373q0 -251 118.5 -385.5t313.5 -134.5q210 0 352 108l74 -213q-104 -75 -210 -100.5t-232 -25.5q-147 0 -276.5 51t-228.5 144.5 t-156.5 237.5t-57.5 320z" />
<glyph unicode="D" horiz-adv-x="1495" d="M121 0v1446h391q167 0 304 -24.5t251 -79t192 -138.5t121 -206.5t43 -278.5q0 -231 -105 -394.5t-288 -244t-428 -80.5h-481zM420 223h201q244 0 374.5 127t130.5 365q0 142 -36 239.5t-112 156.5t-183.5 84.5t-259.5 25.5h-115v-998z" />
<glyph unicode="E" horiz-adv-x="1128" d="M121 0v1446h942l-25 -219h-618v-359h596v-217h-596v-432l672 -8l-13 -211h-958z" />
<glyph unicode="F" horiz-adv-x="1038" d="M121 0v1446h907l-20 -219h-590v-373h569v-217h-567v-637h-299z" />
<glyph unicode="G" horiz-adv-x="1429" d="M72 733q0 127 31 239.5t93 205.5t149 160t205 104t255 37q302 0 479 -142l-88 -194q-172 100 -377 100q-208 0 -325.5 -130.5t-118.5 -381.5v-8q0 -150 44 -263t141 -181t237 -68q158 0 260 57v316h-312l13 207h565v-676q-133 -66 -251 -100.5t-265 -34.5 q-333 0 -534 204.5t-201 548.5z" />
<glyph unicode="H" horiz-adv-x="1472" d="M121 0v1446h299v-592h635v592h299v-1446h-299v645h-635v-645h-299z" />
<glyph unicode="I" horiz-adv-x="565" d="M133 0v1446h299v-1446h-299z" />
<glyph unicode="J" horiz-adv-x="634" d="M-45 -88h82q111 0 145.5 46t34.5 171v1317h297v-1307q0 -100 -14.5 -170.5t-48 -124.5t-92 -85t-141.5 -46.5t-200 -15.5h-47z" />
<glyph unicode="K" horiz-adv-x="1306" d="M121 0v1446h299v-602l504 602h354l-549 -660l608 -786h-346l-495 657l-76 -75v-582h-299z" />
<glyph unicode="L" horiz-adv-x="1003" d="M121 0v1446h299v-1229h588l-17 -217h-870z" />
<glyph unicode="M" horiz-adv-x="1734" d="M121 0v1446h280l471 -911l467 911h277v-1446h-266v950l-371 -743h-215l-379 751v-958h-264z" />
<glyph unicode="N" horiz-adv-x="1447" d="M121 0v1446h248l686 -975v975h272v-1446h-254l-680 975v-975h-272z" />
<glyph unicode="O" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5z" />
<glyph unicode="P" horiz-adv-x="1204" d="M121 0v1446h483q271 0 422.5 -111t151.5 -340q0 -471 -549 -471q-135 0 -209 6v-530h-299zM420 737q25 -2 162 -2q76 0 132.5 14t89 36.5t52.5 56t26.5 66t6.5 73.5v4q0 118 -73.5 181t-209.5 63h-186v-492z" />
<glyph unicode="Q" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5zM887 -12l174 114q59 -105 136 -201.5t212 -219.5l-152 -150q-97 70 -200 201.5t-170 255.5z" />
<glyph unicode="R" horiz-adv-x="1302" d="M121 0v1446h557q107 0 187.5 -10.5t151.5 -38t116 -73.5t70.5 -118.5t25.5 -171.5q0 -288 -258 -383q29 -34 55 -75.5t40 -69t44 -88.5l205 -418h-314l-157 344l-127 250q-19 2 -93.5 3t-139.5 1h-64v-598h-299zM420 809h266q140 0 203 51.5t63 169.5q0 103 -65 151 t-195 48h-272v-420z" />
<glyph unicode="S" horiz-adv-x="1191" d="M63 104l78 218q77 -49 199 -81t242 -32q268 0 268 172q0 39 -12.5 70.5t-30.5 52t-51 40t-60.5 30t-72.5 26.5l-183 62q-61 20 -108.5 41t-97.5 55.5t-83 75.5t-54 101t-21 132q0 133 72 228t189 139.5t265 44.5q313 0 473 -115l-78 -201q-146 90 -395 90 q-229 0 -229 -157q0 -76 38 -114.5t113 -63.5l199 -66q54 -18 91.5 -32.5t85 -37t80.5 -45.5t67 -56t54 -70.5t33 -87t13 -107.5q0 -109 -43 -193t-120 -136.5t-178 -79.5t-222 -27q-328 0 -521 124z" />
<glyph unicode="T" horiz-adv-x="1089" d="M-27 1227v219h1143v-219h-424v-1227h-297v1227h-422z" />
<glyph unicode="U" horiz-adv-x="1388" d="M106 539v907h300v-893q0 -184 63.5 -264t224.5 -80t226 80t65 264v893h297v-907q0 -273 -147 -416t-441 -143t-441 143t-147 416z" />
<glyph unicode="V" horiz-adv-x="1318" d="M-10 1446h297l387 -1088l368 1088h289l-528 -1446h-264z" />
<glyph unicode="W" horiz-adv-x="2078" d="M-14 1446h286l285 -1059l361 1059h245l326 -1069l319 1069h285l-465 -1446h-280l-310 1063l-356 -1063h-276z" />
<glyph unicode="X" horiz-adv-x="1325" d="M-33 0l529 729l-482 717h324l340 -526l358 526h305l-499 -715l518 -731h-340l-356 524l-375 -524h-322z" />
<glyph unicode="Y" horiz-adv-x="1241" d="M-37 1446h309l353 -604l348 604h305l-502 -860v-586h-297v586z" />
<glyph unicode="Z" horiz-adv-x="1210" d="M57 0v172l754 1055h-721v219h1092v-160l-758 -1069h750v-217h-1117z" />
<glyph unicode="[" horiz-adv-x="604" d="M121 -188v1757h452v-183h-153v-1392h153v-182h-452z" />
<glyph unicode="\" horiz-adv-x="970" d="M35 1460h223l680 -1579h-221z" />
<glyph unicode="]" horiz-adv-x="604" d="M33 -6h153v1392h-153v183h452v-1757h-452v182z" />
<glyph unicode="^" horiz-adv-x="1179" d="M41 551l483 891h127l490 -891h-215l-340 641l-328 -641h-217z" />
<glyph unicode="_" horiz-adv-x="1144" d="M70 -135h1005v-189h-1005v189z" />
<glyph unicode="`" horiz-adv-x="468" d="M-39 1516h313l230 -340h-209q-56 56 -167.5 169.5t-166.5 170.5z" />
<glyph unicode="a" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56z" />
<glyph unicode="b" horiz-adv-x="1243" d="M106 0v1497h283v-555q33 66 116 113.5t208 48.5h8q142 0 248.5 -78.5t158.5 -203.5t52 -275q0 -159 -57.5 -288t-164 -204t-241.5 -75h-15q-112 0 -192 47t-121 123l-4 -150h-279zM385 539q0 -99 21 -170t58.5 -109t80.5 -55t96 -17q51 0 95.5 17.5t84.5 56t63 109.5 t23 168q0 82 -16 146t-41.5 103t-61 63.5t-71.5 34t-76 9.5q-51 0 -94.5 -18.5t-81 -57.5t-59 -111t-21.5 -169z" />
<glyph unicode="c" horiz-adv-x="944" d="M63 555q0 108 28.5 199t78 155t116.5 108.5t142.5 65.5t157.5 21h8q104 -1 175 -24.5t138 -71.5l-45 -189q-38 27 -107.5 51.5t-133.5 24.5q-127 0 -206 -86.5t-79 -263.5q0 -185 77 -273t214 -88q128 0 239 80l54 -190q-73 -49 -144 -71.5t-166 -22.5h-4 q-118 0 -216 35.5t-171.5 105.5t-114.5 180.5t-41 253.5z" />
<glyph unicode="d" horiz-adv-x="1239" d="M66 547q0 113 32 213.5t91.5 177t152 121.5t205.5 45q123 0 199 -46.5t110 -115.5v555h283v-1497h-277l-6 150q-90 -170 -303 -170h-14q-150 3 -258 78.5t-161.5 201.5t-53.5 287zM338 539q0 -97 23 -168t62 -109.5t83.5 -56t95.5 -17.5q53 0 96.5 17t81 55t59 109 t21.5 170q0 97 -22 169t-60 111t-81.5 57.5t-94.5 18.5q-40 0 -75.5 -9.5t-71 -34t-61 -63.5t-41 -103t-15.5 -146z" />
<glyph unicode="e" horiz-adv-x="1107" d="M63 541q0 158 60.5 284.5t180.5 202.5t280 76q118 0 210 -44t148.5 -120t85.5 -172t29 -205v-4q0 -13 -1 -40t-1 -40v-4h-713q4 -144 81.5 -217.5t217.5 -73.5q91 0 171.5 27.5t133.5 67.5l78 -175q-158 -124 -393 -124q-273 0 -420.5 150t-147.5 411zM344 627h455v10 q0 128 -54.5 193t-156.5 65q-38 0 -75.5 -12.5t-75 -41t-63 -83.5t-30.5 -131z" />
<glyph unicode="f" horiz-adv-x="694" d="M6 895v168h172v33q0 52 1.5 90t6.5 80.5t14 72.5t24 61t37 52t52.5 40t70 30t90.5 17.5t114 6.5h94l25 -211h-93q-92 0 -122.5 -40.5t-30.5 -143.5v-88h237v-168h-237v-895h-283v895h-172z" />
<glyph unicode="g" horiz-adv-x="1249" d="M68 549q0 133 42 241.5t110.5 175.5t153 102.5t173.5 35.5h2q216 0 317 -146v105h283v-997q0 -149 -31 -249.5t-106 -170.5t-201.5 -101.5t-316.5 -31.5h-138l-20 219h113q64 0 95 0.5t79 3t69.5 8.5t54 16.5t46 27.5t32 40.5t25 56.5t11.5 75.5t5 96.5v86 q-47 -67 -116 -105t-187 -38q-102 0 -192 37.5t-157.5 106t-106.5 173.5t-39 232zM340 547q0 -150 75.5 -245t192.5 -95h8q116 0 189.5 92t73.5 248q0 159 -74 252.5t-189 95.5h-6q-131 0 -200.5 -92.5t-69.5 -255.5z" />
<glyph unicode="h" horiz-adv-x="1198" d="M100 0v1497h285v-551q154 158 342 158q79 0 144.5 -24.5t119.5 -76.5t84.5 -143t30.5 -213v-647h-285v639q0 130 -33.5 193t-125.5 63q-83 0 -158 -53t-119 -127v-715h-285z" />
<glyph unicode="i" horiz-adv-x="526" d="M127 0v1063h283v-1063h-283zM127 1245v234h285v-234h-285z" />
<glyph unicode="j" horiz-adv-x="552" d="M-66 -193h60q47 0 77.5 6.5t50.5 19.5t29.5 39.5t13 59t3.5 86.5v1045h283v-981q0 -74 -4 -128.5t-15.5 -107.5t-31.5 -89.5t-51.5 -68.5t-76.5 -50t-106.5 -28.5t-140.5 -10.5h-62zM168 1245v234h283v-234h-283z" />
<glyph unicode="k" horiz-adv-x="1107" d="M100 0v1497h285v-838l397 404h338l-424 -436l471 -627h-346l-362 518l-74 -55v-463h-285z" />
<glyph unicode="l" horiz-adv-x="655" d="M119 455v1024l282 18v-1081q0 -68 4.5 -103.5t21.5 -64.5t50 -39t90 -10q23 0 38 1t19 2l3 1l12 -203q-55 -12 -147 -12q-94 0 -162 23.5t-108.5 62t-64 100.5t-31 127t-7.5 154z" />
<glyph unicode="m" horiz-adv-x="1835" d="M102 0v1063h240l23 -141q61 78 155 128.5t205 53.5h12q204 0 275 -180q152 180 370 180h13q95 0 164.5 -34t109 -97t58 -142.5t18.5 -179.5v-651h-283v592q0 169 -26.5 236t-114.5 67h-6q-90 -3 -147.5 -49t-98.5 -121v-725h-283v610q0 54 -3 92.5t-12.5 77t-26.5 62.5 t-46.5 38.5t-70.5 14.5q-144 0 -242 -168v-727h-283z" />
<glyph unicode="n" horiz-adv-x="1196" d="M100 0v1063h238l22 -141q68 81 166 132q96 50 207 50h4q186 -3 277.5 -126.5t91.5 -330.5v-647h-285v621q0 44 -1.5 72t-6.5 63.5t-17 57.5t-30.5 42t-49 29.5t-71.5 9.5q-75 0 -150 -51t-110 -119v-725h-285z" />
<glyph unicode="o" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265t-185 91t-184 -91t-68 -265z" />
<glyph unicode="p" horiz-adv-x="1243" d="M104 -410v1473h256l21 -141q85 182 315 182q118 0 212.5 -48t152.5 -127.5t88.5 -177.5t30.5 -204q0 -115 -31 -216.5t-89 -179.5t-149 -124t-204 -47h-7q-217 0 -313 151v-512zM385 539q0 -99 22.5 -170t61.5 -109t84.5 -55t99.5 -17q50 0 93.5 18.5t80.5 57.5 t58.5 109.5t21.5 165.5q0 102 -22.5 175t-62 110.5t-83 54t-94.5 16.5t-95 -18.5t-82 -57.5t-60.5 -111t-22.5 -169z" />
<glyph unicode="q" horiz-adv-x="1239" d="M66 547q0 106 30 204t87.5 177.5t151.5 127.5t212 48q230 0 315 -182l21 141h256v-1442l-283 -31v560q-54 -86 -125.5 -128t-193.5 -42q-113 1 -203.5 46.5t-148.5 124t-88.5 180t-30.5 216.5zM338 539q0 -97 23 -168t62 -109.5t83.5 -56t95.5 -17.5q53 0 96.5 17t81 55 t59 109t21.5 170q0 97 -22 169t-60 111t-81.5 57.5t-94.5 18.5q-40 0 -75.5 -9.5t-71 -34t-61 -63.5t-41 -103t-15.5 -146z" />
<glyph unicode="r" horiz-adv-x="667" d="M102 0v1063h263l20 -145q54 75 114.5 110t155.5 35h29l14 -215h-75q-73 0 -121.5 -18t-73 -55t-34 -81t-9.5 -108v-586h-283z" />
<glyph unicode="s" horiz-adv-x="909" d="M53 88l56 184q62 -40 166.5 -64t189.5 -24q64 0 103.5 26.5t39.5 82.5q0 45 -21 68.5t-83 46.5l-160 59q-63 23 -109 48.5t-86 62t-60.5 86.5t-20.5 114q0 160 107 243t286 83q233 0 358 -86l-49 -184q-52 28 -137.5 46.5t-149.5 18.5q-85 0 -124 -21.5t-42 -66.5v-11 q-1 -44 21 -64q24 -23 100 -50l164 -57q113 -39 188.5 -115.5t75.5 -189.5q0 -69 -22.5 -129.5t-66 -108.5t-115 -76t-162.5 -28q-298 0 -447 106z" />
<glyph unicode="t" horiz-adv-x="772" d="M-29 893l17 170h168l69 387h213v-387h262v-170h-262v-453q0 -51 1.5 -80.5t7 -60t16 -46t29 -28.5t45.5 -17.5t67 -4.5l90 6l17 -209q-105 -12 -160 -12q-98 0 -167.5 19.5t-114 55t-69.5 95.5t-34.5 130t-9.5 169v436h-185z" />
<glyph unicode="u" horiz-adv-x="1153" d="M92 385v678h283v-674q0 -108 51 -155.5t149 -47.5q99 0 151 47.5t52 155.5v674h285v-678q0 -199 -131.5 -302t-356.5 -103q-224 0 -353.5 101.5t-129.5 303.5z" />
<glyph unicode="v" horiz-adv-x="1105" d="M2 1063h297l285 -766l227 766h293l-391 -1063h-264z" />
<glyph unicode="w" horiz-adv-x="1693" d="M2 1063h283l190 -682l252 682h246l213 -678l223 678h281l-387 -1063h-236l-223 766l-271 -766h-233z" />
<glyph unicode="x" horiz-adv-x="1161" d="M27 0l372 539l-352 524h309l232 -367l246 367h292l-360 -520l373 -543h-318l-233 377l-254 -377h-307z" />
<glyph unicode="y" horiz-adv-x="1077" d="M-16 1063h284l281 -709l242 709h292l-436 -1135q-40 -104 -82.5 -169.5t-98 -103t-118.5 -51.5t-153 -14h-138l-26 203h73h27q75 0 105.5 3.5t68 26.5t59 71.5t48.5 140.5z" />
<glyph unicode="z" horiz-adv-x="966" d="M66 0v162l483 721h-459v180h807v-145l-481 -730h497v-188h-847z" />
<glyph unicode="{" horiz-adv-x="788" d="M55 526v238h95q64 0 83 46t19 155v286q0 158 92 224.5t264 66.5h101v-217h-29q-32 0 -53 -3t-36 -13t-22.5 -20.5t-11.5 -33.5t-5 -43t-1 -59v-240q0 -125 -54 -186t-155 -82q101 -21 155 -82t54 -186v-242q0 -57 2.5 -83t15 -49.5t38.5 -30.5t73 -7h29v-219h-101 q-172 0 -264 67.5t-92 225.5v287q0 108 -19 154t-83 46h-95z" />
<glyph unicode="|" horiz-adv-x="362" d="M70 -281v1780h225v-1780h-225z" />
<glyph unicode="}" horiz-adv-x="788" d="M80 -35h31q47 0 73 7t38.5 30.5t15 49.5t2.5 83v242q0 126 53 187t153 81q-100 20 -153 81t-53 187v240q0 39 -1 59t-5 43t-11.5 33.5t-22.5 20.5t-36 13t-53 3h-31v217h100q84 0 147 -14.5t111.5 -47.5t73.5 -90.5t25 -138.5v-286q0 -109 19 -155t83 -46h94v-238h-94 q-64 0 -83 -46t-19 -154v-287q0 -158 -92.5 -225.5t-264.5 -67.5h-100v219z" />
<glyph unicode="~" horiz-adv-x="1417" d="M172 442l4 23q24 106 106 180t207 74q71 0 141 -23.5t144 -60t107 -47.5q24 -8 43 -8q50 0 84.5 39t48.5 92q1 5 4 15t4 15l174 -55l-6 -24q-13 -55 -37 -102t-60.5 -87.5t-91.5 -64t-122 -23.5q-62 0 -123 21.5t-102.5 47.5t-96 48.5t-104.5 23.5l-2 -2h-2 q-59 0 -97 -33.5t-51 -82.5l-6 -37z" />
<glyph unicode="&#xa1;" horiz-adv-x="749" d="M244 834v266h262v-266h-262zM291 -385v1139h207v-1139h-207z" />
<glyph unicode="&#xa2;" horiz-adv-x="964" d="M84 653q0 134 43.5 241.5t117.5 173t166 100t195 34.5h8q104 -1 176 -24.5t138 -71.5l-45 -188q-38 27 -107.5 51t-134.5 24q-127 0 -206 -86.5t-79 -263.5q0 -185 77 -272.5t214 -87.5q130 0 240 79l53 -190q-73 -49 -143.5 -71.5t-165.5 -22.5h-4q-118 0 -216 35.5 t-171.5 105.5t-114.5 180.5t-41 253.5zM561 -197v1643h103v-1643h-103z" />
<glyph unicode="&#xa3;" horiz-adv-x="1114" d="M39 631v190h184v84q0 104 13.5 187.5t46.5 157.5t86 124t135.5 78.5t191.5 28.5q245 0 375 -187l12 -18l-127 -141q-35 35 -54.5 52t-53 40t-70.5 33t-82 10q-225 0 -225 -283v-164h381v-192h-379v-127q0 -181 -67 -295h659v-209h-987l-33 168l23 8q87 36 121 93t34 175 v187h-184z" />
<glyph unicode="&#xa4;" horiz-adv-x="878" d="M53 664q0 226 166 346l-145 272l94 37l131 -252q64 20 143 20q39 0 109 -12l92 246l92 -37l-96 -260q186 -111 186 -354q0 -103 -38.5 -186t-104.5 -138l145 -274l-86 -41l-135 272q-81 -33 -170 -33q-54 0 -94 6l-90 -245l-82 39l84 235q-95 51 -148 142t-53 217z M203 666q0 -132 58.5 -208.5t178.5 -76.5q117 0 175.5 74t60.5 200v11q0 135 -58.5 211.5t-181.5 76.5q-117 0 -175 -78.5t-58 -209.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1222" d="M-37 1446h309l353 -604l348 604h305l-502 -860v-586h-297v586zM145 287v162h973v-162h-973zM145 575v162h973v-162h-973z" />
<glyph unicode="&#xa6;" horiz-adv-x="522" d="M147 -279v629h224v-629h-224zM147 868v631h224v-631h-224z" />
<glyph unicode="&#xa7;" horiz-adv-x="907" d="M51 733q0 149 139 242q-104 90 -104 229q0 83 36 145.5t97 99t135 54t158 17.5q33 0 62.5 -3t59 -9.5t48 -11.5t52 -15.5t48.5 -14.5l4 -264q-5 2 -38 18t-42.5 20.5t-39 16t-47.5 15.5t-46 8t-55 4q-172 0 -172 -80q0 -40 28 -71t73.5 -52.5t100 -41.5t109 -45t100 -57 t73.5 -83t28 -117q0 -142 -133 -245q113 -84 113 -222q0 -85 -38 -151.5t-102.5 -106.5t-143.5 -60t-167 -20q-144 0 -309 68v268q54 -32 91 -50.5t95.5 -35t116.5 -16.5q92 0 142 27.5t50 72.5q0 35 -29 63.5t-75 50t-101.5 43t-111 48.5t-101.5 60.5t-75 85.5t-29 116z M299 743q0 -25 12 -46.5t28 -36t46.5 -31t51 -24.5t59.5 -23q54 34 83 67t29 76q0 25 -11 45t-36 35.5t-44.5 25t-59.5 25t-58 23.5q-49 -29 -74.5 -60.5t-25.5 -75.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="765" d="M63 1231v266h207v-266h-207zM487 1231v266h209v-266h-209z" />
<glyph unicode="&#xa9;" horiz-adv-x="1671" d="M80 727q0 154 60 293.5t161 240t241.5 159.5t295.5 59q205 0 378.5 -100t275 -273.5t101.5 -378.5q0 -154 -60 -292.5t-161 -238t-240.5 -158t-293.5 -58.5q-155 0 -295 58.5t-241.5 158t-161.5 238t-60 292.5zM197 727q0 -175 85.5 -323.5t233 -235t322.5 -86.5 t322 86.5t232 235t85 323.5t-85 324t-232 236t-322 87t-322.5 -87t-233 -236t-85.5 -324zM373 729q0 133 55 244.5t156.5 177.5t228.5 66q180 0 299 -80l-43 -113q-121 68 -246 68q-139 0 -221 -106t-82 -259q0 -96 32 -173t102.5 -126t170.5 -49q125 0 244 67l43 -116 q-119 -80 -295 -80q-192 0 -318 135t-126 344z" />
<glyph unicode="&#xaa;" horiz-adv-x="731" d="M55 954q0 62 21.5 107t54.5 70t84.5 41.5t98 24t108.5 14.5q37 4 55 6q-5 64 -21.5 83t-76.5 19t-96.5 -20.5t-63.5 -61.5l-22 -33l-105 121q87 162 291 162q125 0 203 -71.5t78 -201.5l-2 -319q0 -39 6 -127l2 -33h-185l-2 37q-72 -55 -161 -55h-5q-109 0 -185.5 63.5 t-76.5 173.5zM246 956q0 -39 22 -57t68 -18q68 0 100.5 45.5t40.5 128.5q-17 -2 -49.5 -6t-49 -6t-41.5 -7t-38 -11t-27 -15.5t-20 -22.5t-6 -31z" />
<glyph unicode="&#xab;" horiz-adv-x="931" d="M33 547l284 377h230l-277 -377l267 -377h-226zM389 547l287 377h223l-270 -377l262 -377h-221z" />
<glyph unicode="&#xac;" horiz-adv-x="1417" d="M184 608v201h1041v-571h-203v370h-838z" />
<glyph unicode="&#xad;" horiz-adv-x="696" d="M70 432v195h559v-195h-559z" />
<glyph unicode="&#xae;" horiz-adv-x="1671" d="M80 727q0 154 60 293.5t161 240t241.5 159.5t295.5 59q205 0 378.5 -100t275 -273.5t101.5 -378.5q0 -154 -60 -292.5t-161 -238t-240.5 -158t-293.5 -58.5q-155 0 -295 58.5t-241.5 158t-161.5 238t-60 292.5zM197 727q0 -175 85.5 -323.5t233 -235t322.5 -86.5 t322 86.5t232 235t85 323.5t-85 324t-232 236t-322 87t-322.5 -87t-233 -236t-85.5 -324zM530 260v948h310q323 0 323 -258q0 -112 -44.5 -170t-151.5 -86q74 -112 241 -434h-170l-123 232l-94 186h-137v-418h-154zM682 803h117q55 0 90.5 5t66.5 20t45.5 45t14.5 77 q0 24 -3.5 43t-12.5 33t-17.5 23.5t-26.5 16t-31.5 10t-40 5t-44.5 2t-52 0.5h-106v-280z" />
<glyph unicode="&#xaf;" horiz-adv-x="860" d="M98 1335v162h678v-162h-678z" />
<glyph unicode="&#xb0;" horiz-adv-x="841" d="M86 1153q0 129 95.5 214t232.5 85q135 0 231 -82t96 -217q0 -129 -95.5 -214t-231.5 -85q-135 0 -231.5 86t-96.5 213zM264 1155q0 -55 42.5 -90t107.5 -35q66 0 107.5 35.5t41.5 89.5q0 52 -39 86t-100 37h-10q-64 0 -107 -35t-43 -88z" />
<glyph unicode="&#xb1;" horiz-adv-x="1443" d="M172 768h432v348h219v-348h424v-199h-420v-370h424v-199h-1065v199h420v370h-418z" />
<glyph unicode="&#xb2;" horiz-adv-x="804" d="M86 1331q2 3 14.5 17t41.5 37t64.5 43.5t88.5 35.5t108 15q140 0 226 -69t86 -193q0 -56 -20 -111t-46.5 -95.5t-73.5 -88t-79 -74.5t-87 -70.5t-75 -60.5h364v-164h-596v143q255 274 305 333q81 99 91 158q2 12 2 25q0 44 -25 65t-67 21q-55 0 -112.5 -30t-102.5 -78z " />
<glyph unicode="&#xb3;" horiz-adv-x="790" d="M68 1350q137 129 323 129q85 0 152 -24t112 -82.5t45 -145.5q0 -146 -125 -199q72 -40 105 -93.5t33 -131.5q0 -137 -92 -205t-230 -68q-171 0 -303 91l64 141q3 -1 23 -10t25.5 -11t24.5 -9.5t28 -10l27 -7.5t31.5 -7t31.5 -3.5t36 -1.5q60 0 92.5 34.5t32.5 84.5 q0 48 -31 83.5t-86 35.5h-129v152h127q119 0 119 106q0 56 -32.5 84.5t-84.5 28.5q-25 0 -49.5 -4.5t-41 -8.5t-41.5 -15.5t-34.5 -16.5t-36.5 -20.5t-32 -18.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="610" d="M213 1176l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xb6;" horiz-adv-x="1236" d="M96 1120q0 81 30.5 142t80.5 98.5t123.5 60t149.5 31t169 8.5h400v-182h-82v-1425h-185v1425h-141v-1425h-215v907q-151 15 -240.5 113t-89.5 247z" />
<glyph unicode="&#xb7;" horiz-adv-x="405" d="M70 463v270h266v-270h-266z" />
<glyph unicode="&#xb8;" horiz-adv-x="585" d="M43 -340l127 367h164l-62 -367h-229z" />
<glyph unicode="&#xb9;" horiz-adv-x="694" d="M102 1219v167q101 28 197 60l164 18v-741h135v-170h-485v170h133v520z" />
<glyph unicode="&#xba;" horiz-adv-x="841" d="M45 1104q0 172 104 277.5t277 105.5q174 0 274.5 -106t100.5 -279q0 -171 -102 -278t-273 -107q-178 0 -279.5 105.5t-101.5 281.5zM240 1104q0 -219 186 -219q93 0 137.5 57.5t44.5 157.5q0 103 -45.5 161t-140.5 58q-91 0 -135.5 -56t-46.5 -151v-8z" />
<glyph unicode="&#xbb;" horiz-adv-x="1150" d="M145 170l273 377l-264 377h223l278 -377l-284 -377h-226zM526 170l273 377l-264 377h223l276 -377l-282 -377h-226z" />
<glyph unicode="&#xbc;" horiz-adv-x="2015" d="M201 1128v228l35 10q80 25 151 70v4q4 0 10 6l4 -4l160 22v-673h127v-207h-459v219h115v217v147v17q-50 -21 -76 -29zM403 0l1029 1446h210q-4 -4 -4 -6l-1013 -1440h-222zM1049 201v125l397 518h174v-477h100l17 -166h-117l-2 -164h-174v164h-395zM1290 367h152v202z " />
<glyph unicode="&#xbd;" horiz-adv-x="1898" d="M219 1157l2 182q22 6 68.5 26t82.5 37l36 17l133 23v-672h129v-166h-420v178h115v435q-62 -29 -146 -60zM348 0l1022 1446h221q-4 -4 -4 -6l-1022 -1440h-217zM1049 -25v144q24 19 91.5 66.5t118.5 87t108 91t88.5 103.5t31.5 100q0 37 -29.5 56.5t-85.5 19.5 q-37 0 -66 -11.5t-50 -35.5t-34 -46t-30 -58l-141 122q42 95 124 151t205 56q128 0 207.5 -63.5t79.5 -175.5q0 -31 -6 -61t-13.5 -54.5t-24 -51.5t-28.5 -46t-36 -44t-37.5 -39t-41.5 -37.5t-40 -33t-42 -32.5t-38 -29h305v-179h-616z" />
<glyph unicode="&#xbe;" horiz-adv-x="1931" d="M164 709l88 147l27 -27q72 -69 151 -69q63 0 100 25t37 69q0 52 -43 72t-131 20q-1 0 -11 -1t-17 -1h-56v180h78q79 0 118.5 18t39.5 60q0 37 -25.5 53.5t-79.5 16.5q-81 0 -164 -72l-26 -22l-84 145l14 16q47 48 115.5 79.5t146.5 31.5q122 0 204.5 -65.5t82.5 -178.5 v-2q-3 -101 -76 -168q95 -72 95 -188q0 -122 -90.5 -192t-223.5 -70q-153 0 -256 106zM354 -23l1028 1479v8h263q-4 -6 -12.5 -19.5t-12.5 -19.5l-1004 -1448h-262zM997 203v125l398 518h174v-477h100l17 -166h-119v-164h-174v164h-396zM1239 369h152v202z" />
<glyph unicode="&#xbf;" horiz-adv-x="1064" d="M248 338q0 79 39.5 162.5t92 149t128 169.5t125.5 197h119q-13 -84 -47.5 -164.5t-73 -140.5t-75.5 -115.5t-61 -111t-24 -105.5q0 -85 53 -138t146 -53q150 0 280 86l76 -174q-87 -55 -173 -82.5t-212 -27.5q-53 0 -107 12.5t-105.5 40.5t-91.5 67.5t-64.5 98.5 t-24.5 129zM541 1329q0 66 47 113t112 47q66 0 114 -47t48 -113t-48 -114t-114 -48q-65 0 -112 48t-47 114z" />
<glyph unicode="&#xc0;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM262 1939h313l230 -340h-209q-55 54 -166.5 168.5t-167.5 171.5zM506 627h295l-144 489z" />
<glyph unicode="&#xc1;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM506 627h295l-144 489zM614 1599l166 383h314l-312 -383h-168z" />
<glyph unicode="&#xc2;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM313 1599l265 383h198l264 -383h-194l-172 201l-172 -201h-189zM506 627h295l-144 489z" />
<glyph unicode="&#xc3;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM336 1608q0 27 0.5 42t3.5 44.5t9 47.5t18.5 41.5t30 37t44.5 23t62 9.5q58 0 126 -19.5t121 -39.5t74 -20q47 0 47 79h160q0 -30 -1 -47.5t-5 -51.5t-15 -55.5t-28.5 -44.5t-48 -34.5 t-70.5 -11.5q-49 0 -123.5 22t-132.5 44t-69 22q-25 0 -36 -20.5t-11 -67.5h-156zM506 627h295l-144 489z" />
<glyph unicode="&#xc4;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM360 1602v266h207v-266h-207zM506 627h295l-144 489zM784 1602v266h209v-266h-209z" />
<glyph unicode="&#xc5;" d="M-10 0l39 121l487 1325h281l473 -1325l41 -121h-283l-158 444h-428l-157 -444h-295zM467 1651q0 84 58.5 144t166.5 60t168 -60t60 -144t-61 -147.5t-167 -63.5t-165.5 63t-59.5 148zM506 627h295l-144 489zM586 1651q0 -45 27.5 -78t78.5 -33t79 33t28 78t-28 77.5 t-79 32.5q-50 0 -78 -32.5t-28 -77.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1935" d="M20 14l795 1446h997v-207h-659l31 -399h590v-207h-570v-10l33 -414h598v-209h-786l-29 359h-543l-203 -359h-254zM582 582h417l-51 682z" />
<glyph unicode="&#xc7;" horiz-adv-x="1275" d="M72 733q0 169 55.5 310t152 236t229 147.5t284.5 52.5q279 0 438 -142l-78 -211q-70 59 -147 88t-197 29q-193 0 -313.5 -139t-120.5 -373q0 -251 118.5 -385.5t313.5 -134.5q210 0 352 108l74 -213q-104 -75 -210 -100.5t-232 -25.5q-147 0 -276.5 51t-228.5 144.5 t-156.5 237.5t-57.5 320zM565 -375l127 367h164l-61 -367h-230z" />
<glyph unicode="&#xc8;" horiz-adv-x="1128" d="M121 0v1446h942l-25 -219h-618v-359h596v-217h-596v-432l672 -8l-13 -211h-958zM131 1939h313l230 -340h-209q-55 56 -166.5 169.5t-167.5 170.5z" />
<glyph unicode="&#xc9;" horiz-adv-x="1128" d="M121 0v1446h942l-25 -219h-618v-359h596v-217h-596v-432l672 -8l-13 -211h-958zM481 1599l166 383h314l-312 -383h-168z" />
<glyph unicode="&#xca;" horiz-adv-x="1128" d="M121 0v1446h942l-25 -219h-618v-359h596v-217h-596v-432l672 -8l-13 -211h-958zM182 1599l264 383h199l264 -383h-194l-172 201l-172 -201h-189z" />
<glyph unicode="&#xcb;" horiz-adv-x="1128" d="M121 0v1446h942l-25 -219h-618v-359h596v-217h-596v-432l672 -8l-13 -211h-958zM227 1602v266h207v-266h-207zM651 1602v266h209v-266h-209z" />
<glyph unicode="&#xcc;" horiz-adv-x="565" d="M-190 1939h313l229 -340h-209q-55 56 -166 169.5t-167 170.5zM133 0v1446h299v-1446h-299z" />
<glyph unicode="&#xcd;" horiz-adv-x="565" d="M133 0v1446h299v-1446h-299zM160 1599l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xce;" horiz-adv-x="565" d="M-139 1599l264 383h199l264 -383h-195l-172 201l-172 -201h-188zM133 0v1446h299v-1446h-299z" />
<glyph unicode="&#xcf;" horiz-adv-x="565" d="M-94 1602v266h207v-266h-207zM133 0v1446h299v-1446h-299zM330 1602v266h209v-266h-209z" />
<glyph unicode="&#xd0;" horiz-adv-x="1548" d="M-2 635v192h131v619h391q167 0 304 -24.5t251.5 -79t192.5 -138.5t121 -206.5t43 -278.5q0 -230 -105 -394t-288.5 -244.5t-428.5 -80.5h-481v635h-131zM428 223h201q245 0 375.5 127t130.5 365q0 142 -36 239.5t-112.5 156.5t-184 84.5t-259.5 25.5h-115v-394h170v-192 h-170v-412z" />
<glyph unicode="&#xd1;" horiz-adv-x="1447" d="M121 0v1446h248l686 -975v975h272v-1446h-254l-680 975v-975h-272zM332 1608q0 27 0.5 42t3.5 44.5t9 47.5t18.5 41.5t30 37t44.5 23t62 9.5q58 0 126 -19.5t121 -39.5t74 -20q47 0 47 79h160q0 -30 -1 -47.5t-5 -51.5t-15 -55.5t-28.5 -44.5t-48 -34.5t-70.5 -11.5 q-49 0 -123.5 22t-132.5 44t-69 22q-25 0 -36.5 -20.5t-11.5 -67.5h-155z" />
<glyph unicode="&#xd2;" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM369 1939h313l229 -340h-209q-56 57 -167 170t-166 170zM375 723 q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5z" />
<glyph unicode="&#xd3;" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5zM719 1599l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xd4;" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5zM420 1599l264 383h199l264 -383h-195l-172 201l-172 -201h-188z" />
<glyph unicode="&#xd5;" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5zM442 1608q0 27 0.5 42t3.5 44.5t9 47.5t18.5 41.5t30 37t44.5 23t62 9.5q58 0 126.5 -19.5t121.5 -39.5t74 -20q47 0 47 79h160q0 -30 -1 -47.5t-5 -51.5t-15 -55.5t-28.5 -44.5t-48 -34.5 t-70.5 -11.5q-49 0 -123.5 22t-133 44t-69.5 22q-25 0 -36 -20.5t-11 -67.5h-156z" />
<glyph unicode="&#xd6;" horiz-adv-x="1593" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM375 723q0 -236 108.5 -374t315.5 -138q208 0 318 138.5t110 373.5 q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5zM465 1602v266h207v-266h-207zM889 1602v266h209v-266h-209z" />
<glyph unicode="&#xd7;" horiz-adv-x="1499" d="M322 279l282 280l-282 277l139 145l299 -276l299 276l141 -145l-285 -277q22 -22 126 -122.5t159 -155.5l-139 -146l-301 277l-301 -277z" />
<glyph unicode="&#xd8;" horiz-adv-x="1710" d="M72 727q0 175 55 317.5t152 237t230 146t288 51.5q156 0 289 -51.5t230.5 -146t152.5 -237t55 -317.5q0 -173 -55.5 -315t-153 -236t-230.5 -145t-288 -51q-208 0 -371 87.5t-258.5 258.5t-95.5 401zM365 -162l784 1811l94 -39l-788 -1815zM375 723q0 -236 108.5 -374 t315.5 -138q208 0 318 138.5t110 373.5q0 237 -109.5 378.5t-318.5 141.5q-207 0 -315.5 -141.5t-108.5 -378.5z" />
<glyph unicode="&#xd9;" horiz-adv-x="1388" d="M106 539v907h300v-893q0 -184 63.5 -264t224.5 -80t226 80t65 264v893h297v-907q0 -273 -147 -416t-441 -143t-441 143t-147 416zM242 1939h313l229 -340h-209q-56 57 -166.5 170t-166.5 170z" />
<glyph unicode="&#xda;" horiz-adv-x="1388" d="M106 539v907h300v-893q0 -184 63.5 -264t224.5 -80t226 80t65 264v893h297v-907q0 -273 -147 -416t-441 -143t-441 143t-147 416zM594 1599l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xdb;" horiz-adv-x="1388" d="M106 539v907h300v-893q0 -184 63.5 -264t224.5 -80t226 80t65 264v893h297v-907q0 -273 -147 -416t-441 -143t-441 143t-147 416zM293 1599l264 383h199l264 -383h-195l-172 201l-172 -201h-188z" />
<glyph unicode="&#xdc;" horiz-adv-x="1388" d="M106 539v907h300v-893q0 -184 63.5 -264t224.5 -80t226 80t65 264v893h297v-907q0 -273 -147 -416t-441 -143t-441 143t-147 416zM338 1602v266h207v-266h-207zM762 1602v266h209v-266h-209z" />
<glyph unicode="&#xdd;" horiz-adv-x="1241" d="M-37 1446h309l353 -604l348 604h305l-502 -860v-586h-297v586zM631 1599l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xde;" horiz-adv-x="1318" d="M182 14v1426h238v-242h268q124 0 226.5 -24.5t183.5 -75t126.5 -137t45.5 -201.5q0 -107 -44.5 -191.5t-122 -137.5t-177 -81t-213.5 -28h-293v-308h-238zM420 535h311q135 0 215 61.5t80 175.5q0 240 -317 240h-289v-477z" />
<glyph unicode="&#xdf;" horiz-adv-x="1257" d="M100 0v1018q0 219 125 340t353 121q91 0 172 -21.5t145 -62.5t101.5 -109.5t37.5 -155.5q0 -50 -18 -96.5t-42 -78.5t-65.5 -67.5t-70 -54.5t-74.5 -47q153 -78 190 -101q191 -115 232 -256q12 -42 12 -87q0 -167 -114.5 -254.5t-299.5 -87.5h-272l31 188h211 q77 0 119 42.5t42 115.5q0 45 -19.5 82.5t-59 68t-75.5 52t-93 51.5t-88 49q-88 52 -88 125q0 65 71 119q12 9 53 37.5t57.5 43t43 41.5t37 55t10.5 60q0 68 -50.5 106t-135.5 38q-61 0 -100.5 -18t-59 -56t-26.5 -82.5t-7 -113.5v-1004h-285z" />
<glyph unicode="&#xe0;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM133 1565h313l230 -340h-209q-55 56 -167 169.5t-167 170.5zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56z" />
<glyph unicode="&#xe1;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56zM485 1225l166 383h314l-312 -383h-168z" />
<glyph unicode="&#xe2;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM186 1225l265 383h198l264 -383h-194l-172 200l-172 -200h-189zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56z" />
<glyph unicode="&#xe3;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM209 1227q0 27 0.5 42t3.5 44.5t9 48t18.5 42t30 37t44.5 23t62 9.5q58 0 126 -20t121 -40t74 -20q47 0 47 80h160q0 -25 -0.5 -40t-3.5 -44t-9 -48t-18.5 -42.5t-29.5 -37.5t-44.5 -24t-62.5 -10q-49 0 -123.5 22t-132.5 44t-69 22 q-25 0 -36 -20.5t-11 -67.5h-156zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56z" />
<glyph unicode="&#xe4;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM231 1227v266h207v-266h-207zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56zM655 1227v266h209v-266h-209z" />
<glyph unicode="&#xe5;" horiz-adv-x="1069" d="M68 285q0 50 8 91t27.5 73t42 56.5t61.5 44t75 33t94 26t107.5 21t124.5 19.5l76 13v49q0 53 -4 81.5t-19.5 54t-47 36t-85.5 12.5h-14q-113 0 -330 -74l-55 203q162 74 410 80h24q189 0 297.5 -88.5t108.5 -257.5v-758h-217l-29 115q-79 -67 -152 -101t-168 -34 q-151 0 -243 82.5t-92 222.5zM322 295q0 -61 33.5 -97t97.5 -36q46 0 88.5 13t69 28t73.5 47v252l-76 -13q-41 -6 -66.5 -10.5t-59 -12.5t-54 -17t-43 -23.5t-35 -32t-20.5 -42.5t-8 -56zM340 1411q0 85 58.5 145t166.5 60t168 -60.5t60 -144.5t-61 -147.5t-167 -63.5 t-165.5 63t-59.5 148zM459 1411q0 -45 27.5 -78t78.5 -33t79 33t28 78t-28 78t-79 33q-50 0 -78 -33t-28 -78z" />
<glyph unicode="&#xe6;" horiz-adv-x="1650" d="M61 311q0 56 13 97.5t49 70.5t69.5 47.5t106 34t124 23t155.5 20.5l90 10v97q0 99 -38.5 144.5t-142.5 49.5h-12q-21 0 -46 -3t-50.5 -8.5t-48 -11t-48.5 -14t-40.5 -13.5t-36 -12.5t-25.5 -8.5l-53 190q82 38 166 57.5t207 22.5h24q110 0 193.5 -44.5t113.5 -125.5 q53 68 142 117t188 53h29q106 0 186.5 -41.5t127.5 -114.5t70 -164t23 -198v-2q0 -14 -1 -26t-1 -26v-2l-653 -49q4 -145 75 -220t200 -77h10q89 0 156.5 20.5t103.5 49.5l80 -174q-70 -50 -154 -75t-211 -25q-261 0 -391 167q-156 -167 -410 -167q-154 0 -247 98t-93 233z M317 295q3 -61 36 -97t96 -36q130 0 262 129l-4 11q-4 12 -9.5 30t-10.5 38.5t-9 43.5t-4 41l-96 -15q-147 -22 -191 -41q-70 -30 -70 -96v-8zM942 633l397 39q2 14 2 37t-3 44.5t-12.5 48.5t-25.5 47t-45.5 34t-68.5 14q-3 0 -11 -1t-12 -1q-202 -18 -221 -262z" />
<glyph unicode="&#xe7;" horiz-adv-x="944" d="M63 555q0 108 28.5 199t78 155t116.5 108.5t142.5 65.5t157.5 21h8q104 -1 175 -24.5t138 -71.5l-45 -189q-38 27 -107.5 51.5t-133.5 24.5q-127 0 -206 -86.5t-79 -263.5q0 -185 77 -273t214 -88q128 0 239 80l54 -190q-73 -49 -144 -71.5t-166 -22.5h-4 q-118 0 -216 35.5t-171.5 105.5t-114.5 180.5t-41 253.5zM369 -373l127 367h163l-61 -367h-229z" />
<glyph unicode="&#xe8;" horiz-adv-x="1107" d="M63 541q0 158 60.5 284.5t180.5 202.5t280 76q118 0 210 -44t148.5 -120t85.5 -172t29 -205v-4q0 -13 -1 -40t-1 -40v-4h-713q4 -144 81.5 -217.5t217.5 -73.5q91 0 171.5 27.5t133.5 67.5l78 -175q-158 -124 -393 -124q-273 0 -420.5 150t-147.5 411zM172 1565h313 l230 -340h-209q-55 56 -166.5 169.5t-167.5 170.5zM344 627h455v10q0 128 -54.5 193t-156.5 65q-38 0 -75.5 -12.5t-75 -41t-63 -83.5t-30.5 -131z" />
<glyph unicode="&#xe9;" horiz-adv-x="1107" d="M63 541q0 158 60.5 284.5t180.5 202.5t280 76q118 0 210 -44t148.5 -120t85.5 -172t29 -205v-4q0 -13 -1 -40t-1 -40v-4h-713q4 -144 81.5 -217.5t217.5 -73.5q91 0 171.5 27.5t133.5 67.5l78 -175q-158 -124 -393 -124q-273 0 -420.5 150t-147.5 411zM315 1176l166 383 h314l-312 -383h-168zM344 627h455v10q0 128 -54.5 193t-156.5 65q-38 0 -75.5 -12.5t-75 -41t-63 -83.5t-30.5 -131z" />
<glyph unicode="&#xea;" horiz-adv-x="1107" d="M63 541q0 158 60.5 284.5t180.5 202.5t280 76q118 0 210 -44t148.5 -120t85.5 -172t29 -205v-4q0 -13 -1 -40t-1 -40v-4h-713q4 -144 81.5 -217.5t217.5 -73.5q91 0 171.5 27.5t133.5 67.5l78 -175q-158 -124 -393 -124q-273 0 -420.5 150t-147.5 411zM193 1133l264 383 h198l265 -383h-195l-172 200l-172 -200h-188zM344 627h455v10q0 128 -54.5 193t-156.5 65q-38 0 -75.5 -12.5t-75 -41t-63 -83.5t-30.5 -131z" />
<glyph unicode="&#xeb;" horiz-adv-x="1107" d="M63 541q0 158 60.5 284.5t180.5 202.5t280 76q118 0 210 -44t148.5 -120t85.5 -172t29 -205v-4q0 -13 -1 -40t-1 -40v-4h-713q4 -144 81.5 -217.5t217.5 -73.5q91 0 171.5 27.5t133.5 67.5l78 -175q-158 -124 -393 -124q-273 0 -420.5 150t-147.5 411zM240 1231v266h206 v-266h-206zM344 627h455v10q0 128 -54.5 193t-156.5 65q-38 0 -75.5 -12.5t-75 -41t-63 -83.5t-30.5 -131zM664 1231v266h208v-266h-208z" />
<glyph unicode="&#xec;" horiz-adv-x="585" d="M-88 1565h313l230 -340h-209q-56 56 -167 169.5t-167 170.5zM127 0v1063h283v-1063h-283z" />
<glyph unicode="&#xed;" horiz-adv-x="585" d="M55 1176l166 383h314l-312 -383h-168zM127 0v1063h283v-1063h-283z" />
<glyph unicode="&#xee;" horiz-adv-x="585" d="M-70 1133l265 383h198l264 -383h-194l-172 200l-172 -200h-189zM127 0v1063h283v-1063h-283z" />
<glyph unicode="&#xef;" horiz-adv-x="585" d="M-23 1231v266h207v-266h-207zM127 0v1063h283v-1063h-283zM401 1231v266h209v-266h-209z" />
<glyph unicode="&#xf0;" horiz-adv-x="1214" d="M80 461q0 206 132.5 330t354.5 124q51 0 103 -10l28 -6l-174 195l-235 -97l-66 183l170 69l-192 230h317l109 -133l256 104l67 -180l-194 -80q201 -223 295 -373q102 -165 104 -348h2v-2q0 -224 -145.5 -354.5t-390.5 -130.5q-239 0 -390 131t-151 348zM338 475 q0 -126 79.5 -201t211.5 -75q131 0 205.5 72.5t74.5 199.5q0 131 -76 207t-210 76q-136 0 -210.5 -74t-74.5 -205z" />
<glyph unicode="&#xf1;" horiz-adv-x="1196" d="M100 0v1063h238l22 -141q69 81 166.5 132t210.5 50q186 -3 277.5 -126.5t91.5 -330.5v-647h-285v621q0 44 -1.5 72t-6.5 63.5t-17 57.5t-30.5 42t-49 29.5t-71.5 9.5q-75 0 -150 -51t-110 -119v-725h-285zM223 1227q0 27 0.5 42t3.5 44.5t9 48t18.5 42t30 37t44.5 23 t62 9.5q58 0 126.5 -20t121.5 -40t74 -20q47 0 47 80h160q0 -25 -0.5 -40t-3.5 -44t-9 -48t-18.5 -42.5t-29.5 -37.5t-44.5 -24t-62.5 -10q-49 0 -123.5 22t-133 44t-69.5 22q-25 0 -36 -20.5t-11 -67.5h-156z" />
<glyph unicode="&#xf2;" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM317 1516h314l229 -340h-209q-56 56 -167.5 169.5t-166.5 170.5zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265 t-185 91t-184 -91t-68 -265z" />
<glyph unicode="&#xf3;" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265t-185 91t-184 -91t-68 -265zM348 1176l166 383h313l-311 -383 h-168z" />
<glyph unicode="&#xf4;" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM225 1133l264 383h199l264 -383h-194l-172 200l-172 -200h-189zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265 t-185 91t-184 -91t-68 -265z" />
<glyph unicode="&#xf5;" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM225 1227q0 27 0.5 42t3.5 44.5t9 48t18.5 42t30 37t44.5 23t62 9.5q58 0 126.5 -20t121.5 -40t74 -20q47 0 47 80h160q0 -25 -0.5 -40t-3.5 -44 t-9 -48t-18.5 -42.5t-29.5 -37.5t-44.5 -24t-62.5 -10q-49 0 -123.5 22t-133 44t-69.5 22q-25 0 -36 -20.5t-11 -67.5h-156zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265t-185 91t-184 -91t-68 -265z" />
<glyph unicode="&#xf6;" horiz-adv-x="1175" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM272 1231v266h207v-266h-207zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265t-185 91t-184 -91t-68 -265z M696 1231v266h209v-266h-209z" />
<glyph unicode="&#xf7;" horiz-adv-x="1509" d="M199 461v198h1101v-198h-1101zM602 20v271h303v-271h-303zM602 817v270h303v-270h-303z" />
<glyph unicode="&#xf8;" horiz-adv-x="1183" d="M63 539q0 167 58 293t178 199t289 73q252 0 388 -154.5t136 -410.5q0 -251 -136 -405t-388 -154t-388.5 154t-136.5 405zM246 -156l628 1434l68 -35l-637 -1431zM336 539q0 -170 68 -261.5t184 -91.5q117 0 185.5 91.5t68.5 261.5q0 174 -69 265t-185 91t-184 -91 t-68 -265z" />
<glyph unicode="&#xf9;" horiz-adv-x="1153" d="M92 385v678h283v-674q0 -108 51 -155.5t149 -47.5q99 0 151 47.5t52 155.5v674h285v-678q0 -199 -131.5 -302t-356.5 -103q-224 0 -353.5 101.5t-129.5 303.5zM305 1516h313l230 -340h-209q-56 56 -167 169.5t-167 170.5z" />
<glyph unicode="&#xfa;" horiz-adv-x="1153" d="M92 385v678h283v-674q0 -108 51 -155.5t149 -47.5q99 0 151 47.5t52 155.5v674h285v-678q0 -199 -131.5 -302t-356.5 -103q-224 0 -353.5 101.5t-129.5 303.5zM338 1176l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xfb;" horiz-adv-x="1153" d="M92 385v678h283v-674q0 -108 51 -155.5t149 -47.5q99 0 151 47.5t52 155.5v674h285v-678q0 -199 -131.5 -302t-356.5 -103q-224 0 -353.5 101.5t-129.5 303.5zM213 1133l264 383h199l264 -383h-195l-172 200l-172 -200h-188z" />
<glyph unicode="&#xfc;" horiz-adv-x="1153" d="M92 385v678h283v-674q0 -108 51 -155.5t149 -47.5q99 0 151 47.5t52 155.5v674h285v-678q0 -199 -131.5 -302t-356.5 -103q-224 0 -353.5 101.5t-129.5 303.5zM260 1231v266h207v-266h-207zM684 1231v266h209v-266h-209z" />
<glyph unicode="&#xfd;" horiz-adv-x="1077" d="M-16 1063h284l281 -709l242 709h292l-436 -1135q-40 -104 -82.5 -169.5t-98 -103t-118.5 -51.5t-153 -14h-138l-26 203h73h27q75 0 105.5 3.5t68 26.5t59 71.5t48.5 140.5zM301 1176l166 383h313l-311 -383h-168z" />
<glyph unicode="&#xfe;" horiz-adv-x="1296" d="M160 1464v29h252v-553l14 14q123 101 295 101q124 0 220.5 -43t155.5 -118.5t89.5 -173.5t30.5 -212q0 -111 -28.5 -205t-85 -166t-149.5 -112.5t-213 -40.5q-188 0 -313 104l-16 14v-524h-244v1624q0 42 -4 128.5t-4 133.5zM410 524q0 -154 71 -240.5t221 -86.5 q135 0 200 89.5t65 237.5t-65 238t-200 90q-149 0 -220.5 -87t-71.5 -241z" />
<glyph unicode="&#xff;" horiz-adv-x="1077" d="M-16 1063h284l281 -709l242 709h292l-436 -1135q-40 -104 -82.5 -169.5t-98 -103t-118.5 -51.5t-153 -14h-138l-26 203h73h27q75 0 105.5 3.5t68 26.5t59 71.5t48.5 140.5zM223 1231v266h207v-266h-207zM647 1231v266h209v-266h-209z" />
<glyph unicode="&#x152;" horiz-adv-x="2297" d="M106 727q0 160 55 300t150.5 239t228.5 156t285 57q194 0 357 -105v76h977l-19 -221h-676v-361h650v-217h-650v-426h725l-18 -221h-989v82q-154 -104 -357 -104q-202 0 -367 96.5t-258.5 267t-93.5 381.5zM391 723q0 -80 17.5 -155t53 -140.5t86.5 -114.5t122 -77.5 t155 -28.5q230 0 357 127v784q-128 135 -357 135q-104 0 -189 -45.5t-137 -121t-80 -169t-28 -194.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1847" d="M68 535q0 120 32 222t94.5 180.5t164.5 122.5t233 44q127 0 224 -55t159 -144q53 93 148.5 146t226.5 53q94 0 169.5 -29t125.5 -79t83 -119.5t47.5 -147.5t14.5 -166l-2 -88h-686q9 -291 289 -291q161 0 288 95l78 -175q-78 -61 -163 -92.5t-210 -31.5q-298 0 -411 186 q-52 -83 -151.5 -134.5t-229.5 -51.5q-131 0 -233 44.5t-164.5 121.5t-94.5 175.5t-32 213.5zM340 535q0 -170 70 -259.5t182 -89.5q114 0 184 87.5t70 261.5q0 179 -70 269.5t-184 90.5q-113 0 -182.5 -92.5t-69.5 -267.5zM1104 631h428v8q0 256 -203 256q-38 0 -72.5 -12 t-68.5 -39.5t-56.5 -82t-27.5 -130.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1241" d="M-37 1446h309l353 -604l348 604h305l-502 -860v-586h-297v586zM377 1602v266h207v-266h-207zM801 1602v266h209v-266h-209z" />
<glyph unicode="&#x2c6;" horiz-adv-x="741" d="M25 1133l264 383h198l265 -383h-195l-172 200l-172 -200h-188z" />
<glyph unicode="&#x2dc;" horiz-adv-x="739" d="M23 1208q0 27 0.5 42t3.5 44.5t9 47.5t18 42t29.5 37.5t44.5 23t62 9.5q58 0 126.5 -20t121.5 -40t74 -20q47 0 47 80h160q0 -25 -0.5 -40t-3.5 -44t-9 -48t-18.5 -42.5t-29.5 -37.5t-44.5 -24t-62.5 -10q-49 0 -123.5 22t-133 44t-69.5 22q-25 0 -36 -20.5t-11 -67.5 h-155z" />
<glyph unicode="&#x2000;" horiz-adv-x="991" />
<glyph unicode="&#x2001;" horiz-adv-x="1982" />
<glyph unicode="&#x2002;" horiz-adv-x="991" />
<glyph unicode="&#x2003;" horiz-adv-x="1982" />
<glyph unicode="&#x2004;" horiz-adv-x="660" />
<glyph unicode="&#x2005;" horiz-adv-x="495" />
<glyph unicode="&#x2006;" horiz-adv-x="330" />
<glyph unicode="&#x2007;" horiz-adv-x="330" />
<glyph unicode="&#x2008;" horiz-adv-x="247" />
<glyph unicode="&#x2009;" horiz-adv-x="396" />
<glyph unicode="&#x200a;" horiz-adv-x="110" />
<glyph unicode="&#x2010;" horiz-adv-x="696" d="M70 432v195h559v-195h-559z" />
<glyph unicode="&#x2011;" horiz-adv-x="696" d="M70 432v195h559v-195h-559z" />
<glyph unicode="&#x2012;" horiz-adv-x="696" d="M70 432v195h559v-195h-559z" />
<glyph unicode="&#x2013;" horiz-adv-x="1218" d="M70 438v199h1081v-199h-1081z" />
<glyph unicode="&#x2014;" horiz-adv-x="1992" d="M-6 438v199h1997v-199h-1997z" />
<glyph unicode="&#x2018;" horiz-adv-x="419" d="M35 1483h237l113 -500h-184z" />
<glyph unicode="&#x2019;" horiz-adv-x="419" d="M37 983l113 500h237l-168 -500h-182z" />
<glyph unicode="&#x201a;" horiz-adv-x="573" d="M113 -289l112 500h240l-166 -500h-186z" />
<glyph unicode="&#x201c;" horiz-adv-x="712" d="M35 1483h239l103 -500h-174zM342 1483h225l113 -500h-186z" />
<glyph unicode="&#x201d;" horiz-adv-x="1003" d="M190 983l113 500h227l-151 -500h-189zM496 983l102 500h238l-168 -500h-172z" />
<glyph unicode="&#x201e;" horiz-adv-x="1042" d="M164 -289l112 500h248l-176 -500h-184zM518 -289l123 500h238l-166 -500h-195z" />
<glyph unicode="&#x2022;" horiz-adv-x="1036" d="M145 674q0 148 107.5 247t271.5 99q163 0 268 -95t105 -243q0 -150 -107 -248t-272 -98q-164 0 -268.5 95t-104.5 243z" />
<glyph unicode="&#x2026;" horiz-adv-x="1585" d="M147 -61v270h267v-270h-267zM651 -61v270h283v-270h-283zM1171 -61v270h267v-270h-267z" />
<glyph unicode="&#x202f;" horiz-adv-x="396" />
<glyph unicode="&#x2039;" horiz-adv-x="571" d="M33 547l282 377h224l-273 -377l264 -377h-221z" />
<glyph unicode="&#x203a;" horiz-adv-x="571" d="M33 170l270 377l-262 377h219l281 -377l-287 -377h-221z" />
<glyph unicode="&#x205f;" horiz-adv-x="495" />
<glyph unicode="&#x20ac;" horiz-adv-x="1183" d="M68 760l28 196h117q23 105 67.5 193t112 158.5t167 110.5t220.5 40q208 0 336 -137l-49 -281l-43 66q-91 147 -250 147q-70 0 -124.5 -23.5t-92 -66.5t-62 -92t-42.5 -113h553l-27 -198h-553v-45v-15v-10h549q0 -1 -1 -3t-1 -3l-27 -190h-497q14 -71 36 -124t58 -96 t92 -65.5t131 -22.5q79 0 143 31t135 90l50 43v-260q-154 -108 -344 -108q-125 0 -223 40t-161.5 112t-102 161.5t-56.5 198.5h-137l28 196h90v70h-120z" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" d="M61 1300v160h658v-160h-232v-614h-184v614h-242zM766 686v774h233l195 -504l205 504h215v-774h-176v485l-197 -485h-106l-187 477v-477h-182z" />
<glyph unicode="&#x25fc;" horiz-adv-x="1064" d="M0 0v1065h1065v-1065h-1065z" />
<glyph unicode="&#xfb01;" horiz-adv-x="1198" d="M6 895v168h172v33q0 67 3 114.5t12.5 98t27 84t47 65t72 49.5t102.5 28.5t138 10.5h63l23 -211h-62q-90 0 -116.5 -39t-26.5 -145v-88h620v-1063h-282v895h-338v-895h-283v895h-172zM799 1245v234h284v-234h-284z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1419" d="M6 895v168h172v55q0 220 101 325t337 105q101 0 238 -13t224 -25l87 -13v-1081q0 -67 5 -103.5t22 -65t50.5 -38.5t90.5 -10q23 0 38 1t19 2l3 1l12 -203q-58 -12 -150 -12q-94 0 -162 23.5t-108 62t-63.5 100.5t-31 127t-7.5 154v868q-106 18 -215 18 q-124 0 -165.5 -42.5t-41.5 -147.5v-88h225v-168h-225v-895h-283v895h-172z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,254 @@
<?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="oxygenregular" horiz-adv-x="1300" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="432" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="319" />
<glyph unicode=" " horiz-adv-x="432" />
<glyph unicode="&#x09;" horiz-adv-x="432" />
<glyph unicode="&#xa0;" horiz-adv-x="432" />
<glyph unicode="!" horiz-adv-x="585" d="M160 121q0 53 35.5 92t97.5 39t97.5 -39t35.5 -92q0 -54 -35.5 -93.5t-97.5 -39.5t-97.5 39.5t-35.5 93.5zM195 1354v141h196v-141l-63 -920h-66z" />
<glyph unicode="&#x22;" horiz-adv-x="708" d="M139 1509h152l-31 -493h-100zM426 1509h149l-28 -493h-101z" />
<glyph unicode="#" horiz-adv-x="1132" d="M90 410l10 127h185l59 393h-176l8 125h195l82 407h153l-80 -407h236l69 407h130l-66 -407h137l-14 -123h-148l-65 -395h145l-10 -127h-154l-86 -433h-151l84 433h-236l-80 -433h-129l74 433h-172zM422 537h235l80 395h-235z" />
<glyph unicode="$" horiz-adv-x="1226" d="M94 100q78 -46 202.5 -82t283.5 -41v-172h96v172q219 11 344 125t125 330q0 90 -25.5 158.5t-75 116.5t-114.5 79t-152 52l-102 24v508q105 -4 202.5 -31t159.5 -61l52 139q-168 103 -414 109v168h-96v-170q-228 -11 -356 -113.5t-128 -300.5q0 -277 336 -360l148 -37 v-582q-226 11 -435 113zM276 1120q0 232 304 250v-483l-82 18q-111 27 -166.5 78.5t-55.5 136.5zM676 131v557l51 -12q136 -34 188 -93.5t52 -156.5q0 -280 -289 -295h-2z" />
<glyph unicode="%" horiz-adv-x="1875" d="M90 1126q0 169 93.5 277t258.5 108q168 0 261.5 -107t93.5 -278q0 -167 -94.5 -276t-260.5 -109q-167 0 -259.5 108.5t-92.5 276.5zM217 1126q0 -115 60 -195.5t165 -80.5q107 0 167.5 81.5t60.5 194.5q0 115 -61 196t-167 81q-72 0 -124.5 -40.5t-76.5 -102t-24 -134.5z M403 0l928 1495h144l-930 -1495h-142zM1081 369q0 168 94 276.5t259 108.5q168 0 260 -106.5t92 -278.5q0 -168 -93 -275.5t-259 -107.5q-168 0 -260.5 107.5t-92.5 275.5zM1206 369q0 -115 61 -196t167 -81q72 0 124.5 40.5t76.5 102t24 134.5q0 115 -60 195.5t-165 80.5 q-107 0 -167.5 -81.5t-60.5 -194.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1476" d="M104 395q0 154 86.5 259t249.5 186q-47 52 -71.5 82t-51.5 72t-38 83t-11 88q0 150 105.5 237t283.5 87q106 0 192.5 -32.5t142 -104t55.5 -170.5q0 -64 -26 -120t-74.5 -102t-106 -83t-133.5 -72l401 -430q76 78 141 223l121 -90q-65 -140 -158 -252l181 -215 q-104 -37 -156 -51l-137 153q-208 -166 -479 -166q-252 0 -384.5 111t-132.5 307zM281 406q0 -128 92 -201.5t256 -73.5q200 0 356 127q-75 80 -220 233.5t-220 233.5q-126 -65 -195 -140.5t-69 -178.5zM455 1165q0 -68 36.5 -125t112.5 -131q61 31 98 53t77.5 54.5 t59.5 70.5t19 84q0 83 -58 129t-141 46q-93 0 -148.5 -48t-55.5 -133z" />
<glyph unicode="'" horiz-adv-x="391" d="M123 1509h153l-28 -493h-105z" />
<glyph unicode="(" horiz-adv-x="610" d="M125 637q0 432 246 872h147q-227 -416 -227 -868q0 -212 61 -440t168 -418h-147q-112 191 -180 413.5t-68 440.5z" />
<glyph unicode=")" horiz-adv-x="610" d="M92 -217q106 193 168 419.5t62 438.5q0 446 -230 868h150q245 -450 245 -872q0 -218 -68 -438t-181 -416h-146z" />
<glyph unicode="*" horiz-adv-x="1079" d="M88 1083l350 -125l-264 -342l135 -94l228 365l235 -365l135 94l-266 342l352 125l-71 160l-322 -180l29 426h-178l32 -426l-323 180z" />
<glyph unicode="+" horiz-adv-x="1079" d="M100 512h383v-432h135v432h371v133h-368v420h-134v-420h-387v-133z" />
<glyph unicode="," horiz-adv-x="507" d="M135 -293l21 522h211l-125 -522h-107z" />
<glyph unicode="-" horiz-adv-x="684" d="M88 520v144h510v-144h-510z" />
<glyph unicode="." horiz-adv-x="493" d="M127 121q0 -54 35.5 -93.5t97.5 -39.5t97.5 39.5t35.5 93.5q0 53 -35.5 92t-97.5 39t-97.5 -39t-35.5 -92z" />
<glyph unicode="/" horiz-adv-x="950" d="M49 -217l676 1683h147l-677 -1683h-146z" />
<glyph unicode="0" horiz-adv-x="1239" d="M109 752q0 234 55 405t172 270t287 99t286 -99t170 -270t54 -405q0 -134 -17.5 -249t-57 -213t-98 -166.5t-144.5 -107.5t-193 -39q-133 0 -233.5 59t-161 165t-90 244t-29.5 307zM301 758q0 -183 36.5 -323.5t110 -223t175.5 -82.5t175 82.5t108.5 223t35.5 323.5 q0 180 -35.5 317t-108.5 217t-175 80t-175.5 -80t-110 -217t-36.5 -317z" />
<glyph unicode="1" horiz-adv-x="663" d="M51 1343q146 65 273 152h159v-1495h-178v1311q-137 -88 -217 -113z" />
<glyph unicode="2" horiz-adv-x="1114" d="M90 164l516 573q95 105 144.5 191.5t50.5 169.5v10q0 125 -68.5 192.5t-195.5 67.5q-214 0 -334 -123l-60 150q141 131 406 131q203 0 323.5 -111.5t120.5 -296.5v-6q-1 -132 -66 -247.5t-200 -260.5l-422 -450h694l-12 -154h-874z" />
<glyph unicode="3" horiz-adv-x="1101" d="M104 92l58 146q140 -109 332 -109q150 0 239.5 74.5t89.5 208.5q0 78 -26 135t-68.5 90.5t-109.5 53t-135 26t-160 6.5v147q55 0 97.5 2t90.5 9t84 18.5t70 31t56 47t35 67t13 88.5q0 239 -274 239q-199 0 -334 -106l-58 145q148 115 431 115q84 0 160.5 -24.5 t136.5 -70.5t95.5 -117.5t35.5 -158.5q0 -141 -69 -230.5t-194 -127.5q139 -31 219 -131.5t80 -255.5q0 -197 -141 -315t-362 -118q-135 0 -240 35t-152 80z" />
<glyph unicode="4" horiz-adv-x="1210" d="M109 371v153l657 971h186v-979h185l-15 -145h-170v-371h-168v371h-675zM285 516h499v754z" />
<glyph unicode="5" horiz-adv-x="1175" d="M121 115l65 141q150 -117 342 -117q163 0 259 93t96 243q0 134 -80 217.5t-228 83.5q-149 0 -237 -98l-139 18l39 799h766l-17 -164h-608q-2 -72 -7 -235.5t-7 -235.5q116 74 243 74q147 0 252 -62t155 -163.5t50 -231.5q0 -226 -146 -363t-397 -137q-126 0 -229 37 t-172 101z" />
<glyph unicode="6" horiz-adv-x="1198" d="M102 471q0 163 60 292.5t217 326.5q38 48 120 148t145 176l63 75h231l-526 -629q112 62 225 62q126 0 233.5 -60t172.5 -169.5t65 -243.5q0 -203 -138.5 -337.5t-363.5 -134.5q-155 0 -271 67.5t-174.5 178.5t-58.5 248zM293 453q0 -89 32.5 -160.5t103.5 -117.5t171 -46 q148 0 233 91t85 226q0 142 -85 233t-233 91q-156 0 -231.5 -88.5t-75.5 -228.5z" />
<glyph unicode="7" horiz-adv-x="1050" d="M100 1341l11 154h868v-135l-537 -1360h-182l514 1341h-674z" />
<glyph unicode="8" horiz-adv-x="1181" d="M102 385q0 144 82.5 249.5t229.5 153.5q-133 47 -205 137.5t-72 223.5q0 177 127 277t330 100t326.5 -99.5t123.5 -277.5q0 -263 -253 -361q135 -48 211.5 -154t76.5 -249q0 -129 -66.5 -223t-175 -139.5t-243.5 -45.5q-136 0 -246 45.5t-178 139.5t-68 223zM279 397 q0 -123 89 -195.5t226 -72.5q136 0 222.5 72t86.5 196q0 119 -83.5 195.5t-225.5 109.5q-143 -33 -229 -110t-86 -195zM315 1151q0 -234 279 -297q274 62 274 297q0 104 -79.5 165.5t-194.5 61.5t-197 -62t-82 -165z" />
<glyph unicode="9" horiz-adv-x="1163" d="M86 1053q0 203 140.5 338t365.5 135q155 0 269.5 -65t171.5 -173.5t57 -245.5q0 -144 -48.5 -259t-169.5 -279q-43 -57 -143.5 -183t-180.5 -223l-79 -98h-219l530 657q-106 -59 -225 -59q-126 0 -232.5 55.5t-171.5 160.5t-65 239zM274 1057q0 -140 84 -224.5t234 -84.5 q157 0 233 87t76 226q0 137 -77.5 224t-225.5 87q-149 0 -236.5 -90.5t-87.5 -224.5z" />
<glyph unicode=":" horiz-adv-x="493" d="M145 -25v234h207v-234h-207zM145 893v231h207v-231h-207z" />
<glyph unicode=";" horiz-adv-x="516" d="M137 -309l58 506h182l-125 -506h-115zM174 893v231h207v-231h-207z" />
<glyph unicode="&#x3c;" horiz-adv-x="1177" d="M102 547v94l959 508v-168l-766 -385l762 -381v-166z" />
<glyph unicode="=" horiz-adv-x="1284" d="M143 741v150h1004v-150h-1004zM145 305v148h1002v-148h-1002z" />
<glyph unicode="&#x3e;" horiz-adv-x="1181" d="M127 61v168l764 369l-762 399v162l956 -520v-94z" />
<glyph unicode="?" horiz-adv-x="864" d="M74 1427q121 97 329 97q163 0 263 -85.5t100 -238.5q0 -77 -22.5 -150t-63 -142.5t-84 -135t-98.5 -157.5t-95 -181h-86q0 64 29.5 147t71.5 163t83.5 158t71 154t29.5 130q-1 95 -61 140.5t-164 45.5q-137 0 -258 -80zM242 121q0 53 35.5 92t97.5 39t97.5 -39t35.5 -92 q0 -54 -35.5 -93.5t-97.5 -39.5t-97.5 39.5t-35.5 93.5z" />
<glyph unicode="@" horiz-adv-x="1787" d="M100 721q0 166 64 315t172.5 256.5t259.5 170.5t319 63q128 0 244.5 -30.5t212.5 -90t167 -142t110 -191t39 -232.5q0 -100 -29.5 -189t-78.5 -152.5t-111 -109.5t-128 -69t-129 -23q-161 0 -184 158q-97 -140 -237 -140q-109 0 -178.5 85.5t-69.5 230.5q0 80 14.5 152.5 t46.5 137.5t78 112.5t114.5 75.5t151.5 28q126 0 301 -62q-12 -60 -35 -168t-35.5 -168t-23 -123.5t-10.5 -91.5q0 -106 88 -106q49 0 106 33.5t106.5 89t82.5 136.5t33 165q0 172 -85 301t-231.5 195.5t-333.5 66.5q-185 0 -341.5 -90t-248.5 -247.5t-92 -346.5 q0 -154 52 -283t142 -214t210 -132t256 -47q283 0 454 139l70 -88q-92 -85 -228 -128.5t-298 -43.5q-165 0 -309.5 57t-250 159t-166.5 252.5t-61 328.5zM676 621q0 -83 36 -131t101 -48q42 0 76.5 22t60 60.5t46 89.5t35.5 110.5t27.5 122.5t24.5 126q3 16 4 24 q-19 10 -61 16.5t-74 6.5q-60 0 -108.5 -23.5t-79 -62.5t-51 -91.5t-29 -107.5t-8.5 -114z" />
<glyph unicode="A" horiz-adv-x="1308" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM420 610h479l-227 713zM1176 10z" />
<glyph unicode="B" horiz-adv-x="1284" d="M147 0v1495h437q280 0 423.5 -86.5t143.5 -278.5q0 -116 -52.5 -205t-160.5 -124q90 -20 153.5 -80t92 -136t28.5 -159q0 -426 -542 -426h-523zM324 139h313q198 0 296.5 70t98.5 219q0 141 -88.5 215t-255.5 74h-364v-578zM324 850h354q59 0 105 9.5t90.5 34t69 76 t24.5 126.5q0 66 -20 113t-53 74.5t-88 43t-111.5 20.5t-137.5 5h-233v-502z" />
<glyph unicode="C" horiz-adv-x="1288" d="M98 745q0 166 47.5 308.5t136.5 247.5t225.5 165t305.5 60q272 0 438 -137l-63 -136q-67 53 -163 86t-206 33q-131 0 -234.5 -51t-167 -138.5t-96 -199t-32.5 -238.5q0 -98 18 -186t59 -167.5t102.5 -137t154 -91.5t206.5 -34q106 0 199 34.5t160 88.5l57 -146 q-144 -129 -430 -129q-171 0 -309 60t-226 165t-135 244t-47 299zM639 0z" />
<glyph unicode="D" horiz-adv-x="1509" d="M147 0v1495h371q161 0 292 -23t245 -77.5t191 -140.5t121 -216.5t44 -300.5q0 -183 -57 -324.5t-162 -231.5t-249 -135.5t-322 -45.5h-474zM324 156h315q280 0 432 145.5t152 431.5q0 139 -32 244t-89.5 173.5t-144 111.5t-187.5 61t-229 18h-217v-1185zM762 745z" />
<glyph unicode="E" horiz-adv-x="1146" d="M147 0v1495h881l-12 -154h-692v-495h663v-154h-663v-536h735l-17 -156h-895zM1026 10z" />
<glyph unicode="F" horiz-adv-x="1024" d="M147 0v1495h828l-14 -154h-637v-503h616v-144h-616v-694h-177z" />
<glyph unicode="G" horiz-adv-x="1431" d="M100 745q0 -156 45.5 -293.5t132 -244t224 -168.5t309.5 -62q145 0 262 33t248 113v641h-512l-12 -150h370v-395q-55 -34 -152.5 -62t-185.5 -28q-111 0 -201.5 32.5t-152 88.5t-104 134.5t-61.5 168.5t-19 192q0 101 19 192t61.5 171t104 138.5t152 92t201.5 33.5 q103 0 209 -38t172 -91l66 137q-182 146 -461 146q-175 0 -313.5 -62.5t-225 -171t-131.5 -248t-45 -299.5zM717 0z" />
<glyph unicode="H" horiz-adv-x="1464" d="M147 0v1495h177v-647h817v647h178v-1495h-178v696h-817v-696h-177zM733 745z" />
<glyph unicode="I" horiz-adv-x="507" d="M164 0v1495h176v-1495h-176zM459 10z" />
<glyph unicode="J" horiz-adv-x="548" d="M-41 -72h76q53 0 89.5 13t56 32t30 56t12.5 67.5t2 83.5v1315h178v-1253q0 -73 -3 -122.5t-12 -101.5t-26.5 -85t-45.5 -63t-69.5 -47t-98.5 -26.5t-132 -9.5h-34zM274 1489z" />
<glyph unicode="K" horiz-adv-x="1226" d="M145 0v1495h179v-725l637 725h233l-612 -696l682 -799h-224l-600 702l-116 -100v-602h-179zM614 0z" />
<glyph unicode="L" horiz-adv-x="978" d="M147 0v1495h179v-1339h655l-10 -156h-824zM479 0z" />
<glyph unicode="M" horiz-adv-x="1783" d="M150 0v1495h192l557 -1149l553 1149h184v-1495h-166v1176l-473 -994h-200l-482 1000v-1182h-165z" />
<glyph unicode="N" horiz-adv-x="1486" d="M147 0v1495h195l836 -1241v1241h163v-1495h-196l-832 1239v-1239h-166zM743 0z" />
<glyph unicode="O" horiz-adv-x="1656" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM829 1489z" />
<glyph unicode="P" horiz-adv-x="1157" d="M145 0v1495h484q87 0 161.5 -14t138 -44.5t107.5 -76.5t69 -113.5t25 -152.5q0 -87 -16 -156t-55 -129t-102.5 -99.5t-161.5 -62t-228 -22.5q-66 0 -243 14v-639h-179zM324 780q192 -2 260 -2q71 0 127 10t94 25.5t65.5 40.5t42.5 50t23.5 59t11 62t2.5 65 q0 126 -85.5 186.5t-231.5 60.5h-309v-557z" />
<glyph unicode="Q" horiz-adv-x="1656" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM829 1489zM942 -16l14 6q15 7 35 15.5t44 16t43 9.5q5 1 9 1q13 0 23 -5q43 -94 138 -216.5t136 -160.5l-116 -119q-49 49 -159.5 194.5t-166.5 258.5z" />
<glyph unicode="R" horiz-adv-x="1337" d="M147 0v1495h474q96 0 167 -5.5t141 -20t117 -42t84 -70t54.5 -105.5t17.5 -146q0 -143 -70.5 -243.5t-211.5 -137.5q-1 0 18.5 -33.5t48 -85t43.5 -84.5l242 -522h-201l-203 465q-80 179 -106 223q-58 -4 -172 -4l-266 8v-692h-177zM324 842l356 -4h9q127 0 201 29 q78 30 108 86t30 149q0 121 -70.5 180t-236.5 59h-397v-499zM641 0z" />
<glyph unicode="S" horiz-adv-x="1226" d="M94 100q81 -49 220.5 -86t316.5 -37q238 0 376 114.5t138 340.5q0 90 -25.5 158.5t-75 116.5t-114.5 79t-152 52l-280 67q-111 27 -166.5 78.5t-55.5 136.5q0 252 363 252q112 0 221 -28.5t178 -65.5l52 139q-79 49 -198 79t-251 30q-256 0 -400.5 -102.5t-144.5 -313.5 q0 -277 336 -360l295 -74q136 -34 188 -93.5t52 -156.5q0 -297 -326 -297q-264 0 -496 115zM614 0z" />
<glyph unicode="T" horiz-adv-x="1064" d="M-2 1341v154h1071v-154h-448v-1341h-177v1341h-446zM532 745z" />
<glyph unicode="U" horiz-adv-x="1384" d="M127 522v973h176v-967q0 -218 90.5 -310.5t294.5 -92.5q203 0 294 93t91 310v967h176v-973q0 -101 -16.5 -181t-56 -149.5t-102.5 -116t-160.5 -72.5t-225.5 -26t-225 26t-160 72.5t-103 116t-56.5 149.5t-16.5 181zM1247 10z" />
<glyph unicode="V" horiz-adv-x="1263" d="M-10 1495h190l453 -1300q297 857 457 1300h186l-549 -1495h-190z" />
<glyph unicode="W" horiz-adv-x="2129" d="M-27 1495h183l430 -1298l391 1245h209l354 -1247l436 1300h183l-514 -1495h-209l-353 1225l-399 -1225h-209zM1067 1489z" />
<glyph unicode="X" horiz-adv-x="1298" d="M10 0l527 780l-494 715h213l403 -602l431 602h190l-500 -715l508 -780h-205l-430 680l-446 -680h-197z" />
<glyph unicode="Y" horiz-adv-x="1241" d="M0 1495h186l424 -717l441 717h192l-557 -881v-614h-176v614zM621 1489z" />
<glyph unicode="Z" horiz-adv-x="1198" d="M90 0v139l832 1202h-797v154h1032v-123l-842 -1216h834l-12 -156h-1047zM600 1489z" />
<glyph unicode="[" horiz-adv-x="677" d="M121 -260v1765h448v-125h-270v-1519h270v-121h-448z" />
<glyph unicode="\" horiz-adv-x="933" d="M82 1466h147l652 -1587h-146z" />
<glyph unicode="]" horiz-adv-x="677" d="M109 -139h272v1519h-272v125h448v-1765h-448v121z" />
<glyph unicode="^" horiz-adv-x="1202" d="M90 627l457 932h104l461 -932h-133l-383 747l-369 -747h-137z" />
<glyph unicode="_" horiz-adv-x="1251" d="M150 -156h952v-137h-952v137z" />
<glyph unicode="`" horiz-adv-x="641" d="M86 1638h250l184 -387h-112zM303 1098z" />
<glyph unicode="a" horiz-adv-x="1044" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM932 10z" />
<glyph unicode="b" horiz-adv-x="1169" d="M119 0h166v164q51 -89 142 -139t202 -50q113 0 203 46.5t146.5 127.5t86 186t29.5 226q0 112 -30 212t-86 179t-145 125.5t-200 46.5q-98 0 -192 -47.5t-154 -146.5v579l-168 -18v-1491zM285 551q0 192 95 312t241 122q67 0 120.5 -26.5t86.5 -69t55 -101t30.5 -116.5 t8.5 -121q0 -64 -9 -123t-31 -117.5t-56 -101.5t-88 -69.5t-122 -26.5q-111 0 -187.5 61t-110 157t-33.5 220z" />
<glyph unicode="c" horiz-adv-x="952" d="M78 549q0 -92 21.5 -177t66 -157t106.5 -125.5t148 -84t186 -30.5q85 0 165 26t132 75l-41 119q-116 -82 -248 -82q-163 0 -264.5 121t-101.5 311t101.5 315t252.5 125q142 0 258 -76l43 119q-46 45 -125.5 70.5t-173.5 25.5q-119 0 -219.5 -47t-166.5 -127 t-102.5 -183.5t-37.5 -217.5zM473 0z" />
<glyph unicode="d" horiz-adv-x="1171" d="M78 561q0 -172 54.5 -303.5t161.5 -207t253 -75.5q110 0 199.5 54.5t138.5 142.5l20 -172h150v1509l-168 -18v-553q-42 86 -138 136t-208 50q-136 0 -242.5 -76t-163.5 -204t-57 -283zM250 557q0 79 17 150.5t51.5 133.5t95.5 99t141 37q85 0 150 -33t104 -92 t58.5 -134.5t19.5 -166.5q0 -187 -84.5 -306.5t-245.5 -119.5q-82 0 -143.5 36.5t-96 99t-51 137t-16.5 159.5zM586 549z" />
<glyph unicode="e" horiz-adv-x="1083" d="M78 551q0 -265 135 -420.5t369 -155.5q254 0 405 131l-51 123q-162 -110 -348 -110q-148 0 -243 108.5t-95 290.5h751q0 9 1.5 38.5t1.5 37.5q0 243 -119.5 386.5t-323.5 143.5q-215 -6 -349 -166t-134 -407zM256 635q13 161 96.5 256.5t208.5 95.5q127 0 204 -91 t77 -261h-586zM977 10z" />
<glyph unicode="f" horiz-adv-x="638" d="M39 981v117h162v32q2 124 20 201t61.5 123.5t107.5 64t167 17.5h74l20 -127h-94q-53 0 -86.5 -10t-54.5 -27t-31 -54.5t-13 -77.5t-3 -110v-32h247v-117h-247v-981h-168v981h-162z" />
<glyph unicode="g" horiz-adv-x="1163" d="M80 545q0 119 29 222t86.5 183.5t152 127t215.5 46.5q203 0 332 -174v148h162v-1018q0 -70 -3.5 -122.5t-17 -116.5t-36.5 -110.5t-64.5 -92.5t-99 -75t-142.5 -47t-192 -18h-178l-23 152h205q73 0 129.5 10t97 27.5t68.5 47t45.5 62t27 81t12.5 95t3 111.5v96 q-60 -87 -139 -133.5t-199 -46.5q-94 0 -173 32.5t-133 86.5t-92 125t-55.5 147.5t-17.5 153.5zM252 555q0 -73 19.5 -144t57 -132t101.5 -98.5t145 -37.5q85 0 149 30t100 83t53.5 118t17.5 142v82q0 81 -18 148.5t-55 121t-99 83.5t-145 30q-68 0 -124 -26t-93 -69 t-62 -99t-36 -114.5t-11 -117.5zM584 1098z" />
<glyph unicode="h" horiz-adv-x="1110" d="M115 0h168v748q22 85 118.5 159t216.5 74q69 0 113 -21t68 -69.5t32.5 -112t8.5 -162.5v-616h168v664q0 222 -83 341t-251 119q-248 0 -391 -176v561l-168 -18v-1491zM555 549z" />
<glyph unicode="i" horiz-adv-x="464" d="M160 0v1098h168v-1098h-168zM160 1298v197h168v-197h-168z" />
<glyph unicode="j" horiz-adv-x="444" d="M-78 -350h53q30 0 54 2.5t43 6.5t32.5 13.5t23.5 18t16 25t10 30t5.5 38t2 43.5t0.5 52v1219h168v-1237q0 -105 -13.5 -170.5t-50.5 -111t-101 -63.5t-167 -18h-53zM162 1298v197h168v-197h-168z" />
<glyph unicode="k" horiz-adv-x="1005" d="M115 0v1491l168 18v-876l487 465h227l-469 -457l502 -641h-215l-414 563l-118 -102v-461h-168zM498 0z" />
<glyph unicode="l" horiz-adv-x="548" d="M143 469v1022l168 18v-1079q0 -69 1 -107.5t5 -79.5t11.5 -60.5t21 -37t33.5 -23t49 -5.5q14 0 90 6l10 -131q-68 -12 -112 -12q-58 0 -100 9t-72.5 22.5t-50 47t-30.5 63.5t-16 92t-6.5 112t-1.5 143zM553 1098z" />
<glyph unicode="m" horiz-adv-x="1771" d="M111 1098q0 -9 2 -117.5t2 -161.5v-819h168v750q30 91 123.5 160t214.5 69q49 0 85 -17.5t58.5 -48.5t36.5 -78.5t19 -101.5t5 -125v-608h168v731q39 112 123 180t187 68q31 0 56 -6t44 -16t33.5 -28.5t24.5 -37t17.5 -47.5t11.5 -55t6 -65t2.5 -71.5t0.5 -79.5v-573h168 v696q0 428 -338 428q-247 0 -379 -202q-37 107 -113.5 154.5t-195.5 47.5q-107 0 -204 -48t-167 -142l-14 164h-145z" />
<glyph unicode="n" horiz-adv-x="1110" d="M111 1098h145l14 -162q64 87 170.5 137.5t221.5 50.5q179 0 262.5 -116.5t83.5 -350.5v-657h-168v551q0 70 -1.5 114.5t-6 95t-13.5 80.5t-24.5 60t-38.5 45.5t-55.5 25t-75.5 9.5q-66 0 -127 -22t-103.5 -57t-72 -74.5t-39.5 -77.5v-750h-168v831zM555 0z" />
<glyph unicode="o" horiz-adv-x="1177" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM590 1098z" />
<glyph unicode="p" horiz-adv-x="1165" d="M123 -459v1557h158l10 -148q129 174 340 174q95 0 172 -31t130 -84.5t88.5 -128t52 -160.5t16.5 -183q0 -150 -54 -277t-160 -206t-245 -79q-108 0 -196.5 46t-143.5 139v-596zM289 549q0 -92 17.5 -167.5t53.5 -135.5t98.5 -93.5t145.5 -33.5q82 0 145 38.5t98.5 102.5 t53 137t17.5 152t-17.5 152.5t-53 137.5t-98.5 103t-145 39q-83 0 -145.5 -33.5t-98.5 -94t-53.5 -136.5t-17.5 -168z" />
<glyph unicode="q" horiz-adv-x="1171" d="M78 539q0 -112 29.5 -212.5t86 -179.5t145.5 -125.5t200 -46.5q114 0 202.5 51.5t141.5 143.5v-629l168 21v1536h-164v-160q-121 186 -336 186q-117 0 -209 -46.5t-149 -127.5t-86 -185.5t-29 -225.5zM250 551q0 79 15.5 150.5t49 135.5t96 102t146.5 38t148.5 -33.5 t103.5 -93t58.5 -135t19.5 -164.5q0 -90 -19 -165.5t-57.5 -135.5t-102.5 -93.5t-149 -33.5q-68 0 -122.5 25t-88.5 66t-57 98t-32 115.5t-9 123.5z" />
<glyph unicode="r" horiz-adv-x="653" d="M121 1098q0 -42 1 -125.5t1 -126.5v-846h168v643q0 130 80 215.5t227 85.5h41l-12 154h-31q-216 0 -322 -191l-12 191h-141zM330 0z" />
<glyph unicode="s" horiz-adv-x="935" d="M100 815q2 -108 66 -184t219 -119l145 -41q166 -47 166 -170v-10q-7 -85 -63.5 -130.5t-151.5 -45.5h-16q-98 0 -180 30t-131 62l-43 -129q55 -41 159.5 -72t221.5 -31q160 0 259 84t103 236v4q0 133 -69 210.5t-207 113.5l-152 41q-85 22 -121.5 59.5t-36.5 91.5 q0 83 59 129.5t152 46.5q142 0 281 -59l39 121q-139 71 -332 71q-89 -1 -160.5 -27.5t-115.5 -70.5t-67.5 -98t-23.5 -113zM467 0z" />
<glyph unicode="t" horiz-adv-x="690" d="M23 981l14 117h153l43 354l125 10v-364h291v-117h-291v-614q0 -155 29.5 -201.5t128.5 -46.5q7 0 137 10l15 -135q-175 -14 -191 -14q-57 0 -99.5 9t-73.5 24t-51.5 45t-33 62t-19 86.5t-8.5 106t-2 131.5v537h-167zM362 549z" />
<glyph unicode="u" horiz-adv-x="1097" d="M109 367v731h167v-733q0 -72 20 -122.5t58.5 -78t86 -39.5t110.5 -12q62 0 108.5 12.5t84.5 40t57.5 78t19.5 121.5v733h168v-731q0 -105 -35.5 -182.5t-97.5 -122.5t-138.5 -66t-166.5 -21q-72 0 -135 13t-120 42.5t-98 74t-65 111.5t-24 151zM989 10z" />
<glyph unicode="v" horiz-adv-x="1034" d="M0 1098h178l346 -914l328 914h178l-428 -1098h-170z" />
<glyph unicode="w" horiz-adv-x="1617" d="M14 1098h174l244 -875l291 875h197l278 -871l236 871h170l-328 -1098h-166l-293 928l-305 -928h-170zM811 1098z" />
<glyph unicode="x" horiz-adv-x="1040" d="M25 0l401 555l-391 543h192l297 -416l299 416h195l-393 -545l393 -553h-182l-310 438l-309 -438h-192z" />
<glyph unicode="y" horiz-adv-x="1011" d="M4 1098l426 -1075q-31 -92 -51.5 -145.5t-47 -100.5t-48.5 -68t-59.5 -36.5t-76 -19t-102.5 -3.5h-29l21 -152h51q76 0 138.5 14.5t111 45t85.5 67.5t68.5 92.5t54.5 108.5t48 127l399 1145h-178q-203 -630 -289 -891l-346 891h-176zM510 1098z" />
<glyph unicode="z" horiz-adv-x="860" d="M80 965h530l-524 -826v-139h737v135h-551l531 830v133h-723v-133zM436 1098z" />
<glyph unicode="{" horiz-adv-x="688" d="M88 614v150h62q29 0 50.5 11t34 33.5t21 45.5t11.5 59.5t4 62t1 66.5v283q0 156 72 223.5t234 67.5v-137q-27 0 -47 -2t-36 -10t-26 -15.5t-17.5 -26t-11 -33t-5.5 -45.5t-2.5 -55t-0.5 -69v-236q0 -92 -32 -175.5t-113 -123.5q81 -40 113 -123.5t32 -175.5v-233 q0 -45 0.5 -69t2.5 -55t5.5 -45.5t11 -33t17.5 -26t26 -15.5t36 -10t47 -2v-138q-162 0 -234 67.5t-72 223.5v283q0 41 -1 66.5t-4 62t-11.5 59.5t-21 45.5t-34 33.5t-50.5 11h-62z" />
<glyph unicode="|" horiz-adv-x="468" d="M160 -303v1907h149v-1907h-149z" />
<glyph unicode="}" horiz-adv-x="698" d="M119 -100q27 0 47 2.5t36 10t26.5 15t17.5 25.5t11 33t6 45.5t2.5 55t0.5 69.5v233q0 92 32.5 175.5t113.5 123.5q-81 40 -113.5 123.5t-32.5 175.5v236q0 45 -0.5 69.5t-2.5 55t-6 45.5t-11 33t-17.5 25.5t-26.5 15t-36 10t-47 2.5v137q162 0 234.5 -67.5t72.5 -223.5 v-283q0 -47 1.5 -79.5t9 -73t20 -65.5t36.5 -42.5t58 -17.5h59v-150h-59q-34 0 -58 -17.5t-36.5 -42.5t-20 -65.5t-9 -73t-1.5 -79.5v-283q0 -156 -72.5 -223.5t-234.5 -67.5v138z" />
<glyph unicode="~" horiz-adv-x="1339" d="M137 473q22 121 98.5 204t198.5 83q53 0 127.5 -27t136.5 -59t125 -59t95 -27q65 0 113 56t67 134l110 -41q-26 -136 -99.5 -215.5t-193.5 -79.5q-52 0 -144.5 43t-186 86t-148.5 43q-77 0 -128.5 -58t-67.5 -140z" />
<glyph unicode="&#xa1;" horiz-adv-x="585" d="M160 1374q0 54 35.5 93.5t97.5 39.5t97.5 -39.5t35.5 -93.5q0 -53 -35.5 -92t-97.5 -39t-97.5 39t-35.5 92zM195 0v141l63 920h66l67 -920v-141h-196z" />
<glyph unicode="&#xa2;" horiz-adv-x="1079" d="M102 748q0 -220 121.5 -383t325.5 -189v-170h88v168q140 6 293 90l-41 107q-134 -64 -252 -64v879q114 -3 250 -74l43 119q-146 89 -293 92v180h-88v-186q-132 -20 -234 -100.5t-157 -202.5t-56 -266zM272 745q0 159 73.5 284t203.5 149v-863q-88 17 -152.5 82.5 t-94.5 155.5t-30 192z" />
<glyph unicode="&#xa3;" horiz-adv-x="1126" d="M102 707v143h174v86q0 73 4 130.5t15.5 121t31.5 111t53.5 92t79 73t111 45.5t146.5 17q227 0 352 -176l-94 -109q-57 67 -117 99t-141 32q-264 0 -264 -364v-158h399v-143h-399v-177q0 -271 -105 -378q83 10 88 10h615l-13 -162h-903l-22 137q96 51 129.5 127t33.5 203 v240h-174z" />
<glyph unicode="&#xa4;" horiz-adv-x="1296" d="M72 254l235 219q-92 119 -92 268q0 154 92 269l-235 219l53 51l233 -217q126 113 291 113q170 0 295 -115l238 219l45 -55l-234 -217q92 -119 92 -267q0 -147 -92 -266l234 -217l-45 -55l-238 219q-127 -117 -295 -117q-165 0 -293 115l-231 -217zM305 741 q0 -143 101 -244.5t243 -101.5q143 0 244.5 101.5t101.5 244.5q0 142 -101.5 243t-244.5 101t-243.5 -100.5t-100.5 -243.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1128" d="M35 1495h178l352 -621l361 621h170l-430 -727h348v-123h-375v-192h379v-123h-379v-330h-152v330h-391v123h391v192h-387v123h351z" />
<glyph unicode="&#xa6;" horiz-adv-x="448" d="M152 -301v641h149v-641h-149zM152 965v639h149v-639h-149z" />
<glyph unicode="&#xa7;" horiz-adv-x="976" d="M143 784q0 88 47 155.5t121 111.5q-69 53 -102 111.5t-33 148.5q0 145 102.5 221t272.5 76q109 0 221 -45l2 -158q-40 24 -104 39.5t-115 15.5q-102 0 -162.5 -35.5t-60.5 -109.5q0 -65 47.5 -111t177.5 -104q68 -33 113 -59.5t88 -63.5t63.5 -82t20.5 -100 q0 -83 -47 -154.5t-119 -124.5q71 -45 108 -100.5t37 -143.5q0 -101 -53.5 -175t-142.5 -110t-201 -36q-153 0 -256 53v162q132 -72 252 -72q114 0 181 48.5t67 119.5q0 28 -11 51t-24.5 38t-48 35t-57.5 30.5t-78 34.5l-89 38q-107 53 -162 124.5t-55 170.5zM299 799 q0 -31 12.5 -57t29.5 -45t52 -39t63.5 -33t80.5 -35q66 42 106.5 86t40.5 102q0 30 -12.5 55.5t-31.5 42.5t-47.5 33.5t-52.5 26.5t-55.5 23t-48.5 22q-64 -40 -100.5 -82t-36.5 -100z" />
<glyph unicode="&#xa8;" horiz-adv-x="768" d="M119 1253v213h153v-213h-153zM391 1098zM508 1253v213h156v-213h-156z" />
<glyph unicode="&#xa9;" horiz-adv-x="1839" d="M117 780q0 156 43.5 289t118.5 227t174.5 160t212 97.5t231.5 31.5q126 0 243.5 -32t219.5 -98t178 -160t120 -226.5t44 -288.5q0 -157 -43.5 -290t-119 -227.5t-177 -160.5t-218.5 -97.5t-243 -31.5q-119 0 -231.5 31.5t-213 98t-176 160t-119.5 227t-44 290.5zM229 782 q0 -148 45 -277.5t128.5 -227t212 -153.5t286.5 -56q132 0 244 36.5t192.5 101t137.5 153.5t84.5 195t27.5 224q0 147 -45 276t-129.5 227t-217.5 155t-298 57q-156 0 -284 -57t-211 -154.5t-128 -226t-45 -273.5zM434 784q0 225 134.5 370.5t351.5 145.5q178 0 307 -90 l-60 -96q-45 32 -116 50t-142 18q-85 0 -151 -32t-106.5 -87t-61.5 -125t-21 -150q0 -178 91.5 -289.5t269.5 -111.5q68 0 144 21t118 51l39 -107q-55 -35 -143 -58.5t-179 -23.5q-207 0 -341 145.5t-134 368.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="1103" d="M184 244q0 -129 83 -198t210 -69q190 0 303 129l23 -106h121v711q0 280 -342 280q-100 0 -191.5 -19.5t-148.5 -51.5l41 -117q129 63 303 63q99 0 144.5 -44t45.5 -134v-108l-98 -13q-202 -30 -281 -56q-163 -55 -201 -177q-12 -41 -12 -90zM332 248q0 100 73.5 144.5 t280.5 72.5l90 10v-237q-46 -63 -128.5 -103.5t-153.5 -40.5q-73 0 -117.5 38t-44.5 116zM930 8z" />
<glyph unicode="&#xab;" horiz-adv-x="980" d="M119 584l243 397h166l-258 -397l250 -402h-164zM463 584l262 397h139l-231 -397l225 -402h-135z" />
<glyph unicode="&#xac;" horiz-adv-x="1280" d="M115 709v151h1022v-604h-133v453h-889z" />
<glyph unicode="&#xad;" horiz-adv-x="1232" d="M133 0v147h977v-147h-977z" />
<glyph unicode="&#xae;" horiz-adv-x="1822" d="M117 780q0 156 43.5 289t118.5 227t174.5 160t212 97.5t231.5 31.5q126 0 243.5 -32t219.5 -98t178 -160t120 -226.5t44 -288.5q0 -157 -43.5 -290t-119 -227.5t-177 -160.5t-218.5 -97.5t-243 -31.5q-119 0 -231.5 31.5t-213 98t-176 160t-119.5 227t-44 290.5zM229 782 q0 -148 45 -277.5t128.5 -227t212 -153.5t286.5 -56q132 0 244 36.5t192.5 101t137.5 153.5t84.5 195t27.5 224q0 147 -45 276t-129.5 227t-217.5 155t-298 57q-156 0 -284 -57t-211 -154.5t-128 -226t-45 -273.5zM598 301v977h258q444 0 444 -270q0 -107 -61 -181t-199 -92 q33 -26 65 -69.5t56.5 -86.5t71.5 -127t88 -151h-150l-124 223q-32 57 -48.5 85.5t-40 59t-45.5 48.5h-182v-416h-133zM731 844h125q148 0 216.5 32.5t68.5 122.5q0 94 -63 122t-230 28h-117v-305z" />
<glyph unicode="&#xaf;" horiz-adv-x="1576" d="M279 2611v293h1026v-293h-1026zM792 2249z" />
<glyph unicode="&#xb0;" horiz-adv-x="815" d="M127 1239q0 129 84.5 222t198.5 93q115 0 197.5 -93t82.5 -222q0 -130 -83 -224.5t-197 -94.5t-198.5 94.5t-84.5 224.5zM238 1239q0 -81 50.5 -136.5t121.5 -55.5t121.5 55.5t50.5 136.5t-51 136t-121 55q-69 0 -120.5 -55.5t-51.5 -135.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1232" d="M133 0v147h977v-147h-977zM133 641v147h418v406h131v-406h426v-147h-422v-401h-133v401h-420z" />
<glyph unicode="&#xb2;" horiz-adv-x="835" d="M143 750l21 -109h481l10 121h-340q163 170 217 236q152 186 152 321q0 117 -76 174t-186 57q-60 0 -129 -18.5t-121 -54.5l47 -117q40 30 97 46.5t100 16.5q60 0 94.5 -32t34.5 -88q0 -25 -10 -54.5t-33.5 -67t-46.5 -69.5t-65.5 -82.5t-72.5 -84t-86 -96.5z" />
<glyph unicode="&#xb3;" horiz-adv-x="755" d="M102 1477l48 -117q90 63 202 63q50 0 93.5 -31t43.5 -89q0 -67 -51.5 -98t-134.5 -31h-43v-117h47q86 0 138.5 -51t52.5 -119q0 -61 -47 -97t-103 -36q-120 0 -190 63l-45 -96q81 -90 237 -90q116 0 197.5 69t81.5 191q0 74 -45 132.5t-121 90.5q151 58 151 203 q0 112 -73 172.5t-187 60.5q-67 0 -138.5 -20t-113.5 -53z" />
<glyph unicode="&#xb4;" horiz-adv-x="638" d="M127 1249l186 389h254l-325 -389h-115zM348 1098z" />
<glyph unicode="&#xb6;" horiz-adv-x="1067" d="M57 1257q0 57 15.5 102.5t40.5 77t64 54.5t80 36t95 21t101.5 10.5t107.5 2.5h377l-10 -131h-76v-1588h-115v1588h-219v-1588h-125v1114q-63 1 -120 17.5t-107 50.5t-79.5 94t-29.5 139z" />
<glyph unicode="&#xb7;" horiz-adv-x="958" d="M209 1354q0 109 72 189.5t200 80.5q129 0 201 -80t72 -190t-72 -190.5t-201 -80.5q-86 0 -149.5 40t-93 100.5t-29.5 130.5z" />
<glyph unicode="&#xb8;" horiz-adv-x="595" d="M115 -403l8 92q98 -27 133 -27q100 0 100 78q0 80 -98 80h-5q-5 -1 -12.5 -1.5t-13.5 -0.5l-28 -2l26 200h86l-12 -112h6q75 0 125.5 -40.5t50.5 -119.5q0 -83 -59 -126.5t-154 -43.5q-51 0 -153 23zM299 0z" />
<glyph unicode="&#xb9;" horiz-adv-x="612" d="M106 1423l29 -129q87 44 133 74v-719h140v889h-123q-75 -60 -179 -115z" />
<glyph unicode="&#xba;" horiz-adv-x="1083" d="M96 483q0 -141 51.5 -254.5t155.5 -182.5t244 -69q104 0 189 41t139 111.5t83 161t29 192.5q0 106 -28 197.5t-81.5 161t-138 109.5t-190.5 40q-140 0 -244.5 -70t-156.5 -184t-52 -254zM248 479q0 77 18.5 145.5t54 124t94 88.5t132.5 33q77 0 134.5 -31t90.5 -86 t48.5 -122.5t15.5 -147.5q0 -77 -16.5 -144t-49.5 -121.5t-90 -86t-131 -31.5q-76 0 -135 31.5t-94.5 85.5t-53.5 120.5t-18 141.5zM543 969z" />
<glyph unicode="&#xbb;" horiz-adv-x="1005" d="M125 182l231 404l-227 395h137l262 -395l-266 -404h-137zM492 182l251 404l-241 395h157l236 -395l-242 -404h-161z" />
<glyph unicode="&#xbc;" horiz-adv-x="1607" d="M106 1423l29 -129q87 44 133 74v-719h140v889h-123q-75 -60 -179 -115zM129 0l1079 1495h133l-1062 -1495h-150zM924 240v100l379 559h118v-541h95l10 -118h-107v-199h-106v199h-389zM1067 358h246v250v109z" />
<glyph unicode="&#xbd;" horiz-adv-x="1589" d="M106 1380l29 -129q87 44 133 74v-719h140v889h-123q-75 -60 -179 -115zM111 0l1077 1495h135l-1065 -1495h-147zM946 109l21 -109h481l10 121h-340q163 170 217 236q152 186 152 321q0 117 -76 174t-186 57q-60 0 -129 -18.5t-121 -54.5l47 -117q40 30 97 46.5t100 16.5 q60 0 94.5 -32t34.5 -88q0 -25 -10 -54.5t-33.5 -67t-46.5 -69.5t-65.5 -82.5t-72.5 -84t-86 -96.5z" />
<glyph unicode="&#xbe;" horiz-adv-x="1628" d="M102 1477l48 -117q90 63 202 63q50 0 93.5 -31t43.5 -89q0 -67 -51.5 -98t-134.5 -31h-43v-117h47q86 0 138.5 -51t52.5 -119q0 -61 -47 -97t-103 -36q-120 0 -190 63l-45 -96q81 -90 237 -90q116 0 197.5 69t81.5 191q0 74 -45 132.5t-121 90.5q151 58 151 203 q0 112 -73 172.5t-187 60.5q-67 0 -138.5 -20t-113.5 -53zM260 0l1077 1495h136l-1063 -1495h-150zM946 213v119l342 555h148v-561h94l10 -113h-104v-213h-140v213h-350zM1087 326h209v352z" />
<glyph unicode="&#xbf;" horiz-adv-x="864" d="M72 311q0 77 22.5 150t62.5 142.5t84 135t98.5 157.5t94.5 181h86q0 -64 -29.5 -147t-71 -162.5t-83 -157.5t-71 -154t-29.5 -130q1 -95 61 -141t164 -46q137 0 258 80l45 -135q-120 -96 -330 -96q-163 0 -262.5 85t-99.5 238zM330 1391q0 54 35.5 93.5t97.5 39.5 t97.5 -39.5t35.5 -93.5q0 -53 -35.5 -92t-97.5 -39t-97.5 39t-35.5 92z" />
<glyph unicode="&#xc0;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM420 610h479l-227 713zM451 2030h249l185 -388h-113zM668 1489z" />
<glyph unicode="&#xc1;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM420 610h479l-227 713zM446 1640l187 390h254l-326 -390h-115zM668 1489z" />
<glyph unicode="&#xc2;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM375 1642l186 388h213l187 -388h-134l-161 273l-160 -273h-131zM420 610h479l-227 713zM668 1489z" />
<glyph unicode="&#xc3;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM354 1681q0 110 45 165t127 55q55 0 119.5 -23.5t112.5 -47.5t61 -24h2q19 1 30 17.5t13.5 33t3.5 44.5h109q0 -220 -148 -220q-47 0 -160 49.5t-151 49.5h-2q-24 0 -38.5 -28t-16.5 -71h-107zM420 610 h479l-227 713zM666 1489z" />
<glyph unicode="&#xc4;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM395 1645v213h154v-213h-154zM420 610h479l-227 713zM668 1489zM784 1645v213h156v-213h-156z" />
<glyph unicode="&#xc5;" d="M6 0l557 1495h213l527 -1495h-181l-164 473h-593l-179 -473h-180zM420 610h479l-227 713zM473 1833q0 -83 58 -133.5t139 -50.5q78 0 135 50.5t57 133.5t-57.5 140t-136.5 57q-78 0 -136.5 -55.5t-58.5 -141.5zM569 1833q0 45 30 80t69 35q41 0 68.5 -34t27.5 -81 q0 -46 -29 -79.5t-67 -33.5q-45 0 -72 31t-27 82zM668 1489z" />
<glyph unicode="&#xc6;" horiz-adv-x="1865" d="M0 0h209l217 426h551l31 -426h804l15 158h-662l-41 567h590v158h-610l-33 454h617l12 158h-899zM512 590l387 772l55 -772h-442zM956 1489z" />
<glyph unicode="&#xc7;" horiz-adv-x="1282" d="M98 745q0 166 47.5 308.5t136.5 247.5t225.5 165t305.5 60q272 0 438 -137l-63 -136q-67 53 -163 86t-206 33q-131 0 -234.5 -51t-167 -138.5t-96 -199t-32.5 -238.5q0 -98 18 -186t59 -167.5t102.5 -137t154 -91.5t206.5 -34q106 0 199 34.5t160 88.5l57 -146 q-144 -129 -430 -129q-171 0 -309 60t-226 165t-135 244t-47 299zM459 -403l8 92q98 -27 133 -27q100 0 100 78q0 80 -98 80h-5q-5 -1 -12.5 -1.5t-13.5 -0.5l-28 -2l26 200h86l-12 -112h6q75 0 125.5 -40.5t50.5 -119.5q0 -83 -59 -126.5t-154 -43.5q-51 0 -153 23zM643 0z " />
<glyph unicode="&#xc8;" horiz-adv-x="1138" d="M147 0v1495h881l-12 -154h-692v-495h663v-154h-663v-536h735l-17 -156h-895zM354 2030h250l184 -388h-112zM571 1489z" />
<glyph unicode="&#xc9;" horiz-adv-x="1138" d="M147 0v1495h881l-12 -154h-692v-495h663v-154h-663v-536h735l-17 -156h-895zM350 1640l187 390h254l-326 -390h-115zM571 1489z" />
<glyph unicode="&#xca;" horiz-adv-x="1138" d="M147 0v1495h881l-12 -154h-692v-495h663v-154h-663v-536h735l-17 -156h-895zM276 1642l187 388h213l186 -388h-133l-162 273l-159 -273h-132zM569 1489z" />
<glyph unicode="&#xcb;" horiz-adv-x="1138" d="M147 0v1495h881l-12 -154h-692v-495h663v-154h-663v-536h735l-17 -156h-895zM299 1645v213h154v-213h-154zM571 1489zM688 1645v213h156v-213h-156z" />
<glyph unicode="&#xcc;" horiz-adv-x="507" d="M39 2030h250l184 -388h-113zM164 0v1495h176v-1495h-176zM256 1489z" />
<glyph unicode="&#xcd;" horiz-adv-x="507" d="M35 1640l186 390h254l-325 -390h-115zM164 0v1495h176v-1495h-176zM256 1489z" />
<glyph unicode="&#xce;" horiz-adv-x="507" d="M-39 1642l186 388h213l187 -388h-133l-162 273l-160 -273h-131zM164 0v1495h176v-1495h-176zM254 1489z" />
<glyph unicode="&#xcf;" horiz-adv-x="507" d="M-16 1645v213h153v-213h-153zM164 0v1495h176v-1495h-176zM256 1489zM373 1645v213h155v-213h-155z" />
<glyph unicode="&#xd0;" horiz-adv-x="1521" d="M29 696v135h536v-135h-536zM147 0v1495h371q161 0 292 -23t245 -77.5t191 -140.5t121 -216.5t44 -300.5q0 -183 -57 -324.5t-162 -231.5t-249 -135.5t-322 -45.5h-474zM324 156h315q280 0 432 145.5t152 431.5q0 139 -32 244t-89.5 173.5t-144 111.5t-187.5 61t-229 18 h-217v-1185zM762 745z" />
<glyph unicode="&#xd1;" horiz-adv-x="1486" d="M147 0v1495h195l836 -1241v1241h163v-1495h-196l-832 1239v-1239h-166zM432 1681q0 110 45 165t127 55q55 0 119.5 -23.5t112.5 -47.5t61 -24h2q19 1 30 17.5t13.5 33t3.5 44.5h109q0 -220 -148 -220q-46 0 -159.5 49.5t-151.5 49.5h-2q-24 0 -38.5 -28t-16.5 -71h-107z M743 1489z" />
<glyph unicode="&#xd2;" horiz-adv-x="1660" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM614 2030h250l185 -388h-113zM831 1489z" />
<glyph unicode="&#xd3;" horiz-adv-x="1660" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM610 1640l187 390h254l-326 -390h-115zM831 1489z" />
<glyph unicode="&#xd4;" horiz-adv-x="1660" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM539 1642l186 388h213l186 -388h-133l-162 273l-159 -273h-131zM831 1489z" />
<glyph unicode="&#xd5;" horiz-adv-x="1660" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM520 1681q0 110 45 165t127 55q55 0 119.5 -23.5t112.5 -47.5t61 -24h2q19 1 30 17.5t13.5 33t3.5 44.5h109q0 -220 -148 -220q-47 0 -160 49.5t-151 49.5h-2q-24 0 -38.5 -28 t-16.5 -71h-107zM831 1489z" />
<glyph unicode="&#xd6;" horiz-adv-x="1660" d="M98 745q0 233 85.5 408.5t251.5 274t394 98.5t394 -98.5t251 -274t85 -408.5q0 -165 -47.5 -305t-137.5 -243.5t-229.5 -161.5t-315.5 -58q-141 0 -259.5 38t-205 106.5t-147 164t-90 211.5t-29.5 248zM289 745q0 -132 32 -242t96 -194.5t169 -132t243 -47.5t243 47.5 t168.5 132t95.5 194.5t32 242q0 288 -138 457.5t-401 169.5q-264 0 -402 -168.5t-138 -458.5zM559 1645v213h154v-213h-154zM831 1489zM948 1645v213h156v-213h-156z" />
<glyph unicode="&#xd7;" horiz-adv-x="1132" d="M145 256l328 324l-328 325l93 94l329 -325l330 325l92 -94l-327 -325l327 -324l-92 -96l-330 325l-329 -325z" />
<glyph unicode="&#xd8;" horiz-adv-x="1716" d="M121 778q0 373 193.5 590t537.5 217q132 0 248 -35l78 195l131 -45l-82 -203q172 -95 263 -279.5t91 -439.5q0 -176 -47 -322.5t-137 -254t-229.5 -167t-315.5 -59.5q-132 0 -234 29l-73 -184l-125 43l76 190q-183 92 -279 282t-96 443zM311 784q0 -189 64.5 -335 t189.5 -222l467 1155q-79 27 -180 27q-132 0 -236 -48.5t-170 -134t-100.5 -198t-34.5 -244.5zM688 172q70 -20 164 -20q133 0 237.5 48.5t169.5 134.5t98.5 200t33.5 249q0 176 -60 317.5t-176 221.5zM858 1489z" />
<glyph unicode="&#xd9;" horiz-adv-x="1384" d="M127 522v973h176v-967q0 -218 90.5 -310.5t294.5 -92.5q203 0 294 93t91 310v967h176v-973q0 -101 -16.5 -181t-56 -149.5t-102.5 -116t-160.5 -72.5t-225.5 -26t-225 26t-160 72.5t-103 116t-56.5 149.5t-16.5 181zM477 2030h250l184 -388h-112zM694 1489z" />
<glyph unicode="&#xda;" horiz-adv-x="1384" d="M127 522v973h176v-967q0 -218 90.5 -310.5t294.5 -92.5q203 0 294 93t91 310v967h176v-973q0 -101 -16.5 -181t-56 -149.5t-102.5 -116t-160.5 -72.5t-225.5 -26t-225 26t-160 72.5t-103 116t-56.5 149.5t-16.5 181zM473 1640l186 390h254l-325 -390h-115zM694 1489z" />
<glyph unicode="&#xdb;" horiz-adv-x="1384" d="M127 522v973h176v-967q0 -218 90.5 -310.5t294.5 -92.5q203 0 294 93t91 310v967h176v-973q0 -101 -16.5 -181t-56 -149.5t-102.5 -116t-160.5 -72.5t-225.5 -26t-225 26t-160 72.5t-103 116t-56.5 149.5t-16.5 181zM399 1642l187 388h213l186 -388h-133l-162 273 l-160 -273h-131zM692 1489z" />
<glyph unicode="&#xdc;" horiz-adv-x="1384" d="M127 522v973h176v-967q0 -218 90.5 -310.5t294.5 -92.5q203 0 294 93t91 310v967h176v-973q0 -101 -16.5 -181t-56 -149.5t-102.5 -116t-160.5 -72.5t-225.5 -26t-225 26t-160 72.5t-103 116t-56.5 149.5t-16.5 181zM422 1645v213h153v-213h-153zM694 1489zM811 1645v213 h156v-213h-156z" />
<glyph unicode="&#xdd;" horiz-adv-x="1241" d="M0 1495h186l424 -717l441 717h192l-557 -881v-614h-176v614zM401 1640l187 390h254l-326 -390h-115zM623 1489z" />
<glyph unicode="&#xde;" horiz-adv-x="1290" d="M147 0v1495h177v-278h323q281 0 421 -98.5t140 -327.5q0 -209 -120 -329t-369 -120l-395 6v-348h-177zM324 494h385q331 0 331 288q0 150 -85.5 217.5t-288.5 67.5h-342v-573z" />
<glyph unicode="&#xdf;" horiz-adv-x="1220" d="M119 0v1047q0 229 111.5 354t336.5 125q190 0 305 -92.5t115 -251.5q0 -35 -7.5 -66t-18.5 -54.5t-31 -47.5t-37.5 -40t-47.5 -36.5t-50.5 -32.5t-56.5 -33t-56 -34q38 -27 99.5 -64.5t109 -65t102 -69t89.5 -81t59 -94.5t24 -116q0 -93 -28.5 -161.5t-81 -108.5 t-119.5 -59t-150 -19h-344l17 147h311q97 0 152 52.5t55 142.5q0 49 -26 94.5t-73.5 84.5t-91.5 67t-105.5 63.5t-88.5 53.5q-82 58 -82 116q0 61 63 113q24 20 60.5 43.5t62 40.5t51 40.5t39 54t13.5 69.5q0 87 -67.5 138.5t-164.5 51.5q-280 0 -280 -315v-1057h-168z" />
<glyph unicode="&#xe0;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM311 1638h250l184 -387h-112zM528 1098z" />
<glyph unicode="&#xe1;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM307 1249l187 389h254l-326 -389h-115zM528 1098z" />
<glyph unicode="&#xe2;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM236 1251l186 387h213l186 -387h-133l-162 273l-159 -273h-131zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM528 1098z" />
<glyph unicode="&#xe3;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM217 1290q0 110 45 164.5t127 54.5q55 0 119.5 -23.5t112.5 -47t61 -23.5h2q19 1 30 17t13.5 32.5t3.5 44.5h109q0 -219 -148 -219q-46 0 -160 49.5t-151 49.5h-2q-24 0 -38.5 -28t-16.5 -71h-107zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5 t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM528 1098z" />
<glyph unicode="&#xe4;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM256 1253v213h154v-213h-154zM528 1098zM645 1253v213h156v-213h-156z" />
<glyph unicode="&#xe5;" horiz-adv-x="1026" d="M86 274q0 191 172 276q100 50 324 84q20 3 65 9l111 12v125q0 102 -52.5 152.5t-164.5 50.5q-89 0 -181 -20.5t-161 -53.5l-47 131q67 36 170.5 60t214.5 24q86 0 153 -15.5t121.5 -50.5t83.5 -98.5t29 -152.5v-807h-138l-24 121q-129 -146 -342 -146q-144 0 -239 76.5 t-95 222.5zM254 281q0 -88 49.5 -131.5t132.5 -43.5q81 0 175.5 45.5t146.5 116.5v271q-99 -15 -101 -15q-237 -31 -320 -80t-83 -163zM334 1442q0 -83 57.5 -134t138.5 -51q77 0 135 51t58 134t-58 139.5t-137 56.5q-78 0 -136 -55t-58 -141zM430 1442q0 45 30 79.5 t68 34.5q41 0 69 -34t28 -80q0 -45 -29.5 -79t-67.5 -34q-45 0 -71.5 31t-26.5 82zM528 1098z" />
<glyph unicode="&#xe6;" horiz-adv-x="1673" d="M80 301q0 55 16.5 99.5t43 75t71 53.5t88 37t108 23.5t117 14t127.5 8.5q10 1 32 2t32 2v164q0 102 -44 149.5t-147 47.5q-97 0 -192.5 -23.5t-163.5 -58.5l-37 137q65 37 174 64.5t215 27.5q124 0 209.5 -49t108.5 -143q54 95 147.5 143.5t206.5 48.5q98 0 172.5 -36.5 t117.5 -99.5t64 -139.5t21 -164.5q0 -52 -13 -80.5t-55 -46.5t-121 -22l-495 -25q13 -187 86 -289t225 -102q88 0 174.5 33t149.5 77l51 -120q-157 -134 -385 -134q-203 0 -328 138q-97 -59 -220 -98.5t-233 -39.5q-68 0 -124.5 17.5t-102 54.5t-71 101.5t-25.5 152.5z M248 291q0 -178 168 -178q32 0 67 5t81.5 18.5t70.5 21t82 27.5t69 24q-66 120 -75 291q-11 -1 -32.5 -2t-31.5 -2q-159 -12 -247 -38.5t-120 -65t-32 -101.5zM838 1098zM889 614l516 29v10q-2 171 -53.5 250.5t-161.5 79.5q-143 0 -218 -101.5t-83 -267.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="960" d="M78 549q0 -92 21.5 -177t66 -157t106.5 -125.5t148 -84t186 -30.5q85 0 165 26t132 75l-41 119q-116 -82 -248 -82q-163 0 -264.5 121t-101.5 311t101.5 315t252.5 125q142 0 258 -76l43 119q-46 45 -125.5 70.5t-173.5 25.5q-119 0 -219.5 -47t-166.5 -127 t-102.5 -183.5t-37.5 -217.5zM299 -403l8 92q98 -27 133 -27q101 0 101 78q0 80 -99 80h-5q-5 -1 -12 -1.5t-13 -0.5l-29 -2l27 200h86l-13 -112h6q75 0 126 -40.5t51 -119.5q0 -83 -59 -126.5t-154 -43.5q-52 0 -154 23zM483 0z" />
<glyph unicode="&#xe8;" horiz-adv-x="1087" d="M78 551q0 -265 135 -420.5t369 -155.5q254 0 405 131l-51 123q-162 -110 -348 -110q-148 0 -243 108.5t-95 290.5h751q0 9 1.5 38.5t1.5 37.5q0 243 -119.5 386.5t-323.5 143.5q-215 -6 -349 -166t-134 -407zM256 635q13 161 96.5 256.5t208.5 95.5q127 0 204 -91 t77 -261h-586zM330 1638h250l184 -387h-113zM547 1098z" />
<glyph unicode="&#xe9;" horiz-adv-x="1087" d="M78 551q0 -265 135 -420.5t369 -155.5q254 0 405 131l-51 123q-162 -110 -348 -110q-148 0 -243 108.5t-95 290.5h751q0 9 1.5 38.5t1.5 37.5q0 243 -119.5 386.5t-323.5 143.5q-215 -6 -349 -166t-134 -407zM256 635q13 161 96.5 256.5t208.5 95.5q127 0 204 -91 t77 -261h-586zM326 1249l186 389h254l-326 -389h-114zM547 1098z" />
<glyph unicode="&#xea;" horiz-adv-x="1087" d="M78 551q0 -265 135 -420.5t369 -155.5q254 0 405 131l-51 123q-162 -110 -348 -110q-148 0 -243 108.5t-95 290.5h751q0 9 1.5 38.5t1.5 37.5q0 243 -119.5 386.5t-323.5 143.5q-215 -6 -349 -166t-134 -407zM254 1251l186 387h213l187 -387h-133l-162 273l-160 -273 h-131zM256 635q13 161 96.5 256.5t208.5 95.5q127 0 204 -91t77 -261h-586zM547 1098z" />
<glyph unicode="&#xeb;" horiz-adv-x="1087" d="M78 551q0 -265 135 -420.5t369 -155.5q254 0 405 131l-51 123q-162 -110 -348 -110q-148 0 -243 108.5t-95 290.5h751q0 9 1.5 38.5t1.5 37.5q0 243 -119.5 386.5t-323.5 143.5q-215 -6 -349 -166t-134 -407zM256 635q13 161 96.5 256.5t208.5 95.5q127 0 204 -91 t77 -261h-586zM274 1253v213h154v-213h-154zM547 1098zM664 1253v213h155v-213h-155z" />
<glyph unicode="&#xec;" horiz-adv-x="428" d="M-2 1638h250l184 -387h-113zM135 0v1098h168v-1098h-168zM215 1098z" />
<glyph unicode="&#xed;" horiz-adv-x="428" d="M-6 1249l186 389h254l-325 -389h-115zM135 0v1098h168v-1098h-168zM215 1098z" />
<glyph unicode="&#xee;" horiz-adv-x="428" d="M-78 1251l187 387h213l186 -387h-133l-162 273l-160 -273h-131zM135 0v1098h168v-1098h-168zM215 1098z" />
<glyph unicode="&#xef;" horiz-adv-x="428" d="M-57 1253v213h153v-213h-153zM135 0v1098h168v-1098h-168zM215 1098zM332 1253v213h155v-213h-155z" />
<glyph unicode="&#xf0;" horiz-adv-x="1183" d="M78 485q0 140 63 252.5t170.5 174t237.5 61.5q153 0 285 -96q-86 165 -289 370l-252 -104l-64 114l224 86l-164 166h217l98 -98l252 100l62 -108l-222 -90q209 -241 310 -428q102 -188 102 -393q0 -111 -33 -204.5t-96 -163.5t-161.5 -109.5t-223.5 -39.5 q-160 0 -279.5 71t-178 185.5t-58.5 253.5zM258 485q0 -153 89.5 -261.5t250.5 -108.5q157 0 247.5 100.5t90.5 255.5q0 93 -38.5 174t-118 135t-185.5 54q-155 0 -245.5 -100.5t-90.5 -248.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="1114" d="M111 1098h145l14 -162q64 87 170.5 137.5t221.5 50.5q179 0 262.5 -116.5t83.5 -350.5v-657h-168v551q0 70 -1.5 114.5t-6 95t-13.5 80.5t-24.5 60t-38.5 45.5t-55.5 25t-75.5 9.5q-66 0 -127 -22t-103.5 -57t-72 -74.5t-39.5 -77.5v-750h-168v831zM246 1290 q0 110 45 164.5t127 54.5q55 0 119.5 -23.5t112.5 -47t61 -23.5h2q19 1 30 17t13.5 32.5t3.5 44.5h108q0 -219 -147 -219q-47 0 -160 49.5t-151 49.5h-2q-24 0 -39 -28t-17 -71h-106zM557 1098z" />
<glyph unicode="&#xf2;" horiz-adv-x="1181" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM375 1638h250l184 -387h-113zM590 1098z" />
<glyph unicode="&#xf3;" horiz-adv-x="1181" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM371 1249l186 389h254l-326 -389h-114zM590 1098z" />
<glyph unicode="&#xf4;" horiz-adv-x="1181" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM299 1251l186 387h213l187 -387h-133l-162 273l-160 -273h-131zM590 1098z" />
<glyph unicode="&#xf5;" horiz-adv-x="1181" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM281 1290q0 110 45 164.5t127 54.5q55 0 119.5 -23.5t112 -47t60.5 -23.5h3q19 1 30 17t13.5 32.5t3.5 44.5h108 q0 -219 -147 -219q-46 0 -160 49.5t-152 49.5h-2q-24 0 -38.5 -28t-16.5 -71h-106zM590 1098z" />
<glyph unicode="&#xf6;" horiz-adv-x="1177" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM250 545q0 -85 21 -161t62.5 -137.5t109.5 -97.5 t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM319 1253v213h154v-213h-154zM590 1098zM709 1253v213h155v-213h-155z" />
<glyph unicode="&#xf7;" horiz-adv-x="1210" d="M96 522v150h1002v-150h-1002zM492 23v227h190v-227h-190zM492 938v227h225v-227h-225z" />
<glyph unicode="&#xf8;" horiz-adv-x="1177" d="M78 547q0 118 35 222.5t100 183.5t164.5 125t220.5 46q123 0 220 -45.5t158.5 -124.5t93.5 -182t32 -223q0 -115 -33.5 -218t-96 -182.5t-160.5 -126.5t-218 -47q-121 0 -220 45t-163 123t-98.5 181.5t-34.5 222.5zM215 -238l680 1604l76 -31l-684 -1609zM250 545 q0 -85 21 -161t62.5 -137.5t109.5 -97.5t155 -36q86 0 151.5 36t103.5 98t56.5 137.5t18.5 162.5q0 91 -18 167t-55.5 138.5t-104 97.5t-156.5 35q-85 0 -152.5 -37t-108.5 -99.5t-62 -140t-21 -163.5zM596 1098z" />
<glyph unicode="&#xf9;" horiz-adv-x="1097" d="M109 367v731h167v-733q0 -72 20 -122.5t58.5 -78t86 -39.5t110.5 -12q62 0 108.5 12.5t84.5 40t57.5 78t19.5 121.5v733h168v-731q0 -105 -35.5 -182.5t-97.5 -122.5t-138.5 -66t-166.5 -21q-72 0 -135 13t-120 42.5t-98 74t-65 111.5t-24 151zM334 1638h250l184 -387 h-113zM989 10z" />
<glyph unicode="&#xfa;" horiz-adv-x="1097" d="M109 367v731h167v-733q0 -72 20 -122.5t58.5 -78t86 -39.5t110.5 -12q62 0 108.5 12.5t84.5 40t57.5 78t19.5 121.5v733h168v-731q0 -105 -35.5 -182.5t-97.5 -122.5t-138.5 -66t-166.5 -21q-72 0 -135 13t-120 42.5t-98 74t-65 111.5t-24 151zM330 1249l186 389h254 l-326 -389h-114zM989 10z" />
<glyph unicode="&#xfb;" horiz-adv-x="1097" d="M109 367v731h167v-733q0 -72 20 -122.5t58.5 -78t86 -39.5t110.5 -12q62 0 108.5 12.5t84.5 40t57.5 78t19.5 121.5v733h168v-731q0 -105 -35.5 -182.5t-97.5 -122.5t-138.5 -66t-166.5 -21q-72 0 -135 13t-120 42.5t-98 74t-65 111.5t-24 151zM258 1251l186 387h213 l187 -387h-133l-162 273l-160 -273h-131zM989 10z" />
<glyph unicode="&#xfc;" horiz-adv-x="1097" d="M109 367v731h167v-733q0 -72 20 -122.5t58.5 -78t86 -39.5t110.5 -12q62 0 108.5 12.5t84.5 40t57.5 78t19.5 121.5v733h168v-731q0 -105 -35.5 -182.5t-97.5 -122.5t-138.5 -66t-166.5 -21q-72 0 -135 13t-120 42.5t-98 74t-65 111.5t-24 151zM279 1253v213h153v-213 h-153zM668 1253v213h155v-213h-155zM989 10z" />
<glyph unicode="&#xfd;" horiz-adv-x="989" d="M4 1098l426 -1075q-31 -92 -51.5 -145.5t-47 -100.5t-48.5 -68t-59.5 -36.5t-76 -19t-102.5 -3.5h-29l21 -152h51q76 0 138.5 14.5t111 45t85.5 67.5t68.5 92.5t54.5 108.5t48 127l399 1145h-178q-203 -630 -289 -891l-346 891h-176zM276 1249l187 389h254l-326 -389 h-115zM510 1098z" />
<glyph unicode="&#xfe;" horiz-adv-x="1204" d="M125 -459l168 23v598q112 -187 350 -187q111 0 200 49.5t144 133t84 186.5t29 215q0 159 -56 287t-161 202.5t-240 75.5q-221 0 -350 -190v575l-168 -14v-233v-1721zM291 551q0 118 37 214.5t116 158t187 61.5q66 0 118.5 -27t84.5 -70t53.5 -101t30 -116t8.5 -120 q0 -61 -8.5 -119t-30.5 -117t-55 -103t-86.5 -71.5t-120.5 -27.5q-87 0 -153 35.5t-104.5 97.5t-57.5 138.5t-19 166.5z" />
<glyph unicode="&#xff;" horiz-adv-x="989" d="M4 1098l426 -1075q-31 -92 -51.5 -145.5t-47 -100.5t-48.5 -68t-59.5 -36.5t-76 -19t-102.5 -3.5h-29l21 -152h51q76 0 138.5 14.5t111 45t85.5 67.5t68.5 92.5t54.5 108.5t48 127l399 1145h-178q-203 -630 -289 -891l-346 891h-176zM225 1253v213h154v-213h-154z M498 1098zM614 1253v213h156v-213h-156z" />
<glyph unicode="&#x152;" horiz-adv-x="1978" d="M100 770q4 161 58 301t145.5 239.5t220.5 156.5t277 57q107 0 198 -30t150 -81v82h725l-16 -154h-533v-495h496v-154h-496v-536h573l-16 -156h-733v82q-34 -35 -137.5 -70t-188.5 -35q-175 0 -313 57.5t-227.5 162.5t-136 250.5t-46.5 322.5zM291 772q0 -109 17.5 -202.5 t57.5 -175.5t100.5 -139.5t151.5 -91t205 -34.5q86 0 182.5 31.5t143.5 60.5v1039q-139 112 -334 112q-238 0 -378 -166.5t-146 -433.5zM989 1489z" />
<glyph unicode="&#x153;" horiz-adv-x="1914" d="M82 547q0 -119 33 -222.5t95 -181.5t159.5 -123t218.5 -45q141 0 244.5 62.5t166.5 173.5q64 -114 172.5 -175t253.5 -61q243 0 394 131l-54 123q-74 -50 -152 -80t-183 -30q-148 0 -242 108t-94 291h739q0 9 1 38.5t1 37.5q0 246 -110.5 388t-311.5 142 q-128 -3 -236.5 -66t-170.5 -169q-61 110 -165.5 172.5t-250.5 62.5q-121 0 -219 -46t-160 -125.5t-95.5 -183t-33.5 -222.5zM256 545q0 69 11.5 131.5t37.5 119.5t64 98.5t94 66t125 24.5q90 0 156.5 -35t104 -97.5t55.5 -138.5t18 -167q0 -87 -19 -162.5t-57.5 -137.5 t-104 -98t-151.5 -36q-87 0 -153 36t-104.5 98t-57.5 137t-19 161zM958 1098zM1100 635q13 161 96.5 256.5t208.5 95.5t195.5 -90t70.5 -262h-571z" />
<glyph unicode="&#x178;" horiz-adv-x="1241" d="M0 1495h186l424 -717l441 717h192l-557 -881v-614h-176v614zM350 1645v213h154v-213h-154zM621 1489zM739 1645v213h156v-213h-156z" />
<glyph unicode="&#x2c6;" horiz-adv-x="798" d="M109 1251l186 387h213l186 -387h-133l-162 273l-159 -273h-131zM401 1098z" />
<glyph unicode="&#x2dc;" horiz-adv-x="884" d="M115 1290q0 110 45 164.5t127 54.5q55 0 119.5 -23.5t112.5 -47t61 -23.5h2q19 1 30 17t13.5 32.5t3.5 44.5h108q0 -219 -147 -219q-46 0 -160 49.5t-151 49.5h-3q-24 0 -38.5 -28t-16.5 -71h-106zM426 1098z" />
<glyph unicode="&#x2000;" horiz-adv-x="1452" />
<glyph unicode="&#x2001;" horiz-adv-x="2904" />
<glyph unicode="&#x2002;" horiz-adv-x="1452" />
<glyph unicode="&#x2003;" horiz-adv-x="2904" />
<glyph unicode="&#x2004;" horiz-adv-x="968" />
<glyph unicode="&#x2005;" horiz-adv-x="726" />
<glyph unicode="&#x2006;" horiz-adv-x="484" />
<glyph unicode="&#x2007;" horiz-adv-x="484" />
<glyph unicode="&#x2008;" horiz-adv-x="363" />
<glyph unicode="&#x2009;" horiz-adv-x="580" />
<glyph unicode="&#x200a;" horiz-adv-x="161" />
<glyph unicode="&#x2010;" horiz-adv-x="684" d="M88 520v144h510v-144h-510z" />
<glyph unicode="&#x2011;" horiz-adv-x="684" d="M88 520v144h510v-144h-510z" />
<glyph unicode="&#x2012;" horiz-adv-x="684" d="M88 520v144h510v-144h-510z" />
<glyph unicode="&#x2013;" horiz-adv-x="1316" d="M139 526v150h1047v-150h-1047z" />
<glyph unicode="&#x2014;" horiz-adv-x="2426" d="M139 526v150h2157v-150h-2157z" />
<glyph unicode="&#x2018;" horiz-adv-x="509" d="M129 1102l135 473h119l-92 -473h-162z" />
<glyph unicode="&#x2019;" horiz-adv-x="503" d="M133 1102l92 473h158l-133 -473h-117z" />
<glyph unicode="&#x201a;" horiz-adv-x="503" d="M127 -256l90 471h162l-133 -471h-119z" />
<glyph unicode="&#x201c;" horiz-adv-x="817" d="M129 1102l133 473h121l-94 -473h-160zM438 1102l135 473h117l-90 -473h-162z" />
<glyph unicode="&#x201d;" horiz-adv-x="794" d="M133 1102l92 473h160l-135 -473h-117zM420 1102l92 473h162l-137 -473h-117z" />
<glyph unicode="&#x201e;" horiz-adv-x="817" d="M127 -256l88 471h162l-133 -471h-117zM440 -256l92 471h162l-135 -471h-119z" />
<glyph unicode="&#x2022;" horiz-adv-x="866" d="M137 748q0 135 88.5 224t210.5 89q123 0 209 -91t86 -225q0 -135 -85.5 -220t-209.5 -85q-126 0 -212.5 87.5t-86.5 220.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1480" d="M127 121q0 -54 35.5 -93.5t97.5 -39.5t97.5 39.5t35.5 93.5q0 53 -35.5 92t-97.5 39t-97.5 -39t-35.5 -92zM621 121q0 -54 35.5 -93.5t97.5 -39.5t97.5 39.5t35.5 93.5q0 53 -35.5 92t-97.5 39t-97.5 -39t-35.5 -92zM1114 121q0 -54 35.5 -93.5t97.5 -39.5t97.5 39.5 t35.5 93.5q0 53 -35.5 92t-97.5 39t-97.5 -39t-35.5 -92z" />
<glyph unicode="&#x202f;" horiz-adv-x="580" />
<glyph unicode="&#x2039;" horiz-adv-x="618" d="M121 584l239 397h142l-234 -397l228 -402h-140z" />
<glyph unicode="&#x203a;" horiz-adv-x="616" d="M125 182l229 404l-225 395h139l238 -395l-242 -404h-139z" />
<glyph unicode="&#x205f;" horiz-adv-x="726" />
<glyph unicode="&#x20ac;" horiz-adv-x="1193" d="M84 580l16 102h93q0 8 -1.5 24.5t-1.5 24.5q0 23 3.5 65.5t3.5 49.5h-113l18 110h111q19 127 63.5 229.5t113 179t166.5 118t218 41.5q185 0 293 -94l-2 -181q-109 119 -268 119q-164 0 -263 -110t-131 -302h558l-17 -110h-559q-2 -21 -2.5 -62.5t-0.5 -71.5t-1 -30h549 l-10 -102h-523q11 -92 39 -169.5t73.5 -140.5t114 -99t154.5 -36q151 0 289 109l-2 -174q-130 -93 -305 -93q-101 0 -187 35t-146.5 92.5t-107 137t-74 163t-40.5 175.5h-121z" />
<glyph unicode="&#x2122;" horiz-adv-x="1810" d="M90 1395v100h637v-100h-264v-787h-115v787h-258zM850 608v887h156l268 -672l280 672h150v-887h-115v742l-278 -670h-86l-264 670v-742h-111z" />
<glyph unicode="&#x25fc;" horiz-adv-x="1095" d="M0 0v1096h1096v-1096h-1096z" />
<glyph unicode="&#xfb01;" horiz-adv-x="1087" d="M20 981v117h160q0 134 17 217t61 133.5t109.5 69t171.5 18.5h73l21 -127h-94q-39 0 -67.5 -5.5t-49.5 -14.5t-34.5 -29.5t-21.5 -40.5t-12 -58t-5 -71.5t-1 -91.5h608v-1098h-168v981h-440v-981h-168v981h-160zM788 1298v197h168v-197h-168z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1236" d="M20 981v117h160q0 120 24 201.5t73.5 127.5t115 65t158.5 19q91 0 426 -20v-1040q0 -90 1.5 -128t8.5 -87t24 -66t46.5 -30t77.5 -13q20 0 71 4l13 -131q-115 -12 -125 -12q-51 0 -90 5.5t-69 21.5t-50.5 34t-35 52.5t-22.5 66.5t-12 88t-5 104t-1 127v889q-145 8 -205 8 q-14 0 -24.5 -0.5t-15.5 -1t-7 -0.5q-119 0 -164 -61t-45 -223h250v-117h-250v-981h-168v981h-160z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1583" d="M20 981v117h160q0 134 17 217t61 133.5t109.5 69t171.5 18.5h73l21 -127h-94q-39 0 -67.5 -5.5t-49.5 -14.5t-34.5 -29.5t-21.5 -40.5t-12 -58t-5 -71.5t-1 -91.5h389q0 110 9 181.5t30 124t60.5 80t95 40t139.5 12.5h78l6 -127h-84q-46 0 -76.5 -7.5t-48.5 -21 t-27 -41.5t-11.5 -57.5t-2.5 -81.5v-102h547v-1098h-168v981h-379v-981h-168v981h-389v-981h-168v981h-160zM1284 1298v197h168v-197h-168z" />
<hkern u1="F" u2="&#x2e;" k="139" />
<hkern u1="F" u2="&#x2c;" k="180" />
<hkern u1="L" u2="&#x201d;" k="201" />
<hkern u1="L" u2="&#x2019;" k="150" />
<hkern u1="b" u2="b" k="18" />
<hkern u1="c" u2="c" k="12" />
<hkern u1="d" u2="d" k="16" />
<hkern u1="e" u2="o" k="12" />
<hkern u1="f" u2="f" k="49" />
<hkern u1="f" u2="&#x2c;" k="59" />
<hkern u1="g" u2="g" k="14" />
<hkern u1="k" u2="o" k="20" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,81 @@
/**
* Main JS file for Casper behaviours
*/
/* globals jQuery, document */
(function ($, undefined) {
"use strict";
var $document = $(document);
$document.ready(function () {
var $postContent = $(".post-content");
$postContent.fitVids();
$(".scroll-down").arctic_scroll();
$(".menu-button, .nav-cover, .nav-close").on("click", function(e){
e.preventDefault();
$("body").toggleClass("nav-opened nav-closed");
});
});
// Arctic Scroll by Paul Adam Davis
// https://github.com/PaulAdamDavis/Arctic-Scroll
$.fn.arctic_scroll = function (options) {
var defaults = {
elem: $(this),
speed: 500
},
allOptions = $.extend(defaults, options);
allOptions.elem.click(function (event) {
event.preventDefault();
var $this = $(this),
$htmlBody = $('html, body'),
offset = ($this.attr('data-offset')) ? $this.attr('data-offset') : false,
position = ($this.attr('data-position')) ? $this.attr('data-position') : false,
toMove;
if (offset) {
toMove = parseInt(offset);
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top + toMove) }, allOptions.speed);
} else if (position) {
toMove = parseInt(position);
$htmlBody.stop(true, false).animate({scrollTop: toMove }, allOptions.speed);
} else {
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top) }, allOptions.speed);
}
});
};
})(jQuery);
$('.post-template .post img').each(
function(index, element){
element.onclick = function(e){
console.log('click on img');
var p = document.createElement('div');
var img = document.createElement('div');
p.onclick = function(e) {
console.log('close displayPicture');
var target = e.target.className === 'displayPicture' ? e.target : e.target.parentNode;
target.parentNode.removeChild(target);
console.log('add overflow');
document.documentElement.style.overflow = 'auto';
document.body.scroll = "yes";
}
p.classList.add("displayPicture");
img.style.backgroundImage = 'url(' + e.target.src + ')';
p.appendChild(img);
document.body.appendChild(p);
console.log('remove overflow');
document.documentElement.style.overflow = 'hidden';
document.body.scroll = "no";
};
}
);

View File

@ -0,0 +1,67 @@
/*global jQuery */
/*jshint browser:true */
/*!
* FitVids 1.1
*
* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
*
*/
(function( $ ){
"use strict";
$.fn.fitVids = function( options ) {
var settings = {
customSelector: null
};
if(!document.getElementById('fit-vids-style')) {
// appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
var head = document.head || document.getElementsByTagName('head')[0];
var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
var div = document.createElement('div');
div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
head.appendChild(div.childNodes[1]);
}
if ( options ) {
$.extend( settings, options );
}
return this.each(function(){
var selectors = [
"iframe[src*='player.vimeo.com']",
"iframe[src*='youtube.com']",
"iframe[src*='youtube-nocookie.com']",
"iframe[src*='kickstarter.com'][src*='video.html']",
"object",
"embed"
];
if (settings.customSelector) {
selectors.push(settings.customSelector);
}
var $allVideos = $(this).find(selectors.join(','));
$allVideos = $allVideos.not("object object"); // SwfObj conflict patch
$allVideos.each(function(){
var $this = $(this);
if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
aspectRatio = height / width;
if(!$this.attr('id')){
var videoID = 'fitvid' + Math.floor(Math.random()*999999);
$this.attr('id', videoID);
}
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
$this.removeAttr('height').removeAttr('width');
});
});
};
// Works with either jQuery or Zepto
})( window.jQuery || window.Zepto );

View File

@ -0,0 +1,56 @@
var ripplyScott = (function() {
var circle = document.getElementById('js-ripple'),
ripple = document.querySelectorAll('.js-ripple');
function rippleAnimation(event, timing) {
var tl = new TimelineMax();
x = event.offsetX,
y = event.offsetY,
w = event.target.offsetWidth,
h = event.target.offsetHeight,
offsetX = Math.abs( (w / 2) - x ),
offsetY = Math.abs( (h / 2) - y ),
deltaX = (w / 2) + offsetX,
deltaY = (h / 2) + offsetY,
scale_ratio = Math.sqrt(Math.pow(deltaX, 2) + Math.pow(deltaY, 2));
// console.log('x is:' + x);
// console.log('y is:' + y);
// console.log('offsetX is:' + offsetX);
// console.log('offsetY is:' + offsetY);
//console.log('deltaX is:' + deltaX);
//console.log('deltaY is:' + deltaY);
//console.log('width is:' + w);
//console.log('height is:' + h);
//console.log('scale ratio is:' + scale_ratio);
tl.fromTo(ripple, timing, {
x: x,
y: y,
transformOrigin: '50% 50%',
scale: 0,
opacity: 1,
ease: Linear.easeIn
},{
scale: scale_ratio,
opacity: 0
});
return tl;
}
return {
init: function(target, timing) {
var buttons = document.getElementsByClassName(target);
for (var i = 0; i < buttons.length; i++) {
button = buttons[i];
// console.log(button);
button.addEventListener('mouseover', function(event) {
rippleAnimation.call(this, event, timing);
});
}
}
};
})();
ripplyScott.init('js-ripple-btn', 0.75);

41
themes/zebra/author.hbs Normal file
View File

@ -0,0 +1,41 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
{{! Everything inside the #author tags pulls data from the author }}
{{#author}}
<header class="main-header author-head {{#if cover}}" style="background-image: url({{cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<section class="author-profile inner">
{{#if image}}
<figure class="author-image">
<div class="img" style="background-image: url({{image}})"><span class="hidden">{{name}}'s Picture</span></div>
</figure>
{{/if}}
<h1 class="author-title">{{name}}</h1>
{{#if bio}}
<h2 class="author-bio">{{bio}}</h2>
{{/if}}
<div class="author-meta">
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
<span class="author-stats"><i class="icon-stats"></i> {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}</span>
</div>
</section>
{{/author}}
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>

69
themes/zebra/default.hbs Normal file
View File

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/button.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}} nav-closed">
{{navigation}}
<div class="site-wrapper">
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="site-footer clearfix">
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> &copy; {{date format="YYYY"}}</section>
<section class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a></section>
</footer>
</div>
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
{{! The main JavaScript file for Casper }}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenMax.min.js"></script>
<script type="text/javascript" src="{{asset "js/ripple-config.js"}}"></script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.fafaru.com/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 3]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//stats.fafaru.com/piwik.php?idsite=3" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>

30
themes/zebra/index.hbs Normal file
View File

@ -0,0 +1,30 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{@blog.title}}</h1>
<h2 class="page-description">{{@blog.description}}</h2>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content" data-offset="-45"><span class="hidden">Scroll Down</span></a>
</header>
<!--iframe class="map" width="100%" height="400px" frameBorder="0"
src="https://framacarte.org/fr/map/suivre-zerbra_2222?scaleControl=true&miniMap=false&scrollWheelZoom=false&zoomControl=true&allowEdit=false&moreControl=true&datalayersControl=false&onLoadPanel=none&captionBar=false"></iframe-->
{{! The main content area on the homepage }}
<main id="content" class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>

View File

@ -0,0 +1,5 @@
{
"name": "Zebra",
"version": "0.1.0"
}

31
themes/zebra/page.hbs Normal file
View File

@ -0,0 +1,31 @@
{{!< default}}
{{! This is a page template. A page outputs content just like any other post, and has all the same
attributes by default, but you can also customise it to behave differently if you prefer. }}
{{! Everything inside the #post tags pulls data from the page }}
{{#post}}
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<main class="content" role="main">
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
<section class="post-content">
{{content}}
</section>
</article>
</main>
{{/post}}

View File

@ -0,0 +1,56 @@
{{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination">
{{pagination}}
</div>
<!-- SVG Sprite -->
<div style="height: 0; width: 0; position: absolute; visibility: hidden;" aria-hidden="true">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="false">
<symbol id="ripply-scott" viewBox="0 0 100 100">
<g>
<polygon points="5.6,77.4 0,29 39.1,0 83.8,19.3 89.4,67.7 50.3,96.7"/>
<polygon fill="rgba(255,255,255,0.35)" transform="scale(0.5), translate(50, 50)" points="5.6,77.4 0,29 39.1,0 83.8,19.3 89.4,67.7 50.3,96.7"/>
<polygon fill="rgba(255,255,255,0.25)" transform="scale(0.25), translate(145, 145)" points="5.6,77.4 0,29 39.1,0 83.8,19.3 89.4,67.7 50.3,96.7"/>
</g>
</symbol>
</svg>
</div>
<!-- /end sprite -->
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
{{#if image}}<a href="{{url}}"><img src="{{image}}" alt=""/></a>{{/if}}
</header>
<div class="post-content">
<section class="author">
{{#author}}
<a href="{{url}}">
{{#if image}}<img class="author-thumb" src="{{image}}" alt="{{name}}" nopin="nopin" />{{/if}}
</a>
{{/author}}
</section>
<section class="post-excerpt">
<p>{{excerpt words="70"}}...</p>
<div style="text-align: center">
<a class="read-more button styl-material read js-ripple-btn" id="js-ripple-btn-{{id}}" href="{{url}}">
Viens lire la suite
<svg class="ripple-obj" id="js-ripple">
<use width="4" height="4" xlink:href="#ripply-scott" class="js-ripple"></use>
</svg>
</a>
</div>
</section>
<footer class="post-meta">
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</div>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{ pagination}}

View File

@ -0,0 +1,13 @@
<div class="nav">
<h3 class="nav-title">Menu</h3>
<a href="#" class="nav-close">
<span class="hidden">Close</span>
</a>
<ul>
{{#foreach navigation}}
<li class="nav-{{slug}}{{#if current}} nav-current{{/if}}" role="presentation"><a href="{{url absolute="true"}}">{{label}}</a></li>
{{/foreach}}
</ul>
<a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a>
</div>
<span class="nav-cover"></span>

178
themes/zebra/post.hbs Normal file
View File

@ -0,0 +1,178 @@
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
</header>
<main class="content" role="main">
<article class="{{post_class}}">
<section class="post-content">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
{{!--
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
</section>
--}}
</header>
{{content}}
</section>
<footer class="post-footer">
{{! Everything inside the #author tags pulls data from the author }}
{{#author}}
{{#if image}}
<figure class="author-image">
<a class="img" href="{{url}}" style="background-image: url({{image}})"><span class="hidden">{{name}}'s Picture</span></a>
</figure>
{{/if}}
<section class="author">
<h4><a href="{{url}}">{{name}}</a></h4>
{{#if bio}}
<p>{{bio}}</p>
{{else}}
<p>Read <a href="{{url}}">more posts</a> by this author.</p>
{{/if}}
<div class="author-meta">
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
</div>
</section>
{{/author}}
<section class="share">
<h4>Share this post</h4>
<a class="icon-twitter" href="https://twitter.com/intent/tweet?text={{encode title}}&amp;url={{url absolute="true"}}"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url={{url absolute="true"}}"
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a>
</section>
<section class="newsletter">
<!-- Begin MailChimp Signup Form -->
<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="//life.us12.list-manage.com/subscribe/post?u=acb941a1de3e3c280a2edfeb8&amp;id=7bd8c681aa" method="post" id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h2>Tu trouves ça chouette ? inscrit toi à notre newsletter.</h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="mc-field-group">
<label for="mce-FNAME">Ton prénom </label>
<input type="text" value="" name="FNAME" class="" id="mce-FNAME">
</div>
<div class="mc-field-group">
<label for="mce-EMAIL">Ton adresse mail <span class="asterisk">*</span>
</label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_acb941a1de3e3c280a2edfeb8_7bd8c681aa" tabindex="-1"
value=""></div>
<div class="clear"><input type="submit" value="A bientôt !!!" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</div>
</form>
</div>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($)
{window.fnames = new Array(); window.ftypes = new Array();fnames[1]='FNAME';ftypes[1]='text';fnames[0]='EMAIL';ftypes[0]='email'; /*
* Translated default messages for the $ validation plugin.
* Locale: FR
*/
$.extend($.validator.messages, {
required: "Ce champ est requis.",
remote: "Veuillez remplir ce champ pour continuer.",
email: "Veuillez entrer une adresse email valide.",
url: "Veuillez entrer une URL valide.",
date: "Veuillez entrer une date valide.",
dateISO: "Veuillez entrer une date valide (ISO).",
number: "Veuillez entrer un nombre valide.",
digits: "Veuillez entrer (seulement) une valeur numérique.",
creditcard: "Veuillez entrer un numéro de carte de crédit valide.",
equalTo: "Veuillez entrer une nouvelle fois la même valeur.",
accept: "Veuillez entrer une valeur avec une extension valide.",
maxlength: $.validator.format("Veuillez ne pas entrer plus de {0} caractères."),
minlength: $.validator.format("Veuillez entrer au moins {0} caractères."),
rangelength: $.validator.format("Veuillez entrer entre {0} et {1} caractères."),
range: $.validator.format("Veuillez entrer une valeur entre {0} et {1}."),
max: $.validator.format("Veuillez entrer une valeur inférieure ou égale à {0}."),
min: $.validator.format("Veuillez entrer une valeur supérieure ou égale à {0}.")
});}(jQuery));var $mcj = jQuery.noConflict(true);</script>
<!--End mc_embed_signup-->
</section>
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = '{{url absolute="true"}}';
this.page.identifier = {{id}};
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//zebra-life.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
</footer>
</article>
</main>
<aside class="read-next">
{{#next_post}}
<a class="read-next-story {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}" href="{{url}}">
<section class="post">
<h2>{{title}}</h2>
<p>{{excerpt words="19"}}&hellip;</p>
</section>
</a>
{{/next_post}}
{{#prev_post}}
<a class="read-next-story prev {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}" href="{{url}}">
<section class="post">
<h2>{{title}}</h2>
<p>{{excerpt words="19"}}&hellip;</p>
</section>
</a>
{{/prev_post}}
</aside>
{{/post}}

32
themes/zebra/tag.hbs Normal file
View File

@ -0,0 +1,32 @@
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! If we have a tag cover, display that - else blog cover - else nothing }}
<header class="main-header tag-head {{#if tag.image}}" style="background-image: url({{tag.image}}){{else}}{{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{tag.name}}</h1>
<h2 class="page-description">
{{#if tag.description}}
{{tag.description}}
{{else}}
A {{pagination.total}}-post collection
{{/if}}
</h2>
</div>
</div>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>