diff options
275 files changed, 12997 insertions, 88 deletions
diff --git a/COPYING b/COPYING deleted file mode 100644 index ab8ffe3..0000000 --- a/COPYING +++ /dev/null @@ -1,6 +0,0 @@ -# Xerl (c) 2005-2011, 2013 Dipl.-Inform. (FH) Paul C. Buetow -# -# E-Mail: xerl@dev.buetow.org WWW: http://xerl.buetow.org -# -# This is free software, you may use it and distribute it under the same -# terms as Perl itself. @@ -1,8 +1,18 @@ -all: perltidy -perltidy: - find . -name \*.fpl | xargs perltidy -i=2 -b - find . -name \*.pl | xargs perltidy -i=2 -b - find . -name \*.pm | xargs perltidy -i=2 -b - find . -name \*.bak | xargs rm -f -todo: - grep -R TODO . | grep -E -v '(\.git|Makefile)' +all: quick push +xml: check format push +check: + @echo Checking for valid XML + find . -name \*.xml -type f | while read xml; do \ + xmllint "$$xml" >/dev/null; \ + done +format: + @echo Re-Formatting XML files + find . -name \*.xml -type f | while read xml; do \ + xmllint --format "$$xml" >"$$xml.tmp" && \ + mv "$$xml.tmp" "$$xml"; \ + done + git commit -a -m 'Reformatted XML' || exit 0 +quick: + git commit -a -m 'Quick commit' || exit 0 +push: + git push origin hosts @@ -1,74 +0,0 @@ -STYLEGUIDE: - -Always do: - -Pragmatic modules ALWAYS to use in ALL packages: - -use strict; -use warnings; -use v5.14; - -Only for packages for including package UNIVERSAL definitions - -use Xerl::Page::Base; - -Object oriented coding style - -Always use method prototypes if possible - -sub foo($;$) { .... } - -Explicit object typing if possible - -my Class::Name::Here $foo = Class::Name::Here->new(); - -If no real ret val, set undef; explicitly - -sub foo() { - # Do some stuff -... - # Set explicit undef ret value - return undef; -} - -Private subs use _ as its prefix and are called only from the current package. - -package Xerl::Foo::Bla; -. -. - -sub _iamprivate($) { - my Xerl::Foo:Bla $self = $_[0]; - . - . -} - -sub iampublic($) { - my Xerl::Foo:Bla $self = $_[0]; - $self->_iamprivate(); - return undef; -} - -Static subs (not OOP) are in CAPITAL letters. - -sub IAMSTATIC($) { - print shift; - return 'Hello World'; -} - -sub iamdynamic($) { - my Xerl::Foo:Bla $self = $_[0]; - return Xerl::Foo::Bla::IAMSTATIC( $self->get_somevalue() ); -} - -Static private subs start with _ and are written in CAPITAL letters - -sub _IAMSTATICPRIVATE() { - . - . -} - -Use Pidy to automaically restyle the code! (make perltidy) - -Mark things which are still to do with TODO: at any place in the source -tree. (Can be searched for using 'make todo'). diff --git a/README.md b/README.md new file mode 100644 index 0000000..24bd5ca --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +xerl Host Templates +=================== + +Those are the host templates to be used with Xerl itself. diff --git a/awksite.buetow.org/OBSOLETEPROJECT b/awksite.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..6133143 --- /dev/null +++ b/awksite.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +Awksite is a small but usefull CGI application for generating dynamic HTML sites. It runs on all systems having GNU AWK (most *NIX boxes) installed. diff --git a/Xerl/.htaccess b/awksite.buetow.org/SITEMAP index e69de29..e69de29 100644 --- a/Xerl/.htaccess +++ b/awksite.buetow.org/SITEMAP diff --git a/awksite.buetow.org/content/98.contact.xml b/awksite.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/awksite.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/awksite.buetow.org/content/Download.xml b/awksite.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/awksite.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/awksite.buetow.org/content/home.xml b/awksite.buetow.org/content/home.xml new file mode 100644 index 0000000..d21527c --- /dev/null +++ b/awksite.buetow.org/content/home.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Awksite</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of the AWK site script has been stalled. There will be no further development on this project. This project always was a proof of concept only. Bugs are not gonna be fixed. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important> + <text>Awksite is a small but usefull CGI application for generating dynamic HTML sites. It runs on all systems having GNU AWK (most *NIX boxes) installed.</text> + <text>Look through the template and config file and you will understand very quickly how to use this small CGI script.</text> +</content> diff --git a/awksite.buetow.org/content/license.xml b/awksite.buetow.org/content/license.xml new file mode 100644 index 0000000..c698bc3 --- /dev/null +++ b/awksite.buetow.org/content/license.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>Awksite is (C) by Paul C. Buetow.</noop> + </text> + <textheader>Beer license</textheader> + <text>Awksite uses the beer license. If you use this script and you meet me , spend me a beer please! ;)</text> +</content> diff --git a/calculator.buetow.org/OBSOLETEPROJECT b/calculator.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..94948c3 --- /dev/null +++ b/calculator.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +Calculator is a very portable text based calculator program written in C++. diff --git a/calculator.buetow.org/SITEMAP b/calculator.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/calculator.buetow.org/SITEMAP diff --git a/calculator.buetow.org/content/98.contact.xml b/calculator.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/calculator.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/calculator.buetow.org/content/Download.xml b/calculator.buetow.org/content/Download.xml new file mode 100644 index 0000000..bbcc1a2 --- /dev/null +++ b/calculator.buetow.org/content/Download.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Source packages and Binaries</textheader> + <text> + <noop>The source and the binaries are available in git</noop> + <pretext>git clone git://git.buetow.org/playground.git +cd playground/Cpp/StackCalculator</pretext> + </text> +</content> diff --git a/calculator.buetow.org/content/Screenshots.xml b/calculator.buetow.org/content/Screenshots.xml new file mode 100644 index 0000000..20ababb --- /dev/null +++ b/calculator.buetow.org/content/Screenshots.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Screenshots</pagetitle> + <text> + <noop>Here some Screenshots of Calculator running on a Microsoft Windows box:</noop> + <newline/> + <newline/> + <namedlink href="%%imagesurl%%v0.1.png">v0.1.png</namedlink> + <newline/> + <newline/> + <namedlink href="%%imagesurl%%v0.2.png">v0.2.png</namedlink> + <newline/> + <newline/> + <namedlink href="%%imagesurl%%v0.4.png">v0.4.png</namedlink> + </text> +</content> diff --git a/calculator.buetow.org/content/home.xml b/calculator.buetow.org/content/home.xml new file mode 100644 index 0000000..5b0298f --- /dev/null +++ b/calculator.buetow.org/content/home.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Easy Stack Calculator</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of the Easy Stack Calculator has been stalled. There will be no further development on this project. This project always was a proof of concept only. Bugs are not gonna be fixed. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important> + <text>Calculator is a very portable text based calculator program written in C++.</text> + <textheader>Version 0.6 (Sep 20th 2005)</textheader> + <enumeration> + <enumitem>Changed the source tree structure. Normal non-digits will now be treated with their ASCII values. Digits will be treated with ASCII values too if mode ascii has been activated.</enumitem> + <enumitem>Fixed the "operators" command.</enumitem> + </enumeration> + <textheader>Version 0.5 (Apr 18 2005)</textheader> + <enumeration> + <enumitem>Added list.h and stack.h. Calculator can now be used with parameters: ./calculator '1+6+4\'. Added the v(erbose) command. Added the pr(ecision) int command. </enumitem> + <enumitem>The - (minus) bug has been fixed!</enumitem> + </enumeration> + <textheader>Version 0.4.1 (Dec 1st 2004) - Bugfix release</textheader> + <enumeration> + <enumitem> + <noop>Equations like (...)op... can be solved now. Here, op is an operator. Before, ...op(...) only worked.</noop> + <newline/> + <noop>Example: (4\+3)^(8*7)!</noop> + </enumitem> + <enumitem>The ^ operator now only uses whole numbers as an exponent.</enumitem> + <enumitem>Use \ to calculate the roots instead!</enumitem> + </enumeration> + <textheader>Version 0.4 (Nov 27th 2004)</textheader> + <enumeration> + <enumitem>Renamed the qu(it) command into ex(it).</enumitem> + <enumitem>Renamed the pri(ority) command into op(erators).</enumitem> + <enumitem>A "," can be used as a synonym for a ".".</enumitem> + <enumitem>0! resulted in an infinite loop. This has been fixed.</enumitem> + <enumitem>\w* resultet in a segmentation fault. This has been fixed.</enumitem> + <enumitem>New commands: ra(scii), which is the same as as(cii) but works the reverse way. !command executes a shell command. x\ calculates the square root of x.</enumitem> + </enumeration> + <textheader>Version 0.3.1 (Jul 26th 2004) - Bugfix release</textheader> + <enumeration> + <enumitem>This is a bugfix release only. No new features included.</enumitem> + </enumeration> + <textheader>Version 0.3 (May 8th 2004)</textheader> + <enumeration> + <enumitem>This version uses $ to store the result of the last calculaion in.</enumitem> + <enumitem>Also 4(2)(4) will be interpreted as 4*2*4.</enumitem> + <enumitem>Negative numbers can be typed: 4+-4(-1) = 4-4*-1 = 0</enumitem> + <enumitem>A few bugs have been fixed too.</enumitem> + </enumeration> + <textheader>Version 0.2 (May 2nd 2004)</textheader> + <enumeration> + <enumitem>This version can also handle different fields and double and float numbers. </enumitem> + </enumeration> + <textheader>Version 0.1 (May 1st 2004)</textheader> + <enumeration> + <enumitem>This version can only handle normal integer numbers. Double, floats etc. will be added in the next versions.</enumitem> + </enumeration> +</content> diff --git a/calculator.buetow.org/content/license.xml b/calculator.buetow.org/content/license.xml new file mode 100644 index 0000000..c4b05e9 --- /dev/null +++ b/calculator.buetow.org/content/license.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>Calculator is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/calculator.buetow.org/htdocs/images/v0.1.png b/calculator.buetow.org/htdocs/images/v0.1.png Binary files differnew file mode 100644 index 0000000..567e694 --- /dev/null +++ b/calculator.buetow.org/htdocs/images/v0.1.png diff --git a/calculator.buetow.org/htdocs/images/v0.2.png b/calculator.buetow.org/htdocs/images/v0.2.png Binary files differnew file mode 100644 index 0000000..02e6fbd --- /dev/null +++ b/calculator.buetow.org/htdocs/images/v0.2.png diff --git a/calculator.buetow.org/htdocs/images/v0.4.png b/calculator.buetow.org/htdocs/images/v0.4.png Binary files differnew file mode 100644 index 0000000..7e69d53 --- /dev/null +++ b/calculator.buetow.org/htdocs/images/v0.4.png diff --git a/cbars.alpha.buetow.org/PROJECT b/cbars.alpha.buetow.org/PROJECT new file mode 100644 index 0000000..bdf563b --- /dev/null +++ b/cbars.alpha.buetow.org/PROJECT @@ -0,0 +1 @@ +This aims to be a rewrite of loadbars in the C programming language. diff --git a/cbars.alpha.buetow.org/SITEMAP b/cbars.alpha.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cbars.alpha.buetow.org/SITEMAP diff --git a/cbars.alpha.buetow.org/content/20.Manpage.xml b/cbars.alpha.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..9ec449a --- /dev/null +++ b/cbars.alpha.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/cbars.git/plain/docs/cbars.txt</inject> + </pretext> +</content> diff --git a/cbars.alpha.buetow.org/content/40.Changelog.xml b/cbars.alpha.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..570f30f --- /dev/null +++ b/cbars.alpha.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/cbars.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/cbars.alpha.buetow.org/content/50.Download.xml b/cbars.alpha.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..4382358 --- /dev/null +++ b/cbars.alpha.buetow.org/content/50.Download.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>There is no Debian Package available yet!</noop> + </text> + </important> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install !!HOSTNAME!!:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -".</text> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/cbars.alpha.buetow.org/content/98.contact.xml b/cbars.alpha.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/cbars.alpha.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/cbars.alpha.buetow.org/content/99.license.xml b/cbars.alpha.buetow.org/content/99.license.xml new file mode 100644 index 0000000..083a317 --- /dev/null +++ b/cbars.alpha.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Cbars is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/cbars.alpha.buetow.org/content/home.xml b/cbars.alpha.buetow.org/content/home.xml new file mode 100644 index 0000000..df2a2bf --- /dev/null +++ b/cbars.alpha.buetow.org/content/home.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Cbars</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The domain </noop> + <strong>.alpha.buetow.org</strong> + <noop>contains only development, test and PoC stuff. Replace </noop> + <strong>$shomething.alpha.buetow.org</strong> + <noop> with </noop> + <strong>$something.buetow.org</strong> + <noop> (if exists) to get the stable stuff.</noop> + </text> + </important> + <textheader>Get the current clue...</textheader> + <text> + <rimg href="?document=images/cbars.png" title="Cbars" alt="Cbars"/> + <noop>Cbars is a program written in C for Linux that can be used to observe CPU loads of several remote servers at once in real time. It connects with SSH (using SSH public/private key auth) to several servers at once and vizualizes all server CPUs and memory statistics right next each other (either summarized or each core separately). Cbars is not a tool for collecting CPU loads and drawing graphs for later analysis. However, since such tools require a significant amount of time before producing results, Cbars lets you observe the current state immediately. Cbars does not remember or record any load information. It just shows the current CPU usages like top or vmstat does. It is an attempt to re-write </noop> + <hyperlink>http://loadbars.buetow.org</hyperlink> + <noop>. The there is no version of Cbars out yet. But v0.0.0 might come out some day this year.</noop> + </text> +</content> diff --git a/cbars.alpha.buetow.org/htdocs/images/cbars.png b/cbars.alpha.buetow.org/htdocs/images/cbars.png Binary files differnew file mode 100644 index 0000000..d223b9a --- /dev/null +++ b/cbars.alpha.buetow.org/htdocs/images/cbars.png diff --git a/cpphomepage.buetow.org/OBSOLETEPROJECT b/cpphomepage.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..d0d942e --- /dev/null +++ b/cpphomepage.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +cpphomapge is a small but usefull CGI application for generating dynamic HTML sites. You must have installed a C++ compiler in order to get it running. diff --git a/cpphomepage.buetow.org/SITEMAP b/cpphomepage.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cpphomepage.buetow.org/SITEMAP diff --git a/cpphomepage.buetow.org/content/98.contact.xml b/cpphomepage.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/cpphomepage.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/cpphomepage.buetow.org/content/Download.xml b/cpphomepage.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/cpphomepage.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/cpphomepage.buetow.org/content/home.xml b/cpphomepage.buetow.org/content/home.xml new file mode 100644 index 0000000..9afb1da --- /dev/null +++ b/cpphomepage.buetow.org/content/home.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>C++ Homepage</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of cpphomepage has been stalled. There will be no further development on this project. This project always was a proof of concept only. Bugs are not gonna be fixed. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important> + <text>cpphomepage is a small but usefull CGI application for generating dynamic HTML sites. It should be runnable on most *NIX and a like boxes having a decent C++ compiler installed.</text> + <text>Look through the template and config file and you will understand very quickly how to use this small CGI application.</text> +</content> diff --git a/cpphomepage.buetow.org/content/license.xml b/cpphomepage.buetow.org/content/license.xml new file mode 100644 index 0000000..5221dc9 --- /dev/null +++ b/cpphomepage.buetow.org/content/license.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>cpphomepage is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/cpuinfo.buetow.org/PROJECT b/cpuinfo.buetow.org/PROJECT new file mode 100644 index 0000000..e38dc0a --- /dev/null +++ b/cpuinfo.buetow.org/PROJECT @@ -0,0 +1 @@ +This is an humble GNU AWK script to print out some CPU infos. diff --git a/cpuinfo.buetow.org/SITEMAP b/cpuinfo.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cpuinfo.buetow.org/SITEMAP diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..f749c18 --- /dev/null +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/cpuinfo.git/plain/docs/cpuinfo.txt</inject> + </pretext> +</content> diff --git a/cpuinfo.buetow.org/content/40.Changelog.xml b/cpuinfo.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..90c4fa0 --- /dev/null +++ b/cpuinfo.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/cpuinfo.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/cpuinfo.buetow.org/content/98.contact.xml b/cpuinfo.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/cpuinfo.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/cpuinfo.buetow.org/content/99.license.xml b/cpuinfo.buetow.org/content/99.license.xml new file mode 100644 index 0000000..80e33b5 --- /dev/null +++ b/cpuinfo.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>CPUInfo is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml new file mode 100644 index 0000000..b8416a1 --- /dev/null +++ b/cpuinfo.buetow.org/content/home.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <rimg href="?document=images/cpuinfo.png" title="CPUInfo" alt="CPUInfo"/> + <pagetitle>CPUInfo</pagetitle> + <textheader>CPU, who are you?...</textheader> + <text>CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it!</text> +</content> diff --git a/cpuinfo.buetow.org/htdocs/images/cpuinfo.png b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png Binary files differnew file mode 100644 index 0000000..88d7247 --- /dev/null +++ b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png diff --git a/default/config.xml b/default/config.xml new file mode 100644 index 0000000..899d945 --- /dev/null +++ b/default/config.xml @@ -0,0 +1,96 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<config> + <!-- Static variables are written like %%varname%% --> + <!-- Dynamic variables are written like $$varname$$ --> + <!-- Special variables for XML-ing are written like @@varname@@ --> + <variables> + <title>%%host%% - %%site%%</title> + <documentsurl>?document=</documentsurl> + <imagesurl>%%documentsurl%%images/</imagesurl> + <stylesurl>%%documentsurl%%styles/</stylesurl> + <whitespace> </whitespace> + <pubftp>FTP HAS BEEN DISABLED</pubftp> + </variables> + <rules> + <!-- Possible rules-params: --> + <!-- end=yes --> + <!-- start=yes --> + <!-- Possible special-vars: --> + <!-- @@text@@ = The content text of the current content-tag --> + <!-- @@paramname@@ = The value of the specified tag parameter --> + <html5> + <pagetitle>[h1]</pagetitle> + <textheader>[h2]</textheader> + <textsubheader>[h3]</textsubheader> + <important>[div class="important"]</important> + <important2>[div class="important2"]</important2> + <information>[div class="information"]</information> + <text>[p]</text> + <type>[span class="@@class@@"]</type> + <quote>[pre class="quote"]</quote> + <pretext>[p][pre]</pretext> + <hyperlink>[a href="@@text@@"]</hyperlink> + <namedlink>[a href="@@href@@"]</namedlink> + <picture>[a href="@@href@@"][img align="center" border="1" alt="@@desc@@" title="@@desc@@" src="@@src@@"]</picture> + <cimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" src="@@href@@" /]</cimg> + <cimglink start="yes">[center][a href="@@link@@"][img alt="@@title@@" title="@@title@@" src="@@href@@" /][/a][/center]</cimglink> + <rimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /]</rimg> + <rimglink start="yes">[a href="@@link@@"][img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /][/a]</rimglink> + <limg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="limg" src="@@href@@" align="left" /]</limg> + <newline start="yes">[br /]</newline> + <menu>[div class="menu"]</menu> + <menuitem>[a class="menuitem" href="@@link@@$$params$$"]</menuitem> + <activemenuitem>[a class="activemenuitem" href="@@link@@$$params$$"]</activemenuitem> + <enumeration>[ul]</enumeration> + <enumitem>[li]</enumitem> + <enumitemna>[li class="na"]</enumitemna> + <incsep>[div class="incsep"]</incsep> + <code>[pre class="code"]</code> + <javascript>[script type="text/javascript"]</javascript> + </html5> + <xhtml> + <pagetitle>[h1]</pagetitle> + <textheader>[h2]</textheader> + <textsubheader>[h3]</textsubheader> + <news start="yes"/> + <important>[div class="important"]</important> + <information>[div class="information"]</information> + <text>[p]</text> + <type>[span class="@@class@@"]</type> + <quote>[pre class="quote"]</quote> + <pretext>[p][pre]</pretext> + <hyperlink>[a href="@@text@@"]</hyperlink> + <namedlink>[a href="@@href@@"]</namedlink> + <picture>[a href="@@href@@"][img align="center" border="1" alt="@@desc@@" title="@@desc@@" src="@@src@@"]</picture> + <cimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" src="@@href@@" /]</cimg> + <cimglink start="yes">[center][a href="@@link@@"][img alt="@@title@@" title="@@title@@" src="@@href@@" /][/a][/center]</cimglink> + <rimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /]</rimg> + <rimglink start="yes">[a href="@@link@@"][img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /][/a]</rimglink> + <limg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="limg" src="@@href@@" align="left" /]</limg> + <newline start="yes">[br /]</newline> + <menu>[div class="menu"]</menu> + <menuitem>[a class="menuitem" href="@@link@@$$params$$"]</menuitem> + <activemenuitem>[a class="activemenuitem" href="@@link@@$$params$$"]</activemenuitem> + <enumeration>[ul]</enumeration> + <enumitem>[li]</enumitem> + <enumitemna>[li class="na"]</enumitemna> + <incsep>[div class="incsep"]</incsep> + <code>[pre class="code"]</code> + <javascript>[script type="text/javascript" language="JavaScript"]</javascript> + </xhtml> + <rss2.feed> + <textsubheader>[title]</textsubheader> + <news addfront="![CDATA[" addback="]]">[description]</news> + <text>[p]</text> + <hyperlink>[a href="@@text@@"]</hyperlink> + <namedlink>[a href="@@href@@"]</namedlink> + <namedlink end="yes">%%whitespace%%(@@href@@)</namedlink> + <incsep>[item]</incsep> + <enumeration>[ul]</enumeration> + <enumitem>[li]</enumitem> + <enumitemna>[li]</enumitemna> + <code>[pre]</code> + <quote/> + </rss2.feed> + </rules> +</config> diff --git a/default/htdocs/fonts/Free Fonts.URL b/default/htdocs/fonts/Free Fonts.URL new file mode 100644 index 0000000..6bafee3 --- /dev/null +++ b/default/htdocs/fonts/Free Fonts.URL @@ -0,0 +1,2 @@ +[InternetShortcut]
+URL=http://www.font2web.com/freestuff.html
diff --git a/default/htdocs/fonts/OFL.txt b/default/htdocs/fonts/OFL.txt new file mode 100644 index 0000000..5e3a7bc --- /dev/null +++ b/default/htdocs/fonts/OFL.txt @@ -0,0 +1,93 @@ +Copyright (c) 2011, Joe Prince, Admix Designs (http://www.admixdesigns.com/),
+with Reserved Font Names "Varela" and "Varela Round".
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/default/htdocs/fonts/VarelaRound-Regular.eot b/default/htdocs/fonts/VarelaRound-Regular.eot Binary files differnew file mode 100644 index 0000000..4bd26f3 --- /dev/null +++ b/default/htdocs/fonts/VarelaRound-Regular.eot diff --git a/default/htdocs/fonts/VarelaRound-Regular.otf b/default/htdocs/fonts/VarelaRound-Regular.otf Binary files differnew file mode 100644 index 0000000..147617a --- /dev/null +++ b/default/htdocs/fonts/VarelaRound-Regular.otf diff --git a/default/htdocs/fonts/VarelaRound-Regular.svg b/default/htdocs/fonts/VarelaRound-Regular.svg new file mode 100644 index 0000000..df51b4b --- /dev/null +++ b/default/htdocs/fonts/VarelaRound-Regular.svg @@ -0,0 +1,10195 @@ +<?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> +<metadata> +Created by FontForge 20090914 at Sun Sep 29 14:23:21 2013 + By www-data +Copyright (c) 2011, Joe Prince, Admix Designs (http://www.admixdesigns.com/) with Reserved Font Name Varela Round. +</metadata> +<defs> +<font id="VarelaRound-Regular" horiz-adv-x="628" > + <font-face + font-family="Varela Round" + font-weight="400" + font-stretch="normal" + units-per-em="1000" + panose-1="2 0 0 0 0 0 0 0 0 0" + ascent="800" + descent="-200" + x-height="509.998" + cap-height="703" + bbox="-140 -286 988.002 918" + underline-thickness="50" + underline-position="-50" + unicode-range="U+0020-U+FB06" + /> +<missing-glyph horiz-adv-x="514" +d="M441 698c14.667 0 27.167 -5.16699 37.5 -15.5s15.5 -22.833 15.5 -37.5v-593c0 -14.667 -5.16699 -27 -15.5 -37s-22.833 -15 -37.5 -15h-369c-14.667 0 -27 5 -37 15s-15 22.333 -15 37v593c0 14.667 5 27.167 15 37.5s22.333 15.5 37 15.5h369zM444 602l-158 -253 +l158 -253v506zM100 648l157 -251l156 251h-313zM227 349l-157 253v-506zM413 50l-156 252l-157 -252h313z" /> + <glyph glyph-name=".notdef" horiz-adv-x="514" +d="M441 698c14.667 0 27.167 -5.16699 37.5 -15.5s15.5 -22.833 15.5 -37.5v-593c0 -14.667 -5.16699 -27 -15.5 -37s-22.833 -15 -37.5 -15h-369c-14.667 0 -27 5 -37 15s-15 22.333 -15 37v593c0 14.667 5 27.167 15 37.5s22.333 15.5 37 15.5h369zM444 602l-158 -253 +l158 -253v506zM100 648l157 -251l156 251h-313zM227 349l-157 253v-506zM413 50l-156 252l-157 -252h313z" /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="260" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="281" +d="M141 193c-21.333 0 -32.668 9.66699 -34.001 29l-18 330v99c0 14.667 5 27 15 37s22.333 15 37 15s26.834 -5 36.501 -15s14.5 -22.333 14.5 -37v-99l-18 -330c-1.33301 -19.333 -12.333 -29 -33 -29zM99.498 97.5c11.667 11.667 25.667 17.5 42 17.5 +s30.333 -5.83301 42 -17.5s17.5 -25.667 17.5 -42s-5.83301 -30.333 -17.5 -42s-25.667 -17.5 -42 -17.5s-30.333 5.83301 -42 17.5s-17.5 25.667 -17.5 42s5.83301 30.333 17.5 42z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="411" +d="M66.5 602c-2.33301 16 -3.99902 31 -4.99902 45s-1.5 29.167 -1.5 45.5s5.16699 29.5 15.5 39.5s22.166 15 35.499 15s25 -5 35 -15c10.667 -10 16 -23.167 16 -39.5s-0.5 -31.5 -1.5 -45.5s-2.66699 -29 -5 -45s-5 -31.5 -8 -46.5s-5.5 -26.833 -7.5 -35.5 +c-3.33301 -18.667 -13 -28 -29 -28c-8 0 -14.5 2.5 -19.5 7.5s-8.33301 11.833 -10 20.5l-7 35.5c-3 15 -5.66699 30.5 -8 46.5zM255.501 602c-2.33301 16 -3.99902 31 -4.99902 45s-1.5 29.167 -1.5 45.5s5.16699 29.5 15.5 39.5s22.166 15 35.499 15s25 -5 35 -15 +c10.667 -10 16 -23.167 16 -39.5s-0.5 -31.5 -1.5 -45.5s-2.66699 -29 -5 -45s-5 -31.5 -8 -46.5s-5.16699 -26.833 -6.5 -35.5c-4 -18.667 -14 -28 -30 -28c-8 0 -14.5 2.5 -19.5 7.5s-8.33301 11.833 -10 20.5l-7 35.5c-3 15 -5.66699 30.5 -8 46.5z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="612" +d="M134.5 5c-7 6.66699 -10.5039 12.998 -10.5039 18.998s8 58.667 24 158h-77c-9.33301 0 -17.5 3.5 -24.5 10.5s-10.5 15.167 -10.5 24.5s3.5 17.5 10.5 24.5s15.167 10.5 24.5 10.5h88l24 152h-77c-9.33301 0 -17.5 3.5 -24.5 10.5s-10.5 15.167 -10.5 24.5 +s3.5 17.5 10.5 24.5s15.167 10.5 24.5 10.5h88l25 158c1.33301 7.33301 5.16602 13.833 11.499 19.5s14.5 8.5 24.5 8.5s18.167 -3.33301 24.5 -10s9.5 -12.667 9.5 -18s-0.166992 -9.16602 -0.5 -11.499l-2.5 -18c-1.33301 -9.66699 -3.66602 -24.5 -6.99902 -44.5l-14 -84 +h127l25 158c1.33301 7.33301 5.16602 13.833 11.499 19.5s14.5 8.5 24.5 8.5s18.167 -3.33301 24.5 -10s9.5 -12.667 9.5 -18s-0.166992 -9.16602 -0.5 -11.499l-2.5 -18c-1.33301 -9.66699 -3.66602 -24.5 -6.99902 -44.5l-14 -84h77c9.33301 0 17.5 -3.5 24.5 -10.5 +s10.5 -15.167 10.5 -24.5s-3.5 -17.5 -10.5 -24.5s-15.167 -10.5 -24.5 -10.5h-88l-24 -152h77c9.33301 0 17.5 -3.5 24.5 -10.5s10.5 -15.167 10.5 -24.5s-3.5 -17.5 -10.5 -24.5s-15.167 -10.5 -24.5 -10.5h-88l-25 -158c-1.33301 -7.33301 -5.16602 -14 -11.499 -20 +s-14.166 -9 -23.499 -9s-17.5 3.33301 -24.5 10s-10.5 13 -10.5 19s8 58.667 24 158h-127l-25 -158c-1.33301 -7.33301 -5.16602 -14 -11.499 -20s-14.166 -9 -23.499 -9s-17.5 3.33301 -24.5 10zM380.996 403.998h-127l-24 -152h127z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="612" +d="M334 387c28 -6.66699 56 -14.333 84 -23s53.333 -20.334 76 -35.001c50 -33.333 75 -81.333 75 -144c0 -54 -21.333 -99 -64 -135s-99.667 -56 -171 -60v-78c0 -6.66699 -2.16699 -12 -6.5 -16s-9.83301 -6 -16.5 -6c-14.667 0 -22 7.33301 -22 22v78 +c-75.333 3.33301 -146.666 19.333 -213.999 48c-18.667 8.66699 -28 20.167 -28 34.5s3.66699 25.5 11 33.5s15.833 12 25.5 12s21.167 -3 34.5 -9c46.667 -20.667 103.667 -32 171 -34v229c-74 19.333 -124.667 38 -152 56s-48 38 -62 60s-21 48 -21 78s5 56.833 15 80.5 +s25 44.834 45 63.501c42.667 39.333 101 61 175 65v78c0 6.66699 2 12.167 6 16.5s9.33301 6.5 16 6.5s12.167 -2.16699 16.5 -6.5s6.5 -9.83301 6.5 -16.5v-77c67.333 -2.66699 126.666 -13.667 177.999 -33c18.667 -6.66699 28 -20 28 -40c0 -10 -3.5 -19.333 -10.5 -28 +s-14.667 -13 -23 -13s-19.5 2.66699 -33.5 8c-40.667 14 -87 21.667 -139 23v-238zM144 510.001c0 -44 29.333 -76 88 -96c18 -6 37 -11.333 57 -16v225c-42 -4 -76.667 -15.5 -104 -34.5s-41 -45.167 -41 -78.5zM334 76.001c68.667 4.66699 113.333 26.333 134 65 +c7.33301 14 11 29.5 11 46.5s-3.83301 30.667 -11.5 41s-18.167 19.5 -31.5 27.5c-19.333 12 -53.333 24.333 -102 37v-217z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="814" +d="M204 715c51.333 0 91.333 -17.332 120 -51.999c27.333 -32.667 41 -75 41 -127s-13.667 -94.333 -41 -127c-28.667 -34.667 -68.667 -52 -120 -52c-50.667 0 -90.667 17.333 -120 52c-27.333 31.333 -41 73.666 -41 126.999c0 82 30.333 137 91 165 +c20 9.33301 43.333 14 70 14zM204 422.001c30 0 52.667 11 68 33s23 49 23 81s-7.66699 59 -23 81s-38 33 -68 33s-52.667 -11 -68 -33s-23 -49 -23 -81s7.66699 -59 23 -81s38 -33 68 -33zM610 340.001c51.333 0 91.333 -17.332 120 -51.999c27.333 -32.667 41 -75 41 -127 +s-13.667 -94.333 -41 -127c-28.667 -34.667 -68.667 -52 -120 -52c-50.667 0 -90.667 17.333 -120 52c-27.333 31.333 -41 73.666 -41 126.999c0 82 30.333 137 91 165c20 9.33301 43.333 14 70 14zM610 47.002c30 0 52.667 11 68 33s23 49 23 81s-7.66699 59 -23 81 +s-38 33 -68 33s-52.667 -11 -68 -33s-23 -49 -23 -81s7.66699 -59 23 -81s38 -33 68 -33zM635.5 699.002c6.33301 -5.33301 9.50098 -12.168 9.50098 -20.501s-2.33301 -16.166 -7 -23.499l-404 -647c-7.33301 -12 -16.333 -18 -27 -18s-19.334 3.16699 -26.001 9.5 +s-10 13.333 -10 21s1.66699 14.167 5 19.5l407 651c6.66699 10.667 15.5 16 26.5 16s19.667 -2.66699 26 -8z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="732" +d="M521 68c-60.667 -52 -129 -78.0039 -205 -78.0039c-82 0 -145 22 -189 66c-37.333 37.333 -56 84 -56 140c0 45.333 13.667 87 41 125c21.333 28.667 45.333 51 72 67c-17.333 21.333 -31.833 42.833 -43.5 64.5s-17.5 46.334 -17.5 74.001s4.33301 52.167 13 73.5 +s21 40 37 56c34.667 34.667 80.334 52 137.001 52c44.667 0 89 -14.667 133 -44c12 -6.66699 18 -15.667 18 -27s-3.33301 -20.5 -10 -27.5s-13.834 -10.5 -21.501 -10.5s-16.5 2.66699 -26.5 8c-28.667 15.333 -55 23 -79 23s-42.667 -2.66699 -56 -8 +s-24.666 -12.333 -33.999 -21c-18 -17.333 -27 -36 -27 -56s1.83301 -35.667 5.5 -47s9.5 -22.666 17.5 -33.999c11.333 -17.333 37 -44.333 77 -81l209 -197c11.333 17.333 20.5 33.666 27.5 48.999s14 25.333 21 30s15.667 7 26 7s19.5 -3.83301 27.5 -11.5 +s12 -16.167 12 -25.5c0 -21.333 -17.667 -56.666 -53 -105.999l67 -64c10.667 -9.33301 16 -19.666 16 -30.999s-3.5 -21.166 -10.5 -29.499s-16.833 -12.5 -29.5 -12.5s-23.334 4 -32.001 12zM239 331.996c-36.667 -23.333 -61.666 -53.999 -74.999 -91.999 +c-4.66699 -14 -7 -30 -7 -48s4 -34.833 12 -50.5s18.667 -28.834 32 -39.501c28 -23.333 61 -35 99 -35s69.667 5.5 95 16.5s47.666 24.167 66.999 39.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="238" +d="M174.5 726.5c11 -11 16.4971 -24.168 16.4971 -39.501v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5 +s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="312" +d="M259 -93c4 -7.33301 6 -15.665 6 -24.998s-4 -17.666 -12 -24.999s-16.833 -11 -26.5 -11s-16.667 1.66699 -21 5s-8.83301 7.66602 -13.5 12.999c-48 57.333 -83.5 124.5 -106.5 201.5s-34.5 157.5 -34.5 241.5s11.5 164.5 34.5 241.5s58.5 144.167 106.5 201.5 +c4.66699 5.33301 9.16699 9.66602 13.5 12.999s11.333 5 21 5s18.5 -3.66699 26.5 -11s12 -15.833 12 -25.5s-2 -17.834 -6 -24.501c-78 -130.667 -117 -264 -117 -400s39 -269.333 117 -400z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="312" +d="M60 -143c-8 7.33301 -12 15.665 -12 24.998s2 17.666 6 24.999c78 130.667 117 264 117 400s-39 269.333 -117 400c-4 6.66699 -6 14.834 -6 24.501s4 18.167 12 25.5s16.833 11 26.5 11s16.667 -1.66699 21 -5s8.83301 -7.66602 13.5 -12.999 +c48 -57.333 83.5 -124.5 106.5 -201.5s34.5 -157.5 34.5 -241.5s-11.5 -164.5 -34.5 -241.5s-58.5 -144.167 -106.5 -201.5c-4.66699 -5.33301 -9.16699 -9.66602 -13.5 -12.999s-11.333 -5 -21 -5s-18.5 3.66699 -26.5 11z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="417" +d="M236 543l100 -38.998c9.33301 -4.66699 14 -11.334 14 -20.001c0 -18 -7.33301 -29.333 -22 -34c-9.33301 -3.33301 -17.666 -2 -24.999 4c-2 1.33301 -11 8.5 -27 21.5l-54 43.5c4 -25.333 7 -45 9 -59l5 -32c0.666992 -6.66699 1.16699 -10.667 1.5 -12 +s0.5 -4.33301 0.5 -9s-3.16699 -9.66699 -9.5 -15s-13.166 -8 -20.499 -8s-14.166 2.66699 -20.499 8s-9.5 10.333 -9.5 15v9c0 3.33301 1.66699 15 5 35l11 68c-56 -44.667 -85.833 -68 -89.5 -70s-9.16699 -1.66699 -16.5 1c-14.667 4.66699 -22 13.667 -22 27 +s4.66699 22.333 14 27c0.666992 0 1.66699 0.333008 3 1s5.16602 2.33398 11.499 5.00098s16.166 6.5 29.499 11.5l56 21.5l-100 39c-9.33301 6 -14 13 -14 21c0 18 7.33301 29.333 22 34c7.33301 2.66699 14.666 1.66699 21.999 -3 +c0.666992 0 9.83398 -7.16699 27.501 -21.5l56.5 -45.5c-10.667 67.333 -16 101.666 -16 102.999v3c0 8.66699 3.16699 15.667 9.5 21s13.166 8 20.499 8s14.166 -2.66699 20.499 -8s9.5 -10.333 9.5 -15s-0.166992 -7.66699 -0.5 -9s-0.833008 -5.33301 -1.5 -12l-5 -32 +c-2 -14 -5 -33.667 -9 -59l84 67c7.33301 4.66699 14.666 5.66699 21.999 3c14.667 -4.66699 22 -13.5 22 -26.5s-4.66699 -22.5 -14 -28.5c-0.666992 0 -1.66699 -0.333008 -3 -1s-5.16602 -2.33398 -11.499 -5.00098s-16.166 -6.5 -29.499 -11.5z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="562" +d="M511 373c7.33301 -7.33301 11 -16.666 11 -27.999s-3.66699 -20.5 -11 -27.5s-16.666 -10.5 -27.999 -10.5h-163v-164c0 -11.333 -3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11s-20.666 3.66699 -27.999 11s-11 16.666 -11 27.999v164h-164 +c-11.333 0 -20.5 3.5 -27.5 10.5s-10.5 16.167 -10.5 27.5s3.5 20.666 10.5 27.999s16.167 11 27.5 11h164v164c0 11.333 3.66699 20.666 11 27.999s16.666 11 27.999 11s20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999v-164h163c11.333 0 20.666 -3.66699 27.999 -11z +" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="260" +d="M174.5 98.5c11 -11 16.4971 -24.168 16.4971 -39.501v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5 +s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="408" +d="M327 309c8 -8 12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-189c-11.333 0 -20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5s3.83301 21 11.5 29s17.167 12 28.5 12h189c11.333 0 21 -4 29 -12z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="260" +d="M174.5 98.5c11 -11 16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z +" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="443" +d="M316 736c6 18.667 19.333 28 40 28c11.333 0 20.833 -4 28.5 -12s11.5 -15.333 11.5 -22c0 -10.667 -1 -18 -3 -22l-265 -775c-6 -18.667 -19 -28 -39 -28c-12 0 -21.833 4 -29.5 12s-11.5 15.667 -11.5 23c0 10 1 17 3 21z" /> + <glyph glyph-name="zero" unicode="0" +d="M314 708c44.667 0 84 -8.66699 118 -26s62.333 -42 85 -74c45.333 -62.667 68 -149 68 -259c0 -110.667 -22.667 -197.334 -68 -260.001c-48 -66 -115.667 -99 -203 -99s-155 33 -203 99c-45.333 62.667 -68 149.334 -68 260.001c0 110 22.667 196.333 68 259 +c47.333 66.667 115 100 203 100zM314 74c58.667 0 103.332 24.666 133.999 73.999c30.667 48.667 46 115.667 46 201c0 84.667 -15.333 151.334 -46 200.001c-30.667 49.333 -75.5 74 -134.5 74s-103.667 -24.667 -134 -74s-45.5 -116 -45.5 -200 +c0 -85.333 15.333 -152.333 46 -201c30.667 -49.333 75.334 -74 134.001 -74z" /> + <glyph glyph-name="one" unicode="1" +d="M516.5 72.5c8.33301 -8.33301 12.502 -18.502 12.502 -30.502s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-309c-12 0 -22 4 -30 12s-12 18 -12 30s4 22.167 12 30.5s18 12.5 30 12.5h119v507l-102 -50l-10 -4c-3.33301 -1.33301 -9.5 -2 -18.5 -2s-17.5 4 -25.5 12 +s-12 19.833 -12 35.5s8.66699 27.834 26 36.501l136 71c9.33301 4.66699 18.666 7 27.999 7h21c13.333 0 24.666 -4.66699 33.999 -14s14 -20.666 14 -33.999v-565h99c12 0 22.167 -4.16699 30.5 -12.5z" /> + <glyph glyph-name="two" unicode="2" +d="M534.5 72.5c8.33301 -8.33301 12.498 -18.5 12.498 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-386c-15.333 -0 -28 4.83301 -38 14.5s-15 22.167 -15 37.5c0 35.333 9.83301 67 29.5 95s44.334 54 74.001 78s61.834 46.667 96.501 68 +s66.834 42.666 96.501 63.999s54.334 43.333 74.001 66s29.5 45.334 29.5 68.001s-2.83301 41.5 -8.5 56.5s-14.5 27.833 -26.5 38.5c-26.667 24 -67.667 36 -123 36c-59.333 0 -116.333 -12 -171 -36c-6.66699 -3.33301 -14.334 -5 -23.001 -5s-16.5 3.66699 -23.5 11 +s-10.5 18 -10.5 32s7.33301 25 22 33c68 34 142 51 222 51c65.333 0 119.666 -18.667 162.999 -56c44.667 -38 67 -87 67 -147c0 -60.667 -30.333 -119 -91 -175c-26.667 -24 -55.834 -46.667 -87.501 -68l-91.5 -61.5c-29.333 -19.667 -55.666 -39 -78.999 -58 +s-39.333 -38.167 -48 -57.5h348c12 0 22.167 -4.16699 30.5 -12.5z" /> + <glyph glyph-name="three" unicode="3" +d="M528 528c0 -80.667 -40.335 -136.334 -121.002 -167.001c63.333 -15.333 107 -48.666 131 -99.999c10 -21.333 15 -47.666 15 -78.999s-6.66699 -59 -20 -83s-31.666 -44 -54.999 -60c-47.333 -32.667 -108.666 -49 -183.999 -49c-73.333 0 -143 13.333 -209 40 +c-17.333 8 -26 20.667 -26 38c0 10.667 3.66699 20.334 11 29.001s15.5 13 24.5 13s20.167 -2.66699 33.5 -8c41.333 -16.667 91 -25 149 -25c83.333 0 139.666 19 168.999 57c10.667 14 16 32 16 54c0 84 -73.667 126 -221 126h-16c-11.333 0 -21.166 4.16699 -29.499 12.5 +s-12.5 18.166 -12.5 29.499s4.16699 21.166 12.5 29.499s18.166 12.5 29.499 12.5h6c137.333 0 206 40.333 206 121c0 31.333 -12.833 56.5 -38.5 75.5s-65.5 28.5 -119.5 28.5c-54.667 0 -106.334 -11 -155.001 -33c-5.33301 -2.66699 -12.166 -4 -20.499 -4 +s-16.166 3.33301 -23.499 10s-11 16.667 -11 30s6.66699 23.666 20 30.999c62.667 34 130.667 51 204 51s130.833 -15.667 172.5 -47s62.5 -75.666 62.5 -132.999z" /> + <glyph glyph-name="four" unicode="4" +d="M555 257c11.333 0 21.001 -4 29.001 -12s12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-76v-136c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v136h-305 +c-16 0 -29.667 5.5 -41 16.5s-17 24.5 -17 40.5v9c0 14 4 26 12 36l314 401c11.333 16 28 24 50 24h20c17.333 0 31.333 -5.66699 42 -17s16 -25 16 -41v-388h76zM388.001 257v343l-266 -343h266z" /> + <glyph glyph-name="five" unicode="5" +d="M169 401c50 27.333 106.335 40.998 169.002 40.998c74 0 132 -21.333 174 -64c39.333 -40.667 59 -94.667 59 -162c0 -105.333 -50.333 -174.666 -151 -207.999c-34.667 -12 -75.334 -18 -122.001 -18c-81.333 0 -152.666 19.333 -213.999 58 +c-13.333 8 -20 18.833 -20 32.5s3.66699 24.834 11 33.501s15.833 13 25.5 13s21.5 -3.66699 35.5 -11c46 -24 95.667 -36 149 -36c95.333 0 155.666 24.333 180.999 73c9.33301 18 14 40.667 14 68c0 41.333 -13.833 74 -41.5 98s-61.834 36 -102.501 36 +c-62 0 -117 -14.333 -165 -43c-14 -8 -28 -12 -42 -12s-27.333 5.16699 -40 15.5s-19 24.5 -19 42.5c0 9.33301 0.666992 17.333 2 24l45 266c2 15.333 7.83301 27.5 17.5 36.5s21.5 13.5 35.5 13.5h321c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5 +s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-290z" /> + <glyph glyph-name="six" unicode="6" +d="M278 444c21.333 5.33301 47.333 7.99707 78 7.99707s60 -5.5 88 -16.5s52 -26.833 72 -47.5c42.667 -43.333 64 -100.333 64 -171c0 -64.667 -22 -118.334 -66 -161.001c-45.333 -44 -105.666 -66 -180.999 -66c-76 0 -136.333 20.667 -181 62 +c-52.667 50 -82.667 124 -90 222c-2 26.667 -3 55.334 -3 86.001s4.83301 67.334 14.5 110.001s25.667 81.5 48 116.5s52 64 89 87s79.833 34.5 128.5 34.5s87 -4.5 115 -13.5s52 -18.833 72 -29.5c14 -8 21 -18.667 21 -32s-3.66699 -24.166 -11 -32.499 +s-15.833 -12.5 -25.5 -12.5s-19.834 2.66699 -30.501 8c-36 16 -76.5 24 -121.5 24s-80.833 -9.16699 -107.5 -27.5s-47.667 -40.5 -63 -66.5c-24 -43.333 -38 -97.333 -42 -162c29.333 38.667 73.333 65.334 132 80.001zM254 89.9971c22 -10 46.833 -15 74.5 -15 +s51 3.83301 70 11.5s35.167 18.167 48.5 31.5c28 28 42 62.833 42 104.5s-12.333 76.5 -37 104.5s-62 42 -112 42c-52 0 -95.333 -13.333 -130 -40c-24 -18 -43.667 -41.333 -59 -70c12 -86.667 46.333 -143 103 -169z" /> + <glyph glyph-name="seven" unicode="7" +d="M551 683c10.667 -10 15.998 -22.5 15.998 -37.5s-3.33301 -29.833 -10 -44.5l-284 -581c-9.33301 -16.667 -22.166 -25 -38.499 -25s-28.666 4.16699 -36.999 12.5s-12.5 17.833 -12.5 28.5s2 20 6 28l275 547h-363c-12 0 -22.167 4.16699 -30.5 12.5 +s-12.5 18.5 -12.5 30.5s4.16699 22.333 12.5 31s18.5 13 30.5 13h408c16 0 29.333 -5 40 -15z" /> + <glyph glyph-name="eight" unicode="8" +d="M548 525c0 -20 -3.16797 -38.166 -9.50098 -54.499s-14.833 -30.833 -25.5 -43.5c-20 -23.333 -47 -41 -81 -53c44.667 -15.333 80.667 -37.833 108 -67.5s41 -70.167 41 -121.5c0 -52.667 -19.667 -96.334 -59 -131.001c-48 -42.667 -117.333 -64 -208 -64 +s-160 21.333 -208 64c-39.333 34.667 -59 78 -59 130s13.667 92.833 41 122.5s63.333 52.167 108 67.5c-53.333 18.667 -88.666 50.667 -105.999 96c-6.66699 16.667 -10 35 -10 55s4 40.667 12 62s21.333 41 40 59c42 41.333 102.667 62 182 62s140 -20.667 182 -62 +c34.667 -34 52 -74.333 52 -121zM313.999 70.001c60.667 0 106.668 15.333 138.001 46c25.333 23.333 38 48 38 74s-4.83301 47.333 -14.5 64s-22.834 30.667 -39.501 42c-32 22.667 -72.5 34 -121.5 34s-89.833 -11.333 -122.5 -34c-36 -24.667 -54 -58.334 -54 -101.001 +c0 -29.333 12.667 -55.666 38 -78.999c31.333 -30.667 77.333 -46 138 -46zM314 412.001c49.333 0 86.667 12.332 112 36.999c20.667 20 31 44.167 31 72.5s-11.667 53.166 -35 74.499s-59.333 32 -108 32s-84.667 -10.667 -108 -32s-35 -46.166 -35 -74.499 +s11.5 -53.666 34.5 -75.999s59.167 -33.5 108.5 -33.5z" /> + <glyph glyph-name="nine" unicode="9" +d="M350 254c-21.333 -5.33301 -47.333 -7.99805 -78 -7.99805s-60 5.5 -88 16.5s-52 26.833 -72 47.5c-42.667 43.333 -64 100.333 -64 171c0 65.333 22 119 66 161c46.667 44 107 66 181 66c76 0 136.333 -20.667 181 -62c52.667 -50 82.667 -124 90 -222 +c2 -26.667 3 -55.5 3 -86.5s-4.83301 -67.667 -14.5 -110s-25.667 -81 -48 -116s-52.166 -64 -89.499 -87s-80.166 -34.5 -128.499 -34.5s-86.5 4.5 -114.5 13.5s-52 18.833 -72 29.5c-14 8 -21 18.667 -21 32s3.66699 24.166 11 32.499s15.666 12.5 24.999 12.5 +s19.666 -2.66699 30.999 -8c37.333 -16 78 -24 122 -24s79.5 9.16699 106.5 27.5s48.167 40.5 63.5 66.5c24 43.333 38 97.333 42 162c-29.333 -38.667 -73.333 -65.334 -132 -80.001zM374 608.002c-22 10 -46.833 15 -74.5 15s-51 -3.83301 -70 -11.5 +s-35.167 -18.167 -48.5 -31.5c-28 -28 -42 -62.833 -42 -104.5s12.333 -76.5 37 -104.5s62 -42 112 -42c52 0 95.333 13.333 130 40c24 18 43.667 41.333 59 70c-12 86.667 -46.333 143 -103 169z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="260" +d="M135 115c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM135 513 +c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="260" +d="M135 115c15.333 0 28.4971 -5.50098 39.4971 -16.501s16.5 -24.167 16.5 -39.5v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23 +c14.667 8.66699 26.834 19.5 36.501 32.5s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM134.997 512.999c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6 +c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="580" +d="M514.5 69.5c-7.66699 -7.66699 -15.834 -11.498 -24.501 -11.498s-15.334 1 -20.001 3l-399 179c-24 11.333 -36 28.666 -36 51.999v8c0 23.333 12 40.666 36 51.999l399 179c4.66699 2 11.334 3 20.001 3s16.834 -3.83301 24.501 -11.5s11.5 -16.5 11.5 -26.5 +c0 -19.333 -9 -32.666 -27 -39.999l-360 -160l360 -160c8 -3.33301 14.5 -8.5 19.5 -15.5s7.5 -15.333 7.5 -25s-3.83301 -18.334 -11.5 -26.001z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="712" +d="M112 404c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h488c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-488zM600 258 +c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-488c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h488z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="580" +d="M110 61c-5.33301 -2 -12.166 -3.00195 -20.499 -3.00195s-16.333 3.83301 -24 11.5s-11.5 16.5 -11.5 26.5c0 19.333 9 32.666 27 39.999l360 160l-360 160c-8 3.33301 -14.5 8.5 -19.5 15.5s-7.5 15.333 -7.5 25s3.83301 18.334 11.5 26.001s15.667 11.5 24 11.5 +s15.166 -1 20.499 -3l399 -179c24 -11.333 36 -28.666 36 -51.999v-8c0 -23.333 -12 -40.666 -36 -51.999z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="497" +d="M362 514c0 72.667 -47.665 108.997 -142.998 108.997c-52 0 -94.667 -11 -128 -33c-8.66699 -5.33301 -17.834 -8 -27.501 -8s-18.334 3.83301 -26.001 11.5s-11.5 16.5 -11.5 26.5c0 16.667 8.33301 30 25 40c52 32 110.667 48 176 48c68.667 0 123 -17 163 -51 +c41.333 -34.667 62 -80.667 62 -138c0 -60 -31.333 -113 -94 -159c-36.667 -27.333 -63 -54 -79 -80c-9.33301 -15.333 -14 -31.166 -14 -47.499s-4.5 -28.166 -13.5 -35.499s-19.5 -11 -31.5 -11s-22.167 3.83301 -30.5 11.5s-12.5 16.834 -12.5 27.501c0 66 31 123 93 171 +c40 32 65.333 55.5 76 70.5s16 30.833 16 47.5zM177.502 97.4971c11.667 11.667 25.667 17.5 42 17.5s30.333 -5.83301 42 -17.5s17.5 -25.667 17.5 -42s-5.83301 -30.333 -17.5 -42s-25.667 -17.5 -42 -17.5s-30.333 5.83301 -42 17.5s-17.5 25.667 -17.5 42 +s5.83301 30.333 17.5 42z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="898" +d="M458 513c49.333 0 92 -17.0029 128 -51.0029l3 17c1.33301 9.33301 5.5 16.833 12.5 22.5s15.333 8.5 25 8.5s18 -3.5 25 -10.5s10.5 -13.5 10.5 -19.5v-11c0 -1.33301 -0.333008 -3.66602 -1 -6.99902l-33 -190c-4.66699 -28 -7 -50.167 -7 -66.5s3.83301 -31 11.5 -44 +s20.5 -19.5 38.5 -19.5c42 0 74 18.333 96 55s33 82 33 136s-9.5 99.333 -28.5 136s-44.167 67.334 -75.5 92.001c-62 49.333 -136.333 74 -223 74c-50.667 0 -98.5 -10 -143.5 -30s-84.5 -47 -118.5 -81s-60.833 -73.5 -80.5 -118.5s-29.5 -89.167 -29.5 -132.5 +s6.5 -82.5 19.5 -117.5s32.167 -66.167 57.5 -93.5c56.667 -62 130.667 -93 222 -93c43.333 0 77.333 3.33301 102 10c30.667 8 57.167 16.333 79.5 25s36.166 13 41.499 13s10.333 -2.16699 15 -6.5s7 -11 7 -20s-4.66699 -15.833 -14 -20.5 +c-70.667 -35.333 -147.667 -53 -231 -53c-53.333 0 -101.666 9.5 -144.999 28.5s-80.333 44.333 -111 76s-54.167 68.334 -70.5 110.001s-24.5 88.167 -24.5 139.5s11.333 102.666 34 153.999s53.167 96.5 91.5 135.5s83.166 70 134.499 93s104.333 34.5 159 34.5 +s105.167 -8.5 151.5 -25.5s86.833 -40.667 121.5 -71s62.167 -66.666 82.5 -108.999s30.5 -89.166 30.5 -140.499c0 -66.667 -14 -122.667 -42 -168c-34 -52.667 -82 -79 -144 -79c-50 0 -84 15.667 -102 47c-4.66699 9.33301 -8 18.333 -10 27 +c-41.333 -50 -96.333 -75 -165 -75c-53.333 0 -95.666 16.667 -126.999 50c-28.667 32 -43 70.667 -43 116s6.83301 83.166 20.5 113.499s31.5 55.833 53.5 76.5c44.667 42 99 63 163 63zM575 395.997c-28.667 30.667 -66.333 46 -113 46c-45.333 0 -83.333 -14 -114 -42 +c-33.333 -30.667 -50 -70.667 -50 -120c0 -39.333 11.333 -69.333 34 -90c20 -18 47 -27 81 -27c56.667 0 98 23.667 124 71c10 18 17.333 41 22 69z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="697" +d="M667 60c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10 +c26.667 0 46 -13.667 58 -41zM484 262l-135 325l-135 -325h270z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="693" +d="M602 517c0 -72 -32.667 -123.334 -98 -154.001c63.333 -21.333 105.333 -56.333 126 -105c7.33301 -18.667 11 -41 11 -67s-4.66699 -51 -14 -75s-24.333 -44.667 -45 -62c-42.667 -36 -108.667 -54 -198 -54h-242c-12.667 0 -23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h236c73.333 0 129 -16.667 167 -50s57 -77 57 -131zM515 509.999c0 31.333 -12.5 56.333 -37.5 75s-60.5 28 -106.5 28h-183v-217h166c86 0 137.333 23 154 69c4.66699 14 7 29 7 45z +M375 84.999c94.667 0 151 22.667 169 68c6 14 9 29.667 9 47c0 40 -15 69 -45 87s-74 27 -132 27h-188v-229h187z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="698" +d="M598 124c5.33301 2.66699 12.8369 4.00098 22.5039 4.00098s18 -3.83301 25 -11.5s10.5 -16.5 10.5 -26.5c0 -18 -7.33301 -30.667 -22 -38c-31.333 -17.333 -64.833 -32 -100.5 -44s-78.334 -18 -128.001 -18s-95.834 8.16699 -138.501 24.5s-79.667 40.166 -111 71.499 +c-66.667 65.333 -100 153 -100 263s33.333 197.667 100 263c64.667 64 148 96 250 96c49.333 0 91.833 -6 127.5 -18s63 -23.167 82 -33.5s30.5 -18.666 34.5 -24.999s6 -14.333 6 -24s-3.5 -18.334 -10.5 -26.001s-15.333 -11.5 -25 -11.5s-17.167 1.33301 -22.5 4 +c-26.667 14 -54 25.333 -82 34s-62.833 13 -104.5 13s-79.334 -7 -113.001 -21s-61.834 -33.333 -84.501 -58c-44.667 -48.667 -67 -113 -67 -193s22.333 -144.333 67 -193c48.667 -52.667 115.667 -79 201 -79c39.333 0 73 4.33301 101 13s55.333 20 82 34z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="750" +d="M343 698c111.333 0 200 -37.332 266 -111.999c29.333 -32.667 51.166 -69.834 65.499 -111.501s21.5 -83.5 21.5 -125.5s-7.16699 -83.833 -21.5 -125.5s-36.166 -78.834 -65.499 -111.501c-66 -74.667 -154.667 -112 -266 -112h-201 +c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h201zM332 85.001c82.667 0 149.334 24.3311 200.001 72.998c49.333 48.667 74 112.334 74 191.001s-24.667 142.334 -74 191.001 +c-50.667 48.667 -117.334 73 -200.001 73h-144v-528h144z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="638" +d="M573.5 72.5c8.33301 -8.33301 12.5 -18.501 12.5 -30.501s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h401 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355c12 0 22.167 -4.16699 30.5 -12.5 +z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="610" +d="M188 613v-221h308c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-308v-267c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v612 +c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h389c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-343z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="744" +d="M418 76c62.667 0 121 14.666 175 43.999v181h-165c-11.333 0 -21 4 -29 12s-12 17.667 -12 29s4 21 12 29s17.667 12 29 12h197c13.333 0 24.666 -4.66699 33.999 -14s14 -20.666 14 -33.999v-227c0 -14 -3.5 -26.5 -10.5 -37.5s-16.167 -19.167 -27.5 -24.5 +c-74.667 -37.333 -151 -56 -229 -56c-104.667 0 -189.334 33.333 -254.001 100c-64.667 67.333 -97 153.333 -97 258c0 106 33.667 193.333 101 262c64.667 65.333 147 98 247 98c56.667 0 104.5 -7 143.5 -21s74.167 -31 105.5 -51c13.333 -7.33301 20 -17.833 20 -31.5 +s-3.66699 -24.667 -11 -33s-16.166 -12.5 -26.499 -12.5s-18.833 1.66699 -25.5 5c-64.667 37.333 -130 56 -196 56c-77.333 0 -140.666 -23.333 -189.999 -70c-51.333 -49.333 -77 -116.666 -77 -201.999c0 -78.667 24 -143.334 72 -194.001c49.333 -52 116 -78 200 -78z +" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="755" +d="M612 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v266h-379v-266c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13 +s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-266h379v266c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="285" +d="M142 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="466" +d="M327 703c12.667 0 23.498 -4.50098 32.498 -13.501s13.5 -19.833 13.5 -32.5v-427c0 -87.333 -21.667 -151.333 -65 -192c-34.667 -32 -81.667 -48 -141 -48c-48.667 0 -93 11.333 -133 34c-14.667 8 -22 18.833 -22 32.5s3.5 24.667 10.5 33s15 12.5 24 12.5 +s18.167 -2.33301 27.5 -7c25.333 -12.667 49.833 -19 73.5 -19s42.834 1.83301 57.501 5.5s27.667 10.834 39 21.501c25.333 24 38 64.333 38 121v433c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="670" +d="M629 68c7.33301 -9.33301 11 -19.6689 11 -31.002s-4.16699 -21.166 -12.5 -29.499s-19.5 -12.5 -33.5 -12.5s-25.333 6 -34 18l-258 329l-114 -115v-187c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001 +v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-318l342 348c8.66699 10.667 19.5 16 32.5 16s23.5 -3.83301 31.5 -11.5s12 -17.667 12 -30s-3.66699 -22.166 -11 -29.499l-231 -230z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="576" +d="M547.5 77.5c9 -9 13.498 -19.8311 13.498 -32.498s-4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13h-355c-17.333 0 -32.166 6.16699 -44.499 18.5s-18.5 27.166 -18.5 44.499v594c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5 +s13.5 -19.833 13.5 -32.5v-566h327c12.667 0 23.5 -4.5 32.5 -13.5z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="966" +d="M850 683.5c12.667 -13 19 -28.5 19 -46.5v-597c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.334 -13.5 32.001v568l-231 -571c-5.33301 -12.667 -13.666 -22.834 -24.999 -30.501s-24.333 -11.5 -39 -11.5 +s-27.667 3.83301 -39 11.5s-19.666 17.834 -24.999 30.501l-231 571v-568c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v597c0 18 6.33301 33.5 19 46.5s28 19.5 46 19.5h33c13.333 0 25.5 -4 36.5 -12 +s19.167 -18 24.5 -30l227 -566l227 566c5.33301 12 13.5 22 24.5 30s23.167 12 36.5 12h33c18 0 33.333 -6.5 46 -19.5z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="803" +d="M660 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-597c0 -18 -6.5 -33.333 -19.5 -46s-28.5 -19 -46.5 -19h-12c-22 0 -39.667 9 -53 27l-387 559v-541c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v597c0 18 6.33301 33.5 19 46.5s28 19.5 46 19.5h13c20.667 0 39 -10 55 -30l385 -556v540c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="669" +d="M370 698c92.667 0 162.334 -24 209.001 -72c38.667 -38.667 58 -88.667 58 -150s-19.333 -111.333 -58 -150c-46.667 -48 -116.334 -72 -209.001 -72h-182v-214c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v612c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h228zM361 340c68.667 0 118.333 14.666 149 43.999c24 22.667 36 53.334 36 92.001c0 62 -31 103.333 -93 124c-24 8 -54.667 12 -92 12h-173v-272h173z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="812" +d="M466 -6c-18.667 -2.66699 -38.668 -4 -60.001 -4c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258c63.333 67.333 148 101 254 101c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258 +c-1.33301 -78.667 -20 -147 -56 -205s-86.333 -100.333 -151 -127l88 -97c8 -8 12 -17.833 12 -29.5s-4.16699 -21.667 -12.5 -30s-18.666 -12.5 -30.999 -12.5s-22.833 5.33301 -31.5 16zM405.999 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195 +s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195c46.667 -52.667 110.667 -79 192 -79z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="712" +d="M641 40c0 -12.667 -4.33398 -23.332 -13.001 -31.999s-19.667 -13 -33 -13s-24.166 4.16699 -32.499 12.5s-12.5 19.166 -12.5 32.499v30c0 54 -6 93.667 -18 119s-28.333 45.5 -49 60.5s-50 22.5 -88 22.5h-207v-232c0 -12.667 -4.5 -23.334 -13.5 -32.001 +s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v612c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h233c91.333 0 160.333 -19.333 207 -58c43.333 -36.667 65 -85 65 -145c0 -38.667 -10.833 -74.667 -32.5 -108 +s-54.5 -57.666 -98.5 -72.999c48 -12.667 82.667 -47.334 104 -104.001c14 -38 21 -79.333 21 -124v-46zM368.999 358.002c56 0 101.167 11 135.5 33s51.5 54.333 51.5 97c0 40 -13.333 70 -40 90c-32 22.667 -82.667 34 -152 34h-176v-254h181z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="616" +d="M308 76c116.667 0 174.998 38.3379 174.998 115.005c0 32 -22.333 57.667 -67 77c-19.333 8 -41.833 15.167 -67.5 21.5s-51.667 13.166 -78 20.499s-52.333 15.666 -78 24.999s-48.5 21.333 -68.5 36c-44 33.333 -66 77.333 -66 132c0 58.667 22 106.667 66 144 +c48 40.667 112.333 61 193 61c72.667 0 139 -11 199 -33c18.667 -6.66699 28 -20 28 -40c0 -10 -3.5 -19.5 -10.5 -28.5s-14.667 -13.5 -23 -13.5s-19.833 2.66699 -34.5 8c-43.333 15.333 -93 23 -149 23c-51.333 0 -93.666 -9.66699 -126.999 -29 +c-34 -20 -51 -48.333 -51 -85c0 -38 22 -66.667 66 -86c20 -9.33301 42.667 -17 68 -23l78 -19c26.667 -6.66699 52.667 -14.5 78 -23.5s48 -20.833 68 -35.5c44 -32 66 -78 66 -138c0 -57.333 -23 -104 -69 -140c-47.333 -36.667 -109.666 -55 -186.999 -55 +c-84.667 0 -164 16 -238 48c-7.33301 3.33301 -13.833 8.66602 -19.5 15.999s-8.5 16.166 -8.5 26.499s3.66699 19.666 11 27.999s15.833 12.5 25.5 12.5s21.667 -3.16699 36 -9.5s37.833 -13.833 70.5 -22.5s70.667 -13 114 -13z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="611" +d="M584.5 685.5c8.33301 -8.33301 12.501 -18.5 12.501 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-203v-573c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v573h-204c-12 0 -22 4 -30 12 +s-12 18 -12 30s4 22.167 12 30.5s18 12.5 30 12.5h498c12 0 22.167 -4.16699 30.5 -12.5z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="758" +d="M620 703c12.667 0 23.498 -4.5 32.498 -13.5s13.5 -19.833 13.5 -32.5v-395c0 -87.333 -31.333 -156 -94 -206c-54 -44 -118.333 -66 -193 -66c-76 0 -140.667 22 -194 66c-62 50 -93 118.667 -93 206v395c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5 +s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-398c0 -59.333 20.333 -106 61 -140c37.333 -30.667 82.333 -46 135 -46s97.667 15.333 135 46c40.667 34 61 80.667 61 140v398c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="694" +d="M347 86l235 586c8.66699 20.667 21.5 31 38.5 31s29.5 -4.33301 37.5 -13s12 -18 12 -28s-1 -17.333 -3 -22l-247 -599c-14 -30.667 -34.667 -46 -62 -46h-22c-27.333 0 -48 15.333 -62 46l-247 599c-2 4.66699 -3 12 -3 22s4 19.333 12 28s18 13 30 13 +c22 0 37.333 -10.333 46 -31z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1007" +d="M504 703c12 0 22.835 -3.5 32.502 -10.5s16.167 -16.167 19.5 -27.5l169 -550l168 552c7.33301 24 22.333 36 45 36c13.333 0 24 -3.83301 32 -11.5s12 -16 12 -25s-1 -17.167 -3 -24.5l-196 -602c-10.667 -30 -30.334 -45 -59.001 -45 +c-13.333 0 -25.5 4.16699 -36.5 12.5s-18.5 19.166 -22.5 32.499l-161 510l-161 -510c-4 -13.333 -11.5 -24.166 -22.5 -32.499s-23.167 -12.5 -36.5 -12.5c-28.667 0 -48.334 15 -59.001 45l-196 602c-2 7.33301 -3 15.5 -3 24.5s4 17.333 12 25s18 11.5 30 11.5 +c24 0 39.667 -12 47 -36l168 -552l169 550c3.33301 11.333 9.83301 20.5 19.5 27.5s20.5 10.5 32.5 10.5z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="669" +d="M617 66c6 -7.33301 9.00098 -16.5 9.00098 -27.5s-4 -21 -12 -30s-17.333 -13.5 -28 -13.5c-18 0 -31.667 6.33301 -41 19l-214 269l-211 -270c-10 -12 -21.167 -18 -33.5 -18s-22.666 4.16699 -30.999 12.5s-12.5 18 -12.5 29s3 20.5 9 28.5l231 284l-229 282 +c-6 8 -9 17.833 -9 29.5s4.16699 21.667 12.5 30s19.666 12.5 33.999 12.5s25.833 -6 34.5 -18l211 -268l211 270c7.33301 10.667 17.666 16 30.999 16s24.333 -4.16699 33 -12.5s13 -17.833 13 -28.5s-2.66699 -19.667 -8 -27l-231 -285z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="645" +d="M532 680c10 15.333 22.501 23 37.501 23s26.5 -4.33301 34.5 -13s12 -18.667 12 -30s-2.66699 -21.333 -8 -30l-240 -335v-255c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.334 -13.5 32.001v255l-239 335 +c-5.33301 8.66699 -8 18.667 -8 30s4 21.333 12 30s19.5 13 34.5 13s27.5 -7.66699 37.5 -23l209 -304z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="638" +d="M580.5 72.5c8.33301 -8.33301 12.5 -18.499 12.5 -30.499s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-445c-16 0 -29.667 5.66699 -41 17s-17 24.666 -17 39.999s4 28 12 38l418 516h-385c-12 0 -22.167 4.16699 -30.5 12.5s-12.5 18.5 -12.5 30.5 +s4.16699 22.333 12.5 31s18.5 13 30.5 13h434c19.333 0 34.333 -6.16699 45 -18.5s16 -26.333 16 -42s-5.33301 -29.5 -16 -41.5l-413 -511h392c12 0 22.167 -4.16699 30.5 -12.5z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="322" +d="M283.5 -71.5c7 -7 10.5 -15.168 10.5 -24.501s-3.5 -17.666 -10.5 -24.999s-15.5 -11 -25.5 -11h-127c-12 0 -22.333 4.33301 -31 13s-13 19 -13 31v776c0 12 4.33301 22.333 13 31s19 13 31 13h127c10 0 18.5 -3.5 25.5 -10.5s10.5 -15.5 10.5 -25.5 +s-3.5 -18.5 -10.5 -25.5s-15.5 -10.5 -25.5 -10.5h-92v-721h92c10 0 18.5 -3.5 25.5 -10.5z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="443" +d="M58.5 752c7.66699 8 16.834 12 27.501 12c21.333 0 35 -9.33301 41 -28l265 -775c2 -4 3 -10.333 3 -19s-3.83301 -17 -11.5 -25s-16.834 -12 -27.501 -12c-21.333 0 -35 9.33301 -41 28l-265 775c-2 4 -3 10.333 -3 19s3.83301 17 11.5 25z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="322" +d="M156 -61v721.001h-92c-10 0 -18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5s3.5 18.5 10.5 25.5s15.5 10.5 25.5 10.5h127c12 0 22.333 -4.33301 31 -13s13 -19 13 -31v-776c0 -12 -4.33301 -22.333 -13 -31s-19 -13 -31 -13h-127c-10 0 -18.5 3.66699 -25.5 11 +s-10.5 15.666 -10.5 24.999s3.5 17.5 10.5 24.5s15.5 10.5 25.5 10.5h92z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="524" +d="M280 702c13.333 0 23.502 -3.33301 30.502 -10s13.167 -14.667 18.5 -24l105 -199c1.33301 -3.33301 2.66602 -6.33301 3.99902 -9s2 -7.16699 2 -13.5s-3.33301 -13.166 -10 -20.499s-15.334 -11 -26.001 -11c-13.333 0 -23.333 5.33301 -30 16 +c-1.33301 2.66699 -5.66602 10.167 -12.999 22.5l-34.5 56.5l-65.5 106l-65 -105.5l-34.5 -56c-7.66699 -12.333 -12.167 -19.833 -13.5 -22.5c-6.66699 -11.333 -16 -17 -28 -17s-21.333 3.66699 -28 11s-10 14.166 -10 20.499s0.666992 10.833 2 13.5 +s2.66602 5.66699 3.99902 9l105 199c5.33301 9.33301 11.5 17.333 18.5 24s17.167 10 30.5 10h38z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="663" +d="M601.5 -90.5c6.33301 -6.33301 9.5 -14.166 9.5 -23.499s-3.16699 -17.166 -9.5 -23.499s-14.166 -9.5 -23.499 -9.5h-493c-9.33301 0 -17.166 3.16699 -23.499 9.5s-9.5 14.166 -9.5 23.499s3.16699 17.166 9.5 23.499s14.166 9.5 23.499 9.5h493 +c9.33301 0 17.166 -3.16699 23.499 -9.5z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="246" +d="M69 685c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="631" +d="M170 444c49.333 50.667 106.332 76 170.999 76s120 -23 166 -69c50.667 -50.667 76 -116 76 -196c0 -81.333 -25.333 -147 -76 -197c-46.667 -45.333 -102.167 -68 -166.5 -68s-121.166 25.333 -170.499 76v-26c0 -12.667 -4.33301 -23.334 -13 -32.001 +s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v649c0 13.333 4.33301 24.333 13 33s19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-245zM169.999 150c45.333 -50 97.999 -75 157.999 -75c76 0 126.667 34 152 102 +c8 22.667 12 48.667 12 78c0 57.333 -15.333 102.333 -46 135c-29.333 30 -68.666 45 -117.999 45c-60 0 -112.667 -25 -158 -75v-210z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="536" +d="M321 75c37.333 0 72.999 9.33301 106.999 28c12 6.66699 22.667 10 32 10s17.666 -4.33301 24.999 -13s11 -19 11 -31s-7.66699 -23 -23 -33c-47.333 -30.667 -100.666 -46 -159.999 -46c-74 0 -136.333 23.333 -187 70c-53.333 49.333 -80 114.333 -80 195 +s26.667 145.667 80 195c50.667 46.667 113 70 187 70c40 0 72.833 -5.16699 98.5 -15.5s46.167 -20.5 61.5 -30.5s23 -21 23 -33s-3.66699 -22.333 -11 -31s-14.666 -13 -21.999 -13c-11.333 0 -23 3.33301 -35 10c-34 18.667 -69.667 28 -107 28 +c-58.667 0 -104 -16.5 -136 -49.5s-48 -76.5 -48 -130.5s16 -97.5 48 -130.5s77.333 -49.5 136 -49.5z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="631" +d="M461 66c-49.333 -50.667 -106.333 -76 -171 -76c-64 0 -119.333 22.667 -166 68c-50.667 50 -76 115.667 -76 197c0 80 25.333 145.333 76 196c46 46 101.333 69 166 69s121.667 -25.333 171 -76v245c0 13.333 4.33301 24.333 13 33s19.5 13 32.5 13 +s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-649c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v26zM461 360c-45.333 50 -98 75 -158 75c-76 0 -126.333 -34 -151 -102 +c-8.66699 -22.667 -13 -48.667 -13 -78c0 -57.333 15.667 -102.333 47 -135c28.667 -30 67.667 -45 117 -45c60 0 112.667 25 158 75v210z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="570" +d="M192 115c28.667 -26.667 68.6641 -40 119.997 -40s94.333 8.66699 129 26c12 6 22.333 9 31 9s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14 +c-30 -8.66699 -64.667 -13 -104 -13c-82 0 -145.667 23 -191 69s-68 111.333 -68 196c0 73.333 19 134.333 57 183c42.667 54.667 103.334 82 182.001 82c74.667 0 133.667 -25.333 177 -76c40.667 -47.333 61 -106 61 -176c0 -12.667 -4.16699 -23.334 -12.5 -32.001 +s-19.5 -13 -33.5 -13h-339c5.33301 -45.333 22.333 -81.333 51 -108zM287.997 443c-59.333 0 -102.667 -26.332 -130 -78.999c-10 -18.667 -15.667 -41 -17 -67h295c-2.66699 47.333 -20 84.666 -52 111.999c-26.667 22.667 -58.667 34 -96 34z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="380" +d="M340 647l-50.001 6c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h125c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-125v-392c0 -12.667 -4.33301 -23.334 -13 -32.001 +s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38 +c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="631" +d="M461 444l-0.00195312 25c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-447c0 -84.667 -20.333 -149.5 -61 -194.5s-98.667 -67.5 -174 -67.5c-80 0 -151.333 17.333 -214 52c-12 7.33301 -18 17.5 -18 30.5 +s3.83301 23.833 11.5 32.5s15.667 13 24 13s15.833 -1.33301 22.5 -4c50.667 -25.333 105.667 -38 165 -38c102 0 153 54.333 153 163v67c-47.333 -50.667 -104.333 -76 -171 -76c-63.333 -0 -117.666 21.333 -162.999 64c-52.667 48.667 -79 114 -79 196 +s26.333 147.333 79 196c45.333 42.667 100.5 64 165.5 64s121.167 -25.333 168.5 -76zM460.998 363c-18.667 19.333 -40 36.501 -64 51.501s-50.667 22.5 -80 22.5s-54.333 -3.66699 -75 -11s-38.667 -18 -54 -32c-32.667 -30.667 -49 -75.334 -49 -134.001 +c0 -86 34.333 -141.333 103 -166c20.667 -7.33301 45.667 -11 75 -11c48.667 0 96.667 24.667 144 74v206z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="609" +d="M334 436c-58.667 0 -113.332 -32 -163.999 -96v-300c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v649c0 13.333 4.33301 24.333 13 33s19.334 13 32.001 13s23.5 -4.33301 32.5 -13 +s13.5 -19.667 13.5 -33v-261c26.667 28 49.667 47.667 69 59c38 22 74.167 33 108.5 33s62.5 -5.16699 84.5 -15.5s40.667 -24.5 56 -42.5c31.333 -36.667 47 -82.667 47 -138v-284c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v274c0 38 -8.5 67.833 -25.5 89.5s-45.167 32.5 -84.5 32.5z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="257" +d="M96 502c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-429c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33zM183 665 +c0 -14 -5 -26 -15 -36s-22 -15 -36 -15h-6c-14 0 -26 5 -36 15s-15 22 -15 36v4c0 14 5 26 15 36s22 15 36 15h6c14 0 26 -5 36 -15s15 -22 15 -36v-4z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="257" +d="M-8 -157l29.999 -3.00098c20.667 0 34.334 2.66699 41.001 8c13.333 8.66699 20 25.667 20 51v569c0 13.333 4.33301 24.333 13 33s19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-571c0 -64.667 -23.333 -107 -70 -127c-16.667 -6.66699 -37 -10 -61 -10 +s-44.833 2.83301 -62.5 8.5s-26.5 17.834 -26.5 36.501c0 10 3.5 18.833 10.5 26.5s16.167 11.5 27.5 11.5zM182.999 664.999c0 -14 -5 -26 -15 -36s-22 -15 -36 -15h-6c-14 0 -26 5 -36 15s-15 22 -15 36v4c0 14 5 26 15 36s22 15 36 15h6c14 0 26 -5 36 -15s15 -22 15 -36 +v-4z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="546" +d="M502 66c6.66699 -8.66699 10.001 -18.666 10.001 -29.999s-4.33301 -21 -13 -29s-18.334 -12 -29.001 -12c-16 0 -29.667 6.33301 -41 19l-172 234l-87 -79v-129c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v649c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-409l238 220c10.667 8.66699 22.667 13 36 13s23 -4.83301 29 -14.5s9 -17.834 9 -24.501c0 -14.667 -5.66699 -27.667 -17 -39 +l-144 -129z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="265" +d="M100 722c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-649c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v649c0 13.333 4.33301 24.333 13 33z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="919" +d="M170 428c40.667 61.333 97.335 92 170.002 92c36 0 68.667 -10.667 98 -32c24 -16.667 42.333 -40.334 55 -71.001c18.667 29.333 37 50 55 62c38 27.333 81 41 129 41c54 0 96.333 -20.667 127 -62c26.667 -35.333 40 -78.666 40 -129.999v-288 +c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v270c0 42 -7.5 73.5 -22.5 94.5s-41.5 31.5 -79.5 31.5c-58.667 0 -106.667 -32 -144 -96v-300c0 -12.667 -4.5 -23.334 -13.5 -32.001 +s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v270c0 42 -7.5 73.5 -22.5 94.5s-41.5 31.5 -79.5 31.5c-58.667 0 -106.667 -32 -144 -96v-300c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v429c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-41z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="609" +d="M334 436c-58.667 0 -113.332 -32 -163.999 -96v-300c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33s19.334 13 32.001 13s23.5 -4.33301 32.5 -13 +s13.5 -19.667 13.5 -33v-41c26.667 28 49.667 47.667 69 59c38 22 74.167 33 108.5 33s62.5 -5.16699 84.5 -15.5s40.667 -24.5 56 -42.5c31.333 -36.667 47 -82.667 47 -138v-284c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v274c0 38 -8.5 67.833 -25.5 89.5s-45.167 32.5 -84.5 32.5z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="631" +d="M170 444c49.333 50.667 106.332 76 170.999 76s120 -23 166 -69c50.667 -50.667 76 -116 76 -196c0 -81.333 -25.333 -147 -76 -197c-46.667 -45.333 -102.167 -68 -166.5 -68s-121.166 25.333 -170.499 76v-255c0 -13.333 -4.33301 -24.333 -13 -33s-19.5 -13 -32.5 -13 +s-23.833 4.33301 -32.5 13s-13 19.667 -13 33v659c0 12.667 4.33301 23.334 13 32.001s19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.334 13 -32.001v-26zM169.999 150c45.333 -50 97.999 -75 157.999 -75c76 0 126.667 34 152 102c8 22.667 12 48.667 12 78 +c0 57.333 -15.333 102.333 -46 135c-29.333 30 -68.666 45 -117.999 45c-60 0 -112.667 -25 -158 -75v-210z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="631" +d="M461 66c-49.333 -50.667 -106.333 -76 -171 -76c-64 0 -119.333 22.667 -166 68c-50.667 50 -76 115.667 -76 197c0 80 25.333 145.333 76 196c46 46 101.333 69 166 69s121.667 -25.333 171 -76v26c0 12.667 4.33301 23.334 13 32.001s19.5 13 32.5 13 +s23.833 -4.33301 32.5 -13s13 -19.334 13 -32.001v-659c0 -13.333 -4.33301 -24.333 -13 -33s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.667 -13 33v255zM461 360c-45.333 50 -98 75 -158 75c-76 0 -126.333 -34 -151 -102 +c-8.66699 -22.667 -13 -48.667 -13 -78c0 -57.333 15.667 -102.333 47 -135c28.667 -30 67.667 -45 117 -45c60 0 112.667 25 158 75v210z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="387" +d="M170 426c46.667 62.667 98.998 94 156.998 94h5c12.667 0 23.167 -4.33301 31.5 -13s12.5 -19.5 12.5 -32.5s-4.33301 -23.333 -13 -31s-19.667 -11.5 -33 -11.5h-5c-33.333 0 -63.166 -8.16699 -89.499 -24.5s-48.166 -37.5 -65.499 -63.5v-304 +c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v429c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-43z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="480" +d="M241 74c74 0 111 23.668 111 71.001c0 14.667 -7.33301 25.834 -22 33.501s-33.167 14.5 -55.5 20.5s-46.5 12.167 -72.5 18.5s-50.167 15.166 -72.5 26.499s-40.833 26.166 -55.5 44.499s-22 40.833 -22 67.5s4 49.667 12 69s20 36 36 50c35.333 30 84.333 45 147 45 +c50 0 98.333 -8.33301 145 -25c9.33301 -3.33301 16.5 -8.66602 21.5 -15.999s7.5 -15.5 7.5 -24.5s-3.83301 -17.5 -11.5 -25.5s-15.167 -12 -22.5 -12s-16.333 1.66699 -27 5c-32 10 -67 15 -105 15s-66.833 -6.66699 -86.5 -20s-29.5 -29.333 -29.5 -48 +s7.5 -32.5 22.5 -41.5s33.5 -16.5 55.5 -22.5s46.167 -12 72.5 -18s50.5 -14.333 72.5 -25c52 -26.667 78 -68 78 -124c0 -42.667 -16 -77.334 -48 -104.001c-34.667 -29.333 -83 -44 -145 -44c-67.333 0 -128 15 -182 45c-11.333 8 -17 18 -17 30s3.66699 22.167 11 30.5 +s15.333 12.5 24 12.5s19 -2.66699 31 -8c38.667 -17.333 81 -26 127 -26z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="384" +d="M303.5 74.5c7.66699 3 15.998 4.49805 24.998 4.49805s17.167 -3.33301 24.5 -10s11 -16.667 11 -30s-6.66699 -23 -20 -29c-28.667 -13.333 -53.167 -20 -73.5 -20s-38.833 1 -55.5 3s-32.667 7.66699 -48 17c-36.667 21.333 -55 58.666 -55 111.999v310h-71 +c-12.667 0 -19 6.33301 -19 19c0 6 3 11.667 9 17l136 133c6 6 11.667 9 17 9s9.83301 -2 13.5 -6s5.5 -8.66699 5.5 -14v-80h113c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-113v-302 +c0 -25.333 7.66699 -42.666 23 -51.999c8.66699 -5.33301 21.834 -8 39.501 -8s30.334 1.5 38.001 4.5z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="610" +d="M276 74c58.667 0 113.332 32 163.999 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33 +v41c-26.667 -28 -49.667 -47.667 -69 -59c-38 -22 -74.167 -33 -108.5 -33s-62.5 5.16699 -84.5 15.5s-40.667 24.5 -56 42.5c-31.333 36.667 -47 82.667 -47 138v284c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001 +v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="530" +d="M418 489c8 17.333 22.6689 26 44.002 26c10.667 0 20.334 -4.5 29.001 -13.5s13 -17.5 13 -25.5c0 -10.667 -1.66699 -20 -5 -28l-174 -416c-4.66699 -10 -11.834 -18.667 -21.501 -26s-20.834 -11 -33.501 -11h-10c-12.667 0 -23.834 3.66699 -33.501 11 +s-16.834 16 -21.501 26l-174 416c-3.33301 8 -5 16.667 -5 26s4.33301 18.5 13 27.5s18.334 13.5 29.001 13.5c21.333 0 36 -8.66699 44 -26l153 -388z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="785" +d="M675 488c5.33301 18 19.6699 27 43.0029 27c11.333 0 21.333 -4.33301 30 -13s13 -17.5 13 -26.5s-1 -16.5 -3 -22.5l-142 -416c-4 -11.333 -11.333 -21.166 -22 -29.499s-22.667 -12.5 -36 -12.5s-25.333 4.16699 -36 12.5s-18.334 18.5 -23.001 30.5l-106 331 +l-106 -331c-4.66699 -12 -12.334 -22.167 -23.001 -30.5s-22.667 -12.5 -36 -12.5s-25.333 4.16699 -36 12.5s-18 18.166 -22 29.499l-142 416c-2 6 -3 13.5 -3 22.5s4.33301 17.833 13 26.5s18.667 13 30 13c23.333 0 37.666 -9 42.999 -27l117 -385l116 376 +c3.33301 10.667 9.5 19.334 18.5 26.001s19.167 10 30.5 10s21.5 -3.33301 30.5 -10s15.167 -15.334 18.5 -26.001l116 -376z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="542" +d="M480 70c7.33301 -8.66699 11.001 -18.5 11.001 -29.5s-3.83301 -21.333 -11.5 -31s-19 -14.5 -34 -14.5s-26.833 6 -35.5 18l-142 170l-134 -168c-10 -13.333 -22.333 -20 -37 -20s-25.834 4.16699 -33.501 12.5s-11.5 18.5 -11.5 30.5s3.33301 22.333 10 31l155 183 +l-155 189c-7.33301 9.33301 -11 20 -11 32s4.33301 22 13 30s20.167 12 34.5 12s25.5 -5.66699 33.5 -17l140 -173l139 173c8 11.333 19.167 17 33.5 17s25.833 -4.16699 34.5 -12.5s13 -18 13 -29s-3.33301 -20.833 -10 -29.5l-158 -186z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="533" +d="M496 501.5c8.66699 -9 12.998 -18.333 12.998 -28s-1 -16.834 -3 -21.501l-273 -656c-8.66699 -20.667 -22.667 -31 -42 -31c-12 0 -22.167 4.33301 -30.5 13s-12.5 17.334 -12.5 26.001s1 15.667 3 21l65 167l-188 458c-2.66699 6.66699 -4 14.667 -4 24 +s4.33301 18.5 13 27.5s18.334 13.5 29.001 13.5c22 0 37 -9.33301 45 -28l154 -382l157 380c8.66699 20 22.667 30 42 30c12.667 0 23.334 -4.5 32.001 -13.5z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="499" +d="M457 42c0 -12 -4.16797 -22.002 -12.501 -30.002s-18.5 -12 -30.5 -12h-312c-17.333 0 -32.166 4.5 -44.499 13.5s-18.5 21.667 -18.5 38s5.33301 30.5 16 42.5l288 331h-253c-12 0 -22 4 -30 12s-12 18 -12 30s4 22.167 12 30.5s18 12.5 30 12.5h303 +c17.333 0 31.333 -5.16699 42 -15.5s16 -23.666 16 -39.999s-4.66699 -30.166 -14 -41.499l-280 -328h257c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="344" +d="M117 307c60 -22 90.002 -61.3311 90.002 -117.998v-222c0 -12.667 2.33301 -21.334 7 -26.001c9.33301 -10.667 26.666 -16 51.999 -16h15c9.33301 0 17.5 -3.5 24.5 -10.5s10.5 -15.167 10.5 -24.5s-3.5 -17.5 -10.5 -24.5s-15.167 -10.5 -24.5 -10.5h-12 +c-44.667 0 -78 7.66699 -100 23c-26.667 19.333 -40 51.666 -40 96.999v211c0 21.333 -3.66699 36.333 -11 45c-14 16.667 -41 28.667 -81 36c-22.667 4 -34 17.333 -34 40s11.167 36 33.5 40s39.666 8.83301 51.999 14.5s21.5 11.834 27.5 18.501 +c8.66699 10.667 13 26.667 13 48v211c0 65.333 28.333 103.666 85 114.999c16.667 3.33301 35 5 55 5h12c9.33301 0 17.5 -3.5 24.5 -10.5s10.5 -15.167 10.5 -24.5s-3.5 -17.5 -10.5 -24.5s-15.167 -10.5 -24.5 -10.5h-15c-36 0 -55.333 -9.66699 -58 -29 +c-0.666992 -4.66699 -1 -9 -1 -13v-222c0 -56.667 -30 -96 -90 -118z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="253" +d="M126 741c11.333 0 21 -4 29 -12s12 -17.667 12 -29v-856c0 -11.333 -4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5s-20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5v856c0 11.333 3.83301 21 11.5 29s17.167 12 28.5 12z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="344" +d="M227 307c-60 22 -90.002 61.3311 -90.002 117.998v222c0 12.667 -2.33301 21.334 -7 26.001c-9.33301 10.667 -26.666 16 -51.999 16h-15c-9.33301 0 -17.5 3.5 -24.5 10.5s-10.5 15.167 -10.5 24.5s3.5 17.5 10.5 24.5s15.167 10.5 24.5 10.5h12 +c44.667 0 78 -7.66699 100 -23c26.667 -19.333 40 -51.666 40 -96.999v-211c0 -21.333 3.66699 -36.333 11 -45c14 -16.667 41 -28.667 81 -36c22.667 -4 34 -17.333 34 -40s-11.167 -36 -33.5 -40s-39.666 -8.83301 -51.999 -14.5s-21.5 -11.834 -27.5 -18.501 +c-8.66699 -10.667 -13 -26.667 -13 -48v-211c0 -65.333 -28.333 -103.666 -85 -114.999c-16.667 -3.33301 -35 -5 -55 -5h-12c-9.33301 0 -17.5 3.5 -24.5 10.5s-10.5 15.167 -10.5 24.5s3.5 17.5 10.5 24.5s15.167 10.5 24.5 10.5h15c36 0 55.333 9.66699 58 29 +c0.666992 4.66699 1 9 1 13v222c0 56.667 30 96 90 118z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="638" +d="M506.5 326c3 7.33301 7 15.833 12 25.5s12.167 14.5 21.5 14.5c18.667 0 28 -7.66699 28 -23c0 -2.66699 -0.333008 -5.33398 -1 -8.00098c-8 -44 -23.5 -76.5 -46.5 -97.5s-48.833 -31.5 -77.5 -31.5s-54 4 -76 12s-42.833 16.667 -62.5 26l-56.5 26 +c-18 8 -36.667 12 -56 12c-34.667 0 -57.334 -18 -68.001 -54c-3.33301 -12.667 -10 -19 -20 -19s-17.5 2.5 -22.5 7.5s-7.5 13.333 -7.5 25s3.33301 25.334 10 41.001s16 29.5 28 41.5c26.667 28.667 54.834 43 84.501 43s55.667 -4 78 -12s43.333 -16.667 63 -26l56.5 -26 +c18 -8 34.667 -12 50 -12s26.5 1.5 33.5 4.5s12.833 7 17.5 12s8.5 11.167 11.5 18.5z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="260" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="259" +d="M131 317.012c-21.333 0 -32.668 -9.66602 -34.001 -28.998l-18 -329.98v-98.9932c0 -14.666 5 -26.999 15 -36.998s22.333 -14.999 37 -14.999s26.834 5 36.501 14.999s14.5 22.332 14.5 36.998v98.9932l-18 329.98c-1.33301 19.332 -12.333 28.998 -33 28.998z +M89.498 412.506c11.667 -11.666 25.667 -17.499 42 -17.499s30.333 5.83301 42 17.499s17.5 25.665 17.5 41.9971c0 16.333 -5.83301 30.332 -17.5 41.998s-25.667 17.499 -42 17.499s-30.333 -5.83301 -42 -17.499s-17.5 -25.665 -17.5 -41.998 +c0 -16.332 5.83301 -30.3311 17.5 -41.9971z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="551" +d="M209.5 502c32.333 12 61.9951 17.999 88.9951 17.999s48.5 -1.33301 64.5 -4l29 85c4.66699 12.667 12.5 19 23.5 19s19 -3 24 -9s7.5 -11.5 7.5 -16.5s-0.666992 -9.5 -2 -13.5l-27 -80c20.667 -7.33301 39.334 -17 56.001 -29c13.333 -8.66699 20 -19 20 -31 +s-3.66699 -22.333 -11 -31s-14.666 -13 -21.999 -13c-11.333 0 -20.333 2 -27 6l-43 20l-118 -344c12.667 -2.66699 30 -4 52 -4s41.333 3 58 9s30.334 12 41.001 18c14 7.33301 25.5 11 34.5 11s17.167 -4.33301 24.5 -13s11 -19 11 -31s-7.66699 -23 -23 -33 +c-47.333 -30.667 -100.666 -46 -159.999 -46c-21.333 0 -43.333 2.66699 -66 8l-35 -103c-4 -12 -11.5 -18 -22.5 -18s-19.167 2.83301 -24.5 8.5s-8 10.834 -8 15.501c0 7.33301 1 13 3 17l33 97c-43.333 19.333 -78.666 49.333 -105.999 90s-41 90.667 -41 150 +c0 80.667 26.667 145.667 80 195c24.667 22.667 53.167 40 85.5 52zM134.995 254.999c0 -74.667 28.334 -127 85.001 -157l115 336c-2.66699 0.666992 -5.33398 1 -8.00098 1h-8c-58.667 0 -104 -16.5 -136 -49.5s-48 -76.5 -48 -130.5z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="604" +d="M223 118l24.998 1c25.333 0 52.333 -4.66699 81 -14s50.667 -16.166 66 -20.499s30.333 -6.5 45 -6.5c23.333 0 40.666 2 51.999 6c18 6 30.667 9 38 9s15 -3.83301 23 -11.5s12 -18.167 12 -31.5c0 -22.667 -24.333 -40.334 -73 -53.001 +c-18 -4.66699 -37.167 -7 -57.5 -7s-38.166 2.33301 -53.499 7s-30.333 9.66699 -45 15c-37.333 15.333 -68.666 23 -93.999 23c-41.333 0 -79 -11.333 -113 -34c-7.33301 -5.33301 -15.5 -8 -24.5 -8s-17.167 3.5 -24.5 10.5s-11 16 -11 27s5 21 15 30s20.5 20.5 31.5 34.5 +s20.833 29.667 29.5 47c20 38.667 30 76.334 30 113.001c0 17.333 -2 34.666 -6 51.999h-108c-14.667 0 -22 7.33301 -22 22c0 6.66699 2 12.167 6 16.5s9.33301 6.5 16 6.5h96l-21.5 69.5c-7 23.667 -10.5 51.167 -10.5 82.5s5.83301 59.666 17.5 84.999s28.167 47 49.5 65 +c44.667 36 103.334 54 176.001 54c50 0 98 -9.66699 144 -29c20 -8 30 -21.333 30 -40c0 -11.333 -3.83301 -21.166 -11.5 -29.499s-15.5 -12.5 -23.5 -12.5c-12 0 -23.667 2 -35 6c-32 11.333 -64.5 17 -97.5 17s-59.5 -3.33301 -79.5 -10s-35.667 -15.334 -47 -26.001 +c-21.333 -20 -32 -44.5 -32 -73.5s4 -56.167 12 -81.5s15.667 -51 23 -77h177c6.66699 0 12.167 -2.16699 16.5 -6.5s6.5 -9.83301 6.5 -16.5s-2.16699 -12 -6.5 -16s-9.83301 -6 -16.5 -6h-167c2.66699 -13.333 4 -28.666 4 -45.999c0 -51.333 -14 -99 -42 -143z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="668" +d="M334 112c-51.333 0 -97.666 15 -138.999 45l-66 -65c-8.66699 -7.33301 -18 -11 -28 -11s-18.333 3.66699 -25 11s-10 16 -10 26s3.66699 18.667 11 26l65 65c-30 42.667 -45 89.334 -45 140.001s15 97.334 45 140.001l-65 65c-7.33301 7.33301 -11 16 -11 26 +s3.33301 18.667 10 26s14 11 22 11c12 0 22.333 -3.66699 31 -11l66 -65c41.333 30 87.666 45 138.999 45s97.666 -15 138.999 -45l66 65c8.66699 7.33301 18 11 28 11s18.333 -3.66699 25 -11s10 -16 10 -26s-3.66699 -18.667 -11 -26l-65 -65 +c30 -42.667 45 -89.334 45 -140.001s-15 -97.334 -45 -140.001l65 -65c7.33301 -7.33301 11 -16 11 -26s-3.33301 -18.667 -10 -26s-14 -11 -22 -11c-12 0 -22.333 3.66699 -31 11l-66 65c-41.333 -30 -87.666 -45 -138.999 -45zM334 505 +c-42.667 0 -79.334 -15.333 -110.001 -46s-46 -67.334 -46 -110.001s15.333 -79.334 46 -110.001s67.334 -46 110.001 -46s79.334 15.333 110.001 46s46 67.334 46 110.001s-15.333 79.334 -46 110.001s-67.334 46 -110.001 46z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="658" +d="M329 381l173.001 303c10.667 18.667 23.834 28 39.501 28s28.167 -4.33301 37.5 -13s14 -18.667 14 -30s-2.66699 -21.333 -8 -30l-168 -274h98c10.667 0 19.5 -3.66699 26.5 -11s10.5 -16.333 10.5 -27s-3.33301 -19.5 -10 -26.5s-15.667 -10.5 -27 -10.5h-141v-91h141 +c10.667 0 19.5 -3.66699 26.5 -11s10.5 -16.333 10.5 -27s-3.33301 -19.5 -10 -26.5s-15.667 -10.5 -27 -10.5h-141v-85c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.5 -13 -31.5 -13s-22.5 4.33301 -31.5 13s-13.5 19.334 -13.5 32.001v85h-141 +c-11.333 0 -20.333 3.5 -27 10.5s-10 15.833 -10 26.5s3.5 19.667 10.5 27s15.833 11 26.5 11h141v91h-141c-11.333 0 -20.333 3.5 -27 10.5s-10 15.833 -10 26.5s3.5 19.667 10.5 27s15.833 11 26.5 11h98l-168 274c-5.33301 8.66699 -8 18.667 -8 30s4.66699 21.333 14 30 +s20.166 13 32.499 13s21.666 -2.66699 27.999 -8s11.833 -12 16.5 -20z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="529" +d="M155 439c-42.667 30.667 -63.999 71.001 -63.999 121.001c0 42.667 16.333 77.334 49 104.001c34 29.333 80.5 44 139.5 44s110.5 -9 154.5 -27c18 -8 27 -21 27 -39c0 -10.667 -4.16699 -20 -12.5 -28s-16.5 -12 -24.5 -12s-17.333 2 -28 6 +c-27.333 10.667 -62.666 16 -105.999 16c-75.333 0 -113 -23.333 -113 -70c0 -16.667 7.5 -30.334 22.5 -41.001s33.667 -20.667 56 -30s46.5 -18.833 72.5 -28.5s50 -21.5 72 -35.5c52.667 -32.667 79 -75 79 -127c0 -49.333 -20.667 -86 -62 -110 +c-12 -7.33301 -24.333 -13 -37 -17c43.333 -30 65 -70 65 -120c0 -42.667 -16.333 -77.667 -49 -105c-34 -28.667 -82 -43 -144 -43c-78 0 -141 15 -189 45c-10.667 6.66699 -16 16.667 -16 30s3.66699 23.833 11 31.5s14.666 11.5 21.999 11.5c8 0 17 -2 27 -6 +c37.333 -18.667 83.666 -28 138.999 -28c75.333 0 113 23.333 113 70c0 16 -7.5 29.5 -22.5 40.5s-33.667 21.167 -56 30.5s-46.5 18.833 -72.5 28.5s-50 21.5 -72 35.5c-52.667 32 -79 74.333 -79 127c0 49.333 20.333 85.666 61 108.999c12 7.33301 24.333 13 37 17z +M215.001 407.001c-49.333 -12.667 -73.998 -41.9971 -73.998 -87.9971c0 -28.667 19.333 -52.667 58 -72c17.333 -8.66699 36.5 -16.834 57.5 -24.501s42.167 -15.834 63.5 -24.501c50 12.667 75 42 75 88c0 28 -19.667 52 -59 72 +c-16.667 8.66699 -35.834 16.667 -57.501 24s-42.834 15.666 -63.501 24.999z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="400" +d="M114 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM283 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="819" +d="M410 -9c-49.333 0 -95.833 9.33301 -139.5 28s-81.834 44.334 -114.501 77.001s-58.334 70.667 -77.001 114s-28 89.666 -28 138.999s9.33301 95.666 28 138.999s44.334 81.333 77.001 114s70.834 58.334 114.501 77.001s90.167 28 139.5 28s95.833 -9.33301 139.5 -28 +s81.667 -44.334 114 -77.001s58 -70.667 77 -114s28.5 -89.666 28.5 -138.999s-9.5 -95.666 -28.5 -138.999s-44.667 -81.333 -77 -114s-70.333 -58.334 -114 -77.001s-90.167 -28 -139.5 -28zM410 655c-42.667 0 -82.5 -8 -119.5 -24s-69.5 -38 -97.5 -66 +c-60 -60 -90 -132 -90 -216s30 -156 90 -216s132 -90 216 -90c85.333 0 158 30 218 90s90 132 90 216s-30 156 -90 216s-132.333 90 -217 90zM585 251c-16 -32.667 -38.1699 -58.332 -66.5029 -76.999s-59.666 -28 -93.999 -28s-63.333 4.83301 -87 14.5 +s-44.167 23.5 -61.5 41.5c-35.333 36.667 -53 85.667 -53 147s17.833 110.5 53.5 147.5s82.167 55.5 139.5 55.5c40 0 74.167 -9.33301 102.5 -28s50.5 -44.334 66.5 -77.001c2 -4 3 -9.5 3 -16.5s-3 -13.5 -9 -19.5s-12.667 -9 -20 -9s-13.5 1.33301 -18.5 4 +s-11.667 11.167 -20 25.5s-21.166 27.833 -38.499 40.5s-38 19 -62 19s-43.833 -3.83301 -59.5 -11.5s-28.5 -18.167 -38.5 -31.5c-21.333 -26 -32 -59 -32 -99s10.667 -73 32 -99c22 -28.667 53.333 -43 94 -43c46.667 0 83 22.333 109 67 +c8.66699 14.667 18.334 22 29.001 22s19 -3 25 -9s9 -12.5 9 -19.5s-1 -12.5 -3 -16.5z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="485" +d="M377 285c7.33301 0 13.833 -2.83301 19.5 -8.5s8.5 -12.167 8.5 -19.5s-2.83301 -13.833 -8.5 -19.5s-12.167 -8.5 -19.5 -8.5h-283c-7.33301 0 -13.833 2.83301 -19.5 8.5s-8.5 12.167 -8.5 19.5s2.83301 13.833 8.5 19.5s12.167 8.5 19.5 8.5h283zM318 387 +c-28.667 -32 -68.999 -47.998 -120.999 -47.998c-31.333 0 -58.333 9.66699 -81 29c-23.333 19.333 -35 45.5 -35 78.5s13.167 59 39.5 78s66.833 28.5 121.5 28.5h76v2c0 30.667 -7.16699 52.5 -21.5 65.5s-33.166 19.5 -56.499 19.5 +c-36.667 0 -69.334 -5.33301 -98.001 -16c-4 -1.33301 -9 -2 -15 -2s-12 3.16699 -18 9.5s-9 13.166 -9 20.499c0 15.333 8 26 24 32c40.667 16 77.167 24 109.5 24s57.666 -4 75.999 -12s33.5 -18.667 45.5 -32c23.333 -24.667 35 -56.334 35 -95.001v-191 +c0 -10 -3.5 -18.5 -10.5 -25.5s-15.5 -10.5 -25.5 -10.5s-18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5v9zM250.001 499.002c-64.667 0 -97.001 -15.668 -97.001 -47.001c0 -13.333 4.83301 -24.666 14.5 -33.999s25.834 -14 48.501 -14c40 0 74 15.667 102 47v48h-68z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="585" +d="M294 85c6 -7.33301 9 -16.333 9 -27s-3.66699 -19.667 -11 -27s-17 -11 -29 -11s-21 3.66699 -27 11l-164 181c-12 12 -18 26.333 -18 43s6 31 18 43l164 181c6 7.33301 15 11 27 11s21.667 -3.66699 29 -11s11 -16.5 11 -27.5s-3 -19.833 -9 -26.5l-160 -170zM502 85 +c6 -7.33301 9 -16.333 9 -27s-3.66699 -19.667 -11 -27s-17 -11 -29 -11s-21 3.66699 -27 11l-164 181c-12 12 -18 26.333 -18 43s6 31 18 43l164 181c6 7.33301 15 11 27 11s21.667 -3.66699 29 -11s11 -16.5 11 -27.5s-3 -19.833 -9 -26.5l-160 -170z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="579" +d="M483.5 370.5c8.33301 -8.33301 12.501 -18.167 12.501 -29.5v-136c0 -10.667 -3.66699 -19.5 -11 -26.5s-16.333 -10.5 -27 -10.5s-19.5 3.5 -26.5 10.5s-10.5 15.833 -10.5 26.5v106h-312c-10 0 -18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5s3.5 18.5 10.5 25.5 +s15.5 10.5 25.5 10.5h345c11.333 0 21.166 -4.16699 29.499 -12.5z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="819" +d="M410 708c49.333 0 95.833 -9.5 139.5 -28.5s81.667 -44.667 114 -77s58 -70.333 77 -114s28.5 -90.167 28.5 -139.5s-9.5 -95.833 -28.5 -139.5s-44.667 -81.834 -77 -114.501s-70.333 -58.334 -114 -77.001s-90.167 -28 -139.5 -28s-95.833 9.33301 -139.5 28 +s-81.834 44.334 -114.501 77.001s-58.334 70.834 -77.001 114.501s-28 90.167 -28 139.5s9.33301 95.833 28 139.5s44.334 81.667 77.001 114s70.834 58 114.501 77s90.167 28.5 139.5 28.5zM410 42c42 0 81.667 8 119 24s70 38 98 66c60 60 90 132.667 90 218 +c0 84 -30 156 -90 216s-132.667 90 -218 90c-84 0 -156 -30 -216 -90s-90 -132 -90 -216c0 -85.333 30 -158 90 -218s132.333 -90 217 -90zM545.5 513.5c25 -23 37.498 -49.3359 37.498 -79.0029s-7.5 -52.5 -22.5 -68.5s-32.167 -27.667 -51.5 -35 +c16 -5.33301 31.5 -17.666 46.5 -36.999s22.5 -48.666 22.5 -87.999v-27c0 -9.33301 -3.33301 -17.333 -10 -24s-14.667 -10 -24 -10s-17.333 3.33301 -24 10s-10 14.667 -10 24v18c0 28.667 -2.66699 49.334 -8 62.001c-12 26.667 -33.667 40 -65 40h-109v-121 +c0 -9.33301 -3.33301 -17.166 -10 -23.499s-14.667 -9.5 -24 -9.5s-17.166 3.16699 -23.499 9.5s-9.5 14.166 -9.5 23.499v324c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h120c54.667 0 94.5 -11.5 119.5 -34.5zM422.998 357.997 +c28 0 50.668 5.66699 68.001 17s26 27.5 26 48.5s-6.83301 37.333 -20.5 49s-38.834 17.5 -75.501 17.5h-93v-132h95z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="312" +d="M293.5 639.5c5.66699 -5.66699 8.5 -12.834 8.5 -21.501s-2.83301 -15.834 -8.5 -21.501s-12.834 -8.5 -21.501 -8.5h-234c-8.66699 0 -15.834 2.83301 -21.501 8.5s-8.5 12.834 -8.5 21.501s2.83301 15.834 8.5 21.501s12.834 8.5 21.501 8.5h234 +c8.66699 0 15.834 -2.83301 21.501 -8.5z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="378" +d="M189 708c38 0 70.333 -13.333 97 -40s40 -59 40 -97c0 -38.667 -13.333 -71 -40 -97c-28 -26.667 -60.333 -40 -97 -40c-37.333 0 -69.5 13.5 -96.5 40.5s-40.5 59.167 -40.5 96.5c0 36.667 13.333 69 40 97c26 26.667 58.333 40 97 40zM189 486 +c23.333 0 43.333 8.33301 60 25s25 36.667 25 60s-8.33301 43.333 -25 60s-36.667 25 -60 25s-43.333 -8.33301 -60 -25s-25 -36.667 -25 -60s8.33301 -43.333 25 -60s36.667 -25 60 -25z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="606" +d="M505 77c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.5 -11 -27.5s-16.666 -10.5 -27.999 -10.5h-405c-11.333 0 -20.5 3.5 -27.5 10.5s-10.5 16.167 -10.5 27.5s3.5 20.666 10.5 27.999s16.167 11 27.5 11h405zM100 342 +c-11.333 0 -20.5 3.5 -27.5 10.5s-10.5 16.167 -10.5 27.5s3.5 20.666 10.5 27.999s16.167 11 27.5 11h164v158c0 11.333 3.66699 20.666 11 27.999s16.666 11 27.999 11s20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999v-158h163c11.333 0 20.666 -3.66699 27.999 -11 +s11 -16.666 11 -27.999s-3.66699 -20.5 -11 -27.5s-16.666 -10.5 -27.999 -10.5h-163v-158c0 -11.333 -3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11s-20.666 3.66699 -27.999 11s-11 16.666 -11 27.999v158h-164z" /> + <glyph glyph-name="twosuperior" unicode="²" horiz-adv-x="370" +d="M318.5 501.5c5.66699 -5.66699 8.5 -12.832 8.5 -21.499s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-220c-11.333 0 -20.666 4.16699 -27.999 12.5s-11 19.666 -11 33.999s5.5 29.166 16.5 44.499s24.667 29.5 41 42.5s34.166 25.5 53.499 37.5 +s37.166 23.667 53.499 35s30 22.833 41 34.5s16.5 25 16.5 40s-5.83301 28.333 -17.5 40s-29.834 17.5 -54.501 17.5c-39.333 0 -73 -7.33301 -101 -22c-4 -2 -9.16699 -3 -15.5 -3s-12.166 2.5 -17.499 7.5s-8 12.5 -8 22.5s6 18.667 18 26c34 20 73.333 30 118 30 +s79.334 -11.167 104.001 -33.5s37 -50.166 37 -83.499c0 -46 -31.667 -90.333 -95 -133l-49 -34c-39.333 -25.333 -63.333 -44 -72 -56h190c8.66699 0 15.834 -2.83301 21.501 -8.5z" /> + <glyph glyph-name="threesuperior" unicode="³" horiz-adv-x="370" +d="M141 681c70 0 105.001 19.3281 105.001 57.9951c0 25.333 -17 41 -51 47c-9.33301 2 -21 3 -35 3c-26.667 0 -52.667 -6.33301 -78 -19c-4 -2 -9 -3 -15 -3s-11.833 2.5 -17.5 7.5s-8.5 12.167 -8.5 21.5s7 18 21 26c36 18.667 75.5 28 118.5 28s75 -10.333 96 -31 +s31.5 -45 31.5 -73s-6.83301 -49 -20.5 -63s-27.5 -23.667 -41.5 -29c50.667 -15.333 76 -47.666 76 -96.999c0 -50.667 -26 -85 -78 -103c-18.667 -6 -41.334 -9 -68.001 -9c-52 0 -93 8.33301 -123 25c-11.333 6.66699 -17 14.834 -17 24.501s3 17.334 9 23.001 +s11.333 8.5 16 8.5c6 0 12.667 -1.33301 20 -4c34 -10 62.667 -15 86 -15c61.333 0 92 17.333 92 52c0 41.333 -37.333 62 -112 62h-11c-8.66699 0 -15.834 2.83301 -21.501 8.5s-8.5 12.834 -8.5 21.501s2.83301 15.834 8.5 21.501s12.834 8.5 21.501 8.5h5z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="240" +d="M106 703c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="mu" unicode="µ" horiz-adv-x="604" +d="M285 74c58.667 0 113.333 32 164 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33v41 +c-28 -30 -51 -50 -69 -60c-35.333 -21.333 -71.333 -32 -108 -32s-69 9 -97 27v-190c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v643c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13 +s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="732" +d="M676.5 686.5c7.66699 -7.66699 11.498 -17.168 11.498 -28.501s-3.83301 -20.666 -11.5 -27.999s-17.167 -11 -28.5 -11h-46v-803c0 -11.333 -3.83301 -20.833 -11.5 -28.5s-17.167 -11.5 -28.5 -11.5s-20.666 3.83301 -27.999 11.5s-11 17.167 -11 28.5v803h-112v-803 +c0 -11.333 -3.83301 -20.833 -11.5 -28.5s-17.167 -11.5 -28.5 -11.5s-20.666 3.83301 -27.999 11.5s-11 17.167 -11 28.5v368h-36c-71.333 0 -132 25 -182 75s-75 110.667 -75 182s25 132 75 182s110.667 75 182 75h352c11.333 0 20.833 -3.83301 28.5 -11.5z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="260" +d="M174.5 327.5c11 -11 16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z +" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="307" +d="M133 -178c38 0 57.002 15.333 57.002 46c0 10 -3.5 17.667 -10.5 23s-14.833 8 -23.5 8c-16 0 -28 -2 -36 -6c-10.667 -5.33301 -17.834 -8 -21.501 -8s-7.33398 1.5 -11.001 4.5s-5.5 7 -5.5 12s1.33301 9.5 4 13.5l64 102h42l-46 -80c10.667 2.66699 24.667 4 42 4 +s33.166 -6.33301 47.499 -19s21.5 -29.667 21.5 -51c0 -61.333 -37 -92 -111 -92c-32 0 -62 8.66699 -90 26c-7.33301 3.33301 -11 9 -11 17c0 13.333 6.33301 20 19 20c2.66699 0 6 -1 10 -3c20.667 -11.333 40.334 -17 59.001 -17z" /> + <glyph glyph-name="onesuperior" unicode="¹" horiz-adv-x="370" +d="M303.5 501.5c5.66699 -5.66699 8.49902 -12.834 8.49902 -21.501s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-174c-8.66699 0 -15.667 2.66699 -21 8s-8 12.333 -8 21s2.66699 15.834 8 21.501s12.333 8.5 21 8.5h60v265l-45 -22 +c-5.33301 -2.66699 -11.166 -4 -17.499 -4s-12.5 2.83301 -18.5 8.5s-9 13.667 -9 24s6.33301 18.833 19 25.5l72 37c6.66699 3.33301 15 5 25 5s18.833 -4.16699 26.5 -12.5s11.5 -18.5 11.5 -30.5v-296h50c8.66699 0 15.834 -2.83301 21.501 -8.5z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="514" +d="M256 708c27.333 0 51.999 -4.5 73.999 -13.5s40.667 -21.5 56 -37.5c32.667 -33.333 49 -77.666 49 -132.999s-16.333 -100 -49 -134s-75.667 -51 -129 -51s-96.333 17 -129 51s-49 78.667 -49 134s16.333 99.666 49 132.999c32.667 34 75.334 51 128.001 51z +M256.999 403c44.667 0 76.667 22 96 66c6.66699 15.333 10 34 10 56c0 39.333 -11.667 70.333 -35 93c-18.667 18 -42.334 27 -71.001 27c-28 0 -51.667 -9 -71 -27c-23.333 -22 -35 -53 -35 -93c0 -40.667 11.667 -72 35 -94c18.667 -18.667 42.334 -28 71.001 -28z +M415.999 285c7.33301 0 13.833 -2.83301 19.5 -8.5s8.5 -12.167 8.5 -19.5s-2.83301 -13.833 -8.5 -19.5s-12.167 -8.5 -19.5 -8.5h-318c-7.33301 0 -13.833 2.83301 -19.5 8.5s-8.5 12.167 -8.5 19.5s2.83301 13.833 8.5 19.5s12.167 8.5 19.5 8.5h318z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="585" +d="M293 31c-7.33301 7.33301 -11 16.333 -11 27s3 19.667 9 27l160 170l-160 170c-6 6.66699 -9 15.5 -9 26.5s3.66699 20.167 11 27.5s17 11 29 11s21 -3.66699 27 -11l164 -181c12 -12 18 -26.333 18 -43s-6 -31 -18 -43l-164 -181c-6 -7.33301 -15 -11 -27 -11 +s-21.667 3.66699 -29 11zM85 31c-7.33301 7.33301 -11 16.333 -11 27s3 19.667 9 27l160 170l-160 170c-6 6.66699 -9 15.5 -9 26.5s3.66699 20.167 11 27.5s17 11 29 11s21 -3.66699 27 -11l164 -181c12 -12 18 -26.333 18 -43s-6 -31 -18 -43l-164 -181 +c-6 -7.33301 -15 -11 -27 -11s-21.667 3.66699 -29 11z" /> + <glyph glyph-name="onequarter" unicode="¼" horiz-adv-x="940" +d="M837 155c8.66699 0 15.833 -2.83301 21.5 -8.5s8.5 -12.834 8.5 -21.501s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-36v-69c0 -9.33301 -3 -17 -9 -23s-13.667 -9 -23 -9s-17 3 -23 9s-9 13.667 -9 23v69h-156c-11.333 0 -21.166 4.16699 -29.499 12.5 +s-12.5 17.833 -12.5 28.5s3.66699 20.667 11 30l165 208c12 14 24 21 36 21h8c12 0 22 -4.16699 30 -12.5s12 -18.166 12 -29.499v-199h36zM736.999 155v162l-127 -162h127zM289.999 -10c-6 -9.33301 -14.5 -14 -25.5 -14s-19.833 3.16699 -26.5 9.5s-10 13.333 -10 21 +s1.66699 14.834 5 21.501l414 682c6 9.33301 14.5 14 25.5 14s19.833 -3.16699 26.5 -9.5s10 -13.333 10 -21s-1.66699 -14.834 -5 -21.501zM288.999 369c8.66699 0 15.833 -2.83301 21.5 -8.5s8.5 -12.834 8.5 -21.501s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8 +h-174c-8.66699 0 -15.667 2.66699 -21 8s-8 12.333 -8 21s2.66699 15.834 8 21.501s12.333 8.5 21 8.5h60v265l-45 -22c-5.33301 -2.66699 -11.166 -4 -17.499 -4s-12.5 2.83301 -18.5 8.5s-9 13.667 -9 24s6.33301 18.833 19 25.5l72 37c6.66699 3.33301 15 5 25 5 +s18.833 -4.16699 26.5 -12.5s11.5 -18.5 11.5 -30.5v-296h50z" /> + <glyph glyph-name="onehalf" unicode="½" horiz-adv-x="940" +d="M283 369c8.66699 0 15.833 -2.83301 21.5 -8.5s8.5 -12.834 8.5 -21.501s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-174c-8.66699 0 -15.667 2.66699 -21 8s-8 12.333 -8 21s2.66699 15.834 8 21.501s12.333 8.5 21 8.5h60v265l-45 -22 +c-5.33301 -2.66699 -11.166 -4 -17.499 -4s-12.5 2.83301 -18.5 8.5s-9 13.667 -9 24s6.33301 18.833 19 25.5l72 37c6.66699 3.33301 15 5 25 5s18.833 -4.16699 26.5 -12.5s11.5 -18.5 11.5 -30.5v-296h50zM283.999 -10c-6 -9.33301 -14.5 -14 -25.5 -14 +s-19.833 3.16699 -26.5 9.5s-10 13.333 -10 21s1.66699 14.834 5 21.501l414 682c6 9.33301 14.5 14 25.5 14s19.833 -3.16699 26.5 -9.5s10 -13.333 10 -21s-1.66699 -14.834 -5 -21.501zM834.999 59c8.66699 0 15.834 -2.83105 21.501 -8.49805s8.5 -12.834 8.5 -21.501 +s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-220c-11.333 0 -20.666 4.16699 -27.999 12.5s-11 19.666 -11 33.999s5.5 29.166 16.5 44.499s24.667 29.5 41 42.5s34.166 25.5 53.499 37.5s37.166 23.667 53.499 35s30 22.833 41 34.5s16.5 25 16.5 40 +s-5.83301 28.333 -17.5 40s-29.834 17.5 -54.501 17.5c-39.333 0 -73 -7.33301 -101 -22c-4 -2 -9.16699 -3 -15.5 -3s-12.166 2.5 -17.499 7.5s-8 12.5 -8 22.5s6 18.667 18 26c34 20 73.333 30 118 30s79.334 -11.167 104.001 -33.5s37 -50.166 37 -83.499 +c0 -46 -31.667 -90.667 -95 -134l-49 -32c-39.333 -26 -63.333 -45 -72 -57h190z" /> + <glyph glyph-name="threequarters" unicode="¾" horiz-adv-x="940" +d="M851 155c8.66699 0 15.833 -2.83301 21.5 -8.5s8.5 -12.834 8.5 -21.501s-2.83301 -15.667 -8.5 -21s-12.834 -8 -21.501 -8h-36v-69c0 -9.33301 -3 -17 -9 -23s-13.667 -9 -23 -9s-17 3 -23 9s-9 13.667 -9 23v69h-156c-11.333 0 -21.166 4.16699 -29.499 12.5 +s-12.5 17.833 -12.5 28.5s3.66699 20.667 11 30l165 208c12 14 24 21 36 21h8c12 0 22 -4.16699 30 -12.5s12 -18.166 12 -29.499v-199h36zM750.999 155v162l-127 -162h127zM303.999 -10c-6 -9.33301 -14.5 -14 -25.5 -14s-19.833 3.16699 -26.5 9.5s-10 13.333 -10 21 +s1.66699 14.834 5 21.501l414 682c6 9.33301 14.5 14 25.5 14s19.833 -3.16699 26.5 -9.5s10 -13.333 10 -21s-1.66699 -14.834 -5 -21.501zM167.999 540c70 0 104.999 19.3291 104.999 57.9961c0 25.333 -17 41.333 -51 48c-9.33301 1.33301 -20.666 2 -33.999 2 +c-27.333 0 -53.666 -6.33301 -78.999 -19c-4 -2 -9 -3 -15 -3s-11.833 2.5 -17.5 7.5s-8.5 12.167 -8.5 21.5s7.33301 17.666 22 24.999c35.333 19.333 74.5 29 117.5 29s75 -10.333 96 -31s31.5 -45 31.5 -73s-6.83301 -49 -20.5 -63s-27.5 -23.667 -41.5 -29 +c50.667 -15.333 76 -47.666 76 -96.999c0 -50.667 -26 -84.667 -78 -102c-18.667 -6.66699 -41.334 -10 -68.001 -10c-52 0 -93 8.33301 -123 25c-11.333 6.66699 -17 14.834 -17 24.501s3 17.334 9 23.001s11.333 8.5 16 8.5c6 0 12.667 -1 20 -3 +c34 -10.667 62.667 -16 86 -16c61.333 0 92 17.333 92 52c0 41.333 -37.333 62 -112 62h-11c-8.66699 0 -15.834 2.83301 -21.501 8.5s-8.5 12.834 -8.5 21.501s2.83301 15.834 8.5 21.501s12.834 8.5 21.501 8.5h5z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="488" +d="M130.022 -3.96875c0 -72.6621 47.6641 -108.994 142.991 -108.994c51.9971 0 94.6611 10.999 127.992 32.998c8.66602 5.33301 17.832 7.99902 27.498 7.99902s18.332 -3.83301 25.998 -11.499c7.66699 -7.66602 11.5 -16.499 11.5 -26.498 +c0 -16.666 -8.33301 -29.999 -24.999 -39.998c-51.9971 -31.998 -110.66 -47.9971 -175.989 -47.9971c-68.6621 0 -122.992 16.999 -162.99 50.9971c-41.3311 34.665 -61.9961 80.6621 -61.9961 137.991c0 59.9971 31.3311 112.994 93.9941 158.991 +c36.665 27.332 62.9971 53.9971 78.9961 79.9961c9.33301 15.332 14 31.1641 14 47.4971c0 16.332 4.5 28.1641 13.499 35.4971s19.498 11 31.4971 11s22.165 -3.83301 30.498 -11.5c8.33301 -7.66602 12.499 -16.832 12.499 -27.498 +c0 -65.9961 -30.998 -122.992 -92.9941 -170.989c-39.9971 -31.998 -65.3291 -55.4971 -75.9951 -70.4961s-15.999 -30.8311 -15.999 -47.4971zM314.511 412.505c-11.666 -11.666 -25.665 -17.499 -41.9971 -17.499c-16.333 0 -30.332 5.83301 -41.998 17.499 +s-17.499 25.665 -17.499 41.9971c0 16.333 5.83301 30.332 17.499 41.998s25.665 17.499 41.998 17.499c16.332 0 30.3311 -5.83301 41.9971 -17.499s17.499 -25.665 17.499 -41.998c0 -16.332 -5.83301 -30.3311 -17.499 -41.9971z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="697" +d="M257 857c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999zM667 60.001 +c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10 +c26.667 0 46 -13.667 58 -41zM484 262.001l-135 325l-135 -325h270z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="697" +d="M370 875c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22zM667 59.999 +c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10 +c26.667 0 46 -13.667 58 -41zM484 261.999l-135 325l-135 -325h270z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="697" +d="M476 787c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20zM667.002 60c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13 +s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10c26.667 0 46 -13.667 58 -41zM484.002 262l-135 325l-135 -325h270z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="697" +d="M489 862c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32 +c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5 +s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24zM666.999 59.999c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13 +s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10c26.667 0 46 -13.667 58 -41zM483.999 261.999l-135 325l-135 -325h270z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="697" +d="M667 60c3.33301 -8 5 -16.5 5 -25.5s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10 +c26.667 0 46 -13.667 58 -41zM484 262l-135 325l-135 -325h270zM265 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM434 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15 +s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="697" +d="M348 918c13.333 0 25.833 -2.5 37.5 -7.5s21.834 -11.5 30.501 -19.5c18 -18.667 27 -41 27 -67s-9.16699 -48.167 -27.5 -66.5s-40.5 -27.5 -66.5 -27.5s-48.167 9.16699 -66.5 27.5s-27.5 40.5 -27.5 66.5s9.16699 48.167 27.5 66.5s40.166 27.5 65.499 27.5zM349 775 +c13.333 0 24.833 4.83301 34.5 14.5s14.5 21.167 14.5 34.5s-4.83301 24.833 -14.5 34.5s-21.167 14.5 -34.5 14.5s-24.833 -4.83301 -34.5 -14.5s-14.5 -21.167 -14.5 -34.5s4.83301 -24.833 14.5 -34.5s21.167 -14.5 34.5 -14.5zM667 60c3.33301 -8 5 -16.5 5 -25.5 +s-4 -17.833 -12 -26.5s-20.667 -13 -38 -13s-30 9.33301 -38 28l-65 156h-340l-65 -156c-8 -18.667 -20.667 -28 -38 -28s-30 4.33301 -38 13s-12 17.5 -12 26.5s1.66699 17.5 5 25.5l255 602c12 27.333 31.333 41 58 41h10c26.667 0 46 -13.667 58 -41zM484 262l-135 325 +l-135 -325h270z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1040" +d="M945 85c12 0 22.1689 -4.16797 30.502 -12.501s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v134h-308l-102 -158c-11.333 -17.333 -24.333 -26 -39 -26 +s-26.334 4.33301 -35.001 13s-13 17.334 -13 26.001c0 13.333 3.33301 24.666 10 33.999l399 605c12 16.667 27.333 25 46 25h488c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355zM499.002 612.999h-25l-229 -351h254v351z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="698" +d="M368 -178c38 0 57.0039 15.334 57.0039 46.001c0 10 -3.5 17.667 -10.5 23s-14.833 8 -23.5 8c-16 0 -28 -2 -36 -6c-10.667 -5.33301 -17.834 -8 -21.501 -8s-7.33398 1.5 -11.001 4.5s-5.5 7 -5.5 12s1.33301 9.5 4 13.5l48 77c-93.333 8 -168.333 43.333 -225 106 +c-58.667 65.333 -88 149 -88 251c0 110 33.333 197.667 100 263c64.667 64 148 96 250 96c49.333 0 91.833 -6 127.5 -18s63 -23.167 82 -33.5s30.5 -18.666 34.5 -24.999s6 -14.333 6 -24s-3.5 -18.334 -10.5 -26.001s-15.333 -11.5 -25 -11.5s-17.167 1.33301 -22.5 4 +c-26.667 14 -54 25.333 -82 34s-62.833 13 -104.5 13s-79.334 -7 -113.001 -21s-61.834 -33.333 -84.501 -58c-44.667 -48.667 -67 -113 -67 -193s22.333 -144.333 67 -193c48.667 -52.667 115.667 -79 201 -79c39.333 0 73 4.33301 101 13s50 17.167 66 25.5 +s28.833 12.5 38.5 12.5s18 -3.83301 25 -11.5s10.5 -16.5 10.5 -26.5c0 -18 -7.33301 -30.667 -22 -38c-30.667 -17.333 -63.5 -31.833 -98.5 -43.5s-76.5 -17.834 -124.5 -18.501l-30 -53c10.667 2.66699 24.667 4 42 4s33.166 -6.33301 47.499 -19s21.5 -29.667 21.5 -51 +c0 -61.333 -37 -92 -111 -92c-32 0 -62 8.66699 -90 26c-7.33301 3.33301 -11 9 -11 17c0 13.333 6.33301 20 19 20c2.66699 0 6 -1 10 -3c20.667 -11.333 40.334 -17 59.001 -17z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="638" +d="M573.5 72.5c8.33301 -8.33301 12.5 -18.501 12.5 -30.501s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h401 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355c12 0 22.167 -4.16699 30.5 -12.5 +zM252 856.999c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="638" +d="M573.5 72.5c8.33301 -8.33301 12.5 -18.501 12.5 -30.501s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h401 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355c12 0 22.167 -4.16699 30.5 -12.5 +zM360 874.999c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="638" +d="M573.5 72.5c8.33301 -8.33301 12.5 -18.501 12.5 -30.501s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h401 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355c12 0 22.167 -4.16699 30.5 -12.5 +zM476 786.999c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="638" +d="M573.5 72.5c8.33301 -8.33301 12.5 -18.501 12.5 -30.501s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v607c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h401 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355c12 0 22.167 -4.16699 30.5 -12.5 +zM254 848.999c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM423 848.999c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z +" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="285" +d="M142 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM57 857 +c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="285" +d="M142 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM159 875 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="285" +d="M142 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM270 787 +c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="285" +d="M142 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-617c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM59 849 +c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM228 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="757" +d="M350 698c111.333 0 200 -37.3311 266 -111.998c29.333 -32.667 51.166 -69.834 65.499 -111.501s21.5 -83.5 21.5 -125.5s-7.16699 -83.833 -21.5 -125.5s-36.166 -78.834 -65.499 -111.501c-66 -74.667 -154.667 -112 -266 -112h-201 +c-12.667 -0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v270h-54c-9.33301 0 -17.166 3.16699 -23.499 9.5s-9.5 14.166 -9.5 23.499s3.16699 17.333 9.5 24s14.166 10 23.499 10h54v270c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5h201zM339 85.002 +c82.667 0 149 24.3301 199 72.9971s75 112.334 75 191.001s-25 142.334 -75 191.001s-116.333 73 -199 73h-144v-231h117c9.33301 0 17.333 -3.33301 24 -10s10 -14.667 10 -24s-3.33301 -17.166 -10 -23.499s-14.667 -9.5 -24 -9.5h-117v-230h144z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="803" +d="M660 703c12.667 0 23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-597c0 -18 -6.5 -33.333 -19.5 -46s-28.5 -19 -46.5 -19h-12c-22 0 -39.667 9 -53 27l-387 559v-541c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v597c0 18 6.33301 33.5 19 46.5s28 19.5 46 19.5h13c20.667 0 39 -10 55 -30l385 -556v540c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM545 862c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999 +c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5 +c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79zM322 857c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82 +c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79zM420 875c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z +" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79zM533 787c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5 +c0 4 2.66699 8.66699 8 14l68 70c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79zM545 862c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24s-24.166 7.5 -35.499 7.5 +c-18 0 -31.667 -10.667 -41 -32c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16s24.666 -11 36.999 -16 +s24.5 -7.5 36.5 -7.5s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="811" +d="M406 708c105.333 0 190 -33.667 254 -101c62 -66 94.333 -152 97 -258c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-106 0 -190.667 33.667 -254 101c-63.333 66.667 -95.666 152.667 -96.999 258c1.33301 105.333 33.666 191.333 96.999 258 +c63.333 67.333 148 101 254 101zM406 75c81.333 0 145.333 26.333 192 79c45.333 50.667 68 115.667 68 195s-22.667 144.333 -68 195c-46.667 52.667 -110.667 79 -192 79s-145.333 -26.333 -192 -79c-45.333 -50.667 -68 -115.667 -68 -195s22.667 -144.333 68 -195 +c46.667 -52.667 110.667 -79 192 -79zM322 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM491 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15 +s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="563" +d="M69.5 468.5c7 7.66699 15.833 11.5 26.5 11.5s20 -4 28 -12l157 -157l157 157c8 8 17.333 12 28 12s19.5 -3.83301 26.5 -11.5s10.5 -16.5 10.5 -26.5s-4 -19 -12 -27l-157 -157l157 -157c8 -8 12 -17 12 -27s-3.5 -18.833 -10.5 -26.5s-15.833 -11.5 -26.5 -11.5 +s-20 4 -28 12l-157 157l-157 -157c-8 -8 -17.333 -12 -28 -12s-19.5 3.83301 -26.5 11.5s-10.5 16.5 -10.5 26.5s4 19 12 27l157 157l-157 157c-8 8 -12 17 -12 27s3.5 18.833 10.5 26.5z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="811" +d="M178 66c-79.333 65.333 -120.333 159.667 -123 283c1.33301 105.333 33.666 191.333 96.999 258c63.333 67.333 148 101 254 101c70 0 132.667 -16.333 188 -49l40 58c4.66699 6.66699 11.167 10 19.5 10s14.833 -2.33301 19.5 -7s7 -10 7 -16s-2 -12 -6 -18l-39 -56 +c38 -32 67.5 -72 88.5 -120s32.167 -101.667 33.5 -161c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-71.333 0 -133.666 15.667 -186.999 47l-40 -57c-4.66699 -6.66699 -11.167 -10 -19.5 -10s-14.833 2.33301 -19.5 7s-7 10 -7 16s2 12 6 18z +M543 588.001c-40 23.333 -83.168 35 -129.501 35s-85.666 -7 -117.999 -21s-59.5 -33.333 -81.5 -58c-45.333 -50.667 -68 -115.667 -68 -195c0 -88.667 27.667 -158.667 83 -210zM268.999 109.001c39.333 -22.667 82.333 -34 129 -34s86.167 7 118.5 21 +s59.5 33.333 81.5 58c45.333 50.667 68 115.667 68 195c0 87.333 -27.333 157 -82 209z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="758" +d="M620 703c12.667 0 23.498 -4.5 32.498 -13.5s13.5 -19.833 13.5 -32.5v-395c0 -87.333 -31.333 -156 -94 -206c-54 -44 -118.333 -66 -193 -66c-76 0 -140.667 22 -194 66c-62 50 -93 118.667 -93 206v395c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5 +s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-398c0 -59.333 20.333 -106 61 -140c37.333 -30.667 82.333 -46 135 -46s97.667 15.333 135 46c40.667 34 61 80.667 61 140v398c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM300.998 857 +c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="758" +d="M620 703c12.667 0 23.498 -4.5 32.498 -13.5s13.5 -19.833 13.5 -32.5v-395c0 -87.333 -31.333 -156 -94 -206c-54 -44 -118.333 -66 -193 -66c-76 0 -140.667 22 -194 66c-62 50 -93 118.667 -93 206v395c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5 +s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-398c0 -59.333 20.333 -106 61 -140c37.333 -30.667 82.333 -46 135 -46s97.667 15.333 135 46c40.667 34 61 80.667 61 140v398c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM386.998 875 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="758" +d="M620 703c12.667 0 23.498 -4.5 32.498 -13.5s13.5 -19.833 13.5 -32.5v-395c0 -87.333 -31.333 -156 -94 -206c-54 -44 -118.333 -66 -193 -66c-76 0 -140.667 22 -194 66c-62 50 -93 118.667 -93 206v395c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5 +s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-398c0 -59.333 20.333 -106 61 -140c37.333 -30.667 82.333 -46 135 -46s97.667 15.333 135 46c40.667 34 61 80.667 61 140v398c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM505.998 787 +c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="758" +d="M620 703c12.667 0 23.498 -4.5 32.498 -13.5s13.5 -19.833 13.5 -32.5v-395c0 -87.333 -31.333 -156 -94 -206c-54 -44 -118.333 -66 -193 -66c-76 0 -140.667 22 -194 66c-62 50 -93 118.667 -93 206v395c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5 +s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-398c0 -59.333 20.333 -106 61 -140c37.333 -30.667 82.333 -46 135 -46s97.667 15.333 135 46c40.667 34 61 80.667 61 140v398c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5zM294.998 849c14 0 26 -5 36 -15 +s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM463.998 849c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="645" +d="M532 680c10 15.333 22.501 23 37.501 23s26.5 -4.33301 34.5 -13s12 -18.667 12 -30s-2.66699 -21.333 -8 -30l-240 -335v-255c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.334 -13.5 32.001v255l-239 335 +c-5.33301 8.66699 -8 18.667 -8 30s4 21.333 12 30s19.5 13 34.5 13s27.5 -7.66699 37.5 -23l209 -304zM340.001 875c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82 +c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="671" +d="M370 586c92.667 0 162.334 -24 209.001 -72c38.667 -38.667 58 -88.667 58 -150s-19.333 -111.333 -58 -150c-46.667 -48 -116.334 -72 -209.001 -72h-182v-102c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v617c0 12.667 4.33301 23.5 13 32.5s19.334 13.5 32.001 13.5s23.5 -4.5 32.5 -13.5s13.5 -19.833 13.5 -32.5v-71h182zM361 228c68.667 0 118.333 14.666 149 43.999c24 22.667 36 53.334 36 92.001c0 62 -31 103.333 -93 124 +c-24 8 -54.667 12 -92 12h-173v-272h173z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="610" +d="M414 352c42 -10.667 74.6689 -27.334 98.002 -50.001c34 -32.667 51 -75.334 51 -128.001c0 -58 -19.667 -104.333 -59 -139c-34.667 -30 -78.334 -45 -131.001 -45c-42.667 0 -79.667 5.66699 -111 17c-21.333 7.33301 -32 20 -32 38c0 11.333 3.66699 20.666 11 27.999 +s15 11 23 11s18.333 -2.16699 31 -6.5s28.667 -6.5 48 -6.5s35.5 1.5 48.5 4.5s25.5 8.5 37.5 16.5c28.667 20 43 51 43 93c0 38 -16.333 68.333 -49 91c-31.333 22 -72.333 33 -123 33c-12 0 -21.333 3.33301 -28 10s-10 15.334 -10 26.001s3.5 19.334 10.5 26.001 +s16.167 10.667 27.5 12c41.333 4.66699 73.833 17.667 97.5 39s35.5 49.5 35.5 84.5s-11.5 63.167 -34.5 84.5s-54.5 32 -94.5 32c-60.667 0 -101.334 -25 -122.001 -75c-8 -18.667 -12 -43 -12 -73v-434c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13 +s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v445c0 70 21 124.667 63 164c40.667 38.667 95 58 163 58c57.333 0 106.333 -15.667 147 -47c48 -36 72 -85.667 72 -149c0 -67.333 -23.333 -114.666 -70 -141.999c-13.333 -8 -26.666 -14 -39.999 -18z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM189.001 685.001 +c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM282.001 703.001 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM400.001 615.001 +c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM409.001 690.001 +c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32c-3.33301 -12 -11 -18 -23 -18 +c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5s20.667 2.33301 26 7 +s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM190.001 677.001 +c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM359.001 677.001c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="555" +d="M98 484c56 24 114.001 36 174.001 36c68 0 120.667 -20.667 158 -62c33.333 -36 50 -81 50 -135v-283c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v26c-18 -18.667 -42.167 -36 -72.5 -52 +s-68.833 -24 -115.5 -24c-46 0 -84.333 13.333 -115 40c-32 28 -48 64.667 -48 110c0 49.333 18.667 88 56 116c40.667 30.667 98.667 46 174 46h121v8c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s8.66699 25.667 26 33zM129.001 150c0 -53.333 35.333 -79.999 106 -79.999c31.333 0 60.5 7.66699 87.5 23s49.167 32.666 66.5 51.999v84h-109c-47.333 0 -84.333 -6 -111 -18s-40 -32.333 -40 -61zM268.001 739.001 +c13.333 0 25.833 -2.5 37.5 -7.5s21.834 -11.5 30.501 -19.5c18 -18.667 27 -41 27 -67s-9.16699 -48.167 -27.5 -66.5s-40.5 -27.5 -66.5 -27.5s-48.167 9.16699 -66.5 27.5s-27.5 40.5 -27.5 66.5s9.16699 48.167 27.5 66.5s40.166 27.5 65.499 27.5zM269.001 596.001 +c13.333 0 24.833 4.83301 34.5 14.5s14.5 21.167 14.5 34.5s-4.83301 24.833 -14.5 34.5s-21.167 14.5 -34.5 14.5s-24.833 -4.83301 -34.5 -14.5s-14.5 -21.167 -14.5 -34.5s4.83301 -24.833 14.5 -34.5s21.167 -14.5 34.5 -14.5z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="904" +d="M441 436c42.667 56 102.999 83.999 180.999 83.999c73.333 0 132 -24 176 -72c42 -46 63 -105.667 63 -179c0 -11.333 -3.83301 -21.333 -11.5 -30s-18.5 -13 -32.5 -13h-344c12 -100.667 71 -151 177 -151c48.667 0 93.667 10.333 135 31c5.33301 2.66699 12.333 4 21 4 +s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14c-30 -8.66699 -64.667 -13 -104 -13c-91.333 0 -159 29 -203 87c-38.667 -58 -107.334 -87 -206.001 -87 +c-55.333 0 -101.333 13.333 -138 40c-38.667 27.333 -58 64 -58 110c0 75.333 42.667 124.666 128 147.999c28.667 7.33301 62.667 11 102 11h121v11c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s10.333 26.334 31 35.001c52.667 22.667 108.667 34 168 34c79.333 0 136.333 -28 171 -84zM387.999 225.999h-109.001c-47.333 0 -84.333 -5.5 -111 -16.5s-40 -30.833 -40 -59.5c0 -21.333 10.333 -40 31 -56 +s51.334 -24 92.001 -24c62 0 103.667 16.667 125 50c8 12.667 12 29 12 49v57zM770.998 298.999c-2.66699 48 -20.332 85 -52.999 111c-27.333 22 -59.333 33 -96 33s-68.667 -11 -96 -33c-32.667 -26 -50.334 -63 -53.001 -111h298z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="537" +d="M272 -178c38 0 57 15.3311 57 45.998c0 10 -3.5 17.667 -10.5 23s-14.833 8 -23.5 8c-16 0 -28 -2 -36 -6c-10.667 -5.33301 -17.834 -8 -21.501 -8s-7.33398 1.5 -11.001 4.5s-5.5 7 -5.5 12s1.33301 9.5 4 13.5l48 78c-65.333 8.66699 -119 35.334 -161 80.001 +c-44 48 -66 108.667 -66 182c0 80.667 26.667 145.667 80 195c50.667 46.667 113 70 187 70c40 0 72.833 -5.16699 98.5 -15.5s46.167 -20.5 61.5 -30.5s23 -21 23 -33s-3.66699 -22.333 -11 -31s-14.666 -13 -21.999 -13c-11.333 0 -23 3.33301 -35 10 +c-34 18.667 -69.667 28 -107 28c-58.667 0 -104 -16.5 -136 -49.5s-48 -76.5 -48 -130.5s16 -97.5 48 -130.5s77.333 -49.5 136 -49.5c26 0 47.333 3 64 9s30.334 12 41.001 18c14 7.33301 25.5 11 34.5 11s17.167 -4.33301 24.5 -13s11 -19 11 -31s-7.66699 -23 -23 -33 +c-45.333 -29.333 -98 -44.666 -158 -45.999l-30 -53c10.667 2.66699 24.667 4 42 4s33.166 -6.33301 47.499 -19s21.5 -29.667 21.5 -51c0 -61.333 -37 -92 -111 -92c-32 0 -62 8.66699 -90 26c-7.33301 3.33301 -11 9 -11 17c0 13.333 6.33301 20 19 20 +c2.66699 0 6 -1 10 -3c20.667 -11.333 40.334 -17 59.001 -17z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="570" +d="M192 115c28.667 -26.667 68.6641 -40 119.997 -40s94.333 8.66699 129 26c12 6 22.333 9 31 9s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14 +c-30 -8.66699 -64.667 -13 -104 -13c-82 0 -145.667 23 -191 69s-68 111.333 -68 196c0 73.333 19 134.333 57 183c42.667 54.667 103.334 82 182.001 82c74.667 0 133.667 -25.333 177 -76c40.667 -47.333 61 -106 61 -176c0 -12.667 -4.16699 -23.334 -12.5 -32.001 +s-19.5 -13 -33.5 -13h-339c5.33301 -45.333 22.333 -81.333 51 -108zM287.997 443c-59.333 0 -102.667 -26.332 -130 -78.999c-10 -18.667 -15.667 -41 -17 -67h295c-2.66699 47.333 -20 84.666 -52 111.999c-26.667 22.667 -58.667 34 -96 34zM208.996 685.001 +c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="570" +d="M192 115c28.667 -26.667 68.6641 -40 119.997 -40s94.333 8.66699 129 26c12 6 22.333 9 31 9s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14 +c-30 -8.66699 -64.667 -13 -104 -13c-82 0 -145.667 23 -191 69s-68 111.333 -68 196c0 73.333 19 134.333 57 183c42.667 54.667 103.334 82 182.001 82c74.667 0 133.667 -25.333 177 -76c40.667 -47.333 61 -106 61 -176c0 -12.667 -4.16699 -23.334 -12.5 -32.001 +s-19.5 -13 -33.5 -13h-339c5.33301 -45.333 22.333 -81.333 51 -108zM287.997 443c-59.333 0 -102.667 -26.332 -130 -78.999c-10 -18.667 -15.667 -41 -17 -67h295c-2.66699 47.333 -20 84.666 -52 111.999c-26.667 22.667 -58.667 34 -96 34zM295.996 703.001 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="570" +d="M192 115c28.667 -26.667 68.6641 -40 119.997 -40s94.333 8.66699 129 26c12 6 22.333 9 31 9s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14 +c-30 -8.66699 -64.667 -13 -104 -13c-82 0 -145.667 23 -191 69s-68 111.333 -68 196c0 73.333 19 134.333 57 183c42.667 54.667 103.334 82 182.001 82c74.667 0 133.667 -25.333 177 -76c40.667 -47.333 61 -106 61 -176c0 -12.667 -4.16699 -23.334 -12.5 -32.001 +s-19.5 -13 -33.5 -13h-339c5.33301 -45.333 22.333 -81.333 51 -108zM287.997 443c-59.333 0 -102.667 -26.332 -130 -78.999c-10 -18.667 -15.667 -41 -17 -67h295c-2.66699 47.333 -20 84.666 -52 111.999c-26.667 22.667 -58.667 34 -96 34zM413.996 615.001 +c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="570" +d="M192 115c28.667 -26.667 68.6641 -40 119.997 -40s94.333 8.66699 129 26c12 6 22.333 9 31 9s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14 +c-30 -8.66699 -64.667 -13 -104 -13c-82 0 -145.667 23 -191 69s-68 111.333 -68 196c0 73.333 19 134.333 57 183c42.667 54.667 103.334 82 182.001 82c74.667 0 133.667 -25.333 177 -76c40.667 -47.333 61 -106 61 -176c0 -12.667 -4.16699 -23.334 -12.5 -32.001 +s-19.5 -13 -33.5 -13h-339c5.33301 -45.333 22.333 -81.333 51 -108zM287.997 443c-59.333 0 -102.667 -26.332 -130 -78.999c-10 -18.667 -15.667 -41 -17 -67h295c-2.66699 47.333 -20 84.666 -52 111.999c-26.667 22.667 -58.667 34 -96 34zM202.996 677.001 +c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM371.996 677.001c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="257" +d="M96 502c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-429c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33zM42 685 +c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="257" +d="M96 502c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-429c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33zM145 703 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="257" +d="M96 502c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-429c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33zM255 615 +c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="257" +d="M96 502c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-429c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33zM44 677 +c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM213 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="599" +d="M396 477c-27.333 40 -62.999 79.002 -106.999 117.002l-84 -49c-8 -4 -14.667 -6 -20 -6s-10.333 2.33301 -15 7s-7 11.334 -7 20.001s5 15.667 15 21l68 40c-30.667 21.333 -52.5 35.5 -65.5 42.5s-21.333 13.667 -25 20s-5.5 14.333 -5.5 24s4.16699 18.5 12.5 26.5 +s17.166 12 26.499 12s19.333 -3.33301 30 -10c36 -21.333 70.333 -45 103 -71l68 41c5.33301 3.33301 11 5 17 5s11.333 -2.33301 16 -7s7 -11.334 7 -20.001s-4 -15.334 -12 -20.001l-56 -33c122.667 -112 184 -233 184 -363c0 -132 -44.667 -219.333 -134 -262 +c-32 -14.667 -68.5 -22 -109.5 -22s-76.833 6.16699 -107.5 18.5s-57 29.833 -79 52.5c-44.667 47.333 -67 109.666 -67 186.999c0 70.667 20.333 130 61 178c44 52.667 101.667 79 173 79c39.333 0 77 -9.33301 113 -28zM297.001 70.002c42.667 0 78.667 13.999 108 41.999 +c35.333 32.667 53 79.334 53 140.001c0 59.333 -17.667 105.333 -53 138c-28.667 27.333 -64.667 41 -108 41s-79.333 -13.667 -108 -41c-34.667 -32 -52 -78 -52 -138c0 -61.333 17.333 -108 52 -140c29.333 -28 65.333 -42 108 -42z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="609" +d="M334 436c-58.667 0 -113.332 -32 -163.999 -96v-300c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v429c0 13.333 4.33301 24.333 13 33s19.334 13 32.001 13s23.5 -4.33301 32.5 -13 +s13.5 -19.667 13.5 -33v-41c26.667 28 49.667 47.667 69 59c38 22 74.167 33 108.5 33s62.5 -5.16699 84.5 -15.5s40.667 -24.5 56 -42.5c31.333 -36.667 47 -82.667 47 -138v-284c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13 +s-13 19.334 -13 32.001v274c0 38 -8.5 67.833 -25.5 89.5s-45.167 32.5 -84.5 32.5zM449.002 690c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24 +s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16 +s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5zM217.999 684.999c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82 +c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5zM319.999 702.999c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5 +s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5zM430.999 614.999c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9 +s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5zM443.999 689.999c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24 +s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16 +s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="608" +d="M304 520c77.333 0 139.333 -24.333 186 -73c46.667 -49.333 70 -113.333 70 -192s-23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-78 0 -140 24.333 -186 73c-46.667 48.667 -70 112.667 -70 192s23.333 143.333 70 192c46 48.667 108 73 186 73z +M245.5 83c19.667 -6.66699 38.999 -10.001 57.999 -10.001s38.333 3.33301 58 10s37.5 17 53.5 31c36 32.667 54 80 54 142c0 60 -18 106.667 -54 140c-30 27.333 -67 41 -111 41c-72 0 -122 -32.333 -150 -97c-10 -23.333 -15 -51.5 -15 -84.5s5 -61.167 15 -84.5 +s22.833 -42.166 38.5 -56.499s33.334 -24.833 53.001 -31.5zM219.999 676.999c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM388.999 676.999c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36 +s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="712" +d="M356 197c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM356 465c-14 0 -26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15s26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15z +M598 372c11.333 0 21 -4 29 -12s12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-485c-11.333 0 -20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5s3.83301 21 11.5 29s17.167 12 28.5 12h485z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="608" +d="M130 51c-54.667 49.333 -82 117.334 -82 204.001c0 79.333 23.333 143.333 70 192c46 48.667 108 73 186 73c46.667 0 90.667 -10.667 132 -32l29 41c4.66699 6.66699 11.167 10 19.5 10s14.833 -2.33301 19.5 -7s7 -10 7 -16s-2 -12 -6 -18l-28 -40 +c55.333 -48.667 83 -116.334 83 -203.001c0 -78.667 -23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-50 0 -94.333 10.667 -133 32l-30 -43c-4.66699 -6.66699 -11.167 -10 -19.5 -10s-14.833 2.33301 -19.5 7s-7 10 -7 16s2 12 6 18zM182 125.001 +l204 291c-26 14 -51 21 -75 21s-45.833 -3.16699 -65.5 -9.5s-37.5 -16.833 -53.5 -31.5c-35.333 -33.333 -53 -79 -53 -137s14.333 -102.667 43 -134zM222 94.001c25.333 -14 50 -21 74 -21s45.833 3.33301 65.5 10s37.5 17 53.5 31c36 32.667 54 80 54 142 +c0 52.667 -14.333 95.667 -43 129z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="610" +d="M276 74c58.667 0 113.332 32 163.999 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33 +v41c-26.667 -28 -49.667 -47.667 -69 -59c-38 -22 -74.167 -33 -108.5 -33s-62.5 5.16699 -84.5 15.5s-40.667 24.5 -56 42.5c-31.333 36.667 -47 82.667 -47 138v284c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001 +v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5zM216.998 685c0 24.667 13.333 37.001 40 37.001c13.333 0 23.333 -6.33301 30 -19l51 -90c4.66699 -4.66699 7 -11 7 -19s-2.5 -14.5 -7.5 -19.5s-11.667 -7.5 -20 -7.5s-15.5 3.66699 -21.5 11l-69 82 +c-6.66699 7.33301 -10 15.666 -10 24.999z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="610" +d="M276 74c58.667 0 113.332 32 163.999 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33 +v41c-26.667 -28 -49.667 -47.667 -69 -59c-38 -22 -74.167 -33 -108.5 -33s-62.5 5.16699 -84.5 15.5s-40.667 24.5 -56 42.5c-31.333 36.667 -47 82.667 -47 138v284c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001 +v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5zM318.998 703c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5 +s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="610" +d="M276 74c58.667 0 113.332 32 163.999 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33 +v41c-26.667 -28 -49.667 -47.667 -69 -59c-38 -22 -74.167 -33 -108.5 -33s-62.5 5.16699 -84.5 15.5s-40.667 24.5 -56 42.5c-31.333 36.667 -47 82.667 -47 138v284c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001 +v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5zM429.998 615c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9 +s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="610" +d="M276 74c58.667 0 113.332 32 163.999 96v300c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001v-429c0 -13.333 -4.33301 -24.333 -13 -33s-19.334 -13 -32.001 -13s-23.5 4.33301 -32.5 13s-13.5 19.667 -13.5 33 +v41c-26.667 -28 -49.667 -47.667 -69 -59c-38 -22 -74.167 -33 -108.5 -33s-62.5 5.16699 -84.5 15.5s-40.667 24.5 -56 42.5c-31.333 36.667 -47 82.667 -47 138v284c0 12.667 4.5 23.334 13.5 32.001s19.833 13 32.5 13s23.334 -4.33301 32.001 -13s13 -19.334 13 -32.001 +v-274c0 -38 8.5 -67.833 25.5 -89.5s45.167 -32.5 84.5 -32.5zM218.998 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15zM387.998 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36 +s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="533" +d="M496 501.5c8.66699 -9 12.998 -18.333 12.998 -28s-1 -16.834 -3 -21.501l-273 -656c-8.66699 -20.667 -22.667 -31 -42 -31c-12 0 -22.167 4.33301 -30.5 13s-12.5 17.334 -12.5 26.001s1 15.667 3 21l65 167l-188 458c-2.66699 6.66699 -4 14.667 -4 24 +s4.33301 18.5 13 27.5s18.334 13.5 29.001 13.5c22 0 37 -9.33301 45 -28l154 -382l157 380c8.66699 20 22.667 30 42 30c12.667 0 23.334 -4.5 32.001 -13.5zM281.998 703c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37 +c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="631" +d="M170 444c49.333 50.667 106.332 76 170.999 76s120 -23 166 -69c50.667 -50.667 76 -116 76 -196c0 -81.333 -25.333 -147 -76 -197c-46.667 -45.333 -102.167 -68 -166.5 -68s-121.166 25.333 -170.499 76v-255c0 -13.333 -4.33301 -24.333 -13 -33s-19.5 -13 -32.5 -13 +s-23.833 4.33301 -32.5 13s-13 19.667 -13 33v878c0 13.333 4.33301 24.333 13 33s19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-245zM169.999 150c45.333 -50 97.999 -75 157.999 -75c76 0 126.667 34 152 102c8 22.667 12 48.667 12 78 +c0 57.333 -15.333 102.333 -46 135c-29.333 30 -68.666 45 -117.999 45c-60 0 -112.667 -25 -158 -75v-210z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="533" +d="M496 501.5c8.66699 -9 12.998 -18.333 12.998 -28s-1 -16.834 -3 -21.501l-273 -656c-8.66699 -20.667 -22.667 -31 -42 -31c-12 0 -22.167 4.33301 -30.5 13s-12.5 17.334 -12.5 26.001s1 15.667 3 21l65 167l-188 458c-2.66699 6.66699 -4 14.667 -4 24 +s4.33301 18.5 13 27.5s18.334 13.5 29.001 13.5c22 0 37 -9.33301 45 -28l154 -382l157 380c8.66699 20 22.667 30 42 30c12.667 0 23.334 -4.5 32.001 -13.5zM180.998 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36 +s5 26 15 36s22 15 36 15zM349.998 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="longs" unicode="ſ" horiz-adv-x="287" +d="M340 647l-50.001 6.00195c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-525c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11 +s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="403" +d="M356 746c26 0 45.001 -2.99805 57.001 -8.99805c20.667 -10 31 -22 31 -36s-3.83301 -24.833 -11.5 -32.5s-15.834 -11.5 -24.501 -11.5s-17 1 -25 3s-21.333 3 -40 3s-36.167 -5.83301 -52.5 -17.5s-26.833 -35.167 -31.5 -70.5l-21 -148h117 +c9.33301 0 16.833 -3.16699 22.5 -9.5s8.5 -13.833 8.5 -22.5s-3 -15.834 -9 -21.501s-13.333 -8.5 -22 -8.5h-125l-50 -353c-8.66699 -58.667 -31 -102.667 -67 -132c-30 -24 -65.667 -36 -107 -36h-18c-11.333 0 -21 4 -29 12s-12 17.667 -12 29s4 21.166 12 29.499 +s17.667 12.5 29 12.5h7c26.667 0 45.667 4.33301 57 13c19.333 16 31.666 41 36.999 75l49 350h-78c-9.33301 0 -16.833 3 -22.5 9s-8.5 13.333 -8.5 22s3 16 9 22s13.333 9 22 9h87l21 151c8.66699 58.667 31.334 102.667 68.001 132c30 24 70 36 120 36z" /> + <glyph glyph-name="AEacute" unicode="Ǽ" horiz-adv-x="1040" +d="M945 85c12 0 22.1689 -4.16797 30.502 -12.501s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-401c-12.667 0 -23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v134h-308l-102 -158c-11.333 -17.333 -24.333 -26 -39 -26 +s-26.334 4.33301 -35.001 13s-13 17.334 -13 26.001c0 13.333 3.33301 24.666 10 33.999l399 605c12 16.667 27.333 25 46 25h488c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-355v-221h319 +c12 0 22.167 -4.16699 30.5 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-319v-222h355zM499.002 612.999h-25l-229 -351h254v351zM544.002 874.999c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37 +c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="aeacute" unicode="ǽ" horiz-adv-x="904" +d="M441 436c42.667 56 102.999 83.999 180.999 83.999c73.333 0 132 -24 176 -72c42 -46 63 -105.667 63 -179c0 -11.333 -3.83301 -21.333 -11.5 -30s-18.5 -13 -32.5 -13h-344c12 -100.667 71 -151 177 -151c48.667 0 93.667 10.333 135 31c5.33301 2.66699 12.333 4 21 4 +s17 -3.66699 25 -11s12 -15.666 12 -24.999c0 -17.333 -7.16699 -29.833 -21.5 -37.5s-27.166 -14.167 -38.499 -19.5s-23.666 -10 -36.999 -14c-30 -8.66699 -64.667 -13 -104 -13c-91.333 0 -159 29 -203 87c-38.667 -58 -107.334 -87 -206.001 -87 +c-55.333 0 -101.333 13.333 -138 40c-38.667 27.333 -58 64 -58 110c0 75.333 42.667 124.666 128 147.999c28.667 7.33301 62.667 11 102 11h121v11c0 44.667 -11 76.5 -33 95.5s-55.667 28.5 -101 28.5c-38.667 0 -83 -8 -133 -24c-5.33301 -1.33301 -11.333 -2 -18 -2 +s-13.667 3.5 -21 10.5s-11 17.833 -11 32.5s10.333 26.334 31 35.001c52.667 22.667 108.667 34 168 34c79.333 0 136.333 -28 171 -84zM387.999 225.999h-109.001c-47.333 0 -84.333 -5.5 -111 -16.5s-40 -30.833 -40 -59.5c0 -21.333 10.333 -40 31 -56 +s51.334 -24 92.001 -24c62 0 103.667 16.667 125 50c8 12.667 12 29 12 49v57zM770.998 298.999c-2.66699 48 -20.332 85 -52.999 111c-27.333 22 -59.333 33 -96 33s-68.667 -11 -96 -33c-32.667 -26 -50.334 -63 -53.001 -111h298zM460 702.999 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="Oslashacute" unicode="Ǿ" horiz-adv-x="811" +d="M178 66c-79.333 65.333 -120.333 159.667 -123 283c1.33301 105.333 33.666 191.333 96.999 258c63.333 67.333 148 101 254 101c70 0 132.667 -16.333 188 -49l40 58c4.66699 6.66699 11.167 10 19.5 10s14.833 -2.33301 19.5 -7s7 -10 7 -16s-2 -12 -6 -18l-39 -56 +c38 -32 67.5 -72 88.5 -120s32.167 -101.667 33.5 -161c-2.66699 -106 -35 -192 -97 -258c-64 -67.333 -148.667 -101 -254 -101c-71.333 0 -133.666 15.667 -186.999 47l-40 -57c-4.66699 -6.66699 -11.167 -10 -19.5 -10s-14.833 2.33301 -19.5 7s-7 10 -7 16s2 12 6 18z +M543 588.001c-40 23.333 -83.168 35 -129.501 35s-85.666 -7 -117.999 -21s-59.5 -33.333 -81.5 -58c-45.333 -50.667 -68 -115.667 -68 -195c0 -88.667 27.667 -158.667 83 -210zM268.999 109.001c39.333 -22.667 82.333 -34 129 -34s86.167 7 118.5 21 +s59.5 33.333 81.5 58c45.333 50.667 68 115.667 68 195c0 87.333 -27.333 157 -82 209zM419.999 875.001c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11 +s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="oslashacute" unicode="ǿ" horiz-adv-x="608" +d="M130 51c-54.667 49.333 -82 117.334 -82 204.001c0 79.333 23.333 143.333 70 192c46 48.667 108 73 186 73c46.667 0 90.667 -10.667 132 -32l29 41c4.66699 6.66699 11.167 10 19.5 10s14.833 -2.33301 19.5 -7s7 -10 7 -16s-2 -12 -6 -18l-28 -40 +c55.333 -48.667 83 -116.334 83 -203.001c0 -78.667 -23.333 -142.667 -70 -192c-46.667 -48.667 -108.667 -73 -186 -73c-50 0 -94.333 10.667 -133 32l-30 -43c-4.66699 -6.66699 -11.167 -10 -19.5 -10s-14.833 2.33301 -19.5 7s-7 10 -7 16s2 12 6 18zM182 125.001 +l204 291c-26 14 -51 21 -75 21s-45.833 -3.16699 -65.5 -9.5s-37.5 -16.833 -53.5 -31.5c-35.333 -33.333 -53 -79 -53 -137s14.333 -102.667 43 -134zM222 94.001c25.333 -14 50 -21 74 -21s45.833 3.33301 65.5 10s37.5 17 53.5 31c36 32.667 54 80 54 142 +c0 52.667 -14.333 95.667 -43 129zM320 703.001c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22 +z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="617" +d="M318 -47c13.333 0 25.001 -4.99902 35.001 -14.999s15 -22 15 -36v-52c0 -56.667 -24.667 -100.334 -74 -131.001c-3.33301 -3.33301 -8.5 -5 -15.5 -5s-13 2.66699 -18 8s-7.5 12.166 -7.5 20.499s4.66699 15.5 14 21.5c13.333 7.33301 24.166 16.833 32.499 28.5 +s12.5 29.834 12.5 54.501h-3c-14 0 -26 4.83301 -36 14.5s-15 21.5 -15 35.5v5c0 14 5 26 15 36s22 15 36 15h9zM308.001 76.001c116.667 0 174.998 38.3379 174.998 115.005c0 32 -22.333 57.667 -67 77c-19.333 8 -41.833 15.167 -67.5 21.5s-51.667 13.166 -78 20.499 +s-52.333 15.666 -78 24.999s-48.5 21.333 -68.5 36c-44 33.333 -66 77.333 -66 132c0 58.667 22 106.667 66 144c48 40.667 112.333 61 193 61c72.667 0 139 -11 199 -33c18.667 -6.66699 28 -20 28 -40c0 -10 -3.5 -19.5 -10.5 -28.5s-14.667 -13.5 -23 -13.5 +s-19.833 2.66699 -34.5 8c-43.333 15.333 -93 23 -149 23c-51.333 0 -93.666 -9.66699 -126.999 -29c-34 -20 -51 -48.333 -51 -85c0 -38 22 -66.667 66 -86c20 -9.33301 42.667 -17 68 -23l78 -19c26.667 -6.66699 52.667 -14.5 78 -23.5s48 -20.833 68 -35.5 +c44 -32 66 -78 66 -138c0 -57.333 -23 -104 -69 -140c-47.333 -36.667 -109.666 -55 -186.999 -55c-84.667 0 -164 16 -238 48c-7.33301 3.33301 -13.833 8.66602 -19.5 15.999s-8.5 16.166 -8.5 26.499s3.66699 19.666 11 27.999s15.833 12.5 25.5 12.5 +s21.667 -3.16699 36 -9.5s37.833 -13.833 70.5 -22.5s70.667 -13 114 -13z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="480" +d="M250 -47c13.333 0 25.001 -4.99902 35.001 -14.999s15 -22 15 -36v-52c0 -56.667 -24.667 -100.334 -74 -131.001c-3.33301 -3.33301 -8.5 -5 -15.5 -5s-13 2.66699 -18 8s-7.5 12.166 -7.5 20.499s4.66699 15.5 14 21.5c13.333 7.33301 24.166 16.833 32.499 28.5 +s12.5 29.834 12.5 54.501h-3c-14 0 -26 4.83301 -36 14.5s-15 21.5 -15 35.5v5c0 14 5 26 15 36s22 15 36 15h9zM241.001 74.001c74 0 111 23.668 111 71.001c0 14.667 -7.33301 25.834 -22 33.501s-33.167 14.5 -55.5 20.5s-46.5 12.167 -72.5 18.5 +s-50.167 15.166 -72.5 26.499s-40.833 26.166 -55.5 44.499s-22 40.833 -22 67.5s4 49.667 12 69s20 36 36 50c35.333 30 84.333 45 147 45c50 0 98.333 -8.33301 145 -25c9.33301 -3.33301 16.5 -8.66602 21.5 -15.999s7.5 -15.5 7.5 -24.5s-3.83301 -17.5 -11.5 -25.5 +s-15.167 -12 -22.5 -12s-16.333 1.66699 -27 5c-32 10 -67 15 -105 15s-66.833 -6.66699 -86.5 -20s-29.5 -29.333 -29.5 -48s7.5 -32.5 22.5 -41.5s33.5 -16.5 55.5 -22.5s46.167 -12 72.5 -18s50.5 -14.333 72.5 -25c52 -26.667 78 -68 78 -124 +c0 -42.667 -16 -77.334 -48 -104.001c-34.667 -29.333 -83 -44 -145 -44c-67.333 0 -128 15 -182 45c-11.333 8 -17 18 -17 30s3.66699 22.167 11 30.5s15.333 12.5 24 12.5s19 -2.66699 31 -8c38.667 -17.333 81 -26 127 -26z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="609" +d="M309 -47c13.333 0 25.001 -4.99902 35.001 -14.999s15 -22 15 -36v-52c0 -56.667 -24.667 -100.334 -74 -131.001c-3.33301 -3.33301 -8.5 -5 -15.5 -5s-13 2.66699 -18 8s-7.5 12.166 -7.5 20.499s4.66699 15.5 14 21.5c13.333 7.33301 24.166 16.833 32.499 28.5 +s12.5 29.834 12.5 54.501h-3c-14 0 -26 4.83301 -36 14.5s-15 21.5 -15 35.5v5c0 14 5 26 15 36s22 15 36 15h9zM553.001 698.001c12 0 22.168 -4.16699 30.501 -12.5s12.5 -18.5 12.5 -30.5s-4.16699 -22 -12.5 -30s-18.5 -12 -30.5 -12h-203v-573 +c0 -12.667 -4.5 -23.334 -13.5 -32.001s-19.833 -13 -32.5 -13s-23.334 4.33301 -32.001 13s-13 19.334 -13 32.001v573h-204c-12 0 -22 4 -30 12s-12 18 -12 30s4 22.167 12 30.5s18 12.5 30 12.5h498z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="383" +d="M196 -47c13.333 0 25.001 -4.99902 35.001 -14.999s15 -22 15 -36v-52c0 -56.667 -24.667 -100.334 -74 -131.001c-3.33301 -3.33301 -8.5 -5 -15.5 -5s-13 2.66699 -18 8s-7.5 12.166 -7.5 20.499s4.66699 15.5 14 21.5c13.333 7.33301 24.166 16.833 32.499 28.5 +s12.5 29.834 12.5 54.501h-3c-14 0 -26 4.83301 -36 14.5s-15 21.5 -15 35.5v5c0 14 5 26 15 36s22 15 36 15h9zM302.501 74.501c7.66699 3 15.998 4.49805 24.998 4.49805s17.167 -3.33301 24.5 -10s11 -16.667 11 -30s-7 -23 -21 -29c-28 -13.333 -52.167 -20 -72.5 -20 +s-38.833 1 -55.5 3s-32.667 7.66699 -48 17c-36.667 21.333 -55 58.666 -55 111.999v310h-71c-12.667 0 -19 6.33301 -19 19c0 6 3 11.667 9 17l136 133c6 6 11.667 9 17 9s9.83301 -2 13.5 -6s5.5 -8.66699 5.5 -14v-80h113c11.333 0 20.666 -3.66699 27.999 -11 +s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-113v-302c0 -25.333 7.66699 -42.666 23 -51.999c8.66699 -5.33301 21.834 -8 39.501 -8s30.334 1.5 38.001 4.5z" /> + <glyph glyph-name="dotlessj" unicode="ȷ" horiz-adv-x="257" +d="M-8 -157l29.999 -3.00098c20.667 0 34.334 2.66699 41.001 8c13.333 8.66699 20 25.667 20 51v569c0 13.333 4.33301 24.333 13 33s19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-571c0 -64.667 -23.333 -107 -70 -127c-16.667 -6.66699 -37 -10 -61 -10 +s-44.833 2.83301 -62.5 8.5s-26.5 17.834 -26.5 36.501c0 10 3.5 18.833 10.5 26.5s16.167 11.5 27.5 11.5z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="409" +d="M330 615c5.33301 -5.33301 8.00195 -11.833 8.00195 -19.5s-2.83301 -14.5 -8.5 -20.5s-12.5 -9 -20.5 -9s-14.333 2.33301 -19 7l-87 74l-87 -74c-4.66699 -4.66699 -11 -7 -19 -7s-14.833 3 -20.5 9s-8.5 10.833 -8.5 14.5v11.5c0 4 2.66699 8.66699 8 14l68 70 +c13.333 13.333 26.666 20 39.999 20h38c13.333 0 26.666 -6.66699 39.999 -20z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="391" +d="M330 656l-68.002 -70c-13.333 -13.333 -26.666 -20 -39.999 -20h-38c-13.333 0 -26.666 6.66699 -39.999 20l-68 70c-5.33301 5.33301 -8 11.833 -8 19.5s2.83301 14.5 8.5 20.5s12.5 9 20.5 9s14.333 -2.33301 19 -7l87 -74l87 74c4.66699 4.66699 11 7 19 7 +s14.833 -3 20.5 -9s8.5 -12.833 8.5 -20.5s-2.66699 -14.167 -8 -19.5z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="385" +d="M192 634c40.667 0 68.666 16.333 83.999 49c6 12.667 14.5 19 25.5 19s19.333 -3 25 -9s8.5 -12.5 8.5 -19.5s-1 -12.5 -3 -16.5c-11.333 -25.333 -29.5 -45.166 -54.5 -59.499s-53.5 -21.5 -85.5 -21.5s-60.5 7.16699 -85.5 21.5s-43.167 34.166 -54.5 59.499 +c-2 4 -3 9.5 -3 16.5s2.83301 13.5 8.5 19.5s14 9 25 9s19.833 -7 26.5 -21s17.334 -25.333 32.001 -34s31.667 -13 51 -13z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="228" +d="M114 677c14 0 26 -5 36 -15s15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="270" +d="M136 739c13.333 0 25.833 -2.5 37.5 -7.5s21.834 -11.5 30.501 -19.5c18 -18.667 27 -41 27 -67s-9.16699 -48.167 -27.5 -66.5s-40.5 -27.5 -66.5 -27.5s-48.167 9.16699 -66.5 27.5s-27.5 40.5 -27.5 66.5s9.16699 48.167 27.5 66.5s40.166 27.5 65.499 27.5zM137 596 +c13.333 0 24.833 4.83301 34.5 14.5s14.5 21.167 14.5 34.5s-4.83301 24.833 -14.5 34.5s-21.167 14.5 -34.5 14.5s-24.833 -4.83301 -34.5 -14.5s-14.5 -21.167 -14.5 -34.5s4.83301 -24.833 14.5 -34.5s21.167 -14.5 34.5 -14.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="351" +d="M142 -100c0 -31.333 17.001 -47.001 51.001 -47.001c7.33301 0 13.666 0.666992 18.999 2s10.333 2.66602 15 3.99902s8 2 10 2c14.667 0 22 -7.33301 22 -22c0 -14 -16 -25.667 -48 -35c-14 -4.66699 -31.667 -7 -53 -7s-41.5 7.33301 -60.5 22 +s-28.5 35.334 -28.5 62.001c0 50.667 35.667 90.334 107 119.001h78c-49.333 -16.667 -83.333 -38.667 -102 -66c-6.66699 -10 -10 -21.333 -10 -34z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="432" +d="M355 690c14 0 21.666 -7.33398 22.999 -22.001c0 -23.333 -7.66699 -44.666 -23 -63.999c-17.333 -20.667 -37.666 -31 -60.999 -31c-20 0 -41.333 5.5 -64 16.5s-40.167 19 -52.5 24s-24.166 7.5 -35.499 7.5c-18 0 -31.667 -10.667 -41 -32 +c-3.33301 -12 -11 -18 -23 -18c-6 0 -11.333 2.16699 -16 6.5s-7 10.666 -7 18.999s2 18 6 29s9.66699 21.167 17 30.5c15.333 22 35.666 33 60.999 33c14.667 0 28.334 -2.5 41.001 -7.5s25.167 -10.333 37.5 -16s24.666 -11 36.999 -16s24.5 -7.5 36.5 -7.5 +s20.667 2.33301 26 7s9.33301 10.334 12 17.001c6 16 14.667 24 26 24z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="399" +d="M106 703c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22zM260 702.999 +c6.66699 12.667 16.667 18.999 30 18.999c26.667 0 40 -12.333 40 -37c0 -9.33301 -3.33301 -17.666 -10 -24.999l-69 -82c-6 -7.33301 -13.167 -11 -21.5 -11s-15 2.5 -20 7.5s-7.5 10.5 -7.5 16.5c0 10 2.33301 17.333 7 22z" /> + <glyph glyph-name="uni03A9" unicode="Ω" horiz-adv-x="790" +d="M721 369c0 -125.333 -41.667 -222.333 -125 -291h101c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-185c-12.667 0 -23.667 4.5 -33 13.5s-14 18.5 -14 28.5c0 20 7.5 34.5 22.5 43.5 +s31.333 20.5 49 34.5s34.167 32 49.5 54c35.333 51.333 53 112.666 53 183.999c0 72 -21.667 132 -65 180c-46 52.667 -105.667 79 -179 79s-133 -26.333 -179 -79c-43.333 -48 -65 -108 -65 -180c0 -71.333 17.667 -132.666 53 -183.999c24 -34 56.667 -63.333 98 -88 +c15.333 -9.33301 23 -21.5 23 -36.5s-4.66699 -27 -14 -36s-20.333 -13.5 -33 -13.5h-185c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h101c-83.333 68.667 -125 165.667 -125 291 +c0 40.667 7.33301 81.167 22 121.5s36 76.666 64 108.999s62.167 58.5 102.5 78.5s86 30 137 30s96.667 -10 137 -30s74.5 -46.167 102.5 -78.5s49.5 -68.666 64.5 -108.999s22.5 -80.833 22.5 -121.5z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="634" +d="M604.5 498.5c7.66699 -7.66699 11.501 -17.165 11.501 -28.498s-3.83301 -20.666 -11.5 -27.999s-17.167 -11 -28.5 -11h-60v-393c0 -12 -4.16699 -22.167 -12.5 -30.5s-18.5 -12.5 -30.5 -12.5s-22.167 4.16699 -30.5 12.5s-12.5 18.5 -12.5 30.5v393h-176 +c-4 -139.333 -24 -274 -60 -404c-2.66699 -9.33301 -7.83398 -17 -15.501 -23s-16.834 -9 -27.501 -9s-20.5 4 -29.5 12s-13.5 16.667 -13.5 26s3.66699 23.666 11 42.999s14.5 44.166 21.5 74.499s12.167 60.833 15.5 91.5c4 32 8 95 12 189h-22 +c-30 0 -50.667 -1.66699 -62 -5c-17.333 -5.33301 -29.166 -8 -35.499 -8s-13.333 3.66699 -21 11s-11.5 15 -11.5 23c0 15.333 6.66699 26.666 20 33.999c30 16 66.667 24 110 24h430c11.333 0 20.833 -3.83301 28.5 -11.5z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="684" +d="M603 309c8 -8 12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-465c-11.333 0 -20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5s3.83301 21 11.5 29s17.167 12 28.5 12h465c11.333 0 21 -4 29 -12z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="891" +d="M810 309c8 -8 12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-672c-11.333 0 -20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5s3.83301 21 11.5 29s17.167 12 28.5 12h672c11.333 0 21 -4 29 -12z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="255" +d="M122 477c-15.333 0 -28.4971 5.50098 -39.4971 16.501s-16.5 24.167 -16.5 39.5v59c0 35.333 8.66699 66.666 26 93.999c13.333 20 32 37.333 56 52c3.33301 3.33301 9.16602 5 17.499 5s15.166 -3 20.499 -9s8 -13.667 8 -23s-5 -17 -15 -23 +c-14.667 -8.66699 -26.834 -19.5 -36.501 -32.5s-14.5 -33.167 -14.5 -60.5h4c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="238" +d="M174.5 726.5c11 -11 16.4971 -24.168 16.4971 -39.501v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5 +s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="260" +d="M174.5 98.5c11 -11 16.4971 -24.168 16.4971 -39.501v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5 +s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10c15.333 0 28.5 -5.5 39.5 -16.5z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="437" +d="M303 477c-15.333 0 -28.4971 5.50098 -39.4971 16.501s-16.5 24.167 -16.5 39.5v59c0 35.333 9 66.666 27 93.999c12.667 20 31 37.333 55 52c3.33301 3.33301 9.16602 5 17.499 5s15.166 -3 20.499 -9s8 -13.667 8 -23s-5 -17 -15 -23 +c-14.667 -8.66699 -26.834 -19.5 -36.501 -32.5s-14.5 -33.167 -14.5 -60.5h4c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10zM122.003 477.001c-15.333 0 -28.4971 5.50098 -39.4971 16.501 +s-16.5 24.167 -16.5 39.5v59c0 35.333 8.66699 66.666 26 93.999c13.333 20 32 37.333 56 52c3.33301 3.33301 9.16602 5 17.499 5s15.166 -3 20.499 -9s8 -13.667 8 -23s-5 -17 -15 -23c-14.667 -8.66699 -26.834 -19.5 -36.501 -32.5s-14.5 -33.167 -14.5 -60.5h4 +c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="420" +d="M135 743c15.333 0 28.4971 -5.50098 39.4971 -16.501s16.5 -24.167 16.5 -39.5v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23 +c14.667 8.66699 26.834 19.5 36.501 32.5s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM315.997 742.999c15.333 0 28.4971 -5.50098 39.4971 -16.501 +s16.5 -24.167 16.5 -39.5v-59c0 -35.333 -8.66699 -66.666 -26 -93.999c-13.333 -20 -32 -37.333 -56 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5s14.5 33.167 14.5 60.5h-4 +c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="442" +d="M135 115c15.333 0 28.4971 -5.50098 39.4971 -16.501s16.5 -24.167 16.5 -39.5v-59c0 -35.333 -9 -66.666 -27 -93.999c-12.667 -20 -31 -37.333 -55 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23 +c14.667 8.66699 26.834 19.5 36.501 32.5s14.5 33.167 14.5 60.5h-4c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM315.997 114.999c15.333 0 28.4971 -5.50098 39.4971 -16.501 +s16.5 -24.167 16.5 -39.5v-59c0 -35.333 -8.66699 -66.666 -26 -93.999c-13.333 -20 -32 -37.333 -56 -52c-3.33301 -3.33301 -9.16602 -5 -17.499 -5s-15.166 3 -20.499 9s-8 13.667 -8 23s5 17 15 23c14.667 8.66699 26.834 19.5 36.501 32.5s14.5 33.167 14.5 60.5h-4 +c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="505" +d="M417 485c36 0 53.999 -10.333 53.999 -31s-18 -31 -54 -31h-39c-16.667 0 -45 3.33301 -85 10c-5.33301 1.33301 -9.83301 0.166016 -13.5 -3.50098s-4.83398 -9.5 -3.50098 -17.5s2.66602 -17 3.99902 -27c3.33301 -24.667 5 -42.667 5 -54l-11 -370 +c0 -36 -7 -54 -21 -54s-21 18 -21 54l-11 370c0 24.667 3 53 9 85c1.33301 5.33301 0.166016 9.83301 -3.50098 13.5s-8.16699 4.83398 -13.5 3.50098c-40 -6.66699 -68.333 -10 -85 -10h-39c-36 0 -54 10.333 -54 31s18 31 54 31h39c20.667 0 49 -3 85 -9 +c5.33301 -1.33301 9.83301 -0.166016 13.5 3.50098s4.83398 8.16699 3.50098 13.5c-6.66699 40 -10 68.333 -10 85v41c0 22 5.33301 38 16 48c4.66699 4 10.334 6 17.001 6c10.667 0 19.334 -7 26.001 -21c4.66699 -9.33301 7 -20.333 7 -33v-41 +c0 -16.667 -3.33301 -45 -10 -85c-1.33301 -5.33301 -0.166016 -9.83301 3.50098 -13.5s8.16699 -4.83398 13.5 -3.50098c36 6 64.333 9 85 9h39z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="531" +d="M430 156c36 0 54.001 -10.332 54.001 -30.999s-18 -31 -54 -31h-39c-20.667 0 -49 3 -85 9c-5.33301 1.33301 -9.83301 0.166016 -13.5 -3.50098s-4.83398 -8.16699 -3.50098 -13.5c6.66699 -40 10 -68.333 10 -85v-41c0 -20.667 -5.66699 -36.667 -17 -48 +c-4 -4 -9.33301 -6 -16 -6c-16.667 0 -27.334 12.667 -32.001 38c-0.666992 6 -1 11.333 -1 16v41c0 16.667 3.33301 45 10 85c1.33301 5.33301 0.166016 9.83301 -3.50098 13.5s-8.16699 4.83398 -13.5 3.50098c-36 -6 -64.333 -9 -85 -9h-39c-36 0 -54 10.333 -54 31 +s18 31 54 31h39c16.667 0 45 -3.33301 85 -10c5.33301 -1.33301 9.83301 -0.166016 13.5 3.50098s4.66699 11.5 3 23.5s-3.16699 25.667 -4.5 41c-2.66699 30.667 -4 56 -4 76c0 28.667 3 71 9 127c1.33301 5.33301 0.166016 9.83301 -3.50098 13.5 +s-8.16699 4.83398 -13.5 3.50098c-40 -6.66699 -68.333 -10 -85 -10h-39c-36 0 -54 10.333 -54 31s18 31 54 31h39c20.667 0 49 -3 85 -9c5.33301 -1.33301 9.83301 -0.166016 13.5 3.50098s4.83398 8.16699 3.50098 13.5c-6.66699 40 -10 68.333 -10 85v41 +c0 22 5.66699 38 17 48c4 4 9.33301 6 16 6c10.667 0 19.334 -6.66699 26.001 -20c4.66699 -10 7 -21.333 7 -34v-41c0 -16.667 -3.33301 -45 -10 -85c-1.33301 -5.33301 -0.166016 -9.83301 3.50098 -13.5s8.16699 -4.83398 13.5 -3.50098c36 6 64.333 9 85 9h39 +c36 0 54 -10.333 54 -31s-18 -31 -54 -31h-39c-16.667 0 -45 3.33301 -85 10c-5.33301 1.33301 -9.83301 0.166016 -13.5 -3.50098s-4.83398 -11.5 -3.50098 -23.5s2.66602 -25.667 3.99902 -41c3.33301 -38.667 5 -64 5 -76c0 -14.667 -1.16699 -34.834 -3.5 -60.501 +s-4.16602 -44.5 -5.49902 -56.5s-0.166016 -19.833 3.50098 -23.5s8.16699 -4.83398 13.5 -3.50098c40 6.66699 68.333 10 85 10h39z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="377" +d="M188 526c18.667 0 36 -3.5 52 -10.5s30 -16.5 42 -28.5c26 -26 39 -57.333 39 -94s-13 -68 -39 -94s-57 -39 -93 -39c-36.667 0 -68 13 -94 39s-39 57.333 -39 94s13 68 39 94s57 39 93 39z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="968" +d="M135 115c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM490 115 +c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10zM842 115 +c15.333 0 28.5 -5.5 39.5 -16.5s16.5 -24.167 16.5 -39.5v-6c0 -15.333 -5.5 -28.5 -16.5 -39.5s-24.167 -16.5 -39.5 -16.5h-10c-15.333 0 -28.5 5.5 -39.5 16.5s-16.5 24.167 -16.5 39.5v6c0 15.333 5.5 28.5 16.5 39.5s24.167 16.5 39.5 16.5h10z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="377" +d="M294 85c6 -7.33301 9 -16.333 9 -27s-3.66699 -19.667 -11 -27s-17 -11 -29 -11s-21 3.66699 -27 11l-164 181c-12 12 -18 26.333 -18 43s6 31 18 43l164 181c6 7.33301 15 11 27 11s21.667 -3.66699 29 -11s11 -16.5 11 -27.5s-3 -19.833 -9 -26.5l-160 -170z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="377" +d="M85 31c-7.33301 7.33301 -11 16.333 -11 27s3 19.667 9 27l160 170l-160 170c-6 6.66699 -9 15.5 -9 26.5s3.66699 20.167 11 27.5s17 11 29 11s21 -3.66699 27 -11l164 -181c12 -12 18 -26.333 18 -43s-6 -31 -18 -43l-164 -181c-6 -7.33301 -15 -11 -27 -11 +s-21.667 3.66699 -29 11z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="200" +d="M-78 -10c-6 -9.33301 -14.5 -14 -25.5 -14s-19.833 3.16699 -26.5 9.5s-10 13.333 -10 21s1.66699 14.834 5 21.501l414 682c6 9.33301 14.5 14 25.5 14s19.833 -3.16699 26.5 -9.5s10 -13.333 10 -21s-1.66699 -14.834 -5 -21.501z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="682" +d="M129 349c0 15.333 1.33301 30.9971 4 46.9971h-55c-10 0 -18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5s3.5 18.5 10.5 25.5s15.5 10.5 25.5 10.5h71c22 70.667 61 128 117 172c57.333 45.333 124.666 68 201.999 68c53.333 0 102 -10.667 146 -32 +c15.333 -8 23 -18.833 23 -32.5s-4 -24.334 -12 -32.001s-15.667 -11.5 -23 -11.5c-10 0 -20.667 2 -32 6c-26 10.667 -55.667 16 -89 16s-61.333 -3.5 -84 -10.5s-43.667 -17.167 -63 -30.5c-40 -28 -70 -65.667 -90 -113h287c10 0 18.5 -3.5 25.5 -10.5 +s10.5 -15.333 10.5 -25s-3.5 -18.167 -10.5 -25.5s-15.5 -11 -25.5 -11h-308c-2 -15.333 -3 -31.166 -3 -47.499s1 -31.833 3 -46.5h258c10 0 18.667 -3.66699 26 -11s11 -16.166 11 -26.499s-3.33301 -18.833 -10 -25.5s-15.667 -10 -27 -10h-237 +c20 -47.333 49.833 -84.666 89.5 -111.999s84.5 -41 134.5 -41c40 0 76.333 5.66699 109 17c6.66699 3.33301 14.334 5 23.001 5s17 -3.83301 25 -11.5s12 -18.5 12 -32.5s-7.66699 -24.667 -23 -32c-44 -21.333 -89.333 -32 -136 -32s-87 6 -121 18s-64.333 28.667 -91 50 +c-56.667 44.667 -95.667 101.667 -117 171h-71c-10 0 -18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5s3.5 18.667 10.5 26s15.5 11 25.5 11h55c-2.66699 14.667 -4 30.334 -4 47.001z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="953" +d="M648 387l116 287c8 17.333 21 26 39 26h17c12 0 22 -4.16699 30 -12.5s12 -18.166 12 -29.499v-309c0 -9.33301 -3 -17 -9 -23s-13.667 -9 -23 -9s-17 3 -23 9s-9 13.667 -9 23v262l-111 -269c-6.66699 -16.667 -19.667 -25 -39 -25s-32.333 8.33301 -39 25l-111 269 +v-262c0 -9.33301 -3 -17 -9 -23s-13.667 -9 -23 -9s-17 3 -23 9s-9 13.667 -9 23v309c0 11.333 4 21.166 12 29.499s18 12.5 30 12.5h17c18 0 31 -8.66699 39 -26zM350 698c8 0 14.833 -2.83301 20.5 -8.5s8.5 -12.5 8.5 -20.5s-2.83301 -14.833 -8.5 -20.5 +s-12.5 -8.5 -20.5 -8.5h-101v-292c0 -9.33301 -3 -16.833 -9 -22.5s-13.667 -8.5 -23 -8.5s-16.833 2.83301 -22.5 8.5s-8.5 13.167 -8.5 22.5v292h-100c-8 0 -14.833 2.83301 -20.5 8.5s-8.5 12.5 -8.5 20.5s2.83301 14.833 8.5 20.5s12.5 8.5 20.5 8.5h264z" /> + <glyph glyph-name="Omega" unicode="Ω" horiz-adv-x="790" +d="M721 369c0 -125.333 -41.667 -222.333 -125 -291h101c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-185c-12.667 0 -23.667 4.5 -33 13.5s-14 18.5 -14 28.5c0 20 7.5 34.5 22.5 43.5 +s31.333 20.5 49 34.5s34.167 32 49.5 54c35.333 51.333 53 112.666 53 183.999c0 72 -21.667 132 -65 180c-46 52.667 -105.667 79 -179 79s-133 -26.333 -179 -79c-43.333 -48 -65 -108 -65 -180c0 -71.333 17.667 -132.666 53 -183.999c24 -34 56.667 -63.333 98 -88 +c15.333 -9.33301 23 -21.5 23 -36.5s-4.66699 -27 -14 -36s-20.333 -13.5 -33 -13.5h-185c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h101c-83.333 68.667 -125 165.667 -125 291 +c0 40.667 7.33301 81.167 22 121.5s36 76.666 64 108.999s62.167 58.5 102.5 78.5s86 30 137 30s96.667 -10 137 -30s74.5 -46.167 102.5 -78.5s49.5 -68.666 64.5 -108.999s22.5 -80.833 22.5 -121.5z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="685" +d="M530 363c2.66699 22.667 3.99805 46.3301 3.99805 70.9971s-3.33301 51.334 -10 80.001s-17.667 54.667 -33 78c-34 50.667 -84 76 -150 76c-40.667 0 -75 -4.33301 -103 -13c-4 -1.33301 -10.167 -2 -18.5 -2s-16.333 3.83301 -24 11.5s-11.5 16.5 -11.5 26.5 +c0 18 8.66699 31 26 39c43.333 16 89.333 24 138 24s89.834 -9 123.501 -27s61.834 -41.667 84.501 -71c44 -59.333 66 -133.666 66 -222.999c0 -134 -28 -240 -84 -318c-60.667 -83.333 -145.667 -125 -255 -125c-80.667 0 -143 24 -187 72 +c-36 40.667 -54 89.334 -54 146.001c0 70.667 25.333 129 76 175c52.667 47.333 120 71 202 71c58.667 0 115.334 -19 170.001 -57c15.333 -10.667 28.666 -22 39.999 -34zM297.998 69.9961c32 0 61.334 6.83203 88.001 20.499s48.667 30.834 66 51.501 +c29.333 34.667 51 81.334 65 140.001c-20 26.667 -46.333 49.5 -79 68.5s-66.334 28.5 -101.001 28.5s-64 -3.66699 -88 -11s-44.333 -18 -61 -32c-36.667 -30 -55 -69.667 -55 -119c0 -40.667 13 -74.334 39 -101.001c28.667 -30.667 70.667 -46 126 -46z" /> + <glyph glyph-name="Delta" unicode="∆" horiz-adv-x="721" +d="M646 106c5.33301 -14 8.00195 -26 8.00195 -36c0 -20.667 -7.16699 -37.5 -21.5 -50.5s-31.833 -19.5 -52.5 -19.5h-438c-20.667 0 -38.167 6.5 -52.5 19.5s-21.5 29.833 -21.5 50.5c0 10 2.66699 22 8 36l215 540c13.333 34.667 36.666 52 69.999 52 +s56.666 -17.333 69.999 -52zM576.002 71l-215 539l-215 -539h430z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="741" +d="M692.5 685.5c8.33301 -8.33301 12.5 -18.5 12.5 -30.5s-4.16699 -22.167 -12.5 -30.5s-18.5 -12.5 -30.5 -12.5h-74v-684c0 -12 -4.16699 -22.167 -12.5 -30.5s-18.5 -12.5 -30.5 -12.5s-22.167 4.16699 -30.5 12.5s-12.5 18.5 -12.5 30.5v684h-263v-684 +c0 -12 -4.16699 -22.167 -12.5 -30.5s-18.5 -12.5 -30.5 -12.5s-22.167 4.16699 -30.5 12.5s-12.5 18.5 -12.5 30.5v684h-74c-12 0 -22.167 4.16699 -30.5 12.5s-12.5 18.5 -12.5 30.5s4.16699 22.167 12.5 30.5s18.5 12.5 30.5 12.5h583c12 0 22.167 -4.16699 30.5 -12.5z +" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="631" +d="M104 -103c-17.333 0 -32.166 6.33301 -44.499 19s-18.5 25.667 -18.5 39c0 18.667 6.33301 36 19 52l272 291l-272 291c-12.667 16 -19 32 -19 48s6.16699 30.333 18.5 43s27.166 19 44.499 19h442c12 0 22.333 -4.33301 31 -13s13 -19 13 -31 +s-4.33301 -22.167 -13 -30.5s-19 -12.5 -31 -12.5h-393l251 -265c12.667 -14 19 -30.333 19 -49s-6.33301 -35 -19 -49l-251 -265h393c12 0 22.333 -4.16699 31 -12.5s13 -18.5 13 -30.5s-4.33301 -22.333 -13 -31s-19 -13 -31 -13h-442z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="712" +d="M627 359c8 -8 12 -17.667 12 -29s-4 -20.833 -12 -28.5s-17.667 -11.5 -29 -11.5h-485c-11.333 0 -20.833 3.83301 -28.5 11.5s-11.5 17.167 -11.5 28.5s3.83301 21 11.5 29s17.167 12 28.5 12h485c11.333 0 21 -4 29 -12z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="620" +d="M619 690c5.33301 -5.33301 7.99902 -11.667 7.99902 -19s-2.66699 -13.5 -8 -18.5s-11.666 -7.5 -18.999 -7.5h-89l-195 -611c-3.33301 -10 -9.16602 -18.167 -17.499 -24.5s-17.833 -9.5 -28.5 -9.5h-4c-22 -0 -37.667 12.333 -47 37l-114 311l-56 -22 +c-4 -2 -9.16699 -3 -15.5 -3s-12.333 3 -18 9s-8.5 12.833 -8.5 20.5s2.16699 13.5 6.5 17.5s10.166 7.66699 17.499 11l82 33c6.66699 2.66699 13.667 4 21 4c14.667 0 25.334 -9.66699 32.001 -29l100 -283l184 552c8 26.667 23.667 40 47 40h103 +c7.33301 0 13.666 -2.66699 18.999 -8z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="963" +d="M631.5 444.5c21.667 8.33301 48.8301 12.5 81.4971 12.5s61.334 -6.66699 86.001 -20s44.334 -30 59.001 -50c26.667 -36.667 40 -80.667 40 -132s-13.333 -95.333 -40 -132c-34 -46.667 -85 -70 -153 -70c-69.333 0 -129.666 30 -180.999 90 +c-14.667 16.667 -28.334 33.334 -41.001 50.001h-3c-30 -41.333 -56.667 -71 -80 -89c-46.667 -34 -91.5 -51 -134.5 -51s-76.833 6.66699 -101.5 20s-44.334 30 -59.001 50c-26.667 36.667 -40 80.667 -40 132s13.333 95.333 40 132c34 46.667 85 70 153 70 +c68.667 0 129.334 -30 182.001 -90c14.667 -16.667 28 -33.334 40 -50.001h3c34 44.667 61.833 75 83.5 91s43.334 28.167 65.001 36.5zM631.996 143.5c18.667 -9 39 -13.499 61 -13.499s40.833 3.66699 56.5 11s28.5 17 38.5 29c20 22.667 30 51 30 85s-10 62.333 -30 85 +c-22.667 26.667 -53.667 40 -93 40c-40 0 -77.667 -15.333 -113 -46c-14 -12.667 -26.333 -26.334 -37 -41.001l-28 -38l28 -37.5c10.667 -14.333 23.167 -28 37.5 -41s30.833 -24 49.5 -33zM269.996 130.001c22 0 42.333 4.5 61 13.5s35 19.833 49 32.5 +c20.667 18.667 42.667 45 66 79c-24.667 36 -45.334 61.333 -62.001 76c-37.333 32.667 -76 49 -116 49c-39.333 0 -70.333 -13.333 -93 -40c-20 -22.667 -30 -51 -30 -85s10 -62.333 30 -85c22.667 -26.667 54.334 -40 95.001 -40z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="371" +d="M37 -71l21.002 -1.00195c16.667 0 30.667 3 42 9s17.666 21.667 18.999 47l48 681c2 36.667 13.333 67.334 34 92.001s53.667 37 99 37c32 0 51.667 -4.16699 59 -12.5s11 -17.166 11 -26.499s-3.66699 -17.666 -11 -24.999s-15.666 -11 -24.999 -11l-20 1 +c-16.667 0 -30.667 -3.16699 -42 -9.5s-18 -22.166 -20 -47.499l-47 -681c-4.66699 -60.667 -29.667 -100.334 -75 -119.001c-16 -6.66699 -31.333 -10 -46 -10c-22.667 0 -39.334 1 -50.001 3c-22 4 -33 16.333 -33 37c0 9.33301 3.16699 17.666 9.5 24.999 +s15.166 11 26.499 11z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="675" +d="M586.5 436.5c5.66699 -5.66699 8.50195 -11.167 8.50195 -16.5s-0.666992 -10 -2 -14c-22 -63.333 -63.333 -95 -124 -95c-37.333 0 -83.666 12.333 -138.999 37c-21.333 10 -42 18.833 -62 26.5s-40 11.5 -60 11.5c-36 0 -60 -17 -72 -51 +c-4.66699 -12 -11.834 -18 -21.501 -18s-17.334 2.83301 -23.001 8.5s-8.5 11.167 -8.5 16.5s1 10 3 14c27.333 63.333 68.333 95 123 95c37.333 0 83.666 -12.333 138.999 -37c21.333 -10 42 -18.833 62 -26.5s39.667 -11.5 59 -11.5c36 0 59.667 16.333 71 49 +c5.33301 13.333 13 20 23 20s17.833 -2.83301 23.5 -8.5zM586.502 251.5c5.66699 -5.66699 8.50195 -11.167 8.50195 -16.5s-0.666992 -10 -2 -14c-22 -63.333 -63.333 -95 -124 -95c-37.333 0 -83.666 12.667 -138.999 38c-21.333 9.33301 -42 17.833 -62 25.5 +s-40 11.5 -60 11.5c-36 0 -60 -17 -72 -51c-4.66699 -12 -11.834 -18 -21.501 -18s-17.334 2.83301 -23.001 8.5s-8.5 11.167 -8.5 16.5s1 10 3 14c27.333 63.333 68.333 95 123 95c37.333 0 83.666 -12.667 138.999 -38c21.333 -9.33301 42 -17.833 62 -25.5 +s39.667 -11.5 59 -11.5c36 0 59.667 16.333 71 49c5.33301 13.333 13 20 23 20s17.833 -2.83301 23.5 -8.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="688" +d="M70 415c-7.33301 7.33301 -11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h304l86 136c5.33301 8.66699 12.833 13 22.5 13s17.5 -2.5 23.5 -7.5s9 -11.333 9 -19s-1.66699 -14.5 -5 -20.5l-65 -102h113c11.333 0 20.666 -3.66699 27.999 -11 +s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-163l-92 -146h255c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-305l-88 -140 +c-5.33301 -8.66699 -12.833 -13 -22.5 -13s-17.5 2.5 -23.5 7.5s-9 11.333 -9 19s1.66699 14.5 5 20.5l67 106h-112c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h162l92 146h-254 +c-11.333 0 -20.666 3.66699 -27.999 11z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="630" +d="M541.5 124.5c-7.66699 -7.66699 -15.834 -11.4971 -24.501 -11.4971s-15.334 1 -20.001 3l-399 179c-24 11.333 -36 28.666 -36 51.999v8c0 23.333 12 40.666 36 51.999l399 179c4.66699 2 11.334 3 20.001 3s16.834 -3.83301 24.501 -11.5s11.5 -16.167 11.5 -25.5 +c0 -20 -9 -33.667 -27 -41l-360 -160l360 -160c8 -3.33301 14.5 -8.5 19.5 -15.5s7.5 -15.333 7.5 -25s-3.83301 -18.334 -11.5 -26.001zM517 73.0029c10 0 18.667 -3.66699 26 -11s11 -16 11 -26s-3.66699 -18.5 -11 -25.5s-16 -10.5 -26 -10.5h-423 +c-10 0 -18.5 3.5 -25.5 10.5s-10.5 15.5 -10.5 25.5s3.5 18.667 10.5 26s15.5 11 25.5 11h423z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="630" +d="M133 116c-5.33301 -2 -12.166 -3.00293 -20.499 -3.00293s-16.333 3.83301 -24 11.5s-11.5 16.167 -11.5 25.5c0 20 9 33.667 27 41l360 160l-360 160c-8 3.33301 -14.5 8.5 -19.5 15.5s-7.5 15.333 -7.5 25s3.83301 18.334 11.5 26.001s15.667 11.5 24 11.5 +s15.166 -1 20.499 -3l399 -179c24 -11.333 36 -28.666 36 -51.999v-8c0 -23.333 -12 -40.666 -36 -51.999zM536 72.9971c10 0 18.5 -3.66699 25.5 -11s10.5 -16 10.5 -26s-3.5 -18.5 -10.5 -25.5s-15.5 -10.5 -25.5 -10.5h-423c-10 0 -18.667 3.5 -26 10.5 +s-11 15.5 -11 25.5s3.66699 18.667 11 26s16 11 26 11h423z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="626" +d="M309 -105c-23.333 0 -40.333 9.33301 -51 28l-210 345c-5.33301 9.33301 -8 19.666 -8 30.999s2.66699 21.666 8 30.999l210 345c10.667 18.667 27.667 28 51 28h8c23.333 0 40.333 -9.33301 51 -28l210 -345c5.33301 -9.33301 8 -19.666 8 -30.999 +s-2.66699 -21.666 -8 -30.999l-210 -345c-10.667 -18.667 -27.667 -28 -51 -28h-8zM508 299l-195 328l-195 -328l195 -328z" /> + <glyph glyph-name="f_f" unicode="ff" horiz-adv-x="774" +d="M734 647l-50.002 6c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h125c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-125v-392c0 -12.667 -4.33301 -23.334 -13 -32.001 +s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-303v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999 +s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12l-50 6 +c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h303v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="641" +d="M340 647l-50.001 6.00098c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h307c12.667 -1.33301 23 -6.16602 31 -14.499s12 -18.833 12 -31.5v-424c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13 +s-13 19.334 -13 32.001v392h-259v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11 +h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12zM566.999 665.001c0 -14 -5 -26 -15 -36s-22 -15 -36 -15h-6c-14 0 -26 5 -36 15 +s-15 22 -15 36v4c0 14 5 26 15 36s22 15 36 15h6c14 0 26 -5 36 -15s15 -22 15 -36v-4z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="644" +d="M340 647l-50.001 6c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h125c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-125v-392c0 -12.667 -4.33301 -23.334 -13 -32.001 +s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38 +c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12zM478.999 722c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-649c0 -12.667 -4.33301 -23.334 -13 -32.001 +s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v649c0 13.333 4.33301 24.333 13 33z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1035" +d="M734 647l-50.002 6.00195c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h304c13.333 0 24.333 -4.33301 33 -13s13 -19.667 13 -33v-424c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13 +s-13 19.334 -13 32.001v392h-259v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-303v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13 +s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20 +c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12l-50 6c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h303v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20 +c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12zM960.998 665.002c0 -14 -5 -26 -15 -36s-22 -15 -36 -15h-6c-14 0 -26 5 -36 15s-15 22 -15 36v4c0 14 5 26 15 36s22 15 36 15h6c14 0 26 -5 36 -15s15 -22 15 -36v-4z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1038" +d="M873 722c8.66699 8.66699 19.5 13 32.5 13s23.833 -4.33301 32.5 -13s13 -19.667 13 -33v-649c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v649c0 13.333 4.33301 24.333 13 33zM734 647l-50.002 6 +c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h125c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-125v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13 +s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-303v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999 +s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12l-50 6 +c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h303v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12z" /> + <glyph glyph-name="s_t" unicode="st" horiz-adv-x="842" +d="M323 513c-17.333 24.667 -26.002 51.6699 -26.002 81.0029s4 54.5 12 75.5s19.667 39.167 35 54.5c32 33.333 77 50 135 50c56.667 0 101.667 -19.333 135 -58c31.333 -36 47 -80 47 -132v-74h113c11.333 0 20.666 -3.66699 27.999 -11s11 -16.666 11 -27.999 +s-3.66699 -20.666 -11 -27.999s-16.666 -11 -27.999 -11h-113v-302c0 -25.333 7.66699 -42.666 23 -51.999c8.66699 -5.33301 21.834 -8 39.501 -8s30.334 1.5 38.001 4.5s16 4.5 25 4.5s17.167 -3.33301 24.5 -10s11 -16.667 11 -30s-6.66699 -23 -20 -29 +c-28.667 -13.333 -53.167 -20 -73.5 -20s-38.833 1 -55.5 3s-32.667 7.66699 -48 17c-36.667 21.333 -55 58.666 -55 111.999v310h-61c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h61v84 +c0 50.667 -19.333 85 -58 103c-14.667 6.66699 -35.167 10 -61.5 10s-50.5 -9.66699 -72.5 -29s-33 -44.5 -33 -75.5s5.33301 -54.833 16 -71.5s21.667 -28.334 33 -35.001c18 -11.333 27 -23.333 27 -36s-3.83301 -23 -11.5 -31s-15.167 -12 -22.5 -12 +s-16.333 1.66699 -27 5c-32 10 -67 15 -105 15s-66.833 -6.66699 -86.5 -20s-29.5 -29.333 -29.5 -48s7.5 -32.5 22.5 -41.5s33.5 -16.5 55.5 -22.5s46.167 -12 72.5 -18s50.5 -14.333 72.5 -25c52 -26.667 78 -68 78 -124c0 -42.667 -16 -77.334 -48 -104.001 +c-34.667 -29.333 -83 -44 -145 -44c-67.333 0 -128 15 -182 45c-11.333 8 -17 18 -17 30s3.66699 22.167 11 30.5s15.333 12.5 24 12.5s19 -2.66699 31 -8c38.667 -17.333 81 -26 127 -26c74 0 111 23.667 111 71c0 14.667 -7.33301 25.834 -22 33.501 +s-33.167 14.5 -55.5 20.5s-46.5 12.167 -72.5 18.5s-50.167 15.166 -72.5 26.499s-40.833 26.166 -55.5 44.499s-22 40.833 -22 67.5s4 49.667 12 69s20 36 36 50c35.333 30 84.333 45 147 45c22.667 0 48 -2.33301 76 -7z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="333" + /> + <glyph glyph-name="f_j" horiz-adv-x="641" +d="M340 647l-50.002 6c-25.333 0 -45.333 -5.83301 -60 -17.5s-22 -35.167 -22 -70.5v-55h307c12.667 -1.33301 23 -6.16602 31 -14.499s12 -18.833 12 -31.5v-567c0 -64.667 -23.333 -107 -70 -127c-16.667 -6.66699 -37 -10 -61 -10s-44.833 2.83301 -62.5 8.5 +s-26.5 17.834 -26.5 36.501c0 10 3.5 18.833 10.5 26.5s16.167 11.5 27.5 11.5l30 -3c20.667 0 34.334 2.66699 41.001 8c13.333 8.66699 20 25.667 20 51v533h-259v-392c0 -12.667 -4.33301 -23.334 -13 -32.001s-19.5 -13 -32.5 -13s-23.833 4.33301 -32.5 13 +s-13 19.334 -13 32.001v392h-59c-11.333 0 -20.666 3.66699 -27.999 11s-11 16.666 -11 27.999s3.66699 20.666 11 27.999s16.666 11 27.999 11h59v58c0 58 16.333 102.667 49 134c26.667 25.333 60.334 38 101.001 38c31.333 0 60.333 -6.66699 87 -20 +c15.333 -8.66699 23 -19 23 -31s-3.5 -22 -10.5 -30s-15.833 -12 -26.5 -12zM566.998 665c0 -14 -5 -26 -15 -36s-22 -15 -36 -15h-6c-14 0 -26 5 -36 15s-15 22 -15 36v4c0 14 5 26 15 36s22 15 36 15h6c14 0 26 -5 36 -15s15 -22 15 -36v-4z" /> + <hkern u1=""" u2="st" k="16" /> + <hkern u1=""" u2="‹" k="34" /> + <hkern u1=""" u2="…" k="130" /> + <hkern u1=""" u2="„" k="137" /> + <hkern u1=""" u2="‚" k="130" /> + <hkern u1=""" u2="ș" k="16" /> + <hkern u1=""" u2="ǿ" k="28" /> + <hkern u1=""" u2="ǽ" k="14" /> + <hkern u1=""" u2="Ǽ" k="64" /> + <hkern u1=""" u2="ø" k="28" /> + <hkern u1=""" u2="ö" k="28" /> + <hkern u1=""" u2="õ" k="28" /> + <hkern u1=""" u2="ô" k="28" /> + <hkern u1=""" u2="ó" k="28" /> + <hkern u1=""" u2="ò" k="28" /> + <hkern u1=""" u2="ð" k="28" /> + <hkern u1=""" u2="ë" k="28" /> + <hkern u1=""" u2="ê" k="28" /> + <hkern u1=""" u2="é" k="28" /> + <hkern u1=""" u2="è" k="28" /> + <hkern u1=""" u2="ç" k="28" /> + <hkern u1=""" u2="æ" k="14" /> + <hkern u1=""" u2="å" k="14" /> + <hkern u1=""" u2="ä" k="14" /> + <hkern u1=""" u2="ã" k="14" /> + <hkern u1=""" u2="â" k="14" /> + <hkern u1=""" u2="á" k="14" /> + <hkern u1=""" u2="à" k="14" /> + <hkern u1=""" u2="Æ" k="64" /> + <hkern u1=""" u2="Å" k="51" /> + <hkern u1=""" u2="Ä" k="51" /> + <hkern u1=""" u2="Ã" k="51" /> + <hkern u1=""" u2="Â" k="51" /> + <hkern u1=""" u2="Á" k="51" /> + <hkern u1=""" u2="À" k="51" /> + <hkern u1=""" u2="«" k="34" /> + <hkern u1=""" u2="s" k="16" /> + <hkern u1=""" u2="q" k="28" /> + <hkern u1=""" u2="o" k="28" /> + <hkern u1=""" u2="g" k="28" /> + <hkern u1=""" u2="e" k="28" /> + <hkern u1=""" u2="d" k="28" /> + <hkern u1=""" u2="c" k="28" /> + <hkern u1=""" u2="a" k="14" /> + <hkern u1=""" u2="A" k="51" /> + <hkern u1=""" u2="@" k="20" /> + <hkern u1=""" u2="/" k="43" /> + <hkern u1=""" u2="." k="130" /> + <hkern u1=""" u2="," k="130" /> + <hkern u1="&" g2="f_j" k="13" /> + <hkern u1="&" u2="ffl" k="13" /> + <hkern u1="&" u2="ffi" k="13" /> + <hkern u1="&" u2="fl" k="13" /> + <hkern u1="&" u2="fi" k="13" /> + <hkern u1="&" u2="ff" k="13" /> + <hkern u1="&" u2="”" k="46" /> + <hkern u1="&" u2="’" k="46" /> + <hkern u1="&" u2="ț" k="15" /> + <hkern u1="&" u2="Ț" k="48" /> + <hkern u1="&" u2="Ǽ" k="-19" /> + <hkern u1="&" u2="ſ" k="13" /> + <hkern u1="&" u2="ÿ" k="21" /> + <hkern u1="&" u2="ý" k="21" /> + <hkern u1="&" u2="ß" k="13" /> + <hkern u1="&" u2="Ý" k="56" /> + <hkern u1="&" u2="Ü" k="5" /> + <hkern u1="&" u2="Û" k="5" /> + <hkern u1="&" u2="Ú" k="5" /> + <hkern u1="&" u2="Ù" k="5" /> + <hkern u1="&" u2="Æ" k="-19" /> + <hkern u1="&" u2="y" k="21" /> + <hkern u1="&" u2="v" k="24" /> + <hkern u1="&" u2="t" k="15" /> + <hkern u1="&" u2="f" k="13" /> + <hkern u1="&" u2="Y" k="56" /> + <hkern u1="&" u2="V" k="46" /> + <hkern u1="&" u2="U" k="5" /> + <hkern u1="&" u2="T" k="48" /> + <hkern u1="&" u2="'" k="46" /> + <hkern u1="&" u2=""" k="46" /> + <hkern u1="'" u2="st" k="16" /> + <hkern u1="'" u2="‹" k="34" /> + <hkern u1="'" u2="…" k="119" /> + <hkern u1="'" u2="„" k="119" /> + <hkern u1="'" u2="‚" k="119" /> + <hkern u1="'" u2="ș" k="16" /> + <hkern u1="'" u2="ǿ" k="28" /> + <hkern u1="'" u2="ǽ" k="14" /> + <hkern u1="'" u2="Ǽ" k="64" /> + <hkern u1="'" u2="ø" k="28" /> + <hkern u1="'" u2="ö" k="28" /> + <hkern u1="'" u2="õ" k="28" /> + <hkern u1="'" u2="ô" k="28" /> + <hkern u1="'" u2="ó" k="28" /> + <hkern u1="'" u2="ò" k="28" /> + <hkern u1="'" u2="ð" k="28" /> + <hkern u1="'" u2="ë" k="28" /> + <hkern u1="'" u2="ê" k="28" /> + <hkern u1="'" u2="é" k="28" /> + <hkern u1="'" u2="è" k="28" /> + <hkern u1="'" u2="ç" k="28" /> + <hkern u1="'" u2="æ" k="14" /> + <hkern u1="'" u2="å" k="14" /> + <hkern u1="'" u2="ä" k="14" /> + <hkern u1="'" u2="ã" k="14" /> + <hkern u1="'" u2="â" k="14" /> + <hkern u1="'" u2="á" k="14" /> + <hkern u1="'" u2="à" k="14" /> + <hkern u1="'" u2="Æ" k="64" /> + <hkern u1="'" u2="Å" k="51" /> + <hkern u1="'" u2="Ä" k="51" /> + <hkern u1="'" u2="Ã" k="51" /> + <hkern u1="'" u2="Â" k="51" /> + <hkern u1="'" u2="Á" k="51" /> + <hkern u1="'" u2="À" k="51" /> + <hkern u1="'" u2="«" k="34" /> + <hkern u1="'" u2="s" k="16" /> + <hkern u1="'" u2="q" k="28" /> + <hkern u1="'" u2="o" k="28" /> + <hkern u1="'" u2="g" k="28" /> + <hkern u1="'" u2="e" k="28" /> + <hkern u1="'" u2="d" k="28" /> + <hkern u1="'" u2="c" k="28" /> + <hkern u1="'" u2="a" k="14" /> + <hkern u1="'" u2="A" k="51" /> + <hkern u1="'" u2="@" k="20" /> + <hkern u1="'" u2="/" k="43" /> + <hkern u1="'" u2="." k="119" /> + <hkern u1="'" u2="," k="119" /> + <hkern u1="(" g2="f_j" k="13" /> + <hkern u1="(" u2="st" k="19" /> + <hkern u1="(" u2="ffl" k="13" /> + <hkern u1="(" u2="ffi" k="13" /> + <hkern u1="(" u2="fl" k="13" /> + <hkern u1="(" u2="fi" k="13" /> + <hkern u1="(" u2="ff" k="13" /> + <hkern u1="(" u2="ț" k="22" /> + <hkern u1="(" u2="ș" k="19" /> + <hkern u1="(" u2="ǿ" k="27" /> + <hkern u1="(" u2="Ǿ" k="21" /> + <hkern u1="(" u2="ǽ" k="19" /> + <hkern u1="(" u2="ſ" k="13" /> + <hkern u1="(" u2="ÿ" k="15" /> + <hkern u1="(" u2="ý" k="15" /> + <hkern u1="(" u2="ü" k="23" /> + <hkern u1="(" u2="û" k="23" /> + <hkern u1="(" u2="ú" k="23" /> + <hkern u1="(" u2="ù" k="23" /> + <hkern u1="(" u2="ø" k="27" /> + <hkern u1="(" u2="ö" k="27" /> + <hkern u1="(" u2="õ" k="27" /> + <hkern u1="(" u2="ô" k="27" /> + <hkern u1="(" u2="ó" k="27" /> + <hkern u1="(" u2="ò" k="27" /> + <hkern u1="(" u2="ñ" k="18" /> + <hkern u1="(" u2="ð" k="27" /> + <hkern u1="(" u2="ë" k="27" /> + <hkern u1="(" u2="ê" k="27" /> + <hkern u1="(" u2="é" k="27" /> + <hkern u1="(" u2="è" k="27" /> + <hkern u1="(" u2="ç" k="27" /> + <hkern u1="(" u2="æ" k="19" /> + <hkern u1="(" u2="å" k="19" /> + <hkern u1="(" u2="ä" k="19" /> + <hkern u1="(" u2="ã" k="19" /> + <hkern u1="(" u2="â" k="19" /> + <hkern u1="(" u2="á" k="19" /> + <hkern u1="(" u2="à" k="19" /> + <hkern u1="(" u2="ß" k="13" /> + <hkern u1="(" u2="Ü" k="12" /> + <hkern u1="(" u2="Û" k="12" /> + <hkern u1="(" u2="Ú" k="12" /> + <hkern u1="(" u2="Ù" k="12" /> + <hkern u1="(" u2="Ø" k="21" /> + <hkern u1="(" u2="Ö" k="21" /> + <hkern u1="(" u2="Õ" k="21" /> + <hkern u1="(" u2="Ô" k="21" /> + <hkern u1="(" u2="Ó" k="21" /> + <hkern u1="(" u2="Ò" k="21" /> + <hkern u1="(" u2="Î" k="-17" /> + <hkern u1="(" u2="Ç" k="21" /> + <hkern u1="(" u2="y" k="15" /> + <hkern u1="(" u2="v" k="21" /> + <hkern u1="(" u2="u" k="23" /> + <hkern u1="(" u2="t" k="22" /> + <hkern u1="(" u2="s" k="19" /> + <hkern u1="(" u2="r" k="18" /> + <hkern u1="(" u2="q" k="27" /> + <hkern u1="(" u2="p" k="18" /> + <hkern u1="(" u2="o" k="27" /> + <hkern u1="(" u2="n" k="18" /> + <hkern u1="(" u2="m" k="18" /> + <hkern u1="(" u2="g" k="27" /> + <hkern u1="(" u2="f" k="13" /> + <hkern u1="(" u2="e" k="27" /> + <hkern u1="(" u2="d" k="27" /> + <hkern u1="(" u2="c" k="27" /> + <hkern u1="(" u2="a" k="19" /> + <hkern u1="(" u2="U" k="12" /> + <hkern u1="(" u2="Q" k="21" /> + <hkern u1="(" u2="O" k="21" /> + <hkern u1="(" u2="G" k="21" /> + <hkern u1="(" u2="C" k="21" /> + <hkern u1="*" u2="ǿ" k="14" /> + <hkern u1="*" u2="ǽ" k="10" /> + <hkern u1="*" u2="Ǽ" k="51" /> + <hkern u1="*" u2="ø" k="14" /> + <hkern u1="*" u2="ö" k="14" /> + <hkern u1="*" u2="õ" k="14" /> + <hkern u1="*" u2="ô" k="14" /> + <hkern u1="*" u2="ó" k="14" /> + <hkern u1="*" u2="ò" k="14" /> + <hkern u1="*" u2="ð" k="14" /> + <hkern u1="*" u2="ï" k="-11" /> + <hkern u1="*" u2="î" k="-20" /> + <hkern u1="*" u2="ë" k="14" /> + <hkern u1="*" u2="ê" k="14" /> + <hkern u1="*" u2="é" k="14" /> + <hkern u1="*" u2="è" k="14" /> + <hkern u1="*" u2="ç" k="14" /> + <hkern u1="*" u2="æ" k="10" /> + <hkern u1="*" u2="å" k="10" /> + <hkern u1="*" u2="ä" k="10" /> + <hkern u1="*" u2="ã" k="10" /> + <hkern u1="*" u2="â" k="10" /> + <hkern u1="*" u2="á" k="10" /> + <hkern u1="*" u2="à" k="10" /> + <hkern u1="*" u2="Æ" k="51" /> + <hkern u1="*" u2="Å" k="41" /> + <hkern u1="*" u2="Ä" k="41" /> + <hkern u1="*" u2="Ã" k="41" /> + <hkern u1="*" u2="Â" k="41" /> + <hkern u1="*" u2="Á" k="41" /> + <hkern u1="*" u2="À" k="41" /> + <hkern u1="*" u2="q" k="14" /> + <hkern u1="*" u2="o" k="14" /> + <hkern u1="*" u2="g" k="14" /> + <hkern u1="*" u2="e" k="14" /> + <hkern u1="*" u2="d" k="14" /> + <hkern u1="*" u2="c" k="14" /> + <hkern u1="*" u2="a" k="10" /> + <hkern u1="*" u2="A" k="41" /> + <hkern u1="," g2="f_j" k="10" /> + <hkern u1="," u2="ffl" k="10" /> + <hkern u1="," u2="ffi" k="10" /> + <hkern u1="," u2="fl" k="10" /> + <hkern u1="," u2="fi" k="10" /> + <hkern u1="," u2="ff" k="10" /> + <hkern u1="," u2="”" k="125" /> + <hkern u1="," u2="“" k="124" /> + <hkern u1="," u2="’" k="119" /> + <hkern u1="," u2="‘" k="124" /> + <hkern u1="," u2="ț" k="12" /> + <hkern u1="," u2="Ț" k="64" /> + <hkern u1="," u2="Ǿ" k="19" /> + <hkern u1="," u2="ſ" k="10" /> + <hkern u1="," u2="ÿ" k="28" /> + <hkern u1="," u2="ý" k="28" /> + <hkern u1="," u2="ß" k="10" /> + <hkern u1="," u2="Ý" k="75" /> + <hkern u1="," u2="Ü" k="18" /> + <hkern u1="," u2="Û" k="18" /> + <hkern u1="," u2="Ú" k="18" /> + <hkern u1="," u2="Ù" k="18" /> + <hkern u1="," u2="Ø" k="19" /> + <hkern u1="," u2="Ö" k="19" /> + <hkern u1="," u2="Õ" k="19" /> + <hkern u1="," u2="Ô" k="19" /> + <hkern u1="," u2="Ó" k="19" /> + <hkern u1="," u2="Ò" k="19" /> + <hkern u1="," u2="Ç" k="19" /> + <hkern u1="," u2="y" k="28" /> + <hkern u1="," u2="v" k="31" /> + <hkern u1="," u2="t" k="12" /> + <hkern u1="," u2="f" k="10" /> + <hkern u1="," u2="Y" k="75" /> + <hkern u1="," u2="V" k="64" /> + <hkern u1="," u2="U" k="18" /> + <hkern u1="," u2="T" k="64" /> + <hkern u1="," u2="Q" k="19" /> + <hkern u1="," u2="O" k="19" /> + <hkern u1="," u2="G" k="19" /> + <hkern u1="," u2="C" k="19" /> + <hkern u1="," u2="'" k="119" /> + <hkern u1="," u2=""" k="125" /> + <hkern u1="-" g2="f_j" k="13" /> + <hkern u1="-" u2="ffl" k="13" /> + <hkern u1="-" u2="ffi" k="13" /> + <hkern u1="-" u2="fl" k="13" /> + <hkern u1="-" u2="fi" k="13" /> + <hkern u1="-" u2="ff" k="13" /> + <hkern u1="-" u2="ț" k="12" /> + <hkern u1="-" u2="Ț" k="64" /> + <hkern u1="-" u2="Ș" k="19" /> + <hkern u1="-" u2="ſ" k="13" /> + <hkern u1="-" u2="ß" k="13" /> + <hkern u1="-" u2="Ý" k="66" /> + <hkern u1="-" u2="Å" k="14" /> + <hkern u1="-" u2="Ä" k="14" /> + <hkern u1="-" u2="Ã" k="14" /> + <hkern u1="-" u2="Â" k="14" /> + <hkern u1="-" u2="Á" k="14" /> + <hkern u1="-" u2="À" k="14" /> + <hkern u1="-" u2="x" k="22" /> + <hkern u1="-" u2="v" k="8" /> + <hkern u1="-" u2="t" k="12" /> + <hkern u1="-" u2="f" k="13" /> + <hkern u1="-" u2="Y" k="66" /> + <hkern u1="-" u2="X" k="31" /> + <hkern u1="-" u2="V" k="33" /> + <hkern u1="-" u2="T" k="64" /> + <hkern u1="-" u2="S" k="19" /> + <hkern u1="-" u2="A" k="14" /> + <hkern u1="." g2="f_j" k="10" /> + <hkern u1="." u2="ffl" k="10" /> + <hkern u1="." u2="ffi" k="10" /> + <hkern u1="." u2="fl" k="10" /> + <hkern u1="." u2="fi" k="10" /> + <hkern u1="." u2="ff" k="10" /> + <hkern u1="." u2="”" k="125" /> + <hkern u1="." u2="“" k="124" /> + <hkern u1="." u2="’" k="119" /> + <hkern u1="." u2="‘" k="124" /> + <hkern u1="." u2="ț" k="12" /> + <hkern u1="." u2="Ț" k="64" /> + <hkern u1="." u2="Ǿ" k="19" /> + <hkern u1="." u2="ſ" k="10" /> + <hkern u1="." u2="ÿ" k="28" /> + <hkern u1="." u2="ý" k="28" /> + <hkern u1="." u2="ß" k="10" /> + <hkern u1="." u2="Ý" k="75" /> + <hkern u1="." u2="Ü" k="18" /> + <hkern u1="." u2="Û" k="18" /> + <hkern u1="." u2="Ú" k="18" /> + <hkern u1="." u2="Ù" k="18" /> + <hkern u1="." u2="Ø" k="19" /> + <hkern u1="." u2="Ö" k="19" /> + <hkern u1="." u2="Õ" k="19" /> + <hkern u1="." u2="Ô" k="19" /> + <hkern u1="." u2="Ó" k="19" /> + <hkern u1="." u2="Ò" k="19" /> + <hkern u1="." u2="Ç" k="19" /> + <hkern u1="." u2="y" k="28" /> + <hkern u1="." u2="v" k="31" /> + <hkern u1="." u2="t" k="12" /> + <hkern u1="." u2="f" k="10" /> + <hkern u1="." u2="Y" k="75" /> + <hkern u1="." u2="V" k="64" /> + <hkern u1="." u2="U" k="18" /> + <hkern u1="." u2="T" k="64" /> + <hkern u1="." u2="Q" k="19" /> + <hkern u1="." u2="O" k="19" /> + <hkern u1="." u2="G" k="19" /> + <hkern u1="." u2="C" k="19" /> + <hkern u1="." u2="'" k="119" /> + <hkern u1="." u2=""" k="125" /> + <hkern u1="/" u2="st" k="17" /> + <hkern u1="/" u2="ș" k="17" /> + <hkern u1="/" u2="ǿ" k="22" /> + <hkern u1="/" u2="ǽ" k="20" /> + <hkern u1="/" u2="Ǽ" k="17" /> + <hkern u1="/" u2="ü" k="14" /> + <hkern u1="/" u2="û" k="14" /> + <hkern u1="/" u2="ú" k="14" /> + <hkern u1="/" u2="ù" k="14" /> + <hkern u1="/" u2="ø" k="22" /> + <hkern u1="/" u2="ö" k="22" /> + <hkern u1="/" u2="õ" k="22" /> + <hkern u1="/" u2="ô" k="22" /> + <hkern u1="/" u2="ó" k="22" /> + <hkern u1="/" u2="ò" k="22" /> + <hkern u1="/" u2="ñ" k="15" /> + <hkern u1="/" u2="ð" k="22" /> + <hkern u1="/" u2="ë" k="22" /> + <hkern u1="/" u2="ê" k="22" /> + <hkern u1="/" u2="é" k="22" /> + <hkern u1="/" u2="è" k="22" /> + <hkern u1="/" u2="ç" k="22" /> + <hkern u1="/" u2="æ" k="20" /> + <hkern u1="/" u2="å" k="20" /> + <hkern u1="/" u2="ä" k="20" /> + <hkern u1="/" u2="ã" k="20" /> + <hkern u1="/" u2="â" k="20" /> + <hkern u1="/" u2="á" k="20" /> + <hkern u1="/" u2="à" k="20" /> + <hkern u1="/" u2="Æ" k="17" /> + <hkern u1="/" u2="Å" k="32" /> + <hkern u1="/" u2="Ä" k="32" /> + <hkern u1="/" u2="Ã" k="32" /> + <hkern u1="/" u2="Â" k="32" /> + <hkern u1="/" u2="Á" k="32" /> + <hkern u1="/" u2="À" k="32" /> + <hkern u1="/" u2="u" k="14" /> + <hkern u1="/" u2="s" k="17" /> + <hkern u1="/" u2="r" k="15" /> + <hkern u1="/" u2="q" k="22" /> + <hkern u1="/" u2="p" k="15" /> + <hkern u1="/" u2="o" k="22" /> + <hkern u1="/" u2="n" k="15" /> + <hkern u1="/" u2="m" k="15" /> + <hkern u1="/" u2="g" k="22" /> + <hkern u1="/" u2="e" k="22" /> + <hkern u1="/" u2="d" k="22" /> + <hkern u1="/" u2="c" k="22" /> + <hkern u1="/" u2="a" k="20" /> + <hkern u1="/" u2="A" k="32" /> + <hkern u1="/" u2="/" k="148" /> + <hkern u1=":" u2="Ț" k="42" /> + <hkern u1=":" u2="Ý" k="26" /> + <hkern u1=":" u2="Y" k="26" /> + <hkern u1=":" u2="V" k="9" /> + <hkern u1=":" u2="T" k="42" /> + <hkern u1=";" u2="Ț" k="42" /> + <hkern u1=";" u2="Ý" k="26" /> + <hkern u1=";" u2="Y" k="26" /> + <hkern u1=";" u2="V" k="9" /> + <hkern u1=";" u2="T" k="42" /> + <hkern u1="@" u2="Ț" k="18" /> + <hkern u1="@" u2="Ý" k="24" /> + <hkern u1="@" u2="Y" k="24" /> + <hkern u1="@" u2="T" k="18" /> + <hkern u1="A" u2="™" k="44" /> + <hkern u1="A" u2="®" k="10" /> + <hkern u1="A" u2="}" k="12" /> + <hkern u1="A" u2="v" k="36" /> + <hkern u1="A" u2="]" k="15" /> + <hkern u1="A" u2="\" k="32" /> + <hkern u1="A" u2="X" k="-24" /> + <hkern u1="A" u2="V" k="44" /> + <hkern u1="A" u2="?" k="18" /> + <hkern u1="A" u2="*" k="41" /> + <hkern u1="B" g2="f_j" k="11" /> + <hkern u1="B" u2="st" k="9" /> + <hkern u1="B" u2="ffl" k="11" /> + <hkern u1="B" u2="ffi" k="11" /> + <hkern u1="B" u2="fl" k="11" /> + <hkern u1="B" u2="fi" k="11" /> + <hkern u1="B" u2="ff" k="11" /> + <hkern u1="B" u2="ȷ" k="8" /> + <hkern u1="B" u2="ț" k="14" /> + <hkern u1="B" u2="Ț" k="42" /> + <hkern u1="B" u2="ș" k="9" /> + <hkern u1="B" u2="ǿ" k="5" /> + <hkern u1="B" u2="Ǽ" k="8" /> + <hkern u1="B" u2="ſ" k="11" /> + <hkern u1="B" u2="ÿ" k="10" /> + <hkern u1="B" u2="þ" k="7" /> + <hkern u1="B" u2="ý" k="10" /> + <hkern u1="B" u2="ü" k="7" /> + <hkern u1="B" u2="û" k="7" /> + <hkern u1="B" u2="ú" k="7" /> + <hkern u1="B" u2="ù" k="7" /> + <hkern u1="B" u2="ø" k="5" /> + <hkern u1="B" u2="ö" k="5" /> + <hkern u1="B" u2="õ" k="5" /> + <hkern u1="B" u2="ô" k="5" /> + <hkern u1="B" u2="ó" k="5" /> + <hkern u1="B" u2="ò" k="5" /> + <hkern u1="B" u2="ñ" k="7" /> + <hkern u1="B" u2="ð" k="5" /> + <hkern u1="B" u2="ï" k="8" /> + <hkern u1="B" u2="î" k="8" /> + <hkern u1="B" u2="í" k="8" /> + <hkern u1="B" u2="ì" k="8" /> + <hkern u1="B" u2="ë" k="5" /> + <hkern u1="B" u2="ê" k="5" /> + <hkern u1="B" u2="é" k="5" /> + <hkern u1="B" u2="è" k="5" /> + <hkern u1="B" u2="ç" k="5" /> + <hkern u1="B" u2="ß" k="11" /> + <hkern u1="B" u2="Ý" k="29" /> + <hkern u1="B" u2="Æ" k="8" /> + <hkern u1="B" u2="}" k="14" /> + <hkern u1="B" u2="y" k="10" /> + <hkern u1="B" u2="x" k="18" /> + <hkern u1="B" u2="v" k="13" /> + <hkern u1="B" u2="u" k="7" /> + <hkern u1="B" u2="t" k="14" /> + <hkern u1="B" u2="s" k="9" /> + <hkern u1="B" u2="r" k="7" /> + <hkern u1="B" u2="q" k="5" /> + <hkern u1="B" u2="p" k="7" /> + <hkern u1="B" u2="o" k="5" /> + <hkern u1="B" u2="n" k="7" /> + <hkern u1="B" u2="m" k="7" /> + <hkern u1="B" u2="k" k="7" /> + <hkern u1="B" u2="j" k="8" /> + <hkern u1="B" u2="i" k="8" /> + <hkern u1="B" u2="h" k="7" /> + <hkern u1="B" u2="g" k="5" /> + <hkern u1="B" u2="f" k="11" /> + <hkern u1="B" u2="e" k="5" /> + <hkern u1="B" u2="d" k="5" /> + <hkern u1="B" u2="c" k="5" /> + <hkern u1="B" u2="b" k="7" /> + <hkern u1="B" u2="]" k="14" /> + <hkern u1="B" u2="Y" k="29" /> + <hkern u1="B" u2="X" k="17" /> + <hkern u1="B" u2="V" k="12" /> + <hkern u1="B" u2="T" k="42" /> + <hkern u1="B" u2=")" k="16" /> + <hkern u1="C" g2="f_j" k="7" /> + <hkern u1="C" u2="st" k="10" /> + <hkern u1="C" u2="ffl" k="7" /> + <hkern u1="C" u2="ffi" k="7" /> + <hkern u1="C" u2="fl" k="7" /> + <hkern u1="C" u2="fi" k="7" /> + <hkern u1="C" u2="ff" k="7" /> + <hkern u1="C" u2="—" k="22" /> + <hkern u1="C" u2="–" k="22" /> + <hkern u1="C" u2="ț" k="20" /> + <hkern u1="C" u2="ș" k="10" /> + <hkern u1="C" u2="ǿ" k="16" /> + <hkern u1="C" u2="Ǿ" k="9" /> + <hkern u1="C" u2="ſ" k="7" /> + <hkern u1="C" u2="ÿ" k="46" /> + <hkern u1="C" u2="ý" k="46" /> + <hkern u1="C" u2="ü" k="11" /> + <hkern u1="C" u2="û" k="11" /> + <hkern u1="C" u2="ú" k="11" /> + <hkern u1="C" u2="ù" k="11" /> + <hkern u1="C" u2="ø" k="16" /> + <hkern u1="C" u2="ö" k="16" /> + <hkern u1="C" u2="õ" k="16" /> + <hkern u1="C" u2="ô" k="16" /> + <hkern u1="C" u2="ó" k="16" /> + <hkern u1="C" u2="ò" k="16" /> + <hkern u1="C" u2="ñ" k="7" /> + <hkern u1="C" u2="ð" k="16" /> + <hkern u1="C" u2="ë" k="16" /> + <hkern u1="C" u2="ê" k="16" /> + <hkern u1="C" u2="é" k="16" /> + <hkern u1="C" u2="è" k="16" /> + <hkern u1="C" u2="ç" k="16" /> + <hkern u1="C" u2="ß" k="7" /> + <hkern u1="C" u2="Ø" k="9" /> + <hkern u1="C" u2="Ö" k="9" /> + <hkern u1="C" u2="Õ" k="9" /> + <hkern u1="C" u2="Ô" k="9" /> + <hkern u1="C" u2="Ó" k="9" /> + <hkern u1="C" u2="Ò" k="9" /> + <hkern u1="C" u2="Ç" k="9" /> + <hkern u1="C" u2="y" k="46" /> + <hkern u1="C" u2="v" k="50" /> + <hkern u1="C" u2="u" k="11" /> + <hkern u1="C" u2="t" k="20" /> + <hkern u1="C" u2="s" k="10" /> + <hkern u1="C" u2="r" k="7" /> + <hkern u1="C" u2="q" k="16" /> + <hkern u1="C" u2="p" k="7" /> + <hkern u1="C" u2="o" k="16" /> + <hkern u1="C" u2="n" k="7" /> + <hkern u1="C" u2="m" k="7" /> + <hkern u1="C" u2="g" k="16" /> + <hkern u1="C" u2="f" k="7" /> + <hkern u1="C" u2="e" k="16" /> + <hkern u1="C" u2="d" k="16" /> + <hkern u1="C" u2="c" k="16" /> + <hkern u1="C" u2="Q" k="9" /> + <hkern u1="C" u2="O" k="9" /> + <hkern u1="C" u2="G" k="9" /> + <hkern u1="C" u2="C" k="9" /> + <hkern u1="C" u2="-" k="22" /> + <hkern u1="C" u2="&" k="7" /> + <hkern u1="D" u2="st" k="6" /> + <hkern u1="D" u2="™" k="8" /> + <hkern u1="D" u2="…" k="19" /> + <hkern u1="D" u2="„" k="19" /> + <hkern u1="D" u2="‚" k="19" /> + <hkern u1="D" u2="ȷ" k="10" /> + <hkern u1="D" u2="Ț" k="28" /> + <hkern u1="D" u2="ș" k="6" /> + <hkern u1="D" u2="ǿ" k="6" /> + <hkern u1="D" u2="ǽ" k="10" /> + <hkern u1="D" u2="Ǽ" k="47" /> + <hkern u1="D" u2="þ" k="9" /> + <hkern u1="D" u2="ü" k="8" /> + <hkern u1="D" u2="û" k="8" /> + <hkern u1="D" u2="ú" k="8" /> + <hkern u1="D" u2="ù" k="8" /> + <hkern u1="D" u2="ø" k="6" /> + <hkern u1="D" u2="ö" k="6" /> + <hkern u1="D" u2="õ" k="6" /> + <hkern u1="D" u2="ô" k="6" /> + <hkern u1="D" u2="ó" k="6" /> + <hkern u1="D" u2="ò" k="6" /> + <hkern u1="D" u2="ñ" k="9" /> + <hkern u1="D" u2="ð" k="6" /> + <hkern u1="D" u2="ï" k="10" /> + <hkern u1="D" u2="î" k="10" /> + <hkern u1="D" u2="í" k="10" /> + <hkern u1="D" u2="ì" k="10" /> + <hkern u1="D" u2="ë" k="6" /> + <hkern u1="D" u2="ê" k="6" /> + <hkern u1="D" u2="é" k="6" /> + <hkern u1="D" u2="è" k="6" /> + <hkern u1="D" u2="ç" k="6" /> + <hkern u1="D" u2="æ" k="10" /> + <hkern u1="D" u2="å" k="10" /> + <hkern u1="D" u2="ä" k="10" /> + <hkern u1="D" u2="ã" k="10" /> + <hkern u1="D" u2="â" k="10" /> + <hkern u1="D" u2="á" k="10" /> + <hkern u1="D" u2="à" k="10" /> + <hkern u1="D" u2="Ý" k="33" /> + <hkern u1="D" u2="Æ" k="47" /> + <hkern u1="D" u2="Å" k="15" /> + <hkern u1="D" u2="Ä" k="15" /> + <hkern u1="D" u2="Ã" k="15" /> + <hkern u1="D" u2="Â" k="15" /> + <hkern u1="D" u2="Á" k="15" /> + <hkern u1="D" u2="À" k="15" /> + <hkern u1="D" u2="}" k="18" /> + <hkern u1="D" u2="x" k="13" /> + <hkern u1="D" u2="u" k="8" /> + <hkern u1="D" u2="s" k="6" /> + <hkern u1="D" u2="r" k="9" /> + <hkern u1="D" u2="q" k="6" /> + <hkern u1="D" u2="p" k="9" /> + <hkern u1="D" u2="o" k="6" /> + <hkern u1="D" u2="n" k="9" /> + <hkern u1="D" u2="m" k="9" /> + <hkern u1="D" u2="k" k="9" /> + <hkern u1="D" u2="j" k="10" /> + <hkern u1="D" u2="i" k="10" /> + <hkern u1="D" u2="h" k="9" /> + <hkern u1="D" u2="g" k="6" /> + <hkern u1="D" u2="e" k="6" /> + <hkern u1="D" u2="d" k="6" /> + <hkern u1="D" u2="c" k="6" /> + <hkern u1="D" u2="b" k="9" /> + <hkern u1="D" u2="a" k="10" /> + <hkern u1="D" u2="]" k="18" /> + <hkern u1="D" u2="Y" k="33" /> + <hkern u1="D" u2="X" k="28" /> + <hkern u1="D" u2="V" k="14" /> + <hkern u1="D" u2="T" k="28" /> + <hkern u1="D" u2="A" k="15" /> + <hkern u1="D" u2="/" k="10" /> + <hkern u1="D" u2="." k="19" /> + <hkern u1="D" u2="," k="19" /> + <hkern u1="D" u2=")" k="21" /> + <hkern u1="E" g2="f_j" k="11" /> + <hkern u1="E" u2="st" k="6" /> + <hkern u1="E" u2="ffl" k="11" /> + <hkern u1="E" u2="ffi" k="11" /> + <hkern u1="E" u2="fl" k="11" /> + <hkern u1="E" u2="fi" k="11" /> + <hkern u1="E" u2="ff" k="11" /> + <hkern u1="E" u2="ț" k="17" /> + <hkern u1="E" u2="ș" k="6" /> + <hkern u1="E" u2="ǿ" k="14" /> + <hkern u1="E" u2="Ǿ" k="7" /> + <hkern u1="E" u2="ǽ" k="7" /> + <hkern u1="E" u2="ſ" k="11" /> + <hkern u1="E" u2="ÿ" k="14" /> + <hkern u1="E" u2="ý" k="14" /> + <hkern u1="E" u2="ü" k="13" /> + <hkern u1="E" u2="û" k="13" /> + <hkern u1="E" u2="ú" k="13" /> + <hkern u1="E" u2="ù" k="13" /> + <hkern u1="E" u2="ø" k="14" /> + <hkern u1="E" u2="ö" k="14" /> + <hkern u1="E" u2="õ" k="14" /> + <hkern u1="E" u2="ô" k="14" /> + <hkern u1="E" u2="ó" k="14" /> + <hkern u1="E" u2="ò" k="14" /> + <hkern u1="E" u2="ñ" k="7" /> + <hkern u1="E" u2="ð" k="14" /> + <hkern u1="E" u2="ë" k="14" /> + <hkern u1="E" u2="ê" k="14" /> + <hkern u1="E" u2="é" k="14" /> + <hkern u1="E" u2="è" k="14" /> + <hkern u1="E" u2="ç" k="14" /> + <hkern u1="E" u2="æ" k="7" /> + <hkern u1="E" u2="å" k="7" /> + <hkern u1="E" u2="ä" k="7" /> + <hkern u1="E" u2="ã" k="7" /> + <hkern u1="E" u2="â" k="7" /> + <hkern u1="E" u2="á" k="7" /> + <hkern u1="E" u2="à" k="7" /> + <hkern u1="E" u2="ß" k="11" /> + <hkern u1="E" u2="Ø" k="7" /> + <hkern u1="E" u2="Ö" k="7" /> + <hkern u1="E" u2="Õ" k="7" /> + <hkern u1="E" u2="Ô" k="7" /> + <hkern u1="E" u2="Ó" k="7" /> + <hkern u1="E" u2="Ò" k="7" /> + <hkern u1="E" u2="Ç" k="7" /> + <hkern u1="E" u2="y" k="14" /> + <hkern u1="E" u2="v" k="16" /> + <hkern u1="E" u2="u" k="13" /> + <hkern u1="E" u2="t" k="17" /> + <hkern u1="E" u2="s" k="6" /> + <hkern u1="E" u2="r" k="7" /> + <hkern u1="E" u2="q" k="14" /> + <hkern u1="E" u2="p" k="7" /> + <hkern u1="E" u2="o" k="14" /> + <hkern u1="E" u2="n" k="7" /> + <hkern u1="E" u2="m" k="7" /> + <hkern u1="E" u2="g" k="14" /> + <hkern u1="E" u2="f" k="11" /> + <hkern u1="E" u2="e" k="14" /> + <hkern u1="E" u2="d" k="14" /> + <hkern u1="E" u2="c" k="14" /> + <hkern u1="E" u2="a" k="7" /> + <hkern u1="E" u2="Q" k="7" /> + <hkern u1="E" u2="O" k="7" /> + <hkern u1="E" u2="G" k="7" /> + <hkern u1="E" u2="C" k="7" /> + <hkern u1="E" u2="&" k="7" /> + <hkern u1="F" g2="f_j" k="18" /> + <hkern u1="F" u2="st" k="20" /> + <hkern u1="F" u2="ffl" k="18" /> + <hkern u1="F" u2="ffi" k="18" /> + <hkern u1="F" u2="fl" k="18" /> + <hkern u1="F" u2="fi" k="18" /> + <hkern u1="F" u2="ff" k="18" /> + <hkern u1="F" u2="›" k="13" /> + <hkern u1="F" u2="…" k="71" /> + <hkern u1="F" u2="„" k="71" /> + <hkern u1="F" u2="‚" k="71" /> + <hkern u1="F" u2="ȷ" k="11" /> + <hkern u1="F" u2="ț" k="27" /> + <hkern u1="F" u2="ș" k="20" /> + <hkern u1="F" u2="ǿ" k="20" /> + <hkern u1="F" u2="ǽ" k="76" /> + <hkern u1="F" u2="Ǽ" k="79" /> + <hkern u1="F" u2="ſ" k="18" /> + <hkern u1="F" u2="ÿ" k="13" /> + <hkern u1="F" u2="þ" k="7" /> + <hkern u1="F" u2="ý" k="13" /> + <hkern u1="F" u2="ü" k="24" /> + <hkern u1="F" u2="û" k="24" /> + <hkern u1="F" u2="ú" k="24" /> + <hkern u1="F" u2="ù" k="24" /> + <hkern u1="F" u2="ø" k="20" /> + <hkern u1="F" u2="ö" k="20" /> + <hkern u1="F" u2="õ" k="20" /> + <hkern u1="F" u2="ô" k="20" /> + <hkern u1="F" u2="ó" k="20" /> + <hkern u1="F" u2="ò" k="20" /> + <hkern u1="F" u2="ñ" k="27" /> + <hkern u1="F" u2="ð" k="20" /> + <hkern u1="F" u2="ï" k="11" /> + <hkern u1="F" u2="î" k="11" /> + <hkern u1="F" u2="í" k="11" /> + <hkern u1="F" u2="ì" k="11" /> + <hkern u1="F" u2="ë" k="20" /> + <hkern u1="F" u2="ê" k="20" /> + <hkern u1="F" u2="é" k="20" /> + <hkern u1="F" u2="è" k="20" /> + <hkern u1="F" u2="ç" k="20" /> + <hkern u1="F" u2="æ" k="76" /> + <hkern u1="F" u2="å" k="76" /> + <hkern u1="F" u2="ä" k="76" /> + <hkern u1="F" u2="ã" k="76" /> + <hkern u1="F" u2="â" k="76" /> + <hkern u1="F" u2="á" k="76" /> + <hkern u1="F" u2="à" k="76" /> + <hkern u1="F" u2="ß" k="18" /> + <hkern u1="F" u2="Æ" k="79" /> + <hkern u1="F" u2="Å" k="52" /> + <hkern u1="F" u2="Ä" k="52" /> + <hkern u1="F" u2="Ã" k="52" /> + <hkern u1="F" u2="Â" k="52" /> + <hkern u1="F" u2="Á" k="52" /> + <hkern u1="F" u2="À" k="52" /> + <hkern u1="F" u2="»" k="13" /> + <hkern u1="F" u2="y" k="13" /> + <hkern u1="F" u2="x" k="43" /> + <hkern u1="F" u2="v" k="15" /> + <hkern u1="F" u2="u" k="24" /> + <hkern u1="F" u2="t" k="27" /> + <hkern u1="F" u2="s" k="20" /> + <hkern u1="F" u2="r" k="27" /> + <hkern u1="F" u2="q" k="20" /> + <hkern u1="F" u2="p" k="27" /> + <hkern u1="F" u2="o" k="20" /> + <hkern u1="F" u2="n" k="27" /> + <hkern u1="F" u2="m" k="27" /> + <hkern u1="F" u2="k" k="7" /> + <hkern u1="F" u2="j" k="11" /> + <hkern u1="F" u2="i" k="11" /> + <hkern u1="F" u2="h" k="7" /> + <hkern u1="F" u2="g" k="20" /> + <hkern u1="F" u2="f" k="18" /> + <hkern u1="F" u2="e" k="20" /> + <hkern u1="F" u2="d" k="20" /> + <hkern u1="F" u2="c" k="20" /> + <hkern u1="F" u2="b" k="7" /> + <hkern u1="F" u2="a" k="76" /> + <hkern u1="F" u2="A" k="52" /> + <hkern u1="F" u2="/" k="25" /> + <hkern u1="F" u2="." k="71" /> + <hkern u1="F" u2="," k="71" /> + <hkern u1="F" u2="&" k="23" /> + <hkern u1="H" g2="f_j" k="8" /> + <hkern u1="H" u2="st" k="11" /> + <hkern u1="H" u2="ffl" k="8" /> + <hkern u1="H" u2="ffi" k="8" /> + <hkern u1="H" u2="fl" k="8" /> + <hkern u1="H" u2="fi" k="8" /> + <hkern u1="H" u2="ff" k="8" /> + <hkern u1="H" u2="ȷ" k="10" /> + <hkern u1="H" u2="ț" k="11" /> + <hkern u1="H" u2="ș" k="11" /> + <hkern u1="H" u2="ǿ" k="14" /> + <hkern u1="H" u2="ǽ" k="11" /> + <hkern u1="H" u2="ſ" k="8" /> + <hkern u1="H" u2="ÿ" k="7" /> + <hkern u1="H" u2="þ" k="10" /> + <hkern u1="H" u2="ý" k="7" /> + <hkern u1="H" u2="ü" k="13" /> + <hkern u1="H" u2="û" k="13" /> + <hkern u1="H" u2="ú" k="13" /> + <hkern u1="H" u2="ù" k="13" /> + <hkern u1="H" u2="ø" k="14" /> + <hkern u1="H" u2="ö" k="14" /> + <hkern u1="H" u2="õ" k="14" /> + <hkern u1="H" u2="ô" k="14" /> + <hkern u1="H" u2="ó" k="14" /> + <hkern u1="H" u2="ò" k="14" /> + <hkern u1="H" u2="ñ" k="10" /> + <hkern u1="H" u2="ð" k="14" /> + <hkern u1="H" u2="ï" k="10" /> + <hkern u1="H" u2="î" k="10" /> + <hkern u1="H" u2="í" k="10" /> + <hkern u1="H" u2="ì" k="10" /> + <hkern u1="H" u2="ë" k="14" /> + <hkern u1="H" u2="ê" k="14" /> + <hkern u1="H" u2="é" k="14" /> + <hkern u1="H" u2="è" k="14" /> + <hkern u1="H" u2="ç" k="14" /> + <hkern u1="H" u2="æ" k="11" /> + <hkern u1="H" u2="å" k="11" /> + <hkern u1="H" u2="ä" k="11" /> + <hkern u1="H" u2="ã" k="11" /> + <hkern u1="H" u2="â" k="11" /> + <hkern u1="H" u2="á" k="11" /> + <hkern u1="H" u2="à" k="11" /> + <hkern u1="H" u2="ß" k="8" /> + <hkern u1="H" u2="Ý" k="5" /> + <hkern u1="H" u2="y" k="7" /> + <hkern u1="H" u2="v" k="9" /> + <hkern u1="H" u2="u" k="13" /> + <hkern u1="H" u2="t" k="11" /> + <hkern u1="H" u2="s" k="11" /> + <hkern u1="H" u2="r" k="10" /> + <hkern u1="H" u2="q" k="14" /> + <hkern u1="H" u2="p" k="10" /> + <hkern u1="H" u2="o" k="14" /> + <hkern u1="H" u2="n" k="10" /> + <hkern u1="H" u2="m" k="10" /> + <hkern u1="H" u2="k" k="10" /> + <hkern u1="H" u2="j" k="10" /> + <hkern u1="H" u2="i" k="10" /> + <hkern u1="H" u2="h" k="10" /> + <hkern u1="H" u2="g" k="14" /> + <hkern u1="H" u2="f" k="8" /> + <hkern u1="H" u2="e" k="14" /> + <hkern u1="H" u2="d" k="14" /> + <hkern u1="H" u2="c" k="14" /> + <hkern u1="H" u2="b" k="10" /> + <hkern u1="H" u2="a" k="11" /> + <hkern u1="H" u2="Y" k="5" /> + <hkern u1="I" g2="f_j" k="8" /> + <hkern u1="I" u2="st" k="11" /> + <hkern u1="I" u2="ffl" k="8" /> + <hkern u1="I" u2="ffi" k="8" /> + <hkern u1="I" u2="fl" k="8" /> + <hkern u1="I" u2="fi" k="8" /> + <hkern u1="I" u2="ff" k="8" /> + <hkern u1="I" u2="ȷ" k="10" /> + <hkern u1="I" u2="ț" k="11" /> + <hkern u1="I" u2="ș" k="11" /> + <hkern u1="I" u2="ǿ" k="14" /> + <hkern u1="I" u2="ǽ" k="11" /> + <hkern u1="I" u2="ſ" k="8" /> + <hkern u1="I" u2="ÿ" k="7" /> + <hkern u1="I" u2="þ" k="10" /> + <hkern u1="I" u2="ý" k="7" /> + <hkern u1="I" u2="ü" k="13" /> + <hkern u1="I" u2="û" k="13" /> + <hkern u1="I" u2="ú" k="13" /> + <hkern u1="I" u2="ù" k="13" /> + <hkern u1="I" u2="ø" k="14" /> + <hkern u1="I" u2="ö" k="14" /> + <hkern u1="I" u2="õ" k="14" /> + <hkern u1="I" u2="ô" k="14" /> + <hkern u1="I" u2="ó" k="14" /> + <hkern u1="I" u2="ò" k="14" /> + <hkern u1="I" u2="ñ" k="10" /> + <hkern u1="I" u2="ð" k="14" /> + <hkern u1="I" u2="ï" k="10" /> + <hkern u1="I" u2="î" k="10" /> + <hkern u1="I" u2="í" k="10" /> + <hkern u1="I" u2="ì" k="10" /> + <hkern u1="I" u2="ë" k="14" /> + <hkern u1="I" u2="ê" k="14" /> + <hkern u1="I" u2="é" k="14" /> + <hkern u1="I" u2="è" k="14" /> + <hkern u1="I" u2="ç" k="14" /> + <hkern u1="I" u2="æ" k="11" /> + <hkern u1="I" u2="å" k="11" /> + <hkern u1="I" u2="ä" k="11" /> + <hkern u1="I" u2="ã" k="11" /> + <hkern u1="I" u2="â" k="11" /> + <hkern u1="I" u2="á" k="11" /> + <hkern u1="I" u2="à" k="11" /> + <hkern u1="I" u2="ß" k="8" /> + <hkern u1="I" u2="Ý" k="5" /> + <hkern u1="I" u2="y" k="7" /> + <hkern u1="I" u2="v" k="9" /> + <hkern u1="I" u2="u" k="13" /> + <hkern u1="I" u2="t" k="11" /> + <hkern u1="I" u2="s" k="11" /> + <hkern u1="I" u2="r" k="10" /> + <hkern u1="I" u2="q" k="14" /> + <hkern u1="I" u2="p" k="10" /> + <hkern u1="I" u2="o" k="14" /> + <hkern u1="I" u2="n" k="10" /> + <hkern u1="I" u2="m" k="10" /> + <hkern u1="I" u2="k" k="10" /> + <hkern u1="I" u2="j" k="10" /> + <hkern u1="I" u2="i" k="10" /> + <hkern u1="I" u2="h" k="10" /> + <hkern u1="I" u2="g" k="14" /> + <hkern u1="I" u2="f" k="8" /> + <hkern u1="I" u2="e" k="14" /> + <hkern u1="I" u2="d" k="14" /> + <hkern u1="I" u2="c" k="14" /> + <hkern u1="I" u2="b" k="10" /> + <hkern u1="I" u2="a" k="11" /> + <hkern u1="I" u2="Y" k="5" /> + <hkern u1="M" g2="f_j" k="8" /> + <hkern u1="M" u2="st" k="11" /> + <hkern u1="M" u2="ffl" k="8" /> + <hkern u1="M" u2="ffi" k="8" /> + <hkern u1="M" u2="fl" k="8" /> + <hkern u1="M" u2="fi" k="8" /> + <hkern u1="M" u2="ff" k="8" /> + <hkern u1="M" u2="ȷ" k="10" /> + <hkern u1="M" u2="ț" k="11" /> + <hkern u1="M" u2="ș" k="11" /> + <hkern u1="M" u2="ǿ" k="14" /> + <hkern u1="M" u2="ǽ" k="11" /> + <hkern u1="M" u2="ſ" k="8" /> + <hkern u1="M" u2="ÿ" k="7" /> + <hkern u1="M" u2="þ" k="10" /> + <hkern u1="M" u2="ý" k="7" /> + <hkern u1="M" u2="ü" k="13" /> + <hkern u1="M" u2="û" k="13" /> + <hkern u1="M" u2="ú" k="13" /> + <hkern u1="M" u2="ù" k="13" /> + <hkern u1="M" u2="ø" k="14" /> + <hkern u1="M" u2="ö" k="14" /> + <hkern u1="M" u2="õ" k="14" /> + <hkern u1="M" u2="ô" k="14" /> + <hkern u1="M" u2="ó" k="14" /> + <hkern u1="M" u2="ò" k="14" /> + <hkern u1="M" u2="ñ" k="10" /> + <hkern u1="M" u2="ð" k="14" /> + <hkern u1="M" u2="ï" k="10" /> + <hkern u1="M" u2="î" k="10" /> + <hkern u1="M" u2="í" k="10" /> + <hkern u1="M" u2="ì" k="10" /> + <hkern u1="M" u2="ë" k="14" /> + <hkern u1="M" u2="ê" k="14" /> + <hkern u1="M" u2="é" k="14" /> + <hkern u1="M" u2="è" k="14" /> + <hkern u1="M" u2="ç" k="14" /> + <hkern u1="M" u2="æ" k="11" /> + <hkern u1="M" u2="å" k="11" /> + <hkern u1="M" u2="ä" k="11" /> + <hkern u1="M" u2="ã" k="11" /> + <hkern u1="M" u2="â" k="11" /> + <hkern u1="M" u2="á" k="11" /> + <hkern u1="M" u2="à" k="11" /> + <hkern u1="M" u2="ß" k="8" /> + <hkern u1="M" u2="Ý" k="5" /> + <hkern u1="M" u2="y" k="7" /> + <hkern u1="M" u2="v" k="9" /> + <hkern u1="M" u2="u" k="13" /> + <hkern u1="M" u2="t" k="11" /> + <hkern u1="M" u2="s" k="11" /> + <hkern u1="M" u2="r" k="10" /> + <hkern u1="M" u2="q" k="14" /> + <hkern u1="M" u2="p" k="10" /> + <hkern u1="M" u2="o" k="14" /> + <hkern u1="M" u2="n" k="10" /> + <hkern u1="M" u2="m" k="10" /> + <hkern u1="M" u2="k" k="10" /> + <hkern u1="M" u2="j" k="10" /> + <hkern u1="M" u2="i" k="10" /> + <hkern u1="M" u2="h" k="10" /> + <hkern u1="M" u2="g" k="14" /> + <hkern u1="M" u2="f" k="8" /> + <hkern u1="M" u2="e" k="14" /> + <hkern u1="M" u2="d" k="14" /> + <hkern u1="M" u2="c" k="14" /> + <hkern u1="M" u2="b" k="10" /> + <hkern u1="M" u2="a" k="11" /> + <hkern u1="M" u2="Y" k="5" /> + <hkern u1="N" g2="f_j" k="8" /> + <hkern u1="N" u2="st" k="11" /> + <hkern u1="N" u2="ffl" k="8" /> + <hkern u1="N" u2="ffi" k="8" /> + <hkern u1="N" u2="fl" k="8" /> + <hkern u1="N" u2="fi" k="8" /> + <hkern u1="N" u2="ff" k="8" /> + <hkern u1="N" u2="ȷ" k="10" /> + <hkern u1="N" u2="ț" k="11" /> + <hkern u1="N" u2="ș" k="11" /> + <hkern u1="N" u2="ǿ" k="14" /> + <hkern u1="N" u2="ǽ" k="11" /> + <hkern u1="N" u2="ſ" k="8" /> + <hkern u1="N" u2="ÿ" k="7" /> + <hkern u1="N" u2="þ" k="10" /> + <hkern u1="N" u2="ý" k="7" /> + <hkern u1="N" u2="ü" k="13" /> + <hkern u1="N" u2="û" k="13" /> + <hkern u1="N" u2="ú" k="13" /> + <hkern u1="N" u2="ù" k="13" /> + <hkern u1="N" u2="ø" k="14" /> + <hkern u1="N" u2="ö" k="14" /> + <hkern u1="N" u2="õ" k="14" /> + <hkern u1="N" u2="ô" k="14" /> + <hkern u1="N" u2="ó" k="14" /> + <hkern u1="N" u2="ò" k="14" /> + <hkern u1="N" u2="ñ" k="10" /> + <hkern u1="N" u2="ð" k="14" /> + <hkern u1="N" u2="ï" k="10" /> + <hkern u1="N" u2="î" k="10" /> + <hkern u1="N" u2="í" k="10" /> + <hkern u1="N" u2="ì" k="10" /> + <hkern u1="N" u2="ë" k="14" /> + <hkern u1="N" u2="ê" k="14" /> + <hkern u1="N" u2="é" k="14" /> + <hkern u1="N" u2="è" k="14" /> + <hkern u1="N" u2="ç" k="14" /> + <hkern u1="N" u2="æ" k="11" /> + <hkern u1="N" u2="å" k="11" /> + <hkern u1="N" u2="ä" k="11" /> + <hkern u1="N" u2="ã" k="11" /> + <hkern u1="N" u2="â" k="11" /> + <hkern u1="N" u2="á" k="11" /> + <hkern u1="N" u2="à" k="11" /> + <hkern u1="N" u2="ß" k="8" /> + <hkern u1="N" u2="Ý" k="5" /> + <hkern u1="N" u2="y" k="7" /> + <hkern u1="N" u2="v" k="9" /> + <hkern u1="N" u2="u" k="13" /> + <hkern u1="N" u2="t" k="11" /> + <hkern u1="N" u2="s" k="11" /> + <hkern u1="N" u2="r" k="10" /> + <hkern u1="N" u2="q" k="14" /> + <hkern u1="N" u2="p" k="10" /> + <hkern u1="N" u2="o" k="14" /> + <hkern u1="N" u2="n" k="10" /> + <hkern u1="N" u2="m" k="10" /> + <hkern u1="N" u2="k" k="10" /> + <hkern u1="N" u2="j" k="10" /> + <hkern u1="N" u2="i" k="10" /> + <hkern u1="N" u2="h" k="10" /> + <hkern u1="N" u2="g" k="14" /> + <hkern u1="N" u2="f" k="8" /> + <hkern u1="N" u2="e" k="14" /> + <hkern u1="N" u2="d" k="14" /> + <hkern u1="N" u2="c" k="14" /> + <hkern u1="N" u2="b" k="10" /> + <hkern u1="N" u2="a" k="11" /> + <hkern u1="N" u2="Y" k="5" /> + <hkern u1="O" u2="st" k="6" /> + <hkern u1="O" u2="™" k="8" /> + <hkern u1="O" u2="…" k="19" /> + <hkern u1="O" u2="„" k="19" /> + <hkern u1="O" u2="‚" k="19" /> + <hkern u1="O" u2="ȷ" k="10" /> + <hkern u1="O" u2="Ț" k="24" /> + <hkern u1="O" u2="ș" k="6" /> + <hkern u1="O" u2="ǿ" k="6" /> + <hkern u1="O" u2="ǽ" k="10" /> + <hkern u1="O" u2="Ǽ" k="44" /> + <hkern u1="O" u2="þ" k="9" /> + <hkern u1="O" u2="ü" k="8" /> + <hkern u1="O" u2="û" k="8" /> + <hkern u1="O" u2="ú" k="8" /> + <hkern u1="O" u2="ù" k="8" /> + <hkern u1="O" u2="ø" k="6" /> + <hkern u1="O" u2="ö" k="6" /> + <hkern u1="O" u2="õ" k="6" /> + <hkern u1="O" u2="ô" k="6" /> + <hkern u1="O" u2="ó" k="6" /> + <hkern u1="O" u2="ò" k="6" /> + <hkern u1="O" u2="ñ" k="9" /> + <hkern u1="O" u2="ð" k="6" /> + <hkern u1="O" u2="ï" k="10" /> + <hkern u1="O" u2="î" k="10" /> + <hkern u1="O" u2="í" k="10" /> + <hkern u1="O" u2="ì" k="10" /> + <hkern u1="O" u2="ë" k="6" /> + <hkern u1="O" u2="ê" k="6" /> + <hkern u1="O" u2="é" k="6" /> + <hkern u1="O" u2="è" k="6" /> + <hkern u1="O" u2="ç" k="6" /> + <hkern u1="O" u2="æ" k="10" /> + <hkern u1="O" u2="å" k="10" /> + <hkern u1="O" u2="ä" k="10" /> + <hkern u1="O" u2="ã" k="10" /> + <hkern u1="O" u2="â" k="10" /> + <hkern u1="O" u2="á" k="10" /> + <hkern u1="O" u2="à" k="10" /> + <hkern u1="O" u2="Ý" k="31" /> + <hkern u1="O" u2="Æ" k="44" /> + <hkern u1="O" u2="Å" k="14" /> + <hkern u1="O" u2="Ä" k="14" /> + <hkern u1="O" u2="Ã" k="14" /> + <hkern u1="O" u2="Â" k="14" /> + <hkern u1="O" u2="Á" k="14" /> + <hkern u1="O" u2="À" k="14" /> + <hkern u1="O" u2="}" k="17" /> + <hkern u1="O" u2="x" k="13" /> + <hkern u1="O" u2="u" k="8" /> + <hkern u1="O" u2="s" k="6" /> + <hkern u1="O" u2="r" k="9" /> + <hkern u1="O" u2="q" k="6" /> + <hkern u1="O" u2="p" k="9" /> + <hkern u1="O" u2="o" k="6" /> + <hkern u1="O" u2="n" k="9" /> + <hkern u1="O" u2="m" k="9" /> + <hkern u1="O" u2="k" k="9" /> + <hkern u1="O" u2="j" k="10" /> + <hkern u1="O" u2="i" k="10" /> + <hkern u1="O" u2="h" k="9" /> + <hkern u1="O" u2="g" k="6" /> + <hkern u1="O" u2="e" k="6" /> + <hkern u1="O" u2="d" k="6" /> + <hkern u1="O" u2="c" k="6" /> + <hkern u1="O" u2="b" k="9" /> + <hkern u1="O" u2="a" k="10" /> + <hkern u1="O" u2="]" k="18" /> + <hkern u1="O" u2="Y" k="31" /> + <hkern u1="O" u2="X" k="26" /> + <hkern u1="O" u2="V" k="13" /> + <hkern u1="O" u2="T" k="24" /> + <hkern u1="O" u2="A" k="14" /> + <hkern u1="O" u2="." k="19" /> + <hkern u1="O" u2="," k="19" /> + <hkern u1="O" u2=")" k="21" /> + <hkern u1="P" u2="st" k="7" /> + <hkern u1="P" u2="…" k="78" /> + <hkern u1="P" u2="„" k="78" /> + <hkern u1="P" u2="‚" k="78" /> + <hkern u1="P" u2="ȷ" k="8" /> + <hkern u1="P" u2="ș" k="7" /> + <hkern u1="P" u2="ǿ" k="14" /> + <hkern u1="P" u2="ǽ" k="26" /> + <hkern u1="P" u2="Ǽ" k="79" /> + <hkern u1="P" u2="þ" k="6" /> + <hkern u1="P" u2="ü" k="7" /> + <hkern u1="P" u2="û" k="7" /> + <hkern u1="P" u2="ú" k="7" /> + <hkern u1="P" u2="ù" k="7" /> + <hkern u1="P" u2="ø" k="14" /> + <hkern u1="P" u2="ö" k="14" /> + <hkern u1="P" u2="õ" k="14" /> + <hkern u1="P" u2="ô" k="14" /> + <hkern u1="P" u2="ó" k="14" /> + <hkern u1="P" u2="ò" k="14" /> + <hkern u1="P" u2="ñ" k="8" /> + <hkern u1="P" u2="ð" k="14" /> + <hkern u1="P" u2="ï" k="8" /> + <hkern u1="P" u2="î" k="2" /> + <hkern u1="P" u2="í" k="8" /> + <hkern u1="P" u2="ì" k="8" /> + <hkern u1="P" u2="ë" k="14" /> + <hkern u1="P" u2="ê" k="14" /> + <hkern u1="P" u2="é" k="14" /> + <hkern u1="P" u2="è" k="14" /> + <hkern u1="P" u2="ç" k="14" /> + <hkern u1="P" u2="æ" k="26" /> + <hkern u1="P" u2="å" k="26" /> + <hkern u1="P" u2="ä" k="26" /> + <hkern u1="P" u2="ã" k="26" /> + <hkern u1="P" u2="â" k="26" /> + <hkern u1="P" u2="á" k="26" /> + <hkern u1="P" u2="à" k="26" /> + <hkern u1="P" u2="Ý" k="5" /> + <hkern u1="P" u2="Æ" k="79" /> + <hkern u1="P" u2="Å" k="44" /> + <hkern u1="P" u2="Ä" k="44" /> + <hkern u1="P" u2="Ã" k="44" /> + <hkern u1="P" u2="Â" k="44" /> + <hkern u1="P" u2="Á" k="44" /> + <hkern u1="P" u2="À" k="44" /> + <hkern u1="P" u2="}" k="10" /> + <hkern u1="P" u2="u" k="7" /> + <hkern u1="P" u2="s" k="7" /> + <hkern u1="P" u2="r" k="8" /> + <hkern u1="P" u2="q" k="14" /> + <hkern u1="P" u2="p" k="8" /> + <hkern u1="P" u2="o" k="14" /> + <hkern u1="P" u2="n" k="8" /> + <hkern u1="P" u2="m" k="8" /> + <hkern u1="P" u2="k" k="6" /> + <hkern u1="P" u2="j" k="8" /> + <hkern u1="P" u2="i" k="8" /> + <hkern u1="P" u2="h" k="6" /> + <hkern u1="P" u2="g" k="14" /> + <hkern u1="P" u2="e" k="14" /> + <hkern u1="P" u2="d" k="14" /> + <hkern u1="P" u2="c" k="14" /> + <hkern u1="P" u2="b" k="6" /> + <hkern u1="P" u2="a" k="26" /> + <hkern u1="P" u2="Y" k="5" /> + <hkern u1="P" u2="X" k="20" /> + <hkern u1="P" u2="A" k="44" /> + <hkern u1="P" u2="/" k="23" /> + <hkern u1="P" u2="." k="78" /> + <hkern u1="P" u2="," k="78" /> + <hkern u1="P" u2=")" k="13" /> + <hkern u1="P" u2="&" k="7" /> + <hkern u1="Q" u2="st" k="6" /> + <hkern u1="Q" u2="™" k="8" /> + <hkern u1="Q" u2="…" k="19" /> + <hkern u1="Q" u2="„" k="19" /> + <hkern u1="Q" u2="‚" k="19" /> + <hkern u1="Q" u2="ȷ" k="10" /> + <hkern u1="Q" u2="Ț" k="24" /> + <hkern u1="Q" u2="ș" k="6" /> + <hkern u1="Q" u2="ǿ" k="6" /> + <hkern u1="Q" u2="ǽ" k="10" /> + <hkern u1="Q" u2="Ǽ" k="44" /> + <hkern u1="Q" u2="þ" k="9" /> + <hkern u1="Q" u2="ü" k="8" /> + <hkern u1="Q" u2="û" k="8" /> + <hkern u1="Q" u2="ú" k="8" /> + <hkern u1="Q" u2="ù" k="8" /> + <hkern u1="Q" u2="ø" k="6" /> + <hkern u1="Q" u2="ö" k="6" /> + <hkern u1="Q" u2="õ" k="6" /> + <hkern u1="Q" u2="ô" k="6" /> + <hkern u1="Q" u2="ó" k="6" /> + <hkern u1="Q" u2="ò" k="6" /> + <hkern u1="Q" u2="ñ" k="9" /> + <hkern u1="Q" u2="ð" k="6" /> + <hkern u1="Q" u2="ï" k="10" /> + <hkern u1="Q" u2="î" k="10" /> + <hkern u1="Q" u2="í" k="10" /> + <hkern u1="Q" u2="ì" k="10" /> + <hkern u1="Q" u2="ë" k="6" /> + <hkern u1="Q" u2="ê" k="6" /> + <hkern u1="Q" u2="é" k="6" /> + <hkern u1="Q" u2="è" k="6" /> + <hkern u1="Q" u2="ç" k="6" /> + <hkern u1="Q" u2="æ" k="10" /> + <hkern u1="Q" u2="å" k="10" /> + <hkern u1="Q" u2="ä" k="10" /> + <hkern u1="Q" u2="ã" k="10" /> + <hkern u1="Q" u2="â" k="10" /> + <hkern u1="Q" u2="á" k="10" /> + <hkern u1="Q" u2="à" k="10" /> + <hkern u1="Q" u2="Ý" k="31" /> + <hkern u1="Q" u2="Æ" k="44" /> + <hkern u1="Q" u2="Å" k="14" /> + <hkern u1="Q" u2="Ä" k="14" /> + <hkern u1="Q" u2="Ã" k="14" /> + <hkern u1="Q" u2="Â" k="14" /> + <hkern u1="Q" u2="Á" k="14" /> + <hkern u1="Q" u2="À" k="14" /> + <hkern u1="Q" u2="}" k="17" /> + <hkern u1="Q" u2="x" k="13" /> + <hkern u1="Q" u2="u" k="8" /> + <hkern u1="Q" u2="s" k="6" /> + <hkern u1="Q" u2="r" k="9" /> + <hkern u1="Q" u2="q" k="6" /> + <hkern u1="Q" u2="p" k="9" /> + <hkern u1="Q" u2="o" k="6" /> + <hkern u1="Q" u2="n" k="9" /> + <hkern u1="Q" u2="m" k="9" /> + <hkern u1="Q" u2="k" k="9" /> + <hkern u1="Q" u2="j" k="10" /> + <hkern u1="Q" u2="i" k="10" /> + <hkern u1="Q" u2="h" k="9" /> + <hkern u1="Q" u2="g" k="6" /> + <hkern u1="Q" u2="e" k="6" /> + <hkern u1="Q" u2="d" k="6" /> + <hkern u1="Q" u2="c" k="6" /> + <hkern u1="Q" u2="b" k="9" /> + <hkern u1="Q" u2="a" k="10" /> + <hkern u1="Q" u2="]" k="18" /> + <hkern u1="Q" u2="Y" k="31" /> + <hkern u1="Q" u2="X" k="26" /> + <hkern u1="Q" u2="V" k="13" /> + <hkern u1="Q" u2="T" k="24" /> + <hkern u1="Q" u2="A" k="14" /> + <hkern u1="Q" u2="." k="19" /> + <hkern u1="Q" u2="," k="19" /> + <hkern u1="Q" u2=")" k="21" /> + <hkern u1="S" g2="f_j" k="26" /> + <hkern u1="S" u2="st" k="7" /> + <hkern u1="S" u2="ffl" k="26" /> + <hkern u1="S" u2="ffi" k="26" /> + <hkern u1="S" u2="fl" k="26" /> + <hkern u1="S" u2="fi" k="26" /> + <hkern u1="S" u2="ff" k="26" /> + <hkern u1="S" u2="™" k="8" /> + <hkern u1="S" u2="ȷ" k="9" /> + <hkern u1="S" u2="ț" k="22" /> + <hkern u1="S" u2="Ț" k="37" /> + <hkern u1="S" u2="ș" k="7" /> + <hkern u1="S" u2="ſ" k="26" /> + <hkern u1="S" u2="ÿ" k="29" /> + <hkern u1="S" u2="þ" k="8" /> + <hkern u1="S" u2="ý" k="29" /> + <hkern u1="S" u2="ü" k="9" /> + <hkern u1="S" u2="û" k="9" /> + <hkern u1="S" u2="ú" k="9" /> + <hkern u1="S" u2="ù" k="9" /> + <hkern u1="S" u2="ñ" k="8" /> + <hkern u1="S" u2="ï" k="9" /> + <hkern u1="S" u2="î" k="9" /> + <hkern u1="S" u2="í" k="9" /> + <hkern u1="S" u2="ì" k="9" /> + <hkern u1="S" u2="ß" k="26" /> + <hkern u1="S" u2="Ý" k="8" /> + <hkern u1="S" u2="y" k="29" /> + <hkern u1="S" u2="x" k="21" /> + <hkern u1="S" u2="v" k="32" /> + <hkern u1="S" u2="u" k="9" /> + <hkern u1="S" u2="t" k="22" /> + <hkern u1="S" u2="s" k="7" /> + <hkern u1="S" u2="r" k="8" /> + <hkern u1="S" u2="p" k="8" /> + <hkern u1="S" u2="n" k="8" /> + <hkern u1="S" u2="m" k="8" /> + <hkern u1="S" u2="k" k="8" /> + <hkern u1="S" u2="j" k="9" /> + <hkern u1="S" u2="i" k="9" /> + <hkern u1="S" u2="h" k="8" /> + <hkern u1="S" u2="f" k="26" /> + <hkern u1="S" u2="b" k="8" /> + <hkern u1="S" u2="Y" k="8" /> + <hkern u1="S" u2="X" k="7" /> + <hkern u1="S" u2="V" k="6" /> + <hkern u1="S" u2="T" k="37" /> + <hkern u1="S" u2="*" k="12" /> + <hkern u1="T" g2="f_j" k="30" /> + <hkern u1="T" u2="st" k="76" /> + <hkern u1="T" u2="ffl" k="30" /> + <hkern u1="T" u2="ffi" k="30" /> + <hkern u1="T" u2="fl" k="30" /> + <hkern u1="T" u2="fi" k="30" /> + <hkern u1="T" u2="ff" k="30" /> + <hkern u1="T" u2="›" k="51" /> + <hkern u1="T" u2="‹" k="59" /> + <hkern u1="T" u2="…" k="64" /> + <hkern u1="T" u2="„" k="64" /> + <hkern u1="T" u2="‚" k="64" /> + <hkern u1="T" u2="—" k="64" /> + <hkern u1="T" u2="–" k="64" /> + <hkern u1="T" u2="ȷ" k="10" /> + <hkern u1="T" u2="ț" k="63" /> + <hkern u1="T" u2="ș" k="76" /> + <hkern u1="T" u2="ǿ" k="85" /> + <hkern u1="T" u2="Ǿ" k="24" /> + <hkern u1="T" u2="ǽ" k="79" /> + <hkern u1="T" u2="Ǽ" k="53" /> + <hkern u1="T" u2="ſ" k="30" /> + <hkern u1="T" u2="ÿ" k="69" /> + <hkern u1="T" u2="þ" k="6" /> + <hkern u1="T" u2="ý" k="69" /> + <hkern u1="T" u2="ü" k="66" /> + <hkern u1="T" u2="û" k="66" /> + <hkern u1="T" u2="ú" k="66" /> + <hkern u1="T" u2="ù" k="66" /> + <hkern u1="T" u2="ø" k="85" /> + <hkern u1="T" u2="ö" k="85" /> + <hkern u1="T" u2="õ" k="85" /> + <hkern u1="T" u2="ô" k="85" /> + <hkern u1="T" u2="ó" k="85" /> + <hkern u1="T" u2="ò" k="85" /> + <hkern u1="T" u2="ñ" k="67" /> + <hkern u1="T" u2="ð" k="85" /> + <hkern u1="T" u2="ï" k="-15" /> + <hkern u1="T" u2="î" k="-1" /> + <hkern u1="T" u2="í" k="10" /> + <hkern u1="T" u2="ì" k="10" /> + <hkern u1="T" u2="ë" k="85" /> + <hkern u1="T" u2="ê" k="85" /> + <hkern u1="T" u2="é" k="85" /> + <hkern u1="T" u2="è" k="85" /> + <hkern u1="T" u2="ç" k="85" /> + <hkern u1="T" u2="æ" k="79" /> + <hkern u1="T" u2="å" k="79" /> + <hkern u1="T" u2="ä" k="79" /> + <hkern u1="T" u2="ã" k="79" /> + <hkern u1="T" u2="â" k="79" /> + <hkern u1="T" u2="á" k="79" /> + <hkern u1="T" u2="à" k="79" /> + <hkern u1="T" u2="ß" k="30" /> + <hkern u1="T" u2="Ý" k="-43" /> + <hkern u1="T" u2="Ø" k="24" /> + <hkern u1="T" u2="Ö" k="24" /> + <hkern u1="T" u2="Õ" k="24" /> + <hkern u1="T" u2="Ô" k="24" /> + <hkern u1="T" u2="Ó" k="24" /> + <hkern u1="T" u2="Ò" k="24" /> + <hkern u1="T" u2="Ç" k="24" /> + <hkern u1="T" u2="Æ" k="53" /> + <hkern u1="T" u2="Å" k="62" /> + <hkern u1="T" u2="Ä" k="62" /> + <hkern u1="T" u2="Ã" k="62" /> + <hkern u1="T" u2="Â" k="62" /> + <hkern u1="T" u2="Á" k="62" /> + <hkern u1="T" u2="À" k="62" /> + <hkern u1="T" u2="»" k="51" /> + <hkern u1="T" u2="®" k="16" /> + <hkern u1="T" u2="«" k="59" /> + <hkern u1="T" u2="y" k="69" /> + <hkern u1="T" u2="x" k="68" /> + <hkern u1="T" u2="v" k="71" /> + <hkern u1="T" u2="u" k="66" /> + <hkern u1="T" u2="t" k="63" /> + <hkern u1="T" u2="s" k="76" /> + <hkern u1="T" u2="r" k="67" /> + <hkern u1="T" u2="q" k="85" /> + <hkern u1="T" u2="p" k="67" /> + <hkern u1="T" u2="o" k="85" /> + <hkern u1="T" u2="n" k="67" /> + <hkern u1="T" u2="m" k="67" /> + <hkern u1="T" u2="k" k="6" /> + <hkern u1="T" u2="j" k="10" /> + <hkern u1="T" u2="i" k="10" /> + <hkern u1="T" u2="h" k="6" /> + <hkern u1="T" u2="g" k="85" /> + <hkern u1="T" u2="f" k="30" /> + <hkern u1="T" u2="e" k="85" /> + <hkern u1="T" u2="d" k="85" /> + <hkern u1="T" u2="c" k="85" /> + <hkern u1="T" u2="b" k="6" /> + <hkern u1="T" u2="a" k="79" /> + <hkern u1="T" u2="Y" k="-43" /> + <hkern u1="T" u2="X" k="-35" /> + <hkern u1="T" u2="V" k="-37" /> + <hkern u1="T" u2="Q" k="24" /> + <hkern u1="T" u2="O" k="24" /> + <hkern u1="T" u2="G" k="24" /> + <hkern u1="T" u2="C" k="24" /> + <hkern u1="T" u2="A" k="62" /> + <hkern u1="T" u2="@" k="30" /> + <hkern u1="T" u2=";" k="42" /> + <hkern u1="T" u2=":" k="42" /> + <hkern u1="T" u2="/" k="36" /> + <hkern u1="T" u2="." k="64" /> + <hkern u1="T" u2="-" k="64" /> + <hkern u1="T" u2="," k="64" /> + <hkern u1="T" u2="&" k="41" /> + <hkern u1="U" g2="f_j" k="8" /> + <hkern u1="U" u2="st" k="16" /> + <hkern u1="U" u2="ffl" k="8" /> + <hkern u1="U" u2="ffi" k="8" /> + <hkern u1="U" u2="fl" k="8" /> + <hkern u1="U" u2="fi" k="8" /> + <hkern u1="U" u2="ff" k="8" /> + <hkern u1="U" u2="…" k="18" /> + <hkern u1="U" u2="„" k="18" /> + <hkern u1="U" u2="‚" k="18" /> + <hkern u1="U" u2="ȷ" k="15" /> + <hkern u1="U" u2="ț" k="10" /> + <hkern u1="U" u2="ș" k="16" /> + <hkern u1="U" u2="ǿ" k="15" /> + <hkern u1="U" u2="ǽ" k="17" /> + <hkern u1="U" u2="Ǽ" k="10" /> + <hkern u1="U" u2="ſ" k="8" /> + <hkern u1="U" u2="ÿ" k="6" /> + <hkern u1="U" u2="þ" k="13" /> + <hkern u1="U" u2="ý" k="6" /> + <hkern u1="U" u2="ü" k="18" /> + <hkern u1="U" u2="û" k="18" /> + <hkern u1="U" u2="ú" k="18" /> + <hkern u1="U" u2="ù" k="18" /> + <hkern u1="U" u2="ø" k="15" /> + <hkern u1="U" u2="ö" k="15" /> + <hkern u1="U" u2="õ" k="15" /> + <hkern u1="U" u2="ô" k="15" /> + <hkern u1="U" u2="ó" k="15" /> + <hkern u1="U" u2="ò" k="15" /> + <hkern u1="U" u2="ñ" k="18" /> + <hkern u1="U" u2="ð" k="15" /> + <hkern u1="U" u2="ï" k="15" /> + <hkern u1="U" u2="î" k="15" /> + <hkern u1="U" u2="í" k="15" /> + <hkern u1="U" u2="ì" k="15" /> + <hkern u1="U" u2="ë" k="15" /> + <hkern u1="U" u2="ê" k="15" /> + <hkern u1="U" u2="é" k="15" /> + <hkern u1="U" u2="è" k="15" /> + <hkern u1="U" u2="ç" k="15" /> + <hkern u1="U" u2="æ" k="17" /> + <hkern u1="U" u2="å" k="17" /> + <hkern u1="U" u2="ä" k="17" /> + <hkern u1="U" u2="ã" k="17" /> + <hkern u1="U" u2="â" k="17" /> + <hkern u1="U" u2="á" k="17" /> + <hkern u1="U" u2="à" k="17" /> + <hkern u1="U" u2="ß" k="8" /> + <hkern u1="U" u2="Æ" k="10" /> + <hkern u1="U" u2="Å" k="20" /> + <hkern u1="U" u2="Ä" k="20" /> + <hkern u1="U" u2="Ã" k="20" /> + <hkern u1="U" u2="Â" k="20" /> + <hkern u1="U" u2="Á" k="20" /> + <hkern u1="U" u2="À" k="20" /> + <hkern u1="U" u2="y" k="6" /> + <hkern u1="U" u2="x" k="10" /> + <hkern u1="U" u2="v" k="8" /> + <hkern u1="U" u2="u" k="18" /> + <hkern u1="U" u2="t" k="10" /> + <hkern u1="U" u2="s" k="16" /> + <hkern u1="U" u2="r" k="18" /> + <hkern u1="U" u2="q" k="15" /> + <hkern u1="U" u2="p" k="18" /> + <hkern u1="U" u2="o" k="15" /> + <hkern u1="U" u2="n" k="18" /> + <hkern u1="U" u2="m" k="18" /> + <hkern u1="U" u2="k" k="13" /> + <hkern u1="U" u2="j" k="15" /> + <hkern u1="U" u2="i" k="15" /> + <hkern u1="U" u2="h" k="13" /> + <hkern u1="U" u2="g" k="15" /> + <hkern u1="U" u2="f" k="8" /> + <hkern u1="U" u2="e" k="15" /> + <hkern u1="U" u2="d" k="15" /> + <hkern u1="U" u2="c" k="15" /> + <hkern u1="U" u2="b" k="13" /> + <hkern u1="U" u2="a" k="17" /> + <hkern u1="U" u2="A" k="20" /> + <hkern u1="U" u2="/" k="14" /> + <hkern u1="U" u2="." k="18" /> + <hkern u1="U" u2="," k="18" /> + <hkern u1="U" u2=")" k="11" /> + <hkern u1="V" g2="f_j" k="11" /> + <hkern u1="V" u2="st" k="50" /> + <hkern u1="V" u2="ffl" k="11" /> + <hkern u1="V" u2="ffi" k="11" /> + <hkern u1="V" u2="fl" k="11" /> + <hkern u1="V" u2="fi" k="11" /> + <hkern u1="V" u2="ff" k="11" /> + <hkern u1="V" u2="™" k="-8" /> + <hkern u1="V" u2="›" k="12" /> + <hkern u1="V" u2="‹" k="31" /> + <hkern u1="V" u2="…" k="64" /> + <hkern u1="V" u2="„" k="64" /> + <hkern u1="V" u2="‚" k="64" /> + <hkern u1="V" u2="—" k="33" /> + <hkern u1="V" u2="–" k="33" /> + <hkern u1="V" u2="ȷ" k="9" /> + <hkern u1="V" u2="ț" k="24" /> + <hkern u1="V" u2="Ț" k="-31" /> + <hkern u1="V" u2="ș" k="50" /> + <hkern u1="V" u2="Ș" k="5" /> + <hkern u1="V" u2="ǿ" k="53" /> + <hkern u1="V" u2="Ǿ" k="13" /> + <hkern u1="V" u2="ǽ" k="54" /> + <hkern u1="V" u2="Ǽ" k="48" /> + <hkern u1="V" u2="ſ" k="11" /> + <hkern u1="V" u2="ÿ" k="10" /> + <hkern u1="V" u2="þ" k="8" /> + <hkern u1="V" u2="ý" k="10" /> + <hkern u1="V" u2="ü" k="41" /> + <hkern u1="V" u2="û" k="41" /> + <hkern u1="V" u2="ú" k="41" /> + <hkern u1="V" u2="ù" k="41" /> + <hkern u1="V" u2="ø" k="53" /> + <hkern u1="V" u2="ö" k="53" /> + <hkern u1="V" u2="õ" k="53" /> + <hkern u1="V" u2="ô" k="53" /> + <hkern u1="V" u2="ó" k="53" /> + <hkern u1="V" u2="ò" k="53" /> + <hkern u1="V" u2="ñ" k="44" /> + <hkern u1="V" u2="ð" k="53" /> + <hkern u1="V" u2="ï" k="-18" /> + <hkern u1="V" u2="î" k="-1" /> + <hkern u1="V" u2="í" k="9" /> + <hkern u1="V" u2="ì" k="-3" /> + <hkern u1="V" u2="ë" k="53" /> + <hkern u1="V" u2="ê" k="53" /> + <hkern u1="V" u2="é" k="53" /> + <hkern u1="V" u2="è" k="53" /> + <hkern u1="V" u2="ç" k="53" /> + <hkern u1="V" u2="æ" k="54" /> + <hkern u1="V" u2="å" k="54" /> + <hkern u1="V" u2="ä" k="54" /> + <hkern u1="V" u2="ã" k="54" /> + <hkern u1="V" u2="â" k="54" /> + <hkern u1="V" u2="á" k="54" /> + <hkern u1="V" u2="à" k="54" /> + <hkern u1="V" u2="ß" k="11" /> + <hkern u1="V" u2="Ý" k="-48" /> + <hkern u1="V" u2="Ø" k="13" /> + <hkern u1="V" u2="Ö" k="13" /> + <hkern u1="V" u2="Õ" k="13" /> + <hkern u1="V" u2="Ô" k="13" /> + <hkern u1="V" u2="Ó" k="13" /> + <hkern u1="V" u2="Ò" k="13" /> + <hkern u1="V" u2="Ç" k="13" /> + <hkern u1="V" u2="Æ" k="48" /> + <hkern u1="V" u2="Å" k="44" /> + <hkern u1="V" u2="Ä" k="44" /> + <hkern u1="V" u2="Ã" k="44" /> + <hkern u1="V" u2="Â" k="44" /> + <hkern u1="V" u2="Á" k="44" /> + <hkern u1="V" u2="À" k="44" /> + <hkern u1="V" u2="»" k="12" /> + <hkern u1="V" u2="®" k="10" /> + <hkern u1="V" u2="«" k="31" /> + <hkern u1="V" u2="y" k="10" /> + <hkern u1="V" u2="x" k="15" /> + <hkern u1="V" u2="v" k="12" /> + <hkern u1="V" u2="u" k="41" /> + <hkern u1="V" u2="t" k="24" /> + <hkern u1="V" u2="s" k="50" /> + <hkern u1="V" u2="r" k="44" /> + <hkern u1="V" u2="q" k="53" /> + <hkern u1="V" u2="p" k="44" /> + <hkern u1="V" u2="o" k="53" /> + <hkern u1="V" u2="n" k="44" /> + <hkern u1="V" u2="m" k="44" /> + <hkern u1="V" u2="k" k="8" /> + <hkern u1="V" u2="j" k="9" /> + <hkern u1="V" u2="i" k="9" /> + <hkern u1="V" u2="h" k="8" /> + <hkern u1="V" u2="g" k="53" /> + <hkern u1="V" u2="f" k="11" /> + <hkern u1="V" u2="e" k="53" /> + <hkern u1="V" u2="d" k="53" /> + <hkern u1="V" u2="c" k="53" /> + <hkern u1="V" u2="b" k="8" /> + <hkern u1="V" u2="a" k="54" /> + <hkern u1="V" u2="Y" k="-48" /> + <hkern u1="V" u2="X" k="-33" /> + <hkern u1="V" u2="V" k="-35" /> + <hkern u1="V" u2="T" k="-31" /> + <hkern u1="V" u2="S" k="5" /> + <hkern u1="V" u2="Q" k="13" /> + <hkern u1="V" u2="O" k="13" /> + <hkern u1="V" u2="G" k="13" /> + <hkern u1="V" u2="C" k="13" /> + <hkern u1="V" u2="A" k="44" /> + <hkern u1="V" u2="@" k="17" /> + <hkern u1="V" u2=";" k="9" /> + <hkern u1="V" u2=":" k="9" /> + <hkern u1="V" u2="/" k="35" /> + <hkern u1="V" u2="." k="64" /> + <hkern u1="V" u2="-" k="33" /> + <hkern u1="V" u2="," k="64" /> + <hkern u1="V" u2="&" k="14" /> + <hkern u1="X" g2="f_j" k="15" /> + <hkern u1="X" u2="st" k="9" /> + <hkern u1="X" u2="ffl" k="15" /> + <hkern u1="X" u2="ffi" k="15" /> + <hkern u1="X" u2="fl" k="15" /> + <hkern u1="X" u2="fi" k="15" /> + <hkern u1="X" u2="ff" k="15" /> + <hkern u1="X" u2="‹" k="15" /> + <hkern u1="X" u2="—" k="31" /> + <hkern u1="X" u2="–" k="31" /> + <hkern u1="X" u2="ț" k="44" /> + <hkern u1="X" u2="Ț" k="-32" /> + <hkern u1="X" u2="ș" k="9" /> + <hkern u1="X" u2="Ș" k="6" /> + <hkern u1="X" u2="ǿ" k="40" /> + <hkern u1="X" u2="Ǿ" k="26" /> + <hkern u1="X" u2="ǽ" k="10" /> + <hkern u1="X" u2="ſ" k="15" /> + <hkern u1="X" u2="ÿ" k="36" /> + <hkern u1="X" u2="ý" k="36" /> + <hkern u1="X" u2="ü" k="31" /> + <hkern u1="X" u2="û" k="31" /> + <hkern u1="X" u2="ú" k="31" /> + <hkern u1="X" u2="ù" k="31" /> + <hkern u1="X" u2="ø" k="40" /> + <hkern u1="X" u2="ö" k="40" /> + <hkern u1="X" u2="õ" k="40" /> + <hkern u1="X" u2="ô" k="40" /> + <hkern u1="X" u2="ó" k="40" /> + <hkern u1="X" u2="ò" k="40" /> + <hkern u1="X" u2="ñ" k="8" /> + <hkern u1="X" u2="ð" k="40" /> + <hkern u1="X" u2="ë" k="40" /> + <hkern u1="X" u2="ê" k="40" /> + <hkern u1="X" u2="é" k="40" /> + <hkern u1="X" u2="è" k="40" /> + <hkern u1="X" u2="ç" k="40" /> + <hkern u1="X" u2="æ" k="10" /> + <hkern u1="X" u2="å" k="10" /> + <hkern u1="X" u2="ä" k="10" /> + <hkern u1="X" u2="ã" k="10" /> + <hkern u1="X" u2="â" k="10" /> + <hkern u1="X" u2="á" k="10" /> + <hkern u1="X" u2="à" k="10" /> + <hkern u1="X" u2="ß" k="15" /> + <hkern u1="X" u2="Ý" k="-37" /> + <hkern u1="X" u2="Ø" k="26" /> + <hkern u1="X" u2="Ö" k="26" /> + <hkern u1="X" u2="Õ" k="26" /> + <hkern u1="X" u2="Ô" k="26" /> + <hkern u1="X" u2="Ó" k="26" /> + <hkern u1="X" u2="Ò" k="26" /> + <hkern u1="X" u2="Ç" k="26" /> + <hkern u1="X" u2="Å" k="-32" /> + <hkern u1="X" u2="Ä" k="-32" /> + <hkern u1="X" u2="Ã" k="-32" /> + <hkern u1="X" u2="Â" k="-32" /> + <hkern u1="X" u2="Á" k="-32" /> + <hkern u1="X" u2="À" k="-32" /> + <hkern u1="X" u2="«" k="15" /> + <hkern u1="X" u2="y" k="36" /> + <hkern u1="X" u2="v" k="38" /> + <hkern u1="X" u2="u" k="31" /> + <hkern u1="X" u2="t" k="44" /> + <hkern u1="X" u2="s" k="9" /> + <hkern u1="X" u2="r" k="8" /> + <hkern u1="X" u2="q" k="40" /> + <hkern u1="X" u2="p" k="8" /> + <hkern u1="X" u2="o" k="40" /> + <hkern u1="X" u2="n" k="8" /> + <hkern u1="X" u2="m" k="8" /> + <hkern u1="X" u2="g" k="40" /> + <hkern u1="X" u2="f" k="15" /> + <hkern u1="X" u2="e" k="40" /> + <hkern u1="X" u2="d" k="40" /> + <hkern u1="X" u2="c" k="40" /> + <hkern u1="X" u2="a" k="10" /> + <hkern u1="X" u2="Y" k="-37" /> + <hkern u1="X" u2="X" k="-28" /> + <hkern u1="X" u2="V" k="-32" /> + <hkern u1="X" u2="T" k="-32" /> + <hkern u1="X" u2="S" k="6" /> + <hkern u1="X" u2="Q" k="26" /> + <hkern u1="X" u2="O" k="26" /> + <hkern u1="X" u2="G" k="26" /> + <hkern u1="X" u2="C" k="26" /> + <hkern u1="X" u2="A" k="-32" /> + <hkern u1="X" u2="-" k="31" /> + <hkern u1="X" u2="&" k="17" /> + <hkern u1="Y" g2="f_j" k="24" /> + <hkern u1="Y" u2="st" k="85" /> + <hkern u1="Y" u2="ffl" k="24" /> + <hkern u1="Y" u2="ffi" k="24" /> + <hkern u1="Y" u2="fl" k="24" /> + <hkern u1="Y" u2="fi" k="24" /> + <hkern u1="Y" u2="ff" k="24" /> + <hkern u1="Y" u2="™" k="-26" /> + <hkern u1="Y" u2="›" k="32" /> + <hkern u1="Y" u2="‹" k="59" /> + <hkern u1="Y" u2="…" k="75" /> + <hkern u1="Y" u2="„" k="75" /> + <hkern u1="Y" u2="‚" k="75" /> + <hkern u1="Y" u2="—" k="66" /> + <hkern u1="Y" u2="–" k="66" /> + <hkern u1="Y" u2="ȷ" k="9" /> + <hkern u1="Y" u2="ț" k="55" /> + <hkern u1="Y" u2="Ț" k="-42" /> + <hkern u1="Y" u2="ș" k="85" /> + <hkern u1="Y" u2="Ș" k="9" /> + <hkern u1="Y" u2="ǿ" k="87" /> + <hkern u1="Y" u2="Ǿ" k="30" /> + <hkern u1="Y" u2="ǽ" k="81" /> + <hkern u1="Y" u2="Ǽ" k="72" /> + <hkern u1="Y" u2="ſ" k="24" /> + <hkern u1="Y" u2="ÿ" k="34" /> + <hkern u1="Y" u2="þ" k="8" /> + <hkern u1="Y" u2="ý" k="34" /> + <hkern u1="Y" u2="ü" k="68" /> + <hkern u1="Y" u2="û" k="68" /> + <hkern u1="Y" u2="ú" k="68" /> + <hkern u1="Y" u2="ù" k="68" /> + <hkern u1="Y" u2="ø" k="87" /> + <hkern u1="Y" u2="ö" k="87" /> + <hkern u1="Y" u2="õ" k="87" /> + <hkern u1="Y" u2="ô" k="87" /> + <hkern u1="Y" u2="ó" k="87" /> + <hkern u1="Y" u2="ò" k="87" /> + <hkern u1="Y" u2="ñ" k="70" /> + <hkern u1="Y" u2="ð" k="87" /> + <hkern u1="Y" u2="ï" k="-23" /> + <hkern u1="Y" u2="î" k="9" /> + <hkern u1="Y" u2="í" k="9" /> + <hkern u1="Y" u2="ì" k="-14" /> + <hkern u1="Y" u2="ë" k="87" /> + <hkern u1="Y" u2="ê" k="87" /> + <hkern u1="Y" u2="é" k="87" /> + <hkern u1="Y" u2="è" k="87" /> + <hkern u1="Y" u2="ç" k="87" /> + <hkern u1="Y" u2="æ" k="81" /> + <hkern u1="Y" u2="å" k="81" /> + <hkern u1="Y" u2="ä" k="81" /> + <hkern u1="Y" u2="ã" k="81" /> + <hkern u1="Y" u2="â" k="81" /> + <hkern u1="Y" u2="á" k="81" /> + <hkern u1="Y" u2="à" k="81" /> + <hkern u1="Y" u2="ß" k="24" /> + <hkern u1="Y" u2="Þ" k="5" /> + <hkern u1="Y" u2="Ý" k="-50" /> + <hkern u1="Y" u2="Ø" k="30" /> + <hkern u1="Y" u2="Ö" k="30" /> + <hkern u1="Y" u2="Õ" k="30" /> + <hkern u1="Y" u2="Ô" k="30" /> + <hkern u1="Y" u2="Ó" k="30" /> + <hkern u1="Y" u2="Ò" k="30" /> + <hkern u1="Y" u2="Ñ" k="5" /> + <hkern u1="Y" u2="Ð" k="5" /> + <hkern u1="Y" u2="Ï" k="5" /> + <hkern u1="Y" u2="Î" k="5" /> + <hkern u1="Y" u2="Í" k="5" /> + <hkern u1="Y" u2="Ì" k="5" /> + <hkern u1="Y" u2="Ë" k="5" /> + <hkern u1="Y" u2="Ê" k="5" /> + <hkern u1="Y" u2="É" k="5" /> + <hkern u1="Y" u2="È" k="5" /> + <hkern u1="Y" u2="Ç" k="30" /> + <hkern u1="Y" u2="Æ" k="72" /> + <hkern u1="Y" u2="Å" k="64" /> + <hkern u1="Y" u2="Ä" k="64" /> + <hkern u1="Y" u2="Ã" k="64" /> + <hkern u1="Y" u2="Â" k="64" /> + <hkern u1="Y" u2="Á" k="64" /> + <hkern u1="Y" u2="À" k="64" /> + <hkern u1="Y" u2="»" k="32" /> + <hkern u1="Y" u2="®" k="23" /> + <hkern u1="Y" u2="«" k="59" /> + <hkern u1="Y" u2="}" k="-12" /> + <hkern u1="Y" u2="y" k="34" /> + <hkern u1="Y" u2="x" k="43" /> + <hkern u1="Y" u2="v" k="35" /> + <hkern u1="Y" u2="u" k="68" /> + <hkern u1="Y" u2="t" k="55" /> + <hkern u1="Y" u2="s" k="85" /> + <hkern u1="Y" u2="r" k="70" /> + <hkern u1="Y" u2="q" k="87" /> + <hkern u1="Y" u2="p" k="70" /> + <hkern u1="Y" u2="o" k="87" /> + <hkern u1="Y" u2="n" k="70" /> + <hkern u1="Y" u2="m" k="70" /> + <hkern u1="Y" u2="k" k="8" /> + <hkern u1="Y" u2="j" k="9" /> + <hkern u1="Y" u2="i" k="9" /> + <hkern u1="Y" u2="h" k="8" /> + <hkern u1="Y" u2="g" k="87" /> + <hkern u1="Y" u2="f" k="24" /> + <hkern u1="Y" u2="e" k="87" /> + <hkern u1="Y" u2="d" k="87" /> + <hkern u1="Y" u2="c" k="87" /> + <hkern u1="Y" u2="b" k="8" /> + <hkern u1="Y" u2="a" k="81" /> + <hkern u1="Y" u2="]" k="-10" /> + <hkern u1="Y" u2="Y" k="-50" /> + <hkern u1="Y" u2="X" k="-45" /> + <hkern u1="Y" u2="V" k="-45" /> + <hkern u1="Y" u2="T" k="-42" /> + <hkern u1="Y" u2="S" k="9" /> + <hkern u1="Y" u2="R" k="5" /> + <hkern u1="Y" u2="Q" k="30" /> + <hkern u1="Y" u2="P" k="5" /> + <hkern u1="Y" u2="O" k="30" /> + <hkern u1="Y" u2="N" k="5" /> + <hkern u1="Y" u2="M" k="5" /> + <hkern u1="Y" u2="L" k="5" /> + <hkern u1="Y" u2="K" k="5" /> + <hkern u1="Y" u2="I" k="5" /> + <hkern u1="Y" u2="H" k="5" /> + <hkern u1="Y" u2="G" k="30" /> + <hkern u1="Y" u2="F" k="5" /> + <hkern u1="Y" u2="E" k="5" /> + <hkern u1="Y" u2="D" k="5" /> + <hkern u1="Y" u2="C" k="30" /> + <hkern u1="Y" u2="B" k="5" /> + <hkern u1="Y" u2="A" k="64" /> + <hkern u1="Y" u2="@" k="35" /> + <hkern u1="Y" u2=";" k="26" /> + <hkern u1="Y" u2=":" k="26" /> + <hkern u1="Y" u2="/" k="44" /> + <hkern u1="Y" u2="." k="75" /> + <hkern u1="Y" u2="-" k="66" /> + <hkern u1="Y" u2="," k="75" /> + <hkern u1="Y" u2="&" k="26" /> + <hkern u1="[" u2="st" k="20" /> + <hkern u1="[" u2="ț" k="20" /> + <hkern u1="[" u2="ș" k="20" /> + <hkern u1="[" u2="ǿ" k="25" /> + <hkern u1="[" u2="Ǿ" k="17" /> + <hkern u1="[" u2="ǽ" k="20" /> + <hkern u1="[" u2="ÿ" k="15" /> + <hkern u1="[" u2="ý" k="15" /> + <hkern u1="[" u2="ü" k="23" /> + <hkern u1="[" u2="û" k="23" /> + <hkern u1="[" u2="ú" k="23" /> + <hkern u1="[" u2="ù" k="23" /> + <hkern u1="[" u2="ø" k="25" /> + <hkern u1="[" u2="ö" k="25" /> + <hkern u1="[" u2="õ" k="25" /> + <hkern u1="[" u2="ô" k="25" /> + <hkern u1="[" u2="ó" k="25" /> + <hkern u1="[" u2="ò" k="25" /> + <hkern u1="[" u2="ñ" k="20" /> + <hkern u1="[" u2="ð" k="25" /> + <hkern u1="[" u2="ë" k="25" /> + <hkern u1="[" u2="ê" k="25" /> + <hkern u1="[" u2="é" k="25" /> + <hkern u1="[" u2="è" k="25" /> + <hkern u1="[" u2="ç" k="25" /> + <hkern u1="[" u2="æ" k="20" /> + <hkern u1="[" u2="å" k="20" /> + <hkern u1="[" u2="ä" k="20" /> + <hkern u1="[" u2="ã" k="20" /> + <hkern u1="[" u2="â" k="20" /> + <hkern u1="[" u2="á" k="20" /> + <hkern u1="[" u2="à" k="20" /> + <hkern u1="[" u2="Ý" k="-10" /> + <hkern u1="[" u2="Ø" k="17" /> + <hkern u1="[" u2="Ö" k="17" /> + <hkern u1="[" u2="Õ" k="17" /> + <hkern u1="[" u2="Ô" k="17" /> + <hkern u1="[" u2="Ó" k="17" /> + <hkern u1="[" u2="Ò" k="17" /> + <hkern u1="[" u2="Ç" k="17" /> + <hkern u1="[" u2="Å" k="17" /> + <hkern u1="[" u2="Ä" k="17" /> + <hkern u1="[" u2="Ã" k="17" /> + <hkern u1="[" u2="Â" k="17" /> + <hkern u1="[" u2="Á" k="17" /> + <hkern u1="[" u2="À" k="17" /> + <hkern u1="[" u2="y" k="15" /> + <hkern u1="[" u2="x" k="11" /> + <hkern u1="[" u2="v" k="21" /> + <hkern u1="[" u2="u" k="23" /> + <hkern u1="[" u2="t" k="20" /> + <hkern u1="[" u2="s" k="20" /> + <hkern u1="[" u2="r" k="20" /> + <hkern u1="[" u2="q" k="25" /> + <hkern u1="[" u2="p" k="20" /> + <hkern u1="[" u2="o" k="25" /> + <hkern u1="[" u2="n" k="20" /> + <hkern u1="[" u2="m" k="20" /> + <hkern u1="[" u2="g" k="25" /> + <hkern u1="[" u2="e" k="25" /> + <hkern u1="[" u2="d" k="25" /> + <hkern u1="[" u2="c" k="25" /> + <hkern u1="[" u2="a" k="20" /> + <hkern u1="[" u2="Y" k="-10" /> + <hkern u1="[" u2="Q" k="17" /> + <hkern u1="[" u2="O" k="17" /> + <hkern u1="[" u2="G" k="17" /> + <hkern u1="[" u2="C" k="17" /> + <hkern u1="[" u2="A" k="17" /> + <hkern u1="\" u2="”" k="40" /> + <hkern u1="\" u2="’" k="40" /> + <hkern u1="\" u2="ț" k="10" /> + <hkern u1="\" u2="Ț" k="36" /> + <hkern u1="\" u2="Ǿ" k="10" /> + <hkern u1="\" u2="Ǽ" k="-8" /> + <hkern u1="\" u2="ÿ" k="13" /> + <hkern u1="\" u2="ý" k="13" /> + <hkern u1="\" u2="Ý" k="44" /> + <hkern u1="\" u2="Ü" k="14" /> + <hkern u1="\" u2="Û" k="14" /> + <hkern u1="\" u2="Ú" k="14" /> + <hkern u1="\" u2="Ù" k="14" /> + <hkern u1="\" u2="Ø" k="10" /> + <hkern u1="\" u2="Ö" k="10" /> + <hkern u1="\" u2="Õ" k="10" /> + <hkern u1="\" u2="Ô" k="10" /> + <hkern u1="\" u2="Ó" k="10" /> + <hkern u1="\" u2="Ò" k="10" /> + <hkern u1="\" u2="Ç" k="10" /> + <hkern u1="\" u2="Æ" k="-8" /> + <hkern u1="\" u2="y" k="13" /> + <hkern u1="\" u2="v" k="19" /> + <hkern u1="\" u2="t" k="10" /> + <hkern u1="\" u2="Y" k="44" /> + <hkern u1="\" u2="V" k="35" /> + <hkern u1="\" u2="U" k="14" /> + <hkern u1="\" u2="T" k="36" /> + <hkern u1="\" u2="Q" k="10" /> + <hkern u1="\" u2="O" k="10" /> + <hkern u1="\" u2="G" k="10" /> + <hkern u1="\" u2="C" k="10" /> + <hkern u1="\" u2="'" k="40" /> + <hkern u1="\" u2=""" k="40" /> + <hkern u1="a" g2="f_j" k="6" /> + <hkern u1="a" u2="ffl" k="6" /> + <hkern u1="a" u2="ffi" k="6" /> + <hkern u1="a" u2="fl" k="6" /> + <hkern u1="a" u2="fi" k="6" /> + <hkern u1="a" u2="ff" k="6" /> + <hkern u1="a" u2="™" k="25" /> + <hkern u1="a" u2="”" k="14" /> + <hkern u1="a" u2="“" k="13" /> + <hkern u1="a" u2="’" k="14" /> + <hkern u1="a" u2="‘" k="13" /> + <hkern u1="a" u2="ț" k="5" /> + <hkern u1="a" u2="Ț" k="91" /> + <hkern u1="a" u2="Ș" k="12" /> + <hkern u1="a" u2="Ǿ" k="10" /> + <hkern u1="a" u2="ſ" k="6" /> + <hkern u1="a" u2="ÿ" k="7" /> + <hkern u1="a" u2="ý" k="7" /> + <hkern u1="a" u2="ü" k="4" /> + <hkern u1="a" u2="û" k="4" /> + <hkern u1="a" u2="ú" k="4" /> + <hkern u1="a" u2="ù" k="4" /> + <hkern u1="a" u2="ß" k="6" /> + <hkern u1="a" u2="Þ" k="14" /> + <hkern u1="a" u2="Ý" k="86" /> + <hkern u1="a" u2="Ü" k="22" /> + <hkern u1="a" u2="Û" k="22" /> + <hkern u1="a" u2="Ú" k="22" /> + <hkern u1="a" u2="Ù" k="22" /> + <hkern u1="a" u2="Ø" k="10" /> + <hkern u1="a" u2="Ö" k="10" /> + <hkern u1="a" u2="Õ" k="10" /> + <hkern u1="a" u2="Ô" k="10" /> + <hkern u1="a" u2="Ó" k="10" /> + <hkern u1="a" u2="Ò" k="10" /> + <hkern u1="a" u2="Ñ" k="14" /> + <hkern u1="a" u2="Ð" k="14" /> + <hkern u1="a" u2="Ï" k="14" /> + <hkern u1="a" u2="Î" k="14" /> + <hkern u1="a" u2="Í" k="14" /> + <hkern u1="a" u2="Ì" k="14" /> + <hkern u1="a" u2="Ë" k="14" /> + <hkern u1="a" u2="Ê" k="14" /> + <hkern u1="a" u2="É" k="14" /> + <hkern u1="a" u2="È" k="14" /> + <hkern u1="a" u2="Ç" k="10" /> + <hkern u1="a" u2="Å" k="5" /> + <hkern u1="a" u2="Ä" k="5" /> + <hkern u1="a" u2="Ã" k="5" /> + <hkern u1="a" u2="Â" k="5" /> + <hkern u1="a" u2="Á" k="5" /> + <hkern u1="a" u2="À" k="5" /> + <hkern u1="a" u2="}" k="20" /> + <hkern u1="a" u2="y" k="7" /> + <hkern u1="a" u2="v" k="10" /> + <hkern u1="a" u2="u" k="4" /> + <hkern u1="a" u2="t" k="5" /> + <hkern u1="a" u2="f" k="6" /> + <hkern u1="a" u2="]" k="23" /> + <hkern u1="a" u2="\" k="23" /> + <hkern u1="a" u2="Y" k="86" /> + <hkern u1="a" u2="X" k="6" /> + <hkern u1="a" u2="V" k="53" /> + <hkern u1="a" u2="U" k="22" /> + <hkern u1="a" u2="T" k="91" /> + <hkern u1="a" u2="S" k="12" /> + <hkern u1="a" u2="R" k="14" /> + <hkern u1="a" u2="Q" k="10" /> + <hkern u1="a" u2="P" k="14" /> + <hkern u1="a" u2="O" k="10" /> + <hkern u1="a" u2="N" k="14" /> + <hkern u1="a" u2="M" k="14" /> + <hkern u1="a" u2="L" k="14" /> + <hkern u1="a" u2="K" k="14" /> + <hkern u1="a" u2="I" k="14" /> + <hkern u1="a" u2="H" k="14" /> + <hkern u1="a" u2="G" k="10" /> + <hkern u1="a" u2="F" k="14" /> + <hkern u1="a" u2="E" k="14" /> + <hkern u1="a" u2="D" k="14" /> + <hkern u1="a" u2="C" k="10" /> + <hkern u1="a" u2="B" k="14" /> + <hkern u1="a" u2="A" k="5" /> + <hkern u1="a" u2="?" k="19" /> + <hkern u1="a" u2="*" k="14" /> + <hkern u1="a" u2=")" k="20" /> + <hkern u1="a" u2="'" k="14" /> + <hkern u1="a" u2="&" k="6" /> + <hkern u1="a" u2=""" k="14" /> + <hkern u1="b" g2="f_j" k="5" /> + <hkern u1="b" u2="ffl" k="5" /> + <hkern u1="b" u2="ffi" k="5" /> + <hkern u1="b" u2="fl" k="5" /> + <hkern u1="b" u2="fi" k="5" /> + <hkern u1="b" u2="ff" k="5" /> + <hkern u1="b" u2="™" k="23" /> + <hkern u1="b" u2="”" k="16" /> + <hkern u1="b" u2="“" k="15" /> + <hkern u1="b" u2="’" k="16" /> + <hkern u1="b" u2="‘" k="15" /> + <hkern u1="b" u2="ț" k="4" /> + <hkern u1="b" u2="Ț" k="86" /> + <hkern u1="b" u2="Ș" k="14" /> + <hkern u1="b" u2="Ǿ" k="6" /> + <hkern u1="b" u2="ſ" k="5" /> + <hkern u1="b" u2="ÿ" k="5" /> + <hkern u1="b" u2="ý" k="5" /> + <hkern u1="b" u2="ß" k="5" /> + <hkern u1="b" u2="Þ" k="14" /> + <hkern u1="b" u2="Ý" k="87" /> + <hkern u1="b" u2="Ü" k="15" /> + <hkern u1="b" u2="Û" k="15" /> + <hkern u1="b" u2="Ú" k="15" /> + <hkern u1="b" u2="Ù" k="15" /> + <hkern u1="b" u2="Ø" k="6" /> + <hkern u1="b" u2="Ö" k="6" /> + <hkern u1="b" u2="Õ" k="6" /> + <hkern u1="b" u2="Ô" k="6" /> + <hkern u1="b" u2="Ó" k="6" /> + <hkern u1="b" u2="Ò" k="6" /> + <hkern u1="b" u2="Ñ" k="14" /> + <hkern u1="b" u2="Ð" k="14" /> + <hkern u1="b" u2="Ï" k="14" /> + <hkern u1="b" u2="Î" k="14" /> + <hkern u1="b" u2="Í" k="14" /> + <hkern u1="b" u2="Ì" k="14" /> + <hkern u1="b" u2="Ë" k="14" /> + <hkern u1="b" u2="Ê" k="14" /> + <hkern u1="b" u2="É" k="14" /> + <hkern u1="b" u2="È" k="14" /> + <hkern u1="b" u2="Ç" k="6" /> + <hkern u1="b" u2="Å" k="12" /> + <hkern u1="b" u2="Ä" k="12" /> + <hkern u1="b" u2="Ã" k="12" /> + <hkern u1="b" u2="Â" k="12" /> + <hkern u1="b" u2="Á" k="12" /> + <hkern u1="b" u2="À" k="12" /> + <hkern u1="b" u2="}" k="23" /> + <hkern u1="b" u2="y" k="5" /> + <hkern u1="b" u2="x" k="15" /> + <hkern u1="b" u2="v" k="7" /> + <hkern u1="b" u2="t" k="4" /> + <hkern u1="b" u2="f" k="5" /> + <hkern u1="b" u2="]" k="25" /> + <hkern u1="b" u2="\" k="22" /> + <hkern u1="b" u2="Y" k="87" /> + <hkern u1="b" u2="X" k="41" /> + <hkern u1="b" u2="V" k="53" /> + <hkern u1="b" u2="U" k="15" /> + <hkern u1="b" u2="T" k="86" /> + <hkern u1="b" u2="S" k="14" /> + <hkern u1="b" u2="R" k="14" /> + <hkern u1="b" u2="Q" k="6" /> + <hkern u1="b" u2="P" k="14" /> + <hkern u1="b" u2="O" k="6" /> + <hkern u1="b" u2="N" k="14" /> + <hkern u1="b" u2="M" k="14" /> + <hkern u1="b" u2="L" k="14" /> + <hkern u1="b" u2="K" k="14" /> + <hkern u1="b" u2="I" k="14" /> + <hkern u1="b" u2="H" k="14" /> + <hkern u1="b" u2="G" k="6" /> + <hkern u1="b" u2="F" k="14" /> + <hkern u1="b" u2="E" k="14" /> + <hkern u1="b" u2="D" k="14" /> + <hkern u1="b" u2="C" k="6" /> + <hkern u1="b" u2="B" k="14" /> + <hkern u1="b" u2="A" k="12" /> + <hkern u1="b" u2="?" k="20" /> + <hkern u1="b" u2="*" k="14" /> + <hkern u1="b" u2=")" k="27" /> + <hkern u1="b" u2="'" k="16" /> + <hkern u1="b" u2=""" k="16" /> + <hkern u1="c" u2="™" k="12" /> + <hkern u1="c" u2="—" k="12" /> + <hkern u1="c" u2="–" k="12" /> + <hkern u1="c" u2="Ț" k="96" /> + <hkern u1="c" u2="Ș" k="11" /> + <hkern u1="c" u2="ǿ" k="4" /> + <hkern u1="c" u2="Ǿ" k="11" /> + <hkern u1="c" u2="ø" k="4" /> + <hkern u1="c" u2="ö" k="4" /> + <hkern u1="c" u2="õ" k="4" /> + <hkern u1="c" u2="ô" k="4" /> + <hkern u1="c" u2="ó" k="4" /> + <hkern u1="c" u2="ò" k="4" /> + <hkern u1="c" u2="ð" k="4" /> + <hkern u1="c" u2="ë" k="4" /> + <hkern u1="c" u2="ê" k="4" /> + <hkern u1="c" u2="é" k="4" /> + <hkern u1="c" u2="è" k="4" /> + <hkern u1="c" u2="ç" k="4" /> + <hkern u1="c" u2="Ý" k="70" /> + <hkern u1="c" u2="Ü" k="9" /> + <hkern u1="c" u2="Û" k="9" /> + <hkern u1="c" u2="Ú" k="9" /> + <hkern u1="c" u2="Ù" k="9" /> + <hkern u1="c" u2="Ø" k="11" /> + <hkern u1="c" u2="Ö" k="11" /> + <hkern u1="c" u2="Õ" k="11" /> + <hkern u1="c" u2="Ô" k="11" /> + <hkern u1="c" u2="Ó" k="11" /> + <hkern u1="c" u2="Ò" k="11" /> + <hkern u1="c" u2="Ç" k="11" /> + <hkern u1="c" u2="q" k="4" /> + <hkern u1="c" u2="o" k="4" /> + <hkern u1="c" u2="g" k="4" /> + <hkern u1="c" u2="e" k="4" /> + <hkern u1="c" u2="d" k="4" /> + <hkern u1="c" u2="c" k="4" /> + <hkern u1="c" u2="]" k="12" /> + <hkern u1="c" u2="Y" k="70" /> + <hkern u1="c" u2="V" k="31" /> + <hkern u1="c" u2="U" k="9" /> + <hkern u1="c" u2="T" k="96" /> + <hkern u1="c" u2="S" k="11" /> + <hkern u1="c" u2="Q" k="11" /> + <hkern u1="c" u2="O" k="11" /> + <hkern u1="c" u2="G" k="11" /> + <hkern u1="c" u2="C" k="11" /> + <hkern u1="c" u2="-" k="12" /> + <hkern u1="c" u2=")" k="10" /> + <hkern u1="c" u2="&" k="17" /> + <hkern u1="e" u2="™" k="21" /> + <hkern u1="e" u2="”" k="12" /> + <hkern u1="e" u2="“" k="11" /> + <hkern u1="e" u2="’" k="12" /> + <hkern u1="e" u2="‘" k="11" /> + <hkern u1="e" u2="Ț" k="81" /> + <hkern u1="e" u2="Ș" k="11" /> + <hkern u1="e" u2="Ǿ" k="5" /> + <hkern u1="e" u2="Þ" k="11" /> + <hkern u1="e" u2="Ý" k="83" /> + <hkern u1="e" u2="Ü" k="13" /> + <hkern u1="e" u2="Û" k="13" /> + <hkern u1="e" u2="Ú" k="13" /> + <hkern u1="e" u2="Ù" k="13" /> + <hkern u1="e" u2="Ø" k="5" /> + <hkern u1="e" u2="Ö" k="5" /> + <hkern u1="e" u2="Õ" k="5" /> + <hkern u1="e" u2="Ô" k="5" /> + <hkern u1="e" u2="Ó" k="5" /> + <hkern u1="e" u2="Ò" k="5" /> + <hkern u1="e" u2="Ñ" k="11" /> + <hkern u1="e" u2="Ð" k="11" /> + <hkern u1="e" u2="Ï" k="11" /> + <hkern u1="e" u2="Î" k="11" /> + <hkern u1="e" u2="Í" k="11" /> + <hkern u1="e" u2="Ì" k="11" /> + <hkern u1="e" u2="Ë" k="11" /> + <hkern u1="e" u2="Ê" k="11" /> + <hkern u1="e" u2="É" k="11" /> + <hkern u1="e" u2="È" k="11" /> + <hkern u1="e" u2="Ç" k="5" /> + <hkern u1="e" u2="Å" k="5" /> + <hkern u1="e" u2="Ä" k="5" /> + <hkern u1="e" u2="Ã" k="5" /> + <hkern u1="e" u2="Â" k="5" /> + <hkern u1="e" u2="Á" k="5" /> + <hkern u1="e" u2="À" k="5" /> + <hkern u1="e" u2="}" k="19" /> + <hkern u1="e" u2="x" k="6" /> + <hkern u1="e" u2="v" k="5" /> + <hkern u1="e" u2="]" k="21" /> + <hkern u1="e" u2="\" k="19" /> + <hkern u1="e" u2="Y" k="83" /> + <hkern u1="e" u2="X" k="16" /> + <hkern u1="e" u2="V" k="54" /> + <hkern u1="e" u2="U" k="13" /> + <hkern u1="e" u2="T" k="81" /> + <hkern u1="e" u2="S" k="11" /> + <hkern u1="e" u2="R" k="11" /> + <hkern u1="e" u2="Q" k="5" /> + <hkern u1="e" u2="P" k="11" /> + <hkern u1="e" u2="O" k="5" /> + <hkern u1="e" u2="N" k="11" /> + <hkern u1="e" u2="M" k="11" /> + <hkern u1="e" u2="L" k="11" /> + <hkern u1="e" u2="K" k="11" /> + <hkern u1="e" u2="I" k="11" /> + <hkern u1="e" u2="H" k="11" /> + <hkern u1="e" u2="G" k="5" /> + <hkern u1="e" u2="F" k="11" /> + <hkern u1="e" u2="E" k="11" /> + <hkern u1="e" u2="D" k="11" /> + <hkern u1="e" u2="C" k="5" /> + <hkern u1="e" u2="B" k="11" /> + <hkern u1="e" u2="A" k="5" /> + <hkern u1="e" u2="?" k="17" /> + <hkern u1="e" u2="*" k="11" /> + <hkern u1="e" u2=")" k="21" /> + <hkern u1="e" u2="'" k="12" /> + <hkern u1="e" u2="&" k="6" /> + <hkern u1="e" u2=""" k="12" /> + <hkern u1="f" u2="‹" k="15" /> + <hkern u1="f" u2="…" k="29" /> + <hkern u1="f" u2="„" k="29" /> + <hkern u1="f" u2="‚" k="29" /> + <hkern u1="f" u2="—" k="31" /> + <hkern u1="f" u2="–" k="31" /> + <hkern u1="f" u2="ț" k="-21" /> + <hkern u1="f" u2="ǿ" k="9" /> + <hkern u1="f" u2="ǽ" k="16" /> + <hkern u1="f" u2="ÿ" k="-32" /> + <hkern u1="f" u2="ý" k="-32" /> + <hkern u1="f" u2="ø" k="9" /> + <hkern u1="f" u2="ö" k="9" /> + <hkern u1="f" u2="õ" k="9" /> + <hkern u1="f" u2="ô" k="9" /> + <hkern u1="f" u2="ó" k="9" /> + <hkern u1="f" u2="ò" k="9" /> + <hkern u1="f" u2="ð" k="9" /> + <hkern u1="f" u2="ë" k="9" /> + <hkern u1="f" u2="ê" k="9" /> + <hkern u1="f" u2="é" k="9" /> + <hkern u1="f" u2="è" k="9" /> + <hkern u1="f" u2="ç" k="9" /> + <hkern u1="f" u2="æ" k="16" /> + <hkern u1="f" u2="å" k="16" /> + <hkern u1="f" u2="ä" k="16" /> + <hkern u1="f" u2="ã" k="16" /> + <hkern u1="f" u2="â" k="16" /> + <hkern u1="f" u2="á" k="16" /> + <hkern u1="f" u2="à" k="16" /> + <hkern u1="f" u2="Ý" k="-19" /> + <hkern u1="f" u2="Å" k="45" /> + <hkern u1="f" u2="Ä" k="45" /> + <hkern u1="f" u2="Ã" k="45" /> + <hkern u1="f" u2="Â" k="45" /> + <hkern u1="f" u2="Á" k="45" /> + <hkern u1="f" u2="À" k="45" /> + <hkern u1="f" u2="«" k="15" /> + <hkern u1="f" u2="y" k="-32" /> + <hkern u1="f" u2="x" k="-15" /> + <hkern u1="f" u2="v" k="-32" /> + <hkern u1="f" u2="t" k="-21" /> + <hkern u1="f" u2="q" k="9" /> + <hkern u1="f" u2="o" k="9" /> + <hkern u1="f" u2="g" k="9" /> + <hkern u1="f" u2="e" k="9" /> + <hkern u1="f" u2="d" k="9" /> + <hkern u1="f" u2="c" k="9" /> + <hkern u1="f" u2="a" k="16" /> + <hkern u1="f" u2="Y" k="-19" /> + <hkern u1="f" u2="V" k="-7" /> + <hkern u1="f" u2="A" k="45" /> + <hkern u1="f" u2="/" k="17" /> + <hkern u1="f" u2="." k="29" /> + <hkern u1="f" u2="-" k="31" /> + <hkern u1="f" u2="," k="29" /> + <hkern u1="f" u2="&" k="19" /> + <hkern u1="g" u2="™" k="18" /> + <hkern u1="g" u2="Ț" k="67" /> + <hkern u1="g" u2="Ș" k="8" /> + <hkern u1="g" u2="Ǿ" k="9" /> + <hkern u1="g" u2="Þ" k="10" /> + <hkern u1="g" u2="Ý" k="70" /> + <hkern u1="g" u2="Ü" k="18" /> + <hkern u1="g" u2="Û" k="18" /> + <hkern u1="g" u2="Ú" k="18" /> + <hkern u1="g" u2="Ù" k="18" /> + <hkern u1="g" u2="Ø" k="9" /> + <hkern u1="g" u2="Ö" k="9" /> + <hkern u1="g" u2="Õ" k="9" /> + <hkern u1="g" u2="Ô" k="9" /> + <hkern u1="g" u2="Ó" k="9" /> + <hkern u1="g" u2="Ò" k="9" /> + <hkern u1="g" u2="Ñ" k="10" /> + <hkern u1="g" u2="Ð" k="10" /> + <hkern u1="g" u2="Ï" k="10" /> + <hkern u1="g" u2="Î" k="10" /> + <hkern u1="g" u2="Í" k="10" /> + <hkern u1="g" u2="Ì" k="10" /> + <hkern u1="g" u2="Ë" k="10" /> + <hkern u1="g" u2="Ê" k="10" /> + <hkern u1="g" u2="É" k="10" /> + <hkern u1="g" u2="È" k="10" /> + <hkern u1="g" u2="Ç" k="9" /> + <hkern u1="g" u2="Å" k="6" /> + <hkern u1="g" u2="Ä" k="6" /> + <hkern u1="g" u2="Ã" k="6" /> + <hkern u1="g" u2="Â" k="6" /> + <hkern u1="g" u2="Á" k="6" /> + <hkern u1="g" u2="À" k="6" /> + <hkern u1="g" u2="}" k="18" /> + <hkern u1="g" u2="]" k="20" /> + <hkern u1="g" u2="\" k="15" /> + <hkern u1="g" u2="Y" k="70" /> + <hkern u1="g" u2="X" k="8" /> + <hkern u1="g" u2="V" k="44" /> + <hkern u1="g" u2="U" k="18" /> + <hkern u1="g" u2="T" k="67" /> + <hkern u1="g" u2="S" k="8" /> + <hkern u1="g" u2="R" k="10" /> + <hkern u1="g" u2="Q" k="9" /> + <hkern u1="g" u2="P" k="10" /> + <hkern u1="g" u2="O" k="9" /> + <hkern u1="g" u2="N" k="10" /> + <hkern u1="g" u2="M" k="10" /> + <hkern u1="g" u2="L" k="10" /> + <hkern u1="g" u2="K" k="10" /> + <hkern u1="g" u2="I" k="10" /> + <hkern u1="g" u2="H" k="10" /> + <hkern u1="g" u2="G" k="9" /> + <hkern u1="g" u2="F" k="10" /> + <hkern u1="g" u2="E" k="10" /> + <hkern u1="g" u2="D" k="10" /> + <hkern u1="g" u2="C" k="9" /> + <hkern u1="g" u2="B" k="10" /> + <hkern u1="g" u2="A" k="6" /> + <hkern u1="g" u2=")" k="18" /> + <hkern u1="g" u2="&" k="7" /> + <hkern u1="h" g2="f_j" k="5" /> + <hkern u1="h" u2="ffl" k="5" /> + <hkern u1="h" u2="ffi" k="5" /> + <hkern u1="h" u2="fl" k="5" /> + <hkern u1="h" u2="fi" k="5" /> + <hkern u1="h" u2="ff" k="5" /> + <hkern u1="h" u2="™" k="24" /> + <hkern u1="h" u2="”" k="14" /> + <hkern u1="h" u2="“" k="11" /> + <hkern u1="h" u2="’" k="14" /> + <hkern u1="h" u2="‘" k="11" /> + <hkern u1="h" u2="ț" k="4" /> + <hkern u1="h" u2="Ț" k="90" /> + <hkern u1="h" u2="Ș" k="11" /> + <hkern u1="h" u2="Ǿ" k="10" /> + <hkern u1="h" u2="ſ" k="5" /> + <hkern u1="h" u2="ÿ" k="6" /> + <hkern u1="h" u2="ý" k="6" /> + <hkern u1="h" u2="ß" k="5" /> + <hkern u1="h" u2="Þ" k="14" /> + <hkern u1="h" u2="Ý" k="81" /> + <hkern u1="h" u2="Ü" k="21" /> + <hkern u1="h" u2="Û" k="21" /> + <hkern u1="h" u2="Ú" k="21" /> + <hkern u1="h" u2="Ù" k="21" /> + <hkern u1="h" u2="Ø" k="10" /> + <hkern u1="h" u2="Ö" k="10" /> + <hkern u1="h" u2="Õ" k="10" /> + <hkern u1="h" u2="Ô" k="10" /> + <hkern u1="h" u2="Ó" k="10" /> + <hkern u1="h" u2="Ò" k="10" /> + <hkern u1="h" u2="Ñ" k="14" /> + <hkern u1="h" u2="Ð" k="14" /> + <hkern u1="h" u2="Ï" k="14" /> + <hkern u1="h" u2="Î" k="14" /> + <hkern u1="h" u2="Í" k="14" /> + <hkern u1="h" u2="Ì" k="14" /> + <hkern u1="h" u2="Ë" k="14" /> + <hkern u1="h" u2="Ê" k="14" /> + <hkern u1="h" u2="É" k="14" /> + <hkern u1="h" u2="È" k="14" /> + <hkern u1="h" u2="Ç" k="10" /> + <hkern u1="h" u2="Å" k="5" /> + <hkern u1="h" u2="Ä" k="5" /> + <hkern u1="h" u2="Ã" k="5" /> + <hkern u1="h" u2="Â" k="5" /> + <hkern u1="h" u2="Á" k="5" /> + <hkern u1="h" u2="À" k="5" /> + <hkern u1="h" u2="}" k="20" /> + <hkern u1="h" u2="y" k="6" /> + <hkern u1="h" u2="v" k="9" /> + <hkern u1="h" u2="t" k="4" /> + <hkern u1="h" u2="f" k="5" /> + <hkern u1="h" u2="]" k="23" /> + <hkern u1="h" u2="\" k="22" /> + <hkern u1="h" u2="Y" k="81" /> + <hkern u1="h" u2="X" k="6" /> + <hkern u1="h" u2="V" k="52" /> + <hkern u1="h" u2="U" k="21" /> + <hkern u1="h" u2="T" k="90" /> + <hkern u1="h" u2="S" k="11" /> + <hkern u1="h" u2="R" k="14" /> + <hkern u1="h" u2="Q" k="10" /> + <hkern u1="h" u2="P" k="14" /> + <hkern u1="h" u2="O" k="10" /> + <hkern u1="h" u2="N" k="14" /> + <hkern u1="h" u2="M" k="14" /> + <hkern u1="h" u2="L" k="14" /> + <hkern u1="h" u2="K" k="14" /> + <hkern u1="h" u2="I" k="14" /> + <hkern u1="h" u2="H" k="14" /> + <hkern u1="h" u2="G" k="10" /> + <hkern u1="h" u2="F" k="14" /> + <hkern u1="h" u2="E" k="14" /> + <hkern u1="h" u2="D" k="14" /> + <hkern u1="h" u2="C" k="10" /> + <hkern u1="h" u2="B" k="14" /> + <hkern u1="h" u2="A" k="5" /> + <hkern u1="h" u2="?" k="18" /> + <hkern u1="h" u2="*" k="13" /> + <hkern u1="h" u2=")" k="20" /> + <hkern u1="h" u2="'" k="14" /> + <hkern u1="h" u2="&" k="6" /> + <hkern u1="h" u2=""" k="14" /> + <hkern u1="i" u2="Ț" k="10" /> + <hkern u1="i" u2="Ș" k="9" /> + <hkern u1="i" u2="Ǿ" k="10" /> + <hkern u1="i" u2="Þ" k="10" /> + <hkern u1="i" u2="Ý" k="8" /> + <hkern u1="i" u2="Ü" k="15" /> + <hkern u1="i" u2="Û" k="15" /> + <hkern u1="i" u2="Ú" k="15" /> + <hkern u1="i" u2="Ù" k="15" /> + <hkern u1="i" u2="Ø" k="10" /> + <hkern u1="i" u2="Ö" k="10" /> + <hkern u1="i" u2="Õ" k="10" /> + <hkern u1="i" u2="Ô" k="10" /> + <hkern u1="i" u2="Ó" k="10" /> + <hkern u1="i" u2="Ò" k="10" /> + <hkern u1="i" u2="Ñ" k="10" /> + <hkern u1="i" u2="Ð" k="10" /> + <hkern u1="i" u2="Ï" k="10" /> + <hkern u1="i" u2="Î" k="10" /> + <hkern u1="i" u2="Í" k="10" /> + <hkern u1="i" u2="Ì" k="10" /> + <hkern u1="i" u2="Ë" k="10" /> + <hkern u1="i" u2="Ê" k="10" /> + <hkern u1="i" u2="É" k="10" /> + <hkern u1="i" u2="È" k="10" /> + <hkern u1="i" u2="Ç" k="10" /> + <hkern u1="i" u2="Å" k="7" /> + <hkern u1="i" u2="Ä" k="7" /> + <hkern u1="i" u2="Ã" k="7" /> + <hkern u1="i" u2="Â" k="7" /> + <hkern u1="i" u2="Á" k="7" /> + <hkern u1="i" u2="À" k="7" /> + <hkern u1="i" u2="Y" k="8" /> + <hkern u1="i" u2="V" k="9" /> + <hkern u1="i" u2="U" k="15" /> + <hkern u1="i" u2="T" k="10" /> + <hkern u1="i" u2="S" k="9" /> + <hkern u1="i" u2="R" k="10" /> + <hkern u1="i" u2="Q" k="10" /> + <hkern u1="i" u2="P" k="10" /> + <hkern u1="i" u2="O" k="10" /> + <hkern u1="i" u2="N" k="10" /> + <hkern u1="i" u2="M" k="10" /> + <hkern u1="i" u2="L" k="10" /> + <hkern u1="i" u2="K" k="10" /> + <hkern u1="i" u2="I" k="10" /> + <hkern u1="i" u2="H" k="10" /> + <hkern u1="i" u2="G" k="10" /> + <hkern u1="i" u2="F" k="10" /> + <hkern u1="i" u2="E" k="10" /> + <hkern u1="i" u2="D" k="10" /> + <hkern u1="i" u2="C" k="10" /> + <hkern u1="i" u2="B" k="10" /> + <hkern u1="i" u2="A" k="7" /> + <hkern u1="i" u2="&" k="8" /> + <hkern u1="j" u2="Ț" k="10" /> + <hkern u1="j" u2="Ș" k="9" /> + <hkern u1="j" u2="Ǿ" k="10" /> + <hkern u1="j" u2="Þ" k="10" /> + <hkern u1="j" u2="Ý" k="8" /> + <hkern u1="j" u2="Ü" k="15" /> + <hkern u1="j" u2="Û" k="15" /> + <hkern u1="j" u2="Ú" k="15" /> + <hkern u1="j" u2="Ù" k="15" /> + <hkern u1="j" u2="Ø" k="10" /> + <hkern u1="j" u2="Ö" k="10" /> + <hkern u1="j" u2="Õ" k="10" /> + <hkern u1="j" u2="Ô" k="10" /> + <hkern u1="j" u2="Ó" k="10" /> + <hkern u1="j" u2="Ò" k="10" /> + <hkern u1="j" u2="Ñ" k="10" /> + <hkern u1="j" u2="Ð" k="10" /> + <hkern u1="j" u2="Ï" k="10" /> + <hkern u1="j" u2="Î" k="10" /> + <hkern u1="j" u2="Í" k="10" /> + <hkern u1="j" u2="Ì" k="10" /> + <hkern u1="j" u2="Ë" k="10" /> + <hkern u1="j" u2="Ê" k="10" /> + <hkern u1="j" u2="É" k="10" /> + <hkern u1="j" u2="È" k="10" /> + <hkern u1="j" u2="Ç" k="10" /> + <hkern u1="j" u2="Å" k="7" /> + <hkern u1="j" u2="Ä" k="7" /> + <hkern u1="j" u2="Ã" k="7" /> + <hkern u1="j" u2="Â" k="7" /> + <hkern u1="j" u2="Á" k="7" /> + <hkern u1="j" u2="À" k="7" /> + <hkern u1="j" u2="Y" k="8" /> + <hkern u1="j" u2="V" k="9" /> + <hkern u1="j" u2="U" k="15" /> + <hkern u1="j" u2="T" k="10" /> + <hkern u1="j" u2="S" k="9" /> + <hkern u1="j" u2="R" k="10" /> + <hkern u1="j" u2="Q" k="10" /> + <hkern u1="j" u2="P" k="10" /> + <hkern u1="j" u2="O" k="10" /> + <hkern u1="j" u2="N" k="10" /> + <hkern u1="j" u2="M" k="10" /> + <hkern u1="j" u2="L" k="10" /> + <hkern u1="j" u2="K" k="10" /> + <hkern u1="j" u2="I" k="10" /> + <hkern u1="j" u2="H" k="10" /> + <hkern u1="j" u2="G" k="10" /> + <hkern u1="j" u2="F" k="10" /> + <hkern u1="j" u2="E" k="10" /> + <hkern u1="j" u2="D" k="10" /> + <hkern u1="j" u2="C" k="10" /> + <hkern u1="j" u2="B" k="10" /> + <hkern u1="j" u2="A" k="7" /> + <hkern u1="j" u2="&" k="8" /> + <hkern u1="l" u2="Ț" k="9" /> + <hkern u1="l" u2="Ș" k="9" /> + <hkern u1="l" u2="Ǿ" k="11" /> + <hkern u1="l" u2="Þ" k="10" /> + <hkern u1="l" u2="Ý" k="11" /> + <hkern u1="l" u2="Ü" k="18" /> + <hkern u1="l" u2="Û" k="18" /> + <hkern u1="l" u2="Ú" k="18" /> + <hkern u1="l" u2="Ù" k="18" /> + <hkern u1="l" u2="Ø" k="11" /> + <hkern u1="l" u2="Ö" k="11" /> + <hkern u1="l" u2="Õ" k="11" /> + <hkern u1="l" u2="Ô" k="11" /> + <hkern u1="l" u2="Ó" k="11" /> + <hkern u1="l" u2="Ò" k="11" /> + <hkern u1="l" u2="Ñ" k="10" /> + <hkern u1="l" u2="Ð" k="10" /> + <hkern u1="l" u2="Ï" k="10" /> + <hkern u1="l" u2="Î" k="10" /> + <hkern u1="l" u2="Í" k="10" /> + <hkern u1="l" u2="Ì" k="10" /> + <hkern u1="l" u2="Ë" k="10" /> + <hkern u1="l" u2="Ê" k="10" /> + <hkern u1="l" u2="É" k="10" /> + <hkern u1="l" u2="È" k="10" /> + <hkern u1="l" u2="Ç" k="11" /> + <hkern u1="l" u2="Å" k="8" /> + <hkern u1="l" u2="Ä" k="8" /> + <hkern u1="l" u2="Ã" k="8" /> + <hkern u1="l" u2="Â" k="8" /> + <hkern u1="l" u2="Á" k="8" /> + <hkern u1="l" u2="À" k="8" /> + <hkern u1="l" u2="·" k="60" /> + <hkern u1="l" u2="Y" k="11" /> + <hkern u1="l" u2="V" k="11" /> + <hkern u1="l" u2="U" k="18" /> + <hkern u1="l" u2="T" k="9" /> + <hkern u1="l" u2="S" k="9" /> + <hkern u1="l" u2="R" k="10" /> + <hkern u1="l" u2="Q" k="11" /> + <hkern u1="l" u2="P" k="10" /> + <hkern u1="l" u2="O" k="11" /> + <hkern u1="l" u2="N" k="10" /> + <hkern u1="l" u2="M" k="10" /> + <hkern u1="l" u2="L" k="10" /> + <hkern u1="l" u2="K" k="10" /> + <hkern u1="l" u2="I" k="10" /> + <hkern u1="l" u2="H" k="10" /> + <hkern u1="l" u2="G" k="11" /> + <hkern u1="l" u2="F" k="10" /> + <hkern u1="l" u2="E" k="10" /> + <hkern u1="l" u2="D" k="10" /> + <hkern u1="l" u2="C" k="11" /> + <hkern u1="l" u2="B" k="10" /> + <hkern u1="l" u2="A" k="8" /> + <hkern u1="l" u2="&" k="9" /> + <hkern u1="m" g2="f_j" k="5" /> + <hkern u1="m" u2="ffl" k="5" /> + <hkern u1="m" u2="ffi" k="5" /> + <hkern u1="m" u2="fl" k="5" /> + <hkern u1="m" u2="fi" k="5" /> + <hkern u1="m" u2="ff" k="5" /> + <hkern u1="m" u2="™" k="24" /> + <hkern u1="m" u2="”" k="14" /> + <hkern u1="m" u2="“" k="11" /> + <hkern u1="m" u2="’" k="14" /> + <hkern u1="m" u2="‘" k="11" /> + <hkern u1="m" u2="ț" k="4" /> + <hkern u1="m" u2="Ț" k="90" /> + <hkern u1="m" u2="Ș" k="11" /> + <hkern u1="m" u2="Ǿ" k="10" /> + <hkern u1="m" u2="ſ" k="5" /> + <hkern u1="m" u2="ÿ" k="6" /> + <hkern u1="m" u2="ý" k="6" /> + <hkern u1="m" u2="ß" k="5" /> + <hkern u1="m" u2="Þ" k="14" /> + <hkern u1="m" u2="Ý" k="81" /> + <hkern u1="m" u2="Ü" k="21" /> + <hkern u1="m" u2="Û" k="21" /> + <hkern u1="m" u2="Ú" k="21" /> + <hkern u1="m" u2="Ù" k="21" /> + <hkern u1="m" u2="Ø" k="10" /> + <hkern u1="m" u2="Ö" k="10" /> + <hkern u1="m" u2="Õ" k="10" /> + <hkern u1="m" u2="Ô" k="10" /> + <hkern u1="m" u2="Ó" k="10" /> + <hkern u1="m" u2="Ò" k="10" /> + <hkern u1="m" u2="Ñ" k="14" /> + <hkern u1="m" u2="Ð" k="14" /> + <hkern u1="m" u2="Ï" k="14" /> + <hkern u1="m" u2="Î" k="14" /> + <hkern u1="m" u2="Í" k="14" /> + <hkern u1="m" u2="Ì" k="14" /> + <hkern u1="m" u2="Ë" k="14" /> + <hkern u1="m" u2="Ê" k="14" /> + <hkern u1="m" u2="É" k="14" /> + <hkern u1="m" u2="È" k="14" /> + <hkern u1="m" u2="Ç" k="10" /> + <hkern u1="m" u2="Å" k="5" /> + <hkern u1="m" u2="Ä" k="5" /> + <hkern u1="m" u2="Ã" k="5" /> + <hkern u1="m" u2="Â" k="5" /> + <hkern u1="m" u2="Á" k="5" /> + <hkern u1="m" u2="À" k="5" /> + <hkern u1="m" u2="}" k="20" /> + <hkern u1="m" u2="y" k="6" /> + <hkern u1="m" u2="v" k="9" /> + <hkern u1="m" u2="t" k="4" /> + <hkern u1="m" u2="f" k="5" /> + <hkern u1="m" u2="]" k="23" /> + <hkern u1="m" u2="\" k="22" /> + <hkern u1="m" u2="Y" k="81" /> + <hkern u1="m" u2="X" k="6" /> + <hkern u1="m" u2="V" k="52" /> + <hkern u1="m" u2="U" k="21" /> + <hkern u1="m" u2="T" k="90" /> + <hkern u1="m" u2="S" k="11" /> + <hkern u1="m" u2="R" k="14" /> + <hkern u1="m" u2="Q" k="10" /> + <hkern u1="m" u2="P" k="14" /> + <hkern u1="m" u2="O" k="10" /> + <hkern u1="m" u2="N" k="14" /> + <hkern u1="m" u2="M" k="14" /> + <hkern u1="m" u2="L" k="14" /> + <hkern u1="m" u2="K" k="14" /> + <hkern u1="m" u2="I" k="14" /> + <hkern u1="m" u2="H" k="14" /> + <hkern u1="m" u2="G" k="10" /> + <hkern u1="m" u2="F" k="14" /> + <hkern u1="m" u2="E" k="14" /> + <hkern u1="m" u2="D" k="14" /> + <hkern u1="m" u2="C" k="10" /> + <hkern u1="m" u2="B" k="14" /> + <hkern u1="m" u2="A" k="5" /> + <hkern u1="m" u2="?" k="18" /> + <hkern u1="m" u2="*" k="13" /> + <hkern u1="m" u2=")" k="20" /> + <hkern u1="m" u2="'" k="14" /> + <hkern u1="m" u2="&" k="6" /> + <hkern u1="m" u2=""" k="14" /> + <hkern u1="n" g2="f_j" k="5" /> + <hkern u1="n" u2="ffl" k="5" /> + <hkern u1="n" u2="ffi" k="5" /> + <hkern u1="n" u2="fl" k="5" /> + <hkern u1="n" u2="fi" k="5" /> + <hkern u1="n" u2="ff" k="5" /> + <hkern u1="n" u2="™" k="24" /> + <hkern u1="n" u2="”" k="14" /> + <hkern u1="n" u2="“" k="11" /> + <hkern u1="n" u2="’" k="14" /> + <hkern u1="n" u2="‘" k="11" /> + <hkern u1="n" u2="ț" k="4" /> + <hkern u1="n" u2="Ț" k="90" /> + <hkern u1="n" u2="Ș" k="11" /> + <hkern u1="n" u2="Ǿ" k="10" /> + <hkern u1="n" u2="ſ" k="5" /> + <hkern u1="n" u2="ÿ" k="6" /> + <hkern u1="n" u2="ý" k="6" /> + <hkern u1="n" u2="ß" k="5" /> + <hkern u1="n" u2="Þ" k="14" /> + <hkern u1="n" u2="Ý" k="81" /> + <hkern u1="n" u2="Ü" k="21" /> + <hkern u1="n" u2="Û" k="21" /> + <hkern u1="n" u2="Ú" k="21" /> + <hkern u1="n" u2="Ù" k="21" /> + <hkern u1="n" u2="Ø" k="10" /> + <hkern u1="n" u2="Ö" k="10" /> + <hkern u1="n" u2="Õ" k="10" /> + <hkern u1="n" u2="Ô" k="10" /> + <hkern u1="n" u2="Ó" k="10" /> + <hkern u1="n" u2="Ò" k="10" /> + <hkern u1="n" u2="Ñ" k="14" /> + <hkern u1="n" u2="Ð" k="14" /> + <hkern u1="n" u2="Ï" k="14" /> + <hkern u1="n" u2="Î" k="14" /> + <hkern u1="n" u2="Í" k="14" /> + <hkern u1="n" u2="Ì" k="14" /> + <hkern u1="n" u2="Ë" k="14" /> + <hkern u1="n" u2="Ê" k="14" /> + <hkern u1="n" u2="É" k="14" /> + <hkern u1="n" u2="È" k="14" /> + <hkern u1="n" u2="Ç" k="10" /> + <hkern u1="n" u2="Å" k="5" /> + <hkern u1="n" u2="Ä" k="5" /> + <hkern u1="n" u2="Ã" k="5" /> + <hkern u1="n" u2="Â" k="5" /> + <hkern u1="n" u2="Á" k="5" /> + <hkern u1="n" u2="À" k="5" /> + <hkern u1="n" u2="}" k="20" /> + <hkern u1="n" u2="y" k="6" /> + <hkern u1="n" u2="v" k="9" /> + <hkern u1="n" u2="t" k="4" /> + <hkern u1="n" u2="f" k="5" /> + <hkern u1="n" u2="]" k="23" /> + <hkern u1="n" u2="\" k="22" /> + <hkern u1="n" u2="Y" k="81" /> + <hkern u1="n" u2="X" k="6" /> + <hkern u1="n" u2="V" k="52" /> + <hkern u1="n" u2="U" k="21" /> + <hkern u1="n" u2="T" k="90" /> + <hkern u1="n" u2="S" k="11" /> + <hkern u1="n" u2="R" k="14" /> + <hkern u1="n" u2="Q" k="10" /> + <hkern u1="n" u2="P" k="14" /> + <hkern u1="n" u2="O" k="10" /> + <hkern u1="n" u2="N" k="14" /> + <hkern u1="n" u2="M" k="14" /> + <hkern u1="n" u2="L" k="14" /> + <hkern u1="n" u2="K" k="14" /> + <hkern u1="n" u2="I" k="14" /> + <hkern u1="n" u2="H" k="14" /> + <hkern u1="n" u2="G" k="10" /> + <hkern u1="n" u2="F" k="14" /> + <hkern u1="n" u2="E" k="14" /> + <hkern u1="n" u2="D" k="14" /> + <hkern u1="n" u2="C" k="10" /> + <hkern u1="n" u2="B" k="14" /> + <hkern u1="n" u2="A" k="5" /> + <hkern u1="n" u2="?" k="18" /> + <hkern u1="n" u2="*" k="13" /> + <hkern u1="n" u2=")" k="20" /> + <hkern u1="n" u2="'" k="14" /> + <hkern u1="n" u2="&" k="6" /> + <hkern u1="n" u2=""" k="14" /> + <hkern u1="o" g2="f_j" k="5" /> + <hkern u1="o" u2="ffl" k="5" /> + <hkern u1="o" u2="ffi" k="5" /> + <hkern u1="o" u2="fl" k="5" /> + <hkern u1="o" u2="fi" k="5" /> + <hkern u1="o" u2="ff" k="5" /> + <hkern u1="o" u2="™" k="23" /> + <hkern u1="o" u2="”" k="16" /> + <hkern u1="o" u2="“" k="15" /> + <hkern u1="o" u2="’" k="16" /> + <hkern u1="o" u2="‘" k="15" /> + <hkern u1="o" u2="ț" k="4" /> + <hkern u1="o" u2="Ț" k="86" /> + <hkern u1="o" u2="Ș" k="14" /> + <hkern u1="o" u2="Ǿ" k="6" /> + <hkern u1="o" u2="ſ" k="5" /> + <hkern u1="o" u2="ÿ" k="5" /> + <hkern u1="o" u2="ý" k="5" /> + <hkern u1="o" u2="ß" k="5" /> + <hkern u1="o" u2="Þ" k="14" /> + <hkern u1="o" u2="Ý" k="87" /> + <hkern u1="o" u2="Ü" k="15" /> + <hkern u1="o" u2="Û" k="15" /> + <hkern u1="o" u2="Ú" k="15" /> + <hkern u1="o" u2="Ù" k="15" /> + <hkern u1="o" u2="Ø" k="6" /> + <hkern u1="o" u2="Ö" k="6" /> + <hkern u1="o" u2="Õ" k="6" /> + <hkern u1="o" u2="Ô" k="6" /> + <hkern u1="o" u2="Ó" k="6" /> + <hkern u1="o" u2="Ò" k="6" /> + <hkern u1="o" u2="Ñ" k="14" /> + <hkern u1="o" u2="Ð" k="14" /> + <hkern u1="o" u2="Ï" k="14" /> + <hkern u1="o" u2="Î" k="14" /> + <hkern u1="o" u2="Í" k="14" /> + <hkern u1="o" u2="Ì" k="14" /> + <hkern u1="o" u2="Ë" k="14" /> + <hkern u1="o" u2="Ê" k="14" /> + <hkern u1="o" u2="É" k="14" /> + <hkern u1="o" u2="È" k="14" /> + <hkern u1="o" u2="Ç" k="6" /> + <hkern u1="o" u2="Å" k="12" /> + <hkern u1="o" u2="Ä" k="12" /> + <hkern u1="o" u2="Ã" k="12" /> + <hkern u1="o" u2="Â" k="12" /> + <hkern u1="o" u2="Á" k="12" /> + <hkern u1="o" u2="À" k="12" /> + <hkern u1="o" u2="}" k="23" /> + <hkern u1="o" u2="y" k="5" /> + <hkern u1="o" u2="x" k="15" /> + <hkern u1="o" u2="v" k="7" /> + <hkern u1="o" u2="t" k="4" /> + <hkern u1="o" u2="f" k="5" /> + <hkern u1="o" u2="]" k="25" /> + <hkern u1="o" u2="\" k="22" /> + <hkern u1="o" u2="Y" k="87" /> + <hkern u1="o" u2="X" k="41" /> + <hkern u1="o" u2="V" k="53" /> + <hkern u1="o" u2="U" k="15" /> + <hkern u1="o" u2="T" k="86" /> + <hkern u1="o" u2="S" k="14" /> + <hkern u1="o" u2="R" k="14" /> + <hkern u1="o" u2="Q" k="6" /> + <hkern u1="o" u2="P" k="14" /> + <hkern u1="o" u2="O" k="6" /> + <hkern u1="o" u2="N" k="14" /> + <hkern u1="o" u2="M" k="14" /> + <hkern u1="o" u2="L" k="14" /> + <hkern u1="o" u2="K" k="14" /> + <hkern u1="o" u2="I" k="14" /> + <hkern u1="o" u2="H" k="14" /> + <hkern u1="o" u2="G" k="6" /> + <hkern u1="o" u2="F" k="14" /> + <hkern u1="o" u2="E" k="14" /> + <hkern u1="o" u2="D" k="14" /> + <hkern u1="o" u2="C" k="6" /> + <hkern u1="o" u2="B" k="14" /> + <hkern u1="o" u2="A" k="12" /> + <hkern u1="o" u2="?" k="20" /> + <hkern u1="o" u2="*" k="14" /> + <hkern u1="o" u2=")" k="27" /> + <hkern u1="o" u2="'" k="16" /> + <hkern u1="o" u2=""" k="16" /> + <hkern u1="p" g2="f_j" k="5" /> + <hkern u1="p" u2="ffl" k="5" /> + <hkern u1="p" u2="ffi" k="5" /> + <hkern u1="p" u2="fl" k="5" /> + <hkern u1="p" u2="fi" k="5" /> + <hkern u1="p" u2="ff" k="5" /> + <hkern u1="p" u2="™" k="23" /> + <hkern u1="p" u2="”" k="16" /> + <hkern u1="p" u2="“" k="15" /> + <hkern u1="p" u2="’" k="16" /> + <hkern u1="p" u2="‘" k="15" /> + <hkern u1="p" u2="ț" k="4" /> + <hkern u1="p" u2="Ț" k="86" /> + <hkern u1="p" u2="Ș" k="14" /> + <hkern u1="p" u2="Ǿ" k="6" /> + <hkern u1="p" u2="ſ" k="5" /> + <hkern u1="p" u2="ÿ" k="5" /> + <hkern u1="p" u2="ý" k="5" /> + <hkern u1="p" u2="ß" k="5" /> + <hkern u1="p" u2="Þ" k="14" /> + <hkern u1="p" u2="Ý" k="87" /> + <hkern u1="p" u2="Ü" k="15" /> + <hkern u1="p" u2="Û" k="15" /> + <hkern u1="p" u2="Ú" k="15" /> + <hkern u1="p" u2="Ù" k="15" /> + <hkern u1="p" u2="Ø" k="6" /> + <hkern u1="p" u2="Ö" k="6" /> + <hkern u1="p" u2="Õ" k="6" /> + <hkern u1="p" u2="Ô" k="6" /> + <hkern u1="p" u2="Ó" k="6" /> + <hkern u1="p" u2="Ò" k="6" /> + <hkern u1="p" u2="Ñ" k="14" /> + <hkern u1="p" u2="Ð" k="14" /> + <hkern u1="p" u2="Ï" k="14" /> + <hkern u1="p" u2="Î" k="14" /> + <hkern u1="p" u2="Í" k="14" /> + <hkern u1="p" u2="Ì" k="14" /> + <hkern u1="p" u2="Ë" k="14" /> + <hkern u1="p" u2="Ê" k="14" /> + <hkern u1="p" u2="É" k="14" /> + <hkern u1="p" u2="È" k="14" /> + <hkern u1="p" u2="Ç" k="6" /> + <hkern u1="p" u2="Å" k="12" /> + <hkern u1="p" u2="Ä" k="12" /> + <hkern u1="p" u2="Ã" k="12" /> + <hkern u1="p" u2="Â" k="12" /> + <hkern u1="p" u2="Á" k="12" /> + <hkern u1="p" u2="À" k="12" /> + <hkern u1="p" u2="}" k="23" /> + <hkern u1="p" u2="y" k="5" /> + <hkern u1="p" u2="x" k="15" /> + <hkern u1="p" u2="v" k="7" /> + <hkern u1="p" u2="t" k="4" /> + <hkern u1="p" u2="f" k="5" /> + <hkern u1="p" u2="]" k="25" /> + <hkern u1="p" u2="\" k="22" /> + <hkern u1="p" u2="Y" k="87" /> + <hkern u1="p" u2="X" k="41" /> + <hkern u1="p" u2="V" k="53" /> + <hkern u1="p" u2="U" k="15" /> + <hkern u1="p" u2="T" k="86" /> + <hkern u1="p" u2="S" k="14" /> + <hkern u1="p" u2="R" k="14" /> + <hkern u1="p" u2="Q" k="6" /> + <hkern u1="p" u2="P" k="14" /> + <hkern u1="p" u2="O" k="6" /> + <hkern u1="p" u2="N" k="14" /> + <hkern u1="p" u2="M" k="14" /> + <hkern u1="p" u2="L" k="14" /> + <hkern u1="p" u2="K" k="14" /> + <hkern u1="p" u2="I" k="14" /> + <hkern u1="p" u2="H" k="14" /> + <hkern u1="p" u2="G" k="6" /> + <hkern u1="p" u2="F" k="14" /> + <hkern u1="p" u2="E" k="14" /> + <hkern u1="p" u2="D" k="14" /> + <hkern u1="p" u2="C" k="6" /> + <hkern u1="p" u2="B" k="14" /> + <hkern u1="p" u2="A" k="12" /> + <hkern u1="p" u2="?" k="20" /> + <hkern u1="p" u2="*" k="14" /> + <hkern u1="p" u2=")" k="27" /> + <hkern u1="p" u2="'" k="16" /> + <hkern u1="p" u2=""" k="16" /> + <hkern u1="q" u2="™" k="18" /> + <hkern u1="q" u2="Ț" k="67" /> + <hkern u1="q" u2="Ș" k="8" /> + <hkern u1="q" u2="Ǿ" k="9" /> + <hkern u1="q" u2="Þ" k="10" /> + <hkern u1="q" u2="Ý" k="70" /> + <hkern u1="q" u2="Ü" k="18" /> + <hkern u1="q" u2="Û" k="18" /> + <hkern u1="q" u2="Ú" k="18" /> + <hkern u1="q" u2="Ù" k="18" /> + <hkern u1="q" u2="Ø" k="9" /> + <hkern u1="q" u2="Ö" k="9" /> + <hkern u1="q" u2="Õ" k="9" /> + <hkern u1="q" u2="Ô" k="9" /> + <hkern u1="q" u2="Ó" k="9" /> + <hkern u1="q" u2="Ò" k="9" /> + <hkern u1="q" u2="Ñ" k="10" /> + <hkern u1="q" u2="Ð" k="10" /> + <hkern u1="q" u2="Ï" k="10" /> + <hkern u1="q" u2="Î" k="10" /> + <hkern u1="q" u2="Í" k="10" /> + <hkern u1="q" u2="Ì" k="10" /> + <hkern u1="q" u2="Ë" k="10" /> + <hkern u1="q" u2="Ê" k="10" /> + <hkern u1="q" u2="É" k="10" /> + <hkern u1="q" u2="È" k="10" /> + <hkern u1="q" u2="Ç" k="9" /> + <hkern u1="q" u2="Å" k="6" /> + <hkern u1="q" u2="Ä" k="6" /> + <hkern u1="q" u2="Ã" k="6" /> + <hkern u1="q" u2="Â" k="6" /> + <hkern u1="q" u2="Á" k="6" /> + <hkern u1="q" u2="À" k="6" /> + <hkern u1="q" u2="}" k="18" /> + <hkern u1="q" u2="]" k="20" /> + <hkern u1="q" u2="\" k="15" /> + <hkern u1="q" u2="Y" k="70" /> + <hkern u1="q" u2="X" k="8" /> + <hkern u1="q" u2="V" k="44" /> + <hkern u1="q" u2="U" k="18" /> + <hkern u1="q" u2="T" k="67" /> + <hkern u1="q" u2="S" k="8" /> + <hkern u1="q" u2="R" k="10" /> + <hkern u1="q" u2="Q" k="9" /> + <hkern u1="q" u2="P" k="10" /> + <hkern u1="q" u2="O" k="9" /> + <hkern u1="q" u2="N" k="10" /> + <hkern u1="q" u2="M" k="10" /> + <hkern u1="q" u2="L" k="10" /> + <hkern u1="q" u2="K" k="10" /> + <hkern u1="q" u2="I" k="10" /> + <hkern u1="q" u2="H" k="10" /> + <hkern u1="q" u2="G" k="9" /> + <hkern u1="q" u2="F" k="10" /> + <hkern u1="q" u2="E" k="10" /> + <hkern u1="q" u2="D" k="10" /> + <hkern u1="q" u2="C" k="9" /> + <hkern u1="q" u2="B" k="10" /> + <hkern u1="q" u2="A" k="6" /> + <hkern u1="q" u2=")" k="18" /> + <hkern u1="q" u2="&" k="7" /> + <hkern u1="r" u2="]" k="21" /> + <hkern u1="s" u2="™" k="22" /> + <hkern u1="s" u2="ț" k="4" /> + <hkern u1="s" u2="Ț" k="78" /> + <hkern u1="s" u2="Ș" k="6" /> + <hkern u1="s" u2="Ǿ" k="9" /> + <hkern u1="s" u2="Þ" k="11" /> + <hkern u1="s" u2="Ý" k="80" /> + <hkern u1="s" u2="Ü" k="16" /> + <hkern u1="s" u2="Û" k="16" /> + <hkern u1="s" u2="Ú" k="16" /> + <hkern u1="s" u2="Ù" k="16" /> + <hkern u1="s" u2="Ø" k="9" /> + <hkern u1="s" u2="Ö" k="9" /> + <hkern u1="s" u2="Õ" k="9" /> + <hkern u1="s" u2="Ô" k="9" /> + <hkern u1="s" u2="Ó" k="9" /> + <hkern u1="s" u2="Ò" k="9" /> + <hkern u1="s" u2="Ñ" k="11" /> + <hkern u1="s" u2="Ð" k="11" /> + <hkern u1="s" u2="Ï" k="11" /> + <hkern u1="s" u2="Î" k="11" /> + <hkern u1="s" u2="Í" k="11" /> + <hkern u1="s" u2="Ì" k="11" /> + <hkern u1="s" u2="Ë" k="11" /> + <hkern u1="s" u2="Ê" k="11" /> + <hkern u1="s" u2="É" k="11" /> + <hkern u1="s" u2="È" k="11" /> + <hkern u1="s" u2="Ç" k="9" /> + <hkern u1="s" u2="}" k="17" /> + <hkern u1="s" u2="v" k="4" /> + <hkern u1="s" u2="t" k="4" /> + <hkern u1="s" u2="]" k="20" /> + <hkern u1="s" u2="\" k="17" /> + <hkern u1="s" u2="Y" k="80" /> + <hkern u1="s" u2="X" k="12" /> + <hkern u1="s" u2="V" k="53" /> + <hkern u1="s" u2="U" k="16" /> + <hkern u1="s" u2="T" k="78" /> + <hkern u1="s" u2="S" k="6" /> + <hkern u1="s" u2="R" k="11" /> + <hkern u1="s" u2="Q" k="9" /> + <hkern u1="s" u2="P" k="11" /> + <hkern u1="s" u2="O" k="9" /> + <hkern u1="s" u2="N" k="11" /> + <hkern u1="s" u2="M" k="11" /> + <hkern u1="s" u2="L" k="11" /> + <hkern u1="s" u2="K" k="11" /> + <hkern u1="s" u2="I" k="11" /> + <hkern u1="s" u2="H" k="11" /> + <hkern u1="s" u2="G" k="9" /> + <hkern u1="s" u2="F" k="11" /> + <hkern u1="s" u2="E" k="11" /> + <hkern u1="s" u2="D" k="11" /> + <hkern u1="s" u2="C" k="9" /> + <hkern u1="s" u2="B" k="11" /> + <hkern u1="s" u2="?" k="17" /> + <hkern u1="s" u2=")" k="19" /> + <hkern u1="t" u2="™" k="8" /> + <hkern u1="t" u2="ț" k="-7" /> + <hkern u1="t" u2="Ț" k="73" /> + <hkern u1="t" u2="ÿ" k="-15" /> + <hkern u1="t" u2="ý" k="-15" /> + <hkern u1="t" u2="Ý" k="45" /> + <hkern u1="t" u2="Ü" k="7" /> + <hkern u1="t" u2="Û" k="7" /> + <hkern u1="t" u2="Ú" k="7" /> + <hkern u1="t" u2="Ù" k="7" /> + <hkern u1="t" u2="y" k="-15" /> + <hkern u1="t" u2="v" k="-17" /> + <hkern u1="t" u2="t" k="-7" /> + <hkern u1="t" u2="]" k="11" /> + <hkern u1="t" u2="Y" k="45" /> + <hkern u1="t" u2="V" k="18" /> + <hkern u1="t" u2="U" k="7" /> + <hkern u1="t" u2="T" k="73" /> + <hkern u1="t" u2="&" k="11" /> + <hkern u1="u" u2="™" k="18" /> + <hkern u1="u" u2="Ț" k="67" /> + <hkern u1="u" u2="Ș" k="8" /> + <hkern u1="u" u2="Ǿ" k="9" /> + <hkern u1="u" u2="Þ" k="10" /> + <hkern u1="u" u2="Ý" k="70" /> + <hkern u1="u" u2="Ü" k="18" /> + <hkern u1="u" u2="Û" k="18" /> + <hkern u1="u" u2="Ú" k="18" /> + <hkern u1="u" u2="Ù" k="18" /> + <hkern u1="u" u2="Ø" k="9" /> + <hkern u1="u" u2="Ö" k="9" /> + <hkern u1="u" u2="Õ" k="9" /> + <hkern u1="u" u2="Ô" k="9" /> + <hkern u1="u" u2="Ó" k="9" /> + <hkern u1="u" u2="Ò" k="9" /> + <hkern u1="u" u2="Ñ" k="10" /> + <hkern u1="u" u2="Ð" k="10" /> + <hkern u1="u" u2="Ï" k="10" /> + <hkern u1="u" u2="Î" k="10" /> + <hkern u1="u" u2="Í" k="10" /> + <hkern u1="u" u2="Ì" k="10" /> + <hkern u1="u" u2="Ë" k="10" /> + <hkern u1="u" u2="Ê" k="10" /> + <hkern u1="u" u2="É" k="10" /> + <hkern u1="u" u2="È" k="10" /> + <hkern u1="u" u2="Ç" k="9" /> + <hkern u1="u" u2="Å" k="6" /> + <hkern u1="u" u2="Ä" k="6" /> + <hkern u1="u" u2="Ã" k="6" /> + <hkern u1="u" u2="Â" k="6" /> + <hkern u1="u" u2="Á" k="6" /> + <hkern u1="u" u2="À" k="6" /> + <hkern u1="u" u2="}" k="18" /> + <hkern u1="u" u2="]" k="20" /> + <hkern u1="u" u2="\" k="15" /> + <hkern u1="u" u2="Y" k="70" /> + <hkern u1="u" u2="X" k="8" /> + <hkern u1="u" u2="V" k="44" /> + <hkern u1="u" u2="U" k="18" /> + <hkern u1="u" u2="T" k="67" /> + <hkern u1="u" u2="S" k="8" /> + <hkern u1="u" u2="R" k="10" /> + <hkern u1="u" u2="Q" k="9" /> + <hkern u1="u" u2="P" k="10" /> + <hkern u1="u" u2="O" k="9" /> + <hkern u1="u" u2="N" k="10" /> + <hkern u1="u" u2="M" k="10" /> + <hkern u1="u" u2="L" k="10" /> + <hkern u1="u" u2="K" k="10" /> + <hkern u1="u" u2="I" k="10" /> + <hkern u1="u" u2="H" k="10" /> + <hkern u1="u" u2="G" k="9" /> + <hkern u1="u" u2="F" k="10" /> + <hkern u1="u" u2="E" k="10" /> + <hkern u1="u" u2="D" k="10" /> + <hkern u1="u" u2="C" k="9" /> + <hkern u1="u" u2="B" k="10" /> + <hkern u1="u" u2="A" k="6" /> + <hkern u1="u" u2=")" k="18" /> + <hkern u1="u" u2="&" k="7" /> + <hkern u1="v" g2="f_j" k="-28" /> + <hkern u1="v" u2="ffl" k="-28" /> + <hkern u1="v" u2="ffi" k="-28" /> + <hkern u1="v" u2="fl" k="-28" /> + <hkern u1="v" u2="fi" k="-28" /> + <hkern u1="v" u2="ff" k="-28" /> + <hkern u1="v" u2="…" k="31" /> + <hkern u1="v" u2="„" k="31" /> + <hkern u1="v" u2="‚" k="31" /> + <hkern u1="v" u2="—" k="8" /> + <hkern u1="v" u2="–" k="8" /> + <hkern u1="v" u2="ț" k="-21" /> + <hkern u1="v" u2="Ț" k="49" /> + <hkern u1="v" u2="ǿ" k="7" /> + <hkern u1="v" u2="ǽ" k="6" /> + <hkern u1="v" u2="ſ" k="-28" /> + <hkern u1="v" u2="ÿ" k="-27" /> + <hkern u1="v" u2="ý" k="-27" /> + <hkern u1="v" u2="ø" k="7" /> + <hkern u1="v" u2="ö" k="7" /> + <hkern u1="v" u2="õ" k="7" /> + <hkern u1="v" u2="ô" k="7" /> + <hkern u1="v" u2="ó" k="7" /> + <hkern u1="v" u2="ò" k="7" /> + <hkern u1="v" u2="ð" k="7" /> + <hkern u1="v" u2="ë" k="7" /> + <hkern u1="v" u2="ê" k="7" /> + <hkern u1="v" u2="é" k="7" /> + <hkern u1="v" u2="è" k="7" /> + <hkern u1="v" u2="ç" k="7" /> + <hkern u1="v" u2="æ" k="6" /> + <hkern u1="v" u2="å" k="6" /> + <hkern u1="v" u2="ä" k="6" /> + <hkern u1="v" u2="ã" k="6" /> + <hkern u1="v" u2="â" k="6" /> + <hkern u1="v" u2="á" k="6" /> + <hkern u1="v" u2="à" k="6" /> + <hkern u1="v" u2="ß" k="-28" /> + <hkern u1="v" u2="Þ" k="9" /> + <hkern u1="v" u2="Ý" k="35" /> + <hkern u1="v" u2="Ü" k="8" /> + <hkern u1="v" u2="Û" k="8" /> + <hkern u1="v" u2="Ú" k="8" /> + <hkern u1="v" u2="Ù" k="8" /> + <hkern u1="v" u2="Ñ" k="9" /> + <hkern u1="v" u2="Ð" k="9" /> + <hkern u1="v" u2="Ï" k="9" /> + <hkern u1="v" u2="Î" k="9" /> + <hkern u1="v" u2="Í" k="9" /> + <hkern u1="v" u2="Ì" k="9" /> + <hkern u1="v" u2="Ë" k="9" /> + <hkern u1="v" u2="Ê" k="9" /> + <hkern u1="v" u2="É" k="9" /> + <hkern u1="v" u2="È" k="9" /> + <hkern u1="v" u2="Å" k="36" /> + <hkern u1="v" u2="Ä" k="36" /> + <hkern u1="v" u2="Ã" k="36" /> + <hkern u1="v" u2="Â" k="36" /> + <hkern u1="v" u2="Á" k="36" /> + <hkern u1="v" u2="À" k="36" /> + <hkern u1="v" u2="}" k="17" /> + <hkern u1="v" u2="y" k="-27" /> + <hkern u1="v" u2="x" k="-18" /> + <hkern u1="v" u2="v" k="-20" /> + <hkern u1="v" u2="t" k="-21" /> + <hkern u1="v" u2="q" k="7" /> + <hkern u1="v" u2="o" k="7" /> + <hkern u1="v" u2="g" k="7" /> + <hkern u1="v" u2="f" k="-28" /> + <hkern u1="v" u2="e" k="7" /> + <hkern u1="v" u2="d" k="7" /> + <hkern u1="v" u2="c" k="7" /> + <hkern u1="v" u2="a" k="6" /> + <hkern u1="v" u2="]" k="21" /> + <hkern u1="v" u2="Y" k="35" /> + <hkern u1="v" u2="X" k="38" /> + <hkern u1="v" u2="V" k="12" /> + <hkern u1="v" u2="U" k="8" /> + <hkern u1="v" u2="T" k="49" /> + <hkern u1="v" u2="R" k="9" /> + <hkern u1="v" u2="P" k="9" /> + <hkern u1="v" u2="N" k="9" /> + <hkern u1="v" u2="M" k="9" /> + <hkern u1="v" u2="L" k="9" /> + <hkern u1="v" u2="K" k="9" /> + <hkern u1="v" u2="I" k="9" /> + <hkern u1="v" u2="H" k="9" /> + <hkern u1="v" u2="F" k="9" /> + <hkern u1="v" u2="E" k="9" /> + <hkern u1="v" u2="D" k="9" /> + <hkern u1="v" u2="B" k="9" /> + <hkern u1="v" u2="A" k="36" /> + <hkern u1="v" u2="/" k="19" /> + <hkern u1="v" u2="." k="31" /> + <hkern u1="v" u2="-" k="8" /> + <hkern u1="v" u2="," k="31" /> + <hkern u1="v" u2=")" k="20" /> + <hkern u1="v" u2="&" k="14" /> + <hkern u1="x" g2="f_j" k="-21" /> + <hkern u1="x" u2="ffl" k="-21" /> + <hkern u1="x" u2="ffi" k="-21" /> + <hkern u1="x" u2="fl" k="-21" /> + <hkern u1="x" u2="fi" k="-21" /> + <hkern u1="x" u2="ff" k="-21" /> + <hkern u1="x" u2="™" k="8" /> + <hkern u1="x" u2="‹" k="13" /> + <hkern u1="x" u2="—" k="23" /> + <hkern u1="x" u2="–" k="23" /> + <hkern u1="x" u2="Ț" k="68" /> + <hkern u1="x" u2="ǿ" k="15" /> + <hkern u1="x" u2="Ǿ" k="13" /> + <hkern u1="x" u2="ſ" k="-21" /> + <hkern u1="x" u2="ÿ" k="-15" /> + <hkern u1="x" u2="ý" k="-15" /> + <hkern u1="x" u2="ø" k="15" /> + <hkern u1="x" u2="ö" k="15" /> + <hkern u1="x" u2="õ" k="15" /> + <hkern u1="x" u2="ô" k="15" /> + <hkern u1="x" u2="ó" k="15" /> + <hkern u1="x" u2="ò" k="15" /> + <hkern u1="x" u2="ð" k="15" /> + <hkern u1="x" u2="ë" k="15" /> + <hkern u1="x" u2="ê" k="15" /> + <hkern u1="x" u2="é" k="15" /> + <hkern u1="x" u2="è" k="15" /> + <hkern u1="x" u2="ç" k="15" /> + <hkern u1="x" u2="ß" k="-21" /> + <hkern u1="x" u2="Þ" k="5" /> + <hkern u1="x" u2="Ý" k="43" /> + <hkern u1="x" u2="Ü" k="10" /> + <hkern u1="x" u2="Û" k="10" /> + <hkern u1="x" u2="Ú" k="10" /> + <hkern u1="x" u2="Ù" k="10" /> + <hkern u1="x" u2="Ø" k="13" /> + <hkern u1="x" u2="Ö" k="13" /> + <hkern u1="x" u2="Õ" k="13" /> + <hkern u1="x" u2="Ô" k="13" /> + <hkern u1="x" u2="Ó" k="13" /> + <hkern u1="x" u2="Ò" k="13" /> + <hkern u1="x" u2="Ñ" k="5" /> + <hkern u1="x" u2="Ð" k="5" /> + <hkern u1="x" u2="Ï" k="5" /> + <hkern u1="x" u2="Î" k="5" /> + <hkern u1="x" u2="Í" k="5" /> + <hkern u1="x" u2="Ì" k="5" /> + <hkern u1="x" u2="Ë" k="5" /> + <hkern u1="x" u2="Ê" k="5" /> + <hkern u1="x" u2="É" k="5" /> + <hkern u1="x" u2="È" k="5" /> + <hkern u1="x" u2="Ç" k="13" /> + <hkern u1="x" u2="«" k="13" /> + <hkern u1="x" u2="y" k="-15" /> + <hkern u1="x" u2="x" k="-14" /> + <hkern u1="x" u2="v" k="-16" /> + <hkern u1="x" u2="q" k="15" /> + <hkern u1="x" u2="o" k="15" /> + <hkern u1="x" u2="g" k="15" /> + <hkern u1="x" u2="f" k="-21" /> + <hkern u1="x" u2="e" k="15" /> + <hkern u1="x" u2="d" k="15" /> + <hkern u1="x" u2="c" k="15" /> + <hkern u1="x" u2="]" k="11" /> + <hkern u1="x" u2="Y" k="43" /> + <hkern u1="x" u2="V" k="15" /> + <hkern u1="x" u2="U" k="10" /> + <hkern u1="x" u2="T" k="68" /> + <hkern u1="x" u2="R" k="5" /> + <hkern u1="x" u2="Q" k="13" /> + <hkern u1="x" u2="P" k="5" /> + <hkern u1="x" u2="O" k="13" /> + <hkern u1="x" u2="N" k="5" /> + <hkern u1="x" u2="M" k="5" /> + <hkern u1="x" u2="L" k="5" /> + <hkern u1="x" u2="K" k="5" /> + <hkern u1="x" u2="I" k="5" /> + <hkern u1="x" u2="H" k="5" /> + <hkern u1="x" u2="G" k="13" /> + <hkern u1="x" u2="F" k="5" /> + <hkern u1="x" u2="E" k="5" /> + <hkern u1="x" u2="D" k="5" /> + <hkern u1="x" u2="C" k="13" /> + <hkern u1="x" u2="B" k="5" /> + <hkern u1="x" u2="-" k="23" /> + <hkern u1="x" u2="&" k="19" /> + <hkern u1="y" u2="…" k="28" /> + <hkern u1="y" u2="„" k="28" /> + <hkern u1="y" u2="‚" k="28" /> + <hkern u1="y" u2="ț" k="-22" /> + <hkern u1="y" u2="Ț" k="48" /> + <hkern u1="y" u2="ǿ" k="5" /> + <hkern u1="y" u2="ǽ" k="4" /> + <hkern u1="y" u2="ÿ" k="-29" /> + <hkern u1="y" u2="ý" k="-29" /> + <hkern u1="y" u2="ø" k="5" /> + <hkern u1="y" u2="ö" k="5" /> + <hkern u1="y" u2="õ" k="5" /> + <hkern u1="y" u2="ô" k="5" /> + <hkern u1="y" u2="ó" k="5" /> + <hkern u1="y" u2="ò" k="5" /> + <hkern u1="y" u2="ð" k="5" /> + <hkern u1="y" u2="ë" k="5" /> + <hkern u1="y" u2="ê" k="5" /> + <hkern u1="y" u2="é" k="5" /> + <hkern u1="y" u2="è" k="5" /> + <hkern u1="y" u2="ç" k="5" /> + <hkern u1="y" u2="æ" k="4" /> + <hkern u1="y" u2="å" k="4" /> + <hkern u1="y" u2="ä" k="4" /> + <hkern u1="y" u2="ã" k="4" /> + <hkern u1="y" u2="â" k="4" /> + <hkern u1="y" u2="á" k="4" /> + <hkern u1="y" u2="à" k="4" /> + <hkern u1="y" u2="Þ" k="7" /> + <hkern u1="y" u2="Ý" k="33" /> + <hkern u1="y" u2="Ü" k="6" /> + <hkern u1="y" u2="Û" k="6" /> + <hkern u1="y" u2="Ú" k="6" /> + <hkern u1="y" u2="Ù" k="6" /> + <hkern u1="y" u2="Ñ" k="7" /> + <hkern u1="y" u2="Ð" k="7" /> + <hkern u1="y" u2="Ï" k="7" /> + <hkern u1="y" u2="Î" k="7" /> + <hkern u1="y" u2="Í" k="7" /> + <hkern u1="y" u2="Ì" k="7" /> + <hkern u1="y" u2="Ë" k="7" /> + <hkern u1="y" u2="Ê" k="7" /> + <hkern u1="y" u2="É" k="7" /> + <hkern u1="y" u2="È" k="7" /> + <hkern u1="y" u2="Å" k="34" /> + <hkern u1="y" u2="Ä" k="34" /> + <hkern u1="y" u2="Ã" k="34" /> + <hkern u1="y" u2="Â" k="34" /> + <hkern u1="y" u2="Á" k="34" /> + <hkern u1="y" u2="À" k="34" /> + <hkern u1="y" u2="}" k="13" /> + <hkern u1="y" u2="y" k="-29" /> + <hkern u1="y" u2="x" k="-28" /> + <hkern u1="y" u2="v" k="-31" /> + <hkern u1="y" u2="t" k="-22" /> + <hkern u1="y" u2="q" k="5" /> + <hkern u1="y" u2="o" k="5" /> + <hkern u1="y" u2="g" k="5" /> + <hkern u1="y" u2="e" k="5" /> + <hkern u1="y" u2="d" k="5" /> + <hkern u1="y" u2="c" k="5" /> + <hkern u1="y" u2="a" k="4" /> + <hkern u1="y" u2="]" k="18" /> + <hkern u1="y" u2="Y" k="33" /> + <hkern u1="y" u2="X" k="36" /> + <hkern u1="y" u2="V" k="10" /> + <hkern u1="y" u2="U" k="6" /> + <hkern u1="y" u2="T" k="48" /> + <hkern u1="y" u2="R" k="7" /> + <hkern u1="y" u2="P" k="7" /> + <hkern u1="y" u2="N" k="7" /> + <hkern u1="y" u2="M" k="7" /> + <hkern u1="y" u2="L" k="7" /> + <hkern u1="y" u2="K" k="7" /> + <hkern u1="y" u2="I" k="7" /> + <hkern u1="y" u2="H" k="7" /> + <hkern u1="y" u2="F" k="7" /> + <hkern u1="y" u2="E" k="7" /> + <hkern u1="y" u2="D" k="7" /> + <hkern u1="y" u2="B" k="7" /> + <hkern u1="y" u2="A" k="34" /> + <hkern u1="y" u2="/" k="15" /> + <hkern u1="y" u2="." k="28" /> + <hkern u1="y" u2="," k="28" /> + <hkern u1="y" u2=")" k="17" /> + <hkern u1="y" u2="&" k="12" /> + <hkern u1="{" u2="st" k="18" /> + <hkern u1="{" u2="ț" k="17" /> + <hkern u1="{" u2="ș" k="18" /> + <hkern u1="{" u2="ǿ" k="22" /> + <hkern u1="{" u2="Ǿ" k="17" /> + <hkern u1="{" u2="ǽ" k="17" /> + <hkern u1="{" u2="ÿ" k="11" /> + <hkern u1="{" u2="ý" k="11" /> + <hkern u1="{" u2="ü" k="20" /> + <hkern u1="{" u2="û" k="20" /> + <hkern u1="{" u2="ú" k="20" /> + <hkern u1="{" u2="ù" k="20" /> + <hkern u1="{" u2="ø" k="22" /> + <hkern u1="{" u2="ö" k="22" /> + <hkern u1="{" u2="õ" k="22" /> + <hkern u1="{" u2="ô" k="22" /> + <hkern u1="{" u2="ó" k="22" /> + <hkern u1="{" u2="ò" k="22" /> + <hkern u1="{" u2="ñ" k="18" /> + <hkern u1="{" u2="ð" k="22" /> + <hkern u1="{" u2="ë" k="22" /> + <hkern u1="{" u2="ê" k="22" /> + <hkern u1="{" u2="é" k="22" /> + <hkern u1="{" u2="è" k="22" /> + <hkern u1="{" u2="ç" k="22" /> + <hkern u1="{" u2="æ" k="17" /> + <hkern u1="{" u2="å" k="17" /> + <hkern u1="{" u2="ä" k="17" /> + <hkern u1="{" u2="ã" k="17" /> + <hkern u1="{" u2="â" k="17" /> + <hkern u1="{" u2="á" k="17" /> + <hkern u1="{" u2="à" k="17" /> + <hkern u1="{" u2="Ý" k="-12" /> + <hkern u1="{" u2="Ø" k="17" /> + <hkern u1="{" u2="Ö" k="17" /> + <hkern u1="{" u2="Õ" k="17" /> + <hkern u1="{" u2="Ô" k="17" /> + <hkern u1="{" u2="Ó" k="17" /> + <hkern u1="{" u2="Ò" k="17" /> + <hkern u1="{" u2="Î" k="-12" /> + <hkern u1="{" u2="Ç" k="17" /> + <hkern u1="{" u2="Å" k="13" /> + <hkern u1="{" u2="Ä" k="13" /> + <hkern u1="{" u2="Ã" k="13" /> + <hkern u1="{" u2="Â" k="13" /> + <hkern u1="{" u2="Á" k="13" /> + <hkern u1="{" u2="À" k="13" /> + <hkern u1="{" u2="y" k="11" /> + <hkern u1="{" u2="v" k="17" /> + <hkern u1="{" u2="u" k="20" /> + <hkern u1="{" u2="t" k="17" /> + <hkern u1="{" u2="s" k="18" /> + <hkern u1="{" u2="r" k="18" /> + <hkern u1="{" u2="q" k="22" /> + <hkern u1="{" u2="p" k="18" /> + <hkern u1="{" u2="o" k="22" /> + <hkern u1="{" u2="n" k="18" /> + <hkern u1="{" u2="m" k="18" /> + <hkern u1="{" u2="g" k="22" /> + <hkern u1="{" u2="e" k="22" /> + <hkern u1="{" u2="d" k="22" /> + <hkern u1="{" u2="c" k="22" /> + <hkern u1="{" u2="a" k="17" /> + <hkern u1="{" u2="Y" k="-12" /> + <hkern u1="{" u2="Q" k="17" /> + <hkern u1="{" u2="O" k="17" /> + <hkern u1="{" u2="G" k="17" /> + <hkern u1="{" u2="C" k="17" /> + <hkern u1="{" u2="A" k="13" /> + <hkern u1="¡" u2="Ț" k="48" /> + <hkern u1="¡" u2="Ý" k="32" /> + <hkern u1="¡" u2="Y" k="32" /> + <hkern u1="¡" u2="V" k="16" /> + <hkern u1="¡" u2="T" k="48" /> + <hkern u1="«" u2="Ț" k="51" /> + <hkern u1="«" u2="Ý" k="32" /> + <hkern u1="«" u2="Y" k="32" /> + <hkern u1="«" u2="V" k="12" /> + <hkern u1="«" u2="T" k="51" /> + <hkern u1="®" u2="Ț" k="17" /> + <hkern u1="®" u2="Ý" k="25" /> + <hkern u1="®" u2="Å" k="11" /> + <hkern u1="®" u2="Ä" k="11" /> + <hkern u1="®" u2="Ã" k="11" /> + <hkern u1="®" u2="Â" k="11" /> + <hkern u1="®" u2="Á" k="11" /> + <hkern u1="®" u2="À" k="11" /> + <hkern u1="®" u2="Y" k="25" /> + <hkern u1="®" u2="V" k="10" /> + <hkern u1="®" u2="T" k="17" /> + <hkern u1="®" u2="A" k="11" /> + <hkern u1="»" u2="”" k="22" /> + <hkern u1="»" u2="’" k="22" /> + <hkern u1="»" u2="Ț" k="59" /> + <hkern u1="»" u2="Ý" k="59" /> + <hkern u1="»" u2="x" k="13" /> + <hkern u1="»" u2="Y" k="59" /> + <hkern u1="»" u2="X" k="15" /> + <hkern u1="»" u2="V" k="31" /> + <hkern u1="»" u2="T" k="59" /> + <hkern u1="»" u2="'" k="22" /> + <hkern u1="»" u2=""" k="22" /> + <hkern u1="¿" g2="f_j" k="17" /> + <hkern u1="¿" u2="st" k="19" /> + <hkern u1="¿" u2="ffl" k="17" /> + <hkern u1="¿" u2="ffi" k="17" /> + <hkern u1="¿" u2="fl" k="17" /> + <hkern u1="¿" u2="fi" k="17" /> + <hkern u1="¿" u2="ff" k="17" /> + <hkern u1="¿" u2="ȷ" k="18" /> + <hkern u1="¿" u2="ț" k="20" /> + <hkern u1="¿" u2="Ț" k="69" /> + <hkern u1="¿" u2="ș" k="19" /> + <hkern u1="¿" u2="Ș" k="16" /> + <hkern u1="¿" u2="ǿ" k="25" /> + <hkern u1="¿" u2="Ǿ" k="22" /> + <hkern u1="¿" u2="ǽ" k="21" /> + <hkern u1="¿" u2="ſ" k="17" /> + <hkern u1="¿" u2="ÿ" k="13" /> + <hkern u1="¿" u2="þ" k="18" /> + <hkern u1="¿" u2="ý" k="13" /> + <hkern u1="¿" u2="ü" k="23" /> + <hkern u1="¿" u2="û" k="23" /> + <hkern u1="¿" u2="ú" k="23" /> + <hkern u1="¿" u2="ù" k="23" /> + <hkern u1="¿" u2="ø" k="25" /> + <hkern u1="¿" u2="ö" k="25" /> + <hkern u1="¿" u2="õ" k="25" /> + <hkern u1="¿" u2="ô" k="25" /> + <hkern u1="¿" u2="ó" k="25" /> + <hkern u1="¿" u2="ò" k="25" /> + <hkern u1="¿" u2="ñ" k="18" /> + <hkern u1="¿" u2="ð" k="25" /> + <hkern u1="¿" u2="ï" k="18" /> + <hkern u1="¿" u2="î" k="18" /> + <hkern u1="¿" u2="í" k="18" /> + <hkern u1="¿" u2="ì" k="18" /> + <hkern u1="¿" u2="ë" k="25" /> + <hkern u1="¿" u2="ê" k="25" /> + <hkern u1="¿" u2="é" k="25" /> + <hkern u1="¿" u2="è" k="25" /> + <hkern u1="¿" u2="ç" k="25" /> + <hkern u1="¿" u2="æ" k="21" /> + <hkern u1="¿" u2="å" k="21" /> + <hkern u1="¿" u2="ä" k="21" /> + <hkern u1="¿" u2="ã" k="21" /> + <hkern u1="¿" u2="â" k="21" /> + <hkern u1="¿" u2="á" k="21" /> + <hkern u1="¿" u2="à" k="21" /> + <hkern u1="¿" u2="ß" k="17" /> + <hkern u1="¿" u2="Þ" k="16" /> + <hkern u1="¿" u2="Ý" k="55" /> + <hkern u1="¿" u2="Ü" k="25" /> + <hkern u1="¿" u2="Û" k="25" /> + <hkern u1="¿" u2="Ú" k="25" /> + <hkern u1="¿" u2="Ù" k="25" /> + <hkern u1="¿" u2="Ø" k="22" /> + <hkern u1="¿" u2="Ö" k="22" /> + <hkern u1="¿" u2="Õ" k="22" /> + <hkern u1="¿" u2="Ô" k="22" /> + <hkern u1="¿" u2="Ó" k="22" /> + <hkern u1="¿" u2="Ò" k="22" /> + <hkern u1="¿" u2="Ñ" k="16" /> + <hkern u1="¿" u2="Ð" k="16" /> + <hkern u1="¿" u2="Ï" k="16" /> + <hkern u1="¿" u2="Î" k="16" /> + <hkern u1="¿" u2="Í" k="16" /> + <hkern u1="¿" u2="Ì" k="16" /> + <hkern u1="¿" u2="Ë" k="16" /> + <hkern u1="¿" u2="Ê" k="16" /> + <hkern u1="¿" u2="É" k="16" /> + <hkern u1="¿" u2="È" k="16" /> + <hkern u1="¿" u2="Ç" k="22" /> + <hkern u1="¿" u2="Å" k="15" /> + <hkern u1="¿" u2="Ä" k="15" /> + <hkern u1="¿" u2="Ã" k="15" /> + <hkern u1="¿" u2="Â" k="15" /> + <hkern u1="¿" u2="Á" k="15" /> + <hkern u1="¿" u2="À" k="15" /> + <hkern u1="¿" u2="y" k="13" /> + <hkern u1="¿" u2="x" k="11" /> + <hkern u1="¿" u2="v" k="21" /> + <hkern u1="¿" u2="u" k="23" /> + <hkern u1="¿" u2="t" k="20" /> + <hkern u1="¿" u2="s" k="19" /> + <hkern u1="¿" u2="r" k="18" /> + <hkern u1="¿" u2="q" k="25" /> + <hkern u1="¿" u2="p" k="18" /> + <hkern u1="¿" u2="o" k="25" /> + <hkern u1="¿" u2="n" k="18" /> + <hkern u1="¿" u2="m" k="18" /> + <hkern u1="¿" u2="k" k="18" /> + <hkern u1="¿" u2="j" k="-18" /> + <hkern u1="¿" u2="i" k="18" /> + <hkern u1="¿" u2="h" k="18" /> + <hkern u1="¿" u2="g" k="25" /> + <hkern u1="¿" u2="f" k="17" /> + <hkern u1="¿" u2="e" k="25" /> + <hkern u1="¿" u2="d" k="25" /> + <hkern u1="¿" u2="c" k="25" /> + <hkern u1="¿" u2="b" k="18" /> + <hkern u1="¿" u2="a" k="21" /> + <hkern u1="¿" u2="Y" k="55" /> + <hkern u1="¿" u2="V" k="39" /> + <hkern u1="¿" u2="U" k="25" /> + <hkern u1="¿" u2="T" k="69" /> + <hkern u1="¿" u2="S" k="16" /> + <hkern u1="¿" u2="R" k="16" /> + <hkern u1="¿" u2="Q" k="22" /> + <hkern u1="¿" u2="P" k="16" /> + <hkern u1="¿" u2="O" k="22" /> + <hkern u1="¿" u2="N" k="16" /> + <hkern u1="¿" u2="M" k="16" /> + <hkern u1="¿" u2="L" k="16" /> + <hkern u1="¿" u2="K" k="16" /> + <hkern u1="¿" u2="I" k="16" /> + <hkern u1="¿" u2="H" k="16" /> + <hkern u1="¿" u2="G" k="22" /> + <hkern u1="¿" u2="F" k="16" /> + <hkern u1="¿" u2="E" k="16" /> + <hkern u1="¿" u2="D" k="16" /> + <hkern u1="¿" u2="C" k="22" /> + <hkern u1="¿" u2="B" k="16" /> + <hkern u1="¿" u2="A" k="15" /> + <hkern u1="À" u2="™" k="44" /> + <hkern u1="À" u2="®" k="10" /> + <hkern u1="À" u2="}" k="12" /> + <hkern u1="À" u2="v" k="36" /> + <hkern u1="À" u2="]" k="15" /> + <hkern u1="À" u2="\" k="32" /> + <hkern u1="À" u2="X" k="-24" /> + <hkern u1="À" u2="V" k="44" /> + <hkern u1="À" u2="?" k="18" /> + <hkern u1="À" u2="*" k="41" /> + <hkern u1="Á" u2="™" k="44" /> + <hkern u1="Á" u2="®" k="10" /> + <hkern u1="Á" u2="}" k="12" /> + <hkern u1="Á" u2="v" k="36" /> + <hkern u1="Á" u2="]" k="15" /> + <hkern u1="Á" u2="\" k="32" /> + <hkern u1="Á" u2="X" k="-24" /> + <hkern u1="Á" u2="V" k="44" /> + <hkern u1="Á" u2="?" k="18" /> + <hkern u1="Á" u2="*" k="41" /> + <hkern u1="Â" u2="™" k="44" /> + <hkern u1="Â" u2="®" k="10" /> + <hkern u1="Â" u2="}" k="12" /> + <hkern u1="Â" u2="v" k="36" /> + <hkern u1="Â" u2="]" k="15" /> + <hkern u1="Â" u2="\" k="32" /> + <hkern u1="Â" u2="X" k="-24" /> + <hkern u1="Â" u2="V" k="44" /> + <hkern u1="Â" u2="?" k="18" /> + <hkern u1="Â" u2="*" k="41" /> + <hkern u1="Ã" u2="™" k="44" /> + <hkern u1="Ã" u2="®" k="10" /> + <hkern u1="Ã" u2="}" k="12" /> + <hkern u1="Ã" u2="v" k="36" /> + <hkern u1="Ã" u2="]" k="15" /> + <hkern u1="Ã" u2="\" k="32" /> + <hkern u1="Ã" u2="X" k="-24" /> + <hkern u1="Ã" u2="V" k="44" /> + <hkern u1="Ã" u2="?" k="18" /> + <hkern u1="Ã" u2="*" k="41" /> + <hkern u1="Ä" u2="™" k="44" /> + <hkern u1="Ä" u2="®" k="10" /> + <hkern u1="Ä" u2="}" k="12" /> + <hkern u1="Ä" u2="v" k="36" /> + <hkern u1="Ä" u2="]" k="15" /> + <hkern u1="Ä" u2="\" k="32" /> + <hkern u1="Ä" u2="X" k="-24" /> + <hkern u1="Ä" u2="V" k="44" /> + <hkern u1="Ä" u2="?" k="18" /> + <hkern u1="Ä" u2="*" k="41" /> + <hkern u1="Å" u2="™" k="44" /> + <hkern u1="Å" u2="®" k="10" /> + <hkern u1="Å" u2="}" k="12" /> + <hkern u1="Å" u2="v" k="36" /> + <hkern u1="Å" u2="]" k="15" /> + <hkern u1="Å" u2="\" k="32" /> + <hkern u1="Å" u2="X" k="-24" /> + <hkern u1="Å" u2="V" k="44" /> + <hkern u1="Å" u2="?" k="18" /> + <hkern u1="Å" u2="*" k="41" /> + <hkern u1="Æ" g2="f_j" k="11" /> + <hkern u1="Æ" u2="st" k="6" /> + <hkern u1="Æ" u2="ffl" k="11" /> + <hkern u1="Æ" u2="ffi" k="11" /> + <hkern u1="Æ" u2="fl" k="11" /> + <hkern u1="Æ" u2="fi" k="11" /> + <hkern u1="Æ" u2="ff" k="11" /> + <hkern u1="Æ" u2="ț" k="17" /> + <hkern u1="Æ" u2="ș" k="6" /> + <hkern u1="Æ" u2="ǿ" k="14" /> + <hkern u1="Æ" u2="Ǿ" k="7" /> + <hkern u1="Æ" u2="ǽ" k="7" /> + <hkern u1="Æ" u2="ſ" k="11" /> + <hkern u1="Æ" u2="ÿ" k="14" /> + <hkern u1="Æ" u2="ý" k="14" /> + <hkern u1="Æ" u2="ü" k="13" /> + <hkern u1="Æ" u2="û" k="13" /> + <hkern u1="Æ" u2="ú" k="13" /> + <hkern u1="Æ" u2="ù" k="13" /> + <hkern u1="Æ" u2="ø" k="14" /> + <hkern u1="Æ" u2="ö" k="14" /> + <hkern u1="Æ" u2="õ" k="14" /> + <hkern u1="Æ" u2="ô" k="14" /> + <hkern u1="Æ" u2="ó" k="14" /> + <hkern u1="Æ" u2="ò" k="14" /> + <hkern u1="Æ" u2="ñ" k="7" /> + <hkern u1="Æ" u2="ð" k="14" /> + <hkern u1="Æ" u2="ë" k="14" /> + <hkern u1="Æ" u2="ê" k="14" /> + <hkern u1="Æ" u2="é" k="14" /> + <hkern u1="Æ" u2="è" k="14" /> + <hkern u1="Æ" u2="ç" k="14" /> + <hkern u1="Æ" u2="æ" k="7" /> + <hkern u1="Æ" u2="å" k="7" /> + <hkern u1="Æ" u2="ä" k="7" /> + <hkern u1="Æ" u2="ã" k="7" /> + <hkern u1="Æ" u2="â" k="7" /> + <hkern u1="Æ" u2="á" k="7" /> + <hkern u1="Æ" u2="à" k="7" /> + <hkern u1="Æ" u2="ß" k="11" /> + <hkern u1="Æ" u2="Ø" k="7" /> + <hkern u1="Æ" u2="Ö" k="7" /> + <hkern u1="Æ" u2="Õ" k="7" /> + <hkern u1="Æ" u2="Ô" k="7" /> + <hkern u1="Æ" u2="Ó" k="7" /> + <hkern u1="Æ" u2="Ò" k="7" /> + <hkern u1="Æ" u2="Ç" k="7" /> + <hkern u1="Æ" u2="y" k="14" /> + <hkern u1="Æ" u2="v" k="16" /> + <hkern u1="Æ" u2="u" k="13" /> + <hkern u1="Æ" u2="t" k="17" /> + <hkern u1="Æ" u2="s" k="6" /> + <hkern u1="Æ" u2="r" k="7" /> + <hkern u1="Æ" u2="q" k="14" /> + <hkern u1="Æ" u2="p" k="7" /> + <hkern u1="Æ" u2="o" k="14" /> + <hkern u1="Æ" u2="n" k="7" /> + <hkern u1="Æ" u2="m" k="7" /> + <hkern u1="Æ" u2="g" k="14" /> + <hkern u1="Æ" u2="f" k="11" /> + <hkern u1="Æ" u2="e" k="14" /> + <hkern u1="Æ" u2="d" k="14" /> + <hkern u1="Æ" u2="c" k="14" /> + <hkern u1="Æ" u2="a" k="7" /> + <hkern u1="Æ" u2="Q" k="7" /> + <hkern u1="Æ" u2="O" k="7" /> + <hkern u1="Æ" u2="G" k="7" /> + <hkern u1="Æ" u2="C" k="7" /> + <hkern u1="Æ" u2="&" k="7" /> + <hkern u1="Ç" g2="f_j" k="7" /> + <hkern u1="Ç" u2="st" k="10" /> + <hkern u1="Ç" u2="ffl" k="7" /> + <hkern u1="Ç" u2="ffi" k="7" /> + <hkern u1="Ç" u2="fl" k="7" /> + <hkern u1="Ç" u2="fi" k="7" /> + <hkern u1="Ç" u2="ff" k="7" /> + <hkern u1="Ç" u2="—" k="22" /> + <hkern u1="Ç" u2="–" k="22" /> + <hkern u1="Ç" u2="ț" k="20" /> + <hkern u1="Ç" u2="ș" k="10" /> + <hkern u1="Ç" u2="ǿ" k="16" /> + <hkern u1="Ç" u2="Ǿ" k="9" /> + <hkern u1="Ç" u2="ſ" k="7" /> + <hkern u1="Ç" u2="ÿ" k="46" /> + <hkern u1="Ç" u2="ý" k="46" /> + <hkern u1="Ç" u2="ü" k="11" /> + <hkern u1="Ç" u2="û" k="11" /> + <hkern u1="Ç" u2="ú" k="11" /> + <hkern u1="Ç" u2="ù" k="11" /> + <hkern u1="Ç" u2="ø" k="16" /> + <hkern u1="Ç" u2="ö" k="16" /> + <hkern u1="Ç" u2="õ" k="16" /> + <hkern u1="Ç" u2="ô" k="16" /> + <hkern u1="Ç" u2="ó" k="16" /> + <hkern u1="Ç" u2="ò" k="16" /> + <hkern u1="Ç" u2="ñ" k="7" /> + <hkern u1="Ç" u2="ð" k="16" /> + <hkern u1="Ç" u2="ë" k="16" /> + <hkern u1="Ç" u2="ê" k="16" /> + <hkern u1="Ç" u2="é" k="16" /> + <hkern u1="Ç" u2="è" k="16" /> + <hkern u1="Ç" u2="ç" k="16" /> + <hkern u1="Ç" u2="ß" k="7" /> + <hkern u1="Ç" u2="Ø" k="9" /> + <hkern u1="Ç" u2="Ö" k="9" /> + <hkern u1="Ç" u2="Õ" k="9" /> + <hkern u1="Ç" u2="Ô" k="9" /> + <hkern u1="Ç" u2="Ó" k="9" /> + <hkern u1="Ç" u2="Ò" k="9" /> + <hkern u1="Ç" u2="Ç" k="9" /> + <hkern u1="Ç" u2="y" k="46" /> + <hkern u1="Ç" u2="v" k="50" /> + <hkern u1="Ç" u2="u" k="11" /> + <hkern u1="Ç" u2="t" k="20" /> + <hkern u1="Ç" u2="s" k="10" /> + <hkern u1="Ç" u2="r" k="7" /> + <hkern u1="Ç" u2="q" k="16" /> + <hkern u1="Ç" u2="p" k="7" /> + <hkern u1="Ç" u2="o" k="16" /> + <hkern u1="Ç" u2="n" k="7" /> + <hkern u1="Ç" u2="m" k="7" /> + <hkern u1="Ç" u2="g" k="16" /> + <hkern u1="Ç" u2="f" k="7" /> + <hkern u1="Ç" u2="e" k="16" /> + <hkern u1="Ç" u2="d" k="16" /> + <hkern u1="Ç" u2="c" k="16" /> + <hkern u1="Ç" u2="Q" k="9" /> + <hkern u1="Ç" u2="O" k="9" /> + <hkern u1="Ç" u2="G" k="9" /> + <hkern u1="Ç" u2="C" k="9" /> + <hkern u1="Ç" u2="-" k="22" /> + <hkern u1="Ç" u2="&" k="7" /> + <hkern u1="È" g2="f_j" k="11" /> + <hkern u1="È" u2="st" k="6" /> + <hkern u1="È" u2="ffl" k="11" /> + <hkern u1="È" u2="ffi" k="11" /> + <hkern u1="È" u2="fl" k="11" /> + <hkern u1="È" u2="fi" k="11" /> + <hkern u1="È" u2="ff" k="11" /> + <hkern u1="È" u2="ț" k="17" /> + <hkern u1="È" u2="ș" k="6" /> + <hkern u1="È" u2="ǿ" k="14" /> + <hkern u1="È" u2="Ǿ" k="7" /> + <hkern u1="È" u2="ǽ" k="7" /> + <hkern u1="È" u2="ſ" k="11" /> + <hkern u1="È" u2="ÿ" k="14" /> + <hkern u1="È" u2="ý" k="14" /> + <hkern u1="È" u2="ü" k="13" /> + <hkern u1="È" u2="û" k="13" /> + <hkern u1="È" u2="ú" k="13" /> + <hkern u1="È" u2="ù" k="13" /> + <hkern u1="È" u2="ø" k="14" /> + <hkern u1="È" u2="ö" k="14" /> + <hkern u1="È" u2="õ" k="14" /> + <hkern u1="È" u2="ô" k="14" /> + <hkern u1="È" u2="ó" k="14" /> + <hkern u1="È" u2="ò" k="14" /> + <hkern u1="È" u2="ñ" k="7" /> + <hkern u1="È" u2="ð" k="14" /> + <hkern u1="È" u2="ë" k="14" /> + <hkern u1="È" u2="ê" k="14" /> + <hkern u1="È" u2="é" k="14" /> + <hkern u1="È" u2="è" k="14" /> + <hkern u1="È" u2="ç" k="14" /> + <hkern u1="È" u2="æ" k="7" /> + <hkern u1="È" u2="å" k="7" /> + <hkern u1="È" u2="ä" k="7" /> + <hkern u1="È" u2="ã" k="7" /> + <hkern u1="È" u2="â" k="7" /> + <hkern u1="È" u2="á" k="7" /> + <hkern u1="È" u2="à" k="7" /> + <hkern u1="È" u2="ß" k="11" /> + <hkern u1="È" u2="Ø" k="7" /> + <hkern u1="È" u2="Ö" k="7" /> + <hkern u1="È" u2="Õ" k="7" /> + <hkern u1="È" u2="Ô" k="7" /> + <hkern u1="È" u2="Ó" k="7" /> + <hkern u1="È" u2="Ò" k="7" /> + <hkern u1="È" u2="Ç" k="7" /> + <hkern u1="È" u2="y" k="14" /> + <hkern u1="È" u2="v" k="16" /> + <hkern u1="È" u2="u" k="13" /> + <hkern u1="È" u2="t" k="17" /> + <hkern u1="È" u2="s" k="6" /> + <hkern u1="È" u2="r" k="7" /> + <hkern u1="È" u2="q" k="14" /> + <hkern u1="È" u2="p" k="7" /> + <hkern u1="È" u2="o" k="14" /> + <hkern u1="È" u2="n" k="7" /> + <hkern u1="È" u2="m" k="7" /> + <hkern u1="È" u2="g" k="14" /> + <hkern u1="È" u2="f" k="11" /> + <hkern u1="È" u2="e" k="14" /> + <hkern u1="È" u2="d" k="14" /> + <hkern u1="È" u2="c" k="14" /> + <hkern u1="È" u2="a" k="7" /> + <hkern u1="È" u2="Q" k="7" /> + <hkern u1="È" u2="O" k="7" /> + <hkern u1="È" u2="G" k="7" /> + <hkern u1="È" u2="C" k="7" /> + <hkern u1="È" u2="&" k="7" /> + <hkern u1="É" g2="f_j" k="11" /> + <hkern u1="É" u2="st" k="6" /> + <hkern u1="É" u2="ffl" k="11" /> + <hkern u1="É" u2="ffi" k="11" /> + <hkern u1="É" u2="fl" k="11" /> + <hkern u1="É" u2="fi" k="11" /> + <hkern u1="É" u2="ff" k="11" /> + <hkern u1="É" u2="ț" k="17" /> + <hkern u1="É" u2="ș" k="6" /> + <hkern u1="É" u2="ǿ" k="14" /> + <hkern u1="É" u2="Ǿ" k="7" /> + <hkern u1="É" u2="ǽ" k="7" /> + <hkern u1="É" u2="ſ" k="11" /> + <hkern u1="É" u2="ÿ" k="14" /> + <hkern u1="É" u2="ý" k="14" /> + <hkern u1="É" u2="ü" k="13" /> + <hkern u1="É" u2="û" k="13" /> + <hkern u1="É" u2="ú" k="13" /> + <hkern u1="É" u2="ù" k="13" /> + <hkern u1="É" u2="ø" k="14" /> + <hkern u1="É" u2="ö" k="14" /> + <hkern u1="É" u2="õ" k="14" /> + <hkern u1="É" u2="ô" k="14" /> + <hkern u1="É" u2="ó" k="14" /> + <hkern u1="É" u2="ò" k="14" /> + <hkern u1="É" u2="ñ" k="7" /> + <hkern u1="É" u2="ð" k="14" /> + <hkern u1="É" u2="ë" k="14" /> + <hkern u1="É" u2="ê" k="14" /> + <hkern u1="É" u2="é" k="14" /> + <hkern u1="É" u2="è" k="14" /> + <hkern u1="É" u2="ç" k="14" /> + <hkern u1="É" u2="æ" k="7" /> + <hkern u1="É" u2="å" k="7" /> + <hkern u1="É" u2="ä" k="7" /> + <hkern u1="É" u2="ã" k="7" /> + <hkern u1="É" u2="â" k="7" /> + <hkern u1="É" u2="á" k="7" /> + <hkern u1="É" u2="à" k="7" /> + <hkern u1="É" u2="ß" k="11" /> + <hkern u1="É" u2="Ø" k="7" /> + <hkern u1="É" u2="Ö" k="7" /> + <hkern u1="É" u2="Õ" k="7" /> + <hkern u1="É" u2="Ô" k="7" /> + <hkern u1="É" u2="Ó" k="7" /> + <hkern u1="É" u2="Ò" k="7" /> + <hkern u1="É" u2="Ç" k="7" /> + <hkern u1="É" u2="y" k="14" /> + <hkern u1="É" u2="v" k="16" /> + <hkern u1="É" u2="u" k="13" /> + <hkern u1="É" u2="t" k="17" /> + <hkern u1="É" u2="s" k="6" /> + <hkern u1="É" u2="r" k="7" /> + <hkern u1="É" u2="q" k="14" /> + <hkern u1="É" u2="p" k="7" /> + <hkern u1="É" u2="o" k="14" /> + <hkern u1="É" u2="n" k="7" /> + <hkern u1="É" u2="m" k="7" /> + <hkern u1="É" u2="g" k="14" /> + <hkern u1="É" u2="f" k="11" /> + <hkern u1="É" u2="e" k="14" /> + <hkern u1="É" u2="d" k="14" /> + <hkern u1="É" u2="c" k="14" /> + <hkern u1="É" u2="a" k="7" /> + <hkern u1="É" u2="Q" k="7" /> + <hkern u1="É" u2="O" k="7" /> + <hkern u1="É" u2="G" k="7" /> + <hkern u1="É" u2="C" k="7" /> + <hkern u1="É" u2="&" k="7" /> + <hkern u1="Ê" g2="f_j" k="11" /> + <hkern u1="Ê" u2="st" k="6" /> + <hkern u1="Ê" u2="ffl" k="11" /> + <hkern u1="Ê" u2="ffi" k="11" /> + <hkern u1="Ê" u2="fl" k="11" /> + <hkern u1="Ê" u2="fi" k="11" /> + <hkern u1="Ê" u2="ff" k="11" /> + <hkern u1="Ê" u2="ț" k="17" /> + <hkern u1="Ê" u2="ș" k="6" /> + <hkern u1="Ê" u2="ǿ" k="14" /> + <hkern u1="Ê" u2="Ǿ" k="7" /> + <hkern u1="Ê" u2="ǽ" k="7" /> + <hkern u1="Ê" u2="ſ" k="11" /> + <hkern u1="Ê" u2="ÿ" k="14" /> + <hkern u1="Ê" u2="ý" k="14" /> + <hkern u1="Ê" u2="ü" k="13" /> + <hkern u1="Ê" u2="û" k="13" /> + <hkern u1="Ê" u2="ú" k="13" /> + <hkern u1="Ê" u2="ù" k="13" /> + <hkern u1="Ê" u2="ø" k="14" /> + <hkern u1="Ê" u2="ö" k="14" /> + <hkern u1="Ê" u2="õ" k="14" /> + <hkern u1="Ê" u2="ô" k="14" /> + <hkern u1="Ê" u2="ó" k="14" /> + <hkern u1="Ê" u2="ò" k="14" /> + <hkern u1="Ê" u2="ñ" k="7" /> + <hkern u1="Ê" u2="ð" k="14" /> + <hkern u1="Ê" u2="ë" k="14" /> + <hkern u1="Ê" u2="ê" k="14" /> + <hkern u1="Ê" u2="é" k="14" /> + <hkern u1="Ê" u2="è" k="14" /> + <hkern u1="Ê" u2="ç" k="14" /> + <hkern u1="Ê" u2="æ" k="7" /> + <hkern u1="Ê" u2="å" k="7" /> + <hkern u1="Ê" u2="ä" k="7" /> + <hkern u1="Ê" u2="ã" k="7" /> + <hkern u1="Ê" u2="â" k="7" /> + <hkern u1="Ê" u2="á" k="7" /> + <hkern u1="Ê" u2="à" k="7" /> + <hkern u1="Ê" u2="ß" k="11" /> + <hkern u1="Ê" u2="Ø" k="7" /> + <hkern u1="Ê" u2="Ö" k="7" /> + <hkern u1="Ê" u2="Õ" k="7" /> + <hkern u1="Ê" u2="Ô" k="7" /> + <hkern u1="Ê" u2="Ó" k="7" /> + <hkern u1="Ê" u2="Ò" k="7" /> + <hkern u1="Ê" u2="Ç" k="7" /> + <hkern u1="Ê" u2="y" k="14" /> + <hkern u1="Ê" u2="v" k="16" /> + <hkern u1="Ê" u2="u" k="13" /> + <hkern u1="Ê" u2="t" k="17" /> + <hkern u1="Ê" u2="s" k="6" /> + <hkern u1="Ê" u2="r" k="7" /> + <hkern u1="Ê" u2="q" k="14" /> + <hkern u1="Ê" u2="p" k="7" /> + <hkern u1="Ê" u2="o" k="14" /> + <hkern u1="Ê" u2="n" k="7" /> + <hkern u1="Ê" u2="m" k="7" /> + <hkern u1="Ê" u2="g" k="14" /> + <hkern u1="Ê" u2="f" k="11" /> + <hkern u1="Ê" u2="e" k="14" /> + <hkern u1="Ê" u2="d" k="14" /> + <hkern u1="Ê" u2="c" k="14" /> + <hkern u1="Ê" u2="a" k="7" /> + <hkern u1="Ê" u2="Q" k="7" /> + <hkern u1="Ê" u2="O" k="7" /> + <hkern u1="Ê" u2="G" k="7" /> + <hkern u1="Ê" u2="C" k="7" /> + <hkern u1="Ê" u2="&" k="7" /> + <hkern u1="Ë" g2="f_j" k="11" /> + <hkern u1="Ë" u2="st" k="6" /> + <hkern u1="Ë" u2="ffl" k="11" /> + <hkern u1="Ë" u2="ffi" k="11" /> + <hkern u1="Ë" u2="fl" k="11" /> + <hkern u1="Ë" u2="fi" k="11" /> + <hkern u1="Ë" u2="ff" k="11" /> + <hkern u1="Ë" u2="ț" k="17" /> + <hkern u1="Ë" u2="ș" k="6" /> + <hkern u1="Ë" u2="ǿ" k="14" /> + <hkern u1="Ë" u2="Ǿ" k="7" /> + <hkern u1="Ë" u2="ǽ" k="7" /> + <hkern u1="Ë" u2="ſ" k="11" /> + <hkern u1="Ë" u2="ÿ" k="14" /> + <hkern u1="Ë" u2="ý" k="14" /> + <hkern u1="Ë" u2="ü" k="13" /> + <hkern u1="Ë" u2="û" k="13" /> + <hkern u1="Ë" u2="ú" k="13" /> + <hkern u1="Ë" u2="ù" k="13" /> + <hkern u1="Ë" u2="ø" k="14" /> + <hkern u1="Ë" u2="ö" k="14" /> + <hkern u1="Ë" u2="õ" k="14" /> + <hkern u1="Ë" u2="ô" k="14" /> + <hkern u1="Ë" u2="ó" k="14" /> + <hkern u1="Ë" u2="ò" k="14" /> + <hkern u1="Ë" u2="ñ" k="7" /> + <hkern u1="Ë" u2="ð" k="14" /> + <hkern u1="Ë" u2="ë" k="14" /> + <hkern u1="Ë" u2="ê" k="14" /> + <hkern u1="Ë" u2="é" k="14" /> + <hkern u1="Ë" u2="è" k="14" /> + <hkern u1="Ë" u2="ç" k="14" /> + <hkern u1="Ë" u2="æ" k="7" /> + <hkern u1="Ë" u2="å" k="7" /> + <hkern u1="Ë" u2="ä" k="7" /> + <hkern u1="Ë" u2="ã" k="7" /> + <hkern u1="Ë" u2="â" k="7" /> + <hkern u1="Ë" u2="á" k="7" /> + <hkern u1="Ë" u2="à" k="7" /> + <hkern u1="Ë" u2="ß" k="11" /> + <hkern u1="Ë" u2="Ø" k="7" /> + <hkern u1="Ë" u2="Ö" k="7" /> + <hkern u1="Ë" u2="Õ" k="7" /> + <hkern u1="Ë" u2="Ô" k="7" /> + <hkern u1="Ë" u2="Ó" k="7" /> + <hkern u1="Ë" u2="Ò" k="7" /> + <hkern u1="Ë" u2="Ç" k="7" /> + <hkern u1="Ë" u2="y" k="14" /> + <hkern u1="Ë" u2="v" k="16" /> + <hkern u1="Ë" u2="u" k="13" /> + <hkern u1="Ë" u2="t" k="17" /> + <hkern u1="Ë" u2="s" k="6" /> + <hkern u1="Ë" u2="r" k="7" /> + <hkern u1="Ë" u2="q" k="14" /> + <hkern u1="Ë" u2="p" k="7" /> + <hkern u1="Ë" u2="o" k="14" /> + <hkern u1="Ë" u2="n" k="7" /> + <hkern u1="Ë" u2="m" k="7" /> + <hkern u1="Ë" u2="g" k="14" /> + <hkern u1="Ë" u2="f" k="11" /> + <hkern u1="Ë" u2="e" k="14" /> + <hkern u1="Ë" u2="d" k="14" /> + <hkern u1="Ë" u2="c" k="14" /> + <hkern u1="Ë" u2="a" k="7" /> + <hkern u1="Ë" u2="Q" k="7" /> + <hkern u1="Ë" u2="O" k="7" /> + <hkern u1="Ë" u2="G" k="7" /> + <hkern u1="Ë" u2="C" k="7" /> + <hkern u1="Ë" u2="&" k="7" /> + <hkern u1="Ì" g2="f_j" k="8" /> + <hkern u1="Ì" u2="st" k="11" /> + <hkern u1="Ì" u2="ffl" k="8" /> + <hkern u1="Ì" u2="ffi" k="8" /> + <hkern u1="Ì" u2="fl" k="8" /> + <hkern u1="Ì" u2="fi" k="8" /> + <hkern u1="Ì" u2="ff" k="8" /> + <hkern u1="Ì" u2="ȷ" k="10" /> + <hkern u1="Ì" u2="ț" k="11" /> + <hkern u1="Ì" u2="ș" k="11" /> + <hkern u1="Ì" u2="ǿ" k="14" /> + <hkern u1="Ì" u2="ǽ" k="11" /> + <hkern u1="Ì" u2="ſ" k="8" /> + <hkern u1="Ì" u2="ÿ" k="7" /> + <hkern u1="Ì" u2="þ" k="10" /> + <hkern u1="Ì" u2="ý" k="7" /> + <hkern u1="Ì" u2="ü" k="13" /> + <hkern u1="Ì" u2="û" k="13" /> + <hkern u1="Ì" u2="ú" k="13" /> + <hkern u1="Ì" u2="ù" k="13" /> + <hkern u1="Ì" u2="ø" k="14" /> + <hkern u1="Ì" u2="ö" k="14" /> + <hkern u1="Ì" u2="õ" k="14" /> + <hkern u1="Ì" u2="ô" k="14" /> + <hkern u1="Ì" u2="ó" k="14" /> + <hkern u1="Ì" u2="ò" k="14" /> + <hkern u1="Ì" u2="ñ" k="10" /> + <hkern u1="Ì" u2="ð" k="14" /> + <hkern u1="Ì" u2="ï" k="10" /> + <hkern u1="Ì" u2="î" k="10" /> + <hkern u1="Ì" u2="í" k="10" /> + <hkern u1="Ì" u2="ì" k="10" /> + <hkern u1="Ì" u2="ë" k="14" /> + <hkern u1="Ì" u2="ê" k="14" /> + <hkern u1="Ì" u2="é" k="14" /> + <hkern u1="Ì" u2="è" k="14" /> + <hkern u1="Ì" u2="ç" k="14" /> + <hkern u1="Ì" u2="æ" k="11" /> + <hkern u1="Ì" u2="å" k="11" /> + <hkern u1="Ì" u2="ä" k="11" /> + <hkern u1="Ì" u2="ã" k="11" /> + <hkern u1="Ì" u2="â" k="11" /> + <hkern u1="Ì" u2="á" k="11" /> + <hkern u1="Ì" u2="à" k="11" /> + <hkern u1="Ì" u2="ß" k="8" /> + <hkern u1="Ì" u2="Ý" k="5" /> + <hkern u1="Ì" u2="y" k="7" /> + <hkern u1="Ì" u2="v" k="9" /> + <hkern u1="Ì" u2="u" k="13" /> + <hkern u1="Ì" u2="t" k="11" /> + <hkern u1="Ì" u2="s" k="11" /> + <hkern u1="Ì" u2="r" k="10" /> + <hkern u1="Ì" u2="q" k="14" /> + <hkern u1="Ì" u2="p" k="10" /> + <hkern u1="Ì" u2="o" k="14" /> + <hkern u1="Ì" u2="n" k="10" /> + <hkern u1="Ì" u2="m" k="10" /> + <hkern u1="Ì" u2="k" k="10" /> + <hkern u1="Ì" u2="j" k="10" /> + <hkern u1="Ì" u2="i" k="10" /> + <hkern u1="Ì" u2="h" k="10" /> + <hkern u1="Ì" u2="g" k="14" /> + <hkern u1="Ì" u2="f" k="8" /> + <hkern u1="Ì" u2="e" k="14" /> + <hkern u1="Ì" u2="d" k="14" /> + <hkern u1="Ì" u2="c" k="14" /> + <hkern u1="Ì" u2="b" k="10" /> + <hkern u1="Ì" u2="a" k="11" /> + <hkern u1="Ì" u2="Y" k="5" /> + <hkern u1="Í" g2="f_j" k="8" /> + <hkern u1="Í" u2="st" k="11" /> + <hkern u1="Í" u2="ffl" k="8" /> + <hkern u1="Í" u2="ffi" k="8" /> + <hkern u1="Í" u2="fl" k="8" /> + <hkern u1="Í" u2="fi" k="8" /> + <hkern u1="Í" u2="ff" k="8" /> + <hkern u1="Í" u2="ȷ" k="10" /> + <hkern u1="Í" u2="ț" k="11" /> + <hkern u1="Í" u2="ș" k="11" /> + <hkern u1="Í" u2="ǿ" k="14" /> + <hkern u1="Í" u2="ǽ" k="11" /> + <hkern u1="Í" u2="ſ" k="8" /> + <hkern u1="Í" u2="ÿ" k="7" /> + <hkern u1="Í" u2="þ" k="10" /> + <hkern u1="Í" u2="ý" k="7" /> + <hkern u1="Í" u2="ü" k="13" /> + <hkern u1="Í" u2="û" k="13" /> + <hkern u1="Í" u2="ú" k="13" /> + <hkern u1="Í" u2="ù" k="13" /> + <hkern u1="Í" u2="ø" k="14" /> + <hkern u1="Í" u2="ö" k="14" /> + <hkern u1="Í" u2="õ" k="14" /> + <hkern u1="Í" u2="ô" k="14" /> + <hkern u1="Í" u2="ó" k="14" /> + <hkern u1="Í" u2="ò" k="14" /> + <hkern u1="Í" u2="ñ" k="10" /> + <hkern u1="Í" u2="ð" k="14" /> + <hkern u1="Í" u2="ï" k="10" /> + <hkern u1="Í" u2="î" k="10" /> + <hkern u1="Í" u2="í" k="10" /> + <hkern u1="Í" u2="ì" k="10" /> + <hkern u1="Í" u2="ë" k="14" /> + <hkern u1="Í" u2="ê" k="14" /> + <hkern u1="Í" u2="é" k="14" /> + <hkern u1="Í" u2="è" k="14" /> + <hkern u1="Í" u2="ç" k="14" /> + <hkern u1="Í" u2="æ" k="11" /> + <hkern u1="Í" u2="å" k="11" /> + <hkern u1="Í" u2="ä" k="11" /> + <hkern u1="Í" u2="ã" k="11" /> + <hkern u1="Í" u2="â" k="11" /> + <hkern u1="Í" u2="á" k="11" /> + <hkern u1="Í" u2="à" k="11" /> + <hkern u1="Í" u2="ß" k="8" /> + <hkern u1="Í" u2="Ý" k="5" /> + <hkern u1="Í" u2="y" k="7" /> + <hkern u1="Í" u2="v" k="9" /> + <hkern u1="Í" u2="u" k="13" /> + <hkern u1="Í" u2="t" k="11" /> + <hkern u1="Í" u2="s" k="11" /> + <hkern u1="Í" u2="r" k="10" /> + <hkern u1="Í" u2="q" k="14" /> + <hkern u1="Í" u2="p" k="10" /> + <hkern u1="Í" u2="o" k="14" /> + <hkern u1="Í" u2="n" k="10" /> + <hkern u1="Í" u2="m" k="10" /> + <hkern u1="Í" u2="k" k="10" /> + <hkern u1="Í" u2="j" k="10" /> + <hkern u1="Í" u2="i" k="10" /> + <hkern u1="Í" u2="h" k="10" /> + <hkern u1="Í" u2="g" k="14" /> + <hkern u1="Í" u2="f" k="8" /> + <hkern u1="Í" u2="e" k="14" /> + <hkern u1="Í" u2="d" k="14" /> + <hkern u1="Í" u2="c" k="14" /> + <hkern u1="Í" u2="b" k="10" /> + <hkern u1="Í" u2="a" k="11" /> + <hkern u1="Í" u2="Y" k="5" /> + <hkern u1="Î" g2="f_j" k="8" /> + <hkern u1="Î" u2="st" k="11" /> + <hkern u1="Î" u2="ffl" k="8" /> + <hkern u1="Î" u2="ffi" k="8" /> + <hkern u1="Î" u2="fl" k="8" /> + <hkern u1="Î" u2="fi" k="8" /> + <hkern u1="Î" u2="ff" k="8" /> + <hkern u1="Î" u2="ȷ" k="10" /> + <hkern u1="Î" u2="ț" k="11" /> + <hkern u1="Î" u2="ș" k="11" /> + <hkern u1="Î" u2="ǿ" k="14" /> + <hkern u1="Î" u2="ǽ" k="11" /> + <hkern u1="Î" u2="ſ" k="8" /> + <hkern u1="Î" u2="ÿ" k="7" /> + <hkern u1="Î" u2="þ" k="10" /> + <hkern u1="Î" u2="ý" k="7" /> + <hkern u1="Î" u2="ü" k="13" /> + <hkern u1="Î" u2="û" k="13" /> + <hkern u1="Î" u2="ú" k="13" /> + <hkern u1="Î" u2="ù" k="13" /> + <hkern u1="Î" u2="ø" k="14" /> + <hkern u1="Î" u2="ö" k="14" /> + <hkern u1="Î" u2="õ" k="14" /> + <hkern u1="Î" u2="ô" k="14" /> + <hkern u1="Î" u2="ó" k="14" /> + <hkern u1="Î" u2="ò" k="14" /> + <hkern u1="Î" u2="ñ" k="10" /> + <hkern u1="Î" u2="ð" k="14" /> + <hkern u1="Î" u2="ï" k="10" /> + <hkern u1="Î" u2="î" k="10" /> + <hkern u1="Î" u2="í" k="10" /> + <hkern u1="Î" u2="ì" k="10" /> + <hkern u1="Î" u2="ë" k="14" /> + <hkern u1="Î" u2="ê" k="14" /> + <hkern u1="Î" u2="é" k="14" /> + <hkern u1="Î" u2="è" k="14" /> + <hkern u1="Î" u2="ç" k="14" /> + <hkern u1="Î" u2="æ" k="11" /> + <hkern u1="Î" u2="å" k="11" /> + <hkern u1="Î" u2="ä" k="11" /> + <hkern u1="Î" u2="ã" k="11" /> + <hkern u1="Î" u2="â" k="11" /> + <hkern u1="Î" u2="á" k="11" /> + <hkern u1="Î" u2="à" k="11" /> + <hkern u1="Î" u2="ß" k="8" /> + <hkern u1="Î" u2="Ý" k="5" /> + <hkern u1="Î" u2="}" k="-11" /> + <hkern u1="Î" u2="y" k="7" /> + <hkern u1="Î" u2="v" k="9" /> + <hkern u1="Î" u2="u" k="13" /> + <hkern u1="Î" u2="t" k="11" /> + <hkern u1="Î" u2="s" k="11" /> + <hkern u1="Î" u2="r" k="10" /> + <hkern u1="Î" u2="q" k="14" /> + <hkern u1="Î" u2="p" k="10" /> + <hkern u1="Î" u2="o" k="14" /> + <hkern u1="Î" u2="n" k="10" /> + <hkern u1="Î" u2="m" k="10" /> + <hkern u1="Î" u2="k" k="10" /> + <hkern u1="Î" u2="j" k="10" /> + <hkern u1="Î" u2="i" k="10" /> + <hkern u1="Î" u2="h" k="10" /> + <hkern u1="Î" u2="g" k="14" /> + <hkern u1="Î" u2="f" k="8" /> + <hkern u1="Î" u2="e" k="14" /> + <hkern u1="Î" u2="d" k="14" /> + <hkern u1="Î" u2="c" k="14" /> + <hkern u1="Î" u2="b" k="10" /> + <hkern u1="Î" u2="a" k="11" /> + <hkern u1="Î" u2="Y" k="5" /> + <hkern u1="Î" u2=")" k="-17" /> + <hkern u1="Ï" g2="f_j" k="8" /> + <hkern u1="Ï" u2="st" k="11" /> + <hkern u1="Ï" u2="ffl" k="8" /> + <hkern u1="Ï" u2="ffi" k="8" /> + <hkern u1="Ï" u2="fl" k="8" /> + <hkern u1="Ï" u2="fi" k="8" /> + <hkern u1="Ï" u2="ff" k="8" /> + <hkern u1="Ï" u2="ȷ" k="10" /> + <hkern u1="Ï" u2="ț" k="11" /> + <hkern u1="Ï" u2="ș" k="11" /> + <hkern u1="Ï" u2="ǿ" k="14" /> + <hkern u1="Ï" u2="ǽ" k="11" /> + <hkern u1="Ï" u2="ſ" k="8" /> + <hkern u1="Ï" u2="ÿ" k="7" /> + <hkern u1="Ï" u2="þ" k="10" /> + <hkern u1="Ï" u2="ý" k="7" /> + <hkern u1="Ï" u2="ü" k="13" /> + <hkern u1="Ï" u2="û" k="13" /> + <hkern u1="Ï" u2="ú" k="13" /> + <hkern u1="Ï" u2="ù" k="13" /> + <hkern u1="Ï" u2="ø" k="14" /> + <hkern u1="Ï" u2="ö" k="14" /> + <hkern u1="Ï" u2="õ" k="14" /> + <hkern u1="Ï" u2="ô" k="14" /> + <hkern u1="Ï" u2="ó" k="14" /> + <hkern u1="Ï" u2="ò" k="14" /> + <hkern u1="Ï" u2="ñ" k="10" /> + <hkern u1="Ï" u2="ð" k="14" /> + <hkern u1="Ï" u2="ï" k="10" /> + <hkern u1="Ï" u2="î" k="10" /> + <hkern u1="Ï" u2="í" k="10" /> + <hkern u1="Ï" u2="ì" k="10" /> + <hkern u1="Ï" u2="ë" k="14" /> + <hkern u1="Ï" u2="ê" k="14" /> + <hkern u1="Ï" u2="é" k="14" /> + <hkern u1="Ï" u2="è" k="14" /> + <hkern u1="Ï" u2="ç" k="14" /> + <hkern u1="Ï" u2="æ" k="11" /> + <hkern u1="Ï" u2="å" k="11" /> + <hkern u1="Ï" u2="ä" k="11" /> + <hkern u1="Ï" u2="ã" k="11" /> + <hkern u1="Ï" u2="â" k="11" /> + <hkern u1="Ï" u2="á" k="11" /> + <hkern u1="Ï" u2="à" k="11" /> + <hkern u1="Ï" u2="ß" k="8" /> + <hkern u1="Ï" u2="Ý" k="5" /> + <hkern u1="Ï" u2="y" k="7" /> + <hkern u1="Ï" u2="v" k="9" /> + <hkern u1="Ï" u2="u" k="13" /> + <hkern u1="Ï" u2="t" k="11" /> + <hkern u1="Ï" u2="s" k="11" /> + <hkern u1="Ï" u2="r" k="10" /> + <hkern u1="Ï" u2="q" k="14" /> + <hkern u1="Ï" u2="p" k="10" /> + <hkern u1="Ï" u2="o" k="14" /> + <hkern u1="Ï" u2="n" k="10" /> + <hkern u1="Ï" u2="m" k="10" /> + <hkern u1="Ï" u2="k" k="10" /> + <hkern u1="Ï" u2="j" k="10" /> + <hkern u1="Ï" u2="i" k="10" /> + <hkern u1="Ï" u2="h" k="10" /> + <hkern u1="Ï" u2="g" k="14" /> + <hkern u1="Ï" u2="f" k="8" /> + <hkern u1="Ï" u2="e" k="14" /> + <hkern u1="Ï" u2="d" k="14" /> + <hkern u1="Ï" u2="c" k="14" /> + <hkern u1="Ï" u2="b" k="10" /> + <hkern u1="Ï" u2="a" k="11" /> + <hkern u1="Ï" u2="Y" k="5" /> + <hkern u1="Ð" u2="st" k="6" /> + <hkern u1="Ð" u2="™" k="8" /> + <hkern u1="Ð" u2="…" k="19" /> + <hkern u1="Ð" u2="„" k="19" /> + <hkern u1="Ð" u2="‚" k="19" /> + <hkern u1="Ð" u2="ȷ" k="10" /> + <hkern u1="Ð" u2="Ț" k="28" /> + <hkern u1="Ð" u2="ș" k="6" /> + <hkern u1="Ð" u2="ǿ" k="6" /> + <hkern u1="Ð" u2="ǽ" k="10" /> + <hkern u1="Ð" u2="Ǽ" k="47" /> + <hkern u1="Ð" u2="þ" k="9" /> + <hkern u1="Ð" u2="ü" k="8" /> + <hkern u1="Ð" u2="û" k="8" /> + <hkern u1="Ð" u2="ú" k="8" /> + <hkern u1="Ð" u2="ù" k="8" /> + <hkern u1="Ð" u2="ø" k="6" /> + <hkern u1="Ð" u2="ö" k="6" /> + <hkern u1="Ð" u2="õ" k="6" /> + <hkern u1="Ð" u2="ô" k="6" /> + <hkern u1="Ð" u2="ó" k="6" /> + <hkern u1="Ð" u2="ò" k="6" /> + <hkern u1="Ð" u2="ñ" k="9" /> + <hkern u1="Ð" u2="ð" k="6" /> + <hkern u1="Ð" u2="ï" k="10" /> + <hkern u1="Ð" u2="î" k="10" /> + <hkern u1="Ð" u2="í" k="10" /> + <hkern u1="Ð" u2="ì" k="10" /> + <hkern u1="Ð" u2="ë" k="6" /> + <hkern u1="Ð" u2="ê" k="6" /> + <hkern u1="Ð" u2="é" k="6" /> + <hkern u1="Ð" u2="è" k="6" /> + <hkern u1="Ð" u2="ç" k="6" /> + <hkern u1="Ð" u2="æ" k="10" /> + <hkern u1="Ð" u2="å" k="10" /> + <hkern u1="Ð" u2="ä" k="10" /> + <hkern u1="Ð" u2="ã" k="10" /> + <hkern u1="Ð" u2="â" k="10" /> + <hkern u1="Ð" u2="á" k="10" /> + <hkern u1="Ð" u2="à" k="10" /> + <hkern u1="Ð" u2="Ý" k="33" /> + <hkern u1="Ð" u2="Æ" k="47" /> + <hkern u1="Ð" u2="Å" k="15" /> + <hkern u1="Ð" u2="Ä" k="15" /> + <hkern u1="Ð" u2="Ã" k="15" /> + <hkern u1="Ð" u2="Â" k="15" /> + <hkern u1="Ð" u2="Á" k="15" /> + <hkern u1="Ð" u2="À" k="15" /> + <hkern u1="Ð" u2="}" k="18" /> + <hkern u1="Ð" u2="x" k="13" /> + <hkern u1="Ð" u2="u" k="8" /> + <hkern u1="Ð" u2="s" k="6" /> + <hkern u1="Ð" u2="r" k="9" /> + <hkern u1="Ð" u2="q" k="6" /> + <hkern u1="Ð" u2="p" k="9" /> + <hkern u1="Ð" u2="o" k="6" /> + <hkern u1="Ð" u2="n" k="9" /> + <hkern u1="Ð" u2="m" k="9" /> + <hkern u1="Ð" u2="k" k="9" /> + <hkern u1="Ð" u2="j" k="10" /> + <hkern u1="Ð" u2="i" k="10" /> + <hkern u1="Ð" u2="h" k="9" /> + <hkern u1="Ð" u2="g" k="6" /> + <hkern u1="Ð" u2="e" k="6" /> + <hkern u1="Ð" u2="d" k="6" /> + <hkern u1="Ð" u2="c" k="6" /> + <hkern u1="Ð" u2="b" k="9" /> + <hkern u1="Ð" u2="a" k="10" /> + <hkern u1="Ð" u2="]" k="18" /> + <hkern u1="Ð" u2="Y" k="33" /> + <hkern u1="Ð" u2="X" k="28" /> + <hkern u1="Ð" u2="V" k="14" /> + <hkern u1="Ð" u2="T" k="28" /> + <hkern u1="Ð" u2="A" k="15" /> + <hkern u1="Ð" u2="/" k="10" /> + <hkern u1="Ð" u2="." k="19" /> + <hkern u1="Ð" u2="," k="19" /> + <hkern u1="Ð" u2=")" k="21" /> + <hkern u1="Ñ" g2="f_j" k="8" /> + <hkern u1="Ñ" u2="st" k="11" /> + <hkern u1="Ñ" u2="ffl" k="8" /> + <hkern u1="Ñ" u2="ffi" k="8" /> + <hkern u1="Ñ" u2="fl" k="8" /> + <hkern u1="Ñ" u2="fi" k="8" /> + <hkern u1="Ñ" u2="ff" k="8" /> + <hkern u1="Ñ" u2="ȷ" k="10" /> + <hkern u1="Ñ" u2="ț" k="11" /> + <hkern u1="Ñ" u2="ș" k="11" /> + <hkern u1="Ñ" u2="ǿ" k="14" /> + <hkern u1="Ñ" u2="ǽ" k="11" /> + <hkern u1="Ñ" u2="ſ" k="8" /> + <hkern u1="Ñ" u2="ÿ" k="7" /> + <hkern u1="Ñ" u2="þ" k="10" /> + <hkern u1="Ñ" u2="ý" k="7" /> + <hkern u1="Ñ" u2="ü" k="13" /> + <hkern u1="Ñ" u2="û" k="13" /> + <hkern u1="Ñ" u2="ú" k="13" /> + <hkern u1="Ñ" u2="ù" k="13" /> + <hkern u1="Ñ" u2="ø" k="14" /> + <hkern u1="Ñ" u2="ö" k="14" /> + <hkern u1="Ñ" u2="õ" k="14" /> + <hkern u1="Ñ" u2="ô" k="14" /> + <hkern u1="Ñ" u2="ó" k="14" /> + <hkern u1="Ñ" u2="ò" k="14" /> + <hkern u1="Ñ" u2="ñ" k="10" /> + <hkern u1="Ñ" u2="ð" k="14" /> + <hkern u1="Ñ" u2="ï" k="10" /> + <hkern u1="Ñ" u2="î" k="10" /> + <hkern u1="Ñ" u2="í" k="10" /> + <hkern u1="Ñ" u2="ì" k="10" /> + <hkern u1="Ñ" u2="ë" k="14" /> + <hkern u1="Ñ" u2="ê" k="14" /> + <hkern u1="Ñ" u2="é" k="14" /> + <hkern u1="Ñ" u2="è" k="14" /> + <hkern u1="Ñ" u2="ç" k="14" /> + <hkern u1="Ñ" u2="æ" k="11" /> + <hkern u1="Ñ" u2="å" k="11" /> + <hkern u1="Ñ" u2="ä" k="11" /> + <hkern u1="Ñ" u2="ã" k="11" /> + <hkern u1="Ñ" u2="â" k="11" /> + <hkern u1="Ñ" u2="á" k="11" /> + <hkern u1="Ñ" u2="à" k="11" /> + <hkern u1="Ñ" u2="ß" k="8" /> + <hkern u1="Ñ" u2="Ý" k="5" /> + <hkern u1="Ñ" u2="y" k="7" /> + <hkern u1="Ñ" u2="v" k="9" /> + <hkern u1="Ñ" u2="u" k="13" /> + <hkern u1="Ñ" u2="t" k="11" /> + <hkern u1="Ñ" u2="s" k="11" /> + <hkern u1="Ñ" u2="r" k="10" /> + <hkern u1="Ñ" u2="q" k="14" /> + <hkern u1="Ñ" u2="p" k="10" /> + <hkern u1="Ñ" u2="o" k="14" /> + <hkern u1="Ñ" u2="n" k="10" /> + <hkern u1="Ñ" u2="m" k="10" /> + <hkern u1="Ñ" u2="k" k="10" /> + <hkern u1="Ñ" u2="j" k="10" /> + <hkern u1="Ñ" u2="i" k="10" /> + <hkern u1="Ñ" u2="h" k="10" /> + <hkern u1="Ñ" u2="g" k="14" /> + <hkern u1="Ñ" u2="f" k="8" /> + <hkern u1="Ñ" u2="e" k="14" /> + <hkern u1="Ñ" u2="d" k="14" /> + <hkern u1="Ñ" u2="c" k="14" /> + <hkern u1="Ñ" u2="b" k="10" /> + <hkern u1="Ñ" u2="a" k="11" /> + <hkern u1="Ñ" u2="Y" k="5" /> + <hkern u1="Ò" u2="st" k="6" /> + <hkern u1="Ò" u2="™" k="8" /> + <hkern u1="Ò" u2="…" k="19" /> + <hkern u1="Ò" u2="„" k="19" /> + <hkern u1="Ò" u2="‚" k="19" /> + <hkern u1="Ò" u2="ȷ" k="10" /> + <hkern u1="Ò" u2="Ț" k="24" /> + <hkern u1="Ò" u2="ș" k="6" /> + <hkern u1="Ò" u2="ǿ" k="6" /> + <hkern u1="Ò" u2="ǽ" k="10" /> + <hkern u1="Ò" u2="Ǽ" k="44" /> + <hkern u1="Ò" u2="þ" k="9" /> + <hkern u1="Ò" u2="ü" k="8" /> + <hkern u1="Ò" u2="û" k="8" /> + <hkern u1="Ò" u2="ú" k="8" /> + <hkern u1="Ò" u2="ù" k="8" /> + <hkern u1="Ò" u2="ø" k="6" /> + <hkern u1="Ò" u2="ö" k="6" /> + <hkern u1="Ò" u2="õ" k="6" /> + <hkern u1="Ò" u2="ô" k="6" /> + <hkern u1="Ò" u2="ó" k="6" /> + <hkern u1="Ò" u2="ò" k="6" /> + <hkern u1="Ò" u2="ñ" k="9" /> + <hkern u1="Ò" u2="ð" k="6" /> + <hkern u1="Ò" u2="ï" k="10" /> + <hkern u1="Ò" u2="î" k="10" /> + <hkern u1="Ò" u2="í" k="10" /> + <hkern u1="Ò" u2="ì" k="10" /> + <hkern u1="Ò" u2="ë" k="6" /> + <hkern u1="Ò" u2="ê" k="6" /> + <hkern u1="Ò" u2="é" k="6" /> + <hkern u1="Ò" u2="è" k="6" /> + <hkern u1="Ò" u2="ç" k="6" /> + <hkern u1="Ò" u2="æ" k="10" /> + <hkern u1="Ò" u2="å" k="10" /> + <hkern u1="Ò" u2="ä" k="10" /> + <hkern u1="Ò" u2="ã" k="10" /> + <hkern u1="Ò" u2="â" k="10" /> + <hkern u1="Ò" u2="á" k="10" /> + <hkern u1="Ò" u2="à" k="10" /> + <hkern u1="Ò" u2="Ý" k="31" /> + <hkern u1="Ò" u2="Æ" k="44" /> + <hkern u1="Ò" u2="Å" k="14" /> + <hkern u1="Ò" u2="Ä" k="14" /> + <hkern u1="Ò" u2="Ã" k="14" /> + <hkern u1="Ò" u2="Â" k="14" /> + <hkern u1="Ò" u2="Á" k="14" /> + <hkern u1="Ò" u2="À" k="14" /> + <hkern u1="Ò" u2="}" k="17" /> + <hkern u1="Ò" u2="x" k="13" /> + <hkern u1="Ò" u2="u" k="8" /> + <hkern u1="Ò" u2="s" k="6" /> + <hkern u1="Ò" u2="r" k="9" /> + <hkern u1="Ò" u2="q" k="6" /> + <hkern u1="Ò" u2="p" k="9" /> + <hkern u1="Ò" u2="o" k="6" /> + <hkern u1="Ò" u2="n" k="9" /> + <hkern u1="Ò" u2="m" k="9" /> + <hkern u1="Ò" u2="k" k="9" /> + <hkern u1="Ò" u2="j" k="10" /> + <hkern u1="Ò" u2="i" k="10" /> + <hkern u1="Ò" u2="h" k="9" /> + <hkern u1="Ò" u2="g" k="6" /> + <hkern u1="Ò" u2="e" k="6" /> + <hkern u1="Ò" u2="d" k="6" /> + <hkern u1="Ò" u2="c" k="6" /> + <hkern u1="Ò" u2="b" k="9" /> + <hkern u1="Ò" u2="a" k="10" /> + <hkern u1="Ò" u2="]" k="18" /> + <hkern u1="Ò" u2="Y" k="31" /> + <hkern u1="Ò" u2="X" k="26" /> + <hkern u1="Ò" u2="V" k="13" /> + <hkern u1="Ò" u2="T" k="24" /> + <hkern u1="Ò" u2="A" k="14" /> + <hkern u1="Ò" u2="." k="19" /> + <hkern u1="Ò" u2="," k="19" /> + <hkern u1="Ò" u2=")" k="21" /> + <hkern u1="Ó" u2="st" k="6" /> + <hkern u1="Ó" u2="™" k="8" /> + <hkern u1="Ó" u2="…" k="19" /> + <hkern u1="Ó" u2="„" k="19" /> + <hkern u1="Ó" u2="‚" k="19" /> + <hkern u1="Ó" u2="ȷ" k="10" /> + <hkern u1="Ó" u2="Ț" k="24" /> + <hkern u1="Ó" u2="ș" k="6" /> + <hkern u1="Ó" u2="ǿ" k="6" /> + <hkern u1="Ó" u2="ǽ" k="10" /> + <hkern u1="Ó" u2="Ǽ" k="44" /> + <hkern u1="Ó" u2="þ" k="9" /> + <hkern u1="Ó" u2="ü" k="8" /> + <hkern u1="Ó" u2="û" k="8" /> + <hkern u1="Ó" u2="ú" k="8" /> + <hkern u1="Ó" u2="ù" k="8" /> + <hkern u1="Ó" u2="ø" k="6" /> + <hkern u1="Ó" u2="ö" k="6" /> + <hkern u1="Ó" u2="õ" k="6" /> + <hkern u1="Ó" u2="ô" k="6" /> + <hkern u1="Ó" u2="ó" k="6" /> + <hkern u1="Ó" u2="ò" k="6" /> + <hkern u1="Ó" u2="ñ" k="9" /> + <hkern u1="Ó" u2="ð" k="6" /> + <hkern u1="Ó" u2="ï" k="10" /> + <hkern u1="Ó" u2="î" k="10" /> + <hkern u1="Ó" u2="í" k="10" /> + <hkern u1="Ó" u2="ì" k="10" /> + <hkern u1="Ó" u2="ë" k="6" /> + <hkern u1="Ó" u2="ê" k="6" /> + <hkern u1="Ó" u2="é" k="6" /> + <hkern u1="Ó" u2="è" k="6" /> + <hkern u1="Ó" u2="ç" k="6" /> + <hkern u1="Ó" u2="æ" k="10" /> + <hkern u1="Ó" u2="å" k="10" /> + <hkern u1="Ó" u2="ä" k="10" /> + <hkern u1="Ó" u2="ã" k="10" /> + <hkern u1="Ó" u2="â" k="10" /> + <hkern u1="Ó" u2="á" k="10" /> + <hkern u1="Ó" u2="à" k="10" /> + <hkern u1="Ó" u2="Ý" k="31" /> + <hkern u1="Ó" u2="Æ" k="44" /> + <hkern u1="Ó" u2="Å" k="14" /> + <hkern u1="Ó" u2="Ä" k="14" /> + <hkern u1="Ó" u2="Ã" k="14" /> + <hkern u1="Ó" u2="Â" k="14" /> + <hkern u1="Ó" u2="Á" k="14" /> + <hkern u1="Ó" u2="À" k="14" /> + <hkern u1="Ó" u2="}" k="17" /> + <hkern u1="Ó" u2="x" k="13" /> + <hkern u1="Ó" u2="u" k="8" /> + <hkern u1="Ó" u2="s" k="6" /> + <hkern u1="Ó" u2="r" k="9" /> + <hkern u1="Ó" u2="q" k="6" /> + <hkern u1="Ó" u2="p" k="9" /> + <hkern u1="Ó" u2="o" k="6" /> + <hkern u1="Ó" u2="n" k="9" /> + <hkern u1="Ó" u2="m" k="9" /> + <hkern u1="Ó" u2="k" k="9" /> + <hkern u1="Ó" u2="j" k="10" /> + <hkern u1="Ó" u2="i" k="10" /> + <hkern u1="Ó" u2="h" k="9" /> + <hkern u1="Ó" u2="g" k="6" /> + <hkern u1="Ó" u2="e" k="6" /> + <hkern u1="Ó" u2="d" k="6" /> + <hkern u1="Ó" u2="c" k="6" /> + <hkern u1="Ó" u2="b" k="9" /> + <hkern u1="Ó" u2="a" k="10" /> + <hkern u1="Ó" u2="]" k="18" /> + <hkern u1="Ó" u2="Y" k="31" /> + <hkern u1="Ó" u2="X" k="26" /> + <hkern u1="Ó" u2="V" k="13" /> + <hkern u1="Ó" u2="T" k="24" /> + <hkern u1="Ó" u2="A" k="14" /> + <hkern u1="Ó" u2="." k="19" /> + <hkern u1="Ó" u2="," k="19" /> + <hkern u1="Ó" u2=")" k="21" /> + <hkern u1="Ô" u2="st" k="6" /> + <hkern u1="Ô" u2="™" k="8" /> + <hkern u1="Ô" u2="…" k="19" /> + <hkern u1="Ô" u2="„" k="19" /> + <hkern u1="Ô" u2="‚" k="19" /> + <hkern u1="Ô" u2="ȷ" k="10" /> + <hkern u1="Ô" u2="Ț" k="24" /> + <hkern u1="Ô" u2="ș" k="6" /> + <hkern u1="Ô" u2="ǿ" k="6" /> + <hkern u1="Ô" u2="ǽ" k="10" /> + <hkern u1="Ô" u2="Ǽ" k="44" /> + <hkern u1="Ô" u2="þ" k="9" /> + <hkern u1="Ô" u2="ü" k="8" /> + <hkern u1="Ô" u2="û" k="8" /> + <hkern u1="Ô" u2="ú" k="8" /> + <hkern u1="Ô" u2="ù" k="8" /> + <hkern u1="Ô" u2="ø" k="6" /> + <hkern u1="Ô" u2="ö" k="6" /> + <hkern u1="Ô" u2="õ" k="6" /> + <hkern u1="Ô" u2="ô" k="6" /> + <hkern u1="Ô" u2="ó" k="6" /> + <hkern u1="Ô" u2="ò" k="6" /> + <hkern u1="Ô" u2="ñ" k="9" /> + <hkern u1="Ô" u2="ð" k="6" /> + <hkern u1="Ô" u2="ï" k="10" /> + <hkern u1="Ô" u2="î" k="10" /> + <hkern u1="Ô" u2="í" k="10" /> + <hkern u1="Ô" u2="ì" k="10" /> + <hkern u1="Ô" u2="ë" k="6" /> + <hkern u1="Ô" u2="ê" k="6" /> + <hkern u1="Ô" u2="é" k="6" /> + <hkern u1="Ô" u2="è" k="6" /> + <hkern u1="Ô" u2="ç" k="6" /> + <hkern u1="Ô" u2="æ" k="10" /> + <hkern u1="Ô" u2="å" k="10" /> + <hkern u1="Ô" u2="ä" k="10" /> + <hkern u1="Ô" u2="ã" k="10" /> + <hkern u1="Ô" u2="â" k="10" /> + <hkern u1="Ô" u2="á" k="10" /> + <hkern u1="Ô" u2="à" k="10" /> + <hkern u1="Ô" u2="Ý" k="31" /> + <hkern u1="Ô" u2="Æ" k="44" /> + <hkern u1="Ô" u2="Å" k="14" /> + <hkern u1="Ô" u2="Ä" k="14" /> + <hkern u1="Ô" u2="Ã" k="14" /> + <hkern u1="Ô" u2="Â" k="14" /> + <hkern u1="Ô" u2="Á" k="14" /> + <hkern u1="Ô" u2="À" k="14" /> + <hkern u1="Ô" u2="}" k="17" /> + <hkern u1="Ô" u2="x" k="13" /> + <hkern u1="Ô" u2="u" k="8" /> + <hkern u1="Ô" u2="s" k="6" /> + <hkern u1="Ô" u2="r" k="9" /> + <hkern u1="Ô" u2="q" k="6" /> + <hkern u1="Ô" u2="p" k="9" /> + <hkern u1="Ô" u2="o" k="6" /> + <hkern u1="Ô" u2="n" k="9" /> + <hkern u1="Ô" u2="m" k="9" /> + <hkern u1="Ô" u2="k" k="9" /> + <hkern u1="Ô" u2="j" k="10" /> + <hkern u1="Ô" u2="i" k="10" /> + <hkern u1="Ô" u2="h" k="9" /> + <hkern u1="Ô" u2="g" k="6" /> + <hkern u1="Ô" u2="e" k="6" /> + <hkern u1="Ô" u2="d" k="6" /> + <hkern u1="Ô" u2="c" k="6" /> + <hkern u1="Ô" u2="b" k="9" /> + <hkern u1="Ô" u2="a" k="10" /> + <hkern u1="Ô" u2="]" k="18" /> + <hkern u1="Ô" u2="Y" k="31" /> + <hkern u1="Ô" u2="X" k="26" /> + <hkern u1="Ô" u2="V" k="13" /> + <hkern u1="Ô" u2="T" k="24" /> + <hkern u1="Ô" u2="A" k="14" /> + <hkern u1="Ô" u2="." k="19" /> + <hkern u1="Ô" u2="," k="19" /> + <hkern u1="Ô" u2=")" k="21" /> + <hkern u1="Õ" u2="st" k="6" /> + <hkern u1="Õ" u2="™" k="8" /> + <hkern u1="Õ" u2="…" k="19" /> + <hkern u1="Õ" u2="„" k="19" /> + <hkern u1="Õ" u2="‚" k="19" /> + <hkern u1="Õ" u2="ȷ" k="10" /> + <hkern u1="Õ" u2="Ț" k="24" /> + <hkern u1="Õ" u2="ș" k="6" /> + <hkern u1="Õ" u2="ǿ" k="6" /> + <hkern u1="Õ" u2="ǽ" k="10" /> + <hkern u1="Õ" u2="Ǽ" k="44" /> + <hkern u1="Õ" u2="þ" k="9" /> + <hkern u1="Õ" u2="ü" k="8" /> + <hkern u1="Õ" u2="û" k="8" /> + <hkern u1="Õ" u2="ú" k="8" /> + <hkern u1="Õ" u2="ù" k="8" /> + <hkern u1="Õ" u2="ø" k="6" /> + <hkern u1="Õ" u2="ö" k="6" /> + <hkern u1="Õ" u2="õ" k="6" /> + <hkern u1="Õ" u2="ô" k="6" /> + <hkern u1="Õ" u2="ó" k="6" /> + <hkern u1="Õ" u2="ò" k="6" /> + <hkern u1="Õ" u2="ñ" k="9" /> + <hkern u1="Õ" u2="ð" k="6" /> + <hkern u1="Õ" u2="ï" k="10" /> + <hkern u1="Õ" u2="î" k="10" /> + <hkern u1="Õ" u2="í" k="10" /> + <hkern u1="Õ" u2="ì" k="10" /> + <hkern u1="Õ" u2="ë" k="6" /> + <hkern u1="Õ" u2="ê" k="6" /> + <hkern u1="Õ" u2="é" k="6" /> + <hkern u1="Õ" u2="è" k="6" /> + <hkern u1="Õ" u2="ç" k="6" /> + <hkern u1="Õ" u2="æ" k="10" /> + <hkern u1="Õ" u2="å" k="10" /> + <hkern u1="Õ" u2="ä" k="10" /> + <hkern u1="Õ" u2="ã" k="10" /> + <hkern u1="Õ" u2="â" k="10" /> + <hkern u1="Õ" u2="á" k="10" /> + <hkern u1="Õ" u2="à" k="10" /> + <hkern u1="Õ" u2="Ý" k="31" /> + <hkern u1="Õ" u2="Æ" k="44" /> + <hkern u1="Õ" u2="Å" k="14" /> + <hkern u1="Õ" u2="Ä" k="14" /> + <hkern u1="Õ" u2="Ã" k="14" /> + <hkern u1="Õ" u2="Â" k="14" /> + <hkern u1="Õ" u2="Á" k="14" /> + <hkern u1="Õ" u2="À" k="14" /> + <hkern u1="Õ" u2="}" k="17" /> + <hkern u1="Õ" u2="x" k="13" /> + <hkern u1="Õ" u2="u" k="8" /> + <hkern u1="Õ" u2="s" k="6" /> + <hkern u1="Õ" u2="r" k="9" /> + <hkern u1="Õ" u2="q" k="6" /> + <hkern u1="Õ" u2="p" k="9" /> + <hkern u1="Õ" u2="o" k="6" /> + <hkern u1="Õ" u2="n" k="9" /> + <hkern u1="Õ" u2="m" k="9" /> + <hkern u1="Õ" u2="k" k="9" /> + <hkern u1="Õ" u2="j" k="10" /> + <hkern u1="Õ" u2="i" k="10" /> + <hkern u1="Õ" u2="h" k="9" /> + <hkern u1="Õ" u2="g" k="6" /> + <hkern u1="Õ" u2="e" k="6" /> + <hkern u1="Õ" u2="d" k="6" /> + <hkern u1="Õ" u2="c" k="6" /> + <hkern u1="Õ" u2="b" k="9" /> + <hkern u1="Õ" u2="a" k="10" /> + <hkern u1="Õ" u2="]" k="18" /> + <hkern u1="Õ" u2="Y" k="31" /> + <hkern u1="Õ" u2="X" k="26" /> + <hkern u1="Õ" u2="V" k="13" /> + <hkern u1="Õ" u2="T" k="24" /> + <hkern u1="Õ" u2="A" k="14" /> + <hkern u1="Õ" u2="." k="19" /> + <hkern u1="Õ" u2="," k="19" /> + <hkern u1="Õ" u2=")" k="21" /> + <hkern u1="Ö" u2="st" k="6" /> + <hkern u1="Ö" u2="™" k="8" /> + <hkern u1="Ö" u2="…" k="19" /> + <hkern u1="Ö" u2="„" k="19" /> + <hkern u1="Ö" u2="‚" k="19" /> + <hkern u1="Ö" u2="ȷ" k="10" /> + <hkern u1="Ö" u2="Ț" k="24" /> + <hkern u1="Ö" u2="ș" k="6" /> + <hkern u1="Ö" u2="ǿ" k="6" /> + <hkern u1="Ö" u2="ǽ" k="10" /> + <hkern u1="Ö" u2="Ǽ" k="44" /> + <hkern u1="Ö" u2="þ" k="9" /> + <hkern u1="Ö" u2="ü" k="8" /> + <hkern u1="Ö" u2="û" k="8" /> + <hkern u1="Ö" u2="ú" k="8" /> + <hkern u1="Ö" u2="ù" k="8" /> + <hkern u1="Ö" u2="ø" k="6" /> + <hkern u1="Ö" u2="ö" k="6" /> + <hkern u1="Ö" u2="õ" k="6" /> + <hkern u1="Ö" u2="ô" k="6" /> + <hkern u1="Ö" u2="ó" k="6" /> + <hkern u1="Ö" u2="ò" k="6" /> + <hkern u1="Ö" u2="ñ" k="9" /> + <hkern u1="Ö" u2="ð" k="6" /> + <hkern u1="Ö" u2="ï" k="10" /> + <hkern u1="Ö" u2="î" k="10" /> + <hkern u1="Ö" u2="í" k="10" /> + <hkern u1="Ö" u2="ì" k="10" /> + <hkern u1="Ö" u2="ë" k="6" /> + <hkern u1="Ö" u2="ê" k="6" /> + <hkern u1="Ö" u2="é" k="6" /> + <hkern u1="Ö" u2="è" k="6" /> + <hkern u1="Ö" u2="ç" k="6" /> + <hkern u1="Ö" u2="æ" k="10" /> + <hkern u1="Ö" u2="å" k="10" /> + <hkern u1="Ö" u2="ä" k="10" /> + <hkern u1="Ö" u2="ã" k="10" /> + <hkern u1="Ö" u2="â" k="10" /> + <hkern u1="Ö" u2="á" k="10" /> + <hkern u1="Ö" u2="à" k="10" /> + <hkern u1="Ö" u2="Ý" k="31" /> + <hkern u1="Ö" u2="Æ" k="44" /> + <hkern u1="Ö" u2="Å" k="14" /> + <hkern u1="Ö" u2="Ä" k="14" /> + <hkern u1="Ö" u2="Ã" k="14" /> + <hkern u1="Ö" u2="Â" k="14" /> + <hkern u1="Ö" u2="Á" k="14" /> + <hkern u1="Ö" u2="À" k="14" /> + <hkern u1="Ö" u2="}" k="17" /> + <hkern u1="Ö" u2="x" k="13" /> + <hkern u1="Ö" u2="u" k="8" /> + <hkern u1="Ö" u2="s" k="6" /> + <hkern u1="Ö" u2="r" k="9" /> + <hkern u1="Ö" u2="q" k="6" /> + <hkern u1="Ö" u2="p" k="9" /> + <hkern u1="Ö" u2="o" k="6" /> + <hkern u1="Ö" u2="n" k="9" /> + <hkern u1="Ö" u2="m" k="9" /> + <hkern u1="Ö" u2="k" k="9" /> + <hkern u1="Ö" u2="j" k="10" /> + <hkern u1="Ö" u2="i" k="10" /> + <hkern u1="Ö" u2="h" k="9" /> + <hkern u1="Ö" u2="g" k="6" /> + <hkern u1="Ö" u2="e" k="6" /> + <hkern u1="Ö" u2="d" k="6" /> + <hkern u1="Ö" u2="c" k="6" /> + <hkern u1="Ö" u2="b" k="9" /> + <hkern u1="Ö" u2="a" k="10" /> + <hkern u1="Ö" u2="]" k="18" /> + <hkern u1="Ö" u2="Y" k="31" /> + <hkern u1="Ö" u2="X" k="26" /> + <hkern u1="Ö" u2="V" k="13" /> + <hkern u1="Ö" u2="T" k="24" /> + <hkern u1="Ö" u2="A" k="14" /> + <hkern u1="Ö" u2="." k="19" /> + <hkern u1="Ö" u2="," k="19" /> + <hkern u1="Ö" u2=")" k="21" /> + <hkern u1="Ø" u2="st" k="6" /> + <hkern u1="Ø" u2="™" k="8" /> + <hkern u1="Ø" u2="…" k="19" /> + <hkern u1="Ø" u2="„" k="19" /> + <hkern u1="Ø" u2="‚" k="19" /> + <hkern u1="Ø" u2="ȷ" k="10" /> + <hkern u1="Ø" u2="Ț" k="24" /> + <hkern u1="Ø" u2="ș" k="6" /> + <hkern u1="Ø" u2="ǿ" k="6" /> + <hkern u1="Ø" u2="ǽ" k="10" /> + <hkern u1="Ø" u2="Ǽ" k="44" /> + <hkern u1="Ø" u2="þ" k="9" /> + <hkern u1="Ø" u2="ü" k="8" /> + <hkern u1="Ø" u2="û" k="8" /> + <hkern u1="Ø" u2="ú" k="8" /> + <hkern u1="Ø" u2="ù" k="8" /> + <hkern u1="Ø" u2="ø" k="6" /> + <hkern u1="Ø" u2="ö" k="6" /> + <hkern u1="Ø" u2="õ" k="6" /> + <hkern u1="Ø" u2="ô" k="6" /> + <hkern u1="Ø" u2="ó" k="6" /> + <hkern u1="Ø" u2="ò" k="6" /> + <hkern u1="Ø" u2="ñ" k="9" /> + <hkern u1="Ø" u2="ð" k="6" /> + <hkern u1="Ø" u2="ï" k="10" /> + <hkern u1="Ø" u2="î" k="10" /> + <hkern u1="Ø" u2="í" k="10" /> + <hkern u1="Ø" u2="ì" k="10" /> + <hkern u1="Ø" u2="ë" k="6" /> + <hkern u1="Ø" u2="ê" k="6" /> + <hkern u1="Ø" u2="é" k="6" /> + <hkern u1="Ø" u2="è" k="6" /> + <hkern u1="Ø" u2="ç" k="6" /> + <hkern u1="Ø" u2="æ" k="10" /> + <hkern u1="Ø" u2="å" k="10" /> + <hkern u1="Ø" u2="ä" k="10" /> + <hkern u1="Ø" u2="ã" k="10" /> + <hkern u1="Ø" u2="â" k="10" /> + <hkern u1="Ø" u2="á" k="10" /> + <hkern u1="Ø" u2="à" k="10" /> + <hkern u1="Ø" u2="Ý" k="31" /> + <hkern u1="Ø" u2="Æ" k="44" /> + <hkern u1="Ø" u2="Å" k="14" /> + <hkern u1="Ø" u2="Ä" k="14" /> + <hkern u1="Ø" u2="Ã" k="14" /> + <hkern u1="Ø" u2="Â" k="14" /> + <hkern u1="Ø" u2="Á" k="14" /> + <hkern u1="Ø" u2="À" k="14" /> + <hkern u1="Ø" u2="}" k="17" /> + <hkern u1="Ø" u2="x" k="13" /> + <hkern u1="Ø" u2="u" k="8" /> + <hkern u1="Ø" u2="s" k="6" /> + <hkern u1="Ø" u2="r" k="9" /> + <hkern u1="Ø" u2="q" k="6" /> + <hkern u1="Ø" u2="p" k="9" /> + <hkern u1="Ø" u2="o" k="6" /> + <hkern u1="Ø" u2="n" k="9" /> + <hkern u1="Ø" u2="m" k="9" /> + <hkern u1="Ø" u2="k" k="9" /> + <hkern u1="Ø" u2="j" k="10" /> + <hkern u1="Ø" u2="i" k="10" /> + <hkern u1="Ø" u2="h" k="9" /> + <hkern u1="Ø" u2="g" k="6" /> + <hkern u1="Ø" u2="e" k="6" /> + <hkern u1="Ø" u2="d" k="6" /> + <hkern u1="Ø" u2="c" k="6" /> + <hkern u1="Ø" u2="b" k="9" /> + <hkern u1="Ø" u2="a" k="10" /> + <hkern u1="Ø" u2="]" k="18" /> + <hkern u1="Ø" u2="Y" k="31" /> + <hkern u1="Ø" u2="X" k="26" /> + <hkern u1="Ø" u2="V" k="13" /> + <hkern u1="Ø" u2="T" k="24" /> + <hkern u1="Ø" u2="A" k="14" /> + <hkern u1="Ø" u2="." k="19" /> + <hkern u1="Ø" u2="," k="19" /> + <hkern u1="Ø" u2=")" k="21" /> + <hkern u1="Ù" g2="f_j" k="8" /> + <hkern u1="Ù" u2="st" k="16" /> + <hkern u1="Ù" u2="ffl" k="8" /> + <hkern u1="Ù" u2="ffi" k="8" /> + <hkern u1="Ù" u2="fl" k="8" /> + <hkern u1="Ù" u2="fi" k="8" /> + <hkern u1="Ù" u2="ff" k="8" /> + <hkern u1="Ù" u2="…" k="18" /> + <hkern u1="Ù" u2="„" k="18" /> + <hkern u1="Ù" u2="‚" k="18" /> + <hkern u1="Ù" u2="ȷ" k="15" /> + <hkern u1="Ù" u2="ț" k="10" /> + <hkern u1="Ù" u2="ș" k="16" /> + <hkern u1="Ù" u2="ǿ" k="15" /> + <hkern u1="Ù" u2="ǽ" k="17" /> + <hkern u1="Ù" u2="Ǽ" k="10" /> + <hkern u1="Ù" u2="ſ" k="8" /> + <hkern u1="Ù" u2="ÿ" k="6" /> + <hkern u1="Ù" u2="þ" k="13" /> + <hkern u1="Ù" u2="ý" k="6" /> + <hkern u1="Ù" u2="ü" k="18" /> + <hkern u1="Ù" u2="û" k="18" /> + <hkern u1="Ù" u2="ú" k="18" /> + <hkern u1="Ù" u2="ù" k="18" /> + <hkern u1="Ù" u2="ø" k="15" /> + <hkern u1="Ù" u2="ö" k="15" /> + <hkern u1="Ù" u2="õ" k="15" /> + <hkern u1="Ù" u2="ô" k="15" /> + <hkern u1="Ù" u2="ó" k="15" /> + <hkern u1="Ù" u2="ò" k="15" /> + <hkern u1="Ù" u2="ñ" k="18" /> + <hkern u1="Ù" u2="ð" k="15" /> + <hkern u1="Ù" u2="ï" k="15" /> + <hkern u1="Ù" u2="î" k="15" /> + <hkern u1="Ù" u2="í" k="15" /> + <hkern u1="Ù" u2="ì" k="15" /> + <hkern u1="Ù" u2="ë" k="15" /> + <hkern u1="Ù" u2="ê" k="15" /> + <hkern u1="Ù" u2="é" k="15" /> + <hkern u1="Ù" u2="è" k="15" /> + <hkern u1="Ù" u2="ç" k="15" /> + <hkern u1="Ù" u2="æ" k="17" /> + <hkern u1="Ù" u2="å" k="17" /> + <hkern u1="Ù" u2="ä" k="17" /> + <hkern u1="Ù" u2="ã" k="17" /> + <hkern u1="Ù" u2="â" k="17" /> + <hkern u1="Ù" u2="á" k="17" /> + <hkern u1="Ù" u2="à" k="17" /> + <hkern u1="Ù" u2="ß" k="8" /> + <hkern u1="Ù" u2="Æ" k="10" /> + <hkern u1="Ù" u2="Å" k="20" /> + <hkern u1="Ù" u2="Ä" k="20" /> + <hkern u1="Ù" u2="Ã" k="20" /> + <hkern u1="Ù" u2="Â" k="20" /> + <hkern u1="Ù" u2="Á" k="20" /> + <hkern u1="Ù" u2="À" k="20" /> + <hkern u1="Ù" u2="y" k="6" /> + <hkern u1="Ù" u2="x" k="10" /> + <hkern u1="Ù" u2="v" k="8" /> + <hkern u1="Ù" u2="u" k="18" /> + <hkern u1="Ù" u2="t" k="10" /> + <hkern u1="Ù" u2="s" k="16" /> + <hkern u1="Ù" u2="r" k="18" /> + <hkern u1="Ù" u2="q" k="15" /> + <hkern u1="Ù" u2="p" k="18" /> + <hkern u1="Ù" u2="o" k="15" /> + <hkern u1="Ù" u2="n" k="18" /> + <hkern u1="Ù" u2="m" k="18" /> + <hkern u1="Ù" u2="k" k="13" /> + <hkern u1="Ù" u2="j" k="15" /> + <hkern u1="Ù" u2="i" k="15" /> + <hkern u1="Ù" u2="h" k="13" /> + <hkern u1="Ù" u2="g" k="15" /> + <hkern u1="Ù" u2="f" k="8" /> + <hkern u1="Ù" u2="e" k="15" /> + <hkern u1="Ù" u2="d" k="15" /> + <hkern u1="Ù" u2="c" k="15" /> + <hkern u1="Ù" u2="b" k="13" /> + <hkern u1="Ù" u2="a" k="17" /> + <hkern u1="Ù" u2="A" k="20" /> + <hkern u1="Ù" u2="/" k="14" /> + <hkern u1="Ù" u2="." k="18" /> + <hkern u1="Ù" u2="," k="18" /> + <hkern u1="Ù" u2=")" k="11" /> + <hkern u1="Ú" g2="f_j" k="8" /> + <hkern u1="Ú" u2="st" k="16" /> + <hkern u1="Ú" u2="ffl" k="8" /> + <hkern u1="Ú" u2="ffi" k="8" /> + <hkern u1="Ú" u2="fl" k="8" /> + <hkern u1="Ú" u2="fi" k="8" /> + <hkern u1="Ú" u2="ff" k="8" /> + <hkern u1="Ú" u2="…" k="18" /> + <hkern u1="Ú" u2="„" k="18" /> + <hkern u1="Ú" u2="‚" k="18" /> + <hkern u1="Ú" u2="ȷ" k="15" /> + <hkern u1="Ú" u2="ț" k="10" /> + <hkern u1="Ú" u2="ș" k="16" /> + <hkern u1="Ú" u2="ǿ" k="15" /> + <hkern u1="Ú" u2="ǽ" k="17" /> + <hkern u1="Ú" u2="Ǽ" k="10" /> + <hkern u1="Ú" u2="ſ" k="8" /> + <hkern u1="Ú" u2="ÿ" k="6" /> + <hkern u1="Ú" u2="þ" k="13" /> + <hkern u1="Ú" u2="ý" k="6" /> + <hkern u1="Ú" u2="ü" k="18" /> + <hkern u1="Ú" u2="û" k="18" /> + <hkern u1="Ú" u2="ú" k="18" /> + <hkern u1="Ú" u2="ù" k="18" /> + <hkern u1="Ú" u2="ø" k="15" /> + <hkern u1="Ú" u2="ö" k="15" /> + <hkern u1="Ú" u2="õ" k="15" /> + <hkern u1="Ú" u2="ô" k="15" /> + <hkern u1="Ú" u2="ó" k="15" /> + <hkern u1="Ú" u2="ò" k="15" /> + <hkern u1="Ú" u2="ñ" k="18" /> + <hkern u1="Ú" u2="ð" k="15" /> + <hkern u1="Ú" u2="ï" k="15" /> + <hkern u1="Ú" u2="î" k="15" /> + <hkern u1="Ú" u2="í" k="15" /> + <hkern u1="Ú" u2="ì" k="15" /> + <hkern u1="Ú" u2="ë" k="15" /> + <hkern u1="Ú" u2="ê" k="15" /> + <hkern u1="Ú" u2="é" k="15" /> + <hkern u1="Ú" u2="è" k="15" /> + <hkern u1="Ú" u2="ç" k="15" /> + <hkern u1="Ú" u2="æ" k="17" /> + <hkern u1="Ú" u2="å" k="17" /> + <hkern u1="Ú" u2="ä" k="17" /> + <hkern u1="Ú" u2="ã" k="17" /> + <hkern u1="Ú" u2="â" k="17" /> + <hkern u1="Ú" u2="á" k="17" /> + <hkern u1="Ú" u2="à" k="17" /> + <hkern u1="Ú" u2="ß" k="8" /> + <hkern u1="Ú" u2="Æ" k="10" /> + <hkern u1="Ú" u2="Å" k="20" /> + <hkern u1="Ú" u2="Ä" k="20" /> + <hkern u1="Ú" u2="Ã" k="20" /> + <hkern u1="Ú" u2="Â" k="20" /> + <hkern u1="Ú" u2="Á" k="20" /> + <hkern u1="Ú" u2="À" k="20" /> + <hkern u1="Ú" u2="y" k="6" /> + <hkern u1="Ú" u2="x" k="10" /> + <hkern u1="Ú" u2="v" k="8" /> + <hkern u1="Ú" u2="u" k="18" /> + <hkern u1="Ú" u2="t" k="10" /> + <hkern u1="Ú" u2="s" k="16" /> + <hkern u1="Ú" u2="r" k="18" /> + <hkern u1="Ú" u2="q" k="15" /> + <hkern u1="Ú" u2="p" k="18" /> + <hkern u1="Ú" u2="o" k="15" /> + <hkern u1="Ú" u2="n" k="18" /> + <hkern u1="Ú" u2="m" k="18" /> + <hkern u1="Ú" u2="k" k="13" /> + <hkern u1="Ú" u2="j" k="15" /> + <hkern u1="Ú" u2="i" k="15" /> + <hkern u1="Ú" u2="h" k="13" /> + <hkern u1="Ú" u2="g" k="15" /> + <hkern u1="Ú" u2="f" k="8" /> + <hkern u1="Ú" u2="e" k="15" /> + <hkern u1="Ú" u2="d" k="15" /> + <hkern u1="Ú" u2="c" k="15" /> + <hkern u1="Ú" u2="b" k="13" /> + <hkern u1="Ú" u2="a" k="17" /> + <hkern u1="Ú" u2="A" k="20" /> + <hkern u1="Ú" u2="/" k="14" /> + <hkern u1="Ú" u2="." k="18" /> + <hkern u1="Ú" u2="," k="18" /> + <hkern u1="Ú" u2=")" k="11" /> + <hkern u1="Û" g2="f_j" k="8" /> + <hkern u1="Û" u2="st" k="16" /> + <hkern u1="Û" u2="ffl" k="8" /> + <hkern u1="Û" u2="ffi" k="8" /> + <hkern u1="Û" u2="fl" k="8" /> + <hkern u1="Û" u2="fi" k="8" /> + <hkern u1="Û" u2="ff" k="8" /> + <hkern u1="Û" u2="…" k="18" /> + <hkern u1="Û" u2="„" k="18" /> + <hkern u1="Û" u2="‚" k="18" /> + <hkern u1="Û" u2="ȷ" k="15" /> + <hkern u1="Û" u2="ț" k="10" /> + <hkern u1="Û" u2="ș" k="16" /> + <hkern u1="Û" u2="ǿ" k="15" /> + <hkern u1="Û" u2="ǽ" k="17" /> + <hkern u1="Û" u2="Ǽ" k="10" /> + <hkern u1="Û" u2="ſ" k="8" /> + <hkern u1="Û" u2="ÿ" k="6" /> + <hkern u1="Û" u2="þ" k="13" /> + <hkern u1="Û" u2="ý" k="6" /> + <hkern u1="Û" u2="ü" k="18" /> + <hkern u1="Û" u2="û" k="18" /> + <hkern u1="Û" u2="ú" k="18" /> + <hkern u1="Û" u2="ù" k="18" /> + <hkern u1="Û" u2="ø" k="15" /> + <hkern u1="Û" u2="ö" k="15" /> + <hkern u1="Û" u2="õ" k="15" /> + <hkern u1="Û" u2="ô" k="15" /> + <hkern u1="Û" u2="ó" k="15" /> + <hkern u1="Û" u2="ò" k="15" /> + <hkern u1="Û" u2="ñ" k="18" /> + <hkern u1="Û" u2="ð" k="15" /> + <hkern u1="Û" u2="ï" k="15" /> + <hkern u1="Û" u2="î" k="15" /> + <hkern u1="Û" u2="í" k="15" /> + <hkern u1="Û" u2="ì" k="15" /> + <hkern u1="Û" u2="ë" k="15" /> + <hkern u1="Û" u2="ê" k="15" /> + <hkern u1="Û" u2="é" k="15" /> + <hkern u1="Û" u2="è" k="15" /> + <hkern u1="Û" u2="ç" k="15" /> + <hkern u1="Û" u2="æ" k="17" /> + <hkern u1="Û" u2="å" k="17" /> + <hkern u1="Û" u2="ä" k="17" /> + <hkern u1="Û" u2="ã" k="17" /> + <hkern u1="Û" u2="â" k="17" /> + <hkern u1="Û" u2="á" k="17" /> + <hkern u1="Û" u2="à" k="17" /> + <hkern u1="Û" u2="ß" k="8" /> + <hkern u1="Û" u2="Æ" k="10" /> + <hkern u1="Û" u2="Å" k="20" /> + <hkern u1="Û" u2="Ä" k="20" /> + <hkern u1="Û" u2="Ã" k="20" /> + <hkern u1="Û" u2="Â" k="20" /> + <hkern u1="Û" u2="Á" k="20" /> + <hkern u1="Û" u2="À" k="20" /> + <hkern u1="Û" u2="y" k="6" /> + <hkern u1="Û" u2="x" k="10" /> + <hkern u1="Û" u2="v" k="8" /> + <hkern u1="Û" u2="u" k="18" /> + <hkern u1="Û" u2="t" k="10" /> + <hkern u1="Û" u2="s" k="16" /> + <hkern u1="Û" u2="r" k="18" /> + <hkern u1="Û" u2="q" k="15" /> + <hkern u1="Û" u2="p" k="18" /> + <hkern u1="Û" u2="o" k="15" /> + <hkern u1="Û" u2="n" k="18" /> + <hkern u1="Û" u2="m" k="18" /> + <hkern u1="Û" u2="k" k="13" /> + <hkern u1="Û" u2="j" k="15" /> + <hkern u1="Û" u2="i" k="15" /> + <hkern u1="Û" u2="h" k="13" /> + <hkern u1="Û" u2="g" k="15" /> + <hkern u1="Û" u2="f" k="8" /> + <hkern u1="Û" u2="e" k="15" /> + <hkern u1="Û" u2="d" k="15" /> + <hkern u1="Û" u2="c" k="15" /> + <hkern u1="Û" u2="b" k="13" /> + <hkern u1="Û" u2="a" k="17" /> + <hkern u1="Û" u2="A" k="20" /> + <hkern u1="Û" u2="/" k="14" /> + <hkern u1="Û" u2="." k="18" /> + <hkern u1="Û" u2="," k="18" /> + <hkern u1="Û" u2=")" k="11" /> + <hkern u1="Ü" g2="f_j" k="8" /> + <hkern u1="Ü" u2="st" k="16" /> + <hkern u1="Ü" u2="ffl" k="8" /> + <hkern u1="Ü" u2="ffi" k="8" /> + <hkern u1="Ü" u2="fl" k="8" /> + <hkern u1="Ü" u2="fi" k="8" /> + <hkern u1="Ü" u2="ff" k="8" /> + <hkern u1="Ü" u2="…" k="18" /> + <hkern u1="Ü" u2="„" k="18" /> + <hkern u1="Ü" u2="‚" k="18" /> + <hkern u1="Ü" u2="ȷ" k="15" /> + <hkern u1="Ü" u2="ț" k="10" /> + <hkern u1="Ü" u2="ș" k="16" /> + <hkern u1="Ü" u2="ǿ" k="15" /> + <hkern u1="Ü" u2="ǽ" k="17" /> + <hkern u1="Ü" u2="Ǽ" k="10" /> + <hkern u1="Ü" u2="ſ" k="8" /> + <hkern u1="Ü" u2="ÿ" k="6" /> + <hkern u1="Ü" u2="þ" k="13" /> + <hkern u1="Ü" u2="ý" k="6" /> + <hkern u1="Ü" u2="ü" k="18" /> + <hkern u1="Ü" u2="û" k="18" /> + <hkern u1="Ü" u2="ú" k="18" /> + <hkern u1="Ü" u2="ù" k="18" /> + <hkern u1="Ü" u2="ø" k="15" /> + <hkern u1="Ü" u2="ö" k="15" /> + <hkern u1="Ü" u2="õ" k="15" /> + <hkern u1="Ü" u2="ô" k="15" /> + <hkern u1="Ü" u2="ó" k="15" /> + <hkern u1="Ü" u2="ò" k="15" /> + <hkern u1="Ü" u2="ñ" k="18" /> + <hkern u1="Ü" u2="ð" k="15" /> + <hkern u1="Ü" u2="ï" k="15" /> + <hkern u1="Ü" u2="î" k="15" /> + <hkern u1="Ü" u2="í" k="15" /> + <hkern u1="Ü" u2="ì" k="15" /> + <hkern u1="Ü" u2="ë" k="15" /> + <hkern u1="Ü" u2="ê" k="15" /> + <hkern u1="Ü" u2="é" k="15" /> + <hkern u1="Ü" u2="è" k="15" /> + <hkern u1="Ü" u2="ç" k="15" /> + <hkern u1="Ü" u2="æ" k="17" /> + <hkern u1="Ü" u2="å" k="17" /> + <hkern u1="Ü" u2="ä" k="17" /> + <hkern u1="Ü" u2="ã" k="17" /> + <hkern u1="Ü" u2="â" k="17" /> + <hkern u1="Ü" u2="á" k="17" /> + <hkern u1="Ü" u2="à" k="17" /> + <hkern u1="Ü" u2="ß" k="8" /> + <hkern u1="Ü" u2="Æ" k="10" /> + <hkern u1="Ü" u2="Å" k="20" /> + <hkern u1="Ü" u2="Ä" k="20" /> + <hkern u1="Ü" u2="Ã" k="20" /> + <hkern u1="Ü" u2="Â" k="20" /> + <hkern u1="Ü" u2="Á" k="20" /> + <hkern u1="Ü" u2="À" k="20" /> + <hkern u1="Ü" u2="y" k="6" /> + <hkern u1="Ü" u2="x" k="10" /> + <hkern u1="Ü" u2="v" k="8" /> + <hkern u1="Ü" u2="u" k="18" /> + <hkern u1="Ü" u2="t" k="10" /> + <hkern u1="Ü" u2="s" k="16" /> + <hkern u1="Ü" u2="r" k="18" /> + <hkern u1="Ü" u2="q" k="15" /> + <hkern u1="Ü" u2="p" k="18" /> + <hkern u1="Ü" u2="o" k="15" /> + <hkern u1="Ü" u2="n" k="18" /> + <hkern u1="Ü" u2="m" k="18" /> + <hkern u1="Ü" u2="k" k="13" /> + <hkern u1="Ü" u2="j" k="15" /> + <hkern u1="Ü" u2="i" k="15" /> + <hkern u1="Ü" u2="h" k="13" /> + <hkern u1="Ü" u2="g" k="15" /> + <hkern u1="Ü" u2="f" k="8" /> + <hkern u1="Ü" u2="e" k="15" /> + <hkern u1="Ü" u2="d" k="15" /> + <hkern u1="Ü" u2="c" k="15" /> + <hkern u1="Ü" u2="b" k="13" /> + <hkern u1="Ü" u2="a" k="17" /> + <hkern u1="Ü" u2="A" k="20" /> + <hkern u1="Ü" u2="/" k="14" /> + <hkern u1="Ü" u2="." k="18" /> + <hkern u1="Ü" u2="," k="18" /> + <hkern u1="Ü" u2=")" k="11" /> + <hkern u1="Ý" g2="f_j" k="24" /> + <hkern u1="Ý" u2="st" k="85" /> + <hkern u1="Ý" u2="ffl" k="24" /> + <hkern u1="Ý" u2="ffi" k="24" /> + <hkern u1="Ý" u2="fl" k="24" /> + <hkern u1="Ý" u2="fi" k="24" /> + <hkern u1="Ý" u2="ff" k="24" /> + <hkern u1="Ý" u2="™" k="-26" /> + <hkern u1="Ý" u2="›" k="32" /> + <hkern u1="Ý" u2="‹" k="59" /> + <hkern u1="Ý" u2="…" k="75" /> + <hkern u1="Ý" u2="„" k="75" /> + <hkern u1="Ý" u2="‚" k="75" /> + <hkern u1="Ý" u2="—" k="66" /> + <hkern u1="Ý" u2="–" k="66" /> + <hkern u1="Ý" u2="ȷ" k="9" /> + <hkern u1="Ý" u2="ț" k="55" /> + <hkern u1="Ý" u2="Ț" k="-42" /> + <hkern u1="Ý" u2="ș" k="85" /> + <hkern u1="Ý" u2="Ș" k="9" /> + <hkern u1="Ý" u2="ǿ" k="87" /> + <hkern u1="Ý" u2="Ǿ" k="30" /> + <hkern u1="Ý" u2="ǽ" k="81" /> + <hkern u1="Ý" u2="Ǽ" k="72" /> + <hkern u1="Ý" u2="ſ" k="24" /> + <hkern u1="Ý" u2="ÿ" k="34" /> + <hkern u1="Ý" u2="þ" k="8" /> + <hkern u1="Ý" u2="ý" k="34" /> + <hkern u1="Ý" u2="ü" k="68" /> + <hkern u1="Ý" u2="û" k="68" /> + <hkern u1="Ý" u2="ú" k="68" /> + <hkern u1="Ý" u2="ù" k="68" /> + <hkern u1="Ý" u2="ø" k="87" /> + <hkern u1="Ý" u2="ö" k="87" /> + <hkern u1="Ý" u2="õ" k="87" /> + <hkern u1="Ý" u2="ô" k="87" /> + <hkern u1="Ý" u2="ó" k="87" /> + <hkern u1="Ý" u2="ò" k="87" /> + <hkern u1="Ý" u2="ñ" k="70" /> + <hkern u1="Ý" u2="ð" k="87" /> + <hkern u1="Ý" u2="ï" k="-23" /> + <hkern u1="Ý" u2="î" k="9" /> + <hkern u1="Ý" u2="í" k="9" /> + <hkern u1="Ý" u2="ì" k="-14" /> + <hkern u1="Ý" u2="ë" k="87" /> + <hkern u1="Ý" u2="ê" k="87" /> + <hkern u1="Ý" u2="é" k="87" /> + <hkern u1="Ý" u2="è" k="87" /> + <hkern u1="Ý" u2="ç" k="87" /> + <hkern u1="Ý" u2="æ" k="81" /> + <hkern u1="Ý" u2="å" k="81" /> + <hkern u1="Ý" u2="ä" k="81" /> + <hkern u1="Ý" u2="ã" k="81" /> + <hkern u1="Ý" u2="â" k="81" /> + <hkern u1="Ý" u2="á" k="81" /> + <hkern u1="Ý" u2="à" k="81" /> + <hkern u1="Ý" u2="ß" k="24" /> + <hkern u1="Ý" u2="Þ" k="5" /> + <hkern u1="Ý" u2="Ý" k="-50" /> + <hkern u1="Ý" u2="Ø" k="30" /> + <hkern u1="Ý" u2="Ö" k="30" /> + <hkern u1="Ý" u2="Õ" k="30" /> + <hkern u1="Ý" u2="Ô" k="30" /> + <hkern u1="Ý" u2="Ó" k="30" /> + <hkern u1="Ý" u2="Ò" k="30" /> + <hkern u1="Ý" u2="Ñ" k="5" /> + <hkern u1="Ý" u2="Ð" k="5" /> + <hkern u1="Ý" u2="Ï" k="5" /> + <hkern u1="Ý" u2="Î" k="5" /> + <hkern u1="Ý" u2="Í" k="5" /> + <hkern u1="Ý" u2="Ì" k="5" /> + <hkern u1="Ý" u2="Ë" k="5" /> + <hkern u1="Ý" u2="Ê" k="5" /> + <hkern u1="Ý" u2="É" k="5" /> + <hkern u1="Ý" u2="È" k="5" /> + <hkern u1="Ý" u2="Ç" k="30" /> + <hkern u1="Ý" u2="Æ" k="72" /> + <hkern u1="Ý" u2="Å" k="64" /> + <hkern u1="Ý" u2="Ä" k="64" /> + <hkern u1="Ý" u2="Ã" k="64" /> + <hkern u1="Ý" u2="Â" k="64" /> + <hkern u1="Ý" u2="Á" k="64" /> + <hkern u1="Ý" u2="À" k="64" /> + <hkern u1="Ý" u2="»" k="32" /> + <hkern u1="Ý" u2="®" k="23" /> + <hkern u1="Ý" u2="«" k="59" /> + <hkern u1="Ý" u2="}" k="-12" /> + <hkern u1="Ý" u2="y" k="34" /> + <hkern u1="Ý" u2="x" k="43" /> + <hkern u1="Ý" u2="v" k="35" /> + <hkern u1="Ý" u2="u" k="68" /> + <hkern u1="Ý" u2="t" k="55" /> + <hkern u1="Ý" u2="s" k="85" /> + <hkern u1="Ý" u2="r" k="70" /> + <hkern u1="Ý" u2="q" k="87" /> + <hkern u1="Ý" u2="p" k="70" /> + <hkern u1="Ý" u2="o" k="87" /> + <hkern u1="Ý" u2="n" k="70" /> + <hkern u1="Ý" u2="m" k="70" /> + <hkern u1="Ý" u2="k" k="8" /> + <hkern u1="Ý" u2="j" k="9" /> + <hkern u1="Ý" u2="i" k="9" /> + <hkern u1="Ý" u2="h" k="8" /> + <hkern u1="Ý" u2="g" k="87" /> + <hkern u1="Ý" u2="f" k="24" /> + <hkern u1="Ý" u2="e" k="87" /> + <hkern u1="Ý" u2="d" k="87" /> + <hkern u1="Ý" u2="c" k="87" /> + <hkern u1="Ý" u2="b" k="8" /> + <hkern u1="Ý" u2="a" k="81" /> + <hkern u1="Ý" u2="]" k="-10" /> + <hkern u1="Ý" u2="Y" k="-50" /> + <hkern u1="Ý" u2="X" k="-45" /> + <hkern u1="Ý" u2="V" k="-45" /> + <hkern u1="Ý" u2="T" k="-42" /> + <hkern u1="Ý" u2="S" k="9" /> + <hkern u1="Ý" u2="R" k="5" /> + <hkern u1="Ý" u2="Q" k="30" /> + <hkern u1="Ý" u2="P" k="5" /> + <hkern u1="Ý" u2="O" k="30" /> + <hkern u1="Ý" u2="N" k="5" /> + <hkern u1="Ý" u2="M" k="5" /> + <hkern u1="Ý" u2="L" k="5" /> + <hkern u1="Ý" u2="K" k="5" /> + <hkern u1="Ý" u2="I" k="5" /> + <hkern u1="Ý" u2="H" k="5" /> + <hkern u1="Ý" u2="G" k="30" /> + <hkern u1="Ý" u2="F" k="5" /> + <hkern u1="Ý" u2="E" k="5" /> + <hkern u1="Ý" u2="D" k="5" /> + <hkern u1="Ý" u2="C" k="30" /> + <hkern u1="Ý" u2="B" k="5" /> + <hkern u1="Ý" u2="A" k="64" /> + <hkern u1="Ý" u2="@" k="35" /> + <hkern u1="Ý" u2=";" k="26" /> + <hkern u1="Ý" u2=":" k="26" /> + <hkern u1="Ý" u2="/" k="44" /> + <hkern u1="Ý" u2="." k="75" /> + <hkern u1="Ý" u2="-" k="66" /> + <hkern u1="Ý" u2="," k="75" /> + <hkern u1="Ý" u2="&" k="26" /> + <hkern u1="Þ" u2="…" k="35" /> + <hkern u1="Þ" u2="„" k="35" /> + <hkern u1="Þ" u2="‚" k="35" /> + <hkern u1="Þ" u2="ȷ" k="5" /> + <hkern u1="Þ" u2="Ț" k="45" /> + <hkern u1="Þ" u2="ǽ" k="8" /> + <hkern u1="Þ" u2="Ǽ" k="59" /> + <hkern u1="Þ" u2="þ" k="5" /> + <hkern u1="Þ" u2="ñ" k="5" /> + <hkern u1="Þ" u2="ï" k="5" /> + <hkern u1="Þ" u2="î" k="5" /> + <hkern u1="Þ" u2="í" k="5" /> + <hkern u1="Þ" u2="ì" k="5" /> + <hkern u1="Þ" u2="æ" k="8" /> + <hkern u1="Þ" u2="å" k="8" /> + <hkern u1="Þ" u2="ä" k="8" /> + <hkern u1="Þ" u2="ã" k="8" /> + <hkern u1="Þ" u2="â" k="8" /> + <hkern u1="Þ" u2="á" k="8" /> + <hkern u1="Þ" u2="à" k="8" /> + <hkern u1="Þ" u2="Ý" k="34" /> + <hkern u1="Þ" u2="Æ" k="59" /> + <hkern u1="Þ" u2="Å" k="17" /> + <hkern u1="Þ" u2="Ä" k="17" /> + <hkern u1="Þ" u2="Ã" k="17" /> + <hkern u1="Þ" u2="Â" k="17" /> + <hkern u1="Þ" u2="Á" k="17" /> + <hkern u1="Þ" u2="À" k="17" /> + <hkern u1="Þ" u2="}" k="15" /> + <hkern u1="Þ" u2="x" k="10" /> + <hkern u1="Þ" u2="r" k="5" /> + <hkern u1="Þ" u2="p" k="5" /> + <hkern u1="Þ" u2="n" k="5" /> + <hkern u1="Þ" u2="m" k="5" /> + <hkern u1="Þ" u2="k" k="5" /> + <hkern u1="Þ" u2="j" k="5" /> + <hkern u1="Þ" u2="i" k="5" /> + <hkern u1="Þ" u2="h" k="5" /> + <hkern u1="Þ" u2="b" k="5" /> + <hkern u1="Þ" u2="a" k="8" /> + <hkern u1="Þ" u2="]" k="17" /> + <hkern u1="Þ" u2="Y" k="34" /> + <hkern u1="Þ" u2="X" k="44" /> + <hkern u1="Þ" u2="V" k="11" /> + <hkern u1="Þ" u2="T" k="45" /> + <hkern u1="Þ" u2="A" k="17" /> + <hkern u1="Þ" u2="/" k="10" /> + <hkern u1="Þ" u2="." k="35" /> + <hkern u1="Þ" u2="," k="35" /> + <hkern u1="Þ" u2=")" k="20" /> + <hkern u1="ß" u2="™" k="9" /> + <hkern u1="ß" u2="ț" k="4" /> + <hkern u1="ß" u2="}" k="13" /> + <hkern u1="ß" u2="x" k="6" /> + <hkern u1="ß" u2="v" k="6" /> + <hkern u1="ß" u2="t" k="4" /> + <hkern u1="ß" u2="]" k="13" /> + <hkern u1="ß" u2=")" k="17" /> + <hkern u1="à" g2="f_j" k="6" /> + <hkern u1="à" u2="ffl" k="6" /> + <hkern u1="à" u2="ffi" k="6" /> + <hkern u1="à" u2="fl" k="6" /> + <hkern u1="à" u2="fi" k="6" /> + <hkern u1="à" u2="ff" k="6" /> + <hkern u1="à" u2="™" k="25" /> + <hkern u1="à" u2="”" k="14" /> + <hkern u1="à" u2="“" k="13" /> + <hkern u1="à" u2="’" k="14" /> + <hkern u1="à" u2="‘" k="13" /> + <hkern u1="à" u2="ț" k="5" /> + <hkern u1="à" u2="Ț" k="91" /> + <hkern u1="à" u2="Ș" k="12" /> + <hkern u1="à" u2="Ǿ" k="10" /> + <hkern u1="à" u2="ſ" k="6" /> + <hkern u1="à" u2="ÿ" k="7" /> + <hkern u1="à" u2="ý" k="7" /> + <hkern u1="à" u2="ü" k="4" /> + <hkern u1="à" u2="û" k="4" /> + <hkern u1="à" u2="ú" k="4" /> + <hkern u1="à" u2="ù" k="4" /> + <hkern u1="à" u2="ß" k="6" /> + <hkern u1="à" u2="Þ" k="14" /> + <hkern u1="à" u2="Ý" k="86" /> + <hkern u1="à" u2="Ü" k="22" /> + <hkern u1="à" u2="Û" k="22" /> + <hkern u1="à" u2="Ú" k="22" /> + <hkern u1="à" u2="Ù" k="22" /> + <hkern u1="à" u2="Ø" k="10" /> + <hkern u1="à" u2="Ö" k="10" /> + <hkern u1="à" u2="Õ" k="10" /> + <hkern u1="à" u2="Ô" k="10" /> + <hkern u1="à" u2="Ó" k="10" /> + <hkern u1="à" u2="Ò" k="10" /> + <hkern u1="à" u2="Ñ" k="14" /> + <hkern u1="à" u2="Ð" k="14" /> + <hkern u1="à" u2="Ï" k="14" /> + <hkern u1="à" u2="Î" k="14" /> + <hkern u1="à" u2="Í" k="14" /> + <hkern u1="à" u2="Ì" k="14" /> + <hkern u1="à" u2="Ë" k="14" /> + <hkern u1="à" u2="Ê" k="14" /> + <hkern u1="à" u2="É" k="14" /> + <hkern u1="à" u2="È" k="14" /> + <hkern u1="à" u2="Ç" k="10" /> + <hkern u1="à" u2="Å" k="5" /> + <hkern u1="à" u2="Ä" k="5" /> + <hkern u1="à" u2="Ã" k="5" /> + <hkern u1="à" u2="Â" k="5" /> + <hkern u1="à" u2="Á" k="5" /> + <hkern u1="à" u2="À" k="5" /> + <hkern u1="à" u2="}" k="20" /> + <hkern u1="à" u2="y" k="7" /> + <hkern u1="à" u2="v" k="10" /> + <hkern u1="à" u2="u" k="4" /> + <hkern u1="à" u2="t" k="5" /> + <hkern u1="à" u2="f" k="6" /> + <hkern u1="à" u2="]" k="23" /> + <hkern u1="à" u2="\" k="23" /> + <hkern u1="à" u2="Y" k="86" /> + <hkern u1="à" u2="X" k="6" /> + <hkern u1="à" u2="V" k="53" /> + <hkern u1="à" u2="U" k="22" /> + <hkern u1="à" u2="T" k="91" /> + <hkern u1="à" u2="S" k="12" /> + <hkern u1="à" u2="R" k="14" /> + <hkern u1="à" u2="Q" k="10" /> + <hkern u1="à" u2="P" k="14" /> + <hkern u1="à" u2="O" k="10" /> + <hkern u1="à" u2="N" k="14" /> + <hkern u1="à" u2="M" k="14" /> + <hkern u1="à" u2="L" k="14" /> + <hkern u1="à" u2="K" k="14" /> + <hkern u1="à" u2="I" k="14" /> + <hkern u1="à" u2="H" k="14" /> + <hkern u1="à" u2="G" k="10" /> + <hkern u1="à" u2="F" k="14" /> + <hkern u1="à" u2="E" k="14" /> + <hkern u1="à" u2="D" k="14" /> + <hkern u1="à" u2="C" k="10" /> + <hkern u1="à" u2="B" k="14" /> + <hkern u1="à" u2="A" k="5" /> + <hkern u1="à" u2="?" k="19" /> + <hkern u1="à" u2="*" k="14" /> + <hkern u1="à" u2=")" k="20" /> + <hkern u1="à" u2="'" k="14" /> + <hkern u1="à" u2="&" k="6" /> + <hkern u1="à" u2=""" k="14" /> + <hkern u1="á" g2="f_j" k="6" /> + <hkern u1="á" u2="ffl" k="6" /> + <hkern u1="á" u2="ffi" k="6" /> + <hkern u1="á" u2="fl" k="6" /> + <hkern u1="á" u2="fi" k="6" /> + <hkern u1="á" u2="ff" k="6" /> + <hkern u1="á" u2="™" k="25" /> + <hkern u1="á" u2="”" k="14" /> + <hkern u1="á" u2="“" k="13" /> + <hkern u1="á" u2="’" k="14" /> + <hkern u1="á" u2="‘" k="13" /> + <hkern u1="á" u2="ț" k="5" /> + <hkern u1="á" u2="Ț" k="91" /> + <hkern u1="á" u2="Ș" k="12" /> + <hkern u1="á" u2="Ǿ" k="10" /> + <hkern u1="á" u2="ſ" k="6" /> + <hkern u1="á" u2="ÿ" k="7" /> + <hkern u1="á" u2="ý" k="7" /> + <hkern u1="á" u2="ü" k="4" /> + <hkern u1="á" u2="û" k="4" /> + <hkern u1="á" u2="ú" k="4" /> + <hkern u1="á" u2="ù" k="4" /> + <hkern u1="á" u2="ß" k="6" /> + <hkern u1="á" u2="Þ" k="14" /> + <hkern u1="á" u2="Ý" k="86" /> + <hkern u1="á" u2="Ü" k="22" /> + <hkern u1="á" u2="Û" k="22" /> + <hkern u1="á" u2="Ú" k="22" /> + <hkern u1="á" u2="Ù" k="22" /> + <hkern u1="á" u2="Ø" k="10" /> + <hkern u1="á" u2="Ö" k="10" /> + <hkern u1="á" u2="Õ" k="10" /> + <hkern u1="á" u2="Ô" k="10" /> + <hkern u1="á" u2="Ó" k="10" /> + <hkern u1="á" u2="Ò" k="10" /> + <hkern u1="á" u2="Ñ" k="14" /> + <hkern u1="á" u2="Ð" k="14" /> + <hkern u1="á" u2="Ï" k="14" /> + <hkern u1="á" u2="Î" k="14" /> + <hkern u1="á" u2="Í" k="14" /> + <hkern u1="á" u2="Ì" k="14" /> + <hkern u1="á" u2="Ë" k="14" /> + <hkern u1="á" u2="Ê" k="14" /> + <hkern u1="á" u2="É" k="14" /> + <hkern u1="á" u2="È" k="14" /> + <hkern u1="á" u2="Ç" k="10" /> + <hkern u1="á" u2="Å" k="5" /> + <hkern u1="á" u2="Ä" k="5" /> + <hkern u1="á" u2="Ã" k="5" /> + <hkern u1="á" u2="Â" k="5" /> + <hkern u1="á" u2="Á" k="5" /> + <hkern u1="á" u2="À" k="5" /> + <hkern u1="á" u2="}" k="20" /> + <hkern u1="á" u2="y" k="7" /> + <hkern u1="á" u2="v" k="10" /> + <hkern u1="á" u2="u" k="4" /> + <hkern u1="á" u2="t" k="5" /> + <hkern u1="á" u2="f" k="6" /> + <hkern u1="á" u2="]" k="23" /> + <hkern u1="á" u2="\" k="23" /> + <hkern u1="á" u2="Y" k="86" /> + <hkern u1="á" u2="X" k="6" /> + <hkern u1="á" u2="V" k="53" /> + <hkern u1="á" u2="U" k="22" /> + <hkern u1="á" u2="T" k="91" /> + <hkern u1="á" u2="S" k="12" /> + <hkern u1="á" u2="R" k="14" /> + <hkern u1="á" u2="Q" k="10" /> + <hkern u1="á" u2="P" k="14" /> + <hkern u1="á" u2="O" k="10" /> + <hkern u1="á" u2="N" k="14" /> + <hkern u1="á" u2="M" k="14" /> + <hkern u1="á" u2="L" k="14" /> + <hkern u1="á" u2="K" k="14" /> + <hkern u1="á" u2="I" k="14" /> + <hkern u1="á" u2="H" k="14" /> + <hkern u1="á" u2="G" k="10" /> + <hkern u1="á" u2="F" k="14" /> + <hkern u1="á" u2="E" k="14" /> + <hkern u1="á" u2="D" k="14" /> + <hkern u1="á" u2="C" k="10" /> + <hkern u1="á" u2="B" k="14" /> + <hkern u1="á" u2="A" k="5" /> + <hkern u1="á" u2="?" k="19" /> + <hkern u1="á" u2="*" k="14" /> + <hkern u1="á" u2=")" k="20" /> + <hkern u1="á" u2="'" k="14" /> + <hkern u1="á" u2="&" k="6" /> + <hkern u1="á" u2=""" k="14" /> + <hkern u1="â" g2="f_j" k="6" /> + <hkern u1="â" u2="ffl" k="6" /> + <hkern u1="â" u2="ffi" k="6" /> + <hkern u1="â" u2="fl" k="6" /> + <hkern u1="â" u2="fi" k="6" /> + <hkern u1="â" u2="ff" k="6" /> + <hkern u1="â" u2="™" k="25" /> + <hkern u1="â" u2="”" k="14" /> + <hkern u1="â" u2="“" k="13" /> + <hkern u1="â" u2="’" k="14" /> + <hkern u1="â" u2="‘" k="13" /> + <hkern u1="â" u2="ț" k="5" /> + <hkern u1="â" u2="Ț" k="91" /> + <hkern u1="â" u2="Ș" k="12" /> + <hkern u1="â" u2="Ǿ" k="10" /> + <hkern u1="â" u2="ſ" k="6" /> + <hkern u1="â" u2="ÿ" k="7" /> + <hkern u1="â" u2="ý" k="7" /> + <hkern u1="â" u2="ü" k="4" /> + <hkern u1="â" u2="û" k="4" /> + <hkern u1="â" u2="ú" k="4" /> + <hkern u1="â" u2="ù" k="4" /> + <hkern u1="â" u2="ß" k="6" /> + <hkern u1="â" u2="Þ" k="14" /> + <hkern u1="â" u2="Ý" k="86" /> + <hkern u1="â" u2="Ü" k="22" /> + <hkern u1="â" u2="Û" k="22" /> + <hkern u1="â" u2="Ú" k="22" /> + <hkern u1="â" u2="Ù" k="22" /> + <hkern u1="â" u2="Ø" k="10" /> + <hkern u1="â" u2="Ö" k="10" /> + <hkern u1="â" u2="Õ" k="10" /> + <hkern u1="â" u2="Ô" k="10" /> + <hkern u1="â" u2="Ó" k="10" /> + <hkern u1="â" u2="Ò" k="10" /> + <hkern u1="â" u2="Ñ" k="14" /> + <hkern u1="â" u2="Ð" k="14" /> + <hkern u1="â" u2="Ï" k="14" /> + <hkern u1="â" u2="Î" k="14" /> + <hkern u1="â" u2="Í" k="14" /> + <hkern u1="â" u2="Ì" k="14" /> + <hkern u1="â" u2="Ë" k="14" /> + <hkern u1="â" u2="Ê" k="14" /> + <hkern u1="â" u2="É" k="14" /> + <hkern u1="â" u2="È" k="14" /> + <hkern u1="â" u2="Ç" k="10" /> + <hkern u1="â" u2="Å" k="5" /> + <hkern u1="â" u2="Ä" k="5" /> + <hkern u1="â" u2="Ã" k="5" /> + <hkern u1="â" u2="Â" k="5" /> + <hkern u1="â" u2="Á" k="5" /> + <hkern u1="â" u2="À" k="5" /> + <hkern u1="â" u2="}" k="20" /> + <hkern u1="â" u2="y" k="7" /> + <hkern u1="â" u2="v" k="10" /> + <hkern u1="â" u2="u" k="4" /> + <hkern u1="â" u2="t" k="5" /> + <hkern u1="â" u2="f" k="6" /> + <hkern u1="â" u2="]" k="23" /> + <hkern u1="â" u2="\" k="23" /> + <hkern u1="â" u2="Y" k="86" /> + <hkern u1="â" u2="X" k="6" /> + <hkern u1="â" u2="V" k="53" /> + <hkern u1="â" u2="U" k="22" /> + <hkern u1="â" u2="T" k="91" /> + <hkern u1="â" u2="S" k="12" /> + <hkern u1="â" u2="R" k="14" /> + <hkern u1="â" u2="Q" k="10" /> + <hkern u1="â" u2="P" k="14" /> + <hkern u1="â" u2="O" k="10" /> + <hkern u1="â" u2="N" k="14" /> + <hkern u1="â" u2="M" k="14" /> + <hkern u1="â" u2="L" k="14" /> + <hkern u1="â" u2="K" k="14" /> + <hkern u1="â" u2="I" k="14" /> + <hkern u1="â" u2="H" k="14" /> + <hkern u1="â" u2="G" k="10" /> + <hkern u1="â" u2="F" k="14" /> + <hkern u1="â" u2="E" k="14" /> + <hkern u1="â" u2="D" k="14" /> + <hkern u1="â" u2="C" k="10" /> + <hkern u1="â" u2="B" k="14" /> + <hkern u1="â" u2="A" k="5" /> + <hkern u1="â" u2="?" k="19" /> + <hkern u1="â" u2="*" k="14" /> + <hkern u1="â" u2=")" k="20" /> + <hkern u1="â" u2="'" k="14" /> + <hkern u1="â" u2="&" k="6" /> + <hkern u1="â" u2=""" k="14" /> + <hkern u1="ã" g2="f_j" k="6" /> + <hkern u1="ã" u2="ffl" k="6" /> + <hkern u1="ã" u2="ffi" k="6" /> + <hkern u1="ã" u2="fl" k="6" /> + <hkern u1="ã" u2="fi" k="6" /> + <hkern u1="ã" u2="ff" k="6" /> + <hkern u1="ã" u2="™" k="25" /> + <hkern u1="ã" u2="”" k="14" /> + <hkern u1="ã" u2="“" k="13" /> + <hkern u1="ã" u2="’" k="14" /> + <hkern u1="ã" u2="‘" k="13" /> + <hkern u1="ã" u2="ț" k="5" /> + <hkern u1="ã" u2="Ț" k="91" /> + <hkern u1="ã" u2="Ș" k="12" /> + <hkern u1="ã" u2="Ǿ" k="10" /> + <hkern u1="ã" u2="ſ" k="6" /> + <hkern u1="ã" u2="ÿ" k="7" /> + <hkern u1="ã" u2="ý" k="7" /> + <hkern u1="ã" u2="ü" k="4" /> + <hkern u1="ã" u2="û" k="4" /> + <hkern u1="ã" u2="ú" k="4" /> + <hkern u1="ã" u2="ù" k="4" /> + <hkern u1="ã" u2="ß" k="6" /> + <hkern u1="ã" u2="Þ" k="14" /> + <hkern u1="ã" u2="Ý" k="86" /> + <hkern u1="ã" u2="Ü" k="22" /> + <hkern u1="ã" u2="Û" k="22" /> + <hkern u1="ã" u2="Ú" k="22" /> + <hkern u1="ã" u2="Ù" k="22" /> + <hkern u1="ã" u2="Ø" k="10" /> + <hkern u1="ã" u2="Ö" k="10" /> + <hkern u1="ã" u2="Õ" k="10" /> + <hkern u1="ã" u2="Ô" k="10" /> + <hkern u1="ã" u2="Ó" k="10" /> + <hkern u1="ã" u2="Ò" k="10" /> + <hkern u1="ã" u2="Ñ" k="14" /> + <hkern u1="ã" u2="Ð" k="14" /> + <hkern u1="ã" u2="Ï" k="14" /> + <hkern u1="ã" u2="Î" k="14" /> + <hkern u1="ã" u2="Í" k="14" /> + <hkern u1="ã" u2="Ì" k="14" /> + <hkern u1="ã" u2="Ë" k="14" /> + <hkern u1="ã" u2="Ê" k="14" /> + <hkern u1="ã" u2="É" k="14" /> + <hkern u1="ã" u2="È" k="14" /> + <hkern u1="ã" u2="Ç" k="10" /> + <hkern u1="ã" u2="Å" k="5" /> + <hkern u1="ã" u2="Ä" k="5" /> + <hkern u1="ã" u2="Ã" k="5" /> + <hkern u1="ã" u2="Â" k="5" /> + <hkern u1="ã" u2="Á" k="5" /> + <hkern u1="ã" u2="À" k="5" /> + <hkern u1="ã" u2="}" k="20" /> + <hkern u1="ã" u2="y" k="7" /> + <hkern u1="ã" u2="v" k="10" /> + <hkern u1="ã" u2="u" k="4" /> + <hkern u1="ã" u2="t" k="5" /> + <hkern u1="ã" u2="f" k="6" /> + <hkern u1="ã" u2="]" k="23" /> + <hkern u1="ã" u2="\" k="23" /> + <hkern u1="ã" u2="Y" k="86" /> + <hkern u1="ã" u2="X" k="6" /> + <hkern u1="ã" u2="V" k="53" /> + <hkern u1="ã" u2="U" k="22" /> + <hkern u1="ã" u2="T" k="91" /> + <hkern u1="ã" u2="S" k="12" /> + <hkern u1="ã" u2="R" k="14" /> + <hkern u1="ã" u2="Q" k="10" /> + <hkern u1="ã" u2="P" k="14" /> + <hkern u1="ã" u2="O" k="10" /> + <hkern u1="ã" u2="N" k="14" /> + <hkern u1="ã" u2="M" k="14" /> + <hkern u1="ã" u2="L" k="14" /> + <hkern u1="ã" u2="K" k="14" /> + <hkern u1="ã" u2="I" k="14" /> + <hkern u1="ã" u2="H" k="14" /> + <hkern u1="ã" u2="G" k="10" /> + <hkern u1="ã" u2="F" k="14" /> + <hkern u1="ã" u2="E" k="14" /> + <hkern u1="ã" u2="D" k="14" /> + <hkern u1="ã" u2="C" k="10" /> + <hkern u1="ã" u2="B" k="14" /> + <hkern u1="ã" u2="A" k="5" /> + <hkern u1="ã" u2="?" k="19" /> + <hkern u1="ã" u2="*" k="14" /> + <hkern u1="ã" u2=")" k="20" /> + <hkern u1="ã" u2="'" k="14" /> + <hkern u1="ã" u2="&" k="6" /> + <hkern u1="ã" u2=""" k="14" /> + <hkern u1="ä" g2="f_j" k="6" /> + <hkern u1="ä" u2="ffl" k="6" /> + <hkern u1="ä" u2="ffi" k="6" /> + <hkern u1="ä" u2="fl" k="6" /> + <hkern u1="ä" u2="fi" k="6" /> + <hkern u1="ä" u2="ff" k="6" /> + <hkern u1="ä" u2="™" k="25" /> + <hkern u1="ä" u2="”" k="14" /> + <hkern u1="ä" u2="“" k="13" /> + <hkern u1="ä" u2="’" k="14" /> + <hkern u1="ä" u2="‘" k="13" /> + <hkern u1="ä" u2="ț" k="5" /> + <hkern u1="ä" u2="Ț" k="91" /> + <hkern u1="ä" u2="Ș" k="12" /> + <hkern u1="ä" u2="Ǿ" k="10" /> + <hkern u1="ä" u2="ſ" k="6" /> + <hkern u1="ä" u2="ÿ" k="7" /> + <hkern u1="ä" u2="ý" k="7" /> + <hkern u1="ä" u2="ü" k="4" /> + <hkern u1="ä" u2="û" k="4" /> + <hkern u1="ä" u2="ú" k="4" /> + <hkern u1="ä" u2="ù" k="4" /> + <hkern u1="ä" u2="ß" k="6" /> + <hkern u1="ä" u2="Þ" k="14" /> + <hkern u1="ä" u2="Ý" k="86" /> + <hkern u1="ä" u2="Ü" k="22" /> + <hkern u1="ä" u2="Û" k="22" /> + <hkern u1="ä" u2="Ú" k="22" /> + <hkern u1="ä" u2="Ù" k="22" /> + <hkern u1="ä" u2="Ø" k="10" /> + <hkern u1="ä" u2="Ö" k="10" /> + <hkern u1="ä" u2="Õ" k="10" /> + <hkern u1="ä" u2="Ô" k="10" /> + <hkern u1="ä" u2="Ó" k="10" /> + <hkern u1="ä" u2="Ò" k="10" /> + <hkern u1="ä" u2="Ñ" k="14" /> + <hkern u1="ä" u2="Ð" k="14" /> + <hkern u1="ä" u2="Ï" k="14" /> + <hkern u1="ä" u2="Î" k="14" /> + <hkern u1="ä" u2="Í" k="14" /> + <hkern u1="ä" u2="Ì" k="14" /> + <hkern u1="ä" u2="Ë" k="14" /> + <hkern u1="ä" u2="Ê" k="14" /> + <hkern u1="ä" u2="É" k="14" /> + <hkern u1="ä" u2="È" k="14" /> + <hkern u1="ä" u2="Ç" k="10" /> + <hkern u1="ä" u2="Å" k="5" /> + <hkern u1="ä" u2="Ä" k="5" /> + <hkern u1="ä" u2="Ã" k="5" /> + <hkern u1="ä" u2="Â" k="5" /> + <hkern u1="ä" u2="Á" k="5" /> + <hkern u1="ä" u2="À" k="5" /> + <hkern u1="ä" u2="}" k="20" /> + <hkern u1="ä" u2="y" k="7" /> + <hkern u1="ä" u2="v" k="10" /> + <hkern u1="ä" u2="u" k="4" /> + <hkern u1="ä" u2="t" k="5" /> + <hkern u1="ä" u2="f" k="6" /> + <hkern u1="ä" u2="]" k="23" /> + <hkern u1="ä" u2="\" k="23" /> + <hkern u1="ä" u2="Y" k="86" /> + <hkern u1="ä" u2="X" k="6" /> + <hkern u1="ä" u2="V" k="53" /> + <hkern u1="ä" u2="U" k="22" /> + <hkern u1="ä" u2="T" k="91" /> + <hkern u1="ä" u2="S" k="12" /> + <hkern u1="ä" u2="R" k="14" /> + <hkern u1="ä" u2="Q" k="10" /> + <hkern u1="ä" u2="P" k="14" /> + <hkern u1="ä" u2="O" k="10" /> + <hkern u1="ä" u2="N" k="14" /> + <hkern u1="ä" u2="M" k="14" /> + <hkern u1="ä" u2="L" k="14" /> + <hkern u1="ä" u2="K" k="14" /> + <hkern u1="ä" u2="I" k="14" /> + <hkern u1="ä" u2="H" k="14" /> + <hkern u1="ä" u2="G" k="10" /> + <hkern u1="ä" u2="F" k="14" /> + <hkern u1="ä" u2="E" k="14" /> + <hkern u1="ä" u2="D" k="14" /> + <hkern u1="ä" u2="C" k="10" /> + <hkern u1="ä" u2="B" k="14" /> + <hkern u1="ä" u2="A" k="5" /> + <hkern u1="ä" u2="?" k="19" /> + <hkern u1="ä" u2="*" k="14" /> + <hkern u1="ä" u2=")" k="20" /> + <hkern u1="ä" u2="'" k="14" /> + <hkern u1="ä" u2="&" k="6" /> + <hkern u1="ä" u2=""" k="14" /> + <hkern u1="å" g2="f_j" k="6" /> + <hkern u1="å" u2="ffl" k="6" /> + <hkern u1="å" u2="ffi" k="6" /> + <hkern u1="å" u2="fl" k="6" /> + <hkern u1="å" u2="fi" k="6" /> + <hkern u1="å" u2="ff" k="6" /> + <hkern u1="å" u2="™" k="25" /> + <hkern u1="å" u2="”" k="14" /> + <hkern u1="å" u2="“" k="13" /> + <hkern u1="å" u2="’" k="14" /> + <hkern u1="å" u2="‘" k="13" /> + <hkern u1="å" u2="ț" k="5" /> + <hkern u1="å" u2="Ț" k="91" /> + <hkern u1="å" u2="Ș" k="12" /> + <hkern u1="å" u2="Ǿ" k="10" /> + <hkern u1="å" u2="ſ" k="6" /> + <hkern u1="å" u2="ÿ" k="7" /> + <hkern u1="å" u2="ý" k="7" /> + <hkern u1="å" u2="ü" k="4" /> + <hkern u1="å" u2="û" k="4" /> + <hkern u1="å" u2="ú" k="4" /> + <hkern u1="å" u2="ù" k="4" /> + <hkern u1="å" u2="ß" k="6" /> + <hkern u1="å" u2="Þ" k="14" /> + <hkern u1="å" u2="Ý" k="86" /> + <hkern u1="å" u2="Ü" k="22" /> + <hkern u1="å" u2="Û" k="22" /> + <hkern u1="å" u2="Ú" k="22" /> + <hkern u1="å" u2="Ù" k="22" /> + <hkern u1="å" u2="Ø" k="10" /> + <hkern u1="å" u2="Ö" k="10" /> + <hkern u1="å" u2="Õ" k="10" /> + <hkern u1="å" u2="Ô" k="10" /> + <hkern u1="å" u2="Ó" k="10" /> + <hkern u1="å" u2="Ò" k="10" /> + <hkern u1="å" u2="Ñ" k="14" /> + <hkern u1="å" u2="Ð" k="14" /> + <hkern u1="å" u2="Ï" k="14" /> + <hkern u1="å" u2="Î" k="14" /> + <hkern u1="å" u2="Í" k="14" /> + <hkern u1="å" u2="Ì" k="14" /> + <hkern u1="å" u2="Ë" k="14" /> + <hkern u1="å" u2="Ê" k="14" /> + <hkern u1="å" u2="É" k="14" /> + <hkern u1="å" u2="È" k="14" /> + <hkern u1="å" u2="Ç" k="10" /> + <hkern u1="å" u2="Å" k="5" /> + <hkern u1="å" u2="Ä" k="5" /> + <hkern u1="å" u2="Ã" k="5" /> + <hkern u1="å" u2="Â" k="5" /> + <hkern u1="å" u2="Á" k="5" /> + <hkern u1="å" u2="À" k="5" /> + <hkern u1="å" u2="}" k="20" /> + <hkern u1="å" u2="y" k="7" /> + <hkern u1="å" u2="v" k="10" /> + <hkern u1="å" u2="u" k="4" /> + <hkern u1="å" u2="t" k="5" /> + <hkern u1="å" u2="f" k="6" /> + <hkern u1="å" u2="]" k="23" /> + <hkern u1="å" u2="\" k="23" /> + <hkern u1="å" u2="Y" k="86" /> + <hkern u1="å" u2="X" k="6" /> + <hkern u1="å" u2="V" k="53" /> + <hkern u1="å" u2="U" k="22" /> + <hkern u1="å" u2="T" k="91" /> + <hkern u1="å" u2="S" k="12" /> + <hkern u1="å" u2="R" k="14" /> + <hkern u1="å" u2="Q" k="10" /> + <hkern u1="å" u2="P" k="14" /> + <hkern u1="å" u2="O" k="10" /> + <hkern u1="å" u2="N" k="14" /> + <hkern u1="å" u2="M" k="14" /> + <hkern u1="å" u2="L" k="14" /> + <hkern u1="å" u2="K" k="14" /> + <hkern u1="å" u2="I" k="14" /> + <hkern u1="å" u2="H" k="14" /> + <hkern u1="å" u2="G" k="10" /> + <hkern u1="å" u2="F" k="14" /> + <hkern u1="å" u2="E" k="14" /> + <hkern u1="å" u2="D" k="14" /> + <hkern u1="å" u2="C" k="10" /> + <hkern u1="å" u2="B" k="14" /> + <hkern u1="å" u2="A" k="5" /> + <hkern u1="å" u2="?" k="19" /> + <hkern u1="å" u2="*" k="14" /> + <hkern u1="å" u2=")" k="20" /> + <hkern u1="å" u2="'" k="14" /> + <hkern u1="å" u2="&" k="6" /> + <hkern u1="å" u2=""" k="14" /> + <hkern u1="æ" u2="™" k="21" /> + <hkern u1="æ" u2="”" k="12" /> + <hkern u1="æ" u2="“" k="11" /> + <hkern u1="æ" u2="’" k="12" /> + <hkern u1="æ" u2="‘" k="11" /> + <hkern u1="æ" u2="Ț" k="81" /> + <hkern u1="æ" u2="Ș" k="11" /> + <hkern u1="æ" u2="Ǿ" k="5" /> + <hkern u1="æ" u2="Þ" k="11" /> + <hkern u1="æ" u2="Ý" k="83" /> + <hkern u1="æ" u2="Ü" k="13" /> + <hkern u1="æ" u2="Û" k="13" /> + <hkern u1="æ" u2="Ú" k="13" /> + <hkern u1="æ" u2="Ù" k="13" /> + <hkern u1="æ" u2="Ø" k="5" /> + <hkern u1="æ" u2="Ö" k="5" /> + <hkern u1="æ" u2="Õ" k="5" /> + <hkern u1="æ" u2="Ô" k="5" /> + <hkern u1="æ" u2="Ó" k="5" /> + <hkern u1="æ" u2="Ò" k="5" /> + <hkern u1="æ" u2="Ñ" k="11" /> + <hkern u1="æ" u2="Ð" k="11" /> + <hkern u1="æ" u2="Ï" k="11" /> + <hkern u1="æ" u2="Î" k="11" /> + <hkern u1="æ" u2="Í" k="11" /> + <hkern u1="æ" u2="Ì" k="11" /> + <hkern u1="æ" u2="Ë" k="11" /> + <hkern u1="æ" u2="Ê" k="11" /> + <hkern u1="æ" u2="É" k="11" /> + <hkern u1="æ" u2="È" k="11" /> + <hkern u1="æ" u2="Ç" k="5" /> + <hkern u1="æ" u2="Å" k="5" /> + <hkern u1="æ" u2="Ä" k="5" /> + <hkern u1="æ" u2="Ã" k="5" /> + <hkern u1="æ" u2="Â" k="5" /> + <hkern u1="æ" u2="Á" k="5" /> + <hkern u1="æ" u2="À" k="5" /> + <hkern u1="æ" u2="}" k="19" /> + <hkern u1="æ" u2="x" k="6" /> + <hkern u1="æ" u2="v" k="5" /> + <hkern u1="æ" u2="]" k="21" /> + <hkern u1="æ" u2="\" k="19" /> + <hkern u1="æ" u2="Y" k="83" /> + <hkern u1="æ" u2="X" k="16" /> + <hkern u1="æ" u2="V" k="54" /> + <hkern u1="æ" u2="U" k="13" /> + <hkern u1="æ" u2="T" k="81" /> + <hkern u1="æ" u2="S" k="11" /> + <hkern u1="æ" u2="R" k="11" /> + <hkern u1="æ" u2="Q" k="5" /> + <hkern u1="æ" u2="P" k="11" /> + <hkern u1="æ" u2="O" k="5" /> + <hkern u1="æ" u2="N" k="11" /> + <hkern u1="æ" u2="M" k="11" /> + <hkern u1="æ" u2="L" k="11" /> + <hkern u1="æ" u2="K" k="11" /> + <hkern u1="æ" u2="I" k="11" /> + <hkern u1="æ" u2="H" k="11" /> + <hkern u1="æ" u2="G" k="5" /> + <hkern u1="æ" u2="F" k="11" /> + <hkern u1="æ" u2="E" k="11" /> + <hkern u1="æ" u2="D" k="11" /> + <hkern u1="æ" u2="C" k="5" /> + <hkern u1="æ" u2="B" k="11" /> + <hkern u1="æ" u2="A" k="5" /> + <hkern u1="æ" u2="?" k="17" /> + <hkern u1="æ" u2="*" k="11" /> + <hkern u1="æ" u2=")" k="21" /> + <hkern u1="æ" u2="'" k="12" /> + <hkern u1="æ" u2="&" k="6" /> + <hkern u1="æ" u2=""" k="12" /> + <hkern u1="ç" u2="™" k="12" /> + <hkern u1="ç" u2="—" k="12" /> + <hkern u1="ç" u2="–" k="12" /> + <hkern u1="ç" u2="Ț" k="96" /> + <hkern u1="ç" u2="Ș" k="11" /> + <hkern u1="ç" u2="ǿ" k="4" /> + <hkern u1="ç" u2="Ǿ" k="11" /> + <hkern u1="ç" u2="ø" k="4" /> + <hkern u1="ç" u2="ö" k="4" /> + <hkern u1="ç" u2="õ" k="4" /> + <hkern u1="ç" u2="ô" k="4" /> + <hkern u1="ç" u2="ó" k="4" /> + <hkern u1="ç" u2="ò" k="4" /> + <hkern u1="ç" u2="ð" k="4" /> + <hkern u1="ç" u2="ë" k="4" /> + <hkern u1="ç" u2="ê" k="4" /> + <hkern u1="ç" u2="é" k="4" /> + <hkern u1="ç" u2="è" k="4" /> + <hkern u1="ç" u2="ç" k="4" /> + <hkern u1="ç" u2="Ý" k="70" /> + <hkern u1="ç" u2="Ü" k="9" /> + <hkern u1="ç" u2="Û" k="9" /> + <hkern u1="ç" u2="Ú" k="9" /> + <hkern u1="ç" u2="Ù" k="9" /> + <hkern u1="ç" u2="Ø" k="11" /> + <hkern u1="ç" u2="Ö" k="11" /> + <hkern u1="ç" u2="Õ" k="11" /> + <hkern u1="ç" u2="Ô" k="11" /> + <hkern u1="ç" u2="Ó" k="11" /> + <hkern u1="ç" u2="Ò" k="11" /> + <hkern u1="ç" u2="Ç" k="11" /> + <hkern u1="ç" u2="q" k="4" /> + <hkern u1="ç" u2="o" k="4" /> + <hkern u1="ç" u2="g" k="4" /> + <hkern u1="ç" u2="e" k="4" /> + <hkern u1="ç" u2="d" k="4" /> + <hkern u1="ç" u2="c" k="4" /> + <hkern u1="ç" u2="]" k="12" /> + <hkern u1="ç" u2="Y" k="70" /> + <hkern u1="ç" u2="V" k="31" /> + <hkern u1="ç" u2="U" k="9" /> + <hkern u1="ç" u2="T" k="96" /> + <hkern u1="ç" u2="S" k="11" /> + <hkern u1="ç" u2="Q" k="11" /> + <hkern u1="ç" u2="O" k="11" /> + <hkern u1="ç" u2="G" k="11" /> + <hkern u1="ç" u2="C" k="11" /> + <hkern u1="ç" u2="-" k="12" /> + <hkern u1="ç" u2=")" k="10" /> + <hkern u1="ç" u2="&" k="17" /> + <hkern u1="è" u2="™" k="21" /> + <hkern u1="è" u2="”" k="12" /> + <hkern u1="è" u2="“" k="11" /> + <hkern u1="è" u2="’" k="12" /> + <hkern u1="è" u2="‘" k="11" /> + <hkern u1="è" u2="Ț" k="81" /> + <hkern u1="è" u2="Ș" k="11" /> + <hkern u1="è" u2="Ǿ" k="5" /> + <hkern u1="è" u2="Þ" k="11" /> + <hkern u1="è" u2="Ý" k="83" /> + <hkern u1="è" u2="Ü" k="13" /> + <hkern u1="è" u2="Û" k="13" /> + <hkern u1="è" u2="Ú" k="13" /> + <hkern u1="è" u2="Ù" k="13" /> + <hkern u1="è" u2="Ø" k="5" /> + <hkern u1="è" u2="Ö" k="5" /> + <hkern u1="è" u2="Õ" k="5" /> + <hkern u1="è" u2="Ô" k="5" /> + <hkern u1="è" u2="Ó" k="5" /> + <hkern u1="è" u2="Ò" k="5" /> + <hkern u1="è" u2="Ñ" k="11" /> + <hkern u1="è" u2="Ð" k="11" /> + <hkern u1="è" u2="Ï" k="11" /> + <hkern u1="è" u2="Î" k="11" /> + <hkern u1="è" u2="Í" k="11" /> + <hkern u1="è" u2="Ì" k="11" /> + <hkern u1="è" u2="Ë" k="11" /> + <hkern u1="è" u2="Ê" k="11" /> + <hkern u1="è" u2="É" k="11" /> + <hkern u1="è" u2="È" k="11" /> + <hkern u1="è" u2="Ç" k="5" /> + <hkern u1="è" u2="Å" k="5" /> + <hkern u1="è" u2="Ä" k="5" /> + <hkern u1="è" u2="Ã" k="5" /> + <hkern u1="è" u2="Â" k="5" /> + <hkern u1="è" u2="Á" k="5" /> + <hkern u1="è" u2="À" k="5" /> + <hkern u1="è" u2="}" k="19" /> + <hkern u1="è" u2="x" k="6" /> + <hkern u1="è" u2="v" k="5" /> + <hkern u1="è" u2="]" k="21" /> + <hkern u1="è" u2="\" k="19" /> + <hkern u1="è" u2="Y" k="83" /> + <hkern u1="è" u2="X" k="16" /> + <hkern u1="è" u2="V" k="54" /> + <hkern u1="è" u2="U" k="13" /> + <hkern u1="è" u2="T" k="81" /> + <hkern u1="è" u2="S" k="11" /> + <hkern u1="è" u2="R" k="11" /> + <hkern u1="è" u2="Q" k="5" /> + <hkern u1="è" u2="P" k="11" /> + <hkern u1="è" u2="O" k="5" /> + <hkern u1="è" u2="N" k="11" /> + <hkern u1="è" u2="M" k="11" /> + <hkern u1="è" u2="L" k="11" /> + <hkern u1="è" u2="K" k="11" /> + <hkern u1="è" u2="I" k="11" /> + <hkern u1="è" u2="H" k="11" /> + <hkern u1="è" u2="G" k="5" /> + <hkern u1="è" u2="F" k="11" /> + <hkern u1="è" u2="E" k="11" /> + <hkern u1="è" u2="D" k="11" /> + <hkern u1="è" u2="C" k="5" /> + <hkern u1="è" u2="B" k="11" /> + <hkern u1="è" u2="A" k="5" /> + <hkern u1="è" u2="?" k="17" /> + <hkern u1="è" u2="*" k="11" /> + <hkern u1="è" u2=")" k="21" /> + <hkern u1="è" u2="'" k="12" /> + <hkern u1="è" u2="&" k="6" /> + <hkern u1="è" u2=""" k="12" /> + <hkern u1="é" u2="™" k="21" /> + <hkern u1="é" u2="”" k="12" /> + <hkern u1="é" u2="“" k="11" /> + <hkern u1="é" u2="’" k="12" /> + <hkern u1="é" u2="‘" k="11" /> + <hkern u1="é" u2="Ț" k="81" /> + <hkern u1="é" u2="Ș" k="11" /> + <hkern u1="é" u2="Ǿ" k="5" /> + <hkern u1="é" u2="Þ" k="11" /> + <hkern u1="é" u2="Ý" k="83" /> + <hkern u1="é" u2="Ü" k="13" /> + <hkern u1="é" u2="Û" k="13" /> + <hkern u1="é" u2="Ú" k="13" /> + <hkern u1="é" u2="Ù" k="13" /> + <hkern u1="é" u2="Ø" k="5" /> + <hkern u1="é" u2="Ö" k="5" /> + <hkern u1="é" u2="Õ" k="5" /> + <hkern u1="é" u2="Ô" k="5" /> + <hkern u1="é" u2="Ó" k="5" /> + <hkern u1="é" u2="Ò" k="5" /> + <hkern u1="é" u2="Ñ" k="11" /> + <hkern u1="é" u2="Ð" k="11" /> + <hkern u1="é" u2="Ï" k="11" /> + <hkern u1="é" u2="Î" k="11" /> + <hkern u1="é" u2="Í" k="11" /> + <hkern u1="é" u2="Ì" k="11" /> + <hkern u1="é" u2="Ë" k="11" /> + <hkern u1="é" u2="Ê" k="11" /> + <hkern u1="é" u2="É" k="11" /> + <hkern u1="é" u2="È" k="11" /> + <hkern u1="é" u2="Ç" k="5" /> + <hkern u1="é" u2="Å" k="5" /> + <hkern u1="é" u2="Ä" k="5" /> + <hkern u1="é" u2="Ã" k="5" /> + <hkern u1="é" u2="Â" k="5" /> + <hkern u1="é" u2="Á" k="5" /> + <hkern u1="é" u2="À" k="5" /> + <hkern u1="é" u2="}" k="19" /> + <hkern u1="é" u2="x" k="6" /> + <hkern u1="é" u2="v" k="5" /> + <hkern u1="é" u2="]" k="21" /> + <hkern u1="é" u2="\" k="19" /> + <hkern u1="é" u2="Y" k="83" /> + <hkern u1="é" u2="X" k="16" /> + <hkern u1="é" u2="V" k="54" /> + <hkern u1="é" u2="U" k="13" /> + <hkern u1="é" u2="T" k="81" /> + <hkern u1="é" u2="S" k="11" /> + <hkern u1="é" u2="R" k="11" /> + <hkern u1="é" u2="Q" k="5" /> + <hkern u1="é" u2="P" k="11" /> + <hkern u1="é" u2="O" k="5" /> + <hkern u1="é" u2="N" k="11" /> + <hkern u1="é" u2="M" k="11" /> + <hkern u1="é" u2="L" k="11" /> + <hkern u1="é" u2="K" k="11" /> + <hkern u1="é" u2="I" k="11" /> + <hkern u1="é" u2="H" k="11" /> + <hkern u1="é" u2="G" k="5" /> + <hkern u1="é" u2="F" k="11" /> + <hkern u1="é" u2="E" k="11" /> + <hkern u1="é" u2="D" k="11" /> + <hkern u1="é" u2="C" k="5" /> + <hkern u1="é" u2="B" k="11" /> + <hkern u1="é" u2="A" k="5" /> + <hkern u1="é" u2="?" k="17" /> + <hkern u1="é" u2="*" k="11" /> + <hkern u1="é" u2=")" k="21" /> + <hkern u1="é" u2="'" k="12" /> + <hkern u1="é" u2="&" k="6" /> + <hkern u1="é" u2=""" k="12" /> + <hkern u1="ê" u2="™" k="21" /> + <hkern u1="ê" u2="”" k="12" /> + <hkern u1="ê" u2="“" k="11" /> + <hkern u1="ê" u2="’" k="12" /> + <hkern u1="ê" u2="‘" k="11" /> + <hkern u1="ê" u2="Ț" k="81" /> + <hkern u1="ê" u2="Ș" k="11" /> + <hkern u1="ê" u2="Ǿ" k="5" /> + <hkern u1="ê" u2="Þ" k="11" /> + <hkern u1="ê" u2="Ý" k="83" /> + <hkern u1="ê" u2="Ü" k="13" /> + <hkern u1="ê" u2="Û" k="13" /> + <hkern u1="ê" u2="Ú" k="13" /> + <hkern u1="ê" u2="Ù" k="13" /> + <hkern u1="ê" u2="Ø" k="5" /> + <hkern u1="ê" u2="Ö" k="5" /> + <hkern u1="ê" u2="Õ" k="5" /> + <hkern u1="ê" u2="Ô" k="5" /> + <hkern u1="ê" u2="Ó" k="5" /> + <hkern u1="ê" u2="Ò" k="5" /> + <hkern u1="ê" u2="Ñ" k="11" /> + <hkern u1="ê" u2="Ð" k="11" /> + <hkern u1="ê" u2="Ï" k="11" /> + <hkern u1="ê" u2="Î" k="11" /> + <hkern u1="ê" u2="Í" k="11" /> + <hkern u1="ê" u2="Ì" k="11" /> + <hkern u1="ê" u2="Ë" k="11" /> + <hkern u1="ê" u2="Ê" k="11" /> + <hkern u1="ê" u2="É" k="11" /> + <hkern u1="ê" u2="È" k="11" /> + <hkern u1="ê" u2="Ç" k="5" /> + <hkern u1="ê" u2="Å" k="5" /> + <hkern u1="ê" u2="Ä" k="5" /> + <hkern u1="ê" u2="Ã" k="5" /> + <hkern u1="ê" u2="Â" k="5" /> + <hkern u1="ê" u2="Á" k="5" /> + <hkern u1="ê" u2="À" k="5" /> + <hkern u1="ê" u2="}" k="19" /> + <hkern u1="ê" u2="x" k="6" /> + <hkern u1="ê" u2="v" k="5" /> + <hkern u1="ê" u2="]" k="21" /> + <hkern u1="ê" u2="\" k="19" /> + <hkern u1="ê" u2="Y" k="83" /> + <hkern u1="ê" u2="X" k="16" /> + <hkern u1="ê" u2="V" k="54" /> + <hkern u1="ê" u2="U" k="13" /> + <hkern u1="ê" u2="T" k="81" /> + <hkern u1="ê" u2="S" k="11" /> + <hkern u1="ê" u2="R" k="11" /> + <hkern u1="ê" u2="Q" k="5" /> + <hkern u1="ê" u2="P" k="11" /> + <hkern u1="ê" u2="O" k="5" /> + <hkern u1="ê" u2="N" k="11" /> + <hkern u1="ê" u2="M" k="11" /> + <hkern u1="ê" u2="L" k="11" /> + <hkern u1="ê" u2="K" k="11" /> + <hkern u1="ê" u2="I" k="11" /> + <hkern u1="ê" u2="H" k="11" /> + <hkern u1="ê" u2="G" k="5" /> + <hkern u1="ê" u2="F" k="11" /> + <hkern u1="ê" u2="E" k="11" /> + <hkern u1="ê" u2="D" k="11" /> + <hkern u1="ê" u2="C" k="5" /> + <hkern u1="ê" u2="B" k="11" /> + <hkern u1="ê" u2="A" k="5" /> + <hkern u1="ê" u2="?" k="17" /> + <hkern u1="ê" u2="*" k="11" /> + <hkern u1="ê" u2=")" k="21" /> + <hkern u1="ê" u2="'" k="12" /> + <hkern u1="ê" u2="&" k="6" /> + <hkern u1="ê" u2=""" k="12" /> + <hkern u1="ë" u2="™" k="21" /> + <hkern u1="ë" u2="”" k="12" /> + <hkern u1="ë" u2="“" k="11" /> + <hkern u1="ë" u2="’" k="12" /> + <hkern u1="ë" u2="‘" k="11" /> + <hkern u1="ë" u2="Ț" k="81" /> + <hkern u1="ë" u2="Ș" k="11" /> + <hkern u1="ë" u2="Ǿ" k="5" /> + <hkern u1="ë" u2="Þ" k="11" /> + <hkern u1="ë" u2="Ý" k="83" /> + <hkern u1="ë" u2="Ü" k="13" /> + <hkern u1="ë" u2="Û" k="13" /> + <hkern u1="ë" u2="Ú" k="13" /> + <hkern u1="ë" u2="Ù" k="13" /> + <hkern u1="ë" u2="Ø" k="5" /> + <hkern u1="ë" u2="Ö" k="5" /> + <hkern u1="ë" u2="Õ" k="5" /> + <hkern u1="ë" u2="Ô" k="5" /> + <hkern u1="ë" u2="Ó" k="5" /> + <hkern u1="ë" u2="Ò" k="5" /> + <hkern u1="ë" u2="Ñ" k="11" /> + <hkern u1="ë" u2="Ð" k="11" /> + <hkern u1="ë" u2="Ï" k="11" /> + <hkern u1="ë" u2="Î" k="11" /> + <hkern u1="ë" u2="Í" k="11" /> + <hkern u1="ë" u2="Ì" k="11" /> + <hkern u1="ë" u2="Ë" k="11" /> + <hkern u1="ë" u2="Ê" k="11" /> + <hkern u1="ë" u2="É" k="11" /> + <hkern u1="ë" u2="È" k="11" /> + <hkern u1="ë" u2="Ç" k="5" /> + <hkern u1="ë" u2="Å" k="5" /> + <hkern u1="ë" u2="Ä" k="5" /> + <hkern u1="ë" u2="Ã" k="5" /> + <hkern u1="ë" u2="Â" k="5" /> + <hkern u1="ë" u2="Á" k="5" /> + <hkern u1="ë" u2="À" k="5" /> + <hkern u1="ë" u2="}" k="19" /> + <hkern u1="ë" u2="x" k="6" /> + <hkern u1="ë" u2="v" k="5" /> + <hkern u1="ë" u2="]" k="21" /> + <hkern u1="ë" u2="\" k="19" /> + <hkern u1="ë" u2="Y" k="83" /> + <hkern u1="ë" u2="X" k="16" /> + <hkern u1="ë" u2="V" k="54" /> + <hkern u1="ë" u2="U" k="13" /> + <hkern u1="ë" u2="T" k="81" /> + <hkern u1="ë" u2="S" k="11" /> + <hkern u1="ë" u2="R" k="11" /> + <hkern u1="ë" u2="Q" k="5" /> + <hkern u1="ë" u2="P" k="11" /> + <hkern u1="ë" u2="O" k="5" /> + <hkern u1="ë" u2="N" k="11" /> + <hkern u1="ë" u2="M" k="11" /> + <hkern u1="ë" u2="L" k="11" /> + <hkern u1="ë" u2="K" k="11" /> + <hkern u1="ë" u2="I" k="11" /> + <hkern u1="ë" u2="H" k="11" /> + <hkern u1="ë" u2="G" k="5" /> + <hkern u1="ë" u2="F" k="11" /> + <hkern u1="ë" u2="E" k="11" /> + <hkern u1="ë" u2="D" k="11" /> + <hkern u1="ë" u2="C" k="5" /> + <hkern u1="ë" u2="B" k="11" /> + <hkern u1="ë" u2="A" k="5" /> + <hkern u1="ë" u2="?" k="17" /> + <hkern u1="ë" u2="*" k="11" /> + <hkern u1="ë" u2=")" k="21" /> + <hkern u1="ë" u2="'" k="12" /> + <hkern u1="ë" u2="&" k="6" /> + <hkern u1="ë" u2=""" k="12" /> + <hkern u1="ì" u2="Ț" k="10" /> + <hkern u1="ì" u2="Ș" k="9" /> + <hkern u1="ì" u2="Ǿ" k="10" /> + <hkern u1="ì" u2="Þ" k="10" /> + <hkern u1="ì" u2="Ý" k="8" /> + <hkern u1="ì" u2="Ü" k="15" /> + <hkern u1="ì" u2="Û" k="15" /> + <hkern u1="ì" u2="Ú" k="15" /> + <hkern u1="ì" u2="Ù" k="15" /> + <hkern u1="ì" u2="Ø" k="10" /> + <hkern u1="ì" u2="Ö" k="10" /> + <hkern u1="ì" u2="Õ" k="10" /> + <hkern u1="ì" u2="Ô" k="10" /> + <hkern u1="ì" u2="Ó" k="10" /> + <hkern u1="ì" u2="Ò" k="10" /> + <hkern u1="ì" u2="Ñ" k="10" /> + <hkern u1="ì" u2="Ð" k="10" /> + <hkern u1="ì" u2="Ï" k="10" /> + <hkern u1="ì" u2="Î" k="10" /> + <hkern u1="ì" u2="Í" k="10" /> + <hkern u1="ì" u2="Ì" k="10" /> + <hkern u1="ì" u2="Ë" k="10" /> + <hkern u1="ì" u2="Ê" k="10" /> + <hkern u1="ì" u2="É" k="10" /> + <hkern u1="ì" u2="È" k="10" /> + <hkern u1="ì" u2="Ç" k="10" /> + <hkern u1="ì" u2="Å" k="7" /> + <hkern u1="ì" u2="Ä" k="7" /> + <hkern u1="ì" u2="Ã" k="7" /> + <hkern u1="ì" u2="Â" k="7" /> + <hkern u1="ì" u2="Á" k="7" /> + <hkern u1="ì" u2="À" k="7" /> + <hkern u1="ì" u2="Y" k="8" /> + <hkern u1="ì" u2="V" k="9" /> + <hkern u1="ì" u2="U" k="15" /> + <hkern u1="ì" u2="T" k="10" /> + <hkern u1="ì" u2="S" k="9" /> + <hkern u1="ì" u2="R" k="10" /> + <hkern u1="ì" u2="Q" k="10" /> + <hkern u1="ì" u2="P" k="10" /> + <hkern u1="ì" u2="O" k="10" /> + <hkern u1="ì" u2="N" k="10" /> + <hkern u1="ì" u2="M" k="10" /> + <hkern u1="ì" u2="L" k="10" /> + <hkern u1="ì" u2="K" k="10" /> + <hkern u1="ì" u2="I" k="10" /> + <hkern u1="ì" u2="H" k="10" /> + <hkern u1="ì" u2="G" k="10" /> + <hkern u1="ì" u2="F" k="10" /> + <hkern u1="ì" u2="E" k="10" /> + <hkern u1="ì" u2="D" k="10" /> + <hkern u1="ì" u2="C" k="10" /> + <hkern u1="ì" u2="B" k="10" /> + <hkern u1="ì" u2="A" k="7" /> + <hkern u1="ì" u2="&" k="8" /> + <hkern u1="í" u2="Ț" k="10" /> + <hkern u1="í" u2="Ș" k="9" /> + <hkern u1="í" u2="Ǿ" k="10" /> + <hkern u1="í" u2="Þ" k="10" /> + <hkern u1="í" u2="Ý" k="8" /> + <hkern u1="í" u2="Ü" k="15" /> + <hkern u1="í" u2="Û" k="15" /> + <hkern u1="í" u2="Ú" k="15" /> + <hkern u1="í" u2="Ù" k="15" /> + <hkern u1="í" u2="Ø" k="10" /> + <hkern u1="í" u2="Ö" k="10" /> + <hkern u1="í" u2="Õ" k="10" /> + <hkern u1="í" u2="Ô" k="10" /> + <hkern u1="í" u2="Ó" k="10" /> + <hkern u1="í" u2="Ò" k="10" /> + <hkern u1="í" u2="Ñ" k="10" /> + <hkern u1="í" u2="Ð" k="10" /> + <hkern u1="í" u2="Ï" k="10" /> + <hkern u1="í" u2="Î" k="10" /> + <hkern u1="í" u2="Í" k="10" /> + <hkern u1="í" u2="Ì" k="10" /> + <hkern u1="í" u2="Ë" k="10" /> + <hkern u1="í" u2="Ê" k="10" /> + <hkern u1="í" u2="É" k="10" /> + <hkern u1="í" u2="È" k="10" /> + <hkern u1="í" u2="Ç" k="10" /> + <hkern u1="í" u2="Å" k="7" /> + <hkern u1="í" u2="Ä" k="7" /> + <hkern u1="í" u2="Ã" k="7" /> + <hkern u1="í" u2="Â" k="7" /> + <hkern u1="í" u2="Á" k="7" /> + <hkern u1="í" u2="À" k="7" /> + <hkern u1="í" u2="Y" k="8" /> + <hkern u1="í" u2="V" k="9" /> + <hkern u1="í" u2="U" k="15" /> + <hkern u1="í" u2="T" k="10" /> + <hkern u1="í" u2="S" k="9" /> + <hkern u1="í" u2="R" k="10" /> + <hkern u1="í" u2="Q" k="10" /> + <hkern u1="í" u2="P" k="10" /> + <hkern u1="í" u2="O" k="10" /> + <hkern u1="í" u2="N" k="10" /> + <hkern u1="í" u2="M" k="10" /> + <hkern u1="í" u2="L" k="10" /> + <hkern u1="í" u2="K" k="10" /> + <hkern u1="í" u2="I" k="10" /> + <hkern u1="í" u2="H" k="10" /> + <hkern u1="í" u2="G" k="10" /> + <hkern u1="í" u2="F" k="10" /> + <hkern u1="í" u2="E" k="10" /> + <hkern u1="í" u2="D" k="10" /> + <hkern u1="í" u2="C" k="10" /> + <hkern u1="í" u2="B" k="10" /> + <hkern u1="í" u2="A" k="7" /> + <hkern u1="í" u2="&" k="8" /> + <hkern u1="î" u2="Ț" k="10" /> + <hkern u1="î" u2="Ș" k="9" /> + <hkern u1="î" u2="Ǿ" k="10" /> + <hkern u1="î" u2="Þ" k="10" /> + <hkern u1="î" u2="Ý" k="8" /> + <hkern u1="î" u2="Ü" k="15" /> + <hkern u1="î" u2="Û" k="15" /> + <hkern u1="î" u2="Ú" k="15" /> + <hkern u1="î" u2="Ù" k="15" /> + <hkern u1="î" u2="Ø" k="10" /> + <hkern u1="î" u2="Ö" k="10" /> + <hkern u1="î" u2="Õ" k="10" /> + <hkern u1="î" u2="Ô" k="10" /> + <hkern u1="î" u2="Ó" k="10" /> + <hkern u1="î" u2="Ò" k="10" /> + <hkern u1="î" u2="Ñ" k="10" /> + <hkern u1="î" u2="Ð" k="10" /> + <hkern u1="î" u2="Ï" k="10" /> + <hkern u1="î" u2="Î" k="10" /> + <hkern u1="î" u2="Í" k="10" /> + <hkern u1="î" u2="Ì" k="10" /> + <hkern u1="î" u2="Ë" k="10" /> + <hkern u1="î" u2="Ê" k="10" /> + <hkern u1="î" u2="É" k="10" /> + <hkern u1="î" u2="È" k="10" /> + <hkern u1="î" u2="Ç" k="10" /> + <hkern u1="î" u2="Å" k="7" /> + <hkern u1="î" u2="Ä" k="7" /> + <hkern u1="î" u2="Ã" k="7" /> + <hkern u1="î" u2="Â" k="7" /> + <hkern u1="î" u2="Á" k="7" /> + <hkern u1="î" u2="À" k="7" /> + <hkern u1="î" u2="Y" k="8" /> + <hkern u1="î" u2="V" k="9" /> + <hkern u1="î" u2="U" k="15" /> + <hkern u1="î" u2="T" k="10" /> + <hkern u1="î" u2="S" k="9" /> + <hkern u1="î" u2="R" k="10" /> + <hkern u1="î" u2="Q" k="10" /> + <hkern u1="î" u2="P" k="10" /> + <hkern u1="î" u2="O" k="10" /> + <hkern u1="î" u2="N" k="10" /> + <hkern u1="î" u2="M" k="10" /> + <hkern u1="î" u2="L" k="10" /> + <hkern u1="î" u2="K" k="10" /> + <hkern u1="î" u2="I" k="10" /> + <hkern u1="î" u2="H" k="10" /> + <hkern u1="î" u2="G" k="10" /> + <hkern u1="î" u2="F" k="10" /> + <hkern u1="î" u2="E" k="10" /> + <hkern u1="î" u2="D" k="10" /> + <hkern u1="î" u2="C" k="10" /> + <hkern u1="î" u2="B" k="10" /> + <hkern u1="î" u2="A" k="7" /> + <hkern u1="î" u2="?" k="-14" /> + <hkern u1="î" u2="*" k="-19" /> + <hkern u1="î" u2="&" k="8" /> + <hkern u1="ï" u2="™" k="-6" /> + <hkern u1="ï" u2="Ț" k="10" /> + <hkern u1="ï" u2="Ș" k="9" /> + <hkern u1="ï" u2="Ǿ" k="10" /> + <hkern u1="ï" u2="Þ" k="10" /> + <hkern u1="ï" u2="Ý" k="8" /> + <hkern u1="ï" u2="Ü" k="15" /> + <hkern u1="ï" u2="Û" k="15" /> + <hkern u1="ï" u2="Ú" k="15" /> + <hkern u1="ï" u2="Ù" k="15" /> + <hkern u1="ï" u2="Ø" k="10" /> + <hkern u1="ï" u2="Ö" k="10" /> + <hkern u1="ï" u2="Õ" k="10" /> + <hkern u1="ï" u2="Ô" k="10" /> + <hkern u1="ï" u2="Ó" k="10" /> + <hkern u1="ï" u2="Ò" k="10" /> + <hkern u1="ï" u2="Ñ" k="10" /> + <hkern u1="ï" u2="Ð" k="10" /> + <hkern u1="ï" u2="Ï" k="10" /> + <hkern u1="ï" u2="Î" k="10" /> + <hkern u1="ï" u2="Í" k="10" /> + <hkern u1="ï" u2="Ì" k="10" /> + <hkern u1="ï" u2="Ë" k="10" /> + <hkern u1="ï" u2="Ê" k="10" /> + <hkern u1="ï" u2="É" k="10" /> + <hkern u1="ï" u2="È" k="10" /> + <hkern u1="ï" u2="Ç" k="10" /> + <hkern u1="ï" u2="Å" k="7" /> + <hkern u1="ï" u2="Ä" k="7" /> + <hkern u1="ï" u2="Ã" k="7" /> + <hkern u1="ï" u2="Â" k="7" /> + <hkern u1="ï" u2="Á" k="7" /> + <hkern u1="ï" u2="À" k="7" /> + <hkern u1="ï" u2="Y" k="8" /> + <hkern u1="ï" u2="V" k="9" /> + <hkern u1="ï" u2="U" k="15" /> + <hkern u1="ï" u2="T" k="10" /> + <hkern u1="ï" u2="S" k="9" /> + <hkern u1="ï" u2="R" k="10" /> + <hkern u1="ï" u2="Q" k="10" /> + <hkern u1="ï" u2="P" k="10" /> + <hkern u1="ï" u2="O" k="10" /> + <hkern u1="ï" u2="N" k="10" /> + <hkern u1="ï" u2="M" k="10" /> + <hkern u1="ï" u2="L" k="10" /> + <hkern u1="ï" u2="K" k="10" /> + <hkern u1="ï" u2="I" k="10" /> + <hkern u1="ï" u2="H" k="10" /> + <hkern u1="ï" u2="G" k="10" /> + <hkern u1="ï" u2="F" k="10" /> + <hkern u1="ï" u2="E" k="10" /> + <hkern u1="ï" u2="D" k="10" /> + <hkern u1="ï" u2="C" k="10" /> + <hkern u1="ï" u2="B" k="10" /> + <hkern u1="ï" u2="A" k="7" /> + <hkern u1="ï" u2="*" k="-10" /> + <hkern u1="ï" u2="&" k="8" /> + <hkern u1="ð" u2="™" k="17" /> + <hkern u1="ð" u2="”" k="13" /> + <hkern u1="ð" u2="“" k="12" /> + <hkern u1="ð" u2="’" k="13" /> + <hkern u1="ð" u2="‘" k="12" /> + <hkern u1="ð" u2="}" k="18" /> + <hkern u1="ð" u2="x" k="11" /> + <hkern u1="ð" u2="v" k="4" /> + <hkern u1="ð" u2="]" k="19" /> + <hkern u1="ð" u2="\" k="12" /> + <hkern u1="ð" u2="?" k="12" /> + <hkern u1="ð" u2="*" k="10" /> + <hkern u1="ð" u2=")" k="21" /> + <hkern u1="ð" u2="'" k="13" /> + <hkern u1="ð" u2="&" k="5" /> + <hkern u1="ð" u2=""" k="13" /> + <hkern u1="ñ" g2="f_j" k="5" /> + <hkern u1="ñ" u2="ffl" k="5" /> + <hkern u1="ñ" u2="ffi" k="5" /> + <hkern u1="ñ" u2="fl" k="5" /> + <hkern u1="ñ" u2="fi" k="5" /> + <hkern u1="ñ" u2="ff" k="5" /> + <hkern u1="ñ" u2="™" k="24" /> + <hkern u1="ñ" u2="”" k="14" /> + <hkern u1="ñ" u2="“" k="11" /> + <hkern u1="ñ" u2="’" k="14" /> + <hkern u1="ñ" u2="‘" k="11" /> + <hkern u1="ñ" u2="ț" k="4" /> + <hkern u1="ñ" u2="Ț" k="90" /> + <hkern u1="ñ" u2="Ș" k="11" /> + <hkern u1="ñ" u2="Ǿ" k="10" /> + <hkern u1="ñ" u2="ſ" k="5" /> + <hkern u1="ñ" u2="ÿ" k="6" /> + <hkern u1="ñ" u2="ý" k="6" /> + <hkern u1="ñ" u2="ß" k="5" /> + <hkern u1="ñ" u2="Þ" k="14" /> + <hkern u1="ñ" u2="Ý" k="81" /> + <hkern u1="ñ" u2="Ü" k="21" /> + <hkern u1="ñ" u2="Û" k="21" /> + <hkern u1="ñ" u2="Ú" k="21" /> + <hkern u1="ñ" u2="Ù" k="21" /> + <hkern u1="ñ" u2="Ø" k="10" /> + <hkern u1="ñ" u2="Ö" k="10" /> + <hkern u1="ñ" u2="Õ" k="10" /> + <hkern u1="ñ" u2="Ô" k="10" /> + <hkern u1="ñ" u2="Ó" k="10" /> + <hkern u1="ñ" u2="Ò" k="10" /> + <hkern u1="ñ" u2="Ñ" k="14" /> + <hkern u1="ñ" u2="Ð" k="14" /> + <hkern u1="ñ" u2="Ï" k="14" /> + <hkern u1="ñ" u2="Î" k="14" /> + <hkern u1="ñ" u2="Í" k="14" /> + <hkern u1="ñ" u2="Ì" k="14" /> + <hkern u1="ñ" u2="Ë" k="14" /> + <hkern u1="ñ" u2="Ê" k="14" /> + <hkern u1="ñ" u2="É" k="14" /> + <hkern u1="ñ" u2="È" k="14" /> + <hkern u1="ñ" u2="Ç" k="10" /> + <hkern u1="ñ" u2="Å" k="5" /> + <hkern u1="ñ" u2="Ä" k="5" /> + <hkern u1="ñ" u2="Ã" k="5" /> + <hkern u1="ñ" u2="Â" k="5" /> + <hkern u1="ñ" u2="Á" k="5" /> + <hkern u1="ñ" u2="À" k="5" /> + <hkern u1="ñ" u2="}" k="20" /> + <hkern u1="ñ" u2="y" k="6" /> + <hkern u1="ñ" u2="v" k="9" /> + <hkern u1="ñ" u2="t" k="4" /> + <hkern u1="ñ" u2="f" k="5" /> + <hkern u1="ñ" u2="]" k="23" /> + <hkern u1="ñ" u2="\" k="22" /> + <hkern u1="ñ" u2="Y" k="81" /> + <hkern u1="ñ" u2="X" k="6" /> + <hkern u1="ñ" u2="V" k="52" /> + <hkern u1="ñ" u2="U" k="21" /> + <hkern u1="ñ" u2="T" k="90" /> + <hkern u1="ñ" u2="S" k="11" /> + <hkern u1="ñ" u2="R" k="14" /> + <hkern u1="ñ" u2="Q" k="10" /> + <hkern u1="ñ" u2="P" k="14" /> + <hkern u1="ñ" u2="O" k="10" /> + <hkern u1="ñ" u2="N" k="14" /> + <hkern u1="ñ" u2="M" k="14" /> + <hkern u1="ñ" u2="L" k="14" /> + <hkern u1="ñ" u2="K" k="14" /> + <hkern u1="ñ" u2="I" k="14" /> + <hkern u1="ñ" u2="H" k="14" /> + <hkern u1="ñ" u2="G" k="10" /> + <hkern u1="ñ" u2="F" k="14" /> + <hkern u1="ñ" u2="E" k="14" /> + <hkern u1="ñ" u2="D" k="14" /> + <hkern u1="ñ" u2="C" k="10" /> + <hkern u1="ñ" u2="B" k="14" /> + <hkern u1="ñ" u2="A" k="5" /> + <hkern u1="ñ" u2="?" k="18" /> + <hkern u1="ñ" u2="*" k="13" /> + <hkern u1="ñ" u2=")" k="20" /> + <hkern u1="ñ" u2="'" k="14" /> + <hkern u1="ñ" u2="&" k="6" /> + <hkern u1="ñ" u2=""" k="14" /> + <hkern u1="ò" g2="f_j" k="5" /> + <hkern u1="ò" u2="ffl" k="5" /> + <hkern u1="ò" u2="ffi" k="5" /> + <hkern u1="ò" u2="fl" k="5" /> + <hkern u1="ò" u2="fi" k="5" /> + <hkern u1="ò" u2="ff" k="5" /> + <hkern u1="ò" u2="™" k="23" /> + <hkern u1="ò" u2="”" k="16" /> + <hkern u1="ò" u2="“" k="15" /> + <hkern u1="ò" u2="’" k="16" /> + <hkern u1="ò" u2="‘" k="15" /> + <hkern u1="ò" u2="ț" k="4" /> + <hkern u1="ò" u2="Ț" k="86" /> + <hkern u1="ò" u2="Ș" k="14" /> + <hkern u1="ò" u2="Ǿ" k="6" /> + <hkern u1="ò" u2="ſ" k="5" /> + <hkern u1="ò" u2="ÿ" k="5" /> + <hkern u1="ò" u2="ý" k="5" /> + <hkern u1="ò" u2="ß" k="5" /> + <hkern u1="ò" u2="Þ" k="14" /> + <hkern u1="ò" u2="Ý" k="87" /> + <hkern u1="ò" u2="Ü" k="15" /> + <hkern u1="ò" u2="Û" k="15" /> + <hkern u1="ò" u2="Ú" k="15" /> + <hkern u1="ò" u2="Ù" k="15" /> + <hkern u1="ò" u2="Ø" k="6" /> + <hkern u1="ò" u2="Ö" k="6" /> + <hkern u1="ò" u2="Õ" k="6" /> + <hkern u1="ò" u2="Ô" k="6" /> + <hkern u1="ò" u2="Ó" k="6" /> + <hkern u1="ò" u2="Ò" k="6" /> + <hkern u1="ò" u2="Ñ" k="14" /> + <hkern u1="ò" u2="Ð" k="14" /> + <hkern u1="ò" u2="Ï" k="14" /> + <hkern u1="ò" u2="Î" k="14" /> + <hkern u1="ò" u2="Í" k="14" /> + <hkern u1="ò" u2="Ì" k="14" /> + <hkern u1="ò" u2="Ë" k="14" /> + <hkern u1="ò" u2="Ê" k="14" /> + <hkern u1="ò" u2="É" k="14" /> + <hkern u1="ò" u2="È" k="14" /> + <hkern u1="ò" u2="Ç" k="6" /> + <hkern u1="ò" u2="Å" k="12" /> + <hkern u1="ò" u2="Ä" k="12" /> + <hkern u1="ò" u2="Ã" k="12" /> + <hkern u1="ò" u2="Â" k="12" /> + <hkern u1="ò" u2="Á" k="12" /> + <hkern u1="ò" u2="À" k="12" /> + <hkern u1="ò" u2="}" k="23" /> + <hkern u1="ò" u2="y" k="5" /> + <hkern u1="ò" u2="x" k="15" /> + <hkern u1="ò" u2="v" k="7" /> + <hkern u1="ò" u2="t" k="4" /> + <hkern u1="ò" u2="f" k="5" /> + <hkern u1="ò" u2="]" k="25" /> + <hkern u1="ò" u2="\" k="22" /> + <hkern u1="ò" u2="Y" k="87" /> + <hkern u1="ò" u2="X" k="41" /> + <hkern u1="ò" u2="V" k="53" /> + <hkern u1="ò" u2="U" k="15" /> + <hkern u1="ò" u2="T" k="86" /> + <hkern u1="ò" u2="S" k="14" /> + <hkern u1="ò" u2="R" k="14" /> + <hkern u1="ò" u2="Q" k="6" /> + <hkern u1="ò" u2="P" k="14" /> + <hkern u1="ò" u2="O" k="6" /> + <hkern u1="ò" u2="N" k="14" /> + <hkern u1="ò" u2="M" k="14" /> + <hkern u1="ò" u2="L" k="14" /> + <hkern u1="ò" u2="K" k="14" /> + <hkern u1="ò" u2="I" k="14" /> + <hkern u1="ò" u2="H" k="14" /> + <hkern u1="ò" u2="G" k="6" /> + <hkern u1="ò" u2="F" k="14" /> + <hkern u1="ò" u2="E" k="14" /> + <hkern u1="ò" u2="D" k="14" /> + <hkern u1="ò" u2="C" k="6" /> + <hkern u1="ò" u2="B" k="14" /> + <hkern u1="ò" u2="A" k="12" /> + <hkern u1="ò" u2="?" k="20" /> + <hkern u1="ò" u2="*" k="14" /> + <hkern u1="ò" u2=")" k="27" /> + <hkern u1="ò" u2="'" k="16" /> + <hkern u1="ò" u2=""" k="16" /> + <hkern u1="ó" g2="f_j" k="5" /> + <hkern u1="ó" u2="ffl" k="5" /> + <hkern u1="ó" u2="ffi" k="5" /> + <hkern u1="ó" u2="fl" k="5" /> + <hkern u1="ó" u2="fi" k="5" /> + <hkern u1="ó" u2="ff" k="5" /> + <hkern u1="ó" u2="™" k="23" /> + <hkern u1="ó" u2="”" k="16" /> + <hkern u1="ó" u2="“" k="15" /> + <hkern u1="ó" u2="’" k="16" /> + <hkern u1="ó" u2="‘" k="15" /> + <hkern u1="ó" u2="ț" k="4" /> + <hkern u1="ó" u2="Ț" k="86" /> + <hkern u1="ó" u2="Ș" k="14" /> + <hkern u1="ó" u2="Ǿ" k="6" /> + <hkern u1="ó" u2="ſ" k="5" /> + <hkern u1="ó" u2="ÿ" k="5" /> + <hkern u1="ó" u2="ý" k="5" /> + <hkern u1="ó" u2="ß" k="5" /> + <hkern u1="ó" u2="Þ" k="14" /> + <hkern u1="ó" u2="Ý" k="87" /> + <hkern u1="ó" u2="Ü" k="15" /> + <hkern u1="ó" u2="Û" k="15" /> + <hkern u1="ó" u2="Ú" k="15" /> + <hkern u1="ó" u2="Ù" k="15" /> + <hkern u1="ó" u2="Ø" k="6" /> + <hkern u1="ó" u2="Ö" k="6" /> + <hkern u1="ó" u2="Õ" k="6" /> + <hkern u1="ó" u2="Ô" k="6" /> + <hkern u1="ó" u2="Ó" k="6" /> + <hkern u1="ó" u2="Ò" k="6" /> + <hkern u1="ó" u2="Ñ" k="14" /> + <hkern u1="ó" u2="Ð" k="14" /> + <hkern u1="ó" u2="Ï" k="14" /> + <hkern u1="ó" u2="Î" k="14" /> + <hkern u1="ó" u2="Í" k="14" /> + <hkern u1="ó" u2="Ì" k="14" /> + <hkern u1="ó" u2="Ë" k="14" /> + <hkern u1="ó" u2="Ê" k="14" /> + <hkern u1="ó" u2="É" k="14" /> + <hkern u1="ó" u2="È" k="14" /> + <hkern u1="ó" u2="Ç" k="6" /> + <hkern u1="ó" u2="Å" k="12" /> + <hkern u1="ó" u2="Ä" k="12" /> + <hkern u1="ó" u2="Ã" k="12" /> + <hkern u1="ó" u2="Â" k="12" /> + <hkern u1="ó" u2="Á" k="12" /> + <hkern u1="ó" u2="À" k="12" /> + <hkern u1="ó" u2="}" k="23" /> + <hkern u1="ó" u2="y" k="5" /> + <hkern u1="ó" u2="x" k="15" /> + <hkern u1="ó" u2="v" k="7" /> + <hkern u1="ó" u2="t" k="4" /> + <hkern u1="ó" u2="f" k="5" /> + <hkern u1="ó" u2="]" k="25" /> + <hkern u1="ó" u2="\" k="22" /> + <hkern u1="ó" u2="Y" k="87" /> + <hkern u1="ó" u2="X" k="41" /> + <hkern u1="ó" u2="V" k="53" /> + <hkern u1="ó" u2="U" k="15" /> + <hkern u1="ó" u2="T" k="86" /> + <hkern u1="ó" u2="S" k="14" /> + <hkern u1="ó" u2="R" k="14" /> + <hkern u1="ó" u2="Q" k="6" /> + <hkern u1="ó" u2="P" k="14" /> + <hkern u1="ó" u2="O" k="6" /> + <hkern u1="ó" u2="N" k="14" /> + <hkern u1="ó" u2="M" k="14" /> + <hkern u1="ó" u2="L" k="14" /> + <hkern u1="ó" u2="K" k="14" /> + <hkern u1="ó" u2="I" k="14" /> + <hkern u1="ó" u2="H" k="14" /> + <hkern u1="ó" u2="G" k="6" /> + <hkern u1="ó" u2="F" k="14" /> + <hkern u1="ó" u2="E" k="14" /> + <hkern u1="ó" u2="D" k="14" /> + <hkern u1="ó" u2="C" k="6" /> + <hkern u1="ó" u2="B" k="14" /> + <hkern u1="ó" u2="A" k="12" /> + <hkern u1="ó" u2="?" k="20" /> + <hkern u1="ó" u2="*" k="14" /> + <hkern u1="ó" u2=")" k="27" /> + <hkern u1="ó" u2="'" k="16" /> + <hkern u1="ó" u2=""" k="16" /> + <hkern u1="ô" g2="f_j" k="5" /> + <hkern u1="ô" u2="ffl" k="5" /> + <hkern u1="ô" u2="ffi" k="5" /> + <hkern u1="ô" u2="fl" k="5" /> + <hkern u1="ô" u2="fi" k="5" /> + <hkern u1="ô" u2="ff" k="5" /> + <hkern u1="ô" u2="™" k="23" /> + <hkern u1="ô" u2="”" k="16" /> + <hkern u1="ô" u2="“" k="15" /> + <hkern u1="ô" u2="’" k="16" /> + <hkern u1="ô" u2="‘" k="15" /> + <hkern u1="ô" u2="ț" k="4" /> + <hkern u1="ô" u2="Ț" k="86" /> + <hkern u1="ô" u2="Ș" k="14" /> + <hkern u1="ô" u2="Ǿ" k="6" /> + <hkern u1="ô" u2="ſ" k="5" /> + <hkern u1="ô" u2="ÿ" k="5" /> + <hkern u1="ô" u2="ý" k="5" /> + <hkern u1="ô" u2="ß" k="5" /> + <hkern u1="ô" u2="Þ" k="14" /> + <hkern u1="ô" u2="Ý" k="87" /> + <hkern u1="ô" u2="Ü" k="15" /> + <hkern u1="ô" u2="Û" k="15" /> + <hkern u1="ô" u2="Ú" k="15" /> + <hkern u1="ô" u2="Ù" k="15" /> + <hkern u1="ô" u2="Ø" k="6" /> + <hkern u1="ô" u2="Ö" k="6" /> + <hkern u1="ô" u2="Õ" k="6" /> + <hkern u1="ô" u2="Ô" k="6" /> + <hkern u1="ô" u2="Ó" k="6" /> + <hkern u1="ô" u2="Ò" k="6" /> + <hkern u1="ô" u2="Ñ" k="14" /> + <hkern u1="ô" u2="Ð" k="14" /> + <hkern u1="ô" u2="Ï" k="14" /> + <hkern u1="ô" u2="Î" k="14" /> + <hkern u1="ô" u2="Í" k="14" /> + <hkern u1="ô" u2="Ì" k="14" /> + <hkern u1="ô" u2="Ë" k="14" /> + <hkern u1="ô" u2="Ê" k="14" /> + <hkern u1="ô" u2="É" k="14" /> + <hkern u1="ô" u2="È" k="14" /> + <hkern u1="ô" u2="Ç" k="6" /> + <hkern u1="ô" u2="Å" k="12" /> + <hkern u1="ô" u2="Ä" k="12" /> + <hkern u1="ô" u2="Ã" k="12" /> + <hkern u1="ô" u2="Â" k="12" /> + <hkern u1="ô" u2="Á" k="12" /> + <hkern u1="ô" u2="À" k="12" /> + <hkern u1="ô" u2="}" k="23" /> + <hkern u1="ô" u2="y" k="5" /> + <hkern u1="ô" u2="x" k="15" /> + <hkern u1="ô" u2="v" k="7" /> + <hkern u1="ô" u2="t" k="4" /> + <hkern u1="ô" u2="f" k="5" /> + <hkern u1="ô" u2="]" k="25" /> + <hkern u1="ô" u2="\" k="22" /> + <hkern u1="ô" u2="Y" k="87" /> + <hkern u1="ô" u2="X" k="41" /> + <hkern u1="ô" u2="V" k="53" /> + <hkern u1="ô" u2="U" k="15" /> + <hkern u1="ô" u2="T" k="86" /> + <hkern u1="ô" u2="S" k="14" /> + <hkern u1="ô" u2="R" k="14" /> + <hkern u1="ô" u2="Q" k="6" /> + <hkern u1="ô" u2="P" k="14" /> + <hkern u1="ô" u2="O" k="6" /> + <hkern u1="ô" u2="N" k="14" /> + <hkern u1="ô" u2="M" k="14" /> + <hkern u1="ô" u2="L" k="14" /> + <hkern u1="ô" u2="K" k="14" /> + <hkern u1="ô" u2="I" k="14" /> + <hkern u1="ô" u2="H" k="14" /> + <hkern u1="ô" u2="G" k="6" /> + <hkern u1="ô" u2="F" k="14" /> + <hkern u1="ô" u2="E" k="14" /> + <hkern u1="ô" u2="D" k="14" /> + <hkern u1="ô" u2="C" k="6" /> + <hkern u1="ô" u2="B" k="14" /> + <hkern u1="ô" u2="A" k="12" /> + <hkern u1="ô" u2="?" k="20" /> + <hkern u1="ô" u2="*" k="14" /> + <hkern u1="ô" u2=")" k="27" /> + <hkern u1="ô" u2="'" k="16" /> + <hkern u1="ô" u2=""" k="16" /> + <hkern u1="õ" g2="f_j" k="5" /> + <hkern u1="õ" u2="ffl" k="5" /> + <hkern u1="õ" u2="ffi" k="5" /> + <hkern u1="õ" u2="fl" k="5" /> + <hkern u1="õ" u2="fi" k="5" /> + <hkern u1="õ" u2="ff" k="5" /> + <hkern u1="õ" u2="™" k="23" /> + <hkern u1="õ" u2="”" k="16" /> + <hkern u1="õ" u2="“" k="15" /> + <hkern u1="õ" u2="’" k="16" /> + <hkern u1="õ" u2="‘" k="15" /> + <hkern u1="õ" u2="ț" k="4" /> + <hkern u1="õ" u2="Ț" k="86" /> + <hkern u1="õ" u2="Ș" k="14" /> + <hkern u1="õ" u2="Ǿ" k="6" /> + <hkern u1="õ" u2="ſ" k="5" /> + <hkern u1="õ" u2="ÿ" k="5" /> + <hkern u1="õ" u2="ý" k="5" /> + <hkern u1="õ" u2="ß" k="5" /> + <hkern u1="õ" u2="Þ" k="14" /> + <hkern u1="õ" u2="Ý" k="87" /> + <hkern u1="õ" u2="Ü" k="15" /> + <hkern u1="õ" u2="Û" k="15" /> + <hkern u1="õ" u2="Ú" k="15" /> + <hkern u1="õ" u2="Ù" k="15" /> + <hkern u1="õ" u2="Ø" k="6" /> + <hkern u1="õ" u2="Ö" k="6" /> + <hkern u1="õ" u2="Õ" k="6" /> + <hkern u1="õ" u2="Ô" k="6" /> + <hkern u1="õ" u2="Ó" k="6" /> + <hkern u1="õ" u2="Ò" k="6" /> + <hkern u1="õ" u2="Ñ" k="14" /> + <hkern u1="õ" u2="Ð" k="14" /> + <hkern u1="õ" u2="Ï" k="14" /> + <hkern u1="õ" u2="Î" k="14" /> + <hkern u1="õ" u2="Í" k="14" /> + <hkern u1="õ" u2="Ì" k="14" /> + <hkern u1="õ" u2="Ë" k="14" /> + <hkern u1="õ" u2="Ê" k="14" /> + <hkern u1="õ" u2="É" k="14" /> + <hkern u1="õ" u2="È" k="14" /> + <hkern u1="õ" u2="Ç" k="6" /> + <hkern u1="õ" u2="Å" k="12" /> + <hkern u1="õ" u2="Ä" k="12" /> + <hkern u1="õ" u2="Ã" k="12" /> + <hkern u1="õ" u2="Â" k="12" /> + <hkern u1="õ" u2="Á" k="12" /> + <hkern u1="õ" u2="À" k="12" /> + <hkern u1="õ" u2="}" k="23" /> + <hkern u1="õ" u2="y" k="5" /> + <hkern u1="õ" u2="x" k="15" /> + <hkern u1="õ" u2="v" k="7" /> + <hkern u1="õ" u2="t" k="4" /> + <hkern u1="õ" u2="f" k="5" /> + <hkern u1="õ" u2="]" k="25" /> + <hkern u1="õ" u2="\" k="22" /> + <hkern u1="õ" u2="Y" k="87" /> + <hkern u1="õ" u2="X" k="41" /> + <hkern u1="õ" u2="V" k="53" /> + <hkern u1="õ" u2="U" k="15" /> + <hkern u1="õ" u2="T" k="86" /> + <hkern u1="õ" u2="S" k="14" /> + <hkern u1="õ" u2="R" k="14" /> + <hkern u1="õ" u2="Q" k="6" /> + <hkern u1="õ" u2="P" k="14" /> + <hkern u1="õ" u2="O" k="6" /> + <hkern u1="õ" u2="N" k="14" /> + <hkern u1="õ" u2="M" k="14" /> + <hkern u1="õ" u2="L" k="14" /> + <hkern u1="õ" u2="K" k="14" /> + <hkern u1="õ" u2="I" k="14" /> + <hkern u1="õ" u2="H" k="14" /> + <hkern u1="õ" u2="G" k="6" /> + <hkern u1="õ" u2="F" k="14" /> + <hkern u1="õ" u2="E" k="14" /> + <hkern u1="õ" u2="D" k="14" /> + <hkern u1="õ" u2="C" k="6" /> + <hkern u1="õ" u2="B" k="14" /> + <hkern u1="õ" u2="A" k="12" /> + <hkern u1="õ" u2="?" k="20" /> + <hkern u1="õ" u2="*" k="14" /> + <hkern u1="õ" u2=")" k="27" /> + <hkern u1="õ" u2="'" k="16" /> + <hkern u1="õ" u2=""" k="16" /> + <hkern u1="ö" g2="f_j" k="5" /> + <hkern u1="ö" u2="ffl" k="5" /> + <hkern u1="ö" u2="ffi" k="5" /> + <hkern u1="ö" u2="fl" k="5" /> + <hkern u1="ö" u2="fi" k="5" /> + <hkern u1="ö" u2="ff" k="5" /> + <hkern u1="ö" u2="™" k="23" /> + <hkern u1="ö" u2="”" k="16" /> + <hkern u1="ö" u2="“" k="15" /> + <hkern u1="ö" u2="’" k="16" /> + <hkern u1="ö" u2="‘" k="15" /> + <hkern u1="ö" u2="ț" k="4" /> + <hkern u1="ö" u2="Ț" k="86" /> + <hkern u1="ö" u2="Ș" k="14" /> + <hkern u1="ö" u2="Ǿ" k="6" /> + <hkern u1="ö" u2="ſ" k="5" /> + <hkern u1="ö" u2="ÿ" k="5" /> + <hkern u1="ö" u2="ý" k="5" /> + <hkern u1="ö" u2="ß" k="5" /> + <hkern u1="ö" u2="Þ" k="14" /> + <hkern u1="ö" u2="Ý" k="87" /> + <hkern u1="ö" u2="Ü" k="15" /> + <hkern u1="ö" u2="Û" k="15" /> + <hkern u1="ö" u2="Ú" k="15" /> + <hkern u1="ö" u2="Ù" k="15" /> + <hkern u1="ö" u2="Ø" k="6" /> + <hkern u1="ö" u2="Ö" k="6" /> + <hkern u1="ö" u2="Õ" k="6" /> + <hkern u1="ö" u2="Ô" k="6" /> + <hkern u1="ö" u2="Ó" k="6" /> + <hkern u1="ö" u2="Ò" k="6" /> + <hkern u1="ö" u2="Ñ" k="14" /> + <hkern u1="ö" u2="Ð" k="14" /> + <hkern u1="ö" u2="Ï" k="14" /> + <hkern u1="ö" u2="Î" k="14" /> + <hkern u1="ö" u2="Í" k="14" /> + <hkern u1="ö" u2="Ì" k="14" /> + <hkern u1="ö" u2="Ë" k="14" /> + <hkern u1="ö" u2="Ê" k="14" /> + <hkern u1="ö" u2="É" k="14" /> + <hkern u1="ö" u2="È" k="14" /> + <hkern u1="ö" u2="Ç" k="6" /> + <hkern u1="ö" u2="Å" k="12" /> + <hkern u1="ö" u2="Ä" k="12" /> + <hkern u1="ö" u2="Ã" k="12" /> + <hkern u1="ö" u2="Â" k="12" /> + <hkern u1="ö" u2="Á" k="12" /> + <hkern u1="ö" u2="À" k="12" /> + <hkern u1="ö" u2="}" k="23" /> + <hkern u1="ö" u2="y" k="5" /> + <hkern u1="ö" u2="x" k="15" /> + <hkern u1="ö" u2="v" k="7" /> + <hkern u1="ö" u2="t" k="4" /> + <hkern u1="ö" u2="f" k="5" /> + <hkern u1="ö" u2="]" k="25" /> + <hkern u1="ö" u2="\" k="22" /> + <hkern u1="ö" u2="Y" k="87" /> + <hkern u1="ö" u2="X" k="41" /> + <hkern u1="ö" u2="V" k="53" /> + <hkern u1="ö" u2="U" k="15" /> + <hkern u1="ö" u2="T" k="86" /> + <hkern u1="ö" u2="S" k="14" /> + <hkern u1="ö" u2="R" k="14" /> + <hkern u1="ö" u2="Q" k="6" /> + <hkern u1="ö" u2="P" k="14" /> + <hkern u1="ö" u2="O" k="6" /> + <hkern u1="ö" u2="N" k="14" /> + <hkern u1="ö" u2="M" k="14" /> + <hkern u1="ö" u2="L" k="14" /> + <hkern u1="ö" u2="K" k="14" /> + <hkern u1="ö" u2="I" k="14" /> + <hkern u1="ö" u2="H" k="14" /> + <hkern u1="ö" u2="G" k="6" /> + <hkern u1="ö" u2="F" k="14" /> + <hkern u1="ö" u2="E" k="14" /> + <hkern u1="ö" u2="D" k="14" /> + <hkern u1="ö" u2="C" k="6" /> + <hkern u1="ö" u2="B" k="14" /> + <hkern u1="ö" u2="A" k="12" /> + <hkern u1="ö" u2="?" k="20" /> + <hkern u1="ö" u2="*" k="14" /> + <hkern u1="ö" u2=")" k="27" /> + <hkern u1="ö" u2="'" k="16" /> + <hkern u1="ö" u2=""" k="16" /> + <hkern u1="ø" g2="f_j" k="5" /> + <hkern u1="ø" u2="ffl" k="5" /> + <hkern u1="ø" u2="ffi" k="5" /> + <hkern u1="ø" u2="fl" k="5" /> + <hkern u1="ø" u2="fi" k="5" /> + <hkern u1="ø" u2="ff" k="5" /> + <hkern u1="ø" u2="™" k="23" /> + <hkern u1="ø" u2="”" k="16" /> + <hkern u1="ø" u2="“" k="15" /> + <hkern u1="ø" u2="’" k="16" /> + <hkern u1="ø" u2="‘" k="15" /> + <hkern u1="ø" u2="ț" k="4" /> + <hkern u1="ø" u2="Ț" k="86" /> + <hkern u1="ø" u2="Ș" k="14" /> + <hkern u1="ø" u2="Ǿ" k="6" /> + <hkern u1="ø" u2="ſ" k="5" /> + <hkern u1="ø" u2="ÿ" k="5" /> + <hkern u1="ø" u2="ý" k="5" /> + <hkern u1="ø" u2="ß" k="5" /> + <hkern u1="ø" u2="Þ" k="14" /> + <hkern u1="ø" u2="Ý" k="87" /> + <hkern u1="ø" u2="Ü" k="15" /> + <hkern u1="ø" u2="Û" k="15" /> + <hkern u1="ø" u2="Ú" k="15" /> + <hkern u1="ø" u2="Ù" k="15" /> + <hkern u1="ø" u2="Ø" k="6" /> + <hkern u1="ø" u2="Ö" k="6" /> + <hkern u1="ø" u2="Õ" k="6" /> + <hkern u1="ø" u2="Ô" k="6" /> + <hkern u1="ø" u2="Ó" k="6" /> + <hkern u1="ø" u2="Ò" k="6" /> + <hkern u1="ø" u2="Ñ" k="14" /> + <hkern u1="ø" u2="Ð" k="14" /> + <hkern u1="ø" u2="Ï" k="14" /> + <hkern u1="ø" u2="Î" k="14" /> + <hkern u1="ø" u2="Í" k="14" /> + <hkern u1="ø" u2="Ì" k="14" /> + <hkern u1="ø" u2="Ë" k="14" /> + <hkern u1="ø" u2="Ê" k="14" /> + <hkern u1="ø" u2="É" k="14" /> + <hkern u1="ø" u2="È" k="14" /> + <hkern u1="ø" u2="Ç" k="6" /> + <hkern u1="ø" u2="Å" k="12" /> + <hkern u1="ø" u2="Ä" k="12" /> + <hkern u1="ø" u2="Ã" k="12" /> + <hkern u1="ø" u2="Â" k="12" /> + <hkern u1="ø" u2="Á" k="12" /> + <hkern u1="ø" u2="À" k="12" /> + <hkern u1="ø" u2="}" k="23" /> + <hkern u1="ø" u2="y" k="5" /> + <hkern u1="ø" u2="x" k="15" /> + <hkern u1="ø" u2="v" k="7" /> + <hkern u1="ø" u2="t" k="4" /> + <hkern u1="ø" u2="f" k="5" /> + <hkern u1="ø" u2="]" k="25" /> + <hkern u1="ø" u2="\" k="22" /> + <hkern u1="ø" u2="Y" k="87" /> + <hkern u1="ø" u2="X" k="41" /> + <hkern u1="ø" u2="V" k="53" /> + <hkern u1="ø" u2="U" k="15" /> + <hkern u1="ø" u2="T" k="86" /> + <hkern u1="ø" u2="S" k="14" /> + <hkern u1="ø" u2="R" k="14" /> + <hkern u1="ø" u2="Q" k="6" /> + <hkern u1="ø" u2="P" k="14" /> + <hkern u1="ø" u2="O" k="6" /> + <hkern u1="ø" u2="N" k="14" /> + <hkern u1="ø" u2="M" k="14" /> + <hkern u1="ø" u2="L" k="14" /> + <hkern u1="ø" u2="K" k="14" /> + <hkern u1="ø" u2="I" k="14" /> + <hkern u1="ø" u2="H" k="14" /> + <hkern u1="ø" u2="G" k="6" /> + <hkern u1="ø" u2="F" k="14" /> + <hkern u1="ø" u2="E" k="14" /> + <hkern u1="ø" u2="D" k="14" /> + <hkern u1="ø" u2="C" k="6" /> + <hkern u1="ø" u2="B" k="14" /> + <hkern u1="ø" u2="A" k="12" /> + <hkern u1="ø" u2="?" k="20" /> + <hkern u1="ø" u2="*" k="14" /> + <hkern u1="ø" u2=")" k="27" /> + <hkern u1="ø" u2="'" k="16" /> + <hkern u1="ø" u2=""" k="16" /> + <hkern u1="ù" u2="™" k="18" /> + <hkern u1="ù" u2="Ț" k="67" /> + <hkern u1="ù" u2="Ș" k="8" /> + <hkern u1="ù" u2="Ǿ" k="9" /> + <hkern u1="ù" u2="Þ" k="10" /> + <hkern u1="ù" u2="Ý" k="70" /> + <hkern u1="ù" u2="Ü" k="18" /> + <hkern u1="ù" u2="Û" k="18" /> + <hkern u1="ù" u2="Ú" k="18" /> + <hkern u1="ù" u2="Ù" k="18" /> + <hkern u1="ù" u2="Ø" k="9" /> + <hkern u1="ù" u2="Ö" k="9" /> + <hkern u1="ù" u2="Õ" k="9" /> + <hkern u1="ù" u2="Ô" k="9" /> + <hkern u1="ù" u2="Ó" k="9" /> + <hkern u1="ù" u2="Ò" k="9" /> + <hkern u1="ù" u2="Ñ" k="10" /> + <hkern u1="ù" u2="Ð" k="10" /> + <hkern u1="ù" u2="Ï" k="10" /> + <hkern u1="ù" u2="Î" k="10" /> + <hkern u1="ù" u2="Í" k="10" /> + <hkern u1="ù" u2="Ì" k="10" /> + <hkern u1="ù" u2="Ë" k="10" /> + <hkern u1="ù" u2="Ê" k="10" /> + <hkern u1="ù" u2="É" k="10" /> + <hkern u1="ù" u2="È" k="10" /> + <hkern u1="ù" u2="Ç" k="9" /> + <hkern u1="ù" u2="Å" k="6" /> + <hkern u1="ù" u2="Ä" k="6" /> + <hkern u1="ù" u2="Ã" k="6" /> + <hkern u1="ù" u2="Â" k="6" /> + <hkern u1="ù" u2="Á" k="6" /> + <hkern u1="ù" u2="À" k="6" /> + <hkern u1="ù" u2="}" k="18" /> + <hkern u1="ù" u2="]" k="20" /> + <hkern u1="ù" u2="\" k="15" /> + <hkern u1="ù" u2="Y" k="70" /> + <hkern u1="ù" u2="X" k="8" /> + <hkern u1="ù" u2="V" k="44" /> + <hkern u1="ù" u2="U" k="18" /> + <hkern u1="ù" u2="T" k="67" /> + <hkern u1="ù" u2="S" k="8" /> + <hkern u1="ù" u2="R" k="10" /> + <hkern u1="ù" u2="Q" k="9" /> + <hkern u1="ù" u2="P" k="10" /> + <hkern u1="ù" u2="O" k="9" /> + <hkern u1="ù" u2="N" k="10" /> + <hkern u1="ù" u2="M" k="10" /> + <hkern u1="ù" u2="L" k="10" /> + <hkern u1="ù" u2="K" k="10" /> + <hkern u1="ù" u2="I" k="10" /> + <hkern u1="ù" u2="H" k="10" /> + <hkern u1="ù" u2="G" k="9" /> + <hkern u1="ù" u2="F" k="10" /> + <hkern u1="ù" u2="E" k="10" /> + <hkern u1="ù" u2="D" k="10" /> + <hkern u1="ù" u2="C" k="9" /> + <hkern u1="ù" u2="B" k="10" /> + <hkern u1="ù" u2="A" k="6" /> + <hkern u1="ù" u2=")" k="18" /> + <hkern u1="ù" u2="&" k="7" /> + <hkern u1="ú" u2="™" k="18" /> + <hkern u1="ú" u2="Ț" k="67" /> + <hkern u1="ú" u2="Ș" k="8" /> + <hkern u1="ú" u2="Ǿ" k="9" /> + <hkern u1="ú" u2="Þ" k="10" /> + <hkern u1="ú" u2="Ý" k="70" /> + <hkern u1="ú" u2="Ü" k="18" /> + <hkern u1="ú" u2="Û" k="18" /> + <hkern u1="ú" u2="Ú" k="18" /> + <hkern u1="ú" u2="Ù" k="18" /> + <hkern u1="ú" u2="Ø" k="9" /> + <hkern u1="ú" u2="Ö" k="9" /> + <hkern u1="ú" u2="Õ" k="9" /> + <hkern u1="ú" u2="Ô" k="9" /> + <hkern u1="ú" u2="Ó" k="9" /> + <hkern u1="ú" u2="Ò" k="9" /> + <hkern u1="ú" u2="Ñ" k="10" /> + <hkern u1="ú" u2="Ð" k="10" /> + <hkern u1="ú" u2="Ï" k="10" /> + <hkern u1="ú" u2="Î" k="10" /> + <hkern u1="ú" u2="Í" k="10" /> + <hkern u1="ú" u2="Ì" k="10" /> + <hkern u1="ú" u2="Ë" k="10" /> + <hkern u1="ú" u2="Ê" k="10" /> + <hkern u1="ú" u2="É" k="10" /> + <hkern u1="ú" u2="È" k="10" /> + <hkern u1="ú" u2="Ç" k="9" /> + <hkern u1="ú" u2="Å" k="6" /> + <hkern u1="ú" u2="Ä" k="6" /> + <hkern u1="ú" u2="Ã" k="6" /> + <hkern u1="ú" u2="Â" k="6" /> + <hkern u1="ú" u2="Á" k="6" /> + <hkern u1="ú" u2="À" k="6" /> + <hkern u1="ú" u2="}" k="18" /> + <hkern u1="ú" u2="]" k="20" /> + <hkern u1="ú" u2="\" k="15" /> + <hkern u1="ú" u2="Y" k="70" /> + <hkern u1="ú" u2="X" k="8" /> + <hkern u1="ú" u2="V" k="44" /> + <hkern u1="ú" u2="U" k="18" /> + <hkern u1="ú" u2="T" k="67" /> + <hkern u1="ú" u2="S" k="8" /> + <hkern u1="ú" u2="R" k="10" /> + <hkern u1="ú" u2="Q" k="9" /> + <hkern u1="ú" u2="P" k="10" /> + <hkern u1="ú" u2="O" k="9" /> + <hkern u1="ú" u2="N" k="10" /> + <hkern u1="ú" u2="M" k="10" /> + <hkern u1="ú" u2="L" k="10" /> + <hkern u1="ú" u2="K" k="10" /> + <hkern u1="ú" u2="I" k="10" /> + <hkern u1="ú" u2="H" k="10" /> + <hkern u1="ú" u2="G" k="9" /> + <hkern u1="ú" u2="F" k="10" /> + <hkern u1="ú" u2="E" k="10" /> + <hkern u1="ú" u2="D" k="10" /> + <hkern u1="ú" u2="C" k="9" /> + <hkern u1="ú" u2="B" k="10" /> + <hkern u1="ú" u2="A" k="6" /> + <hkern u1="ú" u2=")" k="18" /> + <hkern u1="ú" u2="&" k="7" /> + <hkern u1="û" u2="™" k="18" /> + <hkern u1="û" u2="Ț" k="67" /> + <hkern u1="û" u2="Ș" k="8" /> + <hkern u1="û" u2="Ǿ" k="9" /> + <hkern u1="û" u2="Þ" k="10" /> + <hkern u1="û" u2="Ý" k="70" /> + <hkern u1="û" u2="Ü" k="18" /> + <hkern u1="û" u2="Û" k="18" /> + <hkern u1="û" u2="Ú" k="18" /> + <hkern u1="û" u2="Ù" k="18" /> + <hkern u1="û" u2="Ø" k="9" /> + <hkern u1="û" u2="Ö" k="9" /> + <hkern u1="û" u2="Õ" k="9" /> + <hkern u1="û" u2="Ô" k="9" /> + <hkern u1="û" u2="Ó" k="9" /> + <hkern u1="û" u2="Ò" k="9" /> + <hkern u1="û" u2="Ñ" k="10" /> + <hkern u1="û" u2="Ð" k="10" /> + <hkern u1="û" u2="Ï" k="10" /> + <hkern u1="û" u2="Î" k="10" /> + <hkern u1="û" u2="Í" k="10" /> + <hkern u1="û" u2="Ì" k="10" /> + <hkern u1="û" u2="Ë" k="10" /> + <hkern u1="û" u2="Ê" k="10" /> + <hkern u1="û" u2="É" k="10" /> + <hkern u1="û" u2="È" k="10" /> + <hkern u1="û" u2="Ç" k="9" /> + <hkern u1="û" u2="Å" k="6" /> + <hkern u1="û" u2="Ä" k="6" /> + <hkern u1="û" u2="Ã" k="6" /> + <hkern u1="û" u2="Â" k="6" /> + <hkern u1="û" u2="Á" k="6" /> + <hkern u1="û" u2="À" k="6" /> + <hkern u1="û" u2="}" k="18" /> + <hkern u1="û" u2="]" k="20" /> + <hkern u1="û" u2="\" k="15" /> + <hkern u1="û" u2="Y" k="70" /> + <hkern u1="û" u2="X" k="8" /> + <hkern u1="û" u2="V" k="44" /> + <hkern u1="û" u2="U" k="18" /> + <hkern u1="û" u2="T" k="67" /> + <hkern u1="û" u2="S" k="8" /> + <hkern u1="û" u2="R" k="10" /> + <hkern u1="û" u2="Q" k="9" /> + <hkern u1="û" u2="P" k="10" /> + <hkern u1="û" u2="O" k="9" /> + <hkern u1="û" u2="N" k="10" /> + <hkern u1="û" u2="M" k="10" /> + <hkern u1="û" u2="L" k="10" /> + <hkern u1="û" u2="K" k="10" /> + <hkern u1="û" u2="I" k="10" /> + <hkern u1="û" u2="H" k="10" /> + <hkern u1="û" u2="G" k="9" /> + <hkern u1="û" u2="F" k="10" /> + <hkern u1="û" u2="E" k="10" /> + <hkern u1="û" u2="D" k="10" /> + <hkern u1="û" u2="C" k="9" /> + <hkern u1="û" u2="B" k="10" /> + <hkern u1="û" u2="A" k="6" /> + <hkern u1="û" u2=")" k="18" /> + <hkern u1="û" u2="&" k="7" /> + <hkern u1="ü" u2="™" k="18" /> + <hkern u1="ü" u2="Ț" k="67" /> + <hkern u1="ü" u2="Ș" k="8" /> + <hkern u1="ü" u2="Ǿ" k="9" /> + <hkern u1="ü" u2="Þ" k="10" /> + <hkern u1="ü" u2="Ý" k="70" /> + <hkern u1="ü" u2="Ü" k="18" /> + <hkern u1="ü" u2="Û" k="18" /> + <hkern u1="ü" u2="Ú" k="18" /> + <hkern u1="ü" u2="Ù" k="18" /> + <hkern u1="ü" u2="Ø" k="9" /> + <hkern u1="ü" u2="Ö" k="9" /> + <hkern u1="ü" u2="Õ" k="9" /> + <hkern u1="ü" u2="Ô" k="9" /> + <hkern u1="ü" u2="Ó" k="9" /> + <hkern u1="ü" u2="Ò" k="9" /> + <hkern u1="ü" u2="Ñ" k="10" /> + <hkern u1="ü" u2="Ð" k="10" /> + <hkern u1="ü" u2="Ï" k="10" /> + <hkern u1="ü" u2="Î" k="10" /> + <hkern u1="ü" u2="Í" k="10" /> + <hkern u1="ü" u2="Ì" k="10" /> + <hkern u1="ü" u2="Ë" k="10" /> + <hkern u1="ü" u2="Ê" k="10" /> + <hkern u1="ü" u2="É" k="10" /> + <hkern u1="ü" u2="È" k="10" /> + <hkern u1="ü" u2="Ç" k="9" /> + <hkern u1="ü" u2="Å" k="6" /> + <hkern u1="ü" u2="Ä" k="6" /> + <hkern u1="ü" u2="Ã" k="6" /> + <hkern u1="ü" u2="Â" k="6" /> + <hkern u1="ü" u2="Á" k="6" /> + <hkern u1="ü" u2="À" k="6" /> + <hkern u1="ü" u2="}" k="18" /> + <hkern u1="ü" u2="]" k="20" /> + <hkern u1="ü" u2="\" k="15" /> + <hkern u1="ü" u2="Y" k="70" /> + <hkern u1="ü" u2="X" k="8" /> + <hkern u1="ü" u2="V" k="44" /> + <hkern u1="ü" u2="U" k="18" /> + <hkern u1="ü" u2="T" k="67" /> + <hkern u1="ü" u2="S" k="8" /> + <hkern u1="ü" u2="R" k="10" /> + <hkern u1="ü" u2="Q" k="9" /> + <hkern u1="ü" u2="P" k="10" /> + <hkern u1="ü" u2="O" k="9" /> + <hkern u1="ü" u2="N" k="10" /> + <hkern u1="ü" u2="M" k="10" /> + <hkern u1="ü" u2="L" k="10" /> + <hkern u1="ü" u2="K" k="10" /> + <hkern u1="ü" u2="I" k="10" /> + <hkern u1="ü" u2="H" k="10" /> + <hkern u1="ü" u2="G" k="9" /> + <hkern u1="ü" u2="F" k="10" /> + <hkern u1="ü" u2="E" k="10" /> + <hkern u1="ü" u2="D" k="10" /> + <hkern u1="ü" u2="C" k="9" /> + <hkern u1="ü" u2="B" k="10" /> + <hkern u1="ü" u2="A" k="6" /> + <hkern u1="ü" u2=")" k="18" /> + <hkern u1="ü" u2="&" k="7" /> + <hkern u1="ý" u2="…" k="28" /> + <hkern u1="ý" u2="„" k="28" /> + <hkern u1="ý" u2="‚" k="28" /> + <hkern u1="ý" u2="ț" k="-22" /> + <hkern u1="ý" u2="Ț" k="48" /> + <hkern u1="ý" u2="ǿ" k="5" /> + <hkern u1="ý" u2="ǽ" k="4" /> + <hkern u1="ý" u2="ÿ" k="-29" /> + <hkern u1="ý" u2="ý" k="-29" /> + <hkern u1="ý" u2="ø" k="5" /> + <hkern u1="ý" u2="ö" k="5" /> + <hkern u1="ý" u2="õ" k="5" /> + <hkern u1="ý" u2="ô" k="5" /> + <hkern u1="ý" u2="ó" k="5" /> + <hkern u1="ý" u2="ò" k="5" /> + <hkern u1="ý" u2="ð" k="5" /> + <hkern u1="ý" u2="ë" k="5" /> + <hkern u1="ý" u2="ê" k="5" /> + <hkern u1="ý" u2="é" k="5" /> + <hkern u1="ý" u2="è" k="5" /> + <hkern u1="ý" u2="ç" k="5" /> + <hkern u1="ý" u2="æ" k="4" /> + <hkern u1="ý" u2="å" k="4" /> + <hkern u1="ý" u2="ä" k="4" /> + <hkern u1="ý" u2="ã" k="4" /> + <hkern u1="ý" u2="â" k="4" /> + <hkern u1="ý" u2="á" k="4" /> + <hkern u1="ý" u2="à" k="4" /> + <hkern u1="ý" u2="Þ" k="7" /> + <hkern u1="ý" u2="Ý" k="33" /> + <hkern u1="ý" u2="Ü" k="6" /> + <hkern u1="ý" u2="Û" k="6" /> + <hkern u1="ý" u2="Ú" k="6" /> + <hkern u1="ý" u2="Ù" k="6" /> + <hkern u1="ý" u2="Ñ" k="7" /> + <hkern u1="ý" u2="Ð" k="7" /> + <hkern u1="ý" u2="Ï" k="7" /> + <hkern u1="ý" u2="Î" k="7" /> + <hkern u1="ý" u2="Í" k="7" /> + <hkern u1="ý" u2="Ì" k="7" /> + <hkern u1="ý" u2="Ë" k="7" /> + <hkern u1="ý" u2="Ê" k="7" /> + <hkern u1="ý" u2="É" k="7" /> + <hkern u1="ý" u2="È" k="7" /> + <hkern u1="ý" u2="Å" k="34" /> + <hkern u1="ý" u2="Ä" k="34" /> + <hkern u1="ý" u2="Ã" k="34" /> + <hkern u1="ý" u2="Â" k="34" /> + <hkern u1="ý" u2="Á" k="34" /> + <hkern u1="ý" u2="À" k="34" /> + <hkern u1="ý" u2="}" k="13" /> + <hkern u1="ý" u2="y" k="-29" /> + <hkern u1="ý" u2="x" k="-28" /> + <hkern u1="ý" u2="v" k="-31" /> + <hkern u1="ý" u2="t" k="-22" /> + <hkern u1="ý" u2="q" k="5" /> + <hkern u1="ý" u2="o" k="5" /> + <hkern u1="ý" u2="g" k="5" /> + <hkern u1="ý" u2="e" k="5" /> + <hkern u1="ý" u2="d" k="5" /> + <hkern u1="ý" u2="c" k="5" /> + <hkern u1="ý" u2="a" k="4" /> + <hkern u1="ý" u2="]" k="18" /> + <hkern u1="ý" u2="Y" k="33" /> + <hkern u1="ý" u2="X" k="36" /> + <hkern u1="ý" u2="V" k="10" /> + <hkern u1="ý" u2="U" k="6" /> + <hkern u1="ý" u2="T" k="48" /> + <hkern u1="ý" u2="R" k="7" /> + <hkern u1="ý" u2="P" k="7" /> + <hkern u1="ý" u2="N" k="7" /> + <hkern u1="ý" u2="M" k="7" /> + <hkern u1="ý" u2="L" k="7" /> + <hkern u1="ý" u2="K" k="7" /> + <hkern u1="ý" u2="I" k="7" /> + <hkern u1="ý" u2="H" k="7" /> + <hkern u1="ý" u2="F" k="7" /> + <hkern u1="ý" u2="E" k="7" /> + <hkern u1="ý" u2="D" k="7" /> + <hkern u1="ý" u2="B" k="7" /> + <hkern u1="ý" u2="A" k="34" /> + <hkern u1="ý" u2="/" k="15" /> + <hkern u1="ý" u2="." k="28" /> + <hkern u1="ý" u2="," k="28" /> + <hkern u1="ý" u2=")" k="17" /> + <hkern u1="ý" u2="&" k="12" /> + <hkern u1="þ" g2="f_j" k="5" /> + <hkern u1="þ" u2="ffl" k="5" /> + <hkern u1="þ" u2="ffi" k="5" /> + <hkern u1="þ" u2="fl" k="5" /> + <hkern u1="þ" u2="fi" k="5" /> + <hkern u1="þ" u2="ff" k="5" /> + <hkern u1="þ" u2="™" k="23" /> + <hkern u1="þ" u2="”" k="16" /> + <hkern u1="þ" u2="“" k="15" /> + <hkern u1="þ" u2="’" k="16" /> + <hkern u1="þ" u2="‘" k="15" /> + <hkern u1="þ" u2="ț" k="4" /> + <hkern u1="þ" u2="Ț" k="86" /> + <hkern u1="þ" u2="Ș" k="14" /> + <hkern u1="þ" u2="Ǿ" k="6" /> + <hkern u1="þ" u2="ſ" k="5" /> + <hkern u1="þ" u2="ÿ" k="5" /> + <hkern u1="þ" u2="ý" k="5" /> + <hkern u1="þ" u2="ß" k="5" /> + <hkern u1="þ" u2="Þ" k="14" /> + <hkern u1="þ" u2="Ý" k="87" /> + <hkern u1="þ" u2="Ü" k="15" /> + <hkern u1="þ" u2="Û" k="15" /> + <hkern u1="þ" u2="Ú" k="15" /> + <hkern u1="þ" u2="Ù" k="15" /> + <hkern u1="þ" u2="Ø" k="6" /> + <hkern u1="þ" u2="Ö" k="6" /> + <hkern u1="þ" u2="Õ" k="6" /> + <hkern u1="þ" u2="Ô" k="6" /> + <hkern u1="þ" u2="Ó" k="6" /> + <hkern u1="þ" u2="Ò" k="6" /> + <hkern u1="þ" u2="Ñ" k="14" /> + <hkern u1="þ" u2="Ð" k="14" /> + <hkern u1="þ" u2="Ï" k="14" /> + <hkern u1="þ" u2="Î" k="14" /> + <hkern u1="þ" u2="Í" k="14" /> + <hkern u1="þ" u2="Ì" k="14" /> + <hkern u1="þ" u2="Ë" k="14" /> + <hkern u1="þ" u2="Ê" k="14" /> + <hkern u1="þ" u2="É" k="14" /> + <hkern u1="þ" u2="È" k="14" /> + <hkern u1="þ" u2="Ç" k="6" /> + <hkern u1="þ" u2="Å" k="12" /> + <hkern u1="þ" u2="Ä" k="12" /> + <hkern u1="þ" u2="Ã" k="12" /> + <hkern u1="þ" u2="Â" k="12" /> + <hkern u1="þ" u2="Á" k="12" /> + <hkern u1="þ" u2="À" k="12" /> + <hkern u1="þ" u2="}" k="23" /> + <hkern u1="þ" u2="y" k="5" /> + <hkern u1="þ" u2="x" k="15" /> + <hkern u1="þ" u2="v" k="7" /> + <hkern u1="þ" u2="t" k="4" /> + <hkern u1="þ" u2="f" k="5" /> + <hkern u1="þ" u2="]" k="25" /> + <hkern u1="þ" u2="\" k="22" /> + <hkern u1="þ" u2="Y" k="87" /> + <hkern u1="þ" u2="X" k="41" /> + <hkern u1="þ" u2="V" k="53" /> + <hkern u1="þ" u2="U" k="15" /> + <hkern u1="þ" u2="T" k="86" /> + <hkern u1="þ" u2="S" k="14" /> + <hkern u1="þ" u2="R" k="14" /> + <hkern u1="þ" u2="Q" k="6" /> + <hkern u1="þ" u2="P" k="14" /> + <hkern u1="þ" u2="O" k="6" /> + <hkern u1="þ" u2="N" k="14" /> + <hkern u1="þ" u2="M" k="14" /> + <hkern u1="þ" u2="L" k="14" /> + <hkern u1="þ" u2="K" k="14" /> + <hkern u1="þ" u2="I" k="14" /> + <hkern u1="þ" u2="H" k="14" /> + <hkern u1="þ" u2="G" k="6" /> + <hkern u1="þ" u2="F" k="14" /> + <hkern u1="þ" u2="E" k="14" /> + <hkern u1="þ" u2="D" k="14" /> + <hkern u1="þ" u2="C" k="6" /> + <hkern u1="þ" u2="B" k="14" /> + <hkern u1="þ" u2="A" k="12" /> + <hkern u1="þ" u2="?" k="20" /> + <hkern u1="þ" u2="*" k="14" /> + <hkern u1="þ" u2=")" k="27" /> + <hkern u1="þ" u2="'" k="16" /> + <hkern u1="þ" u2=""" k="16" /> + <hkern u1="ÿ" u2="…" k="28" /> + <hkern u1="ÿ" u2="„" k="28" /> + <hkern u1="ÿ" u2="‚" k="28" /> + <hkern u1="ÿ" u2="ț" k="-22" /> + <hkern u1="ÿ" u2="Ț" k="48" /> + <hkern u1="ÿ" u2="ǿ" k="5" /> + <hkern u1="ÿ" u2="ǽ" k="4" /> + <hkern u1="ÿ" u2="ÿ" k="-29" /> + <hkern u1="ÿ" u2="ý" k="-29" /> + <hkern u1="ÿ" u2="ø" k="5" /> + <hkern u1="ÿ" u2="ö" k="5" /> + <hkern u1="ÿ" u2="õ" k="5" /> + <hkern u1="ÿ" u2="ô" k="5" /> + <hkern u1="ÿ" u2="ó" k="5" /> + <hkern u1="ÿ" u2="ò" k="5" /> + <hkern u1="ÿ" u2="ð" k="5" /> + <hkern u1="ÿ" u2="ë" k="5" /> + <hkern u1="ÿ" u2="ê" k="5" /> + <hkern u1="ÿ" u2="é" k="5" /> + <hkern u1="ÿ" u2="è" k="5" /> + <hkern u1="ÿ" u2="ç" k="5" /> + <hkern u1="ÿ" u2="æ" k="4" /> + <hkern u1="ÿ" u2="å" k="4" /> + <hkern u1="ÿ" u2="ä" k="4" /> + <hkern u1="ÿ" u2="ã" k="4" /> + <hkern u1="ÿ" u2="â" k="4" /> + <hkern u1="ÿ" u2="á" k="4" /> + <hkern u1="ÿ" u2="à" k="4" /> + <hkern u1="ÿ" u2="Þ" k="7" /> + <hkern u1="ÿ" u2="Ý" k="33" /> + <hkern u1="ÿ" u2="Ü" k="6" /> + <hkern u1="ÿ" u2="Û" k="6" /> + <hkern u1="ÿ" u2="Ú" k="6" /> + <hkern u1="ÿ" u2="Ù" k="6" /> + <hkern u1="ÿ" u2="Ñ" k="7" /> + <hkern u1="ÿ" u2="Ð" k="7" /> + <hkern u1="ÿ" u2="Ï" k="7" /> + <hkern u1="ÿ" u2="Î" k="7" /> + <hkern u1="ÿ" u2="Í" k="7" /> + <hkern u1="ÿ" u2="Ì" k="7" /> + <hkern u1="ÿ" u2="Ë" k="7" /> + <hkern u1="ÿ" u2="Ê" k="7" /> + <hkern u1="ÿ" u2="É" k="7" /> + <hkern u1="ÿ" u2="È" k="7" /> + <hkern u1="ÿ" u2="Å" k="34" /> + <hkern u1="ÿ" u2="Ä" k="34" /> + <hkern u1="ÿ" u2="Ã" k="34" /> + <hkern u1="ÿ" u2="Â" k="34" /> + <hkern u1="ÿ" u2="Á" k="34" /> + <hkern u1="ÿ" u2="À" k="34" /> + <hkern u1="ÿ" u2="}" k="13" /> + <hkern u1="ÿ" u2="y" k="-29" /> + <hkern u1="ÿ" u2="x" k="-28" /> + <hkern u1="ÿ" u2="v" k="-31" /> + <hkern u1="ÿ" u2="t" k="-22" /> + <hkern u1="ÿ" u2="q" k="5" /> + <hkern u1="ÿ" u2="o" k="5" /> + <hkern u1="ÿ" u2="g" k="5" /> + <hkern u1="ÿ" u2="e" k="5" /> + <hkern u1="ÿ" u2="d" k="5" /> + <hkern u1="ÿ" u2="c" k="5" /> + <hkern u1="ÿ" u2="a" k="4" /> + <hkern u1="ÿ" u2="]" k="18" /> + <hkern u1="ÿ" u2="Y" k="33" /> + <hkern u1="ÿ" u2="X" k="36" /> + <hkern u1="ÿ" u2="V" k="10" /> + <hkern u1="ÿ" u2="U" k="6" /> + <hkern u1="ÿ" u2="T" k="48" /> + <hkern u1="ÿ" u2="R" k="7" /> + <hkern u1="ÿ" u2="P" k="7" /> + <hkern u1="ÿ" u2="N" k="7" /> + <hkern u1="ÿ" u2="M" k="7" /> + <hkern u1="ÿ" u2="L" k="7" /> + <hkern u1="ÿ" u2="K" k="7" /> + <hkern u1="ÿ" u2="I" k="7" /> + <hkern u1="ÿ" u2="H" k="7" /> + <hkern u1="ÿ" u2="F" k="7" /> + <hkern u1="ÿ" u2="E" k="7" /> + <hkern u1="ÿ" u2="D" k="7" /> + <hkern u1="ÿ" u2="B" k="7" /> + <hkern u1="ÿ" u2="A" k="34" /> + <hkern u1="ÿ" u2="/" k="15" /> + <hkern u1="ÿ" u2="." k="28" /> + <hkern u1="ÿ" u2="," k="28" /> + <hkern u1="ÿ" u2=")" k="17" /> + <hkern u1="ÿ" u2="&" k="12" /> + <hkern u1="ſ" u2="ȷ" k="-1" /> + <hkern u1="ſ" u2="ï" k="-96" /> + <hkern u1="ſ" u2="î" k="-61" /> + <hkern u1="ſ" u2="í" k="-1" /> + <hkern u1="ſ" u2="ì" k="-82" /> + <hkern u1="ſ" u2="j" k="-11" /> + <hkern u1="ſ" u2="i" k="-11" /> + <hkern u1="Ǽ" g2="f_j" k="11" /> + <hkern u1="Ǽ" u2="st" k="6" /> + <hkern u1="Ǽ" u2="ffl" k="11" /> + <hkern u1="Ǽ" u2="ffi" k="11" /> + <hkern u1="Ǽ" u2="fl" k="11" /> + <hkern u1="Ǽ" u2="fi" k="11" /> + <hkern u1="Ǽ" u2="ff" k="11" /> + <hkern u1="Ǽ" u2="ț" k="17" /> + <hkern u1="Ǽ" u2="ș" k="6" /> + <hkern u1="Ǽ" u2="ǿ" k="14" /> + <hkern u1="Ǽ" u2="Ǿ" k="7" /> + <hkern u1="Ǽ" u2="ǽ" k="7" /> + <hkern u1="Ǽ" u2="ſ" k="11" /> + <hkern u1="Ǽ" u2="ÿ" k="14" /> + <hkern u1="Ǽ" u2="ý" k="14" /> + <hkern u1="Ǽ" u2="ü" k="13" /> + <hkern u1="Ǽ" u2="û" k="13" /> + <hkern u1="Ǽ" u2="ú" k="13" /> + <hkern u1="Ǽ" u2="ù" k="13" /> + <hkern u1="Ǽ" u2="ø" k="14" /> + <hkern u1="Ǽ" u2="ö" k="14" /> + <hkern u1="Ǽ" u2="õ" k="14" /> + <hkern u1="Ǽ" u2="ô" k="14" /> + <hkern u1="Ǽ" u2="ó" k="14" /> + <hkern u1="Ǽ" u2="ò" k="14" /> + <hkern u1="Ǽ" u2="ñ" k="7" /> + <hkern u1="Ǽ" u2="ð" k="14" /> + <hkern u1="Ǽ" u2="ë" k="14" /> + <hkern u1="Ǽ" u2="ê" k="14" /> + <hkern u1="Ǽ" u2="é" k="14" /> + <hkern u1="Ǽ" u2="è" k="14" /> + <hkern u1="Ǽ" u2="ç" k="14" /> + <hkern u1="Ǽ" u2="æ" k="7" /> + <hkern u1="Ǽ" u2="å" k="7" /> + <hkern u1="Ǽ" u2="ä" k="7" /> + <hkern u1="Ǽ" u2="ã" k="7" /> + <hkern u1="Ǽ" u2="â" k="7" /> + <hkern u1="Ǽ" u2="á" k="7" /> + <hkern u1="Ǽ" u2="à" k="7" /> + <hkern u1="Ǽ" u2="ß" k="11" /> + <hkern u1="Ǽ" u2="Ø" k="7" /> + <hkern u1="Ǽ" u2="Ö" k="7" /> + <hkern u1="Ǽ" u2="Õ" k="7" /> + <hkern u1="Ǽ" u2="Ô" k="7" /> + <hkern u1="Ǽ" u2="Ó" k="7" /> + <hkern u1="Ǽ" u2="Ò" k="7" /> + <hkern u1="Ǽ" u2="Ç" k="7" /> + <hkern u1="Ǽ" u2="y" k="14" /> + <hkern u1="Ǽ" u2="v" k="16" /> + <hkern u1="Ǽ" u2="u" k="13" /> + <hkern u1="Ǽ" u2="t" k="17" /> + <hkern u1="Ǽ" u2="s" k="6" /> + <hkern u1="Ǽ" u2="r" k="7" /> + <hkern u1="Ǽ" u2="q" k="14" /> + <hkern u1="Ǽ" u2="p" k="7" /> + <hkern u1="Ǽ" u2="o" k="14" /> + <hkern u1="Ǽ" u2="n" k="7" /> + <hkern u1="Ǽ" u2="m" k="7" /> + <hkern u1="Ǽ" u2="g" k="14" /> + <hkern u1="Ǽ" u2="f" k="11" /> + <hkern u1="Ǽ" u2="e" k="14" /> + <hkern u1="Ǽ" u2="d" k="14" /> + <hkern u1="Ǽ" u2="c" k="14" /> + <hkern u1="Ǽ" u2="a" k="7" /> + <hkern u1="Ǽ" u2="Q" k="7" /> + <hkern u1="Ǽ" u2="O" k="7" /> + <hkern u1="Ǽ" u2="G" k="7" /> + <hkern u1="Ǽ" u2="C" k="7" /> + <hkern u1="Ǽ" u2="&" k="7" /> + <hkern u1="ǽ" u2="™" k="21" /> + <hkern u1="ǽ" u2="”" k="12" /> + <hkern u1="ǽ" u2="“" k="11" /> + <hkern u1="ǽ" u2="’" k="12" /> + <hkern u1="ǽ" u2="‘" k="11" /> + <hkern u1="ǽ" u2="Ț" k="81" /> + <hkern u1="ǽ" u2="Ș" k="11" /> + <hkern u1="ǽ" u2="Ǿ" k="5" /> + <hkern u1="ǽ" u2="Þ" k="11" /> + <hkern u1="ǽ" u2="Ý" k="83" /> + <hkern u1="ǽ" u2="Ü" k="13" /> + <hkern u1="ǽ" u2="Û" k="13" /> + <hkern u1="ǽ" u2="Ú" k="13" /> + <hkern u1="ǽ" u2="Ù" k="13" /> + <hkern u1="ǽ" u2="Ø" k="5" /> + <hkern u1="ǽ" u2="Ö" k="5" /> + <hkern u1="ǽ" u2="Õ" k="5" /> + <hkern u1="ǽ" u2="Ô" k="5" /> + <hkern u1="ǽ" u2="Ó" k="5" /> + <hkern u1="ǽ" u2="Ò" k="5" /> + <hkern u1="ǽ" u2="Ñ" k="11" /> + <hkern u1="ǽ" u2="Ð" k="11" /> + <hkern u1="ǽ" u2="Ï" k="11" /> + <hkern u1="ǽ" u2="Î" k="11" /> + <hkern u1="ǽ" u2="Í" k="11" /> + <hkern u1="ǽ" u2="Ì" k="11" /> + <hkern u1="ǽ" u2="Ë" k="11" /> + <hkern u1="ǽ" u2="Ê" k="11" /> + <hkern u1="ǽ" u2="É" k="11" /> + <hkern u1="ǽ" u2="È" k="11" /> + <hkern u1="ǽ" u2="Ç" k="5" /> + <hkern u1="ǽ" u2="Å" k="5" /> + <hkern u1="ǽ" u2="Ä" k="5" /> + <hkern u1="ǽ" u2="Ã" k="5" /> + <hkern u1="ǽ" u2="Â" k="5" /> + <hkern u1="ǽ" u2="Á" k="5" /> + <hkern u1="ǽ" u2="À" k="5" /> + <hkern u1="ǽ" u2="}" k="19" /> + <hkern u1="ǽ" u2="x" k="6" /> + <hkern u1="ǽ" u2="v" k="5" /> + <hkern u1="ǽ" u2="]" k="21" /> + <hkern u1="ǽ" u2="\" k="19" /> + <hkern u1="ǽ" u2="Y" k="83" /> + <hkern u1="ǽ" u2="X" k="16" /> + <hkern u1="ǽ" u2="V" k="54" /> + <hkern u1="ǽ" u2="U" k="13" /> + <hkern u1="ǽ" u2="T" k="81" /> + <hkern u1="ǽ" u2="S" k="11" /> + <hkern u1="ǽ" u2="R" k="11" /> + <hkern u1="ǽ" u2="Q" k="5" /> + <hkern u1="ǽ" u2="P" k="11" /> + <hkern u1="ǽ" u2="O" k="5" /> + <hkern u1="ǽ" u2="N" k="11" /> + <hkern u1="ǽ" u2="M" k="11" /> + <hkern u1="ǽ" u2="L" k="11" /> + <hkern u1="ǽ" u2="K" k="11" /> + <hkern u1="ǽ" u2="I" k="11" /> + <hkern u1="ǽ" u2="H" k="11" /> + <hkern u1="ǽ" u2="G" k="5" /> + <hkern u1="ǽ" u2="F" k="11" /> + <hkern u1="ǽ" u2="E" k="11" /> + <hkern u1="ǽ" u2="D" k="11" /> + <hkern u1="ǽ" u2="C" k="5" /> + <hkern u1="ǽ" u2="B" k="11" /> + <hkern u1="ǽ" u2="A" k="5" /> + <hkern u1="ǽ" u2="?" k="17" /> + <hkern u1="ǽ" u2="*" k="11" /> + <hkern u1="ǽ" u2=")" k="21" /> + <hkern u1="ǽ" u2="'" k="12" /> + <hkern u1="ǽ" u2="&" k="6" /> + <hkern u1="ǽ" u2=""" k="12" /> + <hkern u1="Ǿ" u2="st" k="6" /> + <hkern u1="Ǿ" u2="™" k="8" /> + <hkern u1="Ǿ" u2="…" k="19" /> + <hkern u1="Ǿ" u2="„" k="19" /> + <hkern u1="Ǿ" u2="‚" k="19" /> + <hkern u1="Ǿ" u2="ȷ" k="10" /> + <hkern u1="Ǿ" u2="Ț" k="24" /> + <hkern u1="Ǿ" u2="ș" k="6" /> + <hkern u1="Ǿ" u2="ǿ" k="6" /> + <hkern u1="Ǿ" u2="ǽ" k="10" /> + <hkern u1="Ǿ" u2="Ǽ" k="44" /> + <hkern u1="Ǿ" u2="þ" k="9" /> + <hkern u1="Ǿ" u2="ü" k="8" /> + <hkern u1="Ǿ" u2="û" k="8" /> + <hkern u1="Ǿ" u2="ú" k="8" /> + <hkern u1="Ǿ" u2="ù" k="8" /> + <hkern u1="Ǿ" u2="ø" k="6" /> + <hkern u1="Ǿ" u2="ö" k="6" /> + <hkern u1="Ǿ" u2="õ" k="6" /> + <hkern u1="Ǿ" u2="ô" k="6" /> + <hkern u1="Ǿ" u2="ó" k="6" /> + <hkern u1="Ǿ" u2="ò" k="6" /> + <hkern u1="Ǿ" u2="ñ" k="9" /> + <hkern u1="Ǿ" u2="ð" k="6" /> + <hkern u1="Ǿ" u2="ï" k="10" /> + <hkern u1="Ǿ" u2="î" k="10" /> + <hkern u1="Ǿ" u2="í" k="10" /> + <hkern u1="Ǿ" u2="ì" k="10" /> + <hkern u1="Ǿ" u2="ë" k="6" /> + <hkern u1="Ǿ" u2="ê" k="6" /> + <hkern u1="Ǿ" u2="é" k="6" /> + <hkern u1="Ǿ" u2="è" k="6" /> + <hkern u1="Ǿ" u2="ç" k="6" /> + <hkern u1="Ǿ" u2="æ" k="10" /> + <hkern u1="Ǿ" u2="å" k="10" /> + <hkern u1="Ǿ" u2="ä" k="10" /> + <hkern u1="Ǿ" u2="ã" k="10" /> + <hkern u1="Ǿ" u2="â" k="10" /> + <hkern u1="Ǿ" u2="á" k="10" /> + <hkern u1="Ǿ" u2="à" k="10" /> + <hkern u1="Ǿ" u2="Ý" k="31" /> + <hkern u1="Ǿ" u2="Æ" k="44" /> + <hkern u1="Ǿ" u2="Å" k="14" /> + <hkern u1="Ǿ" u2="Ä" k="14" /> + <hkern u1="Ǿ" u2="Ã" k="14" /> + <hkern u1="Ǿ" u2="Â" k="14" /> + <hkern u1="Ǿ" u2="Á" k="14" /> + <hkern u1="Ǿ" u2="À" k="14" /> + <hkern u1="Ǿ" u2="}" k="17" /> + <hkern u1="Ǿ" u2="x" k="13" /> + <hkern u1="Ǿ" u2="u" k="8" /> + <hkern u1="Ǿ" u2="s" k="6" /> + <hkern u1="Ǿ" u2="r" k="9" /> + <hkern u1="Ǿ" u2="q" k="6" /> + <hkern u1="Ǿ" u2="p" k="9" /> + <hkern u1="Ǿ" u2="o" k="6" /> + <hkern u1="Ǿ" u2="n" k="9" /> + <hkern u1="Ǿ" u2="m" k="9" /> + <hkern u1="Ǿ" u2="k" k="9" /> + <hkern u1="Ǿ" u2="j" k="10" /> + <hkern u1="Ǿ" u2="i" k="10" /> + <hkern u1="Ǿ" u2="h" k="9" /> + <hkern u1="Ǿ" u2="g" k="6" /> + <hkern u1="Ǿ" u2="e" k="6" /> + <hkern u1="Ǿ" u2="d" k="6" /> + <hkern u1="Ǿ" u2="c" k="6" /> + <hkern u1="Ǿ" u2="b" k="9" /> + <hkern u1="Ǿ" u2="a" k="10" /> + <hkern u1="Ǿ" u2="]" k="18" /> + <hkern u1="Ǿ" u2="Y" k="31" /> + <hkern u1="Ǿ" u2="X" k="26" /> + <hkern u1="Ǿ" u2="V" k="13" /> + <hkern u1="Ǿ" u2="T" k="24" /> + <hkern u1="Ǿ" u2="A" k="14" /> + <hkern u1="Ǿ" u2="." k="19" /> + <hkern u1="Ǿ" u2="," k="19" /> + <hkern u1="Ǿ" u2=")" k="21" /> + <hkern u1="ǿ" g2="f_j" k="5" /> + <hkern u1="ǿ" u2="ffl" k="5" /> + <hkern u1="ǿ" u2="ffi" k="5" /> + <hkern u1="ǿ" u2="fl" k="5" /> + <hkern u1="ǿ" u2="fi" k="5" /> + <hkern u1="ǿ" u2="ff" k="5" /> + <hkern u1="ǿ" u2="™" k="23" /> + <hkern u1="ǿ" u2="”" k="16" /> + <hkern u1="ǿ" u2="“" k="15" /> + <hkern u1="ǿ" u2="’" k="16" /> + <hkern u1="ǿ" u2="‘" k="15" /> + <hkern u1="ǿ" u2="ț" k="4" /> + <hkern u1="ǿ" u2="Ț" k="86" /> + <hkern u1="ǿ" u2="Ș" k="14" /> + <hkern u1="ǿ" u2="Ǿ" k="6" /> + <hkern u1="ǿ" u2="ſ" k="5" /> + <hkern u1="ǿ" u2="ÿ" k="5" /> + <hkern u1="ǿ" u2="ý" k="5" /> + <hkern u1="ǿ" u2="ß" k="5" /> + <hkern u1="ǿ" u2="Þ" k="14" /> + <hkern u1="ǿ" u2="Ý" k="87" /> + <hkern u1="ǿ" u2="Ü" k="15" /> + <hkern u1="ǿ" u2="Û" k="15" /> + <hkern u1="ǿ" u2="Ú" k="15" /> + <hkern u1="ǿ" u2="Ù" k="15" /> + <hkern u1="ǿ" u2="Ø" k="6" /> + <hkern u1="ǿ" u2="Ö" k="6" /> + <hkern u1="ǿ" u2="Õ" k="6" /> + <hkern u1="ǿ" u2="Ô" k="6" /> + <hkern u1="ǿ" u2="Ó" k="6" /> + <hkern u1="ǿ" u2="Ò" k="6" /> + <hkern u1="ǿ" u2="Ñ" k="14" /> + <hkern u1="ǿ" u2="Ð" k="14" /> + <hkern u1="ǿ" u2="Ï" k="14" /> + <hkern u1="ǿ" u2="Î" k="14" /> + <hkern u1="ǿ" u2="Í" k="14" /> + <hkern u1="ǿ" u2="Ì" k="14" /> + <hkern u1="ǿ" u2="Ë" k="14" /> + <hkern u1="ǿ" u2="Ê" k="14" /> + <hkern u1="ǿ" u2="É" k="14" /> + <hkern u1="ǿ" u2="È" k="14" /> + <hkern u1="ǿ" u2="Ç" k="6" /> + <hkern u1="ǿ" u2="Å" k="12" /> + <hkern u1="ǿ" u2="Ä" k="12" /> + <hkern u1="ǿ" u2="Ã" k="12" /> + <hkern u1="ǿ" u2="Â" k="12" /> + <hkern u1="ǿ" u2="Á" k="12" /> + <hkern u1="ǿ" u2="À" k="12" /> + <hkern u1="ǿ" u2="}" k="23" /> + <hkern u1="ǿ" u2="y" k="5" /> + <hkern u1="ǿ" u2="x" k="15" /> + <hkern u1="ǿ" u2="v" k="7" /> + <hkern u1="ǿ" u2="t" k="4" /> + <hkern u1="ǿ" u2="f" k="5" /> + <hkern u1="ǿ" u2="]" k="25" /> + <hkern u1="ǿ" u2="\" k="22" /> + <hkern u1="ǿ" u2="Y" k="87" /> + <hkern u1="ǿ" u2="X" k="41" /> + <hkern u1="ǿ" u2="V" k="53" /> + <hkern u1="ǿ" u2="U" k="15" /> + <hkern u1="ǿ" u2="T" k="86" /> + <hkern u1="ǿ" u2="S" k="14" /> + <hkern u1="ǿ" u2="R" k="14" /> + <hkern u1="ǿ" u2="Q" k="6" /> + <hkern u1="ǿ" u2="P" k="14" /> + <hkern u1="ǿ" u2="O" k="6" /> + <hkern u1="ǿ" u2="N" k="14" /> + <hkern u1="ǿ" u2="M" k="14" /> + <hkern u1="ǿ" u2="L" k="14" /> + <hkern u1="ǿ" u2="K" k="14" /> + <hkern u1="ǿ" u2="I" k="14" /> + <hkern u1="ǿ" u2="H" k="14" /> + <hkern u1="ǿ" u2="G" k="6" /> + <hkern u1="ǿ" u2="F" k="14" /> + <hkern u1="ǿ" u2="E" k="14" /> + <hkern u1="ǿ" u2="D" k="14" /> + <hkern u1="ǿ" u2="C" k="6" /> + <hkern u1="ǿ" u2="B" k="14" /> + <hkern u1="ǿ" u2="A" k="12" /> + <hkern u1="ǿ" u2="?" k="20" /> + <hkern u1="ǿ" u2="*" k="14" /> + <hkern u1="ǿ" u2=")" k="27" /> + <hkern u1="ǿ" u2="'" k="16" /> + <hkern u1="ǿ" u2=""" k="16" /> + <hkern u1="Ș" g2="f_j" k="26" /> + <hkern u1="Ș" u2="st" k="7" /> + <hkern u1="Ș" u2="ffl" k="26" /> + <hkern u1="Ș" u2="ffi" k="26" /> + <hkern u1="Ș" u2="fl" k="26" /> + <hkern u1="Ș" u2="fi" k="26" /> + <hkern u1="Ș" u2="ff" k="26" /> + <hkern u1="Ș" u2="™" k="8" /> + <hkern u1="Ș" u2="ȷ" k="9" /> + <hkern u1="Ș" u2="ț" k="22" /> + <hkern u1="Ș" u2="Ț" k="37" /> + <hkern u1="Ș" u2="ș" k="7" /> + <hkern u1="Ș" u2="ſ" k="26" /> + <hkern u1="Ș" u2="ÿ" k="29" /> + <hkern u1="Ș" u2="þ" k="8" /> + <hkern u1="Ș" u2="ý" k="29" /> + <hkern u1="Ș" u2="ü" k="9" /> + <hkern u1="Ș" u2="û" k="9" /> + <hkern u1="Ș" u2="ú" k="9" /> + <hkern u1="Ș" u2="ù" k="9" /> + <hkern u1="Ș" u2="ñ" k="8" /> + <hkern u1="Ș" u2="ï" k="9" /> + <hkern u1="Ș" u2="î" k="9" /> + <hkern u1="Ș" u2="í" k="9" /> + <hkern u1="Ș" u2="ì" k="9" /> + <hkern u1="Ș" u2="ß" k="26" /> + <hkern u1="Ș" u2="Ý" k="8" /> + <hkern u1="Ș" u2="y" k="29" /> + <hkern u1="Ș" u2="x" k="21" /> + <hkern u1="Ș" u2="v" k="32" /> + <hkern u1="Ș" u2="u" k="9" /> + <hkern u1="Ș" u2="t" k="22" /> + <hkern u1="Ș" u2="s" k="7" /> + <hkern u1="Ș" u2="r" k="8" /> + <hkern u1="Ș" u2="p" k="8" /> + <hkern u1="Ș" u2="n" k="8" /> + <hkern u1="Ș" u2="m" k="8" /> + <hkern u1="Ș" u2="k" k="8" /> + <hkern u1="Ș" u2="j" k="9" /> + <hkern u1="Ș" u2="i" k="9" /> + <hkern u1="Ș" u2="h" k="8" /> + <hkern u1="Ș" u2="f" k="26" /> + <hkern u1="Ș" u2="b" k="8" /> + <hkern u1="Ș" u2="Y" k="8" /> + <hkern u1="Ș" u2="X" k="7" /> + <hkern u1="Ș" u2="V" k="6" /> + <hkern u1="Ș" u2="T" k="37" /> + <hkern u1="Ș" u2="*" k="12" /> + <hkern u1="ș" u2="™" k="22" /> + <hkern u1="ș" u2="ț" k="4" /> + <hkern u1="ș" u2="Ț" k="78" /> + <hkern u1="ș" u2="Ș" k="6" /> + <hkern u1="ș" u2="Ǿ" k="9" /> + <hkern u1="ș" u2="Þ" k="11" /> + <hkern u1="ș" u2="Ý" k="80" /> + <hkern u1="ș" u2="Ü" k="16" /> + <hkern u1="ș" u2="Û" k="16" /> + <hkern u1="ș" u2="Ú" k="16" /> + <hkern u1="ș" u2="Ù" k="16" /> + <hkern u1="ș" u2="Ø" k="9" /> + <hkern u1="ș" u2="Ö" k="9" /> + <hkern u1="ș" u2="Õ" k="9" /> + <hkern u1="ș" u2="Ô" k="9" /> + <hkern u1="ș" u2="Ó" k="9" /> + <hkern u1="ș" u2="Ò" k="9" /> + <hkern u1="ș" u2="Ñ" k="11" /> + <hkern u1="ș" u2="Ð" k="11" /> + <hkern u1="ș" u2="Ï" k="11" /> + <hkern u1="ș" u2="Î" k="11" /> + <hkern u1="ș" u2="Í" k="11" /> + <hkern u1="ș" u2="Ì" k="11" /> + <hkern u1="ș" u2="Ë" k="11" /> + <hkern u1="ș" u2="Ê" k="11" /> + <hkern u1="ș" u2="É" k="11" /> + <hkern u1="ș" u2="È" k="11" /> + <hkern u1="ș" u2="Ç" k="9" /> + <hkern u1="ș" u2="}" k="17" /> + <hkern u1="ș" u2="v" k="4" /> + <hkern u1="ș" u2="t" k="4" /> + <hkern u1="ș" u2="]" k="20" /> + <hkern u1="ș" u2="\" k="17" /> + <hkern u1="ș" u2="Y" k="80" /> + <hkern u1="ș" u2="X" k="12" /> + <hkern u1="ș" u2="V" k="53" /> + <hkern u1="ș" u2="U" k="16" /> + <hkern u1="ș" u2="T" k="78" /> + <hkern u1="ș" u2="S" k="6" /> + <hkern u1="ș" u2="R" k="11" /> + <hkern u1="ș" u2="Q" k="9" /> + <hkern u1="ș" u2="P" k="11" /> + <hkern u1="ș" u2="O" k="9" /> + <hkern u1="ș" u2="N" k="11" /> + <hkern u1="ș" u2="M" k="11" /> + <hkern u1="ș" u2="L" k="11" /> + <hkern u1="ș" u2="K" k="11" /> + <hkern u1="ș" u2="I" k="11" /> + <hkern u1="ș" u2="H" k="11" /> + <hkern u1="ș" u2="G" k="9" /> + <hkern u1="ș" u2="F" k="11" /> + <hkern u1="ș" u2="E" k="11" /> + <hkern u1="ș" u2="D" k="11" /> + <hkern u1="ș" u2="C" k="9" /> + <hkern u1="ș" u2="B" k="11" /> + <hkern u1="ș" u2="?" k="17" /> + <hkern u1="ș" u2=")" k="19" /> + <hkern u1="Ț" g2="f_j" k="30" /> + <hkern u1="Ț" u2="st" k="76" /> + <hkern u1="Ț" u2="ffl" k="30" /> + <hkern u1="Ț" u2="ffi" k="30" /> + <hkern u1="Ț" u2="fl" k="30" /> + <hkern u1="Ț" u2="fi" k="30" /> + <hkern u1="Ț" u2="ff" k="30" /> + <hkern u1="Ț" u2="›" k="51" /> + <hkern u1="Ț" u2="‹" k="59" /> + <hkern u1="Ț" u2="…" k="64" /> + <hkern u1="Ț" u2="„" k="64" /> + <hkern u1="Ț" u2="‚" k="64" /> + <hkern u1="Ț" u2="—" k="64" /> + <hkern u1="Ț" u2="–" k="64" /> + <hkern u1="Ț" u2="ȷ" k="10" /> + <hkern u1="Ț" u2="ț" k="63" /> + <hkern u1="Ț" u2="ș" k="76" /> + <hkern u1="Ț" u2="ǿ" k="85" /> + <hkern u1="Ț" u2="Ǿ" k="24" /> + <hkern u1="Ț" u2="ǽ" k="79" /> + <hkern u1="Ț" u2="Ǽ" k="53" /> + <hkern u1="Ț" u2="ſ" k="30" /> + <hkern u1="Ț" u2="ÿ" k="69" /> + <hkern u1="Ț" u2="þ" k="6" /> + <hkern u1="Ț" u2="ý" k="69" /> + <hkern u1="Ț" u2="ü" k="66" /> + <hkern u1="Ț" u2="û" k="66" /> + <hkern u1="Ț" u2="ú" k="66" /> + <hkern u1="Ț" u2="ù" k="66" /> + <hkern u1="Ț" u2="ø" k="85" /> + <hkern u1="Ț" u2="ö" k="85" /> + <hkern u1="Ț" u2="õ" k="85" /> + <hkern u1="Ț" u2="ô" k="85" /> + <hkern u1="Ț" u2="ó" k="85" /> + <hkern u1="Ț" u2="ò" k="85" /> + <hkern u1="Ț" u2="ñ" k="67" /> + <hkern u1="Ț" u2="ð" k="85" /> + <hkern u1="Ț" u2="ï" k="-15" /> + <hkern u1="Ț" u2="î" k="-1" /> + <hkern u1="Ț" u2="í" k="10" /> + <hkern u1="Ț" u2="ì" k="10" /> + <hkern u1="Ț" u2="ë" k="85" /> + <hkern u1="Ț" u2="ê" k="85" /> + <hkern u1="Ț" u2="é" k="85" /> + <hkern u1="Ț" u2="è" k="85" /> + <hkern u1="Ț" u2="ç" k="85" /> + <hkern u1="Ț" u2="æ" k="79" /> + <hkern u1="Ț" u2="å" k="79" /> + <hkern u1="Ț" u2="ä" k="79" /> + <hkern u1="Ț" u2="ã" k="79" /> + <hkern u1="Ț" u2="â" k="79" /> + <hkern u1="Ț" u2="á" k="79" /> + <hkern u1="Ț" u2="à" k="79" /> + <hkern u1="Ț" u2="ß" k="30" /> + <hkern u1="Ț" u2="Ý" k="-43" /> + <hkern u1="Ț" u2="Ø" k="24" /> + <hkern u1="Ț" u2="Ö" k="24" /> + <hkern u1="Ț" u2="Õ" k="24" /> + <hkern u1="Ț" u2="Ô" k="24" /> + <hkern u1="Ț" u2="Ó" k="24" /> + <hkern u1="Ț" u2="Ò" k="24" /> + <hkern u1="Ț" u2="Ç" k="24" /> + <hkern u1="Ț" u2="Æ" k="53" /> + <hkern u1="Ț" u2="Å" k="62" /> + <hkern u1="Ț" u2="Ä" k="62" /> + <hkern u1="Ț" u2="Ã" k="62" /> + <hkern u1="Ț" u2="Â" k="62" /> + <hkern u1="Ț" u2="Á" k="62" /> + <hkern u1="Ț" u2="À" k="62" /> + <hkern u1="Ț" u2="»" k="51" /> + <hkern u1="Ț" u2="®" k="16" /> + <hkern u1="Ț" u2="«" k="59" /> + <hkern u1="Ț" u2="y" k="69" /> + <hkern u1="Ț" u2="x" k="68" /> + <hkern u1="Ț" u2="v" k="71" /> + <hkern u1="Ț" u2="u" k="66" /> + <hkern u1="Ț" u2="t" k="63" /> + <hkern u1="Ț" u2="s" k="76" /> + <hkern u1="Ț" u2="r" k="67" /> + <hkern u1="Ț" u2="q" k="85" /> + <hkern u1="Ț" u2="p" k="67" /> + <hkern u1="Ț" u2="o" k="85" /> + <hkern u1="Ț" u2="n" k="67" /> + <hkern u1="Ț" u2="m" k="67" /> + <hkern u1="Ț" u2="k" k="6" /> + <hkern u1="Ț" u2="j" k="10" /> + <hkern u1="Ț" u2="i" k="10" /> + <hkern u1="Ț" u2="h" k="6" /> + <hkern u1="Ț" u2="g" k="85" /> + <hkern u1="Ț" u2="f" k="30" /> + <hkern u1="Ț" u2="e" k="85" /> + <hkern u1="Ț" u2="d" k="85" /> + <hkern u1="Ț" u2="c" k="85" /> + <hkern u1="Ț" u2="b" k="6" /> + <hkern u1="Ț" u2="a" k="79" /> + <hkern u1="Ț" u2="Y" k="-43" /> + <hkern u1="Ț" u2="X" k="-35" /> + <hkern u1="Ț" u2="V" k="-37" /> + <hkern u1="Ț" u2="Q" k="24" /> + <hkern u1="Ț" u2="O" k="24" /> + <hkern u1="Ț" u2="G" k="24" /> + <hkern u1="Ț" u2="C" k="24" /> + <hkern u1="Ț" u2="A" k="62" /> + <hkern u1="Ț" u2="@" k="30" /> + <hkern u1="Ț" u2=";" k="42" /> + <hkern u1="Ț" u2=":" k="42" /> + <hkern u1="Ț" u2="/" k="36" /> + <hkern u1="Ț" u2="." k="64" /> + <hkern u1="Ț" u2="-" k="64" /> + <hkern u1="Ț" u2="," k="64" /> + <hkern u1="Ț" u2="&" k="41" /> + <hkern u1="ț" u2="™" k="8" /> + <hkern u1="ț" u2="ț" k="-7" /> + <hkern u1="ț" u2="Ț" k="73" /> + <hkern u1="ț" u2="ÿ" k="-15" /> + <hkern u1="ț" u2="ý" k="-15" /> + <hkern u1="ț" u2="Ý" k="45" /> + <hkern u1="ț" u2="Ü" k="7" /> + <hkern u1="ț" u2="Û" k="7" /> + <hkern u1="ț" u2="Ú" k="7" /> + <hkern u1="ț" u2="Ù" k="7" /> + <hkern u1="ț" u2="y" k="-15" /> + <hkern u1="ț" u2="v" k="-17" /> + <hkern u1="ț" u2="t" k="-7" /> + <hkern u1="ț" u2="]" k="11" /> + <hkern u1="ț" u2="Y" k="45" /> + <hkern u1="ț" u2="V" k="18" /> + <hkern u1="ț" u2="U" k="7" /> + <hkern u1="ț" u2="T" k="73" /> + <hkern u1="ț" u2="&" k="11" /> + <hkern u1="ȷ" u2="Ț" k="10" /> + <hkern u1="ȷ" u2="Ș" k="9" /> + <hkern u1="ȷ" u2="Ǿ" k="10" /> + <hkern u1="ȷ" u2="Þ" k="10" /> + <hkern u1="ȷ" u2="Ý" k="8" /> + <hkern u1="ȷ" u2="Ü" k="15" /> + <hkern u1="ȷ" u2="Û" k="15" /> + <hkern u1="ȷ" u2="Ú" k="15" /> + <hkern u1="ȷ" u2="Ù" k="15" /> + <hkern u1="ȷ" u2="Ø" k="10" /> + <hkern u1="ȷ" u2="Ö" k="10" /> + <hkern u1="ȷ" u2="Õ" k="10" /> + <hkern u1="ȷ" u2="Ô" k="10" /> + <hkern u1="ȷ" u2="Ó" k="10" /> + <hkern u1="ȷ" u2="Ò" k="10" /> + <hkern u1="ȷ" u2="Ñ" k="10" /> + <hkern u1="ȷ" u2="Ð" k="10" /> + <hkern u1="ȷ" u2="Ï" k="10" /> + <hkern u1="ȷ" u2="Î" k="10" /> + <hkern u1="ȷ" u2="Í" k="10" /> + <hkern u1="ȷ" u2="Ì" k="10" /> + <hkern u1="ȷ" u2="Ë" k="10" /> + <hkern u1="ȷ" u2="Ê" k="10" /> + <hkern u1="ȷ" u2="É" k="10" /> + <hkern u1="ȷ" u2="È" k="10" /> + <hkern u1="ȷ" u2="Ç" k="10" /> + <hkern u1="ȷ" u2="Å" k="7" /> + <hkern u1="ȷ" u2="Ä" k="7" /> + <hkern u1="ȷ" u2="Ã" k="7" /> + <hkern u1="ȷ" u2="Â" k="7" /> + <hkern u1="ȷ" u2="Á" k="7" /> + <hkern u1="ȷ" u2="À" k="7" /> + <hkern u1="ȷ" u2="Y" k="8" /> + <hkern u1="ȷ" u2="V" k="9" /> + <hkern u1="ȷ" u2="U" k="15" /> + <hkern u1="ȷ" u2="T" k="10" /> + <hkern u1="ȷ" u2="S" k="9" /> + <hkern u1="ȷ" u2="R" k="10" /> + <hkern u1="ȷ" u2="Q" k="10" /> + <hkern u1="ȷ" u2="P" k="10" /> + <hkern u1="ȷ" u2="O" k="10" /> + <hkern u1="ȷ" u2="N" k="10" /> + <hkern u1="ȷ" u2="M" k="10" /> + <hkern u1="ȷ" u2="L" k="10" /> + <hkern u1="ȷ" u2="K" k="10" /> + <hkern u1="ȷ" u2="I" k="10" /> + <hkern u1="ȷ" u2="H" k="10" /> + <hkern u1="ȷ" u2="G" k="10" /> + <hkern u1="ȷ" u2="F" k="10" /> + <hkern u1="ȷ" u2="E" k="10" /> + <hkern u1="ȷ" u2="D" k="10" /> + <hkern u1="ȷ" u2="C" k="10" /> + <hkern u1="ȷ" u2="B" k="10" /> + <hkern u1="ȷ" u2="A" k="7" /> + <hkern u1="ȷ" u2="&" k="8" /> + <hkern u1="–" g2="f_j" k="13" /> + <hkern u1="–" u2="ffl" k="13" /> + <hkern u1="–" u2="ffi" k="13" /> + <hkern u1="–" u2="fl" k="13" /> + <hkern u1="–" u2="fi" k="13" /> + <hkern u1="–" u2="ff" k="13" /> + <hkern u1="–" u2="ț" k="12" /> + <hkern u1="–" u2="Ț" k="64" /> + <hkern u1="–" u2="Ș" k="19" /> + <hkern u1="–" u2="ſ" k="13" /> + <hkern u1="–" u2="ß" k="13" /> + <hkern u1="–" u2="Ý" k="66" /> + <hkern u1="–" u2="Å" k="14" /> + <hkern u1="–" u2="Ä" k="14" /> + <hkern u1="–" u2="Ã" k="14" /> + <hkern u1="–" u2="Â" k="14" /> + <hkern u1="–" u2="Á" k="14" /> + <hkern u1="–" u2="À" k="14" /> + <hkern u1="–" u2="x" k="22" /> + <hkern u1="–" u2="v" k="8" /> + <hkern u1="–" u2="t" k="12" /> + <hkern u1="–" u2="f" k="13" /> + <hkern u1="–" u2="Y" k="66" /> + <hkern u1="–" u2="X" k="31" /> + <hkern u1="–" u2="V" k="33" /> + <hkern u1="–" u2="T" k="64" /> + <hkern u1="–" u2="S" k="19" /> + <hkern u1="–" u2="A" k="14" /> + <hkern u1="—" g2="f_j" k="13" /> + <hkern u1="—" u2="ffl" k="13" /> + <hkern u1="—" u2="ffi" k="13" /> + <hkern u1="—" u2="fl" k="13" /> + <hkern u1="—" u2="fi" k="13" /> + <hkern u1="—" u2="ff" k="13" /> + <hkern u1="—" u2="ț" k="12" /> + <hkern u1="—" u2="Ț" k="64" /> + <hkern u1="—" u2="Ș" k="19" /> + <hkern u1="—" u2="ſ" k="13" /> + <hkern u1="—" u2="ß" k="13" /> + <hkern u1="—" u2="Ý" k="66" /> + <hkern u1="—" u2="Å" k="14" /> + <hkern u1="—" u2="Ä" k="14" /> + <hkern u1="—" u2="Ã" k="14" /> + <hkern u1="—" u2="Â" k="14" /> + <hkern u1="—" u2="Á" k="14" /> + <hkern u1="—" u2="À" k="14" /> + <hkern u1="—" u2="x" k="22" /> + <hkern u1="—" u2="v" k="8" /> + <hkern u1="—" u2="t" k="12" /> + <hkern u1="—" u2="f" k="13" /> + <hkern u1="—" u2="Y" k="66" /> + <hkern u1="—" u2="X" k="31" /> + <hkern u1="—" u2="V" k="33" /> + <hkern u1="—" u2="T" k="64" /> + <hkern u1="—" u2="S" k="19" /> + <hkern u1="—" u2="A" k="14" /> + <hkern u1="‘" u2="…" k="124" /> + <hkern u1="‘" u2="„" k="124" /> + <hkern u1="‘" u2="‚" k="124" /> + <hkern u1="‘" u2="ǿ" k="15" /> + <hkern u1="‘" u2="Ǽ" k="57" /> + <hkern u1="‘" u2="ø" k="15" /> + <hkern u1="‘" u2="ö" k="15" /> + <hkern u1="‘" u2="õ" k="15" /> + <hkern u1="‘" u2="ô" k="15" /> + <hkern u1="‘" u2="ó" k="15" /> + <hkern u1="‘" u2="ò" k="15" /> + <hkern u1="‘" u2="ð" k="15" /> + <hkern u1="‘" u2="ë" k="15" /> + <hkern u1="‘" u2="ê" k="15" /> + <hkern u1="‘" u2="é" k="15" /> + <hkern u1="‘" u2="è" k="15" /> + <hkern u1="‘" u2="ç" k="15" /> + <hkern u1="‘" u2="Æ" k="57" /> + <hkern u1="‘" u2="Å" k="45" /> + <hkern u1="‘" u2="Ä" k="45" /> + <hkern u1="‘" u2="Ã" k="45" /> + <hkern u1="‘" u2="Â" k="45" /> + <hkern u1="‘" u2="Á" k="45" /> + <hkern u1="‘" u2="À" k="45" /> + <hkern u1="‘" u2="q" k="15" /> + <hkern u1="‘" u2="o" k="15" /> + <hkern u1="‘" u2="g" k="15" /> + <hkern u1="‘" u2="e" k="15" /> + <hkern u1="‘" u2="d" k="15" /> + <hkern u1="‘" u2="c" k="15" /> + <hkern u1="‘" u2="A" k="45" /> + <hkern u1="‘" u2="." k="124" /> + <hkern u1="‘" u2="," k="124" /> + <hkern u1="’" u2="st" k="16" /> + <hkern u1="’" u2="‹" k="34" /> + <hkern u1="’" u2="…" k="119" /> + <hkern u1="’" u2="„" k="119" /> + <hkern u1="’" u2="‚" k="119" /> + <hkern u1="’" u2="ș" k="16" /> + <hkern u1="’" u2="ǿ" k="28" /> + <hkern u1="’" u2="ǽ" k="14" /> + <hkern u1="’" u2="Ǽ" k="64" /> + <hkern u1="’" u2="ø" k="28" /> + <hkern u1="’" u2="ö" k="28" /> + <hkern u1="’" u2="õ" k="28" /> + <hkern u1="’" u2="ô" k="28" /> + <hkern u1="’" u2="ó" k="28" /> + <hkern u1="’" u2="ò" k="28" /> + <hkern u1="’" u2="ð" k="28" /> + <hkern u1="’" u2="ë" k="28" /> + <hkern u1="’" u2="ê" k="28" /> + <hkern u1="’" u2="é" k="28" /> + <hkern u1="’" u2="è" k="28" /> + <hkern u1="’" u2="ç" k="28" /> + <hkern u1="’" u2="æ" k="14" /> + <hkern u1="’" u2="å" k="14" /> + <hkern u1="’" u2="ä" k="14" /> + <hkern u1="’" u2="ã" k="14" /> + <hkern u1="’" u2="â" k="14" /> + <hkern u1="’" u2="á" k="14" /> + <hkern u1="’" u2="à" k="14" /> + <hkern u1="’" u2="Æ" k="64" /> + <hkern u1="’" u2="Å" k="51" /> + <hkern u1="’" u2="Ä" k="51" /> + <hkern u1="’" u2="Ã" k="51" /> + <hkern u1="’" u2="Â" k="51" /> + <hkern u1="’" u2="Á" k="51" /> + <hkern u1="’" u2="À" k="51" /> + <hkern u1="’" u2="«" k="34" /> + <hkern u1="’" u2="s" k="16" /> + <hkern u1="’" u2="q" k="28" /> + <hkern u1="’" u2="o" k="28" /> + <hkern u1="’" u2="g" k="28" /> + <hkern u1="’" u2="e" k="28" /> + <hkern u1="’" u2="d" k="28" /> + <hkern u1="’" u2="c" k="28" /> + <hkern u1="’" u2="a" k="14" /> + <hkern u1="’" u2="A" k="51" /> + <hkern u1="’" u2="@" k="20" /> + <hkern u1="’" u2="/" k="43" /> + <hkern u1="’" u2="." k="119" /> + <hkern u1="’" u2="," k="119" /> + <hkern u1="‚" g2="f_j" k="10" /> + <hkern u1="‚" u2="ffl" k="10" /> + <hkern u1="‚" u2="ffi" k="10" /> + <hkern u1="‚" u2="fl" k="10" /> + <hkern u1="‚" u2="fi" k="10" /> + <hkern u1="‚" u2="ff" k="10" /> + <hkern u1="‚" u2="”" k="125" /> + <hkern u1="‚" u2="“" k="124" /> + <hkern u1="‚" u2="’" k="119" /> + <hkern u1="‚" u2="‘" k="124" /> + <hkern u1="‚" u2="ț" k="12" /> + <hkern u1="‚" u2="Ț" k="64" /> + <hkern u1="‚" u2="Ǿ" k="19" /> + <hkern u1="‚" u2="ſ" k="10" /> + <hkern u1="‚" u2="ÿ" k="28" /> + <hkern u1="‚" u2="ý" k="28" /> + <hkern u1="‚" u2="ß" k="10" /> + <hkern u1="‚" u2="Ý" k="75" /> + <hkern u1="‚" u2="Ü" k="18" /> + <hkern u1="‚" u2="Û" k="18" /> + <hkern u1="‚" u2="Ú" k="18" /> + <hkern u1="‚" u2="Ù" k="18" /> + <hkern u1="‚" u2="Ø" k="19" /> + <hkern u1="‚" u2="Ö" k="19" /> + <hkern u1="‚" u2="Õ" k="19" /> + <hkern u1="‚" u2="Ô" k="19" /> + <hkern u1="‚" u2="Ó" k="19" /> + <hkern u1="‚" u2="Ò" k="19" /> + <hkern u1="‚" u2="Ç" k="19" /> + <hkern u1="‚" u2="y" k="28" /> + <hkern u1="‚" u2="v" k="31" /> + <hkern u1="‚" u2="t" k="12" /> + <hkern u1="‚" u2="f" k="10" /> + <hkern u1="‚" u2="Y" k="75" /> + <hkern u1="‚" u2="V" k="64" /> + <hkern u1="‚" u2="U" k="18" /> + <hkern u1="‚" u2="T" k="64" /> + <hkern u1="‚" u2="Q" k="19" /> + <hkern u1="‚" u2="O" k="19" /> + <hkern u1="‚" u2="G" k="19" /> + <hkern u1="‚" u2="C" k="19" /> + <hkern u1="‚" u2="'" k="119" /> + <hkern u1="‚" u2=""" k="125" /> + <hkern u1="“" u2="…" k="124" /> + <hkern u1="“" u2="„" k="124" /> + <hkern u1="“" u2="‚" k="124" /> + <hkern u1="“" u2="ǿ" k="15" /> + <hkern u1="“" u2="Ǽ" k="57" /> + <hkern u1="“" u2="ø" k="15" /> + <hkern u1="“" u2="ö" k="15" /> + <hkern u1="“" u2="õ" k="15" /> + <hkern u1="“" u2="ô" k="15" /> + <hkern u1="“" u2="ó" k="15" /> + <hkern u1="“" u2="ò" k="15" /> + <hkern u1="“" u2="ð" k="15" /> + <hkern u1="“" u2="ë" k="15" /> + <hkern u1="“" u2="ê" k="15" /> + <hkern u1="“" u2="é" k="15" /> + <hkern u1="“" u2="è" k="15" /> + <hkern u1="“" u2="ç" k="15" /> + <hkern u1="“" u2="Æ" k="57" /> + <hkern u1="“" u2="Å" k="45" /> + <hkern u1="“" u2="Ä" k="45" /> + <hkern u1="“" u2="Ã" k="45" /> + <hkern u1="“" u2="Â" k="45" /> + <hkern u1="“" u2="Á" k="45" /> + <hkern u1="“" u2="À" k="45" /> + <hkern u1="“" u2="q" k="15" /> + <hkern u1="“" u2="o" k="15" /> + <hkern u1="“" u2="g" k="15" /> + <hkern u1="“" u2="e" k="15" /> + <hkern u1="“" u2="d" k="15" /> + <hkern u1="“" u2="c" k="15" /> + <hkern u1="“" u2="A" k="45" /> + <hkern u1="“" u2="." k="124" /> + <hkern u1="“" u2="," k="124" /> + <hkern u1="”" u2="st" k="16" /> + <hkern u1="”" u2="‹" k="34" /> + <hkern u1="”" u2="…" k="130" /> + <hkern u1="”" u2="„" k="130" /> + <hkern u1="”" u2="‚" k="130" /> + <hkern u1="”" u2="ș" k="16" /> + <hkern u1="”" u2="ǿ" k="28" /> + <hkern u1="”" u2="ǽ" k="14" /> + <hkern u1="”" u2="Ǽ" k="64" /> + <hkern u1="”" u2="ø" k="28" /> + <hkern u1="”" u2="ö" k="28" /> + <hkern u1="”" u2="õ" k="28" /> + <hkern u1="”" u2="ô" k="28" /> + <hkern u1="”" u2="ó" k="28" /> + <hkern u1="”" u2="ò" k="28" /> + <hkern u1="”" u2="ð" k="28" /> + <hkern u1="”" u2="ë" k="28" /> + <hkern u1="”" u2="ê" k="28" /> + <hkern u1="”" u2="é" k="28" /> + <hkern u1="”" u2="è" k="28" /> + <hkern u1="”" u2="ç" k="28" /> + <hkern u1="”" u2="æ" k="14" /> + <hkern u1="”" u2="å" k="14" /> + <hkern u1="”" u2="ä" k="14" /> + <hkern u1="”" u2="ã" k="14" /> + <hkern u1="”" u2="â" k="14" /> + <hkern u1="”" u2="á" k="14" /> + <hkern u1="”" u2="à" k="14" /> + <hkern u1="”" u2="Æ" k="64" /> + <hkern u1="”" u2="Å" k="51" /> + <hkern u1="”" u2="Ä" k="51" /> + <hkern u1="”" u2="Ã" k="51" /> + <hkern u1="”" u2="Â" k="51" /> + <hkern u1="”" u2="Á" k="51" /> + <hkern u1="”" u2="À" k="51" /> + <hkern u1="”" u2="«" k="34" /> + <hkern u1="”" u2="s" k="16" /> + <hkern u1="”" u2="q" k="28" /> + <hkern u1="”" u2="o" k="28" /> + <hkern u1="”" u2="g" k="28" /> + <hkern u1="”" u2="e" k="28" /> + <hkern u1="”" u2="d" k="28" /> + <hkern u1="”" u2="c" k="28" /> + <hkern u1="”" u2="a" k="14" /> + <hkern u1="”" u2="A" k="51" /> + <hkern u1="”" u2="@" k="20" /> + <hkern u1="”" u2="/" k="43" /> + <hkern u1="”" u2="." k="130" /> + <hkern u1="”" u2="," k="130" /> + <hkern u1="„" g2="f_j" k="10" /> + <hkern u1="„" u2="ffl" k="10" /> + <hkern u1="„" u2="ffi" k="10" /> + <hkern u1="„" u2="fl" k="10" /> + <hkern u1="„" u2="fi" k="10" /> + <hkern u1="„" u2="ff" k="10" /> + <hkern u1="„" u2="”" k="125" /> + <hkern u1="„" u2="“" k="124" /> + <hkern u1="„" u2="’" k="119" /> + <hkern u1="„" u2="‘" k="124" /> + <hkern u1="„" u2="ț" k="12" /> + <hkern u1="„" u2="Ț" k="64" /> + <hkern u1="„" u2="Ǿ" k="19" /> + <hkern u1="„" u2="ſ" k="10" /> + <hkern u1="„" u2="ÿ" k="28" /> + <hkern u1="„" u2="ý" k="28" /> + <hkern u1="„" u2="ß" k="10" /> + <hkern u1="„" u2="Ý" k="75" /> + <hkern u1="„" u2="Ü" k="18" /> + <hkern u1="„" u2="Û" k="18" /> + <hkern u1="„" u2="Ú" k="18" /> + <hkern u1="„" u2="Ù" k="18" /> + <hkern u1="„" u2="Ø" k="19" /> + <hkern u1="„" u2="Ö" k="19" /> + <hkern u1="„" u2="Õ" k="19" /> + <hkern u1="„" u2="Ô" k="19" /> + <hkern u1="„" u2="Ó" k="19" /> + <hkern u1="„" u2="Ò" k="19" /> + <hkern u1="„" u2="Ç" k="19" /> + <hkern u1="„" u2="y" k="28" /> + <hkern u1="„" u2="v" k="31" /> + <hkern u1="„" u2="t" k="12" /> + <hkern u1="„" u2="f" k="10" /> + <hkern u1="„" u2="Y" k="75" /> + <hkern u1="„" u2="V" k="64" /> + <hkern u1="„" u2="U" k="18" /> + <hkern u1="„" u2="T" k="64" /> + <hkern u1="„" u2="Q" k="19" /> + <hkern u1="„" u2="O" k="19" /> + <hkern u1="„" u2="G" k="19" /> + <hkern u1="„" u2="C" k="19" /> + <hkern u1="„" u2="'" k="119" /> + <hkern u1="„" u2=""" k="125" /> + <hkern u1="‹" u2="Ț" k="51" /> + <hkern u1="‹" u2="Ý" k="32" /> + <hkern u1="‹" u2="Y" k="32" /> + <hkern u1="‹" u2="V" k="12" /> + <hkern u1="‹" u2="T" k="51" /> + <hkern u1="›" u2="”" k="22" /> + <hkern u1="›" u2="’" k="22" /> + <hkern u1="›" u2="Ț" k="59" /> + <hkern u1="›" u2="Ý" k="59" /> + <hkern u1="›" u2="x" k="13" /> + <hkern u1="›" u2="Y" k="59" /> + <hkern u1="›" u2="X" k="15" /> + <hkern u1="›" u2="V" k="31" /> + <hkern u1="›" u2="T" k="59" /> + <hkern u1="›" u2="'" k="22" /> + <hkern u1="›" u2=""" k="22" /> + <hkern u1="™" u2="Ǽ" k="30" /> + <hkern u1="™" u2="Æ" k="30" /> + <hkern u1="™" u2="Å" k="30" /> + <hkern u1="™" u2="Ä" k="30" /> + <hkern u1="™" u2="Ã" k="30" /> + <hkern u1="™" u2="Â" k="30" /> + <hkern u1="™" u2="Á" k="30" /> + <hkern u1="™" u2="À" k="30" /> + <hkern u1="™" u2="A" k="30" /> + <hkern u1="ff" u2="‹" k="15" /> + <hkern u1="ff" u2="…" k="29" /> + <hkern u1="ff" u2="„" k="29" /> + <hkern u1="ff" u2="‚" k="29" /> + <hkern u1="ff" u2="—" k="31" /> + <hkern u1="ff" u2="–" k="31" /> + <hkern u1="ff" u2="ț" k="-21" /> + <hkern u1="ff" u2="ǿ" k="9" /> + <hkern u1="ff" u2="ǽ" k="16" /> + <hkern u1="ff" u2="ÿ" k="-32" /> + <hkern u1="ff" u2="ý" k="-32" /> + <hkern u1="ff" u2="ø" k="9" /> + <hkern u1="ff" u2="ö" k="9" /> + <hkern u1="ff" u2="õ" k="9" /> + <hkern u1="ff" u2="ô" k="9" /> + <hkern u1="ff" u2="ó" k="9" /> + <hkern u1="ff" u2="ò" k="9" /> + <hkern u1="ff" u2="ð" k="9" /> + <hkern u1="ff" u2="ë" k="9" /> + <hkern u1="ff" u2="ê" k="9" /> + <hkern u1="ff" u2="é" k="9" /> + <hkern u1="ff" u2="è" k="9" /> + <hkern u1="ff" u2="ç" k="9" /> + <hkern u1="ff" u2="æ" k="16" /> + <hkern u1="ff" u2="å" k="16" /> + <hkern u1="ff" u2="ä" k="16" /> + <hkern u1="ff" u2="ã" k="16" /> + <hkern u1="ff" u2="â" k="16" /> + <hkern u1="ff" u2="á" k="16" /> + <hkern u1="ff" u2="à" k="16" /> + <hkern u1="ff" u2="Ý" k="-19" /> + <hkern u1="ff" u2="Å" k="45" /> + <hkern u1="ff" u2="Ä" k="45" /> + <hkern u1="ff" u2="Ã" k="45" /> + <hkern u1="ff" u2="Â" k="45" /> + <hkern u1="ff" u2="Á" k="45" /> + <hkern u1="ff" u2="À" k="45" /> + <hkern u1="ff" u2="«" k="15" /> + <hkern u1="ff" u2="y" k="-32" /> + <hkern u1="ff" u2="x" k="-15" /> + <hkern u1="ff" u2="v" k="-32" /> + <hkern u1="ff" u2="t" k="-21" /> + <hkern u1="ff" u2="q" k="9" /> + <hkern u1="ff" u2="o" k="9" /> + <hkern u1="ff" u2="g" k="9" /> + <hkern u1="ff" u2="e" k="9" /> + <hkern u1="ff" u2="d" k="9" /> + <hkern u1="ff" u2="c" k="9" /> + <hkern u1="ff" u2="a" k="16" /> + <hkern u1="ff" u2="Y" k="-19" /> + <hkern u1="ff" u2="V" k="-7" /> + <hkern u1="ff" u2="A" k="45" /> + <hkern u1="ff" u2="/" k="17" /> + <hkern u1="ff" u2="." k="29" /> + <hkern u1="ff" u2="-" k="31" /> + <hkern u1="ff" u2="," k="29" /> + <hkern u1="ff" u2="&" k="19" /> + <hkern u1="fi" u2="Ț" k="10" /> + <hkern u1="fi" u2="Ș" k="9" /> + <hkern u1="fi" u2="Ǿ" k="10" /> + <hkern u1="fi" u2="Þ" k="10" /> + <hkern u1="fi" u2="Ý" k="8" /> + <hkern u1="fi" u2="Ü" k="15" /> + <hkern u1="fi" u2="Û" k="15" /> + <hkern u1="fi" u2="Ú" k="15" /> + <hkern u1="fi" u2="Ù" k="15" /> + <hkern u1="fi" u2="Ø" k="10" /> + <hkern u1="fi" u2="Ö" k="10" /> + <hkern u1="fi" u2="Õ" k="10" /> + <hkern u1="fi" u2="Ô" k="10" /> + <hkern u1="fi" u2="Ó" k="10" /> + <hkern u1="fi" u2="Ò" k="10" /> + <hkern u1="fi" u2="Ñ" k="10" /> + <hkern u1="fi" u2="Ð" k="10" /> + <hkern u1="fi" u2="Ï" k="10" /> + <hkern u1="fi" u2="Î" k="10" /> + <hkern u1="fi" u2="Í" k="10" /> + <hkern u1="fi" u2="Ì" k="10" /> + <hkern u1="fi" u2="Ë" k="10" /> + <hkern u1="fi" u2="Ê" k="10" /> + <hkern u1="fi" u2="É" k="10" /> + <hkern u1="fi" u2="È" k="10" /> + <hkern u1="fi" u2="Ç" k="10" /> + <hkern u1="fi" u2="Å" k="7" /> + <hkern u1="fi" u2="Ä" k="7" /> + <hkern u1="fi" u2="Ã" k="7" /> + <hkern u1="fi" u2="Â" k="7" /> + <hkern u1="fi" u2="Á" k="7" /> + <hkern u1="fi" u2="À" k="7" /> + <hkern u1="fi" u2="Y" k="8" /> + <hkern u1="fi" u2="V" k="9" /> + <hkern u1="fi" u2="U" k="15" /> + <hkern u1="fi" u2="T" k="10" /> + <hkern u1="fi" u2="S" k="9" /> + <hkern u1="fi" u2="R" k="10" /> + <hkern u1="fi" u2="Q" k="10" /> + <hkern u1="fi" u2="P" k="10" /> + <hkern u1="fi" u2="O" k="10" /> + <hkern u1="fi" u2="N" k="10" /> + <hkern u1="fi" u2="M" k="10" /> + <hkern u1="fi" u2="L" k="10" /> + <hkern u1="fi" u2="K" k="10" /> + <hkern u1="fi" u2="I" k="10" /> + <hkern u1="fi" u2="H" k="10" /> + <hkern u1="fi" u2="G" k="10" /> + <hkern u1="fi" u2="F" k="10" /> + <hkern u1="fi" u2="E" k="10" /> + <hkern u1="fi" u2="D" k="10" /> + <hkern u1="fi" u2="C" k="10" /> + <hkern u1="fi" u2="B" k="10" /> + <hkern u1="fi" u2="A" k="7" /> + <hkern u1="fi" u2="&" k="8" /> + <hkern u1="fl" u2="Ț" k="9" /> + <hkern u1="fl" u2="Ș" k="9" /> + <hkern u1="fl" u2="Ǿ" k="11" /> + <hkern u1="fl" u2="Þ" k="10" /> + <hkern u1="fl" u2="Ý" k="11" /> + <hkern u1="fl" u2="Ü" k="18" /> + <hkern u1="fl" u2="Û" k="18" /> + <hkern u1="fl" u2="Ú" k="18" /> + <hkern u1="fl" u2="Ù" k="18" /> + <hkern u1="fl" u2="Ø" k="11" /> + <hkern u1="fl" u2="Ö" k="11" /> + <hkern u1="fl" u2="Õ" k="11" /> + <hkern u1="fl" u2="Ô" k="11" /> + <hkern u1="fl" u2="Ó" k="11" /> + <hkern u1="fl" u2="Ò" k="11" /> + <hkern u1="fl" u2="Ñ" k="10" /> + <hkern u1="fl" u2="Ð" k="10" /> + <hkern u1="fl" u2="Ï" k="10" /> + <hkern u1="fl" u2="Î" k="10" /> + <hkern u1="fl" u2="Í" k="10" /> + <hkern u1="fl" u2="Ì" k="10" /> + <hkern u1="fl" u2="Ë" k="10" /> + <hkern u1="fl" u2="Ê" k="10" /> + <hkern u1="fl" u2="É" k="10" /> + <hkern u1="fl" u2="È" k="10" /> + <hkern u1="fl" u2="Ç" k="11" /> + <hkern u1="fl" u2="Å" k="8" /> + <hkern u1="fl" u2="Ä" k="8" /> + <hkern u1="fl" u2="Ã" k="8" /> + <hkern u1="fl" u2="Â" k="8" /> + <hkern u1="fl" u2="Á" k="8" /> + <hkern u1="fl" u2="À" k="8" /> + <hkern u1="fl" u2="·" k="60" /> + <hkern u1="fl" u2="Y" k="11" /> + <hkern u1="fl" u2="V" k="11" /> + <hkern u1="fl" u2="U" k="18" /> + <hkern u1="fl" u2="T" k="9" /> + <hkern u1="fl" u2="S" k="9" /> + <hkern u1="fl" u2="R" k="10" /> + <hkern u1="fl" u2="Q" k="11" /> + <hkern u1="fl" u2="P" k="10" /> + <hkern u1="fl" u2="O" k="11" /> + <hkern u1="fl" u2="N" k="10" /> + <hkern u1="fl" u2="M" k="10" /> + <hkern u1="fl" u2="L" k="10" /> + <hkern u1="fl" u2="K" k="10" /> + <hkern u1="fl" u2="I" k="10" /> + <hkern u1="fl" u2="H" k="10" /> + <hkern u1="fl" u2="G" k="11" /> + <hkern u1="fl" u2="F" k="10" /> + <hkern u1="fl" u2="E" k="10" /> + <hkern u1="fl" u2="D" k="10" /> + <hkern u1="fl" u2="C" k="11" /> + <hkern u1="fl" u2="B" k="10" /> + <hkern u1="fl" u2="A" k="8" /> + <hkern u1="fl" u2="&" k="9" /> + <hkern u1="ffi" u2="Ț" k="10" /> + <hkern u1="ffi" u2="Ș" k="9" /> + <hkern u1="ffi" u2="Ǿ" k="10" /> + <hkern u1="ffi" u2="Þ" k="10" /> + <hkern u1="ffi" u2="Ý" k="8" /> + <hkern u1="ffi" u2="Ü" k="15" /> + <hkern u1="ffi" u2="Û" k="15" /> + <hkern u1="ffi" u2="Ú" k="15" /> + <hkern u1="ffi" u2="Ù" k="15" /> + <hkern u1="ffi" u2="Ø" k="10" /> + <hkern u1="ffi" u2="Ö" k="10" /> + <hkern u1="ffi" u2="Õ" k="10" /> + <hkern u1="ffi" u2="Ô" k="10" /> + <hkern u1="ffi" u2="Ó" k="10" /> + <hkern u1="ffi" u2="Ò" k="10" /> + <hkern u1="ffi" u2="Ñ" k="10" /> + <hkern u1="ffi" u2="Ð" k="10" /> + <hkern u1="ffi" u2="Ï" k="10" /> + <hkern u1="ffi" u2="Î" k="10" /> + <hkern u1="ffi" u2="Í" k="10" /> + <hkern u1="ffi" u2="Ì" k="10" /> + <hkern u1="ffi" u2="Ë" k="10" /> + <hkern u1="ffi" u2="Ê" k="10" /> + <hkern u1="ffi" u2="É" k="10" /> + <hkern u1="ffi" u2="È" k="10" /> + <hkern u1="ffi" u2="Ç" k="10" /> + <hkern u1="ffi" u2="Å" k="7" /> + <hkern u1="ffi" u2="Ä" k="7" /> + <hkern u1="ffi" u2="Ã" k="7" /> + <hkern u1="ffi" u2="Â" k="7" /> + <hkern u1="ffi" u2="Á" k="7" /> + <hkern u1="ffi" u2="À" k="7" /> + <hkern u1="ffi" u2="Y" k="8" /> + <hkern u1="ffi" u2="V" k="9" /> + <hkern u1="ffi" u2="U" k="15" /> + <hkern u1="ffi" u2="T" k="10" /> + <hkern u1="ffi" u2="S" k="9" /> + <hkern u1="ffi" u2="R" k="10" /> + <hkern u1="ffi" u2="Q" k="10" /> + <hkern u1="ffi" u2="P" k="10" /> + <hkern u1="ffi" u2="O" k="10" /> + <hkern u1="ffi" u2="N" k="10" /> + <hkern u1="ffi" u2="M" k="10" /> + <hkern u1="ffi" u2="L" k="10" /> + <hkern u1="ffi" u2="K" k="10" /> + <hkern u1="ffi" u2="I" k="10" /> + <hkern u1="ffi" u2="H" k="10" /> + <hkern u1="ffi" u2="G" k="10" /> + <hkern u1="ffi" u2="F" k="10" /> + <hkern u1="ffi" u2="E" k="10" /> + <hkern u1="ffi" u2="D" k="10" /> + <hkern u1="ffi" u2="C" k="10" /> + <hkern u1="ffi" u2="B" k="10" /> + <hkern u1="ffi" u2="A" k="7" /> + <hkern u1="ffi" u2="&" k="8" /> + <hkern u1="ffl" u2="Ț" k="9" /> + <hkern u1="ffl" u2="Ș" k="9" /> + <hkern u1="ffl" u2="Ǿ" k="11" /> + <hkern u1="ffl" u2="Þ" k="10" /> + <hkern u1="ffl" u2="Ý" k="11" /> + <hkern u1="ffl" u2="Ü" k="18" /> + <hkern u1="ffl" u2="Û" k="18" /> + <hkern u1="ffl" u2="Ú" k="18" /> + <hkern u1="ffl" u2="Ù" k="18" /> + <hkern u1="ffl" u2="Ø" k="11" /> + <hkern u1="ffl" u2="Ö" k="11" /> + <hkern u1="ffl" u2="Õ" k="11" /> + <hkern u1="ffl" u2="Ô" k="11" /> + <hkern u1="ffl" u2="Ó" k="11" /> + <hkern u1="ffl" u2="Ò" k="11" /> + <hkern u1="ffl" u2="Ñ" k="10" /> + <hkern u1="ffl" u2="Ð" k="10" /> + <hkern u1="ffl" u2="Ï" k="10" /> + <hkern u1="ffl" u2="Î" k="10" /> + <hkern u1="ffl" u2="Í" k="10" /> + <hkern u1="ffl" u2="Ì" k="10" /> + <hkern u1="ffl" u2="Ë" k="10" /> + <hkern u1="ffl" u2="Ê" k="10" /> + <hkern u1="ffl" u2="É" k="10" /> + <hkern u1="ffl" u2="È" k="10" /> + <hkern u1="ffl" u2="Ç" k="11" /> + <hkern u1="ffl" u2="Å" k="8" /> + <hkern u1="ffl" u2="Ä" k="8" /> + <hkern u1="ffl" u2="Ã" k="8" /> + <hkern u1="ffl" u2="Â" k="8" /> + <hkern u1="ffl" u2="Á" k="8" /> + <hkern u1="ffl" u2="À" k="8" /> + <hkern u1="ffl" u2="·" k="60" /> + <hkern u1="ffl" u2="Y" k="11" /> + <hkern u1="ffl" u2="V" k="11" /> + <hkern u1="ffl" u2="U" k="18" /> + <hkern u1="ffl" u2="T" k="9" /> + <hkern u1="ffl" u2="S" k="9" /> + <hkern u1="ffl" u2="R" k="10" /> + <hkern u1="ffl" u2="Q" k="11" /> + <hkern u1="ffl" u2="P" k="10" /> + <hkern u1="ffl" u2="O" k="11" /> + <hkern u1="ffl" u2="N" k="10" /> + <hkern u1="ffl" u2="M" k="10" /> + <hkern u1="ffl" u2="L" k="10" /> + <hkern u1="ffl" u2="K" k="10" /> + <hkern u1="ffl" u2="I" k="10" /> + <hkern u1="ffl" u2="H" k="10" /> + <hkern u1="ffl" u2="G" k="11" /> + <hkern u1="ffl" u2="F" k="10" /> + <hkern u1="ffl" u2="E" k="10" /> + <hkern u1="ffl" u2="D" k="10" /> + <hkern u1="ffl" u2="C" k="11" /> + <hkern u1="ffl" u2="B" k="10" /> + <hkern u1="ffl" u2="A" k="8" /> + <hkern u1="ffl" u2="&" k="9" /> + <hkern u1="st" u2="™" k="8" /> + <hkern u1="st" u2="ț" k="-7" /> + <hkern u1="st" u2="Ț" k="73" /> + <hkern u1="st" u2="ÿ" k="-15" /> + <hkern u1="st" u2="ý" k="-15" /> + <hkern u1="st" u2="Ý" k="45" /> + <hkern u1="st" u2="Ü" k="7" /> + <hkern u1="st" u2="Û" k="7" /> + <hkern u1="st" u2="Ú" k="7" /> + <hkern u1="st" u2="Ù" k="7" /> + <hkern u1="st" u2="y" k="-15" /> + <hkern u1="st" u2="v" k="-17" /> + <hkern u1="st" u2="t" k="-7" /> + <hkern u1="st" u2="]" k="11" /> + <hkern u1="st" u2="Y" k="45" /> + <hkern u1="st" u2="V" k="18" /> + <hkern u1="st" u2="U" k="7" /> + <hkern u1="st" u2="T" k="73" /> + <hkern u1="st" u2="&" k="11" /> + <hkern g1="f_j" u2="Ț" k="10" /> + <hkern g1="f_j" u2="Ș" k="9" /> + <hkern g1="f_j" u2="Ǿ" k="10" /> + <hkern g1="f_j" u2="Þ" k="10" /> + <hkern g1="f_j" u2="Ý" k="8" /> + <hkern g1="f_j" u2="Ü" k="15" /> + <hkern g1="f_j" u2="Û" k="15" /> + <hkern g1="f_j" u2="Ú" k="15" /> + <hkern g1="f_j" u2="Ù" k="15" /> + <hkern g1="f_j" u2="Ø" k="10" /> + <hkern g1="f_j" u2="Ö" k="10" /> + <hkern g1="f_j" u2="Õ" k="10" /> + <hkern g1="f_j" u2="Ô" k="10" /> + <hkern g1="f_j" u2="Ó" k="10" /> + <hkern g1="f_j" u2="Ò" k="10" /> + <hkern g1="f_j" u2="Ñ" k="10" /> + <hkern g1="f_j" u2="Ð" k="10" /> + <hkern g1="f_j" u2="Ï" k="10" /> + <hkern g1="f_j" u2="Î" k="10" /> + <hkern g1="f_j" u2="Í" k="10" /> + <hkern g1="f_j" u2="Ì" k="10" /> + <hkern g1="f_j" u2="Ë" k="10" /> + <hkern g1="f_j" u2="Ê" k="10" /> + <hkern g1="f_j" u2="É" k="10" /> + <hkern g1="f_j" u2="È" k="10" /> + <hkern g1="f_j" u2="Ç" k="10" /> + <hkern g1="f_j" u2="Å" k="7" /> + <hkern g1="f_j" u2="Ä" k="7" /> + <hkern g1="f_j" u2="Ã" k="7" /> + <hkern g1="f_j" u2="Â" k="7" /> + <hkern g1="f_j" u2="Á" k="7" /> + <hkern g1="f_j" u2="À" k="7" /> + <hkern g1="f_j" u2="Y" k="8" /> + <hkern g1="f_j" u2="V" k="9" /> + <hkern g1="f_j" u2="U" k="15" /> + <hkern g1="f_j" u2="T" k="10" /> + <hkern g1="f_j" u2="S" k="9" /> + <hkern g1="f_j" u2="R" k="10" /> + <hkern g1="f_j" u2="Q" k="10" /> + <hkern g1="f_j" u2="P" k="10" /> + <hkern g1="f_j" u2="O" k="10" /> + <hkern g1="f_j" u2="N" k="10" /> + <hkern g1="f_j" u2="M" k="10" /> + <hkern g1="f_j" u2="L" k="10" /> + <hkern g1="f_j" u2="K" k="10" /> + <hkern g1="f_j" u2="I" k="10" /> + <hkern g1="f_j" u2="H" k="10" /> + <hkern g1="f_j" u2="G" k="10" /> + <hkern g1="f_j" u2="F" k="10" /> + <hkern g1="f_j" u2="E" k="10" /> + <hkern g1="f_j" u2="D" k="10" /> + <hkern g1="f_j" u2="C" k="10" /> + <hkern g1="f_j" u2="B" k="10" /> + <hkern g1="f_j" u2="A" k="7" /> + <hkern g1="f_j" u2="&" k="8" /> + </font> +</defs></svg> diff --git a/default/htdocs/fonts/VarelaRound-Regular.ttf b/default/htdocs/fonts/VarelaRound-Regular.ttf Binary files differnew file mode 100644 index 0000000..3fcd921 --- /dev/null +++ b/default/htdocs/fonts/VarelaRound-Regular.ttf diff --git a/default/htdocs/fonts/VarelaRound-Regular.woff b/default/htdocs/fonts/VarelaRound-Regular.woff Binary files differnew file mode 100644 index 0000000..ef24085 --- /dev/null +++ b/default/htdocs/fonts/VarelaRound-Regular.woff diff --git a/default/htdocs/images/bg.png b/default/htdocs/images/bg.png Binary files differnew file mode 100644 index 0000000..35fb3b5 --- /dev/null +++ b/default/htdocs/images/bg.png diff --git a/default/htdocs/images/camel.jpg b/default/htdocs/images/camel.jpg Binary files differnew file mode 100644 index 0000000..ebbdfd3 --- /dev/null +++ b/default/htdocs/images/camel.jpg diff --git a/default/htdocs/images/dotORG.png b/default/htdocs/images/dotORG.png Binary files differnew file mode 100644 index 0000000..c487e26 --- /dev/null +++ b/default/htdocs/images/dotORG.png diff --git a/default/htdocs/images/head.jpg b/default/htdocs/images/head.jpg Binary files differnew file mode 100644 index 0000000..0a9c408 --- /dev/null +++ b/default/htdocs/images/head.jpg diff --git a/default/htdocs/images/ipv6ready.png b/default/htdocs/images/ipv6ready.png Binary files differnew file mode 100644 index 0000000..18a42a7 --- /dev/null +++ b/default/htdocs/images/ipv6ready.png diff --git a/default/htdocs/images/org.png b/default/htdocs/images/org.png Binary files differnew file mode 100644 index 0000000..c338dc5 --- /dev/null +++ b/default/htdocs/images/org.png diff --git a/default/htdocs/styles/blank.css b/default/htdocs/styles/blank.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/default/htdocs/styles/blank.css @@ -0,0 +1 @@ + diff --git a/default/htdocs/styles/css3.css b/default/htdocs/styles/css3.css new file mode 100644 index 0000000..21e6e61 --- /dev/null +++ b/default/htdocs/styles/css3.css @@ -0,0 +1,150 @@ +@font-face { + font-family: 'Conv_VarelaRound-Regular'; + src: url('?document=fonts/VarelaRound-Regular.eot'); + src: url('?document=fonts/VarelaRound-Regular.woff') format('woff'), url('?document=fonts/VarelaRound-Regular.ttf') format('truetype'), url('?document=fonts/VarelaRound-Regular.svg') format('svg'); + font-weight: normal; + font-style: normal; +} + +body { + font-family: 'Conv_VarelaRound-Regular', Georgia, Serif; + background-color: #BCC6CC; + height: 100%; + max-width: 1100px; + margin-left: auto; margin-right: auto +} + +div.header { + background-color: #EEEEEE; + color: #000000; + border-color: #000000; + border-width: 2px; + border-style: solid; + padding: 20px; + margin: 0px; + margin-bottom: 10px; + text-align: center; + border-radius:10px; + box-shadow: 10px 10px 5px #000000; +} + +div.main { + background-color: #FFFFFF; + border-width: 1px; + border-style: solid; + padding: 5px; + border-radius:10px; + box-shadow: 10px 10px 5px #000000; +} + +div.important { + background-color: #FF8181; + border-width: 1px; + border-style: solid; + border-radius:10px; + margin-right: 10px; + box-shadow: 10px 10px 5px #000000; +} + +div.important2 { + background-color: #FFA500; + border-width: 1px; + border-style: solid; + border-radius:10px; + margin-right: 10px; + box-shadow: 10px 10px 5px #000000; +} + +div.information { + background-color: #99FF66; + border-width: 1px; + border-style: solid; + border-radius:10px; + margin-right: 10px; + box-shadow: 10px 10px 5px #000000; +} + +html { + height: 100%; +} + +p { + padding: 1px 0; + text-align: justify; +} + +span.italic { + font-style: italic; +} + +span.bold { + font-weight: bold; +} + +h1 { + font-family: 'Conv_VarelaRound-Regular', Georgia, Serif; + padding-left: 10px; + font-size: 40px; +} + +h2, h3 { + font-family: 'Conv_VarelaRound-Regular', Georgia, Serif; + padding-left: 10px; + padding-right: 10px; + font-size: 20px; +} + +p { + padding-left: 10px; + padding-right: 10px; +} + + +pre, .quote, .code { + border:1px #000000 solid; + font-family: "Courier New", courier; + background-color: #000000; + color: #99FF66; + padding-top: -10px; + padding-right: 10px; + padding: 10px; + margin-bottom: 30px; + margin-left: auto; margin-right: auto; + border-radius:10px; + box-shadow: 10px 10px 5px #000000; + max-width: 1000px; +} + +.footer { + background-color: #EEEEEE; + color: #000000; + text-align: center; + font-style: italic; + font-size: 12px; + margin-top: 10px; + padding: 10px; + border-radius:10px; +} + +a { + color: #000000; +} + +a:hover { + color: #FF0000; + text-decoration: none; +} + +img { + padding-left: 10px; + padding-bottom: 10px; +} + +img.limg { + padding-right: 10px; +} + +div.incsep { + background-color: #FEFEFE; + padding-bottom: 50px; +} diff --git a/default/htdocs/styles/default.css b/default/htdocs/styles/default.css new file mode 100644 index 0000000..27b30cb --- /dev/null +++ b/default/htdocs/styles/default.css @@ -0,0 +1,116 @@ +html { + height: 100%; +} + +body { + font-family: Georgia, Serif; + background-color: #19495f; + height: 100%; + max-width: 900px; +} + +p { + padding: 1px 0; +} + +div.header { + background-color: #01768f; + border-color: #000000; + border-width: 2px; + border-style: solid; + color: #FFFFFF; + padding: 20px; + margin: 0px; + margin-bottom: 5px; + text-align: center; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +span.italic { + font-style: italic; +} + +span.bold { + font-weight: bold; +} + +div.main { + background-color: #FFFFFA; + border-width: 1px; + border-style: solid; + padding: 5px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +div.important { + background-color: #FF8181; + border-width: 1px; + border-style: solid; +} + +div.info { + background-color: #99FF66; + border-width: 1px; + border-style: solid; +} + +h1 { + padding-left: 10px; + font-size: 30px; +} + +h2, h3, p { + padding-left: 10px; + padding-right: 10px; +} + + +pre, .quote, .code { + border:1px #000000 solid; + font-family: "Courier New", courier; + background: #FFFFFF; + color: #000000; + padding-top: -10px; + padding-right: 10px; + padding: 10px; + margin-bottom: 30px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +.footer { + background-color: #EEEEEE; + color: #000000; + text-align: center; + font-style: italic; + font-size: 12px; + margin-top: 10px; + padding: 10px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +a { + color: #000000; +} + +a:hover { + color: #FF0000; + text-decoration: none; +} + +img { + padding-left: 10px; + padding-bottom: 10px; +} + +img.limg { + padding-right: 10px; +} + +div.incsep { + background-color: #FEFEFE; + padding-bottom: 50px; +} diff --git a/default/templates/html5.xml b/default/templates/html5.xml new file mode 100644 index 0000000..70c50bb --- /dev/null +++ b/default/templates/html5.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content type="text/html"> + <tag>!DOCTYPE html</tag> + <html> + <head> + <title>%%title%%</title> + <tag>meta http-equiv="Content-Type" content="text/html;charset=UTF-8"</tag> + <tag>meta name="author" content="Paul C. Buetow"</tag> + <tag>meta name="publisher" content="Xerl Template Engine (xerl.buetow.org)"</tag> + <tag>meta name="robots" content="index, follow"</tag> + <tag>meta name="revisit-after" content="7 days"</tag> + <tag>link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$"</tag> + </head> + <body> + <div class="header"> + <type class="bold">A fortune quote: </type> + <type class="italic">$$!/usr/games/fortune -s$$</type> + </div> + <div class="main"> + <navigation/> + <noop>%%content%%</noop> + <div class="footer"> + <noop>Generated in !!TIME!!s</noop> + <noop>| Powered by </noop> + <namedlink href="http://xerl.buetow.org">Xerl</namedlink> + <noop>| Xerl templates managed with Puppet/Git | Running on FreeBSD - The Power to Serve | </noop> + <namedlink href="http://sitemap.buetow.org">Sitemap</namedlink> + </div> + </div> + </body> + </html> +</content> diff --git a/default/templates/plain.xml b/default/templates/plain.xml new file mode 100644 index 0000000..efa11e4 --- /dev/null +++ b/default/templates/plain.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<content type="text/plain"> + <noop>%%content%%</noop> +</content> diff --git a/default/templates/rss2.feed.xml b/default/templates/rss2.feed.xml new file mode 100644 index 0000000..dfa5515 --- /dev/null +++ b/default/templates/rss2.feed.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<content type="application/rss+xml"> + <tag>?xml version="1.0"?</tag> + <rss version="2.0"> + <channel> + <title>buetow.org Newsfeed</title> + <hyperlink>http://%%host%%</hyperlink> + <description>buetow.org - Paul C. Buetows Tech Newsfeed</description> + <pubDate>$$!/bin/date$$</pubDate> + <generator>Xerl Web Engine (http://xerl.buetow.org)</generator> + <language>en</language> + <noop>%%content%%</noop> + </channel> + </rss> +</content> diff --git a/default/templates/xhtml.xml b/default/templates/xhtml.xml new file mode 100644 index 0000000..4ea784c --- /dev/null +++ b/default/templates/xhtml.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content type="text/html"> + <tag>!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</tag> + <html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>%%title%%</title> + <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> + <meta name="author" content="Paul C. Buetow"/> + <meta name="publisher" content="Xerl Template Engine (xerl.buetow.org)"/> + <meta name="distribution" content="global"/> + <meta name="robots" content="index, follow"/> + <meta name="language" content="en, english"/> + <meta name="revisit-after" content="7 days"/> + <link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$"/> + </head> + <body> + <div class="header"> + <type class="bold">A fortune quote: </type> + <type class="italic">$$!/usr/games/fortune -s$$</type> + </div> + <div class="main"> + <navigation/> + <noop>%%content%%</noop> + <div class="footer"> + <noop>Generated in !!TIME!!s</noop> + <noop>| Powered by </noop> + <namedlink href="http://xerl.buetow.org">Xerl</namedlink> + <noop>| Xerl templates managed with Puppet/Git</noop> + </div> + </div> + </body> + </html> +</content> diff --git a/dev.buetow.org/SITEMAP b/dev.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/dev.buetow.org/SITEMAP diff --git a/dev.buetow.org/content/home.xml b/dev.buetow.org/content/home.xml new file mode 100644 index 0000000..9bb2b05 --- /dev/null +++ b/dev.buetow.org/content/home.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Some programming projects</pagetitle> + <textheader>Mailing List</textheader> + <text> + <noop>Here are some programming projects listed which I programmed in my spare time. Some may be usefull and others may not. Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations.</noop> + </text> + <textheader>Github</textheader> + <text> + <noop>My Github page is</noop> + <namedlink href="http://github.com/rantanplan">github.com/rantanplan</namedlink> + <noop> and my open source report card is</noop> + <namedlink href="http://osrc.dfm.io/rantanplan">http://osrc.dfm.io/rantanplan</namedlink> + </text> + <textheader>Deb repository</textheader> + <text>Some projects provide packages in .deb format. Please check out each individual project site for available architecture and so on. Basically the debian repository is available via</text> + <code>[deb|deb-src] http://deb.buetow.org/apt DISTRIBUTION main</code> + <text>Where DISTRIBUTION may be squeeze, wheezy.... To trust the repo please run: </text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -</code> + <textheader>Project list</textheader> + <information> + <text> + <noop>All hosts containing </noop> + <strong>.alpha.buetow.org</strong> + <noop> are most likely dev, test or PoCs. Don't expect to find anything usefull there.</noop> + </text> + </information> + <text> + <includerun>projectlist.inc.pl</includerun> + </text> +</content> diff --git a/dev.buetow.org/content/projectlist.inc.pl b/dev.buetow.org/content/projectlist.inc.pl new file mode 100644 index 0000000..4d1d4f2 --- /dev/null +++ b/dev.buetow.org/content/projectlist.inc.pl @@ -0,0 +1,42 @@ +my $hostroot = $config->get_hostroot(); + +sub getf ($) { + open my $f, $_[0] or die "$!: $_[0]\n"; + my @slurp = <$f>; + close $f; + @slurp; +} + +sub nl () { "<br />\n" } + +sub list (*) { + my $tag = shift; + my @found = sort `find $hostroot -name $tag`; + my $ret = ''; + + + for my $found (@found) { + $found =~ /.*hosts.(.*?).$tag/; + my $host = $1; + + my @content = getf $found; + + $ret .= "<b><a href=http://$host>$host</a></b>" . nl; + if (@content) { + $ret .= join " ", @content; + $ret .= nl; + } + $ret .= nl; + } + + $ret; +} + +my $ret = list PROJECT; + +$ret .= "<b><i>Older projects (not active at the moment):</i></b>" . nl x 2; +$ret .= list OLDPROJECT; +$ret .= "<b><i>Obsolete projects (no work will be done anymore and the software may be broken):</i></b>" . nl x 2; +$ret .= list OBSOLETEPROJECT; + +return $ret; diff --git a/fapi.buetow.org/PROJECT b/fapi.buetow.org/PROJECT new file mode 100644 index 0000000..d699abb --- /dev/null +++ b/fapi.buetow.org/PROJECT @@ -0,0 +1 @@ +A simple command line tool written in Python to manage basic BigIP LTM stuff using the Python bigsuds library. diff --git a/fapi.buetow.org/SITEMAP b/fapi.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fapi.buetow.org/SITEMAP diff --git a/fapi.buetow.org/content/20.Manpage.xml b/fapi.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..ac33d3f --- /dev/null +++ b/fapi.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/fapi.git/plain/docs/fapi.txt</inject> + </pretext> +</content> diff --git a/fapi.buetow.org/content/21.Synopsis.xml b/fapi.buetow.org/content/21.Synopsis.xml new file mode 100644 index 0000000..5fff61c --- /dev/null +++ b/fapi.buetow.org/content/21.Synopsis.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Synopsis</pagetitle> + <text>This is the Synopsis of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/fapi.git/plain/docs/synopsis.txt</inject> + </pretext> +</content> diff --git a/fapi.buetow.org/content/22.Extended_Synopsis.xml b/fapi.buetow.org/content/22.Extended_Synopsis.xml new file mode 100644 index 0000000..03fa720 --- /dev/null +++ b/fapi.buetow.org/content/22.Extended_Synopsis.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Extended eynopsis</pagetitle> + <text>This is the extended synopsis of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/fapi.git/plain/docs/extended-synopsis.txt</inject> + </pretext> +</content> diff --git a/fapi.buetow.org/content/40.Changelog.xml b/fapi.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..6237309 --- /dev/null +++ b/fapi.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/fapi.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/fapi.buetow.org/content/50.Download.xml b/fapi.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/fapi.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/fapi.buetow.org/content/98.contact.xml b/fapi.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/fapi.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/fapi.buetow.org/content/99.license.xml b/fapi.buetow.org/content/99.license.xml new file mode 100644 index 0000000..6f26b60 --- /dev/null +++ b/fapi.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Fapi is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/fapi.buetow.org/content/home.xml b/fapi.buetow.org/content/home.xml new file mode 100644 index 0000000..5cfe477 --- /dev/null +++ b/fapi.buetow.org/content/home.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Fapi</pagetitle> + <textheader>Simple F5 API Command Line Tool</textheader> + <text>This tool is for managing a few basic stuff in a BigIP LTM using its SOAP API. It depends on the bigsuds Python library which can be downloaded from F5 devcentral..</text> +</content> diff --git a/fype.alpha.buetow.org/OBSOLETEPROJECT b/fype.alpha.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..703453b --- /dev/null +++ b/fype.alpha.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +Fype is an attempt to build an open source scripting language from scratch (just for fun) using C99 on the FreeBSD operating system. Fypes focus is to use as few dependencies on 3rd party libraries as possible and to use as less code as possible and a very small execution binary! diff --git a/fype.alpha.buetow.org/SITEMAP b/fype.alpha.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fype.alpha.buetow.org/SITEMAP diff --git a/fype.alpha.buetow.org/content/20.Manpage.xml b/fype.alpha.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..a17f61a --- /dev/null +++ b/fype.alpha.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/fype.git/plain/docs/pod/fype.txt</inject> + </pretext> +</content> diff --git a/fype.alpha.buetow.org/content/98.contact.xml b/fype.alpha.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/fype.alpha.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/fype.alpha.buetow.org/content/Download.xml b/fype.alpha.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/fype.alpha.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/fype.alpha.buetow.org/content/Examples.xml b/fype.alpha.buetow.org/content/Examples.xml new file mode 100644 index 0000000..f48e2c0 --- /dev/null +++ b/fype.alpha.buetow.org/content/Examples.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Sourcecode Examples</pagetitle> + <code> + <inject>http://web.buetow.org/cgit/fype.git/plain/examples/all-examples.txt</inject> + </code> +</content> diff --git a/fype.alpha.buetow.org/content/home.xml b/fype.alpha.buetow.org/content/home.xml new file mode 100644 index 0000000..b136c0c --- /dev/null +++ b/fype.alpha.buetow.org/content/home.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>The Fype Language</pagetitle> + <textheader>Free, small, simple...</textheader> + <important> + <text> + <strong>Important notice:</strong> + <noop>The host </noop> + <strong>alpha.buetow.org</strong> + <noop>contains only development, test and PoC stuff. Replace </noop> + <strong>$shomething.alpha.buetow.org</strong> + <noop> with </noop> + <strong>$something.buetow.org</strong> + <noop> (if exists) to get the stable stuff.</noop> + </text> + </important> + <important2> + <text> + <strong>Important notice:</strong> + <noop>The development of this project has been stalled. There will be no further development on this project. This project always was a proof of concept only. Bugs are not gonna be fixed. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important2> + <text> + <limg href="?document=images/fype.png" title="Fype"/> + <noop>... is an attempt to build an open source scripting language from scratch (just for fun) using C99 on the FreeBSD operating system. Fypes focus is to use as few dependencies on 3rd party libraries as possible and to use as less code as possible and a very small execution binary! Fype should be portable to many different operating systems as well. The first release will be also available at least for Linux and maybe other UNIX alike operating systems. Fype itself is using the BSD license.</noop> + </text> +</content> diff --git a/fype.alpha.buetow.org/htdocs/images/fype.png b/fype.alpha.buetow.org/htdocs/images/fype.png Binary files differnew file mode 100644 index 0000000..1748de5 --- /dev/null +++ b/fype.alpha.buetow.org/htdocs/images/fype.png diff --git a/guprecords.buetow.org/PROJECT b/guprecords.buetow.org/PROJECT new file mode 100644 index 0000000..b0f182d --- /dev/null +++ b/guprecords.buetow.org/PROJECT @@ -0,0 +1 @@ +A tool to show global uprecord stats collected on several hosts using uptimed. diff --git a/guprecords.buetow.org/SITEMAP b/guprecords.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/guprecords.buetow.org/SITEMAP diff --git a/guprecords.buetow.org/content/20.Manpage.xml b/guprecords.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..31792c3 --- /dev/null +++ b/guprecords.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/guprecords.git/plain/docs/guprecords.txt</inject> + </pretext> +</content> diff --git a/guprecords.buetow.org/content/40.Changelog.xml b/guprecords.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..e5e7056 --- /dev/null +++ b/guprecords.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/guprecords.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/guprecords.buetow.org/content/50.Download.xml b/guprecords.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/guprecords.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/guprecords.buetow.org/content/98.contact.xml b/guprecords.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/guprecords.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/guprecords.buetow.org/content/99.license.xml b/guprecords.buetow.org/content/99.license.xml new file mode 100644 index 0000000..248dff3 --- /dev/null +++ b/guprecords.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Guprecords is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/guprecords.buetow.org/content/home.xml b/guprecords.buetow.org/content/home.xml new file mode 100644 index 0000000..470ebb7 --- /dev/null +++ b/guprecords.buetow.org/content/home.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Guprecords</pagetitle> + <textheader>Global uptime records.</textheader> + <text>Shows uprecord stats of several hosts at once.</text> + <cimg href="?document=images/guprecords.png" title="Guprecords" alt="Guprecords"/> +</content> diff --git a/guprecords.buetow.org/htdocs/images/guprecords.png b/guprecords.buetow.org/htdocs/images/guprecords.png Binary files differnew file mode 100644 index 0000000..c5a8621 --- /dev/null +++ b/guprecords.buetow.org/htdocs/images/guprecords.png diff --git a/httpbench.alpha.buetow.org/OLDPROJECT b/httpbench.alpha.buetow.org/OLDPROJECT new file mode 100644 index 0000000..b400885 --- /dev/null +++ b/httpbench.alpha.buetow.org/OLDPROJECT @@ -0,0 +1 @@ +HTTP Bench is a small program written in C for benchmarking HTTP servers. diff --git a/httpbench.alpha.buetow.org/SITEMAP b/httpbench.alpha.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/httpbench.alpha.buetow.org/SITEMAP diff --git a/httpbench.alpha.buetow.org/content/20.Manpage.xml b/httpbench.alpha.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..c658b4c --- /dev/null +++ b/httpbench.alpha.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/httpbench.git/plain/docs/httpbench.txt</inject> + </pretext> +</content> diff --git a/httpbench.alpha.buetow.org/content/40.Changelog.xml b/httpbench.alpha.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..d8bafbe --- /dev/null +++ b/httpbench.alpha.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/httpbench.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/httpbench.alpha.buetow.org/content/50.Download.xml b/httpbench.alpha.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..fcd1b73 --- /dev/null +++ b/httpbench.alpha.buetow.org/content/50.Download.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install !!HOSTNAME!!:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -".</text> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/httpbench.alpha.buetow.org/content/98.contact.xml b/httpbench.alpha.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/httpbench.alpha.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/httpbench.alpha.buetow.org/content/99.license.xml b/httpbench.alpha.buetow.org/content/99.license.xml new file mode 100644 index 0000000..1da97ed --- /dev/null +++ b/httpbench.alpha.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>HTTP Bench is licensed under the GNU Gerneral Public License Version 3 or later. For details please check out all files from the source tree named copyright.</text> +</content> diff --git a/httpbench.alpha.buetow.org/content/home.xml b/httpbench.alpha.buetow.org/content/home.xml new file mode 100644 index 0000000..e3c4d73 --- /dev/null +++ b/httpbench.alpha.buetow.org/content/home.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <important> + <text> + <strong>Important notice:</strong> + <noop>The host </noop> + <strong>.alpha.buetow.org</strong> + <noop>contains only development, test and PoC stuff. Replace </noop> + <strong>$shomething.alpha.buetow.org</strong> + <noop> with </noop> + <strong>$something.buetow.org</strong> + <noop> (if exists) to get the stable stuff.</noop> + </text> + </important> + <pagetitle>httpbench</pagetitle> + <important2> + <text> + <strong>Important notice:</strong> + <noop>This is beta software!!!</noop> + </text> + </important2> + <text> + <noop>httpbench is a small program for Linux, UNIX and a like written in C which can be used to benchmark HTTP servers. So why implementing a new benchmarking tool? Because I want a specific benchmark featureset which I could not find in another tools such as Apache Benchmarker or Siege and it's more fun to implement my own tool instead of extending the existing tools although other tools are in its most features much more advanced than httpbench! This is the current feature set:</noop> + </text> + <enumeration> + <enumitem>Iterating over a list of URLs</enumitem> + <enumitem>Measuring response times and calculating min, max and avg values</enumitem> + <enumitem>Measuring TCP/HTTP errors</enumitem> + <enumitem>Multi threaded for concurrent connections (using pthreads)</enumitem> + <enumitem>Set upper limit of requests per second wanted</enumitem> + <enumitem>Validation of response strings</enumitem> + <enumitem>*VERY* simple source code</enumitem> + <enumitem>Works with Linux, UNIX and a like</enumitem> + </enumeration> + <text>To get started fetch httpbench from the deb repository (see Download section) or fetch it from git and compile it.</text> +</content> diff --git a/httpbench.alpha.buetow.org/htdocs/images/loadbars.png b/httpbench.alpha.buetow.org/htdocs/images/loadbars.png Binary files differnew file mode 100644 index 0000000..d223b9a --- /dev/null +++ b/httpbench.alpha.buetow.org/htdocs/images/loadbars.png diff --git a/irssi.buetow.org/SITEMAP b/irssi.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/irssi.buetow.org/SITEMAP diff --git a/irssi.buetow.org/content/Plugins.sub/Drunken.xml b/irssi.buetow.org/content/Plugins.sub/Drunken.xml new file mode 100644 index 0000000..9a69198 --- /dev/null +++ b/irssi.buetow.org/content/Plugins.sub/Drunken.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>drunken.pl</pagetitle> + <text>This plugin makes you write like a drunken man. Usage:</text> + <code>/script load drunken.pl +/beer Hello I am verry drunk at the moment!</code> + <text>This will write something like this into the current channel:</text> + <code>Hlleo I am vrrey dunrk at the mnetmo!</code> + <text>You may download it from the SVN section above. Have a lot of fun ;)</text> +</content> diff --git a/irssi.buetow.org/content/Plugins.sub/Foo.xml b/irssi.buetow.org/content/Plugins.sub/Foo.xml new file mode 100644 index 0000000..5e8025e --- /dev/null +++ b/irssi.buetow.org/content/Plugins.sub/Foo.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>foo.pl</pagetitle> + <text> + Nothing here to see yet. + </text> +</content> diff --git a/irssi.buetow.org/content/Plugins.sub/home.xml b/irssi.buetow.org/content/Plugins.sub/home.xml new file mode 100644 index 0000000..945da62 --- /dev/null +++ b/irssi.buetow.org/content/Plugins.sub/home.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Plugins</pagetitle> + <text> + Select the desired plugin above ;) ATM only one is available. + </text> +</content> diff --git a/irssi.buetow.org/content/SVN.xml b/irssi.buetow.org/content/SVN.xml new file mode 100644 index 0000000..d10ef1e --- /dev/null +++ b/irssi.buetow.org/content/SVN.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>SVN Download</pagetitle> + <text>IRSSI plugins can be downloaded from SVN. Use the following steps to do so:</text> + <pretext>svn co https://ssl.buetow.org/repos/utils/irssi-plugins</pretext> +</content> diff --git a/irssi.buetow.org/content/home.xml b/irssi.buetow.org/content/home.xml new file mode 100644 index 0000000..e739437 --- /dev/null +++ b/irssi.buetow.org/content/home.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Irssi plugins written in Perl</pagetitle> + <text> + <noop>Here are a "few" plugins for the </noop> + <namedlink href="http://www.irssi.org">Irssi</namedlink> + <noop> IRC client written in the </noop> + <namedlink href="http://www.perl.org">Perl</namedlink> + <noop> programming language. Use the Plugins link above to see the descriptions or select SVN in order to fetch them from the subversion repository.</noop> + </text> +</content> diff --git a/irssi.buetow.org/content/license.xml b/irssi.buetow.org/content/license.xml new file mode 100644 index 0000000..e3594a5 --- /dev/null +++ b/irssi.buetow.org/content/license.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>All Irssi plugins listed are (C) by Paul C. Buetow.</noop> + </text> + <text> + <noop> + All rights reserved. + </noop> + <newline/> + <newline/> + <noop> + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + </noop> + <newline/> + <newline/> + <noop> + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + </noop> + <newline/> + <newline/> + <noop> + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + </noop> + <newline/> + <newline/> + <noop> + * Neither the name of buetow.org nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + </noop> + <newline/> + <newline/> + <noop> +THIS SOFTWARE IS PROVIDED BY Paul C. Buetow ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL Paul C. Buetow BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + </noop> + </text> +</content> diff --git a/japi.buetow.org/PROJECT b/japi.buetow.org/PROJECT new file mode 100644 index 0000000..d74f5bc --- /dev/null +++ b/japi.buetow.org/PROJECT @@ -0,0 +1 @@ +A simple command line tool to list new JIRA issues programmed in Modern Perl. diff --git a/japi.buetow.org/SITEMAP b/japi.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/japi.buetow.org/SITEMAP diff --git a/japi.buetow.org/content/20.Manpage.xml b/japi.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..83a23f2 --- /dev/null +++ b/japi.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/japi.git/plain/docs/japi.txt</inject> + </pretext> +</content> diff --git a/japi.buetow.org/content/40.Changelog.xml b/japi.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..7eb3abc --- /dev/null +++ b/japi.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/japi.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/japi.buetow.org/content/50.Download.xml b/japi.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/japi.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/japi.buetow.org/content/98.contact.xml b/japi.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/japi.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/japi.buetow.org/content/99.license.xml b/japi.buetow.org/content/99.license.xml new file mode 100644 index 0000000..58cc7d9 --- /dev/null +++ b/japi.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Japi is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/japi.buetow.org/content/home.xml b/japi.buetow.org/content/home.xml new file mode 100644 index 0000000..63265de --- /dev/null +++ b/japi.buetow.org/content/home.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Japi</pagetitle> + <textheader>Simple Jira Command Line Tool</textheader> + <text>This tool shows new open Jira Issues on your terminal. It may be usefull if you don't recieve any mails and want to see a list of Jira Issues printed to your terminal every time you open a new shell.</text> +</content> diff --git a/jsmstrade.buetow.org/OLDPROJECT b/jsmstrade.buetow.org/OLDPROJECT new file mode 100644 index 0000000..85ec389 --- /dev/null +++ b/jsmstrade.buetow.org/OLDPROJECT @@ -0,0 +1 @@ +JSMSTrade is a small and simple Java application to use with SMSTRADE.de for delivering SMS over the internet. diff --git a/jsmstrade.buetow.org/SITEMAP b/jsmstrade.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/jsmstrade.buetow.org/SITEMAP diff --git a/jsmstrade.buetow.org/content/98.contact.xml b/jsmstrade.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/jsmstrade.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/jsmstrade.buetow.org/content/Download.xml b/jsmstrade.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/jsmstrade.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/jsmstrade.buetow.org/content/Screenshots.xml b/jsmstrade.buetow.org/content/Screenshots.xml new file mode 100644 index 0000000..7fe023b --- /dev/null +++ b/jsmstrade.buetow.org/content/Screenshots.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Screenshot</pagetitle> + <text> + <noop>Here the obligatory screenshot of JSMSTrade:</noop> + </text> + <cimg href="%%documentsurl%%images/screenshot.png"/> +</content> diff --git a/jsmstrade.buetow.org/content/home.xml b/jsmstrade.buetow.org/content/home.xml new file mode 100644 index 0000000..82c1969 --- /dev/null +++ b/jsmstrade.buetow.org/content/home.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>JSMSTrade</pagetitle> + <text> + <noop>JSMSTrade is a small and simple Java Application to use with </noop> + <namedlink href="http://www.smstrade.de">SMSTRADE</namedlink> + <noop> and can be downloaded for free.</noop> + </text> + <textheader>Sun Feb 8th 2009 - JSMSTrade v0.3 released</textheader> + <text> + <noop>This version only includes a major bugfix. Sadly, v0.2 was not able to deliver any SMS messages. This has been fixed by now :)</noop> + <textheader>Mon Feb 2nd 2009 - JSMSTrade v0.2 released</textheader> + <noop>The second version of JSMSTrade just has been released. The changes are as follows: The application is now using the english language and is not in german anymore. Also a small bugfix has been included: The input area will not freeze after typing more than 160 chars.</noop> + <textheader>Tue Jun 24th 2008 - JSMSTrade v0.1 released</textheader> + <noop>The first working version of JSMSTrade has been released. Have a lot of fun with it :-)</noop> + </text> +</content> diff --git a/jsmstrade.buetow.org/content/license.xml b/jsmstrade.buetow.org/content/license.xml new file mode 100644 index 0000000..8f2a6ca --- /dev/null +++ b/jsmstrade.buetow.org/content/license.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>JSMSTrade is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/jsmstrade.buetow.org/htdocs/images/screenshot.png b/jsmstrade.buetow.org/htdocs/images/screenshot.png Binary files differnew file mode 100644 index 0000000..ce5276f --- /dev/null +++ b/jsmstrade.buetow.org/htdocs/images/screenshot.png diff --git a/loadbars.buetow.org/PROJECT b/loadbars.buetow.org/PROJECT new file mode 100644 index 0000000..655277a --- /dev/null +++ b/loadbars.buetow.org/PROJECT @@ -0,0 +1 @@ +Loadbars is a small Perl script which can be used to observe CPU and memory loads of several remote servers at once in real time. diff --git a/loadbars.buetow.org/SITEMAP b/loadbars.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/loadbars.buetow.org/SITEMAP diff --git a/loadbars.buetow.org/content/20.Manpage.xml b/loadbars.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..de2da7c --- /dev/null +++ b/loadbars.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/loadbars.git/plain/docs/loadbars.txt</inject> + </pretext> +</content> diff --git a/loadbars.buetow.org/content/30.Screenshots.xml b/loadbars.buetow.org/content/30.Screenshots.xml new file mode 100644 index 0000000..e8deea5 --- /dev/null +++ b/loadbars.buetow.org/content/30.Screenshots.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Screenshots</pagetitle> + <text> + <noop>Screenshots can be downloaded from git. Just type </noop> + <code>git clone -b screenshots git://git.buetow.org/loadbars.git loadbars-screenshots</code> + </text> +</content> diff --git a/loadbars.buetow.org/content/40.Changelog.xml b/loadbars.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..83bc496 --- /dev/null +++ b/loadbars.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/loadbars.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/loadbars.buetow.org/content/45.Wishlist.xml b/loadbars.buetow.org/content/45.Wishlist.xml new file mode 100644 index 0000000..52465b1 --- /dev/null +++ b/loadbars.buetow.org/content/45.Wishlist.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Wishlist</pagetitle> + <text>This is the Wishlist file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/loadbars.git/plain/docs/wishlist</inject> + </pretext> +</content> diff --git a/loadbars.buetow.org/content/50.Download.xml b/loadbars.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/loadbars.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/loadbars.buetow.org/content/98.contact.xml b/loadbars.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/loadbars.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/loadbars.buetow.org/content/99.license.xml b/loadbars.buetow.org/content/99.license.xml new file mode 100644 index 0000000..ba5a912 --- /dev/null +++ b/loadbars.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Loadbars is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/loadbars.buetow.org/content/home.xml b/loadbars.buetow.org/content/home.xml new file mode 100644 index 0000000..04ce281 --- /dev/null +++ b/loadbars.buetow.org/content/home.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Loadbars</pagetitle> + <textheader>Get the current clue...</textheader> + <text> + <rimg href="?document=images/loadbars2.png" title="Loadbars" alt="Loadbars"/> + <noop>Loadbars is a Perl 5 script for Linux that can be used to observe CPU loads of several remote servers at once in real time. It connects with SSH (using SSH public/private key auth) to several servers at once and vizualizes all server CPUs and memory statistics right next each other (either summarized or each core separately). Loadbars is not a tool for collecting CPU loads and drawing graphs for later analysis. However, since such tools require a significant amount of time before producing results, Loadbars lets you observe the current state immediately. Loadbars does not remember or record any load information. It just shows the current CPU usages like top or vmstat does.</noop> + </text> + <enumeration> + <enumitem>Real time CPU load analysis per core and summarized (system, user, nice, iowait, hardware irq, software irq, steal, guest and idle load)</enumitem> + <enumitem>Real time system load average analysis</enumitem> + <enumitem>Real time memory analysis (RAM usage, Swap usage)</enumitem> + <enumitem>Real time network analysis (incoming and outgoing bandwidth)</enumitem> + <enumitem>Works with Linux</enumitem> + <enumitem>No extra software needed on the remote hosts (only Perl, SSHD and procfs is required). You need SSH access to all servers. All servers need a SSH public key for your user installed.</enumitem> + <enumitem>IPv4 and IPv6 compatible (due use of OpenSSH client)</enumitem> + </enumeration> + <text>To get started fetch loadbars from the deb repository or via git and run it. You'll install some additional CPAN Modules in order to get it running locally (only if you are using git). All required modules for Loadbars 0.7.x are available in Debian Wheezy. Loadbars up to 0.6.x also runs on Squeeze.</text> +</content> diff --git a/loadbars.buetow.org/htdocs/images/loadbars.png b/loadbars.buetow.org/htdocs/images/loadbars.png Binary files differnew file mode 100644 index 0000000..d223b9a --- /dev/null +++ b/loadbars.buetow.org/htdocs/images/loadbars.png diff --git a/loadbars.buetow.org/htdocs/images/loadbars2.png b/loadbars.buetow.org/htdocs/images/loadbars2.png Binary files differnew file mode 100644 index 0000000..d223b9a --- /dev/null +++ b/loadbars.buetow.org/htdocs/images/loadbars2.png diff --git a/netcalendar.buetow.org/OBSOLETEPROJECT b/netcalendar.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..e2892c3 --- /dev/null +++ b/netcalendar.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +NetCalendar is a network capable calendar application. NetCalendar has a server and a client part which communicate over a TCP/IP network. It also supports secure sockets using SSL. NetCalendar can also be used as a stand-alone application. NetCalendar does not use an SQL database but rather the database of the classic Unix "calendar" program. diff --git a/netcalendar.buetow.org/SITEMAP b/netcalendar.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/netcalendar.buetow.org/SITEMAP diff --git a/netcalendar.buetow.org/content/98.contact.xml b/netcalendar.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/netcalendar.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/netcalendar.buetow.org/content/Download.xml b/netcalendar.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/netcalendar.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/netcalendar.buetow.org/content/Screenshots.xml b/netcalendar.buetow.org/content/Screenshots.xml new file mode 100644 index 0000000..08a9828 --- /dev/null +++ b/netcalendar.buetow.org/content/Screenshots.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Screenshot</pagetitle> + <text> + <noop>Here the obligatory screenshot of the NetCalendar:</noop> + </text> + <cimg href="%%documentsurl%%images/screenshot.png"/> +</content> diff --git a/netcalendar.buetow.org/content/home.xml b/netcalendar.buetow.org/content/home.xml new file mode 100644 index 0000000..4444fa9 --- /dev/null +++ b/netcalendar.buetow.org/content/home.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>NetCalendar</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of NetCalendar has been stalled. In near future, there will be no further development on this project. This project always was a proof of concept only. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important> + <text>NetCalendar is a network capable calendar application. NetCalendar has a server and a client part which communicate over a TCP/IP network. It also supports secure sockets using SSL. NetCalendar can also be used as a stand-alone application. NetCalendar does not use an SQL database but rather the database of the classic Unix "calendar" program.</text> + <text> + <noop>Its initial motivaion was a programming project at the </noop> + <namedlink href="http://www.fh-aachen.de">Aachen University of Applied Sciences</namedlink> + <noop> for the object oriented programming class. But it became much more than just that!</noop> + </text> + <textheader>Sun Feb 08th 2009 - NetCalendar 1.0 released</textheader> + <text>The "NetCalendar 1.0" has been finally released. It has been almost 3 years since 1.0 RC5. However, only a few things have changed. NetCalendar now supports secure sockets using SSL. And the documentation is now completely in english (a part of it used to be in german). I've also managed to include a few cosmetic fixes as well (e.g. new splash screen). </text> + <textheader>Thu May 18th 2006 - Website up</textheader> + <text> + <noop>The initial website of the NetCalendar application is up an running using the </noop> + <namedlink href="http://xerl.buetow.org">Xerl Template Engine</namedlink> + <noop> as its base. All new releases will be anounced here. Currently 1.0 Release Candidate 5 is ready for download.</noop> + </text> +</content> diff --git a/netcalendar.buetow.org/content/license.xml b/netcalendar.buetow.org/content/license.xml new file mode 100644 index 0000000..a5f3e61 --- /dev/null +++ b/netcalendar.buetow.org/content/license.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>NetCalendar is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/netcalendar.buetow.org/htdocs/images/award.gif b/netcalendar.buetow.org/htdocs/images/award.gif Binary files differnew file mode 100644 index 0000000..4526f63 --- /dev/null +++ b/netcalendar.buetow.org/htdocs/images/award.gif diff --git a/netcalendar.buetow.org/htdocs/images/award.org.gif b/netcalendar.buetow.org/htdocs/images/award.org.gif Binary files differnew file mode 100644 index 0000000..4526f63 --- /dev/null +++ b/netcalendar.buetow.org/htdocs/images/award.org.gif diff --git a/netcalendar.buetow.org/htdocs/images/head.jpg b/netcalendar.buetow.org/htdocs/images/head.jpg Binary files differnew file mode 100644 index 0000000..b2299ad --- /dev/null +++ b/netcalendar.buetow.org/htdocs/images/head.jpg diff --git a/netcalendar.buetow.org/htdocs/images/screenshot.png b/netcalendar.buetow.org/htdocs/images/screenshot.png Binary files differnew file mode 100644 index 0000000..c239a28 --- /dev/null +++ b/netcalendar.buetow.org/htdocs/images/screenshot.png diff --git a/netdiff.buetow.org/PROJECT b/netdiff.buetow.org/PROJECT new file mode 100644 index 0000000..f739db9 --- /dev/null +++ b/netdiff.buetow.org/PROJECT @@ -0,0 +1 @@ +A tool to diff files across the network between two hosts. diff --git a/netdiff.buetow.org/SITEMAP b/netdiff.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/netdiff.buetow.org/SITEMAP diff --git a/netdiff.buetow.org/content/20.Manpage.xml b/netdiff.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..7ae568a --- /dev/null +++ b/netdiff.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/netdiff.git/plain/docs/netdiff.txt</inject> + </pretext> +</content> diff --git a/netdiff.buetow.org/content/40.Changelog.xml b/netdiff.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..e7fe506 --- /dev/null +++ b/netdiff.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/netdiff.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/netdiff.buetow.org/content/50.Download.xml b/netdiff.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/netdiff.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/netdiff.buetow.org/content/98.contact.xml b/netdiff.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/netdiff.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/netdiff.buetow.org/content/99.license.xml b/netdiff.buetow.org/content/99.license.xml new file mode 100644 index 0000000..a2ce03c --- /dev/null +++ b/netdiff.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>NetDiff is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/netdiff.buetow.org/content/home.xml b/netdiff.buetow.org/content/home.xml new file mode 100644 index 0000000..5410158 --- /dev/null +++ b/netdiff.buetow.org/content/home.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>NetDiff</pagetitle> + <textheader>Diff files via the network.</textheader> + <text>..between two hosts</text> + <cimg href="?document=images/netdiff.png" title="NetDiff" alt="NetDiff"/> +</content> diff --git a/netdiff.buetow.org/htdocs/images/netdiff.png b/netdiff.buetow.org/htdocs/images/netdiff.png Binary files differnew file mode 100644 index 0000000..ceee873 --- /dev/null +++ b/netdiff.buetow.org/htdocs/images/netdiff.png diff --git a/paul.buetow.org/SITEMAP b/paul.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/paul.buetow.org/SITEMAP diff --git a/paul.buetow.org/content/.Style-Guide.xml b/paul.buetow.org/content/.Style-Guide.xml new file mode 100644 index 0000000..c3396f6 --- /dev/null +++ b/paul.buetow.org/content/.Style-Guide.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Style guides for my nicknames</pagetitle> + <textheader>"rantanplan"</textheader> + <text> + <rimg href="?document=images/rantanplan.jpg" title="rantanplan"/> + <noop>This is the style guide for my IRC nickname "rantanplan" @ irc.german-elite.net. This style guide has been inspired by </noop> + <namedlink href="http://www252.pair.com/comdog/style.html">brian d foy's</namedlink> + <noop> style guide. This style guide helps you to write my nickname in the correct way!</noop> + </text> + <textsubheader>The rules</textsubheader> + <text> + <noop>The following rules have to be met:</noop> + <enumeration> + <enumitem>Each letter in rantanplan must be of the same case. Lower case is preferred. Any capitalization is incorrect unless each letter is capitalized.</enumitem> + <enumitem>Sentences should not start with rantanplan if you normally capitalize the first word of a sentence. Recast the sentence so that it begins with a capital letter. Or just write the whole sentence in small or capitalized letters!</enumitem> + <enumitem>If rantanplan is too long for you, you may use rant or ranti instead.</enumitem> + <enumitem>If you like rantanplan very much, you may use rantiplanti as his nickname!</enumitem> + <enumitem>Sometimes rantanplan changes his nick into some weird combinations like plantanran or ranplantan or tanplanrantanplan! Any version is valid! You can think of 3 main body parts: ran tan and plan. You may combine them in any order!</enumitem> + <enumitem>The above mentioned is also valid for the reversed body parts: nar nat nalp. This combination is valid as well: nartanranplannat.</enumitem> + <enumitem>Sometimes rantanplan likes to show other people on what cool stuff he is working on. In this case a |foo postfix is added to any version of his nickname. E.g.: ranti|C means, that rantanplan is currently coding in C. rantanplan|vs|work means, that he is fighting against his current task at work!</enumitem> + <enumitem>Another way to express what rantanplan is doing is a prefix notation like worktanplan (he is working) or eattanplan (he is eating).</enumitem> + </enumeration> + </text> + <textheader>"pbuetow"</textheader> + <text> + <noop>This is the style guide for my nickname "pbuetow".</noop> + </text> + <textsubheader>The rules</textsubheader> + <text> + <noop>The following rules have to be met:</noop> + <enumeration> + <enumitem>Each letter in pbuetow must be of the same case. Any capitalization is incorrect. Except if all letters are uppercase! "pbuetow" and "PBUETOW" are the only correct ways to spell this nick! All other versions are invalid!</enumitem> + <enumitem>I may also use buetow instead of pbuetow (like on PerlMonks)! pcbuetow may be used, if pbuetow and/or buetow is taken.</enumitem> + </enumeration> + </text> +</content> diff --git a/paul.buetow.org/content/.rss.xml b/paul.buetow.org/content/.rss.xml new file mode 100644 index 0000000..f225f71 --- /dev/null +++ b/paul.buetow.org/content/.rss.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <includefiles separator="incsep" reversed="1" reldir="News" pattern="\.xml$"/> +</content> diff --git a/paul.buetow.org/content/99.Imprint.xml b/paul.buetow.org/content/99.Imprint.xml new file mode 100644 index 0000000..a25e138 --- /dev/null +++ b/paul.buetow.org/content/99.Imprint.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Imprint</pagetitle> + <text>In case you want to pass any comments, please choose your contact method...</text> + <enumeration> + <enumitem> + <noop> + <strong>Snail Mail:</strong> + </noop> + <newline/> + <noop>Paul B!!N!!uuml;tow</noop> + <newline/> + <noop>Schneidem!!N!!uuml;hler Str. 12c</noop> + <newline/> + <noop>76139 Karlsruhe</noop> + <newline/> + <noop>Germany</noop> + <newline/> + <newline/> + </enumitem> + <enumitem> + <noop> + <strong>E-Mail:</strong> + </noop> + <newline/> + <javascript> + // Anti-Spam + function strrev(str) { + if (!str) return ''; + var revstr = ''; + for (var i = str.length-1; i>=0; i--) + revstr += str.charAt(i) + return revstr; + } + var array = new Array('gro', '.', 'woteub', '@', 'luap'); + for (var i = array.length - 1; i >= 0; --i) { + document.write(strrev(array[i])); + } + </javascript> + <noop> (GPG/PGP public key ID: 0x37EC5C1D)</noop> + <newline/> + <newline/> + </enumitem> + </enumeration> +</content> diff --git a/paul.buetow.org/content/home.xml b/paul.buetow.org/content/home.xml new file mode 100644 index 0000000..e78c48b --- /dev/null +++ b/paul.buetow.org/content/home.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>It's just paul.buetow.org</pagetitle> + <text>Welcome to my small humble website. My real name is Paul B!!N!!uuml;tow and I am a full time Linux System Administrator managing a few servers at work (in a team). In my spare time I drive buetow.org and also spend my time on system programming tasks.</text> + <text>If you don't like this website design: I am not a web designer and sometimes less is more.</text> + <enumeration> + <enumitem> + <noop>My development site:</noop> + <hyperlink>http://dev.buetow.org</hyperlink> + </enumitem> + <enumitem> + <noop>My Github site:</noop> + <hyperlink>http://github.com/rantanplan</hyperlink> + </enumitem> + </enumeration> + <text>More:</text> + <enumeration> + <enumitem> + <noop>My profile on LinkedIn: </noop> + <hyperlink>http://www.linkedin.com/profile/view?id=252217064</hyperlink> + </enumitem> + <enumitem> + <noop>Follow me at Twitter if you want:</noop> + <hyperlink>https://twitter.com/plantanran</hyperlink> + </enumitem> + <enumitem> + <noop>Or at Flickr:</noop> + <hyperlink>https://www.flickr.com/photos/buetow/</hyperlink> + </enumitem> + </enumeration> +</content> diff --git a/paul.buetow.org/htdocs/images/bg_content.jpg b/paul.buetow.org/htdocs/images/bg_content.jpg Binary files differnew file mode 100644 index 0000000..2e60c1b --- /dev/null +++ b/paul.buetow.org/htdocs/images/bg_content.jpg diff --git a/paul.buetow.org/htdocs/images/hop.jpg b/paul.buetow.org/htdocs/images/hop.jpg Binary files differnew file mode 100644 index 0000000..a3668fe --- /dev/null +++ b/paul.buetow.org/htdocs/images/hop.jpg diff --git a/paul.buetow.org/htdocs/images/paul.jpg b/paul.buetow.org/htdocs/images/paul.jpg Binary files differnew file mode 100644 index 0000000..96968c8 --- /dev/null +++ b/paul.buetow.org/htdocs/images/paul.jpg diff --git a/paul.buetow.org/htdocs/images/paul2.jpg b/paul.buetow.org/htdocs/images/paul2.jpg Binary files differnew file mode 100644 index 0000000..5f4734a --- /dev/null +++ b/paul.buetow.org/htdocs/images/paul2.jpg diff --git a/paul.buetow.org/htdocs/images/rantanplan.jpg b/paul.buetow.org/htdocs/images/rantanplan.jpg Binary files differnew file mode 100644 index 0000000..5396753 --- /dev/null +++ b/paul.buetow.org/htdocs/images/rantanplan.jpg diff --git a/perldaemon.buetow.org/OLDPROJECT b/perldaemon.buetow.org/OLDPROJECT new file mode 100644 index 0000000..0b6ce37 --- /dev/null +++ b/perldaemon.buetow.org/OLDPROJECT @@ -0,0 +1 @@ +PerlDaemon is a minimal daemon for Linux/UNIX programmed in Perl supporting logrotating, starting, stopping and a minimal configuration file. It can be extended to fit any task. diff --git a/perldaemon.buetow.org/SITEMAP b/perldaemon.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/perldaemon.buetow.org/SITEMAP diff --git a/perldaemon.buetow.org/content/30.README.xml b/perldaemon.buetow.org/content/30.README.xml new file mode 100644 index 0000000..a930bc2 --- /dev/null +++ b/perldaemon.buetow.org/content/30.README.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>README</pagetitle> + <text>This is the README file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/perldaemon.git/plain/README</inject> + </pretext> +</content> diff --git a/perldaemon.buetow.org/content/40.CHANGELOG.xml b/perldaemon.buetow.org/content/40.CHANGELOG.xml new file mode 100644 index 0000000..ca92fd7 --- /dev/null +++ b/perldaemon.buetow.org/content/40.CHANGELOG.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>CHANGELOG</pagetitle> + <text>This is the CHANGELOG file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/perldaemon.git/plain/CHANGELOG</inject> + </pretext> +</content> diff --git a/perldaemon.buetow.org/content/45.WISHLIST.xml b/perldaemon.buetow.org/content/45.WISHLIST.xml new file mode 100644 index 0000000..a7576ec --- /dev/null +++ b/perldaemon.buetow.org/content/45.WISHLIST.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>WISHLIST</pagetitle> + <text>This is the WHISHLIST file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/perldaemon.git/plain/WISHLIST</inject> + </pretext> +</content> diff --git a/perldaemon.buetow.org/content/50.Download.xml b/perldaemon.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/perldaemon.buetow.org/content/50.Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/perldaemon.buetow.org/content/98.Contact.xml b/perldaemon.buetow.org/content/98.Contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/perldaemon.buetow.org/content/98.Contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/perldaemon.buetow.org/content/99.License.xml b/perldaemon.buetow.org/content/99.License.xml new file mode 100644 index 0000000..1cbbde4 --- /dev/null +++ b/perldaemon.buetow.org/content/99.License.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>PerlDaemon is (C) by Paul C. Buetow.</noop> + </text> + <text> + <noop> + All rights reserved. + </noop> + <newline/> + <newline/> + <noop> + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + </noop> + <newline/> + <newline/> + <noop> + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + </noop> + <newline/> + <newline/> + <noop> + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + </noop> + <newline/> + <newline/> + <noop> + * Neither the name of buetow.org nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + </noop> + <newline/> + <newline/> + <noop> +THIS SOFTWARE IS PROVIDED BY Paul C. Buetow ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL Paul C. Buetow BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + </noop> + </text> +</content> diff --git a/perldaemon.buetow.org/content/home.xml b/perldaemon.buetow.org/content/home.xml new file mode 100644 index 0000000..d3becc9 --- /dev/null +++ b/perldaemon.buetow.org/content/home.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <rimg href="?document=images/perl.png" title="Perl"/> + <pagetitle>PerlDaemon</pagetitle> + <textheader>Writing your own daemon...</textheader> + <text>PerlDaemon is a minimal linux/unix daemon programmed in Perl 5. It can be extended to fit any task...</text> + <enumeration> + <enumitem>Automatic daemonizing</enumitem> + <enumitem>Logging and logrotate support (SIGHUP)</enumitem> + <enumitem>Clean shutdown support (SIGTERM)</enumitem> + <enumitem>Pidfile support (incl. check on startup)</enumitem> + <enumitem>Easy to configure</enumitem> + <enumitem>Easy to extend using perl modules</enumitem> + </enumeration> +</content> diff --git a/perldaemon.buetow.org/htdocs/images/perl.png b/perldaemon.buetow.org/htdocs/images/perl.png Binary files differnew file mode 100644 index 0000000..f20cd57 --- /dev/null +++ b/perldaemon.buetow.org/htdocs/images/perl.png diff --git a/photoalbum.buetow.org/PROJECT b/photoalbum.buetow.org/PROJECT new file mode 100644 index 0000000..4123ac7 --- /dev/null +++ b/photoalbum.buetow.org/PROJECT @@ -0,0 +1 @@ +This is a simple (static) photoalbum generation script written in bash. diff --git a/photoalbum.buetow.org/SITEMAP b/photoalbum.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/photoalbum.buetow.org/SITEMAP diff --git a/photoalbum.buetow.org/content/20.Manpage.xml b/photoalbum.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..9a21ee2 --- /dev/null +++ b/photoalbum.buetow.org/content/20.Manpage.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Manpage</pagetitle> + <text>This is the manpage of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/photoalbum.git/plain/docs/photoalbum.txt</inject> + </pretext> +</content> diff --git a/photoalbum.buetow.org/content/40.Changelog.xml b/photoalbum.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..ea70805 --- /dev/null +++ b/photoalbum.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/photoalbum.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/photoalbum.buetow.org/content/50.Download.xml b/photoalbum.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/photoalbum.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/photoalbum.buetow.org/content/98.contact.xml b/photoalbum.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/photoalbum.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/photoalbum.buetow.org/content/99.license.xml b/photoalbum.buetow.org/content/99.license.xml new file mode 100644 index 0000000..5b99060 --- /dev/null +++ b/photoalbum.buetow.org/content/99.license.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text>Photoalbum is licensed under the GNU Gerneral Public License Version 3 or later.</text> +</content> diff --git a/photoalbum.buetow.org/content/home.xml b/photoalbum.buetow.org/content/home.xml new file mode 100644 index 0000000..632eff8 --- /dev/null +++ b/photoalbum.buetow.org/content/home.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Photoalbum</pagetitle> + <textheader>A simple photoalbum script.</textheader> + <text>This is a bash script using ImageMagick to generate a set of static HTML pages which outlines a photo album. The script only needs one input directory (which can contain multiple sub-directories) containing pictures and the result will be one static ./dist directory containing static HTML pages including thumbs to be distributed on a static webserver. </text> +</content> diff --git a/pwgrep.buetow.org/OBSOLETEPROJECT b/pwgrep.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..34f1803 --- /dev/null +++ b/pwgrep.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +PWGrep is a console based password manager programmed in bash using GnuPG, Subversion, and some AWK. diff --git a/pwgrep.buetow.org/SITEMAP b/pwgrep.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/pwgrep.buetow.org/SITEMAP diff --git a/pwgrep.buetow.org/content/40.Changelog.xml b/pwgrep.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..fa7cbc5 --- /dev/null +++ b/pwgrep.buetow.org/content/40.Changelog.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Changelog</pagetitle> + <text>This is the changelog of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/pwgrep.git/plain/debian/changelog</inject> + </pretext> +</content> diff --git a/pwgrep.buetow.org/content/50.Download.xml b/pwgrep.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..b48740e --- /dev/null +++ b/pwgrep.buetow.org/content/50.Download.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <text>!!HOSTNAME!! can be downloaded from a deb repo or from git.</text> + <textheader>Install from deb repository</textheader> + <text>If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list:</text> + <code>deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main</code> + <text>(Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards:</text> + <code>curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install !!HOSTNAME!!</code> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/pwgrep.buetow.org/content/98.contact.xml b/pwgrep.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/pwgrep.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/pwgrep.buetow.org/content/99.license.xml b/pwgrep.buetow.org/content/99.license.xml new file mode 100644 index 0000000..4c8004a --- /dev/null +++ b/pwgrep.buetow.org/content/99.license.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>pwgrep is (C) by Paul C. Buetow.</noop> + </text> + <text> + <noop> + All rights reserved. + </noop> + <newline/> + <newline/> + <noop> + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + </noop> + <newline/> + <newline/> + <noop> + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + </noop> + <newline/> + <newline/> + <noop> + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + </noop> + <newline/> + <newline/> + <noop> + * Neither the name of P. B. Labs nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + </noop> + <newline/> + <newline/> + <noop> +THIS SOFTWARE IS PROVIDED BY Paul C. Buetow ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL Paul C. Buetow BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + </noop> + </text> +</content> diff --git a/pwgrep.buetow.org/content/Tutorials.sub/10.Passwords.xml b/pwgrep.buetow.org/content/Tutorials.sub/10.Passwords.xml new file mode 100644 index 0000000..c5fe33e --- /dev/null +++ b/pwgrep.buetow.org/content/Tutorials.sub/10.Passwords.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Tutorial for storing passwords</pagetitle> + <text>First check out pwgrep from git and edit the configuration parameters in its header. Also setup a versioning repository (e.g. svn) for your password database storage (preferable using some encryption for checkout/update operations such as SSL or SSH). Afterwards you may go on with the usage of pwgrep itself:</text> + <text>Please note that the current version of pwgrep is configured to work with git. The rest of this tutorial however should work as with svn.</text> + <text>The database file is divided in several records. Each record begins with its name followed by several lines holding all the secret informations. The (actually very simple) format of the database file is as follows:</text> + <code> +some record name here + after a tabulator some secret informations + more secret informations +another record name here ..... + secret username: foo + secret password is bla + you can write as many secret infos as you wish +. +. +secret stuff + password: hello world + username: mr. universe +. +. + </code> + <text>The database is not stored in plain text. It is encrypted using GnuPG (database.gpg).</text> + <text>I can only search for the record names of a database file. For example if I want to see my secret username and password which is stored in the database.gpg file it will look like this:</text> + <cimg href="?document=images/1.png"/> + <text>After entering the password of my secret GnuPG key I will receive the informations requested:</text> + <cimg href="?document=images/2.png"/> + <text>pwgrep will print out automatically all records matching my search string. Not only the first one it finds.</text> + <text>I can use pwedit for the case I want to add something to the database or just to edit/delete something of the current database:</text> + <cimg href="?document=images/3.png"/> + <cimg href="?document=images/4.png"/> + <text>After editing, pwgrep will automatically wipe all temporally files securely and it will commit the new version into the versioning system (In this case subversion is being used. But others can be configured as well). pwgrep is using Vim (with swapping and backuping disabled) in order to edit the database file. If you want to use a different editor, you should make sure NOT to produce temporally files. If you produce temporally files, at least they should get wiped securely from the hard disk.</text> + <cimg href="?document=images/5.png"/> + <cimg href="?document=images/6.png"/> + <text>If you want to look up your secret ebay stuff, just search for it with</text> + <code> ~/svn/pwgrep$ pwgrep ebay</code> + <text>Since pwgrep v0.5 it's possible to specify the offline option, which causes pwgrep not use versioning at all (usable if there is no connection to the subversion or CVS server available):</text> + <code> ~/svn/pwgrep$ pwgrep -o ebay</code> + <text>All commands support the -o option</text> +</content> diff --git a/pwgrep.buetow.org/content/Tutorials.sub/20.Files.xml b/pwgrep.buetow.org/content/Tutorials.sub/20.Files.xml new file mode 100644 index 0000000..06f443f --- /dev/null +++ b/pwgrep.buetow.org/content/Tutorials.sub/20.Files.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Tutorial for storing files</pagetitle> + <text>Please read the "tutorial for storing passwords" first. Afterwards you may go on with this tutorial. This tutorial expects you to have understood the basics of pwgrep.</text> + <text>Besides of storing passwords into a single file, pwgrep can also be used for storing a collection of files, which is very usefull for storing certificate files etc. Like passwords, all files stored within pwgrep are encrypted using GPG. The command pwfls will list all files currently stored in your database:</text> + <cimg href="?document=images/7.png"/> + <text>pwfadd adds a specific file to the database:</text> + <cimg href="?document=images/8.png"/> + <cimg href="?document=images/9.png"/> + <text>pwfls will show you that it has been added successfully:</text> + <cimg href="?document=images/10.png"/> + <text>In order to decrypt a specific stored file you have to use pwfcat:</text> + <cimg href="?document=images/11.png"/> + <text>File deletion can be accomplished using pwfdel:</text> + <cimg href="?document=images/12.png"/> + <text>In general you can decrypt/store/encrypt any specific file format (as well as binary files).</text> +</content> diff --git a/pwgrep.buetow.org/content/Tutorials.sub/home.xml b/pwgrep.buetow.org/content/Tutorials.sub/home.xml new file mode 100644 index 0000000..5b89810 --- /dev/null +++ b/pwgrep.buetow.org/content/Tutorials.sub/home.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Tutorials...</pagetitle> + <text>...for using pwgrep.</text> +</content> diff --git a/pwgrep.buetow.org/content/home.xml b/pwgrep.buetow.org/content/home.xml new file mode 100644 index 0000000..e15b6d3 --- /dev/null +++ b/pwgrep.buetow.org/content/home.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>pwgrep</pagetitle> + <textheader>Managing passwords...</textheader> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of pwgrep has been stalled. You may use another password manager like Keepass with kpcli. Go to </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> for other projects of mine.</noop> + </text> + </important> + <text> + <rimg href="?document=images/gnupg.png" title="GnuPG"/> + <noop>In order to manage my passwords I wrote myself a small bash/awk script which manages a database file using encryption of GnuPG. Those are the benefits of pwgrep:</noop> + </text> + <enumeration> + <enumitem>Encryption of all the passwords.</enumitem> + <enumitem>Versioning of all the passwords. No loss of old passwords.</enumitem> + <enumitem>Since a versioning system is used, the password database can be used on several hosts at once (automatic synchronization). Even several user can share the same password database. The versioning system will keep track of who was changing which entries and at which time.</enumitem> + <enumitem>The versioning system to use can be configured (Git by default)</enumitem> + <enumitem>Besides of passwords, pwgrep can also be used for storing a collection of files like certificates</enumitem> + <enumitem>The file shredding command for secure deleting of temporary files can be configured (shred on Linux and destroy or rm -P on FreeBSD by default)</enumitem> + <enumitem>Automatic local backup of all database changes (Still access to old data after editing the password database if the network connection to the versioning system is not accessible)</enumitem> + <enumitem>No need of a GUI (can be used through a SSH session)</enumitem> + <enumitem>Using only open source software</enumitem> + <enumitem>Running on all *NIX and alike systems</enumitem> + </enumeration> +</content> diff --git a/pwgrep.buetow.org/htdocs/images/1.png b/pwgrep.buetow.org/htdocs/images/1.png Binary files differnew file mode 100644 index 0000000..feb7def --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/1.png diff --git a/pwgrep.buetow.org/htdocs/images/10.png b/pwgrep.buetow.org/htdocs/images/10.png Binary files differnew file mode 100644 index 0000000..bc10967 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/10.png diff --git a/pwgrep.buetow.org/htdocs/images/11.png b/pwgrep.buetow.org/htdocs/images/11.png Binary files differnew file mode 100644 index 0000000..2ea6c2f --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/11.png diff --git a/pwgrep.buetow.org/htdocs/images/12.png b/pwgrep.buetow.org/htdocs/images/12.png Binary files differnew file mode 100644 index 0000000..7b78a23 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/12.png diff --git a/pwgrep.buetow.org/htdocs/images/13.png b/pwgrep.buetow.org/htdocs/images/13.png Binary files differnew file mode 100644 index 0000000..9130ea5 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/13.png diff --git a/pwgrep.buetow.org/htdocs/images/2.png b/pwgrep.buetow.org/htdocs/images/2.png Binary files differnew file mode 100644 index 0000000..71f8888 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/2.png diff --git a/pwgrep.buetow.org/htdocs/images/3.png b/pwgrep.buetow.org/htdocs/images/3.png Binary files differnew file mode 100644 index 0000000..19d3dee --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/3.png diff --git a/pwgrep.buetow.org/htdocs/images/4.png b/pwgrep.buetow.org/htdocs/images/4.png Binary files differnew file mode 100644 index 0000000..64c3efc --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/4.png diff --git a/pwgrep.buetow.org/htdocs/images/5.png b/pwgrep.buetow.org/htdocs/images/5.png Binary files differnew file mode 100644 index 0000000..ce406e0 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/5.png diff --git a/pwgrep.buetow.org/htdocs/images/6.png b/pwgrep.buetow.org/htdocs/images/6.png Binary files differnew file mode 100644 index 0000000..fa51d78 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/6.png diff --git a/pwgrep.buetow.org/htdocs/images/7.png b/pwgrep.buetow.org/htdocs/images/7.png Binary files differnew file mode 100644 index 0000000..7aaddd0 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/7.png diff --git a/pwgrep.buetow.org/htdocs/images/8.png b/pwgrep.buetow.org/htdocs/images/8.png Binary files differnew file mode 100644 index 0000000..e28b6f8 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/8.png diff --git a/pwgrep.buetow.org/htdocs/images/9.png b/pwgrep.buetow.org/htdocs/images/9.png Binary files differnew file mode 100644 index 0000000..fba2c9a --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/9.png diff --git a/pwgrep.buetow.org/htdocs/images/gnupg.png b/pwgrep.buetow.org/htdocs/images/gnupg.png Binary files differnew file mode 100644 index 0000000..bf8abd5 --- /dev/null +++ b/pwgrep.buetow.org/htdocs/images/gnupg.png diff --git a/redirect:buetow.org b/redirect:buetow.org new file mode 100644 index 0000000..ca5edc2 --- /dev/null +++ b/redirect:buetow.org @@ -0,0 +1 @@ +http://paul.buetow.org/ diff --git a/redirect:calc.buetow.org b/redirect:calc.buetow.org new file mode 100644 index 0000000..ec5dc1f --- /dev/null +++ b/redirect:calc.buetow.org @@ -0,0 +1 @@ +http://calculator.buetow.org/ diff --git a/redirect:cbars.buetow.org b/redirect:cbars.buetow.org new file mode 100644 index 0000000..48ef30c --- /dev/null +++ b/redirect:cbars.buetow.org @@ -0,0 +1 @@ +http://cbars.alpha.buetow.org diff --git a/redirect:contact.buetow.org b/redirect:contact.buetow.org new file mode 100644 index 0000000..c0721dd --- /dev/null +++ b/redirect:contact.buetow.org @@ -0,0 +1 @@ +http://paul.buetow.org/?site=Imprint diff --git a/redirect:fype.buetow.org b/redirect:fype.buetow.org new file mode 100644 index 0000000..e1f5754 --- /dev/null +++ b/redirect:fype.buetow.org @@ -0,0 +1 @@ +http://fype.alpha.buetow.org/ diff --git a/redirect:httpbench.buetow.org b/redirect:httpbench.buetow.org new file mode 100644 index 0000000..daebe4b --- /dev/null +++ b/redirect:httpbench.buetow.org @@ -0,0 +1 @@ +http://httpbench.alpha.buetow.org/ diff --git a/redirect:linkedin.buetow.org b/redirect:linkedin.buetow.org new file mode 100644 index 0000000..f95fe48 --- /dev/null +++ b/redirect:linkedin.buetow.org @@ -0,0 +1 @@ +http://de.linkedin.com/pub/paul-bütow/70/572/b48/ diff --git a/redirect:lists.buetow.org b/redirect:lists.buetow.org new file mode 100644 index 0000000..af407f1 --- /dev/null +++ b/redirect:lists.buetow.org @@ -0,0 +1 @@ +http://pluto.buetow.org/listinfo/ diff --git a/redirect:projects.buetow.org b/redirect:projects.buetow.org new file mode 100644 index 0000000..699fdf5 --- /dev/null +++ b/redirect:projects.buetow.org @@ -0,0 +1 @@ +http://dev.buetow.org/ diff --git a/redirect:ssl.buetow.org b/redirect:ssl.buetow.org new file mode 100644 index 0000000..ca5edc2 --- /dev/null +++ b/redirect:ssl.buetow.org @@ -0,0 +1 @@ +http://paul.buetow.org/ diff --git a/redirect:www.buetow.org b/redirect:www.buetow.org new file mode 100644 index 0000000..ca5edc2 --- /dev/null +++ b/redirect:www.buetow.org @@ -0,0 +1 @@ +http://paul.buetow.org/ diff --git a/redirect:ychat.buetow.org b/redirect:ychat.buetow.org new file mode 100644 index 0000000..584b5ce --- /dev/null +++ b/redirect:ychat.buetow.org @@ -0,0 +1 @@ +http://ychat.alpha.buetow.org/ diff --git a/redirect:yhttpd.buetow.org b/redirect:yhttpd.buetow.org new file mode 100644 index 0000000..584b5ce --- /dev/null +++ b/redirect:yhttpd.buetow.org @@ -0,0 +1 @@ +http://ychat.alpha.buetow.org/ diff --git a/sitemap.buetow.org/SITEMAP b/sitemap.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sitemap.buetow.org/SITEMAP diff --git a/sitemap.buetow.org/content/home.xml b/sitemap.buetow.org/content/home.xml new file mode 100644 index 0000000..84784e6 --- /dev/null +++ b/sitemap.buetow.org/content/home.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Sitemap</pagetitle> + <textheader>All sites hosted</textheader> + <text> + <noop>Here are all sites hosted within this instance of </noop> + <namedlink href="http://xerl.buetow.org">Xerl</namedlink> + <noop>.</noop> + </text> + <important> + <text> + <strong>Important notice:</strong> + <noop>The host </noop> + <strong>.alpha.buetow.org</strong> + <noop>contains only development, test and PoC stuff. Replace </noop> + <strong>$shomething.alpha.buetow.org</strong> + <noop> with </noop> + <strong>$something.buetow.org</strong> + <noop> (if exists) to get the stable stuff.</noop> + </text> + </important> + <text> + <includerun>sitemap.inc.pl</includerun> + </text> +</content> diff --git a/sitemap.buetow.org/content/sitemap.inc.pl b/sitemap.buetow.org/content/sitemap.inc.pl new file mode 100644 index 0000000..6b08b82 --- /dev/null +++ b/sitemap.buetow.org/content/sitemap.inc.pl @@ -0,0 +1,33 @@ +my $hostroot = $config->get_hostroot(); + +sub space () { " " x 10 } +sub nl () { "<br />\n" } + +sub list (*) { + my $tag = shift; + my @homepages = sort `find $hostroot -name $tag`; + my @ret = (); + + for my $homepage (sort @homepages) { + my ($host) = $homepage =~ /.*hosts.(.*?).$tag/; + push @ret, "<b><a href='http://$host'>$host</a></b>", nl; + + my $sitepath = "$hostroot/$host"; + + my @pages = sort `find $sitepath -name \*.xml`; + for my $page (sort @pages) { + my ($site) = $page =~ m#$host/content/(.*)\.xml$#; + $site =~ s#\.sub/#/#g; + $site =~ s#\d\d\.##g; + next if $site eq 'home'; + my $sitelink = "http://$host?site=$site"; + push @ret, space, "<a href='$sitelink'>$site</a>", nl; + } + + push @ret, nl; + } + + join '', @ret; +} + +list SITEMAP; diff --git a/vs-sim.buetow.org/OBSOLETEPROJECT b/vs-sim.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..e5d4f52 --- /dev/null +++ b/vs-sim.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +VS-Sim is an open source simulator programmed in Java for distributed systems. VS-Sim stands for "Verteilte Systeme Simulator" which is the german translation for "Distributed Sytstems Simulator". diff --git a/vs-sim.buetow.org/SITEMAP b/vs-sim.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/vs-sim.buetow.org/SITEMAP diff --git a/vs-sim.buetow.org/content/10.Screenshots.xml b/vs-sim.buetow.org/content/10.Screenshots.xml new file mode 100644 index 0000000..8e68e54 --- /dev/null +++ b/vs-sim.buetow.org/content/10.Screenshots.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Screenshots</pagetitle> + <text>This section contains a few obligatory screenshots of the distributed systems simulator. Click on one of them in order to enlarge.</text> + <picture desc="Screenshot 1" href="?document=images/vs-ss1.jpg" src="?document=images/vs-ss1-small.jpg" title="VS"/> + <picture desc="Screenshot 2" href="?document=images/vs-ss2.jpg" src="?document=images/vs-ss2-small.jpg" title="VS"/> + <picture desc="Screenshot 3" href="?document=images/vs-ss3.jpg" src="?document=images/vs-ss3-small.jpg" title="VS"/> + <picture desc="Screenshot 4" href="?document=images/vs-ss4.jpg" src="?document=images/vs-ss4-small.jpg" title="VS"/> +</content> diff --git a/vs-sim.buetow.org/content/20.Download.xml b/vs-sim.buetow.org/content/20.Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/vs-sim.buetow.org/content/20.Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/vs-sim.buetow.org/content/50.References.xml b/vs-sim.buetow.org/content/50.References.xml new file mode 100644 index 0000000..ec7f358 --- /dev/null +++ b/vs-sim.buetow.org/content/50.References.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>References</pagetitle> + <text>The following references are used for VS developing:</text> + <textheader>Notes of the Distributed Systems lecture</textheader> + <text>The script of the german distributed systems lecture at the FH Aachen.</text> + <textheader>Distributed Systems: Principles And Paradigms </textheader> + <text> + <rimg href="?document=images/tanenbaum.jpg" title="Tanenbaum"/> + <noop>For courses on Distributed Systems, Distributed Operating Systems, and Advanced Operating Systems focusing on distributed systems, found in departments of Computer Science, Computer Engineering and Electrical Engineering. Very few textbooks today explore distributed systems in a manner appropriate for university students. In this unique text, esteemed authors Tanenbaum and van Steen provide full coverage of the field in a systematic way that can be readily used for teaching. No other text examines the underlying principles ? and their applications to a wide variety of practical distributed systems ? with this level of depth and clarity. I'm using a german version of this book "Verteilte Systeme. Grundlagen und Paradigmen"!</noop> + </text> + <textheader>Developing Games in Java</textheader> + <text> + <rimg href="?document=images/javagames.jpg" title="Developing Games in Java"/> + <noop>Well, VS is not and will not be a game! However, this book contains lots of usefull stuff about Java 2D graphics programming which can be used in VS :) </noop> + <noop>If you already have Java programming experience and are looking to program games, this book is for you. David Brackeen, along with co-authors Bret Barker and Lawrence Vanhelsuwe, show you how to make fast, full-screen action games such as side scrollers and 3D shooters. Key features covered in this book include Java 2 game programming techniques, including latest 2D graphics and sound technologies, 3D graphics and scene management, path-finding and artificial intelligence, collision detection, game scripting using BeanShell, and multi-player game engine creation.</noop> + </text> + <textheader>Lots more</textheader> + <text>Lots of more references have been used. Take a look at the "Literaturverzeichnis" of the in german written diploma thesis.</text> +</content> diff --git a/vs-sim.buetow.org/content/98.contact.xml b/vs-sim.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/vs-sim.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/vs-sim.buetow.org/content/99.License.xml b/vs-sim.buetow.org/content/99.License.xml new file mode 100644 index 0000000..f21b5b3 --- /dev/null +++ b/vs-sim.buetow.org/content/99.License.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>VS-Sim is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/vs-sim.buetow.org/content/home.xml b/vs-sim.buetow.org/content/home.xml new file mode 100644 index 0000000..b841585 --- /dev/null +++ b/vs-sim.buetow.org/content/home.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <important> + <text> + <strong>Important notice:</strong> + <noop>The development of VS-Sim has been stalled. There will be no further development on this project. This project always was a proof of concept only. Bugs are not gonna be fixed. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important> + <pagetitle>Distributed Systems Simulator (VS-Sim)</pagetitle> + <text> + <limg href="?document=images/vs.jpg" title="VS"/> + <noop>VS-Sim is an open source simulator programmed in Java for distributed systems. VS-Sim stands for "Verteilte Systeme Simulator" which is the german translation for "Distributed Sytstems Simulator". The VS-Sim project was my diploma thesis at the </noop> + <namedlink href="http://www.fh-aachen.de">Aachen University of Applied Sciences</namedlink> + <noop> and can simulate various scenarios of the distributed systems lecture at the university.</noop> + </text> + <text> + <noop>At the moment the whole simulator and the written diploma thesis document is in german only.</noop> + </text> + <textheader>Version 1.0 (Aug 18th 2008)</textheader> + <enumeration> + <enumitem>Initial open source version of the VS-Simulator released.</enumitem> + <enumitem>In german language only. An english version will probably not follow.</enumitem> + </enumeration> +</content> diff --git a/vs-sim.buetow.org/htdocs/images/javagames.jpg b/vs-sim.buetow.org/htdocs/images/javagames.jpg Binary files differnew file mode 100644 index 0000000..7ccf34d --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/javagames.jpg diff --git a/vs-sim.buetow.org/htdocs/images/tanenbaum.jpg b/vs-sim.buetow.org/htdocs/images/tanenbaum.jpg Binary files differnew file mode 100644 index 0000000..9de3e46 --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/tanenbaum.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss1-small.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss1-small.jpg Binary files differnew file mode 100644 index 0000000..a89152d --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss1-small.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss1.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss1.jpg Binary files differnew file mode 100644 index 0000000..fab524a --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss1.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss2-small.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss2-small.jpg Binary files differnew file mode 100644 index 0000000..fc52380 --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss2-small.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss2.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss2.jpg Binary files differnew file mode 100644 index 0000000..ef4a76f --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss2.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss3-small.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss3-small.jpg Binary files differnew file mode 100644 index 0000000..8f0f290 --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss3-small.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss3.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss3.jpg Binary files differnew file mode 100644 index 0000000..be5766d --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss3.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss4-small.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss4-small.jpg Binary files differnew file mode 100644 index 0000000..a7eacb9 --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss4-small.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs-ss4.jpg b/vs-sim.buetow.org/htdocs/images/vs-ss4.jpg Binary files differnew file mode 100644 index 0000000..704e91c --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs-ss4.jpg diff --git a/vs-sim.buetow.org/htdocs/images/vs.jpg b/vs-sim.buetow.org/htdocs/images/vs.jpg Binary files differnew file mode 100644 index 0000000..95276f4 --- /dev/null +++ b/vs-sim.buetow.org/htdocs/images/vs.jpg diff --git a/web.buetow.org/SITEMAP b/web.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/web.buetow.org/SITEMAP diff --git a/web.buetow.org/content/.Style-Guide.xml b/web.buetow.org/content/.Style-Guide.xml new file mode 100644 index 0000000..c3396f6 --- /dev/null +++ b/web.buetow.org/content/.Style-Guide.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Style guides for my nicknames</pagetitle> + <textheader>"rantanplan"</textheader> + <text> + <rimg href="?document=images/rantanplan.jpg" title="rantanplan"/> + <noop>This is the style guide for my IRC nickname "rantanplan" @ irc.german-elite.net. This style guide has been inspired by </noop> + <namedlink href="http://www252.pair.com/comdog/style.html">brian d foy's</namedlink> + <noop> style guide. This style guide helps you to write my nickname in the correct way!</noop> + </text> + <textsubheader>The rules</textsubheader> + <text> + <noop>The following rules have to be met:</noop> + <enumeration> + <enumitem>Each letter in rantanplan must be of the same case. Lower case is preferred. Any capitalization is incorrect unless each letter is capitalized.</enumitem> + <enumitem>Sentences should not start with rantanplan if you normally capitalize the first word of a sentence. Recast the sentence so that it begins with a capital letter. Or just write the whole sentence in small or capitalized letters!</enumitem> + <enumitem>If rantanplan is too long for you, you may use rant or ranti instead.</enumitem> + <enumitem>If you like rantanplan very much, you may use rantiplanti as his nickname!</enumitem> + <enumitem>Sometimes rantanplan changes his nick into some weird combinations like plantanran or ranplantan or tanplanrantanplan! Any version is valid! You can think of 3 main body parts: ran tan and plan. You may combine them in any order!</enumitem> + <enumitem>The above mentioned is also valid for the reversed body parts: nar nat nalp. This combination is valid as well: nartanranplannat.</enumitem> + <enumitem>Sometimes rantanplan likes to show other people on what cool stuff he is working on. In this case a |foo postfix is added to any version of his nickname. E.g.: ranti|C means, that rantanplan is currently coding in C. rantanplan|vs|work means, that he is fighting against his current task at work!</enumitem> + <enumitem>Another way to express what rantanplan is doing is a prefix notation like worktanplan (he is working) or eattanplan (he is eating).</enumitem> + </enumeration> + </text> + <textheader>"pbuetow"</textheader> + <text> + <noop>This is the style guide for my nickname "pbuetow".</noop> + </text> + <textsubheader>The rules</textsubheader> + <text> + <noop>The following rules have to be met:</noop> + <enumeration> + <enumitem>Each letter in pbuetow must be of the same case. Any capitalization is incorrect. Except if all letters are uppercase! "pbuetow" and "PBUETOW" are the only correct ways to spell this nick! All other versions are invalid!</enumitem> + <enumitem>I may also use buetow instead of pbuetow (like on PerlMonks)! pcbuetow may be used, if pbuetow and/or buetow is taken.</enumitem> + </enumeration> + </text> +</content> diff --git a/web.buetow.org/content/.rss.xml b/web.buetow.org/content/.rss.xml new file mode 100644 index 0000000..f225f71 --- /dev/null +++ b/web.buetow.org/content/.rss.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <includefiles separator="incsep" reversed="1" reldir="News" pattern="\.xml$"/> +</content> diff --git a/web.buetow.org/content/99.Imprint.xml b/web.buetow.org/content/99.Imprint.xml new file mode 100644 index 0000000..ffbc7df --- /dev/null +++ b/web.buetow.org/content/99.Imprint.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Imprint</pagetitle> + <text>In case you have work for me or have any other comments to pass, please choose your contact method...</text> + <enumeration> + <enumitem> + <noop> + <strong>Snail Mail:</strong> + </noop> + <newline/> + <noop>Paul B!!N!!uuml;tow</noop> + <newline/> + <noop>Schneidem!!N!!uuml;hler Str. 12c</noop> + <newline/> + <noop>76139 Karlsruhe</noop> + <newline/> + <noop>Germany</noop> + <newline/> + <newline/> + </enumitem> + <enumitem> + <noop> + <strong>E-Mail:</strong> + </noop> + <newline/> + <javascript> + // Anti-Spam + function strrev(str) { + if (!str) return ''; + var revstr = ''; + for (var i = str.length-1; i>=0; i--) + revstr += str.charAt(i) + return revstr; + } + var array = new Array('gro', '.', 'woteub', '@', 'luap'); + for (var i = array.length - 1; i >= 0; --i) { + document.write(strrev(array[i])); + } + </javascript> + <noop> (GPG/PGP public key ID: 0x37EC5C1D)</noop> + <newline/> + <newline/> + </enumitem> + </enumeration> +</content> diff --git a/web.buetow.org/content/home.xml b/web.buetow.org/content/home.xml new file mode 100644 index 0000000..8d7a070 --- /dev/null +++ b/web.buetow.org/content/home.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>It's just paul.buetow.org</pagetitle> + <text>Welcome to my small humble website. My real name is Paul B!!N!!uuml;tow and I am a full time Linux System Administrator managing a few servers at work (in a team). In my spare time I drive buetow.org and also spend my time in system programming tasks.</text> + <text>If you don't like this website design: I am not a web designer and sometimes less is more.</text> + <enumeration> + <enumitem> + <noop>My development site:</noop> + <hyperlink>http://dev.buetow.org</hyperlink> + </enumitem> + <enumitem> + <noop>My Github site:</noop> + <hyperlink>http://github.com/rantanplan</hyperlink> + </enumitem> + </enumeration> + <text>More:</text> + <enumeration> + <enumitem> + <noop>My profile on LinkedIn: </noop> + <hyperlink>http://www.linkedin.com/profile/view?id=252217064</hyperlink> + </enumitem> + <enumitem> + <noop>Follow me at Twitter if you want:</noop> + <hyperlink>https://twitter.com/plantanran</hyperlink> + </enumitem> + </enumeration> +</content> diff --git a/web.buetow.org/htdocs/images/bg_content.jpg b/web.buetow.org/htdocs/images/bg_content.jpg Binary files differnew file mode 100644 index 0000000..2e60c1b --- /dev/null +++ b/web.buetow.org/htdocs/images/bg_content.jpg diff --git a/web.buetow.org/htdocs/images/hop.jpg b/web.buetow.org/htdocs/images/hop.jpg Binary files differnew file mode 100644 index 0000000..a3668fe --- /dev/null +++ b/web.buetow.org/htdocs/images/hop.jpg diff --git a/web.buetow.org/htdocs/images/paul.jpg b/web.buetow.org/htdocs/images/paul.jpg Binary files differnew file mode 100644 index 0000000..96968c8 --- /dev/null +++ b/web.buetow.org/htdocs/images/paul.jpg diff --git a/web.buetow.org/htdocs/images/paul2.jpg b/web.buetow.org/htdocs/images/paul2.jpg Binary files differnew file mode 100644 index 0000000..5f4734a --- /dev/null +++ b/web.buetow.org/htdocs/images/paul2.jpg diff --git a/web.buetow.org/htdocs/images/rantanplan.jpg b/web.buetow.org/htdocs/images/rantanplan.jpg Binary files differnew file mode 100644 index 0000000..5396753 --- /dev/null +++ b/web.buetow.org/htdocs/images/rantanplan.jpg diff --git a/xerl.buetow.org/PROJECT b/xerl.buetow.org/PROJECT new file mode 100644 index 0000000..2561c1d --- /dev/null +++ b/xerl.buetow.org/PROJECT @@ -0,0 +1 @@ +Xerl is an open source website template engine (TE) with some features of a Content Management System (CMS) programmed in object oriented Perl (boosted by FastCGI) and using XML. diff --git a/xerl.buetow.org/SITEMAP b/xerl.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/xerl.buetow.org/SITEMAP diff --git a/xerl.buetow.org/content/40.Todos.xml b/xerl.buetow.org/content/40.Todos.xml new file mode 100644 index 0000000..1456bbe --- /dev/null +++ b/xerl.buetow.org/content/40.Todos.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Todos</pagetitle> + <text>This is the TODO file of the current master branch:</text> + <pretext> + <inject>http://web.buetow.org/cgit/xerl.git/plain/TODO</inject> + </pretext> +</content> diff --git a/xerl.buetow.org/content/98.contact.xml b/xerl.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/xerl.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/xerl.buetow.org/content/99.license.xml b/xerl.buetow.org/content/99.license.xml new file mode 100644 index 0000000..19fd468 --- /dev/null +++ b/xerl.buetow.org/content/99.license.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <code> + <inject>http://web.buetow.org/cgit/xerl.git/plain/COPYING</inject> + </code> +</content> diff --git a/xerl.buetow.org/content/Download.xml b/xerl.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/xerl.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/xerl.buetow.org/content/home.xml b/xerl.buetow.org/content/home.xml new file mode 100644 index 0000000..1782bd1 --- /dev/null +++ b/xerl.buetow.org/content/home.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Xerl - A XML/Perl Website Engine</pagetitle> + <text> + <limg href="?document=images/xerl.png" title="Xerl"/> + <noop>... is an open source website template engine (TE) with some features of a Content Management System (CMS) programmed in object oriented Perl 5 (boosted by FastCGI) and using XML to store the content and to display it in any format (e.g. HTML5). This is the alpha version. Xerl is work in progress! It has no real documentation and no release available atm. This is mostly a hobby project fitting my own needs in having dynamic websites. However, if you are interested in Xerl you can feel free to download the sources and try your luck.</noop> + </text> +</content> diff --git a/xerl.buetow.org/htdocs/images/freshmeat.gif b/xerl.buetow.org/htdocs/images/freshmeat.gif Binary files differnew file mode 100644 index 0000000..b5820c3 --- /dev/null +++ b/xerl.buetow.org/htdocs/images/freshmeat.gif diff --git a/xerl.buetow.org/htdocs/images/head.jpg b/xerl.buetow.org/htdocs/images/head.jpg Binary files differnew file mode 100644 index 0000000..76e9edc --- /dev/null +++ b/xerl.buetow.org/htdocs/images/head.jpg diff --git a/xerl.buetow.org/htdocs/images/xerl.png b/xerl.buetow.org/htdocs/images/xerl.png Binary files differnew file mode 100644 index 0000000..38f8a92 --- /dev/null +++ b/xerl.buetow.org/htdocs/images/xerl.png diff --git a/ychat.alpha.buetow.org/OBSOLETEPROJECT b/ychat.alpha.buetow.org/OBSOLETEPROJECT new file mode 100644 index 0000000..b259b99 --- /dev/null +++ b/ychat.alpha.buetow.org/OBSOLETEPROJECT @@ -0,0 +1 @@ +yChat is an experimental, XML-configurable, fast, very portable, multi-platform Web-based chat server written in C++ and a little subset of C which supports secure SSL sockets using OpenSSL, MySQL databases and is compatible with almost all browsers that support frames and JavaScript. It runs on all servers which are POSIX.4a compatible and use the GNU GCC C++ compiler from 3.1 and up with pthreads enabled. Its developed under the GNU General Public License. diff --git a/ychat.alpha.buetow.org/SITEMAP b/ychat.alpha.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ychat.alpha.buetow.org/SITEMAP diff --git a/ychat.alpha.buetow.org/content/98.contact.xml b/ychat.alpha.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..d3d66b0 --- /dev/null +++ b/ychat.alpha.buetow.org/content/98.contact.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Contact Me/Us</pagetitle> + <text> + <noop>Please use the </noop> + <namedlink href="http://pluto.buetow.org/listinfo/dev">Development Mailing List</namedlink> + <noop> for any considerations of this humble programming project or any other programming project of mine.</noop> + </text> + <text> + <noop>But you may also use other methods such as listed </noop> + <namedlink href="http://contact.buetow.org">on this site</namedlink> + <noop> for example.</noop> + </text> + <text> + <noop>If you are interested in other projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> :)</noop> + </text> +</content> diff --git a/ychat.alpha.buetow.org/content/Download.xml b/ychat.alpha.buetow.org/content/Download.xml new file mode 100644 index 0000000..0f7fc7a --- /dev/null +++ b/ychat.alpha.buetow.org/content/Download.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Download</pagetitle> + <textheader>Download from git repository</textheader> + <text> + <noop>Go to </noop> + <namedlink href="http://github.com/rantanplan/!!HOSTNAME!!">http://github.com/rantanplan/!!HOSTNAME!!</namedlink> + </text> +</content> diff --git a/ychat.alpha.buetow.org/content/home.xml b/ychat.alpha.buetow.org/content/home.xml new file mode 100644 index 0000000..5f2ba72 --- /dev/null +++ b/ychat.alpha.buetow.org/content/home.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>Welcome to yChat</pagetitle> + <important> + <text> + <strong>Important notice:</strong> + <noop>The host </noop> + <strong>.alpha.buetow.org</strong> + <noop>contains only development, test and PoC stuff. Replace </noop> + <strong>$shomething.alpha.buetow.org</strong> + <noop> with </noop> + <strong>$something.buetow.org</strong> + <noop> (if exists) to get the stable stuff.</noop> + </text> + </important> + <important2> + <text> + <strong>Important notice:</strong> + <noop>The development of the yChat has been stalled. In near future, there will be no further development on this project. This project always was a proof of concept only. For current programming projects please visit </noop> + <hyperlink>http://dev.buetow.org</hyperlink> + <noop> and enjoy :)</noop> + </text> + </important2> + <text>What is yChat? yChat is an experimental, XML-configurable, fast, very portable, multi-platform Web-based chat server written in C++ and a little subset of C which supports secure SSL sockets using OpenSSL, MySQL databases and is compatible with almost all browsers that support frames and JavaScript. It runs on all servers which are POSIX.4a compatible and use the GNU GCC C++ compiler from 3.1 and up with pthreads enabled. Its developed under the GNU General Public License.</text> + <text>PLEASE NOTICE THAT yChat IS NOT Ychat! Ychat is a Yahoo Chat Client while yChat is a web based chat server. So they both handle chatting but are very different and are totally different projects!</text> +</content> diff --git a/ychat.alpha.buetow.org/content/license.xml b/ychat.alpha.buetow.org/content/license.xml new file mode 100644 index 0000000..8c1473a --- /dev/null +++ b/ychat.alpha.buetow.org/content/license.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> +<content> + <pagetitle>License</pagetitle> + <text> + <noop>yChat is (C) by Paul C. Buetow.</noop> + </text> + <textheader>GNU General Public license</textheader> + <text> + <noop> + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + </noop> + <newline/> + <newline/> + <noop> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </noop> + <newline/> + <newline/> + <noop> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + </noop> + </text> +</content> diff --git a/ychat.alpha.buetow.org/htdocs/images/ychat-big.png b/ychat.alpha.buetow.org/htdocs/images/ychat-big.png Binary files differnew file mode 100644 index 0000000..518ac1f --- /dev/null +++ b/ychat.alpha.buetow.org/htdocs/images/ychat-big.png diff --git a/ychat.alpha.buetow.org/htdocs/images/ychat.png b/ychat.alpha.buetow.org/htdocs/images/ychat.png Binary files differnew file mode 100644 index 0000000..3439ac8 --- /dev/null +++ b/ychat.alpha.buetow.org/htdocs/images/ychat.png diff --git a/ychat.alpha.buetow.org/htdocs/images/ychat4.png b/ychat.alpha.buetow.org/htdocs/images/ychat4.png Binary files differnew file mode 100644 index 0000000..2288e1b --- /dev/null +++ b/ychat.alpha.buetow.org/htdocs/images/ychat4.png |
